diff --git a/.cursorrules b/.cursorrules new file mode 100644 index 0000000..e4708b1 --- /dev/null +++ b/.cursorrules @@ -0,0 +1,122 @@ + +You are an expert in Julia language programming, data science, and numerical computing. + +Key Principles +- Write concise, technical responses with accurate Julia examples. +- Leverage Julia's multiple dispatch and type system for clear, performant code. +- Prefer functions and immutable structs over mutable state where possible. +- Use descriptive variable names with auxiliary verbs (e.g., is_active, has_permission). +- Use lowercase with underscores for directories and files (e.g., src/data_processing.jl). +- Favor named exports for functions and types. +- Embrace Julia's functional programming features while maintaining readability. + +Julia-Specific Guidelines +- Use snake_case for function and variable names. +- Use PascalCase for type names (structs and abstract types). +- Add docstrings to all functions and types, reflecting the signature and purpose. +- Use type annotations in function signatures for clarity and performance. +- Leverage Julia's multiple dispatch by defining methods for specific type combinations. +- Use the `@kwdef` macro for structs to enable keyword constructors. +- Implement custom `show` methods for user-defined types. +- Use modules to organize code and control namespace. + +Function Definitions +- Use descriptive names that convey the function's purpose. +- Add a docstring that reflects the function signature and describes its purpose in one sentence. +- Describe the return value in the docstring. +- Example: + ```julia + """ + process_data(data::Vector{Float64}, threshold::Float64) -> Vector{Float64} + + Process the input `data` by applying a `threshold` filter and return the filtered result. + """ + function process_data(data::Vector{Float64}, threshold::Float64) + # Function implementation + end + ``` + +Struct Definitions +- Always use the `@kwdef` macro to enable keyword constructors. +- Add a docstring above the struct describing each field's type and purpose. +- Implement a custom `show` method using `dump`. +- Example: + ```julia + """ + Represents a data point with x and y coordinates. + + Fields: + - `x::Float64`: The x-coordinate of the data point. + - `y::Float64`: The y-coordinate of the data point. + """ + @kwdef struct DataPoint + x::Float64 + y::Float64 + end + + Base.show(io::IO, obj::DataPoint) = dump(io, obj; maxdepth=1) + ``` + +Error Handling and Validation +- Use Julia's exception system for error handling. +- Create custom exception types for specific error cases. +- Use guard clauses to handle preconditions and invalid states early. +- Implement proper error logging and user-friendly error messages. +- Example: + ```julia + struct InvalidInputError <: Exception + msg::String + end + + function process_positive_number(x::Number) + x <= 0 && throw(InvalidInputError("Input must be positive")) + # Process the number + end + ``` + +Performance Optimization +- Use type annotations to avoid type instabilities. +- Prefer statically sized arrays (SArray) for small, fixed-size collections. +- Use views (@views macro) to avoid unnecessary array copies. +- Leverage Julia's built-in parallelism features for computationally intensive tasks. +- Use benchmarking tools (BenchmarkTools.jl) to identify and optimize bottlenecks. + +Testing +- Use the `Test` module for unit testing. +- Create one top-level `@testset` block per test file. +- Write test cases of increasing difficulty with comments explaining what is being tested. +- Use individual `@test` calls for each assertion, not for blocks. +- Example: + ```julia + using Test + + @testset "MyModule tests" begin + # Test basic functionality + @test add(2, 3) == 5 + + # Test edge cases + @test add(0, 0) == 0 + @test add(-1, 1) == 0 + + # Test type stability + @test typeof(add(2.0, 3.0)) == Float64 + end + ``` + +Dependencies +- Use the built-in package manager (Pkg) for managing dependencies. +- Specify version constraints in the Project.toml file. +- Consider using compatibility bounds (e.g., "Package" = "1.2, 2") to balance stability and updates. + +Code Organization +- Use modules to organize related functionality. +- Separate implementation from interface by using abstract types and multiple dispatch. +- Use include() to split large modules into multiple files. +- Follow a consistent project structure (e.g., src/, test/, docs/). + +Documentation +- Write comprehensive docstrings for all public functions and types. +- Use Julia's built-in documentation system (Documenter.jl) for generating documentation. +- Include examples in docstrings to demonstrate usage. +- Keep documentation up-to-date with code changes. + \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..526954d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "julia", + "request": "launch", + "name": "Run active Julia file", + "program": "${file}", + "stopOnEntry": false, + "cwd": "${workspaceFolder}", + "juliaEnv": "${command:activeJuliaEnvironment}" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6107323 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "editor.fontSize": 16 +} \ No newline at end of file diff --git a/DesignMind.md b/DesignMind.md new file mode 100644 index 0000000..0d74040 --- /dev/null +++ b/DesignMind.md @@ -0,0 +1,114 @@ +# LumpedHydro.jl 设计思路 + +## 这个包的目标是什么? + +- 适用于概念性水文模型搭建,以及物理耦合的深度学习模型搭建 +- 继承superflex和MARRMoT各自的优缺点,构建新的水文模型构建框架,具体来说: + - 沿用superflex的构建框架,即element,node,network等 + - 沿用MARRMoT的flux function构建思路,使不同计算模块实现分类管理 + - **保证各模块的随机组合的可行性,当前计算模块可粗略分为SnowWater, SoilWater和RoutingStore三种** +- 提供区域多模型按权重预测(Node),提供半分布式水文模型搭建(Network) + +## 这个包的使用风格应该是什么样子的? + +`flux -> Element -> Node -> Network` + +- Function根据参数不同分派不同函数计算 + + ``` + baseflow(i::NamedTuple, p::NamedTuple, sf::Function) + ``` +- 让概念性水文模型的搭建像torch,lux这样,每个中间通量的计算都应该是一个层 + + ```julia + model = build_unit( + name=name, + elements=elements + ) + + model = Unit( + name=name, + surface=surf_ele, + soil=soil_eles, + route=route_ele, + ) + ``` +- 每个element又是由多个flux function所组成的,包中已经内置了大量的flux function和构成的element + + ``` + func1 = flux_func(input...;params...) + element = Element( + func1, + func2; + params..., + config... + ) + ``` +- 构建模型中,应该有构建合理性的校验和提示功能,主要的提示功能就是对模型各层计算数据是否存在缺失的功能,并对于缺失的模块提出增加建议 +- 深度学习模型嵌入应该是作为特殊的function进行嵌入 +- Element是由多个function组合而成,要保证能使用既有的func也能使用自定义的func +- 一般而言模型自身不携带任何数据,一般通过外界参数输入或参数估计器输入 + +## Unit的特性 + +- unit将分为三个基础层:~~surface,soil,route~~ snow,surface, soil, free water, route +- surface层可以对应于,深度学习模型的input层,其中可能就是简单的信息传输,也可能会存在融雪模块需要ode计算 +- soil层可以包含多个element层,通常土壤的element都会认为时非线性水库,通常需要ode模块求解 +- route层由于lagflux的限制,无法参与其他element进行联合计算,同样部分route层也会涉及ode计算 + +### Surface层特性 + +- surface层接受气象要素的输入,包括降雨,潜在蒸发,气温,日照时常等 +- surface层的输出,全部统一名称为infiltration +- surface层还可以考虑一些不透水的情况,直接产出地表径流 + +### Soil层特性 + +- 受水箱模型的启发,soil层设计为可以包括多个element,设定为上下层等土壤分层 +- soil层第一层的输入需要与surface层对接,所以接受变量必须为infiltration +- soil层会根据层数得出不同数量的出流量,每个层基本对应一个中间计算模块 +- 水文模型的核心计算模块,通常代表模型的基本输入 +- 模型输出为flow,包括: + 1. 单一flow,如Exphydro + 2. Fastflow和Slowflow, 如GR4J + 3. Surfaceflow, Interflow, Baseflow三层 +- 模型输入需要统一,比如Infiltration,Pet + +### State Element的特性(或者是需求) + +influxes, outfluxes, statefluxes + +state elmement 有时候会有需求,即添加input flux和output flux从而灵活改变state flux的计算结果, + +但是这种可能会引入一些难以命名的变量(m50) + + +## 以后的一种构建方式 + +```julia + +bucket = @hydrobucket begin + @varaibles a b c d e f + @parameters k1 k2 + + @fluxes begin + b ~ a + k1 + c ~ b + k2 + [e, f] ~ model([b, c]) + end + + @states begin + d ~ b - c + end +end + +route = @hydroroute begin + @variables q + @parameters k + q ~ k * d +end + +model = @hydromodel begin + bucket, route +end +``` \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 89ab939..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 jing xin - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Project.toml b/Project.toml deleted file mode 100644 index 03c54e9..0000000 --- a/Project.toml +++ /dev/null @@ -1,62 +0,0 @@ -name = "HydroModels" -uuid = "7e3cde01-c141-467b-bff6-5350a0af19fc" -authors = ["jingx <50790703+chooron@users.noreply.github.com>"] -version = "0.1.0" - -[deps] -Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697" -Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" -BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" -CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" -CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" -ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" -ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66" -DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" -DataInterpolations = "82cc6244-b520-54b8-b5a6-8a565e85f1d0" -Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" -DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def" -DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" -ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" -Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6" -Integrals = "de52edbc-65ea-441a-8357-d3a637375a31" -Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" -IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e" -JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" -LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" -LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae" -Lux = "b2108857-7c20-44ae-9111-449ecde12c47" -LuxCore = "bb33d45b-7691-41d6-9220-0943567d0623" -Measures = "442fdcdd-2543-5da2-b0f3-8c86c306513e" -ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" -NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd" -NamedTupleTools = "d9ec5142-1e00-5aa0-9d6a-321866360f50" -Optimization = "7f7a1694-90dd-40f0-9382-eb1efda571ba" -OptimizationBBO = "3e6eede4-6085-4f62-9a71-46d9bc1eb92b" -OptimizationOptimisers = "42dfb2eb-d2b4-4451-abcd-913932933ac1" -OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" -ParameterSchedulers = "d7d3b36b-41b8-4d0d-a2bf-768c6151755e" -Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" -ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca" -Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" -RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd" -Reexport = "189a3867-3050-52da-a836-e630ba90ab69" -RuntimeGeneratedFunctions = "7e49a35a-f44a-4d26-94aa-eba1b4ca6b47" -SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462" -SciMLOperators = "c0aeaf25-5076-4817-a8d5-81caf7dfa961" -SciMLSensitivity = "1ed8b502-d754-442c-8d5d-10ac956f44a1" -SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" -StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3" -StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" -Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" -SymbolicUtils = "d1185830-fcd6-423d-90d6-eec64667417b" -Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" -TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76" -Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[extras] -Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" -CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" -DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" - -[target] -test = ["CSV", "DataFrames", "Aqua"] diff --git a/README.md b/README.md deleted file mode 100644 index 3a8027d..0000000 --- a/README.md +++ /dev/null @@ -1,50 +0,0 @@ -# HydroModels.jl - -## Overview - -HydroModels.jl is a modern hydrological modeling framework that extends and enhances SUPERFLEX's design philosophy. Built on Julia language and the SciML (Scientific Machine Learning) ecosystem, it combines flexible model construction with computational efficiency, particularly supporting deep learning integration in hydrological modeling. - -## Key Features - -- **Flexible Model Construction**: Supports development of lumped, semi-distributed, and distributed hydrological models -- **Deep Learning Integration**: Enables neural network integration for enhanced flux calculations and dynamic parameter estimation -- **Computational Efficiency**: Leverages Julia's high-performance capabilities and the SciML ecosystem -- **Gradient-Based Optimization**: Supports advanced parameter optimization techniques -- **Comprehensive Framework**: Provides tools for both traditional hydrological modeling and modern machine learning approaches - -## Framework Capabilities - -HydroModels.jl offers: -- Easy implementation and customization of hydrological models -- Integration with Julia's scientific computing ecosystem -- Support for various modeling approaches: - - Traditional conceptual models - - Neural network enhanced models - - Distributed hydrological systems - -## Case Studies - -The framework has been validated through various applications, including: -1. M50 Model Implementation -2. GR4J-based Distributed Hydrological Model - -## Getting Started - -Check out our tutorials to start using HydroModels.jl: -- [Run a Bucket Model](tutorials/run_a_bucket.md) -- [Run ExpHydro Model](tutorials/run_a_exphydro_model.md) - -## Installation - -```julia -using Pkg -Pkg.add("HydroModels") -``` - -## Contributing - -HydroModels.jl is an open-source project available on Github. We welcome contributions from the community to help advance deep learning applications in hydrology. - -## Documentation - -For detailed information about using HydroModels.jl, please refer to our comprehensive documentation and tutorials in this site. diff --git a/WorkLog.md b/WorkLog.md new file mode 100644 index 0000000..0566f88 --- /dev/null +++ b/WorkLog.md @@ -0,0 +1,166 @@ +# Coding Log + +- [X] 模型构建中需要调整fluxes的输入变量名称和输出变量名称 +- [X] fluxes的function返回值过于固定,不够灵活 +- [X] LAG Element无法参与整体ode的计算(可以参与计算但是兼容性很差,lagflux需要中间状态的缓冲计算) +- [X] SimpleFlux和HydroFlux无明显差异性 +- [X] 构建多个function时,系统无法实现根据不同参数实现function的参数分配 +- [X] 计算成本相对于普通计算成本显著加大 + - [X] 原element计算产生的时间成本为2s, 直接构建一个简单的方程为38ms左右, 采用mtk.jl为40ms左右,另加mtk系统构建时间8ms +- [X] 各种ODE如何各自进行计算的话会加大插值产生的计算成本多余 + - [X] 采用mtk.jl对element公式进行整合 +- [ ] ~~lagflux如何改造成mtk.jl~~ + - [ ] ~~lagflux改造成mtk的equations,在计算过程中其公式会不断发生改变~~ +- [X] mtk.jl貌似只能支持一对一输入输出(已解决) +- [X] **由于component的参数存在多重嵌套,在参数优化的定义中存在问题** +- [X] 当前需要找出ODEProblem在用ForwardDifferetial求解时存在的问题,需要构建一个demo来重现这个问题,猜测这个问题应该是可调参数与不可调参数引起的问题 +- [X] 需要将水文的三种模型进行拆分,LumpedHydro.jl, SpatialHydro.jl, ~~GridedHydro.jl~~ +- [X] routing function编写 +- [X] 创建模型搭建基础类 +- [X] 针对之前的模型进行ComponentArrays改造 +- [X] 0实参构建模型 +- [ ] 构建模型中,应该有构建合理性的校验和提示功能,主要的提示功能就是对模型各层计算数据是否存在缺失的功能,并对于缺失的模块提出增加建议 +- [X] 复现当前部分模型 +- [ ] web端口构造 +- [X] 在julia 1.10上完成部署 +- [ ] ~~StaticArrays或能够将性能进一步提升~~ + +- ~~ routing function的weight使用GuadGK.jl求解~~ + +- [X] 针对之前的模型进行ModelingToolkit改造 +- [X] **完善参数优化模块,包括模型参数优化,神经网络参数优化和混合参数优化** +- [ ] **提供自定义ODE求解,人为通过离散的方式求解,适应多数论文的计算,需要对比与DiscreteProblem之间的求解速度差距** +- [X] 将lag function嵌入至Node模块中 +- [ ] Node中添加参数共享的设置 +- [X] 将多个unit糅合到一块后应该如何表示参数,中间状态等参数,可以像lux.jl那样表示,比较清楚 +- [ ] Node和Network的并行计算 +- [ ] 搭建参数动态估计问题 +- [ ] 如何将水文通量(Flux)转换成一系列类似于MTKstandarylibrary.jl那样的模块 +- [X] input数据采用namedtuple类型,参数采用ComponentArray类型 +- [X] superflexpy中unit是否具有存在意义, unit简单来说就是多个element的组合,可以考虑直接用elements list替代 +- [X] 将input_names, output_names等信息通过函数调度,不作为模型存储的属性 +- [X] Node将取消坡面汇流功能,将坡面汇流功能直接写在elements中 +- [X] 参数信息的提取,可能需要进一步改进 +- [X] 模型输入包括输入和参数,其中输入类型为NamedTuple,而参数为ComponentArray +- [X] 增加flux的图计算功能,保证即使flux顺序是混乱的也能够得到结果,并提供element增加出入通量的能力 +- [ ] 构建node时提供构建信息 +- [ ] HBV计算结果有问题 +- [X] M50无法实现在mtk下计算,以及step=false下计算 +- [X] 将输入数据修改为StructArray类型 +- [ ] **~~根据macro提供一个自动生成模型计算的函数~~** +- [X] 根据计算网络结构迭代计算模型 +- [X] LumpedHydro.jl中不考虑Node这个结构了,这个结构直接移至到SpatialHydro.jl +- [X] stateflux生成临时函数时存在问题 +- [ ] sort_elements_by_topograph函数异常,或考虑不使用自动判断element计算顺序 +- [X] 新增dPL-HBV, ENN, ~~PRNN~~ +- [X] **~~NeuralFlux嵌入到dfunc无法生成耦合函数~~** + - 当前输入变量只能是@varaibles (v(t))[1:4]这种类型,但这种类型或无法实现变量的替换 + - 考虑的方法是将nnflux前所有flux套入至nnflux中,但这种方式不行,因为nnflux前面可能还有nnflux +- [X] 我想让Flux的构建方式能够更有可读性,就是输入输出变量用键值对来连接 + +- ~~ 我记得当前在mtk框架下仍然难以通过AutoZygote的测试,这一块需要进一步完善~~ + +- [X] 非mtk框架下由于多次使用namedtuple,模型的计算性能还是不够好 +- [ ] ~~记得本来采用StructArray,能够有效的避免反复计算带来的问题~~ +- [ ] 自定义base.show +- [ ] ~~Zygote虽然不能用于mutable array, 但是可以通过chainrule执行自定义的rrule规则~~(不能对矩阵内部进行替换) +- [X] optimize需要提供多组数据训练的功能 +- [ ] 当前optimization只针对于参数率定功能,后续可能会考虑 +- [ ] 提供实时更新、添加、删除以及提示信息(包括当前element的输入输出) +- [X] 当前lagflux仅起到了信息记录作用,或可以删除=>改成routeflux可以用于各种汇流计算 +- [X] neuralflux的参数或需要与其他参数独立出来,在分布式计算中不能对每个单元格都分配一个神经网络参数,故一般是一个统一的神经网络,所以参数类型为(ps=..., st=...., nn=...,) +- [ ] ~~模型输入的pas,三个主要键名:ps,st,nn~~ +- [ ] 参数输入校验工作 +- [X] Route 类型的构建 + - [X] 马斯京跟 + - [X] 单位线 + - [X] hydrodischarge +- [ ] 使用macro构建simpleflux, @simpleflux var => expr, @lagflux var=> (flux, unithydro, lagtime), @stateflux var => expr, @neuralflux var => (input, nn) ,参考代码(temp/mtk_marco.jl): +- [X] 当前DataInterpolations.jl在v5.0.0版本才兼容,其他版本存在问题 +- [ ] DiscreteProblem似乎无法通过梯度优化 +- [X] 构建了flux的计算匿名函数与state一致,**这时候就需要额外构建针对lag flux的element了** +- [X] 中间计算转为matrix合并的方式存储信息,效率显著提高 +- [ ] 值得注意的是route flux可以分为两种,第一种类似于单位线这种,是在所有数据输入后才能计算出最终结果,第二种可以在一个时段后就可以得到汇流结果,比如马斯京根和cascade +- [X] 发现route这个过程可以理解成q_out转换为new_q_in的一个过程,不同就在于这个转换过程的不同 +- [X] 完成了routeflux的核心构建,实现route模块与routeflux模块的拆分 +- [X] 将routeflux细化成routeflux和unithydroflux两种类型 +- [ ] vectorflux求解方式好像更倾向于discrete求解 +- [ ] ~~将径流深(mm)转换为流量之后(m3/s),好像都不适用于continous solve, 这个需要进一步明确~~ +- [ ] 运行需要额外的需求,比如:分段运行(保存上一次运行的中间状态); 持续运行(更新每次计算状态) +- [ ] 需要添加log信息和运行状态展示,用于前端展示 +- [X] 马斯京根算法的连续性方程求解 +- [ ] 插值方法这类的时变函数,可以设计成一个TimeVaryingFlux, 这样就可以直接参与连续性方程的求解了,没有构建的必要,需要在生成function时注意t的输入 +- [X] 设置基于TimeVaryingFlux的插值Flux的可行性,由于对于不同模块,需要重新构建插值函数了,所以插值函数这块我认为是没必要构建的 +- [ ] 不同组的参数可能会分在不同组的ptypes下这个时候应该如何处理 +- [X] 可以将flux, implements, 这些内容单独弄一个库, 名为HydroModelLibrary.jl +- [ ] route这个涉及的计算大多是离散计算,因此不能执着于用连续方程的求解 +- [ ] SciMLOperators.jl待进一步研究,但是他还是不支持u的存储(限制于Zygote.jl) +- [X] routeflux可以采用一个route计算,每个routeflux能够反馈出不同的func,dfunc +- [ ] 加入macro编程,让书写更加简单 +- [ ] 需要考虑rapid这种类型的route如何写 +- [ ] GPU 支持 +- [ ] batch优化器功能的扩展 +- [ ] 计算状态非零设置 + +## 关键功能和实现技术 + +* [X] 基于julia多重分派的名称驱动代码风格,根据名称调用对应的flux + * [X] 该项目是以命名驱动为核心,但是在一些情况中创建一些并没有实际含义的变量 +* [X] Component基本计算实现, 涉及从某计算模块至整个流域汇流网络的计算 + * [X] 常微分方程求解(ModelingToolkit.jl, DifferentialEquations.jl) + * [X] 网络拓扑计算(Graphs.jl) +* [X] Component基础的param_optimize参数优化功能实现 + * [X] 参数优化 +* [X] 参数动态模拟估计,Time-vary parameter estimation +* [X] 神经网络耦合物理公式计算的混合参数优化(包括普通参数和神经网络参数) + +## 关于汇流计算的一些思考 + +vector-based河网汇流计算中, 设定了q_in, q_out, q_gen, 以及riv_st四种变量, + +在计算中: + +- 设定上游流域为i,下游为j, q_out(i,t-1)应该是作为下游入流量q_in(j,t), +- 其中q_out的计算应该包括两个部分,首先是该流域的入流的汇流计算结果,即: +- q_out(i,t) = route_func(q_in(i,t), riv_st(i,t)) + q_gen(i,t) +- q_out可以根据流域入流和河床状态计算出流量,此外还应当包括流域本身的产流量. + +在平衡计算中: + +- q_out(i,t-1)就可以作为q_in(j,t)来替换q_in(j,t-1) +- riv_st(i,t)=riv_st(i,t-1)+q_in(i,t)-q_out(i,t), 注q_gen没有显式参与计算,但其包括在下游j的q_in中参与计算的 + +关于汇流计算问题的定义,我认为河流汇流问题由于需要执行q_out在一定途径下转换为q_in的过程,而这个过程是不符合常微分方程的 + +### 关于汇流计算的一些新的思考 + +汇流计算可以分为两种,一种是离散型的计算,一种是连续型的计算: + +1. 离散型计算 + 离散性计算,是以马斯京根算法为代表,这类代码是根据上一个时段数据来计算当前时段的流量 + Qout(i,t+1) = Func(Qin(i,t+1), Qin(i,t), Qout(i,t),Qgen(i,t), spatial_info) + Qout(i,t+1) = Func(spatial(Qout(i,t+1)),spatial(Qout(i,t)),Qgen(i,t)) + 式中可以看出,Qin是由Qout转换而来,通常是根据空间的拓扑关系计算得到 + 这种问题的计算方式是采用DiscreteProblem来求解 +2. 连续型计算 + 连续型计算,是以单位线为代表,这类代码是根据当前时段数据来计算当前时段的流量 + Qout(i,t+1) = Func(Qin(i,t+1), Qin(i,t), Qout(i,t),Qgen(i,t), spatial_info) + Qout(i,t+1) = Func(spatial(Qout(i,t+1)),spatial(Qout(i,t)),Qgen(i,t)) + +### RouteFlux分类 + +RouteFlux可以分为两种类型: + +- 包括虚构状态,构建常微分方程的RouteFlux,命名为StateRouteFlux + 如: + 基于状态方程:ds/dt = I-Q + 然后Q是由S计算得到,Q=f(S;ps) +- 不包括虚构状态,构建的是流量的自相关关系的RouteFlux,命名为DynamicRouteFlux + 如Q(t+1) = f(Q(t);ps) + +## 类型的一些信息展示功能 + +类型信息展示可以分为两个大类: + +- 一种是应用层面的,给出模型输入需求,还有就是给出模型的输出成果信息,这种在编程上起到的作用会更多 +- 一种是理论层面的,需要给出计算公式,涉及的变量,参数有哪些,分别有什么作用 diff --git a/data/cemaneige/sample.csv b/data/cemaneige/sample.csv deleted file mode 100644 index dfcf106..0000000 --- a/data/cemaneige/sample.csv +++ /dev/null @@ -1,3654 +0,0 @@ -,date,min_temp,mean_temp,max_temp,precipitation,liquid_outflow,qsim,snowwater,thermal -0,1995-08-01,16.02,20.6,26.37,0.37,0.4045780846455927,0.37,0.0,0.0 -1,1995-08-02,16.48,21.19,28.77,0.03,0.0328036284847777,0.03,0.0,0.0 -2,1995-08-03,15.52,21.17,28.76,0.01,0.0109345428282592,0.01,0.0,0.0 -3,1995-08-04,15.73,21.23,28.36,0.01,0.0109345428282592,0.01,0.0,0.0 -4,1995-08-05,15.09,19.82000000000005,27.85,0.23,0.2514944850499631,0.23,0.0,0.0 -5,1995-08-06,15.32000000000005,19.43,25.37,17.46,19.091711778140677,17.46,0.0,0.0 -6,1995-08-07,13.68,16.75,19.73,13.35,14.597614675726115,13.35,0.0,0.0 -7,1995-08-08,11.13,13.01,14.51,16.07,17.571810325012635,16.07,0.0,0.0 -8,1995-08-09,12.18,14.94,17.61,0.03,0.0328036284847777,0.03,0.0,0.0 -9,1995-08-10,12.42,18.61,23.92,0.2,0.2186908565651852,0.2,0.0,0.0 -10,1995-08-11,15.21,17.97,22.82000000000005,4.48,4.89867518706015,4.48,0.0,0.0 -11,1995-08-12,15.31,18.3,21.7,0.47,0.5139235129281854,0.47,0.0,0.0 -12,1995-08-13,12.79,16.93,20.82000000000005,0.02,0.0218690856565185,0.02,0.0,0.0 -13,1995-08-14,12.17,16.25,21.0,0.03,0.0328036284847777,0.03,0.0,0.0 -14,1995-08-15,12.44,16.81,22.34,0.02,0.0218690856565185,0.02,0.0,0.0 -15,1995-08-16,12.52,17.57000000000005,24.15,0.0,0.0,0.0,0.0,0.0 -16,1995-08-17,9.650000000000034,16.34,22.6,0.0,0.0,0.0,0.0,0.0 -17,1995-08-18,11.03,16.59,22.79,0.0,0.0,0.0,0.0,0.0 -18,1995-08-19,12.68,17.45,25.08,0.08,0.0874763426260741,0.08,0.0,0.0 -19,1995-08-20,11.93,15.8,20.68,3.15,3.444380990901668,3.15,0.0,0.0 -20,1995-08-21,12.42,17.89,24.76,0.03,0.0328036284847777,0.03,0.0,0.0 -21,1995-08-22,12.69,16.25,22.16,5.3,5.7953076989774095,5.3,0.0,0.0 -22,1995-08-23,14.05,17.66,22.94,19.63,21.46450757187293,19.63,0.0,0.0 -23,1995-08-24,12.67,14.66,16.66,10.6,11.59061539795482,10.6,0.0,0.0 -24,1995-08-25,13.01,16.18,19.91,8.3,9.075670547455193,8.3,0.0,0.0 -25,1995-08-26,9.910000000000023,14.18,18.31,0.15,0.1640181424238889,0.15,0.0,0.0 -26,1995-08-27,8.710000000000036,14.18,19.09,13.23,14.466400161787009,13.23,0.0,0.0 -27,1995-08-28,8.270000000000039,9.490000000000007,11.39,8.3,9.075670547455193,8.3,0.0,0.0 -28,1995-08-29,8.19,10.36,13.07000000000005,1.24,1.3558833107041486,1.24,0.0,0.0 -29,1995-08-30,5.080000000000041,9.13,13.08,0.0,0.0,0.0,0.0,0.0 -30,1995-08-31,4.770000000000039,9.210000000000036,15.07000000000005,0.0,0.0,0.0,0.0,0.0 -31,1995-09-01,4.88,9.57000000000005,15.54,0.0,0.0,0.0,0.0,0.0 -32,1995-09-02,5.430000000000007,10.8,15.42,0.0,0.0,0.0,0.0,0.0 -33,1995-09-03,7.710000000000036,9.850000000000025,13.31,20.42,22.32833645530542,20.42,0.0,0.0 -34,1995-09-04,4.62,8.13,11.44,0.01,0.0109345428282592,0.01,0.0,0.0 -35,1995-09-05,5.9500000000000455,10.14,16.21,0.0,0.0,0.0,0.0,0.0 -36,1995-09-06,7.760000000000048,14.18,18.18,0.02,0.0218690856565185,0.02,0.0,0.0 -37,1995-09-07,10.02,11.54,15.63,37.72,41.24509554819394,37.72,0.0,0.0 -38,1995-09-08,9.5,11.13,11.97,16.51,18.052930209456047,16.51,0.0,0.0 -39,1995-09-09,8.31,10.68,14.37,0.01,0.0109345428282592,0.01,0.0,0.0 -40,1995-09-10,8.590000000000032,14.8,21.2,4.78,5.226711471907929,4.78,0.0,0.0 -41,1995-09-11,11.39,14.14,18.85,3.69,4.034846303627668,3.69,0.0,0.0 -42,1995-09-12,10.9,11.95,12.78,51.94,56.79401544997861,51.94,0.0,0.0 -43,1995-09-13,8.550000000000011,9.730000000000018,10.93,20.53,22.44861642641627,20.53,0.0,0.0 -44,1995-09-14,8.5,10.57000000000005,13.59,5.13,5.6094204708970015,5.13,0.0,0.0 -45,1995-09-15,8.740000000000009,11.0,15.14,2.69,2.941392020801742,2.69,0.0,0.0 -46,1995-09-16,7.730000000000018,9.590000000000032,11.79,0.78,0.8528943406042226,0.78,0.0,0.0 -47,1995-09-17,7.12,12.65,18.13,0.77,0.8419597977759634,0.77,0.0,0.0 -48,1995-09-18,11.23,13.25,16.13,0.51,0.5576616842412224,0.51,0.0,0.0 -49,1995-09-19,9.430000000000009,10.89,13.7,8.95,9.78641583129204,8.95,0.0,0.0 -50,1995-09-20,8.580000000000041,9.640000000000043,10.67,8.39,9.174081432909524,8.39,0.0,0.0 -51,1995-09-21,6.57000000000005,9.590000000000032,13.01,0.02,0.0218690856565185,0.02,0.0,0.0 -52,1995-09-22,5.63,9.69,15.16,0.0,0.0,0.0,0.0,0.0 -53,1995-09-23,4.830000000000041,10.1,17.86,0.02,0.0218690856565185,0.02,0.0,0.0 -54,1995-09-24,4.0,9.54000000000002,15.02,18.0,19.682177090866677,18.0,0.0,0.0 -55,1995-09-25,4.330000000000041,6.680000000000007,9.78000000000003,1.34,1.4652287389867416,1.34,0.0,0.0 -56,1995-09-26,2.640000000000043,7.38,13.92,0.0,0.0,0.0,0.0,0.0 -57,1995-09-27,3.590000000000032,9.950000000000044,14.37,23.6,25.805521074691868,23.6,0.0,0.0 -58,1995-09-28,2.4600000000000364,6.63,12.03,0.0,0.0,0.0,0.0,0.0 -59,1995-09-29,0.2300000000000182,4.900000000000034,12.56,0.0,0.0,0.0,0.0,0.0 -60,1995-09-30,-0.5099999999999909,6.610000000000014,12.23,0.0,0.0,0.0,0.0,0.0 -61,1995-10-01,7.150000000000034,11.52,16.84,0.88,0.9622397688868152,0.88,0.0,0.0 -62,1995-10-02,6.340000000000032,13.01,18.66,4.4,4.8111988444340765,4.4,0.0,0.0 -63,1995-10-03,12.24,15.05,18.6,1.35,1.4761632818150006,1.35,0.0,0.0 -64,1995-10-04,12.06,14.97,18.9,9.23,10.0925830304833,9.23,0.0,0.0 -65,1995-10-05,10.8,12.0,13.12,32.72,35.77782413406431,32.72,0.0,0.0 -66,1995-10-06,8.53000000000003,12.4,17.5,0.01,0.0109345428282592,0.01,0.0,0.0 -67,1995-10-07,7.990000000000009,12.38,19.57000000000005,0.01,0.0109345428282592,0.01,0.0,0.0 -68,1995-10-08,7.960000000000036,13.31,22.41,0.01,0.0109345428282592,0.01,0.0,0.0 -69,1995-10-09,8.180000000000007,13.33,22.12,0.01,0.0109345428282592,0.01,0.0,0.0 -70,1995-10-10,8.720000000000027,13.3,21.27,0.01,0.0109345428282592,0.01,0.0,0.0 -71,1995-10-11,8.450000000000045,13.37,21.39,0.0,0.0,0.0,0.0,0.0 -72,1995-10-12,9.04000000000002,13.27,20.67,0.0,0.0,0.0,0.0,0.0 -73,1995-10-13,8.87,12.8,19.73,0.0,0.0,0.0,0.0,0.0 -74,1995-10-14,9.760000000000048,13.67,19.66,0.01,0.0109345428282592,0.01,0.0,0.0 -75,1995-10-15,10.0,13.28,17.91,0.01,0.0109345428282592,0.01,0.0,0.0 -76,1995-10-16,7.160000000000025,12.13,18.23,0.0,0.0,0.0,0.0,0.0 -77,1995-10-17,5.990000000000009,11.37,20.62,0.0,0.0,0.0,0.0,0.0 -78,1995-10-18,5.800000000000011,11.84,17.34,0.0,0.0,0.0,0.0,0.0 -79,1995-10-19,7.860000000000014,12.25,18.98,0.0,0.0,0.0,0.0,0.0 -80,1995-10-20,6.710000000000036,9.970000000000027,15.1,0.0,0.0,0.0,0.0,0.0 -81,1995-10-21,3.180000000000007,7.900000000000034,13.88,0.0,0.0,0.0,0.0,0.0 -82,1995-10-22,3.0,7.62,14.19,0.0,0.0,0.0,0.0,0.0 -83,1995-10-23,2.7900000000000205,7.82000000000005,16.12,0.0,0.0,0.0,0.0,0.0 -84,1995-10-24,2.63,9.12,13.24,0.0,0.0,0.0,0.0,0.0 -85,1995-10-25,5.580000000000041,9.180000000000009,12.19,1.42,1.5527050816128152,1.42,0.0,0.0 -86,1995-10-26,5.340000000000032,11.02,14.59,0.0,0.0,0.0,0.0,0.0 -87,1995-10-27,9.220000000000027,12.32000000000005,16.31,1.53,1.6729850527236674,1.53,0.0,0.0 -88,1995-10-28,8.81,12.6,18.47,0.57,0.6232689412107779,0.57,0.0,0.0 -89,1995-10-29,7.890000000000043,10.74,13.66,11.82,12.924629623002447,11.82,0.0,0.0 -90,1995-10-30,5.660000000000025,9.33000000000004,12.51,0.14,0.1530835995956297,0.14,0.0,0.0 -91,1995-10-31,4.510000000000048,9.44,15.45,0.0,0.0,0.0,0.0,0.0 -92,1995-11-01,4.080000000000041,8.020000000000039,13.99,4.31,4.712787958979742,4.31,0.0,0.0 -93,1995-11-02,0.1700000000000159,3.230000000000018,6.460000000000036,1.0,0.8896827384029873,1.0,0.0,0.0 -94,1995-11-03,-0.839999999999975,3.3600000000000136,5.830000000000041,4.14,3.1267878301506684,3.672649516221569,0.46735048377843075,0.0 -95,1995-11-04,-3.38,-1.3599999999999568,1.9700000000000275,0.23,0.031405937892137,0.08469158878504748,0.6126588949933833,-1.0199999999999676 -96,1995-11-05,-5.5499999999999545,-1.4899999999999525,5.07000000000005,0.0,0.0,0.0,0.6126588949933833,-1.3724999999999563 -97,1995-11-06,-5.909999999999968,-0.7299999999999613,6.7900000000000205,0.0,0.0,0.0,0.6126588949933833,-0.89062499999996 -98,1995-11-07,-4.109999999999957,1.7100000000000364,10.4,0.0,0.0445000529552025,0.06387683276915716,0.5487820622242262,0.0 -99,1995-11-08,-1.7799999999999727,3.050000000000012,11.3,0.0,0.1223130672724198,0.05697308918063315,0.49180897304359306,0.0 -100,1995-11-09,-1.6399999999999864,5.0400000000000205,10.8,0.0,0.1755162214643708,0.05086338867496333,0.44094558436862974,0.0 -101,1995-11-10,4.710000000000036,8.840000000000032,11.86,0.03,0.1887994893893516,0.07544703561331863,0.3954985487553111,0.0 -102,1995-11-11,8.980000000000018,11.58,15.82000000000005,0.0,0.1388320801779408,0.040637907090929216,0.35486064166438186,0.0 -103,1995-11-12,7.79000000000002,12.21,18.21,3.79,4.267895261741273,3.826362006702048,0.3184986349623342,0.0 -104,1995-11-13,5.590000000000032,6.78000000000003,8.090000000000032,16.89,18.578782712880283,16.922555490349332,0.2859431446130015,0.0 -105,1995-11-14,3.140000000000043,5.650000000000034,8.340000000000032,0.27,0.3937449870874523,0.2991630617338501,0.25678008287915144,0.0 -106,1995-11-15,3.12,8.490000000000009,10.7,12.51,13.767139277936923,12.536136659577016,0.23064342330213555,0.0 -107,1995-11-16,8.110000000000014,9.720000000000027,10.45,21.95,24.080036473652527,21.973434376730264,0.20720904657187253,0.0 -108,1995-11-17,-1.4099999999999682,3.490000000000009,7.82000000000005,21.5,16.84414983379272,18.649565002430183,3.05764404414169,0.0 -109,1995-11-18,-6.20999999999998,-3.0,0.5300000000000296,1.09,0.0057034833108334,0.08571216617211164,4.061931877969578,-2.25 -110,1995-11-19,-6.2999999999999545,-1.37,1.3000000000000114,0.03,0.0011652311260632,0.005131578947368487,4.08680029902221,-1.59 -111,1995-11-20,-3.0299999999999727,0.1200000000000045,5.860000000000014,0.23,0.1240860546920592,0.15160854893138417,4.165191750090826,-0.30749999999999666 -112,1995-11-21,-3.12,2.9700000000000277,7.54000000000002,0.01,0.5695894679101051,0.5447331993207265,3.6304585507700997,0.0 -113,1995-11-22,2.140000000000043,4.06,5.100000000000023,0.0,0.7695283807549791,0.4547276093361864,3.175730941433913,0.0 -114,1995-11-23,3.82000000000005,5.5,8.420000000000016,0.0,0.8473333193484067,0.38772627218019484,2.788004669253718,0.0 -115,1995-11-24,1.4300000000000068,3.81,6.010000000000048,0.0,0.5912607893295274,0.3328692932762695,2.4551353759774486,0.0 -116,1995-11-25,-0.1200000000000045,2.7200000000000277,8.06,0.0,0.3472781173722791,0.2874421835288954,2.167693192448553,0.0 -117,1995-11-26,-0.079999999999984,3.730000000000018,7.28000000000003,0.78,1.1616154344424636,1.022080596547539,1.925612595901014,0.0 -118,1995-11-27,1.5200000000000389,2.2200000000000277,3.240000000000009,9.35,8.407357829432703,9.568354017702978,1.7072585781980356,0.0 -119,1995-11-28,-1.7199999999999704,1.6000000000000227,5.19,0.0,0.1304916655677476,0.19100075013055368,1.5162578280674819,0.0 -120,1995-11-29,-2.31,1.75,8.57000000000005,0.0,0.1297336390823979,0.16761790358860168,1.3486399244788803,0.0 -121,1995-11-30,-2.1399999999999864,1.56,9.100000000000025,0.01,0.1097379211377711,0.15583800630150949,1.2028019181773708,0.0 -122,1995-12-01,-2.339999999999975,2.6000000000000227,8.19,0.42,0.5120254010751308,0.4679660495301924,1.1548358686471785,0.0 -123,1995-12-02,1.1000000000000227,4.010000000000048,8.340000000000032,0.34,0.7990752914271858,0.46476043565705616,1.0300754329901223,0.0 -124,1995-12-03,0.1400000000000432,3.090000000000032,5.06,0.48,0.650316474490212,0.5903882510310791,0.9196871819590432,0.0 -125,1995-12-04,-1.849999999999966,0.0,2.420000000000016,0.0,0.0,0.0,0.9196871819590432,0.0 -126,1995-12-05,-2.329999999999984,-1.62,-0.9799999999999612,0.67,0.0,0.0,1.5896871819590432,-1.215 -127,1995-12-06,-2.5499999999999545,-1.4099999999999682,-0.2099999999999795,0.81,0.0,0.0,2.3996871819590435,-1.361249999999976 -128,1995-12-07,-2.56,-0.6699999999999591,0.4300000000000068,7.57,0.0375272872917752,1.0886622073578742,8.88102497460117,-0.8428124999999633 -129,1995-12-08,-1.5399999999999636,1.6100000000000136,4.180000000000007,0.16,0.3226545466316947,1.092848144664819,7.948176829936351,0.0 -130,1995-12-09,-3.31,0.1400000000000432,6.840000000000032,0.0,0.0,0.08130856948721996,7.866868260449131,0.0 -131,1995-12-10,-4.089999999999975,-0.6099999999999568,6.88,0.0,0.0,0.0,7.866868260449131,-0.4574999999999676 -132,1995-12-11,-4.229999999999961,-1.25,4.640000000000043,0.0,0.0,0.0,7.866868260449131,-1.051874999999992 -133,1995-12-12,-3.979999999999961,-2.159999999999968,0.2600000000000477,0.0,0.0,0.0,7.866868260449131,-1.882968749999974 -134,1995-12-13,-4.519999999999982,-3.359999999999957,-2.17999999999995,1.12,0.0,0.0,8.986868260449132,-2.9907421874999613 -135,1995-12-14,-7.009999999999991,-4.919999999999959,-2.839999999999975,0.25,0.0,0.0,9.236868260449132,-4.43768554687496 -136,1995-12-15,-5.239999999999952,-0.2999999999999545,1.6100000000000136,0.03,0.0021196756437695,0.007051094890511044,9.259817165558621,-1.3344213867187058 -137,1995-12-16,0.5600000000000023,2.670000000000016,5.2900000000000205,0.06,0.7038618900513406,1.5824189847753731,7.737398180783248,0.0 -138,1995-12-17,1.88,3.480000000000018,5.230000000000018,13.84,15.381887810021304,15.030177330102008,6.54722085068124,0.0 -139,1995-12-18,-3.2999999999999545,0.8300000000000409,5.03000000000003,0.01,0.0584176984424003,0.4579170094277316,6.0993038412535086,0.0 -140,1995-12-19,-3.62,-0.1499999999999772,4.06,0.0,0.0,0.0,6.0993038412535086,-0.1124999999999829 -141,1995-12-20,-0.42999999999995,4.520000000000039,6.180000000000007,4.31,4.81506338872838,4.950701822597632,5.458602018655876,0.0 -142,1995-12-21,4.53000000000003,6.360000000000014,7.400000000000034,0.02,1.7932314484307648,0.7731236943989265,4.70547832425695,0.0 -143,1995-12-22,5.140000000000043,8.480000000000018,9.56,11.88,14.81237628080984,12.504564422350498,4.0809139019064515,0.0 -144,1995-12-23,6.2900000000000205,7.740000000000009,9.210000000000036,26.76,30.769500612399348,27.283935728582048,3.5569781733244055,0.0 -145,1995-12-24,6.210000000000036,8.03000000000003,9.53000000000003,30.64,34.87743529551084,31.08370585743432,3.113272315890086,0.0 -146,1995-12-25,3.930000000000007,7.160000000000025,8.62,37.48,42.11436540955247,37.85874807307523,2.7345242428148495,0.0 -147,1995-12-26,-3.089999999999975,-0.339999999999975,3.4700000000000277,18.14,6.0360850834742505,9.59539634146349,11.27912790135136,-0.25499999999998124 -148,1995-12-27,-6.67999999999995,-4.56,-1.839999999999975,0.0,0.0,0.0,11.27912790135136,-3.4837499999999952 -149,1995-12-28,-6.779999999999973,-2.4499999999999886,-0.8199999999999932,4.02,0.0,0.0,15.29912790135136,-2.7084374999999903 -150,1995-12-29,-1.38,-0.0899999999999749,0.3100000000000023,2.29,0.0,0.42005917159763584,17.169068729753725,-0.7446093749999787 -151,1995-12-30,-0.2999999999999545,0.5300000000000296,1.5900000000000318,14.06,3.506494983735134,12.293976187866267,18.93509254188746,0.0 -152,1995-12-31,1.5400000000000205,3.0200000000000387,3.7800000000000296,6.93,7.843279996004377,9.547147674207892,16.317944867679568,0.0 -153,1996-01-01,0.7900000000000205,2.7700000000000387,4.57000000000005,5.95,6.370358663903014,8.16189730573052,14.106047561949048,0.0 -154,1996-01-02,1.6800000000000068,3.200000000000045,4.78000000000003,11.08,12.562873861421146,13.45112112481082,11.734926437138228,0.0 -155,1996-01-03,-0.8599999999999568,1.4300000000000068,4.53000000000003,0.0,0.2809310093388034,0.9713840404492039,10.763542396689024,0.0 -156,1996-01-04,-0.9099999999999682,1.1000000000000227,4.680000000000007,0.06,0.1945785157198958,0.7699324601669025,10.053609936522122,0.0 -157,1996-01-05,0.5900000000000318,2.12,4.350000000000023,3.87,3.838308448569295,5.2173645422614765,8.706245394260645,0.0 -158,1996-01-06,1.840000000000032,3.710000000000037,4.740000000000009,11.11,13.151639201386882,12.507880814489907,7.308364579770736,0.0 -159,1996-01-07,2.3600000000000136,3.38,4.37,2.8,4.452375087802537,3.902371992772398,6.205992586998338,0.0 -160,1996-01-08,2.44,4.19,6.350000000000023,0.01,2.0276205462050325,0.89850526729393,5.317487319704409,0.0 -161,1996-01-09,2.840000000000032,4.930000000000007,8.210000000000036,3.47,6.172052895395036,4.198434472374112,4.589052847330297,0.0 -162,1996-01-10,2.9700000000000277,6.88,12.85,0.0,3.213302022734443,0.6053946398636827,3.9836582074666147,0.0 -163,1996-01-11,4.830000000000041,7.550000000000011,12.54,3.01,6.517994738950627,3.518754385816237,3.4749038216503774,0.0 -164,1996-01-12,1.6800000000000068,5.140000000000043,7.600000000000023,4.3,6.351355220118207,4.731483852737742,3.0434199689126356,0.0 -165,1996-01-13,-0.3299999999999841,3.680000000000007,11.27,0.0,1.0784288281271448,0.3687713425630288,2.6746486263496068,0.0 -166,1996-01-14,-0.4199999999999591,3.0300000000000296,9.990000000000007,0.0,0.7130706403831646,0.31722635781909564,2.3574222685305113,0.0 -167,1996-01-15,-1.6399999999999864,2.340000000000032,9.410000000000023,0.0,0.4162367524938879,0.2743998112168294,2.0830224573136817,0.0 -168,1996-01-16,-3.37,0.75,7.800000000000011,0.0,0.034991995994679,0.23848423451692566,1.8445382227967562,0.0 -169,1996-01-17,-4.329999999999984,-0.5999999999999659,6.470000000000027,0.0,0.0,0.0,1.8445382227967562,-0.4499999999999744 -170,1996-01-18,-5.21999999999997,-1.579999999999984,4.94,0.0,0.0,0.0,1.8445382227967562,-1.2974999999999817 -171,1996-01-19,-5.479999999999961,-1.94,4.69,0.0,0.0,0.0,1.8445382227967562,-1.7793749999999955 -172,1996-01-20,-5.009999999999991,-0.6499999999999773,4.740000000000009,0.0,0.0,0.0,1.8445382227967562,-0.9323437499999818 -173,1996-01-21,-2.9499999999999886,1.4500000000000457,9.81,0.0,0.1343745425437784,0.20812038940898775,1.6364178333877684,0.0 -174,1996-01-22,-2.319999999999993,3.31,4.740000000000009,2.02,1.6962712177052657,1.6230294681490363,2.0333883652387326,0.0 -175,1996-01-23,3.010000000000048,4.650000000000034,7.470000000000027,0.9,2.305417392602936,1.1320996137130672,1.8012887515256653,0.0 -176,1996-01-24,0.1100000000000136,4.220000000000027,9.350000000000025,0.13,1.194914839352938,0.3326986186338913,1.598590132891774,0.0 -177,1996-01-25,0.2900000000000204,2.340000000000032,4.5400000000000205,1.51,1.5176455610304913,1.6876350199822057,1.4209551129095683,0.0 -178,1996-01-26,1.660000000000025,2.87,3.840000000000032,1.58,1.9481674581918595,1.7361404764823711,1.2648146364271973,0.0 -179,1996-01-27,-3.4899999999999523,1.75,8.970000000000027,0.0,0.1640025960479051,0.13760937645573584,1.1272052599714615,0.0 -180,1996-01-28,-3.669999999999959,3.0200000000000387,10.44,0.05,0.5052090533034768,0.16005942084830943,1.017145839123152,0.0 -181,1996-01-29,-3.859999999999957,2.6000000000000227,11.59,0.0,0.3083432669312674,0.10891116797638543,0.9082346711467666,0.0 -182,1996-01-30,-5.17999999999995,-0.75,7.44,0.0,0.0,0.0,0.9082346711467666,-0.5625 -183,1996-01-31,-6.489999999999952,-1.2899999999999636,6.980000000000018,0.0,0.0,0.0,0.9082346711467666,-1.1081249999999727 -184,1996-02-01,-6.62,-0.0299999999999727,3.87,0.11,0.0274761097964633,0.040581506196377515,0.9776531649503891,-0.2995312499999727 -185,1996-02-02,0.4900000000000091,2.890000000000043,3.640000000000043,13.45,10.430584102941298,13.554413906772885,0.8732392581775045,0.0 -186,1996-02-03,-1.0299999999999727,1.69,5.28000000000003,0.01,0.1475958305336615,0.10117895820555109,0.7820602999719535,0.0 -187,1996-02-04,-4.389999999999986,-2.38,-0.5600000000000023,0.12,0.0,0.0,0.9020602999719535,-1.785 -188,1996-02-05,-8.329999999999984,-5.539999999999964,-3.5499999999999545,0.02,0.0,0.0,0.9220602999719535,-4.601249999999973 -189,1996-02-06,-8.489999999999952,-3.25,-1.2099999999999795,8.0,0.0,0.0,8.922060299971953,-3.587812499999993 -190,1996-02-07,-2.4899999999999523,-0.8199999999999932,1.240000000000009,10.22,0.7406341025377242,3.3975335120644035,15.74452678790755,-1.5119531249999931 -191,1996-02-08,-8.94,-3.62,-1.2199999999999704,7.3,0.0,0.0,23.04452678790755,-3.092988281249998 -192,1996-02-09,-9.96999999999997,-2.4899999999999523,0.8900000000000432,2.43,0.0280062344426402,0.19914364640884896,25.2753831414987,-2.6407470703124636 -193,1996-02-10,-1.17999999999995,0.9600000000000364,3.7000000000000455,3.38,1.6860759552255755,3.5734054864409943,25.081977655057706,0.0 -194,1996-02-11,-0.6699999999999591,0.5900000000000318,3.080000000000041,4.51,2.159618390178665,4.3222278090098225,25.269749846047883,0.0 -195,1996-02-12,-0.8299999999999841,0.5,1.75,26.04,5.814081400879997,18.287461299814048,33.02228854623384,0.0 -196,1996-02-13,-2.1399999999999864,-1.1499999999999773,-0.7799999999999727,16.91,0.0,0.0,49.932288546233835,-0.862499999999983 -197,1996-02-14,-4.889999999999986,-2.259999999999991,0.6299999999999955,0.0,0.0,0.0,49.932288546233835,-1.910624999999989 -198,1996-02-15,-8.589999999999975,-4.609999999999957,-0.4499999999999886,0.0,0.0,0.0,49.932288546233835,-3.935156249999965 -199,1996-02-16,-7.289999999999964,-0.5799999999999841,3.69,3.05,0.6731666590023949,1.0250000000000035,51.95728854623383,-1.4187890624999793 -200,1996-02-17,-0.6200000000000045,0.1700000000000159,0.7600000000000477,4.15,0.2474681828239052,2.285507246376869,53.821781299856966,-0.2271972656249829 -201,1996-02-18,-0.7999999999999545,0.9300000000000068,2.830000000000041,16.45,6.935452724705482,14.562373243008686,55.70940805684828,0.0 -202,1996-02-19,-5.37,-1.9699999999999704,1.0200000000000389,11.28,0.3161137067144335,1.8005633802817478,65.18884467656653,-1.4774999999999778 -203,1996-02-20,-5.859999999999957,-4.729999999999961,-3.4899999999999523,1.01,0.0,0.0,66.19884467656654,-3.9168749999999655 -204,1996-02-21,-7.079999999999984,-4.20999999999998,-1.67999999999995,0.51,0.0,0.0,66.70884467656654,-4.136718749999977 -205,1996-02-22,-15.07,-9.5,-5.019999999999982,0.25,0.0,0.0,66.95884467656654,-8.159179687499995 -206,1996-02-23,-11.75,-6.06,-1.8199999999999927,0.64,0.0,0.0,67.59884467656654,-6.584794921874998 -207,1996-02-24,-10.02,-3.669999999999959,0.5500000000000114,0.0,0.0,0.0,67.59884467656654,-4.398698730468719 -208,1996-02-25,-3.70999999999998,3.140000000000043,8.75,0.0,2.156241859954948,6.696411757391747,60.9024329191748,0.0 -209,1996-02-26,-0.9199999999999592,3.010000000000048,9.980000000000018,0.0,3.087384584929807,5.8947989306193564,55.00763398855544,0.0 -210,1996-02-27,-0.169999999999959,3.0200000000000387,7.210000000000036,0.03,3.1239899255900263,5.4806113372197744,49.557022651335664,0.0 -211,1996-02-28,-3.56,3.180000000000007,11.28,0.0,3.2978639602420183,5.289131390261674,44.26789126107399,0.0 -212,1996-02-29,-4.069999999999993,1.1100000000000136,9.03000000000003,0.0,0.3567621889676357,1.6934711286735387,42.574420132400455,0.0 -213,1996-03-01,-4.039999999999964,-0.5199999999999818,3.770000000000039,0.0,0.0,0.0,42.574420132400455,-0.38999999999998636 -214,1996-03-02,-6.389999999999986,-2.2199999999999704,3.94,0.0,0.0,0.0,42.574420132400455,-1.7624999999999744 -215,1996-03-03,-8.95999999999998,-3.099999999999966,3.44,0.0,0.0,0.0,42.574420132400455,-2.765624999999968 -216,1996-03-04,-9.519999999999982,-3.38,3.5400000000000205,0.0,0.0,0.0,42.574420132400455,-3.226406249999992 -217,1996-03-05,-8.349999999999966,-2.109999999999957,5.170000000000016,0.0,0.0,0.0,42.574420132400455,-2.389101562499966 -218,1996-03-06,-6.649999999999977,-0.4599999999999795,6.37,0.0,0.0,0.0,42.574420132400455,-0.9422753906249761 -219,1996-03-07,-3.5299999999999727,0.0600000000000022,4.590000000000032,0.0,0.0,0.0,42.574420132400455,-0.19056884765624238 -220,1996-03-08,-3.87,1.1000000000000227,8.32000000000005,0.0,0.2438265957256561,1.6297525538942446,40.94466757850621,0.0 -221,1996-03-09,-3.359999999999957,1.94,10.05,0.0,1.1388520438817973,2.792037260834194,38.15263031767202,0.0 -222,1996-03-10,-4.759999999999991,1.0100000000000475,9.13,0.0,0.2719305874612624,1.3802239069002076,36.772406410771815,0.0 -223,1996-03-11,-5.839999999999975,-0.3499999999999659,7.220000000000027,0.0,0.0,0.0,36.772406410771815,-0.2624999999999744 -224,1996-03-12,-6.25,-2.579999999999984,2.32000000000005,0.0,0.0,0.0,36.772406410771815,-2.0006249999999817 -225,1996-03-13,-4.079999999999984,1.5900000000000318,6.660000000000025,0.0,0.3791151256600565,2.115735344970852,34.656671065800964,0.0 -226,1996-03-14,0.5,3.1100000000000136,5.31,8.22,9.906190301216355,12.187145006385796,30.68952605941517,0.0 -227,1996-03-15,-0.5299999999999727,3.930000000000007,10.23,0.0,4.327884642815337,4.607540703492986,26.081985355922182,0.0 -228,1996-03-16,-1.87,4.06,10.0,1.75,5.756839309410747,5.776716388870842,22.05526896705134,0.0 -229,1996-03-17,2.6100000000000136,4.0400000000000205,6.890000000000043,1.04,5.27778782414748,4.869023212704061,18.22624575434728,0.0 -230,1996-03-18,2.180000000000007,3.480000000000018,5.400000000000034,0.08,3.1345834681097315,3.0316114616190193,15.274634292728258,0.0 -231,1996-03-19,-1.849999999999966,3.330000000000041,10.04,0.0,2.697747611970045,2.5686843303704503,12.705949962357808,0.0 -232,1996-03-20,-1.62,4.0,10.56,1.17,4.600191148248555,3.4512024406752193,10.424747521682589,0.0 -233,1996-03-21,0.4700000000000273,6.230000000000018,11.7,15.11,21.90220407894572,16.908421216592938,8.626326305089648,0.0 -234,1996-03-22,2.6000000000000227,5.180000000000007,7.610000000000014,3.02,8.206401831755269,4.4002534227805725,7.246072882309076,0.0 -235,1996-03-23,2.450000000000045,8.88,17.14,0.0,8.996616322662735,1.0898363645709683,6.156236517738108,0.0 -236,1996-03-24,4.4500000000000455,10.5,17.25,0.0,9.558018188151596,0.8792510493939107,5.276985468344197,0.0 -237,1996-03-25,6.730000000000018,10.97,17.76,0.01,8.683573440801716,0.7313994945343795,4.5555859738098174,0.0 -238,1996-03-26,5.650000000000034,8.81,13.93,13.6,20.851264285080543,14.199919119242695,3.9556668545671214,0.0 -239,1996-03-27,0.2200000000000272,2.69,6.56,0.96,1.6874848237197293,1.4644094002693866,3.4512574542977346,0.0 -240,1996-03-28,-0.7999999999999545,1.2100000000000364,3.8600000000000136,0.0,0.1349746964584588,0.4279799713960157,3.023277482901719,0.0 -241,1996-03-29,-1.62,0.9700000000000272,4.760000000000048,0.12,0.1478415519666008,0.459771915628664,2.683505567273055,0.0 -242,1996-03-30,-3.859999999999957,-0.339999999999975,4.650000000000034,0.0,0.0,0.0,2.683505567273055,-0.25499999999998124 -243,1996-03-31,-5.079999999999984,1.170000000000016,5.980000000000018,0.01,0.1276965509722427,0.3244799683661603,2.3690255989068945,0.0 -244,1996-04-01,-0.2799999999999727,1.3500000000000227,3.930000000000007,4.9,3.292355620397368,4.894119406012607,2.374906192894288,0.0 -245,1996-04-02,-2.6399999999999864,0.5400000000000205,3.07000000000005,0.0,0.0178927156077016,0.23532351283325406,2.1395826800610336,0.0 -246,1996-04-03,-2.019999999999982,-0.2199999999999704,2.2900000000000205,0.0,0.0,0.0,2.1395826800610336,-0.1649999999999778 -247,1996-04-04,-3.0299999999999727,-0.0600000000000022,4.2000000000000455,0.0,0.0,0.0,2.1395826800610336,-0.08624999999999611 -248,1996-04-05,-3.06,3.760000000000048,10.24,0.0,1.6630649381067064,0.24580157005365394,1.8937811100073796,0.0 -249,1996-04-06,0.4900000000000091,6.670000000000016,13.81,0.0,3.697577027591948,0.2143251789307771,1.6794559310766024,0.0 -250,1996-04-07,3.1100000000000136,8.340000000000032,15.12,0.0,4.5691088039113055,0.18756551047653883,1.4918904206000636,0.0 -251,1996-04-08,2.0400000000000205,7.390000000000043,14.68,0.01,3.5891350294284985,0.174671282216072,1.3272191383839915,0.0 -252,1996-04-09,2.25,6.930000000000007,13.56,0.0,2.9953880454388866,0.14497499246097126,1.1822441459230202,0.0 -253,1996-04-10,2.13,9.27000000000004,15.09,0.55,4.383567109723135,0.6779468326947163,1.0542973132283038,0.0 -254,1996-04-11,1.4700000000000273,6.19,11.02,1.54,3.776101293282786,1.6531616299011835,0.9411356833271204,0.0 -255,1996-04-12,1.150000000000034,7.28000000000003,12.71,0.55,3.022111982670354,0.6502747558841069,0.8408609274430134,0.0 -256,1996-04-13,1.81,6.390000000000043,9.180000000000009,0.7,2.676673043442216,0.7890043166224326,0.7518566108205808,0.0 -257,1996-04-14,-1.13,4.340000000000032,8.220000000000027,0.69,1.6050022846840162,0.6949870950147159,0.7468695158058648,0.0 -258,1996-04-15,-0.6599999999999682,6.270000000000039,13.83,0.0,1.709669657078668,0.07856710963405879,0.668302406171806,0.0 -259,1996-04-16,1.7700000000000389,8.360000000000014,15.31,0.0,2.348032543353897,0.06993698841123117,0.5983654177605748,0.0 -260,1996-04-17,6.160000000000025,8.490000000000009,13.07000000000005,1.66,3.910493367416008,1.722327078331529,0.5360383394290458,0.0 -261,1996-04-18,4.12,8.29000000000002,12.33,0.0,1.8349530970895187,0.05560255254916335,0.4804357868798824,0.0 -262,1996-04-19,4.600000000000023,11.55,18.57000000000005,0.0,2.3083248130674345,0.04964915387839157,0.43078663300149084,0.0 -263,1996-04-20,6.800000000000011,12.79,20.12,0.0,2.316499565945123,0.044369538885843995,0.38641709411564684,0.0 -264,1996-04-21,9.110000000000014,13.26,17.3,0.01,2.1800646315519465,0.04968036750510953,0.34673672661053734,0.0 -265,1996-04-22,10.19,15.45,20.52,2.14,4.627486471452334,2.175509967927973,0.31122675868256466,0.0 -266,1996-04-23,6.170000000000016,8.13,11.01,14.96,17.39171156070873,14.991796449186273,0.27943030949629255,0.0 -267,1996-04-24,4.910000000000025,8.57000000000005,12.85,0.0,1.0186256647902074,0.028486164927515736,0.25094414456877684,0.0 -268,1996-04-25,5.150000000000034,9.340000000000032,13.52,0.0,1.044616593435496,0.02553245477133459,0.22541168979744225,0.0 -269,1996-04-26,7.050000000000011,12.31,17.25,0.0,1.015958692206702,0.02289460663591522,0.20251708316152703,0.0 -270,1996-04-27,8.140000000000043,11.44,15.54,1.86,2.8561508395051027,1.8805369961663636,0.18198008699516352,0.0 -271,1996-04-28,8.57000000000005,11.02,15.68,2.89,3.837910701791528,2.90842836902618,0.16355171796898374,0.0 -272,1996-04-29,8.180000000000007,10.1,12.34,18.07,20.32537106109498,18.08654123914581,0.14701047882317578,0.0 -273,1996-04-30,6.610000000000014,9.110000000000014,12.02,0.15,0.6430527832002293,0.16485138164701882,0.13215909717615695,0.0 -274,1996-05-01,6.100000000000023,8.760000000000048,12.23,13.71,15.399895469829364,13.723337403506315,0.1188216936698427,0.0 -275,1996-05-02,1.63,5.980000000000018,13.05,13.38,14.653949428618674,13.391980378397989,0.10684131527185398,0.0 -276,1996-05-03,2.8500000000000227,5.050000000000011,6.360000000000014,6.96,7.910299747542512,6.970763534799498,0.09607778047235585,0.0 -277,1996-05-04,5.0400000000000205,7.640000000000043,9.920000000000016,1.22,1.6427000510530516,1.2296719885207403,0.08640579195161556,0.0 -278,1996-05-05,5.300000000000011,9.88,14.63,0.0,0.2678946391885757,0.008692512463996474,0.07771327948761908,0.0 -279,1996-05-06,8.410000000000025,13.17,19.07000000000005,3.49,4.04971830997425,3.4978133377302036,0.06989994175741555,0.0 -280,1996-05-07,6.57000000000005,10.65,17.13,23.92,26.359854699585732,23.927023981234072,0.06287596052334526,0.0 -281,1996-05-08,8.650000000000034,10.79,15.85,21.7,23.907486548610763,21.706315095832007,0.056560864691337066,0.0 -282,1996-05-09,6.010000000000048,8.510000000000048,10.65,0.02,0.1799872938804076,0.02567833964650802,0.05088252504482905,0.0 -283,1996-05-10,5.94,7.640000000000043,8.660000000000025,0.0,0.1396105673381939,0.0051062618221700655,0.045776263222658986,0.0 -284,1996-05-11,7.720000000000027,10.23,13.6,0.0,0.1235384018160684,0.004592202398283895,0.04118406082437509,0.0 -285,1996-05-12,6.850000000000023,7.900000000000034,8.710000000000036,12.84,14.149478021161496,12.844130204351126,0.03705385647324956,0.0 -286,1996-05-13,6.920000000000016,8.090000000000032,9.210000000000036,0.46,0.6002525845729874,0.46371493616206083,0.03333892031118872,0.0 -287,1996-05-14,7.5,9.210000000000036,10.98,0.07,0.1630436502284691,0.07334162351778228,0.02999729679340645,0.0 -288,1996-05-15,7.680000000000007,11.93,16.38,0.0,0.0770305011192022,0.00300598895659689,0.02699130783680956,0.0 -289,1996-05-16,10.25,15.6,21.36,1.88,2.1243687607311594,1.882704198447606,0.024287109389203462,0.0 -290,1996-05-17,11.04,14.13,17.84,0.11,0.1815672975274756,0.11243281403424582,0.02185429535495764,0.0 -291,1996-05-18,10.91,14.93,19.51,4.1,4.537906300050772,4.102188751795098,0.01966554355985904,0.0 -292,1996-05-19,6.110000000000014,7.580000000000041,10.73,19.64,21.52437993092457,19.64196924447726,0.017696299082599582,0.0 -293,1996-05-20,4.270000000000039,8.180000000000007,11.27,0.24,0.3062077135968897,0.2417718082441572,0.015924490838442367,0.0 -294,1996-05-21,4.590000000000032,8.200000000000045,13.86,6.1,6.709259309142543,6.101594213053295,0.014330277785146617,0.0 -295,1996-05-22,6.710000000000036,11.26,15.27,2.85,3.151443490195289,2.8514344562420786,0.01289582154306811,0.0 -296,1996-05-23,7.260000000000048,12.04,15.66,1.21,1.354531605123849,1.2112907389535033,0.01160508258956489,0.0 -297,1996-05-24,11.56,16.04,22.61,5.29,5.8125697865361525,5.291161445079531,0.010443637510033904,0.0 -298,1996-05-25,10.93,13.07000000000005,16.15,25.17,27.547532702183297,25.17104512243955,0.009398515070483822,0.0 -299,1996-05-26,11.92,13.34,15.05,15.2,16.643193371020732,15.200940465945566,0.00845804912491686,0.0 -300,1996-05-27,8.53000000000003,9.81,11.96,30.84,33.742492103606885,30.84084630253539,0.007611746589527799,0.0 -301,1996-05-28,4.300000000000011,9.710000000000036,14.24,0.01,0.0292140818712618,0.0107615776808023,0.0068501689087255005,0.0 -302,1996-05-29,8.5,13.78,18.92,0.0,0.0164142669752372,0.0006853433001616965,0.006164825608563804,0.0 -303,1996-05-30,12.93,17.83,23.25,0.0,0.0147427347887796,0.0006167469243853134,0.0055480786841784905,0.0 -304,1996-05-31,13.13,18.28,24.16,0.05,0.0679168786088002,0.050555021982470916,0.004993056701707574,0.0 -305,1996-06-01,11.11,13.17,15.44,13.07,14.30334760838132,13.070499479087681,0.004493577614027255,0.0 -306,1996-06-02,10.07000000000005,11.02,11.98,22.55,24.668088353925437,22.550449498218743,0.004044079395283139,0.0 -307,1996-06-03,10.18,13.28,17.28,0.0,0.0096120500501282,0.00040452170207239336,0.003639557693210745,0.0 -308,1996-06-04,11.49,15.31,19.76,0.0,0.0086405028313794,0.0003640479112214851,0.00327550978198926,0.0 -309,1996-06-05,12.75,18.04,23.75,0.0,0.0077680932268617,0.00032762560893939154,0.0029478841730498683,0.0 -310,1996-06-06,14.5,20.17,26.83,0.02,0.0288536115004805,0.020294848865144044,0.0026530353079058243,0.0 -311,1996-06-07,15.23,19.89,24.48,8.51,9.31157655552411,8.51026535249131,0.002387682816596704,0.0 -312,1996-06-08,13.48,18.63,23.79,12.86,14.067470205504993,12.860238807938053,0.002148874878543379,0.0 -313,1996-06-09,13.45,18.03,22.49,0.23,0.2565742258238463,0.23021491960834767,0.0019339552701957267,0.0 -314,1996-06-10,13.11,18.44,24.18,0.44,0.4856887592251862,0.44019342154375496,0.0017405337264407852,0.0 -315,1996-06-11,14.34,20.13,26.59,0.02,0.0259787331548695,0.020174074445569744,0.0015664592808710403,0.0 -316,1996-06-12,14.76,20.21,25.85,0.0,0.0036967894319465,0.00015666299669765685,0.0014097962841733834,0.0 -317,1996-06-13,12.13,16.98,21.74,0.0,0.003325578304182,0.00014099345365711568,0.0012688028305162678,0.0 -318,1996-06-14,10.88,16.28,21.67,0.0,0.0029917804249204,0.0001268914812518075,0.0011419113492644602,0.0 -319,1996-06-15,11.32000000000005,16.82000000000005,22.48,0.0,0.0026915986860793,0.00011420020529069374,0.0010277111439737664,0.0 -320,1996-06-16,11.53,17.13,22.6,0.0,0.0024216263646773,0.00010277846126273291,0.0009249326827110336,0.0 -321,1996-06-17,11.41,17.55,23.22,0.0,0.0021788060356536,9.24992191375045e-05,0.0008324334635735291,0.0 -322,1996-06-18,12.56,18.24,23.92,0.0,0.0019603929882569,8.324816649022165e-05,0.0007491852970833075,0.0 -323,1996-06-19,14.11,18.73,24.33,0.0,0.0017639226190962,7.492243396571557e-05,0.0006742628631175918,0.0 -324,1996-06-20,10.91,15.26,18.84,0.29,0.3186889233621154,0.2900674294487236,0.0006068334143939744,0.0 -325,1996-06-21,8.37,13.07000000000005,17.0,27.17,29.71058104499796,27.170060685902968,0.0005461475114276697,0.0 -326,1996-06-22,6.38,7.900000000000034,9.25,3.04,3.3253861535289424,3.04005461682596,0.0004915306854675705,0.0 -327,1996-06-23,4.31,7.87,10.02,3.41,3.7298355395173592,3.4100491547491347,0.00044237593633296234,0.0 -328,1996-06-24,8.340000000000032,10.56,14.02,0.01,0.0119751843645376,0.010044238954899113,0.0003981369814338496,0.0 -329,1996-06-25,7.350000000000023,10.68,13.85,0.05,0.0556091700256162,0.05003981480076116,0.00035832218067269317,0.0 -330,1996-06-26,7.420000000000016,11.58,14.53,0.0,0.0008427119050472,3.583311118216766e-05,0.0003224890694905255,0.0 -331,1996-06-27,9.02000000000004,14.34,19.85,0.0,0.0007583610345825,3.224963036811327e-05,0.00029023943912241223,0.0 -332,1996-06-28,12.06,16.99,21.6,0.02,0.0225515460589884,0.02002902452987876,0.00026121490924365287,0.0 -333,1996-06-29,11.56,14.82000000000005,18.42,0.0,0.0006141621028411,2.6121965555115564e-05,0.0002350929436885373,0.0 -334,1996-06-30,11.26,14.15,17.13,2.08,2.274937611846819,2.0800235096788184,0.0002115832648703282,0.0 -335,1996-07-01,10.5,12.89,15.87,1.0,1.0939516817604502,1.00002115863789,0.00019042462698044916,0.0 -336,1996-07-02,5.960000000000036,10.36,12.83,0.0,0.0004476312797316,1.9042714933525387e-05,0.00017138191204692376,0.0 -337,1996-07-03,9.050000000000011,16.28,20.89,1.49,1.6296497270781949,1.4900171383955148,0.0001542435165320936,0.0 -338,1996-07-04,13.7,14.8,15.94,4.94,5.402026700050503,4.940015424517145,0.00013881899938811106,0.0 -339,1996-07-05,11.8,13.58,15.39,39.6,43.30111587375899,39.600013882033984,0.00012493696540209328,0.0 -340,1996-07-06,6.210000000000036,10.6,12.97,0.13,0.1424426912886454,0.13001249380511823,0.00011244316028387953,0.0 -341,1996-07-07,8.090000000000032,9.930000000000009,11.18,76.07,83.17933155596198,76.07001124440397,0.00010119875630747786,0.0 -342,1996-07-08,7.460000000000036,8.860000000000014,10.98,13.12,14.346358018093982,13.120010119946867,9.107880943896277e-05,0.0 -343,1996-07-09,8.170000000000016,11.48,14.75,0.0,0.0002140383288111,9.107938646397526e-06,8.197087079256524e-05,0.0 -344,1996-07-10,8.710000000000036,12.08,14.77,3.36,3.674199019650055,3.3600081971338183,7.37737369743485e-05,0.0 -345,1996-07-11,10.13,13.91,17.69,0.0,0.0001733622554468,7.37741155594465e-06,6.639632541840386e-05,0.0 -346,1996-07-12,11.55,16.59,21.69,0.0,0.0001560226572058,6.639663207198353e-06,5.97566622112055e-05,0.0 -347,1996-07-13,12.89,17.94,23.15,0.0,0.0001404176597067,5.975691060035011e-06,5.378097115117049e-05,0.0 -348,1996-07-14,15.19,19.67,24.84,0.0,0.0001263736810723,5.3781172346191775e-06,4.8402853916551315e-05,0.0 -349,1996-07-15,15.99,20.47,25.4,0.03,0.0329173630055413,0.030004840301688436,4.356255222811301e-05,0.0 -350,1996-07-16,13.93,19.26,24.88,0.0,0.0001023596170448,4.356268423195797e-06,3.920628380491721e-05,0.0 -351,1996-07-17,11.91,17.49,23.22,0.0,9.212247953979466e-05,3.920639072795963e-06,3.528564473212125e-05,0.0 -352,1996-07-18,11.03,16.83,23.16,0.0,8.29092792090989e-05,3.5285731339733123e-06,3.1757071598147944e-05,0.0 -353,1996-07-19,10.29,16.2,22.67,0.02,0.0219437032363974,0.02000317571417503,2.8581357423120414e-05,0.0 -354,1996-07-20,10.36,15.71,22.14,0.0,6.71551970609942e-05,2.858141424631568e-06,2.5723215998488848e-05,0.0 -355,1996-07-21,11.19,16.24,21.82000000000005,0.0,6.0439171251009286e-05,2.5723262025256677e-06,2.315088979596318e-05,0.0 -356,1996-07-22,13.85,19.39,24.72,0.0,5.4394844187894266e-05,2.3150927077630297e-06,2.083579708820015e-05,0.0 -357,1996-07-23,14.63,20.36,25.81,8.11,8.867963188745986,8.110002083582728,1.8752214359566182e-05,0.0 -358,1996-07-24,12.46,16.78,20.67,0.03,0.0328476877407757,0.030001875223882004,1.687699047756105e-05,0.0 -359,1996-07-25,11.09,16.73,22.65,0.0,3.965311254824137e-05,1.6877010290548288e-06,1.518928944850622e-05,0.0 -360,1996-07-26,14.2,18.6,23.67,0.02,0.0219047732813552,0.020001518930549703,1.367035889880405e-05,0.0 -361,1996-07-27,15.46,20.13,25.15,0.12,0.1312466326585355,0.1200013670371898,1.2303321708994197e-05,0.0 -362,1996-07-28,13.09,18.01,22.85,0.0,2.890673171064073e-05,1.2303332238420503e-06,1.1072988485152147e-05,0.0 -363,1996-07-29,14.53,19.81,25.79,4.16,4.54879583252062,4.160001107299702,9.965688783753563e-06,0.0 -364,1996-07-30,12.3,16.69,20.83,0.01,0.0109579571205916,0.010000996569569211,8.969119214542795e-06,0.0 -365,1996-07-31,13.04,17.91,24.04,0.0,2.107280157476448e-05,8.969124810308758e-07,8.07220673351192e-06,0.0 -366,1996-08-01,13.08,20.41,27.28,4.81,5.259534065864288,4.810000807221126,7.264985606903748e-06,0.0 -367,1996-08-02,13.33,17.47,23.76,1.35,1.4761803506990594,1.350000726498928,6.5384866790752655e-06,0.0 -368,1996-08-03,9.800000000000011,15.32000000000005,20.18,0.03,0.0328189904477344,0.03000065384896529,5.8846377137859046e-06,0.0 -369,1996-08-04,11.61,16.02,22.13,0.0,1.382574017726499e-05,5.884640122578517e-07,5.296173701528053e-06,0.0 -370,1996-08-05,12.14,16.8,21.74,17.67,19.32134962067883,17.670000529617568,4.766556136263063e-06,0.0 -371,1996-08-06,15.08,18.19,22.86,14.7,16.07378915635398,14.70000047665577,4.289900364595901e-06,0.0 -372,1996-08-07,11.79,16.04,20.53,0.1,0.1093555072000932,0.10000042899016448,3.860910200123227e-06,0.0 -373,1996-08-08,12.18,16.53,21.54,0.0,9.071014350235737e-06,3.860911237029138e-07,3.474819076420313e-06,0.0 -374,1996-08-09,13.83,19.39,25.54,0.01,0.0109427067319402,0.010000347481991632,3.127337084788908e-06,0.0 -375,1996-08-10,13.61,17.68,24.83,34.84,38.09595456116111,34.84000031273378,2.814603308278628e-06,0.0 -376,1996-08-11,11.02,14.97,18.15,19.69,21.53012144159168,19.69000028146039,2.5331429223453425e-06,0.0 -377,1996-08-12,11.32000000000005,12.77,14.57000000000005,14.85,16.23780205143437,14.850000253314336,2.279828585475418e-06,0.0 -378,1996-08-13,11.33,12.96,14.23,11.61,12.69500957992746,11.610000227982894,2.0518456907732114e-06,0.0 -379,1996-08-14,12.36,14.3,17.02,0.39,0.4264519909854996,0.3900002051845984,1.846661092410613e-06,0.0 -380,1996-08-15,10.35,15.3,20.2,0.03,0.0328079670972192,0.03000018466613296,1.6619949594484776e-06,0.0 -381,1996-08-16,10.49,15.59,22.7,0.03,0.0328075332338626,0.030000166199515156,1.4957954442895605e-06,0.0 -382,1996-08-17,11.08,16.99,24.12,0.0,3.514272465291945e-06,1.495795599923518e-07,1.3462158842972086e-06,0.0 -383,1996-08-18,12.47,17.43,24.27,0.02,0.0218722485003513,0.020000134621601037,1.2115942832611374e-06,0.0 -384,1996-08-19,12.82000000000005,18.43,24.36,0.03,0.0328064750431046,0.030000121159438536,1.0904348447238802e-06,0.0 -385,1996-08-20,14.27,18.6,24.57000000000005,0.09,0.0984134473559181,0.09000010904349275,9.813913519804662e-07,0.0 -386,1996-08-21,12.64,15.72,18.59,4.36,4.7674629788317295,4.3600000981391425,8.832522100828885e-07,0.0 -387,1996-08-22,10.63,13.64,16.72,6.55,7.162127627648841,6.550000088325226,7.949269836479795e-07,0.0 -388,1996-08-23,10.84,17.32000000000005,24.59,3.22,3.5209246583241214,3.220000079492703,7.154342808876194e-07,0.0 -389,1996-08-24,11.89,14.75,20.05,6.09,6.659138263271674,6.0900000715434315,6.438908492384521e-07,0.0 -390,1996-08-25,8.300000000000011,12.66,17.91,0.02,0.0218705984318063,0.02000006438908781,5.795017614306786e-07,0.0 -391,1996-08-26,8.32000000000005,12.22,17.77,0.03,0.03280498998228,0.030000057950178478,5.215515829516288e-07,0.0 -392,1996-08-27,8.890000000000043,12.83,17.21,10.71,11.710896594413216,10.710000052155161,4.6939642276432066e-07,0.0 -393,1996-08-28,6.2900000000000205,10.2,14.06,4.32,4.723723604620623,4.3200000469396445,4.224567789552509e-07,0.0 -394,1996-08-29,6.5,9.82000000000005,13.81,0.42,0.4592517913181115,0.4200000422456791,3.8021109981828926e-07,0.0 -395,1996-08-30,6.63,10.87,15.43,0.0,8.932779896682577e-07,3.8021110987392496e-08,3.4218998883089674e-07,0.0 -396,1996-08-31,8.510000000000048,11.76,16.55,0.02,0.0218698896066196,0.020000034218999697,3.079709891333006e-07,0.0 -397,1996-09-01,7.180000000000007,10.21,14.28,0.02,0.021869809211537,0.020000030797099572,2.771738895602203e-07,0.0 -398,1996-09-02,7.210000000000036,10.26,12.6,0.02,0.0218697368559764,0.02000002771738949,2.4945650006980057e-07,0.0 -399,1996-09-03,6.720000000000027,11.85,14.93,0.0,5.860794645189739e-07,2.4945650439842195e-08,2.2451084962995836e-07,0.0 -400,1996-09-04,8.54000000000002,12.28,16.34,0.0,5.274714795191419e-07,2.2451085313614168e-08,2.020597643163442e-07,0.0 -401,1996-09-05,8.510000000000048,13.55,21.05,0.02,0.0218695603808188,0.020000020205976715,1.8185378760070891e-07,0.0 -402,1996-09-06,4.330000000000041,10.87,20.06,0.02,0.0218695129083635,0.02000001818537899,1.6366840861059734e-07,0.0 -403,1996-09-07,3.4600000000000364,9.890000000000043,17.8,0.0,3.845266400300476e-07,1.6366841047392687e-08,1.4730156756320464e-07,0.0 -404,1996-09-08,4.100000000000023,9.600000000000025,16.78,0.02,0.0218694317304779,0.020000014730156907,1.325714106559545e-07,0.0 -405,1996-09-09,4.660000000000025,9.410000000000023,16.89,0.0,3.11466550049259e-07,1.3257141187848501e-08,1.1931426946810598e-07,0.0 -406,1996-09-10,3.2700000000000387,8.770000000000039,17.18,0.02,0.0218693659764026,0.020000011931427045,1.0738284242227042e-07,0.0 -407,1996-09-11,3.5200000000000387,10.08,18.44,0.0,2.5228788692301297e-07,1.0738284322437269e-08,9.664455809983316e-08,0.0 -408,1996-09-12,4.420000000000016,9.920000000000016,15.76,2.47,2.700832305639129,2.470000009664456,8.698010222487956e-08,0.0 -409,1996-09-13,5.430000000000007,6.25,7.210000000000036,4.01,4.38475187848514,4.01000000869801,7.828209194976568e-08,0.0 -410,1996-09-14,4.550000000000011,8.110000000000014,13.95,0.02,0.0218692695743724,0.020000007828209238,7.045388271216211e-08,0.0 -411,1996-09-15,3.82000000000005,9.700000000000044,17.74,0.0,1.655260647024556e-07,7.045388305744084e-09,6.340849440641803e-08,0.0 -412,1996-09-16,4.37,9.110000000000014,17.21,0.02,0.0218692346299736,0.020000006340849467,5.7067644937808645e-08,0.0 -413,1996-09-17,3.730000000000018,10.4,18.38,0.0,1.3407610715103196e-07,5.706764516434602e-09,5.1360880421374043e-08,0.0 -414,1996-09-18,6.4500000000000455,10.45,16.23,7.79,8.51800898388246,7.790000005136088,4.6224792360887114e-08,0.0 -415,1996-09-19,7.79000000000002,10.7,14.51,9.82,10.73772116595224,9.820000004622479,4.160231310993528e-08,0.0 -416,1996-09-20,6.930000000000007,9.54000000000002,14.0,0.12,0.1312146116805888,0.12000000416023132,3.744208178690263e-08,0.0 -417,1996-09-21,7.450000000000045,10.39,12.87,3.37,3.684941021090701,3.370000003744208,3.369787359846068e-08,0.0 -418,1996-09-22,6.710000000000036,8.78000000000003,10.77,14.19,15.516116352470489,14.190000003369788,3.032808623071574e-08,0.0 -419,1996-09-23,2.910000000000025,5.930000000000007,8.03000000000003,0.33,0.3608399845860905,0.33000000303280863,2.729527760124608e-08,0.0 -420,1996-09-24,3.1000000000000227,7.100000000000023,12.38,0.03,0.0328036926129586,0.030000002729527766,2.4565749835939025e-08,0.0 -421,1996-09-25,2.340000000000032,7.110000000000014,11.95,0.0,5.771536227746581e-08,2.456574987791686e-09,2.210917484814734e-08,0.0 -422,1996-09-26,2.910000000000025,8.090000000000032,15.07000000000005,0.85,0.929436192345863,0.8500000022109174,1.9898257359932403e-08,0.0 -423,1996-09-27,7.54000000000002,10.78,13.84,8.07,8.824176109154669,8.070000001989825,1.7908431621184998e-08,0.0 -424,1996-09-28,4.44,9.37,15.71,0.0,4.207449827968426e-08,1.790843164349374e-09,1.6117588456835623e-08,0.0 -425,1996-09-29,4.06,10.41,19.49,0.02,0.0218691235235667,0.02000000161175885,1.4505829609345053e-08,0.0 -426,1996-09-30,6.44,14.14,21.87,0.0,3.4080343266823443e-08,1.4505829623981818e-09,1.3055246646946872e-08,0.0 -427,1996-10-01,5.480000000000018,9.480000000000018,12.89,16.0,17.49526855588713,16.000000001305526,1.1749721981066607e-08,0.0 -428,1996-10-02,2.2100000000000364,6.410000000000025,12.04,0.75,0.8110980634173592,0.7500000011749722,1.0574749781999628e-08,0.0 -429,1996-10-03,1.5400000000000205,6.470000000000027,15.33,0.0,0.000900191863877,1.0574749789778206e-09,9.517274803021808e-09,0.0 -430,1996-10-04,1.3000000000000114,8.63,14.88,5.31,5.636589842459244,5.310000000951727,8.565547322089562e-09,0.0 -431,1996-10-05,3.840000000000032,6.270000000000039,9.230000000000018,2.18,2.4017219119348185,2.180000000856555,7.708992589370253e-09,0.0 -432,1996-10-06,4.090000000000032,6.400000000000034,8.990000000000009,0.02,0.0380197443098004,0.020000000770899258,6.9380933300198425e-09,0.0 -433,1996-10-07,4.900000000000034,8.550000000000011,13.15,0.08,0.1019782523853098,0.08000000069380933,6.244283996683016e-09,0.0 -434,1996-10-08,7.460000000000036,8.910000000000025,9.900000000000034,1.17,1.292366049296983,1.1700000006244284,5.619855596743493e-09,0.0 -435,1996-10-09,7.03000000000003,8.890000000000043,10.51,0.01,0.0226346858616588,0.01000000056198556,5.057870036849453e-09,0.0 -436,1996-10-10,5.7000000000000455,8.470000000000027,11.86,0.0,0.0105124102323253,5.057870038628943e-10,4.552083032986559e-09,0.0 -437,1996-10-11,3.450000000000045,7.88,14.67,0.03,0.0422504850089935,0.030000000455208304,4.096874729543765e-09,0.0 -438,1996-10-12,3.94,9.390000000000043,17.74,0.0,0.0084906061384926,4.0968747307112874e-10,3.687187256472636e-09,0.0 -439,1996-10-13,3.650000000000034,9.02000000000004,15.99,0.0,0.0076321988275073,3.6871872574183295e-10,3.318468530730803e-09,0.0 -440,1996-10-14,7.82000000000005,11.65,16.55,6.21,6.79721251954058,6.2100000003318465,2.986621677581122e-09,0.0 -441,1996-10-15,6.300000000000011,9.82000000000005,13.18,40.41,44.1926567406653,40.41000000029866,2.6879595097609626e-09,0.0 -442,1996-10-16,2.19,5.230000000000018,7.03000000000003,16.94,18.10408565892694,16.940000000268796,2.4191635587346083e-09,0.0 -443,1996-10-17,0.8000000000000114,4.680000000000007,9.83000000000004,1.99,2.062952696735123,1.9900000002419163,2.1772472028204386e-09,0.0 -444,1996-10-18,0.4900000000000091,7.37,11.11,8.14,8.209977977903877,8.140000000217725,1.9595224825054206e-09,0.0 -445,1996-10-19,2.57000000000005,6.100000000000023,10.05,5.14,5.729433751499974,5.140000000195952,1.7635702342281694e-09,0.0 -446,1996-10-20,2.44,8.63,12.61,3.48,3.906567678051825,3.480000000176357,1.587213210783718e-09,0.0 -447,1996-10-21,2.8500000000000227,8.82000000000005,11.87,10.91,12.04271185305831,10.910000000158721,1.4284918896878223e-09,0.0 -448,1996-10-22,1.9600000000000364,7.010000000000048,15.35,0.0,0.1005245556430998,1.428491889829766e-10,1.2856427007048457e-09,0.0 -449,1996-10-23,2.490000000000009,7.450000000000045,15.39,0.0,0.0894513779261018,1.2856427008198202e-10,1.1570784306228636e-09,0.0 -450,1996-10-24,2.2200000000000277,6.850000000000023,15.32000000000005,0.0,0.0796956896669427,1.1570784307159928e-10,1.0413705875512644e-09,0.0 -451,1996-10-25,2.19,9.88,15.6,0.0,0.0710810873356299,1.041370587626699e-10,9.372335287885945e-10,0.0 -452,1996-10-26,3.2200000000000277,7.720000000000027,13.91,0.0,0.0634586898255211,9.372335288496966e-11,8.435101759036249e-10,0.0 -453,1996-10-27,2.900000000000034,9.730000000000018,16.64,0.0,0.0567020861418148,8.435101759531175e-11,7.591591583083132e-10,0.0 -454,1996-10-28,6.470000000000027,12.48,16.13,16.01,17.556906424249938,16.010000000075916,6.83243242473473e-10,0.0 -455,1996-10-29,1.12,6.63,10.07000000000005,17.93,18.57072978920304,17.930000000068326,6.149189182228785e-10,0.0 -456,1996-10-30,-1.2699999999999818,1.9500000000000453,7.580000000000041,0.0,0.0197193325004053,6.149189182491809e-11,5.534270263979604e-10,0.0 -457,1996-10-31,-1.31,7.010000000000048,12.65,9.38,8.609563505223418,8.59319595262692,0.7868040479265084,0.0 -458,1996-11-01,3.140000000000043,6.640000000000043,9.490000000000007,3.52,4.19696855612278,3.6029865941205,0.7038174538060082,0.0 -459,1996-11-02,2.5300000000000296,6.890000000000043,13.67,0.02,0.3269842568026972,0.09382746562355315,0.6299899881824551,0.0 -460,1996-11-03,2.950000000000045,8.200000000000045,17.08,0.02,0.2903435112313464,0.08575974985845372,0.5642302383240014,0.0 -461,1996-11-04,2.87,11.38,17.0,27.04,29.80377832480237,27.098637508427792,0.5055927298962081,0.0 -462,1996-11-05,0.5,4.550000000000011,8.19,5.34,5.379300545648864,5.392337395131399,0.45325533476480917,0.0 -463,1996-11-06,0.3400000000000318,6.75,8.680000000000007,1.13,1.3515412500142372,1.1767545781248498,0.4065007566399593,0.0 -464,1996-11-07,4.980000000000018,8.720000000000027,13.72,19.0,21.0255868150457,19.041799506028493,0.36470125061146547,0.0 -465,1996-11-08,-1.5199999999999818,3.12,8.510000000000048,0.01,0.1555366513945692,0.04603911926877612,0.32866213134268935,0.0 -466,1996-11-09,-1.7099999999999795,3.080000000000041,7.13,0.0,0.1312388917296173,0.03361759253338703,0.2950445388093023,0.0 -467,1996-11-10,5.020000000000039,7.840000000000032,9.57000000000005,9.49,10.566312956532666,9.520109983107707,0.264934555701596,0.0 -468,1996-11-11,7.360000000000014,9.090000000000032,10.13,15.48,17.094507924584054,15.50698169985021,0.23795285585138629,0.0 -469,1996-11-12,5.970000000000027,10.02,13.3,54.78,60.04838452929536,54.80418914550847,0.21376371034292388,0.0 -470,1996-11-13,3.900000000000034,5.580000000000041,6.710000000000036,4.85,5.435660046366598,4.871694225199676,0.19206948514324712,0.0 -471,1996-11-14,0.5,2.56,3.930000000000007,0.05,0.0987488178119983,0.06946356035598208,0.17260592478726505,0.0 -472,1996-11-15,0.0800000000000409,2.980000000000018,6.410000000000025,0.0,0.0709306755883511,0.017467831411505708,0.15513809337575934,0.0 -473,1996-11-16,1.080000000000041,4.240000000000009,9.300000000000011,0.0,0.1056223267827634,0.015681225294110507,0.13945686808164884,0.0 -474,1996-11-17,1.0100000000000475,4.680000000000007,7.610000000000014,7.4,7.507465772599715,7.414080968730007,0.1253758993516423,0.0 -475,1996-11-18,-2.509999999999991,-0.7299999999999613,2.0400000000000205,39.69,6.895391299751571,17.79507692307706,22.02029897627458,-0.547499999999971 -476,1996-11-19,-2.789999999999964,1.6400000000000432,3.770000000000039,6.31,2.8324458058117297,5.293690073933669,23.036608902340912,0.0 -477,1996-11-20,-0.8999999999999773,1.2000000000000457,2.9700000000000277,19.3,8.43292485105085,16.119718040364354,26.21689086197656,0.0 -478,1996-11-21,-2.2799999999999727,-1.2999999999999543,0.5900000000000318,2.37,0.0392530927761602,0.48721254355403243,28.099678318422527,-0.9749999999999657 -479,1996-11-22,-7.089999999999975,-3.4499999999999886,1.75,0.08,0.0051804867390614,0.015837104072398245,28.16384121435013,-2.831249999999983 -480,1996-11-23,-6.449999999999989,-1.8199999999999927,2.31,9.05,1.0555266572988171,2.3864726027397287,34.8273686116104,-2.07281249999999 -481,1996-11-24,-6.009999999999991,-2.409999999999968,1.3900000000000432,1.44,0.0671347255013789,0.27048648648649354,35.99688212512391,-2.325703124999974 -482,1996-11-25,-0.5099999999999909,1.4300000000000068,2.180000000000007,21.43,7.569182637195515,19.39219304298868,38.03468908213523,0.0 -483,1996-11-26,-1.1499999999999773,0.5900000000000318,1.9700000000000275,10.86,2.6152638106830577,7.7230152688981795,41.17167381323705,0.0 -484,1996-11-27,-1.4799999999999611,0.4300000000000068,1.4500000000000457,21.24,2.802500482859028,11.252674473332927,51.15899933990412,0.0 -485,1996-11-28,-6.38,-2.8999999999999773,-1.2799999999999727,2.52,0.0,0.0,53.678999339904124,-2.174999999999983 -486,1996-11-29,-6.87,-1.3999999999999773,1.5300000000000296,64.17,3.3112413209913054,11.688107142857326,106.16089219704679,-1.5937499999999787 -487,1996-11-30,-0.1999999999999886,0.5900000000000318,1.7000000000000457,11.36,3.233738064920244,12.032701425326216,105.48819077172057,0.0 -488,1996-12-01,-0.3499999999999659,0.9000000000000341,2.5,3.14,1.653608481393138,5.569906364621354,103.05828440709921,0.0 -489,1996-12-02,-0.3999999999999772,1.740000000000009,3.0300000000000296,5.78,4.608636854457082,10.452349336837175,98.38593507026204,0.0 -490,1996-12-03,-0.5699999999999932,2.080000000000041,4.050000000000011,0.0,2.4582486241775454,6.101795658962506,92.28413941129953,0.0 -491,1996-12-04,0.8600000000000136,3.400000000000034,7.960000000000036,0.0,5.922539849571713,9.434369534820283,82.84976987647926,0.0 -492,1996-12-05,0.57000000000005,2.930000000000007,7.12,0.0,4.343199272097486,7.411068990646888,75.43870088583238,0.0 -493,1996-12-06,-0.339999999999975,2.2100000000000364,6.340000000000032,0.0,2.477676894450916,5.16382565517981,70.27487523065257,0.0 -494,1996-12-07,-2.539999999999964,1.82000000000005,8.010000000000048,0.0,1.585546784900982,4.008064755083902,66.26681047556866,0.0 -495,1996-12-08,-2.8999999999999773,-0.2999999999999545,4.150000000000034,0.0,0.0,0.0,66.26681047556866,-0.2249999999999659 -496,1996-12-09,-1.829999999999984,0.2800000000000295,4.28000000000003,0.0,0.0,0.5874292825921389,65.67938119297652,0.0 -497,1996-12-10,-2.669999999999959,-0.3899999999999863,2.900000000000034,0.0,0.0,0.0,65.67938119297652,-0.2924999999999897 -498,1996-12-11,-2.829999999999984,-0.1599999999999681,6.03000000000003,0.0,0.0,0.0,65.67938119297652,-0.1931249999999735 -499,1996-12-12,-2.69,2.3500000000000227,4.400000000000034,10.86,7.39778330168096,11.885834189668397,64.65354700330812,0.0 -500,1996-12-13,2.82000000000005,3.38,3.680000000000007,12.84,19.33691804873617,19.78925271719023,57.704294286117886,0.0 -501,1996-12-14,0.7700000000000387,3.140000000000043,6.2900000000000205,0.35,4.779343635403668,6.238140260539987,51.8161540255779,0.0 -502,1996-12-15,-1.599999999999966,0.5600000000000023,1.88,0.0,0.0869652600198133,0.9643318789622115,50.85182214661569,0.0 -503,1996-12-16,-1.8199999999999927,1.2000000000000457,4.160000000000025,0.0,0.5562831770988454,2.036320407106608,48.81550173950908,0.0 -504,1996-12-17,2.330000000000041,4.760000000000048,7.220000000000027,0.0,8.40836590067679,7.825239391611804,40.99026234789728,0.0 -505,1996-12-18,2.170000000000016,4.480000000000018,7.69,3.2,10.671920464104309,9.652905237458379,34.5373571104389,0.0 -506,1996-12-19,3.300000000000012,3.790000000000021,4.270000000000039,15.89,22.64702643795508,20.712795159311636,29.714561951127262,0.0 -507,1996-12-20,2.0,3.910000000000025,6.12,1.6,6.997259137172571,6.084918863170458,25.229643087956806,0.0 -508,1996-12-21,2.0400000000000205,4.53000000000003,6.550000000000011,6.97,13.790088212365417,11.637534577475057,20.56210851048175,0.0 -509,1996-12-22,3.390000000000043,4.400000000000034,5.400000000000034,10.97,17.833489242812654,14.969304157500002,16.56280435298175,0.0 -510,1996-12-23,4.06,5.710000000000036,6.38,30.12,41.09337906201466,33.684497137118356,12.998307215863397,0.0 -511,1996-12-24,0.8000000000000114,3.960000000000037,6.710000000000036,0.04,4.39962237130148,2.51508960822114,10.523217607642257,0.0 -512,1996-12-25,-6.70999999999998,-2.44,0.6500000000000341,0.28,0.0022750479877211,0.024728260869566476,10.778489346772691,-1.83 -513,1996-12-26,-10.66,-7.479999999999961,-3.989999999999952,0.0,0.0,0.0,10.778489346772691,-6.067499999999971 -514,1996-12-27,-10.85,-6.13,-4.06,0.0,0.0,0.0,10.778489346772691,-6.114374999999993 -515,1996-12-28,-8.539999999999964,-5.839999999999975,-4.079999999999984,0.0,0.0,0.0,10.778489346772691,-5.908593749999979 -516,1996-12-29,-9.299999999999956,-7.759999999999991,-4.70999999999998,0.23,0.0,0.0,11.008489346772691,-7.297148437499988 -517,1996-12-30,-9.349999999999966,-7.639999999999986,-6.159999999999968,2.27,0.0,0.0,13.278489346772691,-7.554287109374987 -518,1996-12-31,-8.599999999999966,-5.599999999999966,-4.199999999999989,1.51,0.0,0.0,14.78848934677269,-6.088571777343721 -519,1997-01-01,-5.859999999999957,-2.92999999999995,-2.089999999999975,0.03,0.0,0.0,14.81848934677269,-3.7196429443358925 -520,1997-01-02,-2.13,-0.1099999999999568,0.9000000000000341,16.14,0.6888035030027725,4.794059405940722,26.16442994083197,-1.0124107360839407 -521,1997-01-03,-0.7399999999999523,0.4500000000000455,1.3900000000000432,4.12,0.6673198718981661,3.1800012726206957,27.104428668211273,0.0 -522,1997-01-04,-3.95999999999998,-1.06,2.06,0.06,0.0080492175051116,0.020531561461794086,27.143897106749478,-0.795 -523,1997-01-05,-4.359999999999957,-3.75,-2.8899999999999864,0.66,0.0,0.0,27.803897106749478,-3.01125 -524,1997-01-06,-6.359999999999957,-2.9499999999999886,0.3900000000000432,0.0,0.0,0.0,27.803897106749478,-2.9653124999999916 -525,1997-01-07,-6.079999999999984,-4.199999999999989,-2.13,0.0,0.0,0.0,27.803897106749478,-3.8913281249999896 -526,1997-01-08,-5.599999999999966,-1.1399999999999864,0.2200000000000272,1.63,0.0,0.061615120274921775,29.372281986474555,-1.8278320312499872 -527,1997-01-09,-0.4599999999999795,0.6200000000000045,1.910000000000025,7.24,2.074690203025789,6.563076515551546,30.049205470923006,0.0 -528,1997-01-10,-2.509999999999991,-0.1899999999999977,1.81,0.06,0.0084771032354778,0.02513888888888894,30.08406658203412,-0.14249999999999827 -529,1997-01-11,-6.0499999999999545,-2.38,1.0300000000000296,0.0,0.0,0.0,30.08406658203412,-1.8206249999999995 -530,1997-01-12,-7.979999999999961,-4.71999999999997,0.7300000000000182,0.0,0.0,0.0,30.08406658203412,-3.9951562499999778 -531,1997-01-13,-8.13,-3.87,3.32000000000005,0.0,0.0,0.0,30.08406658203412,-3.9012890624999943 -532,1997-01-14,-6.94,-1.6499999999999773,6.31,0.0,0.0,0.0,30.08406658203412,-2.2128222656249816 -533,1997-01-15,-6.2999999999999545,-1.4899999999999525,8.170000000000016,0.0,0.0,0.0,30.08406658203412,-1.6707055664062098 -534,1997-01-16,-6.63,-2.81,3.6000000000000227,0.0,0.0,0.0,30.08406658203412,-2.525176391601552 -535,1997-01-17,-6.19,-1.1099999999999568,1.410000000000025,0.2,0.0094114152026403,0.03710526315789525,30.246961318876224,-1.4637940979003556 -536,1997-01-18,-0.9199999999999592,1.4700000000000273,3.990000000000009,2.45,1.7201947105481452,3.7149990627475065,28.981962256128718,0.0 -537,1997-01-19,0.9700000000000272,1.4500000000000457,1.87,15.31,8.927579491654452,16.94556977115766,27.346392484971055,0.0 -538,1997-01-20,1.240000000000009,2.57000000000005,3.2800000000000296,22.05,20.8399564996547,24.839552654540885,24.55683983043017,0.0 -539,1997-01-21,3.2700000000000387,5.350000000000023,7.2000000000000455,0.34,9.19636911066272,5.758787870871719,19.138051959558453,0.0 -540,1997-01-22,3.340000000000032,5.28000000000003,6.53000000000003,7.79,16.666414518339167,12.251546968544051,14.6765049910144,0.0 -541,1997-01-23,0.9800000000000182,4.0,7.400000000000034,0.0,4.9549724232684245,2.9659727956097233,11.710532195404678,0.0 -542,1997-01-24,-0.4499999999999886,2.62,8.140000000000043,0.0,1.990598112958181,1.778075867591328,9.93245632781335,0.0 -543,1997-01-25,-2.2199999999999704,1.670000000000016,7.69,0.0,0.6643938071677806,1.0561037335211678,8.876352594292182,0.0 -544,1997-01-26,-2.419999999999959,-0.1299999999999954,1.5500000000000114,0.18,0.0202255144249538,0.07027707808564336,8.986075516206538,-0.09749999999999655 -545,1997-01-27,-1.42999999999995,0.1800000000000068,2.150000000000034,0.16,0.0395387808332275,0.20578850895586376,8.940287007250674,0.0 -546,1997-01-28,-3.2099999999999795,-1.089999999999975,1.44,0.0,0.0,0.0,8.940287007250674,-0.8174999999999812 -547,1997-01-29,-4.359999999999957,-0.8999999999999773,4.800000000000011,0.0,0.0,0.0,8.940287007250674,-0.8793749999999783 -548,1997-01-30,-4.71999999999997,-1.3599999999999568,5.2900000000000205,0.0,0.0,0.0,8.940287007250674,-1.2398437499999622 -549,1997-01-31,-4.859999999999957,-1.669999999999959,3.2900000000000205,0.0,0.0,0.0,8.940287007250674,-1.5624609374999598 -550,1997-02-01,-6.039999999999964,-2.319999999999993,3.0400000000000205,0.0,0.0,0.0,8.940287007250674,-2.130615234374985 -551,1997-02-02,-6.31,-2.7199999999999704,2.7100000000000364,0.0,0.0,0.0,8.940287007250674,-2.5726538085937243 -552,1997-02-03,-5.649999999999977,-2.4799999999999613,3.050000000000012,0.0,0.0,0.0,8.940287007250674,-2.503163452148402 -553,1997-02-04,-5.889999999999986,0.3300000000000409,2.2800000000000296,0.17,0.020724838409058,0.047441860465116795,9.062845146785557,-0.3782908630370698 -554,1997-02-05,-1.5499999999999543,1.69,3.5300000000000296,11.38,5.60139580862405,9.0909352892235,11.351909857562058,0.0 -555,1997-02-06,-2.3999999999999773,0.910000000000025,6.2900000000000205,0.0,0.1447413954932027,0.6090859186314164,10.742823938930641,0.0 -556,1997-02-07,-1.6399999999999864,2.57000000000005,9.83000000000004,0.0,1.9334472436675303,1.679442400910212,9.06338153802043,0.0 -557,1997-02-08,-2.079999999999984,2.06,10.32000000000005,0.0,1.125672311854225,1.256163408977729,7.807218129042701,0.0 -558,1997-02-09,-2.839999999999975,2.300000000000012,10.62,0.0,1.4533469509888173,1.2047088473358025,6.602509281706898,0.0 -559,1997-02-10,-3.31,6.270000000000039,12.34,4.31,12.572107281091409,4.542582179663948,6.369927102042949,0.0 -560,1997-02-11,4.4500000000000455,6.510000000000048,8.390000000000043,11.63,21.718340147018,12.54923941067364,5.4506876913693105,0.0 -561,1997-02-12,5.920000000000016,7.080000000000041,8.900000000000034,6.73,16.56319421304513,7.481731682272353,4.698956009096958,0.0 -562,1997-02-13,0.32000000000005,2.980000000000018,5.88,9.0,9.817519164640723,9.623485518575087,4.07547049052187,0.0 -563,1997-02-14,-0.0299999999999727,4.53000000000003,6.730000000000018,19.14,20.870550093452984,19.591501967080692,3.6239685234411785,0.0 -564,1997-02-15,-3.1499999999999773,0.2800000000000295,4.110000000000014,7.8,3.097062812028247,4.571472998446183,6.852495524994996,0.0 -565,1997-02-16,-3.42999999999995,0.7000000000000455,4.520000000000039,2.99,1.301077070646833,2.1100568518455627,7.732438673149433,0.0 -566,1997-02-17,0.0200000000000386,2.7200000000000277,5.390000000000043,0.85,2.338973478017065,2.039147695261124,6.543290977888309,0.0 -567,1997-02-18,-0.0600000000000022,3.2900000000000205,5.340000000000032,8.2,9.056973539865432,9.078499727439238,5.66479125044907,0.0 -568,1997-02-19,-0.2099999999999795,4.240000000000009,6.31,2.86,6.481410078385507,3.5741100822043275,4.950681168244742,0.0 -569,1997-02-20,2.080000000000041,4.350000000000023,6.94,0.92,5.088150121964563,1.5855545658045722,4.28512660244017,0.0 -570,1997-02-21,-0.7299999999999613,3.900000000000034,9.29000000000002,0.0,3.2264449076017483,0.5562409991111262,3.7288856033290436,0.0 -571,1997-02-22,-1.009999999999991,5.31,12.03,0.0,5.193927495205555,0.4696089570522835,3.25927664627676,0.0 -572,1997-02-23,3.160000000000025,7.480000000000018,12.7,2.16,10.40801775822884,2.5598205114534847,2.8594561348232754,0.0 -573,1997-02-24,5.270000000000039,7.970000000000027,9.010000000000048,5.53,13.947339359223252,5.872821322868759,2.516634811954516,0.0 -574,1997-02-25,8.460000000000036,9.740000000000007,11.42,22.13,33.390618564498936,22.425719002916654,2.220915809037862,0.0 -575,1997-02-26,1.82000000000005,4.550000000000011,8.740000000000009,13.13,16.90594152697549,13.38640185125657,1.9645139577812931,0.0 -576,1997-02-27,-2.2199999999999704,1.38,4.62,0.0,0.1615582617788451,0.22329681477385857,1.7412171430074346,0.0 -577,1997-02-28,-2.42999999999995,5.680000000000007,11.24,0.0,3.930224474858641,0.19521119168760698,1.5460059513198277,0.0 -578,1997-03-01,2.7200000000000277,7.400000000000034,15.22,0.0,5.3803625040351815,0.1712263844140736,1.374779566905754,0.0 -579,1997-03-02,2.9600000000000364,8.830000000000041,17.08,0.0,6.343947749230102,0.1506249392390857,1.2241546276666684,0.0 -580,1997-03-03,4.220000000000027,8.29000000000002,14.01,0.0,5.4072170017427785,0.13283941725254902,1.0913152104141193,0.0 -581,1997-03-04,5.78000000000003,11.84,18.55,0.51,7.854611916772221,0.6274159077975929,0.9738993026165264,0.0 -582,1997-03-05,2.3600000000000136,5.650000000000034,8.740000000000009,0.2,2.866313534035582,0.30398756181811265,0.8699117407984137,0.0 -583,1997-03-06,-1.2299999999999611,3.890000000000043,9.81,0.03,1.3252776582295018,0.11928748274786628,0.7806242580505475,0.0 -584,1997-03-07,-1.4899999999999525,3.4600000000000364,11.17,0.0,0.9606913175597214,0.08230123663218346,0.698323021418364,0.0 -585,1997-03-08,-1.349999999999966,5.020000000000039,14.1,0.0,1.9875867662018532,0.07322443355065406,0.62509858786771,0.0 -586,1997-03-09,-0.4899999999999522,4.970000000000027,12.75,0.0,1.8362345559867124,0.06522790592762787,0.5598706819400822,0.0 -587,1997-03-10,0.4399999999999977,6.7900000000000205,15.57000000000005,0.0,2.702290748874377,0.05816746431608442,0.5017032176239977,0.0 -588,1997-03-11,1.0,8.470000000000027,16.82000000000005,0.0,3.4099332891994907,0.05192119103810826,0.44978202658588945,0.0 -589,1997-03-12,2.260000000000048,7.890000000000043,16.18,0.0,2.9029762236981083,0.046385429605899524,0.4033965969799899,0.0 -590,1997-03-13,-0.1299999999999954,6.610000000000014,15.81,0.0,2.137908086999881,0.04147160231073972,0.3619249946692502,0.0 -591,1997-03-14,-0.5099999999999909,4.430000000000007,9.07000000000005,1.63,2.501256224074087,1.5894958837045619,0.4024291109646883,0.0 -592,1997-03-15,2.0200000000000387,6.56,9.920000000000016,0.01,1.9819318583223904,0.05136943063229944,0.3610596803323889,0.0 -593,1997-03-16,2.2800000000000296,6.330000000000041,10.84,0.0,1.7800869463924245,0.03701278144709227,0.32404689888529664,0.0 -594,1997-03-17,1.69,7.78000000000003,15.6,0.0,2.285839243014719,0.03313511498797833,0.2909117838973183,0.0 -595,1997-03-18,2.240000000000009,9.28000000000003,18.28,8.64,11.951142892326194,8.669679862855848,0.2612319210414708,0.0 -596,1997-03-19,1.580000000000041,2.4600000000000364,3.32000000000005,13.57,12.29535756338533,13.596597884677735,0.23463403636373714,0.0 -597,1997-03-20,-1.63,0.8400000000000318,2.950000000000045,0.43,0.1660179996801812,0.3167773614714707,0.3478566748922664,0.0 -598,1997-03-21,-2.56,3.2200000000000277,9.920000000000016,0.0,0.2732965685791149,0.03562737389365084,0.31222930099861557,0.0 -599,1997-03-22,-0.6499999999999773,3.8000000000000114,10.57000000000005,0.0,0.6027635529425008,0.031901051207405655,0.2803282497912099,0.0 -600,1997-03-23,-1.2899999999999636,6.490000000000009,12.29,1.26,2.726195917028957,1.181424242032424,0.35890400775878617,0.0 -601,1997-03-24,0.920000000000016,3.790000000000021,6.94,0.02,0.5846966678699991,0.05678641842681928,0.3221175893319669,0.0 -602,1997-03-25,-0.42999999999995,3.330000000000041,7.640000000000043,0.73,1.0004446379333936,0.7281109116749149,0.32400667765705193,0.0 -603,1997-03-26,-0.1099999999999568,6.090000000000032,12.2,0.0,1.3678881099752491,0.03313091155330374,0.2908757661037482,0.0 -604,1997-03-27,3.770000000000039,10.8,16.7,1.85,4.431238267772073,1.8796761153154442,0.26119965078830404,0.0 -605,1997-03-28,-0.8799999999999955,4.110000000000014,9.240000000000007,7.45,6.953939178527418,6.8988244279115944,0.81237522287671,0.0 -606,1997-03-29,-1.13,1.2300000000000182,3.82000000000005,0.29,0.2116695368171912,0.3170250310451802,0.7853501918315298,0.0 -607,1997-03-30,0.1299999999999954,4.930000000000007,10.6,0.0,0.9525864733939632,0.08282530926526477,0.702524882566265,0.0 -608,1997-03-31,1.5300000000000296,7.300000000000011,13.97,0.0,1.4497668777234465,0.07368556388813464,0.6288393186781304,0.0 -609,1997-04-01,2.5300000000000296,9.240000000000007,16.71,0.0,1.7744200134990002,0.06563460715768728,0.563204711520443,0.0 -610,1997-04-02,4.2000000000000455,10.0,17.68,0.0,1.805331303176679,0.05852691311060593,0.5046777984098372,0.0 -611,1997-04-03,4.06,8.200000000000045,14.64,1.18,2.6127409018103527,1.2322394723494319,0.45243832606040524,0.0 -612,1997-04-04,0.3900000000000432,4.350000000000023,8.730000000000018,0.02,0.5423308300949192,0.06666773009094765,0.4057705959694576,0.0 -613,1997-04-05,-0.5699999999999932,6.980000000000018,12.13,0.8,1.7201657809107598,0.8096190612078951,0.3961515347615627,0.0 -614,1997-04-06,2.1100000000000136,6.75,12.17,0.24,1.1507100206826344,0.2807068015044475,0.3554447332571152,0.0 -615,1997-04-07,1.660000000000025,6.63,14.47,0.0,0.8254676029246242,0.03642330179273283,0.31902143146438233,0.0 -616,1997-04-08,0.7100000000000364,7.07000000000005,14.74,0.0,0.858034707580851,0.032610088389465,0.28641134307491734,0.0 -617,1997-04-09,1.840000000000032,8.710000000000036,16.05,0.0,1.0787244226241497,0.029211745619168554,0.2571995974557488,0.0 -618,1997-04-10,3.930000000000007,10.71,19.28,0.0,1.321951614636205,0.0261801109023826,0.23101948655336618,0.0 -619,1997-04-11,4.2900000000000205,10.7,18.78,0.0,1.227878229034684,0.02347319071857895,0.20754629583478723,0.0 -620,1997-04-12,-0.9599999999999796,4.660000000000025,11.31,0.0,0.3393316899424394,0.0210542627766775,0.18649203305810974,0.0 -621,1997-04-13,-0.0600000000000022,5.400000000000034,11.99,0.0,0.4225274065531132,0.018891128175641484,0.16760090488246826,0.0 -622,1997-04-14,0.5500000000000114,7.03000000000003,13.72,0.0,0.6150611044204037,0.016955485137744267,0.150645419744724,0.0 -623,1997-04-15,-0.4399999999999977,5.770000000000039,13.07000000000005,0.02,0.4516799818506072,0.03463753752894816,0.13600788221577584,0.0 -624,1997-04-16,0.8500000000000227,5.87,12.61,0.0,0.4290158524066466,0.01372946142274624,0.1222784207930296,0.0 -625,1997-04-17,-0.5099999999999909,4.180000000000007,9.44,0.0,0.2153366627439439,0.012331848366097421,0.10994657242693218,0.0 -626,1997-04-18,0.3000000000000113,6.25,12.66,0.0,0.4479803340389356,0.011078743174019271,0.0988678292529129,0.0 -627,1997-04-19,1.910000000000025,8.13,14.95,2.07,2.8759140646242214,2.0799547768244526,0.08891305242846001,0.0 -628,1997-04-20,0.6200000000000045,3.150000000000034,6.69,0.04,0.1144961631580707,0.0489462961633116,0.0799667562651484,0.0 -629,1997-04-21,-1.7199999999999704,3.4700000000000277,8.990000000000009,0.0,0.1077899595703647,0.00804115707374181,0.07192559919140659,0.0 -630,1997-04-22,-1.4799999999999611,4.010000000000048,9.930000000000009,0.0,0.1616940819856762,0.0072285453681696366,0.06469705382323696,0.0 -631,1997-04-23,0.8600000000000136,6.12,12.44,0.0,0.3803163303749402,0.006498821197743411,0.05819823262549354,0.0 -632,1997-04-24,3.160000000000025,9.160000000000023,15.88,0.0,0.4837081859626805,0.005843383493391155,0.052354849132102386,0.0 -633,1997-04-25,4.0,12.42,18.65,17.4,19.42934361053037,17.40525455153597,0.04710029759613162,0.0 -634,1997-04-26,6.5400000000000205,9.970000000000027,14.13,34.12,37.64850969079068,34.124725461227925,0.04237483636820465,0.0 -635,1997-04-27,5.980000000000018,6.81,7.88,15.73,17.489047008345086,15.734249974027351,0.03812486234085381,0.0 -636,1997-04-28,6.420000000000016,9.32000000000005,10.95,8.19,9.203015189236645,8.193822596824507,0.034302265516346526,0.0 -637,1997-04-29,5.07000000000005,6.53000000000003,8.31,33.82,37.194129130691344,33.82343841130425,0.030863854212091757,0.0 -638,1997-04-30,5.390000000000043,8.080000000000041,11.46,0.0,0.1850737314267972,0.0030930115560102276,0.02777084265608153,0.0 -639,1997-05-01,6.160000000000025,10.21,15.18,0.0,0.1611628741434558,0.002782448874495699,0.024988393781585832,0.0 -640,1997-05-02,7.580000000000041,13.07000000000005,18.74,0.0,0.1408936902175549,0.002503182846210924,0.022485210935374908,0.0 -641,1997-05-03,11.12,15.63,21.01,0.5,0.6703199938528577,0.5022520379438288,0.020233172991546148,0.0 -642,1997-05-04,11.17,16.03,20.91,3.87,4.34040487960447,3.872026164957867,0.01820700803367924,0.0 -643,1997-05-05,7.88,10.9,13.24,26.73,29.32394593340049,26.73182300668557,0.016384001348111653,0.0 -644,1997-05-06,1.63,4.550000000000011,7.550000000000011,24.6,25.73769840424879,24.601640267373767,0.014743733974345679,0.0 -645,1997-05-07,0.4700000000000273,5.270000000000039,10.62,6.65,6.8356423737886045,6.651475885477965,0.013267848496380696,0.0 -646,1997-05-08,1.0500000000000114,4.830000000000041,6.080000000000041,2.01,2.1964709655449743,2.011328009355748,0.011939839140632449,0.0 -647,1997-05-09,5.710000000000036,6.430000000000007,7.170000000000016,21.52,23.808242371054806,21.5211949755606,0.010744863580029655,0.0 -648,1997-05-10,6.360000000000014,11.05,14.06,0.0,0.2408327180752473,0.0010752894434591864,0.009669574136570469,0.0 -649,1997-05-11,5.730000000000018,12.94,18.64,18.5,20.43912119999836,18.50096760780484,0.00870196633173202,0.0 -650,1997-05-12,7.600000000000023,10.17,11.87,4.05,4.612664969306236,4.05087072337129,0.007831242960442393,0.0 -651,1997-05-13,9.300000000000011,12.17,14.73,1.48,1.7801876798181338,1.4807835508965292,0.0070476920639130245,0.0 -652,1997-05-14,11.24,16.11,21.46,1.8,2.1108868599055137,1.8007051147109558,0.006342577352957178,0.0 -653,1997-05-15,12.3,16.76,23.25,2.72,3.100239642587205,2.7206345375635057,0.005708039789451645,0.0 -654,1997-05-16,12.41,16.31,22.02,6.3,7.000351680931457,6.300571030617573,0.005137009171878323,0.0 -655,1997-05-17,12.07000000000005,16.1,22.0,30.99,33.98512260368046,30.99051388447828,0.0046231246935990265,0.0 -656,1997-05-18,9.56,13.0,16.08,3.0,3.368289641629517,3.0004624611420376,0.0041606635515613645,0.0 -657,1997-05-19,11.44,15.55,20.26,1.24,1.4341065761287564,1.2404161867714194,0.0037444767801420474,0.0 -658,1997-05-20,7.37,10.64,12.98,2.88,3.2188261688792696,2.8803745452089142,0.0033699315712276364,0.0 -659,1997-05-21,8.200000000000045,9.910000000000023,13.52,7.3,8.044351014217574,7.300337072152579,0.0030328594186482673,0.0 -660,1997-05-22,5.520000000000039,9.79000000000002,13.44,0.78,0.9083570283979996,0.7803033499248516,0.0027295094937967025,0.0 -661,1997-05-23,8.220000000000027,13.37,17.04,0.0,0.0495502463674923,0.0002730027731692755,0.002456506720627427,0.0 -662,1997-05-24,10.49,13.91,19.64,1.05,1.192429395109551,1.0502456926475612,0.0022108140730661982,0.0 -663,1997-05-25,11.16,15.34,19.7,0.0,0.0396376761959337,0.00022111540616934626,0.001989698666896852,0.0 -664,1997-05-26,9.150000000000034,15.41,21.09,0.0,0.0354859192136635,0.00019899740482737284,0.001790701262069479,0.0 -665,1997-05-27,9.38,15.66,21.83,0.0,0.0317864512233159,0.00017909243141243244,0.0016116088306570465,0.0 -666,1997-05-28,8.600000000000023,13.46,19.27,0.0,0.02848660090719,0.0001611789497820449,0.0014504298808750015,0.0 -667,1997-05-29,9.220000000000027,14.47,19.31,0.0,0.025540488589652,0.00014505762176317608,0.0013053722591118253,0.0 -668,1997-05-30,11.49,16.61,23.06,0.04,0.0666461971882388,0.040130549078922724,0.0011748231801890995,0.0 -669,1997-05-31,6.090000000000032,14.43,20.38,7.55,8.276133920809809,7.550117491918765,0.0010573312614245679,0.0 -670,1997-06-01,7.460000000000036,8.63,9.57000000000005,7.79,8.53645667140133,7.7901057409026055,0.0009515903588193814,0.0 -671,1997-06-02,9.170000000000016,12.19,14.31,0.28,0.3227292203617465,0.28009516533471385,0.0008564250241055816,0.0 -672,1997-06-03,8.140000000000043,12.06,14.6,0.24,0.2773017749280072,0.2400856476043893,0.0007707774197162639,0.0 -673,1997-06-04,10.51,16.05,20.32000000000005,1.17,1.2927002985714608,1.1700770818745196,0.0006936955451965512,0.0 -674,1997-06-05,13.2,15.75,19.73,1.35,1.4881646512778268,1.3500693729018438,0.0006243226433528283,0.0 -675,1997-06-06,12.07000000000005,16.81,21.05,0.0,0.0107838400998742,6.243497563870419e-05,0.0005618876677141242,0.0 -676,1997-06-07,14.84,19.35,24.0,3.24,3.55248328416752,3.2400561909629064,0.0005056967048081347,0.0 -677,1997-06-08,11.04,16.31,22.12,2.8,3.070382908579364,2.8000505714493342,0.0004551252554737643,0.0 -678,1997-06-09,12.42,17.79,22.75,0.0,0.0078306520857351,4.551396640749438e-05,0.0004096112890662699,0.0 -679,1997-06-10,16.21,20.27,25.74,0.0,0.0070401719906846,4.096229599511175e-05,0.00036864899307115814,0.0 -680,1997-06-11,16.35,20.34,25.85,0.0,0.0063301597644968,3.686584464280288e-05,0.00033178314842835526,0.0 -681,1997-06-12,14.55,18.53,22.74,0.06,0.0712995528068932,0.06003317908056038,0.0002986040678679767,0.0 -682,1997-06-13,13.91,16.74,20.51,8.35,9.13546240684424,8.350029861027014,0.00026874304085315007,0.0 -683,1997-06-14,9.420000000000016,13.46,16.2,4.67,5.111035559749789,4.670026874806467,0.0002418682343854505,0.0 -684,1997-06-15,10.48,15.1,19.52,0.0,0.004141087012062,2.4187230366586088e-05,0.00021768100401886443,0.0 -685,1997-06-16,11.92,13.64,15.0,3.94,4.311934776396072,3.9400217684300123,0.00019591257400649708,0.0 -686,1997-06-17,9.160000000000023,13.58,17.12,0.0,0.003350731730322,1.9591524384240877e-05,0.0001763210496222562,0.0 -687,1997-06-18,9.31,13.56,18.21,0.0,0.0030142988469251,1.763232121827956e-05,0.00015868872840397666,0.0 -688,1997-06-19,8.63,12.87,17.77,11.78,12.8836032201536,11.780015869048007,0.00014281968039665273,0.0 -689,1997-06-20,8.860000000000014,13.63,16.39,8.44,9.231193847896789,8.440014282109924,0.00012853757047212523,0.0 -690,1997-06-21,7.430000000000007,10.76,13.72,73.96,80.87407376750173,73.96001285387197,0.00011568369849842803,0.0 -691,1997-06-22,7.03000000000003,10.48,14.57000000000005,6.43,7.032885963569566,6.43001156846294,0.00010411523555831759,0.0 -692,1997-06-23,8.38,10.6,12.67,15.8,17.2783546285732,15.80001041159896,9.370363659950389e-05,0.0 -693,1997-06-24,6.2000000000000455,9.050000000000011,11.1,1.4,1.5324348772792131,1.4000093704247363,8.433321186323642e-05,0.0 -694,1997-06-25,7.220000000000027,11.79,14.85,10.34,11.307755967827513,10.340008433370658,7.58998412051676e-05,0.0 -695,1997-06-26,9.03000000000003,12.72,16.41,40.43,44.20965121888888,40.43000759002419,6.830981701258949e-05,0.0 -696,1997-06-27,7.610000000000014,11.92,15.63,0.02,0.0230339903659796,0.02000683101415959,6.147880285299892e-05,0.0 -697,1997-06-28,10.43,14.72,18.45,0.71,0.7774007905811502,0.7100061479065765,5.533089627647818e-05,0.0 -698,1997-06-29,9.400000000000034,13.06,16.39,8.08,8.836053896851608,8.080005533110924,4.979778535296171e-05,0.0 -699,1997-06-30,8.950000000000045,10.1,11.6,14.45,15.801263241442443,14.450004979795784,4.4817989568026685e-05,0.0 -700,1997-07-01,9.78000000000003,13.5,16.29,0.03,0.0335675102939068,0.030004481812928998,4.03361766390273e-05,0.0 -701,1997-07-02,10.32000000000005,13.1,17.05,6.67,7.294027489347577,6.670004033628981,3.630254765765307e-05,0.0 -702,1997-07-03,9.900000000000034,11.6,13.86,4.82,5.271068266549098,4.820003630263933,3.2672283724741565e-05,0.0 -703,1997-07-04,9.170000000000016,11.78,14.45,5.21,5.697453528128574,5.210003267235797,2.9405047926883156e-05,0.0 -704,1997-07-05,9.420000000000016,10.49,11.2,12.56,13.7342867978683,12.560002940510808,2.6464537119636633e-05,0.0 -705,1997-07-06,10.06,12.56,14.73,0.02,0.0223199602457701,0.020002646458583753,2.3818078535883036e-05,0.0 -706,1997-07-07,10.95,14.35,17.2,0.0,0.0004057624865975,2.381811799736536e-06,2.14362667361465e-05,0.0 -707,1997-07-08,13.31,17.0,20.92,0.02,0.022234251935154,0.020002143629869993,1.929263686615296e-05,0.0 -708,1997-07-09,12.69,17.61,23.0,3.8,4.155454908223801,3.8000019292662754,1.736337059047162e-05,0.0 -709,1997-07-10,13.25,16.64,20.99,20.23,22.12087589861232,20.230001736339158,1.5627031434281588e-05,0.0 -710,1997-07-11,12.65,16.55,21.06,0.15,0.1642843131588898,0.1500015627048421,1.406432659216816e-05,0.0 -711,1997-07-12,12.33,16.83,21.17,2.98,3.258733307893757,2.980001406434035,1.2657892557016609e-05,0.0 -712,1997-07-13,14.2,18.91,24.42,0.6,0.6562881533041456,0.6000012657903702,1.1392102186808054e-05,0.0 -713,1997-07-14,12.28,14.92,18.07000000000005,12.1,13.230990841806866,12.100001139211122,1.0252891065376842e-05,0.0 -714,1997-07-15,11.02,16.44,21.09,0.02,0.022043698744585,0.020001025289837767,9.227601227611457e-06,0.0 -715,1997-07-16,14.22,19.57000000000005,24.66,0.1,0.1095025763653643,0.10000092276071507,8.304840512555967e-06,0.0 -716,1997-07-17,13.81,17.66,21.71,15.28,16.708122871860617,15.28000083048453,7.47435598154202e-06,0.0 -717,1997-07-18,10.53,11.64,13.79,16.93,18.51230829307027,16.930000747435987,6.726919994783604e-06,0.0 -718,1997-07-19,9.29000000000002,12.21,14.67,1.12,1.2247833511453967,1.1200006726923144,6.054227680535867e-06,0.0 -719,1997-07-20,8.670000000000016,13.87,19.01,0.02,0.0219721830078497,0.020000605423023017,5.4488046575191114e-06,0.0 -720,1997-07-21,11.14,15.3,19.76,0.02,0.0219618719840477,0.020000544880672273,4.903923985247053e-06,0.0 -721,1997-07-22,12.71,17.95,23.91,3.51,3.838108039369981,3.5100004903925655,4.413531419441042e-06,0.0 -722,1997-07-23,13.05,15.84,19.73,0.42,0.4593259539273144,0.4200004413532774,3.9721781419990915e-06,0.0 -723,1997-07-24,12.81,18.49,23.89,10.26,11.21890858073558,10.260000397217924,3.5749602180459337e-06,0.0 -724,1997-07-25,12.73,14.03,16.01,18.3,20.010274250207186,18.30000035749611,3.2174641073412146e-06,0.0 -725,1997-07-26,10.97,15.51,19.68,2.05,2.2416360663873243,2.0500003217464826,2.895717624597995e-06,0.0 -726,1997-07-27,13.16,17.32000000000005,21.97,0.03,0.0328529360556189,0.030000289571820785,2.6061458038108292e-06,0.0 -727,1997-07-28,14.48,18.48,23.88,0.0,4.437651898831344e-05,2.606146276262476e-07,2.3455311761845814e-06,0.0 -728,1997-07-29,14.48,18.55,23.87,0.0,3.993862832955468e-05,2.3455315588704004e-07,2.1109780202975416e-06,0.0 -729,1997-07-30,13.81,18.61,24.35,0.0,3.594457210307818e-05,2.1109783302730435e-07,1.8998801872702372e-06,0.0 -730,1997-07-31,13.83,16.66,20.94,0.27,0.2952650063212456,0.27000018998804387,1.7098921434351987e-06,0.0 -731,1997-08-01,13.58,14.83,16.7,0.73,0.798250741298464,0.7300001709892346,1.5389029087541873e-06,0.0 -732,1997-08-02,14.01,18.3,22.87,0.0,2.620324920931956e-05,1.5389030734878637e-07,1.385012601405401e-06,0.0 -733,1997-08-03,14.69,20.01,25.77,0.0,2.3582841041509652e-05,1.3850127348396754e-07,1.2465113279214333e-06,0.0 -734,1997-08-04,16.04,20.04,24.06,0.03,0.0328248529742855,0.0300001246511436,1.121860184321114e-06,0.0 -735,1997-08-05,15.87,19.81,26.92,2.18,2.383749438546459,2.1800001121860273,1.00967415713438e-06,0.0 -736,1997-08-06,14.99,18.18,22.3,0.57,0.6232861329538834,0.5700001009674227,9.087067343296981e-07,0.0 -737,1997-08-07,14.43,18.31,21.99,5.45,5.959341313934259,5.450000090870679,8.178360551528207e-07,0.0 -738,1997-08-08,15.38,20.03,25.65,0.02,0.0218830109071573,0.02000008178361017,7.360524449849735e-07,0.0 -739,1997-08-09,15.56,20.28,26.55,0.01,0.0109470755303235,0.010000073605248268,6.624471967178985e-07,0.0 -740,1997-08-10,15.82000000000005,21.04,27.2,0.0,1.12794128142299e-05,6.624472272433772e-08,5.962024739935608e-07,0.0 -741,1997-08-11,14.98,19.11,23.52,0.1,0.1093555797387001,0.10000005962024988,5.36582224121641e-07,0.0 -742,1997-08-12,15.36,19.92,25.31,0.03,0.0328127647827801,0.030000053658224415,4.829239997067003e-07,0.0 -743,1997-08-13,15.06,19.36,23.89,0.15,0.1640263650819705,0.1500000482924016,4.3463159811378124e-07,0.0 -744,1997-08-14,15.99,20.45,26.41,0.03,0.0328110288688537,0.030000043463161125,3.911684369883814e-07,0.0 -745,1997-08-15,13.97,19.44,26.04,0.0,6.660339028306704e-06,3.9116844763195726e-08,3.5205159222518565e-07,0.0 -746,1997-08-16,14.73,18.8,25.02,0.0,5.994299747074501e-06,3.5205160084648206e-08,3.1684643214053744e-07,0.0 -747,1997-08-17,12.34,16.96,21.73,0.12,0.131219908804527,0.1200000316846439,2.8516178822815867e-07,0.0 -748,1997-08-18,12.57000000000005,18.1,25.68,0.0,4.855375345523044e-06,2.8516179388459116e-08,2.5664560883969956e-07,0.0 -749,1997-08-19,13.48,18.18,25.05,0.05,0.054677083976249,0.05000002566456135,2.3098104749755857e-07,0.0 -750,1997-08-20,13.77,18.63,25.38,0.0,3.932849142198798e-06,2.309810512087439e-08,2.078829423766842e-07,0.0 -751,1997-08-21,13.56,18.63,25.41,0.02,0.0218726252188711,0.020000020788294538,1.8709464783840977e-07,0.0 -752,1997-08-22,14.13,19.64,26.62,0.0,3.185604598384179e-06,1.8709465027331846e-08,1.6838518281107791e-07,0.0 -753,1997-08-23,15.21,19.94,26.99,0.0,2.867042908150069e-06,1.6838518478335395e-08,1.5154666433274252e-07,0.0 -754,1997-08-24,15.87,20.67,27.94,0.0,2.580337620715299e-06,1.515466659302861e-08,1.363919977397139e-07,0.0 -755,1997-08-25,14.56,19.63,25.63,0.03,0.0328059507878291,0.030000013639199904,1.2275279783634148e-07,0.0 -756,1997-08-26,12.26,17.08,22.02,0.0,2.0900720923626877e-06,1.2275279888448981e-08,1.104775179478925e-07,0.0 -757,1997-08-27,13.54,18.67,24.52,14.82,16.20499435254458,14.820000011047751,9.942976606820323e-08,0.0 -758,1997-08-28,9.56,10.93,13.51,21.51,23.520203316543167,21.510000009942978,8.94867893926139e-08,0.0 -759,1997-08-29,7.950000000000045,10.85,14.61,5.02,5.489142023447543,5.020000008948679,8.05381103976496e-08,0.0 -760,1997-08-30,10.07000000000005,12.01,14.7,4.05,4.428491216739974,4.050000008053811,7.248429931276529e-08,0.0 -761,1997-08-31,10.43,17.46,25.17,0.0,1.2341652467764555e-06,7.2484299678232015e-09,6.523586934494209e-08,0.0 -762,1997-09-01,14.06,18.56,24.26,2.31,2.525880504076428,2.310000006523587,5.871228238084508e-08,0.0 -763,1997-09-02,14.21,16.19,20.52,9.61,10.508096657630686,9.610000005871228,5.2841054118782296e-08,0.0 -764,1997-09-03,13.39,15.93,19.18,0.13,0.1421499564734299,0.13000000528410544,4.755694868748167e-08,0.0 -765,1997-09-04,12.25,16.63,23.5,0.05,0.0546735238766517,0.05000000475569489,4.280125380300136e-08,0.0 -766,1997-09-05,11.91,18.59,25.81,0.19,0.2077570424986664,0.1900000042801254,3.852112840995819e-08,0.0 -767,1997-09-06,14.71,17.74,22.72,0.38,0.415513283359354,0.38000000385211286,3.466901555864051e-08,0.0 -768,1997-09-07,9.260000000000048,14.05,19.41,0.02,0.0218696759534181,0.020000003466901565,3.120211399441575e-08,0.0 -769,1997-09-08,8.950000000000045,13.96,21.73,0.04,0.0437387025802044,0.04000000312021141,2.8081902588202004e-08,0.0 -770,1997-09-09,8.210000000000036,13.81,21.99,0.03,0.0328041066251942,0.030000002808190263,2.5273712323896346e-08,0.0 -771,1997-09-10,7.82000000000005,12.73,20.43,0.0,4.303263470719324e-07,2.527371236832857e-09,2.274634108706349e-08,0.0 -772,1997-09-11,9.19,16.45,23.81,0.03,0.0328040157784677,0.030000002274634112,2.047170697475813e-08,0.0 -773,1997-09-12,13.54,17.82000000000005,23.88,44.63,48.800864991085405,44.630000002047176,1.842453627436712e-08,0.0 -774,1997-09-13,4.94,9.240000000000007,13.74,5.39,5.8937188981396,5.390000001842453,1.6582082644569096e-08,0.0 -775,1997-09-14,5.140000000000043,9.460000000000036,16.41,0.03,0.0328039108218378,0.030000001658208264,1.4923874378199524e-08,0.0 -776,1997-09-15,4.88,11.12,18.97,0.03,0.0328038825881221,0.030000001492387438,1.3431486938830316e-08,0.0 -777,1997-09-16,7.25,13.18,21.42,0.03,0.0328038571777798,0.030000001343148695,1.2088338243692387e-08,0.0 -778,1997-09-17,7.920000000000016,13.78,22.45,0.04,0.0437383771367326,0.040000001208833826,1.0879504418306681e-08,0.0 -779,1997-09-18,7.920000000000016,13.63,22.46,0.01,0.0109347280695801,0.010000001087950443,9.791553975652676e-09,0.0 -780,1997-09-19,8.28000000000003,14.96,23.44,0.02,0.0218692523737031,0.0200000009791554,8.812398577420505e-09,0.0 -781,1997-09-20,9.53000000000003,13.74,19.6,0.01,0.010934692873722,0.010000000881239859,7.931158719138262e-09,0.0 -782,1997-09-21,8.580000000000041,13.24,19.58,0.01,0.010934677869173,0.010000000793115872,7.13804284678688e-09,0.0 -783,1997-09-22,8.82000000000005,12.85,19.37,0.03,0.0328037500215979,0.030000000713804285,6.4242385617537725e-09,0.0 -784,1997-09-23,7.150000000000034,12.56,20.69,0.0,1.0938313637210984e-07,6.424238564624575e-10,5.781814705291315e-09,0.0 -785,1997-09-24,6.57000000000005,12.1,20.5,0.01,0.0109346412730805,0.010000000578181472,5.203633234529649e-09,0.0 -786,1997-09-25,6.2000000000000455,12.21,21.33,0.03,0.0328037170851157,0.030000000520363324,4.683269910888331e-09,0.0 -787,1997-09-26,6.460000000000036,11.36,20.13,0.01,0.0109346225685624,0.010000000468326992,4.214942919646932e-09,0.0 -788,1997-09-27,6.080000000000041,11.3,19.65,0.04,0.0437382430793091,0.04000000042149429,3.79344862755866e-09,0.0 -789,1997-09-28,6.720000000000027,11.35,18.78,0.03,0.032803693074422,0.030000000379344863,3.4141037647026953e-09,0.0 -790,1997-09-29,6.31,11.72,19.67,0.01,0.0109346009589386,0.010000000341410378,3.0726933881513457e-09,0.0 -791,1997-09-30,7.19,12.99,21.86,0.0,5.2317611017069935e-08,3.0726933888080935e-10,2.7654240492705365e-09,0.0 -792,1997-10-01,7.69,13.94,23.31,0.03,0.0328036755706273,0.030000000276542402,2.4888816442902865e-09,0.0 -793,1997-10-02,8.07000000000005,13.2,21.59,0.01,0.0109345852055236,0.010000000248888165,2.2399934798181688e-09,0.0 -794,1997-10-03,5.590000000000032,10.69,20.02,0.03,0.0328036666243154,0.030000000223999346,2.0159941318014494e-09,0.0 -795,1997-10-04,4.0400000000000205,10.25,18.81,0.01,0.010934577153843,0.010000000201599413,1.8143947185930337e-09,0.0 -796,1997-10-05,6.240000000000009,13.42,22.07000000000005,0.01,0.0109345737212845,0.010000000181439471,1.632955246710831e-09,0.0 -797,1997-10-06,9.28000000000003,15.28,19.83,0.01,0.0109345706319818,0.010000000163295525,1.4696597220211993e-09,0.0 -798,1997-10-07,11.24,14.73,18.85,10.39,11.360990023584726,10.390000000146966,1.322693749804055e-09,0.0 -799,1997-10-08,11.17,15.97,21.08,0.01,0.0109345653492744,0.010000000132269374,1.1904243748114798e-09,0.0 -800,1997-10-09,12.05,16.17,21.55,1.61,1.7604614156186549,1.6100000001190424,1.0713819373204744e-09,0.0 -801,1997-10-10,8.140000000000043,13.16,14.89,24.02,26.264771891720773,24.02000000010714,9.642437435804425e-10,0.0 -802,1997-10-11,7.28000000000003,10.58,12.72,21.08,23.050016298388343,21.080000000096422,8.678193692159308e-10,0.0 -803,1997-10-12,4.7000000000000455,6.800000000000011,9.160000000000023,22.0,24.055994236946415,22.000000000086782,7.81037432289099e-10,0.0 -804,1997-10-13,2.910000000000025,4.38,6.0,4.95,5.41259871328677,4.950000000078104,7.029336890559459e-10,0.0 -805,1997-10-14,2.7900000000000205,4.240000000000009,7.06,5.61,6.134278538622038,5.610000000070293,6.326403201469142e-10,0.0 -806,1997-10-15,2.950000000000045,4.830000000000041,6.37,16.55,18.096668391540813,16.550000000063264,5.693762881294388e-10,0.0 -807,1997-10-16,2.94,7.2000000000000455,11.09,0.16,0.1749526949467066,0.16000000005693762,5.124386593142398e-10,0.0 -808,1997-10-17,2.640000000000043,8.07000000000005,15.04,0.03,0.0327404050746206,0.030000000051243866,4.6119479338098926e-10,0.0 -809,1997-10-18,5.37,9.220000000000027,16.47,0.01,0.0109408739389227,0.01000000004611948,4.150753140414108e-10,0.0 -810,1997-10-19,5.2900000000000205,9.210000000000036,15.43,0.02,0.021874783647652,0.02000000004150753,3.735677826360713e-10,0.0 -811,1997-10-20,5.980000000000018,10.67,14.34,0.03,0.0328087566699423,0.030000000037356776,3.3621100437149344e-10,0.0 -812,1997-10-21,6.37,10.12,14.89,0.51,0.5576662996023176,0.5100000000336211,3.025899039335578e-10,0.0 -813,1997-10-22,6.69,11.01,14.9,2.09,2.2853236049266736,2.0900000000302588,2.723309135395651e-10,0.0 -814,1997-10-23,4.890000000000043,10.25,12.62,2.92,3.1928902442865006,2.920000000027233,2.450978221850927e-10,0.0 -815,1997-10-24,-1.579999999999984,3.3600000000000136,8.340000000000032,0.0,3.364588365008624e-06,2.4509782218927138e-11,2.2058803996616554e-10,0.0 -816,1997-10-25,-1.909999999999968,2.340000000000032,8.670000000000016,0.01,0.0076824792677642,0.008375258987160223,0.0016247412334278169,0.0 -817,1997-10-26,-0.9499999999999886,3.960000000000037,11.87,0.01,0.009402342205143,0.00949558637814985,0.0021291548552779672,0.0 -818,1997-10-27,-2.519999999999982,3.900000000000034,12.38,0.0,0.0004815349738908,0.0002129470191926474,0.0019162078360853198,0.0 -819,1997-10-28,-4.46999999999997,-0.4699999999999704,4.770000000000039,0.02,0.0078015813806507,0.0103246753246754,0.011591532511409921,-0.3524999999999778 -820,1997-10-29,-5.769999999999982,-0.7399999999999523,7.160000000000025,0.0,0.0,0.0,0.011591532511409921,-0.6431249999999586 -821,1997-10-30,-6.519999999999982,-2.069999999999993,6.210000000000036,0.0,0.0,0.0,0.011591532511409921,-1.7132812499999845 -822,1997-10-31,-6.729999999999961,-1.75,4.610000000000014,0.0,0.0,0.0,0.011591532511409921,-1.7408203124999961 -823,1997-11-01,-3.5,2.87,11.61,0.0,0.0009188250716513,0.0011600878853318655,0.010431444626078056,0.0 -824,1997-11-02,-0.9099999999999682,3.7800000000000296,12.49,0.0,0.0017492314256099,0.0010439013806599954,0.00938754324541806,0.0 -825,1997-11-03,-0.42999999999995,4.980000000000018,11.83,0.01,0.0109807281202986,0.010623753305578484,0.008763789939839577,0.0 -826,1997-11-04,3.9500000000000455,6.830000000000041,8.420000000000016,14.25,15.583293011246816,14.250876913243168,0.007886876696671223,0.0 -827,1997-11-05,6.81,9.930000000000009,12.51,6.53,7.141668837447926,6.530789120352885,0.007097756343785788,0.0 -828,1997-11-06,7.13,11.96,15.77,12.34,13.49449685217895,12.340710126065058,0.006387630278726581,0.0 -829,1997-11-07,6.420000000000016,8.44,11.73,3.6,3.9375792136294057,3.6006390468455822,0.005748583433144417,0.0 -830,1997-11-08,6.390000000000043,7.580000000000041,8.770000000000039,15.16,16.57779625734697,15.16057508821296,0.005173495220183975,0.0 -831,1997-11-09,6.140000000000043,7.69,9.680000000000009,7.82,8.551738818617196,7.820517535699887,0.004655959520297261,0.0 -832,1997-11-10,3.080000000000041,5.720000000000027,10.91,14.74,16.118349766535495,14.740465746744043,0.004190212776253881,0.0 -833,1997-11-11,0.4700000000000273,3.8600000000000136,5.69,61.38,54.67853788935537,61.38041914341037,0.0037710693658879048,0.0 -834,1997-11-12,0.0800000000000409,1.7100000000000364,2.44,9.56,4.747044033169811,9.560377205857701,0.0033938635081868116,0.0 -835,1997-11-13,-2.4499999999999886,1.56,7.28000000000003,0.17,0.2331455006940326,0.13182905342724727,0.04156481008093955,0.0 -836,1997-11-14,-3.349999999999966,-0.0399999999999636,6.350000000000023,0.01,0.0054968952213666,0.0065463917525773515,0.045018418328362196,-0.0299999999999727 -837,1997-11-15,-3.3899999999999864,2.580000000000041,7.2000000000000455,3.92,2.798732297686747,2.8068952339990694,1.1581231843292927,0.0 -838,1997-11-16,1.420000000000016,4.660000000000025,7.590000000000032,2.11,3.453373871975646,2.235142056706229,1.032981127623064,0.0 -839,1997-11-17,1.06,3.900000000000034,10.33,0.01,0.9316653238294804,0.12072051905413698,0.9222606085689271,0.0 -840,1997-11-18,-0.0399999999999636,2.930000000000007,8.56,0.01,0.5095569670882308,0.10810132986056448,0.8241592787083626,0.0 -841,1997-11-19,0.0400000000000204,3.63,4.640000000000043,11.79,9.7524260219252,11.8771407150809,0.7370185636274618,0.0 -842,1997-11-20,2.330000000000041,5.240000000000009,8.03000000000003,7.6,9.648226920420946,7.677480333533943,0.6595382300935185,0.0 -843,1997-11-21,0.4300000000000068,3.760000000000048,8.230000000000018,0.01,0.8397099476387337,0.07897962077626319,0.5905586093172553,0.0 -844,1997-11-22,-1.919999999999959,2.0200000000000387,8.79000000000002,0.01,0.2383261359777552,0.06988313959848119,0.5306754697187741,0.0 -845,1997-11-23,-2.579999999999984,0.0600000000000022,4.06,0.23,0.0979570712533839,0.16404037235144253,0.5966350973673316,0.0 -846,1997-11-24,-2.69,2.140000000000043,4.330000000000041,0.01,0.2170632899077566,0.06872285366928102,0.5379122436980505,0.0 -847,1997-11-25,0.8000000000000114,3.94,8.730000000000018,0.0,0.8292915495544255,0.05580394180310736,0.4821083018949431,0.0 -848,1997-11-26,0.2200000000000272,3.240000000000009,7.63,0.0,0.5314203483505542,0.04982760364141924,0.43228069825352383,0.0 -849,1997-11-27,1.580000000000041,4.720000000000027,7.94,0.36,1.312110807016088,0.40452791503410457,0.3877527832194192,0.0 -850,1997-11-28,2.990000000000009,6.860000000000014,9.83000000000004,7.27,9.414747963483972,7.309821129275385,0.3479316539440334,0.0 -851,1997-11-29,2.980000000000018,5.32000000000005,8.81,12.94,15.12512621558622,12.975635234690525,0.31229641925350815,0.0 -852,1997-11-30,2.660000000000025,3.5,4.2000000000000455,18.04,19.90694540046944,18.07190805460833,0.28038836464517697,0.0 -853,1997-12-01,-1.0399999999999636,1.1400000000000432,4.12,5.45,3.135037342873612,4.502658903369495,1.2277294612756826,0.0 -854,1997-12-02,-3.38,-0.75,3.450000000000045,22.43,7.096717172154829,11.32994143484634,12.327788026429342,-0.5625 -855,1997-12-03,-4.149999999999977,-3.349999999999966,-2.409999999999968,5.48,0.0,0.0,17.807788026429343,-2.6531249999999744 -856,1997-12-04,-6.359999999999957,-4.339999999999975,-1.5499999999999543,0.05,0.0,0.0,17.857788026429343,-3.918281249999975 -857,1997-12-05,-8.639999999999986,-4.94,-0.8799999999999955,0.0,0.0,0.0,17.857788026429343,-4.684570312499994 -858,1997-12-06,-9.20999999999998,-5.589999999999975,-1.69,0.0,0.0,0.0,17.857788026429343,-5.3636425781249795 -859,1997-12-07,-7.149999999999977,-2.12,2.2200000000000277,0.0,0.0,0.0,17.857788026429343,-2.930910644531245 -860,1997-12-08,-2.88,1.330000000000041,3.1000000000000227,3.11,0.9248151589688216,2.7793413875559994,18.188446638873344,0.0 -861,1997-12-09,-0.8799999999999955,1.81,4.390000000000043,2.61,2.077737366032368,3.7280940566188736,17.070352582254472,0.0 -862,1997-12-10,-0.9699999999999704,3.430000000000007,5.840000000000032,11.46,9.863821661518708,12.779382782487664,15.750969799766807,0.0 -863,1997-12-11,5.080000000000041,7.910000000000025,9.02000000000004,37.39,46.44105745535329,40.69083372638539,12.450136073381415,0.0 -864,1997-12-12,1.25,2.8600000000000136,4.430000000000007,20.57,20.249043655073287,22.565982698005573,10.454153375375842,0.0 -865,1997-12-13,-3.81,-0.5799999999999841,2.62,0.93,0.1861714032012718,0.37894245723172626,11.005210918144115,-0.43499999999998806 -866,1997-12-14,-4.099999999999966,-0.3899999999999863,3.960000000000037,3.04,1.0253899741272736,1.493598014888351,12.551612903255764,-0.40124999999998673 -867,1997-12-15,-3.739999999999952,-1.6999999999999886,-0.1099999999999568,0.0,0.0,0.0,12.551612903255764,-1.3753124999999882 -868,1997-12-16,-4.0,0.2800000000000295,2.0300000000000296,0.37,0.047978079393919,0.12456053067993486,12.797052372575829,-0.13382812499997493 -869,1997-12-17,0.3600000000000136,4.270000000000039,6.140000000000043,1.04,3.34558011436056,3.458852428693078,10.37819994388275,0.0 -870,1997-12-18,4.640000000000043,5.550000000000011,6.170000000000016,12.62,17.027257126904544,14.407030771655585,8.591169172227165,0.0 -871,1997-12-19,3.5400000000000205,5.32000000000005,8.03000000000003,12.92,16.91051362187883,14.292527115400949,7.218642056826217,0.0 -872,1997-12-20,2.2900000000000205,3.0300000000000296,3.5200000000000387,21.35,22.47694015692516,22.434333284415697,6.134308772410521,0.0 -873,1997-12-21,1.670000000000016,3.740000000000009,6.06,4.58,6.164701708010631,5.455183603783383,5.259125168627138,0.0 -874,1997-12-22,-0.7899999999999636,2.5300000000000296,6.850000000000023,0.06,0.7011108653325429,0.7731749242549532,4.545950244372185,0.0 -875,1997-12-23,-1.079999999999984,2.69,3.930000000000007,1.29,1.3890258722223376,1.6561949113975598,4.179755332974625,0.0 -876,1997-12-24,4.110000000000014,6.590000000000032,8.28000000000003,1.99,5.002113480851809,2.5294994253440577,3.640255907630567,0.0 -877,1997-12-25,4.94,8.580000000000041,11.06,18.6,23.67330553677128,19.05620284765371,3.184053059976857,0.0 -878,1997-12-26,1.7200000000000273,3.7800000000000296,4.75,9.1,10.173310446285296,9.488926643705042,2.795126416271814,0.0 -879,1997-12-27,-0.1499999999999772,0.8500000000000227,1.660000000000025,20.23,5.82457440255984,18.97026280556609,4.0548636107057225,0.0 -880,1997-12-28,-6.449999999999989,-2.069999999999993,1.5400000000000205,1.21,0.066598008629045,0.23321652065081633,5.031647090054906,-1.5524999999999949 -881,1997-12-29,-6.67999999999995,-3.0,0.7300000000000182,0.01,0.0001027761969541,0.0009851551956815401,5.040661934859225,-2.6381249999999987 -882,1997-12-30,-3.039999999999964,2.390000000000043,3.9700000000000273,0.0,0.460097824342535,0.6808062915970243,4.3598556432622,0.0 -883,1997-12-31,2.19,3.730000000000018,5.490000000000009,1.6,3.375945706648402,2.168207700325344,3.7916479429368564,0.0 -884,1998-01-01,2.2900000000000205,5.78000000000003,7.12,9.26,12.940647643006423,9.739168469540756,3.3124794733961,0.0 -885,1998-01-02,2.550000000000012,5.0,7.12,15.7,19.30144099716648,16.10757286431845,2.9049066090776487,0.0 -886,1998-01-03,1.160000000000025,4.63,7.830000000000041,8.48,10.468967352445455,8.829188795321505,2.5557178137561434,0.0 -887,1998-01-04,0.4800000000000182,4.82000000000005,7.240000000000009,3.19,4.897698976669803,3.491006280975875,2.2547115327802683,0.0 -888,1998-01-05,2.87,5.5400000000000205,7.81,11.7,15.018026385795586,11.960833568686814,1.9938779640934539,0.0 -889,1998-01-06,3.81,4.510000000000048,5.360000000000014,10.19,12.681374863474272,10.417041741515499,1.7668362225779548,0.0 -890,1998-01-07,4.010000000000048,6.44,10.11,0.34,2.727880731791138,0.5383982574574131,1.5684379651205418,0.0 -891,1998-01-08,0.5500000000000114,4.57000000000005,10.18,0.01,1.413093999284954,0.18395555497407418,1.3944824101464677,0.0 -892,1998-01-09,0.2700000000000386,3.590000000000032,10.1,0.0,0.857046882650526,0.15297475949120395,1.2415076506552638,0.0 -893,1998-01-10,0.8300000000000409,4.590000000000032,10.56,0.0,1.239683814850804,0.13487234405376256,1.1066353066015013,0.0 -894,1998-01-11,2.12,4.78000000000003,10.03,0.0,1.2295173673679032,0.11918214570855643,0.9874531608929449,0.0 -895,1998-01-12,1.56,3.980000000000018,7.050000000000011,0.0,0.8632551111451392,0.10552786536768849,0.8819252955252563,0.0 -896,1998-01-13,3.150000000000034,5.020000000000039,6.770000000000039,0.74,1.998102195964884,0.8336028569639351,0.7883224385613212,0.0 -897,1998-01-14,-0.6999999999999886,2.260000000000048,3.760000000000048,0.91,0.7416321607751954,0.8663207489319006,0.8320016896294207,0.0 -898,1998-01-15,-1.009999999999991,2.2800000000000296,4.03000000000003,14.06,8.250951143905441,11.700028858237001,3.1919728313924205,0.0 -899,1998-01-16,1.2300000000000182,2.510000000000048,3.4700000000000277,30.93,26.99258318441269,31.320069875970336,2.8019029554220833,0.0 -900,1998-01-17,-3.2999999999999545,-0.0099999999999909,3.920000000000016,0.01,0.0037048399687792,0.0054293628808864715,2.806473592541197,-0.007499999999993175 -901,1998-01-18,-0.5199999999999818,3.160000000000025,6.150000000000034,30.89,24.706033649586143,29.192407633610685,4.504065958930512,0.0 -902,1998-01-19,-2.099999999999966,1.2700000000000389,2.730000000000018,23.93,7.065606341549184,14.493200759384168,13.940865199546344,0.0 -903,1998-01-20,-2.919999999999959,-1.8999999999999773,-0.8199999999999932,17.7,0.0,0.0,31.640865199546344,-1.424999999999983 -904,1998-01-21,-6.739999999999952,-2.0,1.56,0.01,0.0005450637330368,0.0018795180722891679,31.648985681474056,-1.8562499999999957 -905,1998-01-22,-7.7099999999999795,-5.069999999999993,-1.88,0.35,0.0,0.0,31.998985681474057,-4.266562499999994 -906,1998-01-23,-8.359999999999957,-5.479999999999961,-0.7899999999999636,0.0,0.0,0.0,31.998985681474057,-5.176640624999969 -907,1998-01-24,-8.359999999999957,-3.67999999999995,-0.5399999999999636,0.14,0.0,0.0,32.138985681474054,-4.054160156249955 -908,1998-01-25,-8.819999999999993,-4.859999999999957,-0.7299999999999613,0.0,0.0,0.0,32.138985681474054,-4.658540039062457 -909,1998-01-26,-9.66999999999996,-5.46999999999997,-0.2899999999999636,0.0,0.0,0.0,32.138985681474054,-5.2671350097655925 -910,1998-01-27,-8.539999999999964,-4.69,0.6299999999999955,0.0,0.0,0.0,32.138985681474054,-4.834283752441398 -911,1998-01-28,-8.849999999999966,-5.239999999999952,0.3799999999999954,0.0,0.0,0.0,32.138985681474054,-5.1385709381103135 -912,1998-01-29,-8.92999999999995,-5.349999999999966,-0.079999999999984,0.0,0.0,0.0,32.138985681474054,-5.297142734527553 -913,1998-01-30,-6.88,-1.9799999999999611,2.550000000000012,0.0,0.0,0.0,32.138985681474054,-2.8092856836318587 -914,1998-01-31,-8.049999999999955,-2.4599999999999795,3.930000000000007,0.0,0.0,0.0,32.138985681474054,-2.5473214209079496 -915,1998-02-01,-8.549999999999955,-3.9499999999999886,1.9600000000000364,0.0,0.0,0.0,32.138985681474054,-3.5993303552269786 -916,1998-02-02,-6.42999999999995,-1.5,3.9700000000000273,0.0,0.0,0.0,32.138985681474054,-2.0248325888067447 -917,1998-02-03,-9.349999999999966,-3.42999999999995,3.37,0.0,0.0,0.0,32.138985681474054,-3.078708147201649 -918,1998-02-04,-10.31,-6.289999999999964,-0.839999999999975,0.0,0.0,0.0,32.138985681474054,-5.487177036800385 -919,1998-02-05,-9.70999999999998,-4.389999999999986,3.660000000000025,0.0,0.0,0.0,32.138985681474054,-4.664294259200086 -920,1998-02-06,-9.88,-3.099999999999966,4.550000000000011,0.0,0.0,0.0,32.138985681474054,-3.491073564799996 -921,1998-02-07,-5.70999999999998,0.3900000000000432,6.270000000000039,4.25,1.8605322282072647,2.2243322203672893,34.16465346110677,-0.5802683911999666 -922,1998-02-08,-5.079999999999984,-0.9599999999999796,5.850000000000023,0.0,0.0,0.0,34.16465346110677,-0.8650670977999764 -923,1998-02-09,-4.949999999999989,0.3600000000000136,8.510000000000048,0.0,0.0,0.45461133405479515,33.71004212705197,0.0 -924,1998-02-10,-5.149999999999977,0.8900000000000432,10.49,0.0,0.1311109412197882,1.1133742800598443,32.596667846992126,0.0 -925,1998-02-11,-4.62,2.1100000000000136,11.63,0.0,0.9307252974113758,2.578456693541521,30.018211153450604,0.0 -926,1998-02-12,-3.319999999999993,2.82000000000005,13.15,0.0,1.6900162972463904,3.2569241641484994,26.761286989302103,0.0 -927,1998-02-13,-3.4499999999999886,3.240000000000009,13.13,0.0,2.2391277513845997,3.4674715171280797,23.293815472174025,0.0 -928,1998-02-14,-2.669999999999959,3.930000000000007,13.29,0.0,3.090765644265024,3.851397575648574,19.442417896525452,0.0 -929,1998-02-15,-1.8199999999999927,4.160000000000025,13.27,0.0,3.257108801557212,3.6599825345353882,15.782435361990064,0.0 -930,1998-02-16,-2.25,6.910000000000025,14.55,0.0,6.5122766090522175,3.310882145316842,12.471553216673222,0.0 -931,1998-02-17,-2.569999999999993,2.760000000000048,9.03000000000003,0.0,1.2146434416914311,1.9277309013921176,10.543822315281105,0.0 -932,1998-02-18,-2.829999999999984,4.840000000000032,13.68,0.02,3.5495241699446107,1.845114198301126,8.718708116979979,0.0 -933,1998-02-19,-2.19,4.2000000000000455,14.15,0.0,2.6298936679026483,1.4006376694728826,7.318070447507097,0.0 -934,1998-02-20,-2.359999999999957,6.980000000000018,15.16,0.0,4.96334629168949,1.1043300697685177,6.21374037773858,0.0 -935,1998-02-21,3.850000000000023,9.260000000000048,15.22,10.36,17.51055845593021,11.249949391469864,5.323790986268715,0.0 -936,1998-02-22,0.6899999999999977,1.8000000000000114,4.400000000000034,26.28,22.537922411984194,27.00953144144698,4.594259544821734,0.0 -937,1998-02-23,1.0900000000000318,3.260000000000048,4.360000000000014,1.85,2.970400035228573,2.456247909159667,3.988011635662067,0.0 -938,1998-02-24,1.0200000000000389,4.800000000000011,9.29000000000002,0.0,2.5049638598949318,0.5094311305104107,3.4785805051516565,0.0 -939,1998-02-25,0.0500000000000113,5.390000000000043,12.57000000000005,0.0,2.7703985310549344,0.43202935667595554,3.046551148475701,0.0 -940,1998-02-26,-0.3700000000000045,5.090000000000032,11.5,0.0,2.394218110610094,0.3692171031589223,2.677334045316779,0.0 -941,1998-02-27,3.2100000000000364,5.4500000000000455,8.590000000000032,1.94,4.633834051982927,2.257594873630868,2.3597391716859106,0.0 -942,1998-02-28,2.700000000000045,4.430000000000007,5.69,8.25,10.689271026322992,8.524707525156652,2.0850316465292598,0.0 -943,1998-03-01,1.0100000000000475,2.450000000000045,4.090000000000032,0.45,0.8495565845035631,0.6887434058803613,1.8462882406488985,0.0 -944,1998-03-02,-0.9699999999999704,2.3500000000000227,5.490000000000009,0.01,0.3994375372175993,0.2170275107537277,1.639260729895171,0.0 -945,1998-03-03,1.400000000000034,9.180000000000009,12.4,0.03,4.190890073921233,0.21261808361386828,1.4566426462813027,0.0 -946,1998-03-04,5.170000000000016,10.72,14.23,10.01,15.523058938313284,10.17042357244794,1.296219073833363,0.0 -947,1998-03-05,-0.75,3.06,7.330000000000041,0.0,0.5733347362214932,0.14130927661614864,1.1549097972172144,0.0 -948,1998-03-06,0.8300000000000409,7.590000000000032,12.79,0.0,2.6877218526948763,0.12476901629517448,1.03014078092204,0.0 -949,1998-03-07,1.9500000000000453,6.600000000000023,11.19,16.31,19.59600848514214,16.420395722317405,0.919745058604635,0.0 -950,1998-03-08,1.06,2.650000000000034,4.37,24.48,22.305929745630664,24.57785880679873,0.8218862518059046,0.0 -951,1998-03-09,-3.62,-0.6099999999999568,2.82000000000005,0.21,0.0480030895548946,0.09195652173913134,0.9399297300667733,-0.4574999999999676 -952,1998-03-10,-3.669999999999959,-0.0399999999999636,4.910000000000025,0.0,0.0,0.0,0.9399297300667733,-0.14437499999996461 -953,1998-03-11,-1.759999999999991,0.1899999999999977,2.07000000000005,11.9,2.535876814111845,6.5343287011811375,6.305601028885636,0.0 -954,1998-03-12,-3.0499999999999545,0.160000000000025,3.010000000000048,2.16,0.598758793694389,1.163483332478925,7.302117696406712,0.0 -955,1998-03-13,-5.25,-0.7199999999999704,4.460000000000036,0.02,0.0067257667768992,0.009186405767250298,7.312931290639462,-0.5399999999999778 -956,1998-03-14,-4.889999999999986,1.670000000000016,7.670000000000016,0.0,0.25124538537324,0.942296314008225,6.370634976631237,0.0 -957,1998-03-15,-0.3100000000000023,4.400000000000034,8.470000000000027,0.01,2.0380020917619466,0.929086458087391,5.451548518543846,0.0 -958,1998-03-16,-0.8299999999999841,4.07000000000005,11.62,0.0,1.6619865117914878,0.7518830466972263,4.69966547184662,0.0 -959,1998-03-17,-3.1399999999999864,3.32000000000005,12.59,0.0,1.07891353548803,0.6236028473022964,4.076062624544323,0.0 -960,1998-03-18,-3.7199999999999696,3.910000000000025,12.29,0.0,1.3607981755219525,0.5231753394759504,3.5528872850683726,0.0 -961,1998-03-19,-2.069999999999993,3.760000000000048,11.94,0.0,1.1942936863586875,0.4430944485471876,3.109792836521185,0.0 -962,1998-03-20,-3.099999999999966,3.5200000000000387,9.300000000000011,0.09,1.0547952197091526,0.44897645622751714,2.750816380293668,0.0 -963,1998-03-21,-2.319999999999993,2.8600000000000136,8.240000000000009,0.12,0.6445554492486764,0.425004153566806,2.4458122267268623,0.0 -964,1998-03-22,-3.2999999999999545,1.9300000000000068,9.58000000000004,0.0,0.2460526820889246,0.286192032926753,2.159620193800109,0.0 -965,1998-03-23,-4.159999999999968,0.5300000000000296,4.860000000000014,5.94,2.455667965662184,3.4662579982240906,4.633362195576019,0.0 -966,1998-03-24,-5.399999999999977,-1.1099999999999568,4.050000000000011,0.0,0.0,0.0,4.633362195576019,-0.8324999999999676 -967,1998-03-25,-5.42999999999995,0.2400000000000091,8.010000000000048,0.0,0.0,0.0,4.633362195576019,-0.02812499999998508 -968,1998-03-26,-5.12,3.930000000000007,9.590000000000032,0.0,1.3722221620517223,0.6126680714214983,4.020694124154521,0.0 -969,1998-03-27,3.0,6.87,12.26,0.0,2.831438895502763,0.5145200752167318,3.5061740489377895,0.0 -970,1998-03-28,2.640000000000043,9.480000000000018,18.21,0.0,3.8361177813475695,0.43612937082716696,3.0700446781106225,0.0 -971,1998-03-29,3.740000000000009,10.46,20.18,0.0,3.920931860274481,0.3725660371457859,2.6974786409648366,0.0 -972,1998-03-30,2.7800000000000296,9.470000000000027,17.55,0.0,3.1110019592373264,0.3203624838142246,2.377116157150612,0.0 -973,1998-03-31,1.2700000000000389,11.13,19.82000000000005,0.0,3.168135843400576,0.277017788322192,2.1000983688284203,0.0 -974,1998-04-01,5.050000000000011,8.25,12.05,2.13,4.465066665968795,2.370688697359439,1.8594096714689812,0.0 -975,1998-04-02,4.87,8.730000000000018,11.81,8.68,11.533254135009424,8.889990692449565,1.6494189790194151,0.0 -976,1998-04-03,5.590000000000032,12.67,18.07000000000005,25.99,31.138516551393792,26.173866289403744,1.4655526896156703,0.0 -977,1998-04-04,1.7200000000000273,2.910000000000025,4.240000000000009,1.93,2.2146296072366334,2.09149568952457,1.3040570000911005,0.0 -978,1998-04-05,3.260000000000048,5.37,8.730000000000018,4.46,5.843906194543066,4.602234838015432,1.1618221620756684,0.0 -979,1998-04-06,3.300000000000012,8.03000000000003,11.04,4.94,6.815289022642879,5.0655716469332255,1.0362505151424433,0.0 -980,1998-04-07,3.8600000000000136,4.680000000000007,5.78000000000003,16.4,18.61931814659427,16.511094516022258,0.925155999120184,0.0 -981,1998-04-08,3.82000000000005,6.28000000000003,10.07000000000005,4.15,5.470554157666578,4.248469340222935,0.8266866588972493,0.0 -982,1998-04-09,3.2700000000000387,6.03000000000003,10.78,11.27,13.155392112700882,11.35742247575025,0.7392641831469993,0.0 -983,1998-04-10,0.8799999999999955,2.0200000000000387,2.920000000000016,12.25,8.887685042738937,12.327727955823866,0.6615362273231337,0.0 -984,1998-04-11,-0.7199999999999704,0.5800000000000409,3.0300000000000296,11.64,5.3028681709947465,9.665743932508725,2.6357922948144084,0.0 -985,1998-04-12,-0.8700000000000045,0.4500000000000455,2.430000000000007,19.58,6.683419899095209,14.677588427895758,7.538203866918648,0.0 -986,1998-04-13,-3.75,-0.75,2.75,7.88,1.6954319576004135,3.333846153846154,12.084357713072494,-0.5625 -987,1998-04-14,-4.0499999999999545,1.94,4.340000000000032,1.16,0.946351288901981,1.9637659688436075,11.280591744228888,0.0 -988,1998-04-15,-0.3799999999999954,2.840000000000032,7.260000000000048,28.71,24.979609083096467,29.283135039801863,10.707456704427024,0.0 -989,1998-04-16,-0.1799999999999499,4.07000000000005,5.62,3.85,5.4478491172799615,5.62861242495178,8.928844279475245,0.0 -990,1998-04-17,-1.2199999999999704,3.140000000000043,6.860000000000014,32.61,25.454275284995592,29.99217427628289,11.546670003192354,0.0 -991,1998-04-18,-0.6299999999999955,0.4500000000000455,1.56,19.63,4.0731572502276,14.352599113075906,16.82407089011645,0.0 -992,1998-04-19,-1.6099999999999568,1.37,4.410000000000025,2.09,1.4423054740509091,2.662978075682787,16.25109281443366,0.0 -993,1998-04-20,0.8799999999999955,6.920000000000016,11.85,5.96,13.164246380263975,9.422176681796648,12.788916132637013,0.0 -994,1998-04-21,2.88,8.680000000000007,14.87,0.0,8.213884039879154,2.416590748031984,10.372325384605029,0.0 -995,1998-04-22,3.200000000000045,10.64,17.9,0.0,8.81537698596935,1.785595377264955,8.586730007340073,0.0 -996,1998-04-23,6.63,11.86,18.91,0.02,8.461175982850163,1.3915527650083703,7.215177242331702,0.0 -997,1998-04-24,4.75,8.920000000000016,12.26,0.0,5.4063602692084345,1.0836389295832989,6.131538312748403,0.0 -998,1998-04-25,5.7900000000000205,12.78,18.92,1.42,8.036625476671713,2.2946701785801715,5.256868134168231,0.0 -999,1998-04-26,7.87,12.71,17.95,6.9,13.011420321685996,7.617913692644132,4.538954441524099,0.0 -1000,1998-04-27,2.2700000000000387,3.82000000000005,7.5,17.31,19.84545192076656,17.90720382737626,3.941750614147836,0.0 -1001,1998-04-28,0.8600000000000136,4.800000000000011,7.720000000000027,0.4,2.073568679982745,0.9022532947485508,3.439497319399285,0.0 -1002,1998-04-29,3.75,9.04000000000002,12.99,0.0,3.127215097202871,0.426240269571665,3.01325704982762,0.0 -1003,1998-04-30,6.69,10.36,15.12,6.92,10.550703897759975,7.284484278373722,2.6487727714538973,0.0 -1004,1998-05-01,6.610000000000014,8.410000000000025,10.55,2.91,5.402001517634062,3.223680595858517,2.3350921755953804,0.0 -1005,1998-05-02,6.0400000000000205,8.420000000000016,11.02,2.07,4.241433802516382,2.3414379218156895,2.063654253779691,0.0 -1006,1998-05-03,6.0,10.46,14.23,0.63,2.85249875966709,0.8659887517322993,1.827665502047392,0.0 -1007,1998-05-04,3.160000000000025,7.930000000000007,12.12,0.0,1.51294882612318,0.20600212272824436,1.6216633793191475,0.0 -1008,1998-05-05,3.87,8.550000000000011,13.23,0.99,2.569801858199674,1.1704591877171273,1.4412041916020204,0.0 -1009,1998-05-06,3.230000000000018,7.840000000000032,11.94,0.29,1.570038615723011,0.44856852725542407,1.2826356643465964,0.0 -1010,1998-05-07,5.330000000000041,12.24,17.15,0.0,1.832270677579755,0.13970726928139152,1.142928395065205,0.0 -1011,1998-05-08,9.490000000000007,14.95,21.35,0.0,1.835744533414159,0.12337936802827335,1.0195490270369316,0.0 -1012,1998-05-09,8.960000000000036,15.35,21.34,0.0,1.4001952228716623,0.10918553335996503,0.9103634936769666,0.0 -1013,1998-05-10,10.86,16.88,23.68,0.0,1.106101218371931,0.09680122067559113,0.8135622730013754,0.0 -1014,1998-05-11,11.66,17.64,24.17,0.0,0.8958217679362392,0.08596029341090478,0.7276019795904707,0.0 -1015,1998-05-12,12.28,17.91,24.06,0.0,0.7390748078520942,0.07644273982603217,0.6511592397644386,0.0 -1016,1998-05-13,13.26,18.43,24.71,0.01,0.6294200466562083,0.07806532864943018,0.5830939111150084,0.0 -1017,1998-05-14,12.94,16.7,22.52,4.95,5.935998811130146,5.010674422787651,0.5224194883273576,0.0 -1018,1998-05-15,10.39,16.65,23.06,0.0,0.4469367112284531,0.05414039675446221,0.46827909157289543,0.0 -1019,1998-05-16,7.400000000000034,13.45,19.17,0.0,0.3844588531159585,0.04835325907676488,0.4199258324961306,0.0 -1020,1998-05-17,9.960000000000036,13.85,19.5,0.0,0.3327325212419937,0.04321918938548223,0.37670664311064833,0.0 -1021,1998-05-18,10.31,14.15,19.35,0.0,0.2894351663912458,0.038657776482512035,0.33804886662813627,0.0 -1022,1998-05-19,9.930000000000009,14.59,19.85,0.0,0.2528568644384061,0.03459979841460159,0.3034490682135347,0.0 -1023,1998-05-20,10.22,15.21,20.87,0.0,0.2217114843692043,0.030985425155719247,0.27246364305781545,0.0 -1024,1998-05-21,9.08000000000004,14.2,18.5,0.0,0.195013471184015,0.02776275340687692,0.24470088965093853,0.0 -1025,1998-05-22,4.470000000000027,11.05,17.09,0.0,0.1719951658829897,0.024886604348130052,0.21981428530280847,0.0 -1026,1998-05-23,5.020000000000039,10.57000000000005,16.16,0.0,0.152049948822794,0.02231753105516834,0.19749675424764013,0.0 -1027,1998-05-24,5.63,10.97,16.05,0.0,0.1346922828622041,0.020020994216496543,0.17747576003114357,0.0 -1028,1998-05-25,6.07000000000005,11.46,16.69,0.01,0.130463626790722,0.027966673814077393,0.15950908621706616,0.0 -1029,1998-05-26,8.840000000000032,11.9,14.7,3.73,4.184823323063637,3.7461278913164002,0.14338119490066584,0.0 -1030,1998-05-27,9.53000000000003,12.07000000000005,16.27,18.92,20.78271122334459,18.934481122223808,0.12890007267686115,0.0 -1031,1998-05-28,8.170000000000016,11.28,14.99,11.65,12.823002635206894,11.663005582898775,0.11589448977808714,0.0 -1032,1998-05-29,7.170000000000016,10.97,13.69,0.49,0.6109583817184506,0.5016828788005321,0.10421161097755509,0.0 -1033,1998-05-30,10.09,15.28,20.86,0.04,0.1108546410665745,0.05049670373952113,0.09371490723803395,0.0 -1034,1998-05-31,5.2000000000000455,9.760000000000048,12.72,5.09,5.625661803425686,5.099432581734242,0.08428232550379121,0.0 -1035,1998-06-01,8.75,15.82000000000005,19.64,0.0,0.0536414713113525,0.008477644611420981,0.07580468089237023,0.0 -1036,1998-06-02,8.760000000000048,16.68,22.79,11.63,12.764878335372147,11.637620439731954,0.06818424116041655,0.0 -1037,1998-06-03,10.35,15.57000000000005,19.2,0.04,0.0867244058340159,0.04685076321922812,0.06133347794118843,0.0 -1038,1998-06-04,14.19,19.49,24.71,0.03,0.0713160581011345,0.036159514866371215,0.055173963074817214,0.0 -1039,1998-06-05,16.16,20.96,27.25,0.0,0.0345204643879336,0.005538571545899996,0.049635391528917217,0.0 -1040,1998-06-06,14.4,17.94,22.42,7.73,8.483356885536594,7.734980676470793,0.04465471505812422,0.0 -1041,1998-06-07,7.79000000000002,11.88,15.02,10.72,11.749598631499712,10.724479342084935,0.040175372973189474,0.0 -1042,1998-06-08,8.390000000000043,12.88,16.77,0.0,0.0249185528363007,0.004028764712521881,0.036146608260667595,0.0 -1043,1998-06-09,11.26,16.87,21.15,1.66,1.8375017569646608,1.663623749385551,0.03252285887511659,0.0 -1044,1998-06-10,9.37,12.13,15.17,23.01,25.180466330571274,23.013259643507926,0.029263215367192393,0.0 -1045,1998-06-11,5.910000000000025,8.410000000000025,11.34,11.16,12.220986361778454,11.162932278213514,0.026330937153677906,0.0 -1046,1998-06-12,3.5200000000000387,6.25,8.450000000000045,9.23,10.108784965229727,9.232637916441298,0.02369302071238067,0.0 -1047,1998-06-13,5.860000000000014,10.62,14.42,2.55,2.8028651611146733,2.5523732068894236,0.021319813822956835,0.0 -1048,1998-06-14,8.490000000000009,10.91,14.57000000000005,11.67,12.773692359008828,11.672135143126745,0.019184670696211697,0.0 -1049,1998-06-15,8.100000000000023,10.27,13.17,16.09,17.60543589556241,16.091921027238694,0.017263643457517283,0.0 -1050,1998-06-16,4.470000000000027,9.680000000000009,13.5,0.01,0.0215022051443281,0.011728437467774497,0.015535205989742788,0.0 -1051,1998-06-17,5.890000000000043,11.2,15.84,0.0,0.009500249424831,0.0015551993797273114,0.013980006610015475,0.0 -1052,1998-06-18,8.69,13.94,19.0,0.0,0.0085416183830631,0.0013993601468857972,0.012580646463129678,0.0 -1053,1998-06-19,12.95,17.82000000000005,22.69,0.0,0.0076804984665904,0.0012591655919262728,0.011321480871203405,0.0 -1054,1998-06-20,14.27,20.43,26.64,0.0,0.0069068219287427,0.0011330396796547118,0.010188441191548693,0.0 -1055,1998-06-21,17.09,21.67,27.65,0.0,0.0062115889177115,0.0010195661827263243,0.009168875008822368,0.0 -1056,1998-06-22,12.38,17.29,20.77,0.0,0.0055867488112137,0.000917472280266865,0.008251402728555504,0.0 -1057,1998-06-23,10.16,16.15,20.67,0.0,0.005025095746395,0.0008256138770257814,0.007425788851529723,0.0 -1058,1998-06-24,13.79,18.65,23.55,0.0,0.0045201764630479,0.0007429624556023588,0.006682826395927364,0.0 -1059,1998-06-25,14.81,17.7,22.15,0.51,0.561727893101022,0.5106685932959946,0.006014233099932792,0.0 -1060,1998-06-26,14.3,16.63,18.71,0.46,0.5066469799969828,0.4606016749156855,0.0054125581842473435,0.0 -1061,1998-06-27,15.41,18.75,24.2,3.6,3.939726349849365,3.6005414596000893,0.004871098584158194,0.0 -1062,1998-06-28,10.37,15.55,19.61,0.0,0.0029608046871482,0.000487274907754079,0.004383823676404115,0.0 -1063,1998-06-29,11.42,16.66,22.06,0.0,0.0026638873592672,0.00043851604753821497,0.003945307628865901,0.0 -1064,1998-06-30,11.59,16.61,21.9,0.02,0.0242659068143755,0.020394639036266374,0.003550668592599525,0.0 -1065,1998-07-01,13.68,18.95,25.09,15.13,16.546119889735692,15.13035515455535,0.0031955140372504015,0.0 -1066,1998-07-02,13.42,15.74,18.75,1.03,1.1281983987846258,1.0303196224336586,0.0028758916035918065,0.0 -1067,1998-07-03,10.5,13.68,16.97,12.57,13.746466414320828,12.570287646691764,0.0025882449118283493,0.0 -1068,1998-07-04,8.510000000000048,13.93,18.3,0.0,0.0015711801716503,0.0002588710895487027,0.0023293738222796468,0.0 -1069,1998-07-05,10.78,15.89,20.7,0.0,0.0014138264376203,0.0002329751253942229,0.0020963986968854237,0.0 -1070,1998-07-06,12.61,17.71,23.1,0.0,0.0012722529215775,0.0002096704405524175,0.001886728256333006,0.0 -1071,1998-07-07,8.230000000000018,13.54,18.02,1.2,1.3132900124565243,1.2001886975872305,0.001698030669102403,0.0 -1072,1998-07-08,8.580000000000041,12.08,15.34,0.0,0.0010302605930257,0.00016982312321910738,0.0015282075458832956,0.0 -1073,1998-07-09,9.920000000000016,15.11,18.56,0.12,0.1321416471110903,0.1201528369997721,0.0013753705461111924,0.0 -1074,1998-07-10,12.86,15.62,19.5,1.81,1.979986589683159,1.8101375502128991,0.0012378203332120566,0.0 -1075,1998-07-11,12.24,15.25,18.33,0.27,0.295983493876303,0.27012379269130793,0.0011140276419041519,0.0 -1076,1998-07-12,11.7,18.45,24.25,0.0,0.0006756999234514,0.00011141139699445923,0.0010026162449096926,0.0 -1077,1998-07-13,8.87,15.59,21.58,7.01,7.665722608938021,7.010100268616942,0.000902347627967862,0.0 -1078,1998-07-14,8.080000000000041,12.35,16.65,0.0,0.0005472423818039,9.024042659420396e-05,0.000812107201373658,0.0 -1079,1998-07-15,7.94,12.68,17.18,0.0,0.0004924895429561,8.121530774928412e-05,0.0007308918936243739,0.0 -1080,1998-07-16,10.98,15.95,18.68,0.08,0.0879195600506618,0.08007309290528145,0.0006577989883429305,0.0 -1081,1998-07-17,15.15,18.5,21.57000000000005,0.0,0.0003988769210287,6.578290869468233e-05,0.0005920160796482482,0.0 -1082,1998-07-18,14.04,19.43,23.93,0.0,0.0003589740337458,5.920404592695046e-05,0.0005328120337212977,0.0 -1083,1998-07-19,18.05,23.79,29.72,1.74,1.9029335164403431,1.7400532831781033,0.00047952885561791756,0.0 -1084,1998-07-20,19.7,24.9,30.85,0.0,0.0002907479228211,4.795448508093068e-05,0.0004315743705369869,0.0 -1085,1998-07-21,16.38,20.51,25.38,0.0,0.0002616650568964,4.3158732654597577e-05,0.0003884156378823893,0.0 -1086,1998-07-22,13.93,19.62,24.6,0.0,0.0002354920119264,3.884261321796605e-05,0.0003495730246644232,0.0 -1087,1998-07-23,16.58,22.08,28.39,0.0,0.0002119375141865,3.495815249941763e-05,0.0003146148721650056,0.0 -1088,1998-07-24,15.06,20.37,25.33,0.0,0.0001907394727612,3.146217573949002e-05,0.00028315269642551557,0.0 -1089,1998-07-25,14.11,19.55,25.47,0.0,0.0001716620507231,2.8315827343460772e-05,0.0002548368690820548,0.0 -1090,1998-07-26,16.08,22.29,28.67,11.75,12.848242316235831,11.750025484138645,0.00022935273043809005,0.0 -1091,1998-07-27,13.18,15.32000000000005,17.32000000000005,26.44,28.91107027936594,26.44002293563895,0.00020641709148975745,0.0 -1092,1998-07-28,13.92,15.37,17.66,3.35,3.663196982924011,3.3500206420055307,0.00018577508595916833,0.0 -1093,1998-07-29,13.82000000000005,17.14,20.61,0.58,0.6343161044548993,0.5800185777486642,0.00016719733729491068,0.0 -1094,1998-07-30,14.82000000000005,19.01,24.7,0.72,0.7873884407975523,0.7200167199281843,0.00015047740911062194,0.0 -1095,1998-07-31,13.57000000000005,17.06,20.78,0.07,0.076633020263207,0.07001504789841904,0.00013542951069158072,0.0 -1096,1998-08-01,11.98,13.55,14.99,14.47,15.822365570115249,14.47001354307865,0.0001218864320412564,0.0 -1097,1998-08-02,11.62,12.17,12.86,16.43,17.96552775404791,16.430012188746545,0.00010969768549660244,0.0 -1098,1998-08-03,10.84,13.75,16.72,0.02,0.0219355836312394,0.020010969852255332,9.872783324127197e-05,0.0 -1099,1998-08-04,11.21,17.85,22.28,0.01,0.0109943905831602,0.010009872851125605,8.885498211566685e-05,0.0 -1100,1998-08-05,9.5,17.41,23.8,0.0,5.386263731363912e-05,8.885553130679985e-06,7.996942898498688e-05,0.0 -1101,1998-08-06,9.420000000000016,16.59,25.02,0.0,4.847609648671118e-05,7.996987382919361e-06,7.197244160206752e-05,0.0 -1102,1998-08-07,10.14,17.69,26.08,0.0,4.362826239298679e-05,7.1972801925429556e-06,6.477516140952456e-05,0.0 -1103,1998-08-08,12.64,20.75,28.02,0.02,0.0219083509108734,0.02000647754532711,5.8297616082412246e-05,0.0 -1104,1998-08-09,17.37,23.38,30.67,0.01,0.0109698814099229,0.010005829785249007,5.246783083340521e-05,0.0 -1105,1998-08-10,14.85,22.64,31.39,0.0,3.180460422104165e-05,5.246802232343572e-06,4.722102860106164e-05,0.0 -1106,1998-08-11,15.57000000000005,23.68,32.04,0.0,2.862404718583728e-05,4.7221183707860555e-06,4.2498910230275585e-05,0.0 -1107,1998-08-12,12.76,22.83,32.02,37.07,40.5343760259213,37.07000424990359,3.824900664360649e-05,0.0 -1108,1998-08-13,11.57000000000005,16.97,23.74,0.04,0.0437613566574399,0.0400038249108409,3.4424095802702876e-05,0.0 -1109,1998-08-14,11.75,16.98,23.1,0.0,2.0866758619313377e-05,3.4424178232652147e-06,3.098167797943766e-05,0.0 -1110,1998-08-15,13.55,19.43,26.96,0.02,0.021887865697688,0.020003098174474765,2.7883503504671557e-05,0.0 -1111,1998-08-16,14.49,19.57000000000005,27.02,0.0,1.6902003366495408e-05,2.7883557586906593e-06,2.50951477459809e-05,0.0 -1112,1998-08-17,14.56,20.22,28.12,2.88,3.149163546314412,2.880002509519155,2.258562859072366e-05,0.0 -1113,1998-08-18,12.85,16.81,21.74,0.26,0.2843118041108095,0.2600022585664074,2.032706218331876e-05,0.0 -1114,1998-08-19,12.96,17.76,23.58,0.0,1.2321500559728723e-05,2.0327090924802257e-06,1.8294353090838534e-05,0.0 -1115,1998-08-20,13.4,17.56,23.0,0.0,1.1089336003197825e-05,1.8294376371432852e-06,1.6464915453695248e-05,0.0 -1116,1998-08-21,13.66,14.74,17.24,16.36,17.888922047422813,16.36000164649343,1.4818422022598116e-05,0.0 -1117,1998-08-22,13.6,15.02,15.76,24.6,26.89898433985987,24.60000148184373,1.3336578292899331e-05,0.0 -1118,1998-08-23,10.1,14.47,18.84,0.56,0.6123424824826829,0.5600013336590666,1.2002919226384114e-05,0.0 -1119,1998-08-24,9.720000000000027,11.92,14.5,28.07,30.69326899460766,28.070001200292925,1.080262630159343e-05,0.0 -1120,1998-08-25,8.090000000000032,12.94,18.75,0.0,6.548110459091965e-06,1.0802634419025343e-06,9.722362859690895e-06,0.0 -1121,1998-08-26,8.980000000000018,14.06,20.41,0.01,0.0109404361235771,0.01000097223694348,8.750125916209931e-06,0.0 -1122,1998-08-27,5.4500000000000455,10.69,15.34,0.0,5.303962468837576e-06,8.750131242055319e-07,7.8751127920044e-06,0.0 -1123,1998-08-28,5.220000000000027,9.760000000000048,15.94,0.0,4.773563535007849e-06,7.87511710593858e-07,7.087601081410541e-06,0.0 -1124,1998-08-29,4.710000000000036,9.610000000000014,16.35,0.0,4.296205005083078e-06,7.087604575696803e-07,6.378840623840861e-06,0.0 -1125,1998-08-30,4.920000000000016,11.41,18.77,0.0,3.866582741672979e-06,6.378843454212422e-07,5.740956278419619e-06,0.0 -1126,1998-08-31,7.760000000000048,15.71,23.51,0.0,3.479923039556425e-06,5.740958571020358e-07,5.166860421317583e-06,0.0 -1127,1998-09-01,13.24,17.95,23.64,0.0,3.1319295789627554e-06,5.166862278324016e-07,4.650174193485181e-06,0.0 -1128,1998-09-02,15.01,19.77,24.57000000000005,15.94,17.42966408698095,15.940000465017569,4.185156623719154e-06,0.0 -1129,1998-09-03,9.150000000000034,13.69,17.49,2.24,2.449340130391432,2.2400004185157845,3.7666408395090648e-06,0.0 -1130,1998-09-04,9.62,14.04,18.3,42.66,46.646761988528624,42.66000037666418,3.389976656869244e-06,0.0 -1131,1998-09-05,10.96,12.95,15.58,7.26,7.938480148172873,7.260000338997745,3.0509789112443037e-06,0.0 -1132,1998-09-06,9.660000000000023,13.0,17.55,0.12,0.131216363309691,0.12000030509795587,2.745880955370084e-06,0.0 -1133,1998-09-07,10.56,14.66,20.63,0.39,0.4264488347353065,0.390000274588148,2.4712928073857483e-06,0.0 -1134,1998-09-08,12.43,15.18,19.35,0.0,1.4979896111091495e-06,2.4712932322090794e-07,2.2241634841648406e-06,0.0 -1135,1998-09-09,12.23,18.59,24.47,0.07,0.0765431479882505,0.07000022241638283,2.001747101337668e-06,0.0 -1136,1998-09-10,11.17,15.7,21.0,41.37,45.23620489387979,41.37000020017474,1.8015723633312444e-06,0.0 -1137,1998-09-11,7.740000000000009,11.18,14.84,20.47,22.383010261480667,20.470000180157257,1.6214151044212687e-06,0.0 -1138,1998-09-12,5.300000000000011,7.0400000000000205,8.510000000000048,21.85,23.891977062576935,21.85000016214153,1.4592735756918928e-06,0.0 -1139,1998-09-13,4.12,5.680000000000007,7.610000000000014,19.82,21.67226477015717,19.820000145927374,1.3133462033100323e-06,0.0 -1140,1998-09-14,5.730000000000018,7.38,9.110000000000014,7.03,7.686984404358766,7.030000131334632,1.1820115709807656e-06,0.0 -1141,1998-09-15,6.850000000000023,8.670000000000016,9.850000000000025,13.11,14.335186364331086,13.110000118201166,1.0638104041640958e-06,0.0 -1142,1998-09-16,9.460000000000036,11.53,14.73,0.55,0.6014005003890842,0.5500001063810483,9.574293558756258e-07,0.0 -1143,1998-09-17,5.730000000000018,9.0,11.94,1.08,1.180931205803303,1.080000095742942,8.616864139116945e-07,0.0 -1144,1998-09-18,3.980000000000018,9.33000000000004,17.04,0.0,5.223161400664607e-07,8.61686465560281e-08,7.755177673556664e-07,0.0 -1145,1998-09-19,3.19,9.650000000000034,17.48,0.0,4.7008450000276107e-07,7.75517809191021e-08,6.979659864365643e-07,0.0 -1146,1998-09-20,3.1100000000000136,9.700000000000044,17.42,0.0,4.230760288962737e-07,6.97966020323201e-08,6.281693844042441e-07,0.0 -1147,1998-09-21,5.4500000000000455,10.13,17.22,0.0,3.8076840891061673e-07,6.281694118524196e-08,5.653524432190022e-07,0.0 -1148,1998-09-22,5.640000000000043,10.7,17.2,0.02,0.0218694283480727,0.020000056535246547,5.088171966737997e-07,0.0 -1149,1998-09-23,5.760000000000048,10.34,17.05,0.09,0.0984111938767209,0.09000005088172147,4.5793547520554497e-07,0.0 -1150,1998-09-24,6.78000000000003,11.22,17.78,0.19,0.2077565913170657,0.19000004579354898,4.121419262262819e-07,0.0 -1151,1998-09-25,7.010000000000048,13.75,18.99,0.17,0.1858874779025258,0.17000004121419382,3.7092773242209984e-07,0.0 -1152,1998-09-26,10.38,12.07000000000005,13.48,16.67,18.227883119548096,16.670000037092777,3.338349582228312e-07,0.0 -1153,1998-09-27,9.340000000000032,11.52,15.13,4.57,4.997086274870389,4.570000033383497,3.0045146162533057e-07,0.0 -1154,1998-09-28,9.37,10.92,11.63,22.08,24.14347074691676,22.080000030045145,2.704063148348713e-07,0.0 -1155,1998-09-29,10.62,12.89,16.71,11.69,12.782480730143355,11.690000027040632,2.43365682842764e-07,0.0 -1156,1998-09-30,6.88,9.04000000000002,11.24,16.84,18.41377027030605,16.840000024336568,2.1902911414650524e-07,0.0 -1157,1998-10-01,6.900000000000034,9.550000000000011,14.19,4.86,5.314187947299702,4.860000021902912,1.97126202398149e-07,0.0 -1158,1998-10-02,8.100000000000023,9.29000000000002,11.72,8.66,9.469314208761652,8.660000019712621,1.7741358188803248e-07,0.0 -1159,1998-10-03,6.160000000000025,7.28000000000003,8.590000000000032,2.39,2.613355843494178,2.3900000177413587,1.596722234802849e-07,0.0 -1160,1998-10-04,6.430000000000007,7.650000000000034,9.230000000000018,7.37,8.058758161213268,7.370000015967222,1.4370500095491152e-07,0.0 -1161,1998-10-05,4.900000000000034,9.27000000000004,13.73,2.0,2.186908652759424,2.0000000143705003,1.29334500715771e-07,0.0 -1162,1998-10-06,7.210000000000036,8.730000000000018,10.71,12.72,13.908738555942598,12.72000001293345,1.1640105052783792e-07,0.0 -1163,1998-10-07,6.0,7.100000000000023,8.31,2.44,2.668028520652392,2.4400000116401053,1.0476094538080578e-07,0.0 -1164,1998-10-08,4.590000000000032,6.82000000000005,10.35,0.04,0.043738234814455,0.04000001047609462,9.428485076638404e-08,0.0 -1165,1998-10-09,3.8000000000000114,9.03000000000003,14.58,2.98,3.258493819972536,2.980000009428485,8.48563656279093e-08,0.0 -1166,1998-10-10,7.720000000000027,9.090000000000032,11.25,4.65,5.084562466576706,4.6500000084856365,7.637072901503093e-08,0.0 -1167,1998-10-11,7.700000000000045,8.720000000000027,10.77,7.03,7.686983654558795,7.0300000076370734,6.873365607295701e-08,0.0 -1168,1998-10-12,1.7000000000000457,6.740000000000009,10.63,2.2,2.3405836310283887,2.2000000068733656,6.186029043279894e-08,0.0 -1169,1998-10-13,1.2800000000000296,6.420000000000016,10.97,0.03,0.0379529945451211,0.03000000618602907,5.5674261362900526e-08,0.0 -1170,1998-10-14,6.360000000000014,10.31,13.62,0.85,0.9354530570092168,0.8500000055674262,5.0106835205049475e-08,0.0 -1171,1998-10-15,6.75,10.61,15.79,0.0,0.0054094507117248,5.010683537969356e-09,4.509615166708012e-08,0.0 -1172,1998-10-16,6.5400000000000205,12.32000000000005,18.19,0.0,0.0048638367007436,4.5096151808541835e-09,4.058653648622593e-08,0.0 -1173,1998-10-17,7.100000000000023,12.48,17.23,19.05,20.83467776498005,19.050000004058653,3.652788282614494e-08,0.0 -1174,1998-10-18,3.230000000000018,7.140000000000043,11.23,0.02,0.0258023409548717,0.02000000365278829,3.287509453424914e-08,0.0 -1175,1998-10-19,0.5600000000000023,4.420000000000016,10.02,0.05,0.053262815199262,0.05000000328750946,2.9587585073306374e-08,0.0 -1176,1998-10-20,0.3400000000000318,3.920000000000016,10.24,0.03,0.0331023741955734,0.03000000295875851,2.6628826559886274e-08,0.0 -1177,1998-10-21,1.6000000000000227,7.740000000000009,14.27,0.0,0.0036475628144672,2.6628826609210926e-09,2.3965943898965182e-08,0.0 -1178,1998-10-22,4.460000000000036,9.27000000000004,14.73,0.0,0.0032810008201971,2.3965943938918147e-09,2.1569349505073367e-08,0.0 -1179,1998-10-23,7.590000000000032,11.03,13.66,17.17,18.777561475615126,17.170000002156936,1.941241455132984e-08,0.0 -1180,1998-10-24,8.87,10.74,12.79,26.0,28.43246646641789,26.000000001941242,1.747117309357554e-08,0.0 -1181,1998-10-25,3.830000000000041,7.220000000000027,10.29,10.02,10.958800558391864,10.020000001747118,1.5724055782094723e-08,0.0 -1182,1998-10-26,3.94,5.38,6.990000000000009,9.8,10.718000976946156,9.800000001572407,1.4151650202165406e-08,0.0 -1183,1998-10-27,4.210000000000036,7.88,10.43,1.63,1.7842639585531757,1.630000001415165,1.2736485180555791e-08,0.0 -1184,1998-10-28,7.220000000000027,11.36,13.09,0.64,0.7015503630683442,0.6400000012736485,1.1462836661371822e-08,0.0 -1185,1998-10-29,4.32000000000005,6.050000000000011,12.5,32.2,35.21079315579166,32.200000001146286,1.0316552994320645e-08,0.0 -1186,1998-10-30,3.9500000000000455,4.460000000000036,4.960000000000036,19.37,21.18161784944956,19.370000001031656,9.284897694148244e-09,0.0 -1187,1998-10-31,3.990000000000009,6.350000000000023,7.32000000000005,12.91,14.117762073819778,12.91000000092849,8.356407924133747e-09,0.0 -1188,1998-11-01,1.9700000000000275,6.420000000000016,8.960000000000036,16.39,17.528636750350454,16.39000000083564,7.520767131234638e-09,0.0 -1189,1998-11-02,1.2800000000000296,8.19,10.67,10.59,11.121368142403508,10.590000000752077,6.768690417717729e-09,0.0 -1190,1998-11-03,4.300000000000011,7.480000000000018,9.240000000000007,37.9,41.53411730836058,37.90000000067687,6.091821375627266e-09,0.0 -1191,1998-11-04,1.6000000000000227,3.170000000000016,5.240000000000009,8.24,8.305213510468025,8.240000000609182,5.4826392378064e-09,0.0 -1192,1998-11-05,-3.339999999999975,0.9500000000000456,6.12,0.18,0.0997916087024485,0.12283147734905658,0.057168528133582634,0.0 -1193,1998-11-06,-3.569999999999993,1.0300000000000296,7.06,0.01,0.0087176998866223,0.01271975861015543,0.054448769523427205,0.0 -1194,1998-11-07,-1.8899999999999864,2.31,8.450000000000045,0.0,0.0332568134247824,0.005465499204289918,0.04898327031913729,0.0 -1195,1998-11-08,-1.7999999999999543,3.1000000000000227,11.32000000000005,0.0,0.0584825960912349,0.004915016999878574,0.04406825331925871,0.0 -1196,1998-11-09,2.3500000000000227,9.850000000000025,14.64,13.32,14.63808565762976,13.324420333971787,0.039647919347472305,0.0 -1197,1998-11-10,1.5500000000000114,6.480000000000018,10.07000000000005,22.64,24.073602499440742,22.643975726480637,0.035672192866834464,0.0 -1198,1998-11-11,-1.3599999999999568,1.5200000000000389,6.25,0.02,0.0178097753054577,0.02036111352966543,0.03531107933716904,0.0 -1199,1998-11-12,-1.4899999999999525,1.38,4.06,3.8,2.005651565092465,2.8931183663498827,0.9421927129872864,0.0 -1200,1998-11-13,0.9700000000000272,1.9500000000000453,3.4700000000000277,3.48,2.9269647074678518,3.580394306407633,0.8417984065796532,0.0 -1201,1998-11-14,0.6200000000000045,2.12,3.960000000000037,12.58,10.200703891036676,12.669109037343576,0.7526893692360774,0.0 -1202,1998-11-15,0.0300000000000295,0.9900000000000092,1.3900000000000432,16.96,4.384475584802444,17.039209801522684,0.6734795677133943,0.0 -1203,1998-11-16,-4.109999999999957,-0.42999999999995,2.010000000000048,8.09,1.0109660005299246,2.65700980392163,6.106469763791764,-0.3224999999999625 -1204,1998-11-17,-8.899999999999977,-4.229999999999961,1.5300000000000296,0.0,0.0,0.0,6.106469763791764,-3.2531249999999616 -1205,1998-11-18,-11.64,-7.06,-0.839999999999975,0.0,0.0,0.0,6.106469763791764,-6.10828124999999 -1206,1998-11-19,-10.33,-4.339999999999975,2.0,0.19,0.0116530440072375,0.03081914030819141,6.265650623483572,-4.782070312499979 -1207,1998-11-20,-11.0,-5.529999999999973,0.8400000000000318,0.0,0.0,0.0,6.265650623483572,-5.343017578124974 -1208,1998-11-21,-11.65,-6.669999999999959,-0.7799999999999727,0.0,0.0,0.0,6.265650623483572,-6.338254394531213 -1209,1998-11-22,-12.41,-8.239999999999952,-0.8100000000000023,0.0,0.0,0.0,6.265650623483572,-7.764563598632767 -1210,1998-11-23,-12.4,-6.839999999999975,0.9900000000000092,0.0,0.0,0.0,6.265650623483572,-7.0711408996581735 -1211,1998-11-24,-9.91999999999996,-4.839999999999975,0.0800000000000409,0.0,0.0,0.0,6.265650623483572,-5.397785224914525 -1212,1998-11-25,-10.14,-2.17999999999995,1.3000000000000114,8.08,0.2084921707147118,0.9181818181818251,13.427468805301746,-2.9844463062285937 -1213,1998-11-26,-1.4699999999999704,-0.2599999999999909,1.3500000000000227,11.15,1.2641653698391095,5.337765957446911,19.239702847854836,-0.9411115765571416 -1214,1998-11-27,-4.17999999999995,-1.4699999999999704,0.5200000000000387,4.9,0.0346366643993523,0.5421276595745095,23.597575188280327,-1.3377778941392633 -1215,1998-11-28,-4.44,-1.87,1.8900000000000432,6.59,0.6892098508044159,1.9676303317535861,28.21994485652674,-1.7369444735348158 -1216,1998-11-29,-0.5999999999999659,0.07000000000005,0.6899999999999977,7.92,0.4173607413991488,4.236279069767547,31.903665786759195,-0.38173611838366645 -1217,1998-11-30,-5.12,-1.44,0.5,0.0,0.0,0.0,31.903665786759195,-1.1754340295959167 -1218,1998-12-01,-5.62,-2.099999999999966,0.8400000000000318,0.0,0.0,0.0,31.903665786759195,-1.8688585073989537 -1219,1998-12-02,-5.199999999999989,-2.1499999999999773,1.3900000000000432,0.0,0.0,0.0,31.903665786759195,-2.0797146268497215 -1220,1998-12-03,-7.579999999999984,-4.029999999999973,2.1000000000000227,0.0,0.0,0.0,31.903665786759195,-3.54242865671241 -1221,1998-12-04,-7.729999999999961,-3.6999999999999886,-2.56,3.02,0.0,0.0,34.923665786759194,-3.660607164178094 -1222,1998-12-05,-3.7199999999999696,-3.109999999999957,-2.25,14.3,0.0,0.0,49.2236657867592,-3.247651791044491 -1223,1998-12-06,-9.739999999999952,-4.789999999999964,0.2200000000000272,0.14,0.0,0.0030923694779120547,49.36057341728129,-4.404412947761095 -1224,1998-12-07,-11.38,-6.729999999999961,-1.0399999999999636,0.19,0.0,0.0,49.550573417281285,-6.148603236940245 -1225,1998-12-08,-11.88,-7.009999999999991,-2.909999999999968,0.0,0.0,0.0,49.550573417281285,-6.794650809235055 -1226,1998-12-09,-5.889999999999986,-1.6999999999999886,0.2900000000000204,2.43,0.0,0.1140291262136004,51.86654429106768,-2.973662702308755 -1227,1998-12-10,-2.6999999999999886,1.56,3.3500000000000227,22.7,8.17467606734764,15.668960253016461,58.89758403805122,0.0 -1228,1998-12-11,0.2200000000000272,1.740000000000009,3.25,3.91,3.5634661898975324,7.22687132761655,55.580712710434675,0.0 -1229,1998-12-12,0.2000000000000454,3.4700000000000277,6.090000000000032,20.39,21.375999663789173,26.705254078736807,49.26545863169787,0.0 -1230,1998-12-13,-1.079999999999984,3.640000000000043,9.04000000000002,0.0,4.04658055246769,6.026615839026353,43.23884279267151,0.0 -1231,1998-12-14,-1.8999999999999773,0.920000000000016,6.5400000000000205,0.0,0.222604910362005,1.378968214131879,41.85987457853963,0.0 -1232,1998-12-15,-1.909999999999968,0.4500000000000455,5.640000000000043,0.01,0.0359351426407691,0.6658516139390894,41.20402296460055,0.0 -1233,1998-12-16,-0.8299999999999841,2.330000000000041,7.57000000000005,0.0,1.707825041255487,3.3690441951836396,37.83497876941691,0.0 -1234,1998-12-17,-0.2699999999999818,2.420000000000016,8.010000000000048,0.0,1.7844036463608346,3.287072621559593,34.54790614785731,0.0 -1235,1998-12-18,-0.3700000000000045,3.340000000000032,9.220000000000027,2.6,5.47721913299069,6.759487909509373,30.38841823834794,0.0 -1236,1998-12-19,-0.2399999999999522,1.740000000000009,4.760000000000048,1.86,2.1670819040682394,3.8011110636518275,28.44730717469611,0.0 -1237,1998-12-20,-1.0499999999999543,-0.0699999999999931,0.4200000000000159,7.16,0.0622386521837614,2.0457142857144053,33.56159288898171,-0.05249999999999482 -1238,1998-12-21,-7.769999999999982,-3.63,-0.5299999999999727,0.01,0.0,0.0,33.571592888981705,-2.735624999999999 -1239,1998-12-22,-8.509999999999991,-5.37,-1.079999999999984,0.0,0.0,0.0,33.571592888981705,-4.71140625 -1240,1998-12-23,-8.949999999999989,-1.17999999999995,0.9600000000000364,0.87,0.0135366094685632,0.08427850655903424,34.35731438242267,-2.0628515624999624 -1241,1998-12-24,-7.88,-2.109999999999957,0.7800000000000296,8.84,0.0881750187209907,0.7962124711316676,42.40110191129101,-2.098212890624958 -1242,1998-12-25,-8.46999999999997,-1.9699999999999704,-0.1999999999999886,0.0,0.0,0.0,42.40110191129101,-2.002053222656217 -1243,1998-12-26,0.1100000000000136,3.150000000000034,4.420000000000016,0.03,2.5986125977362358,4.682815472957832,37.748286438333174,0.0 -1244,1998-12-27,3.930000000000007,5.390000000000043,7.79000000000002,0.0,7.249135718496439,7.309050914093992,30.439235524239184,0.0 -1245,1998-12-28,1.37,6.07000000000005,9.400000000000034,0.01,7.967732276659495,7.086957098911305,23.36227842532788,0.0 -1246,1998-12-29,-0.839999999999975,2.760000000000048,7.420000000000016,0.0,2.006524574807828,2.7097141206814066,20.65256430464647,0.0 -1247,1998-12-30,-1.5,1.420000000000016,6.680000000000007,0.0,0.4614364147763328,1.294026137593847,19.358538167052625,0.0 -1248,1998-12-31,1.2600000000000475,3.5400000000000205,7.020000000000039,0.0,3.152426254188992,3.1067794866814085,16.251758680371218,0.0 -1249,1999-01-01,-0.6099999999999568,2.260000000000048,7.090000000000032,0.0,1.2497846102854562,1.800761262173075,14.450997418198142,0.0 -1250,1999-01-02,-0.0199999999999818,3.3600000000000136,5.670000000000016,14.75,14.6732408213914,17.222516482035907,11.978480936162237,0.0 -1251,1999-01-03,2.140000000000043,4.020000000000039,5.010000000000048,6.34,10.285808338637835,8.535923699704218,9.782557236458018,0.0 -1252,1999-01-04,2.330000000000041,6.140000000000043,9.81,0.78,7.458688554195761,2.4239345514558766,8.138622685002142,0.0 -1253,1999-01-05,1.7600000000000475,5.38,11.1,0.0,5.115850427598321,1.2746084857286168,6.864014199273525,0.0 -1254,1999-01-06,0.8700000000000045,5.63,12.46,0.0,4.973406464104584,1.014131493583448,5.849882705690077,0.0 -1255,1999-01-07,1.2900000000000205,6.81,10.04,7.03,13.19529516494299,7.853030640605402,5.026852065084675,0.0 -1256,1999-01-08,0.75,3.140000000000043,5.03000000000003,22.9,22.077139558205182,23.578458203748276,4.348393861336399,0.0 -1257,1999-01-09,-2.38,-0.3799999999999954,0.7700000000000387,6.36,0.1702766075275182,1.5546666666667264,9.153727194669674,-0.28499999999999653 -1258,1999-01-10,-1.089999999999975,-0.3499999999999659,0.2400000000000091,1.68,0.0,0.30315789473685717,10.530569299932816,-0.33374999999997357 -1259,1999-01-11,-4.17999999999995,-2.4599999999999795,-0.839999999999975,14.32,0.0,0.0,24.850569299932815,-1.928437499999978 -1260,1999-01-12,-4.5499999999999545,-3.81,-2.759999999999991,9.48,0.0,0.0,34.33056929993282,-3.3396093749999944 -1261,1999-01-13,-2.919999999999959,-1.2199999999999704,0.0,6.7,0.0,0.0,41.03056929993282,-1.7499023437499766 -1262,1999-01-14,-2.5499999999999545,-0.079999999999984,0.7400000000000091,4.0,0.0950779933276489,0.8996960486322401,44.130873251300585,-0.49747558593748215 -1263,1999-01-15,-3.089999999999975,1.160000000000025,2.75,0.0,0.2369066708093884,1.7656186911473493,42.36525456015323,0.0 -1264,1999-01-16,1.740000000000009,5.020000000000039,7.270000000000039,0.0,6.335101542717586,7.4102814923836,34.95497306776963,0.0 -1265,1999-01-17,1.88,4.2900000000000205,7.730000000000018,28.0,34.32520042458874,33.50565640493801,29.44931666283162,0.0 -1266,1999-01-18,0.0200000000000386,2.180000000000007,4.400000000000034,0.61,1.6650159709952232,3.0954999539796875,26.963816708851933,0.0 -1267,1999-01-19,-2.7299999999999613,-0.0499999999999545,3.57000000000005,0.0,0.0,0.0,26.963816708851933,-0.03749999999996587 -1268,1999-01-20,-2.3899999999999864,0.2700000000000386,5.770000000000039,0.01,0.0057570893145668,0.2974702156174026,26.676346493234533,0.0 -1269,1999-01-21,-4.279999999999973,-0.8799999999999955,4.760000000000048,0.0,0.0,0.0,26.676346493234533,-0.6599999999999966 -1270,1999-01-22,-4.589999999999975,-1.169999999999959,5.37,0.0,0.0,0.0,26.676346493234533,-1.0424999999999685 -1271,1999-01-23,-5.0,-1.7099999999999795,5.0,0.0,0.0,0.0,26.676346493234533,-1.5431249999999768 -1272,1999-01-24,-5.13,-1.1399999999999864,4.050000000000011,0.0,0.0,0.0,26.676346493234533,-1.240781249999984 -1273,1999-01-25,-2.6399999999999864,3.9700000000000273,5.62,0.01,3.377260782942796,4.2470840179712575,22.439262475263277,0.0 -1274,1999-01-26,-0.1299999999999954,2.650000000000034,5.640000000000043,32.07,27.107518400132182,33.93535012825121,20.57391234701207,0.0 -1275,1999-01-27,-1.06,-0.3199999999999932,0.2000000000000454,12.46,0.0,1.9777777777781562,31.05613456923391,-0.23999999999999488 -1276,1999-01-28,-1.1599999999999682,1.0500000000000114,3.13,43.55,18.61759559648719,33.33694848276155,41.26918608647236,0.0 -1277,1999-01-29,-7.96999999999997,-3.019999999999982,1.080000000000041,0.91,0.0205084066039803,0.1085966850828769,42.07058940138948,-2.2649999999999864 -1278,1999-01-30,-7.949999999999989,-6.739999999999952,-4.359999999999957,0.0,0.0,0.0,42.07058940138948,-5.621249999999961 -1279,1999-01-31,-8.699999999999989,-7.039999999999964,-4.12,0.0,0.0,0.0,42.07058940138948,-6.685312499999963 -1280,1999-02-01,-7.9599999999999795,-4.079999999999984,0.9000000000000341,0.0,0.0,0.0,42.07058940138948,-4.731328124999979 -1281,1999-02-02,-6.899999999999977,-2.109999999999957,1.410000000000025,0.0,0.0,0.0,42.07058940138948,-2.7653320312499625 -1282,1999-02-03,-4.7999999999999545,0.07000000000005,3.480000000000018,0.0,0.0,0.0,42.07058940138948,-0.6388330078124531 -1283,1999-02-04,-1.0,1.6000000000000227,3.3500000000000227,8.79,4.895900330173063,9.202998372485958,41.657591028903525,0.0 -1284,1999-02-05,0.4500000000000455,1.4300000000000068,2.7100000000000364,12.59,8.155380779936037,14.674570341630057,39.57302068727347,0.0 -1285,1999-02-06,-0.3499999999999659,0.2400000000000091,0.910000000000025,34.89,3.695507944455943,25.59568780378844,48.867332883485034,0.0 -1286,1999-02-07,-5.849999999999966,-2.37,-0.169999999999959,16.04,0.0,0.0,64.90733288348503,-1.7775 -1287,1999-02-08,-6.069999999999993,-3.039999999999964,0.3100000000000023,30.77,0.0,1.4950940438871605,94.18223883959786,-2.724374999999973 -1288,1999-02-09,-6.159999999999968,-2.13,0.5,13.53,0.0591865337103189,1.0157657657657708,106.69647307383208,-2.278593749999993 -1289,1999-02-10,-9.38,-6.62,-3.359999999999957,3.55,0.0,0.0,110.24647307383208,-5.534648437499998 -1290,1999-02-11,-11.91,-7.199999999999989,-3.089999999999975,2.11,0.0,0.0,112.35647307383208,-6.7836621093749905 -1291,1999-02-12,-12.14,-9.06,-3.979999999999961,0.08,0.0,0.0,112.43647307383208,-8.490915527343748 -1292,1999-02-13,-12.06,-9.109999999999957,-4.7999999999999545,0.0,0.0,0.0,112.43647307383208,-8.955228881835904 -1293,1999-02-14,-12.08,-6.0,-4.079999999999984,0.0,0.0,0.0,112.43647307383208,-6.738807220458976 -1294,1999-02-15,-6.45999999999998,-3.4799999999999613,0.4800000000000182,0.0,0.0,0.0,112.43647307383208,-4.294701805114715 -1295,1999-02-16,-1.2899999999999636,-0.1299999999999954,0.32000000000005,8.23,0.0,1.6357763975157695,119.03069667631631,-1.1711754512786754 -1296,1999-02-17,-0.9699999999999704,-0.67999999999995,-0.3100000000000023,19.82,0.0,0.0,138.85069667631632,-0.8027938628196314 -1297,1999-02-18,-0.9399999999999976,1.0500000000000114,1.7800000000000296,34.59,8.038741209099376,26.563102941176666,146.87759373513964,0.0 -1298,1999-02-19,1.3500000000000227,3.150000000000034,3.81,43.43,45.59872290313417,55.211000000000126,135.09659373513952,0.0 -1299,1999-02-20,3.4700000000000277,4.080000000000041,4.410000000000025,44.76,58.854013699288615,60.019200000000154,119.83739373513937,0.0 -1300,1999-02-21,2.8500000000000227,4.580000000000041,5.32000000000005,34.96,50.00816172759454,50.95164352563591,103.84575020950346,0.0 -1301,1999-02-22,-1.9499999999999889,-0.589999999999975,2.3500000000000227,17.0,4.1747211679416125,9.29069767441867,111.5550525350848,-0.44249999999998124 -1302,1999-02-23,-4.389999999999986,-2.009999999999991,-0.0699999999999931,2.56,0.0,0.0,114.1150525350848,-1.6181249999999885 -1303,1999-02-24,-3.4899999999999523,-0.0299999999999727,1.06,6.97,0.2997301762178729,1.6237802197802367,119.46127231530457,-0.42703124999997666 -1304,1999-02-25,-3.2199999999999704,0.1700000000000159,3.7800000000000296,0.01,0.0036025869398042,0.5973331868027508,118.87393912850182,0.0 -1305,1999-02-26,-3.38,2.4600000000000364,6.7000000000000455,0.0,3.648370000000082,8.527738846579233,110.34620028192259,0.0 -1306,1999-02-27,1.660000000000025,4.920000000000016,8.520000000000039,1.52,14.645542683128353,17.48396058751381,94.38223969440878,0.0 -1307,1999-02-28,-2.089999999999975,2.1000000000000227,4.770000000000039,0.12,2.9634711872291084,6.027172582117464,88.47506711229131,0.0 -1308,1999-03-01,-2.569999999999993,3.640000000000043,7.760000000000048,6.43,12.294837678848388,14.721388245713324,80.18367886657799,0.0 -1309,1999-03-02,3.82000000000005,5.460000000000036,7.38,2.0,16.627672546413088,15.431684583138903,66.75199428343909,0.0 -1310,1999-03-03,0.2600000000000477,4.770000000000039,7.69,32.53,41.32240741784069,42.59748570245219,56.6845085809869,0.0 -1311,1999-03-04,0.0,0.4700000000000273,0.910000000000025,11.19,1.6999576372485237,12.058876642690072,55.81563193829683,0.0 -1312,1999-03-05,-1.12,0.1200000000000045,1.1400000000000432,9.22,0.9335837839550882,4.884189190998996,60.151442747297835,0.0 -1313,1999-03-06,-2.5499999999999545,-0.9599999999999796,1.2100000000000364,5.35,0.366914123182324,1.7216755319149497,63.77976721538288,-0.7199999999999848 -1314,1999-03-07,-4.769999999999982,-2.31,0.2400000000000091,4.74,0.0,0.22706586826348207,68.2927013471194,-1.912499999999996 -1315,1999-03-08,-3.329999999999984,2.670000000000016,5.090000000000032,3.94,5.617764179315741,8.232296118611865,64.00040522850753,0.0 -1316,1999-03-09,5.13,7.890000000000043,10.73,0.02,22.810169452449276,16.107711126748566,47.912694101758966,0.0 -1317,1999-03-10,3.82000000000005,7.460000000000036,11.23,0.15,20.229029697548462,12.238712892571565,35.8239812091874,0.0 -1318,1999-03-11,3.660000000000025,7.520000000000039,11.86,0.0,19.22812055098692,9.820950349433478,26.003030859753924,0.0 -1319,1999-03-12,3.5,7.960000000000036,15.16,0.0,19.35348336466221,7.303659517705654,18.69937134204827,0.0 -1320,1999-03-13,3.300000000000012,7.950000000000045,15.36,0.0,18.012313560228392,4.3022193333068985,14.397152008741372,0.0 -1321,1999-03-14,3.8000000000000114,8.79000000000002,15.45,0.0,19.143686543249075,2.8815421187443233,11.515609889997048,0.0 -1322,1999-03-15,2.7200000000000277,8.200000000000045,17.16,0.0,15.943206738708708,2.073991877155312,9.441618012841737,0.0 -1323,1999-03-16,1.82000000000005,6.800000000000011,13.48,0.0,11.419775928954294,1.5642490500748005,7.877368962766936,0.0 -1324,1999-03-17,0.6100000000000136,4.840000000000032,11.1,0.0,6.559849869098397,1.2193775327362444,6.657991430030692,0.0 -1325,1999-03-18,-1.839999999999975,3.63,8.980000000000018,0.0,3.752367372295464,0.9741508895801768,5.6838405404505155,0.0 -1326,1999-03-19,-1.1599999999999682,1.7000000000000457,4.470000000000027,0.01,0.5251686331616965,0.8014136860776908,4.892426854372824,0.0 -1327,1999-03-20,-2.759999999999991,1.0900000000000318,7.170000000000016,0.0,0.1509762733213502,0.5463938346767027,4.346033019696121,0.0 -1328,1999-03-21,-3.0299999999999727,3.5200000000000387,10.04,23.37,20.36283431720637,19.591689751167507,8.124343268528616,0.0 -1329,1999-03-22,-0.0899999999999749,1.400000000000034,2.180000000000007,15.04,6.370341443095738,15.284920619698108,7.879422648830508,0.0 -1330,1999-03-23,-0.5499999999999545,2.13,3.730000000000018,0.61,1.454892181297092,1.767894439287349,6.721528209543159,0.0 -1331,1999-03-24,-1.0,6.510000000000048,11.27,0.0,9.918030699831773,0.9864178097430684,5.7351103998000905,0.0 -1332,1999-03-25,5.480000000000018,8.470000000000027,12.55,5.26,18.94367487316272,6.06230445140725,4.93280594839284,0.0 -1333,1999-03-26,1.840000000000032,5.5,11.13,23.67,32.08191141232204,24.33253812967852,4.270267818714321,0.0 -1334,1999-03-27,0.160000000000025,0.8799999999999955,1.87,15.1,5.800277706257056,15.526881833261626,3.8433859854526937,0.0 -1335,1999-03-28,-0.7899999999999636,1.2300000000000182,2.7800000000000296,0.28,0.3011605319501728,0.7146650419318593,3.4087209435208345,0.0 -1336,1999-03-29,-1.37,2.9600000000000364,7.94,0.0,1.9387448925072464,0.4216965609267609,2.9870243825940737,0.0 -1337,1999-03-30,-1.5299999999999727,5.07000000000005,13.42,0.0,5.926642433654932,0.36076611274914694,2.626258269844927,0.0 -1338,1999-03-31,-2.079999999999984,6.07000000000005,15.12,0.0,7.500441243819941,0.3106030177653361,2.3156552520795906,0.0 -1339,1999-04-01,1.400000000000034,8.680000000000007,16.07000000000005,0.0,11.594922844239672,0.26886543279952535,2.046789819280065,0.0 -1340,1999-04-02,2.69,7.44,12.21,5.77,14.9975877077493,6.00382011575514,1.812969703524925,0.0 -1341,1999-04-03,2.94,8.400000000000034,11.88,2.6,12.206063577016147,2.8041603823534937,1.6088093211714314,0.0 -1342,1999-04-04,3.790000000000021,8.360000000000014,13.07000000000005,0.0,8.578637694446478,0.17888493595097343,1.429924385220458,0.0 -1343,1999-04-05,3.230000000000018,8.900000000000034,16.51,0.0,8.605144290327377,0.15721527097532606,1.272709114245132,0.0 -1344,1999-04-06,4.88,12.52,20.26,22.23,36.39367225867196,22.36853816990613,1.1341709443389996,0.0 -1345,1999-04-07,3.410000000000025,4.88,8.090000000000032,19.47,24.24894395554563,19.592364909168538,1.0118060351704592,0.0 -1346,1999-04-08,3.69,5.340000000000032,7.670000000000016,0.3,3.618509069323233,0.4083018247842732,0.903504210386186,0.0 -1347,1999-04-09,3.19,6.760000000000048,12.14,0.0,4.517201018292939,0.09602874688521923,0.8074754635009668,0.0 -1348,1999-04-10,2.57000000000005,8.510000000000048,13.88,7.21,13.557721923195793,7.2952829779119215,0.7221924855890456,0.0 -1349,1999-04-11,0.3799999999999954,3.5300000000000296,6.300000000000011,5.7,6.317439168047028,5.775847236874246,0.6463452487147998,0.0 -1350,1999-04-12,1.2700000000000389,3.010000000000048,4.56,28.33,27.399102945019383,28.397540481113612,0.5788047676011875,0.0 -1351,1999-04-13,0.2100000000000363,2.1000000000000227,4.94,13.12,10.83196977460722,13.180210842831212,0.5185939247699753,0.0 -1352,1999-04-14,-1.1599999999999682,4.010000000000048,8.180000000000007,17.81,16.02431982050312,15.922968669744229,2.405625255025747,0.0 -1353,1999-04-15,-1.5699999999999932,-0.8100000000000023,-0.1599999999999681,0.77,0.0,0.0,3.175625255025747,-0.6075000000000017 -1354,1999-04-16,-1.5199999999999818,0.9600000000000364,3.7800000000000296,0.06,0.0859504459981507,0.4329865195460434,2.8026387354797038,0.0 -1355,1999-04-17,-0.5799999999999841,2.94,7.2000000000000455,3.3,3.5388387289401098,3.4235011441777337,2.67913759130197,0.0 -1356,1999-04-18,1.0400000000000205,1.9300000000000068,2.81,12.95,9.640669736026862,13.267842427719646,2.3612951635823225,0.0 -1357,1999-04-19,1.0100000000000475,3.2800000000000296,5.0400000000000205,2.89,3.958533842391314,3.164914222409471,2.0863809411728518,0.0 -1358,1999-04-20,3.340000000000032,6.88,8.25,8.56,14.190411340628009,8.798917486978777,1.8474634541940755,0.0 -1359,1999-04-21,5.170000000000016,7.080000000000041,9.0,14.01,20.041607458945983,14.218488037130085,1.6389754170639903,0.0 -1360,1999-04-22,3.0400000000000205,6.82000000000005,12.31,3.39,7.856595750799389,3.572583046219471,1.4563923708445192,0.0 -1361,1999-04-23,3.490000000000009,6.480000000000018,9.600000000000025,3.4,7.326276452239127,3.5603934735507834,1.2959988972937357,0.0 -1362,1999-04-24,3.710000000000037,5.44,7.470000000000027,0.42,3.090329417368525,0.5612832888524766,1.154715608441259,0.0 -1363,1999-04-25,4.740000000000009,9.77000000000004,14.38,0.11,5.67057938184101,0.23474647762571307,1.029969130815546,0.0 -1364,1999-04-26,7.5,9.050000000000011,10.46,3.21,8.170558597320174,3.320376097537223,0.9195930332783231,0.0 -1365,1999-04-27,5.62,9.360000000000014,13.82000000000005,14.94,20.87215118192874,15.037841659186144,0.8217513740921794,0.0 -1366,1999-04-28,7.25,11.94,15.61,0.0,5.717980229869637,0.08687235660503669,0.7348790174871427,0.0 -1367,1999-04-29,7.470000000000027,11.39,16.97,4.21,9.517090245637467,4.28724447311592,0.6576345443712226,0.0 -1368,1999-04-30,6.900000000000034,10.67,14.1,0.06,4.05142118550969,0.12877181013716255,0.58886273423406,0.0 -1369,1999-05-01,8.57000000000005,12.88,18.71,0.03,4.266903976082883,0.0912983333387117,0.5275644008953483,0.0 -1370,1999-05-02,10.01,14.12,19.82000000000005,0.08,4.216809169533558,0.13469246487961534,0.47287193601573296,0.0 -1371,1999-05-03,10.73,15.98,21.14,0.0,4.169748675328387,0.04884261127628095,0.424029324739452,0.0 -1372,1999-05-04,10.58,13.05,15.51,0.18,3.165158902417345,0.22365362839555614,0.38037569634389584,0.0 -1373,1999-05-05,10.56,12.91,16.82000000000005,4.03,7.051291773998567,4.069044004028275,0.3413316923156208,0.0 -1374,1999-05-06,9.77000000000004,13.82000000000005,17.84,0.0,2.575211800309948,0.03494359487975667,0.30638809743586415,0.0 -1375,1999-05-07,10.18,14.58,20.36,14.23,18.017616476703843,14.261291795531008,0.27509630190485684,0.0 -1376,1999-05-08,6.100000000000023,9.740000000000007,11.7,3.31,5.026220354167664,3.338036046642295,0.24706025526256153,0.0 -1377,1999-05-09,9.03000000000003,13.98,17.12,0.24,2.225056895189088,0.2651306115758657,0.22192964368669582,0.0 -1378,1999-05-10,12.2,14.95,18.89,8.16,10.602583187568705,8.182535566910591,0.19939407677610455,0.0 -1379,1999-05-11,12.24,14.94,17.8,22.32,25.67596494679904,22.340215964549966,0.17917811222614038,0.0 -1380,1999-05-12,12.78,14.45,16.47,11.8,13.898131694553928,11.818141132376127,0.1610369798500152,0.0 -1381,1999-05-13,12.25,15.23,19.8,8.45,10.040206915486426,8.466284087455243,0.14475289239477135,0.0 -1382,1999-05-14,8.490000000000009,10.64,12.25,6.25,7.490492091995338,6.264621041214989,0.13013185117978227,0.0 -1383,1999-05-15,7.670000000000016,10.55,14.16,0.03,0.579159363278032,0.04313098020159606,0.1170008709781862,0.0 -1384,1999-05-16,8.640000000000043,11.83,15.85,4.06,4.8996111682275085,4.0717953092819075,0.10520556169627847,0.0 -1385,1999-05-17,8.420000000000016,10.17,11.38,8.98,10.210558718682169,8.990597546706477,0.09460801498980256,0.0 -1386,1999-05-18,9.890000000000043,13.5,18.37,11.57,12.986681956669116,11.579523062458588,0.08508495253121605,0.0 -1387,1999-05-19,7.110000000000014,10.11,12.28,13.0,14.504270485266051,13.008558852904962,0.07652609962625526,0.0 -1388,1999-05-20,7.720000000000027,9.340000000000032,12.54,19.6,21.682709676546494,19.607693346030608,0.06883275359564824,0.0 -1389,1999-05-21,7.78000000000003,10.09,10.99,11.56,12.85907373530447,11.566916232554144,0.061916521041505496,0.0 -1390,1999-05-22,9.25,10.51,11.35,6.4,7.189487497223041,6.406218319035424,0.055698202006082144,0.0 -1391,1999-05-23,7.580000000000041,11.51,14.77,0.0,0.1680092135161544,0.005591399746479378,0.05010680225960277,0.0 -1392,1999-05-24,10.18,15.14,19.86,0.02,0.1697936261511045,0.025028144612067944,0.045078657647534826,0.0 -1393,1999-05-25,9.910000000000023,15.14,19.71,0.01,0.1415063929528756,0.014522000962854303,0.040556656684680524,0.0 -1394,1999-05-26,11.23,16.37,20.89,0.0,0.1155098164797539,0.004067107202112029,0.036489549482568495,0.0 -1395,1999-05-27,14.8,19.04,24.11,0.02,0.1242519947583746,0.023658216781382815,0.032831332701185684,0.0 -1396,1999-05-28,14.87,18.99,23.37,0.01,0.1018362546122839,0.013290631124012589,0.029540701577173097,0.0 -1397,1999-05-29,14.69,19.83,24.58,0.0,0.0808284026580692,0.0029601403375829317,0.026580561239590166,0.0 -1398,1999-05-30,15.92,19.69,24.17,0.01,0.0829004317760889,0.012662970724707586,0.02391759051488258,0.0 -1399,1999-05-31,12.85,18.1,22.51,1.24,1.4200328809943994,1.2423957382426334,0.021521852272249127,0.0 -1400,1999-06-01,17.43,21.28,26.29,2.34,2.6159240416046536,2.3421554071805235,0.01936644509172539,0.0 -1401,1999-06-02,10.61,16.33,24.04,12.84,14.091076074148711,12.841939253423194,0.017427191668531704,0.0 -1402,1999-06-03,9.33000000000004,14.91,21.43,8.46,9.296319268154402,8.46174483175464,0.015682359913892913,0.0 -1403,1999-06-04,7.410000000000025,11.23,13.88,0.14,0.1939581472560106,0.14156994672655462,0.014112413187338307,0.0 -1404,1999-06-05,6.670000000000016,10.19,12.78,18.3,20.046798632588484,18.301412626678324,0.012699786509013091,0.0 -1405,1999-06-06,5.38,9.410000000000023,12.53,0.01,0.0436993601207244,0.011271100547392226,0.011428685961620865,0.0 -1406,1999-06-07,8.140000000000043,12.64,18.45,21.05,23.04657097065168,21.051143777153936,0.010284908807686965,0.0 -1407,1999-06-08,7.720000000000027,10.4,12.7,0.03,0.0591216144315209,0.031029226682558246,0.009255682125128718,0.0 -1408,1999-06-09,8.930000000000007,13.26,17.44,0.0,0.0236021308935066,0.0009261641172130064,0.00832951800791571,0.0 -1409,1999-06-10,7.44,11.28,13.47,2.75,3.028173534525642,2.7508334344145426,0.007496083593373149,0.0 -1410,1999-06-11,8.110000000000014,12.67,16.06,0.0,0.0190023325815558,0.0007499992261443303,0.006746084367228819,0.0 -1411,1999-06-12,8.03000000000003,13.23,16.79,0.0,0.017058177595464,0.0006749250021520237,0.006071159365076795,0.0 -1412,1999-06-13,9.44,13.77,19.56,6.75,7.396133353075535,6.750607372327766,0.0054637870373099705,0.0 -1413,1999-06-14,9.07000000000005,11.67,13.28,1.85,2.036647102474363,1.8505465863611616,0.004917200676148405,0.0 -1414,1999-06-15,12.04,15.22,17.78,0.0,0.0123579537717217,0.0004918882559278393,0.004425312420220566,0.0 -1415,1999-06-16,12.76,16.1,19.56,0.0,0.0111035430260342,0.0004426674642008754,0.00398264495601969,0.0 -1416,1999-06-17,12.19,16.58,20.23,0.0,0.0099781547235749,0.0003983748280190748,0.0035842701280006154,0.0 -1417,1999-06-18,9.430000000000009,14.24,18.41,0.0,0.0089681939836196,0.00035851637655617174,0.0032257537514444436,0.0 -1418,1999-06-19,9.180000000000009,13.82000000000005,17.94,0.0,0.0080615603596267,0.00032264775577648536,0.0029031059956679582,0.0 -1419,1999-06-20,8.960000000000036,14.06,17.03,14.05,15.370280145537986,14.050290369224957,0.002612736770712558,0.0 -1420,1999-06-21,5.81,9.25,12.93,3.51,3.84454084443298,3.510261321161505,0.002351415609207497,0.0 -1421,1999-06-22,7.82000000000005,10.72,13.47,0.0,0.0058594950656766,0.0002351800217587616,0.0021162355874487352,0.0 -1422,1999-06-23,8.840000000000032,13.86,18.26,0.0,0.0052693518693717,0.0002116547108913237,0.0019045808765574116,0.0 -1423,1999-06-24,11.87,16.29,20.71,0.0,0.0047390245559962,0.00019048332006893457,0.001714097556488477,0.0 -1424,1999-06-25,14.05,19.02,23.98,1.1,1.207062089051512,1.1001714301933019,0.001542667363186653,0.0 -1425,1999-06-26,13.2,15.33,16.81,23.03,25.18608605338391,23.03015428329038,0.0013883840728077046,0.0 -1426,1999-06-27,10.21,14.47,21.18,7.79,8.521457594562765,7.79013885181575,0.001249532257057852,0.0 -1427,1999-06-28,8.010000000000048,12.45,16.17,0.01,0.0140369471616875,0.010124964086332655,0.0011245681707251977,0.0 -1428,1999-06-29,11.67,15.67,20.6,1.16,1.2711979553077852,1.1601124656140103,0.0010121025567148294,0.0 -1429,1999-06-30,11.21,15.15,17.98,0.04,0.0462491074251577,0.040101217381067276,0.000910885175647554,0.0 -1430,1999-07-01,11.92,17.32000000000005,22.07000000000005,0.0,0.0022590715771536,9.109428904505222e-05,0.0008197908866025017,0.0 -1431,1999-07-02,16.68,21.34,25.89,0.0,0.0020325403469332,8.198376349346698e-05,0.0007378071231090347,0.0 -1432,1999-07-03,17.86,22.53,27.69,0.0,0.0018287810871967,7.378449887782467e-05,0.00066402262423121,0.0 -1433,1999-07-04,17.29,22.24,28.08,0.0,0.0016454939455612,6.640532950734717e-05,0.0005976172947238629,0.0 -1434,1999-07-05,11.27,17.44,22.47,35.17,38.45826774036742,35.17005976421379,0.0005378530809387533,0.0 -1435,1999-07-06,11.98,14.25,16.79,8.27,9.044199202869008,8.270053787320368,0.0004840657605701614,0.0 -1436,1999-07-07,11.24,14.88,17.51,2.18,2.3849291749505017,2.180048408205986,0.0004356575545841762,0.0 -1437,1999-07-08,13.99,17.24,21.31,0.0,0.001078778740971,4.3567075691003776e-05,0.00039209047889317245,0.0 -1438,1999-07-09,13.57000000000005,16.68,19.68,0.03,0.0337743869864774,0.03003921011727051,0.000352880361622662,0.0 -1439,1999-07-10,14.22,16.6,19.64,2.09,2.286193018471755,2.0900352889023557,0.0003175914592668792,0.0 -1440,1999-07-11,13.9,17.13,21.51,5.86,6.408428214629052,5.86003175984754,0.0002858316117272699,0.0 -1441,1999-07-12,15.57000000000005,19.11,22.69,3.64,3.980881019422916,3.6400285837294764,0.0002572478822508666,0.0 -1442,1999-07-13,14.91,19.31,24.64,14.81,16.194694554365814,14.810025725248549,0.000231522633701836,0.0 -1443,1999-07-14,13.57000000000005,15.65,17.65,0.67,0.7331872830487194,0.6700231526362311,0.0002083699974707405,0.0 -1444,1999-07-15,9.33000000000004,14.41,18.39,0.02,0.0223846676969049,0.020020837301763333,0.00018753269570740867,0.0 -1445,1999-07-16,13.22,16.95,20.45,0.01,0.0113985341399409,0.010018753514203121,0.00016877918150428695,0.0 -1446,1999-07-17,15.81,19.94,24.61,0.0,0.0004175658387919,1.6878116302082775e-05,0.00015190106520220417,0.0 -1447,1999-07-18,17.23,20.55,26.38,0.97,1.0610264422616416,0.9700151902670227,0.00013671079817956268,0.0 -1448,1999-07-19,15.64,20.13,25.23,5.14,5.620693205574556,5.140013671209824,0.00012303958835495061,0.0 -1449,1999-07-20,16.0,19.75,23.35,0.0,0.000304358669516,1.230406414066372e-05,0.00011073552421428689,0.0 -1450,1999-07-21,13.4,17.73,20.72,0.0,0.0002739114676562,1.1073637718453075e-05,9.966188649583382e-05,0.0 -1451,1999-07-22,9.52000000000004,13.13,15.73,0.0,0.0002465111402853,9.966257740054868e-06,8.969562875577896e-05,0.0 -1452,1999-07-23,8.270000000000039,12.5,16.94,0.01,0.0111563954187144,0.010008969618838773,8.072600991700537e-05,0.0 -1453,1999-07-24,11.87,15.8,20.25,0.0,0.0001996613087664,8.072646321826196e-06,7.265336359517918e-05,0.0 -1454,1999-07-25,13.22,17.69,22.35,0.02,0.022048775956327,0.020007265373076875,6.538799051830529e-05,0.0 -1455,1999-07-26,15.35,19.81,24.79,0.0,0.000161717318771,6.538828792855462e-06,5.884916172544983e-05,0.0 -1456,1999-07-27,14.34,20.91,27.56,1.2,1.3122906817777875,1.2000058849402626,5.2964221462699e-05,0.0 -1457,1999-07-28,15.2,17.53,21.41,2.02,2.208908636864304,2.0200052964416595,4.7667779803380115e-05,0.0 -1458,1999-07-29,13.93,18.03,22.01,0.62,0.6780595402529053,0.6200047667937859,4.2900986017485365e-05,0.0 -1459,1999-07-30,13.74,18.32000000000005,23.33,0.0,0.0001060947101996,4.29011140424006e-06,3.86108746132453e-05,0.0 -1460,1999-07-31,13.91,18.02,22.77,0.0,9.548386177463888e-05,3.861097831335788e-06,3.4749776781909515e-05,0.0 -1461,1999-08-01,12.54,17.38,21.98,0.0,8.593435992744921e-05,3.4749860778950567e-06,3.1274790704014456e-05,0.0 -1462,1999-08-02,14.64,19.77,26.04,3.71,4.0567927293044495,3.7100031274858742,2.814730482985634e-05,0.0 -1463,1999-08-03,16.1,19.16,22.4,0.02,0.0219386909427961,0.020002814735994027,2.5332568835830467e-05,0.0 -1464,1999-08-04,17.15,19.38,21.38,4.24,4.636308803346703,4.240002533261348,2.279930748830677e-05,0.0 -1465,1999-08-05,16.93,20.04,23.84,0.42,0.4593071780549642,0.4200022799343646,2.051937312368558e-05,0.0 -1466,1999-08-06,14.49,18.48,25.45,24.31,26.581924356450564,24.31000205194024,1.8467432882527737e-05,0.0 -1467,1999-08-07,14.79,19.48,24.37,17.39,19.01521564488486,17.390001846745662,1.6620687221956398e-05,0.0 -1468,1999-08-08,15.32000000000005,18.48,22.41,1.05,1.1481680965998242,1.0500016620706438,1.4958616578183268e-05,0.0 -1469,1999-08-09,14.38,19.19,25.17,6.86,7.501133369648487,6.860001495863215,1.3462753363887574e-05,0.0 -1470,1999-08-10,13.71,16.53,19.89,0.82,0.8966658022661962,0.820001346276597,1.2116476766752441e-05,0.0 -1471,1999-08-11,9.920000000000016,13.35,16.18,0.17,0.1859171892588313,0.1700012116486979,1.0904828068872845e-05,0.0 -1472,1999-08-12,7.0400000000000205,11.92,16.54,0.03,0.0328305934355086,0.03000109048363406,9.81434443481019e-06,0.0 -1473,1999-08-13,8.0,12.62,17.92,0.01,0.0109588111949386,0.010000981435113493,8.832909321317233e-06,0.0 -1474,1999-08-14,9.210000000000036,15.31,20.34,10.62,11.612506325069276,10.620000883291475,7.949617846475924e-06,0.0 -1475,1999-08-15,10.21,13.78,16.62,0.25,0.273383227960249,0.2500007949622242,7.1546556222336265e-06,0.0 -1476,1999-08-16,12.22,13.69,14.8,8.35,9.130360953077588,8.350000715465917,6.439189703938597e-06,0.0 -1477,1999-08-17,12.42,14.82000000000005,17.6,0.23,0.2515104073446559,0.2300006439192588,5.795270445126718e-06,0.0 -1478,1999-08-18,10.97,15.82000000000005,20.96,8.73,9.545870219104536,8.730000579527278,5.215743166995475e-06,0.0 -1479,1999-08-19,11.03,13.25,16.45,6.12,6.69195310790032,6.120000521574506,4.694168661064901e-06,0.0 -1480,1999-08-20,9.180000000000009,13.27,17.72,0.0,1.1607284730526614e-05,4.69417019383609e-07,4.224751641681292e-06,0.0 -1481,1999-08-21,11.0,14.59,19.4,0.0,1.0446539770208191e-05,4.224752883225866e-07,3.802276353358706e-06,0.0 -1482,1999-08-22,11.0,15.14,20.42,0.02,0.021878487528957,0.0200003802277359,3.4220486174577316e-06,0.0 -1483,1999-08-23,12.41,16.79,21.99,0.02,0.0218775473308959,0.020000342204943206,3.079843674254229e-06,0.0 -1484,1999-08-24,15.67,20.05,25.36,0.0,7.615498177759901e-06,3.0798443340618017e-07,2.7718592408480486e-06,0.0 -1485,1999-08-25,16.96,21.64,27.13,2.09,2.285326305047449,2.0900002771859776,2.4946732633188326e-06,0.0 -1486,1999-08-26,14.53,17.33,20.01,0.03,0.0328097970261656,0.030000249467369622,2.2452058936969783e-06,0.0 -1487,1999-08-27,14.45,17.81,21.83,1.35,1.476168833497593,1.3500002245206246,2.0206852692624055e-06,0.0 -1488,1999-08-28,12.54,16.79,21.74,0.01,0.0109395393388209,0.01000020206855533,1.818616713933617e-06,0.0 -1489,1999-08-29,11.65,15.3,20.12,0.0,4.49685645042923e-06,1.8186169439942476e-07,1.6367550195341923e-06,0.0 -1490,1999-08-30,10.86,15.2,20.69,0.0,4.047168330778381e-06,1.6367552058832976e-07,1.4730794989458625e-06,0.0 -1491,1999-08-31,11.06,15.91,22.33,0.01,0.0109381852777525,0.01000014730796499,1.325771533956999e-06,0.0 -1492,1999-09-01,12.24,16.75,23.08,0.0,3.278202920356323e-06,1.3257716562206412e-07,1.193194368334935e-06,0.0 -1493,1999-09-02,10.49,15.63,23.41,0.0,2.950381313216424e-06,1.1931944673684832e-07,1.0738749215980868e-06,0.0 -1494,1999-09-03,9.300000000000011,14.16,20.43,1.84,2.011958535741821,1.8400001073875003,9.664874214165608e-07,0.0 -1495,1999-09-04,9.32000000000005,14.17,20.43,0.08,0.0874787324331162,0.08000009664874864,8.698386727773139e-07,0.0 -1496,1999-09-05,10.75,16.36,21.59,0.47,0.5139256637538244,0.4700000869838725,7.828548002365339e-07,0.0 -1497,1999-09-06,11.56,14.44,17.34,8.09,8.846047083804253,8.090000078285485,7.045693159498113e-07,0.0 -1498,1999-09-07,11.48,15.32000000000005,20.48,0.0,1.7421677995799908e-06,7.045693504806718e-08,6.341123809017441e-07,0.0 -1499,1999-09-08,11.62,16.27,23.69,0.01,0.0109361107789074,0.010000063411240887,5.7070114001457e-07,0.0 -1500,1999-09-09,12.03,17.24,23.86,0.0,1.4111552825267257e-06,5.707011626702672e-08,5.136310237475433e-07,0.0 -1501,1999-09-10,12.8,17.02,24.1,0.0,1.270039510583669e-06,5.136310420986579e-08,4.6226791953767755e-07,0.0 -1502,1999-09-11,12.67,17.68,25.43,0.0,1.143035362136158e-06,4.6226793440208017e-08,4.1604112609746953e-07,0.0 -1503,1999-09-12,12.72,17.69,24.75,0.0,1.028731666037384e-06,4.160411381376356e-08,3.74437012283706e-07,0.0 -1504,1999-09-13,12.86,17.59,26.0,0.02,0.0218700115148884,0.020000037443702205,3.3699331008008193e-07,0.0 -1505,1999-09-14,12.63,17.63,25.0,1.91,2.0884985134699474,1.9100000336993317,3.0329397828211845e-07,0.0 -1506,1999-09-15,12.45,15.0,19.73,1.86,2.033825716001324,1.8600000303293986,2.7296457981404283e-07,0.0 -1507,1999-09-16,10.75,13.37,16.94,0.04,0.0437388462635584,0.0400000272964585,2.4566812131434887e-07,0.0 -1508,1999-09-17,8.400000000000034,12.2,18.72,0.02,0.021869693111932,0.02000002456681255,2.2110130876309936e-07,0.0 -1509,1999-09-18,8.710000000000036,13.47,17.8,0.0,5.467098270117083e-07,2.211013121635978e-08,1.989911775467396e-07,0.0 -1510,1999-09-19,11.91,13.81,15.86,11.35,12.410706602113072,11.350000019899118,1.7909205951662525e-07,0.0 -1511,1999-09-20,9.230000000000018,12.4,16.89,0.42,0.4592512416217864,0.42000001790920616,1.6118285334185603e-07,0.0 -1512,1999-09-21,9.420000000000016,14.0,18.01,1.89,2.0666289930923845,1.8900000161182855,1.45064567826954e-07,0.0 -1513,1999-09-22,12.96,17.69,21.83,0.09,0.0984112441505591,0.09000001450645692,1.305581108978783e-07,0.0 -1514,1999-09-23,14.16,17.0,20.14,13.04,14.258644170876668,13.04000001305581,1.1750229968952242e-07,0.0 -1515,1999-09-24,13.49,17.19,21.99,39.32,42.99462269125934,39.32000001175023,1.0575206962453006e-07,0.0 -1516,1999-09-25,11.96,13.81,15.75,36.79,40.22818332665534,36.790000010575206,9.517686258428457e-08,0.0 -1517,1999-09-26,7.520000000000039,10.81,14.22,2.24,2.44933782887063,2.2400000095176864,8.565917626284419e-08,0.0 -1518,1999-09-27,8.930000000000007,13.06,17.11,10.2,11.15323389663094,10.200000008565917,7.709325858552011e-08,0.0 -1519,1999-09-28,10.72,11.19,11.68,8.29,9.064736195252769,8.290000007709326,6.938393268562597e-08,0.0 -1520,1999-09-29,11.26,14.88,15.98,1.43,1.5636397960043238,1.4300000069383931,6.244553938357626e-08,0.0 -1521,1999-09-30,9.62,10.65,14.51,37.46,40.96079758906612,37.460000006244556,5.6200985418094066e-08,0.0 -1522,1999-10-01,8.5,10.43,13.16,0.9,0.9841089935095596,0.9000000056200986,5.058088685431376e-08,0.0 -1523,1999-10-02,7.670000000000016,12.39,15.76,28.38,31.032232671669387,28.380000005058086,4.552279815108596e-08,0.0 -1524,1999-10-03,6.090000000000032,7.03000000000003,8.890000000000043,9.39,10.267535828298088,9.390000004552281,4.0970518321562256e-08,0.0 -1525,1999-10-04,3.090000000000032,5.410000000000025,8.730000000000018,19.9,21.759740329542307,19.900000004097052,3.68734664777298e-08,0.0 -1526,1999-10-05,1.7900000000000205,3.75,5.44,2.59,2.671490374984509,2.5900000036873467,3.318611982049906e-08,0.0 -1527,1999-10-06,1.13,5.020000000000039,12.26,0.0,0.0162985718932773,3.318611989710685e-09,2.9867507830788376e-08,0.0 -1528,1999-10-07,-0.0299999999999727,4.600000000000023,12.45,0.0,0.0146218649107509,2.986750789284068e-09,2.6880757041504306e-08,0.0 -1529,1999-10-08,0.3700000000000045,7.07000000000005,12.43,0.06,0.0733220053745117,0.060000002688075704,2.4192681332327637e-08,0.0 -1530,1999-10-09,6.600000000000023,9.510000000000048,13.36,0.0,0.0123265872702242,2.4192681373040158e-09,2.177341319502362e-08,0.0 -1531,1999-10-10,6.360000000000014,9.470000000000027,14.36,0.0,0.0110681042240667,2.1773413228000758e-09,1.9596071872223543e-08,0.0 -1532,1999-10-11,5.520000000000039,8.57000000000005,12.65,0.0,0.0099404554424309,1.9596071898935027e-09,1.763646468233004e-08,0.0 -1533,1999-10-12,5.860000000000014,9.350000000000025,15.32000000000005,0.0,0.0089295883747767,1.7636464703966341e-09,1.5872818211933405e-08,0.0 -1534,1999-10-13,7.69,10.54,13.05,1.01,1.1124118715200977,1.0100000015872819,1.4285536388987524e-08,0.0 -1535,1999-10-14,7.75,10.75,14.31,0.0,0.0072097688267064,1.4285536403183101e-09,1.2856982748669213e-08,0.0 -1536,1999-10-15,4.9500000000000455,8.730000000000018,13.25,0.0,0.006479926280817,1.285698276016763e-09,1.157128447265245e-08,0.0 -1537,1999-10-16,4.490000000000009,7.730000000000018,12.84,0.0,0.005824768467834,1.1571284481966168e-09,1.0414156024455833e-08,0.0 -1538,1999-10-17,5.07000000000005,8.710000000000036,13.64,0.0,0.0052364994524902,1.0414156031999945e-09,9.372740421255839e-09,0.0 -1539,1999-10-18,4.970000000000027,6.670000000000016,9.12,2.15,2.3556348743830657,2.150000000937274,8.435466378519182e-09,0.0 -1540,1999-10-19,5.56,6.920000000000016,7.660000000000025,5.54,6.061970289290427,5.540000000843547,7.591919740172295e-09,0.0 -1541,1999-10-20,7.150000000000034,8.610000000000014,10.58,1.5,1.643988567238158,1.500000000759192,6.83272776575414e-09,0.0 -1542,1999-10-21,4.890000000000043,7.710000000000036,11.41,0.94,1.031270976625252,0.9400000006832727,6.149454988853977e-09,0.0 -1543,1999-10-22,6.420000000000016,10.38,13.65,67.57,73.887785441485,67.57000000061494,5.534509489705532e-09,0.0 -1544,1999-10-23,6.06,9.110000000000014,12.77,0.05,0.0574426878574992,0.050000000553450955,4.98105854052191e-09,0.0 -1545,1999-10-24,9.44,10.64,11.85,60.18,65.80657040414093,60.180000000498104,4.482952686297134e-09,0.0 -1546,1999-10-25,6.2900000000000205,8.470000000000027,9.680000000000009,29.45,32.20447006418538,29.450000000448295,4.0346574175276265e-09,0.0 -1547,1999-10-26,3.990000000000009,8.110000000000014,14.66,0.0,0.002016431629906,4.0346574186599575e-10,3.6311916756616306e-09,0.0 -1548,1999-10-27,3.790000000000021,9.02000000000004,14.06,0.0,0.001814092484555,3.6311916765788184e-10,3.268072508003749e-09,0.0 -1549,1999-10-28,8.07000000000005,13.32000000000005,18.21,0.01,0.012566662671598,0.010000000326807252,2.941265257129082e-09,0.0 -1550,1999-10-29,11.27,14.63,18.86,0.0,0.0014684517679564,2.941265257730849e-10,2.647138731355997e-09,0.0 -1551,1999-10-30,8.660000000000025,14.37,18.35,5.37,5.873170736119913,5.370000000264714,2.3824248581716544e-09,0.0 -1552,1999-10-31,5.480000000000018,8.670000000000016,14.07000000000005,0.0,0.0011888146570099,2.3824248585664737e-10,2.144182372315007e-09,0.0 -1553,1999-11-01,8.37,13.76,17.45,0.0,0.0010696911386085,2.144182372634811e-10,1.929764135051526e-09,0.0 -1554,1999-11-02,7.300000000000011,10.47,13.44,32.11,35.111779547574976,32.110000000192976,1.7367877215204694e-09,0.0 -1555,1999-11-03,4.44,6.37,7.470000000000027,0.03,0.0336697432164686,0.03000000017367877,1.5631089493474402e-09,0.0 -1556,1999-11-04,4.19,6.28000000000003,8.760000000000048,0.0,0.0007793747505057,1.563108949517397e-10,1.4067980543957006e-09,0.0 -1557,1999-11-05,4.2900000000000205,10.33,14.82000000000005,25.39,27.763505574162256,25.39000000014068,1.266118248942364e-09,0.0 -1558,1999-11-06,0.1400000000000432,2.4700000000000277,3.3500000000000227,16.29,10.681802072749289,16.29000000012661,1.1395064240369767e-09,0.0 -1559,1999-11-07,-0.3599999999999568,2.37,6.7000000000000455,0.0,0.2357524018641529,1.1395064241272987e-10,1.0255557816242468e-09,0.0 -1560,1999-11-08,0.1700000000000159,4.360000000000014,7.770000000000039,0.0,0.6151608497963232,1.0255557816974077e-10,9.230002034545061e-10,0.0 -1561,1999-11-09,2.300000000000012,3.980000000000018,7.28000000000003,0.99,1.5655266319181813,0.9900000000923,8.307001831031294e-10,0.0 -1562,1999-11-10,0.7600000000000477,2.510000000000048,4.69,0.06,0.2735125121520522,0.060000000083070014,7.476301647880164e-10,0.0 -1563,1999-11-11,-1.1399999999999864,1.1100000000000136,2.5200000000000387,0.63,0.2506486192247925,0.45366129080584344,0.17633870994178674,0.0 -1564,1999-11-12,-1.3899999999999864,2.980000000000018,7.13,0.0,0.2652007685690156,0.017850170370707616,0.1584885395710791,0.0 -1565,1999-11-13,0.1500000000000341,3.670000000000016,9.610000000000014,0.0,0.3968621211633063,0.01602357920935746,0.14246496036172165,0.0 -1566,1999-11-14,0.3300000000000409,1.8500000000000227,3.430000000000007,0.17,0.2128248490164811,0.18438767697718536,0.1280772833845363,0.0 -1567,1999-11-15,-2.4599999999999795,0.6700000000000159,4.140000000000043,0.0,0.0121355478643017,0.01292183320403196,0.11515545018050434,0.0 -1568,1999-11-16,-2.92999999999995,-0.75,1.7600000000000475,1.38,0.1702966272805515,0.5178678038379674,0.9772876463425368,-0.5625 -1569,1999-11-17,-2.8999999999999773,-2.039999999999964,-1.5299999999999727,10.68,0.0,0.0,11.657287646342537,-1.6706249999999732 -1570,1999-11-18,-2.9799999999999613,-1.909999999999968,-0.7899999999999636,18.06,0.0,0.0,29.717287646342534,-1.8501562499999693 -1571,1999-11-19,-7.739999999999952,-3.75,-1.38,9.3,0.0,0.0,39.01728764634254,-3.2750390624999923 -1572,1999-11-20,-8.049999999999955,-5.739999999999952,-2.44,0.07,0.0,0.0,39.08728764634254,-5.123759765624962 -1573,1999-11-21,-7.479999999999961,-5.88,-4.199999999999989,0.0,0.0,0.0,39.08728764634254,-5.69093994140624 -1574,1999-11-22,-7.9599999999999795,-6.039999999999964,-3.6999999999999886,0.35,0.0,0.0,39.43728764634254,-5.952734985351533 -1575,1999-11-23,-5.139999999999986,-1.5399999999999636,0.6800000000000068,1.4,0.0158605865528664,0.1635738831615139,40.67371376318103,-2.643183746337856 -1576,1999-11-24,-5.109999999999957,-1.7099999999999795,4.13,0.0,0.0,0.0,40.67371376318103,-1.9432959365844487 -1577,1999-11-25,-5.279999999999973,-1.9899999999999525,2.37,0.0,0.0,0.0,40.67371376318103,-1.9783239841460767 -1578,1999-11-26,-4.0,-0.0899999999999749,3.2800000000000296,0.0,0.0,0.0,40.67371376318103,-0.5620809960365003 -1579,1999-11-27,-3.42999999999995,0.0900000000000318,5.800000000000011,0.0,0.0,0.0,40.67371376318103,-0.07302024900910123 -1580,1999-11-28,-3.079999999999984,0.0100000000000477,4.360000000000014,0.0,0.0,0.0,40.67371376318103,-0.010755062252239532 -1581,1999-11-29,-5.489999999999952,-2.1499999999999773,4.580000000000041,0.0,0.0,0.0,40.67371376318103,-1.6151887655630428 -1582,1999-11-30,-5.449999999999989,-2.31,3.06,0.0,0.0,0.0,40.67371376318103,-2.1362971913907605 -1583,1999-12-01,-2.819999999999993,1.240000000000009,3.0200000000000387,2.95,1.0877991989396685,3.3473268390397033,40.27638692414133,0.0 -1584,1999-12-02,-0.079999999999984,3.080000000000041,6.07000000000005,3.01,4.326858362828047,7.353154092087417,35.93323283205391,0.0 -1585,1999-12-03,-0.5199999999999818,3.740000000000009,7.980000000000018,0.0,2.5591088713834416,4.894985571720449,31.038247260333463,0.0 -1586,1999-12-04,-0.1399999999999863,2.830000000000041,4.62,16.68,13.641770142334517,19.569103147682256,28.149144112651207,0.0 -1587,1999-12-05,-6.599999999999966,-2.5499999999999545,-0.339999999999975,1.01,0.0,0.0,29.15914411265121,-1.912499999999966 -1588,1999-12-06,-6.94,-2.909999999999968,0.5,0.0,0.0,0.0,29.15914411265121,-2.6606249999999676 -1589,1999-12-07,-2.5,4.330000000000041,9.38,3.55,5.492736543974197,7.791208196737352,24.91793591591386,0.0 -1590,1999-12-08,2.890000000000043,5.300000000000011,7.890000000000043,0.0,4.100565075359282,5.417933626447013,19.500002289466845,0.0 -1591,1999-12-09,2.400000000000034,4.5,6.75,27.14,32.18006177394436,31.105857103224736,15.53414518624211,0.0 -1592,1999-12-10,0.1700000000000159,1.410000000000025,2.2100000000000364,3.54,1.934713029931976,4.637160440108154,14.436984746133955,0.0 -1593,1999-12-11,0.8799999999999955,3.830000000000041,5.910000000000025,19.56,20.710576348362444,22.430909919626043,11.56607482650791,0.0 -1594,1999-12-12,0.5600000000000023,4.2900000000000205,7.13,12.62,14.5078241521826,14.707140836200207,9.478933990307702,0.0 -1595,1999-12-13,0.32000000000005,1.170000000000016,1.920000000000016,8.26,3.730624998622947,8.986100656668848,8.752833333638854,0.0 -1596,1999-12-14,-1.8999999999999773,0.7400000000000091,2.660000000000025,15.87,4.666272665979124,9.830064827431253,14.792768506207603,0.0 -1597,1999-12-15,-4.20999999999998,-2.359999999999957,-0.1299999999999954,1.68,0.0,0.0,16.472768506207604,-1.7699999999999676 -1598,1999-12-16,-10.51,-6.339999999999975,-2.0299999999999727,0.0,0.0,0.0,16.472768506207604,-5.197499999999973 -1599,1999-12-17,-10.72,-2.669999999999959,0.7200000000000273,6.49,0.042044690269929,0.40846153846155264,22.55430696774605,-3.3018749999999626 -1600,1999-12-18,0.7600000000000477,3.890000000000043,5.740000000000009,44.52,43.79201216559055,48.257359229369655,18.8169477383764,0.0 -1601,1999-12-19,-4.229999999999961,1.660000000000025,5.800000000000011,17.92,9.073034615381015,12.1223500619358,24.6145976764406,0.0 -1602,1999-12-20,-5.489999999999952,-3.70999999999998,-1.0299999999999727,0.0,0.0,0.0,24.6145976764406,-2.782499999999985 -1603,1999-12-21,-7.569999999999993,-4.62,-1.0499999999999543,0.0,0.0,0.0,24.6145976764406,-4.160624999999996 -1604,1999-12-22,-7.579999999999984,-2.2199999999999704,1.4800000000000182,0.0,0.0,0.0,24.6145976764406,-2.705156249999977 -1605,1999-12-23,0.7300000000000182,2.56,5.260000000000048,0.01,0.9540056460957108,2.606761966169172,22.017835710271427,0.0 -1606,1999-12-24,2.050000000000012,5.2000000000000455,7.03000000000003,1.43,6.76710018843136,6.353381733182596,17.094453977088833,0.0 -1607,1999-12-25,4.06,5.650000000000034,7.330000000000041,26.27,34.28249913131243,30.012131958177257,13.352322018911574,0.0 -1608,1999-12-26,2.69,5.230000000000018,8.650000000000034,23.24,30.00307153596517,25.815380279837264,10.77694173907431,0.0 -1609,1999-12-27,-0.3499999999999659,1.660000000000025,2.840000000000032,37.99,18.34847249444015,35.08807332247758,13.678868416596734,0.0 -1610,1999-12-28,-1.9499999999999889,-1.1599999999999682,-0.6299999999999955,21.17,0.0,0.0,34.84886841659674,-0.8699999999999761 -1611,1999-12-29,-7.269999999999982,-2.9699999999999704,-0.8499999999999659,5.89,0.0,0.0,40.73886841659674,-2.444999999999972 -1612,1999-12-30,-7.799999999999954,-4.0,-1.079999999999984,0.49,0.0,0.0,41.22886841659674,-3.611249999999993 -1613,1999-12-31,-3.729999999999961,-1.2999999999999543,-0.1399999999999863,2.71,0.0,0.0,43.93886841659674,-1.877812499999964 -1614,2000-01-01,-1.17999999999995,0.1400000000000432,1.240000000000009,0.06,0.0067018935545253,0.030743801652893303,43.96812461494385,-0.3644531249999586 -1615,2000-01-02,-2.2799999999999727,0.0200000000000386,2.550000000000012,0.0,0.0,0.0,43.96812461494385,-0.0761132812499607 -1616,2000-01-03,-3.069999999999993,-0.8799999999999955,3.760000000000048,0.0,0.0,0.0,43.96812461494385,-0.6790283203124867 -1617,2000-01-04,-2.8899999999999864,2.430000000000007,4.460000000000036,5.87,4.33234562871122,7.396220600852718,42.44190401409113,0.0 -1618,2000-01-05,0.1400000000000432,2.420000000000016,6.5400000000000205,1.07,2.824524332941903,4.647112745746498,38.86479126834463,0.0 -1619,2000-01-06,-2.269999999999982,0.9600000000000364,5.25,0.22,0.3527299490973112,1.4849310936643283,37.5998601746803,0.0 -1620,2000-01-07,-1.4799999999999611,0.8799999999999955,3.31,0.25,0.2832052672438124,1.3644405632379575,36.485419611442346,0.0 -1621,2000-01-08,-1.1499999999999773,1.1800000000000068,2.82000000000005,0.0,0.3680389950768002,1.5613583779276312,34.92406123351471,0.0 -1622,2000-01-09,0.160000000000025,1.63,3.670000000000016,5.64,4.631721532806807,7.730581937283958,32.833479296230756,0.0 -1623,2000-01-10,0.0100000000000477,0.3600000000000136,0.8400000000000318,0.0,0.0007042735968199,0.4421441338860728,32.39133516234468,0.0 -1624,2000-01-11,-0.8999999999999773,0.3700000000000045,2.0400000000000205,0.0,0.0035211771032466,0.4501699592515205,31.94116520309316,0.0 -1625,2000-01-12,-2.63,-1.2399999999999525,1.2200000000000273,0.0,0.0,0.0,31.94116520309316,-0.9299999999999644 -1626,2000-01-13,-3.839999999999975,-1.19,2.890000000000043,0.0,0.0,0.0,31.94116520309316,-1.1249999999999911 -1627,2000-01-14,-4.45999999999998,-0.9499999999999886,4.170000000000016,0.0,0.0,0.0,31.94116520309316,-0.9937499999999893 -1628,2000-01-15,-6.519999999999982,-3.109999999999957,3.19,0.0,0.0,0.0,31.94116520309316,-2.580937499999965 -1629,2000-01-16,-8.079999999999984,-4.699999999999989,0.0100000000000477,0.0,0.0,0.0,31.94116520309316,-4.170234374999983 -1630,2000-01-17,-8.349999999999966,-0.5,1.7300000000000182,0.06,0.0033321898922833,0.010297619047619173,31.990867584045542,-1.4175585937499957 -1631,2000-01-18,-0.5699999999999932,0.9800000000000182,2.7900000000000205,1.37,0.7633475292662413,2.3256467044437734,31.035220879601766,0.0 -1632,2000-01-19,-6.669999999999959,-1.909999999999968,2.180000000000007,0.0,0.0,0.0,31.035220879601766,-1.432499999999976 -1633,2000-01-20,-7.19,-3.539999999999964,0.1899999999999977,0.0,0.0,0.0,31.035220879601766,-3.013124999999967 -1634,2000-01-21,-2.769999999999982,-1.169999999999959,0.2300000000000182,0.13,0.0,0.009966666666667456,31.155254212935098,-1.630781249999961 -1635,2000-01-22,-1.7099999999999795,-1.2699999999999818,-0.6200000000000045,19.96,0.0,0.0,51.1152542129351,-1.3601953124999766 -1636,2000-01-23,-2.4899999999999523,-1.4799999999999611,-0.4199999999999591,12.91,0.0,0.0,64.0252542129351,-1.4500488281249648 -1637,2000-01-24,-12.32,-6.889999999999986,-1.9699999999999704,0.01,0.0,0.0,64.0352542129351,-5.5300122070312305 -1638,2000-01-25,-12.97,-10.23,-5.0,0.0,0.0,0.0,64.0352542129351,-9.055003051757808 -1639,2000-01-26,-12.03,-8.609999999999957,-4.25,0.0,0.0,0.0,64.0352542129351,-8.72125076293942 -1640,2000-01-27,-10.32,-6.389999999999986,-2.38,0.0,0.0,0.0,64.0352542129351,-6.972812690734845 -1641,2000-01-28,-6.7999999999999545,-0.92999999999995,1.1100000000000136,0.0,0.0,0.0,64.0352542129351,-2.4407031726836736 -1642,2000-01-29,1.080000000000041,2.260000000000048,3.830000000000041,25.77,23.71529572737053,30.38018926687645,59.42506494605865,0.0 -1643,2000-01-30,2.6100000000000136,4.300000000000011,5.07000000000005,24.59,33.48320859108101,32.84587336165234,51.16919158440631,0.0 -1644,2000-01-31,-0.169999999999959,3.1100000000000136,7.550000000000011,0.0,3.7427373190501423,5.303141476280658,45.866050108125656,0.0 -1645,2000-02-01,-0.3100000000000023,5.19,10.27,2.12,10.446198276813288,10.200175449480982,37.78587465864467,0.0 -1646,2000-02-02,1.5300000000000296,4.480000000000018,5.94,20.24,26.88211104552565,26.319436184935615,31.706438473709056,0.0 -1647,2000-02-03,-3.579999999999984,0.5300000000000296,4.81,0.0,0.0494762020584668,0.635394560551914,31.07104391315714,0.0 -1648,2000-02-04,-3.9499999999999886,1.1400000000000432,6.150000000000034,0.0,0.3394226967968871,1.347853438976981,29.72319047418016,0.0 -1649,2000-02-05,-0.3700000000000045,3.87,10.02,0.0,4.798428625034053,4.439906058593181,25.28328441558698,0.0 -1650,2000-02-06,2.170000000000016,4.87,9.980000000000018,3.21,10.12371595997196,8.234653365220476,20.258631050366503,0.0 -1651,2000-02-07,3.790000000000021,4.4500000000000455,5.730000000000018,6.84,12.968263446779964,10.84961757179041,16.249013478576092,0.0 -1652,2000-02-08,2.840000000000032,5.480000000000018,7.12,37.75,48.46256112006254,41.21149867080944,12.787514807766655,0.0 -1653,2000-02-09,-2.4699999999999704,0.7400000000000091,2.5200000000000387,1.5,0.4351661674362673,1.2947470395170493,12.992767768249607,0.0 -1654,2000-02-10,-2.789999999999964,3.6000000000000227,7.360000000000014,22.41,17.935535901061,19.390174132073426,16.012593636176177,0.0 -1655,2000-02-11,0.160000000000025,1.3900000000000432,2.8500000000000227,0.05,0.4278484567310455,1.1488992908935927,14.913694345282584,0.0 -1656,2000-02-12,-1.5399999999999636,0.0200000000000386,1.6400000000000432,9.36,1.48037062259519,4.8447680179199235,19.42892632736266,0.0 -1657,2000-02-13,-0.6200000000000045,1.62,2.5,19.59,8.032348876668285,17.285894255750904,21.733032071611756,0.0 -1658,2000-02-14,-1.0,2.62,4.82000000000005,10.39,8.723217929605326,11.187672959090742,20.935359112521013,0.0 -1659,2000-02-15,2.8600000000000136,4.610000000000014,5.730000000000018,18.5,26.6304314468693,22.73494446101693,16.700414651504083,0.0 -1660,2000-02-16,-2.109999999999957,0.1200000000000045,2.800000000000012,15.15,4.474728871590114,8.756852288250501,23.093562363253582,0.0 -1661,2000-02-17,-4.539999999999964,-1.829999999999984,0.6800000000000068,9.56,0.1207540157816434,1.2453639846743485,31.408198378579236,-1.372499999999988 -1662,2000-02-18,-2.039999999999964,2.44,4.140000000000043,41.93,21.900208132622595,31.87390360790132,41.46429477067792,0.0 -1663,2000-02-19,-1.06,1.3500000000000227,2.8600000000000136,19.1,8.029911657475834,16.077758518533408,44.486536252144504,0.0 -1664,2000-02-20,-7.529999999999973,-2.9499999999999886,-0.3199999999999932,0.12,0.0,0.0,44.6065362521445,-2.2124999999999915 -1665,2000-02-21,-7.979999999999961,-3.2399999999999523,3.340000000000032,0.0,0.0,0.0,44.6065362521445,-2.983124999999962 -1666,2000-02-22,-6.17999999999995,-2.12,4.890000000000043,0.0,0.0,0.0,44.6065362521445,-2.3357812499999904 -1667,2000-02-23,-5.649999999999977,-0.7799999999999727,4.760000000000048,0.0,0.0,0.0,44.6065362521445,-1.1689453124999771 -1668,2000-02-24,-2.669999999999959,2.740000000000009,4.7900000000000205,0.12,2.6766531794348785,4.284531949147215,40.44200430299729,0.0 -1669,2000-02-25,1.7100000000000364,4.140000000000043,6.520000000000039,4.28,11.4326603401454,10.184126229539595,34.5378780734577,0.0 -1670,2000-02-26,0.2800000000000295,4.490000000000009,10.0,0.0,7.659305672312367,5.713609736058866,28.82426833739883,0.0 -1671,2000-02-27,-0.0999999999999659,6.5400000000000205,11.72,0.0,12.660167597573912,7.350153436788492,21.47411490061034,0.0 -1672,2000-02-28,4.31,7.970000000000027,12.38,7.51,23.471555936559994,12.865087485919432,16.119027414690905,0.0 -1673,2000-02-29,3.81,4.75,5.390000000000043,42.02,52.65050292153322,45.43923340482496,12.69979400986595,0.0 -1674,2000-03-01,-0.6499999999999773,1.81,4.220000000000027,27.79,17.996066201064977,25.530465982574007,14.95932802729194,0.0 -1675,2000-03-02,-1.8899999999999864,-0.1599999999999681,2.590000000000032,0.01,0.0028158332113184,0.005781250000000048,14.96354677729194,-0.11999999999997608 -1676,2000-03-03,-0.5099999999999909,3.240000000000009,6.100000000000023,18.41,17.24454503207214,19.58232902346423,13.79121775382771,0.0 -1677,2000-03-04,-4.759999999999991,0.1400000000000432,4.010000000000048,0.02,0.0063245275779086,0.11177423542292791,13.699443518404783,0.0 -1678,2000-03-05,-5.099999999999966,-1.19,4.580000000000041,0.0,0.0,0.0,13.699443518404783,-0.8925 -1679,2000-03-06,-4.7999999999999545,2.7700000000000387,8.770000000000039,0.0,2.305966127800076,2.023200685129132,11.676242833275651,0.0 -1680,2000-03-07,-0.92999999999995,4.210000000000036,11.29,0.0,5.530294011221596,2.1159689063209197,9.560273926954732,0.0 -1681,2000-03-08,-1.0499999999999543,6.19,12.28,0.0,9.669850688187536,1.591798256840244,7.968475670114488,0.0 -1682,2000-03-09,2.910000000000025,8.94,15.13,0.0,14.234573155768578,1.2385303301071506,6.729945340007338,0.0 -1683,2000-03-10,1.4700000000000273,6.340000000000032,11.94,0.0,8.261477625823648,0.9880471013219941,5.741898238685343,0.0 -1684,2000-03-11,1.4300000000000068,7.53000000000003,15.31,0.0,9.66968127908656,0.8035251365835414,4.938373102101802,0.0 -1685,2000-03-12,0.4700000000000273,5.57000000000005,12.99,0.0,5.88372954829196,0.663477107985274,4.274895994116528,0.0 -1686,2000-03-13,0.2600000000000477,6.62,13.46,0.0,7.128881674634867,0.5546087713491946,3.720287222767333,0.0 -1687,2000-03-14,3.7200000000000273,7.970000000000027,13.47,2.11,10.67875104246341,2.5783035810870225,3.2519836416803103,0.0 -1688,2000-03-15,-0.9699999999999704,1.840000000000032,4.88,0.01,0.41722900447219,0.40734362103979327,2.854640020640517,0.0 -1689,2000-03-16,0.2100000000000363,3.510000000000048,5.680000000000007,0.0,2.060629307734251,0.34214828397664243,2.5124917366638746,0.0 -1690,2000-03-17,2.6100000000000136,5.44,9.990000000000007,0.0,4.393407929770483,0.2951597596988248,2.21733197696505,0.0 -1691,2000-03-18,2.62,4.080000000000041,5.9500000000000455,0.97,3.642398138086586,1.2259328262713485,1.9613991506937014,0.0 -1692,2000-03-19,2.5400000000000205,4.890000000000043,8.94,0.0,3.346216607544207,0.22290027280999988,1.7384988778837016,0.0 -1693,2000-03-20,-1.079999999999984,3.7800000000000296,10.06,0.0,1.9928117397776937,0.19487356977019568,1.5436253081135058,0.0 -1694,2000-03-21,-2.669999999999959,4.180000000000007,11.49,0.0,2.327757263002116,0.1709371565151238,1.372688151598382,0.0 -1695,2000-03-22,0.4200000000000159,7.430000000000007,13.99,0.0,5.595602707725432,0.1503758278296903,1.2223123237686917,0.0 -1696,2000-03-23,4.9500000000000455,8.080000000000041,10.92,2.42,8.543149144453867,2.552623835200385,1.0896884885683067,0.0 -1697,2000-03-24,0.4000000000000341,4.53000000000003,7.050000000000011,1.22,3.3778825730664,1.337228556494118,0.9724599320741887,0.0 -1698,2000-03-25,0.3700000000000045,6.010000000000048,12.28,5.27,8.764300256179908,5.373824137289401,0.868635794784787,0.0 -1699,2000-03-26,1.3500000000000227,2.7700000000000387,4.210000000000036,5.92,6.098060308811788,6.012112081789178,0.7765237129956084,0.0 -1700,2000-03-27,-1.7799999999999727,1.07000000000005,3.740000000000009,1.37,0.681060532462174,1.060379015488018,1.0861446975075906,0.0 -1701,2000-03-28,-0.7999999999999545,2.7900000000000205,5.840000000000032,0.02,0.590942903651818,0.13468831815768814,0.9714563793499024,0.0 -1702,2000-03-29,-0.1599999999999681,0.4700000000000273,1.7100000000000364,6.77,1.9910351658392675,6.362546503593399,1.3789098757565026,0.0 -1703,2000-03-30,-0.5499999999999545,1.57000000000005,3.410000000000025,0.62,0.5298014911511397,0.6953205693312802,1.3035893064252224,0.0 -1704,2000-03-31,-0.589999999999975,3.410000000000025,8.350000000000023,1.49,2.594377479396549,1.5455301750545132,1.2480591313707092,0.0 -1705,2000-04-01,0.0900000000000318,2.2100000000000364,4.25,1.01,1.1643231980468622,1.145640947009462,1.1124181843612473,0.0 -1706,2000-04-02,0.7200000000000273,7.2000000000000455,10.95,0.02,4.738287315217775,0.13984969653666462,0.9925684878245826,0.0 -1707,2000-04-03,6.020000000000039,9.260000000000048,13.33,0.02,5.984918134944307,0.1261098516761104,0.8864586361484722,0.0 -1708,2000-04-04,3.300000000000012,7.410000000000025,12.43,11.35,16.559647330468437,11.444111955147294,0.7923466810011778,0.0 -1709,2000-04-05,2.930000000000007,4.050000000000011,5.150000000000034,5.83,7.861764805864919,5.913601740935331,0.7087449400658468,0.0 -1710,2000-04-06,0.1899999999999977,2.7200000000000277,5.400000000000034,0.0,0.4543526822705755,0.07436863070713856,0.6343763093587083,0.0 -1711,2000-04-07,-1.13,4.600000000000023,10.99,0.0,1.827645226861027,0.06623695940578225,0.568139349952926,0.0 -1712,2000-04-08,0.9500000000000456,7.29000000000002,13.49,0.42,3.856695739445248,0.47905921076260616,0.5090801391903198,0.0 -1713,2000-04-09,4.470000000000027,6.03000000000003,7.980000000000018,1.73,4.354322984552647,1.782710750441764,0.4563693887485558,0.0 -1714,2000-04-10,4.360000000000014,8.100000000000023,12.53,8.12,12.416064131709462,8.167085687248427,0.40928370150012694,0.0 -1715,2000-04-11,1.9300000000000068,6.350000000000023,8.610000000000014,20.61,24.307532603883537,20.652093592617867,0.3671901088822583,0.0 -1716,2000-04-12,1.12,4.300000000000011,6.600000000000023,6.77,7.845379056312194,6.807656879274778,0.3295332296074799,0.0 -1717,2000-04-13,2.430000000000007,6.87,8.610000000000014,5.14,8.06722978646879,5.1737086906056495,0.29582453900183014,0.0 -1718,2000-04-14,2.0,10.93,15.63,14.2,19.81304443722664,14.230191188997061,0.26563335000476784,0.0 -1719,2000-04-15,2.06,6.210000000000036,10.27,0.16,2.060291116552813,0.1870541582742235,0.23857919173054434,0.0 -1720,2000-04-16,2.990000000000009,6.660000000000025,8.770000000000039,26.36,30.837730224101453,26.384253855249366,0.21432533648117824,0.0 -1721,2000-04-17,3.0400000000000205,5.25,8.270000000000039,0.06,1.372936331892033,0.08175206021819267,0.19257327626298557,0.0 -1722,2000-04-18,3.07000000000005,6.82000000000005,10.82000000000005,0.34,2.304560895996538,0.35951528740007177,0.17305798886291382,0.0 -1723,2000-04-19,2.800000000000012,6.19,8.69,0.0,1.588834518701697,0.017514124780135868,0.15554386408277796,0.0 -1724,2000-04-20,5.12,11.43,16.33,0.0,3.0085217783764344,0.015722679278145798,0.13982118480463215,0.0 -1725,2000-04-21,9.900000000000034,14.13,19.56,0.0,3.4582117054891386,0.014118108145763161,0.12570307665886898,0.0 -1726,2000-04-22,10.72,16.52,22.78,0.0,3.678577508021333,0.012680221349764945,0.11302285530910404,0.0 -1727,2000-04-23,5.010000000000048,7.79000000000002,11.47,29.16,33.262933906853014,29.17139114270525,0.1016317126038523,0.0 -1728,2000-04-24,2.920000000000016,5.970000000000027,8.13,0.14,1.0688083060587554,0.15023501988137813,0.0913966927224742,0.0 -1729,2000-04-25,5.240000000000009,12.11,16.2,0.0,2.0855182046268435,0.009197775262967365,0.08219891745950683,0.0 -1730,2000-04-26,8.400000000000034,13.94,19.8,0.0,2.246912395736092,0.008266891127707208,0.07393202633179963,0.0 -1731,2000-04-27,9.52000000000004,13.94,19.89,0.03,2.063510757243496,0.03743122377614093,0.0665008025556587,0.0 -1732,2000-04-28,6.100000000000023,7.700000000000045,10.12,5.02,6.381787462581763,5.026680842195669,0.05981996035998941,0.0 -1733,2000-04-29,4.94,7.950000000000045,10.53,1.17,2.1594888500902045,1.1760068876003211,0.05381307275966816,0.0 -1734,2000-04-30,7.710000000000036,13.15,18.2,0.0,1.5381729219030165,0.005401450803735283,0.048411621955932876,0.0 -1735,2000-05-01,10.63,14.13,18.9,1.09,2.352992040825847,1.0948574648835356,0.04355415707239735,0.0 -1736,2000-05-02,9.470000000000027,13.6,18.75,0.19,1.1157942187996048,0.1943686110044024,0.03918554606799495,0.0 -1737,2000-05-03,10.29,12.09,14.01,15.69,17.884866316470386,15.693929235602877,0.03525631046511831,0.0 -1738,2000-05-04,10.74,15.01,19.86,0.04,0.6397560666875473,0.04353427741365941,0.0317220330514589,0.0 -1739,2000-05-05,8.03000000000003,12.3,17.28,6.38,7.471239843004316,6.3831792030462235,0.028542830005234957,0.0 -1740,2000-05-06,9.0,12.0,14.98,1.01,1.5204701313386852,1.0128599500109414,0.0256828799942936,0.0 -1741,2000-05-07,10.75,13.95,20.27,12.7,14.240042108961685,12.702572876252818,0.023110003741475024,0.0 -1742,2000-05-08,10.4,14.47,19.18,2.56,3.101435003399675,2.5623147153840926,0.020795288357382674,0.0 -1743,2000-05-09,11.76,15.77,22.3,1.55,1.9551593628204955,1.5520825369189293,0.01871275143845344,0.0 -1744,2000-05-10,11.61,15.76,23.13,4.26,4.883604334679895,4.261873710908066,0.016839040530386738,0.0 -1745,2000-05-11,10.54,14.12,20.36,16.67,18.42414678699862,16.671685876451406,0.015153164078984179,0.0 -1746,2000-05-12,8.340000000000032,13.31,18.22,3.23,3.703381704729869,3.231516913634743,0.01363625044424135,0.0 -1747,2000-05-13,10.91,14.67,19.46,0.34,0.5222040996428196,0.34136491849514417,0.012271331949097186,0.0 -1748,2000-05-14,11.86,15.86,20.22,0.04,0.176067657385098,0.041228180669164796,0.011043151279932389,0.0 -1749,2000-05-15,12.66,17.68,22.59,0.1,0.2260592220133517,0.10110516342120618,0.009937987858726209,0.0 -1750,2000-05-16,13.63,18.42,24.08,0.0,0.1031771874981282,0.000994485786087278,0.00894350207263893,0.0 -1751,2000-05-17,10.17,13.04,15.75,5.46,6.061654144493097,5.460894906591957,0.008048595480682463,0.0 -1752,2000-05-18,7.330000000000041,9.44,10.68,7.83,8.642845781687495,7.830805310157367,0.007243285323314979,0.0 -1753,2000-05-19,6.090000000000032,8.62,11.52,0.33,0.4329149289997694,0.3307246934804552,0.006518591842859812,0.0 -1754,2000-05-20,4.28000000000003,9.350000000000025,13.07000000000005,0.02,0.0860120531563194,0.020652154759169275,0.005866437083690537,0.0 -1755,2000-05-21,7.980000000000018,11.28,14.88,9.84,10.816743036164038,9.8405868830999,0.005279553983789654,0.0 -1756,2000-05-22,3.81,9.0,12.67,0.0,0.0509791146356212,0.0005281492879362271,0.004751404695853427,0.0 -1757,2000-05-23,7.13,12.05,16.6,0.0,0.04551544884838,0.00047529750731005335,0.004276107188543373,0.0 -1758,2000-05-24,11.52,15.59,20.23,0.0,0.0406716581986207,0.0004277379100691242,0.003848369278474249,0.0 -1759,2000-05-25,10.73,13.73,15.75,0.4,0.4737523603453397,0.40038493994592167,0.0034634293325525936,0.0 -1760,2000-05-26,6.330000000000041,16.49,21.72,25.98,28.44048849667603,25.980346426372932,0.003117002959621029,0.0 -1761,2000-05-27,6.740000000000009,9.660000000000023,11.22,2.91,3.2110932930365754,2.910311767878482,0.0028052350811394273,0.0 -1762,2000-05-28,8.240000000000009,10.71,12.67,15.19,16.63567709474271,15.190280578247316,0.0025246568338222293,0.0 -1763,2000-05-29,4.890000000000043,9.180000000000009,12.34,0.08,0.1108752614336562,0.08025251002021423,0.0022721468136079983,0.0 -1764,2000-05-30,9.08000000000004,12.2,15.14,28.63,31.32657715531197,28.630227250592792,0.002044896220814779,0.0 -1765,2000-05-31,7.100000000000023,11.42,14.07000000000005,9.25,10.133272278994646,9.250204518709321,0.0018403775114946808,0.0 -1766,2000-06-01,11.15,16.27,21.18,0.0,0.0168875906600622,0.00018406131106801362,0.0016563162004266671,0.0 -1767,2000-06-02,15.04,19.85,25.16,0.0,0.0151580902946753,0.0001656507030338008,0.0014906654973928664,0.0 -1768,2000-06-03,15.8,20.53,25.41,0.22,0.2541693743398527,0.22014908200656635,0.0013415834908265098,0.0 -1769,2000-06-04,15.19,19.79,24.53,0.0,0.0122219907182615,0.0001341708688240879,0.001207412622002422,0.0 -1770,2000-06-05,9.32000000000005,14.99,19.96,0.69,0.7654618627345529,0.6901207514029805,0.0010866612190219178,0.0 -1771,2000-06-06,8.57000000000005,10.29,11.45,0.04,0.053601474694454,0.0401086743357809,0.0009779868832410193,0.0 -1772,2000-06-07,9.390000000000043,13.42,17.24,0.0,0.0088630314880782,9.780534145409784e-05,0.0008801815417869215,0.0 -1773,2000-06-08,13.47,18.09,21.92,0.0,0.0079654660544563,8.802354313252032e-05,0.0007921579986544012,0.0 -1774,2000-06-09,16.3,20.51,25.12,0.4,0.4445415321917613,0.4000792201648587,0.0007129378337957495,0.0 -1775,2000-06-10,12.43,18.2,23.67,5.04,5.517446067315535,5.040071297318981,0.0006416405148149671,0.0 -1776,2000-06-11,9.79000000000002,12.25,15.19,3.14,3.439233335633043,3.140064166915287,0.000577473599528053,0.0 -1777,2000-06-12,11.84,14.77,16.48,0.01,0.0161379337424107,0.010057749679612185,0.0005197239199158669,0.0 -1778,2000-06-13,14.46,17.39,20.77,0.09,0.1030900490483699,0.09005197427089891,0.00046774964901695395,0.0 -1779,2000-06-14,12.55,17.25,21.04,1.4,1.5350440982080664,1.4000467764868043,0.00042097316221255095,0.0 -1780,2000-06-15,11.87,17.59,22.52,0.01,0.0147192906801235,0.010042098548953535,0.00037887461325901585,0.0 -1781,2000-06-16,10.64,16.26,20.73,0.0,0.0034042146585997,3.788845983255073e-05,0.0003409861534264651,0.0 -1782,2000-06-17,12.18,17.49,23.1,0.0,0.0030621276097572,3.40994241282956e-05,0.0003068867292981695,0.0 -1783,2000-06-18,14.73,19.69,24.7,0.0,0.0027545669841988,3.068932804273967e-05,0.00027619740125542987,0.0 -1784,2000-06-19,14.86,20.82000000000005,26.46,0.0,0.0024780194311296,2.7620270764493136e-05,0.00024857713049093673,0.0 -1785,2000-06-20,15.93,21.11,27.06,0.0,0.0022293345625142,2.4858142864808235e-05,0.0002237189876261285,0.0 -1786,2000-06-21,15.17,20.57000000000005,26.57000000000005,2.99,3.271433992071702,2.990022372246912,0.00020134674071412462,0.0 -1787,2000-06-22,12.69,16.53,20.76,0.82,0.8984370511567791,0.8200201349560714,0.00018121178464268063,0.0 -1788,2000-06-23,8.610000000000014,13.04,17.25,0.23,0.2531181020053774,0.2300181214068836,0.00016309037775909797,0.0 -1789,2000-06-24,8.710000000000036,11.02,12.69,11.17,12.215345215241404,11.170016309222795,0.0001467811549640616,0.0 -1790,2000-06-25,6.56,10.65,13.81,0.29,0.3184162234853578,0.2900146782653615,0.0001321028896025407,0.0 -1791,2000-06-26,8.610000000000014,13.46,17.94,0.0,0.0011827847469251,1.321041035072156e-05,0.00011889247925181915,0.0 -1792,2000-06-27,12.93,17.67,22.39,4.85,5.304317576706958,4.850011889346251,0.00010700313300055936,0.0 -1793,2000-06-28,10.71,14.34,16.7,1.61,1.7614191068741905,1.610010700392944,9.630274005652671e-05,0.0 -1794,2000-06-29,9.860000000000014,15.18,19.38,0.06,0.0664690653690079,0.06000963033851717,8.667240153935961e-05,0.0 -1795,2000-06-30,12.14,17.41,22.04,0.0,0.0007755206898187,8.667292408184865e-06,7.800510913117474e-05,0.0 -1796,2000-07-01,16.66,21.03,25.45,0.0,0.0006978820768511,7.80055323900238e-06,7.020455589217236e-05,0.0 -1797,2000-07-02,17.38,23.36,30.06,4.38,4.789957782561007,4.380007020489873,6.318406601902969e-05,0.0 -1798,2000-07-03,13.44,18.29,22.33,26.83,29.33794357286614,26.83000631843437,5.6865631647177256e-05,0.0 -1799,2000-07-04,13.12,15.68,18.11,4.85,5.303761873921115,4.850005686585658,5.117904598882243e-05,0.0 -1800,2000-07-05,11.71,16.0,19.76,0.0,0.0004577047667303,5.117922818712277e-06,4.606112317011015e-05,0.0 -1801,2000-07-06,15.35,20.6,24.39,3.78,4.133669093222311,3.7800046061270747,4.1454996095048485e-05,0.0 -1802,2000-07-07,12.1,18.32000000000005,24.51,10.58,11.569117001606353,10.580004145511564,3.730948453153112e-05,0.0 -1803,2000-07-08,6.760000000000048,10.92,13.87,0.34,0.3721080567615301,0.3400037309581359,3.3578526395634075e-05,0.0 -1804,2000-07-09,8.890000000000043,12.27,13.82000000000005,12.99,14.204271358432068,12.990003357860482,3.0220665913052604e-05,0.0 -1805,2000-07-10,9.460000000000036,11.58,13.02,28.33,30.97783002155657,28.330003022072944,2.7198592968906008e-05,0.0 -1806,2000-07-11,7.79000000000002,9.300000000000011,11.4,29.52,32.279013588702455,29.520002719864443,2.447872852621633e-05,0.0 -1807,2000-07-12,7.390000000000043,9.450000000000044,11.79,5.41,5.91580650529109,5.410002447877021,2.20308515054992e-05,0.0 -1808,2000-07-13,8.960000000000036,11.75,15.16,24.83,27.15066678735752,24.830002203088526,1.98277629787932e-05,0.0 -1809,2000-07-14,7.950000000000045,10.04,11.31,28.05,30.67156987799521,28.050001982779033,1.784498394622839e-05,0.0 -1810,2000-07-15,7.53000000000003,8.94,10.48,8.49,9.283586376925456,8.49000178450061,1.606048333651098e-05,0.0 -1811,2000-07-16,5.63,9.28000000000003,12.05,1.43,1.5637831849385735,1.4300016060501277,1.4454433208633777e-05,0.0 -1812,2000-07-17,8.960000000000036,12.53,16.17,0.0,0.0001292014812465,1.4454447741861628e-06,1.3008988434447614e-05,0.0 -1813,2000-07-18,9.220000000000027,14.43,18.88,0.0,0.0001162789303495,1.3009000206359542e-06,1.1708088413811659e-05,0.0 -1814,2000-07-19,11.04,14.95,19.24,0.01,0.0110391919193973,0.010001170809794907,1.0537278618905819e-05,0.0 -1815,2000-07-20,11.48,15.57000000000005,19.83,0.0,9.418260567154584e-05,1.0537286342454285e-06,9.483549984660391e-06,0.0 -1816,2000-07-21,12.75,17.2,22.38,0.0,8.476306829536542e-05,9.48355624073363e-07,8.535194360587028e-06,0.0 -1817,2000-07-22,15.11,19.45,23.86,0.0,7.628572727724745e-05,8.535199428005608e-07,7.681674417786467e-06,0.0 -1818,2000-07-23,14.06,19.62,23.57000000000005,1.53,1.6730537090405435,1.5300007681678522,6.91350656554697e-06,0.0 -1819,2000-07-24,12.88,16.33,21.04,0.26,0.2843599035414283,0.260000691350989,6.222155576519023e-06,0.0 -1820,2000-07-25,13.57000000000005,16.25,20.24,4.02,4.395741827416667,4.020000622215827,5.599939749563817e-06,0.0 -1821,2000-07-26,13.51,16.81,19.75,0.01,0.0109845917939094,0.010000559994193092,5.039945556471781e-06,0.0 -1822,2000-07-27,13.29,16.97,21.87,9.61,10.508140701665672,9.610000503994732,4.535950824134737e-06,0.0 -1823,2000-07-28,10.49,13.48,17.25,11.98,13.099622847300212,11.980000453595226,4.082355598602484e-06,0.0 -1824,2000-07-29,10.28,13.24,16.02,6.3,6.888798466707829,6.300000408235675,3.6741199228160317e-06,0.0 -1825,2000-07-30,10.28,14.75,19.09,0.03,0.0328364647072094,0.03000036741208618,3.3067078366342097e-06,0.0 -1826,2000-07-31,11.86,16.03,19.09,0.0,2.9552444984406237e-05,3.306708597225939e-07,2.9760369769116157e-06,0.0 -1827,2000-08-01,15.26,21.04,27.31,1.81,1.9791788489896984,1.8100002976037592,2.678433217612527e-06,0.0 -1828,2000-08-02,12.27,15.3,18.29,8.44,9.228778084316286,8.440000267843372,2.410589845948856e-06,0.0 -1829,2000-08-03,9.600000000000025,12.94,15.44,1.41,1.5417920822409965,1.4100002410590249,2.169530820933013e-06,0.0 -1830,2000-08-04,10.54,12.97,16.27,6.79,7.4245739694320285,6.790000216953115,1.9525777060987373e-06,0.0 -1831,2000-08-05,11.12,12.74,14.16,9.38,10.256618622992669,9.380000195257798,1.7573199089686755e-06,0.0 -1832,2000-08-06,10.81,14.09,17.44,0.03,0.032819333517873,0.030000175732012378,1.581587896590456e-06,0.0 -1833,2000-08-07,12.02,15.7,19.53,0.0,1.4134494281726738e-05,1.581588070589401e-07,1.4234290895315159e-06,0.0 -1834,2000-08-08,12.97,16.97,21.81,0.0,1.2721016095407709e-05,1.423429230470658e-07,1.28108616648445e-06,0.0 -1835,2000-08-09,13.86,18.14,22.98,0.01,0.0109459917194511,0.010000128108628065,1.1529775384199346e-06,0.0 -1836,2000-08-10,13.77,18.99,24.48,0.01,0.0109448468114638,0.010000115297763089,1.0376797753309244e-06,0.0 -1837,2000-08-11,15.0,20.26,26.24,0.0,9.273569601035486e-06,1.0376798502317585e-07,9.339117903077485e-07,0.0 -1838,2000-08-12,14.81,19.56,25.9,0.01,0.0109428890285209,0.010000093391185098,8.405206052100062e-07,0.0 -1839,2000-08-13,14.09,19.27,25.79,0.19,0.2077638253071343,0.19000008405206545,7.56468539774762e-07,0.0 -1840,2000-08-14,15.25,20.46,25.84,0.0,6.760405065472993e-06,7.564685795801344e-08,6.808216818167485e-07,0.0 -1841,2000-08-15,14.44,19.05,23.72,0.01,0.0109406271862393,0.010000068082171406,6.127395104108385e-07,0.0 -1842,2000-08-16,15.45,20.87,25.44,1.68,1.8370086710644096,1.6800000612739536,5.514655567581243e-07,0.0 -1843,2000-08-17,16.69,19.48,21.7,11.74,12.837158208697227,11.740000055146558,4.963189989668912e-07,0.0 -1844,2000-08-18,17.2,20.79,25.46,0.36,0.3936479773026037,0.3600000496319016,4.466870973567114e-07,0.0 -1845,2000-08-19,17.64,22.87,29.06,0.0,3.9919339112545365e-06,4.4668711123598596e-08,4.020183862331128e-07,0.0 -1846,2000-08-20,13.55,23.08,30.65,17.4,19.026108113909345,17.40000004020184,3.618165464855803e-07,0.0 -1847,2000-08-21,10.62,13.52,16.92,18.69,20.436663779479115,18.690000036181658,3.2563489092640305e-07,0.0 -1848,2000-08-22,10.67,14.92,19.72,0.01,0.0109374529430452,0.01000003256348983,2.9307140109616123e-07,0.0 -1849,2000-08-23,13.08,18.46,25.21,0.0,2.6191020883759903e-06,2.930714070707337e-08,2.6376426038908784e-07,0.0 -1850,2000-08-24,14.62,19.78,26.6,0.02,0.0218714428474106,0.020000026376426523,2.373878338662387e-07,0.0 -1851,2000-08-25,15.36,21.4,29.56,0.0,2.121471003075357e-06,2.3738783778615564e-08,2.1364905008762313e-07,0.0 -1852,2000-08-26,12.43,19.81,27.25,7.23,7.905676374154703,7.230000021364906,1.9228414476134754e-07,0.0 -1853,2000-08-27,9.200000000000044,13.35,16.63,0.78,0.8528960589946273,0.7800000192284148,1.7305573002802703e-07,0.0 -1854,2000-08-28,10.09,13.69,19.18,0.0,1.5465509391391266e-06,1.730557321112316e-08,1.5575015681690386e-07,0.0 -1855,2000-08-29,9.52000000000004,14.87,20.27,0.21,0.2296267912889454,0.21000001557501585,1.401751409664739e-07,0.0 -1856,2000-08-30,12.05,13.95,16.16,11.42,12.48724916257775,11.420000014017514,1.2615762673314747e-07,0.0 -1857,2000-08-31,11.09,12.85,14.44,0.74,0.8091572967260644,0.7400000126157628,1.1354186394912268e-07,0.0 -1858,2000-09-01,10.97,14.96,20.06,1.68,1.837004209838764,1.6800000113541864,1.021876774645353e-07,0.0 -1859,2000-09-02,10.04,12.01,14.89,11.45,12.520052451578795,11.450000010218767,9.196890964544491e-08,0.0 -1860,2000-09-03,8.79000000000002,10.81,13.06,13.62,14.89284815398874,13.62000000919689,8.277201862206458e-08,0.0 -1861,2000-09-04,6.640000000000043,9.410000000000023,12.45,0.0,7.397095653088888e-07,8.277201909863495e-09,7.449481671220108e-08,0.0 -1862,2000-09-05,6.4500000000000455,10.56,16.64,0.0,6.657385300144188e-07,7.449481709822309e-09,6.704533500237877e-08,0.0 -1863,2000-09-06,7.230000000000018,12.92,16.09,9.81,10.726787113686951,9.810000006704534,6.034080147087311e-08,0.0 -1864,2000-09-07,6.88,11.3,16.06,0.06,0.0656077962176557,0.06000000603408017,5.430672129845889e-08,0.0 -1865,2000-09-08,7.160000000000025,12.81,20.06,0.01,0.0109350281515076,0.01000000543067215,4.887604914809821e-08,0.0 -1866,2000-09-09,9.740000000000007,15.08,22.13,0.01,0.0109349796191488,0.010000004887604932,4.398844421667141e-08,0.0 -1867,2000-09-10,11.07000000000005,16.26,22.85,0.03,0.0328040215965509,0.030000004398844433,3.9589599781544516e-08,0.0 -1868,2000-09-11,12.14,17.03,23.89,0.01,0.0109348966288328,0.01000000395895999,3.563063979248766e-08,0.0 -1869,2000-09-12,13.01,18.09,24.43,1.3,1.4214908860942024,1.300000003563064,3.206757580440795e-08,0.0 -1870,2000-09-13,11.96,15.36,20.87,0.04,0.0437384578914708,0.04000000320675759,2.886081821681409e-08,0.0 -1871,2000-09-14,12.51,16.81,23.0,0.03,0.0328038864053564,0.030000002886081827,2.59747363893387e-08,0.0 -1872,2000-09-15,13.65,19.17,26.11,0.0,2.321285111738634e-07,2.5974736436269965e-09,2.3377262745711702e-08,0.0 -1873,2000-09-16,7.54000000000002,11.22,15.88,0.0,2.089156523000796e-07,2.3377262783726027e-09,2.10395364673391e-08,0.0 -1874,2000-09-17,6.520000000000039,10.66,16.52,0.0,1.880240807873901e-07,2.1039536498130703e-09,1.893558281752603e-08,0.0 -1875,2000-09-18,5.910000000000025,11.87,17.88,0.01,0.0109347120499268,0.010000001893558284,1.7042024533279307e-08,0.0 -1876,2000-09-19,9.82000000000005,14.38,21.13,29.12,31.841388868190474,29.120000001704202,1.5337822077931138e-08,0.0 -1877,2000-09-20,8.420000000000016,10.05,11.03,34.42,37.63669655193793,34.420000001533786,1.3804039868501632e-08,0.0 -1878,2000-09-21,5.75,9.640000000000043,14.69,0.0,1.233625866463975e-07,1.3804039881756409e-09,1.2423635880325991e-08,0.0 -1879,2000-09-22,7.470000000000027,12.3,18.93,0.03,0.0328037395111035,0.03000000124236359,1.1181272291219756e-08,0.0 -1880,2000-09-23,6.830000000000041,12.77,20.61,0.01,0.0109346427519507,0.01000000111812723,1.0063145061228134e-08,0.0 -1881,2000-09-24,9.58000000000004,14.11,21.17,0.0,8.993132085656083e-08,1.0063145068272266e-09,9.056830554400908e-09,0.0 -1882,2000-09-25,9.94,13.44,19.08,0.01,0.0109346237664468,0.010000000905683057,8.151147498390242e-09,0.0 -1883,2000-09-26,10.59,15.86,23.02,0.0,7.284436790304392e-08,8.151147503011898e-10,7.336032748089052e-09,0.0 -1884,2000-09-27,11.23,14.59,17.72,0.0,6.555993034891239e-08,7.336032751832592e-10,6.602429472905793e-09,0.0 -1885,2000-09-28,12.44,16.38,21.92,0.02,0.0218691446604552,0.020000000660242948,5.942186525311987e-09,0.0 -1886,2000-09-29,10.67,13.92,19.63,15.37,16.80639238013803,15.370000000594217,5.347967872535174e-09,0.0 -1887,2000-09-30,9.670000000000016,10.07000000000005,10.57000000000005,9.82,10.737721105143786,9.820000000534797,4.81317108508271e-09,0.0 -1888,2000-10-01,6.740000000000009,9.81,12.79,1.05,1.1481270399810914,1.0500000004813173,4.3318539764132915e-09,0.0 -1889,2000-10-02,7.180000000000007,8.080000000000041,9.600000000000025,13.4,14.652287428579896,13.400000000433186,3.898668578641433e-09,0.0 -1890,2000-10-03,6.090000000000032,8.850000000000023,12.91,0.0,3.484123323274106e-08,3.89866857969872e-10,3.508801720671561e-09,0.0 -1891,2000-10-04,5.460000000000036,10.08,14.71,0.0,3.135710973472783e-08,3.508801721527963e-10,3.1579215485187646e-09,0.0 -1892,2000-10-05,7.050000000000011,10.03,12.69,4.53,4.953347929422844,4.530000000315792,2.8421293935975197e-09,0.0 -1893,2000-10-06,0.5,5.44,9.800000000000011,0.23,0.2271507244385637,0.23000000028421294,2.557916454181579e-09,0.0 -1894,2000-10-07,0.5,4.460000000000036,9.900000000000034,0.0,0.0024370475365148,2.557916454636706e-10,2.3021248087179085e-09,0.0 -1895,2000-10-08,0.7200000000000273,7.31,12.01,16.48,16.850940254569455,16.480000000230213,2.0719123278092522e-09,0.0 -1896,2000-10-09,6.910000000000025,9.04000000000002,11.89,16.86,18.56169285866541,16.86000000020719,1.864721094998466e-09,0.0 -1897,2000-10-10,5.94,7.44,9.180000000000009,9.69,10.707622708654617,9.69000000018647,1.6782489854744323e-09,0.0 -1898,2000-10-11,6.640000000000043,7.850000000000023,8.350000000000023,17.38,19.103971425328574,17.380000000167826,1.5104240869073974e-09,0.0 -1899,2000-10-12,6.12,8.230000000000018,11.14,40.04,43.870788944675006,40.04000000015104,1.3593816782007882e-09,0.0 -1900,2000-10-13,6.970000000000027,7.840000000000032,8.240000000000009,17.46,19.170999420095,17.46000000013594,1.2234435103678553e-09,0.0 -1901,2000-10-14,7.950000000000045,10.24,11.9,1.64,1.8640618267566893,1.6400000001223443,1.101099159320658e-09,0.0 -1902,2000-10-15,5.980000000000018,9.890000000000043,11.83,6.15,6.7880114454288645,6.1500000001101105,9.909892433801584e-10,0.0 -1903,2000-10-16,4.87,8.860000000000014,12.86,2.05,2.298162146439649,2.0500000000990988,8.918903190353114e-10,0.0 -1904,2000-10-17,4.010000000000048,6.890000000000043,10.59,0.82,0.9472666731252424,0.8200000000891889,8.027012871262469e-10,0.0 -1905,2000-10-18,3.850000000000023,8.160000000000025,13.04,0.23,0.2968335798360891,0.23000000008027013,7.224311584091403e-10,0.0 -1906,2000-10-19,6.160000000000025,9.180000000000009,13.31,0.53,0.6201498526205669,0.5300000000722431,6.501880425645959e-10,0.0 -1907,2000-10-20,6.260000000000048,9.670000000000016,14.72,0.0,0.0364075373110961,6.501880425940021e-11,5.851692383051957e-10,0.0 -1908,2000-10-21,4.490000000000009,8.69,15.95,0.0,0.032646375684112,5.851692383290147e-11,5.266523144722942e-10,0.0 -1909,2000-10-22,4.32000000000005,8.300000000000011,14.95,0.0,0.029284784380474,5.2665231449158766e-11,4.739870830231355e-10,0.0 -1910,2000-10-23,6.2000000000000455,11.46,15.02,3.76,4.137666293842703,3.7600000000473983,4.265883747192592e-10,0.0 -1911,2000-10-24,7.140000000000043,10.0,12.72,3.7,4.069368246050618,3.700000000042659,3.8392953724606744e-10,0.0 -1912,2000-10-25,7.07000000000005,12.26,18.66,1.67,1.8472465233908584,1.6700000000383928,3.455365835204354e-10,0.0 -1913,2000-10-26,7.430000000000007,10.05,11.47,6.05,6.634417514738376,6.0500000000345535,3.1098292516756135e-10,0.0 -1914,2000-10-27,3.340000000000032,7.150000000000034,12.45,0.0,0.0170841140935184,3.109829251742886e-11,2.798846326501325e-10,0.0 -1915,2000-10-28,3.260000000000048,11.77,16.93,2.64,2.902068298556609,2.6400000000279884,2.5189616938457434e-10,0.0 -1916,2000-10-29,4.160000000000025,7.07000000000005,10.2,3.32,3.644060736455585,3.3200000000251895,2.2670655244567554e-10,0.0 -1917,2000-10-30,5.0400000000000205,11.41,14.95,38.14,41.71674218070845,38.140000000022674,2.0403589720075048e-10,0.0 -1918,2000-10-31,3.82000000000005,5.100000000000023,5.960000000000036,8.06,8.824383681935668,8.060000000020404,1.8363230748038585e-10,0.0 -1919,2000-11-01,3.670000000000016,7.160000000000025,9.54000000000002,0.14,0.1631001576414829,0.14000000001836324,1.652690767321127e-10,0.0 -1920,2000-11-02,5.090000000000032,7.850000000000023,9.38,16.03,17.537077848464385,16.03000000001653,1.4874216905871142e-10,0.0 -1921,2000-11-03,3.260000000000048,5.230000000000018,7.06,16.39,17.929813375013865,16.390000000014876,1.3386795215268638e-10,0.0 -1922,2000-11-04,0.8400000000000318,3.7800000000000296,6.720000000000027,3.45,3.360128876177127,3.450000000013387,1.204811569372931e-10,0.0 -1923,2000-11-05,0.3300000000000409,5.840000000000032,8.230000000000018,11.03,10.559674087457829,11.030000000012047,1.084330412434628e-10,0.0 -1924,2000-11-06,5.650000000000034,6.660000000000025,7.56,17.27,19.099863358469047,17.270000000010842,9.758973711903473e-11,0.0 -1925,2000-11-07,3.63,4.730000000000018,6.32000000000005,5.0,5.658010453645758,5.000000000009759,8.783076340706502e-11,0.0 -1926,2000-11-08,2.87,3.94,4.75,6.64,7.429388317450239,6.640000000008783,7.904768706630485e-11,0.0 -1927,2000-11-09,1.57000000000005,3.44,5.970000000000027,0.88,1.0249217555450505,0.8800000000079048,7.11429183596309e-11,0.0 -1928,2000-11-10,-1.1599999999999682,2.670000000000016,6.650000000000034,1.39,1.1150101346019408,1.2044885469682243,0.18551145310291856,0.0 -1929,2000-11-11,-1.19,5.260000000000048,8.94,0.0,0.1880003709546844,0.01879053277407751,0.16672092032884106,0.0 -1930,2000-11-12,9.33000000000004,12.22,14.56,3.91,4.442005225628288,3.92686544023903,0.1498554800898112,0.0 -1931,2000-11-13,4.420000000000016,9.0,13.91,47.62,52.21817800172869,47.635141756705266,0.13471372338453905,0.0 -1932,2000-11-14,1.3000000000000114,2.81,4.31,7.81,7.393849695346955,7.823597608455914,0.12111611492862469,0.0 -1933,2000-11-15,-1.4899999999999525,1.8000000000000114,6.730000000000018,0.0,0.0329259379287527,0.01221364993323209,0.10890246499539259,0.0 -1934,2000-11-16,-1.6999999999999886,2.6000000000000227,6.770000000000039,3.45,2.5206419935156403,2.842157559952204,0.7167449050431887,0.0 -1935,2000-11-17,-0.6299999999999955,1.1800000000000068,2.06,3.2,1.0395196553381358,2.612129711218752,1.304615193824437,0.0 -1936,2000-11-18,-2.56,0.3400000000000318,4.600000000000023,0.01,0.0047743622482963,0.1451558635121881,1.169459330312249,0.0 -1937,2000-11-19,-0.169999999999959,4.420000000000016,7.410000000000025,11.87,10.946450511586882,11.761691005996845,1.277768324315402,0.0 -1938,2000-11-20,1.2100000000000364,2.830000000000041,3.7800000000000296,12.57,11.471618642067588,12.709133847049157,1.1386344772662451,0.0 -1939,2000-11-21,0.9500000000000456,4.37,5.760000000000048,2.26,2.874735281074633,2.3828818293465366,1.0157526479197083,0.0 -1940,2000-11-22,5.210000000000036,6.930000000000007,8.31,11.63,13.801237795444584,11.738752147942485,0.9070004999772239,0.0 -1941,2000-11-23,2.090000000000032,5.480000000000018,9.300000000000011,25.39,28.023930468327396,25.48642240770169,0.8105780922755356,0.0 -1942,2000-11-24,-2.419999999999959,0.5400000000000205,4.110000000000014,0.72,0.3329255963778535,0.5689853844813602,0.9615927077941754,0.0 -1943,2000-11-25,-2.609999999999957,3.430000000000007,6.170000000000016,8.22,5.542584895448607,6.197635550353247,2.9839571574409276,0.0 -1944,2000-11-26,1.7900000000000205,3.510000000000048,5.260000000000048,13.08,14.058575818444012,13.440331995541396,2.623625161899531,0.0 -1945,2000-11-27,3.200000000000045,5.7900000000000205,7.510000000000048,5.0,6.610206359684732,5.310243550553594,2.3133816113459376,0.0 -1946,2000-11-28,7.210000000000036,9.110000000000014,12.37,0.0,1.4505830750283484,0.26856485838516225,2.0448167529607755,0.0 -1947,2000-11-29,4.710000000000036,7.510000000000048,10.57000000000005,0.0,1.1152559511197864,0.23356665320927628,1.8112500997514993,0.0 -1948,2000-11-30,2.510000000000048,5.710000000000036,11.25,0.0,0.8020243241189983,0.2039450706020662,1.607305029149433,0.0 -1949,2000-12-01,2.7100000000000364,7.38,9.03000000000003,1.13,2.158432444036399,1.3087008537644498,1.4286041753849832,0.0 -1950,2000-12-02,4.850000000000023,7.63,9.590000000000032,5.68,7.091274024409734,5.837056999016151,1.2715471763688317,0.0 -1951,2000-12-03,1.2000000000000457,4.2000000000000455,6.360000000000014,0.0,0.4472850659688479,0.1384014123022333,1.1331457640665985,0.0 -1952,2000-12-04,2.0300000000000296,6.150000000000034,9.640000000000043,0.28,0.9148778429292744,0.40224622254275344,1.010899541523845,0.0 -1953,2000-12-05,3.88,7.010000000000048,9.31,0.02,0.6838455558591645,0.12819842109736582,0.9027011204264792,0.0 -1954,2000-12-06,6.420000000000016,7.28000000000003,8.04000000000002,4.98,6.034066562440085,5.07593834788695,0.8067627725395291,0.0 -1955,2000-12-07,6.520000000000039,11.22,15.92,1.59,2.2408888081863143,1.6752037062577825,0.7215590662817468,0.0 -1956,2000-12-08,4.75,7.680000000000007,12.96,44.75,49.36389449632735,44.825777533675264,0.6457815326064854,0.0 -1957,2000-12-09,3.88,5.660000000000025,9.590000000000032,0.92,1.3795007337488996,0.9874790427989106,0.5783024898075748,0.0 -1958,2000-12-10,3.010000000000048,4.970000000000027,6.220000000000027,3.76,4.428993956965416,3.8201565722957196,0.5181459175118551,0.0 -1959,2000-12-11,2.4600000000000364,6.580000000000041,12.39,0.0,0.2845721629644314,0.05368210680141558,0.4644638107104395,0.0 -1960,2000-12-12,4.330000000000041,8.980000000000018,11.98,0.41,0.6977152183466095,0.45794697681783886,0.41651683389260064,0.0 -1961,2000-12-13,5.520000000000039,7.920000000000016,10.41,0.0,0.2192729677222785,0.042858454947798975,0.37365837894480164,0.0 -1962,2000-12-14,3.550000000000012,5.930000000000007,6.910000000000025,14.36,15.89532143814382,14.39833703951818,0.3353213394266213,0.0 -1963,2000-12-15,0.3900000000000432,1.82000000000005,3.140000000000043,8.3,5.571849021026265,8.334314270046486,0.30100706938013666,0.0 -1964,2000-12-16,-0.9799999999999612,0.3400000000000318,1.420000000000016,3.27,0.4958842172487966,2.0763831147110676,1.494623954669069,0.0 -1965,2000-12-17,-3.169999999999959,0.0400000000000204,3.3600000000000136,0.17,0.0536960505425626,0.10407441286511832,1.5605495418039508,0.0 -1966,2000-12-18,0.3900000000000432,3.150000000000034,6.12,0.01,0.4642887912294727,0.18299501909004423,1.3875545227139066,0.0 -1967,2000-12-19,0.8500000000000227,4.460000000000036,10.3,0.0,0.719487134330447,0.15214790320112287,1.2354066195127837,0.0 -1968,2000-12-20,-0.1899999999999977,2.6100000000000136,7.300000000000011,0.0,0.3032380164420127,0.13415712364703536,1.1012494958657484,0.0 -1969,2000-12-21,-1.9699999999999704,1.5400000000000205,6.69,0.0,0.1165193626361572,0.11856084903069158,0.9826886468350569,0.0 -1970,2000-12-22,-2.329999999999984,0.7400000000000091,6.640000000000043,0.0,0.0310422280253902,0.10498611954483918,0.8777025272902177,0.0 -1971,2000-12-23,-2.7199999999999704,0.2100000000000363,6.590000000000032,0.0,0.0,0.08333510581056623,0.7943674214796514,0.0 -1972,2000-12-24,0.4300000000000068,2.800000000000012,4.06,11.23,9.062016055261756,11.313826118285533,0.7105413031941192,0.0 -1973,2000-12-25,2.7700000000000387,3.590000000000032,4.330000000000041,4.15,5.099279533103613,4.224566001729289,0.6359753014648307,0.0 -1974,2000-12-26,2.300000000000012,3.5,5.010000000000048,2.06,2.666661876105935,2.1264109882275872,0.5695643132372437,0.0 -1975,2000-12-27,2.490000000000009,3.9500000000000455,6.7000000000000455,7.47,8.611365479100934,7.529212984070252,0.5103513291669909,0.0 -1976,2000-12-28,-2.4799999999999613,-0.6099999999999568,2.69,0.06,0.0156340341577583,0.03121856866537741,0.5391327605016135,-0.4574999999999676 -1977,2000-12-29,-1.81,-0.589999999999975,1.32000000000005,1.28,0.1241092681580541,0.539808306709277,1.2793244537923365,-0.5568749999999731 -1978,2000-12-30,-5.2999999999999545,-2.329999999999984,0.2600000000000477,0.01,0.0,0.0004676258992806614,1.288856827893056,-1.8867187499999813 -1979,2000-12-31,-5.96999999999997,-2.2999999999999545,0.6000000000000227,0.0,0.0,0.0,1.288856827893056,-2.1966796874999615 -1980,2001-01-01,0.4399999999999977,5.890000000000043,8.580000000000041,10.99,11.574686867374687,11.130440665562073,1.148416162330982,0.0 -1981,2001-01-02,3.980000000000018,4.770000000000039,7.020000000000039,11.38,13.26271290956464,11.504015612118039,1.0244005502129436,0.0 -1982,2001-01-03,3.2700000000000387,4.37,5.210000000000036,0.78,1.5325887261958746,0.8897396633026354,0.9146608869103082,0.0 -1983,2001-01-04,3.94,4.5,5.340000000000032,8.06,9.460892702684006,8.15728551489281,0.8173753720175003,0.0 -1984,2001-01-05,4.970000000000027,7.430000000000007,9.480000000000018,26.97,30.41123016329092,27.056384862204276,0.7309905098132231,0.0 -1985,2001-01-06,0.6000000000000227,2.390000000000043,7.710000000000036,21.92,21.106580092757447,21.99681597280186,0.6541745370113662,0.0 -1986,2001-01-07,0.920000000000016,1.8600000000000136,3.3500000000000227,0.41,0.4482581168525107,0.47839423700056466,0.5857803000108015,0.0 -1987,2001-01-08,-3.4899999999999523,0.8300000000000409,2.890000000000043,0.2,0.0695741310200599,0.16347579092948222,0.6223045090813193,0.0 -1988,2001-01-09,-4.19,1.25,2.9600000000000364,2.1,0.565624721259493,1.0785465177292808,1.6437579913520386,0.0 -1989,2001-01-10,2.6100000000000136,5.0,5.930000000000007,0.36,1.3359807821291914,0.5431705123612006,1.460587478990838,0.0 -1990,2001-01-11,4.78000000000003,6.430000000000007,8.82000000000005,5.61,7.204335819074179,5.770898105330559,1.2996893736602795,0.0 -1991,2001-01-12,1.56,4.7000000000000455,7.660000000000025,1.2,1.9955602456126569,1.341718970339963,1.1579704033203164,0.0 -1992,2001-01-13,-3.87,-0.3499999999999659,2.0300000000000296,0.0,0.0,0.0,1.1579704033203164,-0.2624999999999744 -1993,2001-01-14,-5.779999999999973,-3.13,0.7200000000000273,0.0,0.0,0.0,1.1579704033203164,-2.4131249999999937 -1994,2001-01-15,-4.649999999999977,-0.75,3.2700000000000387,0.0,0.0,0.0,1.1579704033203164,-1.1657812499999984 -1995,2001-01-16,-2.829999999999984,-1.3199999999999932,2.140000000000043,0.06,0.0105768565957888,0.025835010060362554,1.1921353932599539,-1.2814453124999945 -1996,2001-01-17,-2.7299999999999613,-0.8100000000000023,0.2900000000000204,2.61,0.0,0.250629139072867,3.5515062541870868,-0.9278613281250003 -1997,2001-01-18,-0.5999999999999659,0.8700000000000045,2.840000000000032,6.1,2.700441395876023,5.465890299937562,4.185615954249524,0.0 -1998,2001-01-19,0.0500000000000113,1.0900000000000318,1.7000000000000457,4.53,1.5907351748721044,5.056350901080722,3.6592650531688027,0.0 -1999,2001-01-20,-3.7199999999999696,0.6200000000000045,4.13,4.63,1.742428703558022,2.7622030128124466,5.5270620403563555,0.0 -2000,2001-01-21,-4.46999999999997,0.6299999999999955,4.660000000000025,0.01,0.0340830440086587,0.33139141332372835,5.205670627032627,0.0 -2001,2001-01-22,0.0300000000000295,5.390000000000043,6.990000000000009,4.78,6.249463056326374,5.4890679162462455,4.496602710786382,0.0 -2002,2001-01-23,5.960000000000036,8.010000000000048,8.990000000000009,0.48,3.2445619923832147,1.0703067891595826,3.9062959216267994,0.0 -2003,2001-01-24,3.13,5.420000000000016,8.760000000000048,23.07,26.932210042780344,23.566772316287448,3.409523605339351,0.0 -2004,2001-01-25,0.6400000000000432,2.420000000000016,4.5,11.45,10.14499990256746,11.87181489555277,2.987708709786581,0.0 -2005,2001-01-26,1.38,2.950000000000045,4.57000000000005,8.57,8.86852825685475,8.930862986297685,2.6268457234888962,0.0 -2006,2001-01-27,-2.81,0.0500000000000113,2.38,0.01,0.0020841053622979,0.02670971485459381,2.6101360086343024,0.0 -2007,2001-01-28,-2.87,0.6000000000000227,5.550000000000011,0.01,0.0276968159937962,0.27178699123685274,2.34834901739745,0.0 -2008,2001-01-29,-2.7299999999999613,0.1500000000000341,2.4700000000000277,0.0,0.0,0.06526400787317012,2.28308500952428,0.0 -2009,2001-01-30,-5.399999999999977,-1.6999999999999886,2.56,0.23,0.0357078316881373,0.07396984924623137,2.4391151602780483,-1.2749999999999915 -2010,2001-01-31,-5.099999999999966,-1.19,3.990000000000009,0.0,0.0,0.0,2.4391151602780483,-1.211249999999998 -2011,2001-02-01,-8.169999999999959,-4.039999999999964,1.8900000000000432,0.0,0.0,0.0,2.4391151602780483,-3.332812499999972 -2012,2001-02-02,-8.299999999999955,-0.7799999999999727,1.170000000000016,3.26,0.0830596013387039,0.40276663146779956,5.296348528810249,-1.4182031249999727 -2013,2001-02-03,1.25,3.910000000000025,5.94,46.82,47.14480731031063,47.54475991833913,4.571588610471114,0.0 -2014,2001-02-04,5.220000000000027,6.300000000000011,7.78000000000003,6.44,9.326485684348714,7.042535369208425,3.9690532412626895,0.0 -2015,2001-02-05,5.78000000000003,6.550000000000011,7.210000000000036,0.65,2.849555364156035,1.156485955482833,3.4625672857798566,0.0 -2016,2001-02-06,6.510000000000048,10.48,12.35,0.0,3.008492045068974,0.4296548738193149,3.0329124119605417,0.0 -2017,2001-02-07,9.210000000000036,12.0,14.39,0.0,2.854723577553312,0.36727646390966373,2.665635948050878,0.0 -2018,2001-02-08,2.3600000000000136,6.660000000000025,12.85,26.56,30.422908246833924,26.875990295563042,2.349645652487835,0.0 -2019,2001-02-09,-0.9899999999999524,1.8500000000000227,5.140000000000043,0.07,0.2622310712038246,0.33356340529855266,2.0860822471892826,0.0 -2020,2001-02-10,-1.9699999999999704,0.7200000000000273,5.510000000000048,0.0,0.031446841500845,0.2388789483821059,1.8472032988071767,0.0 -2021,2001-02-11,-1.92999999999995,3.490000000000009,10.04,0.0,0.6229555727869817,0.20845533556564855,1.6387479632415283,0.0 -2022,2001-02-12,1.740000000000009,7.660000000000025,13.26,4.55,6.35195267063608,4.732555114921106,1.4561928483204218,0.0 -2023,2001-02-13,1.12,4.38,6.660000000000025,1.21,1.943982113683013,1.3703694789799536,1.2958233693404682,0.0 -2024,2001-02-14,-1.5199999999999818,2.180000000000007,7.81,0.0,0.2048823285755641,0.14126257151084726,1.1545607978296208,0.0 -2025,2001-02-15,-1.7399999999999525,2.090000000000032,8.640000000000043,0.0,0.1747978543439366,0.12472850978896902,1.0298322880406519,0.0 -2026,2001-02-16,-0.9099999999999682,3.770000000000039,10.41,0.0,0.5138947863274907,0.11036045257767736,0.9194718354629745,0.0 -2027,2001-02-17,-0.1200000000000045,1.0100000000000475,2.62,0.4,0.2332057723382958,0.482287788572134,0.8371840468908405,0.0 -2028,2001-02-18,-2.0,1.830000000000041,6.910000000000025,0.0,0.1109522966443313,0.0885937102122795,0.748590336678561,0.0 -2029,2001-02-19,-2.7299999999999613,0.6700000000000159,5.850000000000023,0.0,0.0228618047190906,0.07875709243610043,0.6698332442424606,0.0 -2030,2001-02-20,-3.81,0.3600000000000136,5.580000000000041,0.0,0.000197425664927,0.07010432138097103,0.5997289228614896,0.0 -2031,2001-02-21,-4.17999999999995,0.9900000000000092,5.150000000000034,0.95,0.455031011692581,0.6342313072514161,0.9154976156100736,0.0 -2032,2001-02-22,0.8100000000000023,3.420000000000016,4.910000000000025,10.14,9.547805801855718,10.23737983981578,0.8181177757942937,0.0 -2033,2001-02-23,-1.44,1.31,3.7000000000000455,5.46,2.7037940568724497,4.203468545604666,2.0746492301896278,0.0 -2034,2001-02-24,-8.759999999999991,-4.19,-0.67999999999995,2.49,0.0,0.0,4.564649230189628,-3.1425 -2035,2001-02-25,-10.0,-5.42999999999995,0.1800000000000068,0.2,0.0,0.0035363457760315686,4.761112884413597,-4.858124999999962 -2036,2001-02-26,-10.46,-4.449999999999989,-0.25,0.0,0.0,0.0,4.761112884413597,-4.552031249999982 -2037,2001-02-27,-2.019999999999982,0.2700000000000386,3.7000000000000455,0.01,0.0042558295720925,0.006468531468531518,4.764644352945066,-0.9355078124999665 -2038,2001-02-28,-1.8199999999999927,0.0200000000000386,3.160000000000025,6.12,2.265959742844713,3.88337349397592,7.001270858969146,-0.21887695312496266 -2039,2001-03-01,-3.649999999999977,-1.6099999999999568,-0.4699999999999704,10.15,0.0,0.0,17.15127085896915,-1.2622192382812083 -2040,2001-03-02,-4.029999999999973,1.5200000000000389,6.100000000000023,31.38,16.064842022784195,20.63650653842105,27.8947643205481,0.0 -2041,2001-03-03,5.710000000000036,6.610000000000014,7.54000000000002,25.98,33.8436709472366,33.24898524152209,20.625779079026003,0.0 -2042,2001-03-04,2.400000000000034,4.2900000000000205,5.88,29.23,33.962790252953106,33.13642759231193,16.719351486714075,0.0 -2043,2001-03-05,-0.0399999999999636,3.430000000000007,7.900000000000034,0.0,1.7746461427429427,2.7747384999181053,13.94461298679597,0.0 -2044,2001-03-06,-0.079999999999984,8.03000000000003,13.32000000000005,1.85,7.211522704147761,4.589275400638364,11.205337586157608,0.0 -2045,2001-03-07,7.420000000000016,9.910000000000023,13.58,16.02,23.0626865553392,18.01392702526225,9.211410560895356,0.0 -2046,2001-03-08,4.080000000000041,6.06,8.38,43.74,50.81712562890455,45.25135875469469,7.700051806200668,0.0 -2047,2001-03-09,3.81,6.110000000000014,7.88,7.65,11.062960536311998,8.832432327087915,6.517619479112755,0.0 -2048,2001-03-10,5.470000000000027,7.56,8.300000000000011,10.28,14.159385641679837,11.227248657295338,5.570370821817416,0.0 -2049,2001-03-11,8.220000000000027,9.970000000000027,10.59,18.38,23.3547846052927,19.152875209211324,4.79749561260609,0.0 -2050,2001-03-12,2.94,6.390000000000043,10.57000000000005,42.51,48.438765930750606,43.14984874643143,4.15764686617466,0.0 -2051,2001-03-13,2.8500000000000227,4.4500000000000455,5.82000000000005,23.68,27.097413360042367,24.21600639769256,3.621640468482098,0.0 -2052,2001-03-14,3.340000000000032,4.7900000000000205,6.07000000000005,7.93,9.863249597511045,8.383400967263775,3.168239501218323,0.0 -2053,2001-03-15,4.230000000000018,7.37,11.34,3.9,5.954508851038972,4.2866465406664105,2.7815929605519125,0.0 -2054,2001-03-16,4.0,8.970000000000027,15.55,23.55,27.530985050402077,23.881979718996096,2.449613241555816,0.0 -2055,2001-03-17,3.990000000000009,5.740000000000009,7.010000000000048,15.96,18.545374551658067,16.2467015688815,2.162911672674315,0.0 -2056,2001-03-18,3.390000000000043,6.7000000000000455,9.100000000000025,19.43,22.384389838059136,19.6788326635261,1.9140790091482134,0.0 -2057,2001-03-19,2.490000000000009,5.28000000000003,7.020000000000039,1.03,1.940839136011588,1.2468926094058626,1.6971863997423509,0.0 -2058,2001-03-20,4.910000000000025,8.600000000000023,9.69,23.99,27.48123676036206,24.17975500960489,1.5074313901374616,0.0 -2059,2001-03-21,8.600000000000023,9.63,10.4,22.72,26.143610383477935,22.886549615088374,1.3408817750490876,0.0 -2060,2001-03-22,8.800000000000011,10.08,10.99,0.0,1.261321175759193,0.14659482545553104,1.1942869495935566,0.0 -2061,2001-03-23,10.28,14.13,19.19,5.13,6.855802634726456,5.259350194631537,1.0649367549620192,0.0 -2062,2001-03-24,8.650000000000034,13.3,20.34,6.96,8.605834479870259,7.074382414393413,0.950554340568606,0.0 -2063,2001-03-25,4.860000000000014,7.600000000000023,11.46,13.1,15.051942421526247,13.201340558019167,0.8492137825494389,0.0 -2064,2001-03-26,2.7100000000000364,5.2900000000000205,8.200000000000045,0.0,0.4398117942940074,0.08993779971647645,0.7592759828329625,0.0 -2065,2001-03-27,3.0300000000000296,6.7900000000000205,11.67,0.02,0.5905440118886636,0.09993773587894242,0.6793382469540201,0.0 -2066,2001-03-28,3.930000000000007,7.79000000000002,13.0,22.32,24.93948400479452,22.391144024629423,0.6081942223245987,0.0 -2067,2001-03-29,2.3600000000000136,3.81,4.7900000000000205,16.43,17.547423706129248,16.493392450333875,0.5448017719907239,0.0 -2068,2001-03-30,0.2100000000000363,2.6100000000000136,5.300000000000011,1.03,0.9713922007944168,1.086544782186068,0.48825698980465587,0.0 -2069,2001-03-31,-0.169999999999959,5.5400000000000205,12.07000000000005,0.0,0.3936139640650635,0.05048397525683276,0.43777301454782314,0.0 -2070,2001-04-01,1.0500000000000114,8.700000000000045,16.12,0.0,0.492964460143509,0.0451103867047329,0.39266262784309025,0.0 -2071,2001-04-02,5.590000000000032,11.67,18.16,0.0,0.4184398206751956,0.04033876719407585,0.3523238606490144,0.0 -2072,2001-04-03,7.13,9.07000000000005,10.72,0.0,0.3581502718497279,0.03609584971895265,0.31622801093006175,0.0 -2073,2001-04-04,2.19,6.19,9.720000000000027,22.56,24.630610237686163,22.592318402772325,0.28390960815773764,0.0 -2074,2001-04-05,1.9600000000000364,5.680000000000007,7.760000000000048,2.84,3.342727442326231,2.86895164735484,0.2549579608028973,0.0 -2075,2001-04-06,5.520000000000039,8.720000000000027,12.0,21.12,23.378704722032467,21.145947961247238,0.22900999955566115,0.0 -2076,2001-04-07,2.340000000000032,5.06,7.600000000000023,19.54,21.254650343601,19.56326581172497,0.20574418783068876,0.0 -2077,2001-04-08,2.140000000000043,4.100000000000023,5.78000000000003,5.21,5.653005705915107,5.2308688711841045,0.18487531664658421,0.0 -2078,2001-04-09,3.260000000000048,5.180000000000007,7.0,41.33,45.45175074975026,41.34872528017846,0.1661500364681213,0.0 -2079,2001-04-10,3.160000000000025,5.0,7.2000000000000455,18.79,20.780724432405247,18.806807029998563,0.14934300646955678,0.0 -2080,2001-04-11,3.150000000000034,4.210000000000036,5.210000000000036,5.53,6.205187981980922,5.545089442769582,0.1342535636999754,0.0 -2081,2001-04-12,2.2100000000000364,5.080000000000041,8.63,0.0,0.1866027551535711,0.013550731557186895,0.12070283214278851,0.0 -2082,2001-04-13,-1.7899999999999636,2.510000000000048,7.450000000000045,0.0,0.0258272444784069,0.012171626474132943,0.10853120566865557,0.0 -2083,2001-04-14,-1.19,2.0400000000000205,5.390000000000043,0.31,0.2326049940054483,0.2705841225741534,0.14794708309450216,0.0 -2084,2001-04-15,0.7200000000000273,1.8900000000000432,2.640000000000043,37.8,24.334810861009437,37.81494696373002,0.13300011936447612,0.0 -2085,2001-04-16,2.050000000000012,2.9600000000000364,3.990000000000009,7.22,7.636557331976544,7.233423056947769,0.11957706241670647,0.0 -2086,2001-04-17,0.4600000000000364,3.450000000000045,6.170000000000016,0.0,0.5906331907485197,0.01205716790307172,0.10751989451363475,0.0 -2087,2001-04-18,0.910000000000025,3.37,6.600000000000023,11.32,11.445913384889588,11.330832404551735,0.09668748996189962,0.0 -2088,2001-04-19,-0.6299999999999955,1.920000000000016,4.980000000000018,3.97,2.8543978347068912,3.580470079265406,0.4862174106964942,0.0 -2089,2001-04-20,-1.1599999999999682,0.4600000000000364,2.910000000000025,2.29,0.8920404036600585,1.7602339392223505,1.0159834714741438,0.0 -2090,2001-04-21,-1.1099999999999568,0.7600000000000477,2.200000000000045,2.13,0.631407495941412,1.6095625334689807,1.536420938005163,0.0 -2091,2001-04-22,0.4200000000000159,2.590000000000032,4.44,3.49,3.237641466436302,3.660062367169881,1.3663585708352821,0.0 -2092,2001-04-23,-0.2399999999999522,1.7900000000000205,3.38,5.11,3.162195678788551,4.961954457632236,1.5144041132030461,0.0 -2093,2001-04-24,3.06,9.180000000000009,12.47,12.37,16.693792710489326,12.537393453377973,1.3470106598250715,0.0 -2094,2001-04-25,5.180000000000007,6.460000000000036,8.920000000000016,27.5,32.03088496761512,27.64732230566699,1.1996883541580818,0.0 -2095,2001-04-26,3.6100000000000136,7.270000000000039,11.07000000000005,0.03,2.0808876733860604,0.15998028201326428,1.0697080721448176,0.0 -2096,2001-04-27,5.680000000000007,10.89,15.84,1.32,4.074873797697762,1.4349303935028197,0.9547776786419978,0.0 -2097,2001-04-28,8.170000000000016,11.08,14.48,3.13,5.739250325751972,3.2318188658418556,0.8529588128001422,0.0 -2098,2001-04-29,7.53000000000003,10.92,13.4,2.26,4.489189944727342,2.3503566451086777,0.7626021676914644,0.0 -2099,2001-04-30,7.25,11.8,14.3,0.0,1.9211197099835824,0.08030556600156945,0.6822966016898949,0.0 -2100,2001-05-01,7.670000000000016,8.850000000000023,10.15,5.47,7.318693090388512,5.541467880278822,0.6108287214110727,0.0 -2101,2001-05-02,8.220000000000027,11.71,14.22,1.35,2.8941262591962547,1.4136782395590202,0.5471504818520527,0.0 -2102,2001-05-03,8.830000000000041,11.11,14.75,1.02,2.2572679643213425,1.0767974930949462,0.4903529887571065,0.0 -2103,2001-05-04,6.920000000000016,8.910000000000025,11.11,21.12,24.0315120368557,21.170707843071572,0.4396451456855357,0.0 -2104,2001-05-05,7.260000000000048,9.27000000000004,11.66,1.63,2.563960242476946,1.6753090260451586,0.394336119640377,0.0 -2105,2001-05-06,6.7900000000000205,7.94,9.390000000000043,0.0,0.6591625563966024,0.04051527768378817,0.35382084195658886,0.0 -2106,2001-05-07,6.840000000000032,8.710000000000036,9.52000000000004,0.0,0.5611336213485683,0.03625290094225543,0.31756794101433344,0.0 -2107,2001-05-08,8.890000000000043,10.86,12.78,0.0,0.4813684623771366,0.032458303115046015,0.28510963789928745,0.0 -2108,2001-05-09,9.77000000000004,13.93,18.15,0.72,1.2028685660708032,0.7490764001682757,0.2560332377310118,0.0 -2109,2001-05-10,10.09,13.45,18.58,42.14,46.43887125033784,42.16605931096657,0.2299739267644435,0.0 -2110,2001-05-11,10.94,15.42,20.28,0.0,0.3144993189409943,0.023365281971386043,0.20660864479305746,0.0 -2111,2001-05-12,10.15,15.79,20.81,0.0,0.2752712153008414,0.020957796427130408,0.18565084836592705,0.0 -2112,2001-05-13,13.03,17.41,23.08,0.0,0.2417367178821667,0.01880483219207244,0.1668460161738546,0.0 -2113,2001-05-14,9.610000000000014,12.28,17.77,9.58,10.688188950176984,9.596878240082622,0.14996777609123257,0.0 -2114,2001-05-15,9.57000000000005,11.91,13.44,8.47,9.449522858529676,8.485153220506854,0.13481455558437996,0.0 -2115,2001-05-16,10.74,15.43,18.32000000000005,18.2,20.06718151639741,18.213607880720172,0.12120667486420662,0.0 -2116,2001-05-17,5.740000000000009,10.85,12.66,29.4,32.29499182277485,29.412222858574506,0.10898381628969903,0.0 -2117,2001-05-18,3.790000000000021,7.5,10.69,0.32,0.4808245565104565,0.3309810013971692,0.09800281489252988,0.0 -2118,2001-05-19,7.82000000000005,12.34,17.08,0.0,0.1164236417385699,0.009867090808870497,0.08813572408365938,0.0 -2119,2001-05-20,11.0,14.43,18.32000000000005,0.0,0.1036673629846794,0.008867606008277896,0.07926811807538149,0.0 -2120,2001-05-21,11.95,15.36,20.57000000000005,0.0,0.0924146660236867,0.007970519416037901,0.0712975986593436,0.0 -2121,2001-05-22,11.89,14.94,18.97,3.05,3.417502724626491,3.0571651196622573,0.06413247899708602,0.0 -2122,2001-05-23,11.5,15.73,19.73,6.88,7.596622280778358,6.886441857777605,0.05769062121948103,0.0 -2123,2001-05-24,10.83,14.9,19.09,1.25,1.4326583458393505,1.2557922131552737,0.051898408064207285,0.0 -2124,2001-05-25,10.66,14.85,18.81,0.07,0.1354374470187458,0.07520857642437914,0.04668983163982816,0.0 -2125,2001-05-26,12.5,17.04,21.88,0.0,0.0527168670421619,0.004684146842376128,0.04200568479745203,0.0 -2126,2001-05-27,11.74,17.65,23.4,0.0,0.0472130921375065,0.004212842196239486,0.037792842601212545,0.0 -2127,2001-05-28,13.16,18.74,24.17,0.01,0.0532399002618599,0.01378921951622682,0.034003623084985724,0.0 -2128,2001-05-29,14.12,19.9,25.25,0.0,0.0379249453376927,0.0034084051652969916,0.030595217919688732,0.0 -2129,2001-05-30,15.89,21.17,25.9,0.21,0.263637264290332,0.2130660330821557,0.027529184837533038,0.0 -2130,2001-05-31,8.87,15.12,19.22,1.23,1.375462359499117,1.2327581901347744,0.024770994702758592,0.0 -2131,2001-06-01,6.240000000000009,11.67,15.97,0.0,0.0273840170675461,0.0024813676907229462,0.022289627012035646,0.0 -2132,2001-06-02,6.69,10.36,13.01,16.18,17.716672864428798,16.18223241863609,0.020057208375944335,0.0 -2133,2001-06-03,2.06,5.970000000000027,8.07000000000005,0.08,0.1075604859772526,0.08200851918043975,0.01804868919550458,0.0 -2134,2001-06-04,5.2000000000000455,10.14,14.42,0.0,0.0200286864421352,0.0018071348745547697,0.01624155432094981,0.0 -2135,2001-06-05,9.29000000000002,15.29,21.37,6.11,6.69899747384977,6.111625990343614,0.014615563977335702,0.0 -2136,2001-06-06,9.510000000000048,11.58,13.22,4.28,4.696149494829186,4.281463042302945,0.013152521674391108,0.0 -2137,2001-06-07,10.19,13.23,15.84,1.49,1.6437733504930732,1.4913164554787566,0.011836066195634449,0.0 -2138,2001-06-08,11.0,12.41,14.44,23.62,25.840446064499808,23.62118458110358,0.01065148509205531,0.0 -2139,2001-06-09,11.21,12.34,13.29,12.97,14.193837882397329,12.97106593769685,0.009585547395206211,0.0 -2140,2001-06-10,7.580000000000041,10.15,11.59,1.54,1.6944701425234778,1.5409591938762661,0.00862635351894016,0.0 -2141,2001-06-11,4.260000000000048,9.04000000000002,12.1,0.0,0.0094860301899276,0.0008631529759522149,0.007763200542987945,0.0 -2142,2001-06-12,8.830000000000041,13.88,18.58,0.0,0.0085297759408346,0.0007767392738797733,0.006986461269108172,0.0 -2143,2001-06-13,10.02,15.25,20.54,11.14,12.188751321027976,11.140698985654025,0.006287475615084339,0.0 -2144,2001-06-14,11.24,15.55,18.62,0.0,0.0068985439410575,0.0006290225487702505,0.005658453066314089,0.0 -2145,2001-06-15,12.24,15.79,20.05,15.86,17.34838956584174,15.860566068024665,0.00509238504164826,0.0 -2146,2001-06-16,9.930000000000009,12.93,16.2,5.67,6.205466683528416,5.670509418889994,0.004582966151654429,0.0 -2147,2001-06-17,9.29000000000002,10.56,11.53,25.28,27.64754442861788,25.28045844271619,0.00412452343546881,0.0 -2148,2001-06-18,8.54000000000002,9.970000000000027,11.36,2.59,2.836562589937443,2.5904125706769894,0.0037119527584790722,0.0 -2149,2001-06-19,9.210000000000036,12.85,15.74,0.02,0.0259317469034578,0.020371291119825698,0.003340661638653374,0.0 -2150,2001-06-20,9.860000000000014,14.99,19.54,0.0,0.0036549896418863,0.0003341437930329043,0.0030065178456204697,0.0 -2151,2001-06-21,13.46,17.69,21.97,0.0,0.0032883529869286,0.0003007146609407613,0.0027058031846797083,0.0 -2152,2001-06-22,11.6,17.29,22.06,0.0,0.0029585967037366,0.00027063124596783596,0.0024351719387118724,0.0 -2153,2001-06-23,12.04,17.35,21.47,0.0,0.0026619914329116,0.00024355844342073093,0.0021916134952911417,0.0 -2154,2001-06-24,14.76,19.82000000000005,25.16,0.0,0.0023951886424468,0.00021919476040654416,0.0019724187348845977,0.0 -2155,2001-06-25,15.1,21.1,26.43,0.0,0.0021551810346709,0.00019726893538236532,0.0017751497995022324,0.0 -2156,2001-06-26,18.61,23.08,28.15,0.0,0.001939267202436,0.00017753689941596367,0.0015976129000862687,0.0 -2157,2001-06-27,11.84,18.14,23.78,6.0,6.562470717009283,6.000159779044289,0.0014378338557975777,0.0 -2158,2001-06-28,12.89,15.48,17.47,1.07,1.1715663412065245,1.0701437977661916,0.001294036089606112,0.0 -2159,2001-06-29,14.08,18.64,23.14,0.0,0.0014130226167718,0.00012941525699720422,0.0011646208326089077,0.0 -2160,2001-06-30,15.46,19.93,24.47,0.0,0.0012715502111007,0.00011647151798180613,0.0010481493146271017,0.0 -2161,2001-07-01,13.17,17.79,21.49,0.0,0.001144257404888,0.00010482257344907515,0.0009433267411780265,0.0 -2162,2001-07-02,15.36,19.99,25.06,0.0,0.0010297200814459,9.433886402646773e-05,0.0008489878771515588,0.0 -2163,2001-07-03,15.99,20.8,25.3,0.13,0.143075714475227,0.13008490380146806,0.0007640840756834942,0.0 -2164,2001-07-04,16.91,20.2,24.41,9.58,10.476125948225642,9.580076412468655,0.0006876716070285849,0.0 -2165,2001-07-05,17.76,21.83,26.38,0.0,0.000750467607954,6.877045014411989e-05,0.000618901156884465,0.0 -2166,2001-07-06,11.93,20.52,25.9,5.34,5.839721243135401,5.340061892780107,0.0005570083767769195,0.0 -2167,2001-07-07,13.37,14.03,14.53,14.3,15.637004041094146,14.300055702995838,0.0005013053809404042,0.0 -2168,2001-07-08,13.11,14.26,16.62,9.62,10.519577186313494,9.620050132286186,0.00045117309475276827,0.0 -2169,2001-07-09,11.37,15.85,20.02,0.0,0.0004922614733374,4.511872542011685e-05,0.0004060543693326514,0.0 -2170,2001-07-10,13.11,18.64,24.16,0.0,0.0004430146712636,4.060658384058683e-05,0.0003654477854920646,0.0 -2171,2001-07-11,9.730000000000018,13.83,16.22,1.36,1.4874965211183917,1.3600365457075385,0.0003289020779537586,0.0 -2172,2001-07-12,11.65,17.5,20.57000000000005,26.45,28.922224594023845,26.450032890960273,0.0002960111176814629,0.0 -2173,2001-07-13,13.16,17.99,21.35,5.6,6.12366690480107,5.600029601721271,0.0002664093964101103,0.0 -2174,2001-07-14,12.42,16.19,19.64,33.2,36.30297280981031,33.20002664143334,0.00023976796307376117,0.0 -2175,2001-07-15,8.020000000000039,10.22,12.53,23.71,25.92606259659379,23.7100239771962,0.00021579076687480798,0.0 -2176,2001-07-16,8.160000000000025,11.26,13.92,0.82,0.8968679017978993,0.8200215794005984,0.00019421136627635027,0.0 -2177,2001-07-17,10.91,15.14,19.65,22.61,24.7232131808636,22.610019421398995,0.0001747899672816991,0.0 -2178,2001-07-18,11.25,13.96,17.31,2.85,3.116535363780721,2.850017479209245,0.00015731075803688413,0.0 -2179,2001-07-19,10.1,13.73,17.61,2.23,2.438574639557312,2.2300157312479416,0.0001415795100951783,0.0 -2180,2001-07-20,6.75,10.49,12.66,1.15,1.2576268527099312,1.1500141580904408,0.00012742141965420541,0.0 -2181,2001-07-21,10.7,15.47,19.45,0.07,0.0766807824790129,0.07001274225490466,0.00011467916474955344,0.0 -2182,2001-07-22,14.97,19.67,23.93,0.0,0.0001250827664653,1.1468007955552615e-05,0.00010321115679400082,0.0 -2183,2001-07-23,14.0,18.53,22.88,0.01,0.0110471159843516,0.010010321189778553,9.28899670154483e-05,0.0 -2184,2001-07-24,15.34,18.32000000000005,21.35,0.08,0.0875776573862607,0.08000928905672176,8.360091029368577e-05,0.0 -2185,2001-07-25,15.65,20.07000000000005,24.53,0.1,0.1094366106917364,0.10000836013964567,7.524077064801065e-05,0.0 -2186,2001-07-26,15.83,20.58,25.57000000000005,0.02,0.0219511491159899,0.020007524116443957,6.771665420405218e-05,0.0 -2187,2001-07-27,16.72,20.93,26.42,0.51,0.5577355407806612,0.5100067716973175,6.0944956886566556e-05,0.0 -2188,2001-07-28,15.34,17.97,19.81,2.13,2.3291240928397148,2.130006094521525,5.485043536130182e-05,0.0 -2189,2001-07-29,16.51,20.28,24.42,1.29,1.4106158478472397,1.2900054850644638,4.93653708975388e-05,0.0 -2190,2001-07-30,16.88,20.95,26.05,0.0,5.38403965336336e-05,4.936554041122101e-06,4.44288168564167e-05,0.0 -2191,2001-07-31,17.42,21.44,26.05,0.0,4.845610976658881e-05,4.442895416239452e-06,3.998592144017724e-05,0.0 -2192,2001-08-01,17.47,22.25,27.8,0.0,4.361029862959367e-05,3.9986032657942895e-06,3.598731817438295e-05,0.0 -2193,2001-08-02,16.22,22.65,26.64,16.73,18.293529400784383,16.730003598740826,3.2388577348311204e-05,0.0 -2194,2001-08-03,13.07000000000005,15.51,17.78,18.75,20.502303127050773,18.75000323886503,2.9149712316491048e-05,0.0 -2195,2001-08-04,11.81,14.84,18.01,5.68,6.210852118003076,5.680002914977142,2.6234735174283785e-05,0.0 -2196,2001-08-05,11.38,14.44,17.54,0.24,0.2624576401886954,0.24000262347830498,2.3611256869305457e-05,0.0 -2197,2001-08-06,12.94,15.03,16.57000000000005,8.73,9.545881640079973,8.730002361129566,2.125012730446102e-05,0.0 -2198,2001-08-07,15.16,18.06,21.18,3.86,4.220756707560219,3.8600021250158716,1.9125111432905815e-05,0.0 -2199,2001-08-08,13.92,16.38,19.68,3.09,3.378794592153253,3.0900019125136873,1.7212597745317694e-05,0.0 -2200,2001-08-09,11.99,14.88,18.12,4.42,4.833086702452533,4.420001721261835,1.5491335909905527e-05,0.0 -2201,2001-08-10,7.950000000000045,12.84,16.88,0.0,1.6895095703012603e-05,1.5491352603032297e-06,1.3942200649602298e-05,0.0 -2202,2001-08-11,10.12,13.76,18.48,0.0,1.5205561799131336e-05,1.3942214171031743e-06,1.2547979232499124e-05,0.0 -2203,2001-08-12,10.38,15.53,21.22,0.0,1.3684985909072343e-05,1.2547990184854613e-06,1.1293180214013663e-05,0.0 -2204,2001-08-13,12.71,17.56,22.77,0.0,1.2316471352986289e-05,1.129318908541989e-06,1.0163861305471674e-05,0.0 -2205,2001-08-14,15.11,20.71,26.51,0.0,1.108481128592148e-05,1.0163868491309464e-06,9.147474456340727e-06,0.0 -2206,2001-08-15,16.15,22.19,28.26,0.24,0.2624390041979049,0.24000091474802768,8.232726428653885e-06,0.0 -2207,2001-08-16,14.49,17.56,21.0,0.01,0.0109435215074891,0.010000823273114329,7.40945331432582e-06,0.0 -2208,2001-08-17,14.14,17.16,20.59,0.63,0.688884278984768,0.6300007409457133,6.668507601008519e-06,0.0 -2209,2001-08-18,14.28,19.57000000000005,26.27,4.89,5.346998715737204,4.890000666851069,6.0016565315810795e-06,0.0 -2210,2001-08-19,14.71,17.47,23.96,30.35,33.18634402920894,30.350000600165906,5.401490627868462e-06,0.0 -2211,2001-08-20,14.43,16.34,19.38,5.54,6.057742617749845,5.540000540149266,4.861341362132481e-06,0.0 -2212,2001-08-21,14.07000000000005,17.82000000000005,22.5,0.01,0.0109398446300929,0.010000486134300603,4.375207061530448e-06,0.0 -2213,2001-08-22,14.26,18.44,24.01,0.0,4.771619254040335e-06,4.375208393079506e-07,3.937686222222497e-06,0.0 -2214,2001-08-23,14.53,18.94,24.31,0.0,4.294455387671296e-06,3.9376873007771613e-07,3.5439174921447804e-06,0.0 -2215,2001-08-24,15.65,20.07000000000005,26.17,0.0,3.8650082767237255e-06,3.543918365774005e-07,3.18952565556738e-06,0.0 -2216,2001-08-25,15.17,20.19,26.91,0.0,3.478506175586083e-06,3.1895263632070135e-07,2.8705730192466786e-06,0.0 -2217,2001-08-26,15.97,20.93,28.32000000000005,0.0,3.130654526521252e-06,2.8705735924347537e-07,2.583515660003203e-06,0.0 -2218,2001-08-27,15.31,21.02,27.76,0.0,2.8175882383495568e-06,2.583516124285523e-07,2.3251640475746508e-06,0.0 -2219,2001-08-28,15.05,19.14,25.16,0.01,0.010937078656997,0.010000232516442364,2.0926476052103194e-06,0.0 -2220,2001-08-29,14.92,19.08,25.7,22.37,24.46057458906129,22.37000020926479,1.8833828142277267e-06,0.0 -2221,2001-08-30,11.34,13.37,15.13,19.33,21.13647334104549,19.330000188338303,1.6950445081310906e-06,0.0 -2222,2001-08-31,9.75,12.36,15.85,18.84,20.6006805370584,18.84000016950447,1.5255400373321529e-06,0.0 -2223,2001-09-01,8.170000000000016,9.77000000000004,11.52,2.49,2.7227028279924177,2.4900001525540203,1.3729860174104167e-06,0.0 -2224,2001-09-02,8.03000000000003,11.75,16.34,0.0,1.497380038493776e-06,1.3729861485374327e-07,1.2356874025566734e-06,0.0 -2225,2001-09-03,9.5,15.06,20.79,10.23,11.18603866095107,10.230000123568752,1.112118651679718e-06,0.0 -2226,2001-09-04,7.28000000000003,9.450000000000044,12.21,32.69,35.74502171845703,32.69000011121187,1.0009067779085031e-06,0.0 -2227,2001-09-05,4.720000000000027,7.56,9.5,0.02,0.021870177246147,0.02000010009068476,9.00816093149026e-07,0.0 -2228,2001-09-06,5.31,11.27,14.81,5.76,6.2982976515079,5.760000090081615,8.107344781895357e-07,0.0 -2229,2001-09-07,10.66,12.6,14.92,0.39,0.4264480544895366,0.3900000810734524,7.296610257984662e-07,0.0 -2230,2001-09-08,9.420000000000016,12.52,15.11,12.8,13.996215615940477,12.800000072966107,6.566949195152058e-07,0.0 -2231,2001-09-09,5.9500000000000455,8.600000000000023,12.43,2.51,2.7445709660847752,2.5100000656694945,5.9102542456392e-07,0.0 -2232,2001-09-10,5.06,6.970000000000027,9.79000000000002,0.22,0.2405605867941906,0.2200000591025449,5.319228796777182e-07,0.0 -2233,2001-09-11,5.100000000000023,8.450000000000045,12.66,0.26,0.2842986936499435,0.26000005319228997,4.787305897418005e-07,0.0 -2234,2001-09-12,6.480000000000018,9.77000000000004,13.73,0.03,0.0328041505884315,0.030000047873060567,4.308575291734223e-07,0.0 -2235,2001-09-13,7.0,12.24,16.91,10.65,11.645288581989382,10.650000043085754,3.8777177496477954e-07,0.0 -2236,2001-09-14,6.420000000000016,8.240000000000009,9.56,15.76,17.23283992024052,15.760000038777179,3.489945964223482e-07,0.0 -2237,2001-09-15,6.340000000000032,9.88,12.65,4.64,5.073628252925811,4.64000003489946,3.1409513593289114e-07,0.0 -2238,2001-09-16,4.260000000000048,6.520000000000039,8.79000000000002,19.07,20.85217351604256,19.070000031409513,2.82685621653352e-07,0.0 -2239,2001-09-17,2.9600000000000364,5.170000000000016,7.75,3.42,3.739613955561592,3.4200000282685625,2.5441705893215425e-07,0.0 -2240,2001-09-18,3.170000000000016,6.75,9.81,1.12,1.2246690742322612,1.1200000254417064,2.2897535258869018e-07,0.0 -2241,2001-09-19,6.670000000000016,9.38,11.3,13.27,14.510138582820536,13.270000022897536,2.0607781696511976e-07,0.0 -2242,2001-09-20,9.390000000000043,12.18,16.25,5.25,5.740635209584553,5.250000020607782,1.8547003497319967e-07,0.0 -2243,2001-09-21,9.180000000000009,11.51,15.41,0.08,0.0874765448996656,0.08000001854700374,1.6692303123659912e-07,0.0 -2244,2001-09-22,10.11,11.15,12.1,4.82,5.270449825267194,4.820000016692304,1.5023072791912194e-07,0.0 -2245,2001-09-23,9.62,10.93,12.24,15.5,16.94854154764346,15.500000015023073,1.3520765497021776e-07,0.0 -2246,2001-09-24,5.25,8.5,11.55,0.0,1.474574405949227e-07,1.3520765624185288e-08,1.2168688934603248e-07,0.0 -2247,2001-09-25,5.2900000000000205,8.260000000000048,13.2,0.0,1.327116946818131e-07,1.2168689037605693e-08,1.095182003084268e-07,0.0 -2248,2001-09-26,4.010000000000048,8.56,15.89,0.01,0.0109346622687829,0.010000010951820114,9.856638019415214e-08,0.0 -2249,2001-09-27,4.770000000000039,10.1,18.1,0.01,0.0109346503247293,0.010000009856638088,8.870974210715702e-08,0.0 -2250,2001-09-28,5.920000000000016,12.08,18.41,0.31,0.3389709244228592,0.3100000088709743,7.98387678417016e-08,0.0 -2251,2001-09-29,10.58,11.67,12.79,15.2,16.620505186026218,15.200000007983876,7.185489101319227e-08,0.0 -2252,2001-09-30,11.22,13.37,17.88,0.01,0.0109346211931838,0.010000007185489138,6.466940187595831e-08,0.0 -2253,2001-10-01,13.7,16.66,21.55,0.0,7.052843157925008e-08,6.466940216686763e-09,5.820246165927154e-08,0.0 -2254,2001-10-02,14.36,17.51,22.21,0.03,0.0328036919603657,0.030000005820246187,5.2382215469780736e-08,0.0 -2255,2001-10-03,10.71,15.92,20.46,29.45,32.20222868635156,29.45000000523822,4.7143993903716104e-08,0.0 -2256,2001-10-04,7.32000000000005,10.59,15.52,0.01,0.0109345942434849,0.010000004714399406,4.242959449788438e-08,0.0 -2257,2001-10-05,8.13,13.94,17.56,0.23,0.2514945313236659,0.23000000424295947,3.818663503557325e-08,0.0 -2258,2001-10-06,12.64,15.78,20.65,34.46,37.68043462782775,34.460000003818664,3.4367971521872544e-08,0.0 -2259,2001-10-07,12.51,14.63,17.16,1.17,1.2793415483880328,1.170000003436797,3.093117436146915e-08,0.0 -2260,2001-10-08,7.87,10.23,13.07000000000005,12.89,14.09462573935972,12.890000003093117,2.783805691866716e-08,0.0 -2261,2001-10-09,7.75,10.36,12.47,0.22,0.2405599725818798,0.2200000027838057,2.5054251221409838e-08,0.0 -2262,2001-10-10,6.980000000000018,11.05,18.4,0.01,0.0109345701524175,0.010000002505425126,2.254882609490246e-08,0.0 -2263,2001-10-11,6.710000000000036,12.0,19.0,0.01,0.0109345674200017,0.010000002254882612,2.0293943481875437e-08,0.0 -2264,2001-10-12,9.680000000000009,14.25,22.16,0.01,0.0109345649608274,0.01000000202939435,1.8264549130823104e-08,0.0 -2265,2001-10-13,10.09,15.2,23.16,0.0,1.9919311284782824e-08,1.8264549154027908e-09,1.6438094215420313e-08,0.0 -2266,2001-10-14,10.26,13.35,18.8,0.07,0.0765418177251949,0.07000000164380943,1.4794284791998692e-08,0.0 -2267,2001-10-15,9.840000000000032,13.87,20.75,0.03,0.0328036446194198,0.030000001479428478,1.3314856311276355e-08,0.0 -2268,2001-10-16,8.81,12.65,19.42,0.0,1.452117785235784e-08,1.331485632360834e-09,1.1983370678915521e-08,0.0 -2269,2001-10-17,8.710000000000036,12.5,17.93,0.0,1.3069060049146166e-08,1.1983370688904429e-09,1.078503361002508e-08,0.0 -2270,2001-10-18,10.46,13.27,17.34,3.53,3.859893630137674,3.5300000010785033,9.70653024821347e-09,0.0 -2271,2001-10-19,10.22,13.62,19.16,0.03,0.0328036390707164,0.030000000970653026,8.735877222736752e-09,0.0 -2272,2001-10-20,8.910000000000025,12.92,15.45,4.5,4.9205442822440135,4.500000000873587,7.862289499932225e-09,0.0 -2273,2001-10-21,7.56,10.69,14.08,3.17,3.4662500851327964,3.170000000786229,7.076060549509013e-09,0.0 -2274,2001-10-22,6.930000000000007,9.78000000000003,16.1,0.03,0.032803636201927,0.030000000707606053,6.3684544942098206e-09,0.0 -2275,2001-10-23,6.94,10.08,13.47,11.24,12.290426145908846,11.240000000636845,5.7316090445067224e-09,0.0 -2276,2001-10-24,8.510000000000048,10.45,13.36,7.11,7.774459957143227,7.110000000573161,5.158448139827536e-09,0.0 -2277,2001-10-25,4.4500000000000455,7.950000000000045,11.77,2.89,3.160082882992729,2.890000000515845,4.642603325659686e-09,0.0 -2278,2001-10-26,4.2900000000000205,10.17,15.0,0.0,5.063221596615281e-09,4.642603327158967e-10,4.178342992943789e-09,0.0 -2279,2001-10-27,8.470000000000027,10.94,15.8,0.0,4.556899434768305e-09,4.178342994158207e-10,3.760508693527969e-09,0.0 -2280,2001-10-28,6.010000000000048,10.47,17.12,0.0,4.101209489521261e-09,3.7605086945116474e-10,3.3844578240768042e-09,0.0 -2281,2001-10-29,5.78000000000003,10.72,18.34,0.01,0.0109345465193478,0.010000000338445782,3.046012041589446e-09,0.0 -2282,2001-10-30,6.37,11.28,19.47,0.01,0.0109345461502389,0.010000000304601204,2.7414108373659624e-09,0.0 -2283,2001-10-31,3.2700000000000387,10.41,18.63,14.08,15.395836305178824,14.080000000274142,2.4672697535770894e-09,0.0 -2284,2001-11-01,1.8000000000000114,5.270000000000039,9.550000000000011,0.0,2.690803542480136e-09,2.467269754000531e-10,2.2205427781770365e-09,0.0 -2285,2001-11-02,1.06,4.960000000000036,11.28,0.0,2.4217231876148873e-09,2.220542778520024e-10,1.998488500325034e-09,0.0 -2286,2001-11-03,0.7700000000000387,4.600000000000023,12.42,0.0,2.1795508683534374e-09,1.9984885006028542e-10,1.7986396502647487e-09,0.0 -2287,2001-11-04,0.660000000000025,5.160000000000025,10.49,0.02,0.020126580463022,0.020000000179863964,1.6187756852157705e-09,0.0 -2288,2001-11-05,2.9600000000000364,5.390000000000043,7.79000000000002,0.0,0.0001742669196147,1.618775685398048e-10,1.4568981166759657e-09,0.0 -2289,2001-11-06,3.31,5.410000000000025,6.7900000000000205,15.82,17.298603591790226,15.82000000014569,1.3112083049936047e-09,0.0 -2290,2001-11-07,5.88,7.38,7.950000000000045,14.85,16.237937251478435,14.85000000013112,1.180087474482285e-09,0.0 -2291,2001-11-08,-0.8999999999999773,3.420000000000016,7.330000000000041,26.7,21.442492003047278,24.13147676220864,2.5685232389714487,0.0 -2292,2001-11-09,-2.819999999999993,-1.2799999999999727,0.5600000000000023,1.41,0.0172707784947293,0.2336094674556224,3.7449137715158263,-0.9599999999999795 -2293,2001-11-10,-5.21999999999997,-2.039999999999964,2.450000000000045,0.0,0.0,0.0,3.7449137715158263,-1.769999999999968 -2294,2001-11-11,-5.349999999999966,-1.17999999999995,3.0,0.0,0.0,0.0,3.7449137715158263,-1.3274999999999544 -2295,2001-11-12,-2.19,-0.2699999999999818,1.0100000000000475,1.24,0.0677846085948516,0.3913750000000127,4.593538771515814,-0.534374999999975 -2296,2001-11-13,-1.1399999999999864,2.010000000000048,4.0,0.59,0.677689824265724,1.0868408513531955,4.096697920162618,0.0 -2297,2001-11-14,-4.0499999999999545,-0.6699999999999591,1.7700000000000389,0.0,0.0,0.0,4.096697920162618,-0.5024999999999693 -2298,2001-11-15,-4.919999999999959,-1.4499999999999886,4.470000000000027,0.0,0.0,0.0,4.096697920162618,-1.2131249999999838 -2299,2001-11-16,-3.9499999999999886,-0.5099999999999909,5.830000000000041,0.0,0.0,0.0,4.096697920162618,-0.6857812499999891 -2300,2001-11-17,-3.17999999999995,1.670000000000016,7.25,0.01,0.2210256019901784,0.5338418046282614,3.572856115534357,0.0 -2301,2001-11-18,0.5600000000000023,2.94,7.900000000000034,0.01,0.5873462391930551,0.4560811209020333,3.126774994632324,0.0 -2302,2001-11-19,-2.599999999999966,-0.1099999999999568,2.3500000000000227,0.0,0.0,0.0,3.126774994632324,-0.0824999999999676 -2303,2001-11-20,-3.739999999999952,-1.0199999999999818,1.830000000000041,0.0,0.0,0.0,3.126774994632324,-0.7856249999999783 -2304,2001-11-21,-4.13,-1.099999999999966,2.87,0.0,0.0,0.0,3.126774994632324,-1.021406249999969 -2305,2001-11-22,-2.579999999999984,-0.169999999999959,0.8799999999999955,13.48,0.4714752148990231,3.428439306358385,13.17833568827394,-0.3828515624999615 -2306,2001-11-23,-3.37,-1.2899999999999636,1.0400000000000205,3.23,0.1372340657671248,0.7617233560090817,15.646612332264858,-1.0632128906249632 -2307,2001-11-24,-2.62,0.5600000000000023,1.580000000000041,0.67,0.0741847579506734,0.6955267844222743,15.621085547842586,0.0 -2308,2001-11-25,1.6100000000000136,4.020000000000039,6.78000000000003,1.43,3.44600229752345,4.567166857011208,12.483918690831379,0.0 -2309,2001-11-26,3.3600000000000136,4.390000000000043,6.090000000000032,6.53,9.282928556593172,8.862473066279803,10.151445624551577,0.0 -2310,2001-11-27,-2.2199999999999704,0.8500000000000227,3.5400000000000205,8.22,3.303376301868501,5.664312571690468,12.707133052861112,0.0 -2311,2001-11-28,-0.6399999999999864,1.6400000000000432,3.07000000000005,9.71,4.9641878344265145,9.261940156663918,13.155192896197196,0.0 -2312,2001-11-29,-1.0699999999999932,3.2800000000000296,5.07000000000005,24.82,17.669197378783274,23.213034352685177,14.762158543512019,0.0 -2313,2001-11-30,5.170000000000016,7.050000000000011,7.720000000000027,22.1,29.262219500147705,25.092077901674067,11.770080641837954,0.0 -2314,2001-12-01,5.590000000000032,6.78000000000003,8.19,0.7,5.052850695928981,2.8406569550441,9.629423686793853,0.0 -2315,2001-12-02,4.170000000000016,6.160000000000025,8.410000000000025,0.0,3.4389100924762195,1.6079435953090013,8.021480091484852,0.0 -2316,2001-12-03,4.31,6.720000000000027,9.29000000000002,0.0,3.3231146996841074,1.2497262541277812,6.771753837357071,0.0 -2317,2001-12-04,5.080000000000041,6.4500000000000455,8.480000000000018,5.54,8.893004930782087,6.536154517361082,5.77559931999599,0.0 -2318,2001-12-05,5.31,6.930000000000007,7.740000000000009,8.29,11.83997147186381,9.099595233209405,4.966004086786585,0.0 -2319,2001-12-06,1.3400000000000318,4.53000000000003,7.850000000000023,0.0,1.5258522303759054,0.66814384058321,4.297860246203375,0.0 -2320,2001-12-07,-2.0,1.7600000000000475,7.600000000000023,0.0,0.2887287010422895,0.5582746041452487,3.7395856420581266,0.0 -2321,2001-12-08,-4.5499999999999545,-1.1499999999999773,4.740000000000009,0.0,0.0,0.0,3.7395856420581266,-0.862499999999983 -2322,2001-12-09,-4.669999999999959,-2.319999999999993,1.4700000000000273,0.0,0.0,0.0,3.7395856420581266,-1.9556249999999906 -2323,2001-12-10,-4.75,-2.329999999999984,1.9300000000000068,0.0,0.0,0.0,3.7395856420581266,-2.2364062499999857 -2324,2001-12-11,-4.699999999999989,-0.5799999999999841,1.990000000000009,0.0,0.0,0.0,3.7395856420581266,-0.9941015624999845 -2325,2001-12-12,-2.909999999999968,-1.42999999999995,-0.3199999999999932,0.0,0.0,0.0,3.7395856420581266,-1.3210253906249587 -2326,2001-12-13,-10.64,-3.4499999999999886,3.390000000000043,0.0,0.0,0.0,3.7395856420581266,-2.917756347656231 -2327,2001-12-14,-12.29,-8.69,-3.669999999999959,0.0,0.0,0.0,3.7395856420581266,-7.2469390869140575 -2328,2001-12-15,-12.41,-9.909999999999968,-4.88,0.0,0.0,0.0,3.7395856420581266,-9.24423477172849 -2329,2001-12-16,-12.02,-5.919999999999959,-2.25,0.0,0.0,0.0,3.7395856420581266,-6.751058692932092 -2330,2001-12-17,-8.519999999999982,-5.63,-1.009999999999991,0.0,0.0,0.0,3.7395856420581266,-5.910264673233023 -2331,2001-12-18,-8.609999999999957,-5.96999999999997,-1.19,0.0,0.0,0.0,3.7395856420581266,-5.9550661683082335 -2332,2001-12-19,-8.44,-6.139999999999986,-3.4499999999999886,0.0,0.0,0.0,3.7395856420581266,-6.093766542077049 -2333,2001-12-20,-11.5,-5.949999999999989,-0.8999999999999773,0.0,0.0,0.0,3.7395856420581266,-5.985941635519254 -2334,2001-12-21,-12.01,-4.2999999999999545,-1.9599999999999795,3.73,0.0,0.0,7.469585642058126,-4.721485408879779 -2335,2001-12-22,-7.139999999999986,-2.56,-0.3299999999999841,6.28,0.0,0.0,13.749585642058126,-3.1003713522199448 -2336,2001-12-23,-15.63,-8.829999999999984,-3.2799999999999727,1.07,0.0,0.0,14.819585642058126,-7.397592838054974 -2337,2001-12-24,-16.42999999999995,-7.799999999999954,-3.25,0.91,0.0,0.0,15.729585642058126,-7.699398209513708 -2338,2001-12-25,-2.859999999999957,-0.7899999999999636,0.4600000000000364,11.06,0.0698112449557425,1.5324096385543413,25.257176003503787,-2.5173495523783997 -2339,2001-12-26,-5.269999999999982,-3.2199999999999704,-1.42999999999995,12.09,0.0,0.0,37.34717600350379,-3.044337388094578 -2340,2001-12-27,-4.69,-1.5699999999999932,0.7700000000000387,6.51,0.1005534030301296,0.9180769230769625,42.93909908042683,-1.9385843470236392 -2341,2001-12-28,1.0400000000000205,2.340000000000032,3.2700000000000387,29.72,24.61991929895121,33.20912842221307,39.44997065821376,0.0 -2342,2001-12-29,-0.1099999999999568,3.5200000000000387,4.7000000000000455,39.47,31.980175799210212,43.57910693848591,35.34086371972785,0.0 -2343,2001-12-30,-6.899999999999977,-3.4699999999999704,-0.0399999999999636,0.07,0.0,0.0,35.41086371972785,-2.602499999999978 -2344,2001-12-31,-8.799999999999955,-5.669999999999959,-1.17999999999995,0.0,0.0,0.0,35.41086371972785,-4.903124999999964 -2345,2002-01-01,-8.899999999999977,-5.509999999999991,0.0400000000000204,0.0,0.0,0.0,35.41086371972785,-5.358281249999984 -2346,2002-01-02,-9.509999999999993,-6.339999999999975,-0.5799999999999841,0.0,0.0,0.0,35.41086371972785,-6.094570312499977 -2347,2002-01-03,-8.20999999999998,-2.2099999999999795,1.5300000000000296,0.0,0.0,0.0,35.41086371972785,-3.181142578124979 -2348,2002-01-04,-6.70999999999998,-2.4499999999999886,2.62,0.0,0.0,0.0,35.41086371972785,-2.632785644531236 -2349,2002-01-05,-7.25,-4.17999999999995,2.140000000000043,0.0,0.0,0.0,35.41086371972785,-3.7931964111327714 -2350,2002-01-06,-7.009999999999991,-3.599999999999966,1.88,0.0,0.0,0.0,35.41086371972785,-3.6482991027831675 -2351,2002-01-07,-6.359999999999957,-4.009999999999991,-0.8799999999999955,0.01,0.0,0.0,35.42086371972785,-3.919574775695785 -2352,2002-01-08,-6.819999999999993,-2.9899999999999523,3.82000000000005,0.0,0.0,0.0,35.42086371972785,-3.2223936939239106 -2353,2002-01-09,-7.009999999999991,-4.019999999999982,1.5200000000000389,0.0,0.0,0.0,35.42086371972785,-3.820598423480964 -2354,2002-01-10,-6.909999999999968,-4.17999999999995,1.6000000000000227,0.0,0.0,0.0,35.42086371972785,-4.090149605870203 -2355,2002-01-11,-6.87,-2.349999999999966,2.37,0.0,0.0,0.0,35.42086371972785,-2.785037401467525 -2356,2002-01-12,-3.2999999999999545,-0.8499999999999659,4.210000000000036,0.0,0.0,0.0,35.42086371972785,-1.3337593503668557 -2357,2002-01-13,-5.06,-1.5199999999999818,4.960000000000036,0.0,0.0,0.0,35.42086371972785,-1.4734398375917004 -2358,2002-01-14,-5.81,-2.919999999999959,2.080000000000041,0.0,0.0,0.0,35.42086371972785,-2.5583599593978943 -2359,2002-01-15,-3.849999999999966,-0.7099999999999795,1.87,9.82,1.1129203108044612,3.2103846153846343,42.030479104343215,-1.1720899898494581 -2360,2002-01-16,-1.12,-0.2799999999999727,0.160000000000025,3.8,0.0,0.4750000000000649,45.355479104343146,-0.5030224974623441 -2361,2002-01-17,-5.019999999999982,-1.44,1.0300000000000296,0.0,0.0,0.0,45.355479104343146,-1.205755624365586 -2362,2002-01-18,-5.449999999999989,-1.7999999999999543,2.07000000000005,0.0,0.0,0.0,45.355479104343146,-1.6514389060913621 -2363,2002-01-19,-3.1399999999999864,1.0100000000000475,2.12,3.03,0.494816524325615,2.838226830615057,45.547252273728084,0.0 -2364,2002-01-20,0.5800000000000409,2.44,4.850000000000023,0.0,1.7350441739291804,3.803796114794808,41.74345615893328,0.0 -2365,2002-01-21,0.1400000000000432,4.710000000000036,8.970000000000027,0.0,5.291877321479438,6.876483751145542,34.866972407787735,0.0 -2366,2002-01-22,-2.37,2.260000000000048,5.720000000000027,2.67,2.900726485080796,4.829042542174314,32.707929865613416,0.0 -2367,2002-01-23,1.7300000000000182,4.740000000000009,6.800000000000011,9.09,14.450959293369344,14.896082515864633,26.901847349748785,0.0 -2368,2002-01-24,3.180000000000007,4.050000000000011,5.19,12.95,17.87053980630472,17.299149204699493,22.55269814504929,0.0 -2369,2002-01-25,0.0900000000000318,2.800000000000012,5.150000000000034,3.25,4.350413027920363,5.940012844617909,19.86268530043138,0.0 -2370,2002-01-26,3.2900000000000205,6.360000000000014,9.63,4.47,11.60572978776348,9.200595620163854,15.132089680267526,0.0 -2371,2002-01-27,4.830000000000041,6.020000000000039,6.81,19.83,27.453707656140157,22.935996186720725,12.0260934935468,0.0 -2372,2002-01-28,-0.0999999999999659,4.860000000000014,11.52,0.02,3.967676980410537,2.2285089994033442,9.817584494143453,0.0 -2373,2002-01-29,-0.3700000000000045,5.470000000000027,10.95,0.0,4.357373438601083,1.6522128481364093,8.165371646007044,0.0 -2374,2002-01-30,3.63,7.730000000000018,14.56,0.0,6.199153044137126,1.2803169997579986,6.885054646249046,0.0 -2375,2002-01-31,4.180000000000007,5.770000000000039,8.410000000000025,1.35,5.352956399712046,2.3682478172917585,5.866806828957287,0.0 -2376,2002-02-01,4.150000000000034,5.960000000000036,8.410000000000025,0.41,4.16505916997248,1.2361023920446348,5.040704436912653,0.0 -2377,2002-02-02,4.69,8.670000000000016,13.33,0.0,5.263865038835757,0.680813522303285,4.359890914609368,0.0 -2378,2002-02-03,4.350000000000023,9.19,14.76,7.41,13.208161024083932,7.978213366829851,3.791677547779517,0.0 -2379,2002-02-04,3.9700000000000273,7.13,9.420000000000016,0.01,3.4400893668539,0.4891729916703408,3.312504556109176,0.0 -2380,2002-02-05,2.950000000000045,6.78000000000003,10.17,18.16,22.794500035886557,18.56757652848718,2.9049280276219958,0.0 -2381,2002-02-06,1.2900000000000205,2.260000000000048,3.2700000000000387,9.22,8.22278351516822,9.569191802768815,2.555736224853182,0.0 -2382,2002-02-07,-0.7699999999999818,1.5,4.420000000000016,1.09,0.8644556398942573,1.2513971764419662,2.3943390484112155,0.0 -2383,2002-02-08,1.32000000000005,3.910000000000025,5.020000000000039,5.91,6.950766943970412,6.189311709878785,2.1150273385324305,0.0 -2384,2002-02-09,4.420000000000016,6.75,9.890000000000043,14.13,18.02942748338466,14.372619318287164,1.8724080202452669,0.0 -2385,2002-02-10,3.0,3.930000000000007,4.410000000000025,4.52,6.055824443372349,4.731627945566035,1.6607800746792316,0.0 -2386,2002-02-11,2.480000000000018,6.2900000000000205,9.740000000000007,0.0,2.07960044905639,0.18526399688330716,1.4755160777959244,0.0 -2387,2002-02-12,5.53000000000003,7.890000000000043,11.76,0.0,2.5879686381033906,0.16269586025508775,1.3128202175408368,0.0 -2388,2002-02-13,5.78000000000003,7.860000000000014,11.0,2.27,4.883465099926536,2.4132706767274863,1.1695495408133507,0.0 -2389,2002-02-14,2.170000000000016,3.56,5.520000000000039,2.77,3.602760920607859,2.896469699983052,1.0430798408302988,0.0 -2390,2002-02-15,-0.079999999999984,1.240000000000009,3.0200000000000387,0.0,0.0688512791608241,0.11187622682734051,0.9312036140029583,0.0 -2391,2002-02-16,-1.7799999999999727,0.5200000000000387,4.07000000000005,0.0,0.0131037782434309,0.09915219364683524,0.832051420356123,0.0 -2392,2002-02-17,-2.839999999999975,1.3000000000000114,7.710000000000036,0.0,0.0682570773352678,0.08802085154421936,0.7440305688119037,0.0 -2393,2002-02-18,-3.829999999999984,0.2800000000000295,3.510000000000048,0.44,0.1334733526784735,0.3143647771999054,0.8696657916119983,0.0 -2394,2002-02-19,-0.3999999999999772,1.1000000000000227,1.840000000000032,7.07,2.0823002700709927,6.052339493500458,1.8873262981115402,0.0 -2395,2002-02-20,0.0600000000000022,1.6800000000000068,2.300000000000012,50.32,23.12358829211744,50.53350992711359,1.6738163709979479,0.0 -2396,2002-02-21,-8.069999999999993,-3.5499999999999545,-0.42999999999995,0.72,0.0,0.0,2.393816370997948,-2.662499999999966 -2397,2002-02-22,-8.25,0.5,3.7000000000000455,17.53,3.5710363223517243,5.427698744769922,14.496117626228028,-0.2906249999999915 -2398,2002-02-23,0.3300000000000409,2.94,4.230000000000018,8.06,7.844444270308983,10.268302221631753,12.287815404596273,0.0 -2399,2002-02-24,0.0,1.2600000000000475,2.31,8.51,4.014979713858405,9.384028233235357,11.413787171360916,0.0 -2400,2002-02-25,2.6000000000000227,4.37,5.830000000000041,5.8,9.904190445948576,7.847569184697665,9.366217986663251,0.0 -2401,2002-02-26,5.580000000000041,6.090000000000032,6.740000000000009,18.96,26.292892084588942,20.506844656533293,7.819373330129961,0.0 -2402,2002-02-27,3.2100000000000364,6.090000000000032,7.640000000000043,17.16,23.838929297345143,18.367245621566276,6.612127708563686,0.0 -2403,2002-02-28,0.9900000000000092,4.0,6.87,0.92,3.4386591691492048,1.8853309735845512,5.646796734979135,0.0 -2404,2002-03-01,0.5100000000000477,2.580000000000041,5.300000000000011,34.53,30.97012061838602,35.31648106118237,4.860315673796766,0.0 -2405,2002-03-02,-0.0699999999999931,1.7600000000000475,3.0200000000000387,0.07,0.4389942954814742,0.7190310483150782,4.211284625481688,0.0 -2406,2002-03-03,-2.659999999999968,0.9900000000000092,5.57000000000005,0.0,0.0962313333644502,0.4787229321176328,3.732561693364055,0.0 -2407,2002-03-04,-2.7799999999999727,2.3500000000000227,8.410000000000025,0.0,0.8088220424905299,0.4701673620113557,3.2623943313526995,0.0 -2408,2002-03-05,0.1299999999999954,3.390000000000043,7.710000000000036,0.0,1.698410072501622,0.40027371306667453,2.862120618286025,0.0 -2409,2002-03-06,1.0100000000000475,3.63,6.850000000000023,0.0,1.880276869312125,0.34319381585121195,2.5189268024348133,0.0 -2410,2002-03-07,3.080000000000041,5.650000000000034,7.910000000000025,0.0,3.8663540765742574,0.2960284844249202,2.222898318009893,0.0 -2411,2002-03-08,0.9399999999999976,6.5,15.5,0.0,4.276422663138584,0.2566613838807725,1.9662369341291204,0.0 -2412,2002-03-09,0.8000000000000114,6.0,12.32000000000005,0.0,3.566100100327377,0.2235162225911183,1.7427207115380021,0.0 -2413,2002-03-10,1.2600000000000475,5.38,11.02,0.0,2.8603022166045475,0.19539798646050466,1.5473227250774975,0.0 -2414,2002-03-11,4.56,9.04000000000002,15.77,0.0,5.4390083556184114,0.1713863950911128,1.3759363299863847,0.0 -2415,2002-03-12,4.5400000000000205,9.510000000000048,15.85,0.0,5.054643612647894,0.150762749047693,1.2251735809386917,0.0 -2416,2002-03-13,5.38,11.08,17.62,0.0,5.340168264457901,0.13295867303867542,1.0922149079000163,0.0 -2417,2002-03-14,4.650000000000034,7.100000000000023,9.13,4.14,7.425901856240125,4.257519542735182,0.9746953651648338,0.0 -2418,2002-03-15,2.090000000000032,4.920000000000016,6.360000000000014,3.86,5.758431539821394,3.9640779582519947,0.8706174069128388,0.0 -2419,2002-03-16,1.650000000000034,6.13,12.3,0.0,2.0954664372398524,0.09233421705228408,0.7782831898605548,0.0 -2420,2002-03-17,3.25,9.400000000000034,14.14,0.0,3.365836097108848,0.08204174380913735,0.6962414460514175,0.0 -2421,2002-03-18,7.930000000000007,9.140000000000043,11.64,15.55,20.00821167138596,15.622996083486393,0.623245362565025,0.0 -2422,2002-03-19,8.480000000000018,9.800000000000011,10.58,24.48,29.643955843398057,24.545026490937623,0.5582188716274029,0.0 -2423,2002-03-20,9.19,10.49,11.15,0.86,3.6303241876299976,0.9179894364330771,0.5002294351943258,0.0 -2424,2002-03-21,8.180000000000007,10.45,14.06,5.0,7.8596123763196175,5.05176354134283,0.4484658938514955,0.0 -2425,2002-03-22,5.850000000000023,7.830000000000041,10.03,2.87,4.764243491909088,2.9162455928482967,0.4022203010031988,0.0 -2426,2002-03-23,-0.079999999999984,3.340000000000032,7.920000000000016,0.02,0.4337105845256805,0.06116850031325204,0.36105180068994674,0.0 -2427,2002-03-24,-2.259999999999991,1.7900000000000205,7.580000000000041,0.0,0.0878492284913472,0.037011953903311016,0.3240398467866357,0.0 -2428,2002-03-25,-3.38,0.7900000000000205,7.240000000000009,0.0,0.0116535945760271,0.03313437798657939,0.29090546880005635,0.0 -2429,2002-03-26,-4.609999999999957,1.5500000000000114,8.510000000000048,0.0,0.060523497087261,0.02967920578813764,0.2612262630119187,0.0 -2430,2002-03-27,-4.339999999999975,2.32000000000005,9.430000000000009,0.0,0.1605508743053258,0.026597298312241436,0.23462896469967726,0.0 -2431,2002-03-28,-1.7099999999999795,4.38,11.77,0.0,0.6660230498890523,0.02384582982577837,0.21078313487389888,0.0 -2432,2002-03-29,-1.589999999999975,5.2000000000000455,13.14,0.0,0.8264348388071536,0.021387365565104434,0.18939576930879445,0.0 -2433,2002-03-30,0.9600000000000364,4.760000000000048,10.21,0.0,0.6816267036022772,0.01918909413546687,0.17020667517332758,0.0 -2434,2002-03-31,0.2800000000000295,5.920000000000016,13.02,0.0,0.8448361037287136,0.017222185183866905,0.15298448998946068,0.0 -2435,2002-04-01,1.56,7.910000000000025,15.13,0.0,1.1492797750484451,0.015461249131863286,0.1375232408575974,0.0 -2436,2002-04-02,2.080000000000041,9.32000000000005,18.26,0.0,1.3210176624614671,0.013883880535780114,0.12363936032181728,0.0 -2437,2002-04-03,1.5100000000000475,8.830000000000041,17.67,0.0,1.1552341886737283,0.012470270349708448,0.11116908997210884,0.0 -2438,2002-04-04,2.9600000000000364,8.910000000000025,15.67,0.01,1.1073658682930725,0.02120287526061925,0.09996621471148959,0.0 -2439,2002-04-05,3.31,7.710000000000036,13.58,0.0,0.8548528762850645,0.010066134537140317,0.08990008017434926,0.0 -2440,2002-04-06,2.25,7.54000000000002,12.22,0.0,0.7855373373117698,0.0090462266279102,0.08085385354643906,0.0 -2441,2002-04-07,5.180000000000007,7.180000000000007,10.38,3.87,4.928624122458922,3.8781308591702146,0.07272299437622452,0.0 -2442,2002-04-08,3.140000000000043,7.75,12.24,0.1,0.8462193754868286,0.10730908720693759,0.06541390716928694,0.0 -2443,2002-04-09,2.06,6.510000000000048,13.31,0.0,0.5461029905483687,0.006571155322352959,0.05884275184693398,0.0 -2444,2002-04-10,1.5300000000000296,5.69,9.990000000000007,2.5,3.0526163258391894,2.5059083601429912,0.05293439170394267,0.0 -2445,2002-04-11,5.050000000000011,9.69,15.06,0.0,0.8806555935699539,0.005312930245841706,0.047621461458100964,0.0 -2446,2002-04-12,6.670000000000016,9.81,13.96,3.92,4.992145797828705,3.924777921001241,0.04284354045686016,0.0 -2447,2002-04-13,3.32000000000005,5.0400000000000205,6.69,13.43,14.978931518374946,13.434297122274412,0.03854641818244872,0.0 -2448,2002-04-14,-1.4799999999999611,2.0200000000000387,4.660000000000025,0.01,0.0311283937234399,0.011696929152619513,0.03684948902982921,0.0 -2449,2002-04-15,-1.4499999999999886,1.920000000000016,4.980000000000018,0.01,0.0222847607536131,0.01166603679703441,0.035183452232794794,0.0 -2450,2002-04-16,-0.2599999999999909,3.960000000000037,6.580000000000041,0.49,0.5774071208651592,0.47677532794452565,0.04840812428826915,0.0 -2451,2002-04-17,1.44,5.490000000000009,9.090000000000032,0.0,0.3281866155713278,0.00485711276116435,0.0435510115271048,0.0 -2452,2002-04-18,1.81,6.860000000000014,12.87,0.03,0.4869405530363593,0.03436829454397442,0.039182716983130375,0.0 -2453,2002-04-19,1.4500000000000457,5.94,11.17,0.28,0.6416958685454528,0.28392895115217087,0.03525376583095953,0.0 -2454,2002-04-20,2.06,5.770000000000039,9.63,0.38,0.726380942587591,0.3835340217021806,0.03171974412877894,0.0 -2455,2002-04-21,4.480000000000018,8.970000000000027,13.75,0.0,0.2932363452343129,0.003178973143851203,0.028540770984927737,0.0 -2456,2002-04-22,5.87,10.48,15.63,0.0,0.2521225130254626,0.002859743291327466,0.02568102769360027,0.0 -2457,2002-04-23,7.340000000000032,11.37,15.43,0.0,0.2180488971510784,0.002572690360945079,0.02310833733265519,0.0 -2458,2002-04-24,8.520000000000039,12.36,17.03,0.0,0.1895212291060685,0.0023145482074681664,0.020793789125187024,0.0 -2459,2002-04-25,8.160000000000025,13.09,18.4,0.0,0.165427863931503,0.0020823865619909805,0.018711402563196044,0.0 -2460,2002-04-26,4.94,10.12,13.95,16.53,18.21972552847677,16.5318735756694,0.01683782689379785,0.0 -2461,2002-04-27,1.4300000000000068,5.94,9.44,0.0,0.1273671059773472,0.001685754803441419,0.01515207209035643,0.0 -2462,2002-04-28,5.110000000000014,11.03,15.75,2.48,2.824009461386757,2.481516804205685,0.013635267884671296,0.0 -2463,2002-04-29,4.050000000000011,6.760000000000048,8.450000000000045,3.26,3.6638122302841833,3.2613648200527945,0.01227044783187652,0.0 -2464,2002-04-30,4.840000000000032,13.35,17.8,5.21,5.784666823077019,5.211228092106513,0.011042355725363887,0.0 -2465,2002-05-01,4.94,6.680000000000007,9.37,44.34,48.56160078054685,44.341105083743535,0.009937271981833154,0.0 -2466,2002-05-02,3.0300000000000296,4.510000000000048,5.57000000000005,27.14,29.745490468869026,27.140994414099428,0.0089428578824069,0.0 -2467,2002-05-03,2.8600000000000136,3.9500000000000455,5.410000000000025,15.22,16.703877961246267,15.220894842092786,0.008048015789622255,0.0 -2468,2002-05-04,2.8500000000000227,3.340000000000032,3.980000000000018,18.01,19.745931776593046,18.010805252123355,0.007242763666267713,0.0 -2469,2002-05-05,2.740000000000009,3.850000000000023,5.260000000000048,3.86,4.262512014618321,3.8607246412621854,0.0065181224040820685,0.0 -2470,2002-05-06,2.930000000000007,8.19,11.74,0.26,0.3288686405800546,0.2606521077727212,0.005866014631360901,0.0 -2471,2002-05-07,7.520000000000039,11.88,17.22,0.0,0.03980749096692,0.0005868408201911598,0.0052791738111697415,0.0 -2472,2002-05-08,7.890000000000043,12.58,18.19,0.0,0.0355820663106332,0.0005281112427518594,0.0047510625684178825,0.0 -2473,2002-05-09,5.080000000000041,9.78000000000003,14.72,4.87,5.356950302281435,4.870475263271953,0.00427579929646574,0.0 -2474,2002-05-10,6.7900000000000205,10.92,16.46,12.41,13.598255740766618,12.410427707102546,0.0038480921939199903,0.0 -2475,2002-05-11,8.110000000000014,9.170000000000016,10.32000000000005,2.62,2.890363457682972,2.620384912222632,0.003463179971287935,0.0 -2476,2002-05-12,4.610000000000014,7.53000000000003,9.58000000000004,3.37,3.707801594300927,3.370346401424791,0.003116778546497445,0.0 -2477,2002-05-13,6.140000000000043,13.47,19.0,4.39,4.820757491718842,4.390311745427438,0.0028050331190592535,0.0 -2478,2002-05-14,6.140000000000043,12.07000000000005,17.3,0.0,0.0183783727063758,0.00028055804322759856,0.002524475075831655,0.0 -2479,2002-05-15,8.680000000000007,14.19,19.36,0.0,0.0164877993748213,0.00025249183803150707,0.002271983237800148,0.0 -2480,2002-05-16,13.53,18.15,23.24,0.0,0.0147965329454987,0.0002272342300419673,0.0020447490077581806,0.0 -2481,2002-05-17,10.66,18.99,25.15,1.65,1.8174821985228828,1.6502045039838265,0.0018402450239316,0.0 -2482,2002-05-18,8.430000000000007,10.28,12.11,20.92,22.88699034511275,20.92018404805892,0.0016561969650118985,0.0 -2483,2002-05-19,6.350000000000023,10.83,13.53,0.0,0.0107117884158907,0.00016563877674491805,0.0014905581882669805,0.0 -2484,2002-05-20,9.27000000000004,13.91,18.22,0.01,0.0205571647425378,0.010149071273428454,0.0013414869148385257,0.0 -2485,2002-05-21,13.46,17.4,21.78,0.0,0.0086458356506787,0.00013416120942284798,0.0012073257054156777,0.0 -2486,2002-05-22,8.19,12.19,14.58,23.23,25.408712510977814,23.23012074270986,0.00108658299555378,0.0 -2487,2002-05-23,5.82000000000005,7.640000000000043,8.420000000000016,22.74,24.87213348228162,22.74010866651225,0.0009779164833022072,0.0 -2488,2002-05-24,8.100000000000023,12.84,16.7,1.99,2.182251144960751,1.9900977983005024,0.0008801181827998012,0.0 -2489,2002-05-25,3.680000000000007,7.57000000000005,10.57000000000005,9.96,10.896447875379849,9.96008801720646,0.0007921009763418019,0.0 -2490,2002-05-26,5.830000000000041,10.03,14.29,2.74,3.0011386257226444,2.7400792144619994,0.0007128865143428025,0.0 -2491,2002-05-27,6.260000000000048,8.700000000000045,10.93,2.12,2.3226855333461267,2.120071292186527,0.0006415943278163033,0.0 -2492,2002-05-28,6.81,10.1,12.74,2.99,3.273531240109733,2.990064162296175,0.0005774320316415295,0.0 -2493,2002-05-29,4.640000000000043,9.03000000000003,11.78,0.68,0.7472389050385795,0.6800577455224897,0.0005196865091519326,0.0 -2494,2002-05-30,7.600000000000023,13.05,17.69,0.0,0.0033188509278052,5.19705295520343e-05,0.0004677159795998983,0.0 -2495,2002-05-31,12.01,16.32000000000005,20.61,0.0,0.0029852322906439,4.6773119643607e-05,0.00042094285995629134,0.0 -2496,2002-06-01,11.7,17.18,22.5,0.0,0.0026853062698997,4.2095518550447796e-05,0.00037884734140584356,0.0 -2497,2002-06-02,13.55,18.5,24.1,0.0,0.0024156403858217,3.788573250349125e-05,0.00034096160890235234,0.0 -2498,2002-06-03,12.36,15.95,18.68,4.86,5.316360972054183,4.86003409696956,0.00030686463934289824,0.0 -2499,2002-06-04,14.29,17.35,21.81,1.95,2.134190949561266,1.9500306871189528,0.0002761775203899934,0.0 -2500,2002-06-05,9.910000000000023,12.97,15.69,1.7,1.860631267026376,1.7000276182826015,0.00024855923778843264,0.0 -2501,2002-06-06,8.660000000000025,11.71,14.36,26.67,29.16400832321109,26.670024856353535,0.00022370288425574926,0.0 -2502,2002-06-07,7.100000000000023,10.47,12.99,0.48,0.5262820014227536,0.4800223706365248,0.0002013322477309013,0.0 -2503,2002-06-08,9.450000000000044,11.36,13.58,11.61,12.696285455270678,11.610020133506731,0.00018119874099837503,0.0 -2504,2002-06-09,8.740000000000009,10.96,13.09,12.02,13.14447332942756,12.020018120102486,0.00016307863851210502,0.0 -2505,2002-06-10,6.980000000000018,9.63,11.51,0.24,0.2634663833369012,0.2400163080488437,0.00014677058966840236,0.0 -2506,2002-06-11,7.140000000000043,11.61,14.67,0.0,0.0009334503444278,1.4677208810381163e-05,0.00013209338085802118,0.0 -2507,2002-06-12,11.38,17.58,22.18,0.0,0.000839968001838,1.3209459458794905e-05,0.00011888392139922628,0.0 -2508,2002-06-13,13.0,18.72,23.62,0.0,0.0007558600128379,1.1888490451846044e-05,0.00010699543094738024,0.0 -2509,2002-06-14,16.6,21.96,27.46,0.0,0.0006801839710453,1.0699622727249651e-05,9.629580822013059e-05,0.0 -2510,2002-06-15,18.34,22.33,27.76,0.0,0.0006120926574765,9.629645324240795e-06,8.66661628958898e-05,0.0 -2511,2002-06-16,16.22,21.49,26.28,0.0,0.0005508243413067,8.666668536315677e-06,7.799949435957412e-05,0.0 -2512,2002-06-17,16.76,23.72,30.23,0.0,0.0004956940850171,7.799991755749342e-06,7.019950260382478e-05,0.0 -2513,2002-06-18,17.44,23.93,29.77,0.0,0.000446085946895,7.019984539372611e-06,6.317951806445216e-05,0.0 -2514,2002-06-19,20.37,24.41,28.58,0.16,0.1753541312379736,0.1600063179795724,5.686153849205507e-05,0.0 -2515,2002-06-20,17.46,21.79,25.13,0.02,0.0222303616403552,0.020005686176339604,5.11753621524505e-05,0.0 -2516,2002-06-21,17.73,22.35,27.19,0.0,0.0003251278111443,5.117554432452274e-06,4.605780771999823e-05,0.0 -2517,2002-06-22,16.17,22.46,27.43,0.0,0.0002925983666258,4.605795527926002e-06,4.145201219207223e-05,0.0 -2518,2002-06-23,18.27,24.19,30.43,9.63,10.53022806864758,9.630004145213173,3.730679902057331e-05,0.0 -2519,2002-06-24,13.17,16.94,19.47,2.27,2.482378203614513,2.2700037306895835,3.357610943716591e-05,0.0 -2520,2002-06-25,12.37,17.55,21.72,0.0,0.000213274586393,3.3576187856056257e-06,3.0218490651560286e-05,0.0 -2521,2002-06-26,12.84,18.6,23.46,0.0,0.0001919399570834,3.0218554170828498e-06,2.7196635234477435e-05,0.0 -2522,2002-06-27,11.17,18.61,23.32000000000005,17.12,18.72011006213336,17.12000271966867,2.447696656597137e-05,0.0 -2523,2002-06-28,7.090000000000032,12.45,15.93,0.0,0.0001554614340385,2.4477008240926255e-06,2.2029265741878744e-05,0.0 -2524,2002-06-29,8.610000000000014,13.54,18.13,0.0,0.0001399114804998,2.202929949857943e-06,1.98263357920208e-05,0.0 -2525,2002-06-30,10.05,15.17,19.55,0.0,0.000125917246383,1.9826363134939043e-06,1.7843699478526897e-05,0.0 -2526,2002-07-01,12.28,18.35,23.76,5.19,5.675141050888693,5.190001784372163,1.605932731589851e-05,0.0 -2527,2002-07-02,11.11,13.4,15.67,3.54,3.8709301498990913,3.5400016059345254,1.4453392790340837e-05,0.0 -2528,2002-07-03,9.960000000000036,14.53,18.69,14.0,15.308451747748872,14.000001445340732,1.3008052058193178e-05,0.0 -2529,2002-07-04,7.56,11.58,14.26,0.01,0.011017150867311,0.010001300806382842,1.1707245675352127e-05,0.0 -2530,2002-07-05,10.4,15.95,21.15,15.69,17.15637204369807,15.69000117072552,1.0536520154429503e-05,0.0 -2531,2002-07-06,11.98,13.77,15.11,17.51,19.1464514029539,17.51000105365279,9.48286736674289e-06,0.0 -2532,2002-07-07,12.99,16.81,20.05,0.0,6.021889889598088e-05,9.482873621915546e-07,8.534580004551335e-06,0.0 -2533,2002-07-08,15.97,20.75,25.59,0.65,0.7107994802741392,0.6500008534585071,7.68112149742729e-06,0.0 -2534,2002-07-09,13.49,20.23,25.8,4.89,5.347040219349253,4.89000076811256,6.9130089372827975e-06,0.0 -2535,2002-07-10,10.59,12.96,15.1,8.68,9.491227073251377,8.680000691301226,6.221707711129128e-06,0.0 -2536,2002-07-11,11.79,15.71,19.77,0.0,3.9508186280669873e-05,6.221710403774492e-07,5.599536670751679e-06,0.0 -2537,2002-07-12,14.02,18.09,22.46,0.12,0.1312500710606725,0.12000055995388517,5.039582785572258e-06,0.0 -2538,2002-07-13,11.67,13.29,14.83,8.42,9.206917062604374,8.420000503958455,4.5356243303506015e-06,0.0 -2539,2002-07-14,12.72,15.26,17.92,1.89,2.06665739546861,1.890000453562576,4.082061754217364e-06,0.0 -2540,2002-07-15,14.42,16.36,17.78,9.69,10.595597921287297,9.690000408206291,3.673855462886112e-06,0.0 -2541,2002-07-16,14.2,14.86,15.6,51.1,55.87553718093257,51.10000036738564,3.306469822710799e-06,0.0 -2542,2002-07-17,11.3,13.45,14.59,5.96,6.517008521231678,5.960000330647058,2.975822764391495e-06,0.0 -2543,2002-07-18,11.44,14.95,18.1,0.01,0.0109534387890007,0.010000297582338039,2.6782404263532872e-06,0.0 -2544,2002-07-19,12.07000000000005,16.17,20.42,0.0,1.7006308373021413e-05,2.678240925305636e-07,2.4104163338227236e-06,0.0 -2545,2002-07-20,13.94,20.23,25.43,12.56,13.733801097925577,12.560000241041674,2.1693746600253126e-06,0.0 -2546,2002-07-21,12.77,16.56,20.02,0.69,0.7544972301816986,0.6900002169374987,1.9524371612865205e-06,0.0 -2547,2002-07-22,11.0,16.3,20.92,0.01,0.0109469403269711,0.010000195243742646,1.7571934186414978e-06,0.0 -2548,2002-07-23,12.55,17.72,22.55,0.0,1.1157724608269849e-05,1.7571936334240926e-07,1.5814740552990886e-06,0.0 -2549,2002-07-24,13.22,14.83,15.9,2.48,2.711776663340817,2.4800001581474227,1.4233266323717901e-06,0.0 -2550,2002-07-25,11.48,15.42,18.44,0.0,9.037723368574186e-06,1.4233267732906433e-07,1.2809939550427257e-06,0.0 -2551,2002-07-26,11.85,16.38,20.33,0.0,8.133938153753011e-06,1.2809940691869943e-07,1.1528945481240263e-06,0.0 -2552,2002-07-27,14.79,19.51,23.86,0.0,7.320533907255039e-06,1.1528946405808822e-07,1.0376050840659382e-06,0.0 -2553,2002-07-28,16.52,20.91,25.27,0.0,6.588472067340565e-06,1.0376051589559901e-07,9.338445681703391e-07,0.0 -2554,2002-07-29,15.96,21.5,26.75,0.0,5.9296180167783065e-06,9.338446288312802e-08,8.404601052872111e-07,0.0 -2555,2002-07-30,15.96,20.28,25.36,1.79,1.95728850290908,1.7900000840460155,7.564140898449538e-07,0.0 -2556,2002-07-31,13.22,19.41,25.36,5.88,6.429515985997561,5.880000075641413,6.807726768804942e-07,0.0 -2557,2002-08-01,8.220000000000027,12.08,14.68,4.03,4.4066250824678495,4.030000068077271,6.126954059686738e-07,0.0 -2558,2002-08-02,11.8,15.9,20.59,13.41,14.663225823104156,13.410000061269542,5.51425862760552e-07,0.0 -2559,2002-08-03,13.23,14.74,16.75,1.01,1.104392327019434,1.0100000551425885,4.962832743693807e-07,0.0 -2560,2002-08-04,10.18,14.11,16.96,0.21,0.2296285506202353,0.21000004962832913,4.466549452191986e-07,0.0 -2561,2002-08-05,11.93,16.22,21.52,12.84,14.03995582758744,12.840000044665496,4.019894493095511e-07,0.0 -2562,2002-08-06,12.51,13.82000000000005,15.49,8.58,9.381840299137473,8.580000040198946,3.6179050325453656e-07,0.0 -2563,2002-08-07,10.76,13.58,15.7,0.63,0.6888784954212275,0.6300000361790512,3.256114520185948e-07,0.0 -2564,2002-08-08,11.74,15.57000000000005,20.37,0.7,0.7654200654941208,0.7000000325611458,2.9305030607924e-07,0.0 -2565,2002-08-09,9.950000000000044,12.78,14.62,25.22,27.576918873633563,25.22000002930503,2.6374527487394474e-07,0.0 -2566,2002-08-10,9.800000000000011,10.66,11.94,4.64,5.073629546999083,4.640000026374528,2.3737074690267956e-07,0.0 -2567,2002-08-11,9.960000000000036,11.89,12.78,11.17,12.213885846383263,11.170000023737074,2.1363367182047634e-07,0.0 -2568,2002-08-12,11.59,13.08,14.89,3.33,3.6412041183058745,3.3300000213633676,1.9227030432096114e-07,0.0 -2569,2002-08-13,11.96,15.57000000000005,20.12,0.0,1.220845695756145e-06,1.922703068924484e-08,1.730432736317163e-07,0.0 -2570,2002-08-14,12.15,16.82000000000005,21.81,0.0,1.0987608911888516e-06,1.73043275714621e-08,1.557389460602542e-07,0.0 -2571,2002-08-15,13.38,18.05,23.3,0.01,0.0109355317128709,0.010000015573894775,1.401650512855135e-07,0.0 -2572,2002-08-16,13.44,18.34,24.05,0.01,0.0109354328242556,0.010000014016505266,1.261485460203028e-07,0.0 -2573,2002-08-17,14.34,18.89,25.08,0.0,8.009962718544568e-07,1.2614854712724373e-08,1.1353369130757842e-07,0.0 -2574,2002-08-18,13.13,19.12,25.58,0.0,7.208965435129248e-07,1.1353369220420058e-08,1.0218032208715836e-07,0.0 -2575,2002-08-19,15.64,21.13,28.17,0.0,6.488068072252219e-07,1.0218032281342231e-08,9.196228980581613e-08,0.0 -2576,2002-08-20,13.49,16.72,20.53,6.67,7.293340650374989,6.670000009196229,8.276606076640713e-08,0.0 -2577,2002-08-21,9.900000000000034,14.13,18.02,0.0,5.255334003623421e-07,8.27660612429089e-09,7.448945464211624e-08,0.0 -2578,2002-08-22,9.88,14.66,19.76,0.01,0.010935015808276,0.010000007448945502,6.704050913930798e-08,0.0 -2579,2002-08-23,10.91,16.85,22.53,11.09,12.126408422221504,11.09000000670405,6.03364581941139e-08,0.0 -2580,2002-08-24,13.23,16.78,19.93,1.92,2.099432606139532,1.9200000060336457,5.430281234937925e-08,0.0 -2581,2002-08-25,13.32000000000005,17.55,22.17,0.13,0.1421494015697252,0.13000000543028126,4.887253109392949e-08,0.0 -2582,2002-08-26,10.91,15.23,20.59,10.41,11.382859394539992,10.410000004887253,4.398527796792195e-08,0.0 -2583,2002-08-27,11.5,15.14,19.46,0.38,0.4155129067637273,0.3800000043985278,3.9586750157671936e-08,0.0 -2584,2002-08-28,11.34,14.56,17.19,0.2,0.2186911079260607,0.20000000395867504,3.562807513100391e-08,0.0 -2585,2002-08-29,11.41,16.62,21.32000000000005,12.65,13.832196903972749,12.650000003562807,3.206526760907384e-08,0.0 -2586,2002-08-30,14.16,17.45,21.59,2.2,2.40559962581933,2.2000000032065268,2.885874084101442e-08,0.0 -2587,2002-08-31,13.94,15.54,17.46,1.82,1.990086977985242,1.820000002885874,2.597286675111983e-08,0.0 -2588,2002-09-01,12.21,13.86,15.61,0.01,0.0109347077461047,0.01000000259728668,2.33755800713154e-08,0.0 -2589,2002-09-02,12.41,15.58,18.44,0.53,0.5795309183237976,0.5300000023375581,2.1038022060382974e-08,0.0 -2590,2002-09-03,12.32000000000005,14.22,16.87,14.04,15.352098264459451,14.0400000021038,1.8934219851265958e-08,0.0 -2591,2002-09-04,10.63,14.31,18.88,0.49,0.5357927188098038,0.49000000189342197,1.70407978636456e-08,0.0 -2592,2002-09-05,12.06,13.04,14.62,2.28,2.4930758730457,2.28000000170408,1.5336718075261094e-08,0.0 -2593,2002-09-06,12.22,13.72,16.22,0.0,9.738232703789653e-08,1.533671809162266e-09,1.3803046266098828e-08,0.0 -2594,2002-09-07,8.87,12.78,17.72,0.01,0.0109346304723521,0.010000001380304628,1.2422741638163659e-08,0.0 -2595,2002-09-08,9.360000000000014,15.95,22.39,5.53,6.046802262907056,5.530000001242274,1.1180467473273811e-08,0.0 -2596,2002-09-09,10.83,13.69,17.36,2.69,2.9413920917934546,2.6900000011180465,1.006242072507691e-08,0.0 -2597,2002-09-10,6.230000000000018,11.25,16.41,0.04,0.043738235205578,0.04000000100624208,9.056178651864907e-09,0.0 -2598,2002-09-11,6.32000000000005,10.66,15.48,0.41,0.4483163134619161,0.41000000090561783,8.150560786107924e-09,0.0 -2599,2002-09-12,7.360000000000014,11.86,18.41,2.05,2.2415813315461057,2.050000000815056,7.3355047070350326e-09,0.0 -2600,2002-09-13,4.990000000000009,11.11,19.56,0.0,4.657766099157876e-08,7.335504710778034e-10,6.601954235957229e-09,0.0 -2601,2002-09-14,4.660000000000025,10.52,20.13,0.02,0.021869127576413,0.020000000660195423,5.941758812058323e-09,0.0 -2602,2002-09-15,4.38,10.43,19.23,0.0,3.772790481827738e-08,5.941758814514107e-10,5.347582930606913e-09,0.0 -2603,2002-09-16,4.0400000000000205,10.4,17.79,0.0,3.3955114112032216e-08,5.347582932596097e-10,4.812824637347303e-09,0.0 -2604,2002-09-17,6.840000000000032,12.58,21.6,0.01,0.0109345733878617,0.010000000481282464,4.331542173451449e-09,0.0 -2605,2002-09-18,7.79000000000002,15.03,21.06,0.05,0.0546727416449384,0.050000000433154224,3.8983879559757934e-09,0.0 -2606,2002-09-19,12.03,16.15,21.58,0.77,0.8419598225292411,0.7700000003898388,3.508549160272501e-09,0.0 -2607,2002-09-20,10.15,14.2,19.96,0.04,0.0437381935909869,0.040000000350854915,3.157694244159623e-09,0.0 -2608,2002-09-21,9.58000000000004,13.75,19.1,0.05,0.0546727341914511,0.05000000031576943,2.8419248196743018e-09,0.0 -2609,2002-09-22,6.170000000000016,9.680000000000009,13.73,3.96,4.330078978035808,3.9600000002841926,2.557732337650691e-09,0.0 -2610,2002-09-23,5.31,6.12,7.480000000000018,6.96,7.610441824709072,6.960000000255773,2.3019591038401156e-09,0.0 -2611,2002-09-24,0.6299999999999955,3.650000000000034,6.31,1.27,1.1920491945425518,1.2700000002301959,2.071763193419244e-09,0.0 -2612,2002-09-25,1.9500000000000453,3.87,6.510000000000048,0.03,0.0515111139312193,0.030000000207176317,1.864586874047463e-09,0.0 -2613,2002-09-26,4.170000000000016,8.170000000000016,12.53,8.85,9.695012282498206,8.850000000186458,1.6781281866185329e-09,0.0 -2614,2002-09-27,3.0300000000000296,7.54000000000002,12.69,0.0,0.0161191705205247,1.678128186814422e-10,1.5103153679370906e-09,0.0 -2615,2002-09-28,-0.0099999999999909,6.480000000000018,16.48,0.0,0.0144842174635872,1.510315368095761e-10,1.3592838311275146e-09,0.0 -2616,2002-09-29,-1.12,6.32000000000005,15.53,0.0,0.0130171844945082,1.3592838312560375e-10,1.223355448001911e-09,0.0 -2617,2002-09-30,2.260000000000048,8.590000000000032,17.82000000000005,0.01,0.022566170001225,0.010000000122335545,1.1010199031913095e-09,0.0 -2618,2002-10-01,3.81,9.550000000000011,19.26,0.0,0.0105251889607269,1.1010199032756334e-10,9.909179128637461e-10,0.0 -2619,2002-10-02,3.8000000000000114,9.360000000000014,19.55,0.0,0.0094628251004374,9.909179129320485e-11,8.918261215705412e-10,0.0 -2620,2002-10-03,2.9600000000000364,10.83,17.66,0.02,0.0303776672404253,0.020000000089182613,8.026435094079546e-10,0.0 -2621,2002-10-04,5.390000000000043,9.890000000000043,14.66,1.01,1.1120401104211544,1.0100000000802645,7.223791584626778e-10,0.0 -2622,2002-10-05,4.010000000000048,8.31,14.47,0.03,0.0396845765595562,0.030000000072237916,6.501412426127802e-10,0.0 -2623,2002-10-06,5.240000000000009,7.660000000000025,9.510000000000048,12.19,13.335396347425558,12.190000000065014,5.851271183485619e-10,0.0 -2624,2002-10-07,3.06,7.020000000000039,12.42,0.0,0.0055663666318517,5.851271183723775e-11,5.266144065113242e-10,0.0 -2625,2002-10-08,1.080000000000041,7.840000000000032,14.82000000000005,0.0,0.0050069712787064,5.2661440653061484e-11,4.739529658582627e-10,0.0 -2626,2002-10-09,6.490000000000009,10.91,15.01,0.02,0.0263731272603651,0.020000000047395296,4.2655766927087393e-10,0.0 -2627,2002-10-10,9.340000000000032,11.33,15.83,4.31,4.716839789510452,4.310000000042655,3.8390190234252087e-10,0.0 -2628,2002-10-11,6.670000000000016,9.03000000000003,11.23,1.13,1.2392485245277245,1.13000000003839,3.455117121072436e-10,0.0 -2629,2002-10-12,5.170000000000016,8.270000000000039,11.59,6.23,6.815499664555655,6.2300000000345515,3.109605408956888e-10,0.0 -2630,2002-10-13,2.650000000000034,8.840000000000032,12.11,7.15,7.803018706450011,7.150000000031096,2.798644868054473e-10,0.0 -2631,2002-10-14,9.53000000000003,10.44,11.9,10.47,11.45294328720017,10.470000000027987,2.5187803812435774e-10,0.0 -2632,2002-10-15,12.14,14.47,17.55,6.43,7.034937906330276,6.430000000025188,2.2669023431148066e-10,0.0 -2633,2002-10-16,10.15,13.32000000000005,18.06,46.26,50.586817375774544,46.260000000022664,2.0402121087997513e-10,0.0 -2634,2002-10-17,4.4500000000000455,6.590000000000032,10.07000000000005,33.5,36.633976940886114,33.5000000000204,1.8361908979168807e-10,0.0 -2635,2002-10-18,4.28000000000003,5.660000000000025,8.19,21.96,24.015187407272627,21.96000000001836,1.6525718081228473e-10,0.0 -2636,2002-10-19,-0.6200000000000045,3.260000000000048,8.980000000000018,0.03,0.0290035316217086,0.028256276128724632,0.001743724036532549,0.0 -2637,2002-10-20,0.5500000000000114,10.85,16.19,1.63,1.6870017526920813,1.6301743935539008,0.0015693304826316199,0.0 -2638,2002-10-21,8.420000000000016,11.62,14.63,19.05,20.84292281004442,19.050156950179503,0.0014123803031296086,0.0 -2639,2002-10-22,8.090000000000032,11.06,12.84,2.22,2.4388114058940986,2.22014125190628,0.0012711283968497944,0.0 -2640,2002-10-23,3.75,7.25,10.53,16.65,18.21621113909385,16.65012712407897,0.001144004317877047,0.0 -2641,2002-10-24,3.510000000000048,7.850000000000023,11.31,7.99,8.745868198155073,7.990114409535432,0.001029594782445129,0.0 -2642,2002-10-25,8.970000000000027,10.77,11.51,16.35,17.886221780741046,16.350102966852067,0.0009266279303792021,0.0 -2643,2002-10-26,2.430000000000007,7.080000000000041,12.47,0.0,0.0074138667543407,9.266876573820735e-05,0.0008339591646409947,0.0 -2644,2002-10-27,2.590000000000032,9.28000000000003,17.36,1.59,1.741301678516197,1.5900834007542821,0.0007505584103589585,0.0 -2645,2002-10-28,-1.2299999999999611,3.430000000000007,10.72,0.0,0.0063957734702809,7.505975961790905e-05,0.0006754986507410494,0.0 -2646,2002-10-29,-0.7099999999999795,8.430000000000007,16.79,0.0,0.005752472910543,6.755303908871048e-05,0.000607945611652339,0.0 -2647,2002-10-30,4.180000000000007,9.090000000000032,16.2,0.0,0.0051742131015137,6.07971320902193e-05,0.0005471484795621196,0.0 -2648,2002-10-31,3.930000000000007,9.240000000000007,14.7,0.01,0.0155888968706949,0.010054716930385881,0.0004924315491762393,0.0 -2649,2002-11-01,7.44,9.390000000000043,13.28,5.09,5.569869245385917,5.090049244841671,0.0004431867075048501,0.0 -2650,2002-11-02,8.44,10.57000000000005,11.5,81.59,89.21870159025893,81.59004432003701,0.00039886667049421516,0.0 -2651,2002-11-03,5.840000000000032,8.450000000000045,11.63,19.73,21.577241696769278,19.730039887773714,0.00035897889678165363,0.0 -2652,2002-11-04,3.730000000000018,5.2000000000000455,6.25,16.93,18.51522978900009,16.93003589878607,0.00032308011071187164,0.0 -2653,2002-11-05,-1.5299999999999727,3.07000000000005,5.650000000000034,1.96,1.3354312729112292,1.5853534413697954,0.3749696387409164,0.0 -2654,2002-11-06,-1.94,2.6000000000000227,7.31,13.55,9.744038152963808,11.101822619073682,2.8231470196672355,0.0 -2655,2002-11-07,0.660000000000025,1.8500000000000227,3.5300000000000296,16.25,12.611555970512978,16.587755176597952,2.4853918430692845,0.0 -2656,2002-11-08,0.6100000000000136,3.3600000000000136,6.56,13.44,13.10198796820896,13.73150763418472,2.193884208884565,0.0 -2657,2002-11-09,3.62,5.610000000000014,7.79000000000002,24.24,27.72039977697418,24.49286856768189,1.941015641202674,0.0 -2658,2002-11-10,4.180000000000007,7.990000000000009,9.69,19.39,22.639298794611804,19.610308606995506,1.720707034207168,0.0 -2659,2002-11-11,-0.1499999999999772,5.160000000000025,9.150000000000034,14.43,14.151018357079913,14.41914682222554,1.7315602119816285,0.0 -2660,2002-11-12,-0.4699999999999704,5.800000000000011,9.78000000000003,1.32,2.372460421796796,1.461021616587254,1.5905385953943745,0.0 -2661,2002-11-13,7.79000000000002,9.260000000000048,11.4,21.52,25.00564602842441,21.696651254156286,1.4138873412380886,0.0 -2662,2002-11-14,2.7800000000000296,4.980000000000018,7.800000000000011,64.63,71.51001899152466,64.78529432864514,1.2585930125929428,0.0 -2663,2002-11-15,6.5,8.110000000000014,11.36,25.62,29.107513170441585,25.756878006912114,1.121715005680831,0.0 -2664,2002-11-16,4.580000000000041,5.88,6.600000000000023,18.25,20.714891024610356,18.370923857258305,1.000791148422528,0.0 -2665,2002-11-17,2.950000000000045,6.0400000000000205,9.5,0.03,0.740825482590576,0.13704613168105434,0.8937450167414737,0.0 -2666,2002-11-18,3.830000000000041,5.12,6.82000000000005,0.63,1.246218732187363,0.7249308212394794,0.7988141955019943,0.0 -2667,2002-11-19,2.590000000000032,4.400000000000034,6.550000000000011,0.0,0.4405242456650671,0.08432007564197626,0.714494119860018,0.0 -2668,2002-11-20,2.69,6.390000000000043,11.24,0.0,0.5873227350396844,0.0750004659084026,0.6394936539516154,0.0 -2669,2002-11-21,2.240000000000009,5.13,8.37,30.23,32.893360568386406,30.2967940388967,0.5726996150549158,0.0 -2670,2002-11-22,1.2100000000000364,3.230000000000018,5.230000000000018,0.63,0.8410909021677784,0.6895514260897134,0.5131481889652024,0.0 -2671,2002-11-23,1.990000000000009,6.63,8.420000000000016,44.5,47.97749816780205,44.55314648180139,0.4600017071638122,0.0 -2672,2002-11-24,3.790000000000021,5.730000000000018,7.28000000000003,20.04,22.372018418704343,20.087472072514963,0.4125296346488472,0.0 -2673,2002-11-25,4.63,6.770000000000039,9.660000000000023,0.07,0.6167233000968717,0.11243674143459395,0.37009289321425326,0.0 -2674,2002-11-26,-0.6999999999999886,3.62,6.88,0.01,0.2099565244224133,0.04713567090574927,0.332957222308504,0.0 -2675,2002-11-27,0.2600000000000477,7.180000000000007,14.12,0.02,0.4829959664211927,0.054066868618758646,0.29889035368974537,0.0 -2676,2002-11-28,3.5200000000000387,6.900000000000034,11.66,30.22,33.43940047937984,30.25051045325183,0.2683799004379148,0.0 -2677,2002-11-29,2.450000000000045,4.07000000000005,7.680000000000007,7.68,8.493659482962007,7.707339015652085,0.24104088478582936,0.0 -2678,2002-11-30,0.1299999999999954,2.990000000000009,4.7000000000000455,0.31,0.3405961464548077,0.3345082373540752,0.21653264743175415,0.0 -2679,2002-12-01,-0.4099999999999681,4.400000000000034,8.020000000000039,12.78,11.32287250918412,12.247129973781675,0.7494026736500796,0.0 -2680,2002-12-02,1.2300000000000182,2.2200000000000277,3.19,12.74,10.655501521565329,12.818846790723809,0.6705558829262706,0.0 -2681,2002-12-03,-2.039999999999964,1.0100000000000475,2.420000000000016,3.0,0.8250188189688987,1.861104314178945,1.8094515687473254,0.0 -2682,2002-12-04,-2.42999999999995,0.660000000000025,2.950000000000045,0.0,0.0259993418560933,0.2037199203785479,1.6057316483687776,0.0 -2683,2002-12-05,-0.1499999999999772,1.150000000000034,2.2900000000000205,0.17,0.1565676358482195,0.3393368332288285,1.436394815139949,0.0 -2684,2002-12-06,0.6800000000000068,1.580000000000041,2.7100000000000364,0.0,0.139965936411035,0.1579913222635163,1.2784034928764327,0.0 -2685,2002-12-07,-0.6999999999999886,1.0300000000000296,2.420000000000016,0.0,0.0622360603771006,0.139208657676457,1.1391948351999757,0.0 -2686,2002-12-08,-3.9499999999999886,-1.2399999999999525,2.800000000000012,0.0,0.0,0.0,1.1391948351999757,-0.9299999999999644 -2687,2002-12-09,-3.989999999999952,0.6000000000000227,2.25,3.5,0.5442497489420974,1.5391345019640403,3.1000603332359353,0.0 -2688,2002-12-10,0.0800000000000409,2.2200000000000277,6.260000000000048,0.0,0.3306182655462105,0.37685585319296316,2.723204480042972,0.0 -2689,2002-12-11,0.4399999999999977,3.7200000000000273,6.160000000000025,1.39,2.047177368978596,1.7139050940416336,2.3992993860013385,0.0 -2690,2002-12-12,0.9000000000000341,4.0,7.770000000000039,1.64,2.422656681306784,1.9199731440004877,2.1193262420008505,0.0 -2691,2002-12-13,-2.519999999999982,1.240000000000009,7.710000000000036,0.0,0.1051563009310295,0.2431758293492179,1.8761504126516326,0.0 -2692,2002-12-14,-0.4799999999999613,4.2000000000000455,6.970000000000027,5.62,5.420053457439212,5.516578244285388,1.9795721683662437,0.0 -2693,2002-12-15,3.740000000000009,4.930000000000007,6.5,11.89,13.99258436687065,12.115215759147274,1.75435640921897,0.0 -2694,2002-12-16,4.4500000000000455,5.590000000000032,6.07000000000005,33.36,37.5557496887406,33.556844602597494,1.5575118066214735,0.0 -2695,2002-12-17,1.1800000000000068,4.62,6.600000000000023,4.09,4.843490627191283,4.26262535936334,1.3848864472581335,0.0 -2696,2002-12-18,-4.329999999999984,-0.2899999999999636,5.470000000000027,0.01,0.004458927138611,0.005581632653061246,1.3893048146050722,-0.21749999999997272 -2697,2002-12-19,-4.37,0.6100000000000136,6.980000000000018,0.01,0.0263298093085531,0.15896606280033218,1.24033875180474,0.0 -2698,2002-12-20,-0.5099999999999909,3.890000000000043,6.090000000000032,4.56,4.161663398609906,4.384551909161929,1.4157868426428104,0.0 -2699,2002-12-21,5.270000000000039,6.330000000000041,7.330000000000041,11.03,13.130159644749757,11.185521667109894,1.2602651755329164,0.0 -2700,2002-12-22,6.100000000000023,8.490000000000009,9.62,30.46,34.55253292676303,30.597074521495234,1.1231906540376826,0.0 -2701,2002-12-23,3.710000000000037,7.350000000000023,10.62,0.01,1.007890414443104,0.13109446519494275,1.0020961888427398,0.0 -2702,2002-12-24,2.2700000000000387,4.910000000000025,10.2,0.03,0.6579220026504664,0.13719481767197989,0.8949013711707599,0.0 -2703,2002-12-25,2.0,4.300000000000011,5.710000000000036,1.01,1.555989379937853,1.1050608438534641,0.7998405273172957,0.0 -2704,2002-12-26,5.740000000000009,6.890000000000043,8.13,3.05,4.091544722272237,3.134434121891798,0.7154064054254974,0.0 -2705,2002-12-27,5.240000000000009,8.020000000000039,12.05,5.0,6.298393345516176,5.075100768419052,0.6403056370064455,0.0 -2706,2002-12-28,3.640000000000043,5.0400000000000205,5.730000000000018,20.86,23.26651385948185,20.926882465712087,0.5734231712943586,0.0 -2707,2002-12-29,3.490000000000009,6.210000000000036,7.610000000000014,5.56,6.628908474686232,5.619629550220192,0.5137936210741662,0.0 -2708,2002-12-30,5.360000000000014,7.510000000000048,9.400000000000034,6.77,8.010129992140019,6.823215635600669,0.4605779854734963,0.0 -2709,2002-12-31,4.020000000000039,4.5400000000000205,5.260000000000048,7.75,8.79519609957671,7.797533390577446,0.41304459489605033,0.0 -2710,2003-01-01,4.220000000000027,7.230000000000018,9.12,11.69,13.252044382146511,11.73249119472117,0.37055340017488003,0.0 -2711,2003-01-02,4.890000000000043,8.420000000000016,11.82000000000005,6.1,7.072425043101703,6.138010467968377,0.3325429322065026,0.0 -2712,2003-01-03,3.63,5.31,7.12,19.44,21.59201776155401,19.474023521767258,0.2985194104392462,0.0 -2713,2003-01-04,-6.37,-0.3700000000000045,4.38,21.89,6.4710575096982,8.918902325581394,13.269617084857853,-0.27750000000000336 -2714,2003-01-05,-11.53,-8.289999999999964,-4.609999999999957,0.52,0.0,0.0,13.789617084857852,-6.286874999999974 -2715,2003-01-06,-11.35,-7.13,-1.579999999999984,0.0,0.0,0.0,13.789617084857852,-6.9192187499999935 -2716,2003-01-07,-13.12,-8.87,-4.399999999999977,0.0,0.0,0.0,13.789617084857852,-8.382304687499998 -2717,2003-01-08,-11.86,-4.489999999999952,-2.9899999999999523,2.44,0.0,0.0,16.229617084857853,-5.463076171874963 -2718,2003-01-09,-10.89,-5.489999999999952,0.1700000000000159,0.0,0.0,0.0,16.229617084857853,-5.483269042968705 -2719,2003-01-10,-11.22,-10.12,-9.089999999999977,0.06,0.0,0.0,16.289617084857852,-8.960817260742177 -2720,2003-01-11,-17.41,-11.74,-6.5,0.0,0.0,0.0,16.289617084857852,-11.045204315185543 -2721,2003-01-12,-17.91,-12.22,-5.69,0.0,0.0,0.0,16.289617084857852,-11.926301078796387 -2722,2003-01-13,-14.65,-4.12,-1.2799999999999727,1.97,0.0,0.0,18.25961708485785,-6.071575269699096 -2723,2003-01-14,-2.88,-0.2399999999999522,2.6100000000000136,0.01,0.0023290002639743,0.004754098360655751,18.264862986497196,-1.6978938174247382 -2724,2003-01-15,-5.169999999999959,-0.7799999999999727,5.100000000000023,0.64,0.247099233414182,0.31781888997079066,18.587044096526405,-1.009473454356164 -2725,2003-01-16,-7.079999999999984,-2.009999999999991,0.4700000000000273,0.14,0.000426499062395,0.008715231788079952,18.718328864738325,-1.7598683635890342 -2726,2003-01-17,-7.639999999999986,-0.0699999999999931,4.920000000000016,0.17,0.0510047202108573,0.06659235668789829,18.821736508050428,-0.4924670908972534 -2727,2003-01-18,-2.319999999999993,0.5600000000000023,3.670000000000016,0.0,0.0,0.4836474610724721,18.338089046977956,0.0 -2728,2003-01-19,-1.06,1.56,3.4600000000000364,6.14,3.275814152874112,6.086201273269735,18.39188777370822,0.0 -2729,2003-01-20,-0.5099999999999909,4.480000000000018,7.050000000000011,5.71,7.041166385993524,9.188777313397345,14.913110460310874,0.0 -2730,2003-01-21,2.0,3.580000000000041,4.69,6.79,8.594047568234167,9.517857848560746,12.185252611750128,0.0 -2731,2003-01-22,0.3799999999999954,1.170000000000016,2.140000000000043,16.14,8.16553866615496,16.94847582951129,11.37677678223884,0.0 -2732,2003-01-23,-0.0199999999999818,0.4000000000000341,1.580000000000041,14.1,4.104765433545034,14.193572934049449,11.283203848189391,0.0 -2733,2003-01-24,-4.919999999999959,-0.7999999999999545,1.94,0.03,0.0030823802864669,0.008483965014577311,11.304719883174814,-0.5999999999999659 -2734,2003-01-25,-5.279999999999973,-1.7199999999999704,0.5400000000000205,0.12,0.0007693174872819,0.011134020618557144,11.413585862556257,-1.4399999999999693 -2735,2003-01-26,-2.019999999999982,0.160000000000025,1.31,1.04,0.0934872287184012,0.40912912912913135,12.044456733427126,-0.23999999999997357 -2736,2003-01-27,0.4399999999999977,2.94,3.900000000000034,4.77,5.028105481894702,6.7907858110271935,10.023670922399932,0.0 -2737,2003-01-28,-0.9199999999999592,1.3500000000000227,3.840000000000032,19.18,10.714224312141866,16.46007641112843,12.743594511271501,0.0 -2738,2003-01-29,-1.4599999999999795,-0.8799999999999955,-0.4399999999999977,28.74,0.0,0.0,41.4835945112715,-0.6599999999999966 -2739,2003-01-30,-6.019999999999982,-3.659999999999968,-1.599999999999966,7.52,0.0,0.0,49.0035945112715,-2.9099999999999753 -2740,2003-01-31,-17.49,-11.25,-5.96999999999997,0.18,0.0,0.0,49.1835945112715,-9.164999999999994 -2741,2003-02-01,-16.44,-7.449999999999989,-4.479999999999961,1.69,0.0,0.0,50.8735945112715,-7.8787499999999895 -2742,2003-02-02,-4.259999999999991,-0.4499999999999886,0.8300000000000409,9.73,0.1916972226622879,1.5866208251474152,59.01697368612408,-2.307187499999989 -2743,2003-02-03,0.2800000000000295,1.0500000000000114,1.9800000000000184,36.48,15.860073941252686,38.48482155966567,57.01215212645841,0.0 -2744,2003-02-04,-3.089999999999975,-2.259999999999991,0.1299999999999954,12.11,0.0,0.48891304347824693,68.63323908298017,-1.6949999999999932 -2745,2003-02-05,-4.0499999999999545,-3.19,-1.909999999999968,2.9,0.0,0.0,71.53323908298017,-2.8162499999999984 -2746,2003-02-06,-12.13,-5.88,-1.9499999999999889,0.87,0.0,0.0,72.40323908298018,-5.114062499999999 -2747,2003-02-07,-12.45,-3.7199999999999696,1.7800000000000296,0.02,0.0008311983258051,0.0025017568517217495,72.42073732612846,-4.068515624999977 -2748,2003-02-08,-7.149999999999977,-2.269999999999982,4.730000000000018,0.07,0.0209799217052467,0.02787037037037049,72.46286695575809,-2.7196289062499805 -2749,2003-02-09,-7.199999999999989,-0.92999999999995,4.170000000000016,0.69,0.1789180333714953,0.253060686015832,72.89980626974226,-1.3774072265624575 -2750,2003-02-10,-2.5499999999999545,-0.2699999999999818,2.56,0.0,0.0,0.0,72.89980626974226,-0.5468518066406007 -2751,2003-02-11,-5.479999999999961,-2.2399999999999523,1.32000000000005,0.0,0.0,0.0,72.89980626974226,-1.8167129516601144 -2752,2003-02-12,-5.409999999999968,-2.259999999999991,2.56,0.0,0.0,0.0,72.89980626974226,-2.149178237915022 -2753,2003-02-13,-5.96999999999997,-4.45999999999998,-2.4599999999999795,0.0,0.0,0.0,72.89980626974226,-3.882294559478741 -2754,2003-02-14,-11.84,-5.729999999999961,0.7700000000000387,0.0,0.0,0.0,72.89980626974226,-5.268073639869656 -2755,2003-02-15,-12.28,-7.639999999999986,-0.5299999999999727,0.0,0.0,0.0,72.89980626974226,-7.047018409967404 -2756,2003-02-16,-11.83,-7.63,-3.329999999999984,0.0,0.0,0.0,72.89980626974226,-7.484254602491851 -2757,2003-02-17,-13.38,-6.87,0.57000000000005,0.0,0.0,0.0,72.89980626974226,-7.023563650622963 -2758,2003-02-18,-13.78,-8.099999999999966,-1.2099999999999795,0.0,0.0,0.0,72.89980626974226,-7.830890912655715 -2759,2003-02-19,-10.56,-4.659999999999968,4.19,0.0,0.0,0.0,72.89980626974226,-5.452722728163905 -2760,2003-02-20,-9.239999999999952,-4.169999999999959,3.07000000000005,0.0,0.0,0.0,72.89980626974226,-4.490680682040946 -2761,2003-02-21,-7.71999999999997,-2.2399999999999523,7.37,0.0,0.0,0.0,72.89980626974226,-2.8026701705102006 -2762,2003-02-22,-7.67999999999995,-1.3999999999999773,8.75,0.0,0.0,0.0,72.89980626974226,-1.750667542627533 -2763,2003-02-23,-6.71999999999997,-0.8599999999999568,8.31,0.0,0.0,0.0,72.89980626974226,-1.0826668856568509 -2764,2003-02-24,-7.079999999999984,-0.2599999999999909,9.680000000000009,0.0,0.0,0.0,72.89980626974226,-0.4656667214142059 -2765,2003-02-25,-5.009999999999991,2.37,9.88,0.0,2.192169672404109,5.381137559374602,67.51866871036765,0.0 -2766,2003-02-26,-2.0,2.5300000000000296,9.06,0.01,2.6734241445577336,5.398550071782662,62.13011863858498,0.0 -2767,2003-02-27,0.1000000000000227,3.6100000000000136,9.260000000000048,0.0,4.960047305314879,7.185141017444336,54.944977621140644,0.0 -2768,2003-02-28,1.0900000000000318,5.78000000000003,10.68,0.02,9.57910227951669,10.443761851104137,44.521215770036505,0.0 -2769,2003-03-01,3.81,6.12,10.29,8.38,18.74948195474428,17.75730892079202,35.14390684924449,0.0 -2770,2003-03-02,-1.7899999999999636,2.510000000000048,4.87,18.36,12.397182273974757,16.981223892283477,36.522682956961006,0.0 -2771,2003-03-03,-3.4899999999999523,1.4300000000000068,7.94,0.0,0.606430112540452,1.893540919568411,34.6291420373926,0.0 -2772,2003-03-04,-4.109999999999957,4.240000000000009,10.82000000000005,0.05,5.473012603655279,5.443300979125335,29.235841058267262,0.0 -2773,2003-03-05,1.6000000000000227,7.360000000000014,11.93,0.23,11.435912186774992,8.580537702583486,20.885303355683774,0.0 -2774,2003-03-06,-2.789999999999964,2.340000000000032,6.550000000000011,14.59,10.28324235514796,12.643636630585677,22.8316667250981,0.0 -2775,2003-03-07,-3.13,2.050000000000012,8.680000000000007,0.66,1.609806518130982,2.478760755374439,21.01290596972366,0.0 -2776,2003-03-08,-1.7899999999999636,2.2700000000000387,8.110000000000014,0.0,1.4454249340395864,2.089899261153315,18.923006708570348,0.0 -2777,2003-03-09,-2.6499999999999773,3.650000000000034,14.06,0.0,3.6684253376040186,3.161961316308993,15.761045392261355,0.0 -2778,2003-03-10,-2.759999999999991,6.0400000000000205,16.52,0.0,7.683137224165345,3.304049833014202,12.456995559247153,0.0 -2779,2003-03-11,3.680000000000007,9.910000000000023,17.83,0.0,12.970925297211384,2.3251098819174105,10.131885677329741,0.0 -2780,2003-03-12,2.1000000000000227,6.480000000000018,13.74,0.57,7.460405119636551,2.2972581124925675,8.404627564837174,0.0 -2781,2003-03-13,-0.6699999999999591,5.25,11.23,0.0,4.723756462158294,1.331819471507817,7.072808093329357,0.0 -2782,2003-03-14,-3.289999999999964,2.170000000000016,8.900000000000034,0.0,0.8048484613096301,1.055252327653729,6.0175557656756276,0.0 -2783,2003-03-15,-3.759999999999991,0.57000000000005,6.62,0.0,0.0261769344421208,0.30241321295943696,5.71514255271619,0.0 -2784,2003-03-16,-5.19,0.4900000000000091,8.180000000000007,0.0,0.0162468837328721,0.2561142176398114,5.459028335076379,0.0 -2785,2003-03-17,-7.029999999999973,2.140000000000043,10.87,0.0,0.6721254239907151,0.7531987018325748,4.7058296332438045,0.0 -2786,2003-03-18,-4.639999999999986,3.760000000000048,14.31,0.0,2.479391930154476,0.6246225517323365,4.081207081511468,0.0 -2787,2003-03-19,-5.7999999999999545,2.550000000000012,13.26,0.0,1.061887967482716,0.5239816920382262,3.5572253894732415,0.0 -2788,2003-03-20,-4.859999999999957,3.56,14.85,0.0,2.051870713010328,0.443742812897012,3.1134825765762297,0.0 -2789,2003-03-21,-4.599999999999966,2.180000000000007,11.37,0.0,0.6758181442626932,0.37877820623738634,2.7347043703388434,0.0 -2790,2003-03-22,-4.099999999999966,3.5200000000000387,14.49,0.0,1.8768404921442443,0.325491679244614,2.4092126910942295,0.0 -2791,2003-03-23,-3.989999999999952,4.230000000000018,15.54,0.0,2.563987946621155,0.2812960551246328,2.127916635969597,0.0 -2792,2003-03-24,-3.06,4.900000000000034,16.58,0.0,3.15663437977622,0.24428866203135877,1.8836279739382382,0.0 -2793,2003-03-25,-3.109999999999957,5.230000000000018,16.98,0.0,3.287502947171227,0.21304308476623987,1.6705848891719983,0.0 -2794,2003-03-26,-3.539999999999964,5.5400000000000205,16.1,0.0,3.3244388442061754,0.18647168524723703,1.4841132039247613,0.0 -2795,2003-03-27,0.2100000000000363,8.710000000000036,15.8,0.0,5.683830985174918,0.16373256361524202,1.3203806403095193,0.0 -2796,2003-03-28,5.81,10.28,16.92,1.2,7.724035862528304,1.344165199949298,1.1762154403602212,0.0 -2797,2003-03-29,0.6500000000000341,7.340000000000032,15.78,7.73,11.793736104937253,7.857245058456041,1.0489703819041807,0.0 -2798,2003-03-30,0.6800000000000068,8.300000000000011,16.51,0.68,4.775117557518914,0.792551001937715,0.9364193799664657,0.0 -2799,2003-03-31,0.0800000000000409,7.930000000000007,16.89,0.0,3.483030685434352,0.09974152928520988,0.8366778506812559,0.0 -2800,2003-04-01,-0.3599999999999568,8.930000000000007,16.12,20.03,23.363714447618584,19.731168235120816,1.1355096155604436,0.0 -2801,2003-04-02,0.2700000000000386,1.9500000000000453,3.580000000000041,7.06,5.164474804368498,7.182519911113637,1.0129897044468066,0.0 -2802,2003-04-03,-0.0399999999999636,1.4800000000000182,3.31,0.01,0.1342420296777232,0.11833108321762671,0.90465862122918,0.0 -2803,2003-04-04,0.4000000000000341,3.830000000000041,7.88,0.0,1.1563541939854045,0.09615870767757026,0.8084999135516097,0.0 -2804,2003-04-05,1.7800000000000296,7.090000000000032,13.08,0.0,2.7772654689349063,0.08539693848796055,0.7231029750636491,0.0 -2805,2003-04-06,-0.0999999999999659,3.660000000000025,8.640000000000043,0.0,0.9435092912677632,0.07594743941300101,0.6471555356506481,0.0 -2806,2003-04-07,-4.649999999999977,-0.4399999999999977,4.600000000000023,0.0,0.0,0.0,0.6471555356506481,-0.3299999999999983 -2807,2003-04-08,-6.759999999999991,1.62,5.44,0.01,0.1030398367215124,0.07269201554606045,0.5844635201045877,0.0 -2808,2003-04-09,1.82000000000005,3.7800000000000296,5.670000000000016,5.97,7.122644651108277,6.030822507016033,0.523641013088554,0.0 -2809,2003-04-10,-4.349999999999966,-0.6200000000000045,0.8300000000000409,5.57,0.107831636995507,0.8924903474903907,5.201150665598163,-0.4650000000000034 -2810,2003-04-11,-4.96999999999997,3.6100000000000136,8.03000000000003,5.99,4.746060204095505,4.8394492452628315,6.351701420335332,0.0 -2811,2003-04-12,-1.5499999999999543,4.220000000000027,9.450000000000044,0.05,1.7527994078663098,0.9600860279062529,5.441615392429079,0.0 -2812,2003-04-13,-1.089999999999975,7.240000000000009,15.45,0.0,3.131609921479251,0.7501370721776282,4.691478320251451,0.0 -2813,2003-04-14,2.300000000000012,10.32000000000005,19.17,0.0,4.189573442748278,0.6222493076704741,4.069229012580977,0.0 -2814,2003-04-15,3.740000000000009,11.12,20.47,0.0,4.117361205832497,0.5221047947255224,3.5471242178554547,0.0 -2815,2003-04-16,3.670000000000016,10.86,20.06,0.0,3.4334616202861152,0.442233517060217,3.1048907007952375,0.0 -2816,2003-04-17,3.8600000000000136,11.69,20.05,0.01,3.153287760170393,0.3875473767120114,2.7273433240832263,0.0 -2817,2003-04-18,-0.0899999999999749,10.45,19.83,0.0,2.509919458432803,0.32447589875793703,2.4028674253252893,0.0 -2818,2003-04-19,1.25,9.610000000000014,15.82000000000005,4.43,6.7791794634840326,4.710449134366086,2.1224182909592026,0.0 -2819,2003-04-20,2.670000000000016,9.360000000000014,17.02,0.04,1.8823431340735624,0.283576267006346,1.8788420239528567,0.0 -2820,2003-04-21,2.800000000000012,8.270000000000039,15.96,0.07,1.561530475688967,0.2824392330144081,1.6664027909384487,0.0 -2821,2003-04-22,2.670000000000016,9.32000000000005,17.72,0.81,2.410829317151862,0.9959564001147655,1.4804463908236833,0.0 -2822,2003-04-23,2.8500000000000227,10.08,18.58,0.0,1.5155898746271128,0.16329026713936529,1.3171561236843181,0.0 -2823,2003-04-24,3.87,11.61,19.27,0.0,1.609481828662123,0.14378358897794632,1.1733725347063717,0.0 -2824,2003-04-25,8.25,13.96,21.47,0.18,1.7083703536227848,0.3069143041567892,1.0464582305495824,0.0 -2825,2003-04-26,6.480000000000018,9.19,11.94,17.09,19.73425688578557,17.20226317015127,0.9341950603983115,0.0 -2826,2003-04-27,5.990000000000009,10.68,15.0,0.0,0.9805301362307196,0.09949015447037236,0.8347049059279391,0.0 -2827,2003-04-28,8.62,14.41,19.84,3.55,4.684143974920408,3.6383169645256537,0.7463879414022851,0.0 -2828,2003-04-29,10.58,14.51,18.61,1.69,2.5151146036888528,1.7685139500284284,0.6678739913738567,0.0 -2829,2003-04-30,4.0400000000000205,9.110000000000014,13.18,26.9,29.975633789970885,26.969890165051062,0.5979838263227948,0.0 -2830,2003-05-01,3.740000000000009,9.700000000000044,15.19,0.0,0.4776460834818252,0.062285743655338226,0.5356980826674566,0.0 -2831,2003-05-02,4.57000000000005,11.01,16.66,7.2,8.282321880037474,7.2555659902571445,0.48013209241031185,0.0 -2832,2003-05-03,3.31,9.550000000000011,14.67,0.0,0.3533326171721196,0.04961675523125339,0.43051533717905843,0.0 -2833,2003-05-04,7.010000000000048,15.53,23.2,0.02,0.3284680562436685,0.06434078391018544,0.386174553268873,0.0 -2834,2003-05-05,10.91,16.39,23.7,0.0,0.2672897668932177,0.03965480996901921,0.3465197432998538,0.0 -2835,2003-05-06,11.07000000000005,16.22,22.45,0.0,0.2339444703864458,0.035487223239114705,0.3110325200607391,0.0 -2836,2003-05-07,11.01,17.16,25.28,0.0,0.2054532111310738,0.03177618457400761,0.2792563354867315,0.0 -2837,2003-05-08,7.5,13.87,19.22,0.21,0.4105833010948621,0.23846809142395067,0.25078824406278083,0.0 -2838,2003-05-09,8.720000000000027,12.01,15.82000000000005,2.0,2.346693518034285,2.025516320619626,0.22527192344315478,0.0 -2839,2003-05-10,7.210000000000036,11.26,15.68,0.01,0.1523329720713971,0.03288019183884629,0.20239173160430848,0.0 -2840,2003-05-11,8.19,13.74,19.95,5.69,6.347121644102116,5.7105241079519455,0.18186762365236372,0.0 -2841,2003-05-12,8.670000000000016,12.84,17.72,6.12,6.803278941467492,6.138416838055404,0.16345078559695955,0.0 -2842,2003-05-13,1.8500000000000227,6.520000000000039,9.260000000000048,11.37,12.227722668946424,11.386530916324665,0.14691986927229495,0.0 -2843,2003-05-14,-0.3999999999999772,5.100000000000023,9.69,0.32,0.4150858788109301,0.32345193927787724,0.14346792999441768,0.0 -2844,2003-05-15,0.4200000000000159,7.150000000000034,13.4,0.0,0.1153294950795948,0.014489968797814824,0.12897796119660285,0.0 -2845,2003-05-16,4.610000000000014,13.29,19.09,1.75,2.0159140359072985,1.763013511467265,0.11596444972933793,0.0 -2846,2003-05-17,9.550000000000011,11.07000000000005,12.73,1.76,2.01548410234282,1.7716899876279186,0.10427446210141941,0.0 -2847,2003-05-18,10.4,14.82000000000005,17.48,2.1,2.3772649846198157,2.110503080000517,0.09377138210090266,0.0 -2848,2003-05-19,5.600000000000023,12.85,21.66,30.22,33.11638918411467,30.229438302872545,0.0843330792283555,0.0 -2849,2003-05-20,5.840000000000032,7.88,10.1,14.04,15.41651454887569,14.048482779512401,0.07585029971595376,0.0 -2850,2003-05-21,5.270000000000039,8.260000000000048,10.5,0.7,0.8229429305760787,0.7076250497382001,0.0682252499777536,0.0 -2851,2003-05-22,5.980000000000018,9.460000000000036,12.92,1.6,1.8009400604790309,1.6068549030128032,0.06137034696495042,0.0 -2852,2003-05-23,6.910000000000025,16.02,22.21,0.0,0.0459845854332292,0.006163233237511602,0.05520711372743881,0.0 -2853,2003-05-24,8.5,14.05,22.37,0.74,0.8503122147486011,0.7455419120646123,0.04966520166282651,0.0 -2854,2003-05-25,7.700000000000045,8.75,9.78000000000003,9.34,10.249718966053685,9.344983678075103,0.04468152358772411,0.0 -2855,2003-05-26,9.660000000000023,10.86,11.6,0.02,0.0548913859388575,0.024482039597342714,0.040199483990381396,0.0 -2856,2003-05-27,10.02,13.31,16.14,0.01,0.0405356559279428,0.014031189294421181,0.03616829469596022,0.0 -2857,2003-05-28,9.07000000000005,14.84,20.35,0.16,0.2014980364755886,0.16362592893785385,0.03254236575810637,0.0 -2858,2003-05-29,7.900000000000034,14.5,20.17,1.48,1.6421261862831051,1.4832616030249233,0.02928076273318316,0.0 -2859,2003-05-30,10.37,17.09,23.2,0.0,0.021370485903357,0.002934040095967143,0.026346722637216016,0.0 -2860,2003-05-31,12.11,18.35,24.71,0.01,0.030118044385874,0.01263950077386451,0.023707221863351505,0.0 -2861,2003-06-01,14.28,19.35,24.82000000000005,0.06,0.0828321526420597,0.062374631686872906,0.0213325901764786,0.0 -2862,2003-06-02,11.08,16.85,21.0,0.0,0.0154699381809464,0.0021364245527184813,0.01919616562376012,0.0 -2863,2003-06-03,14.63,18.78,23.61,0.0,0.0138967462335751,0.0019221798003343036,0.01727398582342582,0.0 -2864,2003-06-04,12.43,19.52,25.24,0.01,0.0234204671117552,0.011729474189056262,0.015544511634369557,0.0 -2865,2003-06-05,15.47,19.45,24.63,0.13,0.1533693123655954,0.13155613195598384,0.013988379678385716,0.0 -2866,2003-06-06,13.99,17.86,21.91,0.91,1.0051278341695875,0.9114001990826888,0.012588180595696984,0.0 -2867,2003-06-07,14.63,19.48,24.32000000000005,1.63,1.7913953295781062,1.6312599203242175,0.011328260271479394,0.0 -2868,2003-06-08,14.28,19.71,25.81,0.59,0.6532873838249336,0.5911337186877885,0.010194541583690802,0.0 -2869,2003-06-09,12.05,19.36,24.99,0.0,0.0073271405597827,0.001020177086879455,0.009174364496811346,0.0 -2870,2003-06-10,16.86,21.62,27.48,0.0,0.0065885398730462,0.0009180219295007398,0.008256342567310606,0.0 -2871,2003-06-11,15.06,22.33,28.81,0.0,0.005924925523039,0.0008261084281329759,0.00743023413917763,0.0 -2872,2003-06-12,17.62,24.13,31.54,0.26,0.28962669629096,0.2607434074437369,0.006686826695440744,0.0 -2873,2003-06-13,15.99,22.42,29.4,0.03,0.0375962384233587,0.030668993697971315,0.006017832997469429,0.0 -2874,2003-06-14,14.51,21.51,29.85,6.55,7.1664363816820185,6.550602035206733,0.005415797790736446,0.0 -2875,2003-06-15,14.16,19.68,25.91,0.2,0.2225685639925489,0.20054178380475207,0.004874013985984392,0.0 -2876,2003-06-16,12.85,20.04,26.06,0.0,0.0034882868270326,0.0004875666455632222,0.00438644734042117,0.0 -2877,2003-06-17,14.75,19.86,26.23,6.89,7.53703813158989,6.890438778573999,0.003947668766421851,0.0 -2878,2003-06-18,9.58000000000004,15.77,19.65,0.0,0.0028232299393428,0.00039487527965690206,0.003552793486764949,0.0 -2879,2003-06-19,11.96,18.49,23.58,0.0,0.0025400322029786,0.0003553671497603517,0.003197426337004597,0.0 -2880,2003-06-20,12.63,19.9,25.37,0.0,0.0022853208890957,0.00031981374867270663,0.0028776125883318905,0.0 -2881,2003-06-21,10.69,19.78,26.65,0.0,0.0020562155705302,0.0002878188591137011,0.0025897937292181893,0.0 -2882,2003-06-22,17.09,24.6,31.15,0.0,0.0018501299350305,0.0002590260270737162,0.002330767702144473,0.0 -2883,2003-06-23,16.09,24.6,30.81,0.03,0.0344683696958323,0.030233114558564676,0.002097653143579796,0.0 -2884,2003-06-24,14.22,22.42,29.2,0.28,0.3076651620656122,0.28020979592181894,0.001887857221760902,0.0 -2885,2003-06-25,16.27,23.25,30.8,5.03,5.501422962878559,5.030188810513415,0.0016990467083453484,0.0 -2886,2003-06-26,14.56,20.13,26.02,0.0,0.0012129287832261,0.00016992475115250137,0.001529121957192847,0.0 -2887,2003-06-27,13.4,18.75,23.86,0.0,0.0010914743955247,0.00015292846034966291,0.001376193496843184,0.0 -2888,2003-06-28,11.86,17.78,22.66,0.0,0.0009821961689157,0.00013763252372352646,0.0012385609731196574,0.0 -2889,2003-06-29,15.49,22.46,28.52,0.0,0.0008838706404075,0.00012386676805672286,0.0011146942050629346,0.0 -2890,2003-06-30,12.51,21.29,29.33,13.67,14.948315444037243,13.670111478063644,0.0010032161414188668,0.0 -2891,2003-07-01,11.88,14.0,16.97,7.01,7.6658303111763235,7.010100328614962,0.0009028875264560136,0.0 -2892,2003-07-02,11.15,15.12,18.65,6.62,7.239311505765328,6.620090294423223,0.0008125931032333668,0.0 -2893,2003-07-03,10.64,13.91,17.01,5.46,5.970840076784487,5.460081263903427,0.0007313291998067283,0.0 -2894,2003-07-04,9.660000000000023,12.09,14.1,7.78,8.507596006789301,7.780073136640348,0.0006581925594591127,0.0 -2895,2003-07-05,7.29000000000002,13.29,17.65,0.0,0.0004694878814833,6.582226940906832e-05,0.0005923702900500444,0.0 -2896,2003-07-06,10.1,15.99,21.02,0.0,0.0004225148919454,5.923946988532744e-05,0.0005331308201647169,0.0 -2897,2003-07-07,10.72,17.4,23.11,0.0,0.0003802438016871,5.331505911142946e-05,0.0004798157610532874,0.0 -2898,2003-07-08,11.33,17.9,24.13,0.0,0.0003422035461597,4.7983177539047e-05,0.00043183258351424045,0.0 -2899,2003-07-09,10.79,18.08,23.95,0.0,0.0003079703335987,4.318455550311495e-05,0.0003886480280111255,0.0 -2900,2003-07-10,11.1,19.32000000000005,26.06,0.0,0.0002771628861018,3.886585348696863e-05,0.0003497821745241569,0.0 -2901,2003-07-11,12.5,20.16,26.28,0.0,0.0002494381626227,3.4979068502846284e-05,0.0003148031060213106,0.0 -2902,2003-07-12,14.62,21.54,27.94,0.0,0.0002244875145409,3.148099994925263e-05,0.00028332210607205795,0.0 -2903,2003-07-13,16.36,22.79,28.98,0.0,0.0002020332296222,2.8332768975657143e-05,0.0002549893370964008,0.0 -2904,2003-07-14,17.4,24.28,30.42,0.0,0.0001818254247791,2.549938598610491e-05,0.00022948995111029592,0.0 -2905,2003-07-15,17.09,24.09,30.64,0.0,0.0001636392521421,2.2949361453522132e-05,0.00020654058965677378,0.0 -2906,2003-07-16,14.79,20.87,25.87,1.21,1.3232269546059896,1.210020654355702,0.0001858862339547301,0.0 -2907,2003-07-17,8.090000000000032,15.38,20.05,0.0,0.0001325427663938,1.8588863751162343e-05,0.00016729737020356773,0.0 -2908,2003-07-18,11.22,18.9,25.63,0.0,0.000119286560752,1.672993170790572e-05,0.000150567438495662,0.0 -2909,2003-07-19,15.06,22.87,29.84,0.0,0.0001073563422312,1.5056901546073036e-05,0.00013551053694958897,0.0 -2910,2003-07-20,14.97,24.43,32.93,6.77,7.4027821141739825,6.770013551181428,0.00012195935552075683,0.0 -2911,2003-07-21,12.86,17.41,24.82000000000005,4.25,4.647267658483333,4.250012196039016,0.00010976331650446054,0.0 -2912,2003-07-22,14.08,18.99,26.59,3.51,3.8381027927145457,3.510010976415456,9.878690104815379e-05,0.0 -2913,2003-07-23,12.68,19.79,25.75,0.01,0.0110049761517293,0.010009878757987447,8.890814306070643e-05,0.0 -2914,2003-07-24,10.52,16.39,20.37,0.09,0.098474274900725,0.09000889086929091,8.001727376978784e-05,0.0 -2915,2003-07-25,14.36,19.94,25.46,0.0,5.705006052696116e-05,8.001771914644409e-06,7.201550185514343e-05,0.0 -2916,2003-07-26,16.78,21.95,28.37,5.47,5.981246271754904,5.47000720158626,6.481391559416455e-05,0.0 -2917,2003-07-27,12.25,15.66,19.31,22.86,24.99641111533857,22.86000648142078,5.833249481365435e-05,0.0 -2918,2003-07-28,9.69,15.45,21.3,0.0,4.158870963167517e-05,5.833273150427655e-06,5.2499221663226694e-05,0.0 -2919,2003-07-29,9.88,16.38,22.54,0.0,3.742964874466747e-05,5.24994133824578e-06,4.7249280324980914e-05,0.0 -2920,2003-07-30,12.22,18.46,25.0,4.8,5.24861424409448,4.800004724943562,4.2524336763237706e-05,0.0 -2921,2003-07-31,12.41,16.9,18.9,0.01,0.0109648605806824,0.010004252446255003,3.8271890508234576e-05,0.0 -2922,2003-08-01,14.31,20.1,25.59,0.0,2.728587625008285e-05,3.827199239547041e-06,3.444469126868753e-05,0.0 -2923,2003-08-02,16.64,22.57000000000005,28.51,0.0,2.455720687170897e-05,3.444477379729973e-06,3.100021388895756e-05,0.0 -2924,2003-08-03,18.3,24.76,31.34,0.0,2.210141996471682e-05,3.1000280737097844e-06,2.7900185815247775e-05,0.0 -2925,2003-08-04,19.11,26.03,33.21,0.0,1.9891224330485065e-05,2.7900239962215463e-06,2.511016181902623e-05,0.0 -2926,2003-08-05,17.88,25.7,33.4,0.0,1.7902058451066062e-05,2.511020567805114e-06,2.2599141251221113e-05,0.0 -2927,2003-08-06,19.8,26.02,33.72,0.0,1.61118174145562e-05,2.25991767770175e-06,2.0339223573519364e-05,0.0 -2928,2003-08-07,17.4,25.69,34.61,0.0,1.4500607168178287e-05,2.0339252349404386e-06,1.8305298338578927e-05,0.0 -2929,2003-08-08,16.65,24.28,34.5,0.0,1.305052336245676e-05,1.8305321647038466e-06,1.6474766173875082e-05,0.0 -2930,2003-08-09,18.0,25.53,33.98,0.0,1.1745452324259855e-05,1.6474785053721966e-06,1.4827287668502885e-05,0.0 -2931,2003-08-10,18.3,24.81,34.25,0.0,1.057089194329767e-05,1.4827302961174968e-06,1.3344557372385389e-05,0.0 -2932,2003-08-11,18.39,25.64,34.58,0.0,9.513790478685875e-06,1.3344569759446937e-06,1.2010100396440695e-05,0.0 -2933,2003-08-12,18.4,26.19,34.71,0.0,8.562401491912387e-06,1.2010110429958478e-06,1.0809089353444848e-05,0.0 -2934,2003-08-13,18.29,27.32000000000005,36.13,0.51,0.5576693903945147,0.510001080909748,9.728179605385573e-06,0.0 -2935,2003-08-14,14.8,22.79,28.81,0.91,0.9950503329030352,0.9100009728186189,8.755360986548145e-06,0.0 -2936,2003-08-15,15.31,18.69,22.3,3.16,3.4553217757029437,3.1600008755366322,7.879824354671327e-06,0.0 -2937,2003-08-16,15.5,22.25,29.93,0.16,0.1749583030235842,0.16000078798286738,7.091841487294429e-06,0.0 -2938,2003-08-17,15.24,19.05,27.83,9.82,10.737726113341424,9.820000709184498,6.38265698871812e-06,0.0 -2939,2003-08-18,12.98,18.0,22.07000000000005,1.29,1.4105605752343822,1.2900006382659823,5.744391006470376e-06,0.0 -2940,2003-08-19,14.67,20.07000000000005,25.99,0.03,0.0328077238325476,0.030000574439330182,5.169951676288857e-06,0.0 -2941,2003-08-20,14.79,19.57000000000005,25.68,1.08,1.1809343112631518,1.0800005169953537,4.6529563227370575e-06,0.0 -2942,2003-08-21,12.8,18.15,23.16,0.0,3.317228544334347e-06,4.6529578287125376e-07,4.187660539865804e-06,0.0 -2943,2003-08-22,13.95,19.71,27.01,0.0,2.985504481578882e-06,4.187661759705855e-07,3.7688943638952186e-06,0.0 -2944,2003-08-23,13.89,20.43,28.06,0.0,2.6869530546808764e-06,3.7688953519655965e-07,3.392004828698659e-06,0.0 -2945,2003-08-24,15.06,20.89,28.04,0.0,2.4182569564338244e-06,3.392005629035618e-07,3.0528042657950975e-06,0.0 -2946,2003-08-25,13.9,20.37,27.38,0.0,2.1764306186398672e-06,3.0528049140680004e-07,2.7475237743882973e-06,0.0 -2947,2003-08-26,12.48,19.28,26.57000000000005,0.0,1.958787036634196e-06,2.747524299489324e-07,2.472771344439365e-06,0.0 -2948,2003-08-27,13.47,21.04,28.3,0.13,0.1421508196752821,0.130000247277177,2.2254941674622473e-06,0.0 -2949,2003-08-28,13.23,19.91,26.42,40.48,44.26303095541028,40.48000022254945,2.002944716264147e-06,0.0 -2950,2003-08-29,13.64,15.28,19.44,12.26,13.405750935400684,12.260000200294499,1.8026502167317142e-06,0.0 -2951,2003-08-30,10.96,13.98,17.8,28.99,31.69924094428272,28.990000180265042,1.6223851724546688e-06,0.0 -2952,2003-08-31,5.960000000000036,10.97,16.46,0.0,1.1566430252770403e-06,1.6223853555460439e-07,1.4601466369000644e-06,0.0 -2953,2003-09-01,5.770000000000039,10.24,15.72,0.0,1.040978575846298e-06,1.4601467852040746e-07,1.314131958379657e-06,0.0 -2954,2003-09-02,6.350000000000023,11.57000000000005,18.51,0.0,9.368805992702372e-07,1.3141320785059024e-07,1.1827187505290667e-06,0.0 -2955,2003-09-03,6.19,11.63,19.87,0.0,8.431924429601771e-07,1.1827188478313236e-07,1.0644468657459343e-06,0.0 -2956,2003-09-04,6.050000000000011,14.15,21.73,0.0,7.588731205939162e-07,1.0644469445607608e-07,9.580021712898582e-07,0.0 -2957,2003-09-05,11.07000000000005,13.98,17.09,3.19,3.4881198452004507,3.1900000958002233,8.622019477768715e-07,0.0 -2958,2003-09-06,10.9,13.59,15.92,5.07,5.543813828614566,5.0700000862202,7.759817478281437e-07,0.0 -2959,2003-09-07,10.07000000000005,13.65,19.89,37.6,41.1138815874732,37.60000007759818,6.983835688567865e-07,0.0 -2960,2003-09-08,10.73,13.49,17.03,3.42,3.739614145161164,3.4200000698383604,6.285452085783882e-07,0.0 -2961,2003-09-09,11.51,13.07000000000005,14.59,3.84,4.198864894158376,3.8400000628545237,5.656906849724465e-07,0.0 -2962,2003-09-10,10.35,12.85,15.87,1.51,1.651116370363264,1.5100000565690708,5.091216142492385e-07,0.0 -2963,2003-09-11,8.550000000000011,11.6,14.08,2.51,2.744570612859561,2.510000050912163,4.5820945102128434e-07,0.0 -2964,2003-09-12,7.37,11.97,18.8,0.01,0.0109348694980819,0.010000045820946563,4.123885044587014e-07,0.0 -2965,2003-09-13,8.100000000000023,13.4,20.64,0.0,2.940028287167751e-07,4.123885162883829e-08,3.711496528298631e-07,0.0 -2966,2003-09-14,7.970000000000027,12.35,19.44,0.0,2.646025363535904e-07,3.71149662411905e-08,3.340346865886726e-07,0.0 -2967,2003-09-15,6.5400000000000205,12.68,21.34,0.0,2.381422750301109e-07,3.340346943501265e-08,3.006312171536599e-07,0.0 -2968,2003-09-16,7.54000000000002,13.07000000000005,22.11,0.01,0.0109347571563005,0.010000030063122344,2.7056809480961615e-07,0.0 -2969,2003-09-17,7.430000000000007,13.78,23.45,0.01,0.0109347357234913,0.01000002705680999,2.4351128481942554e-07,0.0 -2970,2003-09-18,7.800000000000011,14.37,25.22,0.0,1.736057048272359e-07,2.4351128894418034e-08,2.191601559250075e-07,0.0 -2971,2003-09-19,8.300000000000011,14.93,25.76,0.0,1.5624513103502927e-07,2.1916015926605886e-08,1.9724413999840162e-07,0.0 -2972,2003-09-20,8.450000000000045,14.76,24.68,0.0,1.4062061525084516e-07,1.972441427046532e-08,1.775197257279363e-07,0.0 -2973,2003-09-21,8.25,14.93,24.18,0.0,1.2655855155440898e-07,1.775197279200001e-08,1.5976775293593629e-07,0.0 -2974,2003-09-22,10.22,16.29,23.9,4.87,5.325122471264956,4.870000015976776,1.437909774647855e-07,0.0 -2975,2003-09-23,5.090000000000032,9.37,13.12,10.74,11.743699100062871,10.740000014379097,1.2941187957448565e-07,0.0 -2976,2003-09-24,3.680000000000007,8.270000000000039,14.78,0.0,9.226118022243376e-08,1.2941188073943821e-08,1.1647069150054183e-07,0.0 -2977,2003-09-25,5.82000000000005,11.98,20.29,0.01,0.0109346258633205,0.010000011647069245,1.0482362225612649e-07,0.0 -2978,2003-09-26,7.680000000000007,13.08,20.41,0.14,0.1530836743271841,0.14000001048236232,9.43412599540813e-08,0.0 -2979,2003-09-27,10.29,13.49,16.35,8.47,9.261557842793996,8.470000009434127,8.490713389676282e-08,0.0 -2980,2003-09-28,8.140000000000043,11.36,12.66,19.46,21.27862040432509,19.460000008490713,7.641642045693915e-08,0.0 -2981,2003-09-29,3.240000000000009,8.480000000000018,15.81,0.02,0.0218691401358203,0.020000007641642087,6.877477837062585e-08,0.0 -2982,2003-09-30,3.3500000000000227,12.07000000000005,16.93,4.38,4.789329807808929,4.380000006877478,6.189730050066157e-08,0.0 -2983,2003-10-01,11.27,13.62,15.82000000000005,4.52,4.942413402501421,4.52000000618973,5.570757042394503e-08,0.0 -2984,2003-10-02,12.27,15.92,20.72,33.52,36.65258760004046,33.52000000557076,5.013681335996372e-08,0.0 -2985,2003-10-03,10.74,13.68,18.31,32.31,35.329507913849554,32.310000005013684,4.5123132006482034e-08,0.0 -2986,2003-10-04,4.210000000000036,9.650000000000034,14.4,26.3,28.757847670491344,26.300000004512313,4.061081879167073e-08,0.0 -2987,2003-10-05,3.090000000000032,4.32000000000005,5.610000000000014,9.05,9.895761288527169,9.050000004061083,3.6549736901031544e-08,0.0 -2988,2003-10-06,2.1000000000000227,6.410000000000025,9.850000000000025,3.79,4.0751338229791845,3.7900000036549737,3.289476320163598e-08,0.0 -2989,2003-10-07,0.9900000000000092,5.75,8.5,41.57,42.06170486783257,41.57000000328948,2.9605286873945528e-08,0.0 -2990,2003-10-08,-0.5799999999999841,7.110000000000014,10.34,10.47,9.996313949693562,9.971662109152945,0.49833792045234315,0.0 -2991,2003-10-09,5.7000000000000455,9.33000000000004,12.38,3.43,4.348074530311369,3.4815612513305605,0.44677666912178293,0.0 -2992,2003-10-10,4.07000000000005,8.610000000000014,14.99,0.0,0.5130877975185395,0.046066151044787125,0.4007105180769958,0.0 -2993,2003-10-11,2.9700000000000277,8.260000000000048,15.08,0.02,0.4651455669426632,0.061187970176725295,0.3595225479002705,0.0 -2994,2003-10-12,3.0200000000000387,9.710000000000036,15.98,0.01,0.3958750256120447,0.046851363520756695,0.3226711843795138,0.0 -2995,2003-10-13,8.410000000000025,12.09,15.96,1.95,2.4679859344207977,1.982991354782683,0.2896798295968308,0.0 -2996,2003-10-14,3.3600000000000136,9.600000000000025,15.19,0.0,0.2939483154254628,0.029551692056691142,0.26012813754013964,0.0 -2997,2003-10-15,1.3400000000000318,6.53000000000003,14.32000000000005,0.03,0.2900596650410572,0.05648350336434041,0.23364463417579923,0.0 -2998,2003-10-16,-0.3499999999999659,4.460000000000036,12.83,0.0,0.2275271184744524,0.02374419049982197,0.20990044367597727,0.0 -2999,2003-10-17,-1.759999999999991,3.57000000000005,11.75,0.0,0.1671482335414674,0.02129651344591655,0.18860393023006072,0.0 -3000,2003-10-18,-2.009999999999991,3.920000000000016,11.24,0.0,0.1817613697580801,0.019107828191112234,0.1694961020389485,0.0 -3001,2003-10-19,0.8600000000000136,8.480000000000018,12.85,24.57,25.618112801283257,24.587149448804187,0.15234665323476104,0.0 -3002,2003-10-20,3.710000000000037,9.400000000000034,11.62,25.18,27.84533184551953,25.195396110764307,0.13695054247045563,0.0 -3003,2003-10-21,-2.339999999999975,1.990000000000009,5.75,1.79,1.137374812712188,1.340701351279273,0.5862491911911828,0.0 -3004,2003-10-22,-2.579999999999984,3.69,9.150000000000034,8.66,6.737580239392988,7.047506385684551,2.198742805506632,0.0 -3005,2003-10-23,-0.3999999999999772,1.25,2.6000000000000227,9.23,4.037176577164653,8.42408281925838,3.0046599862482513,0.0 -3006,2003-10-24,-6.579999999999984,-1.63,1.3600000000000136,0.56,0.0229955515924935,0.09591939546599598,3.4687405907822555,-1.2225 -3007,2003-10-25,-6.829999999999984,-2.6999999999999886,3.550000000000012,0.0,0.0,0.0,3.4687405907822555,-2.3306249999999915 -3008,2003-10-26,-5.849999999999966,-0.1599999999999681,6.63,0.0,0.0,0.0,3.4687405907822555,-0.702656249999974 -3009,2003-10-27,-4.329999999999984,0.1500000000000341,7.53000000000003,0.0,0.0,0.0,3.4687405907822555,-0.06316406249996792 -3010,2003-10-28,-2.6999999999999886,5.840000000000032,11.68,3.8,4.508098462656394,3.626400119167804,3.6423404716144514,0.0 -3011,2003-10-29,2.44,4.19,5.760000000000048,31.24,34.47946245963978,31.696516903444635,3.185823568169813,0.0 -3012,2003-10-30,2.7100000000000364,4.930000000000007,7.06,8.25,10.091767426245127,8.639182143795098,2.7966414243747155,0.0 -3013,2003-10-31,1.06,4.980000000000018,9.78000000000003,38.14,39.98123963468976,38.47406847936219,2.4625729450125284,0.0 -3014,2003-11-01,0.4600000000000364,5.87,11.23,2.26,3.4759874606716776,2.548440361883473,2.1741325831290554,0.0 -3015,2003-11-02,3.2700000000000387,5.87,9.660000000000023,2.93,4.296606926502172,3.1802932726753506,1.9238393104537053,0.0 -3016,2003-11-03,1.0900000000000318,5.170000000000016,7.800000000000011,3.72,4.631875796729489,3.9381292062296342,1.705710104224071,0.0 -3017,2003-11-04,-0.1799999999999499,3.740000000000009,11.39,0.0,0.5625005290524229,0.19080914098439886,1.5149009632396722,0.0 -3018,2003-11-05,-1.8999999999999773,3.82000000000005,14.24,0.0,0.5400835410062691,0.16745360793820824,1.3474473553014639,0.0 -3019,2003-11-06,-2.0299999999999727,3.8000000000000114,11.92,0.0,0.5012550928075644,0.14737416005216095,1.200073195249303,0.0 -3020,2003-11-07,-0.4099999999999681,2.080000000000041,7.400000000000034,0.0,0.1683633169095097,0.13002519018073655,1.0700480050685663,0.0 -3021,2003-11-08,0.3100000000000023,3.710000000000037,5.850000000000023,0.02,0.4511150304367238,0.13496944640991262,0.9550785586586537,0.0 -3022,2003-11-09,3.7800000000000296,6.430000000000007,9.800000000000011,1.01,1.8247377008865349,1.1118529510259618,0.853225607632692,0.0 -3023,2003-11-10,-0.5799999999999841,4.930000000000007,13.24,0.0,0.4983515839125237,0.09038649097412742,0.7628391166585645,0.0 -3024,2003-11-11,-0.8199999999999932,3.19,10.97,0.0,0.2663673069125912,0.08033177515873534,0.6825073414998292,0.0 -3025,2003-11-12,-0.4899999999999522,6.82000000000005,11.82000000000005,12.47,12.30985078326396,12.101185911091086,1.051321430408743,0.0 -3026,2003-11-13,0.0500000000000113,3.7200000000000273,8.640000000000043,0.0,0.4285638421776716,0.11282045476629281,0.9385009756424503,0.0 -3027,2003-11-14,-0.7899999999999636,3.730000000000018,8.78000000000003,1.39,1.579370624433997,1.3882969761937483,0.940203999448702,0.0 -3028,2003-11-15,-0.6699999999999591,6.260000000000048,10.9,0.47,1.0951877227891575,0.5460353024303577,0.8641686970183443,0.0 -3029,2003-11-16,3.140000000000043,7.37,11.99,26.0,29.18354159905745,26.091611528303133,0.772557168715211,0.0 -3030,2003-11-17,-1.2799999999999727,2.230000000000018,5.980000000000018,0.0,0.1479608009357297,0.08140737135471979,0.6911497973604912,0.0 -3031,2003-11-18,-1.13,2.640000000000043,9.850000000000025,0.0,0.1683625662545015,0.07243778063391337,0.6187120167265778,0.0 -3032,2003-11-19,-0.7199999999999704,3.980000000000018,11.88,0.0,0.3053225183380184,0.06453399249345498,0.5541780242331229,0.0 -3033,2003-11-20,-0.0099999999999909,5.220000000000027,15.32000000000005,0.0,0.4146972802558827,0.05755408426505753,0.49662393996806536,0.0 -3034,2003-11-21,0.0,5.360000000000014,11.6,0.0,0.4061218920637078,0.05137799089057849,0.4452459490774869,0.0 -3035,2003-11-22,3.5,6.740000000000009,10.93,0.0,0.524651782793093,0.04590358105305174,0.3993423680244351,0.0 -3036,2003-11-23,4.900000000000034,8.53000000000003,13.13,0.02,0.4950046199028091,0.061043541180159686,0.35829882684427544,0.0 -3037,2003-11-24,4.650000000000034,8.13,11.24,0.98,1.475122252242681,1.016722881168133,0.3215759456761423,0.0 -3038,2003-11-25,2.400000000000034,5.410000000000025,10.16,0.0,0.3301653037288423,0.03287692272395272,0.2886990229521896,0.0 -3039,2003-11-26,2.88,6.5,10.81,5.77,6.611430162023192,5.799449665404285,0.2592493575479045,0.0 -3040,2003-11-27,-0.4399999999999977,0.7300000000000182,4.470000000000027,38.12,25.475035809853598,35.04676976612196,3.332479591425938,0.0 -3041,2003-11-28,-1.089999999999975,0.4500000000000455,1.5200000000000389,0.66,0.1176962052796343,0.5949078295713619,3.3975717618545764,0.0 -3042,2003-11-29,-1.339999999999975,1.38,3.8600000000000136,0.16,0.2522731971265794,0.5449067790185924,3.012664982835984,0.0 -3043,2003-11-30,3.75,6.510000000000048,8.580000000000041,0.91,3.1366533807550145,1.2744002543873578,2.6482647284486265,0.0 -3044,2003-12-01,4.230000000000018,6.160000000000025,8.800000000000011,0.1,1.9082032983761053,0.4136110720912455,2.334653656357381,0.0 -3045,2003-12-02,4.2000000000000455,5.760000000000048,7.75,0.2,1.7292216622632703,0.4713798255679067,2.0632738307894747,0.0 -3046,2003-12-03,3.550000000000012,5.890000000000043,10.52,0.0,1.3954883537914322,0.2359397886546184,1.8273340421348563,0.0 -3047,2003-12-04,-1.19,3.080000000000041,9.28000000000003,0.0,0.5777940857579998,0.20596054963427127,1.621373492500585,0.0 -3048,2003-12-05,-2.329999999999984,1.580000000000041,8.480000000000018,0.0,0.1712680221147481,0.1804236595991243,1.4409498329014607,0.0 -3049,2003-12-06,-2.589999999999975,1.5100000000000475,7.800000000000011,0.0,0.146820911084758,0.15853799193073043,1.2824118409707304,0.0 -3050,2003-12-07,-2.17999999999995,-0.0699999999999931,1.900000000000034,0.0,0.0,0.0,1.2824118409707304,-0.05249999999999482 -3051,2003-12-08,-4.17999999999995,-0.7599999999999909,5.460000000000036,0.0,0.0,0.0,1.2824118409707304,-0.5831249999999919 -3052,2003-12-09,-5.589999999999975,-1.81,4.930000000000007,0.0,0.0,0.0,1.2824118409707304,-1.503281249999998 -3053,2003-12-10,-5.159999999999968,-1.63,6.0,0.0,0.0,0.0,1.2824118409707304,-1.5983203124999994 -3054,2003-12-11,-5.21999999999997,2.480000000000018,6.410000000000025,6.53,3.4768804700087905,4.143897323147046,3.6685145178236844,0.0 -3055,2003-12-12,2.25,4.910000000000025,9.5,0.08,1.3411868549357653,0.5404653722066188,3.2080491456170654,0.0 -3056,2003-12-13,2.5,6.4500000000000455,8.350000000000023,13.49,16.052037468115394,13.882393202256841,2.8156559433602246,0.0 -3057,2003-12-14,1.37,4.260000000000048,7.330000000000041,6.6,7.609965107469261,6.936712242381033,2.4789437009791917,0.0 -3058,2003-12-15,-2.109999999999957,-0.0199999999999818,1.19,3.31,0.2503308444297837,1.193606060606076,4.595337640373115,-0.01499999999998635 -3059,2003-12-16,-5.38,-2.25,2.1100000000000136,0.0,0.0,0.0,4.595337640373115,-1.6912499999999966 -3060,2003-12-17,-5.039999999999964,0.1400000000000432,3.0200000000000387,0.0,0.0,0.0,4.595337640373115,-0.31781249999996675 -3061,2003-12-18,-1.099999999999966,1.94,5.600000000000023,0.01,0.3417841938697051,0.615052000857201,3.9902856395159136,0.0 -3062,2003-12-19,-0.6899999999999977,2.31,4.400000000000034,0.01,0.4354021341444349,0.518639958214468,3.4816456813014454,0.0 -3063,2003-12-20,-0.7099999999999795,6.020000000000039,8.79000000000002,28.38,26.04116996747456,27.037585123708133,4.824060557593311,0.0 -3064,2003-12-21,-0.5299999999999727,2.3600000000000136,6.220000000000027,17.67,14.19798702610499,17.172106285431568,5.321954272161747,0.0 -3065,2003-12-22,-5.44,-2.419999999999959,-0.75,5.33,0.0,0.0,10.651954272161747,-1.8149999999999693 -3066,2003-12-23,-10.52,-5.579999999999984,-1.1999999999999886,0.01,0.0,0.0,10.661954272161747,-4.63874999999998 -3067,2003-12-24,-11.22,-7.71999999999997,-0.0699999999999931,0.0,0.0,0.0,10.661954272161747,-6.949687499999973 -3068,2003-12-25,-11.12,-5.509999999999991,0.8700000000000045,0.0,0.0,0.0,10.661954272161747,-5.869921874999987 -3069,2003-12-26,-7.62,1.5200000000000389,4.900000000000034,0.0,0.0,0.0,10.661954272161747,-0.3274804687499675 -3070,2003-12-27,2.8500000000000227,4.9500000000000455,6.07000000000005,2.52,5.163636770023699,4.376935193868498,8.805019078293249,0.0 -3071,2003-12-28,-4.109999999999957,1.06,4.170000000000016,9.75,3.6106476940899297,5.683037465862716,12.871981612430533,0.0 -3072,2003-12-29,-4.859999999999957,-2.1399999999999864,0.6299999999999955,0.0,0.0,0.0,12.871981612430533,-1.6049999999999898 -3073,2003-12-30,-2.039999999999964,-0.9499999999999886,1.1000000000000227,0.7,0.0473171665684217,0.24522292993631178,13.326758682494221,-1.113749999999989 -3074,2003-12-31,-1.6999999999999886,-1.1499999999999773,-0.0899999999999749,0.0,0.0,0.0,13.326758682494221,-1.1409374999999802 -3075,2004-01-01,-2.38,-1.7099999999999795,-0.5999999999999659,4.04,0.0,0.0,17.366758682494222,-1.5677343749999797 -3076,2004-01-02,-4.669999999999959,-1.9799999999999611,0.5800000000000409,0.12,0.0010397679636329,0.013257142857143786,17.473501539637077,-1.8769335937499658 -3077,2004-01-03,-5.389999999999986,-3.9699999999999696,-2.859999999999957,0.0,0.0,0.0,17.473501539637077,-3.4467333984374684 -3078,2004-01-04,-7.149999999999977,-4.96999999999997,-3.349999999999966,0.0,0.0,0.0,17.473501539637077,-4.589183349609345 -3079,2004-01-05,-7.06,-3.81,1.2200000000000273,0.0,0.0,0.0,17.473501539637077,-4.0047958374023365 -3080,2004-01-06,-6.19,-3.259999999999991,1.830000000000041,0.0,0.0,0.0,17.473501539637077,-3.4461989593505775 -3081,2004-01-07,-6.06,-2.4899999999999523,4.220000000000027,0.0,0.0,0.0,17.473501539637077,-2.729049739837609 -3082,2004-01-08,-6.009999999999991,1.5100000000000475,3.550000000000012,22.08,5.507731456671659,9.995606577212879,29.557894962424196,0.0 -3083,2004-01-09,3.340000000000032,4.100000000000023,5.180000000000007,2.03,5.212857826526621,6.716145463829301,24.871749498594895,0.0 -3084,2004-01-10,3.2200000000000277,5.080000000000041,7.0,2.36,6.485573008863786,7.546934338446436,19.68481516014846,0.0 -3085,2004-01-11,5.140000000000043,7.420000000000016,8.82000000000005,26.25,34.70128050129765,30.913877837671834,15.020937322476627,0.0 -3086,2004-01-12,4.430000000000007,7.12,9.54000000000002,33.32,41.39055147503046,36.39156733997079,11.949369982505836,0.0 -3087,2004-01-13,4.010000000000048,8.230000000000018,9.920000000000016,37.01,45.48020793034832,39.19816731098455,9.761202671521284,0.0 -3088,2004-01-14,0.7600000000000477,3.06,5.760000000000048,10.64,10.99604752595912,12.278896016353494,8.12230665516779,0.0 -3089,2004-01-15,-0.3499999999999659,0.5400000000000205,1.410000000000025,0.65,0.154244614566364,0.8386195499195168,7.933687105248272,0.0 -3090,2004-01-16,1.2200000000000273,2.990000000000009,5.350000000000023,17.37,17.795906967893686,18.601203317732953,6.702483787515319,0.0 -3091,2004-01-17,0.0300000000000295,1.7900000000000205,3.32000000000005,10.05,6.546375967711279,11.031579106091932,5.720904681423387,0.0 -3092,2004-01-18,-5.289999999999964,-0.3100000000000023,1.62,0.34,0.0241252656846545,0.07971056439942154,5.981194117023966,-0.2325000000000017 -3093,2004-01-19,-6.109999999999957,-1.2899999999999636,0.7900000000000205,20.61,0.264118904408918,2.3596956521739827,24.231498464849984,-1.0256249999999731 -3094,2004-01-20,-0.5799999999999841,0.8100000000000023,2.170000000000016,12.78,4.1909481297832905,10.954939932498645,26.05655853235134,0.0 -3095,2004-01-21,-6.789999999999964,-0.5499999999999545,4.490000000000009,0.0,0.0,0.0,26.05655853235134,-0.4124999999999659 -3096,2004-01-22,-7.38,-2.25,1.830000000000041,0.96,0.0649367886089514,0.1907491856677559,26.825809346683585,-1.7906249999999915 -3097,2004-01-23,-6.389999999999986,-2.1499999999999773,2.88,0.0,0.0,0.0,26.825809346683585,-2.060156249999981 -3098,2004-01-24,-6.5,-0.2599999999999909,2.400000000000034,7.7,0.9506286325265382,2.0764044943820448,32.44940485230154,-0.7100390624999884 -3099,2004-01-25,-3.70999999999998,-1.6599999999999682,1.3500000000000227,3.53,0.2230500468033882,0.9417984189723478,35.037606433329195,-1.4225097656249732 -3100,2004-01-26,-1.4799999999999611,0.7100000000000364,2.7800000000000296,20.93,7.017723736038872,14.705574367393481,41.26203206593571,0.0 -3101,2004-01-27,-4.039999999999964,-2.609999999999957,-1.0699999999999932,12.81,0.0,0.0,54.072032065935716,-1.9574999999999676 -3102,2004-01-28,-4.349999999999966,-3.2399999999999523,-2.5499999999999545,14.94,0.0,0.0,69.01203206593571,-2.919374999999956 -3103,2004-01-29,-13.79,-7.399999999999977,-3.909999999999968,4.18,0.0,0.0,73.1920320659357,-6.279843749999972 -3104,2004-01-30,-13.38,-3.44,0.8799999999999955,0.11,0.0009335084067746,0.0067882187938288485,73.29524384714188,-4.149960937499993 -3105,2004-01-31,0.8300000000000409,4.400000000000034,7.800000000000011,2.0,7.685999248244333,12.035562541052245,63.25968130608963,0.0 -3106,2004-02-01,-1.1499999999999773,3.2800000000000296,9.930000000000009,0.0,3.788036138271156,6.624713964985784,56.634967341103845,0.0 -3107,2004-02-02,-3.44,1.31,10.27,0.0,0.5553383368518603,2.4200741791527665,54.21489316195108,0.0 -3108,2004-02-03,-4.17999999999995,0.7700000000000387,10.14,0.0,0.1537893496787424,1.3740076507886148,52.84088551116247,0.0 -3109,2004-02-04,-4.529999999999973,1.19,10.71,0.0,0.4525795269084417,2.0809292904137204,50.75995622074875,0.0 -3110,2004-02-05,-3.759999999999991,1.9500000000000453,11.28,0.0,1.256479259574694,3.304360289175141,47.455595931573605,0.0 -3111,2004-02-06,-2.4699999999999704,7.100000000000023,13.12,3.17,13.675689892559092,14.181442636819249,36.44415329475436,0.0 -3112,2004-02-07,2.090000000000032,4.06,6.340000000000032,4.25,9.08053799993583,9.617772705126185,31.076380589628172,0.0 -3113,2004-02-08,0.6100000000000136,2.4600000000000364,4.0400000000000205,8.16,8.281532711481544,11.068867378825267,28.167513210802905,0.0 -3114,2004-02-09,-6.56,-1.089999999999975,4.960000000000036,0.0,0.0,0.0,28.167513210802905,-0.8174999999999812 -3115,2004-02-10,-6.92999999999995,-0.5499999999999545,5.300000000000011,0.0,0.0,0.0,28.167513210802905,-0.6168749999999612 -3116,2004-02-11,-2.419999999999959,1.1100000000000136,5.19,0.24,0.3274384893184299,1.394421173723818,27.013092037079087,0.0 -3117,2004-02-12,-3.1399999999999864,0.6400000000000432,6.740000000000009,0.0,0.0735933913740045,0.6891251732179505,26.323966863861138,0.0 -3118,2004-02-13,-4.0499999999999545,0.5600000000000023,8.470000000000027,0.0,0.052429656849502,0.5929448969051214,25.731021966956018,0.0 -3119,2004-02-14,-4.239999999999952,0.160000000000025,5.960000000000036,0.0,0.0,0.16694470996951316,25.564077256986504,0.0 -3120,2004-02-15,-2.2399999999999523,0.1100000000000136,2.050000000000012,0.0,0.0,0.11429674228126793,25.449780514705235,0.0 -3121,2004-02-16,-0.5799999999999841,1.62,4.580000000000041,0.01,0.5818007965262044,1.6873855949149794,23.772394919790255,0.0 -3122,2004-02-17,0.5900000000000318,3.37,7.520000000000039,0.0,3.080693124235596,3.34455599043545,20.427838929354806,0.0 -3123,2004-02-18,-3.329999999999984,-0.169999999999959,2.69,0.0,0.0,0.0,20.427838929354806,-0.12749999999996925 -3124,2004-02-19,-4.449999999999989,-1.5,2.1100000000000136,0.0,0.0,0.0,20.427838929354806,-1.1568749999999923 -3125,2004-02-20,-4.659999999999968,3.12,6.13,0.09,2.4371545827389904,2.8792574260247017,17.6385815033301,0.0 -3126,2004-02-21,4.340000000000032,7.480000000000018,11.86,4.45,14.45633782241968,8.378007664441151,13.710573838888951,0.0 -3127,2004-02-22,-0.6899999999999977,5.180000000000007,8.56,39.6,38.92990468154139,40.244232167875374,13.066341671013578,0.0 -3128,2004-02-23,-11.09,-4.639999999999986,-1.5399999999999636,1.06,0.0,0.0,14.126341671013579,-3.4799999999999898 -3129,2004-02-24,-11.94,-6.099999999999966,1.2700000000000389,0.0,0.0,0.0,14.126341671013579,-5.444999999999972 -3130,2004-02-25,-10.82,-2.6499999999999773,2.31,0.04,0.0031125762411373,0.007037319116527038,14.159304351897052,-3.348749999999976 -3131,2004-02-26,-11.92999999999995,-5.21999999999997,-0.4799999999999613,0.83,0.0,0.0,14.989304351897053,-4.752187499999971 -3132,2004-02-27,-12.44,-6.389999999999986,0.9900000000000092,0.0,0.0,0.0,14.989304351897053,-5.980546874999982 -3133,2004-02-28,-9.75,-4.169999999999959,0.7000000000000455,1.95,0.0130666233024551,0.13062200956938574,16.808682342327668,-4.622636718749964 -3134,2004-02-29,-7.289999999999964,-4.62,-1.31,0.19,0.0,0.0,16.99868234232767,-4.620659179687491 -3135,2004-03-01,-7.46999999999997,-3.829999999999984,0.82000000000005,0.01,0.0001159643627359,0.000989143546441553,17.007693198781226,-4.027664794921861 -3136,2004-03-02,-7.169999999999959,-2.0,4.840000000000032,0.0,0.0,0.0,17.007693198781226,-2.5069161987304653 -3137,2004-03-03,-6.92999999999995,-0.8999999999999773,5.850000000000023,0.0,0.0,0.0,17.007693198781226,-1.3017290496825993 -3138,2004-03-04,-3.919999999999959,3.3600000000000136,9.260000000000048,1.54,3.5039583817996025,3.8653254444879024,14.682367754293324,0.0 -3139,2004-03-05,1.660000000000025,3.0,4.9500000000000455,16.98,19.07215402925519,19.2479057635821,12.414461990711223,0.0 -3140,2004-03-06,-1.9899999999999525,1.56,3.94,1.12,0.9846121457954076,1.8466720390341425,11.68778995167708,0.0 -3141,2004-03-07,-2.539999999999964,-0.0600000000000022,4.010000000000048,0.5,0.2117026979322868,0.30610687022901073,11.88168308144807,-0.04500000000000165 -3142,2004-03-08,-5.87,-0.4899999999999522,4.4500000000000455,0.32,0.1009124101505846,0.13798449612403182,12.063698585324039,-0.37874999999996456 -3143,2004-03-09,-6.479999999999961,-0.8899999999999864,3.930000000000007,1.16,0.2992854601664504,0.43792507204611153,12.785773513277928,-0.7621874999999809 -3144,2004-03-10,-5.289999999999964,-3.019999999999982,-1.829999999999984,3.6,0.0,0.0,16.38577351327793,-2.455546874999982 -3145,2004-03-11,-5.62,-0.8299999999999841,1.4800000000000182,0.0,0.0,0.0,16.38577351327793,-1.2363867187499835 -3146,2004-03-12,0.4800000000000182,4.160000000000025,5.28000000000003,12.13,14.592538982621772,15.459179262330796,13.056594250947136,0.0 -3147,2004-03-13,1.3900000000000432,2.480000000000018,3.9500000000000455,38.76,37.18000536344395,40.52990987882445,11.286684372122687,0.0 -3148,2004-03-14,-1.69,3.840000000000032,10.73,0.0,3.4554823123287512,2.0147887859811244,9.271895586141563,0.0 -3149,2004-03-15,-0.92999999999995,5.44,15.3,0.0,5.865897481498221,1.5251838162378708,7.746711769903692,0.0 -3150,2004-03-16,-0.4899999999999522,7.360000000000014,17.84,0.0,8.034368077043553,1.1921118329917673,6.554599936911925,0.0 -3151,2004-03-17,1.330000000000041,9.33000000000004,20.91,0.0,9.87705582250232,0.9543093522609416,5.600290584650984,0.0 -3152,2004-03-18,2.44,9.87,19.23,0.0,9.139325949298858,0.7781920464502945,4.82209853820069,0.0 -3153,2004-03-19,5.850000000000023,9.920000000000016,15.0,13.3,22.69026384646448,13.943955318042297,4.178143220158392,0.0 -3154,2004-03-20,7.31,9.430000000000009,10.83,2.55,9.67850181174026,3.089244489704238,3.6388987304541542,0.0 -3155,2004-03-21,1.9700000000000275,5.87,9.090000000000032,9.11,13.18868497044845,9.565998410839352,3.1829003196148005,0.0 -3156,2004-03-22,0.0,2.660000000000025,6.740000000000009,2.85,3.1805427036219336,3.238760316451199,2.7941400031636014,0.0 -3157,2004-03-23,-0.169999999999959,1.06,2.9600000000000364,5.02,2.705388124012013,5.119450128047188,2.694689875116413,0.0 -3158,2004-03-24,-0.4399999999999977,1.3400000000000318,4.170000000000016,4.47,3.0219471508789963,4.423265201071112,2.7414246740453003,0.0 -3159,2004-03-25,-1.9699999999999704,0.1700000000000159,1.920000000000016,0.35,0.0618761994187603,0.24923885399637247,2.842185820048928,0.0 -3160,2004-03-26,-5.409999999999968,-1.5699999999999932,2.760000000000048,0.0,0.0,0.0,2.842185820048928,-1.1774999999999949 -3161,2004-03-27,-5.609999999999957,-0.2699999999999818,6.920000000000016,0.0,0.0,0.0,2.842185820048928,-0.4968749999999851 -3162,2004-03-28,-5.769999999999982,2.2800000000000296,11.77,0.0,0.4896497780323577,0.3404093393823011,2.501776480666627,0.0 -3163,2004-03-29,-3.349999999999966,5.890000000000043,15.96,0.0,3.445322443357342,0.2937144936859893,2.2080619869806375,0.0 -3164,2004-03-30,0.4700000000000273,6.7000000000000455,12.91,0.0,3.846943538726486,0.25472046854968594,1.9533415184309515,0.0 -3165,2004-03-31,4.06,8.680000000000007,14.85,0.0,4.888439287586071,0.22187509252465915,1.7314664259062924,0.0 -3166,2004-04-01,2.7200000000000277,8.450000000000045,15.84,0.01,4.273618140644612,0.2040005815790846,1.5374658443272078,0.0 -3167,2004-04-02,4.480000000000018,8.980000000000018,15.79,1.73,6.048672446256873,1.900189199962897,1.3672766443643107,0.0 -3168,2004-04-03,1.1100000000000136,6.340000000000032,12.4,0.0,2.507965941923908,0.14973153804477274,1.217545106319538,0.0 -3169,2004-04-04,2.170000000000016,8.31,12.78,8.56,12.515904524929384,8.692066205847627,1.085478900471911,0.0 -3170,2004-04-05,5.53000000000003,6.9500000000000455,9.0,3.62,6.382580763984928,3.736743904606714,0.9687349958651967,0.0 -3171,2004-04-06,0.6299999999999955,3.230000000000018,4.87,22.5,20.13938065715576,22.603401345990452,0.8653336498747438,0.0 -3172,2004-04-07,-0.8799999999999955,0.9399999999999976,2.260000000000048,8.73,2.791772518757007,6.690872462486232,2.904461187388512,0.0 -3173,2004-04-08,-1.0499999999999543,2.160000000000025,5.960000000000036,6.62,5.115294079067837,6.123607366733014,3.400853820655498,0.0 -3174,2004-04-09,0.5400000000000205,2.480000000000018,4.03000000000003,1.92,2.106703489603793,2.340537203145988,2.98031661750951,0.0 -3175,2004-04-10,-2.419999999999959,1.6100000000000136,4.230000000000018,0.26,0.3596931488007124,0.538647299546921,2.701669317962589,0.0 -3176,2004-04-11,-1.06,3.5300000000000296,9.160000000000023,0.24,1.4111556006689383,0.5394757137118809,2.402193604250708,0.0 -3177,2004-04-12,-0.1499999999999772,4.680000000000007,11.19,0.0,1.8697180231832,0.28035923044049826,2.12183437381021,0.0 -3178,2004-04-13,-0.2799999999999727,4.010000000000048,9.360000000000014,0.0,1.359133404513421,0.24350063627796598,1.8783337375322442,0.0 -3179,2004-04-14,0.82000000000005,7.510000000000048,13.62,0.06,3.226969155170093,0.2723751203386596,1.6659586171935845,0.0 -3180,2004-04-15,1.7900000000000205,5.4500000000000455,9.710000000000036,0.17,2.1337037516002377,0.3559016868257371,1.4800569303678475,0.0 -3181,2004-04-16,2.6100000000000136,10.22,15.91,0.0,4.001659496057495,0.16324330082598631,1.316813629541861,0.0 -3182,2004-04-17,1.25,8.140000000000043,11.36,2.85,5.765079209206339,2.9937430644170333,1.1730705651248279,0.0 -3183,2004-04-18,1.0100000000000475,6.0400000000000205,11.39,11.02,13.120434770119276,11.146879178489678,1.0461913866351489,0.0 -3184,2004-04-19,1.7800000000000296,4.170000000000016,7.06,0.08,1.0396576093667724,0.19223260145083498,0.9339587851843139,0.0 -3185,2004-04-20,3.770000000000039,7.160000000000025,10.42,0.25,2.3401596645047227,0.34946345657870026,0.8344953286056136,0.0 -3186,2004-04-21,4.69,12.34,20.06,0.0,3.265592216719308,0.08829357339807363,0.74620175520754,0.0 -3187,2004-04-22,7.400000000000034,12.62,18.58,0.3,3.306871698853631,0.3784933983376921,0.6677083568698479,0.0 -3188,2004-04-23,6.5400000000000205,9.680000000000009,12.04,0.88,3.005282566168523,0.9498720628033058,0.597836294066542,0.0 -3189,2004-04-24,6.5,10.75,16.13,0.0,2.081806681724196,0.06226976323693789,0.5355665308296041,0.0 -3190,2004-04-25,5.4500000000000455,10.55,17.34,0.0,1.8647499370239264,0.0555518547854906,0.4800146760441135,0.0 -3191,2004-04-26,4.580000000000041,10.68,16.75,0.0,1.7343491913680675,0.049604229395768626,0.4304104466483449,0.0 -3192,2004-04-27,6.400000000000034,12.42,18.19,0.24,2.1432640955776607,0.2843296667091643,0.38608077993918055,0.0 -3193,2004-04-28,7.180000000000007,11.22,16.61,0.0,1.5324117165347992,0.03964492890328232,0.34643585103589825,0.0 -3194,2004-04-29,7.410000000000025,11.47,15.93,0.0,1.4444984925765896,0.03547842963495286,0.3109574214009454,0.0 -3195,2004-04-30,6.03000000000003,10.52,13.64,11.02,13.253954817607244,11.051768349788736,0.27918907161220846,0.0 -3196,2004-05-01,6.360000000000014,8.910000000000025,12.65,0.85,1.848170347636444,0.8784611037466407,0.25072796786556784,0.0 -3197,2004-05-02,5.37,9.400000000000034,13.97,3.14,4.34242458937774,3.1655100827233897,0.22521788514217814,0.0 -3198,2004-05-03,5.550000000000011,10.13,14.66,3.25,4.292415575853743,3.2728746186737983,0.2023432664683801,0.0 -3199,2004-05-04,2.180000000000007,8.910000000000025,13.0,11.72,13.303382229441713,11.740519124992561,0.18182414147581952,0.0 -3200,2004-05-05,2.19,4.920000000000016,7.88,0.75,1.123603702931205,0.7684123798347087,0.1634117616411109,0.0 -3201,2004-05-06,2.38,5.080000000000041,7.240000000000009,5.15,5.858878127614443,5.166526925201957,0.14688483643915456,0.0 -3202,2004-05-07,2.150000000000034,5.0400000000000205,8.420000000000016,6.49,7.254178849305668,6.50483856055317,0.1320462758859854,0.0 -3203,2004-05-08,2.3600000000000136,3.960000000000037,6.44,59.86,64.25734570038921,59.87332591403273,0.1187203618532535,0.0 -3204,2004-05-09,2.330000000000041,3.890000000000043,5.06,4.68,5.12959537009174,4.691970077781313,0.10675028407193961,0.0 -3205,2004-05-10,4.010000000000048,8.200000000000045,14.0,5.55,6.7173144176601,5.560754296430407,0.09599598764153301,0.0 -3206,2004-05-11,4.82000000000005,10.15,16.0,0.28,0.8419021013919363,0.28966369995701424,0.08633228768451878,0.0 -3207,2004-05-12,5.970000000000027,11.16,17.94,0.05,0.5014888354692846,0.05868507371697616,0.07764721396754262,0.0 -3208,2004-05-13,2.900000000000034,8.110000000000014,12.33,0.0,0.3768381815935832,0.007806659781946266,0.06984055418559636,0.0 -3209,2004-05-14,2.660000000000025,9.38,14.56,0.0,0.3207302514847009,0.0070179847500466,0.06282256943554976,0.0 -3210,2004-05-15,5.670000000000016,12.74,18.87,0.0,0.2750434603696464,0.006309710040211488,0.05651285939533827,0.0 -3211,2004-05-16,10.6,15.59,21.92,0.0,0.2373580467048401,0.005673501358750361,0.05083935803658791,0.0 -3212,2004-05-17,7.520000000000039,15.44,21.65,0.0,0.2059307630218337,0.005101914577319259,0.04573744345926865,0.0 -3213,2004-05-18,8.010000000000048,16.17,23.3,0.0,0.1794767468736319,0.004588295710452176,0.04114914774881647,0.0 -3214,2004-05-19,8.710000000000036,16.6,23.67,0.0,0.157029957279757,0.004126693048491888,0.037022454700324586,0.0 -3215,2004-05-20,13.37,18.5,25.06,2.18,2.521581574424401,2.1837117798042116,0.033310674896113154,0.0 -3216,2004-05-21,9.670000000000016,12.54,14.44,9.5,10.509181875548252,9.503338785881278,0.029971889014836137,0.0 -3217,2004-05-22,3.12,8.900000000000034,13.2,0.0,0.1071222246669317,0.003003437579986217,0.02696845143484992,0.0 -3218,2004-05-23,4.19,10.22,16.35,0.0,0.0947582928564735,0.002701904228387422,0.0242665472064625,0.0 -3219,2004-05-24,3.6100000000000136,11.11,16.82000000000005,0.0,0.0839831287778611,0.0024307508713098435,0.021835796335152657,0.0 -3220,2004-05-25,7.420000000000016,13.73,20.24,0.0,0.0745593873006193,0.0021868962711079844,0.019648900064044673,0.0 -3221,2004-05-26,9.53000000000003,15.2,20.52,0.05,0.1209646026203796,0.05196757557615615,0.017681324487888523,0.0 -3222,2004-05-27,5.770000000000039,12.22,18.01,0.05,0.1136915069003181,0.05177030709963358,0.01591101738825494,0.0 -3223,2004-05-28,4.12,12.32000000000005,18.18,0.0,0.0526048927638087,0.0015928627246085882,0.014318154663646353,0.0 -3224,2004-05-29,6.0,14.18,20.73,0.0,0.0469364553079947,0.0014332415140489697,0.012884913149597383,0.0 -3225,2004-05-30,11.09,15.12,22.67,2.83,3.136392833525844,2.8312896461579435,0.011595266991653752,0.0 -3226,2004-05-31,10.24,12.92,16.1,4.07,4.48782415032187,4.071160461935682,0.010434805055972458,0.0 -3227,2004-06-01,10.93,13.0,14.14,86.9,95.0546875329244,86.9010442379114,0.009390567144570877,0.0 -3228,2004-06-02,8.710000000000036,11.8,13.47,12.97,14.212094389930131,12.970939670114207,0.008450897030365037,0.0 -3229,2004-06-03,7.260000000000048,9.78000000000003,11.4,3.49,3.8430145808744847,3.490845586484714,0.007605310545651446,0.0 -3230,2004-06-04,10.66,13.94,18.49,0.17,0.2099528501873512,0.1707609333951598,0.0068443771504916465,0.0 -3231,2004-06-05,7.900000000000034,13.24,17.08,0.0,0.0215725686311417,0.0006847635726192164,0.00615961357787243,0.0 -3232,2004-06-06,7.590000000000032,14.83,20.49,0.0,0.0193457325446771,0.000616225274494658,0.005543388303377772,0.0 -3233,2004-06-07,10.39,18.1,24.06,0.0,0.0173551459171071,0.0005545525825171256,0.004988835720860647,0.0 -3234,2004-06-08,12.49,20.1,26.37,0.0,0.0155745105194984,0.0004990566965156041,0.004489779024345043,0.0 -3235,2004-06-09,13.48,21.51,27.79,0.0,0.0139806925456946,0.0004491181224085488,0.004040660901936494,0.0 -3236,2004-06-10,14.43,21.88,28.83,0.09,0.110964182567244,0.0904041796604902,0.003636481241446292,0.0 -3237,2004-06-11,10.6,15.89,18.94,10.25,11.219180707116472,10.25036374011034,0.003272741131107154,0.0 -3238,2004-06-12,8.350000000000023,14.42,18.99,0.0,0.0101277821946401,0.0003273486177400393,0.0029453925133671147,0.0 -3239,2004-06-13,7.990000000000009,11.29,14.39,0.99,1.09161932686145,0.9902945995970335,0.002650792916333616,0.0 -3240,2004-06-14,9.700000000000044,15.26,19.71,0.0,0.008177176575962,0.0002651281694223134,0.002385664746911303,0.0 -3241,2004-06-15,11.67,16.15,20.92,0.0,0.0073493994515011,0.0002386060640779403,0.0021470586828333626,0.0 -3242,2004-06-16,7.730000000000018,15.09,20.32000000000005,0.0,0.0066063304661473,0.00021473793450411022,0.0019323207483292525,0.0 -3243,2004-06-17,10.24,17.17,23.11,0.0,0.0059391267975845,0.00019325804760972578,0.0017390627007195267,0.0 -3244,2004-06-18,11.19,17.41,22.7,0.0,0.0053399020190597,0.00017392730739277466,0.001565135393326752,0.0 -3245,2004-06-19,8.770000000000039,13.4,19.19,1.46,1.6012448692908996,1.4601565305791044,0.0014086048142222846,0.0 -3246,2004-06-20,6.900000000000034,9.860000000000014,11.86,6.77,7.407003475488268,6.770140874283303,0.0012677305309188268,0.0 -3247,2004-06-21,10.3,14.9,18.0,0.36,0.3975269144693411,0.36012678423237227,0.001140946298546569,0.0 -3248,2004-06-22,14.34,18.1,20.68,15.75,17.225397716600796,15.750114103684894,0.0010268426136522564,0.0 -3249,2004-06-23,12.68,16.2,18.74,4.56,4.989293176260071,4.560102691595818,0.0009241510178342654,0.0 -3250,2004-06-24,8.840000000000032,14.2,17.98,0.0,0.0028259935746924,9.24210425958685e-05,0.0008317299752383969,0.0 -3251,2004-06-25,6.400000000000034,14.26,19.43,0.0,0.0025421897515586,8.317780951317608e-05,0.0007485521657252209,0.0 -3252,2004-06-26,11.4,18.32000000000005,24.26,0.0,0.0022869959537158,7.485911423377298e-05,0.0006736930514914479,0.0 -3253,2004-06-27,17.23,21.67,25.48,1.12,1.2267263040955674,1.1200673724622183,0.0006063205892732205,0.0 -3254,2004-06-28,10.31,17.97,24.31,0.0,0.0018511179063063,6.063461612664856e-05,0.000545685973146572,0.0 -3255,2004-06-29,8.390000000000043,16.73,22.87,0.0,0.0016654890827281,5.457066862669841e-05,0.0004911153045198736,0.0 -3256,2004-06-30,14.85,20.93,27.38,0.0,0.0014985216013212,4.9113208200588675e-05,0.00044200209631928495,0.0 -3257,2004-07-01,9.300000000000011,14.96,18.61,0.06,0.0669555875293603,0.06004420156859798,0.0003978005277213061,0.0 -3258,2004-07-02,11.56,14.6,17.74,0.4,0.4385949362589182,0.4000397811535271,0.00035801937419419554,0.0 -3259,2004-07-03,6.590000000000032,13.7,18.48,0.0,0.0010916786581608,3.580282902547071e-05,0.00032221654516872484,0.0 -3260,2004-07-04,12.73,20.68,25.5,5.02,5.490122830693877,5.020032222376713,0.0002899941684549477,0.0 -3261,2004-07-05,14.61,17.6,22.59,5.61,6.135162478809756,5.6100290000018225,0.0002609941666328738,0.0 -3262,2004-07-06,13.18,17.08,21.49,0.95,1.039577007673626,0.9500260998904921,0.00023489427614068134,0.0 -3263,2004-07-07,13.46,17.68,21.17,7.15,7.818913921778979,7.150023489811415,0.0002114044647267485,0.0 -3264,2004-07-08,10.63,13.48,14.77,7.44,8.135944006490538,7.4400211407573495,0.00019026370737731203,0.0 -3265,2004-07-09,9.260000000000048,13.47,17.42,6.6,7.217377932049154,6.6000190266225465,0.0001712370848302268,0.0 -3266,2004-07-10,7.75,12.04,15.43,0.75,0.8206123602478692,0.750017123912448,0.00015411317238222722,0.0 -3267,2004-07-11,9.32000000000005,12.51,16.51,3.16,3.4557849759612376,3.1600154114824495,0.0001387016899328105,0.0 -3268,2004-07-12,9.390000000000043,11.49,14.04,9.48,10.366369065924712,9.480013870302814,0.00012483138711878112,0.0 -3269,2004-07-13,6.53000000000003,11.07000000000005,14.67,2.04,2.231026928278646,2.0400124832471063,0.00011234814001232926,0.0 -3270,2004-07-14,7.980000000000018,14.13,19.2,0.0,0.0003421503574212,1.1234901800668243e-05,0.00010111323821166101,0.0 -3271,2004-07-15,12.45,17.86,22.59,0.01,0.0112424604736615,0.010010111394938586,9.100184327307582e-05,0.0 -3272,2004-07-16,16.59,21.19,27.42,4.32,4.723999613372494,4.320009100241933,8.19016013407488e-05,0.0 -3273,2004-07-17,15.2,20.65,26.63,0.0,0.0002493888128138,8.190206794074987e-06,7.371139454667381e-05,0.0 -3274,2004-07-18,14.53,18.63,23.65,0.35,0.3829334395292226,0.35000737117724917,6.634021729745419e-05,0.0 -3275,2004-07-19,15.93,20.88,26.68,1.46,1.5966452418055126,1.4600066340523432,5.970616495415634e-05,0.0 -3276,2004-07-20,16.16,19.87,25.22,0.94,1.0280288096872203,0.9400059706412923,5.373552366178867e-05,0.0 -3277,2004-07-21,16.33,21.55,27.14,0.72,0.787450684092439,0.7200053735724516,4.8361951210097186e-05,0.0 -3278,2004-07-22,17.71,23.9,30.25,0.8,0.874910662631054,0.8000048362113903,4.3525739819835765e-05,0.0 -3279,2004-07-23,15.13,20.98,23.66,9.94,10.86906808074938,9.94000435258716,3.917315265976816e-05,0.0 -3280,2004-07-24,13.08,17.7,22.46,0.98,1.0717044530316044,0.9800039173259402,3.5255826719550464e-05,0.0 -3281,2004-07-25,9.04000000000002,16.52,22.57000000000005,0.0,0.0001073281283363,3.525591318084925e-06,3.173023540146554e-05,0.0 -3282,2004-07-26,11.57000000000005,15.63,20.76,0.0,9.65935759737222e-05,3.1730305435079393e-06,2.85572048579576e-05,0.0 -3283,2004-07-27,9.450000000000044,16.54,23.05,0.0,8.69328094015078e-05,2.8557261585156998e-06,2.5701478699441902e-05,0.0 -3284,2004-07-28,12.3,18.97,25.0,0.0,7.82383872235637e-05,2.570152464845313e-06,2.313132623459659e-05,0.0 -3285,2004-07-29,13.63,20.4,27.48,0.0,7.041362412179712e-05,2.31313634532809e-06,2.08181898892685e-05,0.0 -3286,2004-07-30,13.66,20.53,27.64,0.0,6.33715129792091e-05,2.081822003639201e-06,1.87363678856293e-05,0.0 -3287,2004-07-31,13.17,21.17,29.27,0.0,5.70337552219874e-05,1.8736392304791487e-06,1.6862728655150152e-05,0.0 -3288,2004-08-01,12.73,20.84,29.6,0.0,5.132988847674327e-05,1.6862748434665794e-06,1.5176453811683573e-05,0.0 -3289,2004-08-02,13.24,21.03,30.32000000000005,0.0,4.619650174495445e-05,1.5176469833087068e-06,1.3658806828374866e-05,0.0 -3290,2004-08-03,12.76,18.42,23.92,11.58,12.662242171653515,11.58000136588198,1.2292924847804e-05,0.0 -3291,2004-08-04,14.26,18.22,23.29,22.25,24.329395211492177,22.250001229293535,1.1063631311859786e-05,0.0 -3292,2004-08-05,14.63,17.85,22.82000000000005,10.22,11.17513644702331,10.220001106363982,9.95726732923128e-06,0.0 -3293,2004-08-06,13.98,17.87,21.95,0.07,0.0765721085146542,0.0700009957274226,8.961539906639822e-06,0.0 -3294,2004-08-07,14.34,20.07000000000005,25.37,0.0,2.7277706430220747e-05,8.961545492952434e-07,8.065385357344579e-06,0.0 -3295,2004-08-08,14.41,21.05,27.56,0.03,0.0328281783081985,0.030000806538988223,7.258846369118862e-06,0.0 -3296,2004-08-09,15.7,20.19,24.3,0.04,0.0437602660630996,0.04000072588500343,6.532961365689102e-06,0.0 -3297,2004-08-10,15.56,18.73,22.18,24.16,26.417875358275715,24.160000653296432,5.879664932240747e-06,0.0 -3298,2004-08-11,14.71,18.89,22.57000000000005,0.03,0.0328215251062634,0.030000587966733695,5.291698198544347e-06,0.0 -3299,2004-08-12,13.05,17.28,24.89,19.26,21.05994559413831,19.260000529170018,4.762528183907346e-06,0.0 -3300,2004-08-13,12.29,14.94,17.61,3.96,4.330093456171362,3.960000476252976,4.286275207742746e-06,0.0 -3301,2004-08-14,7.760000000000048,13.55,18.28,0.01,0.0109475893591485,0.01000042862764857,3.857647559171649e-06,0.0 -3302,2004-08-15,8.710000000000036,16.15,22.32000000000005,0.01,0.0109462846803548,0.010000385764859433,3.4718826997390652e-06,0.0 -3303,2004-08-16,13.83,16.77,18.31,14.81,16.194068496298037,14.810000347188355,3.1246943459176743e-06,0.0 -3304,2004-08-17,13.23,15.91,19.01,15.22,16.642383695475193,15.220000312469503,2.812224843409448e-06,0.0 -3305,2004-08-18,14.14,19.39,25.2,25.08,27.423841973038705,25.08000028122254,2.5310023040561743e-06,0.0 -3306,2004-08-19,13.15,15.3,18.99,27.34,29.895047796237787,27.340000253100275,2.2779020290905723e-06,0.0 -3307,2004-08-20,11.11,13.58,17.49,12.56,13.73379272568394,12.560000227790239,2.050111790087929e-06,0.0 -3308,2004-08-21,6.610000000000014,10.7,14.45,1.36,1.487104064687273,1.3600002050112083,1.8451005818433325e-06,0.0 -3309,2004-08-22,6.480000000000018,13.17,18.85,0.02,0.0218747016902499,0.020000184510081866,1.660590499977999e-06,0.0 -3310,2004-08-23,10.38,18.04,24.36,20.21,22.09871611033757,20.21000016605907,1.4945314307985896e-06,0.0 -3311,2004-08-24,9.94,13.65,15.87,18.17,19.86806886792626,18.17000014945316,1.3450782721816272e-06,0.0 -3312,2004-08-25,9.400000000000034,13.12,18.34,15.26,16.68611645000177,15.26000013450784,1.210570432378411e-06,0.0 -3313,2004-08-26,7.470000000000027,11.3,13.8,14.03,15.341167272715534,14.030000121057054,1.0895133789466768e-06,0.0 -3314,2004-08-27,7.590000000000032,12.6,18.54,0.0,3.3161989607832803e-06,1.089513461517209e-07,9.80562032794956e-07,0.0 -3315,2004-08-28,8.860000000000014,13.81,19.29,2.23,2.43840603527922,2.23000009805621,8.825058228272474e-07,0.0 -3316,2004-08-29,11.98,14.84,17.53,3.26,3.5646636481308382,3.2600000882505875,7.942552351270702e-07,0.0 -3317,2004-08-30,7.680000000000007,11.9,15.17,5.59,6.112411858502325,5.590000079425527,7.148297072262267e-07,0.0 -3318,2004-08-31,5.430000000000007,10.56,17.52,0.01,0.0109367185822338,0.010000071482974278,6.433467329492136e-07,0.0 -3319,2004-09-01,5.260000000000048,13.02,20.3,0.03,0.03280558666264,0.030000064334676172,5.79012056775236e-07,0.0 -3320,2004-09-02,9.610000000000014,16.01,24.21,0.0,1.7623594969451957e-06,5.7901208009559134e-08,5.211108487656769e-07,0.0 -3321,2004-09-03,10.99,16.65,25.79,0.01,0.0109361289513374,0.010000052111086765,4.689997620001604e-07,0.0 -3322,2004-09-04,10.6,17.23,27.2,0.02,0.0218705131669089,0.02000004689997773,4.220997842700959e-07,0.0 -3323,2004-09-05,10.59,17.05,26.28,0.05,0.0546739989003399,0.05000004220997967,3.7988980460374706e-07,0.0 -3324,2004-09-06,11.24,16.98,26.12,0.43,0.4701864978980383,0.43000003798898145,3.419008231395076e-07,0.0 -3325,2004-09-07,10.46,16.43,25.64,0.01,0.0109355834826583,0.010000034190083128,3.077107400124263e-07,0.0 -3326,2004-09-08,9.010000000000048,15.81,24.72,0.02,0.0218700222453141,0.02000003077107466,2.76939665352548e-07,0.0 -3327,2004-09-09,8.860000000000014,16.48,25.03,0.0,8.429297836263188e-07,2.7693967068749706e-08,2.4924569828379833e-07,0.0 -3328,2004-09-10,12.56,17.72,23.79,0.0,7.586366979613873e-07,2.4924570260510702e-08,2.2432112802328764e-07,0.0 -3329,2004-09-11,13.84,17.08,22.97,16.33,17.856109121320316,16.330000022432113,2.0188901487093287e-07,0.0 -3330,2004-09-12,5.19,10.8,15.75,0.02,0.0218697001520952,0.02000002018890177,1.817001131003185e-07,0.0 -3331,2004-09-13,5.62,15.11,21.4,2.42,2.646159917484704,2.4200000181700116,1.635301015606346e-07,0.0 -3332,2004-09-14,9.83000000000004,13.01,15.92,16.51,18.052930707197365,16.51000001635301,1.4717709121855296e-07,0.0 -3333,2004-09-15,5.9500000000000455,10.52,15.14,0.62,0.6779421033192246,0.6200000147177093,1.3245938194602295e-07,0.0 -3334,2004-09-16,3.62,8.520000000000039,16.05,0.0,4.031704049259345e-07,1.3245938316648815e-08,1.1921344362937414e-07,0.0 -3335,2004-09-17,1.7100000000000364,8.910000000000025,17.69,0.0,3.6285333988604796e-07,1.1921344461795095e-08,1.0729209916757904e-07,0.0 -3336,2004-09-18,3.900000000000034,10.5,20.35,0.01,0.0109348693962452,0.010000010729209996,9.656288917074642e-08,0.0 -3337,2004-09-19,5.420000000000016,10.0,16.61,0.15,0.1640184363350602,0.15000000965628899,8.690660018881126e-08,0.0 -3338,2004-09-20,4.730000000000018,10.54,17.2,0.12,0.1312147784591523,0.12000000869066006,7.821594011739311e-08,0.0 -3339,2004-09-21,6.25,9.57000000000005,14.09,0.99,1.0825199780656936,0.990000007821594,7.039434606309882e-08,0.0 -3340,2004-09-22,4.740000000000009,9.230000000000018,12.75,3.3,3.608399347586772,3.3000000070394346,6.33549114223194e-08,0.0 -3341,2004-09-23,8.37,11.7,13.23,22.11,24.17627438611632,22.11000000633549,5.701942025216713e-08,0.0 -3342,2004-09-24,5.160000000000025,7.5,11.03,2.58,2.8211122232424626,2.580000005701942,5.1317478204334955e-08,0.0 -3343,2004-09-25,5.550000000000011,7.25,9.110000000000014,2.68,2.930457634169893,2.680000005131748,4.618573036558293e-08,0.0 -3344,2004-09-26,5.270000000000039,7.730000000000018,11.34,0.04,0.043738311889803,0.04000000461857305,4.156715731418663e-08,0.0 -3345,2004-09-27,2.9700000000000277,9.950000000000044,16.15,0.01,0.0109346693473456,0.010000004156715744,3.741044157074918e-08,0.0 -3346,2004-09-28,8.160000000000025,11.4,14.76,0.0,1.138671753102166e-07,3.741044166810134e-09,3.366939740393904e-08,0.0 -3347,2004-09-29,4.06,9.730000000000018,15.37,0.02,0.0218691881369743,0.020000003366939748,3.030245765565961e-08,0.0 -3348,2004-09-30,4.830000000000041,11.79,19.25,0.0,9.223240865301233e-08,3.030245771953237e-09,2.7272211883706372e-08,0.0 -3349,2004-10-01,8.69,11.92,18.44,0.0,8.300916650303548e-08,2.7272211935443305e-09,2.454499069016204e-08,0.0 -3350,2004-10-02,5.25,10.5,16.21,0.0,7.47082488121447e-08,2.4544990732068956e-09,2.2090491616955144e-08,0.0 -3351,2004-10-03,4.970000000000027,11.0,18.66,0.01,0.0109346100656823,0.010000002209049166,1.988144245186517e-08,0.0 -3352,2004-10-04,8.78000000000003,14.87,22.51,0.0,6.051368009651988e-08,1.98814424793603e-09,1.789329820392914e-08,0.0 -3353,2004-10-05,11.46,17.55,23.76,0.24,0.2624290823405338,0.24000000178932981,1.610396838130912e-08,0.0 -3354,2004-10-06,11.86,12.71,13.64,12.04,13.165189614240232,12.040000001610396,1.4493571541374252e-08,0.0 -3355,2004-10-07,11.5,13.08,15.72,0.17,0.185887272194879,0.17000000144935717,1.3044214385775623e-08,0.0 -3356,2004-10-08,10.89,13.89,18.58,0.2,0.2186908962682093,0.20000000130442144,1.1739792946014486e-08,0.0 -3357,2004-10-09,10.89,14.66,19.87,17.19,18.7964791575104,17.19000000117398,1.0565813650454342e-08,0.0 -3358,2004-10-10,4.240000000000009,8.63,12.75,4.83,5.281384218208673,4.830000001056582,9.509232284632365e-09,0.0 -3359,2004-10-11,4.57000000000005,8.860000000000014,15.93,0.07,0.0765418287413189,0.07000000095092324,8.558309055540128e-09,0.0 -3360,2004-10-12,4.5,9.660000000000023,15.2,0.49,0.5357926246338574,0.4900000008558309,7.702478149476624e-09,0.0 -3361,2004-10-13,7.94,10.18,12.79,1.24,1.355883334148387,1.2400000007702479,6.932230334116275e-09,0.0 -3362,2004-10-14,7.110000000000014,7.740000000000009,8.87,15.97,17.46246491782986,15.970000000693224,6.2390073003703704e-09,0.0 -3363,2004-10-15,2.730000000000018,5.5,7.69,9.47,10.341775512861105,9.470000000623902,5.6151065700625695e-09,0.0 -3364,2004-10-16,2.32000000000005,4.44,7.520000000000039,10.36,11.14196643700742,10.36000000056151,5.053595912836994e-09,0.0 -3365,2004-10-17,3.6100000000000136,5.19,6.07000000000005,9.64,10.56128738885332,9.64000000050536,4.548236321375646e-09,0.0 -3366,2004-10-18,3.480000000000018,8.110000000000014,10.69,8.93,9.7828102106831,8.930000000454823,4.093412689094187e-09,0.0 -3367,2004-10-19,8.770000000000039,11.44,12.9,6.39,7.003540953300046,6.390000000409341,3.684071420068213e-09,0.0 -3368,2004-10-20,12.11,14.17,15.61,7.16,7.843808378246468,7.160000000368408,3.315664277966982e-09,0.0 -3369,2004-10-21,8.200000000000045,11.26,16.44,0.45,0.5052178167036121,0.45000000033156645,2.984097850093812e-09,0.0 -3370,2004-10-22,6.990000000000009,11.66,18.68,0.08,0.0992873278232165,0.08000000029840978,2.6856880650224886e-09,0.0 -3371,2004-10-23,6.420000000000016,11.66,18.97,0.05,0.0652735213203884,0.05000000026856881,2.4171192584700666e-09,0.0 -3372,2004-10-24,11.01,15.16,20.77,0.93,1.0264297517533314,0.9300000002417119,2.1754073325824198e-09,0.0 -3373,2004-10-25,7.03000000000003,9.910000000000023,12.55,56.1,61.35133187770539,56.10000000021754,1.957866599291259e-09,0.0 -3374,2004-10-26,1.7800000000000296,4.360000000000014,6.82000000000005,29.08,30.46995860230477,29.080000000195785,1.762079939335469e-09,0.0 -3375,2004-10-27,2.580000000000041,8.63,11.14,4.99,5.593235157311353,4.990000000176209,1.5858719453803243e-09,0.0 -3376,2004-10-28,8.37,10.36,12.67,39.42,43.24573006467448,39.42000000015859,1.4272847508247976e-09,0.0 -3377,2004-10-29,4.300000000000011,9.680000000000009,15.39,11.28,12.458543881794688,11.280000000142728,1.2845562757281475e-09,0.0 -3378,2004-10-30,3.450000000000045,6.69,12.96,0.03,0.1422513495416983,0.030000000128455627,1.1561006481438547e-09,0.0 -3379,2004-10-31,5.650000000000034,7.75,11.39,0.19,0.3043106034521705,0.19000000011561008,1.040490583320172e-09,0.0 -3380,2004-11-01,4.580000000000041,7.69,10.61,0.79,0.9491989619490274,0.7900000001040491,9.364415249806241e-10,0.0 -3381,2004-11-02,4.330000000000041,6.7900000000000205,9.52000000000004,1.28,1.475250925429062,1.2800000000936442,8.427973724764618e-10,0.0 -3382,2004-11-03,4.850000000000023,10.47,17.76,0.0,0.0671159155339993,8.427973725258709e-11,7.585176352238747e-10,0.0 -3383,2004-11-04,6.78000000000003,11.1,17.23,1.81,2.0388037736845828,1.8100000000758518,6.82665871697485e-10,0.0 -3384,2004-11-05,4.32000000000005,7.610000000000014,10.81,0.0,0.0530887492128782,6.826658717299023e-11,6.143992845244948e-10,0.0 -3385,2004-11-06,0.3700000000000045,2.87,5.4500000000000455,0.01,0.0213227574730736,0.010000000061439928,5.529593560694195e-10,0.0 -3386,2004-11-07,-5.0499999999999545,1.490000000000009,6.910000000000025,0.14,0.0740097004609113,0.08682196620163007,0.053178034351329284,0.0 -3387,2004-11-08,-5.7999999999999545,-1.089999999999975,6.88,0.0,0.0,0.0,0.053178034351329284,-0.8174999999999812 -3388,2004-11-09,-5.88,-2.919999999999959,2.390000000000043,0.0,0.0,0.0,0.053178034351329284,-2.3943749999999646 -3389,2004-11-10,-4.92999999999995,-0.6899999999999977,3.770000000000039,0.03,0.0086581941897749,0.013000000000000154,0.07017803435132913,-1.1160937499999894 -3390,2004-11-11,-6.319999999999993,-2.789999999999964,3.170000000000016,0.0,0.0,0.0,0.07017803435132913,-2.3715234374999703 -3391,2004-11-12,-6.419999999999959,-1.6599999999999682,2.9700000000000277,0.2,0.0348479848514159,0.06325878594249268,0.20691924840883646,-1.8378808593749687 -3392,2004-11-13,-0.9499999999999886,0.910000000000025,4.230000000000018,0.0,0.0,0.020989750240789938,0.18592949816804652,0.0 -3393,2004-11-14,-3.669999999999959,-1.2799999999999727,1.31,0.0,0.0,0.0,0.18592949816804652,-0.9599999999999795 -3394,2004-11-15,-8.509999999999991,-3.06,4.2000000000000455,0.0,0.0,0.0,0.18592949816804652,-2.534999999999995 -3395,2004-11-16,-8.579999999999984,-0.9099999999999682,2.5400000000000205,0.17,0.0186308016382407,0.03883093525179884,0.3170985629162477,-1.3162499999999748 -3396,2004-11-17,0.3400000000000318,3.3600000000000136,6.19,0.01,0.0475258672315989,0.04240929312108528,0.28468926979516246,0.0 -3397,2004-11-18,2.420000000000016,4.38,5.860000000000014,16.3,17.572875768826382,16.32903269721853,0.25565657257663416,0.0 -3398,2004-11-19,-4.989999999999952,-0.6399999999999864,4.0,5.77,1.7729565646817045,2.5672969966629724,3.4583595759136614,-0.47999999999998977 -3399,2004-11-20,-4.739999999999952,-1.169999999999959,0.0100000000000477,2.83,0.0,0.005957894736870806,6.282401681176791,-0.9974999999999667 -3400,2004-11-21,-0.6999999999999886,2.88,3.980000000000018,1.2,1.35207150358844,1.9571567470863556,5.525244934090435,0.0 -3401,2004-11-22,2.56,5.25,8.770000000000039,1.27,2.381109460935899,2.034879751627581,4.760365182462854,0.0 -3402,2004-11-23,-0.4599999999999795,4.2000000000000455,9.240000000000007,0.01,0.7869030576114303,0.6432717076596209,4.127093474803233,0.0 -3403,2004-11-24,-3.6999999999999886,1.0100000000000475,9.04000000000002,0.0,0.0797864062239447,0.4861819280221243,3.6409115467811084,0.0 -3404,2004-11-25,-2.859999999999957,3.080000000000041,9.58000000000004,0.0,0.4747437977645364,0.4563016182785972,3.1846099285025113,0.0 -3405,2004-11-26,-1.06,3.330000000000041,7.700000000000045,0.0,0.4973056018499949,0.389007000088384,2.7956029284141275,0.0 -3406,2004-11-27,-3.19,1.1100000000000136,9.19,0.0,0.0930211514735597,0.33392423259999804,2.4616786958141295,0.0 -3407,2004-11-28,-1.0499999999999543,4.910000000000025,9.58000000000004,34.29,30.073590353506667,31.725759125035047,5.025919570779078,0.0 -3408,2004-11-29,1.3600000000000136,2.07000000000005,2.4700000000000277,4.64,3.886595944891323,5.318299747657857,4.347619823121221,0.0 -3409,2004-11-30,-0.2099999999999795,1.5100000000000475,3.1100000000000136,1.95,1.2584205823326309,2.4128001112900006,3.88481971183122,0.0 -3410,2004-12-01,-1.089999999999975,1.2800000000000296,5.75,1.81,1.3783233141560034,2.0600360875980686,3.6347836242331515,0.0 -3411,2004-12-02,1.580000000000041,5.230000000000018,8.340000000000032,8.0,9.78752576904603,8.455378693215478,3.1794049310176744,0.0 -3412,2004-12-03,0.75,3.900000000000034,6.670000000000016,1.81,2.6733204720877186,2.1982560848571557,2.7911488461605187,0.0 -3413,2004-12-04,-0.9599999999999796,2.1000000000000227,6.180000000000007,0.0,0.3243840115502236,0.33330573215081644,2.457843114009702,0.0 -3414,2004-12-05,-2.0499999999999545,0.5300000000000296,2.920000000000016,0.0,0.0155284256104306,0.23210922045483107,2.225733893554871,0.0 -3415,2004-12-06,-3.729999999999961,-1.1399999999999864,4.010000000000048,0.0,0.0,0.0,2.225733893554871,-0.8549999999999898 -3416,2004-12-07,-3.94,-0.1399999999999863,7.13,0.0,0.0,0.0,2.225733893554871,-0.31874999999998715 -3417,2004-12-08,-2.8899999999999864,-0.2199999999999704,2.38,0.0,0.0,0.0,2.225733893554871,-0.24468749999997458 -3418,2004-12-09,-2.38,0.5500000000000114,6.670000000000016,0.0,0.0,0.23754692316499917,1.9881869703898718,0.0 -3419,2004-12-10,-3.579999999999984,-0.0999999999999659,7.600000000000023,0.0,0.0,0.0,1.9881869703898718,-0.07499999999997442 -3420,2004-12-11,-4.94,-2.0,3.56,0.0,0.0,0.0,1.9881869703898718,-1.5187499999999936 -3421,2004-12-12,-6.0499999999999545,-1.3999999999999773,7.240000000000009,0.0,0.0,0.0,1.9881869703898718,-1.4296874999999813 -3422,2004-12-13,-6.269999999999982,-1.0399999999999636,9.490000000000007,0.0,0.0,0.0,1.9881869703898718,-1.137421874999968 -3423,2004-12-14,-6.109999999999957,-1.63,6.600000000000023,0.0,0.0,0.0,1.9881869703898718,-1.506855468749992 -3424,2004-12-15,-3.919999999999959,1.160000000000025,7.220000000000027,0.0,0.0719707377619462,0.22631500578734792,1.7618719646025238,0.0 -3425,2004-12-16,-0.3999999999999772,3.910000000000025,8.13,13.74,12.727888666454383,13.376577838915146,2.1252941256873785,0.0 -3426,2004-12-17,0.4399999999999977,2.550000000000012,3.450000000000045,12.79,9.61265743814624,13.033948823093235,1.8813453025941431,0.0 -3427,2004-12-18,-0.3799999999999954,0.75,2.37,13.85,5.445925390216787,12.290731518191102,3.440613784403042,0.0 -3428,2004-12-19,-1.8199999999999927,2.7900000000000205,4.770000000000039,30.67,17.92242307852049,24.10767421761457,10.002939566788474,0.0 -3429,2004-12-20,-4.229999999999961,-1.81,1.910000000000025,0.11,0.0121671076342259,0.034218241042345804,10.078721325746129,-1.3575 -3430,2004-12-21,-12.23,-7.279999999999973,-2.339999999999975,0.0,0.0,0.0,10.078721325746129,-5.79937499999998 -3431,2004-12-22,-12.46,-3.42999999999995,-0.5399999999999636,1.68,0.0,0.0,11.758721325746128,-4.0223437499999575 -3432,2004-12-23,-0.2899999999999636,2.760000000000048,3.94,6.09,4.590786098541077,7.5790088237607955,10.269712501985332,0.0 -3433,2004-12-24,0.7400000000000091,2.31,4.270000000000039,1.59,2.1588896443630623,3.071105750533972,8.78860675145136,0.0 -3434,2004-12-25,-0.9399999999999976,0.9800000000000182,4.25,11.34,6.757477871742652,9.929077846329228,10.199528905122131,0.0 -3435,2004-12-26,-0.8499999999999659,-0.2699999999999818,0.2800000000000295,3.25,0.0,0.8053097345133624,12.644219170608768,-0.20249999999998636 -3436,2004-12-27,-3.69,-1.87,-0.6200000000000045,0.82,0.0,0.0,13.464219170608768,-1.4531249999999967 -3437,2004-12-28,-3.95999999999998,-2.38,-1.63,6.71,0.0,0.0,20.17421917060877,-2.1482812499999993 -3438,2004-12-29,-7.339999999999975,-1.69,2.340000000000032,0.8,0.0865615661595215,0.1933884297520686,20.7808307408567,-1.8045703124999999 -3439,2004-12-30,-8.87,-5.199999999999989,0.1800000000000068,0.0,0.0,0.0,20.7808307408567,-4.351142578124992 -3440,2004-12-31,-2.609999999999957,0.2600000000000477,2.5400000000000205,4.03,0.9536416816624448,1.9876116504854617,22.82321909037124,-0.8927856445312121 -3441,2005-01-01,0.0,2.510000000000048,4.920000000000016,9.65,8.553479375783752,12.079069067478049,20.394150022893193,0.0 -3442,2005-01-02,-1.42999999999995,1.0100000000000475,3.770000000000039,6.79,3.4656772469489803,5.885422023878941,21.298727999014254,0.0 -3443,2005-01-03,-5.75,-1.909999999999968,3.3600000000000136,0.0,0.0,0.0,21.298727999014254,-1.432499999999976 -3444,2005-01-04,-5.92999999999995,-2.079999999999984,4.550000000000011,0.0,0.0,0.0,21.298727999014254,-1.918124999999982 -3445,2005-01-05,-1.759999999999991,2.2900000000000205,6.2000000000000455,6.9,5.267483938225687,7.590602214825011,20.608125784189244,0.0 -3446,2005-01-06,-2.259999999999991,1.6400000000000432,5.31,1.98,1.656070737637391,2.906710690009522,19.681415094179723,0.0 -3447,2005-01-07,-2.319999999999993,2.730000000000018,5.660000000000025,0.0,1.5851324686028747,2.4188376480835485,17.262577446096174,0.0 -3448,2005-01-08,2.230000000000018,4.610000000000014,8.600000000000023,1.19,5.271874784484156,4.984463046638641,13.468114399457534,0.0 -3449,2005-01-09,-0.9399999999999976,2.900000000000034,8.550000000000011,0.01,1.6489251088188437,2.1097839661847124,11.36833043327282,0.0 -3450,2005-01-10,-3.569999999999993,2.13,9.57000000000005,0.0,0.8424575235335529,1.4265725570055638,9.941757876267257,0.0 -3451,2005-01-11,-4.099999999999966,-0.0999999999999659,7.29000000000002,0.03,0.0167511028724722,0.019201053555750733,9.952556822711506,-0.07499999999997442 -3452,2005-01-12,-1.169999999999959,3.430000000000007,7.430000000000007,9.15,8.988613850324295,9.897066242157065,9.205490580554441,0.0 -3453,2005-01-13,-7.169999999999959,-1.0,5.7000000000000455,0.0,0.0,0.0,9.205490580554441,-0.75 -3454,2005-01-14,-7.5,-2.839999999999975,6.12,0.0,0.0,0.0,9.205490580554441,-2.3174999999999812 -3455,2005-01-15,-7.279999999999973,-3.4599999999999795,4.580000000000041,0.0,0.0,0.0,9.205490580554441,-3.17437499999998 -3456,2005-01-16,-7.329999999999984,-2.609999999999957,6.240000000000009,0.0,0.0,0.0,9.205490580554441,-2.7510937499999626 -3457,2005-01-17,-6.69,-0.3199999999999932,6.850000000000023,1.12,0.4862748424575469,0.5666174298375194,9.758873150716921,-0.9277734374999855 -3458,2005-01-18,-1.8599999999999568,0.2300000000000182,3.5400000000000205,26.32,11.012394400962744,17.254222222222396,18.824650928494528,-0.05944335937498274 -3459,2005-01-19,-3.62,-1.4899999999999525,0.1700000000000159,3.42,0.0,0.15340369393141184,22.091247234563117,-1.1323608398437102 -3460,2005-01-20,0.0100000000000477,2.82000000000005,3.900000000000034,21.45,16.253713700386875,24.12537352008959,19.415873714473527,0.0 -3461,2005-01-21,0.0600000000000022,2.580000000000041,4.730000000000018,24.67,20.51711874399644,26.938111371540693,17.147762342932836,0.0 -3462,2005-01-22,-1.5199999999999818,-0.1200000000000045,1.650000000000034,13.63,2.1896761434458982,7.094479495268251,23.683282847664586,-0.09000000000000338 -3463,2005-01-23,-7.299999999999954,-3.039999999999964,0.4900000000000091,11.12,0.0386694221319346,0.6994608472400667,34.103822000424515,-2.302499999999974 -3464,2005-01-24,-10.11,-5.789999999999964,-2.37,0.99,0.0,0.0,35.09382200042452,-4.918124999999966 -3465,2005-01-25,-10.31,-7.139999999999986,-4.19,7.41,0.0,0.0,42.50382200042452,-6.584531249999982 -3466,2005-01-26,-9.139999999999986,-6.87,-5.12,0.32,0.0,0.0,42.82382200042452,-6.798632812499996 -3467,2005-01-27,-14.23,-9.44,-4.039999999999964,0.54,0.0,0.0,43.36382200042452,-8.779658203124999 -3468,2005-01-28,-10.87,-7.75,-3.0,0.11,0.0,0.0,43.47382200042452,-8.007414550781249 -3469,2005-01-29,-15.9,-9.5,-2.7799999999999727,0.0,0.0,0.0,43.47382200042452,-9.126853637695312 -3470,2005-01-30,-16.46,-8.319999999999993,-3.609999999999957,0.0,0.0,0.0,43.47382200042452,-8.521713409423823 -3471,2005-01-31,-8.799999999999955,-1.6999999999999886,2.6000000000000227,7.84,0.8734428544283248,1.788070175438616,49.5257518249859,-3.405428352355947 -3472,2005-02-01,-6.759999999999991,-2.359999999999957,0.5900000000000318,2.91,0.0188197166932838,0.23359183673470563,52.202159988251196,-2.6213570880889545 -3473,2005-02-02,-6.989999999999952,-1.099999999999966,2.75,0.2,0.0287169652706478,0.05646817248459987,52.3456918157666,-1.480339272022213 -3474,2005-02-03,-6.67999999999995,-1.7299999999999611,3.770000000000039,0.0,0.0,0.0,52.3456918157666,-1.667584818005524 -3475,2005-02-04,-7.13,-2.819999999999993,5.12,0.0,0.0,0.0,52.3456918157666,-2.531896204501376 -3476,2005-02-05,-5.839999999999975,0.57000000000005,3.240000000000009,0.01,0.002127032538697,0.0035682819383260076,52.352123533828276,-0.20547405112530648 -3477,2005-02-06,-6.149999999999977,-0.4899999999999522,6.770000000000039,0.0,0.0,0.0,52.352123533828276,-0.4188685127812908 -3478,2005-02-07,-6.349999999999966,-1.37,8.06,0.0,0.0,0.0,52.352123533828276,-1.1322171281953228 -3479,2005-02-08,-7.279999999999973,-2.009999999999991,7.700000000000045,0.0,0.0,0.0,52.352123533828276,-1.7905542820488238 -3480,2005-02-09,-7.529999999999973,-2.06,7.710000000000036,0.0,0.0,0.0,52.352123533828276,-1.9926385705122058 -3481,2005-02-10,-7.37,1.2600000000000475,8.28000000000003,0.0,0.3455835898509174,2.1873155309216012,50.164808002906675,0.0 -3482,2005-02-11,0.4900000000000091,2.800000000000012,5.420000000000016,48.26,44.96486125063114,52.961369909291186,45.46343809361549,0.0 -3483,2005-02-12,1.8000000000000114,5.230000000000018,6.510000000000048,29.48,39.35154499914845,37.62181489129168,37.32162320232381,0.0 -3484,2005-02-13,-3.039999999999964,-1.0299999999999727,1.2600000000000475,19.92,1.290648144919521,5.8370232558141595,51.404599946509656,-0.7724999999999795 -3485,2005-02-14,-3.0299999999999727,-2.17999999999995,-1.06,16.45,0.0,0.0,67.85459994650965,-1.8281249999999574 -3486,2005-02-15,-4.949999999999989,-4.029999999999973,-2.7199999999999704,1.06,0.0,0.0,68.91459994650965,-3.479531249999969 -3487,2005-02-16,-6.239999999999952,-4.31,-2.009999999999991,0.2,0.0,0.0,69.11459994650966,-4.102382812499992 -3488,2005-02-17,-6.489999999999952,-4.20999999999998,-1.6399999999999864,0.0,0.0,0.0,69.11459994650966,-4.183095703124984 -3489,2005-02-18,-5.649999999999977,-4.099999999999966,-2.42999999999995,1.8,0.0,0.0,70.91459994650965,-4.12077392578122 -3490,2005-02-19,-5.779999999999973,-3.1999999999999886,-0.9899999999999524,13.08,0.0,0.0,83.99459994650965,-3.4301934814452966 -3491,2005-02-20,-7.759999999999991,-4.56,-2.519999999999982,4.23,0.0,0.0,88.22459994650966,-4.277548370361324 -3492,2005-02-21,-8.949999999999989,-5.579999999999984,-1.349999999999966,0.01,0.0,0.0,88.23459994650966,-5.254387092590319 -3493,2005-02-22,-8.759999999999991,-5.62,-2.319999999999993,0.22,0.0,0.0,88.45459994650966,-5.52859677314758 -3494,2005-02-23,-11.95,-7.21999999999997,-3.1999999999999886,0.03,0.0,0.0,88.48459994650966,-6.797149193286873 -3495,2005-02-24,-14.82,-8.729999999999961,-0.3599999999999568,0.01,0.0,0.0,88.49459994650967,-8.246787298321689 -3496,2005-02-25,-14.75,-8.44,0.8700000000000045,0.0,0.0,0.0,88.49459994650967,-8.391696824580421 -3497,2005-02-26,-13.73,-5.62,1.62,0.0,0.0,0.0,88.49459994650967,-6.312924206145105 -3498,2005-02-27,-12.62,-7.329999999999984,-0.8299999999999841,1.6,0.0,0.0,90.09459994650966,-7.075731051536264 -3499,2005-02-28,-18.54,-11.32,-3.06,0.01,0.0,0.0,90.10459994650967,-10.258932762884067 -3500,2005-03-01,-18.42,-11.33,-2.1399999999999864,0.0,0.0,0.0,90.10459994650967,-11.062233190721017 -3501,2005-03-02,-17.58,-5.759999999999991,-0.25,0.0,0.0,0.0,90.10459994650967,-7.085558297680247 -3502,2005-03-03,-9.739999999999952,-2.5,2.410000000000025,6.38,0.581468727388712,1.2654979423868475,95.21910200412282,-3.646389574420062 -3503,2005-03-04,-5.2999999999999545,-2.919999999999959,0.0900000000000318,1.32,0.0,0.022040816326538426,96.51706118779627,-3.101597393604985 -3504,2005-03-05,-5.37,-3.4599999999999795,-1.92999999999995,10.58,0.0,0.0,107.09706118779627,-3.370399348401231 -3505,2005-03-06,-13.75,-5.87,0.5500000000000114,1.3,0.0035778532456467,0.05000000000000093,108.34706118779627,-5.245099837100308 -3506,2005-03-07,-14.07,-4.5499999999999545,-0.2699999999999818,5.41,0.0,0.0,113.75706118779627,-4.723774959275043 -3507,2005-03-08,-3.599999999999966,-0.4399999999999977,1.5300000000000296,1.8,0.1520873944830047,0.5368421052631687,115.0202190825331,-1.510943739818759 -3508,2005-03-09,-6.81,-0.7099999999999795,2.490000000000009,0.07,0.0088505135826895,0.01874193548387102,115.07147714704924,-0.9102359349546745 -3509,2005-03-10,-8.359999999999957,-2.38,6.100000000000023,0.0,0.0,0.0,115.07147714704924,-2.0125589837386686 -3510,2005-03-11,-7.729999999999961,-0.8299999999999841,4.860000000000014,0.0,0.0,0.0,115.07147714704924,-1.1256397459346552 -3511,2005-03-12,-6.149999999999977,-0.7999999999999545,1.330000000000041,5.77,0.237305115398274,1.0259491978609914,119.81552794918825,-0.8814099364836296 -3512,2005-03-13,-7.079999999999984,-1.2699999999999818,6.140000000000043,0.0,0.0,0.0,119.81552794918825,-1.1728524841208938 -3513,2005-03-14,-6.029999999999973,3.5400000000000205,9.730000000000018,0.0,6.965877444071809,12.35833956892772,107.45718838026053,0.0 -3514,2005-03-15,-2.94,4.240000000000009,14.99,0.0,9.679924739396933,13.438885452039573,94.01830292822096,0.0 -3515,2005-03-16,-3.259999999999991,5.640000000000043,16.9,0.0,13.876026471596964,15.90440314153751,78.11389978668345,0.0 -3516,2005-03-17,-0.7199999999999704,7.12,18.64,0.0,17.569641548902887,17.131924927295135,60.981974859388316,0.0 -3517,2005-03-18,-0.2099999999999795,7.710000000000036,18.92,0.0,17.732425660268625,15.115256704213826,45.86671815517449,0.0 -3518,2005-03-19,-0.4499999999999886,8.87,20.98,0.0,19.11482470254533,13.901453274089599,31.96526488108489,0.0 -3519,2005-03-20,0.6400000000000432,8.82000000000005,19.58,0.0,16.942510293810457,10.304021511164407,21.661243369920484,0.0 -3520,2005-03-21,1.4300000000000068,10.26,17.78,0.6,18.870384622149103,6.029948194838548,16.231295175081936,0.0 -3521,2005-03-22,4.0400000000000205,7.32000000000005,11.22,6.02,17.09288813003291,9.475723687054723,12.775571488027213,0.0 -3522,2005-03-23,4.32000000000005,10.56,17.63,0.37,14.929396341181036,2.7828832490603608,10.362688238966852,0.0 -3523,2005-03-24,4.400000000000034,8.300000000000011,10.48,9.6,20.09300919675806,11.383241669435002,8.57944656953185,0.0 -3524,2005-03-25,3.550000000000012,9.420000000000016,16.18,0.0,10.069289536970324,1.3699547202848361,7.209491849247014,0.0 -3525,2005-03-26,6.100000000000023,10.71,15.84,6.33,17.04564205264406,7.412499928820146,6.126991920426868,0.0 -3526,2005-03-27,6.050000000000011,8.62,12.59,5.26,12.745423212725184,6.133827866610374,5.253164053816494,0.0 -3527,2005-03-28,4.390000000000043,7.800000000000011,12.22,3.03,8.939597283475806,3.7472724872687544,4.53589156654774,0.0 -3528,2005-03-29,4.010000000000048,8.650000000000034,13.87,15.17,22.45272177191372,15.7667041968653,3.9391873696824407,0.0 -3529,2005-03-30,1.57000000000005,6.510000000000048,10.68,0.24,4.003317387560212,0.741856453619657,3.4373309160627836,0.0 -3530,2005-03-31,1.3600000000000136,6.180000000000007,11.32000000000005,0.0,3.269508478870624,0.42591999877419356,3.01141091728859,0.0 -3531,2005-04-01,2.2100000000000364,8.460000000000036,15.6,0.0,4.468854293664988,0.36422229808664786,2.647188619201942,0.0 -3532,2005-04-02,3.0300000000000296,8.680000000000007,17.07000000000005,0.01,4.1673344298898005,0.3234638224614886,2.3337247967404533,0.0 -3533,2005-04-03,0.6400000000000432,6.7900000000000205,15.87,0.0,2.8470414620938533,0.27125677649836627,2.062468020242087,0.0 -3534,2005-04-04,0.07000000000005,8.0,14.98,0.0,3.2148571798548944,0.23583608189669222,1.8266319383453948,0.0 -3535,2005-04-05,5.2900000000000205,9.57000000000005,14.98,0.0,3.694347830971085,0.20587249387674247,1.6207594444686524,0.0 -3536,2005-04-06,4.7000000000000455,11.34,17.68,4.51,9.012655956147588,4.69034840660282,1.4404110378658324,0.0 -3537,2005-04-07,2.32000000000005,6.590000000000032,7.460000000000036,51.94,57.70309876021092,52.09847331348566,1.2819377243801704,0.0 -3538,2005-04-08,0.0300000000000295,2.6100000000000136,5.220000000000027,14.12,11.572508174331016,14.259625024602526,1.1423126997776443,0.0 -3539,2005-04-09,-1.759999999999991,-0.7699999999999818,-0.1399999999999863,4.74,0.0,0.0,5.8823126997776445,-0.5774999999999864 -3540,2005-04-10,-1.67999999999995,3.2800000000000296,6.480000000000018,0.01,0.916790157837395,0.8372357983268498,5.055076901450795,0.0 -3541,2005-04-11,0.7000000000000455,4.890000000000043,9.52000000000004,0.0,1.8425084786584145,0.6832600939898837,4.3718168074609105,0.0 -3542,2005-04-12,-0.0499999999999545,5.2000000000000455,10.03,0.0,1.8209697884546008,0.5701303087465971,3.8016864987143135,0.0 -3543,2005-04-13,1.0900000000000318,6.490000000000009,10.56,0.0,2.1996148658391554,0.4807025544076802,3.3209839443066334,0.0 -3544,2005-04-14,1.2200000000000273,9.88,15.66,0.4,3.638569752423387,0.8088157282054855,2.912168216101148,0.0 -3545,2005-04-15,1.660000000000025,4.57000000000005,9.200000000000044,16.65,18.69599976295471,17.00020878684023,2.561959429260916,0.0 -3546,2005-04-16,-0.8899999999999864,1.0200000000000389,2.69,54.5,20.66054537633672,41.760110947543176,15.301848481717744,0.0 -3547,2005-04-17,-0.7399999999999523,0.0100000000000477,0.7100000000000364,23.97,1.1913616811862198,11.747937791972292,27.52391068974545,0.0 -3548,2005-04-18,0.8400000000000318,5.5,12.23,9.81,15.861194114468187,15.80525996663279,21.528650723112662,0.0 -3549,2005-04-19,2.5300000000000296,5.580000000000041,8.670000000000016,5.65,11.68242986071417,10.862154156166532,16.31649656694613,0.0 -3550,2005-04-20,2.550000000000012,3.990000000000009,5.87,1.48,4.700735662795671,4.665940006839836,13.130556560106296,0.0 -3551,2005-04-21,-0.4599999999999795,5.180000000000007,10.57000000000005,0.0,4.474972325254395,2.51235119603956,10.618205364066736,0.0 -3552,2005-04-22,0.410000000000025,9.57000000000005,16.14,0.0,8.876855890164112,1.846084374503536,8.772120989563199,0.0 -3553,2005-04-23,7.56,9.400000000000034,11.49,6.3,14.324330296819786,7.712477503980282,7.359643485582916,0.0 -3554,2005-04-24,6.160000000000025,8.53000000000003,9.87,43.89,53.804314137533055,45.002731908695,6.2469115768879195,0.0 -3555,2005-04-25,6.170000000000016,8.81,12.08,8.73,14.894149852690964,9.626141670515327,5.350769906372593,0.0 -3556,2005-04-26,7.240000000000009,11.36,16.0,2.74,8.838508333880766,3.474232580591386,4.6165373257812075,0.0 -3557,2005-04-27,6.2000000000000455,9.800000000000011,12.75,2.93,7.634100056147794,3.5399030326675494,4.006634293113659,0.0 -3558,2005-04-28,6.730000000000018,13.28,20.37,0.0,4.949766156994932,0.5123290172313558,3.494305275882303,0.0 -3559,2005-04-29,8.57000000000005,15.72,23.52,0.0,4.782855958516221,0.43436453915127005,3.0599407367310327,0.0 -3560,2005-04-30,10.26,17.81,24.35,0.0,4.546343334705613,0.37112480877061554,2.6888159279604174,0.0 -3561,2005-05-01,13.01,18.28,25.26,0.0,3.9782537314989743,0.3191716458015589,2.3696442821588586,0.0 -3562,2005-05-02,12.87,17.68,21.76,1.13,4.4524930329381,1.4060238907620544,2.0936203913968043,0.0 -3563,2005-05-03,9.28000000000003,11.67,13.58,8.76,11.590185804498253,8.99985192708427,1.8537684643125334,0.0 -3564,2005-05-04,6.830000000000041,9.180000000000009,11.81,7.56,9.736010129746848,7.769280865617853,1.6444875986946796,0.0 -3565,2005-05-05,5.31,7.69,10.45,4.05,5.572293425815845,4.233260161445155,1.4612274372495249,0.0 -3566,2005-05-06,5.330000000000041,7.700000000000045,10.0,4.48,5.9437381006382655,4.640975107771841,1.3002523294776838,0.0 -3567,2005-05-07,4.840000000000032,7.850000000000023,9.660000000000023,9.06,10.88324317131689,9.201785447095958,1.158466882381726,0.0 -3568,2005-05-08,0.9800000000000182,6.9500000000000455,12.19,0.47,1.2867195799921571,0.5951819649355938,1.033284917446132,0.0 -3569,2005-05-09,2.38,7.31,12.0,0.0,0.7814435615875458,0.11075526439512916,0.9225296530510029,0.0 -3570,2005-05-10,3.2100000000000364,7.640000000000043,12.4,0.0,0.7350882934173126,0.09817295047028864,0.8243567025807143,0.0 -3571,2005-05-11,4.56,10.14,15.7,0.0,0.6213023063519555,0.08716272134487342,0.7371939812358408,0.0 -3572,2005-05-12,7.2000000000000455,11.45,17.82000000000005,11.89,13.53115925003456,11.967499674137684,0.6596943070981561,0.0 -3573,2005-05-13,9.660000000000023,14.74,19.72,2.73,3.440627363748549,2.798996660731324,0.5906976463668321,0.0 -3574,2005-05-14,8.32000000000005,10.03,12.16,13.0,14.60881496308216,13.061496880059446,0.5292007663073856,0.0 -3575,2005-05-15,6.7900000000000205,11.5,15.72,2.53,3.108857160665764,2.5848681301218295,0.4743326361855557,0.0 -3576,2005-05-16,2.62,7.29000000000002,10.57000000000005,11.2,12.504457928156596,11.248998305497143,0.42533433068841175,0.0 -3577,2005-05-17,6.330000000000041,10.36,15.97,5.9,6.718747415681369,5.943791839198802,0.3815424914896098,0.0 -3578,2005-05-18,1.5,5.400000000000034,7.720000000000027,0.01,0.2452702722740433,0.04916686744919038,0.3423756240404194,0.0 -3579,2005-05-19,3.12,10.64,16.34,0.0,0.2069953792206518,0.03505295285811302,0.3073226711823064,0.0 -3580,2005-05-20,9.260000000000048,17.14,24.15,2.1,2.479068419389836,2.1313892425783587,0.2759334286039478,0.0 -3581,2005-05-21,9.420000000000016,14.83,20.63,8.47,9.42336418728242,8.498122967990483,0.24781046061346612,0.0 -3582,2005-05-22,7.920000000000016,11.68,16.01,24.23,26.63787941524783,24.2552082145606,0.22260224605286713,0.0 -3583,2005-05-23,2.680000000000007,8.54000000000002,12.11,3.54,3.991775471404019,3.562604906945713,0.1999973391071539,0.0 -3584,2005-05-24,6.680000000000007,12.78,17.87,0.0,0.1140987937295453,0.02027796674783198,0.17971937235932192,0.0 -3585,2005-05-25,10.34,16.56,22.53,0.03,0.1344128890325824,0.048196609641611,0.16152276271771093,0.0 -3586,2005-05-26,12.17,19.59,26.46,0.0,0.0905901699029373,0.016333755706397862,0.14518900701131307,0.0 -3587,2005-05-27,15.77,21.58,27.79,0.0,0.0808476460303845,0.014665532248998638,0.13052347476231443,0.0 -3588,2005-05-28,14.14,20.65,26.39,0.0,0.0722175013069208,0.013170852620405514,0.11735262214190892,0.0 -3589,2005-05-29,16.89,22.5,29.39,0.13,0.2067089442066806,0.14183105781047262,0.10552156433143631,0.0 -3590,2005-05-30,7.900000000000034,12.09,16.76,17.9,19.63058672694256,17.910629610172705,0.09489195415872836,0.0 -3591,2005-05-31,6.210000000000036,12.16,17.14,0.0,0.0517000228289441,0.009551830653564785,0.08534012350516358,0.0 -3592,2005-06-01,7.800000000000011,14.0,19.28,0.01,0.0572403085208246,0.0185846725018943,0.07675545100326928,0.0 -3593,2005-06-02,10.91,16.81,21.91,0.0,0.041495102003664,0.007716525709028231,0.06903892529424105,0.0 -3594,2005-06-03,10.25,18.7,26.39,27.08,29.647942822987545,27.086937047450128,0.06210187784411086,0.0 -3595,2005-06-04,6.480000000000018,11.85,15.59,0.01,0.0442988663648459,0.016237014617942643,0.05586486322616822,0.0 -3596,2005-06-05,8.830000000000041,13.25,17.64,0.0,0.0299341622755169,0.0056081952031534574,0.05025666802301476,0.0 -3597,2005-06-06,10.98,12.14,13.1,3.94,4.335075122189791,3.94504323581403,0.045213432208984564,0.0 -3598,2005-06-07,5.510000000000048,11.57000000000005,17.13,0.0,0.0241178748903667,0.0045355630671708265,0.04067786914181374,0.0 -3599,2005-06-08,6.720000000000027,11.58,17.09,0.0,0.0216570213927709,0.004079296941087964,0.03659857220072578,0.0 -3600,2005-06-09,6.360000000000014,11.6,16.79,0.0,0.0194517358757491,0.0036691744805026462,0.03292939772022313,0.0 -3601,2005-06-10,5.56,12.32000000000005,17.6,0.0,0.0174746157854768,0.00330048248399771,0.02962891523622542,0.0 -3602,2005-06-11,9.33000000000004,15.29,19.89,0.0,0.0157013616904827,0.002968998010837395,0.026659917225388026,0.0 -3603,2005-06-12,11.77,17.4,21.71,6.7,7.340254089577531,6.70267093571207,0.023988981513318484,0.0 -3604,2005-06-13,12.36,15.44,20.69,23.31,25.501101859168173,23.3124029011327,0.021586080380619106,0.0 -3605,2005-06-14,9.87,12.2,13.84,14.71,16.09611317517508,14.71216184925074,0.01942423112987952,0.0 -3606,2005-06-15,10.35,16.22,21.09,0.01,0.0211841583201097,0.011945047619310445,0.017479183510569075,0.0 -3607,2005-06-16,11.61,16.66,20.54,0.0,0.009215767556913,0.0017500435629274067,0.01572913994764167,0.0 -3608,2005-06-17,15.35,19.94,24.24,0.0,0.0082870051873386,0.0015746349513005254,0.014154504996341143,0.0 -3609,2005-06-18,15.69,21.29,26.53,0.0,0.0074524933086329,0.0014168441355212568,0.012737660860819887,0.0 -3610,2005-06-19,13.94,20.97,27.27,0.0,0.0067025433134414,0.0012748946841757384,0.011462766176644148,0.0 -3611,2005-06-20,14.41,21.38,27.44,0.04,0.0497666575132135,0.041147190602133794,0.010315575574510353,0.0 -3612,2005-06-21,15.61,21.9,28.26,0.05,0.0600952749291609,0.051032297753699135,0.009283277820811217,0.0 -3613,2005-06-22,18.14,22.43,28.33,0.18,0.2016995859350436,0.1809289272454426,0.008354350575368605,0.0 -3614,2005-06-23,18.26,22.91,28.87,0.17,0.1902752467948951,0.17083592055318406,0.007518430022184561,0.0 -3615,2005-06-24,17.06,23.38,30.41,27.34,29.89898767864343,27.34075223620291,0.006766193819274666,0.0 -3616,2005-06-25,14.89,21.23,25.57000000000005,0.01,0.0144860505297577,0.010676937837473937,0.006089255981800728,0.0 -3617,2005-06-26,17.21,23.38,29.06,0.0,0.0031952885503729,0.000609183520194428,0.005480072461606301,0.0 -3618,2005-06-27,17.89,24.14,30.44,0.0,0.0028748948223338,0.0005482161433281214,0.004931856318278179,0.0 -3619,2005-06-28,17.91,23.94,29.54,0.12,0.1338012191076237,0.12049335482420032,0.0044385014940778586,0.0 -3620,2005-06-29,14.88,19.08,25.23,2.57,2.812504974648867,2.570443987184782,0.003994514309295917,0.0 -3621,2005-06-30,11.68,16.94,21.64,13.44,14.698119823226357,13.440399562421966,0.0035949518873286835,0.0 -3622,2005-07-01,10.73,13.79,16.24,7.11,7.776344415119861,7.110359585085923,0.003235366801406407,0.0 -3623,2005-07-02,12.74,17.07000000000005,20.58,0.01,0.0126302597316463,0.01032360949281769,0.002911757308588716,0.0 -3624,2005-07-03,16.18,21.35,25.85,0.0,0.0015259015600046,0.0002912347061777202,0.0026205226024109958,0.0 -3625,2005-07-04,7.38,13.36,20.14,15.32,16.753092726994396,15.3202621000281,0.002358422574311701,0.0 -3626,2005-07-05,6.57000000000005,12.61,17.02,1.17,1.280577153823076,1.170235880947829,0.002122541626482691,0.0 -3627,2005-07-06,10.25,12.28,14.59,20.17,22.05608483383661,20.170212285500728,0.0019102561257546644,0.0 -3628,2005-07-07,10.0,11.31,12.77,8.79,9.61246379557175,8.790191050995587,0.0017192051301674264,0.0 -3629,2005-07-08,6.150000000000034,9.980000000000018,12.11,1.81,1.9800527516359772,1.8101719410726491,0.001547264057518254,0.0 -3630,2005-07-09,9.210000000000036,13.5,15.9,5.71,6.244434335961857,5.710154743058611,0.0013925209989067212,0.0 -3631,2005-07-10,14.02,16.96,20.71,0.11,0.1210092583767668,0.11013926558838442,0.0012532554105222997,0.0 -3632,2005-07-11,14.41,18.43,22.67,0.0,0.0006563134630265,0.0001253364664969896,0.00112791894402531,0.0 -3633,2005-07-12,15.4,19.06,22.84,0.0,0.000590645609393,0.00011280074384134752,0.0010151182001839625,0.0 -3634,2005-07-13,13.3,19.17,24.29,0.0,0.0005315514807735,0.00010151898793886232,0.0009135992122451001,0.0 -3635,2005-07-14,14.35,21.07000000000005,26.32000000000005,0.0,0.0004783723852498,9.136572714898288e-05,0.0008222334850961173,0.0 -3636,2005-07-15,17.9,23.37,28.29,2.53,2.7668698513006174,2.5300822280512416,0.0007400054338540963,0.0 -3637,2005-07-16,15.54,22.58,29.06,0.0,0.0003874484666657,7.400435255024652e-05,0.0006660010813038498,0.0 -3638,2005-07-17,17.25,23.72,29.74,0.51,0.558010375137644,0.5100666031935186,0.0005993978877852405,0.0 -3639,2005-07-18,14.88,17.62,21.45,0.49,0.5361064100860555,0.49005994228791727,0.0005394555998679834,0.0 -3640,2005-07-19,9.69,14.91,19.46,0.83,0.9078494767498276,0.8300539475842704,0.00048550801559756713,0.0 -3641,2005-07-20,12.78,16.8,20.86,0.11,0.1205341441540906,0.11004855244121582,0.0004369555743817527,0.0 -3642,2005-07-21,10.19,16.23,20.39,0.0,0.0002287502630568,4.3696885549614625e-05,0.0003932586888321381,0.0 -3643,2005-07-22,9.590000000000032,15.72,21.79,0.0,0.0002058708014953,3.932694464621355e-05,0.00035393174418592456,0.0 -3644,2005-07-23,11.06,15.88,20.05,1.3,1.421675847802631,1.3000353940457814,0.00031853769840459927,0.0 -3645,2005-07-24,13.48,20.12,25.42,0.39,0.4266139195083863,0.3900318544756404,0.0002866832227641872,0.0 -3646,2005-07-25,14.47,19.04,22.39,0.41,0.4484663278874458,0.41002866889397155,0.0002580143287926222,0.0 -3647,2005-07-26,14.59,20.5,25.54,0.0,0.0001350628269543,2.580189595027859e-05,0.0002322124328423436,0.0 -3648,2005-07-27,17.72,24.41,31.57000000000005,0.0,0.000121554998024,2.322161837026165e-05,0.00020899081447208194,0.0 -3649,2005-07-28,17.4,25.39,32.82000000000005,0.0,0.0001093982457997,2.0899385265799743e-05,0.0001880914292062822,0.0 -3650,2005-07-29,12.32000000000005,19.01,26.94,14.53,15.887989186867486,14.530018809389013,0.00016928204019338983,0.0 -3651,2005-07-30,9.960000000000036,15.78,19.99,0.0,8.861084441880561e-05,1.6928403353493375e-05,0.00015235363683989645,0.0 -3652,2005-07-31,12.41,-55.86,19.12,0.0,0.0,0.0,0.00015235363683989645,-41.894999999999996 diff --git a/data/exphydro/01013500.csv b/data/exphydro/01013500.csv deleted file mode 100644 index 6853aaf..0000000 --- a/data/exphydro/01013500.csv +++ /dev/null @@ -1,10958 +0,0 @@ -date,prcp(mm/day),tmean(C),dayl(day),srad(W/m2),vp(Pa),flow(mm) -1980-10-01,3.1,6.08,0.4719996527777777,192.61,711.33,0.5509980741595841 -1980-10-02,4.24,10.530000000000001,0.4701513888888889,206.31,898.61,0.5607406727203627 -1980-10-03,8.02,11.834999999999999,0.46799976851851854,165.35,1064.86,0.5585756508179673 -1980-10-04,15.27,7.38,0.463999537037037,159.78,794.18,0.6711567897425189 -1980-10-05,8.48,4.8,0.463999537037037,133.83,705.5,0.8216258119589868 -1980-10-06,0.0,5.41,0.46,141.67,766.42,0.8670912719092866 -1980-10-07,0.0,6.405,0.45920532407407405,171.11,789.18,0.9114742209083886 -1980-10-08,2.1,7.675,0.45599953703703705,218.61,772.86,0.9482795932491073 -1980-10-09,3.55,5.48,0.45200810185185186,189.92,652.42,0.9634347465658739 -1980-10-10,0.0,3.67,0.452,236.02,592.65,0.9504446151515026 -1980-10-11,10.66,1.5299999999999998,0.4480001157407407,238.28,440.0,0.9612697246634786 -1980-10-12,12.3,5.555000000000001,0.4480001157407407,158.94,704.67,1.0825109511976112 -1980-10-13,1.17,4.35,0.4440001157407408,186.73,661.87,1.1366364987574917 -1980-10-14,0.26,1.725,0.44166932870370373,174.16,565.27,1.1474616082694677 -1980-10-15,0.0,1.1800000000000002,0.4400003472222222,194.64,525.39,1.1474616082694677 -1980-10-16,0.0,0.43500000000000005,0.43611064814814815,309.27,360.0,1.1474616082694677 -1980-10-17,0.01,3.26,0.43600011574074077,306.62,438.24,1.1366364987574917 -1980-10-18,0.19,8.5,0.43200000000000005,268.64,725.6,1.1366364987574917 -1980-10-19,1.88,9.405000000000001,0.43194837962962956,216.89,867.28,1.0933360607095872 -1980-10-20,0.91,4.62,0.428,223.6,618.52,1.0630257540760544 -1980-10-21,1.71,1.7399999999999998,0.4261517361111111,209.99,521.4,1.0337979583937187 -1980-10-22,0.36,1.1149999999999998,0.42400011574074076,169.52,529.26,1.0013226298577902 -1980-10-23,0.0,0.4850000000000001,0.42121863425925926,210.54,467.11,0.949362104200305 -1980-10-24,0.0,2.71,0.41999976851851856,225.1,536.43,0.9244643523227599 -1980-10-25,0.19,1.4749999999999996,0.4164640046296296,275.14,390.48,0.9017316223476101 -1980-10-26,12.62,4.445,0.4159996527777778,172.54,584.21,1.002405140808988 -1980-10-27,2.99,1.16,0.4121109953703704,143.62,516.78,0.9894150093946166 -1980-10-28,0.22,-1.1199999999999999,0.41200046296296294,181.64,432.69,0.9969925860529997 -1980-10-29,0.0,-1.66,0.4080084490740741,194.53,406.04,0.9840024546386285 -1980-10-30,0.0,0.020000000000000018,0.40794895833333333,157.85,492.6,0.9731773451266524 -1980-10-31,0.01,1.5850000000000002,0.40399999999999997,161.71,546.61,0.9731773451266524 -1980-11-01,1.47,1.465,0.4037145833333334,140.98,560.81,0.9569396808586882 -1980-11-02,0.0,-1.3,0.40000023148148145,174.75,428.52,0.9266293742251551 -1980-11-03,0.03,-4.3100000000000005,0.39971435185185183,229.41,282.94,0.9147217537619815 -1980-11-04,1.46,1.125,0.3960082175925926,218.18,441.3,0.9093091990059934 -1980-11-05,1.31,3.3049999999999997,0.39571446759259266,192.31,560.5,0.8887414909332388 -1980-11-06,0.84,-2.38,0.3921108796296296,184.41,373.26,0.8605962062021009 -1980-11-07,4.99,-0.42999999999999994,0.3919487268518519,115.59,467.3,0.8454410528853343 -1980-11-08,6.84,-1.4,0.3884644675925926,104.57,442.67,0.8454410528853343 -1980-11-09,1.99,-5.119999999999999,0.38799999999999996,210.55,279.9,0.8454410528853343 -1980-11-10,3.43,-1.6400000000000001,0.3848466435185185,110.67,439.54,0.8497710966901247 -1980-11-11,3.51,-0.54,0.3840003472222222,82.34,503.16,0.8346159433733582 -1980-11-12,0.21,0.925,0.38166932870370374,95.12,568.26,0.8400284981293462 -1980-11-13,1.0,-0.5200000000000001,0.3799997685185186,99.54,501.71,0.8562661623973103 -1980-11-14,1.86,-1.1600000000000001,0.37920590277777777,99.68,470.46,0.8584311842997057 -1980-11-15,0.0,-3.335,0.37611087962962964,141.08,380.35,0.8443585419341366 -1980-11-16,1.41,-5.65,0.3759486111111111,144.43,311.03,0.812965724349406 -1980-11-17,0.0,-5.18,0.37321898148148147,142.82,327.58,0.804305636739825 -1980-11-18,4.65,-4.6,0.3719998842592593,95.63,359.96,0.7956455491302442 -1980-11-19,1.8,-4.64,0.37120578703703705,92.4,373.96,0.7783253739110824 -1980-11-20,0.0,-6.8,0.3684645833333333,219.48,235.94,0.7696652863015014 -1980-11-21,0.0,-2.865,0.3680003472222222,197.0,343.97,0.7675002643991063 -1980-11-22,0.0,-1.54,0.36615196759259255,187.1,388.65,0.7404374906191661 -1980-11-23,0.0,-2.255,0.3644642361111111,213.42,320.0,0.7252823373023994 -1980-11-24,11.42,0.2650000000000001,0.36400011574074076,137.4,445.1,0.7187872715952138 -1980-11-25,16.61,2.035,0.3621513888888889,67.97,618.51,0.8292033886173701 -1980-11-26,10.33,-2.495,0.3604638888888889,100.4,414.71,0.9591047027610835 -1980-11-27,0.0,-6.655,0.3599998842592593,164.08,273.32,0.9558571699074907 -1980-11-28,3.33,-5.175,0.35920578703703704,151.45,295.68,0.9840024546386285 -1980-11-29,11.51,-1.765,0.3572189814814815,103.64,432.5,1.0457055788568925 -1980-11-30,1.89,-2.355,0.35611041666666665,112.27,429.2,1.0305504255401257 -1980-12-01,1.78,-4.6499999999999995,0.3559483796296296,168.87,293.24,1.0262203817353355 -1980-12-02,3.97,-4.260000000000001,0.3546476851851852,164.09,296.33,0.9904975203458142 -1980-12-03,12.44,-1.1700000000000002,0.35321898148148145,121.08,419.21,0.9904975203458142 -1980-12-04,13.12,-6.175,0.35211030092592593,115.45,288.88,0.97425985607785 -1980-12-05,2.63,-8.755,0.35199988425925927,94.4,267.06,0.9850849655898262 -1980-12-06,0.0,-6.38,0.35171423611111113,124.13,310.75,1.0283854036377307 -1980-12-07,0.01,-5.800000000000001,0.3506474537037037,131.29,317.32,1.1041611702215632 -1980-12-08,7.21,-4.27,0.34966921296296294,125.08,321.72,1.179936936805396 -1980-12-09,6.7,-4.1899999999999995,0.3488465277777778,122.09,330.25,1.2557127033892288 -1980-12-10,0.79,-9.885,0.3481105324074074,177.02,199.86,1.3098382509491096 -1980-12-11,1.12,-16.005,0.3480079861111111,189.71,115.19,1.3098382509491096 -1980-12-12,0.5,-21.965,0.34794849537037037,192.3,40.16,1.2881880319251573 -1980-12-13,2.33,-16.51,0.34771435185185184,180.4,82.09,1.2448875938772528 -1980-12-14,0.65,-17.265,0.3472057870370371,184.59,80.0,1.1907620463173723 -1980-12-15,1.12,-22.2,0.3466476851851852,164.68,78.06,1.1366364987574917 -1980-12-16,8.32,-21.86,0.3466476851851852,147.95,40.0,1.071685841685635 -1980-12-17,6.84,-16.545,0.3461518518518519,124.35,120.0,1.0283854036377307 -1980-12-18,0.01,-17.195,0.3461518518518519,195.92,80.0,1.0013226298577902 -1980-12-19,0.0,-16.72,0.3456693287037037,189.15,81.29,0.97425985607785 -1980-12-20,0.0,-21.18,0.3456693287037037,177.14,80.0,0.9417845275419217 -1980-12-21,0.0,-24.675,0.3461518518518519,157.7,40.44,0.9201343085179694 -1980-12-22,0.19,-25.650000000000002,0.3461518518518519,196.28,40.0,0.8876589799820411 -1980-12-23,3.0,-19.655,0.3461518518518519,163.01,45.37,0.8443585419341366 -1980-12-24,4.59,-10.27,0.3466476851851852,112.75,200.0,0.8227083229101846 -1980-12-25,4.99,-21.935,0.3472057870370371,142.8,40.15,0.8010581038862323 -1980-12-26,0.0,-25.825,0.34771435185185184,179.6,40.0,0.7577576658383279 -1980-12-27,0.0,-20.725,0.34794849537037037,178.0,79.98,0.7252823373023994 -1980-12-28,0.0,-16.585,0.34800000000000003,207.46,52.43,0.7036321182784472 -1980-12-29,2.01,-5.140000000000001,0.3480079861111111,111.06,302.54,0.681981899254495 -1980-12-30,2.27,-8.01,0.3484641203703704,115.81,240.02,0.6603316802305428 -1980-12-31,2.14,-6.575,0.3482361111111111,113.44,271.28,0.6332689064506025 -1981-01-01,0.0,-19.36,0.34921886574074074,165.69,80.0,0.5953810231586861 -1981-01-02,5.19,-16.544999999999998,0.35015162037037034,147.26,86.33,0.58455591364671 -1981-01-03,6.68,-25.045,0.35120578703703703,118.19,40.0,0.5737308041347339 -1981-01-04,0.0,-28.89,0.3519482638888889,156.51,40.0,0.5629056946227577 -1981-01-05,0.52,-22.43,0.35200787037037035,197.17,40.0,0.5520805851107816 -1981-01-06,0.97,-16.37,0.35284641203703704,172.71,91.15,0.5304303660868295 -1981-01-07,7.72,-10.03,0.3541518518518519,132.78,166.52,0.5250178113308414 -1981-01-08,4.7,-12.765,0.35571446759259256,117.71,151.22,0.5196052565748533 -1981-01-09,0.0,-19.515,0.35600000000000004,155.99,80.0,0.5087801470628772 -1981-01-10,7.05,-19.5,0.3564643518518519,154.36,80.0,0.4979550375509011 -1981-01-11,4.72,-17.535,0.35815185185185183,120.38,107.1,0.487129928038925 -1981-01-12,0.0,-20.555,0.3599482638888889,151.54,80.0,0.48171737328293696 -1981-01-13,7.56,-24.005,0.36000787037037035,151.09,40.0,0.4763048185269489 -1981-01-14,2.02,-17.52,0.36121863425925926,128.97,120.0,0.47089226377096083 -1981-01-15,0.0,-20.45,0.3637142361111111,221.24,45.45,0.46547970901497276 -1981-01-16,0.0,-21.035,0.36400011574074076,229.52,40.0,0.46547970901497276 -1981-01-17,0.0,-19.95,0.36521898148148146,211.31,76.03,0.4600671542589847 -1981-01-18,0.17,-19.075,0.36771435185185186,227.81,80.0,0.4546545995029967 -1981-01-19,0.0,-11.04,0.3680083333333333,157.65,183.55,0.44382948999102056 -1981-01-20,0.0,-13.46,0.3696696759259259,180.51,141.06,0.4330043804790444 -1981-01-21,0.65,-16.745,0.3719483796296296,204.36,81.51,0.4330043804790444 -1981-01-22,5.65,-14.9,0.37211041666666667,170.28,113.78,0.4330043804790444 -1981-01-23,4.21,-9.315,0.3746479166666667,86.02,239.83,0.4275918257230564 -1981-01-24,1.92,-8.620000000000001,0.3760002314814815,114.88,240.0,0.4221792709670683 -1981-01-25,0.0,-10.895,0.3772188657407407,201.6,168.43,0.4221792709670683 -1981-01-26,0.0,-6.955,0.3799997685185186,214.84,220.04,0.4167667162110803 -1981-01-27,0.85,-1.165,0.3804640046296296,138.55,437.46,0.4167667162110803 -1981-01-28,0.0,-10.865,0.383714699074074,227.09,160.25,0.4113541614550923 -1981-01-29,0.0,-18.985,0.38400833333333334,270.81,53.24,0.4167667162110803 -1981-01-30,0.0,-17.815,0.3866476851851852,225.74,83.67,0.4167667162110803 -1981-01-31,0.0,-15.095,0.38799999999999996,267.88,84.16,0.4167667162110803 -1981-02-01,1.07,-10.075000000000001,0.3901519675925926,265.91,120.0,0.4221792709670683 -1981-02-02,14.21,0.9050000000000002,0.39200034722222227,153.47,438.66,0.4275918257230564 -1981-02-03,7.43,-7.055,0.3936696759259259,209.08,211.44,0.7144572277904233 -1981-02-04,0.0,-18.38,0.39600023148148145,245.11,80.0,0.7144572277904233 -1981-02-05,0.0,-19.32,0.3972188657407407,269.06,80.0,0.7144572277904233 -1981-02-06,0.0,-16.18,0.40000023148148145,272.87,86.12,0.7144572277904233 -1981-02-07,0.0,-11.135,0.4012189814814815,259.17,156.75,0.6711567897425189 -1981-02-08,7.79,-8.25,0.40399999999999997,191.94,200.0,0.6170312421826384 -1981-02-09,7.38,-4.42,0.40521898148148144,102.72,358.36,0.589968468402698 -1981-02-10,0.0,-9.47,0.4080003472222223,308.56,159.49,0.58455591364671 -1981-02-11,9.51,-0.05500000000000016,0.40966990740740744,201.19,374.55,0.589968468402698 -1981-02-12,8.53,-6.33,0.41200046296296294,213.06,224.72,0.6170312421826384 -1981-02-13,0.0,-15.61,0.41464768518518513,305.82,90.49,0.6765693444985069 -1981-02-14,0.1,-13.270000000000001,0.4159996527777778,291.93,120.0,0.7848204396182681 -1981-02-15,0.0,-12.594999999999999,0.419205324074074,333.07,120.0,0.876833870470065 -1981-02-16,0.0,-3.4050000000000002,0.41999976851851856,343.93,237.07,0.97425985607785 -1981-02-17,0.0,3.66,0.42400011574074076,202.79,598.93,1.060860732173659 -1981-02-18,0.0,4.375,0.42400011574074076,182.8,641.62,1.1907620463173723 -1981-02-19,0.46,4.895,0.428,249.39,600.48,1.2990131414371333 -1981-02-20,3.02,4.91,0.42846388888888887,133.55,719.81,1.5155153316766559 -1981-02-21,2.63,5.0600000000000005,0.43200000000000005,102.24,766.09,1.6778919743562972 -1981-02-22,1.38,5.42,0.4336695601851852,189.77,708.0,1.8402686170359388 -1981-02-23,0.0,4.194999999999999,0.43600011574074077,332.38,495.91,2.0567708072754614 -1981-02-24,0.0,3.1900000000000004,0.4399488425925926,333.84,457.86,2.2732729975149835 -1981-02-25,0.0,2.66,0.4400003472222222,213.39,569.22,2.5006002972664816 -1981-02-26,6.87,0.32000000000000006,0.4440001157407408,111.72,523.75,2.717102487506004 -1981-02-27,5.48,-0.24499999999999988,0.4440081018518519,118.84,507.25,2.8903042396976217 -1981-02-28,0.01,-3.3,0.4480001157407407,323.37,303.19,2.9660800062814543 -1981-03-01,3.51,-1.4299999999999997,0.4501516203703704,143.16,440.08,3.009380444329359 -1981-03-02,0.0,-3.445,0.452,255.67,355.66,3.009380444329359 -1981-03-03,0.0,-7.390000000000001,0.45599953703703705,378.95,203.5,2.9336046777455267 -1981-03-04,0.0,-7.444999999999999,0.45599953703703705,313.7,243.36,2.8578289111616932 -1981-03-05,1.44,-5.75,0.46,340.28,261.12,2.7712280350658847 -1981-03-06,0.62,-1.655,0.4604638888888889,248.71,427.58,2.6738020494580996 -1981-03-07,0.04,0.07999999999999996,0.463999537037037,148.56,539.97,2.543900735314386 -1981-03-08,0.0,-1.4,0.46799976851851854,193.36,464.45,2.424824530682649 -1981-03-09,0.0,-1.185,0.46799976851851854,134.3,502.94,2.316573435562888 -1981-03-10,0.0,-2.17,0.4719996527777777,180.84,449.78,2.1866721214191744 -1981-03-11,0.0,-5.335,0.4719996527777777,403.87,270.38,2.0784210262994134 -1981-03-12,0.0,-5.385,0.4760001157407408,433.4,241.25,1.9701699311796523 -1981-03-13,0.3,-3.5400000000000005,0.4800005787037037,373.95,325.04,1.8727439455718675 -1981-03-14,3.01,-3.27,0.4800005787037037,272.78,359.79,1.764492850452106 -1981-03-15,0.08,-8.08,0.4840002314814815,445.26,205.82,1.656241755332345 -1981-03-16,0.0,-8.48,0.4840002314814815,429.5,210.04,1.5696408792365362 -1981-03-17,21.88,-10.605,0.48800034722222224,326.26,179.04,1.5155153316766559 -1981-03-18,17.01,-8.205,0.4919994212962963,248.1,253.84,1.4938651126527034 -1981-03-19,3.95,-4.68,0.4919994212962963,300.85,312.83,1.4180893460688704 -1981-03-20,2.6,-1.185,0.4959997685185185,254.91,455.74,1.3531386889970138 -1981-03-21,0.0,-0.7250000000000001,0.4959997685185185,271.57,486.81,1.2881880319251573 -1981-03-22,0.0,-3.28,0.4999997685185186,513.51,283.16,1.2448875938772528 -1981-03-23,0.0,-3.7,0.503999537037037,547.28,207.83,1.2124122653413245 -1981-03-24,0.0,-3.2049999999999996,0.503999537037037,546.22,240.0,1.2015871558293483 -1981-03-25,0.0,-3.9949999999999997,0.5079996527777778,549.15,226.38,1.179936936805396 -1981-03-26,0.0,-3.085,0.5079996527777778,562.1,200.14,1.16911182729342 -1981-03-27,0.0,0.01499999999999968,0.511999537037037,507.42,367.96,1.1474616082694677 -1981-03-28,0.38,-2.3,0.5159998842592592,549.42,241.52,1.1258113892455155 -1981-03-29,3.18,3.22,0.5159998842592592,392.47,492.31,1.1474616082694677 -1981-03-30,20.18,2.9400000000000004,0.520000462962963,218.49,600.72,1.2448875938772528 -1981-03-31,19.06,1.6749999999999998,0.520000462962963,166.97,592.7,1.537165550700608 -1981-04-01,1.55,-0.34499999999999975,0.5240002314814816,432.19,409.19,1.6887170838682732 -1981-04-02,8.17,3.025,0.5279998842592593,224.65,606.66,1.9376946026437238 -1981-04-03,0.0,4.045,0.5279998842592593,497.7,524.14,2.1758470119071984 -1981-04-04,2.21,7.4,0.5319998842592593,423.41,667.83,2.446474749706601 -1981-04-05,3.42,9.290000000000001,0.5319998842592593,260.53,919.53,3.009380444329359 -1981-04-06,3.38,3.65,0.5359994212962963,275.8,603.21,3.7563130006557106 -1981-04-07,0.0,1.1549999999999998,0.5395353009259259,470.63,444.63,4.319218695278469 -1981-04-08,0.38,5.295,0.54,493.81,560.0,4.665622199661704 -1981-04-09,3.54,10.215,0.5439997685185185,405.65,811.0,5.033675923068892 -1981-04-10,2.58,8.115,0.5439997685185185,387.88,725.84,5.694007603299435 -1981-04-11,0.03,5.85,0.5479999999999999,528.15,554.6,6.256913297922193 -1981-04-12,0.0,3.245,0.5498481481481481,473.25,511.07,6.581666583281477 -1981-04-13,0.0,-0.2100000000000004,0.5520004629629629,547.14,336.99,6.62496702132938 -1981-04-14,0.23,2.135,0.5559922453703704,500.98,440.0,6.538366145233571 -1981-04-15,2.52,-4.575,0.5560002314814815,363.08,304.67,6.419289940601834 -1981-04-16,0.0,-5.49,0.56,523.13,240.0,6.105361764754527 -1981-04-17,0.08,1.4399999999999995,0.5600517361111111,516.88,428.28,5.79143358890722 -1981-04-18,5.1,4.055,0.5639996527777777,263.53,616.07,5.466680303547936 -1981-04-19,0.51,1.59,0.5663305555555556,385.46,499.14,5.250178113308414 -1981-04-20,0.0,0.9100000000000001,0.5679997685185185,381.01,475.19,4.979550375509011 -1981-04-21,0.0,-2.685,0.5715351851851852,412.31,352.9,4.67644730917368 -1981-04-22,0.0,-2.175,0.5719994212962963,537.84,310.09,4.394994461862301 -1981-04-23,0.0,3.7049999999999996,0.5760005787037037,544.59,480.16,4.135191833574875 -1981-04-24,7.6,4.16,0.5760005787037037,324.55,590.98,3.9295147528473287 -1981-04-25,6.34,3.3499999999999996,0.5800003472222222,339.99,552.95,3.8645640957754717 -1981-04-26,0.0,5.705,0.5807946759259259,448.19,657.74,3.745487891143735 -1981-04-27,0.0,6.234999999999999,0.5840005787037037,480.1,667.36,3.648061905535949 -1981-04-28,0.0,4.895,0.5853530092592593,594.43,488.85,3.561461029440141 -1981-04-29,14.74,4.46,0.5880002314814815,403.37,538.74,3.474860153344332 -1981-04-30,11.2,5.515,0.5903311342592593,333.05,648.08,3.713012562607806 -1981-05-01,0.0,5.5649999999999995,0.5920008101851852,601.88,492.67,3.84291387675152 -1981-05-02,0.26,8.205,0.5943310185185184,507.63,716.99,3.8753892052874477 -1981-05-03,0.0,8.045,0.5959997685185184,577.88,620.36,3.8645640957754717 -1981-05-04,0.0,8.565000000000001,0.5987809027777777,617.51,537.64,3.8320887672395436 -1981-05-05,0.0,13.61,0.5999998842592592,576.91,833.91,3.7563130006557106 -1981-05-06,0.29,13.455,0.6027810185185185,565.42,828.79,3.658887015047926 -1981-05-07,3.2,5.465000000000001,0.6039996527777778,435.02,557.65,3.5398108104161885 -1981-05-08,0.0,7.6049999999999995,0.6063304398148148,620.64,474.23,3.409909496272475 -1981-05-09,0.0,11.515,0.6079995370370371,586.15,689.63,3.3016584011527144 -1981-05-10,0.0,11.065000000000001,0.6098476851851852,539.32,763.42,3.1501068679850484 -1981-05-11,6.66,11.285,0.6120002314814815,392.53,920.52,2.9552548967694783 -1981-05-12,15.09,12.775,0.6133524305555556,312.92,1051.13,2.8037033636018127 -1981-05-13,23.38,12.219999999999999,0.6159914351851852,271.34,1080.61,2.72792759701798 -1981-05-14,8.09,8.535,0.6162851851851852,257.53,861.24,3.2691830726167854 -1981-05-15,1.87,10.03,0.6195356481481481,516.87,700.58,3.474860153344332 -1981-05-16,12.01,15.165,0.6199998842592592,309.79,1239.28,3.464035043832355 -1981-05-17,13.05,5.595,0.6227818287037037,315.06,635.38,3.5398108104161885 -1981-05-18,2.05,1.2750000000000001,0.6240006944444445,363.56,477.65,4.124366724062899 -1981-05-19,0.0,3.51,0.6253526620370371,414.86,557.25,4.23261781918266 -1981-05-20,0.0,7.37,0.6278895833333333,464.51,684.68,4.243442928694636 -1981-05-21,0.0,8.375,0.6280518518518519,595.42,547.96,4.178492271622779 -1981-05-22,0.88,11.19,0.6303303240740741,459.99,875.94,4.03776584796709 -1981-05-23,0.0,8.9,0.6319916666666667,523.16,677.06,3.8645640957754717 -1981-05-24,0.0,12.09,0.6322856481481481,570.7,715.17,3.6805372340718776 -1981-05-25,4.93,14.68,0.6347809027777778,431.47,832.45,3.464035043832355 -1981-05-26,6.18,17.58,0.6360001157407408,274.79,1434.59,3.2691830726167854 -1981-05-27,5.52,17.35,0.6362856481481481,272.93,1410.26,3.2042324155449293 -1981-05-28,6.91,17.17,0.6387810185185185,192.78,1568.44,3.095981320425168 -1981-05-29,9.01,17.345,0.6399917824074074,203.27,1566.54,2.998555334817383 -1981-05-30,6.91,17.585,0.6400512731481481,214.19,1563.83,3.1717570870090004 -1981-05-31,6.57,13.445,0.6418483796296296,275.52,1106.64,3.3666090582245705 -1981-06-01,0.0,8.835,0.6435354166666667,508.29,620.09,3.4423848248084035 -1981-06-02,0.0,11.040000000000001,0.6439998842592592,520.97,683.63,3.409909496272475 -1981-06-03,0.63,15.905000000000001,0.6442856481481481,439.02,1115.22,3.31248351066469 -1981-06-04,4.17,17.86,0.6458482638888889,284.42,1421.69,3.2042324155449293 -1981-06-05,0.0,18.015,0.6471538194444444,477.17,1218.66,3.074331101401216 -1981-06-06,8.58,18.86,0.6479927083333333,300.82,1453.22,3.0310306633533117 -1981-06-07,2.21,13.32,0.6480521990740741,350.81,1066.19,2.6954522684820517 -1981-06-08,0.08,11.4,0.6487947916666666,486.39,798.66,2.446474749706601 -1981-06-09,7.2,12.75,0.6498487268518519,217.61,1163.41,2.359873873610792 -1981-06-10,5.47,11.594999999999999,0.6507814814814814,241.72,1040.18,2.2083223404431265 -1981-06-11,0.17,11.625,0.6515357638888889,493.03,793.84,2.121721464347318 -1981-06-12,0.0,12.834999999999999,0.6519921296296297,484.62,877.6,1.9701699311796523 -1981-06-13,0.0,14.629999999999999,0.6520001157407407,490.82,941.25,1.8402686170359388 -1981-06-14,0.0,16.645,0.6520517361111111,461.02,1171.4,1.7211924124042017 -1981-06-15,2.97,17.2,0.6522856481481482,229.15,1568.58,1.6021162077724647 -1981-06-16,15.91,17.345,0.6527943287037037,176.63,1617.43,1.5804659887485122 -1981-06-17,8.15,18.759999999999998,0.653352662037037,231.4,1646.72,1.6454166458203692 -1981-06-18,0.0,15.875,0.653848611111111,487.63,1041.94,1.547990660212584 -1981-06-19,0.26,18.765,0.653848611111111,435.31,1367.86,1.461389784116775 -1981-06-20,2.35,19.240000000000002,0.653848611111111,309.89,1656.02,1.3856140175329423 -1981-06-21,4.82,16.475,0.6543310185185185,333.07,1250.37,1.3314884699730618 -1981-06-22,18.0,14.555,0.6543310185185185,222.62,1294.49,1.2990131414371333 -1981-06-23,9.64,14.35,0.653848611111111,230.8,1313.12,1.3206633604610856 -1981-06-24,2.0,12.385,0.653848611111111,443.84,864.2,1.2448875938772528 -1981-06-25,11.95,13.275,0.653352662037037,255.88,1156.85,1.2124122653413245 -1981-06-26,11.39,13.245000000000001,0.653352662037037,205.02,1236.7,1.4180893460688704 -1981-06-27,0.0,14.045000000000002,0.6527943287037037,456.37,1033.66,1.4722148936287511 -1981-06-28,0.0,15.82,0.6522856481481482,515.19,964.24,1.4722148936287511 -1981-06-29,0.0,17.86,0.6520517361111111,508.4,1113.18,1.461389784116775 -1981-06-30,0.0,19.935000000000002,0.6519921296296297,439.87,1475.5,1.461389784116775 -1981-07-01,0.0,19.745,0.6518894675925926,393.9,1587.7,1.36396379850899 -1981-07-02,0.0,19.855,0.6511538194444445,465.59,1405.65,1.3098382509491096 -1981-07-03,0.0,22.275,0.6503311342592593,440.79,1706.49,1.2448875938772528 -1981-07-04,0.0,23.520000000000003,0.6493528935185184,354.75,2091.96,1.179936936805396 -1981-07-05,1.7,22.08,0.6482863425925927,343.08,1921.28,1.1149862797335395 -1981-07-06,17.97,22.895,0.6480008101851852,272.51,2010.9,1.060860732173659 -1981-07-07,12.44,20.19,0.647890162037037,297.23,1627.87,1.1366364987574917 -1981-07-08,4.41,20.4,0.64678125,368.43,1453.1,1.071685841685635 -1981-07-09,0.59,18.38,0.645352199074074,438.33,1329.65,1.0283854036377307 -1981-07-10,0.9,19.925,0.6440515046296297,411.21,1514.56,0.97425985607785 -1981-07-11,1.61,18.585,0.6438894675925926,385.29,1418.23,0.9255468632739575 -1981-07-12,0.0,17.57,0.6427809027777778,424.77,1333.36,0.8605962062021009 -1981-07-13,10.63,17.63,0.6407940972222222,331.85,1301.88,0.8389459871781486 -1981-07-14,9.17,17.695,0.6399997685185186,255.65,1501.79,0.8118832133982083 -1981-07-15,3.61,15.075,0.6395354166666667,268.87,1285.29,0.8660087609580888 -1981-07-16,0.0,15.385000000000002,0.6378482638888888,444.81,1126.21,0.8172957681541964 -1981-07-17,0.0,17.29,0.6360001157407408,499.04,1084.55,0.768582775350304 -1981-07-18,0.29,19.155,0.6355359953703703,461.29,1305.7,0.7306948920583874 -1981-07-19,0.0,19.93,0.6338483796296296,425.81,1494.73,0.6982195635224592 -1981-07-20,1.74,19.810000000000002,0.6319996527777777,353.08,1590.77,0.6765693444985069 -1981-07-21,4.97,19.09,0.6315355324074073,183.71,1778.4,0.6495065707185667 -1981-07-22,0.16,16.865000000000002,0.6287943287037038,331.62,1413.39,0.6062061326706623 -1981-07-23,0.0,13.895,0.628,451.48,972.35,0.5629056946227577 -1981-07-24,0.0,15.5,0.6267813657407407,486.26,982.25,0.5358429208428175 -1981-07-25,0.0,17.6,0.624052199074074,481.3,1130.18,0.5033675923068892 -1981-07-26,2.76,19.115000000000002,0.6238902777777778,406.49,1385.74,0.487129928038925 -1981-07-27,11.76,17.81,0.6207944444444444,269.71,1438.76,0.5033675923068892 -1981-07-28,0.0,13.049999999999999,0.6199998842592592,459.01,894.74,0.487129928038925 -1981-07-29,0.0,14.965,0.6183303240740741,356.78,1216.61,0.47089226377096083 -1981-07-30,1.48,17.035,0.615999537037037,352.21,1317.54,0.44924204474700863 -1981-07-31,0.01,18.76,0.6151532407407407,460.82,1266.61,0.4275918257230564 -1981-08-01,0.0,20.715,0.6120002314814815,433.53,1494.9,0.4113541614550923 -1981-08-02,0.32,22.355,0.6115356481481482,381.97,1781.69,0.39511649718712805 -1981-08-03,5.74,21.695,0.6080510416666667,303.66,1716.55,0.37887883291916397 -1981-08-04,10.95,21.535,0.6078891203703704,285.7,1762.65,0.39511649718712805 -1981-08-05,29.15,19.54,0.6042853009259259,292.47,1482.62,0.3680537234071878 -1981-08-06,55.48,15.465,0.6039916666666666,162.4,1431.56,0.7469325563263517 -1981-08-07,29.44,13.775,0.6002854166666667,143.12,1336.8,2.1758470119071984 -1981-08-08,7.89,15.38,0.5999998842592592,196.52,1380.07,2.3706989831227685 -1981-08-09,3.9,16.47,0.5962851851851851,174.61,1528.68,2.6738020494580996 -1981-08-10,4.05,18.9,0.5959997685185184,201.64,1728.97,2.9336046777455267 -1981-08-11,8.6,19.549999999999997,0.5920523148148148,299.73,1501.31,3.0635059918892393 -1981-08-12,12.7,20.86,0.591992824074074,255.13,1780.66,3.2475328535928334 -1981-08-13,0.0,18.16,0.5880002314814815,359.12,1461.38,3.2475328535928334 -1981-08-14,0.0,13.145,0.5879922453703703,457.31,886.47,3.1392817584730723 -1981-08-15,13.59,13.195,0.5840005787037037,394.32,871.32,2.9877302253054068 -1981-08-16,18.19,16.475,0.5835359953703704,210.06,1445.71,2.9877302253054068 -1981-08-17,39.31,14.864999999999998,0.5800003472222222,169.99,1389.82,3.280008182128762 -1981-08-18,19.39,12.969999999999999,0.5787818287037036,316.97,1000.98,4.87129928038925 -1981-08-19,0.0,14.834999999999999,0.5760005787037037,449.65,1001.23,5.055326142092844 -1981-08-20,0.0,15.655000000000001,0.5738478009259259,467.6,960.98,5.196052565748533 -1981-08-21,0.0,17.43,0.5719994212962963,459.94,1093.33,5.022850813556915 -1981-08-22,0.0,18.580000000000002,0.5680513888888888,445.92,1219.2,4.773873294781465 -1981-08-23,9.48,19.884999999999998,0.5679997685185185,277.94,1568.48,4.535720885517991 -1981-08-24,4.16,15.625,0.5639996527777777,258.61,1297.62,4.340868914302421 -1981-08-25,0.0,10.665,0.5639916666666667,454.07,721.99,4.09189139552697 -1981-08-26,0.0,12.895,0.56,466.26,778.91,3.8320887672395436 -1981-08-27,0.0,15.620000000000001,0.558330324074074,370.46,1199.3,3.583111248464093 -1981-08-28,0.0,11.505,0.5560002314814815,447.26,747.22,3.3016584011527144 -1981-08-29,0.0,14.425,0.5520519675925926,463.12,808.16,3.0418557728652873 -1981-08-30,0.0,17.845,0.5520004629629629,398.59,1263.7,2.8145284731137887 -1981-08-31,0.0,19.04,0.5479999999999999,330.1,1538.59,2.5763760638503146 -1981-09-01,0.0,17.12,0.5479921296296296,330.8,1364.23,2.359873873610792 -1981-09-02,0.0,17.375,0.5439997685185185,357.7,1324.66,2.14337168337127 -1981-09-03,0.0,18.795,0.540794212962963,365.81,1403.25,1.9593448216676759 -1981-09-04,0.0,17.2,0.54,406.09,1157.39,1.7753179599640823 -1981-09-05,0.0,17.240000000000002,0.5359994212962963,386.7,1205.19,1.6021162077724647 -1981-09-06,0.0,16.53,0.5359994212962963,360.02,1210.31,1.4722148936287511 -1981-09-07,0.0,15.685,0.5319998842592593,373.34,1096.34,1.36396379850899 -1981-09-08,0.05,15.704999999999998,0.5298482638888888,340.99,1166.42,1.277362922413181 -1981-09-09,7.86,13.934999999999999,0.5279998842592593,196.35,1180.75,1.266537812901205 -1981-09-10,6.91,9.215,0.5240002314814816,231.12,795.62,1.2232373748533005 -1981-09-11,2.32,10.96,0.5240002314814816,211.85,984.56,1.1366364987574917 -1981-09-12,0.76,11.1,0.520000462962963,301.62,919.42,1.080345929295216 -1981-09-13,0.47,14.24,0.5183310185185186,319.91,1077.34,1.0197253160281496 -1981-09-14,3.79,11.72,0.5159998842592592,243.37,916.43,0.9775073889314428 -1981-09-15,1.44,12.844999999999999,0.511999537037037,271.46,1046.64,0.9363719727859338 -1981-09-16,0.0,11.245000000000001,0.511999537037037,303.45,900.24,0.876833870470065 -1981-09-17,0.0,8.865,0.5079996527777778,363.38,655.4,0.8172957681541964 -1981-09-18,0.02,8.055,0.5067805555555556,334.87,660.46,0.7772428629598849 -1981-09-19,10.41,9.26,0.503999537037037,179.95,872.02,0.7534276220335374 -1981-09-20,8.37,9.535,0.4999997685185186,113.86,1000.21,0.7610051986919205 -1981-09-21,1.44,8.48,0.4999997685185186,255.31,798.16,0.7447675344239565 -1981-09-22,0.92,6.93,0.4959997685185185,263.87,704.12,0.7220348044488065 -1981-09-23,11.79,7.445,0.49366840277777774,111.32,873.38,0.7068796511320401 -1981-09-24,15.11,8.52,0.4919994212962963,114.87,934.13,0.8259558557637772 -1981-09-25,4.56,8.115,0.48800034722222224,302.71,654.37,0.8595136952509033 -1981-09-26,0.22,9.305,0.48800034722222224,338.62,718.55,0.8681737828604842 -1981-09-27,8.6,8.405,0.4840002314814815,250.36,682.57,0.8854939580796459 -1981-09-28,6.41,11.465,0.48167002314814816,178.78,1024.68,0.9114742209083886 -1981-09-29,3.35,5.845,0.4800005787037037,223.91,671.69,0.8854939580796459 -1981-09-30,2.36,3.9450000000000003,0.4760001157407408,155.5,663.69,0.8508536076413223 -1981-10-01,3.24,5.615,0.4760001157407408,179.47,709.56,0.8681737828604842 -1981-10-02,8.6,5.9,0.4719996527777777,121.27,783.77,0.8605962062021009 -1981-10-03,14.18,5.575,0.4701513888888889,102.17,783.47,0.9277118851763528 -1981-10-04,4.08,5.92,0.46799976851851854,99.23,806.67,1.0110652284185688 -1981-10-05,0.0,8.01,0.463999537037037,267.31,785.14,1.002405140808988 -1981-10-06,3.24,6.79,0.463999537037037,289.22,597.03,1.002405140808988 -1981-10-07,15.85,6.484999999999999,0.46,162.33,761.54,1.080345929295216 -1981-10-08,14.87,3.84,0.45920532407407405,114.54,686.4,1.461389784116775 -1981-10-09,1.14,4.3,0.45599953703703705,152.96,701.13,1.6021162077724647 -1981-10-10,0.0,2.17,0.45200810185185186,231.39,550.78,1.7211924124042017 -1981-10-11,0.0,2.7449999999999997,0.452,202.15,593.17,1.8077932885000105 -1981-10-12,0.0,3.235,0.4480001157407407,325.11,440.34,1.829443507523963 -1981-10-13,0.0,5.029999999999999,0.4480001157407407,333.9,443.08,1.8402686170359388 -1981-10-14,0.0,6.91,0.4440001157407408,331.63,471.49,1.829443507523963 -1981-10-15,0.25,8.095,0.44166932870370373,318.94,552.3,1.8077932885000105 -1981-10-16,2.24,8.095,0.4400003472222222,223.12,768.88,1.764492850452106 -1981-10-17,0.0,4.0600000000000005,0.43611064814814815,241.52,590.57,1.6995421933802495 -1981-10-18,14.44,2.445,0.43600011574074077,230.2,420.12,1.656241755332345 -1981-10-19,16.5,5.89,0.43200000000000005,163.31,689.53,1.9268694931317478 -1981-10-20,2.26,3.345,0.43194837962962956,216.07,559.17,1.9809950406916284 -1981-10-21,0.61,4.74,0.428,232.7,599.68,1.9809950406916284 -1981-10-22,4.36,3.19,0.4261517361111111,183.07,543.42,1.9809950406916284 -1981-10-23,18.37,5.550000000000001,0.42400011574074076,177.59,619.32,2.0675959167874374 -1981-10-24,28.87,4.045,0.42121863425925926,162.72,587.55,2.8794791301856457 -1981-10-25,0.0,0.31000000000000005,0.41999976851851856,228.8,440.7,3.31248351066469 -1981-10-26,8.04,1.13,0.4164640046296296,156.97,479.85,3.615586577000021 -1981-10-27,12.8,5.01,0.4159996527777778,112.47,717.21,3.9836403004072087 -1981-10-28,12.96,4.79,0.4121109953703704,124.87,678.37,4.752223075757513 -1981-10-29,0.0,-0.3849999999999998,0.41200046296296294,235.05,398.54,5.033675923068892 -1981-10-30,0.0,0.020000000000000018,0.4080084490740741,231.96,400.44,5.098626580140748 -1981-10-31,0.0,0.81,0.40794895833333333,253.85,360.0,5.022850813556915 -1981-11-01,0.21,2.31,0.40399999999999997,200.35,511.1,4.882124389901226 -1981-11-02,0.0,6.535,0.4037145833333334,174.97,725.16,4.67644730917368 -1981-11-03,0.0,3.63,0.40000023148148145,176.89,580.87,4.405819571374277 -1981-11-04,0.0,1.555,0.39971435185185183,164.46,512.62,4.156842052598827 -1981-11-05,0.26,2.1399999999999997,0.3960082175925926,209.44,458.91,3.9511649718712807 -1981-11-06,1.49,5.495,0.39571446759259266,140.51,695.37,3.745487891143735 -1981-11-07,5.52,5.555,0.3921108796296296,74.97,769.7,3.583111248464093 -1981-11-08,2.99,2.205,0.3919487268518519,101.32,578.54,3.409909496272475 -1981-11-09,0.02,0.14000000000000012,0.3884644675925926,161.25,446.42,3.2475328535928334 -1981-11-10,0.0,-3.8099999999999996,0.38799999999999996,183.3,315.31,3.0418557728652873 -1981-11-11,2.02,-2.73,0.3848466435185185,153.65,360.66,2.8578289111616932 -1981-11-12,0.06,-4.0200000000000005,0.3840003472222222,155.21,347.84,2.6738020494580996 -1981-11-13,0.0,-3.855,0.38166932870370374,205.67,318.05,2.5114254067784576 -1981-11-14,0.0,-0.08499999999999996,0.3799997685185186,223.92,375.15,2.359873873610792 -1981-11-15,0.0,1.3649999999999998,0.37920590277777777,222.34,419.31,2.1974972309311505 -1981-11-16,0.0,2.87,0.37611087962962964,195.27,514.16,2.0784210262994134 -1981-11-17,5.25,2.33,0.3759486111111111,89.15,586.67,1.9593448216676759 -1981-11-18,10.19,1.29,0.37321898148148147,46.97,602.26,1.9701699311796523 -1981-11-19,6.6,-0.6300000000000001,0.3719998842592593,49.26,525.87,2.024295478739533 -1981-11-20,6.6,-0.3599999999999999,0.37120578703703705,76.71,496.46,1.9809950406916284 -1981-11-21,14.44,1.3900000000000001,0.3684645833333333,78.18,558.92,2.14337168337127 -1981-11-22,3.41,0.44000000000000006,0.3680003472222222,72.67,538.06,2.359873873610792 -1981-11-23,0.0,-2.29,0.36615196759259255,91.13,437.25,2.359873873610792 -1981-11-24,0.0,-4.35,0.3644642361111111,98.13,367.94,2.33822365458684 -1981-11-25,0.0,-4.395,0.36400011574074076,91.35,374.18,2.316573435562888 -1981-11-26,0.0,-4.01,0.3621513888888889,77.12,397.92,2.240797668979055 -1981-11-27,7.79,-4.305,0.3604638888888889,82.08,369.13,2.1866721214191744 -1981-11-28,5.61,-2.98,0.3599998842592593,80.43,422.54,2.14337168337127 -1981-11-29,0.0,-4.615,0.35920578703703704,100.19,369.9,2.035120588251509 -1981-11-30,0.0,-7.074999999999999,0.3572189814814815,120.57,297.77,1.9376946026437238 -1981-12-01,0.0,-7.145,0.35611041666666665,189.47,239.06,1.8943941645958196 -1981-12-02,4.18,-3.955,0.3559483796296296,148.35,285.56,1.8186183980119868 -1981-12-03,6.27,0.56,0.3546476851851852,63.62,564.93,1.7103673028922255 -1981-12-04,6.29,1.03,0.35321898148148145,66.08,582.01,1.7211924124042017 -1981-12-05,0.49,-0.5449999999999999,0.35211030092592593,127.57,478.64,1.6670668648443212 -1981-12-06,7.69,0.355,0.35199988425925927,103.37,501.12,1.656241755332345 -1981-12-07,8.84,1.615,0.35171423611111113,73.62,592.69,1.9809950406916284 -1981-12-08,1.46,-1.085,0.3506474537037037,74.0,497.46,2.154196792883246 -1981-12-09,2.16,-2.57,0.34966921296296294,54.96,458.51,2.229972559467079 -1981-12-10,2.71,-1.5299999999999998,0.3488465277777778,90.28,456.87,2.2949232165389355 -1981-12-11,2.4,-1.635,0.3481105324074074,64.87,487.54,2.2949232165389355 -1981-12-12,0.0,-4.365,0.3480079861111111,102.06,372.59,2.2840981070269595 -1981-12-13,0.0,-8.35,0.34794849537037037,164.29,221.64,2.219147449955103 -1981-12-14,0.0,-7.4,0.34771435185185184,168.96,232.86,2.14337168337127 -1981-12-15,3.11,-4.72,0.3472057870370371,130.45,322.83,2.0784210262994134 -1981-12-16,10.35,-2.2550000000000003,0.3466476851851852,71.94,447.88,2.045945697763485 -1981-12-17,4.7,-5.17,0.3466476851851852,96.29,340.16,2.024295478739533 -1981-12-18,0.01,-11.07,0.3461518518518519,179.39,179.08,1.9268694931317478 -1981-12-19,10.04,-10.344999999999999,0.3461518518518519,129.87,200.27,1.8727439455718675 -1981-12-20,5.62,-10.14,0.3456693287037037,96.9,230.98,1.829443507523963 -1981-12-21,0.0,-13.385000000000002,0.3456693287037037,194.49,119.8,1.7753179599640823 -1981-12-22,0.82,-7.83,0.3461518518518519,164.68,240.0,1.656241755332345 -1981-12-23,5.83,-6.699999999999999,0.3461518518518519,120.43,280.0,1.5912910982604884 -1981-12-24,4.46,-5.1000000000000005,0.3461518518518519,112.99,315.89,1.5696408792365362 -1981-12-25,0.04,-5.5249999999999995,0.3466476851851852,124.02,325.3,1.5155153316766559 -1981-12-26,0.0,-12.615,0.3472057870370371,192.51,124.08,1.461389784116775 -1981-12-27,0.01,-16.509999999999998,0.34771435185185184,197.33,80.0,1.4072642365568944 -1981-12-28,4.41,-11.63,0.34794849537037037,142.7,151.4,1.3531386889970138 -1981-12-29,5.88,-4.145,0.34800000000000003,86.3,360.08,1.3206633604610856 -1981-12-30,0.0,-8.72,0.3480079861111111,156.05,229.89,1.2881880319251573 -1981-12-31,0.0,-14.93,0.3484641203703704,198.72,109.07,1.266537812901205 -1982-01-01,18.96,-12.975,0.34921886574074074,135.14,120.0,1.2232373748533005 -1982-01-02,18.38,-10.585,0.35015162037037034,91.57,195.07,1.1907620463173723 -1982-01-03,0.0,-14.575000000000001,0.35120578703703703,183.53,118.63,1.1366364987574917 -1982-01-04,15.45,-7.1000000000000005,0.3519482638888889,147.62,189.43,1.0825109511976112 -1982-01-05,9.5,-3.17,0.35200787037037035,124.97,302.24,1.0392105131497067 -1982-01-06,2.73,-12.2,0.35284641203703704,163.05,120.78,1.0067351846137784 -1982-01-07,1.66,-9.47,0.3541518518518519,127.29,200.17,0.9634347465658739 -1982-01-08,0.0,-15.255,0.35571446759259256,174.35,120.0,0.9417845275419217 -1982-01-09,0.0,-21.634999999999998,0.35600000000000004,178.82,80.0,0.9309594180299455 -1982-01-10,0.0,-25.835,0.3564643518518519,206.01,40.0,0.9201343085179694 -1982-01-11,0.0,-25.765,0.35815185185185183,198.31,40.0,0.9093091990059934 -1982-01-12,0.0,-24.615000000000002,0.3599482638888889,213.8,40.0,0.876833870470065 -1982-01-13,0.07,-20.775,0.36000787037037035,188.91,80.0,0.8551836514461127 -1982-01-14,7.26,-16.825,0.36121863425925926,130.26,117.59,0.8118832133982083 -1982-01-15,3.33,-11.34,0.3637142361111111,83.51,201.42,0.7902329943742561 -1982-01-16,1.14,-12.985,0.36400011574074076,162.43,159.92,0.768582775350304 -1982-01-17,0.17,-21.125,0.36521898148148146,177.41,75.73,0.7415200015703636 -1982-01-18,0.0,-27.895,0.36771435185185186,206.05,40.0,0.7252823373023994 -1982-01-19,0.0,-23.79,0.3680083333333333,169.0,50.87,0.7036321182784472 -1982-01-20,0.0,-19.384999999999998,0.3696696759259259,197.42,80.0,0.681981899254495 -1982-01-21,0.0,-20.314999999999998,0.3719483796296296,181.7,79.73,0.6711567897425189 -1982-01-22,0.0,-22.810000000000002,0.37211041666666667,161.56,72.94,0.6495065707185667 -1982-01-23,10.44,-21.73,0.3746479166666667,189.33,40.0,0.6278563516946144 -1982-01-24,5.58,-15.265,0.3760002314814815,171.31,119.99,0.6170312421826384 -1982-01-25,0.0,-16.87,0.3772188657407407,187.92,111.44,0.5953810231586861 -1982-01-26,0.0,-24.58,0.3799997685185186,231.03,40.0,0.5737308041347339 -1982-01-27,0.0,-22.7,0.3804640046296296,250.26,40.0,0.5629056946227577 -1982-01-28,1.14,-18.66,0.383714699074074,273.54,53.64,0.5466680303547936 -1982-01-29,2.02,-13.264999999999999,0.38400833333333334,232.12,120.0,0.5304303660868295 -1982-01-30,4.26,-16.735,0.3866476851851852,215.7,80.0,0.5250178113308414 -1982-01-31,6.46,-12.705,0.38799999999999996,174.74,137.11,0.5196052565748533 -1982-02-01,14.88,-12.35,0.3901519675925926,145.97,159.96,0.5304303660868295 -1982-02-02,0.45,-14.514999999999999,0.39200034722222227,288.64,84.54,0.5412554755988056 -1982-02-03,10.04,-6.3549999999999995,0.3936696759259259,149.37,277.68,0.5574931398667697 -1982-02-04,10.31,-4.795,0.39600023148148145,148.49,309.33,0.5683182493787459 -1982-02-05,1.23,-16.965,0.3972188657407407,304.92,80.0,0.5737308041347339 -1982-02-06,5.64,-13.815000000000001,0.40000023148148145,194.51,126.17,0.579143358890722 -1982-02-07,0.0,-16.335,0.4012189814814815,296.18,83.44,0.58455591364671 -1982-02-08,0.0,-11.600000000000001,0.40399999999999997,171.29,196.62,0.58455591364671 -1982-02-09,2.38,-16.45,0.40521898148148144,279.42,82.66,0.579143358890722 -1982-02-10,3.32,-13.175,0.4080003472222223,170.37,160.02,0.5737308041347339 -1982-02-11,0.0,-15.864999999999998,0.40966990740740744,297.9,107.25,0.5683182493787459 -1982-02-12,0.0,-14.845,0.41200046296296294,288.15,120.0,0.5520805851107816 -1982-02-13,0.04,-17.535,0.41464768518518513,358.23,79.98,0.5412554755988056 -1982-02-14,0.57,-15.41,0.4159996527777778,301.36,120.0,0.5304303660868295 -1982-02-15,0.21,-15.16,0.419205324074074,374.13,80.0,0.5196052565748533 -1982-02-16,0.0,-6.73,0.41999976851851856,197.07,278.74,0.5087801470628772 -1982-02-17,0.0,-13.635,0.42400011574074076,286.53,134.32,0.5033675923068892 -1982-02-18,0.0,-17.85,0.42400011574074076,380.82,74.27,0.4979550375509011 -1982-02-19,0.49,-14.265,0.428,376.37,80.31,0.4925424827949131 -1982-02-20,0.0,-5.075,0.42846388888888887,256.64,281.52,0.487129928038925 -1982-02-21,8.31,-6.265,0.43200000000000005,219.39,255.96,0.4763048185269489 -1982-02-22,4.81,-6.915,0.4336695601851852,133.87,280.25,0.47089226377096083 -1982-02-23,3.74,-7.39,0.43600011574074077,149.12,280.01,0.4600671542589847 -1982-02-24,0.0,-12.26,0.4399488425925926,295.44,158.84,0.44924204474700863 -1982-02-25,0.0,-17.645,0.4400003472222222,295.11,106.78,0.4384169352350325 -1982-02-26,0.0,-18.67,0.4440001157407408,241.58,110.78,0.4221792709670683 -1982-02-27,0.0,-19.08,0.4440081018518519,368.11,80.0,0.4059416066991042 -1982-02-28,0.0,-22.22,0.4480001157407407,416.92,40.0,0.39511649718712805 -1982-03-01,0.5,-23.025,0.4501516203703704,440.94,40.0,0.38970394243114004 -1982-03-02,2.5,-10.775,0.452,276.73,183.91,0.37887883291916397 -1982-03-03,0.0,-11.635,0.45599953703703705,291.8,176.32,0.3680537234071878 -1982-03-04,2.81,-14.98,0.45599953703703705,390.22,80.0,0.3626411686511997 -1982-03-05,8.77,-6.65,0.46,299.14,211.71,0.3518160591392236 -1982-03-06,1.76,-8.17,0.4604638888888889,416.07,160.0,0.3464035043832356 -1982-03-07,10.29,-3.545,0.463999537037037,208.72,352.8,0.33557839487125946 -1982-03-08,11.85,-3.77,0.46799976851851854,195.8,353.96,0.3301658401152714 -1982-03-09,0.0,-15.219999999999999,0.46799976851851854,493.66,80.0,0.32475328535928333 -1982-03-10,0.12,-13.799999999999999,0.4719996527777777,500.54,80.0,0.31934073060329526 -1982-03-11,2.84,-2.495,0.4719996527777777,283.7,355.41,0.3139281758473072 -1982-03-12,0.57,0.905,0.4760001157407408,154.85,564.99,0.3085156210913192 -1982-03-13,0.13,2.04,0.4800005787037037,234.07,571.3,0.3085156210913192 -1982-03-14,3.13,-0.040000000000000036,0.4800005787037037,242.95,461.5,0.3139281758473072 -1982-03-15,0.0,-6.0,0.4840002314814815,358.59,271.54,0.31934073060329526 -1982-03-16,0.0,-5.970000000000001,0.4840002314814815,427.93,251.52,0.33557839487125946 -1982-03-17,0.0,-4.295,0.48800034722222224,500.03,243.54,0.32475328535928333 -1982-03-18,0.0,-3.4050000000000002,0.4919994212962963,493.21,268.13,0.31934073060329526 -1982-03-19,0.0,-3.59,0.4919994212962963,519.04,241.65,0.3139281758473072 -1982-03-20,0.0,-2.3400000000000003,0.4959997685185185,455.53,325.36,0.3139281758473072 -1982-03-21,0.88,-5.69,0.4959997685185185,509.43,202.04,0.3085156210913192 -1982-03-22,4.63,-3.7449999999999997,0.4999997685185186,250.95,341.92,0.3139281758473072 -1982-03-23,2.23,-3.085,0.503999537037037,289.17,363.56,0.32475328535928333 -1982-03-24,0.0,-5.82,0.503999537037037,577.03,177.26,0.3301658401152714 -1982-03-25,0.0,2.1850000000000005,0.5079996527777778,477.46,440.09,0.3409909496272475 -1982-03-26,4.54,4.0,0.5079996527777778,331.2,583.28,0.3680537234071878 -1982-03-27,5.13,-7.970000000000001,0.511999537037037,322.2,223.58,0.39511649718712805 -1982-03-28,0.07,-14.704999999999998,0.5159998842592592,482.25,120.0,0.4330043804790444 -1982-03-29,0.0,-9.125,0.5159998842592592,592.53,130.02,0.48171737328293696 -1982-03-30,0.0,0.645,0.520000462962963,490.84,402.06,0.5412554755988056 -1982-03-31,6.27,0.8649999999999998,0.520000462962963,364.26,439.43,0.6495065707185667 -1982-04-01,6.08,2.79,0.5240002314814816,152.84,640.22,0.7252823373023994 -1982-04-02,0.0,-4.3149999999999995,0.5279998842592593,480.06,281.12,0.8118832133982083 -1982-04-03,7.25,-5.275,0.5279998842592593,413.18,253.54,0.8984840894940173 -1982-04-04,11.1,-0.925,0.5319998842592593,246.55,439.99,0.97425985607785 -1982-04-05,4.29,-5.6499999999999995,0.5319998842592593,296.41,295.9,1.0500356226616827 -1982-04-06,1.97,-10.73,0.5359994212962963,529.26,165.35,1.1041611702215632 -1982-04-07,15.63,-8.295,0.5395353009259259,263.65,250.52,1.1474616082694677 -1982-04-08,8.02,-7.675000000000001,0.54,192.58,284.98,1.1907620463173723 -1982-04-09,0.47,-7.245,0.5439997685185185,384.02,272.28,1.16911182729342 -1982-04-10,0.0,-6.12,0.5439997685185185,592.41,229.75,1.1366364987574917 -1982-04-11,0.0,-2.2150000000000003,0.5479999999999999,612.69,290.74,1.1149862797335395 -1982-04-12,0.0,-0.31499999999999995,0.5498481481481481,570.72,364.26,1.0825109511976112 -1982-04-13,4.82,-2.5300000000000002,0.5520004629629629,474.83,280.0,1.0500356226616827 -1982-04-14,4.15,0.4750000000000001,0.5559922453703704,243.14,510.05,1.0392105131497067 -1982-04-15,0.0,-0.3299999999999996,0.5560002314814815,586.99,360.07,1.0392105131497067 -1982-04-16,0.0,5.970000000000001,0.56,592.54,565.72,1.071685841685635 -1982-04-17,0.54,8.56,0.5600517361111111,583.85,653.56,1.16911182729342 -1982-04-18,4.57,6.6899999999999995,0.5639996527777777,394.15,666.62,1.3531386889970138 -1982-04-19,0.07,1.4,0.5663305555555556,514.97,463.99,1.7320175219161775 -1982-04-20,1.68,2.025,0.5679997685185185,459.13,508.41,2.4897751877545056 -1982-04-21,5.65,3.34,0.5715351851851852,251.5,626.17,3.31248351066469 -1982-04-22,0.44,0.42000000000000015,0.5719994212962963,404.97,480.27,3.84291387675152 -1982-04-23,0.0,1.125,0.5760005787037037,574.12,440.0,4.135191833574875 -1982-04-24,0.0,2.925,0.5760005787037037,607.88,476.0,4.449120009422182 -1982-04-25,0.0,8.6,0.5800003472222222,696.93,486.66,4.968725265997035 -1982-04-26,2.3,12.584999999999999,0.5807946759259259,545.83,829.69,6.289388626458121 -1982-04-27,5.05,11.11,0.5840005787037037,407.71,902.85,8.216258119589869 -1982-04-28,0.75,4.425,0.5853530092592593,575.62,547.72,9.96992586053 -1982-04-29,0.0,2.7250000000000005,0.5880002314814815,553.62,506.12,10.381280021985091 -1982-04-30,2.53,1.485,0.5903311342592593,374.85,526.62,10.121477393697663 -1982-05-01,3.11,1.9249999999999998,0.5920008101851852,290.37,563.59,9.85084965589826 -1982-05-02,1.79,4.52,0.5943310185185184,622.98,503.59,9.558571699074907 -1982-05-03,0.0,6.855,0.5959997685185184,581.86,637.98,9.309594180299456 -1982-05-04,0.0,5.935,0.5987809027777777,647.85,522.14,9.266293742251552 -1982-05-05,0.0,6.505,0.5999998842592592,698.03,435.65,9.201343085179694 -1982-05-06,0.0,9.129999999999999,0.6027810185185185,717.29,425.2,9.222993304203646 -1982-05-07,0.0,14.155,0.6039996527777778,678.22,680.44,9.266293742251552 -1982-05-08,0.0,16.77,0.6063304398148148,670.84,770.67,9.439495494443168 -1982-05-09,0.56,13.355,0.6079995370370371,455.43,1022.44,9.461145713467122 -1982-05-10,3.86,6.59,0.6098476851851852,259.21,788.17,9.201343085179694 -1982-05-11,0.18,5.4750000000000005,0.6120002314814815,292.45,746.75,8.76833870470065 -1982-05-12,0.0,6.025,0.6133524305555556,517.46,623.3,8.248733448125797 -1982-05-13,0.0,7.175000000000001,0.6159914351851852,520.02,664.32,7.675002643991063 -1982-05-14,0.0,7.63,0.6162851851851852,485.34,720.96,7.155397387416209 -1982-05-15,0.0,9.455,0.6195356481481481,556.23,713.23,6.646617240353332 -1982-05-16,0.04,11.14,0.6199998842592592,642.03,634.27,6.170312421826384 -1982-05-17,0.0,9.85,0.6227818287037037,581.28,685.9,5.661532274763506 -1982-05-18,0.0,6.125,0.6240006944444445,677.33,417.86,5.217702784772485 -1982-05-19,1.64,9.235,0.6253526620370371,627.56,457.41,4.795523513805417 -1982-05-20,4.33,13.46,0.6278895833333333,428.3,925.44,4.459945118934158 -1982-05-21,0.09,7.795,0.6280518518518519,591.88,573.28,4.189317381134755 -1982-05-22,0.0,5.154999999999999,0.6303303240740741,652.46,412.82,3.8970394243114 -1982-05-23,0.0,6.68,0.6319916666666667,686.22,380.13,3.593936357976069 -1982-05-24,0.0,10.115,0.6322856481481481,639.08,541.4,3.31248351066469 -1982-05-25,0.23,14.36,0.6347809027777778,599.34,765.28,3.0526808823772633 -1982-05-26,0.0,17.48,0.6360001157407408,618.69,852.1,2.7928782540898367 -1982-05-27,0.0,14.709999999999999,0.6362856481481481,625.34,706.61,2.5763760638503146 -1982-05-28,0.0,16.89,0.6387810185185185,631.77,768.61,2.3706989831227685 -1982-05-29,0.0,18.89,0.6399917824074074,604.68,918.82,2.1866721214191744 -1982-05-30,0.0,18.119999999999997,0.6400512731481481,597.92,884.02,2.013470369227557 -1982-05-31,0.0,19.915,0.6418483796296296,438.81,1419.26,1.8402686170359388 -1982-06-01,0.06,20.01,0.6435354166666667,477.01,1304.43,1.7103673028922255 -1982-06-02,24.16,16.815,0.6439998842592592,251.66,1457.52,1.656241755332345 -1982-06-03,8.47,10.004999999999999,0.6442856481481481,368.33,876.11,1.6237664267964167 -1982-06-04,0.0,9.275,0.6458482638888889,637.98,488.39,1.547990660212584 -1982-06-05,0.0,15.45,0.6471538194444444,568.14,863.2,1.4830400031407271 -1982-06-06,0.0,15.945,0.6479927083333333,558.79,882.29,1.3964391270449183 -1982-06-07,0.0,14.125,0.6480521990740741,603.52,670.68,1.3206633604610856 -1982-06-08,0.0,15.105,0.6487947916666666,605.51,690.75,1.2448875938772528 -1982-06-09,0.0,17.185000000000002,0.6498487268518519,595.05,785.46,1.16911182729342 -1982-06-10,0.0,17.41,0.6507814814814814,582.05,804.61,1.1041611702215632 -1982-06-11,0.0,15.81,0.6515357638888889,541.82,824.99,1.055448177417671 -1982-06-12,0.0,15.985,0.6519921296296297,421.68,1117.67,0.9959100751018022 -1982-06-13,1.12,13.875,0.6520001157407407,412.08,968.21,0.9536921480050955 -1982-06-14,5.01,9.99,0.6520517361111111,256.06,903.53,0.9028141332988077 -1982-06-15,6.64,12.89,0.6522856481481482,298.38,1036.49,0.8432760309829391 -1982-06-16,11.77,15.325,0.6527943287037037,248.94,1304.87,0.9028141332988077 -1982-06-17,12.02,13.65,0.653352662037037,346.82,1011.6,0.9363719727859338 -1982-06-18,0.0,13.415,0.653848611111111,527.32,807.85,0.8941540456892267 -1982-06-19,3.7,13.049999999999999,0.653848611111111,439.59,823.33,0.8519361185925199 -1982-06-20,5.2,15.355,0.653848611111111,256.29,1295.35,0.8356984543245557 -1982-06-21,8.59,13.815,0.6543310185185185,335.38,1032.91,0.8108007024470107 -1982-06-22,6.34,15.875,0.6543310185185185,307.25,1250.69,0.8108007024470107 -1982-06-23,11.11,13.785,0.653848611111111,257.77,1177.39,0.8194607900565917 -1982-06-24,12.67,13.425,0.653848611111111,255.66,1157.27,1.0034876517601854 -1982-06-25,0.45,13.175,0.653352662037037,467.14,936.63,0.9450320603955146 -1982-06-26,0.03,15.690000000000001,0.653352662037037,402.65,1239.26,0.9114742209083886 -1982-06-27,0.0,13.08,0.6527943287037037,543.02,768.25,0.8605962062021009 -1982-06-28,3.21,15.950000000000001,0.6522856481481482,416.72,1109.34,0.8432760309829391 -1982-06-29,8.63,16.22,0.6520517361111111,217.05,1432.39,0.8519361185925199 -1982-06-30,6.08,15.515,0.6519921296296297,198.41,1410.85,0.8270383667149749 -1982-07-01,0.0,12.485,0.6518894675925926,429.13,955.08,0.7859029505694657 -1982-07-02,3.66,13.815,0.6511538194444445,350.09,1048.82,0.7620877096431182 -1982-07-03,3.46,12.105,0.6503311342592593,345.05,929.04,0.7144572277904233 -1982-07-04,0.61,10.47,0.6493528935185184,495.63,695.46,0.6765693444985069 -1982-07-05,0.0,12.18,0.6482863425925927,518.64,737.28,0.6473415488161715 -1982-07-06,0.0,17.015,0.6480008101851852,479.15,1096.15,0.6191962640850336 -1982-07-07,0.0,22.79,0.647890162037037,442.96,1609.46,0.5975460450610814 -1982-07-08,0.0,24.439999999999998,0.64678125,358.63,2105.33,0.5694007603299435 -1982-07-09,0.0,21.27,0.645352199074074,415.15,1575.48,0.5423379865500033 -1982-07-10,0.0,17.255,0.6440515046296297,471.32,1095.12,0.5055326142092844 -1982-07-11,0.0,16.259999999999998,0.6438894675925926,537.62,767.95,0.487129928038925 -1982-07-12,0.0,20.325000000000003,0.6427809027777778,425.96,1446.48,0.4752223075757513 -1982-07-13,0.0,20.125,0.6407940972222222,335.57,1709.2,0.45248957760060143 -1982-07-14,0.0,18.515,0.6399997685185186,464.79,1148.41,0.41784922716227785 -1982-07-15,0.01,19.205000000000002,0.6395354166666667,497.14,1043.46,0.40052905194311617 -1982-07-16,0.0,21.1,0.6378482638888888,427.09,1450.1,0.39511649718712805 -1982-07-17,0.0,21.11,0.6360001157407408,455.87,1325.62,0.37887883291916397 -1982-07-18,2.58,24.34,0.6355359953703703,351.19,1907.89,0.3680537234071878 -1982-07-19,0.95,24.924999999999997,0.6338483796296296,316.32,2214.69,0.35289857009042125 -1982-07-20,0.0,19.195,0.6319996527777777,402.31,1377.58,0.33774341677365466 -1982-07-21,0.0,16.885,0.6315355324074073,440.71,1086.67,0.31717570870090006 -1982-07-22,13.7,16.505000000000003,0.6287943287037038,261.85,1353.34,0.31284566489610965 -1982-07-23,7.87,16.86,0.628,270.82,1421.05,0.31717570870090006 -1982-07-24,0.06,15.93,0.6267813657407407,462.41,996.18,0.3074331101401216 -1982-07-25,5.46,17.080000000000002,0.624052199074074,264.57,1376.0,0.3074331101401216 -1982-07-26,7.81,17.445,0.6238902777777778,222.54,1500.17,0.34748601533443313 -1982-07-27,0.0,17.06,0.6207944444444444,458.57,1092.98,0.3225882634568881 -1982-07-28,12.5,16.884999999999998,0.6199998842592592,370.3,1117.21,0.3323308620176666 -1982-07-29,19.34,15.785,0.6183303240740741,228.94,1342.14,0.37887883291916397 -1982-07-30,4.29,16.08,0.615999537037037,313.94,1193.47,0.37887883291916397 -1982-07-31,0.0,17.785,0.6151532407407407,462.45,1138.37,0.3626411686511997 -1982-08-01,4.2,19.365,0.6120002314814815,316.71,1489.93,0.34748601533443313 -1982-08-02,0.0,13.68,0.6115356481481482,440.34,926.93,0.3269183072616786 -1982-08-03,0.0,11.375,0.6080510416666667,450.83,786.21,0.31284566489610965 -1982-08-04,1.04,12.75,0.6078891203703704,444.03,822.14,0.30310306633533113 -1982-08-05,6.04,13.785,0.6042853009259259,221.53,1188.7,0.29769051157934306 -1982-08-06,2.05,13.5,0.6039916666666666,337.8,1035.6,0.29769051157934306 -1982-08-07,3.18,12.915,0.6002854166666667,322.0,988.84,0.29336046777455266 -1982-08-08,0.71,15.27,0.5999998842592592,377.73,1162.91,0.2890304239697622 -1982-08-09,8.07,16.18,0.5962851851851851,203.1,1410.2,0.28361786921377413 -1982-08-10,11.32,17.78,0.5959997685185184,208.73,1565.99,0.31284566489610965 -1982-08-11,0.0,16.615000000000002,0.5920523148148148,337.86,1358.07,0.31284566489610965 -1982-08-12,0.0,14.45,0.591992824074074,389.19,1102.12,0.30310306633533113 -1982-08-13,7.24,13.91,0.5880002314814815,261.75,1142.98,0.29336046777455266 -1982-08-14,6.04,14.975,0.5879922453703703,198.24,1343.35,0.29769051157934306 -1982-08-15,2.31,17.585,0.5840005787037037,331.96,1393.44,0.29769051157934306 -1982-08-16,0.4,18.685000000000002,0.5835359953703704,426.68,1305.37,0.29336046777455266 -1982-08-17,1.53,19.73,0.5800003472222222,352.33,1586.97,0.29336046777455266 -1982-08-18,0.88,14.215,0.5787818287037036,416.86,941.61,0.28361786921377413 -1982-08-19,2.2,15.469999999999999,0.5760005787037037,354.89,1135.95,0.27495778160419326 -1982-08-20,2.72,17.5,0.5738478009259259,275.06,1437.68,0.27495778160419326 -1982-08-21,0.0,11.61,0.5719994212962963,430.37,827.72,0.25655509543383387 -1982-08-22,0.0,9.985,0.5680513888888888,407.64,778.87,0.24681249687305531 -1982-08-23,1.75,10.629999999999999,0.5679997685185185,356.46,867.95,0.24248245306826488 -1982-08-24,10.13,14.620000000000001,0.5639996527777777,224.38,1254.84,0.27495778160419326 -1982-08-25,15.46,13.489999999999998,0.5639916666666667,271.69,1060.91,0.29769051157934306 -1982-08-26,33.03,15.355,0.56,261.66,1229.37,0.7144572277904233 -1982-08-27,6.54,15.565,0.558330324074074,381.64,1010.2,0.7068796511320401 -1982-08-28,1.45,11.155,0.5560002314814815,394.44,761.98,0.7144572277904233 -1982-08-29,0.01,8.135,0.5520519675925926,395.76,687.65,0.7382724687167708 -1982-08-30,1.6,8.120000000000001,0.5520004629629629,400.19,624.23,0.754510132984735 -1982-08-31,4.69,13.075,0.5479999999999999,275.84,1030.16,0.7620877096431182 -1982-09-01,11.59,10.73,0.5479921296296296,343.12,772.04,0.7382724687167708 -1982-09-02,20.11,11.23,0.5439997685185185,179.18,1061.4,0.8519361185925199 -1982-09-03,8.43,14.040000000000001,0.540794212962963,205.99,1238.07,1.0208078269793472 -1982-09-04,4.53,13.940000000000001,0.54,216.5,1206.1,1.1149862797335395 -1982-09-05,3.39,13.375,0.5359994212962963,338.28,926.35,1.1474616082694677 -1982-09-06,9.64,13.525,0.5359994212962963,211.61,1176.3,1.16911182729342 -1982-09-07,10.63,9.075,0.5319998842592593,277.66,797.01,1.2124122653413245 -1982-09-08,0.0,8.065000000000001,0.5298482638888888,418.51,608.1,1.2232373748533005 -1982-09-09,0.0,10.87,0.5279998842592593,379.55,813.8,1.2124122653413245 -1982-09-10,0.0,15.345,0.5240002314814816,344.62,1176.45,1.179936936805396 -1982-09-11,0.0,16.505000000000003,0.5240002314814816,332.19,1285.81,1.1474616082694677 -1982-09-12,0.0,18.29,0.520000462962963,359.86,1335.15,1.1041611702215632 -1982-09-13,0.0,19.705,0.5183310185185186,366.8,1393.88,1.0727683526368328 -1982-09-14,4.62,19.915,0.5159998842592592,289.95,1500.0,1.038128002198509 -1982-09-15,3.85,13.079999999999998,0.511999537037037,191.64,1140.5,0.9785898998826404 -1982-09-16,13.94,8.515,0.511999537037037,117.35,935.43,0.9959100751018022 -1982-09-17,13.8,9.82,0.5079996527777778,108.47,1053.05,1.0641082650272518 -1982-09-18,1.72,9.79,0.5067805555555556,186.51,989.2,1.038128002198509 -1982-09-19,0.06,10.445,0.503999537037037,256.04,955.79,1.0121477393697664 -1982-09-20,0.0,8.51,0.4999997685185186,380.72,645.28,0.9785898998826404 -1982-09-21,0.0,10.86,0.4999997685185186,361.37,800.88,0.9450320603955146 -1982-09-22,0.0,10.11,0.4959997685185185,333.74,801.88,0.9028141332988077 -1982-09-23,2.14,9.275,0.49366840277777774,216.91,901.97,0.8692562938116817 -1982-09-24,1.73,13.385000000000002,0.4919994212962963,260.47,1140.46,0.8432760309829391 -1982-09-25,1.46,11.925,0.48800034722222224,265.35,993.59,0.8108007024470107 -1982-09-26,0.0,12.29,0.48800034722222224,313.07,953.39,0.7859029505694657 -1982-09-27,12.15,12.455,0.4840002314814815,190.45,1138.38,0.7707477972526992 -1982-09-28,13.55,11.195,0.48167002314814816,137.23,1104.22,0.8270383667149749 -1982-09-29,0.0,6.59,0.4800005787037037,360.58,560.0,0.8021406148374299 -1982-09-30,0.04,10.605,0.4760001157407408,354.79,737.41,0.7945630381790466 -1982-10-01,7.21,13.565000000000001,0.4760001157407408,199.81,1136.84,0.8021406148374299 -1982-10-02,5.56,9.825,0.4719996527777777,210.12,909.88,0.8108007024470107 -1982-10-03,1.43,7.415,0.4701513888888889,334.1,561.93,0.8356984543245557 -1982-10-04,0.0,10.18,0.46799976851851854,259.54,902.78,0.8270383667149749 -1982-10-05,0.01,7.095,0.463999537037037,347.92,556.04,0.8172957681541964 -1982-10-06,0.0,10.274999999999999,0.463999537037037,316.3,764.36,0.8021406148374299 -1982-10-07,0.0,6.535,0.46,321.93,567.24,0.7859029505694657 -1982-10-08,6.42,4.635,0.45920532407407405,131.51,683.63,0.7783253739110824 -1982-10-09,4.04,4.74,0.45599953703703705,140.98,689.4,0.7945630381790466 -1982-10-10,0.0,2.24,0.45200810185185186,318.26,428.06,0.7620877096431182 -1982-10-11,0.0,3.955,0.452,334.67,408.12,0.7458500453751541 -1982-10-12,0.0,4.265000000000001,0.4480001157407407,325.63,440.0,0.7306948920583874 -1982-10-13,3.29,5.109999999999999,0.4480001157407407,218.85,587.18,0.7144572277904233 -1982-10-14,5.71,7.425,0.4440001157407408,122.82,826.35,0.7144572277904233 -1982-10-15,4.32,7.675,0.44166932870370373,113.19,865.81,0.7306948920583874 -1982-10-16,1.8,5.3999999999999995,0.4400003472222222,195.58,676.18,0.7231173154000042 -1982-10-17,0.0,4.114999999999999,0.43611064814814815,194.86,618.32,0.6917244978152736 -1982-10-18,0.0,4.665,0.43600011574074077,194.33,639.5,0.6689917678401236 -1982-10-19,0.0,7.055000000000001,0.43200000000000005,271.36,615.37,0.6689917678401236 -1982-10-20,0.44,10.455,0.43194837962962956,269.99,748.48,0.6624967021329381 -1982-10-21,1.18,9.395,0.428,211.92,839.55,0.6473415488161715 -1982-10-22,0.0,3.11,0.4261517361111111,205.48,552.5,0.6116186874266503 -1982-10-23,0.0,-0.395,0.42400011574074076,243.71,373.29,0.604041110768267 -1982-10-24,0.0,0.7749999999999999,0.42121863425925926,230.49,434.66,0.5769783369883267 -1982-10-25,0.0,3.3200000000000003,0.41999976851851856,261.24,442.61,0.5694007603299435 -1982-10-26,0.0,4.02,0.4164640046296296,253.18,478.67,0.5488330522571889 -1982-10-27,0.0,2.7950000000000004,0.4159996527777778,269.0,377.2,0.5423379865500033 -1982-10-28,0.0,7.44,0.4121109953703704,246.72,593.99,0.5174402346724581 -1982-10-29,0.0,9.045,0.41200046296296294,210.85,762.72,0.4990375485020987 -1982-10-30,0.22,10.129999999999999,0.4080084490740741,199.58,839.57,0.49362499374611063 -1982-10-31,0.0,10.725000000000001,0.40794895833333333,197.23,880.9,0.487129928038925 -1982-11-01,0.0,9.015,0.40399999999999997,189.17,793.29,0.4752223075757513 -1982-11-02,5.28,3.9350000000000005,0.4037145833333334,145.61,553.33,0.46980975281976317 -1982-11-03,5.92,6.694999999999999,0.40000023148148145,116.06,727.64,0.48171737328293696 -1982-11-04,7.26,11.93,0.39971435185185183,101.62,1109.28,0.4752223075757513 -1982-11-05,22.89,11.22,0.3960082175925926,126.66,961.24,0.6624967021329381 -1982-11-06,22.09,4.430000000000001,0.39571446759259266,135.38,586.33,0.9785898998826404 -1982-11-07,2.25,2.1900000000000004,0.3921108796296296,74.21,618.98,1.0121477393697664 -1982-11-08,0.89,2.275,0.3919487268518519,120.91,570.27,1.1041611702215632 -1982-11-09,0.07,0.405,0.3884644675925926,134.53,490.28,1.16911182729342 -1982-11-10,0.0,0.09499999999999997,0.38799999999999996,120.44,495.18,1.2124122653413245 -1982-11-11,0.06,-1.08,0.3848466435185185,201.78,360.0,1.277362922413181 -1982-11-12,6.94,5.83,0.3840003472222222,141.47,631.23,1.2990131414371333 -1982-11-13,13.29,5.56,0.38166932870370374,134.43,611.7,1.3856140175329423 -1982-11-14,10.26,-3.0,0.3799997685185186,141.6,338.61,1.5046902221646794 -1982-11-15,9.73,-3.5450000000000004,0.37920590277777777,94.43,372.35,1.6237664267964167 -1982-11-16,4.58,-4.3100000000000005,0.37611087962962964,145.76,326.02,1.7103673028922255 -1982-11-17,0.0,-3.385,0.3759486111111111,186.13,320.3,1.75366774094013 -1982-11-18,0.0,-5.0,0.37321898148148147,209.51,261.27,1.75366774094013 -1982-11-19,0.0,-6.09,0.3719998842592593,218.45,224.95,1.6995421933802495 -1982-11-20,0.0,-4.369999999999999,0.37120578703703705,213.47,257.38,1.6995421933802495 -1982-11-21,6.4,1.1499999999999997,0.3684645833333333,125.12,473.36,1.656241755332345 -1982-11-22,3.23,5.4,0.3680003472222222,102.19,714.75,1.6454166458203692 -1982-11-23,6.08,4.345,0.36615196759259255,89.12,656.07,1.6887170838682732 -1982-11-24,4.49,3.61,0.3644642361111111,123.1,563.68,1.8727439455718675 -1982-11-25,0.0,-4.29,0.36400011574074076,198.06,270.81,1.9593448216676759 -1982-11-26,4.7,-6.19,0.3621513888888889,115.96,280.0,1.9593448216676759 -1982-11-27,2.02,-10.57,0.3604638888888889,158.34,181.19,1.9809950406916284 -1982-11-28,0.0,-12.51,0.3599998842592593,187.11,160.0,1.9376946026437238 -1982-11-29,3.83,-7.335000000000001,0.35920578703703704,110.99,264.07,1.9160443836197718 -1982-11-30,2.71,-4.015,0.3572189814814815,89.95,367.5,1.9052192741077956 -1982-12-01,1.0,-4.885,0.35611041666666665,168.74,291.62,1.8727439455718675 -1982-12-02,2.68,-0.5749999999999998,0.3559483796296296,78.34,498.09,1.829443507523963 -1982-12-03,7.56,2.67,0.3546476851851852,93.0,598.81,1.8077932885000105 -1982-12-04,7.96,6.045,0.35321898148148145,126.8,659.36,1.8943941645958196 -1982-12-05,2.16,1.705,0.35211030092592593,143.91,479.74,2.024295478739533 -1982-12-06,2.15,4.055,0.35199988425925927,163.76,549.78,2.0892461358113894 -1982-12-07,1.18,2.77,0.35171423611111113,147.17,540.67,2.1650219023952224 -1982-12-08,0.84,-5.375,0.3506474537037037,148.22,288.57,2.1650219023952224 -1982-12-09,0.0,-12.809999999999999,0.34966921296296294,149.26,157.64,2.1650219023952224 -1982-12-10,0.0,-15.8,0.3488465277777778,186.42,100.54,2.14337168337127 -1982-12-11,0.01,-10.29,0.3481105324074074,178.92,160.0,1.9593448216676759 -1982-12-12,0.0,-16.7,0.3480079861111111,161.54,112.97,1.861918836059891 -1982-12-13,0.0,-20.575,0.34794849537037037,150.74,80.0,1.75366774094013 -1982-12-14,1.72,-16.55,0.34771435185185184,165.6,88.51,1.656241755332345 -1982-12-15,2.74,-7.47,0.3472057870370371,128.49,244.11,1.537165550700608 -1982-12-16,14.22,-0.615,0.3466476851851852,101.66,440.0,1.5263404411886317 -1982-12-17,9.17,-10.055,0.3466476851851852,132.73,187.04,1.5046902221646794 -1982-12-18,0.0,-15.645,0.3461518518518519,148.7,120.0,1.4938651126527034 -1982-12-19,0.46,-12.985,0.3461518518518519,160.96,155.3,1.4938651126527034 -1982-12-20,3.5,-8.295,0.3456693287037037,100.84,240.0,1.4289144555808466 -1982-12-21,3.22,-6.220000000000001,0.3456693287037037,65.47,319.24,1.3964391270449183 -1982-12-22,0.0,-8.05,0.3461518518518519,99.49,271.1,1.3531386889970138 -1982-12-23,0.0,-13.015,0.3461518518518519,163.46,147.06,1.2990131414371333 -1982-12-24,0.9,-12.525,0.3461518518518519,183.18,120.0,1.266537812901205 -1982-12-25,11.78,-3.8,0.3466476851851852,127.69,285.98,1.2232373748533005 -1982-12-26,8.18,0.9800000000000004,0.3472057870370371,119.69,446.61,1.2881880319251573 -1982-12-27,0.0,-4.425,0.34771435185185184,166.14,280.0,1.277362922413181 -1982-12-28,4.73,-3.3000000000000003,0.34794849537037037,145.69,273.73,1.2124122653413245 -1982-12-29,2.43,1.6500000000000001,0.34800000000000003,142.64,466.01,1.2232373748533005 -1982-12-30,0.0,-5.755,0.3480079861111111,161.4,265.43,1.179936936805396 -1982-12-31,0.0,-8.215,0.3484641203703704,138.03,239.87,1.1366364987574917 -1983-01-01,0.0,-5.0249999999999995,0.34921886574074074,126.95,320.0,1.1041611702215632 -1983-01-02,0.54,-9.575,0.35015162037037034,153.28,206.97,1.055448177417671 -1983-01-03,0.0,-15.95,0.35120578703703703,152.99,119.83,0.9959100751018022 -1983-01-04,0.0,-19.405,0.3519482638888889,181.39,80.0,0.8941540456892267 -1983-01-05,0.0,-13.095,0.35200787037037035,210.71,120.0,0.8660087609580888 -1983-01-06,0.0,-4.9350000000000005,0.35284641203703704,144.89,312.11,0.8281208776661725 -1983-01-07,1.97,-5.575,0.3541518518518519,121.16,301.4,0.7794078848622801 -1983-01-08,3.32,-6.765000000000001,0.35571446759259256,106.35,273.02,0.7361074468143756 -1983-01-09,0.0,-14.595,0.35600000000000004,203.95,120.0,0.7036321182784472 -1983-01-10,0.22,-12.55,0.3564643518518519,231.6,80.0,0.681981899254495 -1983-01-11,11.13,0.7599999999999998,0.35815185185185183,150.11,404.7,0.6873944540104832 -1983-01-12,14.49,0.8900000000000001,0.3599482638888889,130.88,468.15,0.7144572277904233 -1983-01-13,0.0,-7.105,0.36000787037037035,158.93,263.23,0.7469325563263517 -1983-01-14,0.0,-11.379999999999999,0.36121863425925926,181.86,160.0,0.7794078848622801 -1983-01-15,0.21,-10.715,0.3637142361111111,165.75,199.62,0.8227083229101846 -1983-01-16,12.42,-9.065000000000001,0.36400011574074076,85.39,242.1,0.876833870470065 -1983-01-17,8.21,-10.435,0.36521898148148146,80.87,228.55,0.9450320603955146 -1983-01-18,0.13,-16.125,0.36771435185185186,132.44,134.13,0.9536921480050955 -1983-01-19,0.0,-18.79,0.3680083333333333,166.86,100.44,0.9136392428107837 -1983-01-20,0.0,-17.4,0.3696696759259259,153.62,120.0,0.8854939580796459 -1983-01-21,0.0,-18.34,0.3719483796296296,240.1,80.0,0.8551836514461127 -1983-01-22,0.0,-14.23,0.37211041666666667,255.26,119.86,0.8335334324221606 -1983-01-23,1.94,-8.55,0.3746479166666667,225.64,188.91,0.7902329943742561 -1983-01-24,16.11,-2.0999999999999996,0.3760002314814815,101.43,423.82,0.7577576658383279 -1983-01-25,2.95,-0.645,0.3772188657407407,75.89,509.03,0.7252823373023994 -1983-01-26,1.48,-10.43,0.3799997685185186,202.74,187.93,0.7306948920583874 -1983-01-27,0.0,-17.415,0.3804640046296296,264.25,80.0,0.7198697825464114 -1983-01-28,0.0,-16.195,0.383714699074074,279.17,80.0,0.7144572277904233 -1983-01-29,0.0,-13.055,0.38400833333333334,286.12,120.0,0.6711567897425189 -1983-01-30,0.05,-8.835,0.3866476851851852,254.19,197.02,0.6440940159625786 -1983-01-31,3.76,-5.095000000000001,0.38799999999999996,134.14,319.97,0.6224437969386264 -1983-02-01,4.33,-4.115,0.3901519675925926,107.97,369.27,0.6007935779146741 -1983-02-02,0.2,-7.905,0.39200034722222227,290.54,171.15,0.589968468402698 -1983-02-03,4.55,0.9099999999999999,0.3936696759259259,170.89,456.02,0.58455591364671 -1983-02-04,4.89,0.5049999999999999,0.39600023148148145,155.78,474.41,0.6062061326706623 -1983-02-05,0.0,-11.015,0.3972188657407407,254.79,175.35,0.6224437969386264 -1983-02-06,0.0,-16.73,0.40000023148148145,229.41,119.83,0.6386814612065905 -1983-02-07,5.25,-15.780000000000001,0.4012189814814815,256.92,118.62,0.6495065707185667 -1983-02-08,13.61,-10.695,0.40399999999999997,176.68,200.0,0.6711567897425189 -1983-02-09,2.87,-10.0,0.40521898148148144,153.61,227.47,0.7036321182784472 -1983-02-10,0.0,-17.61,0.4080003472222223,262.06,113.93,0.7252823373023994 -1983-02-11,0.0,-18.925,0.40966990740740744,295.33,80.0,0.7523451110823397 -1983-02-12,0.0,-18.18,0.41200046296296294,346.26,80.0,0.768582775350304 -1983-02-13,0.0,-15.67,0.41464768518518513,365.34,80.0,0.7794078848622801 -1983-02-14,0.0,-7.4,0.4159996527777778,334.35,200.0,0.7577576658383279 -1983-02-15,0.0,-3.57,0.419205324074074,234.54,348.51,0.7469325563263517 -1983-02-16,0.0,-12.57,0.41999976851851856,380.09,85.74,0.7252823373023994 -1983-02-17,0.8,-12.45,0.42400011574074076,362.49,118.93,0.7036321182784472 -1983-02-18,1.7,-6.985,0.42400011574074076,207.17,275.1,0.6928070087664712 -1983-02-19,0.0,-12.399999999999999,0.428,385.48,112.11,0.6711567897425189 -1983-02-20,1.03,-9.185,0.42846388888888887,363.85,158.61,0.6495065707185667 -1983-02-21,2.32,-7.72,0.43200000000000005,311.64,200.0,0.6386814612065905 -1983-02-22,1.94,-7.045,0.4336695601851852,210.22,272.21,0.6278563516946144 -1983-02-23,9.36,-13.635000000000002,0.43600011574074077,253.53,131.55,0.6062061326706623 -1983-02-24,5.79,-9.06,0.4399488425925926,164.04,237.05,0.58455591364671 -1983-02-25,0.95,-11.83,0.4400003472222222,383.44,127.67,0.5629056946227577 -1983-02-26,0.0,-12.03,0.4440001157407408,398.61,120.0,0.5520805851107816 -1983-02-27,0.0,-11.495,0.4440081018518519,428.67,120.0,0.5412554755988056 -1983-02-28,0.62,-2.45,0.4480001157407407,221.41,397.46,0.5141927018188653 -1983-03-01,0.0,-1.0350000000000001,0.4501516203703704,211.22,452.72,0.5033675923068892 -1983-03-02,15.34,-2.74,0.452,183.46,381.7,0.487129928038925 -1983-03-03,10.76,-2.875,0.45599953703703705,165.69,391.61,0.487129928038925 -1983-03-04,0.0,-6.96,0.45599953703703705,250.36,274.65,0.4763048185269489 -1983-03-05,0.0,-8.959999999999999,0.46,429.6,160.69,0.4600671542589847 -1983-03-06,0.0,-8.75,0.4604638888888889,480.53,120.0,0.44924204474700863 -1983-03-07,0.0,-8.025,0.463999537037037,440.1,178.39,0.4384169352350325 -1983-03-08,0.0,-8.56,0.46799976851851854,445.33,169.38,0.4221792709670683 -1983-03-09,0.0,-1.0,0.46799976851851854,308.81,412.78,0.40052905194311617 -1983-03-10,0.35,1.645,0.4719996527777777,313.26,493.86,0.39511649718712805 -1983-03-11,1.44,-0.025000000000000133,0.4719996527777777,191.44,503.78,0.38970394243114004 -1983-03-12,19.32,-0.41999999999999993,0.4760001157407408,100.7,525.39,0.384291387675152 -1983-03-13,8.62,-0.08500000000000008,0.4800005787037037,94.96,546.61,0.4059416066991042 -1983-03-14,0.0,-1.1,0.4800005787037037,210.47,466.19,0.40052905194311617 -1983-03-15,1.93,0.27,0.4840002314814815,190.12,526.38,0.40052905194311617 -1983-03-16,0.43,0.16000000000000003,0.4840002314814815,155.49,548.03,0.40052905194311617 -1983-03-17,0.0,1.395,0.48800034722222224,306.33,523.89,0.39511649718712805 -1983-03-18,0.0,2.0500000000000003,0.4919994212962963,350.87,530.31,0.38970394243114004 -1983-03-19,6.5,2.145,0.4919994212962963,204.28,584.38,0.4059416066991042 -1983-03-20,2.73,4.135,0.4959997685185185,210.52,680.57,0.46547970901497276 -1983-03-21,9.35,-1.2650000000000001,0.4959997685185185,370.87,388.18,0.6495065707185667 -1983-03-22,16.65,0.6699999999999999,0.4999997685185186,277.16,487.35,1.0283854036377307 -1983-03-23,5.88,-4.720000000000001,0.503999537037037,260.59,335.54,1.3531386889970138 -1983-03-24,0.0,-11.54,0.503999537037037,378.39,192.27,1.5804659887485122 -1983-03-25,0.0,-12.81,0.5079996527777778,492.98,149.1,1.6454166458203692 -1983-03-26,0.0,-10.855,0.5079996527777778,514.72,161.75,1.7211924124042017 -1983-03-27,1.45,-6.385,0.511999537037037,532.5,164.04,1.764492850452106 -1983-03-28,9.14,-0.7200000000000002,0.5159998842592592,273.92,444.52,1.829443507523963 -1983-03-29,6.95,-2.91,0.5159998842592592,266.61,395.6,1.8943941645958196 -1983-03-30,2.08,-6.515,0.520000462962963,383.84,272.07,1.9160443836197718 -1983-03-31,0.0,-5.51,0.520000462962963,552.36,253.27,1.9052192741077956 -1983-04-01,0.0,-4.39,0.5240002314814816,572.7,257.22,1.851093726547915 -1983-04-02,0.0,-1.4449999999999998,0.5279998842592593,462.86,398.19,1.6995421933802495 -1983-04-03,0.24,0.2400000000000002,0.5279998842592593,435.12,454.16,1.6454166458203692 -1983-04-04,5.81,0.7200000000000001,0.5319998842592593,202.14,551.15,1.6129413172844407 -1983-04-05,3.78,0.9899999999999999,0.5319998842592593,197.39,568.44,1.6021162077724647 -1983-04-06,0.0,2.93,0.5359994212962963,414.83,598.72,1.6345915363083927 -1983-04-07,0.15,2.5000000000000004,0.5395353009259259,582.07,443.12,1.7211924124042017 -1983-04-08,2.21,4.71,0.54,424.62,648.42,1.9485197121557 -1983-04-09,0.0,3.67,0.5439997685185185,544.17,555.19,2.1650219023952224 -1983-04-10,0.78,1.665,0.5439997685185185,602.22,404.25,2.327398545074864 -1983-04-11,12.45,1.9450000000000003,0.5479999999999999,335.24,543.86,2.5114254067784576 -1983-04-12,5.08,0.9050000000000001,0.5498481481481481,206.81,559.94,2.7712280350658847 -1983-04-13,0.0,1.6500000000000001,0.5520004629629629,452.49,526.81,2.9877302253054068 -1983-04-14,0.0,1.0899999999999999,0.5559922453703704,588.94,430.91,3.215057525056905 -1983-04-15,0.0,2.71,0.5560002314814815,451.99,562.66,3.485685262856308 -1983-04-16,2.98,3.84,0.56,528.25,527.92,3.7779632196796626 -1983-04-17,23.79,6.385,0.5600517361111111,362.49,713.72,5.607406727203625 -1983-04-18,21.53,6.15,0.5639996527777777,244.6,787.37,11.149862797335393 -1983-04-19,5.54,5.66,0.5663305555555556,412.7,619.11,12.015871558293483 -1983-04-20,7.33,6.075,0.5679997685185185,399.07,648.37,12.990131414371334 -1983-04-21,5.9,4.085,0.5715351851851852,334.59,618.67,12.665378129012051 -1983-04-22,2.9,3.375,0.5719994212962963,304.96,622.68,12.232373748533004 -1983-04-23,0.0,4.465,0.5760005787037037,602.26,520.0,11.58286717781444 -1983-04-24,5.4,5.7,0.5760005787037037,535.74,597.1,10.933360607095873 -1983-04-25,22.5,7.76,0.5800003472222222,372.05,776.57,12.340624843652767 -1983-04-26,12.04,8.495000000000001,0.5807946759259259,265.65,914.81,14.72214893628751 -1983-04-27,1.68,6.345,0.5840005787037037,365.51,783.95,14.61389784116775 -1983-04-28,1.16,8.055,0.5853530092592593,580.45,710.7,13.6396379850899 -1983-04-29,2.19,10.565,0.5880002314814815,567.98,800.33,12.55712703389229 -1983-04-30,0.25,10.17,0.5903311342592593,592.93,789.49,11.799369368053961 -1983-05-01,4.66,11.41,0.5920008101851852,401.05,934.64,11.258113892455155 -1983-05-02,13.61,6.245,0.5943310185185184,446.63,601.87,10.673557978808446 -1983-05-03,11.51,9.535,0.5959997685185184,436.21,782.83,10.500356226616828 -1983-05-04,5.91,11.024999999999999,0.5987809027777777,358.2,962.43,10.218903379305448 -1983-05-05,2.55,8.15,0.5999998842592592,520.01,692.17,9.796724108338381 -1983-05-06,5.2,7.385000000000001,0.6027810185185185,419.99,681.46,9.374544837371312 -1983-05-07,0.3,6.51,0.6039996527777778,580.09,606.43,8.757513595188675 -1983-05-08,1.9,11.525,0.6063304398148148,515.72,883.28,8.18378279105394 -1983-05-09,10.13,10.46,0.6079995370370371,382.03,889.55,7.707477972526991 -1983-05-10,8.72,6.985,0.6098476851851852,293.57,786.76,7.49097578228747 -1983-05-11,1.57,4.84,0.6120002314814815,308.28,707.78,7.187872715952138 -1983-05-12,1.59,5.1850000000000005,0.6133524305555556,427.31,663.97,6.906419868640759 -1983-05-13,2.77,8.195,0.6159914351851852,375.09,800.0,6.62496702132938 -1983-05-14,0.22,11.655000000000001,0.6162851851851852,500.61,952.87,6.105361764754527 -1983-05-15,0.15,9.84,0.6195356481481481,592.07,730.58,5.6290569462275775 -1983-05-16,1.32,5.5,0.6199998842592592,469.23,642.68,5.282653441844342 -1983-05-17,0.0,4.24,0.6227818287037037,520.41,569.63,4.947075046973083 -1983-05-18,0.0,4.965,0.6240006944444445,628.32,471.27,4.643971980637752 -1983-05-19,0.11,9.924999999999999,0.6253526620370371,629.09,623.26,4.362519133326373 -1983-05-20,3.72,11.745000000000001,0.6278895833333333,373.8,942.06,4.113541614550923 -1983-05-21,4.16,12.555,0.6280518518518519,303.61,1145.2,3.907864533823376 -1983-05-22,0.0,13.200000000000001,0.6303303240740741,529.2,978.07,3.6805372340718776 -1983-05-23,1.92,10.84,0.6319916666666667,436.15,902.27,3.50733548188026 -1983-05-24,8.71,6.245,0.6322856481481481,209.16,794.6,3.583111248464093 -1983-05-25,5.65,6.65,0.6347809027777778,196.55,818.42,3.6805372340718776 -1983-05-26,0.0,7.995,0.6360001157407408,391.95,810.93,3.6372367960239735 -1983-05-27,2.83,8.695,0.6362856481481481,243.37,936.28,3.572286138952117 -1983-05-28,13.33,6.815,0.6387810185185185,208.25,819.49,3.745487891143735 -1983-05-29,0.0,8.16,0.6399917824074074,497.16,747.73,3.8645640957754717 -1983-05-30,23.59,8.075,0.6400512731481481,382.86,731.75,3.9295147528473287 -1983-05-31,20.19,8.365,0.6418483796296296,244.68,898.29,4.730572856733561 -1983-06-01,7.66,10.594999999999999,0.6435354166666667,331.12,937.6,5.250178113308414 -1983-06-02,0.0,10.97,0.6439998842592592,540.77,834.05,5.466680303547936 -1983-06-03,2.82,10.43,0.6442856481481481,484.15,720.0,5.477505413059912 -1983-06-04,2.1,11.475000000000001,0.6458482638888889,516.73,800.1,5.390904536964103 -1983-06-05,0.0,12.435,0.6471538194444444,521.73,929.47,5.163577237212605 -1983-06-06,0.74,14.695,0.6479927083333333,427.31,1229.37,4.947075046973083 -1983-06-07,12.13,14.985,0.6480521990740741,324.2,1256.38,5.141927018188653 -1983-06-08,1.76,10.080000000000002,0.6487947916666666,514.9,777.03,4.849649061365298 -1983-06-09,0.0,9.925,0.6498487268518519,567.72,681.09,4.579021323565895 -1983-06-10,0.06,12.254999999999999,0.6507814814814814,572.96,743.6,4.297568476254516 -1983-06-11,0.04,13.785,0.6515357638888889,527.16,941.58,3.994465409919185 -1983-06-12,0.0,17.015,0.6519921296296297,498.42,1227.49,3.713012562607806 -1983-06-13,0.0,18.865000000000002,0.6520001157407407,467.68,1420.0,3.474860153344332 -1983-06-14,0.0,20.305,0.6520517361111111,463.07,1567.89,3.2258826345688814 -1983-06-15,0.0,21.145,0.6522856481481482,445.68,1669.9,3.0310306633533117 -1983-06-16,0.0,21.76,0.6527943287037037,436.14,1751.79,2.825353582625765 -1983-06-17,0.24,21.875,0.653352662037037,437.07,1751.23,2.630501611410195 -1983-06-18,4.59,20.97,0.653848611111111,360.55,1616.28,2.446474749706601 -1983-06-19,0.0,20.29,0.653848611111111,407.06,1679.6,2.240797668979055 -1983-06-20,0.0,18.0,0.653848611111111,515.84,1174.26,2.0567708072754614 -1983-06-21,0.0,20.015,0.6543310185185185,531.37,1198.18,1.9052192741077956 -1983-06-22,0.0,22.549999999999997,0.6543310185185185,510.78,1442.14,1.7753179599640823 -1983-06-23,0.0,23.79,0.653848611111111,469.2,1741.85,1.6345915363083927 -1983-06-24,0.0,19.375,0.653848611111111,444.76,1414.93,1.4180893460688704 -1983-06-25,0.0,12.15,0.653352662037037,482.04,824.0,1.277362922413181 -1983-06-26,0.18,12.44,0.653352662037037,519.94,723.03,1.16911182729342 -1983-06-27,3.4,16.1,0.6527943287037037,265.68,1316.0,1.0933360607095872 -1983-06-28,0.0,12.49,0.6522856481481482,479.66,818.78,1.0067351846137784 -1983-06-29,0.0,13.42,0.6520517361111111,511.36,800.08,0.9331244399323408 -1983-06-30,0.0,16.235,0.6519921296296297,515.92,902.93,0.8649262500068913 -1983-07-01,0.0,19.515,0.6518894675925926,425.8,1385.79,0.8313684105197653 -1983-07-02,5.28,20.06,0.6511538194444445,238.69,1719.86,0.7837379286670705 -1983-07-03,0.47,19.045,0.6503311342592593,400.44,1396.63,0.7523451110823397 -1983-07-04,0.0,23.41,0.6493528935185184,430.47,1731.64,0.7220348044488065 -1983-07-05,14.17,25.045,0.6482863425925927,258.82,2183.71,0.72961238110719 -1983-07-06,17.47,14.96,0.6480008101851852,234.82,1245.42,0.768582775350304 -1983-07-07,0.0,12.69,0.647890162037037,452.02,854.43,0.7144572277904233 -1983-07-08,7.05,15.370000000000001,0.64678125,298.51,1129.63,0.6852294321080878 -1983-07-09,4.56,15.585,0.645352199074074,221.59,1324.63,0.6635792130841357 -1983-07-10,3.03,11.84,0.6440515046296297,298.37,947.69,0.6213612859874288 -1983-07-11,4.83,13.58,0.6438894675925926,342.14,961.52,0.6278563516946144 -1983-07-12,0.34,17.04,0.6427809027777778,464.6,1091.22,0.6007935779146741 -1983-07-13,5.17,18.165,0.6407940972222222,245.08,1481.96,0.5748133150859315 -1983-07-14,10.4,17.82,0.6399997685185186,280.58,1369.64,0.5531630960619793 -1983-07-15,12.3,19.915,0.6395354166666667,241.29,1672.73,0.5531630960619793 -1983-07-16,4.65,19.07,0.6378482638888888,292.48,1488.11,0.5531630960619793 -1983-07-17,0.0,18.05,0.6360001157407408,366.08,1404.02,0.5163577237212605 -1983-07-18,0.0,15.825,0.6355359953703703,462.3,1025.75,0.4882124389901227 -1983-07-19,0.17,16.310000000000002,0.6338483796296296,426.13,1136.04,0.47089226377096083 -1983-07-20,6.82,15.635000000000002,0.6319996527777777,242.96,1284.74,0.46980975281976317 -1983-07-21,16.55,14.92,0.6315355324074073,285.19,1148.44,0.4535720885517991 -1983-07-22,21.31,16.495,0.6287943287037038,230.05,1398.64,0.6700742787913213 -1983-07-23,0.0,16.895,0.628,446.02,1170.23,0.8735863376164721 -1983-07-24,3.34,17.990000000000002,0.6267813657407407,382.34,1315.89,0.9872499874922213 -1983-07-25,5.02,17.995,0.624052199074074,259.86,1450.53,1.043540556954497 -1983-07-26,0.0,16.365000000000002,0.6238902777777778,420.66,1200.37,1.043540556954497 -1983-07-27,6.03,14.975,0.6207944444444444,369.09,919.9,1.0337979583937187 -1983-07-28,4.09,19.85,0.6199998842592592,324.56,1442.93,1.0337979583937187 -1983-07-29,0.54,22.14,0.6183303240740741,290.01,2019.02,0.9785898998826404 -1983-07-30,4.08,22.275,0.615999537037037,203.48,2097.85,0.9428670384931193 -1983-07-31,2.36,16.21,0.6151532407407407,421.21,1019.76,0.8898240018844364 -1983-08-01,5.03,17.675,0.6120002314814815,253.28,1451.72,0.8562661623973103 -1983-08-02,5.61,18.735,0.6115356481481482,178.6,1750.35,0.8075531695934178 -1983-08-03,3.36,18.95,0.6080510416666667,378.44,1350.07,0.7610051986919205 -1983-08-04,0.0,21.060000000000002,0.6078891203703704,361.29,1752.8,0.7068796511320401 -1983-08-05,0.0,19.055,0.6042853009259259,454.94,1302.71,0.6700742787913213 -1983-08-06,12.83,21.89,0.6039916666666666,303.77,1797.69,0.6495065707185667 -1983-08-07,0.0,19.84,0.6002854166666667,414.59,1472.83,0.6354339283529977 -1983-08-08,6.81,20.665,0.5999998842592592,287.97,1661.06,0.6354339283529977 -1983-08-09,8.02,17.575,0.5962851851851851,260.32,1443.86,0.6007935779146741 -1983-08-10,0.0,13.955000000000002,0.5959997685185184,346.29,1152.02,0.5748133150859315 -1983-08-11,0.0,11.95,0.5920523148148148,456.21,821.37,0.5380079427452128 -1983-08-12,0.0,13.445,0.591992824074074,398.17,1021.62,0.5022850813556916 -1983-08-13,0.0,13.125,0.5880002314814815,490.17,781.07,0.4643971980637752 -1983-08-14,0.0,16.145,0.5879922453703703,480.89,933.95,0.43733442428383484 -1983-08-15,0.0,18.92,0.5840005787037037,443.72,1264.9,0.4221792709670683 -1983-08-16,0.0,21.34,0.5835359953703704,406.51,1573.53,0.4016115628943137 -1983-08-17,1.59,20.475,0.5800003472222222,315.89,1698.8,0.3864564095775472 -1983-08-18,6.22,20.185000000000002,0.5787818287037036,236.04,1721.46,0.3767138110167687 -1983-08-19,2.97,19.259999999999998,0.5760005787037037,269.42,1647.16,0.3669712124559901 -1983-08-20,0.0,19.77,0.5738478009259259,370.76,1538.6,0.3485685262856308 -1983-08-21,0.0,17.055,0.5719994212962963,313.43,1405.97,0.30093804443293587 -1983-08-22,1.77,12.26,0.5680513888888888,296.75,1027.08,0.30093804443293587 -1983-08-23,0.0,13.73,0.5679997685185185,287.25,1196.23,0.292277956823355 -1983-08-24,0.0,12.18,0.5639996527777777,448.12,799.73,0.2760402925553908 -1983-08-25,0.0,16.645,0.5639916666666667,436.96,1076.46,0.272792759701798 -1983-08-26,3.65,17.525,0.56,346.8,1322.97,0.2608851392386243 -1983-08-27,9.03,18.66,0.558330324074074,257.12,1474.86,0.26413267209221714 -1983-08-28,5.81,17.240000000000002,0.5560002314814815,305.18,1253.19,0.26413267209221714 -1983-08-29,0.0,17.55,0.5520519675925926,352.47,1348.21,0.2608851392386243 -1983-08-30,7.46,17.265,0.5520004629629629,188.51,1536.33,0.26846271589700754 -1983-08-31,13.09,14.924999999999999,0.5479999999999999,121.22,1443.65,0.272792759701798 -1983-09-01,6.62,14.725000000000001,0.5479921296296296,155.84,1368.12,0.26846271589700754 -1983-09-02,5.22,14.97,0.5439997685185185,315.03,1014.64,0.26846271589700754 -1983-09-03,12.59,18.189999999999998,0.540794212962963,244.82,1445.66,0.3961990081383257 -1983-09-04,0.0,19.415,0.54,400.23,1340.34,0.3225882634568881 -1983-09-05,0.0,22.285,0.5359994212962963,346.84,1771.3,0.29660800062814546 -1983-09-06,0.0,22.865000000000002,0.5359994212962963,344.16,1830.56,0.28794791301856454 -1983-09-07,12.08,21.28,0.5319998842592593,223.41,1807.28,0.29660800062814546 -1983-09-08,0.0,15.399999999999999,0.5298482638888888,316.8,1235.23,0.3139281758473072 -1983-09-09,2.34,12.86,0.5279998842592593,319.8,985.41,0.30526808823772633 -1983-09-10,2.72,17.14,0.5240002314814816,225.99,1435.23,0.3095981320425168 -1983-09-11,3.24,17.105,0.5240002314814816,303.82,1220.99,0.3182582196520977 -1983-09-12,0.0,14.55,0.520000462962963,389.95,965.62,0.3269183072616786 -1983-09-13,0.0,10.870000000000001,0.5183310185185186,369.72,813.84,0.3139281758473072 -1983-09-14,0.0,7.449999999999999,0.5159998842592592,403.5,583.29,0.30093804443293587 -1983-09-15,0.0,7.495,0.511999537037037,397.56,595.17,0.28794791301856454 -1983-09-16,0.0,6.6899999999999995,0.511999537037037,399.66,547.58,0.2803703363601813 -1983-09-17,6.41,8.27,0.5079996527777778,246.24,729.01,0.2760402925553908 -1983-09-18,4.79,10.705,0.5067805555555556,163.47,1010.54,0.28470038016497173 -1983-09-19,2.75,14.485,0.503999537037037,248.22,1159.42,0.28470038016497173 -1983-09-20,0.0,15.25,0.4999997685185186,354.8,1056.77,0.2803703363601813 -1983-09-21,1.06,19.255000000000003,0.4999997685185186,339.03,1365.98,0.28470038016497173 -1983-09-22,20.44,16.615,0.4959997685185185,225.27,1282.51,0.3669712124559901 -1983-09-23,18.77,9.549999999999999,0.49366840277777774,243.95,764.66,0.43733442428383484 -1983-09-24,0.01,7.875,0.4919994212962963,343.25,640.0,0.4167667162110803 -1983-09-25,0.0,7.844999999999999,0.48800034722222224,372.24,569.03,0.4059416066991042 -1983-09-26,0.11,8.555,0.48800034722222224,333.54,675.76,0.4016115628943137 -1983-09-27,1.29,11.17,0.4840002314814815,254.07,948.77,0.3961990081383257 -1983-09-28,0.0,8.06,0.48167002314814816,331.34,642.94,0.3767138110167687 -1983-09-29,0.0,8.835,0.4800005787037037,370.61,560.0,0.37238376721197824 -1983-09-30,0.0,12.525,0.4760001157407408,330.92,833.73,0.3669712124559901 -1983-10-01,0.0,16.505000000000003,0.4760001157407408,299.09,1172.85,0.3626411686511997 -1983-10-02,0.0,17.585,0.4719996527777777,263.69,1351.98,0.35614610294401405 -1983-10-03,0.17,16.78,0.4701513888888889,271.02,1254.12,0.3485685262856308 -1983-10-04,7.05,11.82,0.46799976851851854,189.98,942.39,0.33882592772485226 -1983-10-05,18.65,6.654999999999999,0.463999537037037,123.83,782.49,0.35831112484640926 -1983-10-06,21.33,8.505,0.463999537037037,123.12,896.8,0.4947075046973083 -1983-10-07,4.25,7.635,0.46,160.11,772.62,0.4892949499413202 -1983-10-08,2.76,5.970000000000001,0.45920532407407405,181.96,658.65,0.4957900156485059 -1983-10-09,1.48,5.155,0.45599953703703705,154.64,688.48,0.5044501032580868 -1983-10-10,0.0,3.0549999999999997,0.45200810185185186,291.22,440.21,0.5087801470628772 -1983-10-11,0.0,4.504999999999999,0.452,318.0,440.0,0.5141927018188653 -1983-10-12,0.38,7.46,0.4480001157407407,291.84,595.9,0.5109451689652724 -1983-10-13,7.96,13.23,0.4480001157407407,130.1,1186.07,0.5423379865500033 -1983-10-14,3.66,14.17,0.4440001157407408,127.35,1268.76,0.5726482931835363 -1983-10-15,2.28,8.25,0.44166932870370373,195.2,790.69,0.5639882055739553 -1983-10-16,0.0,4.275,0.4400003472222222,194.83,614.39,0.545585519403596 -1983-10-17,0.0,4.315,0.43611064814814815,233.11,560.91,0.5520805851107816 -1983-10-18,0.0,7.1850000000000005,0.43600011574074077,177.01,784.44,0.540172964647608 -1983-10-19,0.0,2.33,0.43200000000000005,248.75,457.95,0.5141927018188653 -1983-10-20,0.0,-0.16500000000000004,0.43194837962962956,224.57,412.97,0.4947075046973083 -1983-10-21,0.0,-0.895,0.428,250.47,360.02,0.4784698404293441 -1983-10-22,0.0,0.16500000000000004,0.4261517361111111,274.64,347.0,0.4687272418685657 -1983-10-23,0.0,1.7850000000000001,0.42400011574074076,282.89,360.0,0.4579021323565895 -1983-10-24,0.0,3.275,0.42121863425925926,258.98,440.3,0.44707702284461337 -1983-10-25,0.0,1.5300000000000002,0.41999976851851856,243.05,427.8,0.4362519133326373 -1983-10-26,0.0,-1.8250000000000002,0.4164640046296296,221.54,355.33,0.4243442928694635 -1983-10-27,0.0,0.18000000000000016,0.4159996527777778,209.88,418.66,0.41568420525988264 -1983-10-28,0.53,1.335,0.4121109953703704,205.53,444.07,0.40918913955269703 -1983-10-29,2.16,1.9349999999999998,0.41200046296296294,143.01,542.43,0.40485909574790657 -1983-10-30,0.38,-0.19500000000000006,0.4080084490740741,158.18,460.08,0.3972815190895233 -1983-10-31,0.0,2.1399999999999997,0.40794895833333333,197.78,499.99,0.3907864533823376 -1983-11-01,0.0,4.06,0.40399999999999997,248.41,442.86,0.3821263657727567 -1983-11-02,0.27,4.784999999999999,0.4037145833333334,240.71,477.2,0.37887883291916397 -1983-11-03,11.75,5.4750000000000005,0.40000023148148145,127.02,653.73,0.3994465409919185 -1983-11-04,17.93,1.6,0.39971435185185183,92.91,554.51,0.540172964647608 -1983-11-05,8.63,-1.4449999999999998,0.3960082175925926,116.55,418.64,0.5477505413059912 -1983-11-06,9.91,0.775,0.39571446759259266,73.8,555.85,0.643011505011381 -1983-11-07,4.06,2.1999999999999997,0.3921108796296296,82.52,594.94,0.7274473592047948 -1983-11-08,0.0,2.6850000000000005,0.3919487268518519,178.08,519.56,0.7804903958134776 -1983-11-09,0.0,4.17,0.3884644675925926,144.78,635.38,0.8162132572029988 -1983-11-10,0.71,0.5349999999999999,0.38799999999999996,165.57,453.63,0.8465235638365318 -1983-11-11,15.6,1.4899999999999998,0.3848466435185185,64.96,594.9,0.9363719727859338 -1983-11-12,10.64,1.3450000000000002,0.3840003472222222,78.95,563.03,1.2015871558293483 -1983-11-13,3.07,-4.87,0.38166932870370374,124.58,315.56,1.3531386889970138 -1983-11-14,0.0,-6.825,0.3799997685185186,171.64,265.07,1.461389784116775 -1983-11-15,0.0,-6.11,0.37920590277777777,210.49,240.0,1.5046902221646794 -1983-11-16,20.16,-3.6500000000000004,0.37611087962962964,158.88,289.5,1.5588157697245602 -1983-11-17,13.89,0.7949999999999999,0.3759486111111111,96.26,519.77,1.7861430694760585 -1983-11-18,2.15,-1.88,0.37321898148148147,116.47,425.56,1.829443507523963 -1983-11-19,0.0,-5.1899999999999995,0.3719998842592593,154.23,310.2,1.829443507523963 -1983-11-20,0.3,-4.5249999999999995,0.37120578703703705,147.57,335.03,1.8402686170359388 -1983-11-21,19.94,-2.4349999999999996,0.3684645833333333,95.31,422.4,1.8835690550838433 -1983-11-22,16.43,-0.30000000000000004,0.3680003472222222,46.79,553.9,1.9701699311796523 -1983-11-23,0.0,0.18999999999999995,0.36615196759259255,70.62,556.33,1.9485197121557 -1983-11-24,4.77,0.08000000000000007,0.3644642361111111,68.97,552.21,1.9593448216676759 -1983-11-25,30.34,0.8800000000000001,0.36400011574074076,62.91,575.02,2.457299859218577 -1983-11-26,24.83,-1.88,0.3621513888888889,79.44,455.58,3.788788329191639 -1983-11-27,0.0,-2.9,0.3604638888888889,71.79,443.3,4.124366724062899 -1983-11-28,0.3,-3.9050000000000002,0.3599998842592593,131.69,368.37,4.319218695278469 -1983-11-29,11.88,-4.364999999999999,0.35920578703703704,124.67,330.12,4.416644680886253 -1983-11-30,8.87,-1.415,0.3572189814814815,63.91,480.67,4.449120009422182 -1983-12-01,1.71,-2.125,0.35611041666666665,106.37,441.95,4.330043804790445 -1983-12-02,0.04,-5.02,0.3559483796296296,160.9,319.61,4.167667162110803 -1983-12-03,1.7,-6.73,0.3546476851851852,178.81,261.74,3.9511649718712807 -1983-12-04,0.04,-13.4,0.35321898148148145,209.28,120.0,3.713012562607806 -1983-12-05,3.44,-9.045,0.35211030092592593,133.65,219.01,3.518160591392236 -1983-12-06,11.19,-3.6750000000000003,0.35199988425925927,111.0,360.0,3.3557839487125944 -1983-12-07,28.26,-1.0599999999999998,0.35171423611111113,136.21,397.06,3.593936357976069 -1983-12-08,3.75,-9.36,0.3506474537037037,125.27,236.99,3.6697121245599016 -1983-12-09,0.38,-10.860000000000001,0.34966921296296294,190.8,160.13,3.572286138952117 -1983-12-10,1.53,-7.76,0.3488465277777778,180.59,211.34,3.474860153344332 -1983-12-11,0.56,-16.715,0.3481105324074074,198.84,83.99,3.3341337296886424 -1983-12-12,0.7,-14.07,0.3480079861111111,199.24,120.0,3.2258826345688814 -1983-12-13,16.49,-4.66,0.34794849537037037,134.24,287.07,3.2042324155449293 -1983-12-14,20.54,-1.615,0.34771435185185184,87.17,443.63,3.323308620176666 -1983-12-15,6.21,0.56,0.3472057870370371,81.33,541.37,3.399084386760499 -1983-12-16,0.0,-0.9049999999999999,0.3466476851851852,101.47,485.77,3.4423848248084035 -1983-12-17,0.05,-4.625,0.3466476851851852,137.82,339.6,3.4423848248084035 -1983-12-18,0.1,-13.274999999999999,0.3461518518518519,187.34,134.89,3.3666090582245705 -1983-12-19,1.27,-17.5,0.3461518518518519,155.02,119.59,3.3016584011527144 -1983-12-20,0.0,-23.535,0.3456693287037037,181.62,55.05,3.1609319774970244 -1983-12-21,0.0,-21.87,0.3456693287037037,177.02,80.0,2.9769051157934308 -1983-12-22,7.46,-16.93,0.3461518518518519,183.9,80.0,2.8145284731137887 -1983-12-23,11.54,-11.365,0.3461518518518519,135.07,160.0,2.6738020494580996 -1983-12-24,0.0,-13.579999999999998,0.3461518518518519,156.26,160.0,2.543900735314386 -1983-12-25,0.0,-21.495,0.3466476851851852,187.68,79.93,2.435649640194625 -1983-12-26,0.0,-19.99,0.3472057870370371,193.09,80.0,2.3057483260509115 -1983-12-27,0.0,-12.379999999999999,0.34771435185185184,144.32,164.11,2.1866721214191744 -1983-12-28,14.36,-10.285,0.34794849537037037,146.09,158.98,2.0892461358113894 -1983-12-29,12.35,-5.065,0.34800000000000003,120.68,286.14,1.9918201502036044 -1983-12-30,0.59,-14.184999999999999,0.3480079861111111,201.92,99.24,1.9160443836197718 -1983-12-31,0.0,-13.010000000000002,0.3484641203703704,170.25,147.6,1.8186183980119868 -1984-01-01,0.0,-14.645,0.34921886574074074,158.17,120.13,1.7320175219161775 -1984-01-02,2.17,-19.560000000000002,0.35015162037037034,175.03,57.78,1.6237664267964167 -1984-01-03,0.18,-13.875,0.35120578703703703,180.8,120.0,1.537165550700608 -1984-01-04,0.0,-5.7,0.3519482638888889,134.13,277.84,1.4830400031407271 -1984-01-05,0.24,-3.695,0.35200787037037035,85.77,374.68,1.4072642365568944 -1984-01-06,1.69,-3.105,0.35284641203703704,85.85,389.89,1.3314884699730618 -1984-01-07,2.07,-4.495,0.3541518518518519,100.32,332.45,1.277362922413181 -1984-01-08,2.11,-15.399999999999999,0.35571446759259256,144.55,120.0,1.2124122653413245 -1984-01-09,1.57,-15.655,0.35600000000000004,98.46,136.36,1.1366364987574917 -1984-01-10,4.17,-16.71,0.3564643518518519,113.33,119.05,1.0933360607095872 -1984-01-11,2.37,-17.6,0.35815185185185183,91.62,120.0,1.0392105131497067 -1984-01-12,0.0,-25.25,0.3599482638888889,204.12,40.0,0.9959100751018022 -1984-01-13,0.0,-25.645,0.36000787037037035,210.07,40.0,0.9417845275419217 -1984-01-14,2.35,-19.41,0.36121863425925926,160.66,80.0,0.8984840894940173 -1984-01-15,1.0,-18.865,0.3637142361111111,175.49,80.0,0.8551836514461127 -1984-01-16,0.0,-24.06,0.36400011574074076,229.15,40.0,0.8118832133982083 -1984-01-17,0.0,-19.985,0.36521898148148146,229.28,42.87,0.7794078848622801 -1984-01-18,1.5,-15.129999999999999,0.36771435185185186,199.11,93.38,0.7361074468143756 -1984-01-19,4.64,-11.515,0.3680083333333333,126.48,167.01,0.7036321182784472 -1984-01-20,3.07,-15.195,0.3696696759259259,154.55,120.0,0.681981899254495 -1984-01-21,0.0,-23.384999999999998,0.3719483796296296,211.38,40.0,0.6711567897425189 -1984-01-22,0.0,-25.725,0.37211041666666667,255.99,40.0,0.6495065707185667 -1984-01-23,0.0,-18.009999999999998,0.3746479166666667,238.6,78.21,0.6386814612065905 -1984-01-24,6.5,-12.485000000000001,0.3760002314814815,195.47,89.69,0.6278563516946144 -1984-01-25,3.92,-1.5000000000000002,0.3772188657407407,90.75,437.58,0.6170312421826384 -1984-01-26,1.28,-12.645,0.3799997685185186,177.17,156.78,0.6062061326706623 -1984-01-27,2.48,-17.46,0.3804640046296296,207.29,80.0,0.5953810231586861 -1984-01-28,0.0,-16.3,0.383714699074074,214.21,111.42,0.589968468402698 -1984-01-29,0.0,-20.71,0.38400833333333334,268.35,40.0,0.58455591364671 -1984-01-30,1.91,-16.58,0.3866476851851852,234.66,80.0,0.58455591364671 -1984-01-31,7.43,-9.305,0.38799999999999996,112.4,226.77,0.579143358890722 -1984-02-01,2.32,-15.774999999999999,0.3901519675925926,221.81,115.03,0.5737308041347339 -1984-02-02,0.0,-16.09,0.39200034722222227,270.72,83.25,0.5737308041347339 -1984-02-03,0.03,-11.725,0.3936696759259259,305.12,82.24,0.5629056946227577 -1984-02-04,2.35,0.4849999999999999,0.39600023148148145,134.95,490.28,0.5629056946227577 -1984-02-05,10.08,-1.13,0.3972188657407407,108.71,453.63,0.5520805851107816 -1984-02-06,13.65,-6.140000000000001,0.40000023148148145,120.14,289.65,0.5520805851107816 -1984-02-07,0.0,-13.075,0.4012189814814815,176.67,164.24,0.5574931398667697 -1984-02-08,0.0,-18.23,0.40399999999999997,203.64,99.19,0.5629056946227577 -1984-02-09,0.0,-21.884999999999998,0.40521898148148144,218.9,80.0,0.5520805851107816 -1984-02-10,0.72,-21.79,0.4080003472222223,323.18,40.0,0.5520805851107816 -1984-02-11,0.04,-8.71,0.40966990740740744,270.53,200.0,0.5520805851107816 -1984-02-12,0.0,-2.17,0.41200046296296294,256.87,327.24,0.5412554755988056 -1984-02-13,0.0,1.85,0.41464768518518513,175.19,533.68,0.5412554755988056 -1984-02-14,1.15,1.15,0.4159996527777778,165.57,513.55,0.5520805851107816 -1984-02-15,8.07,3.115,0.419205324074074,99.28,639.84,0.5520805851107816 -1984-02-16,0.0,-0.040000000000000036,0.41999976851851856,221.47,440.89,0.5629056946227577 -1984-02-17,0.0,-4.335,0.42400011574074076,343.43,233.58,0.5737308041347339 -1984-02-18,0.0,-3.1,0.42400011574074076,336.65,257.83,0.5953810231586861 -1984-02-19,0.81,-1.31,0.428,269.49,359.03,0.6495065707185667 -1984-02-20,5.18,-0.5149999999999999,0.42846388888888887,135.23,462.69,0.6928070087664712 -1984-02-21,2.51,-4.795,0.43200000000000005,173.5,334.71,0.7577576658383279 -1984-02-22,0.0,-6.664999999999999,0.4336695601851852,219.15,280.14,0.7902329943742561 -1984-02-23,0.57,-3.125,0.43600011574074077,340.46,297.74,0.8118832133982083 -1984-02-24,0.0,-0.835,0.4399488425925926,338.61,355.2,0.8227083229101846 -1984-02-25,1.82,0.4999999999999998,0.4400003472222222,251.54,456.63,0.8118832133982083 -1984-02-26,4.61,-0.1549999999999998,0.4440001157407408,177.32,465.14,0.7902329943742561 -1984-02-27,4.89,-7.265,0.4440081018518519,231.45,238.14,0.768582775350304 -1984-02-28,13.41,-12.084999999999999,0.4480001157407407,300.93,120.0,0.7469325563263517 -1984-02-29,13.76,-4.29,0.4501516203703704,251.31,301.25,0.7469325563263517 -1984-03-01,2.84,-9.16,0.452,275.62,212.81,0.7361074468143756 -1984-03-02,0.02,-14.860000000000001,0.45599953703703705,304.23,136.15,0.7252823373023994 -1984-03-03,0.0,-15.719999999999999,0.45599953703703705,354.08,120.03,0.7252823373023994 -1984-03-04,0.0,-14.270000000000001,0.46,412.61,120.0,0.7144572277904233 -1984-03-05,0.65,-14.805,0.4604638888888889,456.18,80.0,0.7252823373023994 -1984-03-06,2.4,-3.88,0.463999537037037,313.66,319.51,0.7252823373023994 -1984-03-07,0.0,-11.065,0.46799976851851854,437.29,154.09,0.7361074468143756 -1984-03-08,0.0,-16.875,0.46799976851851854,428.25,80.0,0.7361074468143756 -1984-03-09,0.0,-22.02,0.4719996527777777,482.68,40.0,0.7469325563263517 -1984-03-10,0.0,-20.240000000000002,0.4719996527777777,488.08,40.0,0.7577576658383279 -1984-03-11,1.42,-16.695,0.4760001157407408,460.48,74.1,0.7902329943742561 -1984-03-12,2.61,-17.185000000000002,0.4800005787037037,398.08,82.44,0.8010581038862323 -1984-03-13,5.02,-20.475,0.4800005787037037,419.96,42.17,0.8118832133982083 -1984-03-14,24.46,-13.825,0.4840002314814815,279.47,137.73,0.8118832133982083 -1984-03-15,23.26,-7.42,0.4840002314814815,285.83,237.11,0.8010581038862323 -1984-03-16,3.23,-1.415,0.48800034722222224,302.56,371.69,0.7956455491302442 -1984-03-17,4.39,-3.6449999999999996,0.4919994212962963,277.26,329.13,0.7794078848622801 -1984-03-18,0.65,-8.674999999999999,0.4919994212962963,446.81,183.84,0.7577576658383279 -1984-03-19,1.4,-4.51,0.4959997685185185,391.11,288.87,0.7361074468143756 -1984-03-20,2.78,0.11999999999999988,0.4959997685185185,243.02,469.47,0.7252823373023994 -1984-03-21,0.66,1.645,0.4999997685185186,262.68,559.06,0.7036321182784472 -1984-03-22,4.26,3.42,0.503999537037037,210.52,610.71,0.6982195635224592 -1984-03-23,2.67,2.4749999999999996,0.503999537037037,244.27,571.97,0.6928070087664712 -1984-03-24,0.0,-3.8799999999999994,0.5079996527777778,397.79,314.13,0.6982195635224592 -1984-03-25,0.0,-7.335000000000001,0.5079996527777778,446.21,234.75,0.7252823373023994 -1984-03-26,0.0,-7.025,0.511999537037037,463.68,238.13,0.7577576658383279 -1984-03-27,0.0,-4.66,0.5159998842592592,409.04,294.05,0.8010581038862323 -1984-03-28,0.0,-4.36,0.5159998842592592,517.66,246.88,0.8660087609580888 -1984-03-29,0.0,-1.745,0.520000462962963,408.87,366.28,0.8984840894940173 -1984-03-30,0.0,-0.7699999999999999,0.520000462962963,245.52,475.15,0.9201343085179694 -1984-03-31,0.0,-1.8050000000000002,0.5240002314814816,431.54,366.56,0.9201343085179694 -1984-04-01,0.0,-2.2649999999999997,0.5279998842592593,581.27,258.97,0.9233818413715623 -1984-04-02,0.0,-1.4,0.5279998842592593,547.93,309.38,0.9201343085179694 -1984-04-03,0.0,-1.15,0.5319998842592593,553.64,316.71,0.9320419289811432 -1984-04-04,0.0,0.75,0.5319998842592593,517.88,399.74,0.9504446151515026 -1984-04-05,4.3,0.4450000000000003,0.5359994212962963,392.49,436.39,0.9818374327362333 -1984-04-06,10.42,3.555,0.5395353009259259,274.64,597.15,1.16911182729342 -1984-04-07,3.72,3.245,0.54,227.19,621.53,1.4505646746047989 -1984-04-08,4.09,-2.615,0.5439997685185185,303.3,366.99,1.742842631428154 -1984-04-09,0.03,-4.965,0.5439997685185185,401.33,310.79,1.9160443836197718 -1984-04-10,1.33,-2.27,0.5479999999999999,476.85,357.5,2.0892461358113894 -1984-04-11,0.0,1.87,0.5498481481481481,455.01,509.02,2.240797668979055 -1984-04-12,0.0,2.61,0.5520004629629629,360.7,587.56,2.435649640194625 -1984-04-13,0.0,3.7600000000000002,0.5559922453703704,462.25,587.67,2.6521518304341467 -1984-04-14,0.0,3.585,0.5560002314814815,624.99,441.67,2.998555334817383 -1984-04-15,0.0,4.165,0.56,632.36,441.35,3.4423848248084035 -1984-04-16,8.89,4.955,0.5600517361111111,298.74,667.14,4.048590957479066 -1984-04-17,6.62,3.605,0.5639996527777777,186.46,683.92,5.185227456236557 -1984-04-18,0.45,2.835,0.5663305555555556,349.2,601.05,6.0512362171946465 -1984-04-19,0.0,3.035,0.5679997685185185,481.12,554.74,6.81981899254495 -1984-04-20,0.0,3.3850000000000002,0.5715351851851852,615.88,455.57,7.144572277904234 -1984-04-21,0.36,0.8800000000000001,0.5719994212962963,418.02,496.15,7.361074468143755 -1984-04-22,0.0,0.0,0.5760005787037037,554.73,404.96,7.350249358631779 -1984-04-23,0.0,7.04,0.5760005787037037,637.92,545.8,7.49097578228747 -1984-04-24,0.68,7.83,0.5800003472222222,628.73,507.48,8.04305636739825 -1984-04-25,5.14,4.9799999999999995,0.5807946759259259,313.39,654.68,8.887414909332387 -1984-04-26,0.0,4.9,0.5840005787037037,483.07,621.78,9.385369946883289 -1984-04-27,0.0,6.385,0.5853530092592593,645.83,503.72,9.96992586053 -1984-04-28,0.0,7.470000000000001,0.5880002314814815,668.89,460.61,10.413755350521019 -1984-04-29,0.0,9.06,0.5903311342592593,672.11,477.05,10.933360607095873 -1984-04-30,0.0,11.790000000000001,0.5920008101851852,661.31,587.2,11.474616082694677 -1984-05-01,0.0,10.985,0.5943310185185184,543.68,821.75,12.232373748533004 -1984-05-02,0.0,4.15,0.5959997685185184,496.88,558.23,12.340624843652767 -1984-05-03,0.0,3.74,0.5987809027777777,546.5,518.34,11.6911182729342 -1984-05-04,10.49,3.1399999999999997,0.5999998842592592,390.55,517.17,10.933360607095873 -1984-05-05,11.3,2.215,0.6027810185185185,207.07,597.62,10.52200644564078 -1984-05-06,3.13,5.41,0.6039996527777778,464.3,600.0,10.186428050769521 -1984-05-07,0.0,6.245,0.6063304398148148,646.23,471.22,9.775073889314429 -1984-05-08,6.38,6.470000000000001,0.6079995370370371,527.7,520.89,9.417845275419216 -1984-05-09,7.78,8.24,0.6098476851851852,351.7,772.75,9.396195056395264 -1984-05-10,0.8,6.62,0.6120002314814815,508.64,648.35,9.136392428107838 -1984-05-11,1.03,7.574999999999999,0.6133524305555556,593.88,526.88,8.703388047628794 -1984-05-12,10.16,9.21,0.6159914351851852,332.53,827.86,8.37863476226951 -1984-05-13,6.67,9.685,0.6162851851851852,228.38,962.8,8.12965724349406 -1984-05-14,6.95,6.64,0.6195356481481481,246.53,780.91,7.761603520086872 -1984-05-15,7.55,4.955,0.6199998842592592,243.9,699.83,7.65335242496711 -1984-05-16,1.43,5.545,0.6227818287037037,404.81,674.02,7.350249358631779 -1984-05-17,0.7,5.1450000000000005,0.6240006944444445,571.31,544.07,7.036321182784472 -1984-05-18,0.0,5.575,0.6253526620370371,603.59,519.92,6.679092568889262 -1984-05-19,0.0,7.25,0.6278895833333333,625.58,539.18,6.083711545730575 -1984-05-20,0.0,10.59,0.6280518518518519,578.58,744.72,5.553281179643745 -1984-05-21,3.56,13.175,0.6303303240740741,344.03,1099.27,5.163577237212605 -1984-05-22,0.0,12.139999999999999,0.6319916666666667,637.66,650.78,4.838823951853322 -1984-05-23,14.68,19.16,0.6322856481481481,470.85,1318.89,4.611496652101823 -1984-05-24,19.61,13.754999999999999,0.6347809027777778,281.85,1197.69,4.806348623317393 -1984-05-25,0.48,10.190000000000001,0.6360001157407408,571.02,715.6,4.546545995029967 -1984-05-26,1.01,17.77,0.6362856481481481,523.95,1164.48,4.308393585766492 -1984-05-27,0.0,12.195,0.6387810185185185,559.28,829.54,4.048590957479066 -1984-05-28,0.0,8.5,0.6399917824074074,504.97,720.93,3.7779632196796626 -1984-05-29,17.72,6.859999999999999,0.6400512731481481,251.51,781.94,3.5506359199281645 -1984-05-30,27.38,7.59,0.6418483796296296,252.53,818.2,3.7563130006557106 -1984-05-31,22.97,10.42,0.6435354166666667,235.2,1016.09,4.28674336674254 -1984-06-01,19.88,10.434999999999999,0.6439998842592592,292.02,966.44,4.892949499413202 -1984-06-02,4.0,11.53,0.6442856481481481,334.56,1023.78,5.1202767991647 -1984-06-03,0.01,9.525,0.6458482638888889,501.77,800.37,5.087801470628772 -1984-06-04,0.03,9.77,0.6471538194444444,510.03,793.45,4.979550375509011 -1984-06-05,0.96,12.945,0.6479927083333333,488.31,1006.83,4.817173732829369 -1984-06-06,0.0,13.125,0.6480521990740741,572.0,894.65,4.589846433077871 -1984-06-07,2.84,17.435,0.6487947916666666,387.52,1351.76,4.362519133326373 -1984-06-08,0.21,20.84,0.6498487268518519,502.4,1593.47,4.178492271622779 -1984-06-09,0.0,23.985,0.6507814814814814,435.8,2071.37,3.9403398623593047 -1984-06-10,0.0,19.63,0.6515357638888889,515.83,1409.03,3.6697121245599016 -1984-06-11,0.0,20.655,0.6519921296296297,468.32,1601.71,3.4315597152964274 -1984-06-12,2.89,15.715,0.6520001157407407,475.84,911.45,3.1717570870090004 -1984-06-13,7.17,17.465,0.6520517361111111,295.49,1412.89,2.9769051157934308 -1984-06-14,7.79,10.545,0.6522856481481482,290.29,905.92,2.8145284731137887 -1984-06-15,4.4,10.085,0.6527943287037037,283.03,899.67,2.630501611410195 -1984-06-16,0.0,10.735,0.653352662037037,530.69,706.57,2.446474749706601 -1984-06-17,0.0,14.915,0.653848611111111,506.45,959.31,2.2732729975149835 -1984-06-18,15.01,17.495,0.653848611111111,314.63,1410.93,2.132546573859294 -1984-06-19,20.75,18.275000000000002,0.653848611111111,303.12,1433.43,2.240797668979055 -1984-06-20,0.46,16.105,0.6543310185185185,432.32,1194.83,2.1650219023952224 -1984-06-21,3.67,11.715,0.6543310185185185,424.12,801.85,2.132546573859294 -1984-06-22,2.96,11.045,0.653848611111111,382.3,807.69,2.0784210262994134 -1984-06-23,0.0,10.895,0.653848611111111,436.5,853.32,1.9701699311796523 -1984-06-24,1.41,10.370000000000001,0.653352662037037,481.93,720.0,1.8943941645958196 -1984-06-25,11.91,10.805,0.653352662037037,286.63,917.56,1.829443507523963 -1984-06-26,18.76,11.61,0.6527943287037037,112.3,1230.69,1.9160443836197718 -1984-06-27,7.19,11.309999999999999,0.6522856481481482,167.93,1134.06,2.024295478739533 -1984-06-28,5.28,13.1,0.6520517361111111,377.82,863.54,2.121721464347318 -1984-06-29,4.2,16.945,0.6519921296296297,353.17,1190.84,2.2732729975149835 -1984-06-30,10.95,17.825,0.6518894675925926,309.18,1373.22,2.33822365458684 -1984-07-01,0.0,18.56,0.6511538194444445,468.02,1292.27,2.446474749706601 -1984-07-02,0.0,21.295,0.6503311342592593,478.0,1437.12,2.413999421170673 -1984-07-03,0.0,21.95,0.6493528935185184,440.85,1625.05,2.3706989831227685 -1984-07-04,2.95,21.275,0.6482863425925927,353.15,1682.05,2.2732729975149835 -1984-07-05,6.37,20.3,0.6480008101851852,213.46,1838.93,2.1866721214191744 -1984-07-06,10.16,21.285,0.647890162037037,244.79,1871.56,2.0892461358113894 -1984-07-07,13.58,20.674999999999997,0.64678125,215.5,1883.15,2.035120588251509 -1984-07-08,13.03,16.41,0.645352199074074,260.9,1421.93,2.0892461358113894 -1984-07-09,0.74,14.38,0.6440515046296297,350.08,1191.36,1.9918201502036044 -1984-07-10,1.4,17.425,0.6438894675925926,373.46,1373.31,1.9160443836197718 -1984-07-11,12.48,18.85,0.6427809027777778,364.58,1426.07,1.8186183980119868 -1984-07-12,17.91,19.005,0.6407940972222222,272.98,1589.94,2.0026452597155804 -1984-07-13,1.31,17.945,0.6399997685185186,404.13,1376.65,1.8943941645958196 -1984-07-14,4.51,16.485,0.6395354166666667,338.53,1194.4,1.8402686170359388 -1984-07-15,18.35,16.79,0.6378482638888888,260.11,1399.69,1.8077932885000105 -1984-07-16,12.3,19.73,0.6360001157407408,222.68,1779.03,2.3057483260509115 -1984-07-17,2.47,18.835,0.6355359953703703,310.58,1599.17,2.5872011733622906 -1984-07-18,8.51,16.77,0.6338483796296296,332.64,1245.54,2.7495778160419326 -1984-07-19,7.01,18.235,0.6319996527777777,276.78,1503.56,2.825353582625765 -1984-07-20,0.32,18.935000000000002,0.6315355324074073,396.4,1499.49,2.8037033636018127 -1984-07-21,2.36,19.785,0.6287943287037038,357.14,1607.16,2.72792759701798 -1984-07-22,0.0,18.345,0.628,456.16,1332.94,2.5980262828742666 -1984-07-23,10.93,18.995,0.6267813657407407,245.52,1664.09,2.5006002972664816 -1984-07-24,7.75,18.19,0.624052199074074,174.9,1744.52,2.3815240926347445 -1984-07-25,0.0,15.485,0.6238902777777778,394.09,1261.98,2.2083223404431265 -1984-07-26,4.09,13.52,0.6207944444444444,344.68,973.79,2.0892461358113894 -1984-07-27,6.02,14.48,0.6199998842592592,337.32,1053.25,1.9593448216676759 -1984-07-28,5.44,15.254999999999999,0.6183303240740741,227.43,1354.91,1.861918836059891 -1984-07-29,0.0,16.05,0.615999537037037,442.49,1198.47,1.75366774094013 -1984-07-30,0.0,17.939999999999998,0.6151532407407407,460.29,1281.42,1.6454166458203692 -1984-07-31,0.0,19.105,0.6120002314814815,435.38,1430.29,1.537165550700608 -1984-08-01,0.0,20.424999999999997,0.6115356481481482,326.12,1810.09,1.4289144555808466 -1984-08-02,0.0,17.795,0.6080510416666667,464.95,1265.62,1.3206633604610856 -1984-08-03,0.0,17.71,0.6078891203703704,493.69,1132.4,1.2340624843652768 -1984-08-04,0.0,18.275,0.6042853009259259,493.32,1146.57,1.1474616082694677 -1984-08-05,7.33,21.1,0.6039916666666666,370.71,1473.57,1.1258113892455155 -1984-08-06,4.73,21.235,0.6002854166666667,361.27,1480.51,1.16911182729342 -1984-08-07,4.32,21.23,0.5999998842592592,245.99,1870.33,1.1258113892455155 -1984-08-08,2.59,18.61,0.5962851851851851,385.41,1361.76,1.0933360607095872 -1984-08-09,0.0,18.45,0.5959997685185184,431.16,1330.46,1.040293024100904 -1984-08-10,0.1,20.380000000000003,0.5920523148148148,307.42,1785.94,1.0002401189065926 -1984-08-11,0.09,20.72,0.591992824074074,267.37,1906.94,0.9287943961275504 -1984-08-12,3.37,19.22,0.5880002314814815,200.73,1804.21,0.8887414909332388 -1984-08-13,1.47,20.455,0.5879922453703703,248.72,1900.07,0.8584311842997057 -1984-08-14,4.2,21.880000000000003,0.5840005787037037,262.34,1968.95,0.8183782791053941 -1984-08-15,20.51,22.130000000000003,0.5835359953703704,140.19,2278.73,1.041375535052102 -1984-08-16,23.64,20.15,0.5800003472222222,220.36,1807.0,1.9376946026437238 -1984-08-17,0.78,15.605,0.5787818287037036,333.24,1306.84,2.0026452597155804 -1984-08-18,0.0,13.405000000000001,0.5760005787037037,368.35,1091.1,2.110896354835342 -1984-08-19,0.19,12.515,0.5738478009259259,450.16,871.16,2.110896354835342 -1984-08-20,0.0,14.64,0.5719994212962963,366.3,1181.22,2.045945697763485 -1984-08-21,0.0,12.205,0.5680513888888888,473.23,773.0,1.9376946026437238 -1984-08-22,0.0,16.67,0.5679997685185185,437.13,1139.72,1.8402686170359388 -1984-08-23,3.11,17.52,0.5639996527777777,275.77,1450.42,1.7320175219161775 -1984-08-24,4.7,15.95,0.5639916666666667,165.73,1477.29,1.656241755332345 -1984-08-25,0.0,13.18,0.56,441.42,892.69,1.5696408792365362 -1984-08-26,0.0,15.139999999999999,0.558330324074074,451.04,935.91,1.4830400031407271 -1984-08-27,0.0,18.025,0.5560002314814815,412.99,1261.98,1.3856140175329423 -1984-08-28,0.0,19.09,0.5520519675925926,398.26,1372.78,1.2990131414371333 -1984-08-29,0.05,20.165,0.5520004629629629,366.22,1560.25,1.2124122653413245 -1984-08-30,3.88,20.46,0.5479999999999999,240.02,1789.46,1.1366364987574917 -1984-08-31,2.96,19.549999999999997,0.5479921296296296,181.79,1842.01,1.1041611702215632 -1984-09-01,2.88,14.905,0.5439997685185185,304.22,1180.15,1.0619432431248563 -1984-09-02,0.0,13.015,0.540794212962963,351.96,1031.96,1.0143127612721616 -1984-09-03,0.0,11.065,0.54,368.89,885.87,0.9461145713467122 -1984-09-04,5.18,12.684999999999999,0.5359994212962963,174.99,1193.62,0.9103917099571911 -1984-09-05,4.41,13.165000000000001,0.5359994212962963,195.09,1204.18,0.8779163814212626 -1984-09-06,0.0,10.37,0.5319998842592593,366.96,850.22,0.8248733448125797 -1984-09-07,0.0,8.295,0.5298482638888888,425.0,630.17,0.7772428629598849 -1984-09-08,0.0,9.51,0.5279998842592593,446.98,594.69,0.7404374906191661 -1984-09-09,0.0,14.565,0.5240002314814816,431.34,859.67,0.7057971401808425 -1984-09-10,0.03,16.01,0.5240002314814816,399.89,1057.5,0.6614141911817405 -1984-09-11,0.11,17.17,0.520000462962963,267.22,1462.77,0.6202787750362311 -1984-09-12,0.86,12.294999999999998,0.5183310185185186,303.96,1007.88,0.5802258698419196 -1984-09-13,0.0,8.35,0.5159998842592592,356.9,717.24,0.5574931398667697 -1984-09-14,0.0,11.870000000000001,0.511999537037037,306.24,965.6,0.5315128770380272 -1984-09-15,0.0,7.975,0.511999537037037,335.37,714.73,0.4979550375509011 -1984-09-16,0.0,6.1000000000000005,0.5079996527777778,294.9,654.93,0.46980975281976317 -1984-09-17,0.0,6.3950000000000005,0.5067805555555556,388.62,529.13,0.44815953379581097 -1984-09-18,0.0,10.725,0.503999537037037,378.1,734.14,0.43083935857664923 -1984-09-19,4.08,12.13,0.4999997685185186,236.49,967.89,0.4167667162110803 -1984-09-20,12.0,9.045,0.4999997685185186,204.87,821.01,0.41351918335748744 -1984-09-21,5.32,6.765000000000001,0.4959997685185185,231.57,718.73,0.40918913955269703 -1984-09-22,0.0,5.245,0.49366840277777774,349.04,540.5,0.3961990081383257 -1984-09-23,0.0,8.95,0.4919994212962963,362.33,643.07,0.3853738986263496 -1984-09-24,0.0,13.355,0.48800034722222224,282.9,1067.38,0.37563130006557105 -1984-09-25,0.1,11.39,0.48800034722222224,370.93,720.06,0.3691362343583854 -1984-09-26,4.56,11.535,0.4840002314814815,243.54,851.37,0.3745487891143735 -1984-09-27,0.87,5.205,0.48167002314814816,310.25,554.06,0.3658887015047926 -1984-09-28,0.2,4.8,0.4800005787037037,323.39,529.33,0.35614610294401405 -1984-09-29,0.81,7.305,0.4760001157407408,315.07,640.0,0.3464035043832356 -1984-09-30,0.0,6.755,0.4760001157407408,299.62,630.92,0.33557839487125946 -1984-10-01,0.6,5.615,0.4719996527777777,288.11,591.34,0.32475328535928333 -1984-10-02,13.0,5.71,0.4701513888888889,170.87,667.18,0.3204232415544929 -1984-10-03,10.93,4.005,0.46799976851851854,126.9,640.04,0.3680537234071878 -1984-10-04,6.31,3.61,0.463999537037037,104.24,652.92,0.37887883291916397 -1984-10-05,1.12,0.5149999999999999,0.463999537037037,180.88,493.31,0.3680537234071878 -1984-10-06,0.0,1.845,0.46,256.75,471.73,0.35722861389521166 -1984-10-07,0.2,4.035,0.45920532407407405,322.8,441.66,0.35722861389521166 -1984-10-08,7.17,7.640000000000001,0.45599953703703705,125.35,838.19,0.3626411686511997 -1984-10-09,6.78,5.585,0.45200810185185186,189.1,629.22,0.37887883291916397 -1984-10-10,0.0,7.27,0.452,319.68,562.86,0.37346627816317585 -1984-10-11,0.0,10.4,0.4480001157407407,307.02,705.89,0.37346627816317585 -1984-10-12,0.0,11.78,0.4480001157407407,242.14,938.39,0.37346627816317585 -1984-10-13,0.0,8.319999999999999,0.4440001157407408,305.49,599.74,0.37346627816317585 -1984-10-14,0.0,9.389999999999999,0.44166932870370373,301.99,631.5,0.3680537234071878 -1984-10-15,0.0,9.61,0.4400003472222222,291.25,657.52,0.3626411686511997 -1984-10-16,0.0,7.585,0.43611064814814815,270.74,622.66,0.35722861389521166 -1984-10-17,0.0,4.67,0.43600011574074077,291.33,451.23,0.3518160591392236 -1984-10-18,0.0,5.375,0.43200000000000005,290.83,459.95,0.3464035043832356 -1984-10-19,0.02,5.74,0.43194837962962956,284.48,479.05,0.3409909496272475 -1984-10-20,1.08,9.03,0.428,236.56,718.16,0.33557839487125946 -1984-10-21,3.47,8.355,0.4261517361111111,184.74,721.51,0.3301658401152714 -1984-10-22,3.81,8.26,0.42400011574074076,109.44,853.05,0.33557839487125946 -1984-10-23,0.0,7.98,0.42121863425925926,184.45,768.94,0.3301658401152714 -1984-10-24,0.0,5.03,0.41999976851851856,235.98,539.15,0.32475328535928333 -1984-10-25,0.0,5.5249999999999995,0.4164640046296296,198.73,615.11,0.31501068679850486 -1984-10-26,0.0,2.1350000000000002,0.4159996527777778,173.38,519.85,0.30526808823772633 -1984-10-27,4.23,3.21,0.4121109953703704,121.68,587.63,0.30526808823772633 -1984-10-28,4.56,7.805000000000001,0.41200046296296294,154.18,712.71,0.3204232415544929 -1984-10-29,0.0,7.68,0.4080084490740741,178.88,753.65,0.3095981320425168 -1984-10-30,0.0,0.48,0.40794895833333333,243.92,351.7,0.30526808823772633 -1984-10-31,0.0,0.9049999999999998,0.40399999999999997,175.73,456.68,0.29444297872575026 -1984-11-01,0.65,-0.665,0.4037145833333334,238.81,289.03,0.2901129349209598 -1984-11-02,2.84,2.88,0.40000023148148145,181.76,460.56,0.2901129349209598 -1984-11-03,0.0,-0.6150000000000002,0.39971435185185183,186.64,390.72,0.26629769399461234 -1984-11-04,0.53,-0.5099999999999998,0.3960082175925926,217.71,320.26,0.26629769399461234 -1984-11-05,5.81,4.585,0.39571446759259266,104.45,637.33,0.2706277377994028 -1984-11-06,5.1,6.08,0.3921108796296296,81.89,764.48,0.2901129349209598 -1984-11-07,0.0,-0.8050000000000002,0.3919487268518519,171.26,385.38,0.2803703363601813 -1984-11-08,0.0,-3.6350000000000002,0.3884644675925926,169.63,319.0,0.2760402925553908 -1984-11-09,0.02,-2.175,0.38799999999999996,178.69,328.1,0.2706277377994028 -1984-11-10,6.11,2.8649999999999998,0.3848466435185185,107.22,547.14,0.2760402925553908 -1984-11-11,13.07,6.78,0.3840003472222222,69.46,811.13,0.29985553348173827 -1984-11-12,17.93,6.195,0.38166932870370374,63.54,797.66,0.3626411686511997 -1984-11-13,4.75,2.015,0.3799997685185186,82.4,562.6,0.5726482931835363 -1984-11-14,2.05,-2.055,0.37920590277777777,58.77,458.17,0.5607406727203627 -1984-11-15,0.0,-2.6399999999999997,0.37611087962962964,158.77,350.58,0.5477505413059912 -1984-11-16,1.94,1.35,0.3759486111111111,121.19,519.27,0.5477505413059912 -1984-11-17,7.61,-0.7549999999999999,0.37321898148148147,81.36,471.82,0.5661532274763506 -1984-11-18,2.51,-6.41,0.3719998842592593,118.63,291.8,0.604041110768267 -1984-11-19,6.64,-9.7,0.37120578703703705,158.54,200.0,0.643011505011381 -1984-11-20,0.87,-7.545,0.3684645833333333,172.3,242.84,0.6614141911817405 -1984-11-21,1.88,-3.0549999999999997,0.3680003472222222,138.53,362.67,0.6711567897425189 -1984-11-22,0.0,-3.95,0.36615196759259255,142.37,345.61,0.6614141911817405 -1984-11-23,0.02,-3.89,0.3644642361111111,139.82,350.4,0.6495065707185667 -1984-11-24,0.0,-3.6750000000000003,0.36400011574074076,134.62,359.41,0.6332689064506025 -1984-11-25,0.0,-5.5,0.3621513888888889,200.37,247.01,0.6170312421826384 -1984-11-26,0.0,-1.3850000000000002,0.3604638888888889,146.26,418.22,0.6116186874266503 -1984-11-27,0.0,3.1849999999999996,0.3599998842592593,174.49,522.12,0.6116186874266503 -1984-11-28,0.11,2.3099999999999996,0.35920578703703704,183.45,451.5,0.6105361764754527 -1984-11-29,9.32,3.535,0.3572189814814815,123.63,569.71,0.6105361764754527 -1984-11-30,6.36,3.78,0.35611041666666665,65.81,682.43,0.7177047606440161 -1984-12-01,1.41,0.995,0.3559483796296296,94.34,549.63,0.7371899577655732 -1984-12-02,3.0,-0.755,0.3546476851851852,58.12,506.86,0.754510132984735 -1984-12-03,5.46,-4.635,0.35321898148148145,109.41,324.42,0.7707477972526992 -1984-12-04,5.83,-3.04,0.35211030092592593,76.29,411.1,0.8021406148374299 -1984-12-05,0.0,-7.92,0.35199988425925927,153.52,240.0,0.7859029505694657 -1984-12-06,21.45,-11.27,0.35171423611111113,125.35,178.84,0.793480527227849 -1984-12-07,10.4,-11.51,0.3506474537037037,113.21,189.23,0.8097181914958131 -1984-12-08,3.69,-14.049999999999999,0.34966921296296294,162.96,120.0,0.8421935200317415 -1984-12-09,0.0,-8.385,0.3488465277777778,172.5,217.38,0.8097181914958131 -1984-12-10,0.0,-6.029999999999999,0.3481105324074074,185.14,247.39,0.8021406148374299 -1984-12-11,0.23,-1.355,0.3480079861111111,126.09,440.0,0.8021406148374299 -1984-12-12,0.0,-0.93,0.34794849537037037,96.36,478.52,0.8021406148374299 -1984-12-13,1.09,0.4950000000000001,0.34771435185185184,109.55,523.23,0.8021406148374299 -1984-12-14,0.0,-9.11,0.3472057870370371,182.25,196.84,0.7859029505694657 -1984-12-15,0.0,-11.3,0.3466476851851852,152.25,187.44,0.8021406148374299 -1984-12-16,0.6,-6.38,0.3466476851851852,195.65,184.7,0.7859029505694657 -1984-12-17,0.0,1.355,0.3461518518518519,153.32,483.85,0.7707477972526992 -1984-12-18,5.14,-2.875,0.3461518518518519,94.92,387.02,0.7620877096431182 -1984-12-19,4.07,-9.395,0.3456693287037037,103.74,226.48,0.7620877096431182 -1984-12-20,4.35,-8.094999999999999,0.3456693287037037,115.83,238.16,0.7620877096431182 -1984-12-21,3.54,-12.535,0.3461518518518519,144.33,151.06,0.7469325563263517 -1984-12-22,6.16,-13.035,0.3461518518518519,147.36,120.0,0.7306948920583874 -1984-12-23,1.8,-7.52,0.3461518518518519,156.75,239.28,0.7252823373023994 -1984-12-24,0.65,-7.645,0.3466476851851852,184.81,199.97,0.7198697825464114 -1984-12-25,0.69,-9.155,0.3472057870370371,164.47,202.49,0.7177047606440161 -1984-12-26,0.0,-17.995,0.34771435185185184,167.26,98.71,0.7036321182784472 -1984-12-27,0.0,-23.605,0.34794849537037037,195.03,40.0,0.6928070087664712 -1984-12-28,6.05,-17.17,0.34800000000000003,137.82,94.18,0.681981899254495 -1984-12-29,4.45,-9.045,0.3480079861111111,139.01,194.51,0.6711567897425189 -1984-12-30,0.0,-10.76,0.3484641203703704,162.5,180.71,0.6549191254745548 -1984-12-31,2.23,-9.9,0.3482361111111111,150.75,187.61,0.6386814612065905 -1985-01-01,7.15,-16.605,0.34921886574074074,134.64,101.0,0.6224437969386264 -1985-01-02,6.72,-13.365,0.35015162037037034,126.25,143.54,0.6116186874266503 -1985-01-03,0.0,-14.15,0.35120578703703703,164.54,129.93,0.5953810231586861 -1985-01-04,2.13,-11.58,0.3519482638888889,143.21,160.0,0.58455591364671 -1985-01-05,3.27,-11.42,0.35200787037037035,119.26,183.74,0.5737308041347339 -1985-01-06,0.0,-17.475,0.35284641203703704,143.09,119.83,0.5629056946227577 -1985-01-07,0.0,-20.285,0.3541518518518519,174.77,80.0,0.5520805851107816 -1985-01-08,0.02,-19.535,0.35571446759259256,171.27,80.0,0.5412554755988056 -1985-01-09,0.0,-18.525,0.35600000000000004,129.92,120.0,0.5304303660868295 -1985-01-10,0.0,-15.920000000000002,0.3564643518518519,112.06,143.76,0.5141927018188653 -1985-01-11,0.0,-16.240000000000002,0.35815185185185183,164.6,120.0,0.5087801470628772 -1985-01-12,0.0,-16.97,0.3599482638888889,164.51,120.0,0.4925424827949131 -1985-01-13,0.0,-16.285,0.36000787037037035,187.18,120.0,0.48171737328293696 -1985-01-14,0.19,-12.905000000000001,0.36121863425925926,177.98,160.0,0.47089226377096083 -1985-01-15,1.23,-10.155000000000001,0.3637142361111111,167.55,201.25,0.4600671542589847 -1985-01-16,0.0,-16.4,0.36400011574074076,167.51,119.79,0.44924204474700863 -1985-01-17,0.0,-21.22,0.36521898148148146,182.11,80.0,0.4384169352350325 -1985-01-18,0.0,-20.845,0.36771435185185186,231.74,53.53,0.4275918257230564 -1985-01-19,0.02,-18.175,0.3680083333333333,244.07,80.0,0.4167667162110803 -1985-01-20,4.55,-13.475,0.3696696759259259,140.58,147.86,0.40052905194311617 -1985-01-21,1.92,-17.235,0.3719483796296296,177.99,113.78,0.38970394243114004 -1985-01-22,0.0,-17.84,0.37211041666666667,236.35,80.0,0.37887883291916397 -1985-01-23,0.0,-11.425,0.3746479166666667,134.06,200.03,0.3680537234071878 -1985-01-24,0.0,-11.504999999999999,0.3760002314814815,177.86,184.92,0.3518160591392236 -1985-01-25,0.0,-16.48,0.3772188657407407,260.13,80.0,0.32475328535928333 -1985-01-26,0.0,-15.24,0.3799997685185186,223.67,120.0,0.30310306633533113 -1985-01-27,0.0,-14.465,0.3804640046296296,214.06,120.0,0.2814528473113789 -1985-01-28,0.0,-14.440000000000001,0.383714699074074,252.3,120.0,0.2598026282874267 -1985-01-29,0.0,-14.36,0.38400833333333334,253.32,119.61,0.23273985450748638 -1985-01-30,0.0,-14.719999999999999,0.3866476851851852,252.46,120.0,0.2165021902395222 -1985-01-31,0.02,-17.37,0.38799999999999996,287.43,80.0,0.21108963548353415 -1985-02-01,3.54,-12.855,0.3901519675925926,204.89,125.3,0.20026452597155808 -1985-02-02,2.31,-9.01,0.39200034722222227,168.94,226.15,0.19485197121557002 -1985-02-03,0.0,-14.790000000000001,0.3936696759259259,240.02,120.07,0.21108963548353415 -1985-02-04,0.0,-20.44,0.39600023148148145,299.27,43.82,0.2165021902395222 -1985-02-05,0.0,-23.355,0.3972188657407407,303.0,40.0,0.21108963548353415 -1985-02-06,0.0,-23.52,0.40000023148148145,297.35,40.0,0.21108963548353415 -1985-02-07,0.02,-21.66,0.4012189814814815,273.99,61.15,0.21108963548353415 -1985-02-08,2.68,-17.775,0.40399999999999997,239.79,80.0,0.21108963548353415 -1985-02-09,1.31,-9.835,0.40521898148148144,259.59,160.0,0.21108963548353415 -1985-02-10,0.0,-5.23,0.4080003472222223,149.19,331.78,0.20567708072754615 -1985-02-11,0.0,-5.404999999999999,0.40966990740740744,248.7,280.0,0.20567708072754615 -1985-02-12,0.0,-7.635000000000001,0.41200046296296294,328.76,160.0,0.20567708072754615 -1985-02-13,12.29,-1.7250000000000003,0.41464768518518513,141.07,409.89,0.2165021902395222 -1985-02-14,9.11,-0.09000000000000008,0.4159996527777778,88.53,521.51,0.23815240926347445 -1985-02-15,1.99,-3.895,0.419205324074074,190.91,334.83,0.292277956823355 -1985-02-16,1.7,-6.035,0.41999976851851856,196.86,287.94,0.29769051157934306 -1985-02-17,0.1,-10.174999999999999,0.42400011574074076,333.35,159.66,0.29769051157934306 -1985-02-18,0.94,-8.055,0.42400011574074076,234.86,240.0,0.30310306633533113 -1985-02-19,3.26,-12.585,0.428,272.89,120.0,0.3085156210913192 -1985-02-20,3.04,-10.44,0.42846388888888887,224.55,181.42,0.3085156210913192 -1985-02-21,0.23,-14.475000000000001,0.43200000000000005,380.73,80.0,0.3139281758473072 -1985-02-22,3.81,-6.555,0.4336695601851852,260.02,200.0,0.31934073060329526 -1985-02-23,3.36,-0.845,0.43600011574074077,119.11,480.29,0.31934073060329526 -1985-02-24,14.11,-2.315,0.4399488425925926,87.04,450.35,0.32475328535928333 -1985-02-25,14.94,-6.03,0.4400003472222222,141.22,308.37,0.3464035043832356 -1985-02-26,0.0,-9.355,0.4440001157407408,403.11,139.41,0.3680537234071878 -1985-02-27,2.75,-2.02,0.4440081018518519,207.81,393.01,0.38970394243114004 -1985-02-28,2.09,-10.71,0.4480001157407407,367.74,121.23,0.37887883291916397 -1985-03-01,0.06,-7.395,0.4501516203703704,387.5,199.52,0.37887883291916397 -1985-03-02,3.06,1.13,0.452,154.08,552.51,0.37346627816317585 -1985-03-03,0.0,-10.165,0.45599953703703705,334.6,185.46,0.37346627816317585 -1985-03-04,1.66,-18.475,0.45599953703703705,357.15,80.0,0.3680537234071878 -1985-03-05,8.55,-15.73,0.46,203.69,120.0,0.3626411686511997 -1985-03-06,0.0,-17.06,0.4604638888888889,433.48,80.0,0.40052905194311617 -1985-03-07,0.47,-14.945,0.463999537037037,454.65,80.0,0.39511649718712805 -1985-03-08,3.54,-3.75,0.46799976851851854,181.1,362.6,0.39511649718712805 -1985-03-09,0.0,-5.494999999999999,0.46799976851851854,430.85,238.46,0.38970394243114004 -1985-03-10,0.0,-2.3399999999999994,0.4719996527777777,439.57,280.19,0.384291387675152 -1985-03-11,0.03,-0.7949999999999999,0.4719996527777777,454.47,303.99,0.384291387675152 -1985-03-12,16.9,1.1050000000000002,0.4760001157407408,230.36,480.83,0.37887883291916397 -1985-03-13,11.89,1.0699999999999998,0.4800005787037037,97.53,593.71,0.4113541614550923 -1985-03-14,4.33,0.41000000000000003,0.4800005787037037,99.88,560.45,0.4546545995029967 -1985-03-15,1.91,-3.1399999999999997,0.4840002314814815,222.55,390.42,0.7577576658383279 -1985-03-16,0.0,-9.38,0.4840002314814815,358.93,204.88,0.8118832133982083 -1985-03-17,0.0,-9.96,0.48800034722222224,409.4,183.98,0.8064706586422203 -1985-03-18,0.0,-11.215,0.4919994212962963,419.08,160.0,0.8010581038862323 -1985-03-19,0.0,-12.675,0.4919994212962963,529.52,80.04,0.8010581038862323 -1985-03-20,0.06,-2.14,0.4959997685185185,391.63,347.07,0.7956455491302442 -1985-03-21,0.0,-10.515,0.4959997685185185,401.74,182.56,0.8118832133982083 -1985-03-22,0.0,-8.435,0.4999997685185186,466.01,195.42,0.8227083229101846 -1985-03-23,0.0,-2.8999999999999995,0.503999537037037,450.92,310.87,0.8335334324221606 -1985-03-24,0.0,-4.03,0.503999537037037,386.76,312.17,0.8443585419341366 -1985-03-25,0.0,-7.06,0.5079996527777778,387.29,250.34,0.8227083229101846 -1985-03-26,0.0,-6.915,0.5079996527777778,397.87,245.32,0.8118832133982083 -1985-03-27,0.97,-4.555,0.511999537037037,515.83,230.26,0.7902329943742561 -1985-03-28,2.54,1.9,0.5159998842592592,303.19,515.91,0.768582775350304 -1985-03-29,0.46,3.7649999999999997,0.5159998842592592,346.14,600.0,0.7469325563263517 -1985-03-30,0.0,1.8450000000000002,0.520000462962963,313.85,543.88,0.7274473592047948 -1985-03-31,0.03,-5.085,0.520000462962963,457.79,272.97,0.7241998263512018 -1985-04-01,3.62,-4.2250000000000005,0.5240002314814816,248.54,339.84,0.7382724687167708 -1985-04-02,2.87,-3.915,0.5279998842592593,305.98,320.16,0.7566751548871301 -1985-04-03,1.59,-1.0950000000000002,0.5279998842592593,317.82,440.05,0.7675002643991063 -1985-04-04,2.77,0.72,0.5319998842592593,227.39,526.26,0.7750778410574897 -1985-04-05,3.25,-2.06,0.5319998842592593,342.84,378.17,0.7804903958134776 -1985-04-06,6.04,2.04,0.5359994212962963,275.1,556.42,0.8237908338613822 -1985-04-07,2.64,1.9150000000000003,0.5395353009259259,242.49,575.01,0.8692562938116817 -1985-04-08,0.0,0.17499999999999982,0.54,458.57,440.67,0.8854939580796459 -1985-04-09,0.0,-4.5,0.5439997685185185,530.97,279.77,0.9103917099571911 -1985-04-10,0.01,-6.194999999999999,0.5439997685185185,569.41,239.96,0.9363719727859338 -1985-04-11,0.96,-2.035,0.5479999999999999,501.76,360.0,0.9634347465658739 -1985-04-12,0.0,-5.56,0.5498481481481481,540.07,254.57,0.9775073889314428 -1985-04-13,0.0,-7.335,0.5520004629629629,494.63,239.36,0.9796724108338379 -1985-04-14,0.41,-7.4,0.5559922453703704,598.43,177.73,0.9883324984434189 -1985-04-15,9.4,1.295,0.5560002314814815,394.47,440.16,1.0392105131497067 -1985-04-16,7.61,8.12,0.56,362.41,745.63,1.2448875938772528 -1985-04-17,2.33,-3.8550000000000004,0.5600517361111111,477.26,280.59,1.6237664267964167 -1985-04-18,0.0,-3.87,0.5639996527777777,573.19,273.28,1.851093726547915 -1985-04-19,0.0,1.63,0.5663305555555556,480.66,479.93,2.0892461358113894 -1985-04-20,0.0,2.225,0.5679997685185185,600.27,403.56,2.359873873610792 -1985-04-21,0.0,2.5450000000000004,0.5715351851851852,604.94,405.2,2.72792759701798 -1985-04-22,0.0,2.435,0.5719994212962963,619.21,374.05,3.1284566489610963 -1985-04-23,0.0,2.1399999999999997,0.5760005787037037,598.94,398.28,3.561461029440141 -1985-04-24,0.0,2.24,0.5760005787037037,623.82,361.38,4.026940738455114 -1985-04-25,0.0,4.795,0.5800003472222222,635.44,389.67,4.557371104541943 -1985-04-26,0.0,8.92,0.5807946759259259,611.12,560.22,5.250178113308414 -1985-04-27,0.0,7.01,0.5840005787037037,616.78,484.05,6.48424059767369 -1985-04-28,0.03,7.1,0.5853530092592593,592.5,528.02,7.20952293497609 -1985-04-29,0.0,7.275,0.5880002314814815,475.79,690.35,7.577576658383278 -1985-04-30,0.32,5.965,0.5903311342592593,520.95,584.57,7.761603520086872 -1985-05-01,1.66,7.385,0.5920008101851852,395.93,751.34,7.880679724718609 -1985-05-02,0.0,4.0,0.5943310185185184,590.02,437.57,7.869854615206632 -1985-05-03,0.0,4.385,0.5959997685185184,505.3,537.74,7.675002643991063 -1985-05-04,0.0,2.2100000000000004,0.5987809027777777,539.42,436.37,7.393549796679685 -1985-05-05,0.0,3.4250000000000003,0.5999998842592592,554.52,451.69,7.090446730344353 -1985-05-06,0.0,4.42,0.6027810185185185,630.22,362.44,6.798168773520998 -1985-05-07,3.7,7.185,0.6039996527777778,398.52,641.22,6.311038845482074 -1985-05-08,4.13,3.6900000000000004,0.6063304398148148,305.42,572.06,5.7806084793952435 -1985-05-09,0.72,2.895,0.6079995370370371,537.61,428.15,5.380079427452127 -1985-05-10,4.24,11.075000000000001,0.6098476851851852,398.73,802.71,5.055326142092844 -1985-05-11,0.57,9.55,0.6120002314814815,509.67,698.02,4.795523513805417 -1985-05-12,7.05,6.58,0.6133524305555556,304.67,690.93,4.568196214053919 -1985-05-13,14.63,5.825,0.6159914351851852,187.78,761.54,4.48159533795811 -1985-05-14,13.26,6.875,0.6162851851851852,391.67,639.85,4.665622199661704 -1985-05-15,0.0,6.819999999999999,0.6195356481481481,614.21,469.19,4.557371104541943 -1985-05-16,1.49,9.685,0.6199998842592592,606.61,493.34,4.449120009422182 -1985-05-17,4.55,13.74,0.6227818287037037,335.07,1068.45,4.330043804790445 -1985-05-18,6.57,11.684999999999999,0.6240006944444445,226.06,1086.7,4.146016943086851 -1985-05-19,7.09,9.61,0.6253526620370371,304.69,848.36,4.113541614550923 -1985-05-20,1.88,11.235,0.6278895833333333,502.47,714.94,3.9836403004072087 -1985-05-21,1.41,14.365,0.6280518518518519,456.05,1025.69,3.8537389862634956 -1985-05-22,0.0,11.26,0.6303303240740741,523.76,781.57,3.713012562607806 -1985-05-23,0.66,9.765,0.6319916666666667,584.51,559.6,3.5398108104161885 -1985-05-24,0.98,11.415,0.6322856481481481,562.59,630.02,3.3774341677365465 -1985-05-25,4.21,13.295,0.6347809027777778,404.42,913.2,3.2042324155449293 -1985-05-26,3.71,9.680000000000001,0.6360001157407408,423.83,673.17,3.0202055538413353 -1985-05-27,7.12,7.435,0.6362856481481481,324.05,707.31,2.9552548967694783 -1985-05-28,2.44,9.8,0.6387810185185185,374.18,857.13,2.9119544587215738 -1985-05-29,0.0,8.700000000000001,0.6399917824074074,616.36,459.12,2.7820531445778607 -1985-05-30,0.49,14.344999999999999,0.6400512731481481,559.14,749.25,2.6521518304341467 -1985-05-31,1.77,16.240000000000002,0.6418483796296296,464.75,1065.86,2.522250516290434 -1985-06-01,5.52,16.27,0.6435354166666667,230.65,1416.86,2.424824530682649 -1985-06-02,2.08,16.384999999999998,0.6439998842592592,378.04,1257.86,2.33822365458684 -1985-06-03,0.0,17.23,0.6442856481481481,426.86,1271.05,2.219147449955103 -1985-06-04,0.0,10.985,0.6458482638888889,536.92,651.91,2.0784210262994134 -1985-06-05,2.07,8.835,0.6471538194444444,508.92,551.72,1.9593448216676759 -1985-06-06,8.23,10.31,0.6479927083333333,243.42,935.39,1.8943941645958196 -1985-06-07,4.0,11.594999999999999,0.6480521990740741,471.23,736.2,1.8402686170359388 -1985-06-08,0.0,13.524999999999999,0.6487947916666666,559.95,666.36,1.7753179599640823 -1985-06-09,1.25,16.74,0.6498487268518519,468.17,1031.41,1.7103673028922255 -1985-06-10,5.37,16.825,0.6507814814814814,244.61,1409.36,1.656241755332345 -1985-06-11,0.45,11.415000000000001,0.6515357638888889,375.7,924.67,1.5588157697245602 -1985-06-12,0.33,9.16,0.6519921296296297,372.79,796.66,1.4938651126527034 -1985-06-13,10.0,9.649999999999999,0.6520001157407407,149.11,1001.6,1.4289144555808466 -1985-06-14,11.6,9.615,0.6520517361111111,288.91,816.46,1.4289144555808466 -1985-06-15,1.26,12.545,0.6522856481481482,425.19,880.27,1.3747889080209663 -1985-06-16,0.04,14.004999999999999,0.6527943287037037,480.69,870.97,1.3206633604610856 -1985-06-17,0.07,16.055,0.653352662037037,471.9,985.94,1.277362922413181 -1985-06-18,8.57,15.260000000000002,0.653848611111111,236.77,1291.94,1.2448875938772528 -1985-06-19,7.37,14.5,0.653848611111111,172.18,1348.08,1.2448875938772528 -1985-06-20,3.55,15.235,0.653848611111111,223.43,1339.63,1.2015871558293483 -1985-06-21,0.0,14.77,0.6543310185185185,390.9,1155.38,1.1474616082694677 -1985-06-22,0.0,15.985,0.6543310185185185,491.87,966.69,1.1041611702215632 -1985-06-23,3.13,16.560000000000002,0.653848611111111,377.53,1214.36,1.0706033307344374 -1985-06-24,8.95,16.7,0.653848611111111,195.71,1517.15,1.048953111710485 -1985-06-25,6.53,12.45,0.653352662037037,190.62,1176.97,0.9904975203458142 -1985-06-26,2.35,13.52,0.653352662037037,272.61,1205.87,0.9569396808586882 -1985-06-27,0.0,13.045,0.6527943287037037,502.85,820.57,0.9190517975667719 -1985-06-28,0.0,15.79,0.6522856481481482,376.77,1284.96,0.882246425226053 -1985-06-29,2.95,16.115000000000002,0.6520517361111111,307.56,1362.96,0.8584311842997057 -1985-06-30,2.64,16.94,0.6519921296296297,410.42,1206.62,0.8281208776661725 -1985-07-01,0.0,17.725,0.6518894675925926,525.3,963.51,0.7956455491302442 -1985-07-02,0.0,20.03,0.6511538194444445,478.85,1305.68,0.768582775350304 -1985-07-03,3.77,18.83,0.6503311342592593,313.43,1499.82,0.7620877096431182 -1985-07-04,2.91,18.845,0.6493528935185184,387.2,1413.03,0.7956455491302442 -1985-07-05,0.0,20.125,0.6482863425925927,482.39,1303.63,0.7902329943742561 -1985-07-06,10.85,21.625,0.6480008101851852,370.14,1655.59,0.7913155053254537 -1985-07-07,19.83,20.085,0.647890162037037,252.57,1743.87,0.8833289361772506 -1985-07-08,13.7,16.445,0.64678125,213.17,1476.58,1.0208078269793472 -1985-07-09,0.0,17.325,0.645352199074074,440.22,1307.51,1.007817695564976 -1985-07-10,21.92,19.005,0.6440515046296297,297.98,1532.85,1.1366364987574917 -1985-07-11,15.19,17.81,0.6438894675925926,236.63,1570.33,1.461389784116775 -1985-07-12,0.0,13.535,0.6427809027777778,489.87,921.03,1.4397395650928229 -1985-07-13,0.0,15.47,0.6407940972222222,500.18,984.15,1.461389784116775 -1985-07-14,3.46,18.085,0.6399997685185186,372.09,1363.06,1.461389784116775 -1985-07-15,15.83,20.685,0.6395354166666667,266.7,1767.65,1.5155153316766559 -1985-07-16,15.92,21.275,0.6378482638888888,250.56,1878.52,1.8727439455718675 -1985-07-17,0.0,19.29,0.6360001157407408,425.5,1472.84,2.0675959167874374 -1985-07-18,0.0,18.185,0.6355359953703703,475.86,1253.72,2.0892461358113894 -1985-07-19,0.9,18.77,0.6338483796296296,354.27,1549.41,2.035120588251509 -1985-07-20,2.84,19.965,0.6319996527777777,281.2,1728.56,1.9376946026437238 -1985-07-21,0.0,18.655,0.6315355324074073,412.97,1428.11,1.8402686170359388 -1985-07-22,4.62,18.55,0.6287943287037038,355.21,1419.32,1.7211924124042017 -1985-07-23,1.27,16.06,0.628,410.39,1193.66,1.5696408792365362 -1985-07-24,0.0,14.030000000000001,0.6267813657407407,481.89,926.64,1.4505646746047989 -1985-07-25,0.0,18.575,0.624052199074074,468.42,1259.54,1.3423135794850378 -1985-07-26,18.75,21.35,0.6238902777777778,337.4,1693.79,1.2990131414371333 -1985-07-27,19.81,17.9,0.6207944444444444,274.85,1441.44,1.75366774094013 -1985-07-28,0.04,13.42,0.6199998842592592,440.14,950.22,1.7861430694760585 -1985-07-29,6.22,16.965,0.6183303240740741,265.93,1373.84,1.829443507523963 -1985-07-30,5.3,17.62,0.615999537037037,230.31,1521.19,1.7969681789880345 -1985-07-31,4.68,13.525,0.6151532407407407,381.63,961.21,1.7320175219161775 -1985-08-01,10.85,14.280000000000001,0.6120002314814815,213.79,1277.04,1.75366774094013 -1985-08-02,0.0,13.985,0.6115356481481482,459.98,952.58,1.7103673028922255 -1985-08-03,0.0,16.5,0.6080510416666667,479.71,1058.03,1.6454166458203692 -1985-08-04,0.0,18.585,0.6078891203703704,474.25,1214.99,1.5696408792365362 -1985-08-05,0.0,20.380000000000003,0.6042853009259259,449.22,1418.74,1.4830400031407271 -1985-08-06,0.0,20.33,0.6039916666666666,457.72,1371.32,1.3964391270449183 -1985-08-07,0.0,20.669999999999998,0.6002854166666667,410.04,1553.38,1.3098382509491096 -1985-08-08,11.27,18.89,0.5999998842592592,233.17,1612.3,1.2448875938772528 -1985-08-09,0.0,17.085,0.5962851851851851,403.68,1269.54,1.16911182729342 -1985-08-10,0.0,16.845,0.5959997685185184,472.45,1033.93,1.0814284402464136 -1985-08-11,0.87,19.355,0.5920523148148148,412.3,1319.22,1.013230250320964 -1985-08-12,0.03,16.54,0.591992824074074,382.49,1258.76,0.9331244399323408 -1985-08-13,0.0,11.43,0.5880002314814815,423.17,824.52,0.8660087609580888 -1985-08-14,0.0,17.875,0.5879922453703703,407.45,1290.83,0.8216258119589868 -1985-08-15,5.24,21.21,0.5840005787037037,252.53,1821.28,0.7794078848622801 -1985-08-16,5.88,19.22,0.5835359953703704,226.8,1630.83,0.7588401767895254 -1985-08-17,0.0,15.345,0.5800003472222222,322.5,1264.16,0.6971370525712616 -1985-08-18,0.0,12.5,0.5787818287037036,456.18,800.23,0.643011505011381 -1985-08-19,0.82,14.96,0.5760005787037037,413.38,982.31,0.6116186874266503 -1985-08-20,2.69,16.78,0.5738478009259259,288.68,1353.55,0.5834734026955124 -1985-08-21,0.77,16.435000000000002,0.5719994212962963,294.2,1360.09,0.5574931398667697 -1985-08-22,0.0,13.31,0.5680513888888888,422.14,909.8,0.5304303660868295 -1985-08-23,3.29,13.04,0.5679997685185185,349.58,866.04,0.4979550375509011 -1985-08-24,3.21,14.79,0.5639996527777777,312.8,1086.11,0.48171737328293696 -1985-08-25,1.61,14.504999999999999,0.5639916666666667,359.05,1077.91,0.4600671542589847 -1985-08-26,0.01,15.120000000000001,0.56,222.88,1370.77,0.44382948999102056 -1985-08-27,6.64,16.875,0.558330324074074,132.65,1613.02,0.4330043804790444 -1985-08-28,4.84,17.68,0.5560002314814815,179.95,1586.04,0.44924204474700863 -1985-08-29,0.0,12.285,0.5520519675925926,405.78,866.37,0.4221792709670683 -1985-08-30,0.0,9.155,0.5520004629629629,428.38,647.83,0.40052905194311617 -1985-08-31,0.0,11.29,0.5479999999999999,392.61,810.32,0.384291387675152 -1985-09-01,0.0,11.270000000000001,0.5479921296296296,426.35,735.63,0.3680537234071878 -1985-09-02,1.55,13.52,0.5439997685185185,304.49,1059.09,0.3518160591392236 -1985-09-03,2.65,10.095,0.540794212962963,338.5,757.82,0.3464035043832356 -1985-09-04,7.28,11.39,0.54,162.12,1083.56,0.3464035043832356 -1985-09-05,5.36,12.735,0.5359994212962963,154.94,1207.02,0.3518160591392236 -1985-09-06,0.7,14.26,0.5359994212962963,241.21,1278.74,0.3464035043832356 -1985-09-07,0.0,15.905,0.5319998842592593,279.8,1346.95,0.3409909496272475 -1985-09-08,0.0,14.45,0.5298482638888888,338.43,1129.44,0.3301658401152714 -1985-09-09,0.0,10.545,0.5279998842592593,397.26,767.03,0.3139281758473072 -1985-09-10,10.63,8.06,0.5240002314814816,237.48,760.31,0.30310306633533113 -1985-09-11,7.52,7.734999999999999,0.5240002314814816,172.09,834.74,0.3139281758473072 -1985-09-12,0.0,5.785,0.520000462962963,382.28,568.55,0.30310306633533113 -1985-09-13,0.0,7.215000000000001,0.5183310185185186,379.49,628.84,0.292277956823355 -1985-09-14,0.0,8.9,0.5159998842592592,381.29,703.27,0.2814528473113789 -1985-09-15,0.0,11.275,0.511999537037037,390.83,785.03,0.2706277377994028 -1985-09-16,0.0,11.445,0.511999537037037,403.13,727.8,0.26521518304341474 -1985-09-17,0.0,12.775,0.5079996527777778,399.13,794.81,0.2543900735314386 -1985-09-18,0.0,13.71,0.5067805555555556,395.63,836.41,0.24897751877545055 -1985-09-19,0.0,17.14,0.503999537037037,361.43,1172.87,0.2435649640194625 -1985-09-20,0.0,20.24,0.4999997685185186,344.21,1437.47,0.23815240926347445 -1985-09-21,0.0,18.509999999999998,0.4999997685185186,281.89,1490.77,0.23273985450748638 -1985-09-22,0.0,10.035,0.4959997685185185,372.51,690.15,0.22732729975149835 -1985-09-23,0.0,12.86,0.49366840277777774,343.65,911.09,0.22191474499551028 -1985-09-24,6.91,15.125,0.4919994212962963,291.35,1047.58,0.2435649640194625 -1985-09-25,10.2,14.975000000000001,0.48800034722222224,182.18,1262.62,0.2706277377994028 -1985-09-26,1.39,10.675,0.48800034722222224,335.91,735.51,0.2165021902395222 -1985-09-27,19.94,12.31,0.4840002314814815,187.61,1022.2,0.24897751877545055 -1985-09-28,21.55,13.17,0.48167002314814816,147.06,1193.18,0.5196052565748533 -1985-09-29,0.0,11.41,0.4800005787037037,282.26,912.8,0.4600671542589847 -1985-09-30,0.32,14.075,0.4760001157407408,250.73,1143.53,0.4275918257230564 -1985-10-01,6.31,12.875,0.4760001157407408,151.09,1160.92,0.4113541614550923 -1985-10-02,6.91,12.05,0.4719996527777777,120.77,1166.19,0.4330043804790444 -1985-10-03,0.0,7.73,0.4701513888888889,310.68,640.93,0.4384169352350325 -1985-10-04,0.03,7.86,0.46799976851851854,327.6,601.47,0.4275918257230564 -1985-10-05,7.6,10.525,0.463999537037037,173.79,924.01,0.4221792709670683 -1985-10-06,6.76,9.945,0.463999537037037,142.2,943.67,0.4330043804790444 -1985-10-07,0.04,7.54,0.46,251.9,719.13,0.44382948999102056 -1985-10-08,0.0,5.805,0.45920532407407405,310.09,529.42,0.4330043804790444 -1985-10-09,1.79,9.77,0.45599953703703705,187.89,912.32,0.42975684762545163 -1985-10-10,7.94,7.775,0.45200810185185186,119.55,852.62,0.4232617819182659 -1985-10-11,5.42,3.4,0.452,126.46,610.2,0.42542680382066117 -1985-10-12,0.0,2.48,0.4480001157407407,215.18,533.55,0.41568420525988264 -1985-10-13,0.63,0.7850000000000001,0.4480001157407407,251.03,426.49,0.40918913955269703 -1985-10-14,4.54,5.465,0.4440001157407408,127.59,720.29,0.40918913955269703 -1985-10-15,10.97,7.390000000000001,0.44166932870370373,93.98,875.25,0.40918913955269703 -1985-10-16,4.95,6.995,0.4400003472222222,135.4,807.5,0.4275918257230564 -1985-10-17,0.13,2.915,0.43611064814814815,229.18,535.45,0.41351918335748744 -1985-10-18,1.44,2.76,0.43600011574074077,276.81,426.87,0.41243667240628984 -1985-10-19,0.0,8.585,0.43200000000000005,253.55,744.61,0.40702411765030183 -1985-10-20,0.0,5.2250000000000005,0.43194837962962956,210.97,643.48,0.3853738986263496 -1985-10-21,0.0,2.965,0.428,251.13,500.22,0.3821263657727567 -1985-10-22,0.0,5.865,0.4261517361111111,279.72,541.9,0.3767138110167687 -1985-10-23,0.0,7.15,0.42400011574074076,291.15,507.31,0.3691362343583854 -1985-10-24,2.37,8.64,0.42121863425925926,243.77,576.98,0.3658887015047926 -1985-10-25,2.89,9.415,0.41999976851851856,173.04,810.59,0.3680537234071878 -1985-10-26,0.0,5.22,0.4164640046296296,192.65,648.14,0.34748601533443313 -1985-10-27,0.88,5.1450000000000005,0.4159996527777778,228.5,550.73,0.34748601533443313 -1985-10-28,0.86,3.17,0.4121109953703704,194.7,556.67,0.33666090582245706 -1985-10-29,0.0,-1.7349999999999999,0.41200046296296294,159.94,421.19,0.31284566489610965 -1985-10-30,0.0,-0.5099999999999998,0.4080084490740741,214.78,397.47,0.311763153944912 -1985-10-31,0.0,0.355,0.40794895833333333,211.45,423.68,0.30310306633533113 -1985-11-01,0.0,1.6799999999999997,0.40399999999999997,217.51,452.78,0.2890304239697622 -1985-11-02,0.0,4.39,0.4037145833333334,140.81,649.0,0.28578289111616934 -1985-11-03,0.0,2.56,0.40000023148148145,162.32,559.14,0.2825353582625765 -1985-11-04,0.0,0.9100000000000001,0.39971435185185183,229.48,394.94,0.2771228035065884 -1985-11-05,8.7,2.13,0.3960082175925926,143.94,488.51,0.2771228035065884 -1985-11-06,20.69,5.4799999999999995,0.39571446759259266,61.18,795.04,0.292277956823355 -1985-11-07,14.52,5.455,0.3921108796296296,50.95,810.94,0.5174402346724581 -1985-11-08,7.41,4.76,0.3919487268518519,74.17,730.45,0.6917244978152736 -1985-11-09,0.78,0.53,0.3884644675925926,140.83,485.87,0.754510132984735 -1985-11-10,3.86,-1.675,0.38799999999999996,79.07,442.46,0.837863476226951 -1985-11-11,0.1,-5.025,0.3848466435185185,119.53,338.59,0.8909065128356339 -1985-11-12,7.71,-8.44,0.3840003472222222,181.77,196.59,0.9363719727859338 -1985-11-13,6.35,-2.9899999999999998,0.38166932870370374,114.95,375.05,0.9991576079553951 -1985-11-14,3.28,-4.715,0.3799997685185186,134.84,312.5,1.0229728488817424 -1985-11-15,3.28,-5.035,0.37920590277777777,91.26,347.63,1.0305504255401257 -1985-11-16,0.52,-7.405,0.37611087962962964,206.49,221.58,1.0337979583937187 -1985-11-17,5.18,-5.125,0.3759486111111111,163.58,253.84,1.0500356226616827 -1985-11-18,1.98,0.8400000000000001,0.37321898148148147,84.27,560.45,1.060860732173659 -1985-11-19,3.38,-1.215,0.3719998842592593,122.25,433.85,1.0597782212224613 -1985-11-20,3.02,3.08,0.37120578703703705,133.64,560.68,1.0933360607095872 -1985-11-21,0.0,2.1550000000000002,0.3684645833333333,125.31,580.27,1.1149862797335395 -1985-11-22,5.86,-4.14,0.3680003472222222,127.45,343.37,1.1149862797335395 -1985-11-23,5.38,-4.58,0.36615196759259255,72.66,370.31,1.1366364987574917 -1985-11-24,2.26,-4.75,0.3644642361111111,125.83,347.1,1.1258113892455155 -1985-11-25,0.65,-7.2250000000000005,0.36400011574074076,150.5,276.65,1.0825109511976112 -1985-11-26,0.0,-11.02,0.3621513888888889,198.46,172.4,1.0532831555152757 -1985-11-27,0.0,-9.37,0.3604638888888889,183.63,207.36,1.0294679145889283 -1985-11-28,0.0,-9.415,0.3599998842592593,133.53,240.8,0.9872499874922213 -1985-11-29,0.0,-12.735,0.35920578703703704,192.67,158.75,0.9342069508835384 -1985-11-30,0.0,-10.17,0.3572189814814815,196.94,179.72,0.9006491113964125 -1985-12-01,1.78,-7.555,0.35611041666666665,197.27,199.78,0.8800814033236579 -1985-12-02,9.63,-0.3849999999999998,0.3559483796296296,144.85,376.14,0.9190517975667719 -1985-12-03,0.0,-6.97,0.3546476851851852,174.4,253.76,0.9147217537619815 -1985-12-04,0.0,-11.18,0.35321898148148145,157.81,193.24,0.8984840894940173 -1985-12-05,0.02,-10.42,0.35211030092592593,182.07,193.87,0.9093091990059934 -1985-12-06,0.0,-10.105,0.35199988425925927,183.84,196.13,0.8497710966901247 -1985-12-07,0.0,-11.68,0.35171423611111113,191.68,160.0,0.8281208776661725 -1985-12-08,0.0,-9.305,0.3506474537037037,178.65,200.32,0.8010581038862323 -1985-12-09,0.0,-8.674999999999999,0.34966921296296294,176.6,202.19,0.7718303082038968 -1985-12-10,0.0,-7.375,0.3488465277777778,149.4,249.22,0.7555926439359325 -1985-12-11,0.3,-7.025,0.3481105324074074,145.88,265.9,0.7382724687167708 -1985-12-12,0.8,-7.57,0.3480079861111111,123.92,273.32,0.7177047606440161 -1985-12-13,6.14,-10.865,0.34794849537037037,134.1,160.05,0.6949720306688663 -1985-12-14,7.32,-7.775,0.34771435185185184,107.57,250.4,0.6971370525712616 -1985-12-15,1.11,-16.81,0.3472057870370371,190.19,80.0,0.6614141911817405 -1985-12-16,2.55,-15.364999999999998,0.3466476851851852,149.21,120.17,0.6495065707185667 -1985-12-17,2.96,-16.01,0.3466476851851852,149.57,105.86,0.6440940159625786 -1985-12-18,1.49,-15.48,0.3461518518518519,172.64,119.01,0.6170312421826384 -1985-12-19,0.0,-20.1,0.3461518518518519,181.89,80.0,0.6116186874266503 -1985-12-20,0.0,-22.09,0.3456693287037037,191.89,40.0,0.58455591364671 -1985-12-21,0.0,-20.215,0.3456693287037037,186.15,80.0,0.5629056946227577 -1985-12-22,0.79,-19.369999999999997,0.3461518518518519,184.99,80.0,0.5520805851107816 -1985-12-23,3.65,-15.295,0.3461518518518519,148.93,87.22,0.5304303660868295 -1985-12-24,3.31,-6.545,0.3461518518518519,112.76,271.22,0.5196052565748533 -1985-12-25,4.16,-4.074999999999999,0.3466476851851852,110.23,313.32,0.5087801470628772 -1985-12-26,2.39,-17.14,0.3472057870370371,133.24,109.79,0.487129928038925 -1985-12-27,0.03,-19.195,0.34771435185185184,192.33,80.0,0.4763048185269489 -1985-12-28,0.19,-9.975,0.34794849537037037,94.63,233.72,0.46547970901497276 -1985-12-29,0.03,-13.17,0.34800000000000003,163.3,134.48,0.4546545995029967 -1985-12-30,0.44,-14.424999999999999,0.3480079861111111,171.29,120.15,0.44382948999102056 -1985-12-31,0.21,-12.04,0.3484641203703704,194.98,120.0,0.4330043804790444 -1986-01-01,0.21,-8.345,0.34921886574074074,153.6,214.06,0.4221792709670683 -1986-01-02,0.85,-14.68,0.35015162037037034,194.29,85.06,0.4113541614550923 -1986-01-03,17.28,-17.0,0.35120578703703703,134.23,90.83,0.40052905194311617 -1986-01-04,12.55,-17.78,0.3519482638888889,82.49,120.0,0.38970394243114004 -1986-01-05,9.45,-19.63,0.35200787037037035,145.35,80.0,0.37887883291916397 -1986-01-06,3.53,-15.795,0.35284641203703704,128.07,120.0,0.3680537234071878 -1986-01-07,0.0,-17.39,0.3541518518518519,150.73,111.53,0.35722861389521166 -1986-01-08,0.0,-16.805,0.35571446759259256,148.33,120.0,0.3518160591392236 -1986-01-09,0.91,-13.735000000000001,0.35600000000000004,206.28,120.0,0.3409909496272475 -1986-01-10,0.61,-6.295,0.3564643518518519,139.94,276.97,0.33557839487125946 -1986-01-11,0.59,-12.265,0.35815185185185183,214.56,125.86,0.32475328535928333 -1986-01-12,0.68,-9.695,0.3599482638888889,222.38,151.71,0.31934073060329526 -1986-01-13,0.6,-7.31,0.36000787037037035,180.91,228.37,0.3085156210913192 -1986-01-14,0.0,-20.71,0.36121863425925926,189.09,77.58,0.30310306633533113 -1986-01-15,0.0,-25.695,0.3637142361111111,193.07,40.0,0.29769051157934306 -1986-01-16,0.0,-19.43,0.36400011574074076,206.21,80.0,0.28686540206736694 -1986-01-17,0.0,-11.965,0.36521898148148146,252.82,84.95,0.2814528473113789 -1986-01-18,0.0,-0.6150000000000002,0.36771435185185186,141.54,438.77,0.2760402925553908 -1986-01-19,8.19,-0.0900000000000003,0.3680083333333333,152.4,417.73,0.2706277377994028 -1986-01-20,16.73,1.355,0.3696696759259259,68.69,567.07,0.37887883291916397 -1986-01-21,4.15,-1.5,0.3719483796296296,81.65,450.58,0.4330043804790444 -1986-01-22,2.19,-5.75,0.37211041666666667,172.42,266.64,0.487129928038925 -1986-01-23,0.98,-12.36,0.3746479166666667,193.66,153.93,0.4763048185269489 -1986-01-24,0.0,-21.785,0.3760002314814815,202.37,80.0,0.48171737328293696 -1986-01-25,5.5,-20.055,0.3772188657407407,229.95,40.0,0.5412554755988056 -1986-01-26,14.6,-7.525,0.3799997685185186,212.37,138.1,0.681981899254495 -1986-01-27,21.26,5.035,0.3804640046296296,137.78,621.93,0.8660087609580888 -1986-01-28,14.6,-8.015,0.383714699074074,187.49,192.46,1.0825109511976112 -1986-01-29,1.9,-17.155,0.38400833333333334,224.06,80.0,1.3964391270449183 -1986-01-30,0.0,-17.16,0.3866476851851852,259.08,80.0,1.8727439455718675 -1986-01-31,0.0,-16.855,0.38799999999999996,224.54,120.0,2.413999421170673 -1986-02-01,0.71,-18.525,0.3901519675925926,271.77,80.0,2.7062773779940277 -1986-02-02,4.8,-13.615,0.39200034722222227,197.03,120.0,2.6521518304341467 -1986-02-03,0.0,-11.844999999999999,0.3936696759259259,162.92,189.58,2.5980262828742666 -1986-02-04,0.0,-18.265,0.39600023148148145,304.22,80.0,2.543900735314386 -1986-02-05,2.41,-12.465,0.3972188657407407,261.78,120.68,2.4897751877545056 -1986-02-06,0.35,-14.094999999999999,0.40000023148148145,270.81,119.8,2.3815240926347445 -1986-02-07,0.0,-16.205,0.4012189814814815,278.33,100.91,2.3057483260509115 -1986-02-08,0.0,-15.445,0.40399999999999997,321.04,80.29,2.229972559467079 -1986-02-09,0.0,-12.075000000000001,0.40521898148148144,255.39,160.0,2.154196792883246 -1986-02-10,0.0,-10.365,0.4080003472222223,269.24,162.36,2.0784210262994134 -1986-02-11,0.0,-11.78,0.40966990740740744,312.03,129.04,1.9809950406916284 -1986-02-12,0.0,-12.29,0.41200046296296294,289.83,143.06,1.8943941645958196 -1986-02-13,0.0,-11.71,0.41464768518518513,190.7,191.97,1.8077932885000105 -1986-02-14,0.1,-14.785,0.4159996527777778,349.67,80.69,1.7320175219161775 -1986-02-15,0.0,-12.525,0.419205324074074,337.77,120.12,1.6345915363083927 -1986-02-16,0.0,-11.77,0.41999976851851856,290.59,160.0,1.547990660212584 -1986-02-17,0.0,-14.035,0.42400011574074076,359.75,100.49,1.4938651126527034 -1986-02-18,0.0,-10.64,0.42400011574074076,318.2,161.42,1.3856140175329423 -1986-02-19,0.0,-6.0200000000000005,0.428,296.21,247.74,1.3098382509491096 -1986-02-20,0.03,-6.739999999999999,0.42846388888888887,385.03,160.0,1.2448875938772528 -1986-02-21,6.36,-3.7800000000000002,0.43200000000000005,217.37,292.43,1.1907620463173723 -1986-02-22,0.75,-10.045,0.4336695601851852,300.97,177.37,1.158286717781444 -1986-02-23,0.0,-14.835,0.43600011574074077,394.65,80.0,1.1149862797335395 -1986-02-24,0.0,-9.18,0.4399488425925926,339.22,176.04,1.0673557978808446 -1986-02-25,2.42,-10.155000000000001,0.4400003472222222,309.98,160.0,0.9959100751018022 -1986-02-26,2.6,-10.025,0.4440001157407408,178.41,221.58,0.9417845275419217 -1986-02-27,0.0,-11.985,0.4440081018518519,203.87,189.81,0.8984840894940173 -1986-02-28,0.0,-14.135,0.4480001157407407,399.17,120.0,0.8660087609580888 -1986-03-01,0.0,-9.545,0.4501516203703704,380.76,165.89,0.8281208776661725 -1986-03-02,0.0,-10.079999999999998,0.452,427.38,120.39,0.7848204396182681 -1986-03-03,0.0,-8.625,0.45599953703703705,425.97,160.0,0.7469325563263517 -1986-03-04,0.0,-8.629999999999999,0.45599953703703705,450.2,123.14,0.6982195635224592 -1986-03-05,0.03,-3.92,0.46,347.94,280.0,0.6603316802305428 -1986-03-06,1.89,-11.004999999999999,0.4604638888888889,387.31,133.56,0.6170312421826384 -1986-03-07,6.32,-11.55,0.463999537037037,150.71,200.0,0.579143358890722 -1986-03-08,1.37,-14.715,0.46799976851851854,271.79,135.97,0.5683182493787459 -1986-03-09,0.0,-14.91,0.46799976851851854,428.14,101.07,0.5574931398667697 -1986-03-10,16.0,-15.44,0.4719996527777777,335.93,80.0,0.5466680303547936 -1986-03-11,10.39,-10.825,0.4719996527777777,247.68,179.34,0.5412554755988056 -1986-03-12,0.0,-9.754999999999999,0.4760001157407408,363.91,190.62,0.5358429208428175 -1986-03-13,0.0,-13.855,0.4800005787037037,524.52,80.0,0.5358429208428175 -1986-03-14,2.5,-3.64,0.4800005787037037,166.06,386.46,0.5304303660868295 -1986-03-15,5.24,-3.035,0.4840002314814815,94.2,434.26,0.5304303660868295 -1986-03-16,3.43,-3.115,0.4840002314814815,201.81,373.48,0.5520805851107816 -1986-03-17,0.0,-4.41,0.48800034722222224,454.22,253.81,0.5953810231586861 -1986-03-18,0.0,-1.605,0.4919994212962963,437.98,328.92,0.6137837093290455 -1986-03-19,5.49,1.375,0.4919994212962963,301.39,440.24,0.6213612859874288 -1986-03-20,0.0,-8.545,0.4959997685185185,485.32,180.48,0.6332689064506025 -1986-03-21,0.0,-14.915,0.4959997685185185,510.45,96.98,0.6332689064506025 -1986-03-22,0.0,-9.63,0.4999997685185186,518.84,156.12,0.6278563516946144 -1986-03-23,0.03,-2.365,0.503999537037037,471.79,300.39,0.6062061326706623 -1986-03-24,1.63,-5.6850000000000005,0.503999537037037,313.84,291.19,0.5672357384275483 -1986-03-25,1.89,-7.654999999999999,0.5079996527777778,492.64,193.11,0.5574931398667697 -1986-03-26,1.67,5.004999999999999,0.5079996527777778,570.31,385.25,0.5715657822323387 -1986-03-27,0.64,3.8549999999999995,0.511999537037037,333.26,595.23,0.72961238110719 -1986-03-28,0.01,0.4299999999999997,0.5159998842592592,405.29,431.66,0.7566751548871301 -1986-03-29,0.52,5.655,0.5159998842592592,457.72,584.82,0.8432760309829391 -1986-03-30,0.0,7.285,0.520000462962963,558.05,520.21,1.0543656664664733 -1986-03-31,0.0,7.815,0.520000462962963,420.36,716.38,1.4397395650928229 -1986-04-01,1.0,6.944999999999999,0.5240002314814816,532.19,511.44,1.8077932885000105 -1986-04-02,1.54,8.635,0.5279998842592593,412.47,755.69,2.446474749706601 -1986-04-03,0.0,3.3200000000000003,0.5279998842592593,417.78,538.45,3.1176315394491203 -1986-04-04,0.0,1.4749999999999999,0.5319998842592593,409.6,479.24,3.604761467488045 -1986-04-05,0.0,-2.11,0.5319998842592593,502.94,320.32,3.9511649718712807 -1986-04-06,0.19,-1.395,0.5359994212962963,584.02,278.72,4.178492271622779 -1986-04-07,9.14,0.915,0.5395353009259259,211.31,517.39,4.362519133326373 -1986-04-08,6.91,-1.2799999999999998,0.54,116.0,499.22,4.438294899910206 -1986-04-09,4.69,-0.36,0.5439997685185185,133.62,527.45,4.384169352350325 -1986-04-10,4.54,-0.815,0.5439997685185185,152.88,501.32,4.265093147718588 -1986-04-11,4.54,-0.07499999999999996,0.5479999999999999,257.55,469.69,4.113541614550923 -1986-04-12,10.4,1.73,0.5498481481481481,173.08,594.86,4.09189139552697 -1986-04-13,5.08,2.64,0.5520004629629629,253.79,586.45,4.167667162110803 -1986-04-14,1.13,3.53,0.5559922453703704,353.42,614.29,4.200142490646731 -1986-04-15,0.0,3.17,0.5560002314814815,576.9,457.68,4.23261781918266 -1986-04-16,0.0,4.305,0.56,620.01,437.89,4.330043804790445 -1986-04-17,0.0,5.550000000000001,0.5600517361111111,599.42,513.79,4.524895776006015 -1986-04-18,0.0,4.395,0.5639996527777777,611.1,451.54,4.784698404293441 -1986-04-19,0.0,4.779999999999999,0.5663305555555556,648.94,400.5,5.012025704044939 -1986-04-20,0.04,6.82,0.5679997685185185,646.88,448.86,5.217702784772485 -1986-04-21,7.57,7.91,0.5715351851851852,388.14,739.92,5.423379865500032 -1986-04-22,11.55,6.33,0.5719994212962963,276.28,743.22,5.997110669634766 -1986-04-23,0.03,2.1449999999999996,0.5760005787037037,576.9,431.45,6.365164393041954 -1986-04-24,1.04,6.210000000000001,0.5760005787037037,556.96,597.56,6.397639721577882 -1986-04-25,1.7,10.22,0.5800003472222222,514.69,840.85,6.419289940601834 -1986-04-26,1.6,11.755,0.5807946759259259,412.13,1043.04,6.462590378649739 -1986-04-27,1.74,12.625,0.5840005787037037,460.15,1043.59,6.505890816697644 -1986-04-28,0.0,12.385,0.5853530092592593,631.27,636.19,6.386814612065905 -1986-04-29,0.0,14.31,0.5880002314814815,596.45,770.09,6.116186874266502 -1986-04-30,0.0,13.425,0.5903311342592593,611.41,685.74,5.8130838079311715 -1986-05-01,2.12,12.735000000000001,0.5920008101851852,545.68,625.24,5.477505413059912 -1986-05-02,3.31,7.47,0.5943310185185184,375.42,693.22,5.217702784772485 -1986-05-03,0.0,0.24999999999999978,0.5959997685185184,402.77,466.34,4.892949499413202 -1986-05-04,0.0,0.19500000000000028,0.5987809027777777,506.33,414.5,4.589846433077871 -1986-05-05,0.21,1.48,0.5999998842592592,418.01,509.34,4.308393585766492 -1986-05-06,1.76,5.62,0.6027810185185185,499.26,574.44,4.016115628943138 -1986-05-07,2.06,9.605,0.6039996527777778,465.62,756.86,3.7779632196796626 -1986-05-08,0.51,7.77,0.6063304398148148,470.4,698.92,3.5398108104161885 -1986-05-09,0.0,5.58,0.6079995370370371,660.84,353.59,3.323308620176666 -1986-05-10,0.0,8.674999999999999,0.6098476851851852,656.26,419.71,3.1284566489610963 -1986-05-11,0.16,9.9,0.6120002314814815,570.45,609.9,2.9336046777455267 -1986-05-12,0.0,8.345,0.6133524305555556,601.58,501.26,2.7495778160419326 -1986-05-13,0.0,8.735,0.6159914351851852,659.0,387.97,2.5763760638503146 -1986-05-14,0.0,11.125,0.6162851851851852,664.92,409.06,2.424824530682649 -1986-05-15,0.0,14.229999999999999,0.6195356481481481,650.33,523.07,2.251622778491031 -1986-05-16,0.0,15.934999999999999,0.6199998842592592,611.43,682.29,2.1000712453233654 -1986-05-17,0.0,17.16,0.6227818287037037,454.49,1138.97,1.9809950406916284 -1986-05-18,0.76,19.424999999999997,0.6240006944444445,501.18,1098.78,1.8727439455718675 -1986-05-19,5.74,12.704999999999998,0.6253526620370371,284.32,1054.44,1.7753179599640823 -1986-05-20,8.79,8.58,0.6278895833333333,162.6,942.77,1.742842631428154 -1986-05-21,10.04,6.800000000000001,0.6280518518518519,192.58,809.25,1.8402686170359388 -1986-05-22,9.11,9.285,0.6303303240740741,198.89,945.35,1.9160443836197718 -1986-05-23,10.65,10.84,0.6319916666666667,172.14,1105.13,1.9918201502036044 -1986-05-24,12.75,12.445,0.6322856481481481,251.07,1130.76,2.327398545074864 -1986-05-25,2.43,13.23,0.6347809027777778,497.63,875.89,2.738752706529956 -1986-05-26,0.0,12.715,0.6360001157407408,612.98,645.48,3.009380444329359 -1986-05-27,5.66,15.95,0.6362856481481481,502.38,870.86,3.1501068679850484 -1986-05-28,4.54,16.43,0.6387810185185185,353.65,1243.87,3.2042324155449293 -1986-05-29,0.52,13.14,0.6399917824074074,565.44,764.01,3.2258826345688814 -1986-05-30,0.11,14.31,0.6400512731481481,498.72,981.25,3.1609319774970244 -1986-05-31,1.46,12.84,0.6418483796296296,392.97,1043.69,3.0418557728652873 -1986-06-01,9.29,9.215,0.6435354166666667,324.88,797.55,2.9444297872575023 -1986-06-02,2.69,6.8999999999999995,0.6439998842592592,366.66,708.02,2.8361786921377408 -1986-06-03,0.0,7.42,0.6442856481481481,493.38,645.13,2.6954522684820517 -1986-06-04,0.03,11.485,0.6458482638888889,410.98,935.8,2.5763760638503146 -1986-06-05,0.9,13.47,0.6471538194444444,373.48,1117.03,2.3923492021467205 -1986-06-06,0.0,9.41,0.6479927083333333,572.66,574.54,2.229972559467079 -1986-06-07,0.99,11.34,0.6480521990740741,580.7,568.28,2.0784210262994134 -1986-06-08,12.13,16.255,0.6487947916666666,313.88,1260.7,2.024295478739533 -1986-06-09,2.48,12.389999999999999,0.6498487268518519,366.29,969.23,1.8835690550838433 -1986-06-10,0.0,13.149999999999999,0.6507814814814814,512.66,831.91,1.8077932885000105 -1986-06-11,0.0,14.07,0.6515357638888889,443.69,1036.86,1.6995421933802495 -1986-06-12,0.02,9.559999999999999,0.6519921296296297,548.19,597.63,1.5912910982604884 -1986-06-13,1.99,10.5,0.6520001157407407,353.22,918.45,1.5155153316766559 -1986-06-14,1.61,13.3,0.6520517361111111,418.65,1007.01,1.3964391270449183 -1986-06-15,0.0,15.915,0.6522856481481482,491.9,1030.75,1.2990131414371333 -1986-06-16,11.87,15.605,0.6527943287037037,386.85,1014.3,1.2232373748533005 -1986-06-17,6.64,12.594999999999999,0.653352662037037,321.78,985.13,1.16911182729342 -1986-06-18,0.0,11.06,0.653848611111111,360.2,966.42,1.0825109511976112 -1986-06-19,0.0,9.965,0.653848611111111,484.05,731.94,1.0240553598329403 -1986-06-20,0.0,9.775,0.653848611111111,539.31,589.67,0.9515271261027002 -1986-06-21,0.0,12.255,0.6543310185185185,549.81,621.28,0.8995666004452149 -1986-06-22,0.0,16.52,0.6543310185185185,522.84,868.67,0.8519361185925199 -1986-06-23,1.4,19.165,0.653848611111111,421.88,1287.12,0.8086356805446154 -1986-06-24,14.1,18.1,0.653848611111111,318.46,1307.91,0.8021406148374299 -1986-06-25,17.96,11.995000000000001,0.653352662037037,273.72,965.53,1.3314884699730618 -1986-06-26,0.0,11.145,0.653352662037037,354.82,929.22,1.1907620463173723 -1986-06-27,6.08,10.125,0.6527943287037037,411.11,679.99,1.158286717781444 -1986-06-28,6.44,15.735,0.6522856481481482,313.58,1161.65,1.2124122653413245 -1986-06-29,2.61,15.73,0.6520517361111111,366.67,1129.57,1.16911182729342 -1986-06-30,3.11,13.86,0.6519921296296297,301.7,1110.3,1.1258113892455155 -1986-07-01,0.0,15.075000000000001,0.6518894675925926,428.64,1084.2,1.074933374539228 -1986-07-02,0.0,14.72,0.6511538194444445,447.11,1007.88,1.0457055788568925 -1986-07-03,7.63,13.365,0.6503311342592593,387.91,891.36,0.9926625422482094 -1986-07-04,7.0,13.365,0.6493528935185184,293.93,1010.06,0.9580221918098859 -1986-07-05,6.65,14.625,0.6482863425925927,226.12,1248.09,0.9612697246634786 -1986-07-06,1.55,13.245000000000001,0.6480008101851852,389.18,959.12,0.9222993304203646 -1986-07-07,5.64,16.085,0.647890162037037,250.06,1332.78,0.9201343085179694 -1986-07-08,0.04,19.775,0.64678125,406.4,1481.71,0.8952365566404243 -1986-07-09,0.0,16.715,0.645352199074074,400.69,1259.65,0.848688585738927 -1986-07-10,0.0,12.530000000000001,0.6440515046296297,383.81,978.82,0.7956455491302442 -1986-07-11,0.0,13.535,0.6438894675925926,323.91,1149.54,0.7577576658383279 -1986-07-12,0.0,14.305,0.6427809027777778,322.14,1217.77,0.72961238110719 -1986-07-13,2.01,16.055,0.6407940972222222,285.47,1332.4,0.7014670963760521 -1986-07-14,14.63,14.66,0.6399997685185186,155.67,1388.18,0.7166222496928185 -1986-07-15,16.68,13.66,0.6395354166666667,133.09,1350.02,0.8681737828604842 -1986-07-16,0.84,15.34,0.6378482638888888,435.58,1066.79,0.8898240018844364 -1986-07-17,12.41,18.049999999999997,0.6360001157407408,364.57,1169.03,0.8562661623973103 -1986-07-18,10.49,19.97,0.6355359953703703,273.05,1636.32,0.9103917099571911 -1986-07-19,0.0,18.465,0.6338483796296296,379.35,1457.09,0.8952365566404243 -1986-07-20,2.57,19.245,0.6319996527777777,395.14,1425.01,0.882246425226053 -1986-07-21,3.99,17.93,0.6315355324074073,265.61,1517.04,0.8411110090805439 -1986-07-22,0.0,14.285,0.6287943287037038,498.96,916.16,0.8237908338613822 -1986-07-23,0.0,17.065,0.628,414.75,1307.6,0.7772428629598849 -1986-07-24,0.0,17.04,0.6267813657407407,507.59,1016.21,0.7555926439359325 -1986-07-25,0.0,23.935000000000002,0.624052199074074,394.52,1991.18,0.7252823373023994 -1986-07-26,10.29,21.51,0.6238902777777778,235.76,1927.36,0.6917244978152736 -1986-07-27,0.0,17.35,0.6207944444444444,424.26,1303.09,0.6776518554497045 -1986-07-28,0.11,17.455000000000002,0.6199998842592592,341.1,1463.41,0.648424059767369 -1986-07-29,0.0,16.895,0.6183303240740741,280.16,1515.07,0.6137837093290455 -1986-07-30,3.07,16.035,0.615999537037037,222.38,1464.92,0.5932160012562909 -1986-07-31,18.29,12.469999999999999,0.6151532407407407,133.81,1268.71,0.6191962640850336 -1986-08-01,16.75,13.66,0.6120002314814815,190.71,1288.45,0.8270383667149749 -1986-08-02,7.87,17.655,0.6115356481481482,224.99,1593.04,0.9526096370538978 -1986-08-03,5.51,18.61,0.6080510416666667,240.43,1661.41,1.032715447442521 -1986-08-04,2.79,18.56,0.6078891203703704,296.11,1599.1,1.0478706007592875 -1986-08-05,0.0,17.215,0.6042853009259259,467.72,1220.68,1.0359629802961139 -1986-08-06,3.89,18.795,0.6039916666666666,375.42,1403.62,1.0208078269793472 -1986-08-07,11.43,18.41,0.6002854166666667,279.83,1532.18,1.0164777831745568 -1986-08-08,13.24,18.62,0.5999998842592592,218.48,1708.31,1.0738508635880302 -1986-08-09,10.02,18.945,0.5962851851851851,215.23,1746.46,1.2015871558293483 -1986-08-10,3.23,18.130000000000003,0.5959997685185184,366.67,1365.53,1.3423135794850378 -1986-08-11,3.53,18.76,0.5920523148148148,292.64,1575.79,1.4938651126527034 -1986-08-12,0.0,13.559999999999999,0.591992824074074,455.01,970.04,1.5588157697245602 -1986-08-13,0.0,13.035,0.5880002314814815,482.67,858.64,1.5588157697245602 -1986-08-14,0.0,15.895000000000001,0.5879922453703703,473.27,1029.27,1.5263404411886317 -1986-08-15,1.72,17.46,0.5840005787037037,434.11,1228.64,1.4830400031407271 -1986-08-16,10.22,18.015,0.5835359953703704,241.5,1554.33,1.5696408792365362 -1986-08-17,5.75,19.515,0.5800003472222222,234.91,1727.78,1.6454166458203692 -1986-08-18,4.84,18.835,0.5787818287037036,231.77,1676.79,1.6345915363083927 -1986-08-19,6.26,17.68,0.5760005787037037,237.9,1582.85,1.6345915363083927 -1986-08-20,0.0,16.009999999999998,0.5738478009259259,415.36,1211.24,1.6454166458203692 -1986-08-21,5.75,16.945,0.5719994212962963,380.03,1186.56,1.6345915363083927 -1986-08-22,10.65,16.43,0.5680513888888888,294.81,1308.92,1.6670668648443212 -1986-08-23,12.36,11.08,0.5679997685185185,366.31,753.4,1.6670668648443212 -1986-08-24,30.21,10.73,0.5639996527777777,227.08,991.93,2.1974972309311505 -1986-08-25,6.17,11.235,0.5639916666666667,187.79,1095.62,2.7820531445778607 -1986-08-26,1.23,12.535,0.56,402.97,929.63,3.085156210913192 -1986-08-27,2.18,13.475000000000001,0.558330324074074,346.92,1110.2,3.2583579631048094 -1986-08-28,0.73,9.995,0.5560002314814815,320.93,902.74,3.280008182128762 -1986-08-29,0.0,7.11,0.5520519675925926,427.29,635.99,3.1934073060329524 -1986-08-30,0.01,9.049999999999999,0.5520004629629629,430.59,707.75,3.095981320425168 -1986-08-31,0.0,10.43,0.5479999999999999,433.62,750.92,2.9444297872575023 -1986-09-01,0.01,12.79,0.5479921296296296,456.34,776.43,2.8145284731137887 -1986-09-02,2.15,13.105,0.5439997685185185,347.63,1018.43,2.6521518304341467 -1986-09-03,0.0,11.719999999999999,0.540794212962963,371.96,910.91,2.5114254067784576 -1986-09-04,0.0,10.985,0.54,415.73,781.7,2.359873873610792 -1986-09-05,3.4,11.639999999999999,0.5359994212962963,295.24,928.44,2.2083223404431265 -1986-09-06,2.76,14.54,0.5359994212962963,244.13,1252.34,2.1000712453233654 -1986-09-07,2.05,11.295,0.5319998842592593,303.68,969.01,1.9593448216676759 -1986-09-08,0.0,7.715,0.5298482638888888,358.2,697.3,1.851093726547915 -1986-09-09,0.08,8.76,0.5279998842592593,393.45,688.41,1.7211924124042017 -1986-09-10,4.15,8.185,0.5240002314814816,316.4,668.74,1.6021162077724647 -1986-09-11,15.72,10.895,0.5240002314814816,204.95,968.21,1.547990660212584 -1986-09-12,24.83,15.684999999999999,0.520000462962963,201.76,1347.99,1.829443507523963 -1986-09-13,8.93,14.2,0.5183310185185186,248.21,1124.51,2.0675959167874374 -1986-09-14,3.15,8.375,0.5159998842592592,281.41,756.2,2.0026452597155804 -1986-09-15,0.0,6.305,0.511999537037037,344.38,633.21,1.9701699311796523 -1986-09-16,0.0,6.535,0.511999537037037,343.15,639.82,1.8943941645958196 -1986-09-17,0.0,7.425,0.5079996527777778,332.03,700.41,1.8077932885000105 -1986-09-18,0.0,7.300000000000001,0.5067805555555556,401.49,558.4,1.742842631428154 -1986-09-19,0.0,10.08,0.503999537037037,345.32,788.21,1.656241755332345 -1986-09-20,0.0,6.355,0.4999997685185186,370.16,560.12,1.5588157697245602 -1986-09-21,0.0,6.279999999999999,0.4999997685185186,382.0,531.48,1.4830400031407271 -1986-09-22,0.58,5.734999999999999,0.4959997685185185,357.31,543.54,1.3964391270449183 -1986-09-23,13.05,5.865,0.49366840277777774,172.49,715.22,1.4072642365568944 -1986-09-24,12.07,6.725,0.4919994212962963,111.25,829.12,1.5263404411886317 -1986-09-25,7.7,9.555,0.48800034722222224,132.53,973.45,1.6670668648443212 -1986-09-26,0.0,8.95,0.48800034722222224,301.44,782.89,1.6454166458203692 -1986-09-27,0.0,6.86,0.4840002314814815,335.7,611.08,1.6021162077724647 -1986-09-28,0.0,6.529999999999999,0.48167002314814816,368.36,520.16,1.5804659887485122 -1986-09-29,10.42,10.09,0.4800005787037037,282.11,740.83,1.547990660212584 -1986-09-30,19.19,12.969999999999999,0.4760001157407408,189.55,1086.41,1.8402686170359388 -1986-10-01,4.64,13.015,0.4760001157407408,151.47,1209.86,1.9376946026437238 -1986-10-02,0.0,7.995,0.4719996527777777,317.09,666.36,1.9918201502036044 -1986-10-03,1.19,8.855,0.4701513888888889,273.18,751.31,2.035120588251509 -1986-10-04,3.36,9.96,0.46799976851851854,171.62,926.79,2.0675959167874374 -1986-10-05,1.04,5.165,0.463999537037037,254.01,613.5,2.035120588251509 -1986-10-06,5.64,0.6000000000000003,0.463999537037037,154.21,490.97,2.035120588251509 -1986-10-07,6.38,2.22,0.46,156.01,556.3,2.0567708072754614 -1986-10-08,2.73,6.38,0.45920532407407405,260.16,600.0,2.045945697763485 -1986-10-09,4.72,5.7250000000000005,0.45599953703703705,174.25,672.98,2.0026452597155804 -1986-10-10,0.0,0.41000000000000014,0.45200810185185186,250.3,439.83,1.9485197121557 -1986-10-11,0.0,0.7399999999999998,0.452,329.05,336.26,1.8943941645958196 -1986-10-12,0.0,5.1000000000000005,0.4480001157407407,314.29,485.54,1.829443507523963 -1986-10-13,0.65,8.215,0.4480001157407407,214.03,796.34,1.764492850452106 -1986-10-14,5.14,10.83,0.4440001157407408,85.31,1136.26,1.7103673028922255 -1986-10-15,6.45,7.4399999999999995,0.44166932870370373,139.83,800.93,1.764492850452106 -1986-10-16,0.0,1.1949999999999998,0.4400003472222222,237.33,459.46,1.6995421933802495 -1986-10-17,0.0,0.5150000000000001,0.43611064814814815,253.23,440.0,1.6345915363083927 -1986-10-18,0.0,1.745,0.43600011574074077,220.08,498.57,1.5696408792365362 -1986-10-19,0.0,5.125,0.43200000000000005,270.62,550.96,1.5263404411886317 -1986-10-20,0.0,6.62,0.43194837962962956,240.47,666.5,1.461389784116775 -1986-10-21,3.63,5.14,0.428,159.49,644.98,1.4289144555808466 -1986-10-22,3.79,5.375,0.4261517361111111,132.11,705.94,1.3747889080209663 -1986-10-23,3.01,4.91,0.42400011574074076,157.17,629.23,1.3423135794850378 -1986-10-24,1.09,0.9199999999999999,0.42121863425925926,188.22,488.16,1.2881880319251573 -1986-10-25,0.0,0.8149999999999995,0.41999976851851856,267.48,360.71,1.2340624843652768 -1986-10-26,0.0,2.945,0.4164640046296296,224.24,519.41,1.179936936805396 -1986-10-27,6.28,1.16,0.4159996527777778,127.55,518.5,1.158286717781444 -1986-10-28,3.35,4.025,0.4121109953703704,80.32,710.77,1.1907620463173723 -1986-10-29,5.98,6.79,0.41200046296296294,151.48,760.04,1.1474616082694677 -1986-10-30,7.55,4.215,0.4080084490740741,147.02,604.08,1.16911182729342 -1986-10-31,0.0,-1.905,0.40794895833333333,219.89,360.0,1.158286717781444 -1986-11-01,1.26,1.5899999999999999,0.40399999999999997,205.98,453.82,1.158286717781444 -1986-11-02,2.5,0.9299999999999997,0.4037145833333334,160.82,482.31,1.1474616082694677 -1986-11-03,0.03,-3.3850000000000002,0.40000023148148145,206.85,320.0,1.1258113892455155 -1986-11-04,1.88,-1.525,0.39971435185185183,204.73,384.72,1.1149862797335395 -1986-11-05,0.1,-4.9799999999999995,0.3960082175925926,244.0,261.86,1.0760158854904256 -1986-11-06,1.61,-4.975,0.39571446759259266,220.32,280.0,1.052200644564078 -1986-11-07,0.72,0.9849999999999999,0.3921108796296296,195.06,469.15,1.0273028926865329 -1986-11-08,5.24,1.525,0.3919487268518519,164.35,468.21,1.0121477393697664 -1986-11-09,6.77,5.01,0.3884644675925926,121.25,644.05,1.0825109511976112 -1986-11-10,1.39,0.05500000000000016,0.38799999999999996,168.32,450.97,1.1041611702215632 -1986-11-11,0.01,-5.11,0.3848466435185185,178.84,290.32,1.0933360607095872 -1986-11-12,0.53,-2.845,0.3840003472222222,130.3,404.41,1.0781809073928208 -1986-11-13,1.08,-5.4399999999999995,0.38166932870370374,207.23,273.97,1.057613199320066 -1986-11-14,0.0,-10.195,0.3799997685185186,232.49,159.77,1.0229728488817424 -1986-11-15,2.93,-5.655,0.37920590277777777,164.36,276.61,1.0262203817353355 -1986-11-16,2.58,-1.4500000000000002,0.37611087962962964,93.05,462.66,1.0110652284185688 -1986-11-17,1.44,-0.15999999999999992,0.3759486111111111,115.87,494.93,1.0002401189065926 -1986-11-18,0.01,-3.545,0.37321898148148147,169.74,340.87,0.9785898998826404 -1986-11-19,0.0,-10.504999999999999,0.3719998842592593,170.72,198.77,0.9374544837371314 -1986-11-20,1.18,-14.209999999999999,0.37120578703703705,174.49,139.27,0.9082266880547958 -1986-11-21,26.78,-10.4,0.3684645833333333,133.11,200.0,0.9017316223476101 -1986-11-22,19.17,-8.115,0.3680003472222222,105.93,261.3,0.9536921480050955 -1986-11-23,0.0,-12.34,0.36615196759259255,235.87,116.51,0.9948275641506047 -1986-11-24,2.27,-3.02,0.3644642361111111,196.07,283.9,1.0045701627113832 -1986-11-25,0.0,-3.165,0.36400011574074076,171.81,344.49,0.9731773451266524 -1986-11-26,10.33,-4.535,0.3621513888888889,154.21,268.41,0.9688473013218619 -1986-11-27,12.47,-1.935,0.3604638888888889,112.17,399.59,1.0294679145889283 -1986-11-28,0.02,-3.5549999999999997,0.3599998842592593,186.04,311.97,1.043540556954497 -1986-11-29,2.39,-1.32,0.35920578703703704,123.56,433.21,1.043540556954497 -1986-11-30,0.06,-7.365,0.3572189814814815,164.71,250.57,1.0143127612721616 -1986-12-01,0.0,-9.629999999999999,0.35611041666666665,161.1,202.47,0.9688473013218619 -1986-12-02,0.04,-12.274999999999999,0.3559483796296296,214.2,120.0,0.9580221918098859 -1986-12-03,11.26,-5.39,0.3546476851851852,155.0,221.02,1.0457055788568925 -1986-12-04,14.1,0.575,0.35321898148148145,65.18,546.92,1.2124122653413245 -1986-12-05,0.0,-3.0300000000000002,0.35211030092592593,96.59,410.53,1.2232373748533005 -1986-12-06,1.44,-7.92,0.35199988425925927,187.53,200.0,1.2448875938772528 -1986-12-07,0.65,-11.265,0.35171423611111113,190.39,159.94,1.2557127033892288 -1986-12-08,0.9,-17.915,0.3506474537037037,178.36,88.03,1.2448875938772528 -1986-12-09,8.16,-22.27,0.34966921296296294,157.66,48.27,1.2340624843652768 -1986-12-10,9.13,-13.4,0.3488465277777778,144.66,122.01,1.2990131414371333 -1986-12-11,0.0,-9.84,0.3481105324074074,153.28,200.52,1.2881880319251573 -1986-12-12,0.2,-10.33,0.3480079861111111,186.39,160.0,1.2557127033892288 -1986-12-13,0.0,-12.625,0.34794849537037037,175.04,148.43,1.2124122653413245 -1986-12-14,0.0,-12.825,0.34771435185185184,185.7,120.0,1.1907620463173723 -1986-12-15,0.27,-6.79,0.3472057870370371,127.04,275.66,1.16911182729342 -1986-12-16,0.0,-14.879999999999999,0.3466476851851852,197.84,80.0,1.1149862797335395 -1986-12-17,0.0,-17.445,0.3466476851851852,204.13,71.46,1.0933360607095872 -1986-12-18,0.01,-6.79,0.3461518518518519,113.85,278.89,1.0825109511976112 -1986-12-19,4.17,-3.5900000000000003,0.3461518518518519,62.56,391.51,1.055448177417671 -1986-12-20,0.13,-5.365,0.3456693287037037,106.24,321.12,1.0262203817353355 -1986-12-21,0.0,-13.68,0.3456693287037037,184.72,120.0,0.9850849655898262 -1986-12-22,0.01,-12.01,0.3461518518518519,188.19,121.46,0.9255468632739575 -1986-12-23,0.0,-5.6000000000000005,0.3461518518518519,165.85,254.46,0.9093091990059934 -1986-12-24,0.0,-6.335000000000001,0.3461518518518519,152.79,254.38,0.8660087609580888 -1986-12-25,5.92,-10.209999999999999,0.3466476851851852,157.52,120.76,0.8605962062021009 -1986-12-26,5.98,-2.9400000000000004,0.3472057870370371,88.63,375.51,0.882246425226053 -1986-12-27,0.0,-9.86,0.34771435185185184,162.42,191.49,0.9093091990059934 -1986-12-28,0.0,-15.025,0.34794849537037037,204.13,80.0,0.9201343085179694 -1986-12-29,0.0,-5.1499999999999995,0.34800000000000003,142.92,284.77,0.8930715347380292 -1986-12-30,0.01,-4.725,0.3480079861111111,118.51,318.45,0.8227083229101846 -1986-12-31,0.0,-9.23,0.3484641203703704,128.67,217.72,0.7956455491302442 -1987-01-01,0.0,-16.18,0.34921886574074074,188.55,80.0,0.773995330106292 -1987-01-02,1.72,-11.765,0.35015162037037034,166.73,121.66,0.7577576658383279 -1987-01-03,7.36,-8.120000000000001,0.35120578703703703,77.07,248.39,0.7523451110823397 -1987-01-04,0.82,-9.095,0.3519482638888889,126.96,212.99,0.7469325563263517 -1987-01-05,0.0,-10.615,0.35200787037037035,161.94,166.31,0.7415200015703636 -1987-01-06,0.0,-10.764999999999999,0.35284641203703704,171.51,159.46,0.7361074468143756 -1987-01-07,3.12,-6.34,0.3541518518518519,88.14,288.69,0.7252823373023994 -1987-01-08,2.61,-6.3500000000000005,0.35571446759259256,64.25,314.8,0.7144572277904233 -1987-01-09,0.0,-12.25,0.35600000000000004,169.08,142.52,0.7090446730344352 -1987-01-10,0.0,-16.305,0.3564643518518519,204.08,80.0,0.7036321182784472 -1987-01-11,9.17,-10.184999999999999,0.35815185185185183,100.77,200.73,0.6928070087664712 -1987-01-12,12.76,-7.205,0.3599482638888889,55.0,296.19,0.681981899254495 -1987-01-13,0.0,-7.48,0.36000787037037035,78.43,287.09,0.6765693444985069 -1987-01-14,0.0,-9.835,0.36121863425925926,172.76,176.71,0.6765693444985069 -1987-01-15,0.0,-6.82,0.3637142361111111,161.53,242.14,0.6603316802305428 -1987-01-16,0.0,-11.165000000000001,0.36400011574074076,180.66,161.46,0.6495065707185667 -1987-01-17,0.0,-19.15,0.36521898148148146,202.17,80.0,0.6278563516946144 -1987-01-18,1.73,-20.505000000000003,0.36771435185185186,206.95,45.9,0.6116186874266503 -1987-01-19,4.12,-16.759999999999998,0.3680083333333333,156.95,83.26,0.6007935779146741 -1987-01-20,0.0,-19.505,0.3696696759259259,224.88,76.88,0.58455591364671 -1987-01-21,0.0,-19.34,0.3719483796296296,228.49,69.51,0.5629056946227577 -1987-01-22,3.56,-15.184999999999999,0.37211041666666667,197.64,109.17,0.5412554755988056 -1987-01-23,14.99,-9.515,0.3746479166666667,146.23,190.78,0.5250178113308414 -1987-01-24,4.33,-15.370000000000001,0.3760002314814815,190.31,110.2,0.5141927018188653 -1987-01-25,0.0,-22.68,0.3772188657407407,189.15,66.14,0.4979550375509011 -1987-01-26,0.0,-24.84,0.3799997685185186,261.57,40.0,0.487129928038925 -1987-01-27,0.0,-22.76,0.3804640046296296,270.74,40.0,0.4763048185269489 -1987-01-28,0.0,-19.35,0.383714699074074,270.04,43.29,0.4600671542589847 -1987-01-29,0.0,-14.129999999999999,0.38400833333333334,256.14,112.6,0.44382948999102056 -1987-01-30,0.0,-16.655,0.3866476851851852,272.88,80.0,0.4384169352350325 -1987-01-31,2.62,-14.580000000000002,0.38799999999999996,184.33,122.95,0.4221792709670683 -1987-02-01,1.32,-10.52,0.3901519675925926,137.41,208.13,0.4113541614550923 -1987-02-02,0.0,-13.55,0.39200034722222227,281.35,98.51,0.4059416066991042 -1987-02-03,0.0,-13.299999999999999,0.3936696759259259,292.03,86.26,0.40052905194311617 -1987-02-04,1.08,-10.245,0.39600023148148145,246.3,166.33,0.39511649718712805 -1987-02-05,0.08,-14.469999999999999,0.3972188657407407,233.99,120.0,0.38970394243114004 -1987-02-06,0.0,-17.755,0.40000023148148145,287.68,79.86,0.384291387675152 -1987-02-07,1.62,-15.765,0.4012189814814815,280.78,80.0,0.37887883291916397 -1987-02-08,1.27,-9.69,0.40399999999999997,225.94,190.25,0.37346627816317585 -1987-02-09,0.19,-11.54,0.40521898148148144,212.67,168.34,0.3626411686511997 -1987-02-10,0.0,-14.475000000000001,0.4080003472222223,174.53,149.69,0.3464035043832356 -1987-02-11,0.0,-17.52,0.40966990740740744,223.7,101.76,0.3409909496272475 -1987-02-12,0.0,-17.96,0.41200046296296294,254.0,80.0,0.32475328535928333 -1987-02-13,0.0,-16.99,0.41464768518518513,167.62,120.0,0.31934073060329526 -1987-02-14,0.0,-22.545,0.4159996527777778,237.58,64.49,0.3139281758473072 -1987-02-15,0.0,-21.07,0.419205324074074,228.95,77.88,0.30310306633533113 -1987-02-16,0.0,-15.585,0.41999976851851856,277.85,120.0,0.29769051157934306 -1987-02-17,0.0,-12.01,0.42400011574074076,284.25,141.57,0.28686540206736694 -1987-02-18,0.0,-12.425,0.42400011574074076,295.98,135.66,0.2814528473113789 -1987-02-19,0.0,-12.434999999999999,0.428,285.62,145.96,0.2760402925553908 -1987-02-20,0.0,-11.54,0.42846388888888887,209.67,186.0,0.2706277377994028 -1987-02-21,0.0,-11.07,0.43200000000000005,304.94,159.39,0.26521518304341474 -1987-02-22,0.0,-8.565,0.4336695601851852,330.36,177.12,0.26521518304341474 -1987-02-23,0.0,-11.16,0.43600011574074077,363.36,127.35,0.2598026282874267 -1987-02-24,0.0,-10.02,0.4399488425925926,322.04,167.56,0.2598026282874267 -1987-02-25,0.0,-7.13,0.4400003472222222,213.08,265.8,0.24897751877545055 -1987-02-26,0.0,-4.24,0.4440001157407408,162.81,358.35,0.24897751877545055 -1987-02-27,0.0,-3.095,0.4440081018518519,213.44,374.13,0.24897751877545055 -1987-02-28,0.0,-4.055,0.4480001157407407,342.2,280.0,0.2435649640194625 -1987-03-01,0.0,-9.475000000000001,0.4501516203703704,405.7,143.24,0.24897751877545055 -1987-03-02,5.27,-10.06,0.452,198.46,205.01,0.24897751877545055 -1987-03-03,4.4,-13.96,0.45599953703703705,317.61,121.02,0.2543900735314386 -1987-03-04,0.0,-16.635,0.45599953703703705,442.23,66.77,0.2543900735314386 -1987-03-05,0.0,-15.415,0.46,454.51,57.21,0.2543900735314386 -1987-03-06,0.0,-7.795000000000001,0.4604638888888889,412.68,174.83,0.2543900735314386 -1987-03-07,0.16,-4.05,0.463999537037037,246.2,338.72,0.24897751877545055 -1987-03-08,0.22,-2.9899999999999998,0.46799976851851854,217.19,382.87,0.24897751877545055 -1987-03-09,0.44,-8.285,0.46799976851851854,346.77,215.61,0.24897751877545055 -1987-03-10,0.0,-17.525,0.4719996527777777,406.36,80.32,0.24897751877545055 -1987-03-11,0.0,-16.71,0.4719996527777777,458.79,80.0,0.2435649640194625 -1987-03-12,0.0,-13.745000000000001,0.4760001157407408,488.58,80.0,0.23815240926347445 -1987-03-13,0.0,-7.135000000000001,0.4800005787037037,447.12,177.49,0.23815240926347445 -1987-03-14,0.0,-4.359999999999999,0.4800005787037037,348.12,288.65,0.23815240926347445 -1987-03-15,0.98,-7.325,0.4840002314814815,366.59,213.14,0.23815240926347445 -1987-03-16,5.4,-5.38,0.4840002314814815,136.35,333.46,0.2435649640194625 -1987-03-17,6.61,-4.8,0.48800034722222224,112.06,363.49,0.2598026282874267 -1987-03-18,2.73,-3.095,0.4919994212962963,166.5,405.64,0.3139281758473072 -1987-03-19,3.0,-1.33,0.4919994212962963,150.94,461.52,0.31934073060329526 -1987-03-20,2.69,0.8400000000000001,0.4959997685185185,182.55,534.08,0.33557839487125946 -1987-03-21,0.13,2.815,0.4959997685185185,226.41,602.48,0.3680537234071878 -1987-03-22,0.0,5.065,0.4999997685185186,322.59,639.61,0.40052905194311617 -1987-03-23,0.0,5.130000000000001,0.503999537037037,462.88,484.32,0.4059416066991042 -1987-03-24,0.0,4.865,0.503999537037037,517.35,364.59,0.4167667162110803 -1987-03-25,0.0,6.050000000000001,0.5079996527777778,527.95,362.8,0.4546545995029967 -1987-03-26,1.82,6.05,0.5079996527777778,422.26,510.96,0.5196052565748533 -1987-03-27,3.25,4.435,0.511999537037037,253.87,639.61,0.5683182493787459 -1987-03-28,0.0,4.609999999999999,0.5159998842592592,325.33,628.38,0.6549191254745548 -1987-03-29,0.0,4.199999999999999,0.5159998842592592,457.47,458.38,0.7848204396182681 -1987-03-30,0.29,5.365,0.520000462962963,494.45,416.93,0.9093091990059934 -1987-03-31,10.35,7.09,0.520000462962963,275.59,718.13,1.9701699311796523 -1987-04-01,12.13,6.1049999999999995,0.5240002314814816,163.74,785.57,4.687272418685656 -1987-04-02,8.07,1.4300000000000002,0.5279998842592593,214.77,528.85,7.187872715952138 -1987-04-03,0.0,1.9,0.5279998842592593,388.59,486.52,7.588401767895255 -1987-04-04,0.0,4.880000000000001,0.5319998842592593,469.57,528.0,7.7940788486228 -1987-04-05,0.07,4.78,0.5319998842592593,482.82,504.82,7.9672806008144175 -1987-04-06,5.44,4.92,0.5359994212962963,239.07,665.34,8.12965724349406 -1987-04-07,8.64,3.075,0.5395353009259259,165.6,639.74,8.746688485676698 -1987-04-08,6.14,0.94,0.54,139.14,574.71,9.028141332988076 -1987-04-09,0.16,1.75,0.5439997685185185,277.42,568.21,8.833289361772506 -1987-04-10,0.0,3.9549999999999996,0.5439997685185185,553.5,414.62,8.508536076413224 -1987-04-11,0.0,7.2,0.5479999999999999,572.89,457.14,8.281208776661725 -1987-04-12,0.0,6.334999999999999,0.5498481481481481,551.23,481.75,8.086356805446155 -1987-04-13,0.0,3.8649999999999998,0.5520004629629629,520.08,449.8,7.891504834230585 -1987-04-14,0.0,2.7749999999999995,0.5559922453703704,591.73,297.06,7.65335242496711 -1987-04-15,0.0,6.21,0.5560002314814815,594.02,345.86,7.426025125215612 -1987-04-16,0.0,7.459999999999999,0.56,584.25,395.68,7.198697825464113 -1987-04-17,0.06,9.18,0.5600517361111111,512.38,591.13,7.01467096376052 -1987-04-18,0.11,12.379999999999999,0.5639996527777777,394.83,951.48,6.884769649616807 -1987-04-19,0.0,13.985,0.5663305555555556,496.06,790.66,6.733218116449141 -1987-04-20,0.0,11.13,0.5679997685185185,600.67,374.86,6.37598950255393 -1987-04-21,0.52,16.72,0.5715351851851852,532.19,726.28,5.8888595745150045 -1987-04-22,2.24,10.620000000000001,0.5719994212962963,494.71,489.58,5.434204975012008 -1987-04-23,1.26,6.55,0.5760005787037037,513.2,412.92,5.076976361116796 -1987-04-24,4.87,6.83,0.5760005787037037,338.94,604.25,4.698097528197632 -1987-04-25,0.0,3.0850000000000004,0.5800003472222222,551.55,312.64,4.351694023814397 -1987-04-26,0.0,2.385,0.5807946759259259,551.36,298.84,4.016115628943138 -1987-04-27,0.0,2.6500000000000004,0.5840005787037037,558.46,292.6,3.713012562607806 -1987-04-28,0.0,3.7199999999999998,0.5853530092592593,477.92,409.69,3.4315597152964274 -1987-04-29,5.0,1.9899999999999998,0.5880002314814815,259.25,537.4,3.182582196520977 -1987-04-30,5.18,1.5150000000000001,0.5903311342592593,195.14,548.4,3.009380444329359 -1987-05-01,1.43,1.6099999999999999,0.5920008101851852,248.38,551.58,2.8470038016497177 -1987-05-02,0.0,0.9099999999999997,0.5943310185185184,468.53,373.58,2.6738020494580996 -1987-05-03,0.0,1.9449999999999998,0.5959997685185184,534.92,323.38,2.5006002972664816 -1987-05-04,0.0,4.04,0.5987809027777777,577.76,305.79,2.349048764098816 -1987-05-05,0.01,7.459999999999999,0.5999998842592592,583.71,353.27,2.2083223404431265 -1987-05-06,4.42,10.325,0.6027810185185185,318.37,801.86,2.0892461358113894 -1987-05-07,6.69,8.865,0.6039996527777778,187.28,914.98,2.024295478739533 -1987-05-08,0.02,6.08,0.6063304398148148,555.54,378.01,1.9593448216676759 -1987-05-09,0.0,7.345000000000001,0.6079995370370371,521.39,448.93,1.851093726547915 -1987-05-10,0.0,10.775,0.6098476851851852,425.46,718.89,1.7320175219161775 -1987-05-11,0.54,7.164999999999999,0.6120002314814815,527.26,412.73,1.6454166458203692 -1987-05-12,4.34,9.82,0.6133524305555556,275.5,852.3,1.5696408792365362 -1987-05-13,0.0,7.535,0.6159914351851852,564.28,386.98,1.4830400031407271 -1987-05-14,0.0,12.835,0.6162851851851852,528.1,599.09,1.4180893460688704 -1987-05-15,4.29,8.950000000000001,0.6195356481481481,337.24,747.38,1.3314884699730618 -1987-05-16,4.04,7.0200000000000005,0.6199998842592592,380.63,576.73,1.266537812901205 -1987-05-17,0.0,9.885,0.6227818287037037,476.39,616.77,1.2015871558293483 -1987-05-18,0.0,8.205,0.6240006944444445,450.72,595.89,1.1366364987574917 -1987-05-19,0.0,5.32,0.6253526620370371,508.41,419.72,1.0727683526368328 -1987-05-20,0.0,7.345000000000001,0.6278895833333333,562.7,375.1,1.0283854036377307 -1987-05-21,0.0,12.725,0.6280518518518519,552.05,521.89,0.9818374327362333 -1987-05-22,2.2,15.715,0.6303303240740741,365.22,1065.22,0.940702016590724 -1987-05-23,3.02,10.295,0.6319916666666667,371.54,716.15,0.9071441771035982 -1987-05-24,1.0,9.575,0.6322856481481481,316.01,861.73,0.8789988923724602 -1987-05-25,0.3,9.075,0.6347809027777778,511.27,509.92,0.8454410528853343 -1987-05-26,0.0,13.665,0.6360001157407408,526.37,612.39,0.8086356805446154 -1987-05-27,0.0,15.344999999999999,0.6362856481481481,486.83,783.96,0.7804903958134776 -1987-05-28,0.0,16.645,0.6387810185185185,400.4,1091.38,0.7382724687167708 -1987-05-29,0.0,15.025,0.6399917824074074,458.33,832.42,0.6906419868640759 -1987-05-30,7.06,15.595,0.6400512731481481,214.43,1340.07,0.6787343664009022 -1987-05-31,14.73,17.49,0.6418483796296296,227.34,1462.75,0.8854939580796459 -1987-06-01,2.7,19.1,0.6435354166666667,320.63,1411.49,0.8898240018844364 -1987-06-02,0.0,16.575,0.6439998842592592,485.98,840.79,0.793480527227849 -1987-06-03,0.01,18.155,0.6442856481481481,353.88,1360.06,0.7620877096431182 -1987-06-04,3.3,14.235,0.6458482638888889,261.51,1150.94,0.7664177534479087 -1987-06-05,8.12,13.805,0.6471538194444444,215.35,1211.41,0.7783253739110824 -1987-06-06,6.59,12.085,0.6479927083333333,285.23,948.06,0.8789988923724602 -1987-06-07,0.12,9.575,0.6480521990740741,473.2,632.02,0.8551836514461127 -1987-06-08,5.37,12.61,0.6487947916666666,362.13,872.47,0.8952365566404243 -1987-06-09,9.98,13.235,0.6498487268518519,250.52,1103.4,0.9147217537619815 -1987-06-10,8.65,12.075000000000001,0.6507814814814814,246.46,1029.72,0.9959100751018022 -1987-06-11,1.86,13.04,0.6515357638888889,390.59,912.95,0.9655997684682691 -1987-06-12,3.49,13.44,0.6519921296296297,256.09,1131.04,0.9980750970041974 -1987-06-13,2.63,13.294999999999998,0.6520001157407407,325.1,1060.42,1.013230250320964 -1987-06-14,1.96,15.315000000000001,0.6520517361111111,396.99,1059.59,1.0013226298577902 -1987-06-15,8.07,17.93,0.6522856481481482,250.8,1494.15,1.0294679145889283 -1987-06-16,0.0,14.84,0.6527943287037037,430.78,1055.17,0.9926625422482094 -1987-06-17,0.0,12.915,0.653352662037037,466.94,850.87,0.9645172575170715 -1987-06-18,0.0,13.76,0.653848611111111,484.41,842.02,0.9352894618347359 -1987-06-19,0.75,16.975,0.653848611111111,425.62,1132.77,0.9147217537619815 -1987-06-20,3.98,15.465,0.653848611111111,383.35,1106.31,0.8670912719092866 -1987-06-21,0.0,13.75,0.6543310185185185,529.73,700.21,0.8259558557637772 -1987-06-22,0.0,17.405,0.6543310185185185,504.56,955.0,0.7826554177158728 -1987-06-23,0.0,18.7,0.653848611111111,395.67,1404.12,0.754510132984735 -1987-06-24,1.23,17.295,0.653848611111111,393.41,1295.24,0.7155397387416209 -1987-06-25,0.33,14.65,0.653352662037037,431.75,1027.04,0.6776518554497045 -1987-06-26,7.09,16.049999999999997,0.653352662037037,276.1,1340.09,0.6560016364257523 -1987-06-27,28.02,15.934999999999999,0.6527943287037037,221.93,1395.06,0.7122922058880281 -1987-06-28,28.21,15.915000000000001,0.6522856481481482,206.07,1425.35,1.1258113892455155 -1987-06-29,7.36,16.585,0.6520517361111111,304.62,1290.8,1.0825109511976112 -1987-06-30,5.76,18.785,0.6519921296296297,273.55,1552.43,1.0597782212224613 -1987-07-01,1.74,16.23,0.6518894675925926,386.19,1237.13,1.0316329364913235 -1987-07-02,0.0,13.85,0.6511538194444445,488.72,913.59,1.0045701627113832 -1987-07-03,2.81,14.84,0.6503311342592593,408.58,1056.66,0.9937450531994071 -1987-07-04,7.79,15.57,0.6493528935185184,187.29,1425.97,1.0229728488817424 -1987-07-05,6.61,16.775,0.6482863425925927,271.37,1423.05,1.077098396441623 -1987-07-06,0.0,17.939999999999998,0.6480008101851852,493.19,1140.21,1.0641082650272518 -1987-07-07,0.0,21.5,0.647890162037037,466.81,1490.07,1.0283854036377307 -1987-07-08,0.0,22.105,0.64678125,442.42,1639.17,1.002405140808988 -1987-07-09,0.0,22.715,0.645352199074074,427.29,1745.23,0.9699298122730595 -1987-07-10,1.14,23.435000000000002,0.6440515046296297,401.88,1799.38,0.9374544837371314 -1987-07-11,0.05,24.05,0.6438894675925926,389.68,2011.62,0.9082266880547958 -1987-07-12,0.0,24.105,0.6427809027777778,331.12,2186.51,0.871421315714077 -1987-07-13,0.0,25.36,0.6407940972222222,305.4,2413.3,0.8508536076413223 -1987-07-14,7.12,23.97,0.6399997685185186,198.26,2366.58,0.8660087609580888 -1987-07-15,3.79,19.72,0.6395354166666667,233.9,1762.07,0.8151307462518013 -1987-07-16,0.0,13.504999999999999,0.6378482638888888,492.47,879.32,0.749097578228747 -1987-07-17,0.0,16.1,0.6360001157407408,483.31,1043.8,0.7068796511320401 -1987-07-18,0.0,18.735,0.6355359953703703,422.53,1399.9,0.648424059767369 -1987-07-19,0.0,16.265,0.6338483796296296,458.49,1132.55,0.5932160012562909 -1987-07-20,0.0,13.89,0.6319996527777777,488.66,901.97,0.5726482931835363 -1987-07-21,2.79,15.015,0.6315355324074073,282.79,1286.63,0.5585756508179673 -1987-07-22,0.62,16.950000000000003,0.6287943287037038,246.87,1562.93,0.5325953879892247 -1987-07-23,11.12,18.265,0.628,252.69,1640.04,0.5293478551356319 -1987-07-24,22.86,21.855,0.6267813657407407,297.2,1782.51,0.6938895197176687 -1987-07-25,7.9,21.68,0.624052199074074,295.31,1772.41,0.7577576658383279 -1987-07-26,3.96,17.955,0.6238902777777778,367.19,1322.22,0.726364848253597 -1987-07-27,5.45,13.795000000000002,0.6207944444444444,299.01,1086.27,0.720952293497609 -1987-07-28,3.18,11.84,0.6199998842592592,357.13,914.21,0.7231173154000042 -1987-07-29,0.01,11.95,0.6183303240740741,464.97,837.53,0.6830644102056928 -1987-07-30,4.93,12.895,0.615999537037037,300.94,999.07,0.6733218116449141 -1987-07-31,3.53,12.32,0.6151532407407407,327.71,924.57,0.6397639721577881 -1987-08-01,3.24,13.485,0.6120002314814815,267.44,1164.87,0.6051236217194647 -1987-08-02,3.63,13.325,0.6115356481481482,388.44,887.79,0.5921334903050932 -1987-08-03,5.65,15.049999999999999,0.6080510416666667,350.88,1168.67,0.5986285560122789 -1987-08-04,8.0,17.490000000000002,0.6078891203703704,261.66,1425.83,0.6072886436218599 -1987-08-05,2.11,16.41,0.6042853009259259,385.03,1230.71,0.5683182493787459 -1987-08-06,0.0,13.15,0.6039916666666666,478.78,856.14,0.5466680303547936 -1987-08-07,0.0,15.285,0.6002854166666667,492.49,913.81,0.5293478551356319 -1987-08-08,4.33,17.57,0.5999998842592592,349.3,1279.01,0.5390904536964104 -1987-08-09,7.59,16.919999999999998,0.5962851851851851,278.85,1341.13,0.5878034465003028 -1987-08-10,2.59,17.060000000000002,0.5959997685185184,388.75,1214.2,0.5694007603299435 -1987-08-11,3.6,16.235,0.5920523148148148,272.31,1325.07,0.5477505413059912 -1987-08-12,0.0,15.36,0.591992824074074,375.89,1206.47,0.5304303660868295 -1987-08-13,0.0,16.255,0.5880002314814815,462.11,1039.09,0.5163577237212605 -1987-08-14,0.0,18.27,0.5879922453703703,427.82,1278.03,0.4990375485020987 -1987-08-15,0.7,19.62,0.5840005787037037,398.85,1418.71,0.48171737328293696 -1987-08-16,7.36,21.66,0.5835359953703704,210.76,1962.72,0.4925424827949131 -1987-08-17,2.78,22.685000000000002,0.5800003472222222,290.34,1883.37,0.4903774608925179 -1987-08-18,0.91,22.61,0.5787818287037036,359.9,1855.53,0.4730572856733561 -1987-08-19,3.62,16.225,0.5760005787037037,414.98,987.99,0.4546545995029967 -1987-08-20,8.19,16.835,0.5738478009259259,293.57,1281.42,0.46331468711257756 -1987-08-21,1.16,14.735,0.5719994212962963,431.52,957.59,0.43516940238143964 -1987-08-22,7.1,15.19,0.5680513888888888,299.39,1083.38,0.4384169352350325 -1987-08-23,9.03,12.965,0.5679997685185185,295.12,982.07,0.4665622199661704 -1987-08-24,0.02,10.17,0.5639996527777777,326.23,880.31,0.41568420525988264 -1987-08-25,0.52,10.41,0.5639916666666667,338.97,862.41,0.3864564095775472 -1987-08-26,0.0,9.885,0.56,366.99,802.68,0.35722861389521166 -1987-08-27,0.0,9.415,0.558330324074074,443.34,638.04,0.3399084386760499 -1987-08-28,0.0,11.13,0.5560002314814815,459.75,658.19,0.32800081821287613 -1987-08-29,0.3,11.66,0.5520519675925926,407.61,803.38,0.3139281758473072 -1987-08-30,0.01,11.905,0.5520004629629629,418.63,791.18,0.30526808823772633 -1987-08-31,0.01,16.794999999999998,0.5479999999999999,400.59,1122.13,0.29769051157934306 -1987-09-01,4.07,16.825,0.5479921296296296,247.7,1306.71,0.29336046777455266 -1987-09-02,3.64,12.34,0.5439997685185185,252.33,993.71,0.2771228035065884 -1987-09-03,0.46,8.7,0.540794212962963,351.78,721.38,0.2630501611410195 -1987-09-04,0.0,7.97,0.54,415.59,584.58,0.24681249687305531 -1987-09-05,0.0,12.18,0.5359994212962963,432.74,714.21,0.23923492021467205 -1987-09-06,0.0,16.259999999999998,0.5359994212962963,395.84,1049.68,0.23273985450748638 -1987-09-07,0.0,18.145,0.5319998842592593,355.69,1300.24,0.22516227784910312 -1987-09-08,1.03,19.15,0.5298482638888888,288.51,1522.73,0.21974972309311505 -1987-09-09,17.34,16.5,0.5279998842592593,178.46,1413.12,0.24897751877545055 -1987-09-10,12.67,12.785,0.5240002314814816,120.22,1245.83,0.3215057525056905 -1987-09-11,2.19,14.100000000000001,0.5240002314814816,161.64,1328.02,0.31284566489610965 -1987-09-12,0.25,14.98,0.520000462962963,166.21,1413.19,0.3095981320425168 -1987-09-13,11.08,12.815,0.5183310185185186,126.81,1242.87,0.3215057525056905 -1987-09-14,18.32,13.455,0.5159998842592592,135.12,1281.22,0.5163577237212605 -1987-09-15,0.0,13.309999999999999,0.511999537037037,348.02,960.83,0.5390904536964104 -1987-09-16,0.02,13.455,0.511999537037037,296.57,1082.83,0.5304303660868295 -1987-09-17,5.43,10.89,0.5079996527777778,231.72,917.36,0.5477505413059912 -1987-09-18,0.0,9.24,0.5067805555555556,337.67,751.39,0.5574931398667697 -1987-09-19,0.0,9.11,0.503999537037037,272.19,832.34,0.5607406727203627 -1987-09-20,0.86,8.485,0.4999997685185186,214.06,861.52,0.5531630960619793 -1987-09-21,13.88,8.655,0.4999997685185186,91.7,985.41,0.5726482931835363 -1987-09-22,9.84,9.115,0.4959997685185185,107.88,994.03,0.6614141911817405 -1987-09-23,4.55,10.915,0.49366840277777774,193.07,991.56,0.6993020744736568 -1987-09-24,2.0,9.315,0.4919994212962963,307.18,790.33,0.7068796511320401 -1987-09-25,0.0,5.784999999999999,0.48800034722222224,304.69,629.2,0.7047146292296448 -1987-09-26,3.28,4.195,0.48800034722222224,267.74,520.0,0.7014670963760521 -1987-09-27,1.08,4.69,0.4840002314814815,320.55,558.91,0.6733218116449141 -1987-09-28,0.45,5.83,0.48167002314814816,367.71,485.22,0.6624967021329381 -1987-09-29,0.0,14.620000000000001,0.4800005787037037,336.0,1036.67,0.6505890816697643 -1987-09-30,5.19,17.05,0.4760001157407408,241.66,1418.54,0.6451765269137762 -1987-10-01,4.39,11.14,0.4760001157407408,185.91,1053.01,0.6841469211568902 -1987-10-02,0.0,7.18,0.4719996527777777,331.12,629.25,0.6895594759128783 -1987-10-03,1.66,10.125,0.4701513888888889,277.04,853.18,0.6873944540104832 -1987-10-04,12.64,8.99,0.46799976851851854,177.65,876.04,0.7317774030095852 -1987-10-05,13.03,7.49,0.463999537037037,209.89,744.79,0.8746688485676697 -1987-10-06,0.0,9.825000000000001,0.463999537037037,353.0,635.54,0.8746688485676697 -1987-10-07,3.24,10.86,0.46,302.24,789.47,0.8919890237868314 -1987-10-08,8.01,10.035,0.45920532407407405,154.17,976.22,0.9201343085179694 -1987-10-09,1.09,5.16,0.45599953703703705,272.68,608.1,0.9168867756643766 -1987-10-10,0.0,5.65,0.45200810185185186,224.63,701.12,0.9103917099571911 -1987-10-11,0.0,2.0549999999999997,0.452,275.88,481.46,0.8844114471284483 -1987-10-12,0.0,0.4700000000000002,0.4480001157407407,327.57,341.42,0.8627612281044962 -1987-10-13,0.0,1.1,0.4480001157407407,310.08,379.37,0.837863476226951 -1987-10-14,0.0,2.9549999999999996,0.4440001157407408,317.36,400.02,0.8194607900565917 -1987-10-15,0.0,6.68,0.44166932870370373,306.16,547.88,0.793480527227849 -1987-10-16,0.0,4.994999999999999,0.4400003472222222,303.64,476.25,0.7642527315455134 -1987-10-17,0.0,7.3,0.43611064814814815,287.17,600.24,0.7523451110823397 -1987-10-18,0.52,10.235,0.43600011574074077,220.54,890.24,0.7328599139607828 -1987-10-19,0.0,8.485,0.43200000000000005,219.73,780.7,0.7057971401808425 -1987-10-20,0.0,7.985,0.43194837962962956,249.98,691.89,0.6808993883032974 -1987-10-21,4.05,7.8149999999999995,0.428,139.39,786.9,0.6808993883032974 -1987-10-22,5.17,2.88,0.4261517361111111,147.88,543.66,0.6451765269137762 -1987-10-23,0.21,-0.8599999999999999,0.42400011574074076,214.33,400.0,0.6256913297922193 -1987-10-24,6.57,2.245,0.42121863425925926,152.78,530.11,0.609453665524255 -1987-10-25,17.86,5.164999999999999,0.41999976851851856,125.51,661.21,0.754510132984735 -1987-10-26,1.99,3.72,0.4164640046296296,170.82,583.43,0.8443585419341366 -1987-10-27,0.0,3.145,0.4159996527777778,252.07,440.0,0.8443585419341366 -1987-10-28,3.67,5.6850000000000005,0.4121109953703704,198.92,590.48,0.8833289361772506 -1987-10-29,4.94,7.13,0.41200046296296294,127.89,756.62,0.9818374327362333 -1987-10-30,2.94,2.565,0.4080084490740741,127.03,554.15,1.0153952722233592 -1987-10-31,1.19,2.19,0.40794895833333333,129.01,576.18,1.0337979583937187 -1987-11-01,0.58,0.010000000000000009,0.40399999999999997,139.15,474.56,1.0446230679056947 -1987-11-02,0.0,-1.4,0.4037145833333334,188.39,379.07,1.0424580460032995 -1987-11-03,3.11,0.43500000000000005,0.40000023148148145,145.42,440.38,1.0500356226616827 -1987-11-04,9.76,4.75,0.39971435185185183,100.99,669.81,1.1366364987574917 -1987-11-05,9.08,7.234999999999999,0.3960082175925926,133.74,730.19,1.36396379850899 -1987-11-06,3.03,-0.6949999999999998,0.39571446759259266,140.37,424.55,1.3856140175329423 -1987-11-07,0.06,-5.75,0.3921108796296296,163.92,282.83,1.3856140175329423 -1987-11-08,0.03,-2.925,0.3919487268518519,179.12,355.35,1.3964391270449183 -1987-11-09,1.25,-2.0900000000000003,0.3884644675925926,116.25,428.93,1.3856140175329423 -1987-11-10,0.0,-5.2700000000000005,0.38799999999999996,139.01,317.43,1.36396379850899 -1987-11-11,0.0,-6.535,0.3848466435185185,189.62,246.9,1.3314884699730618 -1987-11-12,0.0,-6.5200000000000005,0.3840003472222222,187.71,249.54,1.277362922413181 -1987-11-13,0.2,-3.6599999999999997,0.38166932870370374,171.62,332.5,1.2448875938772528 -1987-11-14,2.13,-0.09999999999999987,0.3799997685185186,143.63,454.25,1.2232373748533005 -1987-11-15,0.0,-1.9149999999999998,0.37920590277777777,158.67,399.35,1.179936936805396 -1987-11-16,0.0,-5.38,0.37611087962962964,191.22,274.28,1.1366364987574917 -1987-11-17,0.8,-1.0549999999999997,0.3759486111111111,197.72,351.7,1.1041611702215632 -1987-11-18,5.71,6.76,0.37321898148148147,149.12,607.23,1.1474616082694677 -1987-11-19,0.11,3.3649999999999993,0.3719998842592593,189.74,499.88,1.1474616082694677 -1987-11-20,4.46,-0.6599999999999999,0.37120578703703705,115.15,441.56,1.1258113892455155 -1987-11-21,6.52,-5.19,0.3684645833333333,126.8,297.33,1.1149862797335395 -1987-11-22,0.38,-7.445,0.3680003472222222,110.72,288.6,1.071685841685635 -1987-11-23,0.0,-6.0200000000000005,0.36615196759259255,189.22,268.97,1.0370454912473115 -1987-11-24,0.81,-1.61,0.3644642361111111,163.4,392.41,1.0208078269793472 -1987-11-25,0.0,-0.8549999999999999,0.36400011574074076,113.39,472.9,0.9796724108338379 -1987-11-26,1.03,-4.01,0.3621513888888889,122.81,359.44,0.9515271261027002 -1987-11-27,0.0,-8.61,0.3604638888888889,203.94,194.53,0.9125567318595862 -1987-11-28,0.0,-7.800000000000001,0.3599998842592593,199.37,200.08,0.8779163814212626 -1987-11-29,0.02,-6.665,0.35920578703703704,203.57,206.91,0.8508536076413223 -1987-11-30,22.46,-0.5749999999999997,0.3572189814814815,127.22,408.76,0.9482795932491073 -1987-12-01,26.07,2.98,0.35611041666666665,69.89,633.54,1.5263404411886317 -1987-12-02,2.79,-1.2650000000000001,0.3559483796296296,73.88,476.83,1.6670668648443212 -1987-12-03,0.0,-4.88,0.3546476851851852,122.88,334.29,1.7969681789880345 -1987-12-04,0.0,-6.645,0.35321898148148145,165.94,244.54,1.8943941645958196 -1987-12-05,0.96,-7.12,0.35211030092592593,142.67,262.94,1.9593448216676759 -1987-12-06,2.43,-4.775,0.35199988425925927,104.48,334.86,2.0026452597155804 -1987-12-07,0.0,-5.06,0.35171423611111113,123.93,324.99,2.013470369227557 -1987-12-08,0.01,-4.82,0.3506474537037037,174.17,280.0,1.9918201502036044 -1987-12-09,4.23,-3.235,0.34966921296296294,106.12,354.65,1.9809950406916284 -1987-12-10,6.32,-0.5850000000000001,0.3488465277777778,48.54,522.6,1.9701699311796523 -1987-12-11,1.59,-0.635,0.3481105324074074,42.63,545.2,1.9376946026437238 -1987-12-12,0.0,-2.95,0.3480079861111111,73.89,430.85,1.8835690550838433 -1987-12-13,0.0,-5.325,0.34794849537037037,104.28,331.28,1.8186183980119868 -1987-12-14,0.0,-7.890000000000001,0.34771435185185184,116.17,270.4,1.742842631428154 -1987-12-15,0.0,-11.620000000000001,0.3472057870370371,182.12,154.11,1.656241755332345 -1987-12-16,7.34,-9.085,0.3466476851851852,118.37,207.47,1.6129413172844407 -1987-12-17,3.85,-7.455,0.3466476851851852,73.13,293.04,1.5696408792365362 -1987-12-18,0.0,-12.21,0.3461518518518519,140.27,179.6,1.4830400031407271 -1987-12-19,0.0,-14.559999999999999,0.3461518518518519,163.44,132.79,1.4397395650928229 -1987-12-20,3.85,-13.535,0.3456693287037037,150.6,120.58,1.3747889080209663 -1987-12-21,5.18,-6.77,0.3456693287037037,135.5,225.7,1.3206633604610856 -1987-12-22,1.47,-6.670000000000001,0.3461518518518519,177.34,228.75,1.277362922413181 -1987-12-23,0.0,-6.82,0.3461518518518519,165.36,248.56,1.2232373748533005 -1987-12-24,0.0,-7.785,0.3461518518518519,151.28,240.79,1.179936936805396 -1987-12-25,5.86,-8.805,0.3466476851851852,95.53,242.67,1.1474616082694677 -1987-12-26,6.19,-12.85,0.3472057870370371,140.6,144.08,1.066273286929647 -1987-12-27,0.03,-14.469999999999999,0.34771435185185184,193.32,120.0,0.9688473013218619 -1987-12-28,0.0,-14.74,0.34794849537037037,174.03,119.99,0.9255468632739575 -1987-12-29,0.0,-21.82,0.34800000000000003,188.04,74.79,0.882246425226053 -1987-12-30,0.0,-20.005000000000003,0.3480079861111111,170.65,80.29,0.8281208776661725 -1987-12-31,0.0,-15.36,0.3484641203703704,186.65,120.0,0.7956455491302442 -1988-01-01,0.01,-7.965,0.34921886574074074,169.72,192.44,0.768582775350304 -1988-01-02,0.06,-10.59,0.35015162037037034,171.93,154.13,0.7469325563263517 -1988-01-03,0.0,-12.77,0.35120578703703703,174.87,123.92,0.7252823373023994 -1988-01-04,6.71,-11.185,0.3519482638888889,145.61,160.0,0.7090446730344352 -1988-01-05,6.16,-11.48,0.35200787037037035,94.38,182.89,0.6928070087664712 -1988-01-06,0.0,-19.310000000000002,0.35284641203703704,142.05,80.0,0.6711567897425189 -1988-01-07,0.0,-20.145000000000003,0.3541518518518519,115.19,80.91,0.6549191254745548 -1988-01-08,0.0,-22.745,0.35571446759259256,201.59,40.0,0.6386814612065905 -1988-01-09,1.8,-17.01,0.35600000000000004,180.93,86.38,0.6278563516946144 -1988-01-10,0.0,-15.57,0.3564643518518519,170.36,119.88,0.6116186874266503 -1988-01-11,0.0,-16.08,0.35815185185185183,196.88,81.75,0.5953810231586861 -1988-01-12,0.0,-11.295,0.3599482638888889,196.34,134.79,0.58455591364671 -1988-01-13,0.76,-6.739999999999999,0.36000787037037035,180.87,212.6,0.5737308041347339 -1988-01-14,0.0,-23.715,0.36121863425925926,188.94,40.0,0.5629056946227577 -1988-01-15,0.0,-23.064999999999998,0.3637142361111111,185.04,40.08,0.5520805851107816 -1988-01-16,0.0,-13.27,0.36400011574074076,189.54,127.08,0.5412554755988056 -1988-01-17,0.0,-4.765000000000001,0.36521898148148146,185.52,275.51,0.5304303660868295 -1988-01-18,7.24,0.020000000000000018,0.36771435185185186,62.23,518.46,0.5250178113308414 -1988-01-19,11.4,-2.4699999999999998,0.3680083333333333,64.37,427.7,0.5196052565748533 -1988-01-20,7.25,-4.555,0.3696696759259259,76.14,348.77,0.5087801470628772 -1988-01-21,5.81,-2.5999999999999996,0.3719483796296296,95.72,384.04,0.5033675923068892 -1988-01-22,0.0,-10.24,0.37211041666666667,215.57,160.0,0.4979550375509011 -1988-01-23,0.0,-14.095,0.3746479166666667,221.07,117.9,0.4925424827949131 -1988-01-24,0.67,-14.395,0.3760002314814815,250.02,80.0,0.487129928038925 -1988-01-25,4.69,-5.165,0.3772188657407407,132.36,288.92,0.48171737328293696 -1988-01-26,9.17,-4.37,0.3799997685185186,92.51,346.36,0.4763048185269489 -1988-01-27,1.66,-13.165,0.3804640046296296,183.24,149.63,0.47089226377096083 -1988-01-28,0.0,-20.72,0.383714699074074,240.07,69.75,0.46547970901497276 -1988-01-29,0.0,-21.49,0.38400833333333334,271.34,40.0,0.4600671542589847 -1988-01-30,3.61,-15.76,0.3866476851851852,207.07,81.48,0.4600671542589847 -1988-01-31,1.94,-3.055,0.38799999999999996,173.52,349.39,0.4546545995029967 -1988-02-01,2.84,2.78,0.3901519675925926,141.74,557.0,0.4546545995029967 -1988-02-02,4.03,-4.245,0.39200034722222227,184.95,267.76,0.44924204474700863 -1988-02-03,0.0,-18.27,0.3936696759259259,277.37,80.0,0.44924204474700863 -1988-02-04,5.24,-17.755000000000003,0.39600023148148145,204.3,80.0,0.44382948999102056 -1988-02-05,5.32,-17.235,0.3972188657407407,137.54,118.87,0.4384169352350325 -1988-02-06,0.0,-20.285,0.40000023148148145,249.46,79.89,0.4330043804790444 -1988-02-07,0.15,-20.37,0.4012189814814815,269.09,80.0,0.4330043804790444 -1988-02-08,1.16,-16.475,0.40399999999999997,282.75,83.22,0.4275918257230564 -1988-02-09,0.34,-16.86,0.40521898148148144,300.82,80.0,0.4221792709670683 -1988-02-10,2.05,-14.354999999999999,0.4080003472222223,254.74,120.78,0.4221792709670683 -1988-02-11,0.0,-18.035,0.40966990740740744,317.68,80.0,0.4221792709670683 -1988-02-12,7.52,-19.2,0.41200046296296294,295.44,60.33,0.4221792709670683 -1988-02-13,17.69,-11.435,0.41464768518518513,156.15,179.99,0.4221792709670683 -1988-02-14,4.74,-11.66,0.4159996527777778,177.6,167.69,0.4221792709670683 -1988-02-15,3.5,-9.325,0.419205324074074,235.99,187.86,0.4221792709670683 -1988-02-16,2.42,-7.42,0.41999976851851856,176.95,265.74,0.4275918257230564 -1988-02-17,0.78,-11.295,0.42400011574074076,289.89,160.0,0.4275918257230564 -1988-02-18,0.84,-8.125,0.42400011574074076,291.69,200.16,0.4221792709670683 -1988-02-19,0.02,-8.84,0.428,374.46,120.0,0.4221792709670683 -1988-02-20,7.72,-0.44500000000000006,0.42846388888888887,136.36,458.05,0.4221792709670683 -1988-02-21,0.89,-8.345,0.43200000000000005,330.94,170.09,0.4221792709670683 -1988-02-22,0.0,-13.895,0.4336695601851852,395.72,80.0,0.4221792709670683 -1988-02-23,0.02,-4.37,0.43600011574074077,296.66,279.52,0.4221792709670683 -1988-02-24,0.0,-7.815,0.4399488425925926,333.64,192.71,0.4167667162110803 -1988-02-25,0.0,-15.58,0.4400003472222222,400.14,80.0,0.4167667162110803 -1988-02-26,0.02,-13.475000000000001,0.4440001157407408,392.59,87.87,0.4113541614550923 -1988-02-27,0.0,-12.195,0.4440081018518519,383.66,119.66,0.4059416066991042 -1988-02-28,0.0,-12.88,0.4480001157407407,391.7,102.54,0.4059416066991042 -1988-02-29,0.0,-12.825000000000001,0.4501516203703704,422.6,80.0,0.40052905194311617 -1988-03-01,0.0,-7.54,0.452,343.57,200.0,0.40052905194311617 -1988-03-02,0.0,-8.61,0.45599953703703705,360.14,170.15,0.39511649718712805 -1988-03-03,0.0,-8.085,0.45599953703703705,292.87,209.9,0.384291387675152 -1988-03-04,0.0,-14.309999999999999,0.46,421.29,80.0,0.37887883291916397 -1988-03-05,0.0,-15.01,0.4604638888888889,369.22,104.14,0.3680537234071878 -1988-03-06,0.0,-14.530000000000001,0.463999537037037,438.96,80.0,0.3626411686511997 -1988-03-07,0.31,-1.8450000000000002,0.46799976851851854,263.17,366.02,0.3518160591392236 -1988-03-08,0.0,-7.43,0.46799976851851854,363.06,199.99,0.3464035043832356 -1988-03-09,0.74,-8.41,0.4719996527777777,364.75,171.7,0.33557839487125946 -1988-03-10,2.9,-3.725,0.4719996527777777,222.67,315.32,0.3301658401152714 -1988-03-11,0.0,-9.790000000000001,0.4760001157407408,344.51,178.22,0.31934073060329526 -1988-03-12,0.0,-12.705,0.4800005787037037,317.18,150.03,0.3139281758473072 -1988-03-13,0.0,-8.745,0.4800005787037037,337.87,202.93,0.3085156210913192 -1988-03-14,1.46,-3.955,0.4840002314814815,273.48,317.75,0.30310306633533113 -1988-03-15,0.0,-5.91,0.4840002314814815,403.21,221.75,0.29769051157934306 -1988-03-16,0.0,-5.0,0.48800034722222224,342.0,275.02,0.292277956823355 -1988-03-17,0.0,-5.225,0.4919994212962963,428.03,215.67,0.28686540206736694 -1988-03-18,0.0,-4.005,0.4919994212962963,437.12,240.74,0.2814528473113789 -1988-03-19,0.02,-3.1799999999999997,0.4959997685185185,354.22,303.59,0.2760402925553908 -1988-03-20,0.48,-10.675,0.4959997685185185,475.16,120.0,0.2706277377994028 -1988-03-21,0.0,-14.35,0.4999997685185186,403.35,120.0,0.2706277377994028 -1988-03-22,0.0,-11.48,0.503999537037037,325.42,162.37,0.26521518304341474 -1988-03-23,0.0,-8.735,0.503999537037037,488.93,149.56,0.26521518304341474 -1988-03-24,0.0,0.10999999999999988,0.5079996527777778,310.81,436.81,0.26521518304341474 -1988-03-25,0.18,-0.8649999999999993,0.5079996527777778,477.88,283.36,0.2706277377994028 -1988-03-26,7.65,3.4450000000000003,0.511999537037037,251.98,540.28,0.292277956823355 -1988-03-27,7.88,5.279999999999999,0.5159998842592592,166.8,717.16,0.35722861389521166 -1988-03-28,2.81,1.32,0.5159998842592592,267.81,487.94,0.44382948999102056 -1988-03-29,0.0,-2.385,0.520000462962963,378.73,338.47,0.5412554755988056 -1988-03-30,0.0,-0.8749999999999996,0.520000462962963,494.06,320.0,0.58455591364671 -1988-03-31,0.0,2.8200000000000003,0.5240002314814816,443.35,454.38,0.6495065707185667 -1988-04-01,0.0,2.9549999999999996,0.5279998842592593,509.49,400.97,0.7469325563263517 -1988-04-02,0.0,3.5749999999999997,0.5279998842592593,459.65,470.91,0.8172957681541964 -1988-04-03,1.99,4.39,0.5319998842592593,481.41,423.31,0.9980750970041974 -1988-04-04,7.83,6.535,0.5319998842592593,237.21,726.99,1.5155153316766559 -1988-04-05,5.76,3.855,0.5359994212962963,150.93,682.29,2.1758470119071984 -1988-04-06,0.06,2.7,0.5395353009259259,321.33,558.62,2.6954522684820517 -1988-04-07,0.0,3.39,0.54,374.19,558.47,3.215057525056905 -1988-04-08,0.06,4.71,0.5439997685185185,390.98,605.89,3.648061905535949 -1988-04-09,0.0,2.74,0.5439997685185185,436.23,497.61,4.09189139552697 -1988-04-10,0.76,4.185,0.5479999999999999,293.67,645.09,4.514070666494038 -1988-04-11,2.35,2.84,0.5498481481481481,281.96,576.38,4.936249937461107 -1988-04-12,0.0,0.44499999999999984,0.5520004629629629,490.27,399.45,5.174402346724581 -1988-04-13,0.0,0.10999999999999988,0.5559922453703704,535.49,350.73,5.271828332332366 -1988-04-14,0.0,2.26,0.5560002314814815,543.8,400.16,5.293478551356318 -1988-04-15,0.0,3.635,0.56,514.43,463.34,5.26100322282039 -1988-04-16,9.83,2.5700000000000003,0.5600517361111111,265.16,553.32,5.206877675260509 -1988-04-17,6.47,1.355,0.5639996527777777,167.77,572.58,5.174402346724581 -1988-04-18,5.07,2.4349999999999996,0.5663305555555556,246.39,561.1,5.174402346724581 -1988-04-19,6.24,2.07,0.5679997685185185,225.49,572.22,5.26100322282039 -1988-04-20,0.33,-0.8000000000000003,0.5715351851851852,469.16,392.55,5.163577237212605 -1988-04-21,0.88,0.16000000000000014,0.5719994212962963,293.53,492.32,5.033675923068892 -1988-04-22,3.04,1.915,0.5760005787037037,242.69,577.51,4.892949499413202 -1988-04-23,0.2,4.39,0.5760005787037037,493.31,563.82,4.784698404293441 -1988-04-24,4.68,4.845,0.5800003472222222,331.19,641.08,4.730572856733561 -1988-04-25,4.92,2.32,0.5807946759259259,212.64,602.72,4.719747747221584 -1988-04-26,3.04,4.06,0.5840005787037037,440.02,524.33,4.665622199661704 -1988-04-27,4.23,5.369999999999999,0.5853530092592593,347.12,649.92,4.698097528197632 -1988-04-28,0.0,4.945,0.5880002314814815,556.36,510.7,4.665622199661704 -1988-04-29,4.49,5.32,0.5903311342592593,421.12,618.92,4.643971980637752 -1988-04-30,8.08,2.7249999999999996,0.5920008101851852,175.39,640.58,4.795523513805417 -1988-05-01,2.88,3.435,0.5943310185185184,227.8,655.58,4.795523513805417 -1988-05-02,0.04,4.8549999999999995,0.5959997685185184,448.2,643.84,4.741397966245537 -1988-05-03,0.0,5.069999999999999,0.5987809027777777,588.79,495.76,4.665622199661704 -1988-05-04,0.0,9.945,0.5999998842592592,589.82,641.92,4.568196214053919 -1988-05-05,0.0,10.995000000000001,0.6027810185185185,636.13,441.91,4.503245556982062 -1988-05-06,0.0,13.46,0.6039996527777778,626.6,549.85,4.416644680886253 -1988-05-07,0.0,10.745,0.6063304398148148,614.31,530.15,4.275918257230564 -1988-05-08,0.0,6.74,0.6079995370370371,627.94,379.61,4.124366724062899 -1988-05-09,0.0,12.71,0.6098476851851852,616.1,561.22,3.994465409919185 -1988-05-10,0.0,13.34,0.6120002314814815,596.83,632.73,3.7563130006557106 -1988-05-11,2.73,11.895,0.6133524305555556,450.71,834.51,3.5398108104161885 -1988-05-12,6.38,9.325000000000001,0.6159914351851852,419.67,649.04,3.409909496272475 -1988-05-13,0.81,12.015,0.6162851851851852,564.65,596.49,3.2908332916407383 -1988-05-14,2.18,9.885000000000002,0.6195356481481481,498.98,546.4,3.095981320425168 -1988-05-15,0.0,6.12,0.6199998842592592,603.57,354.68,2.9552548967694783 -1988-05-16,0.04,14.06,0.6227818287037037,487.35,825.11,2.7928782540898367 -1988-05-17,7.48,12.995000000000001,0.6240006944444445,304.11,1031.8,2.630501611410195 -1988-05-18,7.77,9.765,0.6253526620370371,248.23,921.2,2.5655509543383386 -1988-05-19,0.0,13.67,0.6278895833333333,450.34,896.5,2.457299859218577 -1988-05-20,0.0,16.215,0.6280518518518519,498.0,887.09,2.33822365458684 -1988-05-21,0.0,18.37,0.6303303240740741,402.95,1251.39,2.219147449955103 -1988-05-22,0.0,19.28,0.6319916666666667,419.21,1246.57,2.110896354835342 -1988-05-23,1.35,16.875,0.6322856481481481,370.75,1195.27,1.9701699311796523 -1988-05-24,0.0,12.32,0.6347809027777778,493.8,671.49,1.851093726547915 -1988-05-25,7.26,7.32,0.6360001157407408,363.05,622.89,1.7320175219161775 -1988-05-26,9.01,6.369999999999999,0.6362856481481481,154.18,799.66,1.7320175219161775 -1988-05-27,5.75,9.950000000000001,0.6387810185185185,345.86,738.51,1.7320175219161775 -1988-05-28,1.09,14.530000000000001,0.6399917824074074,481.28,819.74,1.6670668648443212 -1988-05-29,0.0,13.22,0.6400512731481481,460.07,807.58,1.5804659887485122 -1988-05-30,1.58,11.9,0.6418483796296296,428.9,733.86,1.5155153316766559 -1988-05-31,3.58,14.14,0.6435354166666667,273.16,1112.18,1.4180893460688704 -1988-06-01,0.35,9.48,0.6439998842592592,394.35,743.61,1.2990131414371333 -1988-06-02,0.57,7.6899999999999995,0.6442856481481481,269.46,804.31,1.2340624843652768 -1988-06-03,0.0,6.8549999999999995,0.6458482638888889,452.77,555.0,1.158286717781444 -1988-06-04,0.0,9.705,0.6471538194444444,512.08,537.34,1.0933360607095872 -1988-06-05,0.41,11.180000000000001,0.6479927083333333,455.37,718.49,1.032715447442521 -1988-06-06,0.99,12.365,0.6480521990740741,377.29,948.45,0.9569396808586882 -1988-06-07,0.0,8.235,0.6487947916666666,471.49,588.27,0.9125567318595862 -1988-06-08,0.0,6.74,0.6498487268518519,349.4,704.07,0.8605962062021009 -1988-06-09,0.0,8.055,0.6507814814814814,430.2,657.86,0.8097181914958131 -1988-06-10,0.0,10.325000000000001,0.6515357638888889,416.5,781.5,0.7675002643991063 -1988-06-11,0.0,11.605,0.6519921296296297,512.91,617.22,0.7285298701559924 -1988-06-12,0.61,17.240000000000002,0.6520001157407407,504.44,841.72,0.6830644102056928 -1988-06-13,5.81,19.025,0.6520517361111111,369.67,1264.73,0.6408464831089858 -1988-06-14,11.1,17.005,0.6522856481481482,294.15,1325.13,0.6949720306688663 -1988-06-15,0.32,20.96,0.6527943287037037,448.08,1360.51,0.6852294321080878 -1988-06-16,0.0,23.055,0.653352662037037,439.24,1551.78,0.6267738407434169 -1988-06-17,3.44,17.21,0.653848611111111,333.2,1265.22,0.5910509793538956 -1988-06-18,0.0,16.75,0.653848611111111,358.7,1333.6,0.5758958260371291 -1988-06-19,0.0,17.44,0.653848611111111,488.42,984.78,0.5499155632083865 -1988-06-20,2.88,22.09,0.6543310185185185,377.25,1617.71,0.5315128770380272 -1988-06-21,5.27,20.0,0.6543310185185185,304.88,1532.14,0.5098626580140748 -1988-06-22,1.92,19.465,0.653848611111111,383.7,1379.86,0.5001200594532963 -1988-06-23,6.6,16.585,0.653848611111111,293.83,1280.54,0.47955235138054175 -1988-06-24,0.0,11.185,0.653352662037037,439.29,817.36,0.45032455569820623 -1988-06-25,7.11,12.75,0.653352662037037,347.48,1001.15,0.4416644680886253 -1988-06-26,9.78,12.305,0.6527943287037037,242.44,1058.59,0.4752223075757513 -1988-06-27,0.0,12.825,0.6522856481481482,408.43,958.72,0.43083935857664923 -1988-06-28,1.36,14.629999999999999,0.6520517361111111,439.09,963.46,0.4189317381134755 -1988-06-29,15.24,14.004999999999999,0.6519921296296297,277.8,1128.76,0.5250178113308414 -1988-06-30,9.59,13.545,0.6518894675925926,241.55,1163.69,0.5087801470628772 -1988-07-01,12.78,12.094999999999999,0.6511538194444445,176.71,1160.33,0.6744043225961118 -1988-07-02,12.99,11.025,0.6503311342592593,192.71,1056.34,0.9580221918098859 -1988-07-03,2.69,14.719999999999999,0.6493528935185184,344.19,1165.05,0.9526096370538978 -1988-07-04,0.0,18.225,0.6482863425925927,488.85,1154.44,0.9666822794194668 -1988-07-05,0.0,19.66,0.6480008101851852,485.1,1247.95,0.9634347465658739 -1988-07-06,0.13,20.525,0.647890162037037,370.34,1688.77,0.9536921480050955 -1988-07-07,4.82,20.09,0.64678125,281.46,1665.87,0.9428670384931193 -1988-07-08,5.2,23.365000000000002,0.645352199074074,286.25,2020.94,0.9352894618347359 -1988-07-09,0.79,25.29,0.6440515046296297,370.13,2203.91,0.9103917099571911 -1988-07-10,4.1,23.965,0.6438894675925926,277.91,2074.7,0.8854939580796459 -1988-07-11,3.6,23.020000000000003,0.6427809027777778,247.67,2089.68,0.8692562938116817 -1988-07-12,9.6,20.325,0.6407940972222222,258.81,1753.11,0.8616787171532985 -1988-07-13,8.19,18.17,0.6399997685185186,382.34,1321.89,0.8909065128356339 -1988-07-14,4.38,18.3,0.6395354166666667,338.34,1416.73,0.8995666004452149 -1988-07-15,1.96,15.505,0.6378482638888888,369.16,1191.53,0.8789988923724602 -1988-07-16,3.62,13.655000000000001,0.6360001157407408,276.92,1164.76,0.876833870470065 -1988-07-17,4.0,15.254999999999999,0.6355359953703703,258.31,1336.08,0.8638437390556937 -1988-07-18,0.0,17.634999999999998,0.6338483796296296,461.4,1261.17,0.837863476226951 -1988-07-19,7.09,18.71,0.6319996527777777,311.09,1514.56,0.8367809652757534 -1988-07-20,7.88,17.8,0.6315355324074073,293.07,1475.23,0.8746688485676697 -1988-07-21,0.0,16.79,0.6287943287037038,481.65,1147.45,0.8746688485676697 -1988-07-22,0.0,18.985,0.628,438.9,1420.47,0.8735863376164721 -1988-07-23,0.0,19.29,0.6267813657407407,487.27,1272.64,0.8508536076413223 -1988-07-24,0.0,19.28,0.624052199074074,421.69,1472.37,0.8302858995685677 -1988-07-25,0.0,17.56,0.6238902777777778,422.71,1337.37,0.798893081983837 -1988-07-26,1.99,18.915,0.6207944444444444,386.3,1520.45,0.7794078848622801 -1988-07-27,0.6,20.625,0.6199998842592592,302.75,1867.07,0.754510132984735 -1988-07-28,3.44,20.805,0.6183303240740741,289.27,1771.27,0.7003845854248544 -1988-07-29,0.0,20.619999999999997,0.615999537037037,447.74,1509.16,0.6560016364257523 -1988-07-30,1.12,23.105,0.6151532407407407,424.72,1713.96,0.6170312421826384 -1988-07-31,0.0,22.845,0.6120002314814815,391.86,1872.27,0.5758958260371291 -1988-08-01,0.0,18.72,0.6115356481481482,480.56,1182.04,0.545585519403596 -1988-08-02,0.0,21.035,0.6080510416666667,407.68,1621.06,0.5131101908676677 -1988-08-03,15.17,19.27,0.6078891203703704,279.08,1557.12,0.4914599718437154 -1988-08-04,20.62,21.189999999999998,0.6042853009259259,278.91,1750.92,0.5033675923068892 -1988-08-05,9.86,23.700000000000003,0.6039916666666666,239.21,2190.87,0.5044501032580868 -1988-08-06,16.08,24.159999999999997,0.6002854166666667,235.14,2252.83,0.5022850813556916 -1988-08-07,19.18,23.4,0.5999998842592592,223.38,2188.44,0.6527541035721596 -1988-08-08,4.5,21.715,0.5962851851851851,235.3,2014.28,0.5888859574515005 -1988-08-09,2.3,21.29,0.5959997685185184,227.08,2010.33,0.5802258698419196 -1988-08-10,2.29,22.17,0.5920523148148148,255.16,2108.32,0.5878034465003028 -1988-08-11,0.0,20.369999999999997,0.591992824074074,441.36,1443.36,0.5780608479395244 -1988-08-12,0.0,21.435,0.5880002314814815,420.19,1615.1,0.5715657822323387 -1988-08-13,2.17,20.425,0.5879922453703703,341.46,1669.95,0.5585756508179673 -1988-08-14,4.41,16.065,0.5840005787037037,325.41,1288.33,0.5423379865500033 -1988-08-15,16.55,16.060000000000002,0.5835359953703704,157.07,1526.5,0.6072886436218599 -1988-08-16,14.77,15.875,0.5800003472222222,129.25,1560.96,0.9201343085179694 -1988-08-17,1.88,15.91,0.5787818287037036,342.3,1297.61,0.857348673348508 -1988-08-18,0.0,14.835,0.5760005787037037,378.77,1180.59,0.8237908338613822 -1988-08-19,0.25,11.540000000000001,0.5738478009259259,448.89,810.43,0.8108007024470107 -1988-08-20,0.38,12.61,0.5719994212962963,404.07,953.44,0.7859029505694657 -1988-08-21,0.04,11.21,0.5680513888888888,398.86,896.36,0.7512626001311421 -1988-08-22,0.17,9.805,0.5679997685185185,420.63,777.18,0.6960545416200639 -1988-08-23,0.37,10.16,0.5639996527777777,448.53,720.69,0.65708414737695 -1988-08-24,0.01,11.44,0.5639916666666667,457.72,770.14,0.6213612859874288 -1988-08-25,16.75,12.485000000000001,0.56,284.31,974.81,0.6213612859874288 -1988-08-26,9.34,15.674999999999999,0.558330324074074,198.96,1395.79,0.65708414737695 -1988-08-27,1.4,17.815,0.5560002314814815,316.28,1435.46,0.6278563516946144 -1988-08-28,6.09,17.175,0.5520519675925926,267.02,1368.32,0.6321863954994049 -1988-08-29,5.02,18.035,0.5520004629629629,164.92,1707.66,0.6365164393041954 -1988-08-30,1.95,15.725000000000001,0.5479999999999999,291.04,1337.43,0.6072886436218599 -1988-08-31,0.0,14.185,0.5479921296296296,382.07,1101.97,0.5823908917443148 -1988-09-01,0.0,13.165,0.5439997685185185,428.3,914.76,0.5585756508179673 -1988-09-02,1.19,15.665,0.540794212962963,399.7,1084.51,0.545585519403596 -1988-09-03,2.62,15.92,0.54,326.08,1244.28,0.5813083807931171 -1988-09-04,3.55,11.295,0.5359994212962963,342.73,910.25,0.5423379865500033 -1988-09-05,11.81,13.61,0.5359994212962963,223.22,1182.98,0.5629056946227577 -1988-09-06,3.6,10.67,0.5319998842592593,319.43,828.86,0.5520805851107816 -1988-09-07,0.55,9.34,0.5298482638888888,339.66,798.55,0.5217702784772486 -1988-09-08,0.0,12.39,0.5279998842592593,387.17,911.01,0.49687252659970355 -1988-09-09,0.0,13.875,0.5240002314814816,407.13,921.54,0.4752223075757513 -1988-09-10,0.33,15.41,0.5240002314814816,367.27,1112.8,0.4600671542589847 -1988-09-11,1.19,13.45,0.520000462962963,330.94,1045.87,0.4275918257230564 -1988-09-12,2.23,11.805,0.5183310185185186,260.36,1033.2,0.4037765847967089 -1988-09-13,6.81,11.265,0.5159998842592592,197.03,1020.31,0.4189317381134755 -1988-09-14,3.22,8.545,0.511999537037037,232.38,794.17,0.40269407384551137 -1988-09-15,1.05,7.41,0.511999537037037,309.43,720.0,0.40269407384551137 -1988-09-16,0.0,6.515000000000001,0.5079996527777778,374.88,592.79,0.3810438548215591 -1988-09-17,2.64,10.165,0.5067805555555556,336.26,744.03,0.37021874530958304 -1988-09-18,9.96,12.265,0.503999537037037,157.74,1151.34,0.3864564095775472 -1988-09-19,5.09,12.855,0.4999997685185186,135.15,1243.45,0.3994465409919185 -1988-09-20,1.31,14.045,0.4999997685185186,303.7,1092.55,0.3821263657727567 -1988-09-21,4.04,15.145,0.4959997685185185,186.25,1314.8,0.384291387675152 -1988-09-22,2.01,11.375,0.49366840277777774,226.64,1009.88,0.3637236796023974 -1988-09-23,1.1,6.515,0.4919994212962963,313.24,638.4,0.35289857009042125 -1988-09-24,1.52,8.174999999999999,0.48800034722222224,272.27,793.93,0.3420734605784451 -1988-09-25,0.0,7.58,0.48800034722222224,369.54,602.35,0.3290833291640738 -1988-09-26,0.0,8.57,0.4840002314814815,335.0,712.13,0.3182582196520977 -1988-09-27,1.13,6.485,0.48167002314814816,328.24,561.33,0.30526808823772633 -1988-09-28,3.09,7.7250000000000005,0.4800005787037037,190.11,801.03,0.30635059918892393 -1988-09-29,0.13,5.66,0.4760001157407408,290.32,617.56,0.29336046777455266 -1988-09-30,0.0,6.694999999999999,0.4760001157407408,309.92,635.1,0.29444297872575026 -1988-10-01,0.09,12.399999999999999,0.4719996527777777,317.84,911.41,0.2890304239697622 -1988-10-02,4.92,15.475000000000001,0.4701513888888889,245.64,1255.48,0.2890304239697622 -1988-10-03,13.39,11.315,0.46799976851851854,214.61,905.52,0.3994465409919185 -1988-10-04,0.0,4.92,0.463999537037037,304.86,560.0,0.39511649718712805 -1988-10-05,2.76,3.09,0.463999537037037,264.55,485.0,0.3680537234071878 -1988-10-06,6.83,2.17,0.46,141.77,561.49,0.3832088767239544 -1988-10-07,0.0,1.415,0.45920532407407405,289.86,440.0,0.4016115628943137 -1988-10-08,0.0,1.295,0.45599953703703705,296.57,440.0,0.39186896433353524 -1988-10-09,5.29,1.8299999999999998,0.45200810185185186,175.56,540.23,0.38753892052874483 -1988-10-10,0.9,4.395,0.452,204.53,633.7,0.39186896433353524 -1988-10-11,3.05,6.5200000000000005,0.4480001157407407,183.15,738.07,0.4113541614550923 -1988-10-12,7.12,4.8,0.4480001157407407,126.6,696.45,0.4579021323565895 -1988-10-13,0.07,1.765,0.4440001157407408,118.93,602.34,0.45032455569820623 -1988-10-14,0.95,-0.30999999999999983,0.44166932870370373,181.52,452.05,0.45032455569820623 -1988-10-15,2.3,0.06499999999999995,0.4400003472222222,203.5,439.36,0.4589846433077871 -1988-10-16,0.0,3.1900000000000004,0.43611064814814815,266.54,511.81,0.46223217616137996 -1988-10-17,0.0,7.595000000000001,0.43600011574074077,223.69,771.92,0.47197477472215843 -1988-10-18,3.7,10.155000000000001,0.43200000000000005,134.32,1033.61,0.48388239518533216 -1988-10-19,10.61,4.925,0.43194837962962956,190.53,582.03,0.5217702784772486 -1988-10-20,0.0,1.8250000000000002,0.428,193.65,533.91,0.5196052565748533 -1988-10-21,0.0,0.32499999999999973,0.4261517361111111,261.26,406.42,0.5282653441844343 -1988-10-22,7.8,0.7149999999999999,0.42400011574074076,183.81,441.79,0.5380079427452128 -1988-10-23,11.35,4.28,0.42121863425925926,113.42,671.76,0.7144572277904233 -1988-10-24,5.96,5.069999999999999,0.41999976851851856,134.9,674.6,0.793480527227849 -1988-10-25,12.31,6.3149999999999995,0.4164640046296296,125.02,757.1,0.9926625422482094 -1988-10-26,0.95,4.84,0.4159996527777778,167.55,673.3,1.1149862797335395 -1988-10-27,0.0,2.9800000000000004,0.4121109953703704,234.69,520.39,1.2124122653413245 -1988-10-28,1.57,3.08,0.41200046296296294,223.04,493.66,1.3314884699730618 -1988-10-29,2.93,2.955,0.4080084490740741,164.15,552.58,1.4289144555808466 -1988-10-30,0.01,-1.1800000000000002,0.40794895833333333,145.72,455.32,1.461389784116775 -1988-10-31,0.0,-2.12,0.40399999999999997,182.9,400.13,1.4722148936287511 -1988-11-01,2.17,-0.20000000000000018,0.4037145833333334,183.29,443.15,1.4830400031407271 -1988-11-02,17.07,3.075,0.40000023148148145,139.83,571.4,1.764492850452106 -1988-11-03,10.93,3.415,0.39971435185185183,99.62,640.88,2.1866721214191744 -1988-11-04,0.05,2.585,0.3960082175925926,202.18,525.99,2.446474749706601 -1988-11-05,0.95,7.209999999999999,0.39571446759259266,191.11,719.47,2.630501611410195 -1988-11-06,4.49,10.23,0.3921108796296296,127.02,953.92,2.8361786921377408 -1988-11-07,7.7,8.25,0.3919487268518519,128.92,837.27,3.0202055538413353 -1988-11-08,8.02,5.01,0.3884644675925926,116.11,695.71,3.2908332916407383 -1988-11-09,3.98,1.935,0.38799999999999996,81.09,596.04,3.3666090582245705 -1988-11-10,4.68,2.955,0.3848466435185185,104.89,606.69,3.4423848248084035 -1988-11-11,4.27,2.9000000000000004,0.3840003472222222,118.9,586.56,3.4423848248084035 -1988-11-12,0.0,-1.6150000000000002,0.38166932870370374,155.05,427.0,3.3341337296886424 -1988-11-13,2.39,-2.9000000000000004,0.3799997685185186,172.11,359.95,3.2583579631048094 -1988-11-14,6.62,1.32,0.37920590277777777,103.5,544.9,3.215057525056905 -1988-11-15,0.0,1.865,0.37611087962962964,91.79,614.46,3.1284566489610963 -1988-11-16,0.12,1.2200000000000002,0.3759486111111111,189.8,466.98,3.0310306633533117 -1988-11-17,3.34,4.285,0.37321898148148147,134.32,592.0,2.998555334817383 -1988-11-18,4.11,2.055,0.3719998842592593,96.82,575.46,2.92277956823355 -1988-11-19,0.0,-1.27,0.37120578703703705,156.52,423.77,2.7820531445778607 -1988-11-20,5.82,-3.5100000000000002,0.3684645833333333,129.27,361.84,2.6846271589700756 -1988-11-21,15.73,-2.06,0.3680003472222222,61.72,466.89,2.6521518304341467 -1988-11-22,3.52,-4.455,0.36615196759259255,112.39,358.23,2.5872011733622906 -1988-11-23,0.0,-6.694999999999999,0.3644642361111111,191.97,258.44,2.457299859218577 -1988-11-24,0.0,-9.185,0.36400011574074076,213.1,183.26,2.3057483260509115 -1988-11-25,0.0,-7.135,0.3621513888888889,186.44,250.37,2.1758470119071984 -1988-11-26,0.0,-3.715,0.3604638888888889,208.4,280.61,2.0784210262994134 -1988-11-27,0.0,-1.2350000000000003,0.3599998842592593,209.1,319.95,1.9918201502036044 -1988-11-28,8.15,2.575,0.35920578703703704,102.53,585.06,1.9268694931317478 -1988-11-29,8.82,-1.79,0.3572189814814815,105.0,421.9,1.9485197121557 -1988-11-30,0.39,-5.575,0.35611041666666665,172.65,280.0,1.9052192741077956 -1988-12-01,0.0,-2.0100000000000002,0.3559483796296296,145.76,409.05,1.851093726547915 -1988-12-02,0.0,-3.78,0.3546476851851852,159.76,339.81,1.7969681789880345 -1988-12-03,1.11,-3.86,0.35321898148148145,151.22,341.74,1.75366774094013 -1988-12-04,0.0,-5.16,0.35211030092592593,153.78,305.18,1.6778919743562972 -1988-12-05,0.0,-12.23,0.35199988425925927,157.61,164.08,1.5912910982604884 -1988-12-06,0.0,-11.76,0.35171423611111113,196.86,120.71,1.5263404411886317 -1988-12-07,0.12,-4.05,0.3506474537037037,181.05,280.0,1.4830400031407271 -1988-12-08,0.03,-6.92,0.34966921296296294,177.62,230.82,1.3964391270449183 -1988-12-09,0.26,-13.67,0.3488465277777778,160.12,157.75,1.3314884699730618 -1988-12-10,0.0,-17.035,0.3481105324074074,146.91,117.52,1.277362922413181 -1988-12-11,0.0,-22.695,0.3480079861111111,175.58,52.09,1.2340624843652768 -1988-12-12,0.0,-19.83,0.34794849537037037,167.59,80.0,1.16911182729342 -1988-12-13,0.0,-16.085,0.34771435185185184,189.52,80.0,1.1149862797335395 -1988-12-14,1.32,-8.445,0.3472057870370371,145.35,212.68,1.0392105131497067 -1988-12-15,5.88,-4.66,0.3466476851851852,69.07,359.87,0.9850849655898262 -1988-12-16,0.0,-12.84,0.3466476851851852,178.59,130.21,0.9255468632739575 -1988-12-17,0.0,-21.3,0.3461518518518519,177.45,80.0,0.8660087609580888 -1988-12-18,0.0,-17.895,0.3461518518518519,160.28,83.25,0.8443585419341366 -1988-12-19,0.0,-15.585,0.3456693287037037,177.61,107.61,0.8118832133982083 -1988-12-20,0.68,-9.675,0.3456693287037037,184.07,140.9,0.7794078848622801 -1988-12-21,1.25,-1.1,0.3461518518518519,158.92,348.56,0.7577576658383279 -1988-12-22,0.0,-11.08,0.3461518518518519,157.46,162.58,0.7415200015703636 -1988-12-23,1.43,-14.77,0.3461518518518519,163.65,118.03,0.7306948920583874 -1988-12-24,6.45,-7.945,0.3466476851851852,135.44,172.37,0.7090446730344352 -1988-12-25,8.75,-1.56,0.3472057870370371,56.05,457.73,0.681981899254495 -1988-12-26,0.0,-7.85,0.34771435185185184,137.72,233.56,0.6603316802305428 -1988-12-27,2.04,-13.605,0.34794849537037037,166.78,120.0,0.6440940159625786 -1988-12-28,4.93,-8.295,0.34800000000000003,136.27,172.82,0.6332689064506025 -1988-12-29,0.6,-12.565,0.3480079861111111,170.64,126.53,0.6278563516946144 -1988-12-30,0.25,-21.330000000000002,0.3484641203703704,187.67,40.0,0.6278563516946144 -1988-12-31,0.42,-16.945,0.3482361111111111,179.15,83.26,0.6116186874266503 -1989-01-01,0.0,-20.225,0.34921886574074074,192.39,44.95,0.5953810231586861 -1989-01-02,5.35,-18.405,0.35015162037037034,124.58,80.0,0.579143358890722 -1989-01-03,3.87,-14.495000000000001,0.35120578703703703,92.13,144.24,0.5629056946227577 -1989-01-04,0.0,-22.52,0.3519482638888889,174.77,40.12,0.5629056946227577 -1989-01-05,0.0,-23.200000000000003,0.35200787037037035,159.66,40.06,0.5574931398667697 -1989-01-06,0.0,-19.17,0.35284641203703704,168.49,80.0,0.5466680303547936 -1989-01-07,0.0,-18.564999999999998,0.3541518518518519,212.1,40.0,0.5304303660868295 -1989-01-08,2.56,-6.765,0.35571446759259256,151.03,209.48,0.5196052565748533 -1989-01-09,6.28,-5.685,0.35600000000000004,103.07,272.85,0.5196052565748533 -1989-01-10,0.0,-16.5,0.3564643518518519,210.05,80.0,0.5196052565748533 -1989-01-11,0.0,-15.149999999999999,0.35815185185185183,184.44,112.72,0.4979550375509011 -1989-01-12,1.16,-15.004999999999999,0.3599482638888889,205.23,80.0,0.4763048185269489 -1989-01-13,2.85,-10.85,0.36000787037037035,171.03,133.99,0.4546545995029967 -1989-01-14,0.0,-11.465,0.36121863425925926,196.29,138.09,0.4221792709670683 -1989-01-15,0.99,-3.8099999999999996,0.3637142361111111,157.18,306.91,0.40052905194311617 -1989-01-16,0.0,-6.79,0.36400011574074076,170.12,232.53,0.37887883291916397 -1989-01-17,0.01,-14.495,0.36521898148148146,225.65,80.0,0.35722861389521166 -1989-01-18,1.07,-9.4,0.36771435185185186,165.92,187.25,0.3464035043832356 -1989-01-19,4.08,-8.725,0.3680083333333333,116.21,215.02,0.3464035043832356 -1989-01-20,8.29,-4.73,0.3696696759259259,59.07,360.0,0.3518160591392236 -1989-01-21,7.09,-13.27,0.3719483796296296,159.07,121.1,0.3626411686511997 -1989-01-22,0.11,-17.145,0.37211041666666667,205.68,80.03,0.3680537234071878 -1989-01-23,0.0,-8.31,0.3746479166666667,201.72,195.8,0.3626411686511997 -1989-01-24,0.0,-6.07,0.3760002314814815,206.12,237.31,0.3518160591392236 -1989-01-25,0.0,-12.995000000000001,0.3772188657407407,225.21,119.79,0.3464035043832356 -1989-01-26,3.68,-17.335,0.3799997685185186,228.94,80.0,0.3518160591392236 -1989-01-27,3.73,-13.0,0.3804640046296296,182.46,120.0,0.3626411686511997 -1989-01-28,0.0,-14.945,0.383714699074074,276.53,80.0,0.3680537234071878 -1989-01-29,0.0,-5.33,0.38400833333333334,196.6,265.12,0.3658887015047926 -1989-01-30,2.43,-5.845,0.3866476851851852,162.62,254.36,0.3593936357976069 -1989-01-31,0.58,-4.695,0.38799999999999996,222.89,263.76,0.35289857009042125 -1989-02-01,2.88,-4.695,0.3901519675925926,206.29,252.05,0.35722861389521166 -1989-02-02,4.29,-17.345,0.39200034722222227,190.08,84.91,0.3464035043832356 -1989-02-03,4.82,-17.64,0.3936696759259259,132.94,119.77,0.3409909496272475 -1989-02-04,1.63,-22.025,0.39600023148148145,226.53,49.31,0.3301658401152714 -1989-02-05,0.0,-22.64,0.3972188657407407,299.2,40.0,0.3225882634568881 -1989-02-06,0.92,-17.655,0.40000023148148145,306.71,74.63,0.3139281758473072 -1989-02-07,0.23,-14.93,0.4012189814814815,286.27,88.95,0.30310306633533113 -1989-02-08,1.15,-13.465,0.40399999999999997,268.68,120.0,0.29769051157934306 -1989-02-09,0.36,-14.07,0.40521898148148144,251.85,120.07,0.28686540206736694 -1989-02-10,0.0,-17.265,0.4080003472222223,305.71,80.0,0.2760402925553908 -1989-02-11,0.36,-12.114999999999998,0.40966990740740744,271.28,138.86,0.2706277377994028 -1989-02-12,0.29,-12.575,0.41200046296296294,300.02,120.0,0.26521518304341474 -1989-02-13,2.17,-13.45,0.41464768518518513,317.24,92.92,0.2598026282874267 -1989-02-14,1.61,-5.98,0.4159996527777778,267.85,234.44,0.24897751877545055 -1989-02-15,4.81,-4.48,0.419205324074074,169.05,298.16,0.2435649640194625 -1989-02-16,4.47,-10.225,0.41999976851851856,194.45,180.06,0.23815240926347445 -1989-02-17,0.0,-21.67,0.42400011574074076,321.56,48.15,0.23815240926347445 -1989-02-18,0.0,-23.580000000000002,0.42400011574074076,355.39,40.0,0.23815240926347445 -1989-02-19,0.02,-20.5,0.428,374.21,40.0,0.23815240926347445 -1989-02-20,0.52,-10.475,0.42846388888888887,296.93,160.02,0.2435649640194625 -1989-02-21,11.35,-5.244999999999999,0.43200000000000005,206.19,262.38,0.2543900735314386 -1989-02-22,8.57,-2.6350000000000002,0.4336695601851852,139.56,381.2,0.26521518304341474 -1989-02-23,0.0,-9.934999999999999,0.43600011574074077,290.44,182.31,0.2706277377994028 -1989-02-24,0.0,-18.12,0.4399488425925926,378.9,78.55,0.2706277377994028 -1989-02-25,0.94,-17.14,0.4400003472222222,325.61,81.5,0.26521518304341474 -1989-02-26,0.34,-11.695,0.4440001157407408,284.28,165.62,0.26521518304341474 -1989-02-27,0.0,-13.19,0.4440081018518519,423.46,80.0,0.26521518304341474 -1989-02-28,0.0,-11.255,0.4480001157407407,416.14,120.0,0.26521518304341474 -1989-03-01,0.01,-10.049999999999999,0.4501516203703704,403.08,128.56,0.2576376063850314 -1989-03-02,0.0,-8.535,0.452,284.13,202.06,0.253307562580241 -1989-03-03,0.0,-15.68,0.45599953703703705,345.69,111.22,0.24897751877545055 -1989-03-04,2.4,-18.205,0.45599953703703705,379.97,73.59,0.25006002972664815 -1989-03-05,5.21,-9.42,0.46,224.74,200.0,0.2543900735314386 -1989-03-06,0.0,-14.26,0.4604638888888889,349.12,118.33,0.2576376063850314 -1989-03-07,0.0,-21.785,0.463999537037037,406.3,40.0,0.2522250516290434 -1989-03-08,0.0,-21.345000000000002,0.46799976851851854,472.65,40.0,0.24789500782425294 -1989-03-09,0.0,-16.075,0.46799976851851854,490.59,42.68,0.24139994211706728 -1989-03-10,0.0,-10.4,0.4719996527777777,471.21,120.0,0.23815240926347445 -1989-03-11,0.0,-8.139999999999999,0.4719996527777777,463.34,145.37,0.23490487640988159 -1989-03-12,0.0,-8.475,0.4760001157407408,358.93,197.08,0.22949232165389355 -1989-03-13,0.0,-14.855,0.4800005787037037,493.99,80.0,0.22191474499551028 -1989-03-14,0.0,-1.6199999999999997,0.4800005787037037,327.7,351.23,0.22083223404431265 -1989-03-15,3.44,3.3200000000000003,0.4840002314814815,251.9,518.72,0.21866721214191742 -1989-03-16,3.1,-0.6599999999999997,0.4840002314814815,278.64,371.68,0.22407976689790549 -1989-03-17,3.14,-5.24,0.48800034722222224,173.14,322.79,0.23382236545868398 -1989-03-18,4.99,-7.48,0.4919994212962963,145.13,277.45,0.24139994211706728 -1989-03-19,2.33,-14.41,0.4919994212962963,406.06,101.17,0.24897751877545055 -1989-03-20,0.61,-12.754999999999999,0.4959997685185185,480.03,109.53,0.2543900735314386 -1989-03-21,3.4,-3.5900000000000003,0.4959997685185185,190.88,356.64,0.2619676501898219 -1989-03-22,0.0,-10.785,0.4999997685185186,473.54,136.4,0.26846271589700754 -1989-03-23,0.0,-11.610000000000001,0.503999537037037,517.27,120.0,0.2738752706529956 -1989-03-24,0.0,-7.834999999999999,0.503999537037037,548.78,122.27,0.27820531445778607 -1989-03-25,0.0,-1.2850000000000001,0.5079996527777778,386.57,347.78,0.2825353582625765 -1989-03-26,2.97,1.975,0.5079996527777778,230.3,524.56,0.28470038016497173 -1989-03-27,4.29,2.07,0.511999537037037,342.72,402.83,0.2901129349209598 -1989-03-28,6.79,6.734999999999999,0.5159998842592592,285.78,645.12,0.30310306633533113 -1989-03-29,4.53,1.4949999999999997,0.5159998842592592,363.75,418.25,0.32475328535928333 -1989-03-30,2.64,-5.805,0.520000462962963,366.81,240.0,0.35722861389521166 -1989-03-31,5.97,-2.855,0.520000462962963,170.35,399.8,0.42542680382066117 -1989-04-01,10.64,-2.335,0.5240002314814816,106.97,453.79,0.487129928038925 -1989-04-02,1.87,-3.78,0.5279998842592593,400.71,286.8,0.6170312421826384 -1989-04-03,0.32,0.7250000000000001,0.5279998842592593,450.22,407.92,0.7252823373023994 -1989-04-04,2.54,2.955,0.5319998842592593,274.3,567.17,0.8227083229101846 -1989-04-05,3.94,5.37,0.5319998842592593,242.27,662.02,0.9201343085179694 -1989-04-06,11.73,5.9350000000000005,0.5359994212962963,224.05,722.56,1.0110652284185688 -1989-04-07,7.13,3.35,0.5395353009259259,165.37,646.77,1.4722148936287511 -1989-04-08,3.23,-0.625,0.54,198.9,477.24,1.8835690550838433 -1989-04-09,0.0,-1.3199999999999998,0.5439997685185185,395.48,405.44,2.1650219023952224 -1989-04-10,0.0,-0.7399999999999998,0.5439997685185185,531.09,360.0,2.4681249687305535 -1989-04-11,0.0,-0.04999999999999982,0.5479999999999999,410.43,439.82,2.72792759701798 -1989-04-12,0.0,-1.6699999999999995,0.5498481481481481,573.22,320.0,2.92277956823355 -1989-04-13,0.0,0.8900000000000001,0.5520004629629629,602.13,348.21,3.095981320425168 -1989-04-14,0.0,1.5699999999999998,0.5559922453703704,543.49,429.94,3.280008182128762 -1989-04-15,0.33,2.2649999999999997,0.5560002314814815,462.62,503.01,3.409909496272475 -1989-04-16,0.54,2.525,0.56,252.23,602.45,3.50733548188026 -1989-04-17,0.01,3.4349999999999996,0.5600517361111111,502.39,523.81,3.593936357976069 -1989-04-18,5.97,3.5650000000000004,0.5639996527777777,302.7,594.78,3.8753892052874477 -1989-04-19,1.24,2.27,0.5663305555555556,393.88,533.74,4.102716505038946 -1989-04-20,0.0,1.27,0.5679997685185185,569.05,416.01,4.319218695278469 -1989-04-21,0.03,1.565,0.5715351851851852,561.83,424.72,4.416644680886253 -1989-04-22,7.17,-0.8050000000000002,0.5719994212962963,370.37,404.72,4.449120009422182 -1989-04-23,3.61,-1.3550000000000002,0.5760005787037037,325.91,426.96,4.42746979039823 -1989-04-24,0.0,0.47,0.5760005787037037,372.78,502.43,4.340868914302421 -1989-04-25,0.0,1.48,0.5800003472222222,500.95,488.31,4.167667162110803 -1989-04-26,0.0,2.28,0.5807946759259259,622.59,411.55,4.016115628943138 -1989-04-27,0.02,2.92,0.5840005787037037,531.27,517.42,3.907864533823376 -1989-04-28,0.0,4.220000000000001,0.5853530092592593,481.63,608.66,3.799613438703615 -1989-04-29,0.0,6.12,0.5880002314814815,616.46,521.29,3.745487891143735 -1989-04-30,0.0,7.579999999999999,0.5903311342592593,665.75,442.39,3.788788329191639 -1989-05-01,0.0,11.35,0.5920008101851852,619.94,660.28,3.9403398623593047 -1989-05-02,11.81,10.26,0.5943310185185184,524.24,707.9,4.254268038206612 -1989-05-03,13.02,7.71,0.5959997685185184,201.24,909.09,5.293478551356318 -1989-05-04,2.41,7.289999999999999,0.5987809027777777,447.9,722.12,5.7156578223233865 -1989-05-05,0.0,8.834999999999999,0.5999998842592592,660.73,492.84,5.8239089174431475 -1989-05-06,10.09,10.79,0.6027810185185185,428.57,810.03,6.029585998170694 -1989-05-07,9.11,11.67,0.6039996527777778,344.88,1000.22,6.419289940601834 -1989-05-08,4.85,11.04,0.6063304398148148,382.6,919.22,6.419289940601834 -1989-05-09,1.86,7.285,0.6079995370370371,549.41,579.04,6.213612859874287 -1989-05-10,0.0,7.86,0.6098476851851852,605.26,587.38,5.8455591364671 -1989-05-11,13.38,8.965,0.6120002314814815,330.23,835.36,5.585756508179673 -1989-05-12,14.75,12.14,0.6133524305555556,238.56,1165.54,6.614141911817404 -1989-05-13,7.52,12.34,0.6159914351851852,288.14,1128.52,6.906419868640759 -1989-05-14,8.73,8.495000000000001,0.6162851851851852,336.64,820.65,7.133747168392257 -1989-05-15,6.83,10.735,0.6195356481481481,340.21,975.78,7.382724687167708 -1989-05-16,0.0,14.280000000000001,0.6199998842592592,582.01,970.61,7.339424249119803 -1989-05-17,0.0,16.245,0.6227818287037037,622.91,909.69,7.155397387416209 -1989-05-18,0.0,17.15,0.6240006944444445,629.14,888.75,6.906419868640759 -1989-05-19,0.0,18.365000000000002,0.6253526620370371,610.24,1014.0,6.614141911817404 -1989-05-20,0.72,18.715,0.6278895833333333,536.48,1280.15,6.029585998170694 -1989-05-21,2.19,17.56,0.6280518518518519,458.59,1331.14,5.564106289155721 -1989-05-22,6.12,13.95,0.6303303240740741,369.74,1067.74,5.271828332332366 -1989-05-23,6.2,12.395,0.6319916666666667,299.79,1072.3,5.001200594532963 -1989-05-24,0.31,12.89,0.6322856481481481,524.13,901.28,4.654797090149728 -1989-05-25,2.66,15.485,0.6347809027777778,392.39,1201.82,4.319218695278469 -1989-05-26,2.98,17.775,0.6360001157407408,458.0,1299.91,4.016115628943138 -1989-05-27,6.86,17.475,0.6362856481481481,341.45,1363.21,3.734662781631758 -1989-05-28,5.74,12.084999999999999,0.6387810185185185,362.12,920.57,3.4532099343203795 -1989-05-29,0.27,10.75,0.6399917824074074,542.21,744.16,3.2258826345688814 -1989-05-30,4.73,14.15,0.6400512731481481,355.12,1096.0,3.009380444329359 -1989-05-31,0.0,12.845,0.6418483796296296,421.54,1051.15,2.8037033636018127 -1989-06-01,14.35,14.385000000000002,0.6435354166666667,203.06,1339.23,2.8470038016497177 -1989-06-02,1.02,13.579999999999998,0.6439998842592592,253.35,1273.29,2.7604029255539086 -1989-06-03,0.79,13.825,0.6442856481481481,452.57,1027.1,2.5980262828742666 -1989-06-04,7.79,15.55,0.6458482638888889,256.55,1344.66,2.5114254067784576 -1989-06-05,4.77,13.52,0.6471538194444444,403.98,994.76,2.446474749706601 -1989-06-06,0.0,12.2,0.6479927083333333,485.71,888.02,2.316573435562888 -1989-06-07,0.0,13.825,0.6480521990740741,452.33,1040.31,2.1974972309311505 -1989-06-08,0.0,14.49,0.6487947916666666,401.32,1172.65,2.0567708072754614 -1989-06-09,0.0,13.510000000000002,0.6498487268518519,388.01,1120.69,1.9376946026437238 -1989-06-10,21.15,10.41,0.6507814814814814,291.99,902.44,1.9593448216676759 -1989-06-11,20.13,8.67,0.6515357638888889,149.0,956.86,2.3923492021467205 -1989-06-12,3.15,9.82,0.6519921296296297,276.16,914.89,2.424824530682649 -1989-06-13,0.0,9.525,0.6520001157407407,513.5,671.16,2.435649640194625 -1989-06-14,0.0,11.535,0.6520517361111111,510.91,773.35,2.3923492021467205 -1989-06-15,0.43,12.79,0.6522856481481482,491.18,839.3,2.327398545074864 -1989-06-16,6.27,13.170000000000002,0.6527943287037037,259.83,1132.37,2.33822365458684 -1989-06-17,5.3,12.7,0.653352662037037,182.36,1226.77,2.316573435562888 -1989-06-18,2.35,14.91,0.653848611111111,332.22,1261.55,2.229972559467079 -1989-06-19,1.42,15.760000000000002,0.653848611111111,467.71,1093.88,2.154196792883246 -1989-06-20,0.0,17.67,0.653848611111111,508.81,1151.27,2.0675959167874374 -1989-06-21,0.0,19.95,0.6543310185185185,497.23,1340.59,1.9593448216676759 -1989-06-22,0.0,20.009999999999998,0.6543310185185185,514.42,1245.84,1.8402686170359388 -1989-06-23,0.0,20.65,0.653848611111111,480.52,1427.1,1.7320175219161775 -1989-06-24,0.0,17.465,0.653848611111111,493.05,1159.99,1.6237664267964167 -1989-06-25,0.0,17.555,0.653352662037037,479.29,1207.77,1.5155153316766559 -1989-06-26,0.0,20.04,0.653352662037037,487.66,1342.71,1.4072642365568944 -1989-06-27,0.0,21.66,0.6527943287037037,445.14,1617.81,1.3206633604610856 -1989-06-28,2.12,21.42,0.6522856481481482,326.62,1798.43,1.2448875938772528 -1989-06-29,5.64,16.439999999999998,0.6520517361111111,326.31,1248.44,1.16911182729342 -1989-06-30,0.0,12.829999999999998,0.6519921296296297,480.84,886.27,1.074933374539228 -1989-07-01,2.21,12.959999999999999,0.6518894675925926,470.97,812.47,1.0121477393697664 -1989-07-02,5.44,15.36,0.6511538194444445,257.98,1274.99,0.9872499874922213 -1989-07-03,0.0,13.684999999999999,0.6503311342592593,481.9,907.59,0.9417845275419217 -1989-07-04,1.32,18.4,0.6493528935185184,416.73,1337.33,0.9017316223476101 -1989-07-05,0.62,20.805,0.6482863425925927,392.33,1614.11,0.8616787171532985 -1989-07-06,0.0,22.92,0.6480008101851852,419.91,1775.26,0.8227083229101846 -1989-07-07,0.0,21.985,0.647890162037037,355.07,1853.66,0.768582775350304 -1989-07-08,0.0,15.44,0.64678125,499.85,924.79,0.7231173154000042 -1989-07-09,0.0,15.879999999999999,0.645352199074074,495.81,954.5,0.6906419868640759 -1989-07-10,11.99,16.555,0.6440515046296297,325.06,1299.74,0.7036321182784472 -1989-07-11,19.73,15.059999999999999,0.6438894675925926,155.85,1406.22,0.7945630381790466 -1989-07-12,0.0,15.93,0.6427809027777778,380.97,1228.34,0.7620877096431182 -1989-07-13,0.02,16.47,0.6407940972222222,442.47,1140.41,0.7393549796679684 -1989-07-14,0.76,16.835,0.6399997685185186,377.56,1276.97,0.7231173154000042 -1989-07-15,0.0,14.35,0.6395354166666667,467.82,933.51,0.6841469211568902 -1989-07-16,0.0,15.445,0.6378482638888888,477.02,963.7,0.6592491692793452 -1989-07-17,0.0,16.72,0.6360001157407408,434.39,1159.0,0.6246088188410216 -1989-07-18,0.0,18.044999999999998,0.6355359953703703,436.22,1242.15,0.6083711545730576 -1989-07-19,0.0,19.36,0.6338483796296296,350.91,1547.51,0.5813083807931171 -1989-07-20,0.0,15.129999999999999,0.6319996527777777,459.9,968.47,0.545585519403596 -1989-07-21,0.0,14.77,0.6315355324074073,492.03,869.76,0.5239353003796438 -1989-07-22,0.0,16.865,0.6287943287037038,462.27,1082.36,0.501202570404494 -1989-07-23,0.0,16.47,0.628,476.24,1004.68,0.4752223075757513 -1989-07-24,0.0,17.44,0.6267813657407407,493.86,991.99,0.45681962140539184 -1989-07-25,0.0,21.905,0.624052199074074,458.81,1429.84,0.4449120009422182 -1989-07-26,0.49,23.845,0.6238902777777778,404.49,1767.42,0.43192186952784684 -1989-07-27,5.17,24.365,0.6207944444444444,358.82,1897.85,0.4275918257230564 -1989-07-28,18.36,20.75,0.6199998842592592,233.24,1740.88,0.47413979662455363 -1989-07-29,8.84,13.54,0.6183303240740741,268.69,1060.38,0.47089226377096083 -1989-07-30,0.0,13.14,0.615999537037037,419.99,920.26,0.4589846433077871 -1989-07-31,0.0,14.255,0.6151532407407407,468.19,883.23,0.4459945118934157 -1989-08-01,0.0,16.595,0.6120002314814815,474.69,971.62,0.43516940238143964 -1989-08-02,3.03,17.880000000000003,0.6115356481481482,391.46,1165.92,0.4243442928694635 -1989-08-03,1.53,19.53,0.6080510416666667,277.87,1635.78,0.42975684762545163 -1989-08-04,6.17,20.02,0.6078891203703704,152.06,1886.99,0.42975684762545163 -1989-08-05,9.3,21.42,0.6042853009259259,152.48,2081.83,0.4275918257230564 -1989-08-06,4.36,21.939999999999998,0.6039916666666666,219.79,1982.12,0.4384169352350325 -1989-08-07,6.64,21.225,0.6002854166666667,221.43,1832.1,0.4579021323565895 -1989-08-08,14.11,16.595,0.5999998842592592,244.52,1343.25,0.47089226377096083 -1989-08-09,0.0,14.525,0.5962851851851851,396.69,1055.46,0.47738732947814655 -1989-08-10,0.0,17.134999999999998,0.5959997685185184,433.52,1141.85,0.47955235138054175 -1989-08-11,0.0,19.27,0.5920523148148148,404.54,1366.1,0.47738732947814655 -1989-08-12,8.04,19.365000000000002,0.591992824074074,213.72,1654.04,0.47738732947814655 -1989-08-13,19.08,18.41,0.5880002314814815,139.69,1755.11,0.5152752127700628 -1989-08-14,8.68,20.745,0.5879922453703703,160.56,1967.72,0.5661532274763506 -1989-08-15,3.99,21.06,0.5840005787037037,323.79,1664.2,0.58455591364671 -1989-08-16,0.0,21.02,0.5835359953703704,320.45,1765.87,0.5813083807931171 -1989-08-17,0.79,16.165,0.5800003472222222,375.98,1200.28,0.5802258698419196 -1989-08-18,0.0,14.395,0.5787818287037036,439.23,933.3,0.5607406727203627 -1989-08-19,0.0,15.794999999999998,0.5760005787037037,458.95,950.6,0.545585519403596 -1989-08-20,2.37,16.075,0.5738478009259259,371.27,1097.24,0.5315128770380272 -1989-08-21,3.11,17.005000000000003,0.5719994212962963,189.72,1532.37,0.5271828332332367 -1989-08-22,1.7,17.375,0.5680513888888888,265.18,1487.3,0.501202570404494 -1989-08-23,0.1,15.93,0.5679997685185185,324.62,1310.0,0.48388239518533216 -1989-08-24,0.0,12.185,0.5639996527777777,374.65,941.23,0.45248957760060143 -1989-08-25,0.0,9.685,0.5639916666666667,373.95,810.8,0.4081066286014994 -1989-08-26,0.0,9.685,0.56,353.89,835.82,0.37996134387036146 -1989-08-27,0.0,9.93,0.558330324074074,443.26,701.5,0.3637236796023974 -1989-08-28,0.0,13.12,0.5560002314814815,452.55,801.75,0.3485685262856308 -1989-08-29,0.0,16.86,0.5520519675925926,431.17,1101.17,0.3420734605784451 -1989-08-30,4.73,18.025,0.5520004629629629,247.1,1485.53,0.3399084386760499 -1989-08-31,6.59,14.830000000000002,0.5479999999999999,226.12,1285.09,0.33666090582245706 -1989-09-01,13.96,10.32,0.5479921296296296,308.33,878.54,0.33666090582245706 -1989-09-02,32.11,12.875,0.5439997685185185,212.98,1140.84,0.6007935779146741 -1989-09-03,0.0,9.255,0.540794212962963,394.04,734.89,0.6181137531338359 -1989-09-04,0.0,8.55,0.54,450.75,569.33,0.6495065707185667 -1989-09-05,0.0,11.315,0.5359994212962963,445.99,676.51,0.6787343664009022 -1989-09-06,0.0,14.024999999999999,0.5359994212962963,402.46,940.28,0.6906419868640759 -1989-09-07,0.0,17.03,0.5319998842592593,371.35,1226.59,0.6744043225961118 -1989-09-08,0.0,18.42,0.5298482638888888,378.21,1296.34,0.6560016364257523 -1989-09-09,0.0,19.955,0.5279998842592593,351.23,1490.59,0.6386814612065905 -1989-09-10,4.68,22.55,0.5240002314814816,300.48,1815.85,0.6213612859874288 -1989-09-11,3.7,18.91,0.5240002314814816,248.15,1548.73,0.5867209355491053 -1989-09-12,0.0,16.09,0.520000462962963,242.14,1394.53,0.5434204975012007 -1989-09-13,0.0,14.135,0.5183310185185186,338.66,1050.37,0.5228527894284463 -1989-09-14,2.89,12.465,0.5159998842592592,223.72,1044.31,0.5044501032580868 -1989-09-15,8.99,12.115,0.511999537037037,197.72,1042.17,0.5022850813556916 -1989-09-16,5.17,12.255,0.511999537037037,290.38,797.76,0.4925424827949131 -1989-09-17,4.29,12.765,0.5079996527777778,242.79,1007.04,0.48171737328293696 -1989-09-18,1.56,12.5,0.5067805555555556,296.85,942.01,0.4665622199661704 -1989-09-19,0.0,11.68,0.503999537037037,375.93,789.89,0.4557371104541943 -1989-09-20,3.45,13.555,0.4999997685185186,226.56,1088.28,0.45248957760060143 -1989-09-21,2.5,16.91,0.4999997685185186,230.22,1365.11,0.4546545995029967 -1989-09-22,1.0,16.555,0.4959997685185185,296.76,1261.61,0.45032455569820623 -1989-09-23,5.43,16.795,0.49366840277777774,237.84,1232.91,0.46980975281976317 -1989-09-24,3.26,9.705,0.4919994212962963,259.96,745.49,0.4340868914302421 -1989-09-25,0.0,5.59,0.48800034722222224,348.74,520.3,0.4200142490646731 -1989-09-26,0.81,7.585,0.48800034722222224,297.44,668.74,0.4081066286014994 -1989-09-27,4.65,4.215000000000001,0.4840002314814815,208.69,568.41,0.37238376721197824 -1989-09-28,0.48,2.88,0.48167002314814816,305.96,480.0,0.37021874530958304 -1989-09-29,2.73,7.855,0.4800005787037037,234.35,713.67,0.3593936357976069 -1989-09-30,0.53,6.235,0.4760001157407408,288.29,604.75,0.33557839487125946 -1989-10-01,0.0,5.6000000000000005,0.4760001157407408,334.73,520.81,0.32475328535928333 -1989-10-02,5.56,11.295,0.4719996527777777,266.02,824.97,0.3215057525056905 -1989-10-03,8.86,11.53,0.4701513888888889,233.07,812.34,0.33882592772485226 -1989-10-04,1.46,4.385,0.46799976851851854,260.69,520.07,0.3204232415544929 -1989-10-05,1.95,2.545,0.463999537037037,201.38,559.14,0.3095981320425168 -1989-10-06,2.45,2.6799999999999997,0.463999537037037,190.98,560.0,0.30526808823772633 -1989-10-07,2.76,5.1850000000000005,0.46,144.12,715.37,0.3041855772865288 -1989-10-08,0.19,3.95,0.45920532407407405,184.67,628.74,0.29444297872575026 -1989-10-09,0.0,2.465,0.45599953703703705,224.08,530.08,0.28578289111616934 -1989-10-10,0.0,1.945,0.45200810185185186,274.69,450.9,0.2760402925553908 -1989-10-11,0.42,3.465,0.452,290.83,481.92,0.2695452268482052 -1989-10-12,0.74,4.995,0.4480001157407407,264.38,572.74,0.26738020494580994 -1989-10-13,0.91,7.27,0.4480001157407407,263.3,663.44,0.2608851392386243 -1989-10-14,0.0,5.005000000000001,0.4440001157407408,265.97,564.28,0.25006002972664815 -1989-10-15,0.0,3.4400000000000004,0.44166932870370373,290.86,442.5,0.24681249687305531 -1989-10-16,8.08,5.795,0.4400003472222222,191.62,599.99,0.2511425406778458 -1989-10-17,7.48,3.1149999999999998,0.43611064814814815,167.86,554.01,0.26738020494580994 -1989-10-18,0.0,-0.375,0.43600011574074077,105.34,514.0,0.26629769399461234 -1989-10-19,0.0,-0.9950000000000001,0.43200000000000005,218.93,401.39,0.2619676501898219 -1989-10-20,5.14,1.4650000000000003,0.43194837962962956,272.75,360.0,0.26413267209221714 -1989-10-21,8.77,7.415,0.428,209.54,617.99,0.3020205553841335 -1989-10-22,3.94,5.295,0.4261517361111111,185.72,595.87,0.3409909496272475 -1989-10-23,0.0,3.415,0.42400011574074076,242.87,525.14,0.3323308620176666 -1989-10-24,0.0,5.62,0.42121863425925926,265.68,551.53,0.33882592772485226 -1989-10-25,0.0,8.424999999999999,0.41999976851851856,276.93,589.74,0.3344958839200618 -1989-10-26,0.0,8.07,0.4164640046296296,269.49,572.97,0.3323308620176666 -1989-10-27,0.0,9.86,0.4159996527777778,238.07,743.57,0.3399084386760499 -1989-10-28,0.0,13.135,0.4121109953703704,206.96,1014.94,0.34315597152964267 -1989-10-29,0.0,11.959999999999999,0.41200046296296294,218.51,905.73,0.3420734605784451 -1989-10-30,0.0,13.03,0.4080084490740741,220.36,942.13,0.3420734605784451 -1989-10-31,2.6,11.785,0.40794895833333333,206.22,807.01,0.3399084386760499 -1989-11-01,10.29,10.46,0.40399999999999997,145.72,859.44,0.3637236796023974 -1989-11-02,2.09,3.7399999999999998,0.4037145833333334,163.54,565.23,0.3767138110167687 -1989-11-03,3.64,2.145,0.40000023148148145,82.76,603.32,0.37996134387036146 -1989-11-04,7.04,-1.7950000000000002,0.39971435185185183,96.21,424.86,0.3972815190895233 -1989-11-05,0.0,-4.29,0.3960082175925926,189.37,289.76,0.4059416066991042 -1989-11-06,2.05,1.0099999999999998,0.39571446759259266,168.91,440.0,0.4221792709670683 -1989-11-07,2.16,4.0649999999999995,0.3921108796296296,97.7,673.32,0.4200142490646731 -1989-11-08,2.05,2.17,0.3919487268518519,88.77,597.89,0.428674336674254 -1989-11-09,9.32,5.285,0.3884644675925926,109.05,652.28,0.4600671542589847 -1989-11-10,13.8,5.615,0.38799999999999996,114.81,660.54,0.6072886436218599 -1989-11-11,2.0,3.065,0.3848466435185185,118.87,600.32,0.6321863954994049 -1989-11-12,1.13,1.0100000000000002,0.3840003472222222,113.15,525.73,0.6711567897425189 -1989-11-13,1.32,-3.835,0.38166932870370374,127.87,355.29,0.6928070087664712 -1989-11-14,4.82,-2.6199999999999997,0.3799997685185186,78.53,423.83,0.7393549796679684 -1989-11-15,6.03,1.3750000000000002,0.37920590277777777,95.58,521.72,0.8053881476910227 -1989-11-16,8.13,8.23,0.37611087962962964,144.63,656.89,0.9147217537619815 -1989-11-17,8.83,4.975,0.3759486111111111,134.51,560.17,1.1149862797335395 -1989-11-18,3.38,-2.37,0.37321898148148147,91.36,415.38,1.2124122653413245 -1989-11-19,2.15,-6.145,0.3719998842592593,145.62,278.1,1.277362922413181 -1989-11-20,3.6,-8.385,0.37120578703703705,106.98,247.62,1.3423135794850378 -1989-11-21,3.38,-7.805,0.3684645833333333,77.74,281.19,1.3423135794850378 -1989-11-22,0.0,-9.035,0.3680003472222222,105.46,257.41,1.3098382509491096 -1989-11-23,0.0,-13.155000000000001,0.36615196759259255,187.99,151.94,1.277362922413181 -1989-11-24,0.0,-14.435,0.3644642361111111,215.79,114.6,1.2448875938772528 -1989-11-25,1.17,-13.620000000000001,0.36400011574074076,165.79,148.99,1.2124122653413245 -1989-11-26,4.61,-10.385,0.3621513888888889,110.79,206.35,1.2015871558293483 -1989-11-27,3.01,-10.655000000000001,0.3604638888888889,121.73,204.79,1.158286717781444 -1989-11-28,8.84,-10.959999999999999,0.3599998842592593,157.65,160.0,1.1366364987574917 -1989-11-29,5.87,-10.725,0.35920578703703704,138.0,183.44,1.1258113892455155 -1989-11-30,0.01,-15.645,0.3572189814814815,192.89,120.0,1.1149862797335395 -1989-12-01,1.05,-16.965,0.35611041666666665,179.75,116.15,1.0500356226616827 -1989-12-02,0.8,-17.23,0.3559483796296296,180.49,103.71,1.0283854036377307 -1989-12-03,13.81,-12.925,0.3546476851851852,117.64,160.0,1.0067351846137784 -1989-12-04,9.42,-11.645,0.35321898148148145,93.97,194.36,0.9850849655898262 -1989-12-05,0.0,-14.96,0.35211030092592593,183.09,120.01,0.9634347465658739 -1989-12-06,1.05,-12.8,0.35199988425925927,190.97,120.0,0.9417845275419217 -1989-12-07,4.2,-12.114999999999998,0.35171423611111113,139.2,151.08,0.9093091990059934 -1989-12-08,0.0,-17.795,0.3506474537037037,169.11,102.67,0.876833870470065 -1989-12-09,0.0,-20.32,0.34966921296296294,187.29,80.0,0.8335334324221606 -1989-12-10,0.13,-19.130000000000003,0.3488465277777778,199.44,77.83,0.8118832133982083 -1989-12-11,0.0,-16.955,0.3481105324074074,183.86,88.32,0.7794078848622801 -1989-12-12,0.0,-18.515,0.3480079861111111,184.05,80.0,0.7577576658383279 -1989-12-13,0.0,-20.05,0.34794849537037037,172.88,80.0,0.7252823373023994 -1989-12-14,0.25,-19.77,0.34771435185185184,133.13,87.51,0.7144572277904233 -1989-12-15,1.06,-17.91,0.3472057870370371,87.75,120.0,0.6928070087664712 -1989-12-16,9.53,-17.815,0.3466476851851852,157.16,80.0,0.681981899254495 -1989-12-17,8.23,-10.98,0.3466476851851852,119.36,177.32,0.6603316802305428 -1989-12-18,0.05,-11.09,0.3461518518518519,95.17,213.06,0.6386814612065905 -1989-12-19,0.0,-15.095,0.3461518518518519,165.5,120.0,0.6170312421826384 -1989-12-20,0.0,-18.630000000000003,0.3456693287037037,188.26,80.0,0.6062061326706623 -1989-12-21,0.0,-17.425,0.3456693287037037,144.22,120.0,0.5953810231586861 -1989-12-22,0.0,-18.935000000000002,0.3461518518518519,129.19,100.42,0.58455591364671 -1989-12-23,0.0,-21.305,0.3461518518518519,151.05,80.0,0.5629056946227577 -1989-12-24,0.0,-21.53,0.3461518518518519,196.62,40.0,0.5520805851107816 -1989-12-25,0.0,-16.03,0.3466476851851852,177.66,105.66,0.5412554755988056 -1989-12-26,2.46,-11.06,0.3472057870370371,103.2,200.0,0.5304303660868295 -1989-12-27,1.49,-17.16,0.34771435185185184,160.91,102.89,0.5196052565748533 -1989-12-28,0.01,-20.4,0.34794849537037037,152.41,80.0,0.5087801470628772 -1989-12-29,0.0,-22.75,0.34800000000000003,167.31,64.52,0.4979550375509011 -1989-12-30,0.0,-26.12,0.3480079861111111,206.34,40.0,0.487129928038925 -1989-12-31,2.05,-17.830000000000002,0.3484641203703704,194.1,40.0,0.4763048185269489 -1990-01-01,8.93,-4.225,0.34921886574074074,129.63,278.66,0.46547970901497276 -1990-01-02,0.0,-8.72,0.35015162037037034,193.33,167.89,0.4600671542589847 -1990-01-03,0.0,-6.05,0.35120578703703703,161.82,250.65,0.4546545995029967 -1990-01-04,1.89,-3.045,0.3519482638888889,134.31,337.13,0.44382948999102056 -1990-01-05,1.25,-5.705,0.35200787037037035,154.59,270.61,0.4384169352350325 -1990-01-06,1.36,-11.830000000000002,0.35284641203703704,157.21,156.8,0.4330043804790444 -1990-01-07,2.55,-15.79,0.3541518518518519,189.99,80.0,0.4167667162110803 -1990-01-08,1.26,-11.25,0.35571446759259256,209.56,127.18,0.4059416066991042 -1990-01-09,1.07,-7.765,0.35600000000000004,175.43,200.0,0.39511649718712805 -1990-01-10,3.06,-5.28,0.3564643518518519,118.54,280.23,0.37887883291916397 -1990-01-11,3.86,-10.98,0.35815185185185183,145.23,160.0,0.37346627816317585 -1990-01-12,5.05,-10.775,0.3599482638888889,118.27,191.33,0.384291387675152 -1990-01-13,1.79,-11.32,0.36000787037037035,133.76,190.72,0.38970394243114004 -1990-01-14,0.0,-16.705,0.36121863425925926,170.83,119.52,0.37887883291916397 -1990-01-15,2.32,-21.509999999999998,0.3637142361111111,206.34,40.0,0.384291387675152 -1990-01-16,3.37,-16.064999999999998,0.36400011574074076,168.97,89.0,0.40052905194311617 -1990-01-17,1.52,-10.595,0.36521898148148146,225.13,120.0,0.384291387675152 -1990-01-18,3.52,-0.06499999999999995,0.36771435185185186,149.56,386.09,0.39511649718712805 -1990-01-19,1.24,-10.465,0.3680083333333333,186.43,179.73,0.4113541614550923 -1990-01-20,0.0,-16.155,0.3696696759259259,241.27,80.56,0.4275918257230564 -1990-01-21,0.0,-16.685000000000002,0.3719483796296296,218.81,94.98,0.44382948999102056 -1990-01-22,4.38,-17.96,0.37211041666666667,146.08,102.3,0.44924204474700863 -1990-01-23,3.37,-11.475,0.3746479166666667,137.6,160.49,0.44382948999102056 -1990-01-24,2.6,-8.085,0.3760002314814815,220.5,175.3,0.4275918257230564 -1990-01-25,4.41,-1.3850000000000002,0.3772188657407407,134.69,392.38,0.4113541614550923 -1990-01-26,9.05,1.71,0.3799997685185186,72.1,600.0,0.4546545995029967 -1990-01-27,3.17,-3.3049999999999997,0.3804640046296296,149.97,341.99,0.5196052565748533 -1990-01-28,0.0,-2.14,0.383714699074074,205.5,357.17,0.5196052565748533 -1990-01-29,0.92,-6.18,0.38400833333333334,248.31,207.81,0.5141927018188653 -1990-01-30,15.19,-7.234999999999999,0.3866476851851852,154.69,240.03,0.5087801470628772 -1990-01-31,8.53,-12.155,0.38799999999999996,236.11,120.53,0.4925424827949131 -1990-02-01,0.0,-6.72,0.3901519675925926,261.69,216.56,0.48171737328293696 -1990-02-02,0.0,-11.165,0.39200034722222227,257.61,159.31,0.47089226377096083 -1990-02-03,0.0,-21.915,0.3936696759259259,263.62,61.11,0.4600671542589847 -1990-02-04,0.92,-22.145,0.39600023148148145,234.25,80.0,0.44924204474700863 -1990-02-05,0.0,-22.16,0.3972188657407407,319.13,40.0,0.4384169352350325 -1990-02-06,0.25,-14.899999999999999,0.40000023148148145,327.23,86.77,0.4167667162110803 -1990-02-07,0.0,-10.37,0.4012189814814815,333.99,120.0,0.4059416066991042 -1990-02-08,0.0,-6.154999999999999,0.40399999999999997,312.21,200.15,0.39511649718712805 -1990-02-09,0.0,-1.3649999999999998,0.40521898148148144,260.89,351.34,0.40052905194311617 -1990-02-10,11.65,-0.77,0.4080003472222223,157.54,426.79,0.4384169352350325 -1990-02-11,13.63,-5.865,0.40966990740740744,122.3,308.05,0.46547970901497276 -1990-02-12,0.0,-15.32,0.41200046296296294,347.61,83.28,0.4546545995029967 -1990-02-13,2.39,-16.165,0.41464768518518513,327.93,80.0,0.4384169352350325 -1990-02-14,0.0,-11.695,0.4159996527777778,305.56,147.02,0.4221792709670683 -1990-02-15,0.0,-18.69,0.419205324074074,352.07,78.92,0.4113541614550923 -1990-02-16,6.37,-14.685,0.41999976851851856,212.91,120.0,0.4059416066991042 -1990-02-17,7.15,-12.29,0.42400011574074076,140.96,183.85,0.40052905194311617 -1990-02-18,0.0,-18.895,0.42400011574074076,383.32,49.67,0.39511649718712805 -1990-02-19,1.41,-12.595,0.428,325.62,120.0,0.38970394243114004 -1990-02-20,0.52,-15.68,0.42846388888888887,314.26,108.37,0.384291387675152 -1990-02-21,0.01,-16.235,0.43200000000000005,411.04,69.35,0.37887883291916397 -1990-02-22,4.06,-4.864999999999999,0.4336695601851852,313.36,169.4,0.384291387675152 -1990-02-23,5.87,-0.9649999999999999,0.43600011574074077,237.92,350.19,0.4275918257230564 -1990-02-24,0.0,-11.495,0.4399488425925926,245.95,180.55,0.4384169352350325 -1990-02-25,0.0,-19.814999999999998,0.4400003472222222,322.73,80.0,0.4221792709670683 -1990-02-26,0.0,-22.130000000000003,0.4440001157407408,355.71,40.0,0.4167667162110803 -1990-02-27,1.32,-20.475,0.4440081018518519,380.8,40.0,0.4113541614550923 -1990-02-28,1.97,-14.92,0.4480001157407407,299.43,120.0,0.40052905194311617 -1990-03-01,0.0,-17.015,0.4501516203703704,426.35,80.0,0.39511649718712805 -1990-03-02,0.0,-4.63,0.452,354.78,258.93,0.38970394243114004 -1990-03-03,0.01,-5.51,0.45599953703703705,389.41,215.38,0.37346627816317585 -1990-03-04,0.0,-10.040000000000001,0.45599953703703705,295.24,188.36,0.3680537234071878 -1990-03-05,0.0,-15.765,0.46,352.13,120.0,0.3626411686511997 -1990-03-06,0.0,-19.15,0.4604638888888889,441.62,56.58,0.35722861389521166 -1990-03-07,0.0,-17.509999999999998,0.463999537037037,429.7,80.0,0.3518160591392236 -1990-03-08,0.0,-13.55,0.46799976851851854,469.13,89.78,0.3464035043832356 -1990-03-09,0.0,-5.415,0.46799976851851854,448.91,197.91,0.3464035043832356 -1990-03-10,0.0,-2.3150000000000004,0.4719996527777777,485.6,211.72,0.3518160591392236 -1990-03-11,0.0,0.27499999999999947,0.4719996527777777,420.84,338.72,0.40052905194311617 -1990-03-12,0.0,-0.3550000000000004,0.4760001157407408,422.47,320.2,0.4546545995029967 -1990-03-13,0.0,1.0799999999999996,0.4800005787037037,336.07,430.24,0.5239353003796438 -1990-03-14,2.24,-2.485,0.4800005787037037,372.17,289.75,0.6495065707185667 -1990-03-15,5.9,-0.7949999999999999,0.4840002314814815,189.61,440.0,0.8118832133982083 -1990-03-16,0.08,2.21,0.4840002314814815,175.44,592.54,0.9515271261027002 -1990-03-17,7.66,4.115,0.48800034722222224,147.44,662.37,1.1149862797335395 -1990-03-18,7.95,3.915,0.4919994212962963,134.38,677.82,1.2990131414371333 -1990-03-19,0.0,0.8600000000000001,0.4919994212962963,241.86,509.35,1.5155153316766559 -1990-03-20,3.38,-1.8650000000000002,0.4959997685185185,301.9,368.42,1.7320175219161775 -1990-03-21,8.41,-0.9400000000000001,0.4959997685185185,141.88,475.39,1.9485197121557 -1990-03-22,2.84,-4.18,0.4999997685185186,405.25,253.64,2.219147449955103 -1990-03-23,1.4,-1.645,0.503999537037037,474.78,313.81,2.4897751877545056 -1990-03-24,0.0,-7.285,0.503999537037037,521.95,184.4,2.6738020494580996 -1990-03-25,0.0,-8.32,0.5079996527777778,479.82,197.57,2.5872011733622906 -1990-03-26,0.46,-5.365,0.5079996527777778,481.88,240.17,1.9918201502036044 -1990-03-27,0.0,-11.610000000000001,0.511999537037037,545.52,120.0,1.6345915363083927 -1990-03-28,0.02,-11.489999999999998,0.5159998842592592,448.61,159.75,1.4722148936287511 -1990-03-29,0.0,-11.375,0.5159998842592592,530.76,129.86,1.3098382509491096 -1990-03-30,1.03,-9.745000000000001,0.520000462962963,538.27,120.0,1.179936936805396 -1990-03-31,2.73,-3.38,0.520000462962963,416.89,277.46,1.158286717781444 -1990-04-01,0.07,1.71,0.5240002314814816,257.34,559.42,1.158286717781444 -1990-04-02,0.15,1.67,0.5279998842592593,193.28,589.4,1.16911182729342 -1990-04-03,1.7,2.295,0.5279998842592593,256.36,577.81,1.16911182729342 -1990-04-04,9.64,4.075,0.5319998842592593,225.91,634.48,1.36396379850899 -1990-04-05,7.56,3.74,0.5319998842592593,173.76,673.07,1.861918836059891 -1990-04-06,0.47,1.13,0.5359994212962963,349.48,506.1,2.132546573859294 -1990-04-07,0.0,-1.0850000000000002,0.5395353009259259,418.41,410.75,2.3815240926347445 -1990-04-08,0.0,-2.425,0.54,444.19,358.13,2.5872011733622906 -1990-04-09,0.0,-1.8650000000000002,0.5439997685185185,590.8,296.11,2.7712280350658847 -1990-04-10,6.78,0.06500000000000039,0.5439997685185185,351.31,428.95,2.9444297872575023 -1990-04-11,10.35,-2.575,0.5479999999999999,142.35,450.08,3.085156210913192 -1990-04-12,4.41,-3.3899999999999997,0.5498481481481481,318.93,355.99,3.1501068679850484 -1990-04-13,0.0,-3.6649999999999996,0.5520004629629629,606.77,279.14,3.1392817584730723 -1990-04-14,0.0,0.16000000000000014,0.5559922453703704,591.57,376.48,3.1068064299371434 -1990-04-15,6.2,2.5949999999999998,0.5560002314814815,309.8,561.19,3.1176315394491203 -1990-04-16,2.84,3.745,0.56,291.01,642.88,3.1934073060329524 -1990-04-17,2.63,1.2349999999999999,0.5600517361111111,442.77,460.8,3.3666090582245705 -1990-04-18,3.56,-1.77,0.5639996527777777,348.03,402.44,3.4423848248084035 -1990-04-19,0.0,-0.6400000000000001,0.5663305555555556,581.93,360.0,3.496510372368284 -1990-04-20,1.82,6.085,0.5679997685185185,537.14,575.29,3.6805372340718776 -1990-04-21,7.95,6.63,0.5715351851851852,360.15,698.48,4.210967600158707 -1990-04-22,0.0,4.205,0.5719994212962963,611.47,484.06,4.741397966245537 -1990-04-23,1.85,5.61,0.5760005787037037,480.0,628.91,5.369254317940151 -1990-04-24,0.0,3.8049999999999997,0.5760005787037037,613.93,483.33,5.8888595745150045 -1990-04-25,0.0,5.55,0.5800003472222222,612.48,538.16,6.365164393041954 -1990-04-26,0.0,8.575000000000001,0.5807946759259259,629.09,611.66,6.700742787913213 -1990-04-27,0.17,13.719999999999999,0.5840005787037037,652.53,698.05,7.426025125215612 -1990-04-28,0.0,11.875,0.5853530092592593,601.37,759.45,8.735863376164723 -1990-04-29,0.0,6.574999999999999,0.5880002314814815,468.26,719.99,9.15804264713179 -1990-04-30,0.0,10.645,0.5903311342592593,627.03,674.95,9.006491113964124 -1990-05-01,0.0,14.504999999999999,0.5920008101851852,622.36,808.95,8.779163814212627 -1990-05-02,2.2,11.469999999999999,0.5943310185185184,493.91,799.73,8.551836514461128 -1990-05-03,0.0,4.739999999999999,0.5959997685185184,611.41,463.63,8.118832133982083 -1990-05-04,0.0,5.355,0.5987809027777777,650.02,415.03,7.577576658383278 -1990-05-05,1.54,7.029999999999999,0.5999998842592592,469.83,642.97,7.079621620832377 -1990-05-06,3.93,5.7,0.6027810185185185,301.8,691.46,6.689917678401237 -1990-05-07,4.1,4.9799999999999995,0.6039996527777778,396.57,580.85,6.321863954994049 -1990-05-08,1.12,7.0,0.6063304398148148,588.25,533.51,5.8996846840269805 -1990-05-09,0.09,11.065000000000001,0.6079995370370371,614.09,653.4,5.45585519403596 -1990-05-10,3.33,12.385,0.6098476851851852,447.03,895.46,5.055326142092844 -1990-05-11,7.7,10.41,0.6120002314814815,300.26,945.14,4.806348623317393 -1990-05-12,2.51,8.02,0.6133524305555556,540.19,575.1,4.503245556982062 -1990-05-13,0.0,10.325,0.6159914351851852,485.32,805.46,4.221792709670684 -1990-05-14,0.0,10.424999999999999,0.6162851851851852,584.12,643.78,3.907864533823376 -1990-05-15,2.09,10.42,0.6195356481481481,583.38,546.44,3.648061905535949 -1990-05-16,5.74,12.184999999999999,0.6199998842592592,374.22,924.58,3.3882592772485234 -1990-05-17,2.51,8.255,0.6227818287037037,499.41,626.28,3.1717570870090004 -1990-05-18,10.53,6.69,0.6240006944444445,228.73,780.9,3.1392817584730723 -1990-05-19,2.44,4.33,0.6253526620370371,234.65,691.55,3.085156210913192 -1990-05-20,3.24,5.234999999999999,0.6278895833333333,289.36,690.54,3.0202055538413353 -1990-05-21,5.57,5.2299999999999995,0.6280518518518519,230.85,716.66,2.9444297872575023 -1990-05-22,18.82,2.5549999999999997,0.6303303240740741,200.22,602.0,3.1934073060329524 -1990-05-23,12.07,4.5249999999999995,0.6319916666666667,271.38,639.99,3.713012562607806 -1990-05-24,0.0,6.734999999999999,0.6322856481481481,601.19,540.2,3.8753892052874477 -1990-05-25,0.0,8.485,0.6347809027777778,652.75,478.26,3.9619900813832567 -1990-05-26,0.0,11.045,0.6360001157407408,663.82,503.65,3.9403398623593047 -1990-05-27,0.0,13.135,0.6362856481481481,657.08,581.24,3.8320887672395436 -1990-05-28,0.0,15.41,0.6387810185185185,637.84,717.58,3.70218745309583 -1990-05-29,0.21,12.96,0.6399917824074074,560.37,802.66,3.496510372368284 -1990-05-30,0.64,8.37,0.6400512731481481,341.61,857.9,3.2908332916407383 -1990-05-31,0.0,6.715,0.6418483796296296,553.56,577.58,3.1068064299371434 -1990-06-01,0.0,11.675,0.6435354166666667,630.54,584.97,2.9444297872575023 -1990-06-02,0.0,17.12,0.6439998842592592,583.15,939.29,2.7604029255539086 -1990-06-03,0.18,20.6,0.6442856481481481,525.1,1313.37,2.5980262828742666 -1990-06-04,7.47,18.015,0.6458482638888889,379.44,1301.01,2.53307562580241 -1990-06-05,3.28,10.855,0.6471538194444444,369.67,873.29,2.413999421170673 -1990-06-06,0.55,8.185,0.6479927083333333,542.47,628.12,2.2840981070269595 -1990-06-07,5.4,12.600000000000001,0.6480521990740741,347.46,976.18,2.1758470119071984 -1990-06-08,1.86,14.415,0.6487947916666666,434.11,1022.91,2.0784210262994134 -1990-06-09,0.61,15.030000000000001,0.6498487268518519,527.76,971.01,1.9701699311796523 -1990-06-10,0.21,14.969999999999999,0.6507814814814814,345.27,1289.18,1.851093726547915 -1990-06-11,1.73,13.48,0.6515357638888889,406.66,1071.29,1.7211924124042017 -1990-06-12,0.0,12.190000000000001,0.6519921296296297,610.06,585.28,1.6237664267964167 -1990-06-13,0.0,16.38,0.6520001157407407,575.19,850.17,1.5263404411886317 -1990-06-14,0.0,20.135,0.6520517361111111,467.77,1418.31,1.4397395650928229 -1990-06-15,0.6,19.67,0.6522856481481482,360.45,1640.13,1.3531386889970138 -1990-06-16,3.85,18.675,0.6527943287037037,344.84,1498.86,1.2881880319251573 -1990-06-17,2.23,21.134999999999998,0.653352662037037,373.9,1613.58,1.2232373748533005 -1990-06-18,10.74,21.58,0.653848611111111,231.77,1931.99,1.2232373748533005 -1990-06-19,11.55,15.07,0.653848611111111,242.27,1279.76,1.2015871558293483 -1990-06-20,6.6,11.26,0.653848611111111,168.74,1101.32,1.2015871558293483 -1990-06-21,2.22,13.09,0.6543310185185185,178.48,1261.74,1.179936936805396 -1990-06-22,5.3,15.580000000000002,0.6543310185185185,167.12,1438.89,1.1907620463173723 -1990-06-23,5.89,15.579999999999998,0.653848611111111,188.53,1427.22,1.2015871558293483 -1990-06-24,11.04,16.835,0.653848611111111,153.53,1608.36,1.2557127033892288 -1990-06-25,4.15,18.32,0.653352662037037,294.99,1460.26,1.2990131414371333 -1990-06-26,0.0,19.66,0.653352662037037,426.73,1499.03,1.2990131414371333 -1990-06-27,2.73,19.48,0.6527943287037037,368.04,1516.94,1.2881880319251573 -1990-06-28,3.26,16.155,0.6522856481481482,353.92,1273.47,1.2448875938772528 -1990-06-29,0.0,14.545,0.6520517361111111,490.67,959.02,1.2124122653413245 -1990-06-30,0.0,17.025,0.6519921296296297,424.87,1300.94,1.1474616082694677 -1990-07-01,0.0,16.215,0.6518894675925926,432.76,1231.74,1.0825109511976112 -1990-07-02,0.0,16.08,0.6511538194444445,480.94,1105.11,1.0348804693449163 -1990-07-03,2.51,17.4,0.6503311342592593,412.48,1276.35,0.9872499874922213 -1990-07-04,5.11,16.689999999999998,0.6493528935185184,221.04,1482.63,0.9775073889314428 -1990-07-05,0.08,14.16,0.6482863425925927,323.89,1252.06,0.8984840894940173 -1990-07-06,0.0,10.92,0.6480008101851852,462.97,833.27,0.8356984543245557 -1990-07-07,0.0,11.684999999999999,0.647890162037037,435.64,922.22,0.7869854615206633 -1990-07-08,1.29,12.91,0.64678125,492.52,813.13,0.7436850234727588 -1990-07-09,6.47,17.634999999999998,0.645352199074074,320.77,1361.45,0.7447675344239565 -1990-07-10,2.19,17.275,0.6440515046296297,387.0,1351.24,0.7047146292296448 -1990-07-11,0.0,15.99,0.6438894675925926,417.13,1252.39,0.6495065707185667 -1990-07-12,0.0,13.620000000000001,0.6427809027777778,467.91,976.93,0.6159487312314408 -1990-07-13,0.0,13.18,0.6407940972222222,515.66,822.2,0.5856384245979076 -1990-07-14,0.0,16.665,0.6399997685185186,518.57,968.26,0.5596581617691649 -1990-07-15,0.0,19.9,0.6395354166666667,442.43,1473.97,0.5293478551356319 -1990-07-16,0.0,23.055,0.6378482638888888,367.74,2037.9,0.5087801470628772 -1990-07-17,0.26,21.73,0.6360001157407408,431.58,1661.14,0.4806348623317393 -1990-07-18,1.05,21.085,0.6355359953703703,435.85,1501.44,0.4589846433077871 -1990-07-19,2.03,22.77,0.6338483796296296,315.67,2020.61,0.44382948999102056 -1990-07-20,2.48,19.835,0.6319996527777777,350.26,1638.87,0.42542680382066117 -1990-07-21,0.0,17.405,0.6315355324074073,390.91,1377.55,0.40052905194311617 -1990-07-22,0.0,17.14,0.6287943287037038,484.28,1060.2,0.3810438548215591 -1990-07-23,14.41,17.46,0.628,284.68,1476.78,0.39511649718712805 -1990-07-24,22.31,16.92,0.6267813657407407,118.63,1700.04,0.4763048185269489 -1990-07-25,4.43,18.78,0.624052199074074,169.85,1781.81,0.4947075046973083 -1990-07-26,0.01,20.105,0.6238902777777778,382.84,1636.26,0.5055326142092844 -1990-07-27,0.0,20.67,0.6207944444444444,467.08,1397.62,0.5152752127700628 -1990-07-28,0.0,21.235,0.6199998842592592,459.9,1464.69,0.5358429208428175 -1990-07-29,0.0,21.939999999999998,0.6183303240740741,470.15,1464.81,0.5282653441844343 -1990-07-30,0.0,22.75,0.615999537037037,449.33,1618.71,0.5163577237212605 -1990-07-31,0.0,21.54,0.6151532407407407,436.48,1559.52,0.5022850813556916 -1990-08-01,0.4,19.43,0.6120002314814815,319.91,1676.7,0.46223217616137996 -1990-08-02,0.0,16.275,0.6115356481481482,382.0,1284.24,0.4243442928694635 -1990-08-03,0.0,18.685000000000002,0.6080510416666667,451.32,1281.32,0.4037765847967089 -1990-08-04,0.0,20.64,0.6078891203703704,474.78,1293.46,0.39295147528473284 -1990-08-05,0.0,21.485,0.6042853009259259,457.62,1415.32,0.3810438548215591 -1990-08-06,0.74,21.34,0.6039916666666666,332.19,1783.69,0.3713012562607806 -1990-08-07,4.59,18.055,0.6002854166666667,165.34,1712.49,0.35614610294401405 -1990-08-08,5.69,19.924999999999997,0.5999998842592592,158.26,1916.36,0.3550635919928165 -1990-08-09,7.51,20.42,0.5962851851851851,289.9,1710.2,0.3485685262856308 -1990-08-10,2.0,20.225,0.5959997685185184,306.19,1713.79,0.32800081821287613 -1990-08-11,13.87,20.189999999999998,0.5920523148148148,148.88,1974.9,0.3269183072616786 -1990-08-12,8.21,20.59,0.591992824074074,183.59,1943.23,0.3323308620176666 -1990-08-13,18.33,18.615000000000002,0.5880002314814815,260.23,1548.18,0.3323308620176666 -1990-08-14,44.89,16.064999999999998,0.5879922453703703,197.81,1455.11,0.6224437969386264 -1990-08-15,0.0,15.575,0.5840005787037037,419.26,1157.8,0.6018760888658717 -1990-08-16,0.0,17.01,0.5835359953703704,386.88,1330.74,0.5780608479395244 -1990-08-17,0.0,18.77,0.5800003472222222,425.12,1368.44,0.5737308041347339 -1990-08-18,2.52,20.33,0.5787818287037036,364.71,1567.24,0.5661532274763506 -1990-08-19,5.2,14.115,0.5760005787037037,357.19,950.19,0.5683182493787459 -1990-08-20,0.0,10.379999999999999,0.5738478009259259,462.06,719.89,0.5596581617691649 -1990-08-21,0.0,12.93,0.5719994212962963,466.98,816.16,0.5423379865500033 -1990-08-22,0.0,15.445,0.5680513888888888,466.33,934.06,0.5185227456236557 -1990-08-23,0.0,17.53,0.5679997685185185,458.76,1059.45,0.4979550375509011 -1990-08-24,0.0,19.025,0.5639996527777777,440.64,1216.65,0.47738732947814655 -1990-08-25,0.0,20.245,0.5639916666666667,405.32,1413.94,0.45681962140539184 -1990-08-26,0.0,21.18,0.56,408.94,1466.15,0.43516940238143964 -1990-08-27,7.87,22.299999999999997,0.558330324074074,310.3,1775.61,0.4189317381134755 -1990-08-28,8.67,20.385,0.5560002314814815,252.09,1639.81,0.40269407384551137 -1990-08-29,9.04,18.814999999999998,0.5520519675925926,222.91,1582.47,0.41243667240628984 -1990-08-30,2.31,14.405,0.5520004629629629,371.67,1021.8,0.4167667162110803 -1990-08-31,0.0,15.200000000000001,0.5479999999999999,392.48,1069.87,0.3994465409919185 -1990-09-01,0.0,16.68,0.5479921296296296,408.25,1115.34,0.3864564095775472 -1990-09-02,0.0,17.47,0.5439997685185185,351.22,1324.03,0.3691362343583854 -1990-09-03,0.0,12.5,0.540794212962963,408.81,843.04,0.3420734605784451 -1990-09-04,0.0,10.83,0.54,434.03,690.66,0.32800081821287613 -1990-09-05,3.24,13.43,0.5359994212962963,317.44,953.92,0.3106806429937144 -1990-09-06,0.25,13.45,0.5359994212962963,414.67,823.11,0.29336046777455266 -1990-09-07,9.58,13.665000000000001,0.5319998842592593,263.33,993.14,0.29444297872575026 -1990-09-08,5.85,9.014999999999999,0.5298482638888888,341.46,641.24,0.2890304239697622 -1990-09-09,0.0,10.09,0.5279998842592593,402.04,669.26,0.2814528473113789 -1990-09-10,0.0,13.245,0.5240002314814816,317.42,1003.48,0.27171024875060035 -1990-09-11,0.37,13.27,0.5240002314814816,262.35,1105.6,0.2522250516290434 -1990-09-12,0.0,10.594999999999999,0.520000462962963,392.6,685.03,0.2457299859218577 -1990-09-13,0.0,11.875,0.5183310185185186,294.23,933.24,0.22949232165389355 -1990-09-14,1.91,11.91,0.5159998842592592,316.12,848.8,0.23165734355628878 -1990-09-15,6.13,16.835,0.511999537037037,180.96,1460.46,0.23598738736107921 -1990-09-16,7.3,11.23,0.511999537037037,184.13,965.13,0.21974972309311505 -1990-09-17,0.0,5.5249999999999995,0.5079996527777778,239.85,651.04,0.20675959167874372 -1990-09-18,0.08,4.525,0.5067805555555556,240.79,612.89,0.19593448216676762 -1990-09-19,0.02,6.155,0.503999537037037,266.05,656.81,0.1840268617035939 -1990-09-20,5.04,7.65,0.4999997685185186,156.66,805.93,0.1840268617035939 -1990-09-21,2.19,7.995,0.4999997685185186,251.47,739.32,0.17969681789880346 -1990-09-22,6.46,9.23,0.4959997685185185,234.65,844.92,0.17861430694760583 -1990-09-23,31.3,10.870000000000001,0.49366840277777774,142.39,1040.76,0.35398108104161885 -1990-09-24,12.8,9.025,0.4919994212962963,175.18,869.78,0.48496490613652976 -1990-09-25,1.75,9.045,0.48800034722222224,266.74,800.29,0.4914599718437154 -1990-09-26,0.0,11.76,0.48800034722222224,275.96,961.4,0.5271828332332367 -1990-09-27,0.0,14.27,0.4840002314814815,216.31,1265.33,0.5596581617691649 -1990-09-28,0.32,14.280000000000001,0.48167002314814816,251.29,1190.83,0.5780608479395244 -1990-09-29,4.71,12.344999999999999,0.4800005787037037,168.5,1101.1,0.6007935779146741 -1990-09-30,10.41,7.470000000000001,0.4760001157407408,189.3,751.78,0.6365164393041954 -1990-10-01,18.15,8.69,0.4760001157407408,166.93,862.85,0.8984840894940173 -1990-10-02,1.76,6.005,0.4719996527777777,222.48,707.49,0.9720948341754548 -1990-10-03,3.05,5.19,0.4701513888888889,195.1,646.66,1.040293024100904 -1990-10-04,4.74,6.515000000000001,0.46799976851851854,300.82,544.52,1.1149862797335395 -1990-10-05,7.24,9.69,0.463999537037037,218.87,803.52,1.179936936805396 -1990-10-06,3.45,9.99,0.463999537037037,249.07,779.18,1.2124122653413245 -1990-10-07,7.6,11.375,0.46,199.51,944.78,1.2448875938772528 -1990-10-08,5.2,6.22,0.45920532407407405,113.32,796.18,1.266537812901205 -1990-10-09,11.73,4.37,0.45599953703703705,56.99,776.61,1.3206633604610856 -1990-10-10,9.97,4.46,0.45200810185185186,95.49,736.91,1.5588157697245602 -1990-10-11,4.72,6.95,0.452,140.2,801.34,1.6454166458203692 -1990-10-12,9.06,11.155000000000001,0.4480001157407407,168.08,1027.98,1.75366774094013 -1990-10-13,15.55,16.28,0.4480001157407407,134.91,1516.78,1.9376946026437238 -1990-10-14,12.77,15.794999999999998,0.4440001157407408,136.63,1476.95,2.3923492021467205 -1990-10-15,1.01,11.075000000000001,0.44166932870370373,283.5,880.32,2.9336046777455267 -1990-10-16,0.01,7.47,0.4400003472222222,301.39,638.46,3.2583579631048094 -1990-10-17,1.3,6.29,0.43611064814814815,260.25,619.93,3.4423848248084035 -1990-10-18,5.9,10.115,0.43600011574074077,191.05,883.83,3.561461029440141 -1990-10-19,12.74,9.435,0.43200000000000005,197.23,808.45,3.6805372340718776 -1990-10-20,6.35,2.905,0.43194837962962956,174.23,558.7,3.723837672119782 -1990-10-21,0.0,2.095,0.428,284.83,440.0,3.745487891143735 -1990-10-22,1.68,5.659999999999999,0.4261517361111111,221.94,639.3,3.6697121245599016 -1990-10-23,10.68,3.3150000000000004,0.42400011574074076,189.44,520.72,3.5398108104161885 -1990-10-24,36.67,2.745,0.42121863425925926,106.66,616.84,4.124366724062899 -1990-10-25,18.95,1.815,0.41999976851851856,111.72,590.87,5.271828332332366 -1990-10-26,0.06,0.7999999999999999,0.4164640046296296,155.16,521.2,5.661532274763506 -1990-10-27,0.0,-0.575,0.4159996527777778,167.53,468.19,5.7373080413473385 -1990-10-28,1.52,-1.0750000000000002,0.4121109953703704,227.53,367.5,5.6290569462275775 -1990-10-29,3.17,1.7050000000000003,0.41200046296296294,106.55,576.95,5.45585519403596 -1990-10-30,0.05,0.7849999999999999,0.4080084490740741,207.15,480.89,5.239353003796438 -1990-10-31,0.0,1.395,0.40794895833333333,168.45,535.88,4.957900156485059 -1990-11-01,0.0,-1.42,0.40399999999999997,178.12,425.9,4.687272418685656 -1990-11-02,0.84,-1.4649999999999999,0.4037145833333334,195.12,400.03,4.42746979039823 -1990-11-03,4.05,0.71,0.40000023148148145,113.34,525.06,4.178492271622779 -1990-11-04,8.39,5.175,0.39971435185185183,152.26,636.71,4.026940738455114 -1990-11-05,7.69,3.1750000000000003,0.3960082175925926,169.0,498.32,3.907864533823376 -1990-11-06,14.38,-0.9349999999999999,0.39571446759259266,79.54,497.09,3.734662781631758 -1990-11-07,16.5,-2.935,0.3921108796296296,72.31,431.23,3.604761467488045 -1990-11-08,0.0,-4.4399999999999995,0.3919487268518519,121.74,368.89,3.3882592772485234 -1990-11-09,0.0,-5.14,0.3884644675925926,202.67,288.07,3.1934073060329524 -1990-11-10,11.53,-3.075,0.38799999999999996,165.25,360.0,3.0526808823772633 -1990-11-11,29.66,-1.65,0.3848466435185185,89.04,461.06,3.1717570870090004 -1990-11-12,4.32,-4.68,0.3840003472222222,117.98,353.11,3.1068064299371434 -1990-11-13,4.73,-5.57,0.38166932870370374,155.84,300.91,3.009380444329359 -1990-11-14,0.13,-2.52,0.3799997685185186,152.71,411.59,2.9011293492095978 -1990-11-15,0.0,-0.7849999999999999,0.37920590277777777,197.32,429.19,2.825353582625765 -1990-11-16,2.78,1.035,0.37611087962962964,131.25,536.54,2.72792759701798 -1990-11-17,5.35,1.09,0.3759486111111111,62.99,594.64,2.7062773779940277 -1990-11-18,0.97,-1.065,0.37321898148148147,104.6,489.46,2.6846271589700756 -1990-11-19,7.82,-4.2700000000000005,0.3719998842592593,149.09,339.18,2.6521518304341467 -1990-11-20,9.37,-3.5900000000000003,0.37120578703703705,107.52,380.68,2.6738020494580996 -1990-11-21,0.0,-2.75,0.3684645833333333,126.32,425.93,2.5872011733622906 -1990-11-22,0.08,-2.215,0.3680003472222222,157.57,424.87,2.543900735314386 -1990-11-23,4.44,0.07500000000000007,0.36615196759259255,56.42,560.0,2.4789500782425296 -1990-11-24,4.47,1.24,0.3644642361111111,70.93,595.9,2.4031743116586965 -1990-11-25,3.96,-0.014999999999999902,0.36400011574074076,94.58,515.05,2.3815240926347445 -1990-11-26,3.39,-3.6350000000000002,0.3621513888888889,140.1,357.45,2.2949232165389355 -1990-11-27,1.84,-5.390000000000001,0.3604638888888889,189.46,243.37,2.251622778491031 -1990-11-28,1.64,0.8599999999999999,0.3599998842592593,207.84,412.84,2.1974972309311505 -1990-11-29,0.0,4.6450000000000005,0.35920578703703704,183.98,612.97,2.2624478880030074 -1990-11-30,0.0,-3.3649999999999998,0.3572189814814815,197.7,319.96,2.33822365458684 -1990-12-01,0.0,-3.5399999999999996,0.35611041666666665,189.16,320.0,2.3815240926347445 -1990-12-02,0.0,-0.3400000000000003,0.3559483796296296,191.66,401.55,2.3706989831227685 -1990-12-03,3.3,-5.695,0.3546476851851852,182.05,242.99,2.327398545074864 -1990-12-04,20.57,-6.045,0.35321898148148145,128.39,281.59,2.3815240926347445 -1990-12-05,15.76,-3.38,0.35211030092592593,123.54,356.39,2.446474749706601 -1990-12-06,0.0,-7.99,0.35199988425925927,194.56,220.71,2.359873873610792 -1990-12-07,0.0,-6.66,0.35171423611111113,192.77,241.84,2.316573435562888 -1990-12-08,0.01,-4.885,0.3506474537037037,173.62,298.68,2.3057483260509115 -1990-12-09,0.0,-3.6300000000000003,0.34966921296296294,151.52,351.34,2.3057483260509115 -1990-12-10,0.06,-3.925,0.3488465277777778,177.7,308.97,2.2624478880030074 -1990-12-11,0.0,-9.535,0.3481105324074074,186.73,189.23,2.1866721214191744 -1990-12-12,0.16,-11.145,0.3480079861111111,173.72,162.34,2.110896354835342 -1990-12-13,3.04,-7.07,0.34794849537037037,155.06,202.02,2.0675959167874374 -1990-12-14,1.96,-9.93,0.34771435185185184,170.3,157.53,1.9376946026437238 -1990-12-15,0.0,-13.475000000000001,0.3472057870370371,171.03,146.33,1.8402686170359388 -1990-12-16,3.14,-9.055,0.3466476851851852,157.31,190.31,1.7861430694760585 -1990-12-17,3.27,-3.83,0.3466476851851852,111.11,359.91,1.7320175219161775 -1990-12-18,7.56,-2.69,0.3461518518518519,127.23,327.7,1.6887170838682732 -1990-12-19,8.44,-3.005,0.3461518518518519,108.69,358.29,1.6995421933802495 -1990-12-20,0.0,-12.14,0.3456693287037037,192.97,123.5,1.5804659887485122 -1990-12-21,1.71,-12.115,0.3456693287037037,179.23,120.0,1.5912910982604884 -1990-12-22,9.23,-0.16500000000000015,0.3461518518518519,57.38,520.8,1.6021162077724647 -1990-12-23,11.98,2.285,0.3461518518518519,75.86,584.53,1.7211924124042017 -1990-12-24,14.33,-4.404999999999999,0.3461518518518519,121.13,294.66,1.9268694931317478 -1990-12-25,5.99,-13.860000000000001,0.3466476851851852,142.08,120.0,1.9160443836197718 -1990-12-26,0.03,-13.260000000000002,0.3472057870370371,181.83,120.0,1.8835690550838433 -1990-12-27,0.0,-19.475,0.34771435185185184,205.67,49.35,1.851093726547915 -1990-12-28,0.0,-19.45,0.34794849537037037,207.28,42.1,1.829443507523963 -1990-12-29,2.9,-9.735000000000001,0.34800000000000003,177.05,147.51,1.7969681789880345 -1990-12-30,6.0,-0.7149999999999999,0.3480079861111111,90.56,442.7,1.742842631428154 -1990-12-31,5.24,-12.55,0.3484641203703704,133.75,137.74,1.7103673028922255 -1991-01-01,0.0,-19.15,0.34921886574074074,176.71,80.0,1.6995421933802495 -1991-01-02,0.05,-13.035,0.35015162037037034,182.69,122.03,1.6887170838682732 -1991-01-03,0.0,-14.935,0.35120578703703703,186.83,89.46,1.6778919743562972 -1991-01-04,0.0,-16.619999999999997,0.3519482638888889,170.11,80.74,1.6345915363083927 -1991-01-05,0.0,-11.31,0.35200787037037035,139.61,164.66,1.6021162077724647 -1991-01-06,1.11,-9.18,0.35284641203703704,114.29,218.91,1.5588157697245602 -1991-01-07,0.0,-16.83,0.3541518518518519,173.2,81.04,1.537165550700608 -1991-01-08,0.0,-24.939999999999998,0.35571446759259256,172.59,40.0,1.4938651126527034 -1991-01-09,2.99,-22.18,0.35600000000000004,176.19,40.0,1.461389784116775 -1991-01-10,4.81,-16.77,0.3564643518518519,131.39,84.06,1.4180893460688704 -1991-01-11,0.0,-21.305,0.35815185185185183,173.81,69.13,1.3856140175329423 -1991-01-12,6.03,-21.16,0.3599482638888889,118.71,80.0,1.3531386889970138 -1991-01-13,5.96,-16.015,0.36000787037037035,96.14,120.0,1.2990131414371333 -1991-01-14,0.4,-16.425,0.36121863425925926,204.38,80.0,1.2557127033892288 -1991-01-15,1.52,-12.614999999999998,0.3637142361111111,168.53,139.18,1.2015871558293483 -1991-01-16,7.28,-7.885000000000001,0.36400011574074076,110.67,238.71,1.1474616082694677 -1991-01-17,11.28,-3.915,0.36521898148148146,73.56,364.43,1.0933360607095872 -1991-01-18,0.02,-8.4,0.36771435185185186,165.71,211.35,1.060860732173659 -1991-01-19,3.96,-15.265,0.3680083333333333,171.91,80.0,1.0283854036377307 -1991-01-20,2.1,-13.54,0.3696696759259259,199.16,120.0,1.0067351846137784 -1991-01-21,0.0,-19.59,0.3719483796296296,225.63,69.69,0.9850849655898262 -1991-01-22,0.0,-25.71,0.37211041666666667,218.01,40.0,0.9634347465658739 -1991-01-23,0.68,-23.415,0.3746479166666667,247.06,40.0,0.9526096370538978 -1991-01-24,1.13,-13.205,0.3760002314814815,206.03,129.65,0.9309594180299455 -1991-01-25,0.0,-21.66,0.3772188657407407,225.35,48.77,0.9093091990059934 -1991-01-26,0.0,-25.875,0.3799997685185186,257.21,40.0,0.8984840894940173 -1991-01-27,0.03,-14.16,0.3804640046296296,233.18,117.64,0.876833870470065 -1991-01-28,1.13,-8.295,0.383714699074074,219.05,194.01,0.8660087609580888 -1991-01-29,0.8,-9.47,0.38400833333333334,202.78,187.08,0.8551836514461127 -1991-01-30,6.25,-12.440000000000001,0.3866476851851852,142.41,159.87,0.8443585419341366 -1991-01-31,5.26,-12.695,0.38799999999999996,129.71,160.02,0.8335334324221606 -1991-02-01,0.0,-18.175,0.3901519675925926,226.18,80.0,0.8227083229101846 -1991-02-02,0.0,-17.68,0.39200034722222227,279.57,80.0,0.8010581038862323 -1991-02-03,0.0,-4.48,0.3936696759259259,261.74,239.57,0.7902329943742561 -1991-02-04,0.0,0.44500000000000006,0.39600023148148145,137.36,498.94,0.7794078848622801 -1991-02-05,0.0,0.1200000000000001,0.3972188657407407,131.67,495.19,0.7902329943742561 -1991-02-06,0.0,-3.295,0.40000023148148145,253.72,286.35,0.8010581038862323 -1991-02-07,0.0,-3.6100000000000003,0.4012189814814815,242.28,284.78,0.8010581038862323 -1991-02-08,0.0,-2.25,0.40399999999999997,224.89,359.4,0.8010581038862323 -1991-02-09,0.0,-2.6350000000000002,0.40521898148148144,251.97,312.92,0.7956455491302442 -1991-02-10,0.0,-7.63,0.4080003472222223,291.37,186.34,0.7902329943742561 -1991-02-11,0.04,-16.79,0.40966990740740744,322.75,80.0,0.7577576658383279 -1991-02-12,0.0,-19.53,0.41200046296296294,293.77,80.0,0.7361074468143756 -1991-02-13,0.0,-20.835,0.41464768518518513,318.61,40.15,0.7036321182784472 -1991-02-14,6.19,-17.59,0.4159996527777778,292.56,80.0,0.681981899254495 -1991-02-15,10.07,-10.67,0.419205324074074,181.47,176.83,0.6603316802305428 -1991-02-16,3.27,-11.685,0.41999976851851856,211.2,152.91,0.6549191254745548 -1991-02-17,0.48,-16.575,0.42400011574074076,307.0,80.0,0.6495065707185667 -1991-02-18,0.0,-15.555,0.42400011574074076,364.7,80.0,0.6386814612065905 -1991-02-19,0.09,-13.139999999999999,0.428,372.71,80.0,0.6278563516946144 -1991-02-20,5.52,-1.16,0.42846388888888887,162.04,406.46,0.6116186874266503 -1991-02-21,0.38,-3.8499999999999996,0.43200000000000005,293.47,280.19,0.6116186874266503 -1991-02-22,1.81,-3.4,0.4336695601851852,251.13,303.78,0.6062061326706623 -1991-02-23,1.76,-16.03,0.43600011574074077,299.04,81.36,0.5953810231586861 -1991-02-24,0.0,-17.945,0.4399488425925926,307.25,80.1,0.589968468402698 -1991-02-25,0.0,-15.29,0.4400003472222222,350.38,93.81,0.58455591364671 -1991-02-26,0.0,-16.2,0.4440001157407408,394.5,80.0,0.579143358890722 -1991-02-27,0.04,-15.36,0.4440081018518519,408.16,80.0,0.579143358890722 -1991-02-28,0.0,-13.68,0.4480001157407407,393.81,88.02,0.579143358890722 -1991-03-01,0.0,-9.299999999999999,0.4501516203703704,388.5,140.89,0.58455591364671 -1991-03-02,7.72,-1.1749999999999998,0.452,247.63,338.18,0.589968468402698 -1991-03-03,8.63,-1.6950000000000003,0.45599953703703705,192.36,379.27,0.6007935779146741 -1991-03-04,12.41,-7.605,0.45599953703703705,117.16,278.15,0.6170312421826384 -1991-03-05,14.15,-7.789999999999999,0.46,112.99,279.97,0.6278563516946144 -1991-03-06,0.64,-8.545,0.4604638888888889,399.39,164.06,0.6495065707185667 -1991-03-07,6.99,-3.995,0.463999537037037,311.54,272.34,0.6657442349865309 -1991-03-08,12.65,-7.71,0.46799976851851854,209.5,240.09,0.6928070087664712 -1991-03-09,4.62,-11.065000000000001,0.46799976851851854,119.58,221.48,0.7036321182784472 -1991-03-10,3.31,-8.475,0.4719996527777777,197.17,233.79,0.7090446730344352 -1991-03-11,2.05,-4.755000000000001,0.4719996527777777,220.48,329.23,0.7144572277904233 -1991-03-12,0.19,-2.54,0.4760001157407408,191.73,417.4,0.7144572277904233 -1991-03-13,0.0,-0.9999999999999999,0.4800005787037037,188.27,467.39,0.7090446730344352 -1991-03-14,0.0,-0.51,0.4800005787037037,227.23,469.2,0.6928070087664712 -1991-03-15,0.0,-2.8,0.4840002314814815,362.47,332.41,0.6873944540104832 -1991-03-16,0.0,-5.83,0.4840002314814815,479.4,211.68,0.6765693444985069 -1991-03-17,0.0,-3.7800000000000002,0.48800034722222224,464.97,258.73,0.6711567897425189 -1991-03-18,0.01,-2.3649999999999998,0.4919994212962963,509.94,241.29,0.6711567897425189 -1991-03-19,9.92,0.10499999999999998,0.4919994212962963,281.14,417.28,0.6689917678401236 -1991-03-20,10.25,-2.695,0.4959997685185185,149.97,422.36,0.7144572277904233 -1991-03-21,0.0,-8.2,0.4959997685185185,443.3,205.41,0.7306948920583874 -1991-03-22,0.0,-10.975,0.4999997685185186,525.82,120.75,0.7361074468143756 -1991-03-23,3.32,-9.91,0.503999537037037,501.64,120.0,0.7361074468143756 -1991-03-24,9.08,-5.595,0.503999537037037,333.65,257.46,0.7523451110823397 -1991-03-25,1.99,-4.135,0.5079996527777778,420.05,280.03,0.7577576658383279 -1991-03-26,0.0,-4.039999999999999,0.5079996527777778,580.25,185.39,0.7577576658383279 -1991-03-27,1.97,-0.1750000000000007,0.511999537037037,516.9,274.36,0.8194607900565917 -1991-03-28,10.99,3.175,0.5159998842592592,332.54,504.81,1.0283854036377307 -1991-03-29,5.54,1.81,0.5159998842592592,274.53,514.22,1.2015871558293483 -1991-03-30,0.0,-5.41,0.520000462962963,476.23,263.82,1.3531386889970138 -1991-03-31,0.0,-7.35,0.520000462962963,561.63,196.5,1.4397395650928229 -1991-04-01,0.0,-3.93,0.5240002314814816,564.24,246.69,1.4830400031407271 -1991-04-02,0.0,-2.43,0.5279998842592593,547.21,283.71,1.5155153316766559 -1991-04-03,0.0,-1.37,0.5279998842592593,483.96,354.74,1.5696408792365362 -1991-04-04,0.0,1.75,0.5319998842592593,541.64,401.68,1.6237664267964167 -1991-04-05,0.53,6.905,0.5319998842592593,423.32,697.24,1.742842631428154 -1991-04-06,2.29,7.15,0.5359994212962963,373.12,734.57,2.0026452597155804 -1991-04-07,5.66,4.005,0.5395353009259259,295.57,600.0,2.4897751877545056 -1991-04-08,5.23,2.8,0.54,208.41,602.28,3.1392817584730723 -1991-04-09,7.6,3.0450000000000004,0.5439997685185185,192.55,625.48,4.221792709670684 -1991-04-10,14.82,-0.025000000000000022,0.5439997685185185,115.02,548.97,5.293478551356318 -1991-04-11,8.82,0.029999999999999916,0.5479999999999999,144.32,537.21,5.748133150859315 -1991-04-12,0.02,-2.6750000000000003,0.5498481481481481,345.81,384.12,5.79143358890722 -1991-04-13,0.0,-1.3499999999999996,0.5520004629629629,533.89,330.16,5.8239089174431475 -1991-04-14,0.0,0.03000000000000025,0.5559922453703704,583.31,325.61,5.867209355491053 -1991-04-15,0.0,3.245,0.5560002314814815,572.5,440.0,5.921334903050933 -1991-04-16,2.56,2.785,0.56,408.35,516.29,6.0404111076826705 -1991-04-17,2.45,0.8449999999999998,0.5600517361111111,333.59,493.25,5.964635341098838 -1991-04-18,0.0,2.0549999999999997,0.5639996527777777,571.0,421.54,5.921334903050933 -1991-04-19,0.0,2.8850000000000002,0.5663305555555556,615.17,389.54,5.9754604506108135 -1991-04-20,0.0,3.955,0.5679997685185185,586.29,448.84,6.0512362171946465 -1991-04-21,5.1,4.865,0.5715351851851852,405.76,600.0,6.159487312314408 -1991-04-22,12.87,3.225,0.5719994212962963,198.87,635.3,6.711567897425189 -1991-04-23,5.66,4.505,0.5760005787037037,222.21,693.54,7.59922687740723 -1991-04-24,0.0,6.44,0.5760005787037037,559.9,602.31,8.335334324221606 -1991-04-25,0.0,7.185,0.5800003472222222,591.0,600.21,9.201343085179694 -1991-04-26,0.0,6.3100000000000005,0.5807946759259259,650.04,473.59,9.96992586053 -1991-04-27,0.0,7.305,0.5840005787037037,599.88,590.57,10.82510951197611 -1991-04-28,0.0,3.0500000000000003,0.5853530092592593,604.55,440.0,11.041611702215635 -1991-04-29,0.0,5.24,0.5880002314814815,647.16,439.66,10.933360607095873 -1991-04-30,0.0,6.8149999999999995,0.5903311342592593,645.69,490.26,10.933360607095873 -1991-05-01,3.94,9.13,0.5920008101851852,417.71,729.66,11.041611702215635 -1991-05-02,2.64,10.105,0.5943310185185184,405.3,892.86,11.149862797335393 -1991-05-03,8.41,6.325,0.5959997685185184,292.98,734.98,11.041611702215635 -1991-05-04,7.57,5.62,0.5987809027777777,151.93,800.94,11.149862797335393 -1991-05-05,0.0,6.24,0.5999998842592592,394.19,732.84,10.706033307344374 -1991-05-06,5.16,5.75,0.6027810185185185,573.76,519.79,10.13230250320964 -1991-05-07,13.4,8.16,0.6039996527777778,382.41,743.89,10.218903379305448 -1991-05-08,0.0,8.879999999999999,0.6063304398148148,399.52,874.26,9.915800312970118 -1991-05-09,0.0,7.155,0.6079995370370371,592.6,604.01,9.450320603955145 -1991-05-10,0.0,7.459999999999999,0.6098476851851852,639.23,527.3,8.898240018844364 -1991-05-11,0.67,9.674999999999999,0.6120002314814815,645.55,572.99,8.27038366714975 -1991-05-12,1.86,13.674999999999999,0.6133524305555556,517.62,1003.31,7.620877096431182 -1991-05-13,0.13,11.39,0.6159914351851852,627.63,667.48,7.068796511320401 -1991-05-14,0.0,9.700000000000001,0.6162851851851852,587.89,677.39,6.516715926209619 -1991-05-15,0.0,7.2250000000000005,0.6195356481481481,635.95,501.31,6.018760888658718 -1991-05-16,6.56,11.575000000000001,0.6199998842592592,459.57,756.47,5.531630960619792 -1991-05-17,8.46,11.5,0.6227818287037037,324.62,946.72,5.250178113308414 -1991-05-18,3.45,4.39,0.6240006944444445,389.83,579.46,4.979550375509011 -1991-05-19,0.0,5.055000000000001,0.6253526620370371,611.81,451.69,4.611496652101823 -1991-05-20,0.0,11.115,0.6278895833333333,626.05,644.6,4.275918257230564 -1991-05-21,0.0,17.225,0.6280518518518519,562.55,1107.54,3.9619900813832567 -1991-05-22,0.0,13.399999999999999,0.6303303240740741,583.28,817.77,3.648061905535949 -1991-05-23,2.8,9.059999999999999,0.6319916666666667,562.87,547.83,3.3774341677365465 -1991-05-24,6.99,15.094999999999999,0.6322856481481481,428.5,926.05,3.182582196520977 -1991-05-25,0.0,18.825,0.6347809027777778,412.27,1493.09,2.9444297872575023 -1991-05-26,0.01,11.35,0.6360001157407408,582.92,702.91,2.72792759701798 -1991-05-27,16.8,13.190000000000001,0.6362856481481481,277.34,1106.09,2.5980262828742666 -1991-05-28,12.45,11.64,0.6387810185185185,201.89,1108.06,2.7604029255539086 -1991-05-29,0.0,13.98,0.6399917824074074,468.43,1046.92,2.6629769399461236 -1991-05-30,0.0,11.21,0.6400512731481481,552.66,760.2,2.5763760638503146 -1991-05-31,2.37,11.54,0.6418483796296296,266.91,1066.58,2.4789500782425296 -1991-06-01,1.68,10.485,0.6435354166666667,253.15,1025.08,2.349048764098816 -1991-06-02,0.0,11.265,0.6439998842592592,508.78,812.05,2.219147449955103 -1991-06-03,0.0,11.235,0.6442856481481481,502.67,802.32,2.0892461358113894 -1991-06-04,0.15,10.55,0.6458482638888889,435.7,851.32,1.9701699311796523 -1991-06-05,0.0,10.6,0.6471538194444444,367.86,921.66,1.861918836059891 -1991-06-06,0.0,11.265,0.6479927083333333,513.75,792.18,1.75366774094013 -1991-06-07,0.0,15.74,0.6480521990740741,542.44,919.67,1.656241755332345 -1991-06-08,0.0,18.375,0.6487947916666666,436.32,1357.19,1.537165550700608 -1991-06-09,0.0,12.079999999999998,0.6498487268518519,557.28,679.12,1.4505646746047989 -1991-06-10,0.0,18.02,0.6507814814814814,449.18,1295.1,1.36396379850899 -1991-06-11,0.23,21.785,0.6515357638888889,309.95,1944.42,1.2881880319251573 -1991-06-12,1.48,17.55,0.6519921296296297,367.84,1341.78,1.2124122653413245 -1991-06-13,9.12,13.625,0.6520001157407407,241.62,1166.6,1.1474616082694677 -1991-06-14,0.0,11.145,0.6520517361111111,376.25,931.23,1.0641082650272518 -1991-06-15,0.53,11.37,0.6522856481481482,342.55,970.13,1.0251378707841377 -1991-06-16,0.05,10.33,0.6527943287037037,473.17,755.17,0.9688473013218619 -1991-06-17,0.0,14.9,0.653352662037037,502.67,917.8,0.9136392428107837 -1991-06-18,0.0,18.775,0.653848611111111,502.89,1104.27,0.8670912719092866 -1991-06-19,0.0,21.95,0.653848611111111,458.72,1483.76,0.8292033886173701 -1991-06-20,2.03,21.36,0.653848611111111,415.66,1477.32,0.7772428629598849 -1991-06-21,1.21,17.58,0.6543310185185185,394.83,1273.47,0.7328599139607828 -1991-06-22,0.0,12.69,0.6543310185185185,382.87,1013.15,0.681981899254495 -1991-06-23,0.0,12.895000000000001,0.653848611111111,463.83,883.47,0.651671592620962 -1991-06-24,0.0,14.75,0.653848611111111,517.43,803.16,0.6181137531338359 -1991-06-25,0.0,17.145,0.653352662037037,520.88,890.4,0.5942985122074885 -1991-06-26,0.68,19.475,0.653352662037037,449.67,1259.19,0.5683182493787459 -1991-06-27,2.91,18.505,0.6527943287037037,401.34,1131.86,0.540172964647608 -1991-06-28,6.83,22.36,0.6522856481481482,302.06,1750.39,0.5304303660868295 -1991-06-29,6.91,19.23,0.6520517361111111,314.67,1490.17,0.49362499374611063 -1991-06-30,0.0,11.965,0.6519921296296297,418.31,890.91,0.4687272418685657 -1991-07-01,0.0,11.01,0.6518894675925926,405.25,849.51,0.4394994461862301 -1991-07-02,0.0,14.024999999999999,0.6511538194444445,369.41,1104.83,0.41568420525988264 -1991-07-03,0.0,14.385000000000002,0.6503311342592593,479.42,876.26,0.4016115628943137 -1991-07-04,0.0,16.755,0.6493528935185184,499.77,916.98,0.3907864533823376 -1991-07-05,0.0,18.83,0.6482863425925927,434.22,1265.34,0.3810438548215591 -1991-07-06,1.87,16.79,0.6480008101851852,288.12,1389.89,0.37346627816317585 -1991-07-07,6.17,16.415,0.647890162037037,195.55,1442.63,0.37563130006557105 -1991-07-08,17.73,18.46,0.64678125,181.09,1695.97,0.4892949499413202 -1991-07-09,19.9,14.09,0.645352199074074,210.76,1252.38,0.604041110768267 -1991-07-10,0.0,12.435,0.6440515046296297,262.13,1147.55,0.5564106289155721 -1991-07-11,0.0,14.755,0.6438894675925926,344.61,1216.65,0.520687767526051 -1991-07-12,0.0,15.32,0.6427809027777778,469.07,981.35,0.4957900156485059 -1991-07-13,1.65,18.515,0.6407940972222222,380.0,1336.74,0.47955235138054175 -1991-07-14,3.02,18.965,0.6399997685185186,295.21,1555.53,0.4665622199661704 -1991-07-15,0.0,17.17,0.6395354166666667,443.09,1169.0,0.4449120009422182 -1991-07-16,0.0,17.785,0.6378482638888888,490.17,1022.41,0.42650931477185877 -1991-07-17,0.01,20.965,0.6360001157407408,355.59,1705.23,0.41351918335748744 -1991-07-18,1.5,21.0,0.6355359953703703,336.22,1751.49,0.40052905194311617 -1991-07-19,0.0,22.57,0.6338483796296296,452.15,1521.93,0.38862143147994244 -1991-07-20,0.0,26.025,0.6319996527777777,396.74,2116.76,0.37563130006557105 -1991-07-21,0.01,23.23,0.6315355324074073,363.39,1931.25,0.3615586577000021 -1991-07-22,0.25,16.105,0.6287943287037038,404.11,1178.71,0.3344958839200618 -1991-07-23,2.25,13.954999999999998,0.628,343.03,1064.95,0.3236707744080857 -1991-07-24,1.85,17.105,0.6267813657407407,352.47,1362.39,0.3139281758473072 -1991-07-25,0.0,19.27,0.624052199074074,449.59,1270.37,0.2987730225305407 -1991-07-26,4.69,20.19,0.6238902777777778,349.7,1389.84,0.28794791301856454 -1991-07-27,2.37,19.275,0.6207944444444444,338.03,1491.12,0.2890304239697622 -1991-07-28,0.0,16.21,0.6199998842592592,475.99,997.39,0.27495778160419326 -1991-07-29,0.0,17.75,0.6183303240740741,482.98,1045.27,0.2608851392386243 -1991-07-30,0.0,19.505,0.615999537037037,483.43,1131.69,0.2511425406778458 -1991-07-31,0.12,19.485,0.6151532407407407,406.43,1417.85,0.2446474749706601 -1991-08-01,5.84,19.245,0.6120002314814815,312.24,1401.96,0.23598738736107921 -1991-08-02,4.37,18.92,0.6115356481481482,310.75,1382.91,0.23598738736107921 -1991-08-03,1.96,17.525,0.6080510416666667,375.26,1262.95,0.23598738736107921 -1991-08-04,0.0,17.07,0.6078891203703704,355.25,1359.52,0.23057483260509115 -1991-08-05,4.35,14.975000000000001,0.6042853009259259,156.16,1421.08,0.22624478880030072 -1991-08-06,3.61,15.325,0.6039916666666666,329.23,1132.58,0.22407976689790549 -1991-08-07,0.0,18.689999999999998,0.6002854166666667,442.51,1196.31,0.21000712453233655 -1991-08-08,0.0,19.965,0.5999998842592592,425.73,1336.14,0.20026452597155808 -1991-08-09,2.94,20.15,0.5962851851851851,406.72,1281.67,0.19701699311796522 -1991-08-10,20.58,19.39,0.5959997685185184,237.63,1610.86,0.22624478880030072 -1991-08-11,22.14,16.700000000000003,0.5920523148148148,142.83,1584.9,0.33124835106646905 -1991-08-12,5.23,18.385,0.591992824074074,273.42,1460.05,0.3496510372368284 -1991-08-13,0.0,20.815,0.5880002314814815,417.57,1471.78,0.3215057525056905 -1991-08-14,0.0,23.1,0.5879922453703703,364.87,1874.19,0.29985553348173827 -1991-08-15,0.0,22.68,0.5840005787037037,371.48,1799.62,0.28686540206736694 -1991-08-16,0.0,20.835,0.5835359953703704,319.31,1765.18,0.2695452268482052 -1991-08-17,0.0,16.865,0.5800003472222222,446.76,1073.76,0.25655509543383387 -1991-08-18,5.27,19.595,0.5787818287037036,307.19,1511.07,0.25655509543383387 -1991-08-19,26.69,15.83,0.5760005787037037,275.04,1215.93,0.2435649640194625 -1991-08-20,32.23,13.435,0.5738478009259259,207.47,1180.32,0.47413979662455363 -1991-08-21,4.8,11.295,0.5719994212962963,249.85,999.62,0.58455591364671 -1991-08-22,10.27,14.49,0.5680513888888888,212.36,1254.57,0.6884769649616808 -1991-08-23,0.0,16.725,0.5679997685185185,286.93,1424.55,0.7241998263512018 -1991-08-24,0.0,12.469999999999999,0.5639996527777777,423.15,873.64,0.7458500453751541 -1991-08-25,0.0,12.73,0.5639916666666667,452.52,799.76,0.7642527315455134 -1991-08-26,1.91,16.13,0.56,396.25,1081.74,0.7718303082038968 -1991-08-27,12.81,17.98,0.558330324074074,224.81,1502.26,0.7848204396182681 -1991-08-28,8.84,17.009999999999998,0.5560002314814815,225.26,1425.37,0.8411110090805439 -1991-08-29,0.0,19.04,0.5520519675925926,394.02,1382.7,0.8281208776661725 -1991-08-30,5.58,21.509999999999998,0.5520004629629629,319.48,1742.05,0.8064706586422203 -1991-08-31,29.57,18.18,0.5479999999999999,234.13,1505.18,1.0684383088320422 -1991-09-01,14.28,9.39,0.5479921296296296,301.64,799.25,1.158286717781444 -1991-09-02,0.0,9.37,0.5439997685185185,428.69,675.82,1.1258113892455155 -1991-09-03,0.0,14.005,0.540794212962963,421.72,916.11,1.0933360607095872 -1991-09-04,0.0,15.81,0.54,369.73,1165.54,1.055448177417671 -1991-09-05,0.0,13.84,0.5359994212962963,402.4,923.56,1.007817695564976 -1991-09-06,0.0,13.925,0.5359994212962963,403.81,922.0,0.9547746589562931 -1991-09-07,0.0,15.540000000000001,0.5319998842592593,394.98,1049.99,0.9125567318595862 -1991-09-08,0.0,14.43,0.5298482638888888,349.79,1089.59,0.8497710966901247 -1991-09-09,0.0,9.67,0.5279998842592593,402.55,694.41,0.7923980162766514 -1991-09-10,5.89,11.915,0.5240002314814816,292.93,847.41,0.7588401767895254 -1991-09-11,6.51,12.34,0.5240002314814816,208.74,1051.97,0.710127183985633 -1991-09-12,0.0,7.114999999999999,0.520000462962963,285.71,726.31,0.6668267459377285 -1991-09-13,0.0,10.190000000000001,0.5183310185185186,324.58,842.98,0.6256913297922193 -1991-09-14,0.0,10.73,0.5159998842592592,376.22,774.12,0.5932160012562909 -1991-09-15,3.44,9.870000000000001,0.511999537037037,278.84,750.88,0.5672357384275483 -1991-09-16,5.72,13.285,0.511999537037037,252.06,984.36,0.565070716525153 -1991-09-17,4.15,19.29,0.5079996527777778,184.58,1706.8,0.5542456070131768 -1991-09-18,3.65,13.31,0.5067805555555556,277.96,925.95,0.5282653441844343 -1991-09-19,11.27,11.0,0.503999537037037,166.86,1012.42,0.5531630960619793 -1991-09-20,0.62,7.08,0.4999997685185186,235.32,756.7,0.5878034465003028 -1991-09-21,0.0,5.815,0.4999997685185186,289.68,636.09,0.5607406727203627 -1991-09-22,0.0,6.66,0.4959997685185185,359.24,560.07,0.5445030084523984 -1991-09-23,1.95,8.485,0.49366840277777774,320.89,648.29,0.5315128770380272 -1991-09-24,1.43,9.01,0.4919994212962963,220.71,858.66,0.5120276799164701 -1991-09-25,17.8,6.295,0.48800034722222224,149.65,750.09,0.5574931398667697 -1991-09-26,18.54,5.845,0.48800034722222224,98.28,796.42,0.7447675344239565 -1991-09-27,6.51,7.325,0.4840002314814815,131.04,840.04,0.7913155053254537 -1991-09-28,0.0,5.41,0.48167002314814816,285.04,615.13,0.798893081983837 -1991-09-29,5.95,3.365,0.4800005787037037,192.63,560.98,0.812965724349406 -1991-09-30,7.63,3.2700000000000005,0.4760001157407408,204.08,545.92,0.8627612281044962 -1991-10-01,4.62,3.885,0.4760001157407408,207.74,559.35,0.9093091990059934 -1991-10-02,4.1,7.59,0.4719996527777777,203.1,739.09,0.9417845275419217 -1991-10-03,5.46,12.870000000000001,0.4701513888888889,211.54,1032.18,0.9850849655898262 -1991-10-04,3.03,13.870000000000001,0.46799976851851854,237.67,1109.89,0.9894150093946166 -1991-10-05,1.1,11.295,0.463999537037037,277.56,888.44,1.0089002065161736 -1991-10-06,17.81,11.895,0.463999537037037,168.72,1058.96,1.0478706007592875 -1991-10-07,23.21,7.735,0.46,189.08,763.76,1.3098382509491096 -1991-10-08,0.0,3.8550000000000004,0.45920532407407405,268.89,560.0,1.3423135794850378 -1991-10-09,0.29,5.525,0.45599953703703705,321.9,520.0,1.3964391270449183 -1991-10-10,3.79,9.959999999999999,0.45200810185185186,243.54,777.27,1.4289144555808466 -1991-10-11,7.32,9.395,0.452,177.43,866.1,1.4505646746047989 -1991-10-12,14.2,6.2,0.4480001157407407,126.82,771.54,1.547990660212584 -1991-10-13,6.34,3.92,0.4480001157407407,94.94,697.18,1.6995421933802495 -1991-10-14,0.27,3.62,0.4440001157407408,172.08,643.03,1.6995421933802495 -1991-10-15,0.18,2.7299999999999995,0.44166932870370373,282.97,479.79,1.7211924124042017 -1991-10-16,11.19,5.64,0.4400003472222222,195.05,624.06,1.8186183980119868 -1991-10-17,5.78,5.74,0.43611064814814815,236.65,560.1,1.9052192741077956 -1991-10-18,3.84,7.15,0.43600011574074077,212.63,657.59,1.9376946026437238 -1991-10-19,3.46,5.720000000000001,0.43200000000000005,148.79,705.18,1.9701699311796523 -1991-10-20,5.22,1.24,0.43194837962962956,174.43,477.9,2.0026452597155804 -1991-10-21,0.17,-1.775,0.428,248.18,360.66,2.0026452597155804 -1991-10-22,3.35,0.20999999999999996,0.4261517361111111,182.29,436.87,1.9918201502036044 -1991-10-23,3.16,1.9000000000000001,0.42400011574074076,192.14,485.3,1.9809950406916284 -1991-10-24,0.0,5.63,0.42121863425925926,246.5,613.72,1.9593448216676759 -1991-10-25,0.0,11.135000000000002,0.41999976851851856,250.84,846.77,1.9052192741077956 -1991-10-26,5.19,12.655,0.4164640046296296,147.88,1092.44,1.8835690550838433 -1991-10-27,18.29,7.92,0.4159996527777778,141.82,800.97,2.0675959167874374 -1991-10-28,9.89,1.9000000000000001,0.4121109953703704,87.84,594.27,2.424824530682649 -1991-10-29,0.0,-0.55,0.41200046296296294,194.77,437.04,2.4031743116586965 -1991-10-30,0.0,1.205,0.4080084490740741,238.2,427.67,2.3923492021467205 -1991-10-31,0.77,4.720000000000001,0.40794895833333333,196.4,611.67,2.3706989831227685 -1991-11-01,3.96,6.395,0.40399999999999997,76.81,830.45,2.3706989831227685 -1991-11-02,1.62,6.46,0.4037145833333334,118.17,812.15,2.349048764098816 -1991-11-03,0.0,5.655,0.40000023148148145,121.81,767.48,2.2949232165389355 -1991-11-04,0.0,0.9600000000000002,0.39971435185185183,180.77,489.54,2.1974972309311505 -1991-11-05,0.0,-2.1399999999999997,0.3960082175925926,205.8,360.0,2.110896354835342 -1991-11-06,0.0,-2.71,0.39571446759259266,223.19,317.96,2.035120588251509 -1991-11-07,0.37,0.3650000000000002,0.3921108796296296,189.71,449.77,1.9485197121557 -1991-11-08,1.0,-1.9449999999999998,0.3919487268518519,186.05,393.22,1.8835690550838433 -1991-11-09,0.0,-6.565,0.3884644675925926,232.8,239.74,1.7969681789880345 -1991-11-10,0.0,-5.245,0.38799999999999996,239.99,240.0,1.7211924124042017 -1991-11-11,13.71,-3.44,0.3848466435185185,159.42,335.13,1.6670668648443212 -1991-11-12,10.48,-2.6100000000000003,0.3840003472222222,58.66,450.92,1.6887170838682732 -1991-11-13,0.0,-2.6,0.38166932870370374,68.26,455.19,1.656241755332345 -1991-11-14,0.0,-2.195,0.3799997685185186,129.74,438.6,1.6021162077724647 -1991-11-15,0.83,-0.5800000000000001,0.37920590277777777,116.76,489.52,1.547990660212584 -1991-11-16,4.02,0.06499999999999995,0.37611087962962964,92.15,515.85,1.5046902221646794 -1991-11-17,0.0,-1.97,0.3759486111111111,125.08,438.01,1.4397395650928229 -1991-11-18,0.0,-1.865,0.37321898148148147,150.28,428.42,1.4072642365568944 -1991-11-19,0.0,-1.2949999999999995,0.3719998842592593,219.53,321.76,1.36396379850899 -1991-11-20,0.73,4.775,0.37120578703703705,198.5,557.22,1.3531386889970138 -1991-11-21,1.11,5.775,0.3684645833333333,186.14,637.4,1.4938651126527034 -1991-11-22,0.0,0.7550000000000003,0.3680003472222222,198.71,435.14,1.547990660212584 -1991-11-23,0.03,0.635,0.36615196759259255,175.88,446.03,1.5696408792365362 -1991-11-24,7.6,1.825,0.3644642361111111,70.84,600.01,1.6345915363083927 -1991-11-25,7.29,0.2549999999999999,0.36400011574074076,87.59,514.77,1.829443507523963 -1991-11-26,0.16,-3.7600000000000002,0.3621513888888889,93.66,399.8,1.851093726547915 -1991-11-27,0.0,-4.970000000000001,0.3604638888888889,122.47,338.31,1.861918836059891 -1991-11-28,0.0,-3.06,0.3599998842592593,154.42,360.0,1.8727439455718675 -1991-11-29,0.0,-2.4450000000000003,0.35920578703703704,131.74,406.83,1.8402686170359388 -1991-11-30,0.0,-3.735,0.3572189814814815,197.15,240.0,1.8186183980119868 -1991-12-01,0.0,0.08499999999999996,0.35611041666666665,178.73,391.82,1.7753179599640823 -1991-12-02,0.01,-4.4399999999999995,0.3559483796296296,159.75,306.91,1.7103673028922255 -1991-12-03,7.35,-11.010000000000002,0.3546476851851852,154.02,164.87,1.6454166458203692 -1991-12-04,11.83,-10.025,0.35321898148148145,109.59,207.52,1.5912910982604884 -1991-12-05,0.0,-14.59,0.35211030092592593,173.12,131.46,1.4397395650928229 -1991-12-06,0.44,-20.06,0.35199988425925927,167.13,80.0,1.3531386889970138 -1991-12-07,4.82,-21.38,0.35171423611111113,151.61,80.0,1.2881880319251573 -1991-12-08,3.32,-14.995000000000001,0.3506474537037037,158.46,93.09,1.2232373748533005 -1991-12-09,3.6,-6.525,0.34966921296296294,151.31,177.36,1.179936936805396 -1991-12-10,1.38,-8.535,0.3488465277777778,180.16,163.89,1.1474616082694677 -1991-12-11,0.0,-8.99,0.3481105324074074,185.79,178.5,1.1149862797335395 -1991-12-12,0.31,-2.05,0.3480079861111111,160.67,359.98,1.0933360607095872 -1991-12-13,3.1,0.3999999999999999,0.34794849537037037,122.86,417.36,1.0825109511976112 -1991-12-14,5.18,-1.765,0.34771435185185184,117.26,360.47,1.0933360607095872 -1991-12-15,4.47,-7.99,0.3472057870370371,97.57,248.42,1.1149862797335395 -1991-12-16,0.0,-15.945,0.3466476851851852,146.57,119.65,1.1258113892455155 -1991-12-17,0.0,-22.29,0.3466476851851852,173.3,43.66,1.1149862797335395 -1991-12-18,0.02,-20.25,0.3461518518518519,170.22,80.0,1.0933360607095872 -1991-12-19,0.0,-18.314999999999998,0.3461518518518519,152.35,91.31,1.071685841685635 -1991-12-20,0.73,-15.975,0.3456693287037037,168.51,106.17,1.0283854036377307 -1991-12-21,4.42,-11.274999999999999,0.3456693287037037,124.84,164.69,0.9796724108338379 -1991-12-22,2.13,-8.84,0.3461518518518519,133.04,200.0,0.9255468632739575 -1991-12-23,0.43,-6.175,0.3461518518518519,141.91,269.68,0.9017316223476101 -1991-12-24,0.0,-11.09,0.3461518518518519,168.56,158.62,0.8595136952509033 -1991-12-25,0.0,-18.535,0.3466476851851852,116.69,119.74,0.8270383667149749 -1991-12-26,0.0,-19.765,0.3472057870370371,186.67,79.89,0.8172957681541964 -1991-12-27,0.19,-14.62,0.34771435185185184,152.25,124.29,0.8010581038862323 -1991-12-28,0.0,-10.04,0.34794849537037037,125.24,200.0,0.7794078848622801 -1991-12-29,0.0,-6.345,0.34800000000000003,120.9,280.23,0.7469325563263517 -1991-12-30,0.0,-10.075,0.3480079861111111,161.7,178.66,0.7252823373023994 -1991-12-31,0.0,-15.105,0.3484641203703704,186.75,102.55,0.6928070087664712 -1992-01-01,0.0,-11.790000000000001,0.34921886574074074,181.16,134.72,0.6711567897425189 -1992-01-02,0.0,-12.35,0.35015162037037034,193.19,120.0,0.6495065707185667 -1992-01-03,0.0,-11.71,0.35120578703703703,191.86,120.0,0.6278563516946144 -1992-01-04,1.57,-8.665000000000001,0.3519482638888889,181.99,160.0,0.6170312421826384 -1992-01-05,21.57,-3.595,0.35200787037037035,113.66,316.74,0.7361074468143756 -1992-01-06,18.34,0.39,0.35284641203703704,27.95,586.47,0.876833870470065 -1992-01-07,1.51,-1.7650000000000001,0.3541518518518519,70.45,460.67,1.0283854036377307 -1992-01-08,0.0,-8.335,0.35571446759259256,119.39,246.45,1.0933360607095872 -1992-01-09,1.3,-12.64,0.35600000000000004,139.73,160.0,1.158286717781444 -1992-01-10,2.6,-9.38,0.3564643518518519,110.3,223.86,1.179936936805396 -1992-01-11,0.0,-14.510000000000002,0.35815185185185183,164.78,121.26,1.1907620463173723 -1992-01-12,0.0,-17.369999999999997,0.3599482638888889,165.66,112.76,1.16911182729342 -1992-01-13,1.19,-11.399999999999999,0.36000787037037035,174.55,160.61,1.1474616082694677 -1992-01-14,7.9,-2.98,0.36121863425925926,97.29,360.15,1.1149862797335395 -1992-01-15,11.05,-9.385,0.3637142361111111,155.97,164.41,1.0933360607095872 -1992-01-16,0.0,-22.16,0.36400011574074076,159.13,79.48,1.071685841685635 -1992-01-17,0.0,-24.439999999999998,0.36521898148148146,164.55,43.78,1.1149862797335395 -1992-01-18,0.0,-21.93,0.36771435185185186,169.63,80.0,1.1366364987574917 -1992-01-19,0.0,-22.1,0.3680083333333333,140.56,80.0,1.0825109511976112 -1992-01-20,0.0,-23.41,0.3696696759259259,196.46,43.55,1.0283854036377307 -1992-01-21,0.0,-22.165,0.3719483796296296,223.73,40.14,0.9850849655898262 -1992-01-22,0.0,-21.125,0.37211041666666667,192.6,80.0,0.9201343085179694 -1992-01-23,10.81,-13.185,0.3746479166666667,229.16,80.0,0.9309594180299455 -1992-01-24,19.36,-3.26,0.3760002314814815,187.59,242.22,0.9526096370538978 -1992-01-25,0.0,-18.11,0.3772188657407407,219.17,81.16,0.9526096370538978 -1992-01-26,0.0,-22.314999999999998,0.3799997685185186,185.42,80.0,0.9526096370538978 -1992-01-27,0.0,-22.58,0.3804640046296296,251.14,40.0,0.9417845275419217 -1992-01-28,0.0,-19.884999999999998,0.383714699074074,268.35,46.49,0.9309594180299455 -1992-01-29,0.0,-8.89,0.38400833333333334,212.1,201.09,0.8876589799820411 -1992-01-30,5.54,-5.315,0.3866476851851852,76.65,352.39,0.8660087609580888 -1992-01-31,8.84,-7.77,0.38799999999999996,89.48,280.65,0.8443585419341366 -1992-02-01,4.36,-11.73,0.3901519675925926,94.36,199.54,0.8335334324221606 -1992-02-02,1.78,-12.105,0.39200034722222227,143.95,195.02,0.8227083229101846 -1992-02-03,0.0,-11.195,0.3936696759259259,188.57,199.78,0.8010581038862323 -1992-02-04,0.0,-14.18,0.39600023148148145,271.81,126.19,0.7794078848622801 -1992-02-05,2.54,-13.23,0.3972188657407407,195.18,156.59,0.7577576658383279 -1992-02-06,0.0,-15.780000000000001,0.40000023148148145,254.31,118.43,0.7469325563263517 -1992-02-07,0.0,-17.47,0.4012189814814815,312.14,80.0,0.7361074468143756 -1992-02-08,0.08,-14.524999999999999,0.40399999999999997,275.41,120.0,0.7144572277904233 -1992-02-09,2.52,-12.635000000000002,0.40521898148148144,210.61,160.0,0.6928070087664712 -1992-02-10,0.0,-17.39,0.4080003472222223,313.12,80.0,0.6711567897425189 -1992-02-11,1.23,-15.015,0.40966990740740744,275.65,109.51,0.6603316802305428 -1992-02-12,2.24,-18.685000000000002,0.41200046296296294,301.12,79.76,0.6495065707185667 -1992-02-13,0.0,-20.325000000000003,0.41464768518518513,332.46,40.0,0.6386814612065905 -1992-02-14,0.0,-12.18,0.4159996527777778,309.76,135.34,0.6332689064506025 -1992-02-15,3.27,-14.58,0.419205324074074,316.67,80.0,0.6278563516946144 -1992-02-16,13.74,-9.665,0.41999976851851856,187.99,201.63,0.6170312421826384 -1992-02-17,2.97,-10.15,0.42400011574074076,282.91,160.0,0.6062061326706623 -1992-02-18,0.63,-6.470000000000001,0.42400011574074076,292.13,229.39,0.6007935779146741 -1992-02-19,8.46,-4.6049999999999995,0.428,180.55,312.31,0.5953810231586861 -1992-02-20,5.49,-6.135,0.42846388888888887,160.66,289.25,0.58455591364671 -1992-02-21,0.01,-14.165,0.43200000000000005,350.71,120.0,0.5737308041347339 -1992-02-22,0.0,-17.325,0.4336695601851852,396.36,80.0,0.5629056946227577 -1992-02-23,0.7,-12.955,0.43600011574074077,351.06,121.03,0.5520805851107816 -1992-02-24,0.0,-17.04,0.4399488425925926,409.61,69.94,0.5412554755988056 -1992-02-25,1.28,-16.43,0.4400003472222222,377.05,80.0,0.5304303660868295 -1992-02-26,2.56,-6.92,0.4440001157407408,219.42,264.51,0.5196052565748533 -1992-02-27,0.07,-7.05,0.4440081018518519,338.64,223.0,0.5087801470628772 -1992-02-28,4.03,-12.63,0.4480001157407407,300.45,120.0,0.5033675923068892 -1992-02-29,5.17,-16.060000000000002,0.4501516203703704,206.57,119.59,0.4979550375509011 -1992-03-01,0.0,-22.28,0.452,377.74,40.12,0.4925424827949131 -1992-03-02,0.0,-18.775,0.45599953703703705,402.18,80.0,0.487129928038925 -1992-03-03,0.0,-16.23,0.45599953703703705,454.55,57.85,0.487129928038925 -1992-03-04,0.0,-12.685,0.46,449.86,90.98,0.487129928038925 -1992-03-05,0.0,-5.855,0.4604638888888889,401.46,208.56,0.487129928038925 -1992-03-06,0.01,-6.57,0.463999537037037,418.83,187.98,0.4763048185269489 -1992-03-07,8.13,-7.235,0.46799976851851854,321.18,187.9,0.487129928038925 -1992-03-08,10.63,-2.605,0.46799976851851854,153.95,397.2,0.5196052565748533 -1992-03-09,0.0,-5.63,0.4719996527777777,416.98,212.1,0.5304303660868295 -1992-03-10,0.69,-1.3849999999999998,0.4719996527777777,385.05,308.37,0.5304303660868295 -1992-03-11,4.93,2.6799999999999997,0.4760001157407408,176.69,566.84,0.5520805851107816 -1992-03-12,5.68,-2.125,0.4800005787037037,224.47,363.44,0.5737308041347339 -1992-03-13,1.46,-13.05,0.4800005787037037,329.39,148.6,0.6007935779146741 -1992-03-14,0.0,-16.615000000000002,0.4840002314814815,268.65,119.98,0.6386814612065905 -1992-03-15,0.0,-15.219999999999999,0.4840002314814815,353.1,120.0,0.6711567897425189 -1992-03-16,0.0,-13.344999999999999,0.48800034722222224,415.14,123.22,0.7577576658383279 -1992-03-17,0.16,-9.405,0.4919994212962963,431.49,171.52,0.8660087609580888 -1992-03-18,0.0,-10.48,0.4919994212962963,432.38,159.93,0.9634347465658739 -1992-03-19,0.0,-12.805,0.4959997685185185,465.19,120.0,1.071685841685635 -1992-03-20,0.0,-11.649999999999999,0.4959997685185185,508.31,120.0,1.1149862797335395 -1992-03-21,0.12,-9.97,0.4999997685185186,446.51,160.0,1.1258113892455155 -1992-03-22,0.0,-11.795,0.503999537037037,470.68,129.74,1.1366364987574917 -1992-03-23,0.0,-10.969999999999999,0.503999537037037,499.06,120.0,1.1149862797335395 -1992-03-24,0.0,-9.51,0.5079996527777778,485.63,160.0,1.0727683526368328 -1992-03-25,0.0,-9.195,0.5079996527777778,531.22,134.97,1.032715447442521 -1992-03-26,0.39,-2.47,0.511999537037037,456.54,294.16,0.9937450531994071 -1992-03-27,5.01,3.135,0.5159998842592592,204.13,585.47,0.97425985607785 -1992-03-28,9.13,3.6,0.5159998842592592,126.9,676.99,1.0121477393697664 -1992-03-29,9.19,1.05,0.520000462962963,142.88,558.74,1.0619432431248563 -1992-03-30,0.88,-1.35,0.520000462962963,260.86,439.26,1.1149862797335395 -1992-03-31,0.0,-1.56,0.5240002314814816,445.99,342.9,1.16911182729342 -1992-04-01,0.0,1.335,0.5279998842592593,420.18,445.73,1.277362922413181 -1992-04-02,5.23,2.5700000000000003,0.5279998842592593,232.2,570.54,1.3856140175329423 -1992-04-03,7.67,-0.39,0.5319998842592593,117.24,531.2,1.5263404411886317 -1992-04-04,5.6,0.2300000000000002,0.5319998842592593,163.76,528.45,1.6887170838682732 -1992-04-05,2.36,0.775,0.5359994212962963,223.6,541.84,1.851093726547915 -1992-04-06,0.0,1.755,0.5395353009259259,260.14,577.46,2.0784210262994134 -1992-04-07,1.1,-0.1299999999999999,0.54,439.55,399.98,2.219147449955103 -1992-04-08,5.52,0.31999999999999984,0.5439997685185185,297.43,458.02,2.3923492021467205 -1992-04-09,0.1,-0.2549999999999999,0.5439997685185185,533.6,364.82,2.554725844826362 -1992-04-10,0.0,1.3599999999999999,0.5479999999999999,515.16,437.92,2.72792759701798 -1992-04-11,0.47,-3.19,0.5498481481481481,471.56,318.96,2.7928782540898367 -1992-04-12,3.43,-2.895,0.5520004629629629,328.55,356.69,2.8470038016497177 -1992-04-13,0.0,-6.455,0.5559922453703704,561.48,225.39,2.825353582625765 -1992-04-14,0.0,-6.25,0.5560002314814815,481.21,260.05,2.7712280350658847 -1992-04-15,0.0,-3.3699999999999997,0.56,501.13,311.98,2.6954522684820517 -1992-04-16,0.0,-1.7299999999999995,0.5600517361111111,600.99,296.23,2.630501611410195 -1992-04-17,0.0,0.3150000000000004,0.5639996527777777,590.61,356.05,2.6088513923862426 -1992-04-18,0.0,2.495,0.5663305555555556,590.41,423.25,2.641326720922171 -1992-04-19,0.0,4.765000000000001,0.5679997685185185,628.64,418.89,2.7928782540898367 -1992-04-20,0.0,7.75,0.5715351851851852,596.17,579.53,3.1392817584730723 -1992-04-21,4.69,11.225,0.5719994212962963,465.73,771.07,3.7779632196796626 -1992-04-22,13.28,8.19,0.5760005787037037,409.54,686.29,5.055326142092844 -1992-04-23,14.5,1.6949999999999998,0.5760005787037037,139.83,613.89,6.96054541620064 -1992-04-24,6.79,1.455,0.5800003472222222,182.45,591.72,7.761603520086872 -1992-04-25,1.28,1.3649999999999998,0.5807946759259259,370.96,539.2,7.93480527227849 -1992-04-26,0.0,0.2450000000000001,0.5840005787037037,595.41,387.48,7.815729067646752 -1992-04-27,0.0,2.465,0.5853530092592593,631.46,402.97,7.631702205943158 -1992-04-28,0.0,4.365,0.5880002314814815,627.31,451.67,7.45850045375154 -1992-04-29,0.0,6.34,0.5903311342592593,636.99,481.06,7.306948920583875 -1992-04-30,0.56,7.9,0.5920008101851852,601.64,546.25,7.241998263512018 -1992-05-01,1.67,7.1049999999999995,0.5943310185185184,489.52,651.29,7.252823373023994 -1992-05-02,1.47,4.445,0.5959997685185184,500.61,558.93,7.198697825464113 -1992-05-03,15.74,3.715,0.5987809027777777,261.66,625.13,7.274473592047947 -1992-05-04,3.74,2.725,0.5999998842592592,307.03,576.73,7.371899577655732 -1992-05-05,0.65,1.7999999999999998,0.6027810185185185,505.99,453.81,7.144572277904234 -1992-05-06,0.0,2.795,0.6039996527777778,499.99,513.32,6.830644102056926 -1992-05-07,0.0,3.7450000000000006,0.6063304398148148,628.56,408.36,6.48424059767369 -1992-05-08,0.0,10.185,0.6079995370370371,637.22,566.8,6.18113753133836 -1992-05-09,0.01,13.345,0.6098476851851852,616.21,728.9,5.910509793538957 -1992-05-10,0.97,12.655,0.6120002314814815,548.63,797.18,5.639882055739554 -1992-05-11,0.0,10.015,0.6133524305555556,648.99,501.16,5.369254317940151 -1992-05-12,0.0,14.31,0.6159914351851852,621.79,712.43,5.098626580140748 -1992-05-13,3.03,17.555,0.6162851851851852,523.68,1032.64,4.827998842341346 -1992-05-14,12.73,10.84,0.6195356481481481,382.11,817.42,4.633146871125776 -1992-05-15,0.0,5.325,0.6199998842592592,574.6,496.08,4.459945118934158 -1992-05-16,0.0,9.975000000000001,0.6227818287037037,593.48,615.54,4.23261781918266 -1992-05-17,0.0,15.049999999999999,0.6240006944444445,561.28,877.92,4.016115628943138 -1992-05-18,0.95,13.87,0.6253526620370371,469.07,990.2,3.7563130006557106 -1992-05-19,0.0,7.864999999999999,0.6278895833333333,633.87,439.26,3.5398108104161885 -1992-05-20,0.0,13.63,0.6280518518518519,618.0,636.19,3.3341337296886424 -1992-05-21,0.0,19.57,0.6303303240740741,593.39,938.14,3.1176315394491203 -1992-05-22,0.0,22.63,0.6319916666666667,558.42,1225.02,2.9336046777455267 -1992-05-23,0.0,21.17,0.6322856481481481,580.47,1017.97,2.7495778160419326 -1992-05-24,2.2,11.215,0.6347809027777778,498.86,649.87,2.543900735314386 -1992-05-25,0.0,5.2299999999999995,0.6360001157407408,480.29,534.56,2.3923492021467205 -1992-05-26,0.0,6.69,0.6362856481481481,526.98,521.61,2.240797668979055 -1992-05-27,0.0,8.435,0.6387810185185185,493.4,627.82,2.1000712453233654 -1992-05-28,1.58,10.6,0.6399917824074074,435.66,810.62,1.9701699311796523 -1992-05-29,0.0,13.5,0.6400512731481481,505.41,814.34,1.8402686170359388 -1992-05-30,0.0,14.899999999999999,0.6418483796296296,584.43,663.89,1.7211924124042017 -1992-05-31,0.0,16.41,0.6435354166666667,474.71,1012.05,1.6129413172844407 -1992-06-01,0.98,15.125,0.6439998842592592,305.1,1286.08,1.5155153316766559 -1992-06-02,5.08,14.165000000000001,0.6442856481481481,278.78,1136.54,1.4722148936287511 -1992-06-03,0.58,12.165000000000001,0.6458482638888889,484.7,764.58,1.3856140175329423 -1992-06-04,0.56,12.14,0.6471538194444444,364.5,958.21,1.2881880319251573 -1992-06-05,0.0,8.89,0.6479927083333333,492.32,606.18,1.2232373748533005 -1992-06-06,6.37,12.709999999999999,0.6480521990740741,309.53,1027.44,1.2124122653413245 -1992-06-07,11.34,16.450000000000003,0.6487947916666666,198.98,1437.44,1.3964391270449183 -1992-06-08,2.04,20.575,0.6498487268518519,296.45,1749.65,1.2990131414371333 -1992-06-09,1.97,17.185,0.6507814814814814,332.45,1309.92,1.2448875938772528 -1992-06-10,0.73,10.805,0.6515357638888889,391.96,829.81,1.2015871558293483 -1992-06-11,0.0,11.865,0.6519921296296297,448.64,784.3,1.158286717781444 -1992-06-12,1.18,13.870000000000001,0.6520001157407407,438.02,838.75,1.1149862797335395 -1992-06-13,5.9,16.725,0.6520517361111111,336.59,1123.98,1.0825109511976112 -1992-06-14,4.6,15.434999999999999,0.6522856481481482,312.05,1133.31,1.0316329364913235 -1992-06-15,0.0,11.655000000000001,0.6527943287037037,422.89,832.23,0.9547746589562931 -1992-06-16,0.0,10.145,0.653352662037037,504.75,589.56,0.8963190675916219 -1992-06-17,0.0,14.51,0.653848611111111,510.57,723.37,0.8497710966901247 -1992-06-18,0.0,19.2,0.653848611111111,470.53,1099.38,0.8227083229101846 -1992-06-19,0.0,19.84,0.653848611111111,451.78,1211.38,0.7729128191550944 -1992-06-20,2.92,20.564999999999998,0.6543310185185185,336.96,1592.71,0.7415200015703636 -1992-06-21,9.51,19.950000000000003,0.6543310185185185,182.54,1837.2,0.7566751548871301 -1992-06-22,24.78,16.1,0.653848611111111,149.44,1527.61,0.8010581038862323 -1992-06-23,33.17,11.955,0.653848611111111,113.44,1241.59,1.2015871558293483 -1992-06-24,6.09,12.84,0.653352662037037,210.14,1166.29,1.3747889080209663 -1992-06-25,8.99,14.040000000000001,0.653352662037037,200.53,1278.07,1.5912910982604884 -1992-06-26,8.33,13.065,0.6527943287037037,184.32,1234.15,1.8186183980119868 -1992-06-27,0.41,14.015,0.6522856481481482,434.54,1027.6,1.9268694931317478 -1992-06-28,1.09,15.8,0.6520517361111111,432.41,1115.3,1.9701699311796523 -1992-06-29,2.01,15.615,0.6519921296296297,467.11,1039.38,1.9809950406916284 -1992-06-30,5.93,16.9,0.6518894675925926,293.26,1347.85,2.045945697763485 -1992-07-01,5.81,14.809999999999999,0.6511538194444445,287.58,1201.18,2.024295478739533 -1992-07-02,1.52,12.05,0.6503311342592593,402.25,943.8,1.9160443836197718 -1992-07-03,0.0,11.0,0.6493528935185184,450.59,842.44,1.8186183980119868 -1992-07-04,4.02,12.6,0.6482863425925927,288.87,1108.9,1.764492850452106 -1992-07-05,5.7,11.715,0.6480008101851852,168.9,1163.51,1.7753179599640823 -1992-07-06,6.91,14.14,0.647890162037037,186.84,1330.47,1.8402686170359388 -1992-07-07,9.31,14.0,0.64678125,261.09,1205.96,1.9485197121557 -1992-07-08,1.38,14.704999999999998,0.645352199074074,434.88,1073.29,1.8835690550838433 -1992-07-09,12.12,15.82,0.6440515046296297,274.67,1316.87,2.035120588251509 -1992-07-10,13.58,15.365,0.6438894675925926,192.78,1420.11,2.2840981070269595 -1992-07-11,3.1,16.294999999999998,0.6427809027777778,344.94,1302.25,2.2949232165389355 -1992-07-12,5.76,13.845,0.6407940972222222,396.35,929.16,2.316573435562888 -1992-07-13,12.74,15.510000000000002,0.6399997685185186,293.12,1273.49,2.4031743116586965 -1992-07-14,2.22,13.799999999999999,0.6395354166666667,414.26,1081.99,2.4897751877545056 -1992-07-15,1.47,15.24,0.6378482638888888,399.62,1203.31,2.4681249687305535 -1992-07-16,0.0,12.544999999999998,0.6360001157407408,528.26,772.74,2.3923492021467205 -1992-07-17,5.25,14.35,0.6355359953703703,449.79,993.52,2.316573435562888 -1992-07-18,11.67,15.615000000000002,0.6338483796296296,346.13,1164.65,2.3706989831227685 -1992-07-19,1.26,16.485,0.6319996527777777,433.48,1253.08,2.424824530682649 -1992-07-20,2.05,17.035,0.6315355324074073,459.53,1131.77,2.2949232165389355 -1992-07-21,8.33,16.78,0.6287943287037038,336.15,1267.56,2.2840981070269595 -1992-07-22,0.0,12.149999999999999,0.628,497.16,828.5,2.229972559467079 -1992-07-23,0.0,14.805,0.6267813657407407,482.84,1001.91,2.154196792883246 -1992-07-24,0.0,16.63,0.624052199074074,498.04,1053.31,2.024295478739533 -1992-07-25,0.0,18.44,0.6238902777777778,468.23,1269.98,1.8943941645958196 -1992-07-26,15.88,17.94,0.6207944444444444,299.56,1444.75,1.8077932885000105 -1992-07-27,19.88,17.205000000000002,0.6199998842592592,155.91,1649.52,2.0026452597155804 -1992-07-28,16.15,17.015,0.6183303240740741,253.33,1431.91,2.1000712453233654 -1992-07-29,1.76,15.995000000000001,0.615999537037037,388.81,1197.8,2.0026452597155804 -1992-07-30,0.0,15.43,0.6151532407407407,409.96,1194.23,1.9052192741077956 -1992-07-31,5.85,13.844999999999999,0.6120002314814815,407.48,995.61,1.8077932885000105 -1992-08-01,25.48,14.004999999999999,0.6115356481481482,245.88,1208.74,2.0784210262994134 -1992-08-02,5.59,13.235,0.6080510416666667,274.84,1098.91,2.251622778491031 -1992-08-03,4.45,17.9,0.6078891203703704,260.68,1489.86,2.349048764098816 -1992-08-04,11.23,17.310000000000002,0.6042853009259259,242.41,1465.83,2.3706989831227685 -1992-08-05,10.23,16.68,0.6039916666666666,188.36,1530.1,2.72792759701798 -1992-08-06,0.0,16.015,0.6002854166666667,380.79,1274.31,2.6521518304341467 -1992-08-07,0.0,16.85,0.5999998842592592,448.01,1185.86,2.5980262828742666 -1992-08-08,0.0,17.945,0.5962851851851851,456.6,1223.06,2.5006002972664816 -1992-08-09,0.0,18.73,0.5959997685185184,369.18,1477.17,2.3923492021467205 -1992-08-10,0.0,18.74,0.5920523148148148,313.26,1608.26,2.2840981070269595 -1992-08-11,0.0,19.22,0.591992824074074,329.75,1632.95,2.154196792883246 -1992-08-12,0.0,13.37,0.5880002314814815,456.87,898.2,2.013470369227557 -1992-08-13,0.0,11.51,0.5879922453703703,440.53,827.2,1.8835690550838433 -1992-08-14,0.0,13.835,0.5840005787037037,409.76,1016.93,1.764492850452106 -1992-08-15,0.0,14.75,0.5835359953703704,397.68,1112.91,1.656241755332345 -1992-08-16,0.21,14.815,0.5800003472222222,387.64,1125.49,1.5696408792365362 -1992-08-17,0.0,16.82,0.5787818287037036,372.63,1316.93,1.4830400031407271 -1992-08-18,0.1,17.165,0.5760005787037037,302.0,1459.24,1.3964391270449183 -1992-08-19,7.31,17.93,0.5738478009259259,226.51,1555.75,1.3423135794850378 -1992-08-20,3.51,15.47,0.5719994212962963,280.51,1271.34,1.266537812901205 -1992-08-21,0.0,15.524999999999999,0.5680513888888888,322.06,1314.92,1.179936936805396 -1992-08-22,0.0,17.33,0.5679997685185185,374.05,1366.27,1.1041611702215632 -1992-08-23,0.0,15.899999999999999,0.5639996527777777,455.68,1027.75,1.0511181336128805 -1992-08-24,0.0,19.515,0.5639916666666667,428.93,1372.73,0.9959100751018022 -1992-08-25,0.0,22.18,0.56,372.01,1797.76,0.9374544837371314 -1992-08-26,6.79,21.115000000000002,0.558330324074074,319.98,1632.01,0.8833289361772506 -1992-08-27,8.31,19.865000000000002,0.5560002314814815,290.04,1674.37,0.848688585738927 -1992-08-28,11.26,16.755000000000003,0.5520519675925926,202.41,1466.01,0.8400284981293462 -1992-08-29,5.67,15.645,0.5520004629629629,148.51,1478.63,0.8562661623973103 -1992-08-30,6.6,15.465,0.5479999999999999,222.02,1338.11,0.8400284981293462 -1992-08-31,5.58,15.915000000000001,0.5479921296296296,209.98,1391.58,0.837863476226951 -1992-09-01,3.22,12.565000000000001,0.5439997685185185,269.44,1074.99,0.8064706586422203 -1992-09-02,0.0,11.405,0.540794212962963,325.06,974.11,0.7631702205943158 -1992-09-03,1.02,10.185,0.54,323.21,901.27,0.7371899577655732 -1992-09-04,2.22,11.06,0.5359994212962963,213.46,1073.11,0.7122922058880281 -1992-09-05,0.0,13.325,0.5359994212962963,349.03,1070.38,0.6798168773520998 -1992-09-06,0.0,15.455,0.5319998842592593,407.35,1069.99,0.6581666583281476 -1992-09-07,0.0,16.04,0.5298482638888888,359.32,1246.81,0.6365164393041954 -1992-09-08,1.59,18.294999999999998,0.5279998842592593,237.06,1656.41,0.6148662202802432 -1992-09-09,1.91,18.195,0.5240002314814816,278.79,1554.07,0.5942985122074885 -1992-09-10,9.08,15.225,0.5240002314814816,335.71,950.65,0.5748133150859315 -1992-09-11,11.77,15.42,0.520000462962963,279.86,1136.99,0.6365164393041954 -1992-09-12,0.0,9.46,0.5183310185185186,400.45,719.91,0.5932160012562909 -1992-09-13,0.0,10.190000000000001,0.5159998842592592,409.56,716.05,0.5639882055739553 -1992-09-14,0.0,14.695,0.511999537037037,394.64,969.73,0.540172964647608 -1992-09-15,0.0,15.77,0.511999537037037,381.15,1083.36,0.5120276799164701 -1992-09-16,3.54,16.814999999999998,0.5079996527777778,284.06,1313.08,0.48279988423413456 -1992-09-17,4.51,18.16,0.5067805555555556,243.21,1406.9,0.4752223075757513 -1992-09-18,3.82,20.28,0.503999537037037,169.34,1871.37,0.4990375485020987 -1992-09-19,8.84,16.52,0.4999997685185186,188.8,1428.36,0.5217702784772486 -1992-09-20,0.0,8.875,0.4999997685185186,379.54,640.0,0.46980975281976317 -1992-09-21,0.5,10.05,0.4959997685185185,357.45,724.44,0.4394994461862301 -1992-09-22,8.13,11.935,0.49366840277777774,242.38,927.96,0.4535720885517991 -1992-09-23,14.05,9.405,0.4919994212962963,224.89,824.96,0.5520805851107816 -1992-09-24,0.0,4.62,0.48800034722222224,360.28,513.35,0.5271828332332367 -1992-09-25,0.0,7.990000000000001,0.48800034722222224,382.66,562.49,0.4947075046973083 -1992-09-26,0.0,11.225,0.4840002314814815,380.65,665.64,0.4730572856733561 -1992-09-27,0.85,11.955000000000002,0.48167002314814816,320.18,851.88,0.4579021323565895 -1992-09-28,0.62,13.754999999999999,0.4800005787037037,205.9,1232.09,0.4546545995029967 -1992-09-29,0.03,9.15,0.4760001157407408,298.06,762.95,0.43192186952784684 -1992-09-30,0.47,4.33,0.4760001157407408,239.59,601.51,0.39295147528473284 -1992-10-01,0.0,1.0899999999999999,0.4719996527777777,156.1,543.61,0.40269407384551137 -1992-10-02,2.77,2.945,0.4701513888888889,212.73,534.4,0.39295147528473284 -1992-10-03,3.59,6.825,0.46799976851851854,194.24,695.16,0.38753892052874483 -1992-10-04,0.0,3.3099999999999996,0.463999537037037,285.52,501.85,0.3745487891143735 -1992-10-05,0.0,2.965,0.463999537037037,275.39,491.36,0.3593936357976069 -1992-10-06,0.0,3.7600000000000002,0.46,273.64,528.66,0.3464035043832356 -1992-10-07,0.0,5.78,0.45920532407407405,314.59,523.31,0.33774341677365466 -1992-10-08,0.0,7.750000000000001,0.45599953703703705,317.3,580.72,0.33124835106646905 -1992-10-09,3.96,9.13,0.45200810185185186,285.55,628.44,0.325835796310481 -1992-10-10,11.68,10.895000000000001,0.452,177.16,900.38,0.4059416066991042 -1992-10-11,3.69,10.575,0.4480001157407407,183.4,898.5,0.41351918335748744 -1992-10-12,2.13,11.24,0.4480001157407407,169.93,1023.71,0.39295147528473284 -1992-10-13,1.87,8.215,0.4440001157407408,200.63,794.48,0.38753892052874483 -1992-10-14,0.76,3.9450000000000003,0.44166932870370373,234.57,560.0,0.3745487891143735 -1992-10-15,0.0,3.0250000000000004,0.4400003472222222,269.72,475.74,0.3637236796023974 -1992-10-16,0.05,3.0650000000000004,0.43611064814814815,271.7,453.53,0.35722861389521166 -1992-10-17,3.3,3.7399999999999998,0.43600011574074077,171.45,547.37,0.3604761467488045 -1992-10-18,0.0,0.835,0.43200000000000005,229.12,440.0,0.3496510372368284 -1992-10-19,0.0,0.9800000000000002,0.43194837962962956,177.05,486.86,0.33774341677365466 -1992-10-20,0.04,1.735,0.428,187.97,511.24,0.3290833291640738 -1992-10-21,4.63,2.015,0.4261517361111111,154.18,530.99,0.33341337296886425 -1992-10-22,6.03,3.64,0.42400011574074076,82.9,666.78,0.3637236796023974 -1992-10-23,1.72,4.515,0.42121863425925926,124.95,688.61,0.37021874530958304 -1992-10-24,5.37,6.324999999999999,0.41999976851851856,105.57,781.47,0.39403398623593044 -1992-10-25,14.87,4.24,0.4164640046296296,98.8,683.16,0.42109676001587076 -1992-10-26,26.24,3.835,0.4159996527777778,86.65,683.71,0.65708414737695 -1992-10-27,10.22,2.23,0.4121109953703704,74.76,626.32,0.9147217537619815 -1992-10-28,0.0,0.9249999999999999,0.41200046296296294,113.94,559.41,0.9634347465658739 -1992-10-29,0.0,1.095,0.4080084490740741,163.02,523.28,1.0218903379305448 -1992-10-30,0.0,-1.63,0.40794895833333333,204.35,383.38,1.0684383088320422 -1992-10-31,0.0,-3.715,0.40399999999999997,218.2,317.35,1.0933360607095872 -1992-11-01,0.0,-3.8600000000000003,0.4037145833333334,191.38,333.02,1.1041611702215632 -1992-11-02,0.0,-2.905,0.40000023148148145,169.22,374.7,1.1041611702215632 -1992-11-03,0.26,-3.045,0.39971435185185183,177.98,357.02,1.1149862797335395 -1992-11-04,4.98,0.45500000000000007,0.3960082175925926,133.15,478.62,1.1258113892455155 -1992-11-05,2.01,4.7,0.39571446759259266,140.27,692.93,1.158286717781444 -1992-11-06,3.61,1.72,0.3921108796296296,101.8,569.1,1.158286717781444 -1992-11-07,0.0,-2.9749999999999996,0.3919487268518519,160.58,382.57,1.1474616082694677 -1992-11-08,0.0,-7.17,0.3884644675925926,210.15,240.0,1.1149862797335395 -1992-11-09,0.0,-6.78,0.38799999999999996,202.01,247.55,1.0933360607095872 -1992-11-10,0.0,-7.1450000000000005,0.3848466435185185,221.53,216.84,1.057613199320066 -1992-11-11,4.51,-3.5900000000000003,0.3840003472222222,171.45,307.42,1.0586957102712637 -1992-11-12,7.61,1.69,0.38166932870370374,151.17,496.5,1.040293024100904 -1992-11-13,10.99,5.115,0.3799997685185186,161.68,592.44,1.179936936805396 -1992-11-14,0.24,3.025,0.37920590277777777,167.07,567.0,1.2124122653413245 -1992-11-15,0.0,-2.2300000000000004,0.37611087962962964,176.05,368.44,1.2015871558293483 -1992-11-16,0.16,-4.615,0.3759486111111111,159.97,331.17,1.1907620463173723 -1992-11-17,1.1,-7.404999999999999,0.37321898148148147,196.71,240.0,1.1907620463173723 -1992-11-18,0.0,-8.75,0.3719998842592593,201.46,215.43,1.158286717781444 -1992-11-19,0.0,-11.925,0.37120578703703705,219.06,160.0,1.1258113892455155 -1992-11-20,0.0,-10.030000000000001,0.3684645833333333,221.93,160.0,1.0933360607095872 -1992-11-21,1.39,-5.705,0.3680003472222222,203.48,220.25,1.0792634183440182 -1992-11-22,3.03,1.96,0.36615196759259255,131.14,495.35,1.0814284402464136 -1992-11-23,0.0,2.0300000000000002,0.3644642361111111,127.98,561.54,1.0565306883688685 -1992-11-24,0.0,-1.3399999999999999,0.36400011574074076,58.2,502.57,1.0392105131497067 -1992-11-25,1.25,-1.23,0.3621513888888889,57.55,508.45,1.0262203817353355 -1992-11-26,4.79,0.29500000000000004,0.3604638888888889,60.58,542.79,1.0143127612721616 -1992-11-27,4.37,2.065,0.3599998842592593,82.51,578.04,1.04678808980809 -1992-11-28,0.18,-0.4249999999999998,0.35920578703703704,150.61,425.1,1.043540556954497 -1992-11-29,0.0,0.16999999999999993,0.3572189814814815,126.37,478.16,1.0294679145889283 -1992-11-30,0.02,-0.7949999999999999,0.35611041666666665,103.49,467.45,1.0143127612721616 -1992-12-01,0.26,-0.97,0.3559483796296296,71.47,501.76,1.0034876517601854 -1992-12-02,0.02,-0.9299999999999999,0.3546476851851852,85.04,479.94,0.9937450531994071 -1992-12-03,1.97,-0.5499999999999999,0.35321898148148145,43.8,546.88,0.9807549217850358 -1992-12-04,0.81,-2.795,0.35211030092592593,58.2,448.17,0.9688473013218619 -1992-12-05,0.01,-7.455,0.35199988425925927,135.66,258.63,0.9331244399323408 -1992-12-06,0.0,-9.899999999999999,0.35171423611111113,135.01,207.27,0.8854939580796459 -1992-12-07,0.0,-8.665,0.3506474537037037,119.18,240.62,0.8616787171532985 -1992-12-08,0.0,-10.91,0.34966921296296294,133.96,200.0,0.8194607900565917 -1992-12-09,0.0,-11.985,0.3488465277777778,130.5,179.53,0.804305636739825 -1992-12-10,0.0,-13.329999999999998,0.3481105324074074,170.48,120.0,0.7664177534479087 -1992-12-11,0.0,-11.645,0.3480079861111111,161.26,159.87,0.7306948920583874 -1992-12-12,0.0,-7.11,0.34794849537037037,116.51,279.99,0.7241998263512018 -1992-12-13,0.0,-5.71,0.34771435185185184,131.51,292.62,0.7057971401808425 -1992-12-14,0.0,-6.93,0.3472057870370371,144.57,253.48,0.6938895197176687 -1992-12-15,0.0,-4.69,0.3466476851851852,139.42,309.7,0.6830644102056928 -1992-12-16,0.24,-0.6749999999999998,0.3466476851851852,136.16,431.37,0.6765693444985069 -1992-12-17,4.1,2.355,0.3461518518518519,67.98,600.0,0.667909256888926 -1992-12-18,4.65,-1.0850000000000002,0.3461518518518519,84.8,450.47,0.6711567897425189 -1992-12-19,0.03,-8.115,0.3456693287037037,169.12,189.43,0.6646617240353332 -1992-12-20,6.21,-4.484999999999999,0.3456693287037037,131.59,282.97,0.6581666583281476 -1992-12-21,3.95,-8.535,0.3461518518518519,137.28,192.76,0.6267738407434169 -1992-12-22,0.04,-11.66,0.3461518518518519,168.47,165.48,0.6116186874266503 -1992-12-23,0.0,-4.87,0.3461518518518519,134.77,326.25,0.5975460450610814 -1992-12-24,2.84,-8.66,0.3466476851851852,156.76,193.31,0.5823908917443148 -1992-12-25,4.16,-17.04,0.3472057870370371,145.64,80.0,0.5412554755988056 -1992-12-26,3.76,-15.14,0.34771435185185184,146.91,113.58,0.5325953879892247 -1992-12-27,0.0,-17.880000000000003,0.34794849537037037,178.94,80.0,0.5152752127700628 -1992-12-28,0.0,-16.555,0.34800000000000003,182.57,88.98,0.506615125160482 -1992-12-29,2.19,-8.595,0.3480079861111111,149.45,203.2,0.4990375485020987 -1992-12-30,4.09,-8.485,0.3484641203703704,85.22,257.57,0.4903774608925179 -1992-12-31,3.14,-8.54,0.3482361111111111,117.34,230.38,0.4752223075757513 -1993-01-01,7.66,-10.76,0.34921886574074074,69.48,211.98,0.46331468711257756 -1993-01-02,0.0,-18.1,0.35015162037037034,156.39,80.38,0.4579021323565895 -1993-01-03,0.27,-19.285,0.35120578703703703,197.59,57.28,0.4546545995029967 -1993-01-04,4.55,-8.555,0.3519482638888889,146.5,163.18,0.44924204474700863 -1993-01-05,12.94,-1.2750000000000001,0.35200787037037035,85.47,421.31,0.44382948999102056 -1993-01-06,4.35,-11.614999999999998,0.35284641203703704,147.54,125.15,0.4384169352350325 -1993-01-07,0.11,-11.004999999999999,0.3541518518518519,173.08,160.0,0.43516940238143964 -1993-01-08,1.58,-8.955,0.35571446759259256,146.53,211.71,0.4330043804790444 -1993-01-09,0.0,-19.72,0.35600000000000004,202.52,71.99,0.46547970901497276 -1993-01-10,0.0,-24.6,0.3564643518518519,197.88,40.0,0.4925424827949131 -1993-01-11,0.0,-22.189999999999998,0.35815185185185183,204.07,40.0,0.4979550375509011 -1993-01-12,0.0,-18.285,0.3599482638888889,215.47,80.0,0.48171737328293696 -1993-01-13,0.0,-17.445,0.36000787037037035,186.94,80.0,0.46547970901497276 -1993-01-14,0.0,-18.27,0.36121863425925926,156.66,95.53,0.4579021323565895 -1993-01-15,0.33,-19.91,0.3637142361111111,209.49,80.0,0.44382948999102056 -1993-01-16,0.13,-15.68,0.36400011574074076,207.42,91.8,0.4362519133326373 -1993-01-17,0.0,-8.555,0.36521898148148146,173.05,210.8,0.42542680382066117 -1993-01-18,0.0,-10.65,0.36771435185185186,151.1,190.71,0.41351918335748744 -1993-01-19,0.06,-19.34,0.3680083333333333,172.49,80.0,0.40918913955269703 -1993-01-20,1.17,-17.09,0.3696696759259259,179.5,104.7,0.41027165050389464 -1993-01-21,0.0,-15.334999999999999,0.3719483796296296,229.7,80.84,0.4113541614550923 -1993-01-22,1.55,-11.255,0.37211041666666667,219.34,120.16,0.4037765847967089 -1993-01-23,6.68,-3.005,0.3746479166666667,107.04,365.41,0.39511649718712805 -1993-01-24,3.72,-0.9449999999999998,0.3760002314814815,81.05,460.45,0.38970394243114004 -1993-01-25,8.2,-4.25,0.3772188657407407,134.31,304.58,0.38970394243114004 -1993-01-26,0.0,-12.899999999999999,0.3799997685185186,244.26,120.0,0.3864564095775472 -1993-01-27,0.0,-11.950000000000001,0.3804640046296296,208.57,159.99,0.37346627816317585 -1993-01-28,0.83,-10.25,0.383714699074074,160.37,204.3,0.3691362343583854 -1993-01-29,1.97,-14.350000000000001,0.38400833333333334,194.81,121.04,0.3626411686511997 -1993-01-30,0.41,-21.625,0.3866476851851852,221.89,71.33,0.35722861389521166 -1993-01-31,0.0,-27.775,0.38799999999999996,227.89,40.0,0.3464035043832356 -1993-02-01,3.43,-21.88,0.3901519675925926,138.58,80.0,0.33666090582245706 -1993-02-02,0.87,-21.32,0.39200034722222227,256.87,55.88,0.3323308620176666 -1993-02-03,0.0,-16.965,0.3936696759259259,281.34,83.39,0.3269183072616786 -1993-02-04,0.05,-12.215,0.39600023148148145,201.66,160.01,0.31934073060329526 -1993-02-05,0.11,-15.43,0.3972188657407407,216.87,120.0,0.31284566489610965 -1993-02-06,0.0,-22.33,0.40000023148148145,287.82,40.0,0.30526808823772633 -1993-02-07,0.63,-26.985,0.4012189814814815,294.61,40.0,0.29769051157934306 -1993-02-08,0.72,-19.169999999999998,0.40399999999999997,252.91,84.48,0.292277956823355 -1993-02-09,0.0,-18.9,0.40521898148148144,282.24,80.0,0.28470038016497173 -1993-02-10,0.43,-15.174999999999999,0.4080003472222223,304.28,90.44,0.2760402925553908 -1993-02-11,0.0,-14.024999999999999,0.40966990740740744,280.96,119.97,0.2771228035065884 -1993-02-12,0.01,-19.19,0.41200046296296294,320.63,66.1,0.2803703363601813 -1993-02-13,10.33,-11.955,0.41464768518518513,208.8,145.77,0.2825353582625765 -1993-02-14,11.8,-7.57,0.4159996527777778,122.26,270.66,0.28578289111616934 -1993-02-15,0.0,-14.33,0.419205324074074,331.18,100.53,0.2901129349209598 -1993-02-16,5.61,-16.085,0.41999976851851856,319.78,80.0,0.2890304239697622 -1993-02-17,13.66,-10.145,0.42400011574074076,156.6,206.9,0.28794791301856454 -1993-02-18,1.81,-16.494999999999997,0.42400011574074076,285.12,90.95,0.28686540206736694 -1993-02-19,0.0,-24.055,0.428,378.98,40.0,0.28470038016497173 -1993-02-20,0.0,-23.62,0.42846388888888887,377.29,40.0,0.28361786921377413 -1993-02-21,0.0,-26.195,0.43200000000000005,391.53,40.0,0.2825353582625765 -1993-02-22,6.74,-21.96,0.4336695601851852,259.64,47.33,0.2814528473113789 -1993-02-23,3.91,-14.11,0.43600011574074077,124.03,160.0,0.2803703363601813 -1993-02-24,2.2,-14.53,0.4399488425925926,288.23,124.29,0.27928782540898367 -1993-02-25,0.0,-16.965,0.4400003472222222,344.42,80.03,0.2771228035065884 -1993-02-26,0.0,-19.55,0.4440001157407408,410.32,40.0,0.2738752706529956 -1993-02-27,0.0,-18.365000000000002,0.4440081018518519,409.14,51.99,0.272792759701798 -1993-02-28,0.0,-17.26,0.4480001157407407,425.61,40.0,0.2706277377994028 -1993-03-01,0.0,-13.875,0.4501516203703704,407.92,82.51,0.2695452268482052 -1993-03-02,0.0,-11.415,0.452,419.69,101.42,0.26846271589700754 -1993-03-03,0.0,-8.02,0.45599953703703705,390.69,163.32,0.26738020494580994 -1993-03-04,0.0,-8.855,0.45599953703703705,386.18,153.61,0.26629769399461234 -1993-03-05,1.21,-10.075000000000001,0.46,321.02,160.24,0.26521518304341474 -1993-03-06,5.11,-9.745,0.4604638888888889,103.41,239.97,0.26521518304341474 -1993-03-07,2.77,-9.469999999999999,0.463999537037037,169.56,227.87,0.26413267209221714 -1993-03-08,0.0,-10.17,0.46799976851851854,406.51,141.32,0.2630501611410195 -1993-03-09,0.0,-8.055,0.46799976851851854,425.91,160.0,0.2608851392386243 -1993-03-10,0.28,-6.69,0.4719996527777777,326.35,238.02,0.2608851392386243 -1993-03-11,2.7,-5.2250000000000005,0.4719996527777777,212.03,301.4,0.2598026282874267 -1993-03-12,0.0,-12.285,0.4760001157407408,394.1,125.02,0.2576376063850314 -1993-03-13,8.58,-16.69,0.4800005787037037,408.79,80.0,0.2554725844826362 -1993-03-14,15.06,-11.645,0.4800005787037037,250.58,164.41,0.272792759701798 -1993-03-15,2.72,-15.66,0.4840002314814815,343.69,115.55,0.29444297872575026 -1993-03-16,0.0,-13.21,0.4840002314814815,480.28,80.25,0.2890304239697622 -1993-03-17,0.02,-5.535,0.48800034722222224,449.49,203.57,0.2760402925553908 -1993-03-18,1.85,-12.924999999999999,0.4919994212962963,371.11,119.96,0.26629769399461234 -1993-03-19,0.0,-17.4,0.4919994212962963,505.88,59.22,0.2598026282874267 -1993-03-20,0.0,-10.735,0.4959997685185185,530.24,91.06,0.253307562580241 -1993-03-21,2.13,-1.58,0.4959997685185185,219.12,408.22,0.25006002972664815 -1993-03-22,3.78,-1.32,0.4999997685185186,103.22,479.97,0.24681249687305531 -1993-03-23,0.0,-6.755,0.503999537037037,462.2,195.72,0.2446474749706601 -1993-03-24,0.0,-6.550000000000001,0.503999537037037,540.02,156.93,0.2435649640194625 -1993-03-25,0.0,-1.2599999999999998,0.5079996527777778,521.06,245.01,0.2446474749706601 -1993-03-26,0.0,5.09,0.5079996527777778,482.94,449.82,0.2457299859218577 -1993-03-27,0.0,6.59,0.511999537037037,509.87,450.91,0.2598026282874267 -1993-03-28,0.0,6.335,0.5159998842592592,517.05,431.62,0.27820531445778607 -1993-03-29,0.0,5.92,0.5159998842592592,499.45,455.57,0.3085156210913192 -1993-03-30,0.0,4.08,0.520000462962963,438.76,480.43,0.3680537234071878 -1993-03-31,0.0,0.06499999999999995,0.520000462962963,389.07,395.02,0.4600671542589847 -1993-04-01,0.0,-5.95,0.5240002314814816,398.24,249.01,0.5141927018188653 -1993-04-02,4.6,-4.279999999999999,0.5279998842592593,195.77,343.3,0.6116186874266503 -1993-04-03,6.23,-3.04,0.5279998842592593,185.85,381.21,0.6549191254745548 -1993-04-04,2.33,-0.56,0.5319998842592593,361.71,379.7,0.681981899254495 -1993-04-05,0.0,-0.27500000000000036,0.5319998842592593,545.98,293.64,0.6982195635224592 -1993-04-06,0.0,1.1150000000000002,0.5359994212962963,561.01,296.9,0.6928070087664712 -1993-04-07,0.0,2.8749999999999996,0.5395353009259259,575.92,309.76,0.6873944540104832 -1993-04-08,0.0,3.6500000000000004,0.54,567.64,342.59,0.7036321182784472 -1993-04-09,0.0,4.295,0.5439997685185185,535.39,402.19,0.837863476226951 -1993-04-10,0.0,6.045,0.5439997685185185,437.65,569.9,1.179936936805396 -1993-04-11,9.05,8.48,0.5479999999999999,174.0,905.55,2.251622778491031 -1993-04-12,14.92,5.79,0.5498481481481481,203.51,712.16,3.9728151908952327 -1993-04-13,0.7,3.815,0.5520004629629629,267.1,619.06,5.174402346724581 -1993-04-14,0.0,1.5,0.5559922453703704,375.5,468.58,6.083711545730575 -1993-04-15,0.0,2.8049999999999997,0.5560002314814815,445.42,483.64,6.43011505011381 -1993-04-16,0.18,4.630000000000001,0.56,368.08,606.61,6.614141911817404 -1993-04-17,4.45,6.955,0.5600517361111111,220.05,781.34,6.711567897425189 -1993-04-18,3.91,5.95,0.5639996527777777,224.67,731.23,6.993020744736568 -1993-04-19,0.35,2.09,0.5663305555555556,406.59,502.06,6.938895197176687 -1993-04-20,2.58,0.7649999999999999,0.5679997685185185,339.03,466.41,6.679092568889262 -1993-04-21,9.97,4.3549999999999995,0.5715351851851852,341.5,557.9,6.538366145233571 -1993-04-22,12.77,5.444999999999999,0.5719994212962963,307.31,629.92,6.614141911817404 -1993-04-23,19.6,2.235,0.5760005787037037,131.54,627.63,7.447675344239564 -1993-04-24,6.82,2.8049999999999997,0.5760005787037037,274.79,566.61,8.04305636739825 -1993-04-25,4.53,2.65,0.5800003472222222,347.56,511.74,7.9672806008144175 -1993-04-26,6.01,3.3150000000000004,0.5807946759259259,225.24,625.88,7.7940788486228 -1993-04-27,0.0,2.225,0.5840005787037037,479.06,500.17,7.415200015703637 -1993-04-28,0.0,3.37,0.5853530092592593,629.19,413.18,7.025496073272495 -1993-04-29,0.0,7.640000000000001,0.5880002314814815,637.35,511.19,6.646617240353332 -1993-04-30,0.0,9.305,0.5903311342592593,627.86,582.71,6.267738407434169 -1993-05-01,0.0,11.455,0.5920008101851852,609.37,706.72,5.932160012562909 -1993-05-02,0.0,11.14,0.5943310185185184,580.25,747.14,5.564106289155721 -1993-05-03,0.0,8.01,0.5959997685185184,619.42,540.56,5.250178113308414 -1993-05-04,0.0,11.795,0.5987809027777777,570.04,779.68,4.903774608925178 -1993-05-05,1.88,15.32,0.5999998842592592,527.56,956.33,4.6223217616138 -1993-05-06,6.49,15.094999999999999,0.6027810185185185,344.13,1215.89,4.535720885517991 -1993-05-07,1.75,11.23,0.6039996527777778,450.18,904.01,4.492420447470086 -1993-05-08,0.0,10.005,0.6063304398148148,640.4,551.51,4.351694023814397 -1993-05-09,0.0,11.24,0.6079995370370371,591.49,730.08,4.146016943086851 -1993-05-10,1.28,6.965,0.6098476851851852,544.09,582.33,3.9403398623593047 -1993-05-11,3.06,6.6450000000000005,0.6120002314814815,339.37,724.39,3.7563130006557106 -1993-05-12,7.51,8.11,0.6133524305555556,291.09,808.93,3.615586577000021 -1993-05-13,10.22,7.1899999999999995,0.6159914351851852,277.26,779.05,3.658887015047926 -1993-05-14,0.4,5.475,0.6162851851851852,535.1,576.37,3.6372367960239735 -1993-05-15,0.0,8.4,0.6195356481481481,582.42,630.55,3.5506359199281645 -1993-05-16,1.06,11.7,0.6199998842592592,556.15,800.22,3.4532099343203795 -1993-05-17,1.03,9.065000000000001,0.6227818287037037,565.88,660.43,3.323308620176666 -1993-05-18,0.0,6.945,0.6240006944444445,561.38,583.21,3.1501068679850484 -1993-05-19,0.0,7.895,0.6253526620370371,606.32,514.39,2.9877302253054068 -1993-05-20,0.67,9.81,0.6278895833333333,507.95,744.49,2.825353582625765 -1993-05-21,4.22,10.155,0.6280518518518519,274.46,928.11,2.717102487506004 -1993-05-22,1.86,9.075,0.6303303240740741,514.08,631.28,2.5872011733622906 -1993-05-23,0.0,11.420000000000002,0.6319916666666667,527.94,777.41,2.4789500782425296 -1993-05-24,0.0,10.54,0.6322856481481481,592.96,591.8,2.3706989831227685 -1993-05-25,5.93,11.94,0.6347809027777778,356.22,901.84,2.316573435562888 -1993-05-26,7.52,11.485,0.6360001157407408,172.47,1138.54,2.2949232165389355 -1993-05-27,2.02,9.575,0.6362856481481481,240.42,963.63,2.219147449955103 -1993-05-28,5.68,9.39,0.6387810185185185,334.48,802.76,2.1650219023952224 -1993-05-29,17.19,8.565,0.6399917824074074,288.26,810.65,2.2083223404431265 -1993-05-30,18.07,8.030000000000001,0.6400512731481481,211.31,869.07,2.630501611410195 -1993-05-31,5.64,6.805,0.6418483796296296,339.15,659.72,2.7712280350658847 -1993-06-01,12.43,7.16,0.6435354166666667,193.34,827.78,3.074331101401216 -1993-06-02,14.4,7.955,0.6439998842592592,231.1,851.8,3.745487891143735 -1993-06-03,1.05,9.48,0.6442856481481481,465.4,802.44,3.9511649718712807 -1993-06-04,2.1,9.955,0.6458482638888889,478.52,801.31,4.03776584796709 -1993-06-05,0.27,10.524999999999999,0.6471538194444444,563.88,701.33,4.016115628943138 -1993-06-06,0.49,12.93,0.6479927083333333,477.8,964.81,3.8970394243114 -1993-06-07,1.46,9.86,0.6480521990740741,352.24,918.98,3.734662781631758 -1993-06-08,0.19,10.805,0.6487947916666666,484.99,835.44,3.572286138952117 -1993-06-09,0.01,12.62,0.6498487268518519,566.36,761.84,3.399084386760499 -1993-06-10,10.58,14.645,0.6507814814814814,314.54,1179.04,3.3882592772485234 -1993-06-11,7.24,15.7,0.6515357638888889,366.93,1222.86,3.713012562607806 -1993-06-12,0.0,13.885000000000002,0.6519921296296297,550.8,811.11,3.658887015047926 -1993-06-13,0.0,16.22,0.6520001157407407,546.25,911.05,3.572286138952117 -1993-06-14,0.0,19.48,0.6520517361111111,531.61,1123.62,3.420734605784451 -1993-06-15,0.0,19.96,0.6522856481481482,516.39,1205.86,3.2583579631048094 -1993-06-16,3.29,19.465,0.6527943287037037,357.26,1436.66,3.0310306633533117 -1993-06-17,2.65,14.540000000000001,0.653352662037037,374.18,1078.5,2.8145284731137887 -1993-06-18,0.03,14.735,0.653848611111111,418.72,1130.44,2.619676501898219 -1993-06-19,0.1,16.525000000000002,0.653848611111111,379.35,1330.01,2.4681249687305535 -1993-06-20,0.0,16.21,0.653848611111111,511.64,978.92,2.3057483260509115 -1993-06-21,3.45,16.115,0.6543310185185185,368.26,1226.47,2.1758470119071984 -1993-06-22,18.0,16.225,0.6543310185185185,199.21,1470.83,2.0784210262994134 -1993-06-23,22.24,13.325000000000001,0.653848611111111,303.18,1055.74,2.024295478739533 -1993-06-24,0.0,11.344999999999999,0.653848611111111,494.55,782.51,1.9701699311796523 -1993-06-25,0.0,15.174999999999999,0.653352662037037,497.11,963.94,1.9052192741077956 -1993-06-26,0.0,19.48,0.653352662037037,475.83,1317.01,1.8077932885000105 -1993-06-27,0.0,21.490000000000002,0.6527943287037037,404.69,1701.93,1.7211924124042017 -1993-06-28,0.0,19.925,0.6522856481481482,381.28,1593.87,1.6454166458203692 -1993-06-29,8.57,17.32,0.6520517361111111,282.7,1364.24,1.6129413172844407 -1993-06-30,2.99,14.87,0.6519921296296297,278.08,1248.67,1.5046902221646794 -1993-07-01,0.0,14.27,0.6518894675925926,477.37,925.76,1.4180893460688704 -1993-07-02,0.0,16.55,0.6511538194444445,500.49,979.15,1.3531386889970138 -1993-07-03,0.32,16.925,0.6503311342592593,398.87,1262.78,1.2990131414371333 -1993-07-04,2.32,16.535,0.6493528935185184,248.6,1448.18,1.2124122653413245 -1993-07-05,0.0,15.265,0.6482863425925927,456.77,1029.49,1.158286717781444 -1993-07-06,0.0,19.835,0.6480008101851852,408.5,1482.48,1.1041611702215632 -1993-07-07,0.0,24.345,0.647890162037037,391.0,1971.15,1.0500356226616827 -1993-07-08,0.0,22.235,0.64678125,418.74,1662.17,0.9926625422482094 -1993-07-09,0.0,21.73,0.645352199074074,408.64,1649.09,0.9374544837371314 -1993-07-10,0.81,22.42,0.6440515046296297,365.08,1777.44,0.8909065128356339 -1993-07-11,0.02,20.435000000000002,0.6438894675925926,402.37,1548.91,0.8205433010077893 -1993-07-12,6.49,18.405,0.6427809027777778,383.21,1342.1,0.7891504834230585 -1993-07-13,9.56,20.525,0.6407940972222222,258.54,1712.23,0.7837379286670705 -1993-07-14,1.9,18.115,0.6399997685185186,389.82,1320.87,0.7426025125215612 -1993-07-15,5.17,17.915,0.6395354166666667,265.45,1443.93,0.7198697825464114 -1993-07-16,2.81,14.870000000000001,0.6378482638888888,350.37,1130.72,0.6841469211568902 -1993-07-17,2.5,15.0,0.6360001157407408,328.86,1212.69,0.643011505011381 -1993-07-18,0.0,13.959999999999999,0.6355359953703703,469.07,929.65,0.6072886436218599 -1993-07-19,0.2,15.46,0.6338483796296296,483.98,958.24,0.58455591364671 -1993-07-20,4.57,17.245,0.6319996527777777,285.81,1359.02,0.5683182493787459 -1993-07-21,4.2,16.424999999999997,0.6315355324074073,228.77,1402.55,0.5466680303547936 -1993-07-22,2.26,14.17,0.6287943287037038,347.76,1093.01,0.5174402346724581 -1993-07-23,4.87,15.425,0.628,213.0,1350.05,0.5109451689652724 -1993-07-24,2.88,14.49,0.6267813657407407,338.57,1112.4,0.4957900156485059 -1993-07-25,0.7,14.28,0.624052199074074,367.09,1140.2,0.4730572856733561 -1993-07-26,0.0,13.275,0.6238902777777778,471.03,899.43,0.4557371104541943 -1993-07-27,0.17,14.765,0.6207944444444444,382.69,1159.65,0.4459945118934157 -1993-07-28,2.02,16.155,0.6199998842592592,210.47,1503.27,0.42650931477185877 -1993-07-29,8.83,18.55,0.6183303240740741,205.84,1697.77,0.41568420525988264 -1993-07-30,11.28,19.43,0.615999537037037,117.08,1974.73,0.4535720885517991 -1993-07-31,4.84,19.775,0.6151532407407407,209.05,1795.62,0.44274697903982296 -1993-08-01,1.11,20.27,0.6120002314814815,394.39,1572.6,0.43516940238143964 -1993-08-02,0.01,21.71,0.6115356481481482,395.01,1762.33,0.42975684762545163 -1993-08-03,1.99,21.814999999999998,0.6080510416666667,310.23,1901.94,0.42109676001587076 -1993-08-04,6.15,20.165,0.6078891203703704,341.14,1545.33,0.40269407384551137 -1993-08-05,6.71,18.57,0.6042853009259259,291.51,1467.44,0.4016115628943137 -1993-08-06,0.0,14.920000000000002,0.6039916666666666,454.79,1046.42,0.37996134387036146 -1993-08-07,0.0,14.955000000000002,0.6002854166666667,460.01,1031.7,0.364806190553595 -1993-08-08,0.0,16.445,0.5999998842592592,463.91,1119.49,0.35831112484640926 -1993-08-09,8.43,17.37,0.5962851851851851,335.91,1225.17,0.3464035043832356 -1993-08-10,4.78,18.41,0.5959997685185184,283.6,1467.35,0.33666090582245706 -1993-08-11,1.84,18.185,0.5920523148148148,301.66,1577.69,0.33341337296886425 -1993-08-12,3.03,17.78,0.591992824074074,300.17,1460.73,0.325835796310481 -1993-08-13,0.0,18.58,0.5880002314814815,406.52,1418.28,0.3139281758473072 -1993-08-14,0.0,19.435000000000002,0.5879922453703703,411.07,1467.12,0.29444297872575026 -1993-08-15,0.0,18.865,0.5840005787037037,429.67,1369.39,0.2825353582625765 -1993-08-16,5.4,17.03,0.5835359953703704,363.47,1111.94,0.2738752706529956 -1993-08-17,15.54,18.130000000000003,0.5800003472222222,308.04,1346.95,0.29444297872575026 -1993-08-18,19.05,17.49,0.5787818287037036,220.31,1538.75,0.4665622199661704 -1993-08-19,0.0,17.065,0.5760005787037037,384.22,1335.54,0.5228527894284463 -1993-08-20,1.28,18.064999999999998,0.5738478009259259,346.95,1444.44,0.5217702784772486 -1993-08-21,2.18,14.280000000000001,0.5719994212962963,361.73,1093.88,0.4957900156485059 -1993-08-22,0.0,11.935,0.5680513888888888,446.75,828.87,0.48171737328293696 -1993-08-23,0.0,14.43,0.5679997685185185,457.04,920.69,0.4643971980637752 -1993-08-24,4.39,16.505000000000003,0.5639996527777777,349.19,1266.91,0.44815953379581097 -1993-08-25,14.08,19.465,0.5639916666666667,237.26,1665.05,0.4903774608925179 -1993-08-26,0.0,22.005,0.56,359.08,1795.77,0.46547970901497276 -1993-08-27,0.0,21.735,0.558330324074074,410.76,1575.5,0.4459945118934157 -1993-08-28,1.86,21.240000000000002,0.5560002314814815,356.95,1647.2,0.43516940238143964 -1993-08-29,0.0,15.690000000000001,0.5520519675925926,429.14,1013.47,0.39836403004072096 -1993-08-30,0.0,13.645,0.5520004629629629,393.81,959.65,0.3745487891143735 -1993-08-31,5.24,14.95,0.5479999999999999,298.37,1181.29,0.3669712124559901 -1993-09-01,9.27,14.585,0.5479921296296296,243.08,1200.7,0.3637236796023974 -1993-09-02,2.77,12.29,0.5439997685185185,393.32,767.15,0.34315597152964267 -1993-09-03,15.64,13.615,0.540794212962963,263.47,1030.45,0.35722861389521166 -1993-09-04,12.87,15.58,0.54,167.5,1398.08,0.39836403004072096 -1993-09-05,0.29,14.684999999999999,0.5359994212962963,369.61,1059.23,0.3961990081383257 -1993-09-06,11.14,13.23,0.5359994212962963,280.68,942.8,0.38753892052874483 -1993-09-07,10.96,12.75,0.5319998842592593,245.01,1011.58,0.4362519133326373 -1993-09-08,0.0,11.98,0.5298482638888888,381.86,862.2,0.4459945118934157 -1993-09-09,0.57,12.855,0.5279998842592593,367.45,917.44,0.44707702284461337 -1993-09-10,17.42,14.16,0.5240002314814816,226.13,1148.73,0.4784698404293441 -1993-09-11,16.13,12.030000000000001,0.5240002314814816,193.04,1060.47,0.5488330522571889 -1993-09-12,0.04,8.125,0.520000462962963,354.8,690.06,0.5672357384275483 -1993-09-13,0.0,12.26,0.5183310185185186,375.42,852.56,0.5748133150859315 -1993-09-14,0.0,18.945,0.5159998842592592,324.38,1441.32,0.5758958260371291 -1993-09-15,2.28,19.67,0.511999537037037,274.14,1540.84,0.5726482931835363 -1993-09-16,2.48,11.79,0.511999537037037,318.28,774.43,0.5509980741595841 -1993-09-17,0.27,8.555,0.5079996527777778,376.68,638.73,0.5390904536964104 -1993-09-18,3.64,10.215,0.5067805555555556,205.63,889.86,0.5250178113308414 -1993-09-19,0.0,8.025,0.503999537037037,257.29,786.27,0.4947075046973083 -1993-09-20,0.0,5.47,0.4999997685185186,339.2,563.77,0.4643971980637752 -1993-09-21,0.0,7.32,0.4999997685185186,362.61,600.0,0.44382948999102056 -1993-09-22,0.0,8.98,0.4959997685185185,385.26,599.73,0.42109676001587076 -1993-09-23,2.77,10.405,0.49366840277777774,273.89,792.83,0.41351918335748744 -1993-09-24,5.82,10.5,0.4919994212962963,200.52,906.33,0.4037765847967089 -1993-09-25,0.0,9.9,0.48800034722222224,326.86,750.06,0.3864564095775472 -1993-09-26,5.75,9.965,0.48800034722222224,232.2,855.35,0.37021874530958304 -1993-09-27,12.84,11.46,0.4840002314814815,149.9,1059.39,0.3972815190895233 -1993-09-28,17.57,13.370000000000001,0.48167002314814816,130.65,1253.48,0.5466680303547936 -1993-09-29,1.31,9.7,0.4800005787037037,244.73,855.64,0.5564106289155721 -1993-09-30,0.07,5.569999999999999,0.4760001157407408,299.06,591.31,0.5423379865500033 -1993-10-01,0.0,2.8150000000000004,0.4760001157407408,309.86,464.88,0.5380079427452128 -1993-10-02,5.13,5.945,0.4719996527777777,287.81,581.75,0.5531630960619793 -1993-10-03,13.56,7.48,0.4701513888888889,166.73,774.69,0.6202787750362311 -1993-10-04,3.99,3.865,0.46799976851851854,187.92,567.47,0.6527541035721596 -1993-10-05,1.79,2.8199999999999994,0.463999537037037,269.58,508.24,0.6603316802305428 -1993-10-06,0.27,2.93,0.463999537037037,293.58,480.0,0.6560016364257523 -1993-10-07,1.88,6.08,0.46,280.05,588.75,0.6646617240353332 -1993-10-08,1.38,5.444999999999999,0.45920532407407405,243.39,596.59,0.6495065707185667 -1993-10-09,7.8,2.9349999999999996,0.45599953703703705,125.1,603.03,0.6624967021329381 -1993-10-10,9.28,2.25,0.45200810185185186,162.75,532.13,0.7220348044488065 -1993-10-11,0.0,-1.2399999999999998,0.452,257.63,365.89,0.7285298701559924 -1993-10-12,4.74,0.7600000000000002,0.4480001157407407,245.67,425.85,0.7436850234727588 -1993-10-13,14.52,1.81,0.4480001157407407,147.0,529.6,0.8562661623973103 -1993-10-14,0.0,0.14500000000000002,0.4440001157407408,269.15,400.38,0.9147217537619815 -1993-10-15,0.0,1.9500000000000002,0.44166932870370373,296.68,408.87,0.9471970822979098 -1993-10-16,0.0,4.765,0.4400003472222222,288.72,506.37,0.9829199436874309 -1993-10-17,3.84,8.565000000000001,0.43611064814814815,175.69,833.31,1.0099827174673712 -1993-10-18,10.17,10.08,0.43600011574074077,99.63,1035.66,1.0825109511976112 -1993-10-19,0.0,4.2,0.43200000000000005,248.59,553.03,1.0825109511976112 -1993-10-20,0.0,1.5850000000000004,0.43194837962962956,274.58,408.91,1.0933360607095872 -1993-10-21,9.35,2.67,0.428,226.08,464.58,1.179936936805396 -1993-10-22,19.27,6.485,0.4261517361111111,114.29,791.22,1.5046902221646794 -1993-10-23,1.04,3.005,0.42400011574074076,202.36,557.06,1.5804659887485122 -1993-10-24,2.0,-0.03500000000000014,0.42121863425925926,183.42,440.0,1.6887170838682732 -1993-10-25,0.84,1.7049999999999998,0.41999976851851856,162.48,541.95,1.7320175219161775 -1993-10-26,0.0,-2.69,0.4164640046296296,232.93,325.77,1.75366774094013 -1993-10-27,1.11,-0.4249999999999998,0.4159996527777778,198.88,418.42,1.764492850452106 -1993-10-28,3.4,2.14,0.4121109953703704,64.58,636.27,1.764492850452106 -1993-10-29,1.3,1.785,0.41200046296296294,196.8,498.07,1.75366774094013 -1993-10-30,0.0,3.58,0.4080084490740741,177.35,597.35,1.7211924124042017 -1993-10-31,0.0,2.05,0.40794895833333333,152.15,560.07,1.656241755332345 -1993-11-01,12.65,-0.20999999999999996,0.40399999999999997,86.31,510.36,1.6345915363083927 -1993-11-02,13.07,-2.3850000000000002,0.4037145833333334,91.0,430.3,1.6454166458203692 -1993-11-03,0.47,-3.735,0.40000023148148145,214.76,314.27,1.6129413172844407 -1993-11-04,2.48,0.14500000000000002,0.39971435185185183,146.36,481.22,1.5588157697245602 -1993-11-05,7.05,2.69,0.3960082175925926,109.74,599.55,1.5804659887485122 -1993-11-06,13.63,4.485,0.39571446759259266,105.99,684.03,1.9052192741077956 -1993-11-07,0.0,-0.1499999999999999,0.3921108796296296,210.89,416.68,2.0567708072754614 -1993-11-08,0.0,-2.5149999999999997,0.3919487268518519,198.4,359.93,2.132546573859294 -1993-11-09,0.05,0.31999999999999984,0.3884644675925926,188.46,446.56,2.1758470119071984 -1993-11-10,0.0,-0.21499999999999986,0.38799999999999996,182.91,438.72,2.1974972309311505 -1993-11-11,1.5,-2.98,0.3848466435185185,207.78,339.72,2.1974972309311505 -1993-11-12,2.68,-1.275,0.3840003472222222,140.34,437.98,2.1758470119071984 -1993-11-13,1.02,-4.279999999999999,0.38166932870370374,237.74,258.11,2.14337168337127 -1993-11-14,2.95,-0.7850000000000001,0.3799997685185186,164.12,387.73,2.121721464347318 -1993-11-15,6.58,1.2550000000000001,0.37920590277777777,90.9,564.19,2.110896354835342 -1993-11-16,7.72,-0.89,0.37611087962962964,80.73,490.11,2.0892461358113894 -1993-11-17,0.2,-1.15,0.3759486111111111,148.07,440.02,2.035120588251509 -1993-11-18,1.2,-1.045,0.37321898148148147,105.13,475.75,1.9593448216676759 -1993-11-19,3.44,-2.505,0.3719998842592593,187.1,329.6,1.9268694931317478 -1993-11-20,12.71,0.9549999999999998,0.37120578703703705,132.37,472.67,2.154196792883246 -1993-11-21,0.0,-2.0700000000000003,0.3684645833333333,189.88,355.39,2.1758470119071984 -1993-11-22,0.0,-0.07499999999999973,0.3680003472222222,196.02,396.39,2.1866721214191744 -1993-11-23,0.9,-4.8,0.36615196759259255,183.81,273.99,2.1650219023952224 -1993-11-24,1.95,-8.6,0.3644642361111111,164.28,234.75,2.121721464347318 -1993-11-25,0.0,-11.92,0.36400011574074076,209.61,148.99,2.035120588251509 -1993-11-26,0.0,-9.5,0.3621513888888889,202.64,182.23,1.9485197121557 -1993-11-27,0.0,-7.915000000000001,0.3604638888888889,214.48,160.1,1.851093726547915 -1993-11-28,4.67,0.44999999999999973,0.3599998842592593,173.83,383.7,1.8402686170359388 -1993-11-29,4.09,3.2350000000000003,0.35920578703703704,148.67,524.36,2.0567708072754614 -1993-11-30,0.0,-4.83,0.3572189814814815,134.64,326.54,1.9485197121557 -1993-12-01,0.0,-8.065,0.35611041666666665,182.0,200.0,1.8835690550838433 -1993-12-02,0.0,-5.805000000000001,0.3559483796296296,184.49,241.32,1.829443507523963 -1993-12-03,2.78,-2.875,0.3546476851851852,126.95,337.56,1.7861430694760585 -1993-12-04,4.42,0.16999999999999993,0.35321898148148145,45.16,560.0,1.742842631428154 -1993-12-05,9.89,0.09999999999999998,0.35211030092592593,31.81,567.36,1.742842631428154 -1993-12-06,0.58,-1.935,0.35199988425925927,66.27,461.75,1.6995421933802495 -1993-12-07,1.24,-3.31,0.35171423611111113,66.61,425.68,1.656241755332345 -1993-12-08,1.4,-4.13,0.3506474537037037,118.25,349.1,1.6021162077724647 -1993-12-09,0.0,-7.630000000000001,0.34966921296296294,173.88,219.13,1.5263404411886317 -1993-12-10,4.2,-4.79,0.3488465277777778,160.91,265.98,1.4830400031407271 -1993-12-11,24.71,1.705,0.3481105324074074,110.55,490.7,2.0784210262994134 -1993-12-12,24.05,-2.385,0.3480079861111111,118.69,351.15,2.998555334817383 -1993-12-13,0.0,-7.220000000000001,0.34794849537037037,150.45,253.84,3.1609319774970244 -1993-12-14,0.0,-4.345000000000001,0.34771435185185184,143.62,320.46,3.3774341677365465 -1993-12-15,0.0,-1.0949999999999998,0.3472057870370371,109.11,449.31,3.464035043832355 -1993-12-16,0.0,-4.39,0.3466476851851852,146.13,314.53,3.4532099343203795 -1993-12-17,0.0,-7.324999999999999,0.3466476851851852,158.98,238.59,3.3774341677365465 -1993-12-18,0.0,-5.955,0.3461518518518519,137.13,284.26,3.280008182128762 -1993-12-19,5.44,-4.76,0.3461518518518519,103.13,324.91,3.1284566489610963 -1993-12-20,7.0,-2.85,0.3456693287037037,65.87,429.01,3.0202055538413353 -1993-12-21,5.29,-1.895,0.3456693287037037,128.33,378.85,2.8903042396976217 -1993-12-22,12.5,-1.4000000000000001,0.3461518518518519,108.58,402.46,3.0202055538413353 -1993-12-23,0.0,-10.270000000000001,0.3461518518518519,183.42,161.64,2.8470038016497177 -1993-12-24,0.0,-17.25,0.3461518518518519,184.62,89.47,2.6738020494580996 -1993-12-25,1.74,-13.01,0.3466476851851852,156.62,136.39,2.554725844826362 -1993-12-26,4.97,-12.09,0.3472057870370371,124.33,166.94,2.446474749706601 -1993-12-27,0.0,-23.695,0.34771435185185184,174.4,44.18,2.2083223404431265 -1993-12-28,0.0,-27.979999999999997,0.34794849537037037,131.67,40.0,2.0675959167874374 -1993-12-29,0.0,-26.825,0.34800000000000003,168.62,40.0,1.9593448216676759 -1993-12-30,0.38,-23.425,0.3480079861111111,161.95,62.84,1.8402686170359388 -1993-12-31,0.73,-18.905,0.3484641203703704,174.11,80.0,1.7320175219161775 -1994-01-01,1.25,-12.84,0.34921886574074074,163.81,120.0,1.6129413172844407 -1994-01-02,2.17,-8.38,0.35015162037037034,171.86,167.77,1.5263404411886317 -1994-01-03,0.0,-21.795,0.35120578703703703,183.41,40.0,1.4722148936287511 -1994-01-04,9.39,-21.41,0.3519482638888889,138.78,80.0,1.4072642365568944 -1994-01-05,8.79,-15.64,0.35200787037037035,69.5,148.99,1.3747889080209663 -1994-01-06,0.0,-20.169999999999998,0.35284641203703704,148.54,80.0,1.3098382509491096 -1994-01-07,0.0,-22.509999999999998,0.3541518518518519,146.59,76.92,1.266537812901205 -1994-01-08,8.72,-20.295,0.35571446759259256,113.38,80.0,1.2340624843652768 -1994-01-09,7.32,-19.84,0.35600000000000004,56.26,117.69,1.16911182729342 -1994-01-10,0.0,-18.835,0.3564643518518519,97.45,119.45,1.1366364987574917 -1994-01-11,0.0,-19.42,0.35815185185185183,204.34,80.0,1.1041611702215632 -1994-01-12,0.0,-17.235,0.3599482638888889,185.9,85.16,1.060860732173659 -1994-01-13,0.0,-13.95,0.36000787037037035,168.82,120.0,1.0283854036377307 -1994-01-14,8.13,-10.715,0.36121863425925926,108.19,190.96,0.9959100751018022 -1994-01-15,6.37,-14.45,0.3637142361111111,117.64,133.53,0.97425985607785 -1994-01-16,0.64,-24.71,0.36400011574074076,172.11,40.0,0.9471970822979098 -1994-01-17,9.36,-24.08,0.36521898148148146,155.96,40.0,0.9201343085179694 -1994-01-18,14.25,-16.830000000000002,0.36771435185185186,125.53,119.73,0.9038966442500053 -1994-01-19,0.0,-21.395,0.3680083333333333,218.22,54.38,0.882246425226053 -1994-01-20,0.0,-28.38,0.3696696759259259,228.35,40.0,0.8660087609580888 -1994-01-21,0.0,-23.88,0.3719483796296296,250.98,40.0,0.8551836514461127 -1994-01-22,0.01,-18.535,0.37211041666666667,234.33,80.0,0.8443585419341366 -1994-01-23,0.0,-23.475,0.3746479166666667,253.81,40.0,0.8335334324221606 -1994-01-24,2.51,-23.055,0.3760002314814815,183.0,45.56,0.8281208776661725 -1994-01-25,1.26,-24.599999999999998,0.3772188657407407,232.29,40.0,0.8172957681541964 -1994-01-26,0.0,-28.915,0.3799997685185186,246.31,40.0,0.8010581038862323 -1994-01-27,0.25,-26.29,0.3804640046296296,260.54,40.0,0.7956455491302442 -1994-01-28,10.24,-12.959999999999999,0.383714699074074,215.33,86.88,0.7794078848622801 -1994-01-29,11.7,-5.4350000000000005,0.38400833333333334,194.56,217.56,0.7577576658383279 -1994-01-30,0.0,-19.285,0.3866476851851852,253.25,80.0,0.7415200015703636 -1994-01-31,0.0,-25.770000000000003,0.38799999999999996,283.65,40.0,0.7252823373023994 -1994-02-01,0.0,-23.685000000000002,0.3901519675925926,293.39,40.0,0.7090446730344352 -1994-02-02,0.0,-20.805,0.39200034722222227,298.23,40.0,0.7036321182784472 -1994-02-03,0.0,-19.47,0.3936696759259259,307.72,40.0,0.6928070087664712 -1994-02-04,0.0,-17.1,0.39600023148148145,288.47,80.02,0.6765693444985069 -1994-02-05,0.07,-15.105,0.3972188657407407,287.96,84.85,0.6603316802305428 -1994-02-06,0.01,-14.385,0.40000023148148145,244.57,120.0,0.6440940159625786 -1994-02-07,1.02,-18.14,0.4012189814814815,196.03,99.31,0.6332689064506025 -1994-02-08,0.0,-26.310000000000002,0.40399999999999997,274.44,40.0,0.6224437969386264 -1994-02-09,0.0,-26.520000000000003,0.40521898148148144,272.62,40.0,0.6116186874266503 -1994-02-10,0.0,-23.02,0.4080003472222223,271.25,40.0,0.6007935779146741 -1994-02-11,0.0,-22.060000000000002,0.40966990740740744,320.4,40.0,0.589968468402698 -1994-02-12,0.0,-20.145,0.41200046296296294,340.37,40.0,0.579143358890722 -1994-02-13,5.25,-13.62,0.41464768518518513,215.6,128.15,0.5629056946227577 -1994-02-14,4.8,-12.309999999999999,0.4159996527777778,127.15,164.22,0.5574931398667697 -1994-02-15,0.0,-12.530000000000001,0.419205324074074,229.5,148.84,0.5466680303547936 -1994-02-16,0.0,-13.17,0.41999976851851856,304.79,120.0,0.5412554755988056 -1994-02-17,0.0,-14.4,0.42400011574074076,353.56,80.0,0.5250178113308414 -1994-02-18,0.0,-10.92,0.42400011574074076,296.1,143.25,0.5196052565748533 -1994-02-19,0.0,-6.21,0.428,333.79,200.0,0.5250178113308414 -1994-02-20,0.01,4.815,0.42846388888888887,298.15,502.25,0.5412554755988056 -1994-02-21,0.0,5.855,0.43200000000000005,235.61,630.15,0.5574931398667697 -1994-02-22,0.0,-5.71,0.4336695601851852,263.99,254.27,0.5629056946227577 -1994-02-23,0.0,-15.245000000000001,0.43600011574074077,260.75,119.97,0.5683182493787459 -1994-02-24,14.78,-14.89,0.4399488425925926,127.93,159.86,0.5629056946227577 -1994-02-25,12.72,-16.06,0.4400003472222222,169.26,120.0,0.5574931398667697 -1994-02-26,0.0,-15.295000000000002,0.4440001157407408,238.11,120.0,0.5412554755988056 -1994-02-27,0.0,-15.965,0.4440081018518519,252.9,120.0,0.5250178113308414 -1994-02-28,0.0,-15.114999999999998,0.4480001157407407,248.88,122.11,0.5196052565748533 -1994-03-01,0.0,-15.415,0.4501516203703704,283.92,120.04,0.5141927018188653 -1994-03-02,0.0,-17.72,0.452,429.84,67.02,0.5033675923068892 -1994-03-03,6.31,-14.07,0.45599953703703705,379.67,83.27,0.4925424827949131 -1994-03-04,8.64,-8.57,0.45599953703703705,195.06,232.62,0.487129928038925 -1994-03-05,0.2,-6.48,0.46,140.36,320.51,0.4763048185269489 -1994-03-06,0.0,-14.9,0.4604638888888889,474.62,80.0,0.47089226377096083 -1994-03-07,0.0,-9.73,0.463999537037037,468.53,127.74,0.4546545995029967 -1994-03-08,0.0,-1.0350000000000001,0.46799976851851854,343.38,376.55,0.4330043804790444 -1994-03-09,4.28,-3.5500000000000003,0.46799976851851854,287.97,281.83,0.4275918257230564 -1994-03-10,8.88,-3.585,0.4719996527777777,180.9,362.27,0.4330043804790444 -1994-03-11,1.47,-6.975,0.4719996527777777,257.28,270.74,0.4167667162110803 -1994-03-12,0.0,-14.875,0.4760001157407408,504.02,80.0,0.39511649718712805 -1994-03-13,0.0,-11.045,0.4800005787037037,492.03,120.0,0.37346627816317585 -1994-03-14,0.0,-3.3500000000000005,0.4800005787037037,375.4,313.75,0.35722861389521166 -1994-03-15,0.57,0.28,0.4840002314814815,263.37,479.44,0.35722861389521166 -1994-03-16,3.26,1.525,0.4840002314814815,123.75,600.0,0.3550635919928165 -1994-03-17,3.06,-2.8000000000000003,0.48800034722222224,211.58,385.98,0.3518160591392236 -1994-03-18,1.4,-6.4799999999999995,0.4919994212962963,239.49,300.87,0.34748601533443313 -1994-03-19,0.0,-6.21,0.4919994212962963,344.71,279.71,0.3464035043832356 -1994-03-20,1.47,-3.715,0.4959997685185185,372.76,322.53,0.34748601533443313 -1994-03-21,0.0,0.8699999999999999,0.4959997685185185,325.16,500.75,0.3496510372368284 -1994-03-22,5.75,0.32000000000000006,0.4999997685185186,280.55,479.1,0.3420734605784451 -1994-03-23,9.86,0.47,0.503999537037037,170.3,538.42,0.33774341677365466 -1994-03-24,1.72,-0.6299999999999999,0.503999537037037,396.34,411.64,0.33557839487125946 -1994-03-25,2.28,1.03,0.5079996527777778,346.62,490.77,0.3344958839200618 -1994-03-26,0.0,0.020000000000000018,0.5079996527777778,319.27,483.24,0.3399084386760499 -1994-03-27,1.52,-3.6449999999999996,0.511999537037037,447.33,286.31,0.3464035043832356 -1994-03-28,2.7,-0.8199999999999998,0.5159998842592592,287.69,445.16,0.35614610294401405 -1994-03-29,0.0,0.3799999999999999,0.5159998842592592,289.34,518.28,0.3680537234071878 -1994-03-30,0.0,-2.7649999999999997,0.520000462962963,441.07,349.92,0.37887883291916397 -1994-03-31,0.0,-1.56,0.520000462962963,406.19,399.74,0.39836403004072096 -1994-04-01,0.0,-2.9349999999999996,0.5240002314814816,422.06,358.73,0.41351918335748744 -1994-04-02,0.16,-9.115,0.5279998842592593,618.67,120.0,0.4330043804790444 -1994-04-03,6.86,-3.245,0.5279998842592593,408.19,294.02,0.4394994461862301 -1994-04-04,7.29,1.5200000000000002,0.5319998842592593,296.3,518.75,0.47089226377096083 -1994-04-05,0.16,1.8950000000000002,0.5319998842592593,506.03,470.5,0.48279988423413456 -1994-04-06,8.3,1.7600000000000002,0.5359994212962963,283.28,545.35,0.5131101908676677 -1994-04-07,16.6,-1.88,0.5395353009259259,175.96,464.46,0.545585519403596 -1994-04-08,9.16,-3.7299999999999995,0.54,435.3,324.27,0.579143358890722 -1994-04-09,0.0,-2.965,0.5439997685185185,630.96,260.48,0.6137837093290455 -1994-04-10,2.64,2.045,0.5439997685185185,479.32,456.51,0.651671592620962 -1994-04-11,0.78,3.1849999999999996,0.5479999999999999,459.27,569.21,0.720952293497609 -1994-04-12,0.0,1.4300000000000002,0.5498481481481481,614.57,400.27,0.7729128191550944 -1994-04-13,3.67,4.819999999999999,0.5520004629629629,580.13,474.32,0.9255468632739575 -1994-04-14,7.18,6.46,0.5559922453703704,420.07,639.37,1.4938651126527034 -1994-04-15,0.0,8.07,0.5560002314814815,529.82,740.27,2.2949232165389355 -1994-04-16,6.18,8.440000000000001,0.56,571.16,606.05,3.474860153344332 -1994-04-17,8.44,6.25,0.5600517361111111,414.87,640.0,5.694007603299435 -1994-04-18,0.0,1.725,0.5639996527777777,393.95,545.17,6.5708414737695 -1994-04-19,0.52,0.6849999999999998,0.5663305555555556,450.58,479.67,7.112096949368305 -1994-04-20,4.75,2.4699999999999998,0.5679997685185185,302.5,562.68,7.274473592047947 -1994-04-21,2.71,1.175,0.5715351851851852,354.54,514.99,7.328599139607827 -1994-04-22,0.0,-1.7000000000000002,0.5719994212962963,421.87,417.64,7.177047606440162 -1994-04-23,1.87,-2.62,0.5760005787037037,453.83,352.97,6.92807008766471 -1994-04-24,7.15,0.43500000000000005,0.5760005787037037,278.69,507.9,6.668267459377285 -1994-04-25,2.24,1.79,0.5800003472222222,419.12,509.66,6.43011505011381 -1994-04-26,0.67,2.385,0.5807946759259259,612.08,439.94,6.246088188410216 -1994-04-27,4.07,5.7250000000000005,0.5840005787037037,433.03,597.25,6.256913297922193 -1994-04-28,6.36,3.9699999999999998,0.5853530092592593,455.96,503.4,6.646617240353332 -1994-04-29,0.0,2.085,0.5880002314814815,587.55,440.0,6.754868335473093 -1994-04-30,1.8,5.115,0.5903311342592593,493.18,609.18,6.938895197176687 -1994-05-01,8.32,4.085,0.5920008101851852,303.98,636.1,7.144572277904234 -1994-05-02,7.57,3.08,0.5943310185185184,218.06,639.02,7.577576658383278 -1994-05-03,0.93,3.37,0.5959997685185184,566.25,520.0,7.631702205943158 -1994-05-04,0.0,8.095,0.5987809027777777,650.66,580.59,7.761603520086872 -1994-05-05,1.69,8.549999999999999,0.5999998842592592,570.28,604.87,8.021406148374298 -1994-05-06,7.49,6.625,0.6027810185185185,317.29,745.61,8.248733448125797 -1994-05-07,0.97,7.585,0.6039996527777778,571.86,677.13,8.37863476226951 -1994-05-08,4.64,5.75,0.6063304398148148,562.44,509.83,8.400284981293462 -1994-05-09,6.92,7.73,0.6079995370370371,392.66,729.36,8.616787171532984 -1994-05-10,0.03,9.85,0.6098476851851852,499.82,872.28,8.649262500068913 -1994-05-11,1.98,6.880000000000001,0.6120002314814815,601.35,579.28,8.46523563836532 -1994-05-12,8.14,7.875,0.6133524305555556,355.92,774.23,8.292033886173702 -1994-05-13,9.48,4.37,0.6159914351851852,283.33,657.94,8.118832133982083 -1994-05-14,4.41,3.46,0.6162851851851852,213.07,662.5,7.869854615206632 -1994-05-15,1.08,6.445,0.6195356481481481,454.97,720.02,7.555926439359325 -1994-05-16,0.0,9.33,0.6199998842592592,621.34,713.76,7.187872715952138 -1994-05-17,0.0,9.675,0.6227818287037037,589.78,777.14,6.808993883032974 -1994-05-18,0.36,8.91,0.6240006944444445,449.68,869.17,6.440940159625786 -1994-05-19,0.01,6.37,0.6253526620370371,590.77,608.66,6.094536655242551 -1994-05-20,0.0,8.32,0.6278895833333333,676.94,507.4,5.7048327128114105 -1994-05-21,0.0,11.88,0.6280518518518519,659.32,670.64,5.304303660868293 -1994-05-22,1.28,14.225,0.6303303240740741,630.22,711.3,4.936249937461107 -1994-05-23,5.37,14.22,0.6319916666666667,475.44,881.5,4.698097528197632 -1994-05-24,0.0,8.6,0.6322856481481481,656.55,533.84,4.405819571374277 -1994-05-25,0.0,11.100000000000001,0.6347809027777778,508.3,881.46,4.146016943086851 -1994-05-26,8.65,8.3,0.6360001157407408,351.5,767.21,3.907864533823376 -1994-05-27,14.86,4.425,0.6362856481481481,300.09,623.28,4.03776584796709 -1994-05-28,2.05,5.5200000000000005,0.6387810185185185,509.58,543.85,4.081066286014994 -1994-05-29,0.0,8.04,0.6399917824074074,570.52,653.41,3.9511649718712807 -1994-05-30,5.0,9.145,0.6400512731481481,493.24,713.55,3.8537389862634956 -1994-05-31,12.9,15.170000000000002,0.6418483796296296,355.91,1191.82,3.8537389862634956 -1994-06-01,6.9,18.36,0.6435354166666667,354.2,1425.81,3.84291387675152 -1994-06-02,13.28,10.29,0.6439998842592592,323.17,893.11,4.243442928694636 -1994-06-03,0.58,8.690000000000001,0.6442856481481481,436.4,800.0,4.308393585766492 -1994-06-04,0.0,10.02,0.6458482638888889,595.56,692.58,4.28674336674254 -1994-06-05,0.0,12.105,0.6471538194444444,622.76,695.51,4.200142490646731 -1994-06-06,7.32,15.57,0.6479927083333333,462.57,968.99,4.070241176503018 -1994-06-07,9.29,17.225,0.6480521990740741,291.77,1435.85,3.9295147528473287 -1994-06-08,9.07,13.445,0.6487947916666666,322.37,1096.0,3.9836403004072087 -1994-06-09,0.32,10.745,0.6498487268518519,518.16,809.5,3.84291387675152 -1994-06-10,0.0,9.945,0.6507814814814814,554.35,718.17,3.70218745309583 -1994-06-11,0.0,12.31,0.6515357638888889,597.61,739.73,3.561461029440141 -1994-06-12,0.24,16.745,0.6519921296296297,474.48,1235.14,3.409909496272475 -1994-06-13,12.6,17.27,0.6520001157407407,255.19,1466.9,3.31248351066469 -1994-06-14,14.71,19.135,0.6520517361111111,251.57,1661.55,3.3666090582245705 -1994-06-15,7.66,17.585,0.6522856481481482,373.75,1334.56,3.474860153344332 -1994-06-16,0.0,21.315,0.6527943287037037,488.75,1510.48,3.4532099343203795 -1994-06-17,0.0,23.78,0.653352662037037,413.37,1941.35,3.3449588392006184 -1994-06-18,12.03,21.465,0.653848611111111,348.63,1635.18,3.4532099343203795 -1994-06-19,16.44,19.64,0.653848611111111,299.83,1536.79,3.723837672119782 -1994-06-20,0.0,15.935,0.653848611111111,499.76,1005.38,3.626411686511997 -1994-06-21,11.61,16.87,0.6543310185185185,324.48,1348.23,3.528985700904212 -1994-06-22,17.6,16.53,0.6543310185185185,218.01,1439.56,3.6372367960239735 -1994-06-23,0.0,15.93,0.653848611111111,337.01,1339.4,3.583111248464093 -1994-06-24,0.0,16.02,0.653848611111111,445.63,1162.91,3.464035043832355 -1994-06-25,1.47,15.765,0.653352662037037,415.22,1119.63,3.31248351066469 -1994-06-26,6.36,18.32,0.653352662037037,237.82,1582.28,3.2258826345688814 -1994-06-27,4.04,19.335,0.6527943287037037,273.34,1594.42,3.0526808823772633 -1994-06-28,8.38,20.380000000000003,0.6522856481481482,224.2,1819.9,2.9552548967694783 -1994-06-29,17.3,21.135,0.6520517361111111,255.7,1833.63,2.8686540206736693 -1994-06-30,4.0,21.759999999999998,0.6519921296296297,286.44,1927.02,2.7712280350658847 -1994-07-01,11.28,20.240000000000002,0.6518894675925926,227.11,1815.84,2.8794791301856457 -1994-07-02,7.42,19.735,0.6511538194444445,299.09,1577.73,2.8470038016497177 -1994-07-03,6.14,17.630000000000003,0.6503311342592593,363.28,1305.84,2.8037033636018127 -1994-07-04,0.0,14.565,0.6493528935185184,462.8,1024.94,2.6088513923862426 -1994-07-05,3.77,14.61,0.6482863425925927,452.27,941.31,2.4681249687305535 -1994-07-06,5.38,17.175,0.6480008101851852,307.44,1335.02,2.3706989831227685 -1994-07-07,2.52,17.625,0.647890162037037,336.66,1441.39,2.229972559467079 -1994-07-08,7.97,16.575,0.64678125,217.08,1470.4,2.14337168337127 -1994-07-09,4.65,16.095,0.645352199074074,223.25,1420.41,2.121721464347318 -1994-07-10,3.71,19.5,0.6440515046296297,244.8,1731.4,2.035120588251509 -1994-07-11,0.56,18.395,0.6438894675925926,404.15,1445.81,1.9268694931317478 -1994-07-12,0.0,17.795,0.6427809027777778,463.07,1294.32,1.8077932885000105 -1994-07-13,0.06,19.545,0.6407940972222222,386.3,1610.69,1.6778919743562972 -1994-07-14,0.5,15.86,0.6399997685185186,486.96,1026.44,1.5588157697245602 -1994-07-15,0.0,17.125,0.6395354166666667,479.49,1178.25,1.461389784116775 -1994-07-16,2.11,18.975,0.6378482638888888,372.1,1508.69,1.3747889080209663 -1994-07-17,0.0,18.96,0.6360001157407408,463.92,1355.25,1.277362922413181 -1994-07-18,0.03,19.560000000000002,0.6355359953703703,418.83,1522.35,1.2124122653413245 -1994-07-19,8.81,19.575,0.6338483796296296,252.4,1720.01,1.158286717781444 -1994-07-20,0.0,19.58,0.6319996527777777,430.59,1500.7,1.0825109511976112 -1994-07-21,1.43,21.7,0.6315355324074073,436.6,1528.35,1.0229728488817424 -1994-07-22,5.19,23.79,0.6287943287037038,270.92,2110.37,0.9991576079553951 -1994-07-23,6.09,23.71,0.628,216.26,2291.65,0.9883324984434189 -1994-07-24,2.31,22.310000000000002,0.6267813657407407,306.27,1973.61,0.9710123232242571 -1994-07-25,2.86,20.395,0.624052199074074,354.95,1670.63,0.9374544837371314 -1994-07-26,14.06,20.66,0.6238902777777778,281.93,1740.38,0.9461145713467122 -1994-07-27,18.54,20.17,0.6207944444444444,269.12,1723.36,1.0067351846137784 -1994-07-28,4.12,17.16,0.6199998842592592,324.59,1402.12,0.9688473013218619 -1994-07-29,10.72,18.355,0.6183303240740741,274.71,1531.69,0.9699298122730595 -1994-07-30,0.05,16.98,0.615999537037037,470.48,1162.56,0.9428670384931193 -1994-07-31,0.0,20.189999999999998,0.6151532407407407,369.27,1677.48,0.9233818413715623 -1994-08-01,0.81,20.815,0.6120002314814815,370.55,1706.19,0.8963190675916219 -1994-08-02,2.98,19.669999999999998,0.6115356481481482,294.08,1707.13,0.8497710966901247 -1994-08-03,8.48,16.405,0.6080510416666667,224.53,1440.33,0.8183782791053941 -1994-08-04,4.5,18.825,0.6078891203703704,317.01,1487.41,0.7978105710326394 -1994-08-05,7.09,17.18,0.6042853009259259,283.56,1388.61,0.773995330106292 -1994-08-06,0.06,11.36,0.6039916666666666,468.72,814.11,0.7382724687167708 -1994-08-07,0.0,13.584999999999999,0.6002854166666667,488.62,874.57,0.710127183985633 -1994-08-08,0.0,16.810000000000002,0.5999998842592592,468.37,1118.6,0.6841469211568902 -1994-08-09,0.0,18.235,0.5962851851851851,437.08,1303.75,0.6592491692793452 -1994-08-10,2.72,17.185000000000002,0.5959997685185184,341.16,1336.69,0.6365164393041954 -1994-08-11,0.14,13.440000000000001,0.5920523148148148,459.45,920.0,0.5986285560122789 -1994-08-12,1.01,13.515,0.591992824074074,418.37,931.13,0.565070716525153 -1994-08-13,0.0,15.225,0.5880002314814815,433.9,1076.36,0.5466680303547936 -1994-08-14,6.13,17.79,0.5879922453703703,266.9,1429.42,0.5369254317940151 -1994-08-15,9.38,13.854999999999999,0.5840005787037037,295.74,1070.27,0.5239353003796438 -1994-08-16,0.0,13.665000000000001,0.5835359953703704,351.52,1125.62,0.4892949499413202 -1994-08-17,0.0,16.259999999999998,0.5800003472222222,428.22,1160.07,0.46980975281976317 -1994-08-18,0.0,16.295,0.5787818287037036,354.78,1310.56,0.44382948999102056 -1994-08-19,0.0,14.98,0.5760005787037037,354.33,1210.73,0.4243442928694635 -1994-08-20,0.0,17.5,0.5738478009259259,441.84,1191.68,0.4081066286014994 -1994-08-21,9.57,18.665,0.5719994212962963,263.88,1496.29,0.41568420525988264 -1994-08-22,8.81,12.39,0.5680513888888888,288.02,993.92,0.42650931477185877 -1994-08-23,0.0,10.795,0.5679997685185185,437.07,767.79,0.40052905194311617 -1994-08-24,0.0,11.84,0.5639996527777777,454.31,775.76,0.3864564095775472 -1994-08-25,0.47,14.115,0.5639916666666667,455.69,869.36,0.3669712124559901 -1994-08-26,1.96,18.119999999999997,0.56,345.4,1300.31,0.3550635919928165 -1994-08-27,1.66,19.21,0.558330324074074,347.35,1462.47,0.3420734605784451 -1994-08-28,4.99,15.33,0.5560002314814815,370.62,1037.53,0.33557839487125946 -1994-08-29,11.83,15.015,0.5520519675925926,214.7,1276.6,0.3821263657727567 -1994-08-30,0.0,12.35,0.5520004629629629,292.96,1057.01,0.3464035043832356 -1994-08-31,0.0,10.325,0.5479999999999999,326.54,885.75,0.325835796310481 -1994-09-01,0.0,8.96,0.5479921296296296,377.87,720.76,0.3106806429937144 -1994-09-02,0.0,9.44,0.5439997685185185,351.67,785.54,0.2911954458721574 -1994-09-03,0.0,9.26,0.540794212962963,380.89,722.88,0.2771228035065884 -1994-09-04,0.0,9.299999999999999,0.54,426.9,624.62,0.26413267209221714 -1994-09-05,8.68,9.975,0.5359994212962963,290.41,763.42,0.253307562580241 -1994-09-06,9.49,9.795,0.5359994212962963,143.11,985.24,0.25872011733622907 -1994-09-07,4.98,10.79,0.5319998842592593,150.15,1056.66,0.28794791301856454 -1994-09-08,1.15,12.105,0.5298482638888888,272.19,1059.6,0.28470038016497173 -1994-09-09,4.64,12.095,0.5279998842592593,331.66,918.75,0.28686540206736694 -1994-09-10,9.55,11.46,0.5240002314814816,224.79,959.88,0.3453209934320379 -1994-09-11,4.45,10.545,0.5240002314814816,180.19,990.37,0.3453209934320379 -1994-09-12,2.52,11.25,0.520000462962963,178.34,1092.62,0.33882592772485226 -1994-09-13,0.52,11.07,0.5183310185185186,255.6,1007.68,0.33882592772485226 -1994-09-14,0.0,11.11,0.5159998842592592,312.85,931.51,0.33666090582245706 -1994-09-15,0.0,10.175,0.511999537037037,383.82,740.1,0.3301658401152714 -1994-09-16,0.52,10.155,0.511999537037037,403.25,672.33,0.3301658401152714 -1994-09-17,5.43,13.629999999999999,0.5079996527777778,273.91,955.84,0.3409909496272475 -1994-09-18,1.27,9.465,0.5067805555555556,374.45,640.0,0.33882592772485226 -1994-09-19,0.0,6.4350000000000005,0.503999537037037,318.32,641.48,0.33124835106646905 -1994-09-20,1.54,7.05,0.4999997685185186,348.83,598.06,0.3225882634568881 -1994-09-21,0.0,8.805,0.4999997685185186,370.82,643.88,0.3139281758473072 -1994-09-22,0.0,8.945,0.4959997685185185,380.48,624.67,0.3074331101401216 -1994-09-23,0.0,9.675,0.49366840277777774,365.94,681.97,0.30093804443293587 -1994-09-24,1.19,11.780000000000001,0.4919994212962963,277.13,954.88,0.29336046777455266 -1994-09-25,0.45,14.934999999999999,0.48800034722222224,218.72,1315.41,0.28470038016497173 -1994-09-26,0.0,15.84,0.48800034722222224,274.59,1284.81,0.27928782540898367 -1994-09-27,0.51,15.595,0.4840002314814815,304.05,1172.92,0.27495778160419326 -1994-09-28,13.39,14.0,0.48167002314814816,200.53,1149.0,0.29985553348173827 -1994-09-29,12.91,13.435,0.4800005787037037,167.36,1186.93,0.364806190553595 -1994-09-30,5.6,9.275,0.4760001157407408,176.62,877.92,0.37996134387036146 -1994-10-01,0.0,5.64,0.4760001157407408,190.55,731.03,0.3518160591392236 -1994-10-02,0.0,4.225,0.4719996527777777,288.53,562.09,0.33666090582245706 -1994-10-03,0.0,6.015000000000001,0.4701513888888889,256.9,670.4,0.3236707744080857 -1994-10-04,0.0,7.865,0.46799976851851854,229.24,805.05,0.31501068679850486 -1994-10-05,0.0,7.165,0.463999537037037,211.58,793.1,0.3106806429937144 -1994-10-06,0.0,4.76,0.463999537037037,285.98,573.46,0.29985553348173827 -1994-10-07,0.0,6.83,0.46,332.56,560.28,0.292277956823355 -1994-10-08,0.0,12.33,0.45920532407407405,325.22,795.98,0.28578289111616934 -1994-10-09,0.66,14.68,0.45599953703703705,308.71,973.25,0.2814528473113789 -1994-10-10,1.94,11.495000000000001,0.45200810185185186,260.15,915.98,0.2771228035065884 -1994-10-11,0.0,4.3149999999999995,0.452,217.81,609.32,0.25872011733622907 -1994-10-12,0.0,2.2150000000000003,0.4480001157407407,285.74,439.69,0.2543900735314386 -1994-10-13,0.0,6.235,0.4480001157407407,315.37,488.43,0.2511425406778458 -1994-10-14,0.0,6.57,0.4440001157407408,288.15,569.06,0.23923492021467205 -1994-10-15,0.0,2.09,0.44166932870370373,264.44,448.12,0.22840981070269592 -1994-10-16,0.0,3.6599999999999997,0.4400003472222222,248.58,522.23,0.21758470119071982 -1994-10-17,0.0,4.19,0.43611064814814815,279.93,481.08,0.214337168337127 -1994-10-18,0.0,4.154999999999999,0.43600011574074077,288.45,449.83,0.21108963548353415 -1994-10-19,0.0,7.195,0.43200000000000005,284.59,556.69,0.20892461358113892 -1994-10-20,3.25,7.3950000000000005,0.43194837962962956,234.24,626.53,0.20892461358113892 -1994-10-21,10.99,8.14,0.428,82.26,925.17,0.23815240926347445 -1994-10-22,4.99,9.855,0.4261517361111111,50.57,1118.66,0.25006002972664815 -1994-10-23,3.06,8.684999999999999,0.42400011574074076,68.97,980.86,0.2619676501898219 -1994-10-24,0.31,8.879999999999999,0.42121863425925926,179.13,868.54,0.272792759701798 -1994-10-25,0.51,7.075,0.41999976851851856,248.49,622.27,0.2738752706529956 -1994-10-26,0.0,5.23,0.4164640046296296,243.37,553.49,0.28686540206736694 -1994-10-27,0.0,3.0349999999999997,0.4159996527777778,230.65,489.56,0.2760402925553908 -1994-10-28,0.0,3.965,0.4121109953703704,234.46,507.95,0.2738752706529956 -1994-10-29,0.0,6.85,0.41200046296296294,228.98,622.41,0.2738752706529956 -1994-10-30,0.0,9.815000000000001,0.4080084490740741,176.78,893.27,0.2695452268482052 -1994-10-31,1.28,5.84,0.40794895833333333,207.5,562.73,0.26521518304341474 -1994-11-01,16.58,5.380000000000001,0.40399999999999997,121.75,662.21,0.29769051157934306 -1994-11-02,23.49,5.8100000000000005,0.4037145833333334,72.11,782.75,0.47955235138054175 -1994-11-03,14.12,4.3,0.40000023148148145,114.88,621.28,0.7166222496928185 -1994-11-04,1.49,4.380000000000001,0.39971435185185183,194.5,526.8,0.7317774030095852 -1994-11-05,2.38,8.33,0.3960082175925926,183.24,714.26,0.8183782791053941 -1994-11-06,6.4,4.58,0.39571446759259266,161.31,508.56,0.9179692866155742 -1994-11-07,8.74,3.38,0.3921108796296296,112.6,580.29,1.0673557978808446 -1994-11-08,1.27,2.505,0.3919487268518519,131.81,557.14,1.1474616082694677 -1994-11-09,0.0,3.38,0.3884644675925926,122.36,614.8,1.2015871558293483 -1994-11-10,0.34,2.045,0.38799999999999996,125.79,552.99,1.2340624843652768 -1994-11-11,0.0,0.44499999999999984,0.3848466435185185,101.72,524.39,1.2448875938772528 -1994-11-12,0.0,0.32499999999999973,0.3840003472222222,142.51,474.56,1.266537812901205 -1994-11-13,0.0,0.2250000000000001,0.38166932870370374,168.13,438.31,1.266537812901205 -1994-11-14,0.22,2.155,0.3799997685185186,195.18,446.83,1.266537812901205 -1994-11-15,0.0,5.515000000000001,0.37920590277777777,177.39,610.53,1.2448875938772528 -1994-11-16,0.0,3.405,0.37611087962962964,186.55,500.22,1.2124122653413245 -1994-11-17,0.0,1.6600000000000001,0.3759486111111111,201.0,400.38,1.1907620463173723 -1994-11-18,0.01,3.34,0.37321898148148147,202.39,433.62,1.158286717781444 -1994-11-19,1.24,5.015000000000001,0.3719998842592593,174.81,578.63,1.1258113892455155 -1994-11-20,0.0,0.6299999999999999,0.37120578703703705,163.15,435.71,1.066273286929647 -1994-11-21,1.75,-2.4799999999999995,0.3684645833333333,168.86,320.0,1.040293024100904 -1994-11-22,4.16,1.7799999999999998,0.3680003472222222,124.53,462.96,1.0424580460032995 -1994-11-23,1.25,-4.275,0.36615196759259255,157.68,285.77,0.9937450531994071 -1994-11-24,1.12,-7.655,0.3644642361111111,125.31,265.97,0.9417845275419217 -1994-11-25,1.43,-6.91,0.36400011574074076,163.84,240.0,0.9125567318595862 -1994-11-26,0.0,-7.205,0.3621513888888889,153.53,245.41,0.8681737828604842 -1994-11-27,0.0,-11.03,0.3604638888888889,179.59,160.0,0.8216258119589868 -1994-11-28,12.4,-9.3,0.3599998842592593,138.24,190.66,0.8032231257886274 -1994-11-29,11.92,-3.1400000000000006,0.35920578703703704,131.04,319.0,0.7891504834230585 -1994-11-30,0.01,-5.885000000000001,0.3572189814814815,158.5,279.78,0.7512626001311421 -1994-12-01,0.15,-8.8,0.35611041666666665,150.67,225.74,0.7361074468143756 -1994-12-02,3.87,-6.775,0.3559483796296296,139.05,226.75,0.7285298701559924 -1994-12-03,3.33,0.16000000000000014,0.3546476851851852,96.86,477.09,0.710127183985633 -1994-12-04,5.39,2.15,0.35321898148148145,90.49,560.0,0.7047146292296448 -1994-12-05,4.77,-0.7949999999999999,0.35211030092592593,118.21,440.0,0.7003845854248544 -1994-12-06,12.29,-0.79,0.35199988425925927,56.34,493.4,0.8086356805446154 -1994-12-07,2.0,-4.34,0.35171423611111113,112.4,340.58,0.8194607900565917 -1994-12-08,0.0,-8.735,0.3506474537037037,136.1,234.6,0.7869854615206633 -1994-12-09,0.74,-8.645,0.34966921296296294,152.95,203.7,0.7967280600814419 -1994-12-10,4.21,-6.779999999999999,0.3488465277777778,112.17,256.26,0.8053881476910227 -1994-12-11,11.89,-5.78,0.3481105324074074,87.78,308.42,0.7913155053254537 -1994-12-12,4.95,-12.175,0.3480079861111111,132.74,154.25,0.7826554177158728 -1994-12-13,0.0,-18.759999999999998,0.34794849537037037,177.01,80.0,0.7415200015703636 -1994-12-14,0.0,-20.655,0.34771435185185184,192.74,40.96,0.7090446730344352 -1994-12-15,0.0,-18.035,0.3472057870370371,188.29,80.0,0.681981899254495 -1994-12-16,0.02,-15.005,0.3466476851851852,190.9,89.13,0.6603316802305428 -1994-12-17,0.09,-12.36,0.3466476851851852,180.6,131.49,0.6278563516946144 -1994-12-18,4.04,-5.99,0.3461518518518519,83.18,294.49,0.6062061326706623 -1994-12-19,3.2,-5.33,0.3461518518518519,63.16,341.85,0.589968468402698 -1994-12-20,0.0,-9.82,0.3456693287037037,165.66,199.34,0.5737308041347339 -1994-12-21,0.0,-6.97,0.3456693287037037,188.32,200.0,0.5683182493787459 -1994-12-22,0.0,1.4949999999999999,0.3461518518518519,135.24,497.64,0.5629056946227577 -1994-12-23,0.0,-0.56,0.3461518518518519,170.04,360.58,0.5683182493787459 -1994-12-24,0.0,-1.81,0.3461518518518519,134.39,395.03,0.5499155632083865 -1994-12-25,0.0,-4.220000000000001,0.3466476851851852,156.35,293.76,0.5250178113308414 -1994-12-26,0.0,-5.52,0.3472057870370371,137.23,291.72,0.5087801470628772 -1994-12-27,0.45,-10.705,0.34771435185185184,173.24,160.0,0.4925424827949131 -1994-12-28,3.41,-7.459999999999999,0.34794849537037037,119.44,234.44,0.48171737328293696 -1994-12-29,3.8,-7.76,0.34800000000000003,110.05,240.37,0.47089226377096083 -1994-12-30,0.0,-15.42,0.3480079861111111,148.6,119.94,0.4600671542589847 -1994-12-31,0.0,-15.08,0.3484641203703704,159.18,120.0,0.4394994461862301 -1995-01-01,2.9,-11.955000000000002,0.34921886574074074,124.06,167.46,0.43083935857664923 -1995-01-02,2.73,-8.79,0.35015162037037034,88.36,253.39,0.4232617819182659 -1995-01-03,0.99,-10.595,0.35120578703703703,137.14,200.0,0.4167667162110803 -1995-01-04,1.37,-13.315000000000001,0.3519482638888889,182.73,135.51,0.4113541614550923 -1995-01-05,0.0,-16.135,0.35200787037037035,207.26,80.0,0.4059416066991042 -1995-01-06,3.77,-12.265,0.35284641203703704,168.2,132.94,0.4037765847967089 -1995-01-07,8.8,-6.545,0.3541518518518519,73.51,312.91,0.40052905194311617 -1995-01-08,3.96,-16.03,0.35571446759259256,175.12,80.11,0.3972815190895233 -1995-01-09,0.0,-15.329999999999998,0.35600000000000004,209.09,119.19,0.39295147528473284 -1995-01-10,0.0,-23.395,0.3564643518518519,225.22,40.0,0.3907864533823376 -1995-01-11,0.56,-29.65,0.35815185185185183,220.73,40.0,0.38753892052874483 -1995-01-12,11.07,-23.029999999999998,0.3599482638888889,174.1,40.0,0.3810438548215591 -1995-01-13,11.77,-11.4,0.36000787037037035,147.95,160.05,0.37563130006557105 -1995-01-14,1.98,-3.995,0.36121863425925926,139.46,346.53,0.37346627816317585 -1995-01-15,9.98,2.0599999999999996,0.3637142361111111,138.0,500.43,0.3713012562607806 -1995-01-16,22.65,3.3499999999999996,0.36400011574074076,120.36,586.67,0.38970394243114004 -1995-01-17,24.05,-1.0050000000000001,0.36521898148148146,69.12,491.39,0.46547970901497276 -1995-01-18,9.76,-4.800000000000001,0.36771435185185186,125.36,317.54,0.6170312421826384 -1995-01-19,0.0,-3.295,0.3680083333333333,115.9,402.4,0.7469325563263517 -1995-01-20,0.27,-1.105,0.3696696759259259,85.26,496.09,0.9959100751018022 -1995-01-21,11.06,-2.4349999999999996,0.3719483796296296,61.08,453.48,1.2881880319251573 -1995-01-22,7.36,-4.205,0.37211041666666667,47.56,415.27,1.6887170838682732 -1995-01-23,5.17,-5.4399999999999995,0.3746479166666667,54.82,363.7,1.764492850452106 -1995-01-24,0.0,-7.08,0.3760002314814815,112.05,298.98,1.8186183980119868 -1995-01-25,0.0,-9.895,0.3772188657407407,217.61,200.0,1.851093726547915 -1995-01-26,0.0,-13.84,0.3799997685185186,244.93,121.7,1.861918836059891 -1995-01-27,0.0,-17.615,0.3804640046296296,224.46,118.46,1.851093726547915 -1995-01-28,0.0,-16.494999999999997,0.383714699074074,202.18,120.0,1.829443507523963 -1995-01-29,0.0,-13.245000000000001,0.38400833333333334,251.27,134.19,1.8077932885000105 -1995-01-30,0.0,-11.715,0.3866476851851852,249.7,160.0,1.764492850452106 -1995-01-31,5.04,-16.355,0.38799999999999996,242.29,80.0,1.6778919743562972 -1995-02-01,3.87,-9.965,0.3901519675925926,186.7,183.58,1.6021162077724647 -1995-02-02,0.0,-10.91,0.39200034722222227,261.52,160.0,1.5263404411886317 -1995-02-03,0.0,-18.84,0.3936696759259259,290.03,80.0,1.4830400031407271 -1995-02-04,7.2,-19.395,0.39600023148148145,279.57,40.14,1.4289144555808466 -1995-02-05,16.07,-14.559999999999999,0.3972188657407407,209.05,123.93,1.3747889080209663 -1995-02-06,2.76,-21.32,0.40000023148148145,248.75,71.31,1.3206633604610856 -1995-02-07,0.0,-25.314999999999998,0.4012189814814815,225.52,40.0,1.277362922413181 -1995-02-08,0.0,-21.73,0.40399999999999997,299.84,77.72,1.2232373748533005 -1995-02-09,0.0,-18.77,0.40521898148148144,332.13,80.0,1.179936936805396 -1995-02-10,0.65,-13.955,0.4080003472222223,275.36,136.82,1.1366364987574917 -1995-02-11,2.13,-12.845,0.40966990740740744,321.62,120.0,1.1041611702215632 -1995-02-12,0.0,-13.524999999999999,0.41200046296296294,303.52,133.9,1.071685841685635 -1995-02-13,0.0,-18.735,0.41464768518518513,346.27,80.0,1.0392105131497067 -1995-02-14,0.0,-14.8,0.4159996527777778,332.52,120.0,1.0067351846137784 -1995-02-15,2.95,-14.25,0.419205324074074,329.66,80.0,0.97425985607785 -1995-02-16,6.23,-8.395,0.41999976851851856,269.79,172.85,0.9417845275419217 -1995-02-17,0.0,-13.1,0.42400011574074076,375.19,98.22,0.9201343085179694 -1995-02-18,0.0,-11.475,0.42400011574074076,351.64,131.93,0.8984840894940173 -1995-02-19,0.0,-7.625,0.428,369.02,160.0,0.8660087609580888 -1995-02-20,0.0,-7.5249999999999995,0.42846388888888887,348.65,199.99,0.8389459871781486 -1995-02-21,0.0,-9.620000000000001,0.43200000000000005,277.07,200.0,0.8172957681541964 -1995-02-22,0.0,-12.795,0.4336695601851852,341.13,120.0,0.7956455491302442 -1995-02-23,0.51,-10.94,0.43600011574074077,362.1,120.0,0.7794078848622801 -1995-02-24,9.72,-5.289999999999999,0.4399488425925926,217.6,279.99,0.7577576658383279 -1995-02-25,8.2,-11.12,0.4400003472222222,243.74,158.46,0.7469325563263517 -1995-02-26,0.0,-18.38,0.4440001157407408,295.93,80.0,0.7252823373023994 -1995-02-27,1.46,-22.685,0.4440081018518519,364.05,40.0,0.7036321182784472 -1995-02-28,3.05,-13.91,0.4480001157407407,232.29,132.72,0.6928070087664712 -1995-03-01,2.46,-10.205,0.4501516203703704,215.76,200.0,0.6765693444985069 -1995-03-02,0.08,-11.445,0.452,280.2,174.66,0.6603316802305428 -1995-03-03,0.0,-18.565,0.45599953703703705,452.55,40.0,0.6495065707185667 -1995-03-04,0.0,-14.32,0.45599953703703705,454.8,80.0,0.6386814612065905 -1995-03-05,2.9,-10.595,0.46,382.45,120.0,0.6278563516946144 -1995-03-06,11.86,-10.425,0.4604638888888889,242.65,174.63,0.6170312421826384 -1995-03-07,4.71,-10.21,0.463999537037037,270.92,170.72,0.6062061326706623 -1995-03-08,8.49,-1.4999999999999996,0.46799976851851854,320.15,288.99,0.6007935779146741 -1995-03-09,12.0,-4.654999999999999,0.46799976851851854,266.34,269.69,0.5953810231586861 -1995-03-10,1.67,-13.14,0.4719996527777777,252.29,160.0,0.589968468402698 -1995-03-11,0.0,-15.600000000000001,0.4719996527777777,452.12,83.47,0.5867209355491053 -1995-03-12,0.0,-14.67,0.4760001157407408,504.34,80.0,0.5953810231586861 -1995-03-13,0.0,-2.645,0.4800005787037037,223.07,395.83,0.6386814612065905 -1995-03-14,0.0,1.1,0.4800005787037037,175.37,559.16,0.6928070087664712 -1995-03-15,0.0,2.3200000000000003,0.4840002314814815,149.28,621.74,0.6928070087664712 -1995-03-16,2.6,1.83,0.4840002314814815,128.78,604.3,0.6949720306688663 -1995-03-17,3.77,1.035,0.48800034722222224,94.77,600.0,0.6906419868640759 -1995-03-18,0.04,0.14500000000000002,0.4919994212962963,226.5,499.71,0.681981899254495 -1995-03-19,0.0,-1.335,0.4919994212962963,417.75,357.5,0.6787343664009022 -1995-03-20,0.0,-2.1200000000000006,0.4959997685185185,522.95,256.19,0.6873944540104832 -1995-03-21,2.64,1.8100000000000005,0.4959997685185185,373.25,437.64,0.6928070087664712 -1995-03-22,4.54,4.07,0.4999997685185186,190.41,640.0,0.7426025125215612 -1995-03-23,1.77,-0.725,0.503999537037037,201.81,490.8,0.8010581038862323 -1995-03-24,0.72,-4.92,0.503999537037037,289.96,328.91,0.8432760309829391 -1995-03-25,0.0,-5.22,0.5079996527777778,253.91,334.14,0.8898240018844364 -1995-03-26,0.0,-3.38,0.5079996527777778,214.57,409.13,0.9179692866155742 -1995-03-27,0.0,-3.5799999999999996,0.511999537037037,412.81,321.68,0.9439495494443169 -1995-03-28,0.0,-2.07,0.5159998842592592,500.25,321.24,0.9580221918098859 -1995-03-29,0.0,-0.7999999999999994,0.5159998842592592,551.26,320.0,0.9785898998826404 -1995-03-30,0.0,1.2049999999999996,0.520000462962963,532.0,394.78,1.0153952722233592 -1995-03-31,0.93,2.31,0.520000462962963,331.86,560.25,1.0597782212224613 -1995-04-01,3.92,-2.4050000000000002,0.5240002314814816,271.87,387.33,1.1041611702215632 -1995-04-02,0.0,-4.62,0.5279998842592593,510.94,280.0,1.1366364987574917 -1995-04-03,0.0,-3.55,0.5279998842592593,585.75,246.29,1.158286717781444 -1995-04-04,4.04,-1.545,0.5319998842592593,462.18,356.26,1.2015871558293483 -1995-04-05,4.03,-12.135000000000002,0.5319998842592593,431.07,141.23,1.2232373748533005 -1995-04-06,0.0,-10.385,0.5359994212962963,553.9,160.09,1.2340624843652768 -1995-04-07,0.0,-4.7749999999999995,0.5395353009259259,561.92,262.69,1.2340624843652768 -1995-04-08,0.0,-3.0999999999999996,0.54,617.24,251.19,1.2340624843652768 -1995-04-09,1.14,-0.42500000000000027,0.5439997685185185,510.74,387.64,1.2448875938772528 -1995-04-10,0.0,-1.355,0.5439997685185185,519.79,371.41,1.2340624843652768 -1995-04-11,0.0,-2.0949999999999998,0.5479999999999999,599.09,312.98,1.2448875938772528 -1995-04-12,2.39,-0.1499999999999999,0.5498481481481481,469.08,409.53,1.2557127033892288 -1995-04-13,7.71,3.61,0.5520004629629629,348.28,578.78,1.3098382509491096 -1995-04-14,6.55,3.25,0.5559922453703704,307.37,588.95,1.4180893460688704 -1995-04-15,3.17,1.9649999999999999,0.5560002314814815,241.99,582.05,1.5588157697245602 -1995-04-16,0.24,1.445,0.56,420.85,510.32,1.7320175219161775 -1995-04-17,0.0,2.1950000000000003,0.5600517361111111,465.29,518.35,1.8943941645958196 -1995-04-18,0.0,2.0650000000000004,0.5639996527777777,558.36,451.12,2.14337168337127 -1995-04-19,3.71,1.8649999999999998,0.5663305555555556,520.02,432.28,2.4789500782425296 -1995-04-20,5.56,3.79,0.5679997685185185,356.65,581.09,3.0418557728652873 -1995-04-21,0.89,3.96,0.5715351851851852,571.03,486.27,3.648061905535949 -1995-04-22,4.3,4.74,0.5719994212962963,337.13,632.54,4.524895776006015 -1995-04-23,2.83,1.975,0.5760005787037037,274.39,577.14,5.26100322282039 -1995-04-24,0.0,0.5749999999999997,0.5760005787037037,482.7,453.06,5.607406727203625 -1995-04-25,0.0,1.265,0.5800003472222222,493.46,465.77,5.8239089174431475 -1995-04-26,0.0,2.59,0.5807946759259259,580.2,453.28,5.8455591364671 -1995-04-27,0.0,4.385,0.5840005787037037,570.27,517.42,5.9538102315868615 -1995-04-28,0.0,3.9250000000000003,0.5853530092592593,628.78,435.77,6.137837093290456 -1995-04-29,5.26,3.3800000000000003,0.5880002314814815,374.63,558.75,6.419289940601834 -1995-04-30,0.0,3.7800000000000002,0.5903311342592593,543.89,535.28,6.538366145233571 -1995-05-01,0.0,7.180000000000001,0.5920008101851852,636.77,511.95,6.733218116449141 -1995-05-02,0.0,7.194999999999999,0.5943310185185184,662.74,450.7,7.01467096376052 -1995-05-03,0.0,8.275,0.5959997685185184,645.61,514.02,7.20952293497609 -1995-05-04,0.0,8.3,0.5987809027777777,647.74,504.77,7.328599139607827 -1995-05-05,0.0,8.615,0.5999998842592592,661.6,480.22,7.339424249119803 -1995-05-06,4.46,6.765,0.6027810185185185,405.77,638.84,7.241998263512018 -1995-05-07,3.04,0.23499999999999988,0.6039996527777778,361.85,433.74,6.993020744736568 -1995-05-08,4.12,3.8899999999999997,0.6063304398148148,407.53,544.66,6.744043225961117 -1995-05-09,0.0,6.49,0.6079995370370371,649.63,435.72,6.462590378649739 -1995-05-10,0.0,7.59,0.6098476851851852,674.07,408.26,6.170312421826384 -1995-05-11,0.0,9.825000000000001,0.6120002314814815,629.28,555.31,5.867209355491053 -1995-05-12,1.98,10.36,0.6133524305555556,412.71,913.06,5.585756508179673 -1995-05-13,3.37,11.645,0.6159914351851852,327.17,1038.42,5.31512877038027 -1995-05-14,0.0,13.765,0.6162851851851852,513.8,933.64,5.001200594532963 -1995-05-15,0.0,11.385,0.6195356481481481,519.95,795.3,4.708922637709608 -1995-05-16,3.61,9.07,0.6199998842592592,239.51,926.71,4.394994461862301 -1995-05-17,7.69,8.065,0.6227818287037037,284.03,818.29,4.146016943086851 -1995-05-18,9.12,7.2,0.6240006944444445,202.7,847.73,4.135191833574875 -1995-05-19,3.75,8.77,0.6253526620370371,271.43,894.32,4.026940738455114 -1995-05-20,0.69,9.075,0.6278895833333333,498.55,751.62,3.8753892052874477 -1995-05-21,3.29,10.594999999999999,0.6280518518518519,460.28,737.65,3.734662781631758 -1995-05-22,5.18,12.165,0.6303303240740741,320.67,1047.58,3.615586577000021 -1995-05-23,5.89,11.21,0.6319916666666667,463.14,800.73,3.464035043832355 -1995-05-24,5.23,11.975,0.6322856481481481,302.44,1049.62,3.3882592772485234 -1995-05-25,1.54,10.185,0.6347809027777778,470.11,786.15,3.2475328535928334 -1995-05-26,0.0,9.98,0.6360001157407408,618.71,584.24,3.095981320425168 -1995-05-27,0.81,11.26,0.6362856481481481,525.51,768.2,2.9444297872575023 -1995-05-28,2.82,11.27,0.6387810185185185,567.21,622.03,2.8037033636018127 -1995-05-29,15.77,11.63,0.6399917824074074,313.95,991.99,2.7062773779940277 -1995-05-30,6.78,10.52,0.6400512731481481,197.58,1092.97,2.7604029255539086 -1995-05-31,0.35,12.435,0.6418483796296296,513.41,899.79,2.6521518304341467 -1995-06-01,0.0,18.375,0.6435354166666667,553.01,1139.43,2.554725844826362 -1995-06-02,3.67,20.845,0.6439998842592592,424.23,1503.55,2.446474749706601 -1995-06-03,10.25,17.685000000000002,0.6442856481481481,327.58,1455.99,2.4031743116586965 -1995-06-04,0.53,12.125,0.6458482638888889,545.26,803.65,2.327398545074864 -1995-06-05,0.01,11.545,0.6471538194444444,452.19,945.86,2.240797668979055 -1995-06-06,1.28,9.565,0.6479927083333333,479.43,780.87,2.154196792883246 -1995-06-07,0.0,15.215,0.6480521990740741,519.13,1001.19,2.0784210262994134 -1995-06-08,0.0,13.795,0.6487947916666666,558.7,801.26,1.9268694931317478 -1995-06-09,0.0,10.479999999999999,0.6498487268518519,568.33,644.45,1.8402686170359388 -1995-06-10,0.0,11.245000000000001,0.6507814814814814,608.67,557.45,1.75366774094013 -1995-06-11,8.27,13.32,0.6515357638888889,319.49,1103.75,1.6995421933802495 -1995-06-12,11.37,12.925,0.6519921296296297,224.65,1212.67,1.6887170838682732 -1995-06-13,0.0,13.68,0.6520001157407407,544.92,827.14,1.6021162077724647 -1995-06-14,0.0,14.69,0.6520517361111111,509.11,959.19,1.5046902221646794 -1995-06-15,0.0,13.74,0.6522856481481482,469.61,990.69,1.4180893460688704 -1995-06-16,0.0,14.08,0.6527943287037037,566.4,717.46,1.3531386889970138 -1995-06-17,2.06,17.04,0.653352662037037,456.36,1109.74,1.2881880319251573 -1995-06-18,4.26,19.009999999999998,0.653848611111111,414.01,1304.86,1.2448875938772528 -1995-06-19,0.0,23.215,0.653848611111111,430.66,1715.81,1.16911182729342 -1995-06-20,0.0,15.705,0.653848611111111,505.28,898.14,1.0738508635880302 -1995-06-21,0.0,11.915,0.6543310185185185,521.89,669.26,1.007817695564976 -1995-06-22,0.0,15.615,0.6543310185185185,526.56,788.0,0.9580221918098859 -1995-06-23,0.0,18.185000000000002,0.653848611111111,525.67,876.58,0.9017316223476101 -1995-06-24,0.0,22.875,0.653848611111111,453.9,1471.0,0.8551836514461127 -1995-06-25,4.55,23.015,0.653352662037037,385.21,1619.08,0.8108007024470107 -1995-06-26,0.52,19.51,0.653352662037037,400.12,1374.46,0.7956455491302442 -1995-06-27,0.0,14.75,0.6527943287037037,508.86,780.51,0.7534276220335374 -1995-06-28,0.0,18.2,0.6522856481481482,491.96,996.61,0.7025496073272497 -1995-06-29,0.0,20.415,0.6520517361111111,459.05,1244.48,0.6646617240353332 -1995-06-30,0.0,20.04,0.6519921296296297,436.81,1295.13,0.6300213735970097 -1995-07-01,8.08,19.655,0.6518894675925926,280.06,1520.82,0.6083711545730576 -1995-07-02,9.14,20.45,0.6511538194444445,214.98,1787.56,0.667909256888926 -1995-07-03,0.0,17.725,0.6503311342592593,361.33,1371.55,0.589968468402698 -1995-07-04,0.0,17.33,0.6493528935185184,457.5,1072.81,0.5499155632083865 -1995-07-05,0.0,20.015,0.6482863425925927,480.04,1127.33,0.5163577237212605 -1995-07-06,0.0,23.985,0.6480008101851852,391.77,1811.24,0.4925424827949131 -1995-07-07,1.97,24.049999999999997,0.647890162037037,321.31,1998.84,0.47089226377096083 -1995-07-08,9.38,22.185000000000002,0.64678125,216.25,1971.62,0.47738732947814655 -1995-07-09,8.67,18.025,0.645352199074074,164.93,1668.0,0.545585519403596 -1995-07-10,1.28,17.0,0.6440515046296297,308.08,1399.03,0.49687252659970355 -1995-07-11,0.0,16.0,0.6438894675925926,453.02,1038.26,0.46223217616137996 -1995-07-12,0.0,17.244999999999997,0.6427809027777778,459.35,1075.59,0.43516940238143964 -1995-07-13,1.41,19.645,0.6407940972222222,392.54,1448.3,0.41784922716227785 -1995-07-14,1.34,22.494999999999997,0.6399997685185186,290.05,1933.54,0.3864564095775472 -1995-07-15,0.0,20.11,0.6395354166666667,359.86,1576.5,0.3550635919928165 -1995-07-16,0.0,16.13,0.6378482638888888,431.02,1080.92,0.3269183072616786 -1995-07-17,3.06,16.595,0.6360001157407408,279.56,1321.13,0.31717570870090006 -1995-07-18,4.46,15.2,0.6355359953703703,155.13,1414.45,0.31717570870090006 -1995-07-19,3.41,17.43,0.6338483796296296,241.36,1472.73,0.3041855772865288 -1995-07-20,10.25,18.05,0.6319996527777777,293.13,1366.9,0.28470038016497173 -1995-07-21,10.31,19.315,0.6315355324074073,260.94,1582.37,0.3139281758473072 -1995-07-22,0.0,18.09,0.6287943287037038,451.67,1202.42,0.31501068679850486 -1995-07-23,23.72,20.52,0.628,327.68,1514.93,0.3139281758473072 -1995-07-24,14.67,21.325000000000003,0.6267813657407407,271.13,1827.87,0.5423379865500033 -1995-07-25,0.0,20.689999999999998,0.624052199074074,419.93,1555.97,0.48496490613652976 -1995-07-26,8.07,21.255000000000003,0.6238902777777778,241.96,1842.65,0.44815953379581097 -1995-07-27,1.21,21.035,0.6207944444444444,325.34,1782.14,0.4384169352350325 -1995-07-28,0.0,19.795,0.6199998842592592,433.19,1441.76,0.4200142490646731 -1995-07-29,6.15,20.17,0.6183303240740741,226.65,1789.46,0.41460169430868504 -1995-07-30,0.08,18.475,0.615999537037037,346.58,1549.98,0.39403398623593044 -1995-07-31,0.0,19.34,0.6151532407407407,472.83,1292.2,0.3658887015047926 -1995-08-01,1.15,23.215,0.6120002314814815,396.86,1769.51,0.3453209934320379 -1995-08-02,3.19,18.810000000000002,0.6115356481481482,386.45,1307.22,0.3290833291640738 -1995-08-03,1.36,16.255000000000003,0.6080510416666667,433.68,1096.66,0.3182582196520977 -1995-08-04,8.23,16.985,0.6078891203703704,270.52,1370.83,0.31717570870090006 -1995-08-05,0.71,17.825,0.6042853009259259,291.13,1570.96,0.29660800062814546 -1995-08-06,0.0,17.0,0.6039916666666666,433.34,1236.45,0.2825353582625765 -1995-08-07,0.0,17.035,0.6002854166666667,490.34,1021.42,0.2695452268482052 -1995-08-08,0.0,18.665,0.5999998842592592,488.56,1103.63,0.25872011733622907 -1995-08-09,0.0,20.740000000000002,0.5962851851851851,467.62,1320.63,0.24789500782425294 -1995-08-10,0.0,21.7,0.5959997685185184,465.75,1378.4,0.23815240926347445 -1995-08-11,0.0,21.634999999999998,0.5920523148148148,445.98,1458.08,0.22949232165389355 -1995-08-12,9.64,21.455,0.591992824074074,256.83,1783.49,0.22407976689790549 -1995-08-13,6.46,17.75,0.5880002314814815,250.3,1461.02,0.21758470119071982 -1995-08-14,0.0,17.02,0.5879922453703703,427.41,1178.33,0.20784210262994132 -1995-08-15,6.07,17.740000000000002,0.5840005787037037,287.16,1407.35,0.20459456977634852 -1995-08-16,4.32,21.770000000000003,0.5835359953703704,270.98,1885.53,0.19376946026437242 -1995-08-17,0.0,19.505,0.5800003472222222,398.49,1415.42,0.17644928504521062 -1995-08-18,0.0,16.419999999999998,0.5787818287037036,394.88,1189.5,0.1634591536308393 -1995-08-19,0.0,13.979999999999999,0.5760005787037037,461.12,837.39,0.15263404411886317 -1995-08-20,0.0,17.575,0.5738478009259259,459.29,1030.35,0.1461389784116775 -1995-08-21,0.0,22.28,0.5719994212962963,380.87,1680.18,0.1385614017532942 -1995-08-22,0.08,18.12,0.5680513888888888,345.3,1391.73,0.1255712703389229 -1995-08-23,7.44,14.29,0.5679997685185185,264.78,1086.91,0.11474616082694677 -1995-08-24,10.65,14.600000000000001,0.5639996527777777,222.58,1210.6,0.1255712703389229 -1995-08-25,1.06,13.01,0.5639916666666667,340.99,1009.87,0.11366364987574917 -1995-08-26,0.0,13.365,0.56,382.77,942.0,0.10933360607095871 -1995-08-27,0.43,14.875,0.558330324074074,328.49,1168.01,0.1071685841685635 -1995-08-28,0.0,11.89,0.5560002314814815,440.44,730.47,0.10067351846137784 -1995-08-29,0.0,14.955,0.5520519675925926,395.49,995.05,0.09742598560778501 -1995-08-30,2.81,14.775,0.5520004629629629,263.74,1174.06,0.09742598560778501 -1995-08-31,0.92,12.185,0.5479999999999999,375.68,856.92,0.09526096370538978 -1995-09-01,5.57,14.245000000000001,0.5479921296296296,224.45,1151.14,0.0963434746565874 -1995-09-02,0.0,11.299999999999999,0.5439997685185185,374.66,810.76,0.09201343085179695 -1995-09-03,0.0,11.105,0.540794212962963,428.07,687.88,0.0866008760958089 -1995-09-04,0.0,13.405000000000001,0.54,419.45,802.21,0.08227083229101845 -1995-09-05,1.41,15.265,0.5359994212962963,371.22,926.83,0.07902329943742561 -1995-09-06,3.74,12.755,0.5359994212962963,314.52,834.43,0.07469325563263518 -1995-09-07,8.14,12.469999999999999,0.5319998842592593,290.9,910.36,0.0768582775350304 -1995-09-08,8.77,8.469999999999999,0.5298482638888888,323.67,605.55,0.08443585419341366 -1995-09-09,0.01,8.475,0.5279998842592593,372.31,647.46,0.07902329943742561 -1995-09-10,0.0,9.005,0.5240002314814816,293.89,800.0,0.07469325563263518 -1995-09-11,0.0,7.034999999999999,0.5240002314814816,349.06,617.65,0.07036321182784472 -1995-09-12,0.0,11.365,0.520000462962963,360.42,804.59,0.0681981899254495 -1995-09-13,1.83,15.885,0.5183310185185186,298.17,1163.23,0.06711567897425189 -1995-09-14,4.06,15.290000000000001,0.5159998842592592,190.73,1278.01,0.0681981899254495 -1995-09-15,4.2,9.08,0.511999537037037,257.39,755.37,0.0692807008766471 -1995-09-16,0.0,7.12,0.511999537037037,383.3,548.69,0.0681981899254495 -1995-09-17,4.61,10.209999999999999,0.5079996527777778,269.58,806.21,0.06711567897425189 -1995-09-18,8.01,10.035,0.5067805555555556,206.28,858.37,0.0768582775350304 -1995-09-19,0.0,7.515000000000001,0.503999537037037,384.57,545.47,0.07252823373023995 -1995-09-20,0.0,8.995000000000001,0.4999997685185186,343.36,676.86,0.07036321182784472 -1995-09-21,0.0,10.495,0.4999997685185186,340.24,754.96,0.0681981899254495 -1995-09-22,4.04,12.425,0.4959997685185185,232.71,972.88,0.06711567897425189 -1995-09-23,4.8,10.22,0.49366840277777774,189.79,882.72,0.06711567897425189 -1995-09-24,0.0,5.1049999999999995,0.4919994212962963,358.66,477.08,0.06386814612065905 -1995-09-25,0.0,6.41,0.48800034722222224,351.07,526.0,0.06170312421826383 -1995-09-26,0.77,6.975,0.48800034722222224,280.07,629.46,0.05953810231586861 -1995-09-27,4.59,9.575,0.4840002314814815,142.46,919.14,0.05953810231586861 -1995-09-28,2.84,7.1049999999999995,0.48167002314814816,202.43,734.42,0.058455591364670996 -1995-09-29,0.0,4.790000000000001,0.4800005787037037,341.91,463.59,0.05412554755988055 -1995-09-30,0.0,8.73,0.4760001157407408,358.29,554.77,0.05304303660868294 -1995-10-01,0.0,11.62,0.4760001157407408,355.27,650.69,0.05196052565748533 -1995-10-02,0.0,11.200000000000001,0.4719996527777777,357.93,604.54,0.04979550375509012 -1995-10-03,0.0,11.475,0.4701513888888889,316.94,746.14,0.04654797090149728 -1995-10-04,2.36,7.83,0.46799976851851854,161.33,797.24,0.04546545995029967 -1995-10-05,1.95,7.735,0.463999537037037,163.19,805.43,0.04546545995029967 -1995-10-06,3.79,5.995,0.463999537037037,168.59,662.72,0.04546545995029967 -1995-10-07,8.29,7.805,0.46,91.82,902.64,0.04546545995029967 -1995-10-08,8.88,10.525,0.45920532407407405,109.45,1036.66,0.05737308041347339 -1995-10-09,3.26,9.05,0.45599953703703705,107.32,947.12,0.06386814612065905 -1995-10-10,1.47,9.325,0.45200810185185186,117.02,993.58,0.06278563516946145 -1995-10-11,3.79,8.254999999999999,0.452,116.65,885.7,0.06278563516946145 -1995-10-12,3.72,10.004999999999999,0.4480001157407407,185.03,827.47,0.06495065707185667 -1995-10-13,0.0,11.129999999999999,0.4480001157407407,282.38,800.0,0.06278563516946145 -1995-10-14,3.07,13.315,0.4440001157407408,268.97,868.87,0.06170312421826383 -1995-10-15,11.92,12.690000000000001,0.44166932870370373,176.24,989.75,0.08335334324221606 -1995-10-16,2.14,6.005,0.4400003472222222,150.9,732.22,0.09742598560778501 -1995-10-17,1.74,4.495,0.43611064814814815,145.88,681.18,0.08335334324221606 -1995-10-18,0.08,4.9799999999999995,0.43600011574074077,257.55,560.0,0.07902329943742561 -1995-10-19,0.0,5.095,0.43200000000000005,251.58,562.58,0.07577576658383278 -1995-10-20,0.0,4.615,0.43194837962962956,267.29,515.83,0.07144572277904233 -1995-10-21,4.57,9.625,0.428,210.29,807.01,0.07252823373023995 -1995-10-22,13.77,12.755,0.4261517361111111,125.18,1147.23,0.11041611702215633 -1995-10-23,0.0,8.645,0.42400011574074076,202.8,797.84,0.14830400031407273 -1995-10-24,0.16,7.28,0.42121863425925926,262.23,591.16,0.13314884699730617 -1995-10-25,0.57,8.615,0.41999976851851856,229.88,723.82,0.1288188031925157 -1995-10-26,0.0,3.115,0.4164640046296296,244.41,464.35,0.11907620463173722 -1995-10-27,7.69,4.38,0.4159996527777778,211.96,522.46,0.11799369368053961 -1995-10-28,37.54,8.235,0.4121109953703704,157.27,738.26,0.33882592772485226 -1995-10-29,24.98,7.949999999999999,0.41200046296296294,110.49,840.69,0.6798168773520998 -1995-10-30,0.0,2.235,0.4080084490740741,164.3,545.67,0.5726482931835363 -1995-10-31,0.0,-1.905,0.40794895833333333,189.06,372.47,0.5910509793538956 -1995-11-01,0.0,-2.5599999999999996,0.40399999999999997,213.11,333.71,0.623526307889824 -1995-11-02,7.35,-2.465,0.4037145833333334,159.24,372.09,0.6722393006937165 -1995-11-03,12.01,1.2200000000000002,0.40000023148148145,106.03,549.71,0.7902329943742561 -1995-11-04,5.2,1.4200000000000002,0.39971435185185183,130.12,517.81,0.9136392428107837 -1995-11-05,1.18,-2.4499999999999997,0.3960082175925926,183.15,361.71,0.9471970822979098 -1995-11-06,0.0,-1.3150000000000002,0.39571446759259266,192.09,407.75,0.9904975203458142 -1995-11-07,12.97,1.625,0.3921108796296296,169.81,481.05,1.0543656664664733 -1995-11-08,20.76,2.17,0.3919487268518519,112.18,564.28,1.3531386889970138 -1995-11-09,0.0,-3.8249999999999997,0.3884644675925926,165.81,342.94,1.4830400031407271 -1995-11-10,0.0,-6.68,0.38799999999999996,203.7,244.19,1.5696408792365362 -1995-11-11,3.26,0.6200000000000001,0.3848466435185185,202.07,375.66,1.656241755332345 -1995-11-12,9.1,6.4799999999999995,0.3840003472222222,169.46,579.36,1.829443507523963 -1995-11-13,4.03,-0.20999999999999996,0.38166932870370374,190.31,388.08,1.9376946026437238 -1995-11-14,1.43,-2.265,0.3799997685185186,144.95,398.1,1.9809950406916284 -1995-11-15,21.13,2.095,0.37920590277777777,126.09,520.47,2.446474749706601 -1995-11-16,11.78,3.6550000000000002,0.37611087962962964,122.69,606.71,3.2475328535928334 -1995-11-17,0.0,-0.9449999999999998,0.3759486111111111,139.42,436.81,3.626411686511997 -1995-11-18,0.0,-4.87,0.37321898148148147,160.31,307.56,3.8537389862634956 -1995-11-19,0.0,-4.705,0.3719998842592593,147.25,319.97,3.8970394243114 -1995-11-20,2.62,-2.46,0.37120578703703705,94.61,438.09,3.8645640957754717 -1995-11-21,5.23,-1.08,0.3684645833333333,57.92,496.36,3.799613438703615 -1995-11-22,3.22,-0.25,0.3680003472222222,41.17,560.0,3.6805372340718776 -1995-11-23,2.03,-2.835,0.36615196759259255,98.7,418.19,3.528985700904212 -1995-11-24,0.29,-5.73,0.3644642361111111,120.74,319.04,3.323308620176666 -1995-11-25,0.0,-10.49,0.36400011574074076,202.42,156.3,3.1068064299371434 -1995-11-26,0.0,-6.91,0.3621513888888889,192.77,219.36,2.9011293492095978 -1995-11-27,2.57,-9.315,0.3604638888888889,172.26,176.63,2.6846271589700756 -1995-11-28,7.22,-8.98,0.3599998842592593,104.91,244.41,2.53307562580241 -1995-11-29,2.71,-11.655000000000001,0.35920578703703704,143.23,180.15,2.3706989831227685 -1995-11-30,0.0,-15.940000000000001,0.3572189814814815,206.75,83.55,2.1974972309311505 -1995-12-01,4.86,-12.93,0.35611041666666665,168.51,120.0,2.0784210262994134 -1995-12-02,2.31,-9.315,0.3559483796296296,134.18,226.74,1.9593448216676759 -1995-12-03,0.89,-14.469999999999999,0.3546476851851852,179.64,120.0,1.829443507523963 -1995-12-04,2.16,-11.155,0.35321898148148145,154.94,178.63,1.742842631428154 -1995-12-05,0.48,-11.145,0.35211030092592593,166.83,161.76,1.6454166458203692 -1995-12-06,4.51,-10.375,0.35199988425925927,137.82,160.0,1.5696408792365362 -1995-12-07,2.77,-10.649999999999999,0.35171423611111113,159.72,169.26,1.4938651126527034 -1995-12-08,0.0,-16.939999999999998,0.3506474537037037,193.47,80.0,1.3964391270449183 -1995-12-09,4.21,-16.815,0.34966921296296294,176.46,80.0,1.3206633604610856 -1995-12-10,8.73,-11.515,0.3488465277777778,139.41,143.78,1.266537812901205 -1995-12-11,0.0,-16.18,0.3481105324074074,171.28,120.0,1.2124122653413245 -1995-12-12,0.0,-18.435,0.3480079861111111,144.82,105.29,1.158286717781444 -1995-12-13,0.0,-18.060000000000002,0.34794849537037037,169.43,80.0,1.0933360607095872 -1995-12-14,0.09,-17.115,0.34771435185185184,180.74,93.27,1.055448177417671 -1995-12-15,2.09,-13.965,0.3472057870370371,145.17,137.1,1.018642805076952 -1995-12-16,0.0,-13.425,0.3466476851851852,140.94,152.57,0.9915800312970118 -1995-12-17,0.0,-15.955,0.3466476851851852,189.95,84.31,0.9342069508835384 -1995-12-18,0.0,-10.44,0.3461518518518519,111.21,206.29,0.8984840894940173 -1995-12-19,0.0,-11.504999999999999,0.3461518518518519,137.83,184.38,0.8725038266652746 -1995-12-20,5.33,-10.985,0.3456693287037037,152.97,146.64,0.8389459871781486 -1995-12-21,6.47,-4.495,0.3456693287037037,100.15,313.66,0.8118832133982083 -1995-12-22,0.05,-0.2350000000000001,0.3461518518518519,48.66,545.4,0.804305636739825 -1995-12-23,0.0,-0.625,0.3461518518518519,59.47,513.42,0.7913155053254537 -1995-12-24,0.0,-3.705,0.3461518518518519,61.77,413.85,0.768582775350304 -1995-12-25,3.52,-6.029999999999999,0.3466476851851852,51.42,345.39,0.7436850234727588 -1995-12-26,5.9,-4.945,0.3472057870370371,68.28,350.27,0.7415200015703636 -1995-12-27,3.92,-2.395,0.34771435185185184,79.48,425.85,0.7306948920583874 -1995-12-28,0.0,-4.779999999999999,0.34794849537037037,106.31,341.32,0.7155397387416209 -1995-12-29,0.0,-10.105,0.34800000000000003,143.18,201.69,0.6906419868640759 -1995-12-30,0.0,-16.345,0.3480079861111111,196.59,81.76,0.6397639721577881 -1995-12-31,0.23,-15.900000000000002,0.3484641203703704,181.96,120.0,0.6321863954994049 -1996-01-01,0.0,-20.29,0.34921886574074074,180.18,53.95,0.6170312421826384 -1996-01-02,0.0,-23.085,0.35015162037037034,175.81,40.0,0.6062061326706623 -1996-01-03,0.0,-25.965000000000003,0.35120578703703703,174.76,40.0,0.5975460450610814 -1996-01-04,0.0,-24.880000000000003,0.3519482638888889,125.29,40.0,0.5856384245979076 -1996-01-05,0.0,-23.439999999999998,0.35200787037037035,112.28,78.78,0.579143358890722 -1996-01-06,0.0,-21.814999999999998,0.35284641203703704,120.69,80.0,0.5683182493787459 -1996-01-07,0.0,-22.195,0.3541518518518519,179.94,45.46,0.5574931398667697 -1996-01-08,0.0,-23.115000000000002,0.35571446759259256,194.58,40.0,0.5466680303547936 -1996-01-09,0.0,-20.810000000000002,0.35600000000000004,184.96,55.79,0.5358429208428175 -1996-01-10,2.91,-15.26,0.3564643518518519,113.48,120.0,0.5250178113308414 -1996-01-11,0.56,-13.25,0.35815185185185183,124.57,160.0,0.5141927018188653 -1996-01-12,0.0,-15.3,0.3599482638888889,200.25,80.0,0.506615125160482 -1996-01-13,7.75,-11.120000000000001,0.36000787037037035,127.85,160.0,0.4957900156485059 -1996-01-14,6.23,-12.940000000000001,0.36121863425925926,162.2,92.95,0.487129928038925 -1996-01-15,4.4,-16.54,0.3637142361111111,161.09,80.0,0.4763048185269489 -1996-01-16,0.22,-21.725,0.36400011574074076,227.07,40.0,0.47089226377096083 -1996-01-17,3.67,-10.16,0.36521898148148146,178.13,91.08,0.46547970901497276 -1996-01-18,0.0,3.1,0.36771435185185186,99.44,600.29,0.45681962140539184 -1996-01-19,3.07,5.415,0.3680083333333333,111.62,686.66,0.4546545995029967 -1996-01-20,15.22,-3.0949999999999998,0.3696696759259259,161.45,258.88,0.4600671542589847 -1996-01-21,0.0,-15.21,0.3719483796296296,164.14,120.0,0.48171737328293696 -1996-01-22,0.54,-12.34,0.37211041666666667,162.1,160.18,0.5087801470628772 -1996-01-23,0.0,-4.905,0.3746479166666667,145.18,298.45,0.6495065707185667 -1996-01-24,8.25,-0.050000000000000044,0.3760002314814815,83.14,481.02,0.9093091990059934 -1996-01-25,18.88,-5.0649999999999995,0.3772188657407407,167.59,232.19,1.1907620463173723 -1996-01-26,0.0,-14.254999999999999,0.3799997685185186,208.8,120.0,1.5155153316766559 -1996-01-27,18.58,-8.299999999999999,0.3804640046296296,185.84,160.0,1.9485197121557 -1996-01-28,33.46,-3.6300000000000003,0.383714699074074,168.23,278.76,2.219147449955103 -1996-01-29,0.0,-15.3,0.38400833333333334,261.22,80.04,2.457299859218577 -1996-01-30,5.79,-15.02,0.3866476851851852,167.72,120.0,2.5763760638503146 -1996-01-31,2.65,-15.104999999999999,0.38799999999999996,216.7,117.9,2.6954522684820517 -1996-02-01,0.0,-19.064999999999998,0.3901519675925926,248.72,80.0,2.72792759701798 -1996-02-02,0.0,-21.105,0.39200034722222227,280.1,40.0,2.7062773779940277 -1996-02-03,0.0,-19.645,0.3936696759259259,247.14,80.0,2.641326720922171 -1996-02-04,0.0,-25.865000000000002,0.39600023148148145,273.42,40.0,2.543900735314386 -1996-02-05,0.0,-24.29,0.3972188657407407,276.04,40.0,2.446474749706601 -1996-02-06,0.0,-20.64,0.40000023148148145,275.89,57.54,2.327398545074864 -1996-02-07,0.0,-17.41,0.4012189814814815,300.08,80.0,2.251622778491031 -1996-02-08,3.6,-8.755,0.40399999999999997,211.03,181.61,2.14337168337127 -1996-02-09,9.61,-1.76,0.40521898148148144,68.46,465.05,2.024295478739533 -1996-02-10,6.97,-5.07,0.4080003472222223,122.15,316.1,1.9701699311796523 -1996-02-11,2.73,-12.81,0.40966990740740744,263.06,120.0,1.8727439455718675 -1996-02-12,3.95,-14.17,0.41200046296296294,171.96,134.64,1.7969681789880345 -1996-02-13,0.0,-21.59,0.41464768518518513,311.24,40.0,1.6995421933802495 -1996-02-14,0.0,-23.185,0.4159996527777778,328.67,40.0,1.6129413172844407 -1996-02-15,0.0,-19.76,0.419205324074074,349.9,46.22,1.5263404411886317 -1996-02-16,0.58,-16.47,0.41999976851851856,351.92,80.0,1.4289144555808466 -1996-02-17,6.86,-11.75,0.42400011574074076,208.24,156.17,1.3531386889970138 -1996-02-18,3.61,-13.844999999999999,0.42400011574074076,180.85,149.38,1.3098382509491096 -1996-02-19,0.0,-18.939999999999998,0.428,389.14,40.0,1.2557127033892288 -1996-02-20,0.0,-10.375,0.42846388888888887,371.88,130.06,1.2015871558293483 -1996-02-21,4.7,1.8299999999999998,0.43200000000000005,131.74,550.92,1.16911182729342 -1996-02-22,8.72,4.24,0.4336695601851852,68.64,734.48,1.3098382509491096 -1996-02-23,7.92,2.7100000000000004,0.43600011574074077,96.16,635.48,1.4289144555808466 -1996-02-24,6.9,2.435,0.4399488425925926,86.59,639.97,1.5155153316766559 -1996-02-25,18.48,1.315,0.4400003472222222,80.71,596.26,1.861918836059891 -1996-02-26,4.46,-1.805,0.4440001157407408,120.84,445.28,2.0675959167874374 -1996-02-27,0.0,-4.305,0.4440081018518519,220.56,341.3,2.1650219023952224 -1996-02-28,2.4,-5.205,0.4480001157407407,233.62,298.9,2.2732729975149835 -1996-02-29,3.3,-11.275,0.4501516203703704,249.13,180.44,2.316573435562888 -1996-03-01,0.0,-13.54,0.452,366.66,120.0,2.33822365458684 -1996-03-02,0.57,-11.09,0.45599953703703705,410.62,133.38,2.33822365458684 -1996-03-03,6.98,-7.715,0.45599953703703705,277.85,213.72,2.349048764098816 -1996-03-04,0.58,-10.559999999999999,0.46,374.33,169.89,2.2949232165389355 -1996-03-05,0.0,-14.425,0.4604638888888889,365.08,120.0,2.240797668979055 -1996-03-06,0.0,-13.74,0.463999537037037,420.3,120.0,2.14337168337127 -1996-03-07,0.0,-14.08,0.46799976851851854,432.87,120.0,2.0675959167874374 -1996-03-08,1.66,-12.625,0.46799976851851854,271.77,164.33,1.9918201502036044 -1996-03-09,5.02,-13.0,0.4719996527777777,179.43,173.9,1.9485197121557 -1996-03-10,0.0,-16.055,0.4719996527777777,483.12,80.0,1.8727439455718675 -1996-03-11,0.0,-8.334999999999999,0.4760001157407408,478.51,161.8,1.7861430694760585 -1996-03-12,0.0,-2.5449999999999995,0.4800005787037037,479.98,261.9,1.6887170838682732 -1996-03-13,0.0,0.40000000000000036,0.4800005787037037,488.72,306.53,1.6237664267964167 -1996-03-14,0.0,3.3149999999999995,0.4840002314814815,432.98,474.07,1.5696408792365362 -1996-03-15,0.06,2.21,0.4840002314814815,363.9,501.45,1.537165550700608 -1996-03-16,1.63,-4.135,0.48800034722222224,311.71,334.54,1.4938651126527034 -1996-03-17,0.0,-6.8950000000000005,0.4919994212962963,265.05,286.34,1.4289144555808466 -1996-03-18,0.0,-6.635,0.4919994212962963,435.2,240.0,1.3856140175329423 -1996-03-19,0.0,-1.9149999999999996,0.4959997685185185,512.44,283.28,1.3314884699730618 -1996-03-20,1.8,-0.28500000000000014,0.4959997685185185,442.73,369.08,1.2881880319251573 -1996-03-21,5.76,-0.21500000000000008,0.4999997685185186,136.76,520.7,1.277362922413181 -1996-03-22,2.45,1.015,0.503999537037037,185.44,569.89,1.277362922413181 -1996-03-23,1.13,-0.5150000000000001,0.503999537037037,280.12,474.09,1.2557127033892288 -1996-03-24,0.0,-3.8,0.5079996527777778,387.87,330.69,1.2124122653413245 -1996-03-25,0.0,-2.5599999999999996,0.5079996527777778,467.21,320.2,1.179936936805396 -1996-03-26,1.39,1.2449999999999999,0.511999537037037,395.46,469.8,1.16911182729342 -1996-03-27,0.43,-4.640000000000001,0.5159998842592592,496.77,257.95,1.1474616082694677 -1996-03-28,0.0,-9.595,0.5159998842592592,417.52,203.81,1.1149862797335395 -1996-03-29,0.0,-7.035,0.520000462962963,483.43,220.44,1.0792634183440182 -1996-03-30,0.0,-5.7,0.520000462962963,456.06,260.88,1.04678808980809 -1996-03-31,0.0,-3.5749999999999997,0.5240002314814816,450.8,305.94,1.0262203817353355 -1996-04-01,0.0,-0.5799999999999996,0.5279998842592593,539.52,328.29,1.0164777831745568 -1996-04-02,3.44,1.5299999999999998,0.5279998842592593,348.22,452.06,1.0175602941257544 -1996-04-03,2.86,-4.3,0.5319998842592593,284.14,333.07,0.9969925860529997 -1996-04-04,0.0,-4.9399999999999995,0.5319998842592593,400.91,302.58,0.9775073889314428 -1996-04-05,0.0,-0.98,0.5359994212962963,426.01,409.59,0.9688473013218619 -1996-04-06,0.03,2.385,0.5395353009259259,319.52,577.24,0.97425985607785 -1996-04-07,0.0,0.7799999999999998,0.54,465.3,440.17,0.9926625422482094 -1996-04-08,0.0,0.03500000000000014,0.5439997685185185,486.02,413.33,1.0121477393697664 -1996-04-09,3.79,0.08499999999999996,0.5439997685185185,279.98,471.25,1.0273028926865329 -1996-04-10,8.92,-0.5999999999999999,0.5479999999999999,164.4,508.82,1.055448177417671 -1996-04-11,11.82,-0.29000000000000004,0.5498481481481481,165.01,524.87,1.158286717781444 -1996-04-12,0.0,0.13500000000000023,0.5520004629629629,471.08,442.24,1.179936936805396 -1996-04-13,0.0,-0.1299999999999999,0.5559922453703704,546.43,400.46,1.1907620463173723 -1996-04-14,0.02,0.29000000000000004,0.5560002314814815,486.52,441.57,1.2232373748533005 -1996-04-15,1.43,1.1049999999999998,0.56,428.84,499.86,1.2448875938772528 -1996-04-16,1.45,2.765,0.5600517361111111,412.58,569.11,1.2990131414371333 -1996-04-17,11.14,2.4499999999999997,0.5639996527777777,169.3,634.61,1.6345915363083927 -1996-04-18,2.59,3.1149999999999998,0.5663305555555556,299.45,624.6,2.035120588251509 -1996-04-19,0.02,3.9099999999999997,0.5679997685185185,559.48,547.99,2.5980262828742666 -1996-04-20,3.73,7.46,0.5715351851851852,486.47,622.02,3.2475328535928334 -1996-04-21,12.13,8.815,0.5719994212962963,423.27,745.63,4.113541614550923 -1996-04-22,1.95,8.245000000000001,0.5760005787037037,528.24,651.09,5.520805851107817 -1996-04-23,6.12,9.05,0.5760005787037037,377.35,819.9,7.198697825464113 -1996-04-24,8.53,6.005000000000001,0.5800003472222222,319.79,716.83,9.006491113964124 -1996-04-25,4.67,2.42,0.5807946759259259,404.21,494.62,9.796724108338381 -1996-04-26,6.98,5.99,0.5840005787037037,428.48,607.94,10.002401189065926 -1996-04-27,8.75,8.635,0.5853530092592593,436.81,708.84,11.149862797335393 -1996-04-28,0.0,2.655,0.5880002314814815,593.93,450.61,11.6911182729342 -1996-04-29,0.0,3.2699999999999996,0.5903311342592593,600.61,480.0,11.258113892455155 -1996-04-30,0.38,4.640000000000001,0.5920008101851852,593.31,514.46,10.673557978808446 -1996-05-01,6.51,6.92,0.5943310185185184,344.87,743.68,10.370454912473114 -1996-05-02,2.87,7.785,0.5959997685185184,482.78,643.65,10.175602941257544 -1996-05-03,0.0,6.915000000000001,0.5987809027777777,645.2,499.06,9.829199436874308 -1996-05-04,0.84,9.295,0.5999998842592592,568.71,717.79,9.298769070787479 -1996-05-05,0.0,6.705,0.6027810185185185,579.75,614.97,8.757513595188675 -1996-05-06,0.0,3.0949999999999998,0.6039996527777778,617.78,437.0,8.18378279105394 -1996-05-07,0.0,4.09,0.6063304398148148,642.51,413.23,7.588401767895255 -1996-05-08,0.0,8.535,0.6079995370370371,601.37,638.21,7.047146292296449 -1996-05-09,0.0,6.125,0.6098476851851852,665.82,376.87,6.549191254745547 -1996-05-10,0.21,10.114999999999998,0.6120002314814815,557.08,734.02,6.105361764754527 -1996-05-11,8.85,7.91,0.6133524305555556,238.0,858.53,5.683182493787458 -1996-05-12,17.64,2.46,0.6159914351851852,239.04,580.95,5.7048327128114105 -1996-05-13,13.08,1.37,0.6162851851851852,239.57,542.03,5.8022586984191955 -1996-05-14,0.0,4.125,0.6195356481481481,529.6,527.37,5.8022586984191955 -1996-05-15,0.0,5.83,0.6199998842592592,587.33,538.95,5.7156578223233865 -1996-05-16,0.0,7.625000000000001,0.6227818287037037,618.94,537.48,5.585756508179673 -1996-05-17,0.0,11.345,0.6240006944444445,575.28,759.81,5.445030084523984 -1996-05-18,0.0,13.535,0.6253526620370371,543.32,924.32,5.228527894284461 -1996-05-19,14.19,13.655000000000001,0.6278895833333333,302.0,1144.89,5.217702784772485 -1996-05-20,10.87,10.84,0.6280518518518519,115.95,1180.8,5.466680303547936 -1996-05-21,3.76,12.75,0.6303303240740741,190.44,1246.07,5.564106289155721 -1996-05-22,4.78,13.610000000000001,0.6319916666666667,356.42,1062.06,5.694007603299435 -1996-05-23,3.48,12.99,0.6322856481481481,364.76,1042.21,5.65070716525153 -1996-05-24,2.53,7.84,0.6347809027777778,465.02,663.49,5.520805851107817 -1996-05-25,0.0,4.7700000000000005,0.6360001157407408,401.21,620.75,5.239353003796438 -1996-05-26,0.0,5.81,0.6362856481481481,351.32,713.19,4.947075046973083 -1996-05-27,0.0,7.09,0.6387810185185185,511.22,646.9,4.611496652101823 -1996-05-28,0.35,9.535,0.6399917824074074,565.58,648.96,4.308393585766492 -1996-05-29,4.93,10.435,0.6400512731481481,363.85,838.74,4.026940738455114 -1996-05-30,7.47,9.515,0.6418483796296296,317.4,854.61,3.788788329191639 -1996-05-31,0.02,9.58,0.6435354166666667,576.3,638.53,3.561461029440141 -1996-06-01,0.0,13.03,0.6439998842592592,622.77,609.85,3.3341337296886424 -1996-06-02,0.0,17.745,0.6442856481481481,588.84,919.64,3.1176315394491203 -1996-06-03,0.0,18.64,0.6458482638888889,553.39,1090.91,2.8686540206736693 -1996-06-04,3.39,18.46,0.6471538194444444,397.88,1393.14,2.630501611410195 -1996-06-05,9.7,18.035,0.6479927083333333,277.5,1498.61,2.457299859218577 -1996-06-06,9.73,16.545,0.6480521990740741,312.37,1297.83,2.4789500782425296 -1996-06-07,0.27,15.805,0.6487947916666666,337.22,1343.19,2.4681249687305535 -1996-06-08,1.16,13.115,0.6498487268518519,388.68,1036.24,2.413999421170673 -1996-06-09,0.0,14.25,0.6507814814814814,525.34,862.34,2.33822365458684 -1996-06-10,0.0,15.965,0.6515357638888889,486.19,1063.43,2.240797668979055 -1996-06-11,0.0,20.4,0.6519921296296297,425.18,1562.85,2.121721464347318 -1996-06-12,0.05,22.365000000000002,0.6520001157407407,448.31,1625.02,2.0567708072754614 -1996-06-13,19.52,21.785,0.6520517361111111,289.41,1781.92,2.522250516290434 -1996-06-14,13.05,20.175,0.6522856481481482,259.09,1718.66,2.2949232165389355 -1996-06-15,4.05,16.58,0.6527943287037037,289.1,1342.33,2.132546573859294 -1996-06-16,0.45,13.9,0.653352662037037,472.19,952.79,2.013470369227557 -1996-06-17,2.51,15.02,0.653848611111111,383.53,1159.49,1.9485197121557 -1996-06-18,0.99,13.78,0.653848611111111,437.93,947.92,1.851093726547915 -1996-06-19,0.0,13.895,0.653848611111111,517.86,816.39,1.75366774094013 -1996-06-20,0.0,16.19,0.6543310185185185,464.35,1102.57,1.656241755332345 -1996-06-21,0.07,13.125,0.6543310185185185,389.72,1027.18,1.5912910982604884 -1996-06-22,7.91,9.254999999999999,0.653848611111111,209.99,903.42,1.547990660212584 -1996-06-23,3.68,10.83,0.653848611111111,174.12,1083.8,1.4830400031407271 -1996-06-24,4.95,12.02,0.653352662037037,186.39,1140.16,1.4180893460688704 -1996-06-25,10.63,13.25,0.653352662037037,180.98,1245.1,1.461389784116775 -1996-06-26,9.09,11.87,0.6527943287037037,289.18,961.59,1.5588157697245602 -1996-06-27,0.72,13.375,0.6522856481481482,448.23,950.58,1.5263404411886317 -1996-06-28,0.0,14.335,0.6520517361111111,496.91,920.0,1.5046902221646794 -1996-06-29,0.0,15.515,0.6519921296296297,500.33,952.73,1.461389784116775 -1996-06-30,0.0,17.75,0.6518894675925926,398.48,1368.83,1.4072642365568944 -1996-07-01,1.26,19.1,0.6511538194444445,344.36,1584.09,1.3423135794850378 -1996-07-02,0.0,19.83,0.6503311342592593,446.03,1444.11,1.2557127033892288 -1996-07-03,2.22,20.46,0.6493528935185184,370.22,1653.29,1.1907620463173723 -1996-07-04,13.68,18.564999999999998,0.6482863425925927,236.96,1627.83,1.16911182729342 -1996-07-05,11.36,16.72,0.6480008101851852,160.04,1602.44,1.2448875938772528 -1996-07-06,12.14,16.09,0.647890162037037,269.18,1338.84,1.4072642365568944 -1996-07-07,7.63,14.094999999999999,0.64678125,345.51,1003.23,1.4180893460688704 -1996-07-08,8.43,16.05,0.645352199074074,275.83,1318.03,1.3964391270449183 -1996-07-09,6.49,16.82,0.6440515046296297,221.77,1489.34,1.4505646746047989 -1996-07-10,9.84,17.535,0.6438894675925926,252.64,1509.13,1.6345915363083927 -1996-07-11,0.33,16.98,0.6427809027777778,431.56,1301.7,1.75366774094013 -1996-07-12,0.01,17.345,0.6407940972222222,451.58,1286.58,1.7753179599640823 -1996-07-13,0.09,18.16,0.6399997685185186,424.66,1401.63,1.764492850452106 -1996-07-14,19.16,19.634999999999998,0.6395354166666667,294.93,1610.88,1.8727439455718675 -1996-07-15,3.82,20.085,0.6378482638888888,310.09,1756.12,1.9485197121557 -1996-07-16,13.58,20.22,0.6360001157407408,219.96,1862.37,2.1758470119071984 -1996-07-17,0.0,19.79,0.6355359953703703,358.67,1711.05,2.121721464347318 -1996-07-18,0.0,19.384999999999998,0.6338483796296296,390.38,1605.67,2.0675959167874374 -1996-07-19,6.3,18.19,0.6319996527777777,403.32,1416.45,2.0675959167874374 -1996-07-20,27.95,15.305,0.6315355324074073,300.37,1255.5,2.5655509543383386 -1996-07-21,9.74,12.67,0.6287943287037038,182.03,1240.77,2.619676501898219 -1996-07-22,0.0,12.91,0.628,460.63,966.97,2.6521518304341467 -1996-07-23,0.0,16.015,0.6267813657407407,492.17,1084.72,2.641326720922171 -1996-07-24,2.8,17.715,0.624052199074074,365.99,1365.64,2.6629769399461236 -1996-07-25,0.31,18.015,0.6238902777777778,314.89,1597.96,2.7062773779940277 -1996-07-26,0.0,17.875,0.6207944444444444,254.38,1680.08,2.7928782540898367 -1996-07-27,1.71,18.15,0.6199998842592592,330.07,1522.29,2.8686540206736693 -1996-07-28,0.61,17.335,0.6183303240740741,391.63,1414.03,2.7928782540898367 -1996-07-29,0.0,14.985000000000001,0.615999537037037,508.17,936.89,2.6629769399461236 -1996-07-30,0.0,16.75,0.6151532407407407,487.35,1137.5,2.4897751877545056 -1996-07-31,0.0,17.81,0.6120002314814815,472.13,1253.25,2.349048764098816 -1996-08-01,3.36,17.835,0.6115356481481482,284.1,1504.74,2.1974972309311505 -1996-08-02,3.02,16.43,0.6080510416666667,207.01,1571.09,2.0567708072754614 -1996-08-03,0.0,17.805,0.6078891203703704,430.15,1367.68,1.9052192741077956 -1996-08-04,0.0,19.695,0.6042853009259259,442.11,1467.33,1.7861430694760585 -1996-08-05,0.0,20.78,0.6039916666666666,455.56,1495.71,1.6129413172844407 -1996-08-06,0.0,21.735,0.6002854166666667,464.44,1526.34,1.461389784116775 -1996-08-07,0.0,22.195,0.5999998842592592,454.93,1595.65,1.3856140175329423 -1996-08-08,0.0,22.21,0.5962851851851851,395.39,1800.11,1.277362922413181 -1996-08-09,8.31,21.46,0.5959997685185184,229.29,1936.81,1.2232373748533005 -1996-08-10,6.95,18.06,0.5920523148148148,288.6,1428.01,1.1474616082694677 -1996-08-11,0.0,13.23,0.591992824074074,459.48,918.04,1.057613199320066 -1996-08-12,0.0,13.12,0.5880002314814815,475.03,863.18,1.0002401189065926 -1996-08-13,0.0,16.240000000000002,0.5879922453703703,438.86,1154.22,0.9363719727859338 -1996-08-14,0.0,16.715,0.5840005787037037,414.22,1241.49,0.8497710966901247 -1996-08-15,0.0,14.370000000000001,0.5835359953703704,475.47,897.78,0.793480527227849 -1996-08-16,0.59,15.25,0.5800003472222222,424.82,1028.86,0.7534276220335374 -1996-08-17,3.98,17.165,0.5787818287037036,240.1,1431.67,0.7144572277904233 -1996-08-18,8.16,15.52,0.5760005787037037,282.23,1200.17,0.6993020744736568 -1996-08-19,9.76,13.425,0.5738478009259259,309.67,964.25,0.7003845854248544 -1996-08-20,0.0,14.524999999999999,0.5719994212962963,452.99,914.62,0.6614141911817405 -1996-08-21,5.03,16.35,0.5680513888888888,286.6,1219.89,0.6473415488161715 -1996-08-22,4.54,17.325,0.5679997685185185,258.52,1390.49,0.6343514174018001 -1996-08-23,6.21,18.465,0.5639996527777777,260.97,1449.3,0.623526307889824 -1996-08-24,8.11,16.375,0.5639916666666667,264.39,1296.28,0.6170312421826384 -1996-08-25,5.4,16.53,0.56,310.3,1125.62,0.6116186874266503 -1996-08-26,6.69,14.91,0.558330324074074,270.82,1128.58,0.5910509793538956 -1996-08-27,0.3,13.245,0.5560002314814815,342.17,1021.47,0.5520805851107816 -1996-08-28,0.0,13.17,0.5520519675925926,433.43,834.64,0.5217702784772486 -1996-08-29,0.0,15.155,0.5520004629629629,392.61,1059.91,0.4990375485020987 -1996-08-30,1.24,13.48,0.5479999999999999,372.23,979.92,0.46764473091736797 -1996-08-31,0.17,14.575,0.5479921296296296,315.46,1175.11,0.44707702284461337 -1996-09-01,0.02,18.035,0.5439997685185185,338.43,1380.55,0.4340868914302421 -1996-09-02,0.0,18.08,0.540794212962963,334.17,1387.84,0.4232617819182659 -1996-09-03,0.0,14.879999999999999,0.54,356.56,1095.34,0.3961990081383257 -1996-09-04,0.0,14.855,0.5359994212962963,418.47,919.91,0.3745487891143735 -1996-09-05,0.0,18.26,0.5359994212962963,402.72,1179.4,0.3604761467488045 -1996-09-06,0.0,18.05,0.5319998842592593,354.0,1316.63,0.33882592772485226 -1996-09-07,0.0,13.030000000000001,0.5298482638888888,400.11,837.35,0.31717570870090006 -1996-09-08,0.46,12.79,0.5279998842592593,383.89,828.76,0.30635059918892393 -1996-09-09,13.62,12.834999999999999,0.5240002314814816,217.17,1037.75,0.3626411686511997 -1996-09-10,13.78,13.9,0.5240002314814816,83.53,1405.75,0.4081066286014994 -1996-09-11,3.06,14.719999999999999,0.520000462962963,124.53,1396.05,0.3864564095775472 -1996-09-12,0.05,12.955,0.5183310185185186,231.8,1158.05,0.37238376721197824 -1996-09-13,0.93,12.650000000000002,0.5159998842592592,219.01,1150.66,0.3626411686511997 -1996-09-14,25.01,11.649999999999999,0.511999537037037,133.41,1143.07,0.4221792709670683 -1996-09-15,29.51,9.685,0.511999537037037,111.76,1031.85,0.8541011404949151 -1996-09-16,1.06,10.68,0.5079996527777778,247.12,958.96,0.8670912719092866 -1996-09-17,0.0,11.02,0.5067805555555556,384.42,750.14,0.8800814033236579 -1996-09-18,0.0,11.989999999999998,0.503999537037037,367.76,836.92,0.9006491113964125 -1996-09-19,0.0,11.489999999999998,0.4999997685185186,327.24,901.07,0.8963190675916219 -1996-09-20,0.0,10.69,0.4999997685185186,359.42,777.47,0.8941540456892267 -1996-09-21,0.0,11.695,0.4959997685185185,325.55,898.34,0.8703388047628793 -1996-09-22,0.0,7.48,0.49366840277777774,362.59,605.68,0.8346159433733582 -1996-09-23,0.02,5.994999999999999,0.4919994212962963,313.87,611.68,0.8064706586422203 -1996-09-24,3.28,6.885,0.48800034722222224,205.27,705.18,0.8259558557637772 -1996-09-25,0.0,5.734999999999999,0.48800034722222224,292.55,628.45,0.7956455491302442 -1996-09-26,0.0,6.49,0.4840002314814815,330.04,605.36,0.7426025125215612 -1996-09-27,0.0,7.125,0.48167002314814816,361.14,560.0,0.7144572277904233 -1996-09-28,3.11,10.235,0.4800005787037037,278.83,737.73,0.7090446730344352 -1996-09-29,7.1,13.225,0.4760001157407408,167.94,1163.05,0.7025496073272497 -1996-09-30,2.11,10.184999999999999,0.4760001157407408,220.25,921.31,0.667909256888926 -1996-10-01,1.28,7.045,0.4719996527777777,306.03,600.93,0.6332689064506025 -1996-10-02,3.72,11.48,0.4701513888888889,221.22,925.26,0.6224437969386264 -1996-10-03,4.2,11.31,0.46799976851851854,231.16,840.18,0.6029585998170693 -1996-10-04,0.0,2.1799999999999997,0.463999537037037,280.02,478.92,0.5639882055739553 -1996-10-05,0.0,1.21,0.463999537037037,312.47,413.75,0.5369254317940151 -1996-10-06,0.0,4.12,0.46,333.42,453.12,0.526100322282039 -1996-10-07,0.0,9.26,0.45920532407407405,323.97,659.95,0.4990375485020987 -1996-10-08,3.58,10.844999999999999,0.45599953703703705,219.98,880.03,0.4687272418685657 -1996-10-09,8.16,9.379999999999999,0.45200810185185186,123.53,953.87,0.47089226377096083 -1996-10-10,10.48,6.5649999999999995,0.452,107.33,810.42,0.5271828332332367 -1996-10-11,12.33,2.855,0.4480001157407407,173.29,540.4,0.623526307889824 -1996-10-12,0.0,2.475,0.4480001157407407,257.34,480.44,0.6170312421826384 -1996-10-13,4.77,4.575,0.4440001157407408,170.02,612.87,0.6191962640850336 -1996-10-14,8.71,6.02,0.44166932870370373,142.89,712.77,0.6657442349865309 -1996-10-15,0.28,1.52,0.4400003472222222,257.18,441.67,0.6386814612065905 -1996-10-16,0.0,-0.51,0.43611064814814815,197.8,433.33,0.6549191254745548 -1996-10-17,0.0,1.015,0.43600011574074077,188.87,496.29,0.6462590378649739 -1996-10-18,0.0,1.6100000000000003,0.43200000000000005,259.95,437.73,0.6451765269137762 -1996-10-19,0.0,2.9299999999999997,0.43194837962962956,287.12,419.21,0.6408464831089858 -1996-10-20,0.0,3.7849999999999997,0.428,283.82,440.0,0.6300213735970097 -1996-10-21,0.0,5.305,0.4261517361111111,262.4,530.36,0.6224437969386264 -1996-10-22,3.0,5.585,0.42400011574074076,219.73,595.4,0.6256913297922193 -1996-10-23,10.0,5.59,0.42121863425925926,82.87,777.74,0.7014670963760521 -1996-10-24,3.16,5.945,0.41999976851851856,83.94,800.4,0.7252823373023994 -1996-10-25,2.6,6.525,0.4164640046296296,120.75,782.3,0.7523451110823397 -1996-10-26,0.0,5.06,0.4159996527777778,195.22,629.54,0.7555926439359325 -1996-10-27,0.0,4.08,0.4121109953703704,207.64,572.05,0.7610051986919205 -1996-10-28,11.0,4.28,0.41200046296296294,115.01,650.03,0.8789988923724602 -1996-10-29,10.99,2.63,0.4080084490740741,93.22,608.89,0.9688473013218619 -1996-10-30,0.18,-0.4950000000000001,0.40794895833333333,193.44,422.33,1.0283854036377307 -1996-10-31,5.04,1.4449999999999998,0.40399999999999997,136.1,500.9,1.1041611702215632 -1996-11-01,0.13,0.8999999999999999,0.4037145833333334,199.24,456.48,1.158286717781444 -1996-11-02,0.4,-0.98,0.40000023148148145,202.45,400.0,1.179936936805396 -1996-11-03,0.09,-1.61,0.39971435185185183,150.86,425.97,1.179936936805396 -1996-11-04,0.34,-3.245,0.3960082175925926,190.44,345.71,1.16911182729342 -1996-11-05,0.0,-0.32999999999999985,0.39571446759259266,179.36,448.44,1.158286717781444 -1996-11-06,0.0,-1.69,0.3921108796296296,216.81,360.04,1.1474616082694677 -1996-11-07,2.29,1.9650000000000003,0.3919487268518519,180.72,467.63,1.158286717781444 -1996-11-08,3.05,10.12,0.3884644675925926,166.84,824.52,1.179936936805396 -1996-11-09,8.39,15.030000000000001,0.38799999999999996,78.82,1448.61,1.2124122653413245 -1996-11-10,9.4,8.715,0.3848466435185185,133.23,803.64,1.277362922413181 -1996-11-11,0.0,2.725,0.3840003472222222,141.78,582.42,1.2881880319251573 -1996-11-12,0.07,-1.51,0.38166932870370374,152.21,421.01,1.277362922413181 -1996-11-13,0.0,-5.305000000000001,0.3799997685185186,165.06,296.22,1.277362922413181 -1996-11-14,0.0,-9.035,0.37920590277777777,173.9,207.58,1.2557127033892288 -1996-11-15,0.0,-10.08,0.37611087962962964,189.88,189.57,1.2015871558293483 -1996-11-16,0.0,-7.795,0.3759486111111111,199.86,203.83,1.158286717781444 -1996-11-17,0.0,-4.0600000000000005,0.37321898148148147,209.72,243.51,1.1366364987574917 -1996-11-18,0.0,0.1200000000000001,0.3719998842592593,191.01,382.39,1.1041611702215632 -1996-11-19,5.79,0.08999999999999986,0.37120578703703705,114.18,455.9,1.0825109511976112 -1996-11-20,10.13,0.485,0.3684645833333333,48.37,568.59,1.1149862797335395 -1996-11-21,5.39,-0.040000000000000036,0.3680003472222222,47.19,548.5,1.1258113892455155 -1996-11-22,0.46,-0.895,0.36615196759259255,59.64,520.3,1.1149862797335395 -1996-11-23,0.15,-2.775,0.3644642361111111,99.17,418.18,1.1041611702215632 -1996-11-24,0.54,-9.265,0.36400011574074076,187.47,181.97,1.057613199320066 -1996-11-25,0.0,-10.7,0.3621513888888889,167.32,194.02,1.0316329364913235 -1996-11-26,0.02,-8.879999999999999,0.3604638888888889,142.88,234.04,1.0067351846137784 -1996-11-27,0.71,-8.625,0.3599998842592593,105.58,264.87,0.9439495494443169 -1996-11-28,0.0,-7.914999999999999,0.35920578703703704,99.44,274.83,0.9244643523227599 -1996-11-29,0.0,-10.74,0.3572189814814815,168.14,181.24,0.8984840894940173 -1996-11-30,0.0,-10.575,0.35611041666666665,194.42,160.0,0.8541011404949151 -1996-12-01,12.37,-4.6,0.3559483796296296,145.41,264.74,0.8584311842997057 -1996-12-02,18.53,4.3950000000000005,0.3546476851851852,103.31,641.65,1.277362922413181 -1996-12-03,10.36,2.59,0.35321898148148145,102.45,566.15,1.7211924124042017 -1996-12-04,0.0,-1.59,0.35211030092592593,106.32,440.0,1.8835690550838433 -1996-12-05,0.0,-4.960000000000001,0.35199988425925927,123.14,321.24,2.0567708072754614 -1996-12-06,0.0,-7.18,0.35171423611111113,123.28,278.23,2.154196792883246 -1996-12-07,0.3,-5.72,0.3506474537037037,121.69,316.99,2.2083223404431265 -1996-12-08,10.05,-1.365,0.34966921296296294,72.98,457.02,2.3057483260509115 -1996-12-09,7.05,-1.1099999999999999,0.3488465277777778,75.02,469.96,2.359873873610792 -1996-12-10,0.0,-3.7,0.3481105324074074,133.62,355.38,2.316573435562888 -1996-12-11,0.0,-6.325,0.3480079861111111,161.29,265.73,2.2732729975149835 -1996-12-12,0.12,-5.34,0.34794849537037037,124.49,319.43,2.219147449955103 -1996-12-13,0.0,-4.915,0.34771435185185184,160.53,280.0,2.132546573859294 -1996-12-14,0.0,-3.22,0.3472057870370371,145.51,351.99,2.0784210262994134 -1996-12-15,0.42,-0.76,0.3466476851851852,64.54,520.0,2.0026452597155804 -1996-12-16,0.0,-1.095,0.3466476851851852,72.21,494.37,1.9376946026437238 -1996-12-17,3.77,0.6900000000000001,0.3461518518518519,67.27,560.0,1.861918836059891 -1996-12-18,4.1,3.23,0.3461518518518519,74.54,642.85,1.851093726547915 -1996-12-19,4.84,1.175,0.3456693287037037,56.47,585.76,1.829443507523963 -1996-12-20,10.28,-4.03,0.3456693287037037,97.67,355.77,1.8186183980119868 -1996-12-21,0.0,-9.2,0.3461518518518519,165.93,201.5,1.764492850452106 -1996-12-22,0.0,-7.885,0.3461518518518519,154.47,240.0,1.6887170838682732 -1996-12-23,0.17,-5.5,0.3461518518518519,138.01,320.0,1.6345915363083927 -1996-12-24,8.87,-2.04,0.3466476851851852,113.65,400.0,1.6237664267964167 -1996-12-25,9.99,-4.62,0.3472057870370371,135.18,279.1,1.6778919743562972 -1996-12-26,0.0,-12.545,0.34771435185185184,172.04,159.62,1.6345915363083927 -1996-12-27,2.27,-10.41,0.34794849537037037,151.03,200.0,1.6129413172844407 -1996-12-28,0.37,-7.995,0.34800000000000003,177.91,200.49,1.5804659887485122 -1996-12-29,4.86,-2.93,0.3480079861111111,121.57,354.55,1.5804659887485122 -1996-12-30,5.37,-9.565,0.3484641203703704,144.87,175.71,1.5804659887485122 -1996-12-31,5.12,-6.25,0.3482361111111111,133.22,265.13,1.5696408792365362 -1997-01-01,0.0,-20.884999999999998,0.34921886574074074,145.15,80.0,1.4722148936287511 -1997-01-02,0.03,-16.675,0.35015162037037034,126.66,120.0,1.4072642365568944 -1997-01-03,1.3,-12.865,0.35120578703703703,70.6,194.43,1.3747889080209663 -1997-01-04,0.93,-10.655,0.3519482638888889,86.99,217.81,1.3098382509491096 -1997-01-05,11.63,-7.315,0.35200787037037035,50.44,302.35,1.277362922413181 -1997-01-06,19.36,-6.195,0.35284641203703704,51.65,326.2,1.2448875938772528 -1997-01-07,3.02,-7.91,0.3541518518518519,90.63,265.17,1.2124122653413245 -1997-01-08,0.0,-11.78,0.35571446759259256,101.34,195.18,1.1907620463173723 -1997-01-09,0.0,-11.105,0.35600000000000004,94.86,214.32,1.16911182729342 -1997-01-10,17.62,-9.135,0.3564643518518519,97.58,228.23,1.1474616082694677 -1997-01-11,21.21,-6.67,0.35815185185185183,87.65,280.0,1.1366364987574917 -1997-01-12,1.57,-9.58,0.3599482638888889,137.27,209.78,1.1258113892455155 -1997-01-13,2.15,-9.75,0.36000787037037035,135.33,202.76,1.1041611702215632 -1997-01-14,0.0,-8.365,0.36121863425925926,129.8,244.01,1.0825109511976112 -1997-01-15,0.02,-10.085,0.3637142361111111,196.96,175.32,1.071685841685635 -1997-01-16,7.93,-4.375,0.36400011574074076,121.24,311.76,1.055448177417671 -1997-01-17,12.64,-15.969999999999999,0.36521898148148146,186.22,79.84,1.0392105131497067 -1997-01-18,0.0,-27.165,0.36771435185185186,203.66,40.0,1.0229728488817424 -1997-01-19,0.0,-27.11,0.3680083333333333,256.61,40.0,1.0067351846137784 -1997-01-20,2.88,-18.445,0.3696696759259259,223.19,75.56,0.9959100751018022 -1997-01-21,1.83,-14.16,0.3719483796296296,180.09,137.2,0.9959100751018022 -1997-01-22,0.31,-13.785,0.37211041666666667,259.49,80.19,1.0175602941257544 -1997-01-23,7.9,-7.585000000000001,0.3746479166666667,196.66,171.96,1.0067351846137784 -1997-01-24,0.53,-18.675,0.3760002314814815,275.26,40.0,1.0121477393697664 -1997-01-25,8.61,-12.455,0.3772188657407407,214.75,87.51,1.0229728488817424 -1997-01-26,4.88,-8.185,0.3799997685185186,195.51,182.78,1.0013226298577902 -1997-01-27,0.0,-20.055,0.3804640046296296,268.47,72.87,0.97425985607785 -1997-01-28,6.69,-15.75,0.383714699074074,208.21,90.99,0.9255468632739575 -1997-01-29,6.03,-15.695,0.38400833333333334,222.44,81.79,0.9038966442500053 -1997-01-30,0.18,-26.14,0.3866476851851852,295.0,40.0,0.882246425226053 -1997-01-31,4.99,-22.060000000000002,0.38799999999999996,221.76,40.27,0.8551836514461127 -1997-02-01,6.74,-11.09,0.3901519675925926,165.07,173.93,0.8389459871781486 -1997-02-02,2.01,-7.31,0.39200034722222227,157.21,270.1,0.8172957681541964 -1997-02-03,0.0,-10.605,0.3936696759259259,266.14,160.15,0.8010581038862323 -1997-02-04,0.0,-15.8,0.39600023148148145,327.79,80.0,0.7794078848622801 -1997-02-05,8.99,-10.915,0.3972188657407407,196.1,160.89,0.7577576658383279 -1997-02-06,7.53,-8.11,0.40000023148148145,172.42,215.62,0.7469325563263517 -1997-02-07,0.0,-10.72,0.4012189814814815,271.22,162.85,0.7361074468143756 -1997-02-08,0.0,-20.72,0.40399999999999997,344.56,40.0,0.7198697825464114 -1997-02-09,0.0,-20.645,0.40521898148148144,346.42,40.0,0.7036321182784472 -1997-02-10,0.0,-12.110000000000001,0.4080003472222223,316.58,124.41,0.6928070087664712 -1997-02-11,0.0,-17.619999999999997,0.40966990740740744,359.31,40.14,0.681981899254495 -1997-02-12,0.0,-15.139999999999999,0.41200046296296294,292.75,98.2,0.6711567897425189 -1997-02-13,0.14,-14.09,0.41464768518518513,304.36,113.51,0.6495065707185667 -1997-02-14,2.27,-18.765,0.4159996527777778,326.83,40.58,0.6386814612065905 -1997-02-15,8.57,-8.635,0.419205324074074,209.35,189.09,0.6224437969386264 -1997-02-16,0.0,-16.42,0.41999976851851856,312.88,80.0,0.6116186874266503 -1997-02-17,0.0,-24.795,0.42400011574074076,373.24,40.0,0.6007935779146741 -1997-02-18,2.53,-17.225,0.42400011574074076,330.48,56.06,0.589968468402698 -1997-02-19,7.78,-3.5250000000000004,0.428,172.24,320.0,0.579143358890722 -1997-02-20,7.93,-7.285,0.42846388888888887,193.86,230.4,0.5737308041347339 -1997-02-21,5.87,-7.515,0.43200000000000005,200.19,220.95,0.5683182493787459 -1997-02-22,13.81,-6.175,0.4336695601851852,163.62,275.99,0.5629056946227577 -1997-02-23,8.44,-12.870000000000001,0.43600011574074077,188.99,160.0,0.5574931398667697 -1997-02-24,0.0,-17.685000000000002,0.4399488425925926,372.77,80.0,0.5466680303547936 -1997-02-25,0.0,-17.795,0.4400003472222222,354.68,80.0,0.5358429208428175 -1997-02-26,2.23,-14.285,0.4440001157407408,345.86,118.81,0.5250178113308414 -1997-02-27,5.05,-3.9799999999999995,0.4440081018518519,212.66,304.49,0.5196052565748533 -1997-02-28,4.49,-3.755,0.4480001157407407,215.52,315.34,0.5141927018188653 -1997-03-01,0.0,-5.435,0.4501516203703704,366.28,240.56,0.5087801470628772 -1997-03-02,2.86,-0.43499999999999983,0.452,223.38,426.06,0.5087801470628772 -1997-03-03,0.09,-6.625,0.45599953703703705,401.25,201.14,0.5033675923068892 -1997-03-04,0.0,-14.205,0.45599953703703705,431.78,99.35,0.4979550375509011 -1997-03-05,2.36,-9.83,0.46,335.68,162.12,0.4979550375509011 -1997-03-06,10.29,-7.965,0.4604638888888889,230.95,226.12,0.4979550375509011 -1997-03-07,10.33,-11.015,0.463999537037037,220.07,186.54,0.5033675923068892 -1997-03-08,0.0,-18.535,0.46799976851851854,477.22,62.69,0.5087801470628772 -1997-03-09,0.0,-19.08,0.46799976851851854,506.74,40.0,0.5141927018188653 -1997-03-10,4.38,-15.035,0.4719996527777777,401.34,80.0,0.5196052565748533 -1997-03-11,2.79,-5.615,0.4719996527777777,257.56,280.0,0.5196052565748533 -1997-03-12,0.31,-9.865,0.4760001157407408,412.07,170.94,0.5196052565748533 -1997-03-13,0.0,-14.315,0.4800005787037037,420.05,120.0,0.5141927018188653 -1997-03-14,0.39,-13.68,0.4800005787037037,420.37,125.52,0.5087801470628772 -1997-03-15,5.42,-7.4,0.4840002314814815,303.94,216.54,0.4979550375509011 -1997-03-16,0.0,-11.205,0.4840002314814815,484.9,128.04,0.487129928038925 -1997-03-17,0.04,-14.325000000000001,0.48800034722222224,488.1,111.79,0.48171737328293696 -1997-03-18,0.0,-11.445,0.4919994212962963,430.48,152.96,0.4763048185269489 -1997-03-19,0.0,-11.17,0.4919994212962963,505.58,131.28,0.47089226377096083 -1997-03-20,0.0,-9.435,0.4959997685185185,540.68,141.32,0.46547970901497276 -1997-03-21,0.0,-7.81,0.4959997685185185,495.19,200.0,0.4600671542589847 -1997-03-22,0.0,-11.04,0.4999997685185186,532.25,124.75,0.4600671542589847 -1997-03-23,0.0,-11.39,0.503999537037037,515.09,122.96,0.4600671542589847 -1997-03-24,0.0,-9.745000000000001,0.503999537037037,441.31,177.08,0.4600671542589847 -1997-03-25,0.2,-9.925,0.5079996527777778,566.63,120.0,0.4546545995029967 -1997-03-26,6.58,-2.425,0.5079996527777778,309.19,333.21,0.4546545995029967 -1997-03-27,0.0,-0.6200000000000001,0.511999537037037,308.77,438.42,0.4546545995029967 -1997-03-28,0.0,-0.75,0.5159998842592592,428.08,374.68,0.4546545995029967 -1997-03-29,3.5,2.7350000000000003,0.5159998842592592,314.99,517.97,0.4546545995029967 -1997-03-30,6.01,2.8000000000000003,0.520000462962963,250.7,556.49,0.4600671542589847 -1997-03-31,0.0,-2.3499999999999996,0.520000462962963,292.43,401.37,0.46547970901497276 -1997-04-01,0.0,-2.785,0.5240002314814816,355.61,359.83,0.4763048185269489 -1997-04-02,0.0,-3.7150000000000003,0.5279998842592593,431.49,306.25,0.487129928038925 -1997-04-03,0.0,-3.11,0.5279998842592593,448.72,321.13,0.4979550375509011 -1997-04-04,0.0,-0.6000000000000001,0.5319998842592593,444.29,397.35,0.5196052565748533 -1997-04-05,0.0,2.42,0.5319998842592593,406.4,517.51,0.5412554755988056 -1997-04-06,1.86,4.210000000000001,0.5359994212962963,335.63,596.76,0.5953810231586861 -1997-04-07,2.12,3.9,0.5395353009259259,293.1,640.63,0.6386814612065905 -1997-04-08,0.0,2.7300000000000004,0.54,504.15,485.5,0.6928070087664712 -1997-04-09,0.0,-5.720000000000001,0.5439997685185185,467.99,272.39,0.7577576658383279 -1997-04-10,0.0,-5.505,0.5439997685185185,402.66,297.09,0.876833870470065 -1997-04-11,0.0,-4.44,0.5479999999999999,595.43,252.61,0.9980750970041974 -1997-04-12,0.0,-2.31,0.5498481481481481,611.21,288.6,1.1366364987574917 -1997-04-13,4.48,0.06000000000000005,0.5520004629629629,361.17,425.56,1.2448875938772528 -1997-04-14,3.26,-1.145,0.5559922453703704,202.78,466.01,1.3098382509491096 -1997-04-15,0.0,-2.4299999999999997,0.5560002314814815,551.45,325.06,1.36396379850899 -1997-04-16,0.0,-0.07000000000000028,0.56,636.99,335.6,1.4180893460688704 -1997-04-17,0.0,3.035,0.5600517361111111,609.16,450.36,1.5263404411886317 -1997-04-18,0.2,2.115,0.5639996527777777,535.88,467.72,1.6345915363083927 -1997-04-19,0.0,1.5250000000000001,0.5663305555555556,501.68,473.41,1.742842631428154 -1997-04-20,0.0,4.265,0.5679997685185185,499.77,586.46,1.9593448216676759 -1997-04-21,0.0,4.6049999999999995,0.5715351851851852,601.17,522.62,2.2840981070269595 -1997-04-22,0.16,5.0,0.5719994212962963,573.42,570.53,2.7604029255539086 -1997-04-23,0.59,5.13,0.5760005787037037,477.11,643.37,3.474860153344332 -1997-04-24,0.0,4.095000000000001,0.5760005787037037,490.98,598.43,4.23261781918266 -1997-04-25,0.0,1.9699999999999998,0.5800003472222222,607.86,440.43,4.936249937461107 -1997-04-26,0.0,1.8749999999999996,0.5807946759259259,646.18,408.45,5.477505413059912 -1997-04-27,0.0,2.885,0.5840005787037037,697.98,354.12,5.932160012562909 -1997-04-28,1.3,4.405,0.5853530092592593,611.62,490.23,6.343514174018001 -1997-04-29,19.54,2.79,0.5880002314814815,310.58,583.39,6.830644102056926 -1997-04-30,1.93,3.7349999999999994,0.5903311342592593,625.11,472.02,7.112096949368305 -1997-05-01,2.72,9.075,0.5920008101851852,586.6,644.04,7.696652863015015 -1997-05-02,5.94,8.940000000000001,0.5943310185185184,421.41,776.14,9.147217537619815 -1997-05-03,4.03,3.1399999999999997,0.5959997685185184,469.53,521.89,9.731773451266523 -1997-05-04,7.39,4.45,0.5987809027777777,319.92,641.41,10.056526736625807 -1997-05-05,0.04,3.6999999999999993,0.5999998842592592,591.79,513.88,9.88332498443419 -1997-05-06,0.21,6.165,0.6027810185185185,585.86,591.21,9.68847301321862 -1997-05-07,9.17,5.890000000000001,0.6039996527777778,288.73,737.85,9.645172575170715 -1997-05-08,10.74,2.495,0.6063304398148148,255.96,594.25,9.840024546386285 -1997-05-09,0.0,3.0100000000000002,0.6079995370370371,570.46,515.45,9.68847301321862 -1997-05-10,0.0,5.475,0.6098476851851852,566.74,601.57,9.407020165907241 -1997-05-11,0.0,5.99,0.6120002314814815,495.31,683.54,9.103917099571909 -1997-05-12,0.14,6.5,0.6133524305555556,639.58,560.59,8.800814033236579 -1997-05-13,2.71,9.959999999999999,0.6159914351851852,458.2,844.55,8.508536076413224 -1997-05-14,8.59,9.66,0.6162851851851852,370.6,884.88,8.292033886173702 -1997-05-15,4.03,7.225,0.6195356481481481,530.7,589.27,8.07553169593418 -1997-05-16,20.69,9.02,0.6199998842592592,454.95,746.75,8.356984543245558 -1997-05-17,32.73,5.37,0.6227818287037037,340.31,681.79,10.933360607095873 -1997-05-18,3.61,5.8549999999999995,0.6240006944444445,412.59,683.21,11.258113892455155 -1997-05-19,0.0,6.09,0.6253526620370371,666.61,559.03,10.760158854904255 -1997-05-20,6.38,8.21,0.6278895833333333,419.1,749.86,10.32715447442521 -1997-05-21,3.54,7.17,0.6280518518518519,354.92,763.55,9.840024546386285 -1997-05-22,3.45,6.535,0.6303303240740741,344.93,736.57,9.255468632739575 -1997-05-23,3.81,6.805,0.6319916666666667,355.48,750.92,8.692562938116817 -1997-05-24,1.49,6.3,0.6322856481481481,610.23,545.99,8.140482353006036 -1997-05-25,10.31,8.27,0.6347809027777778,411.27,762.22,7.761603520086872 -1997-05-26,6.93,6.345,0.6360001157407408,345.0,725.38,7.382724687167708 -1997-05-27,0.0,5.1049999999999995,0.6362856481481481,580.88,601.79,6.938895197176687 -1997-05-28,0.0,9.63,0.6387810185185185,686.19,636.72,6.462590378649739 -1997-05-29,0.0,11.209999999999999,0.6399917824074074,706.16,618.01,6.0404111076826705 -1997-05-30,0.38,14.485000000000001,0.6400512731481481,649.46,868.28,5.607406727203625 -1997-05-31,3.66,16.55,0.6418483796296296,415.89,1300.5,5.206877675260509 -1997-06-01,0.0,13.945,0.6435354166666667,610.04,949.79,4.719747747221584 -1997-06-02,0.0,8.51,0.6439998842592592,699.96,523.66,4.275918257230564 -1997-06-03,0.0,10.105,0.6442856481481481,682.25,605.73,3.907864533823376 -1997-06-04,0.0,10.925,0.6458482638888889,672.35,645.46,3.583111248464093 -1997-06-05,0.0,11.375,0.6471538194444444,566.37,849.84,3.280008182128762 -1997-06-06,0.0,9.405,0.6479927083333333,643.17,614.33,2.9660800062814543 -1997-06-07,0.0,11.85,0.6480521990740741,666.24,637.89,2.6954522684820517 -1997-06-08,0.0,13.74,0.6487947916666666,688.13,621.18,2.4681249687305535 -1997-06-09,0.0,17.044999999999998,0.6498487268518519,655.99,834.36,2.2840981070269595 -1997-06-10,0.0,19.735,0.6507814814814814,553.49,1268.13,2.110896354835342 -1997-06-11,0.78,16.65,0.6515357638888889,598.33,937.16,1.9485197121557 -1997-06-12,0.0,14.01,0.6519921296296297,611.35,782.35,1.829443507523963 -1997-06-13,6.9,15.37,0.6520001157407407,359.25,1256.59,1.7861430694760585 -1997-06-14,11.59,14.56,0.6520517361111111,325.99,1196.32,1.9160443836197718 -1997-06-15,0.0,10.385,0.6522856481481482,604.07,657.05,1.7861430694760585 -1997-06-16,0.0,12.48,0.6527943287037037,593.11,752.35,1.7211924124042017 -1997-06-17,0.0,15.625,0.653352662037037,496.53,1115.9,1.6237664267964167 -1997-06-18,0.0,15.080000000000002,0.653848611111111,493.06,1091.62,1.547990660212584 -1997-06-19,14.0,15.595,0.653848611111111,284.79,1317.17,1.5912910982604884 -1997-06-20,0.21,13.454999999999998,0.653848611111111,551.59,874.39,1.537165550700608 -1997-06-21,0.21,15.135000000000002,0.6543310185185185,548.31,951.55,1.4722148936287511 -1997-06-22,8.8,18.125,0.6543310185185185,270.17,1541.67,1.4289144555808466 -1997-06-23,11.04,16.115,0.653848611111111,349.41,1225.6,1.3747889080209663 -1997-06-24,0.0,14.255,0.653848611111111,541.46,942.37,1.3206633604610856 -1997-06-25,0.03,13.385,0.653352662037037,518.49,913.77,1.2881880319251573 -1997-06-26,17.23,14.715,0.653352662037037,296.36,1197.61,1.36396379850899 -1997-06-27,14.87,17.73,0.6527943287037037,330.09,1363.21,1.4505646746047989 -1997-06-28,0.0,15.91,0.6522856481481482,573.83,944.64,1.4180893460688704 -1997-06-29,0.0,20.885,0.6520517361111111,514.42,1437.22,1.3964391270449183 -1997-06-30,6.41,22.255000000000003,0.6519921296296297,385.22,1605.24,1.3964391270449183 -1997-07-01,0.0,22.76,0.6518894675925926,491.07,1650.24,1.3531386889970138 -1997-07-02,0.0,23.03,0.6511538194444445,438.1,1811.83,1.2881880319251573 -1997-07-03,4.45,21.455,0.6503311342592593,274.09,1853.76,1.2557127033892288 -1997-07-04,16.7,18.785,0.6493528935185184,152.89,1799.31,1.2557127033892288 -1997-07-05,14.3,17.31,0.6482863425925927,228.47,1506.63,1.2557127033892288 -1997-07-06,0.0,16.085,0.6480008101851852,459.29,1143.2,1.2124122653413245 -1997-07-07,0.0,17.95,0.647890162037037,472.89,1237.84,1.16911182729342 -1997-07-08,0.0,17.810000000000002,0.64678125,433.66,1314.35,1.1258113892455155 -1997-07-09,9.26,16.38,0.645352199074074,272.15,1330.53,1.1149862797335395 -1997-07-10,6.93,14.620000000000001,0.6440515046296297,276.12,1192.05,1.1041611702215632 -1997-07-11,0.0,16.455,0.6438894675925926,435.69,1215.81,1.0446230679056947 -1997-07-12,0.0,17.365,0.6427809027777778,480.59,1169.56,0.9980750970041974 -1997-07-13,0.0,19.23,0.6407940972222222,473.45,1303.76,0.9591047027610835 -1997-07-14,0.0,19.9,0.6399997685185186,401.6,1542.78,0.9060616661524006 -1997-07-15,0.0,15.73,0.6395354166666667,504.84,940.93,0.8562661623973103 -1997-07-16,0.28,18.395,0.6378482638888888,425.35,1342.32,0.8216258119589868 -1997-07-17,10.4,21.095,0.6360001157407408,267.72,1758.77,0.7750778410574897 -1997-07-18,5.22,20.46,0.6355359953703703,274.7,1666.11,0.7382724687167708 -1997-07-19,3.3,15.785,0.6338483796296296,296.25,1231.38,0.7003845854248544 -1997-07-20,0.11,12.725,0.6319996527777777,293.77,1133.09,0.6408464831089858 -1997-07-21,0.0,14.114999999999998,0.6315355324074073,395.14,1095.57,0.6127011983778479 -1997-07-22,0.0,13.73,0.6287943287037038,438.17,974.39,0.5780608479395244 -1997-07-23,0.0,12.325000000000001,0.628,451.91,869.37,0.5423379865500033 -1997-07-24,0.0,14.99,0.6267813657407407,503.82,881.04,0.5271828332332367 -1997-07-25,0.0,17.935,0.624052199074074,482.36,1132.27,0.4979550375509011 -1997-07-26,0.0,20.38,0.6238902777777778,457.09,1376.15,0.4687272418685657 -1997-07-27,6.72,22.485,0.6207944444444444,360.36,1774.11,0.46764473091736797 -1997-07-28,19.38,21.3,0.6199998842592592,281.92,1706.09,0.5055326142092844 -1997-07-29,4.32,16.955000000000002,0.6183303240740741,322.7,1204.48,0.47197477472215843 -1997-07-30,0.0,16.1,0.615999537037037,421.64,1166.14,0.4394994461862301 -1997-07-31,0.0,17.835,0.6151532407407407,449.81,1219.41,0.4189317381134755 -1997-08-01,2.04,19.225,0.6120002314814815,359.23,1360.21,0.41460169430868504 -1997-08-02,2.05,20.155,0.6115356481481482,275.76,1748.83,0.38862143147994244 -1997-08-03,1.61,15.57,0.6080510416666667,334.22,1197.35,0.364806190553595 -1997-08-04,0.0,11.48,0.6078891203703704,471.04,745.44,0.3496510372368284 -1997-08-05,0.0,13.425,0.6042853009259259,421.64,945.39,0.33124835106646905 -1997-08-06,0.0,13.55,0.6039916666666666,422.59,945.24,0.31717570870090006 -1997-08-07,0.0,14.34,0.6002854166666667,464.4,905.46,0.3041855772865288 -1997-08-08,0.0,17.145,0.5999998842592592,436.88,1150.37,0.28686540206736694 -1997-08-09,0.0,19.5,0.5962851851851851,426.8,1335.69,0.2760402925553908 -1997-08-10,0.0,21.375,0.5959997685185184,378.01,1628.52,0.26629769399461234 -1997-08-11,2.87,20.240000000000002,0.5920523148148148,379.79,1459.83,0.2630501611410195 -1997-08-12,16.37,14.5,0.591992824074074,297.51,1058.37,0.26521518304341474 -1997-08-13,0.53,12.01,0.5880002314814815,412.62,837.12,0.25872011733622907 -1997-08-14,7.17,12.885000000000002,0.5879922453703703,234.75,1071.87,0.26846271589700754 -1997-08-15,1.72,12.819999999999999,0.5840005787037037,403.37,864.9,0.25655509543383387 -1997-08-16,10.36,14.89,0.5835359953703704,278.97,1112.36,0.2630501611410195 -1997-08-17,4.96,17.365000000000002,0.5800003472222222,192.05,1513.85,0.2619676501898219 -1997-08-18,0.0,13.879999999999999,0.5787818287037036,366.74,1044.81,0.2457299859218577 -1997-08-19,0.0,13.735,0.5760005787037037,315.1,1122.14,0.23490487640988159 -1997-08-20,0.0,12.91,0.5738478009259259,408.88,906.34,0.23165734355628878 -1997-08-21,5.37,13.54,0.5719994212962963,296.39,945.87,0.23273985450748638 -1997-08-22,12.46,13.5,0.5680513888888888,191.56,1190.14,0.2771228035065884 -1997-08-23,10.83,15.06,0.5679997685185185,132.48,1427.34,0.3907864533823376 -1997-08-24,5.12,15.17,0.5639996527777777,231.58,1253.15,0.4243442928694635 -1997-08-25,0.69,14.465,0.5639916666666667,383.02,1021.91,0.39295147528473284 -1997-08-26,0.0,15.32,0.56,422.92,1007.83,0.37238376721197824 -1997-08-27,4.7,15.495000000000001,0.558330324074074,341.81,989.45,0.3615586577000021 -1997-08-28,9.09,15.84,0.5560002314814815,252.01,1239.61,0.3745487891143735 -1997-08-29,7.54,16.575,0.5520519675925926,134.61,1576.69,0.37996134387036146 -1997-08-30,8.32,16.560000000000002,0.5520004629629629,185.13,1462.29,0.41784922716227785 -1997-08-31,3.28,15.965,0.5479999999999999,200.43,1441.24,0.44274697903982296 -1997-09-01,0.07,17.735,0.5479921296296296,292.05,1481.32,0.43516940238143964 -1997-09-02,0.0,17.814999999999998,0.5439997685185185,324.62,1425.63,0.4275918257230564 -1997-09-03,5.05,14.385000000000002,0.540794212962963,250.3,1150.19,0.42975684762545163 -1997-09-04,0.0,10.235,0.54,236.86,982.21,0.41568420525988264 -1997-09-05,0.0,10.945,0.5359994212962963,341.33,913.64,0.3994465409919185 -1997-09-06,0.0,13.01,0.5359994212962963,367.43,983.12,0.38970394243114004 -1997-09-07,2.73,14.785,0.5319998842592593,241.73,1283.23,0.3821263657727567 -1997-09-08,0.0,12.37,0.5298482638888888,411.55,846.32,0.364806190553595 -1997-09-09,2.34,12.74,0.5279998842592593,349.22,944.29,0.3593936357976069 -1997-09-10,2.28,12.975,0.5240002314814816,157.82,1288.7,0.3518160591392236 -1997-09-11,0.0,13.51,0.5240002314814816,159.33,1345.82,0.3464035043832356 -1997-09-12,0.15,14.18,0.520000462962963,183.56,1373.19,0.33557839487125946 -1997-09-13,0.08,16.305,0.5183310185185186,263.81,1434.75,0.3236707744080857 -1997-09-14,0.34,16.28,0.5159998842592592,334.06,1313.92,0.31284566489610965 -1997-09-15,0.0,15.735,0.511999537037037,356.17,1217.77,0.3085156210913192 -1997-09-16,0.29,12.375,0.511999537037037,378.52,913.7,0.29336046777455266 -1997-09-17,0.0,9.11,0.5079996527777778,395.91,686.45,0.2814528473113789 -1997-09-18,2.94,12.889999999999999,0.5067805555555556,319.7,890.96,0.2771228035065884 -1997-09-19,0.0,14.594999999999999,0.503999537037037,363.54,1063.19,0.26846271589700754 -1997-09-20,8.11,12.594999999999999,0.4999997685185186,224.15,1068.45,0.26413267209221714 -1997-09-21,8.22,6.01,0.4999997685185186,194.08,720.0,0.2608851392386243 -1997-09-22,0.0,4.74,0.4959997685185185,361.4,544.82,0.2511425406778458 -1997-09-23,4.06,7.3549999999999995,0.49366840277777774,259.61,710.28,0.25006002972664815 -1997-09-24,4.74,4.1450000000000005,0.4919994212962963,231.4,579.97,0.24031743116586965 -1997-09-25,1.38,5.765000000000001,0.48800034722222224,300.41,612.66,0.23706989831227682 -1997-09-26,0.0,7.315,0.48800034722222224,277.97,759.9,0.23057483260509115 -1997-09-27,0.07,4.665,0.4840002314814815,337.31,560.91,0.22407976689790549 -1997-09-28,0.0,7.74,0.48167002314814816,379.79,569.48,0.21974972309311505 -1997-09-29,4.34,9.395,0.4800005787037037,335.85,695.04,0.22840981070269592 -1997-09-30,14.55,11.594999999999999,0.4760001157407408,193.71,1008.05,0.28686540206736694 -1997-10-01,2.17,6.915,0.4760001157407408,292.27,662.39,0.272792759701798 -1997-10-02,1.0,4.0649999999999995,0.4719996527777777,176.38,663.0,0.2598026282874267 -1997-10-03,0.0,3.8449999999999998,0.4701513888888889,288.5,559.75,0.2543900735314386 -1997-10-04,0.0,5.205,0.46799976851851854,321.7,556.53,0.2511425406778458 -1997-10-05,3.27,7.875,0.463999537037037,210.83,758.45,0.2554725844826362 -1997-10-06,3.25,10.605,0.463999537037037,226.07,882.56,0.2543900735314386 -1997-10-07,0.0,10.19,0.46,303.51,793.23,0.24031743116586965 -1997-10-08,0.0,5.864999999999999,0.45920532407407405,316.25,566.17,0.23382236545868398 -1997-10-09,0.0,6.7,0.45599953703703705,284.56,649.51,0.23382236545868398 -1997-10-10,0.48,11.57,0.45200810185185186,276.28,920.0,0.23273985450748638 -1997-10-11,0.0,9.105,0.452,314.97,642.39,0.22083223404431265 -1997-10-12,0.0,4.335,0.4480001157407407,269.68,550.93,0.22407976689790549 -1997-10-13,0.0,6.295,0.4480001157407407,237.31,663.5,0.22407976689790549 -1997-10-14,0.0,8.95,0.4440001157407408,239.51,800.0,0.22083223404431265 -1997-10-15,0.0,9.245,0.44166932870370373,278.09,720.3,0.21325465738592939 -1997-10-16,0.0,8.735,0.4400003472222222,187.57,862.35,0.20459456977634852 -1997-10-17,0.0,3.945,0.43611064814814815,224.27,573.08,0.20134703692275568 -1997-10-18,0.0,4.34,0.43600011574074077,223.8,592.18,0.19809950406916285 -1997-10-19,0.0,5.095,0.43200000000000005,298.0,457.65,0.19485197121557002 -1997-10-20,0.0,5.140000000000001,0.43194837962962956,284.99,487.76,0.1916044383619772 -1997-10-21,2.82,3.965,0.428,169.62,570.22,0.18943941645958198 -1997-10-22,1.86,0.7650000000000001,0.4261517361111111,202.32,449.74,0.18943941645958198 -1997-10-23,2.04,-2.7299999999999995,0.42400011574074076,193.01,369.52,0.18943941645958198 -1997-10-24,0.0,-2.8099999999999996,0.42121863425925926,209.23,360.18,0.18943941645958198 -1997-10-25,0.0,-1.945,0.41999976851851856,241.63,355.78,0.18510937265479152 -1997-10-26,0.0,-1.455,0.4164640046296296,261.29,344.35,0.17861430694760583 -1997-10-27,9.52,-1.6600000000000001,0.4159996527777778,179.8,379.57,0.1840268617035939 -1997-10-28,11.26,-0.7549999999999999,0.4121109953703704,57.86,527.75,0.20784210262994132 -1997-10-29,4.04,-0.15000000000000002,0.41200046296296294,73.54,534.58,0.21866721214191742 -1997-10-30,0.0,1.5350000000000001,0.4080084490740741,125.89,562.15,0.22083223404431265 -1997-10-31,0.0,0.125,0.40794895833333333,239.27,402.43,0.22299725594670786 -1997-11-01,0.89,3.0700000000000003,0.40399999999999997,195.1,543.38,0.22949232165389355 -1997-11-02,10.82,8.004999999999999,0.4037145833333334,121.42,827.78,0.33557839487125946 -1997-11-03,4.68,10.379999999999999,0.40000023148148145,123.31,953.62,0.5672357384275483 -1997-11-04,0.62,6.095000000000001,0.39971435185185183,203.38,623.45,0.6029585998170693 -1997-11-05,11.04,5.26,0.3960082175925926,109.8,698.47,0.72961238110719 -1997-11-06,0.0,1.9749999999999999,0.39571446759259266,183.79,502.48,0.8227083229101846 -1997-11-07,0.0,1.735,0.3921108796296296,197.78,468.31,0.8865764690308435 -1997-11-08,0.0,1.81,0.3919487268518519,217.57,438.66,0.940702016590724 -1997-11-09,4.11,1.1949999999999998,0.3884644675925926,167.27,439.62,0.9883324984434189 -1997-11-10,4.67,2.24,0.38799999999999996,61.01,624.97,1.0706033307344374 -1997-11-11,1.67,1.555,0.3848466435185185,83.1,591.76,1.1366364987574917 -1997-11-12,1.74,-1.7799999999999998,0.3840003472222222,142.21,413.84,1.1474616082694677 -1997-11-13,0.0,-5.35,0.38166932870370374,151.52,313.7,1.1366364987574917 -1997-11-14,0.0,-7.47,0.3799997685185186,173.85,251.65,1.1258113892455155 -1997-11-15,0.0,-6.1899999999999995,0.37920590277777777,141.77,295.28,1.0933360607095872 -1997-11-16,0.0,-5.359999999999999,0.37611087962962964,93.41,351.18,1.0695208197832398 -1997-11-17,0.0,-5.86,0.3759486111111111,170.77,280.76,1.0251378707841377 -1997-11-18,0.0,-7.484999999999999,0.37321898148148147,195.85,222.42,0.9937450531994071 -1997-11-19,0.0,-5.96,0.3719998842592593,192.57,259.41,0.9645172575170715 -1997-11-20,0.0,-2.53,0.37120578703703705,153.86,378.28,0.9244643523227599 -1997-11-21,0.93,-2.4499999999999997,0.3684645833333333,149.97,397.87,0.8984840894940173 -1997-11-22,0.0,-5.89,0.3680003472222222,180.49,275.12,0.8497710966901247 -1997-11-23,0.27,-10.3,0.36615196759259255,187.49,198.47,0.8075531695934178 -1997-11-24,5.74,-7.5,0.3644642361111111,129.69,251.54,0.7945630381790466 -1997-11-25,1.06,-8.225,0.36400011574074076,187.08,207.14,0.7577576658383279 -1997-11-26,2.1,-5.54,0.3621513888888889,187.1,268.41,0.7480150672775493 -1997-11-27,5.68,-5.625,0.3604638888888889,129.24,285.24,0.7112096949368305 -1997-11-28,0.52,-12.35,0.3599998842592593,206.76,134.48,0.6841469211568902 -1997-11-29,0.0,-8.725,0.35920578703703704,166.68,228.29,0.6624967021329381 -1997-11-30,0.0,-5.99,0.3572189814814815,155.87,288.26,0.6365164393041954 -1997-12-01,3.75,-5.77,0.35611041666666665,133.97,291.09,0.6246088188410216 -1997-12-02,10.16,-5.0200000000000005,0.3559483796296296,76.44,353.38,0.6159487312314408 -1997-12-03,0.0,-2.0050000000000003,0.3546476851851852,91.87,446.87,0.6072886436218599 -1997-12-04,0.0,-4.485,0.35321898148148145,153.47,319.55,0.6072886436218599 -1997-12-05,4.4,-4.195,0.35211030092592593,99.97,351.83,0.604041110768267 -1997-12-06,15.3,-2.12,0.35199988425925927,45.19,470.97,0.6224437969386264 -1997-12-07,12.08,-2.215,0.35171423611111113,56.53,457.87,0.6505890816697643 -1997-12-08,1.24,-8.540000000000001,0.3506474537037037,164.88,224.72,0.6386814612065905 -1997-12-09,0.13,-11.24,0.34966921296296294,161.41,184.64,0.623526307889824 -1997-12-10,0.0,-12.030000000000001,0.3488465277777778,182.03,156.93,0.6029585998170693 -1997-12-11,0.0,-14.930000000000001,0.3481105324074074,198.77,94.2,0.5596581617691649 -1997-12-12,0.0,-15.739999999999998,0.3480079861111111,200.06,80.01,0.5466680303547936 -1997-12-13,0.0,-9.445,0.34794849537037037,173.3,200.0,0.5358429208428175 -1997-12-14,0.12,-7.859999999999999,0.34771435185185184,157.85,233.7,0.526100322282039 -1997-12-15,0.0,-16.585,0.3472057870370371,188.31,80.0,0.5174402346724581 -1997-12-16,0.0,-18.205,0.3466476851851852,189.37,80.0,0.5001200594532963 -1997-12-17,0.0,-8.32,0.3466476851851852,175.02,200.0,0.4892949499413202 -1997-12-18,0.0,-7.185,0.3461518518518519,174.79,211.84,0.48388239518533216 -1997-12-19,0.81,-10.075,0.3461518518518519,164.43,182.02,0.47413979662455363 -1997-12-20,0.0,-10.375,0.3456693287037037,159.3,183.15,0.4600671542589847 -1997-12-21,0.0,-15.79,0.3456693287037037,153.6,120.0,0.4546545995029967 -1997-12-22,0.0,-18.38,0.3461518518518519,185.49,80.0,0.4459945118934157 -1997-12-23,0.0,-16.745,0.3461518518518519,191.82,80.0,0.4384169352350325 -1997-12-24,3.63,-12.74,0.3461518518518519,126.22,138.7,0.42975684762545163 -1997-12-25,3.16,-10.545,0.3466476851851852,169.76,158.21,0.4221792709670683 -1997-12-26,10.05,-5.595,0.3472057870370371,84.43,305.66,0.4113541614550923 -1997-12-27,2.9,-5.8549999999999995,0.34771435185185184,119.92,268.45,0.40052905194311617 -1997-12-28,0.0,-12.83,0.34794849537037037,188.0,120.0,0.40269407384551137 -1997-12-29,0.0,-17.165,0.34800000000000003,187.25,80.0,0.40052905194311617 -1997-12-30,9.42,-9.465,0.3480079861111111,134.72,174.31,0.39511649718712805 -1997-12-31,5.57,-10.68,0.3484641203703704,126.43,172.12,0.384291387675152 -1998-01-01,0.0,-21.39,0.34921886574074074,193.75,47.77,0.3680537234071878 -1998-01-02,1.64,-14.625,0.35015162037037034,201.08,90.91,0.3604761467488045 -1998-01-03,1.64,-4.78,0.35120578703703703,184.42,241.38,0.35398108104161885 -1998-01-04,1.93,-5.76,0.3519482638888889,173.69,236.68,0.3464035043832356 -1998-01-05,3.48,-16.025,0.35200787037037035,151.73,94.3,0.3518160591392236 -1998-01-06,9.19,-11.825,0.35284641203703704,78.93,200.0,0.3615586577000021 -1998-01-07,7.94,-10.129999999999999,0.3541518518518519,37.5,256.54,0.3853738986263496 -1998-01-08,15.6,-9.53,0.35571446759259256,35.21,279.96,0.3961990081383257 -1998-01-09,16.16,-7.914999999999999,0.35600000000000004,45.16,290.54,0.4763048185269489 -1998-01-10,8.37,-5.95,0.3564643518518519,63.41,320.56,0.5163577237212605 -1998-01-11,0.45,-6.4399999999999995,0.35815185185185183,131.18,282.72,0.5120276799164701 -1998-01-12,0.0,-12.280000000000001,0.3599482638888889,208.75,140.28,0.4882124389901227 -1998-01-13,3.19,-12.495,0.36000787037037035,188.6,120.0,0.47738732947814655 -1998-01-14,3.19,-13.505,0.36121863425925926,163.1,120.0,0.45681962140539184 -1998-01-15,0.0,-19.865000000000002,0.3637142361111111,198.88,80.0,0.44274697903982296 -1998-01-16,0.0,-17.655,0.36400011574074076,207.23,83.12,0.4330043804790444 -1998-01-17,0.0,-15.485,0.36521898148148146,233.02,97.33,0.4275918257230564 -1998-01-18,0.0,-8.475,0.36771435185185186,199.38,211.98,0.42109676001587076 -1998-01-19,1.04,-3.9299999999999997,0.3680083333333333,106.77,374.9,0.41460169430868504 -1998-01-20,1.58,-3.275,0.3696696759259259,73.06,439.99,0.4113541614550923 -1998-01-21,0.77,-5.984999999999999,0.3719483796296296,135.24,304.11,0.40702411765030183 -1998-01-22,0.0,-15.905000000000001,0.37211041666666667,240.0,93.97,0.4016115628943137 -1998-01-23,0.19,-22.925,0.3746479166666667,267.95,40.0,0.40052905194311617 -1998-01-24,16.0,-13.325000000000001,0.3760002314814815,164.29,135.28,0.4113541614550923 -1998-01-25,6.47,-7.87,0.3772188657407407,91.6,280.0,0.4275918257230564 -1998-01-26,0.0,-15.61,0.3799997685185186,244.77,113.58,0.4243442928694635 -1998-01-27,0.0,-22.265,0.3804640046296296,282.65,40.0,0.41351918335748744 -1998-01-28,0.0,-14.45,0.383714699074074,268.12,111.18,0.40052905194311617 -1998-01-29,1.01,-12.07,0.38400833333333334,275.46,120.0,0.38970394243114004 -1998-01-30,5.8,-7.175,0.3866476851851852,141.41,268.87,0.3810438548215591 -1998-01-31,2.05,-6.1049999999999995,0.38799999999999996,174.99,288.54,0.37238376721197824 -1998-02-01,0.0,-11.405,0.3901519675925926,307.23,120.0,0.3658887015047926 -1998-02-02,0.0,-9.29,0.39200034722222227,307.21,143.5,0.3593936357976069 -1998-02-03,0.0,-4.9799999999999995,0.3936696759259259,306.44,210.8,0.35289857009042125 -1998-02-04,0.0,-11.295,0.39600023148148145,322.73,120.0,0.3485685262856308 -1998-02-05,0.0,-16.635,0.3972188657407407,328.84,60.53,0.3464035043832356 -1998-02-06,0.0,-16.39,0.40000023148148145,331.18,67.07,0.3485685262856308 -1998-02-07,0.0,-15.305,0.4012189814814815,330.96,75.82,0.3518160591392236 -1998-02-08,0.0,-14.82,0.40399999999999997,320.72,80.0,0.3550635919928165 -1998-02-09,0.0,-14.6,0.40521898148148144,315.34,80.0,0.3593936357976069 -1998-02-10,0.0,-13.040000000000001,0.4080003472222223,328.23,94.61,0.3637236796023974 -1998-02-11,0.0,-8.705,0.40966990740740744,328.75,139.62,0.3680537234071878 -1998-02-12,9.45,-2.495,0.41200046296296294,206.08,301.33,0.3713012562607806 -1998-02-13,4.13,-3.105,0.41464768518518513,168.2,362.61,0.3745487891143735 -1998-02-14,0.0,-14.389999999999999,0.4159996527777778,282.13,120.0,0.38753892052874483 -1998-02-15,0.0,-18.425,0.419205324074074,259.84,80.0,0.3745487891143735 -1998-02-16,0.0,-16.675,0.41999976851851856,331.8,80.0,0.3821263657727567 -1998-02-17,0.0,-8.695,0.42400011574074076,291.54,187.38,0.38753892052874483 -1998-02-18,0.0,-4.87,0.42400011574074076,309.04,241.98,0.3853738986263496 -1998-02-19,12.88,-2.62,0.428,128.56,387.79,0.39836403004072096 -1998-02-20,6.28,-2.1350000000000002,0.42846388888888887,72.14,453.86,0.4275918257230564 -1998-02-21,2.05,-2.6550000000000002,0.43200000000000005,114.11,438.83,0.43083935857664923 -1998-02-22,0.0,-4.08,0.4336695601851852,195.01,344.51,0.428674336674254 -1998-02-23,0.0,-7.475,0.43600011574074077,379.86,160.0,0.4275918257230564 -1998-02-24,0.01,-6.275,0.4399488425925926,377.89,185.16,0.42650931477185877 -1998-02-25,17.85,-3.6950000000000003,0.4400003472222222,195.71,319.49,0.4600671542589847 -1998-02-26,13.84,-0.35,0.4440001157407408,69.34,536.11,0.506615125160482 -1998-02-27,3.01,0.79,0.4440081018518519,88.04,566.38,0.5196052565748533 -1998-02-28,2.51,2.4,0.4480001157407407,131.38,605.93,0.5141927018188653 -1998-03-01,6.44,2.975,0.4501516203703704,127.22,616.28,0.5141927018188653 -1998-03-02,3.22,1.565,0.452,97.88,599.33,0.5520805851107816 -1998-03-03,0.01,-0.6050000000000001,0.45599953703703705,159.03,490.83,0.6062061326706623 -1998-03-04,0.13,-2.27,0.45599953703703705,163.76,433.56,0.6765693444985069 -1998-03-05,0.0,-3.795,0.46,199.35,373.89,0.7523451110823397 -1998-03-06,0.0,-4.555,0.4604638888888889,240.04,338.96,0.8118832133982083 -1998-03-07,0.66,-8.485,0.463999537037037,470.09,150.97,0.882246425226053 -1998-03-08,1.23,-4.435,0.46799976851851854,407.82,263.06,0.9526096370538978 -1998-03-09,17.89,0.7850000000000001,0.46799976851851854,229.86,480.14,1.1041611702215632 -1998-03-10,14.7,3.28,0.4719996527777777,284.65,534.93,1.4289144555808466 -1998-03-11,0.41,-6.025,0.4719996527777777,450.47,229.96,1.6454166458203692 -1998-03-12,0.0,-14.774999999999999,0.4760001157407408,401.88,124.76,1.851093726547915 -1998-03-13,0.0,-14.73,0.4800005787037037,441.59,120.05,2.0026452597155804 -1998-03-14,1.38,-11.565,0.4800005787037037,487.67,130.92,2.0784210262994134 -1998-03-15,1.81,-5.875,0.4840002314814815,393.83,276.95,2.14337168337127 -1998-03-16,0.0,-9.435,0.4840002314814815,506.39,160.0,2.1758470119071984 -1998-03-17,0.0,-10.629999999999999,0.48800034722222224,534.36,124.58,2.1758470119071984 -1998-03-18,0.0,-7.0249999999999995,0.4919994212962963,539.22,160.5,2.1650219023952224 -1998-03-19,0.0,-5.46,0.4919994212962963,523.66,211.65,2.121721464347318 -1998-03-20,3.84,-5.915,0.4959997685185185,275.79,280.0,2.110896354835342 -1998-03-21,0.5,-8.77,0.4959997685185185,485.81,199.9,2.0784210262994134 -1998-03-22,9.7,-6.675,0.4999997685185186,270.04,280.0,2.024295478739533 -1998-03-23,5.38,-8.315,0.503999537037037,257.42,246.64,2.0026452597155804 -1998-03-24,0.0,-8.69,0.503999537037037,526.35,175.36,1.9485197121557 -1998-03-25,0.0,-8.365,0.5079996527777778,581.52,131.46,1.861918836059891 -1998-03-26,7.56,-2.6099999999999994,0.5079996527777778,453.08,277.15,1.8186183980119868 -1998-03-27,9.4,4.8950000000000005,0.511999537037037,317.73,603.84,1.8943941645958196 -1998-03-28,2.31,6.1450000000000005,0.5159998842592592,405.15,640.0,2.0675959167874374 -1998-03-29,0.97,6.02,0.5159998842592592,394.93,682.58,2.33822365458684 -1998-03-30,2.53,4.569999999999999,0.520000462962963,417.37,529.84,2.92277956823355 -1998-03-31,7.63,3.535,0.520000462962963,253.62,603.47,3.626411686511997 -1998-04-01,8.04,1.1199999999999999,0.5240002314814816,233.39,522.14,4.416644680886253 -1998-04-02,9.18,0.3400000000000001,0.5279998842592593,139.95,549.43,4.957900156485059 -1998-04-03,9.29,-0.8600000000000001,0.5279998842592593,130.2,509.19,5.228527894284461 -1998-04-04,1.71,-1.81,0.5319998842592593,203.14,450.28,5.293478551356318 -1998-04-05,0.0,-1.0050000000000001,0.5319998842592593,272.04,463.17,5.206877675260509 -1998-04-06,0.0,0.925,0.5359994212962963,218.13,559.95,5.098626580140748 -1998-04-07,0.39,0.8849999999999999,0.5395353009259259,237.63,556.68,4.947075046973083 -1998-04-08,0.0,1.405,0.54,459.54,472.65,4.817173732829369 -1998-04-09,0.0,0.7600000000000002,0.5439997685185185,551.71,390.84,4.773873294781465 -1998-04-10,0.0,-1.145,0.5439997685185185,552.69,343.15,4.698097528197632 -1998-04-11,0.0,0.38500000000000023,0.5479999999999999,517.43,412.44,4.600671542589847 -1998-04-12,0.0,2.0549999999999997,0.5498481481481481,602.1,381.48,4.557371104541943 -1998-04-13,0.0,4.295,0.5520004629629629,618.46,426.28,4.665622199661704 -1998-04-14,0.0,4.49,0.5559922453703704,609.87,450.55,5.001200594532963 -1998-04-15,0.0,5.17,0.5560002314814815,599.66,487.33,5.520805851107817 -1998-04-16,0.0,6.06,0.56,631.79,455.24,6.137837093290456 -1998-04-17,10.09,7.63,0.5600517361111111,420.67,641.6,7.371899577655732 -1998-04-18,0.97,5.745,0.5639996527777777,331.2,740.77,8.800814033236579 -1998-04-19,0.0,6.62,0.5663305555555556,403.73,733.24,9.634347465658738 -1998-04-20,8.05,5.4799999999999995,0.5679997685185185,326.55,654.44,10.283854036377306 -1998-04-21,5.85,2.505,0.5715351851851852,381.04,530.73,10.71685841685635 -1998-04-22,0.0,5.32,0.5719994212962963,609.82,506.46,10.66273286929647 -1998-04-23,0.0,6.96,0.5760005787037037,619.43,559.94,10.565306883688685 -1998-04-24,5.59,5.53,0.5760005787037037,412.9,624.57,10.392105131497066 -1998-04-25,5.17,1.9900000000000002,0.5800003472222222,245.72,575.67,10.208078269793473 -1998-04-26,1.53,0.3700000000000001,0.5807946759259259,511.2,428.8,9.785898998826404 -1998-04-27,1.51,0.1349999999999998,0.5840005787037037,525.92,402.17,9.255468632739575 -1998-04-28,0.12,3.2899999999999996,0.5853530092592593,545.99,510.43,8.692562938116817 -1998-04-29,0.0,6.69,0.5880002314814815,637.41,530.23,8.205433010077892 -1998-04-30,0.0,9.73,0.5903311342592593,641.34,611.89,7.7940788486228 -1998-05-01,0.0,12.204999999999998,0.5920008101851852,644.92,666.86,7.49097578228747 -1998-05-02,3.64,10.74,0.5943310185185184,516.13,701.01,7.274473592047947 -1998-05-03,5.29,10.645,0.5959997685185184,254.72,1010.5,7.177047606440162 -1998-05-04,1.74,14.035,0.5987809027777777,400.67,1177.95,6.895594759128783 -1998-05-05,0.42,15.4,0.5999998842592592,458.77,1236.37,6.5708414737695 -1998-05-06,1.13,16.26,0.6027810185185185,332.41,1438.88,6.235263078898241 -1998-05-07,3.75,15.629999999999999,0.6039996527777778,222.27,1429.75,5.8996846840269805 -1998-05-08,4.05,15.305,0.6063304398148148,263.81,1347.05,5.499155632083865 -1998-05-09,5.63,12.95,0.6079995370370371,301.7,1112.26,5.196052565748533 -1998-05-10,0.92,11.05,0.6098476851851852,407.3,946.67,5.012025704044939 -1998-05-11,0.0,10.765,0.6120002314814815,610.22,682.12,4.719747747221584 -1998-05-12,0.0,9.5,0.6133524305555556,637.3,552.8,4.42746979039823 -1998-05-13,0.0,11.165000000000001,0.6159914351851852,628.61,629.97,4.146016943086851 -1998-05-14,0.0,14.055000000000001,0.6162851851851852,629.28,717.68,3.8753892052874477 -1998-05-15,0.0,16.38,0.6195356481481481,598.48,925.21,3.615586577000021 -1998-05-16,0.0,15.65,0.6199998842592592,579.41,952.51,3.399084386760499 -1998-05-17,0.0,13.975,0.6227818287037037,566.0,895.03,3.1934073060329524 -1998-05-18,0.0,13.605,0.6240006944444445,473.59,1039.71,2.9336046777455267 -1998-05-19,0.0,11.43,0.6253526620370371,515.32,838.3,2.7062773779940277 -1998-05-20,0.0,13.215,0.6278895833333333,555.02,853.55,2.522250516290434 -1998-05-21,7.85,16.119999999999997,0.6280518518518519,390.59,1163.09,2.349048764098816 -1998-05-22,14.9,11.54,0.6303303240740741,296.74,968.73,2.2624478880030074 -1998-05-23,10.59,8.11,0.6319916666666667,209.1,875.22,2.1866721214191744 -1998-05-24,3.89,9.7,0.6322856481481481,239.37,920.43,2.1758470119071984 -1998-05-25,2.02,13.114999999999998,0.6347809027777778,471.34,911.52,2.121721464347318 -1998-05-26,2.94,14.145,0.6360001157407408,365.09,1087.7,2.035120588251509 -1998-05-27,0.0,8.9,0.6362856481481481,570.92,607.47,1.9160443836197718 -1998-05-28,0.0,11.785,0.6387810185185185,560.68,731.58,1.8077932885000105 -1998-05-29,1.44,17.095,0.6399917824074074,433.32,1265.39,1.7211924124042017 -1998-05-30,0.35,14.845,0.6400512731481481,424.73,1139.43,1.6129413172844407 -1998-05-31,1.89,7.135,0.6418483796296296,499.68,546.8,1.5046902221646794 -1998-06-01,4.63,10.27,0.6435354166666667,278.35,915.44,1.4289144555808466 -1998-06-02,0.0,7.834999999999999,0.6439998842592592,554.3,549.03,1.3098382509491096 -1998-06-03,6.44,9.86,0.6442856481481481,310.12,827.31,1.2557127033892288 -1998-06-04,4.8,6.92,0.6458482638888889,203.53,788.97,1.16911182729342 -1998-06-05,5.47,8.225,0.6471538194444444,215.89,850.52,1.1149862797335395 -1998-06-06,3.62,10.395,0.6479927083333333,243.63,937.54,1.080345929295216 -1998-06-07,0.68,10.905,0.6480521990740741,440.57,828.98,1.0251378707841377 -1998-06-08,0.0,12.275,0.6487947916666666,385.39,976.32,0.9796724108338379 -1998-06-09,0.0,11.66,0.6498487268518519,498.18,745.47,0.9287943961275504 -1998-06-10,0.0,14.170000000000002,0.6507814814814814,527.93,756.18,0.8844114471284483 -1998-06-11,0.11,16.655,0.6515357638888889,516.38,904.99,0.8400284981293462 -1998-06-12,0.22,17.265,0.6519921296296297,476.81,1082.91,0.8108007024470107 -1998-06-13,0.8,16.085,0.6520001157407407,346.56,1289.27,0.7772428629598849 -1998-06-14,4.79,16.455,0.6520517361111111,190.79,1480.19,0.7436850234727588 -1998-06-15,11.7,15.41,0.6522856481481482,180.96,1417.72,0.798893081983837 -1998-06-16,4.09,17.39,0.6527943287037037,196.45,1601.41,0.8227083229101846 -1998-06-17,6.2,16.95,0.653352662037037,171.59,1600.62,0.857348673348508 -1998-06-18,1.66,17.295,0.653848611111111,226.08,1633.86,0.8616787171532985 -1998-06-19,3.52,18.625,0.653848611111111,275.08,1598.86,0.9374544837371314 -1998-06-20,1.21,19.65,0.653848611111111,383.99,1622.1,0.882246425226053 -1998-06-21,0.0,18.75,0.6543310185185185,395.67,1520.28,0.8681737828604842 -1998-06-22,0.0,18.275,0.6543310185185185,368.82,1520.36,0.8530186295437175 -1998-06-23,0.0,20.384999999999998,0.653848611111111,367.19,1737.93,0.8313684105197653 -1998-06-24,0.0,21.405,0.653848611111111,386.74,1785.9,0.7826554177158728 -1998-06-25,0.0,19.83,0.653352662037037,471.03,1355.85,0.7458500453751541 -1998-06-26,6.76,21.085,0.653352662037037,309.03,1712.06,0.7306948920583874 -1998-06-27,1.6,18.03,0.6527943287037037,349.78,1479.31,0.720952293497609 -1998-06-28,0.0,14.015,0.6522856481481482,426.08,1101.78,0.6787343664009022 -1998-06-29,0.63,14.885,0.6520517361111111,501.73,879.67,0.651671592620962 -1998-06-30,15.22,18.55,0.6519921296296297,323.63,1432.82,0.6451765269137762 -1998-07-01,21.9,15.94,0.6518894675925926,261.1,1360.2,0.9450320603955146 -1998-07-02,6.13,14.245,0.6511538194444445,295.58,1241.4,1.0684383088320422 -1998-07-03,0.0,17.13,0.6503311342592593,514.94,1025.33,1.0933360607095872 -1998-07-04,6.5,18.605,0.6493528935185184,412.95,1346.85,1.1149862797335395 -1998-07-05,20.64,16.935000000000002,0.6482863425925927,263.13,1428.7,1.36396379850899 -1998-07-06,0.04,14.875,0.6480008101851852,476.93,1039.79,1.3964391270449183 -1998-07-07,0.0,18.135,0.647890162037037,459.09,1313.73,1.3964391270449183 -1998-07-08,0.0,18.09,0.64678125,473.61,1257.49,1.3531386889970138 -1998-07-09,3.81,19.17,0.645352199074074,327.36,1492.88,1.2881880319251573 -1998-07-10,23.15,17.835,0.6440515046296297,243.58,1572.74,1.3098382509491096 -1998-07-11,15.14,14.145,0.6438894675925926,283.92,1192.26,1.3747889080209663 -1998-07-12,7.87,15.98,0.6427809027777778,275.42,1353.89,1.4072642365568944 -1998-07-13,2.9,16.005000000000003,0.6407940972222222,423.19,1113.0,1.4072642365568944 -1998-07-14,0.17,20.634999999999998,0.6399997685185186,453.23,1540.6,1.3856140175329423 -1998-07-15,0.0,23.305,0.6395354166666667,420.08,1907.81,1.3423135794850378 -1998-07-16,7.49,24.34,0.6378482638888888,319.43,2018.21,1.2990131414371333 -1998-07-17,9.06,23.55,0.6360001157407408,301.77,1961.97,1.266537812901205 -1998-07-18,2.84,21.125,0.6355359953703703,315.01,1778.42,1.2557127033892288 -1998-07-19,0.0,17.855,0.6338483796296296,473.28,1230.61,1.2015871558293483 -1998-07-20,0.0,19.755,0.6319996527777777,418.15,1515.95,1.158286717781444 -1998-07-21,0.38,18.215,0.6315355324074073,456.79,1285.7,1.0933360607095872 -1998-07-22,0.0,20.535,0.6287943287037038,427.1,1550.97,1.032715447442521 -1998-07-23,0.0,17.71,0.628,476.39,1176.8,0.9807549217850358 -1998-07-24,0.0,17.03,0.6267813657407407,353.05,1389.4,0.9309594180299455 -1998-07-25,0.0,15.725000000000001,0.624052199074074,374.03,1261.02,0.8551836514461127 -1998-07-26,0.0,14.620000000000001,0.6238902777777778,445.12,1040.4,0.8075531695934178 -1998-07-27,0.0,15.254999999999999,0.6207944444444444,480.29,975.91,0.7696652863015014 -1998-07-28,6.53,18.115,0.6199998842592592,299.49,1384.35,0.7501800891799445 -1998-07-29,12.9,19.195,0.6183303240740741,239.68,1640.0,0.7631702205943158 -1998-07-30,1.75,17.740000000000002,0.615999537037037,336.87,1402.95,0.7436850234727588 -1998-07-31,0.4,16.445,0.6151532407407407,402.82,1250.5,0.7090446730344352 -1998-08-01,0.0,14.260000000000002,0.6120002314814815,460.76,946.37,0.6646617240353332 -1998-08-02,0.0,16.255,0.6115356481481482,454.05,1109.36,0.6365164393041954 -1998-08-03,0.16,17.79,0.6080510416666667,416.45,1312.21,0.6029585998170693 -1998-08-04,0.0,16.195,0.6078891203703704,471.56,1030.4,0.5780608479395244 -1998-08-05,0.0,17.01,0.6042853009259259,475.7,1060.61,0.5488330522571889 -1998-08-06,0.0,17.345,0.6039916666666666,464.88,1116.22,0.520687767526051 -1998-08-07,0.0,17.385,0.6002854166666667,477.23,1058.99,0.4947075046973083 -1998-08-08,0.0,19.58,0.5999998842592592,476.67,1187.06,0.47197477472215843 -1998-08-09,0.0,23.740000000000002,0.5962851851851851,393.05,1836.96,0.4589846433077871 -1998-08-10,2.54,24.45,0.5959997685185184,304.86,2105.54,0.44274697903982296 -1998-08-11,15.23,21.905,0.5920523148148148,209.75,1956.9,0.4449120009422182 -1998-08-12,13.26,14.28,0.591992824074074,223.71,1206.82,0.4665622199661704 -1998-08-13,0.0,11.935,0.5880002314814815,431.24,824.84,0.44707702284461337 -1998-08-14,0.0,14.695,0.5879922453703703,458.52,904.84,0.4340868914302421 -1998-08-15,0.0,17.255,0.5840005787037037,423.57,1168.19,0.4232617819182659 -1998-08-16,0.7,17.825,0.5835359953703704,315.56,1421.47,0.41027165050389464 -1998-08-17,1.74,15.14,0.5800003472222222,403.74,935.0,0.3961990081383257 -1998-08-18,4.74,16.235,0.5787818287037036,275.32,1211.07,0.4016115628943137 -1998-08-19,0.5,11.695,0.5760005787037037,364.55,896.24,0.37779632196796625 -1998-08-20,0.0,12.555,0.5738478009259259,422.77,843.48,0.35722861389521166 -1998-08-21,1.28,14.600000000000001,0.5719994212962963,348.98,1066.44,0.3453209934320379 -1998-08-22,0.0,13.225,0.5680513888888888,386.05,937.61,0.33341337296886425 -1998-08-23,0.0,13.965,0.5679997685185185,409.84,927.53,0.31934073060329526 -1998-08-24,3.67,16.51,0.5639996527777777,273.06,1267.64,0.3182582196520977 -1998-08-25,15.46,17.215,0.5639916666666667,198.38,1452.74,0.31717570870090006 -1998-08-26,16.19,17.115000000000002,0.56,136.56,1610.71,0.4784698404293441 -1998-08-27,4.52,18.055,0.558330324074074,205.05,1537.79,0.5271828332332367 -1998-08-28,1.96,16.375,0.5560002314814815,352.69,1196.91,0.5445030084523984 -1998-08-29,1.69,16.505000000000003,0.5520519675925926,303.39,1333.06,0.5087801470628772 -1998-08-30,2.0,17.44,0.5520004629629629,273.15,1464.41,0.4979550375509011 -1998-08-31,1.07,14.91,0.5479999999999999,359.83,1079.34,0.4752223075757513 -1998-09-01,0.87,14.765,0.5479921296296296,339.86,1128.08,0.4643971980637752 -1998-09-02,0.0,14.515,0.5439997685185185,297.45,1191.71,0.4535720885517991 -1998-09-03,6.65,16.255000000000003,0.540794212962963,201.69,1376.69,0.44707702284461337 -1998-09-04,7.24,16.525,0.54,207.82,1388.43,0.4459945118934157 -1998-09-05,0.0,14.225000000000001,0.5359994212962963,324.39,1133.62,0.4200142490646731 -1998-09-06,0.71,15.925,0.5359994212962963,311.78,1289.6,0.40485909574790657 -1998-09-07,0.0,14.25,0.5319998842592593,399.99,954.99,0.38970394243114004 -1998-09-08,11.2,12.864999999999998,0.5298482638888888,287.04,991.8,0.37346627816317585 -1998-09-09,18.44,11.41,0.5279998842592593,137.85,1133.58,0.45681962140539184 -1998-09-10,7.14,10.45,0.5240002314814816,111.65,1104.28,0.5607406727203627 -1998-09-11,0.64,9.825,0.5240002314814816,253.82,923.65,0.5856384245979076 -1998-09-12,3.96,10.790000000000001,0.520000462962963,179.57,1015.12,0.604041110768267 -1998-09-13,3.56,10.690000000000001,0.5183310185185186,274.65,917.44,0.609453665524255 -1998-09-14,0.0,11.725000000000001,0.5159998842592592,409.63,777.61,0.6072886436218599 -1998-09-15,5.62,12.68,0.511999537037037,313.81,906.41,0.6072886436218599 -1998-09-16,2.07,12.17,0.511999537037037,246.17,1058.28,0.5932160012562909 -1998-09-17,0.0,10.085,0.5079996527777778,324.36,862.32,0.5748133150859315 -1998-09-18,0.76,7.565,0.5067805555555556,385.2,603.44,0.5499155632083865 -1998-09-19,3.18,10.73,0.503999537037037,279.02,848.31,0.540172964647608 -1998-09-20,4.83,12.2,0.4999997685185186,226.32,1017.39,0.5282653441844343 -1998-09-21,6.75,13.639999999999999,0.4999997685185186,198.29,1195.61,0.5488330522571889 -1998-09-22,12.5,13.735,0.4959997685185185,221.72,1147.95,0.6592491692793452 -1998-09-23,0.0,7.164999999999999,0.49366840277777774,324.55,698.17,0.6181137531338359 -1998-09-24,0.0,6.23,0.4919994212962963,363.61,584.44,0.5910509793538956 -1998-09-25,0.0,9.63,0.48800034722222224,350.81,752.28,0.5672357384275483 -1998-09-26,0.0,12.084999999999999,0.48800034722222224,331.83,917.47,0.5412554755988056 -1998-09-27,8.18,14.075,0.4840002314814815,222.87,1129.94,0.5607406727203627 -1998-09-28,4.38,13.419999999999998,0.48167002314814816,182.59,1182.05,0.5694007603299435 -1998-09-29,3.44,9.265,0.4800005787037037,245.79,753.45,0.5574931398667697 -1998-09-30,5.2,9.7,0.4760001157407408,206.81,863.98,0.5434204975012007 -1998-10-01,13.99,10.715,0.4760001157407408,166.72,1001.76,0.5466680303547936 -1998-10-02,7.94,6.7,0.4719996527777777,238.52,693.3,0.5694007603299435 -1998-10-03,0.0,5.805,0.4701513888888889,225.28,715.86,0.5477505413059912 -1998-10-04,0.0,5.21,0.46799976851851854,273.53,624.1,0.5271828332332367 -1998-10-05,0.02,4.795,0.463999537037037,228.84,640.33,0.5044501032580868 -1998-10-06,0.0,2.4050000000000002,0.463999537037037,288.72,492.05,0.47955235138054175 -1998-10-07,0.27,1.9600000000000004,0.46,338.17,397.04,0.47413979662455363 -1998-10-08,7.76,5.8549999999999995,0.45920532407407405,231.04,585.64,0.4806348623317393 -1998-10-09,2.1,7.64,0.45599953703703705,255.99,708.63,0.4882124389901227 -1998-10-10,2.28,7.465,0.45200810185185186,214.23,750.94,0.47955235138054175 -1998-10-11,4.13,8.0,0.452,73.48,947.98,0.48279988423413456 -1998-10-12,1.43,8.365,0.4480001157407407,155.65,895.8,0.4914599718437154 -1998-10-13,0.0,7.43,0.4480001157407407,237.31,746.99,0.49687252659970355 -1998-10-14,0.0,5.4350000000000005,0.4440001157407408,194.37,702.43,0.4882124389901227 -1998-10-15,2.76,5.7,0.44166932870370373,75.2,809.34,0.4752223075757513 -1998-10-16,1.64,5.56,0.4400003472222222,100.9,802.16,0.4611496652101823 -1998-10-17,0.0,5.245,0.43611064814814815,257.83,600.72,0.4643971980637752 -1998-10-18,0.0,9.495000000000001,0.43600011574074077,275.55,767.64,0.46223217616137996 -1998-10-19,0.09,11.495000000000001,0.43200000000000005,224.81,997.14,0.44815953379581097 -1998-10-20,1.34,5.8149999999999995,0.43194837962962956,279.41,560.41,0.4384169352350325 -1998-10-21,0.7,3.5549999999999997,0.428,217.1,578.33,0.42650931477185877 -1998-10-22,0.73,2.5349999999999997,0.4261517361111111,160.64,596.11,0.41027165050389464 -1998-10-23,0.03,1.5999999999999999,0.42400011574074076,225.71,491.43,0.4059416066991042 -1998-10-24,0.18,4.89,0.42121863425925926,239.25,600.0,0.40485909574790657 -1998-10-25,1.0,4.7,0.41999976851851856,239.15,592.25,0.39403398623593044 -1998-10-26,0.0,-0.355,0.4164640046296296,244.61,397.77,0.3864564095775472 -1998-10-27,0.0,-0.1949999999999994,0.4159996527777778,277.36,320.02,0.37887883291916397 -1998-10-28,6.51,3.585,0.4121109953703704,205.03,504.61,0.38862143147994244 -1998-10-29,5.36,3.7950000000000004,0.41200046296296294,123.93,624.72,0.38970394243114004 -1998-10-30,6.81,3.3,0.4080084490740741,91.22,655.28,0.37563130006557105 -1998-10-31,8.3,4.215,0.40794895833333333,60.76,735.99,0.4579021323565895 -1998-11-01,0.0,3.275,0.40399999999999997,98.76,673.86,0.46764473091736797 -1998-11-02,5.58,1.605,0.4037145833333334,77.65,599.91,0.5044501032580868 -1998-11-03,1.36,2.19,0.40000023148148145,101.11,620.46,0.5282653441844343 -1998-11-04,0.31,1.455,0.39971435185185183,93.75,597.8,0.5380079427452128 -1998-11-05,0.0,1.13,0.3960082175925926,132.0,559.58,0.5412554755988056 -1998-11-06,0.0,1.6600000000000001,0.39571446759259266,156.59,560.0,0.545585519403596 -1998-11-07,0.0,1.0350000000000001,0.3921108796296296,119.87,560.0,0.5466680303547936 -1998-11-08,0.0,-2.15,0.3919487268518519,201.46,361.88,0.5488330522571889 -1998-11-09,0.0,-1.765,0.3884644675925926,170.55,422.24,0.5488330522571889 -1998-11-10,0.0,-2.04,0.38799999999999996,179.88,394.38,0.5466680303547936 -1998-11-11,11.56,0.375,0.3848466435185185,118.55,486.87,0.6105361764754527 -1998-11-12,4.95,2.41,0.3840003472222222,105.79,599.96,0.6614141911817405 -1998-11-13,1.91,-2.54,0.38166932870370374,217.72,356.29,0.6711567897425189 -1998-11-14,0.85,-6.06,0.3799997685185186,224.04,244.35,0.6776518554497045 -1998-11-15,4.75,-2.55,0.37920590277777777,144.91,369.86,0.7133747168392256 -1998-11-16,0.26,-3.72,0.37611087962962964,184.35,344.8,0.72961238110719 -1998-11-17,0.0,-6.74,0.3759486111111111,189.37,275.12,0.7317774030095852 -1998-11-18,0.0,-8.094999999999999,0.37321898148148147,208.62,225.59,0.7155397387416209 -1998-11-19,3.92,-7.085,0.3719998842592593,178.25,256.13,0.7047146292296448 -1998-11-20,6.77,-4.09,0.37120578703703705,124.48,343.9,0.7285298701559924 -1998-11-21,1.68,-0.47999999999999987,0.3684645833333333,102.6,518.34,0.7241998263512018 -1998-11-22,0.0,-2.51,0.3680003472222222,197.14,353.93,0.7133747168392256 -1998-11-23,0.0,0.3350000000000002,0.36615196759259255,176.77,464.11,0.7144572277904233 -1998-11-24,1.6,3.3,0.3644642361111111,124.32,639.83,0.7079621620832377 -1998-11-25,0.0,-2.4699999999999998,0.36400011574074076,187.37,359.75,0.7047146292296448 -1998-11-26,5.28,-5.0,0.3621513888888889,181.96,280.08,0.7057971401808425 -1998-11-27,15.79,-1.31,0.3604638888888889,81.76,480.0,0.7382724687167708 -1998-11-28,0.0,-2.14,0.3599998842592593,82.81,464.07,0.7501800891799445 -1998-11-29,0.0,-5.324999999999999,0.35920578703703704,160.63,312.42,0.7404374906191661 -1998-11-30,6.89,-5.37,0.3572189814814815,156.87,238.16,0.7436850234727588 -1998-12-01,4.77,0.815,0.35611041666666665,139.03,447.8,0.7859029505694657 -1998-12-02,1.46,0.8699999999999999,0.3559483796296296,134.51,521.57,0.7978105710326394 -1998-12-03,0.07,-4.6,0.3546476851851852,169.34,320.0,0.8021406148374299 -1998-12-04,1.71,-4.12,0.35321898148148145,178.12,294.02,0.8010581038862323 -1998-12-05,1.0,-3.825,0.35211030092592593,154.15,320.39,0.793480527227849 -1998-12-06,8.44,-4.285,0.35199988425925927,123.21,318.89,0.7999755929350345 -1998-12-07,4.11,-0.20000000000000018,0.35171423611111113,135.77,394.31,0.8302858995685677 -1998-12-08,2.01,-4.535,0.3506474537037037,191.97,243.52,0.8605962062021009 -1998-12-09,0.21,-5.59,0.34966921296296294,143.85,295.5,0.8844114471284483 -1998-12-10,0.0,-6.385,0.3488465277777778,161.17,275.09,0.8692562938116817 -1998-12-11,0.0,-7.7299999999999995,0.3481105324074074,159.06,240.44,0.8638437390556937 -1998-12-12,0.0,-8.18,0.3480079861111111,192.27,175.28,0.8551836514461127 -1998-12-13,0.0,-2.55,0.34794849537037037,162.37,341.27,0.8627612281044962 -1998-12-14,0.13,-4.865,0.34771435185185184,168.9,276.79,0.8367809652757534 -1998-12-15,0.0,-6.445,0.3472057870370371,183.26,213.85,0.8292033886173701 -1998-12-16,0.0,-0.3400000000000001,0.3466476851851852,99.11,482.55,0.8205433010077893 -1998-12-17,5.61,-4.355,0.3466476851851852,92.95,350.14,0.8108007024470107 -1998-12-18,4.37,-7.470000000000001,0.3461518518518519,64.96,294.17,0.8118832133982083 -1998-12-19,0.49,-12.125,0.3461518518518519,174.08,159.86,0.7945630381790466 -1998-12-20,1.34,-10.485,0.3456693287037037,168.37,172.64,0.7794078848622801 -1998-12-21,4.24,-9.27,0.3456693287037037,165.4,160.0,0.7599226877407229 -1998-12-22,10.03,-4.254999999999999,0.3461518518518519,144.45,233.63,0.7772428629598849 -1998-12-23,0.0,-13.32,0.3461518518518519,188.6,120.0,0.7859029505694657 -1998-12-24,0.01,-15.55,0.3461518518518519,169.59,120.0,0.768582775350304 -1998-12-25,0.0,-13.834999999999999,0.3466476851851852,175.9,123.15,0.7469325563263517 -1998-12-26,0.0,-12.245,0.3472057870370371,172.97,144.97,0.7361074468143756 -1998-12-27,0.0,-8.5,0.34771435185185184,156.63,205.77,0.7252823373023994 -1998-12-28,0.0,-7.52,0.34794849537037037,166.85,214.57,0.7252823373023994 -1998-12-29,1.65,-9.535,0.34800000000000003,168.33,160.0,0.7144572277904233 -1998-12-30,7.03,-10.385,0.3480079861111111,127.5,168.77,0.6928070087664712 -1998-12-31,2.08,-20.055,0.3484641203703704,160.9,79.92,0.6711567897425189 -1999-01-01,0.0,-25.41,0.34921886574074074,146.37,40.0,0.6711567897425189 -1999-01-02,0.0,-23.08,0.35015162037037034,152.26,40.0,0.6603316802305428 -1999-01-03,13.86,-17.2,0.35120578703703703,132.85,80.0,0.6440940159625786 -1999-01-04,14.79,-8.545,0.3519482638888889,101.45,200.2,0.6386814612065905 -1999-01-05,0.0,-14.834999999999999,0.35200787037037035,165.27,119.8,0.6354339283529977 -1999-01-06,0.71,-20.59,0.35284641203703704,189.29,40.0,0.6300213735970097 -1999-01-07,0.0,-15.56,0.3541518518518519,191.17,83.11,0.6278563516946144 -1999-01-08,0.0,-19.165,0.35571446759259256,209.32,40.0,0.6256913297922193 -1999-01-09,14.1,-11.32,0.35600000000000004,77.65,189.96,0.6224437969386264 -1999-01-10,8.53,-13.32,0.3564643518518519,100.85,160.0,0.6148662202802432 -1999-01-11,0.0,-17.655,0.35815185185185183,194.33,80.0,0.6105361764754527 -1999-01-12,2.78,-19.105,0.3599482638888889,157.69,80.0,0.6062061326706623 -1999-01-13,3.87,-20.14,0.36000787037037035,113.02,80.0,0.5997110669634765 -1999-01-14,2.09,-25.369999999999997,0.36121863425925926,172.15,40.0,0.5964635341098837 -1999-01-15,17.45,-17.68,0.3637142361111111,179.6,53.14,0.5942985122074885 -1999-01-16,13.86,-7.08,0.36400011574074076,154.7,195.1,0.5921334903050932 -1999-01-17,0.05,-4.57,0.36521898148148146,163.48,285.92,0.5888859574515005 -1999-01-18,4.4,-5.029999999999999,0.36771435185185186,163.83,215.4,0.58455591364671 -1999-01-19,9.06,0.029999999999999805,0.3680083333333333,107.43,438.54,0.5813083807931171 -1999-01-20,0.0,-2.245,0.3696696759259259,122.26,394.02,0.6170312421826384 -1999-01-21,0.0,-9.355,0.3719483796296296,187.81,186.47,0.5997110669634765 -1999-01-22,0.0,-13.535,0.37211041666666667,233.94,108.33,0.5921334903050932 -1999-01-23,5.18,-10.129999999999999,0.3746479166666667,165.68,154.2,0.6278563516946144 -1999-01-24,4.68,-0.18000000000000016,0.3760002314814815,146.39,374.56,0.681981899254495 -1999-01-25,0.07,-3.2150000000000003,0.3772188657407407,223.55,269.62,0.7090446730344352 -1999-01-26,0.0,-13.43,0.3799997685185186,233.63,120.0,0.7144572277904233 -1999-01-27,0.0,-12.965,0.3804640046296296,212.12,128.4,0.7090446730344352 -1999-01-28,0.0,-18.185000000000002,0.383714699074074,248.58,79.98,0.681981899254495 -1999-01-29,0.0,-20.52,0.38400833333333334,247.12,54.98,0.6603316802305428 -1999-01-30,0.0,-19.135,0.3866476851851852,252.21,80.0,0.6495065707185667 -1999-01-31,0.0,-18.025,0.38799999999999996,264.23,80.0,0.6386814612065905 -1999-02-01,0.0,-11.785,0.3901519675925926,261.71,122.22,0.6278563516946144 -1999-02-02,2.19,-9.865,0.39200034722222227,265.58,121.0,0.6386814612065905 -1999-02-03,12.16,-6.21,0.3936696759259259,176.71,224.63,0.6495065707185667 -1999-02-04,0.0,-4.085,0.39600023148148145,234.77,273.61,0.681981899254495 -1999-02-05,0.0,-4.385,0.3972188657407407,236.51,270.59,0.7036321182784472 -1999-02-06,0.0,-10.864999999999998,0.40000023148148145,291.13,124.04,0.7036321182784472 -1999-02-07,0.0,-11.78,0.4012189814814815,231.86,157.9,0.6928070087664712 -1999-02-08,0.0,-12.5,0.40399999999999997,267.97,129.86,0.6765693444985069 -1999-02-09,0.0,-14.145,0.40521898148148144,310.67,80.37,0.6549191254745548 -1999-02-10,1.39,-8.934999999999999,0.4080003472222223,247.01,183.66,0.6386814612065905 -1999-02-11,0.0,-9.525,0.40966990740740744,271.13,169.73,0.6224437969386264 -1999-02-12,3.69,-5.36,0.41200046296296294,174.58,273.27,0.6170312421826384 -1999-02-13,1.06,-0.74,0.41464768518518513,185.41,426.57,0.6224437969386264 -1999-02-14,0.0,-9.33,0.4159996527777778,290.94,168.55,0.6278563516946144 -1999-02-15,0.0,-15.139999999999999,0.419205324074074,336.39,80.19,0.6224437969386264 -1999-02-16,0.0,-11.42,0.41999976851851856,348.99,120.0,0.6170312421826384 -1999-02-17,0.42,-8.200000000000001,0.42400011574074076,287.68,196.08,0.6062061326706623 -1999-02-18,9.62,-7.79,0.42400011574074076,137.35,254.79,0.5953810231586861 -1999-02-19,0.4,-7.13,0.428,201.75,259.83,0.58455591364671 -1999-02-20,0.0,-9.02,0.42846388888888887,285.99,185.0,0.5737308041347339 -1999-02-21,0.0,-11.22,0.43200000000000005,312.9,160.0,0.5683182493787459 -1999-02-22,0.0,-19.6,0.4336695601851852,365.87,47.53,0.5412554755988056 -1999-02-23,0.0,-19.38,0.43600011574074077,326.82,80.0,0.5196052565748533 -1999-02-24,0.0,-15.105,0.4399488425925926,386.59,80.0,0.5087801470628772 -1999-02-25,0.63,-11.385000000000002,0.4400003472222222,395.55,80.23,0.4979550375509011 -1999-02-26,4.13,-6.85,0.4440001157407408,241.37,213.55,0.4925424827949131 -1999-02-27,0.86,-5.364999999999999,0.4440081018518519,289.91,261.39,0.487129928038925 -1999-02-28,0.0,-7.375000000000001,0.4480001157407407,417.89,137.67,0.487129928038925 -1999-03-01,8.12,-1.06,0.4501516203703704,270.26,310.15,0.4979550375509011 -1999-03-02,4.15,2.5500000000000003,0.452,132.57,584.27,0.5304303660868295 -1999-03-03,3.29,-1.5299999999999998,0.45599953703703705,247.19,341.22,0.5520805851107816 -1999-03-04,6.75,1.4749999999999999,0.45599953703703705,221.77,456.1,0.6062061326706623 -1999-03-05,0.04,-2.7500000000000004,0.46,374.24,283.83,0.6711567897425189 -1999-03-06,0.0,-12.780000000000001,0.4604638888888889,358.86,129.7,0.7577576658383279 -1999-03-07,4.57,-13.17,0.463999537037037,155.92,160.05,0.8660087609580888 -1999-03-08,0.46,-13.31,0.46799976851851854,210.61,164.15,0.9850849655898262 -1999-03-09,0.0,-11.53,0.46799976851851854,267.5,183.95,1.0283854036377307 -1999-03-10,6.07,-8.585,0.4719996527777777,259.08,214.19,1.0392105131497067 -1999-03-11,9.87,-3.375,0.4719996527777777,274.13,304.68,1.0175602941257544 -1999-03-12,1.31,1.29,0.4760001157407408,180.99,548.96,0.9959100751018022 -1999-03-13,2.67,0.5950000000000002,0.4800005787037037,226.88,491.59,0.9634347465658739 -1999-03-14,0.0,-1.6500000000000004,0.4800005787037037,229.66,435.51,0.97425985607785 -1999-03-15,10.63,-1.67,0.4840002314814815,157.2,439.36,0.9894150093946166 -1999-03-16,9.66,-3.32,0.4840002314814815,120.44,422.11,1.0359629802961139 -1999-03-17,0.0,-2.755,0.48800034722222224,303.76,372.01,1.057613199320066 -1999-03-18,2.18,-3.635,0.4919994212962963,433.97,280.15,1.0651907759784494 -1999-03-19,8.32,-2.27,0.4919994212962963,240.22,386.57,1.0781809073928208 -1999-03-20,0.0,-1.6,0.4959997685185185,261.64,436.43,1.0825109511976112 -1999-03-21,0.0,-1.9100000000000001,0.4959997685185185,445.05,337.87,1.0825109511976112 -1999-03-22,4.2,1.1149999999999998,0.4999997685185186,361.96,441.45,1.0933360607095872 -1999-03-23,6.42,1.09,0.503999537037037,252.69,510.12,1.179936936805396 -1999-03-24,0.0,0.04499999999999993,0.503999537037037,462.25,400.0,1.179936936805396 -1999-03-25,0.0,0.34499999999999975,0.5079996527777778,445.61,427.32,1.2015871558293483 -1999-03-26,0.0,-1.71,0.5079996527777778,409.44,377.93,1.2232373748533005 -1999-03-27,0.0,1.6599999999999997,0.511999537037037,524.46,418.35,1.2448875938772528 -1999-03-28,0.0,4.9750000000000005,0.5159998842592592,572.52,413.71,1.3206633604610856 -1999-03-29,0.01,5.82,0.5159998842592592,529.28,549.84,1.461389784116775 -1999-03-30,0.0,3.7849999999999997,0.520000462962963,411.01,593.34,1.6670668648443212 -1999-03-31,0.0,0.5249999999999997,0.520000462962963,421.11,464.01,1.851093726547915 -1999-04-01,0.0,-0.48,0.5240002314814816,482.23,403.73,1.9918201502036044 -1999-04-02,0.0,-0.9499999999999997,0.5279998842592593,496.53,374.94,2.110896354835342 -1999-04-03,2.38,-3.0450000000000004,0.5279998842592593,478.67,319.27,2.219147449955103 -1999-04-04,11.46,-1.85,0.5319998842592593,293.19,401.44,2.33822365458684 -1999-04-05,0.0,-1.97,0.5319998842592593,441.07,384.35,2.359873873610792 -1999-04-06,0.0,1.5499999999999998,0.5359994212962963,582.38,393.12,2.4031743116586965 -1999-04-07,0.88,3.365,0.5395353009259259,512.23,495.41,2.522250516290434 -1999-04-08,3.56,2.475,0.54,292.25,560.63,2.72792759701798 -1999-04-09,2.04,2.935,0.5439997685185185,321.15,599.94,2.9444297872575023 -1999-04-10,0.0,1.39,0.5439997685185185,457.5,491.35,3.1284566489610963 -1999-04-11,0.0,0.845,0.5479999999999999,457.68,466.08,3.31248351066469 -1999-04-12,0.0,0.8000000000000003,0.5498481481481481,499.6,440.0,3.5398108104161885 -1999-04-13,0.57,0.7949999999999999,0.5520004629629629,382.79,495.17,3.691362343583854 -1999-04-14,2.67,0.32499999999999996,0.5559922453703704,251.1,519.91,3.788788329191639 -1999-04-15,1.74,1.27,0.5560002314814815,309.65,556.18,3.8645640957754717 -1999-04-16,0.21,3.285,0.56,414.04,592.06,3.9728151908952327 -1999-04-17,0.0,5.015,0.5600517361111111,599.78,477.08,4.167667162110803 -1999-04-18,0.0,6.105,0.5639996527777777,539.38,601.55,4.514070666494038 -1999-04-19,0.0,5.07,0.5663305555555556,456.63,633.89,4.827998842341346 -1999-04-20,0.66,4.33,0.5679997685185185,472.42,592.15,5.293478551356318 -1999-04-21,0.0,4.3149999999999995,0.5715351851851852,612.28,423.36,5.748133150859315 -1999-04-22,0.0,4.864999999999999,0.5719994212962963,618.06,424.12,6.137837093290456 -1999-04-23,0.0,4.0,0.5760005787037037,588.86,448.32,6.451765269137763 -1999-04-24,0.0,1.2550000000000001,0.5760005787037037,438.44,495.29,6.5708414737695 -1999-04-25,0.0,2.28,0.5800003472222222,455.24,521.79,6.538366145233571 -1999-04-26,2.49,5.795,0.5807946759259259,415.7,645.96,6.505890816697644 -1999-04-27,1.18,5.14,0.5840005787037037,433.16,645.28,6.473415488161715 -1999-04-28,0.0,4.56,0.5853530092592593,610.68,444.24,6.451765269137763 -1999-04-29,0.0,6.735,0.5880002314814815,580.09,548.6,6.419289940601834 -1999-04-30,0.0,6.404999999999999,0.5903311342592593,646.91,407.81,6.419289940601834 -1999-05-01,0.0,8.420000000000002,0.5920008101851852,663.08,385.03,6.397639721577882 -1999-05-02,0.0,10.645,0.5943310185185184,660.82,434.45,6.354339283529978 -1999-05-03,0.0,13.295,0.5959997685185184,661.58,473.21,6.267738407434169 -1999-05-04,0.0,15.305,0.5987809027777777,660.68,501.66,6.127011983778479 -1999-05-05,0.0,16.66,0.5999998842592592,646.12,575.5,5.8996846840269805 -1999-05-06,0.0,17.185,0.6027810185185185,619.72,689.88,5.5749313986676965 -1999-05-07,0.0,17.365000000000002,0.6039996527777778,584.11,802.11,5.239353003796438 -1999-05-08,0.0,16.845,0.6063304398148148,542.75,882.13,4.87129928038925 -1999-05-09,5.64,16.705,0.6079995370370371,297.46,1352.26,4.535720885517991 -1999-05-10,12.19,10.25,0.6098476851851852,327.56,864.45,4.546545995029967 -1999-05-11,0.0,3.8600000000000003,0.6120002314814815,365.2,594.21,4.319218695278469 -1999-05-12,0.0,3.58,0.6133524305555556,478.11,499.68,4.059416066991042 -1999-05-13,0.0,4.205,0.6159914351851852,414.9,585.3,3.810438548215591 -1999-05-14,0.0,6.03,0.6162851851851852,479.18,568.91,3.583111248464093 -1999-05-15,0.0,8.765,0.6195356481481481,597.83,465.17,3.3557839487125944 -1999-05-16,0.0,13.055,0.6199998842592592,631.9,482.44,3.1284566489610963 -1999-05-17,0.0,16.105,0.6227818287037037,596.98,671.6,2.92277956823355 -1999-05-18,0.0,17.305,0.6240006944444445,549.98,845.23,2.72792759701798 -1999-05-19,0.0,17.744999999999997,0.6253526620370371,498.27,997.13,2.5114254067784576 -1999-05-20,5.91,15.2,0.6278895833333333,299.97,1177.31,2.316573435562888 -1999-05-21,0.0,9.24,0.6280518518518519,459.97,670.78,2.121721464347318 -1999-05-22,0.0,11.15,0.6303303240740741,552.46,572.37,1.9593448216676759 -1999-05-23,1.46,13.655000000000001,0.6319916666666667,490.13,750.14,1.8186183980119868 -1999-05-24,5.11,14.64,0.6322856481481481,284.23,1170.78,1.6995421933802495 -1999-05-25,15.59,12.795000000000002,0.6347809027777778,247.42,1097.71,1.7969681789880345 -1999-05-26,11.71,11.325,0.6360001157407408,259.36,962.14,1.9160443836197718 -1999-05-27,6.01,9.655000000000001,0.6362856481481481,297.93,800.08,1.9052192741077956 -1999-05-28,0.0,11.535,0.6387810185185185,484.94,756.27,1.8402686170359388 -1999-05-29,0.0,14.125,0.6399917824074074,508.73,811.33,1.764492850452106 -1999-05-30,0.0,17.895,0.6400512731481481,531.44,911.91,1.7103673028922255 -1999-05-31,0.0,19.855,0.6418483796296296,514.03,1035.38,1.6237664267964167 -1999-06-01,2.35,21.78,0.6435354166666667,424.26,1403.55,1.537165550700608 -1999-06-02,6.44,18.015,0.6439998842592592,291.23,1380.39,1.4397395650928229 -1999-06-03,2.88,14.059999999999999,0.6442856481481481,248.68,1212.94,1.3964391270449183 -1999-06-04,1.47,13.565000000000001,0.6458482638888889,382.78,983.32,1.2881880319251573 -1999-06-05,0.0,12.985,0.6471538194444444,507.89,717.41,1.2340624843652768 -1999-06-06,1.42,15.375,0.6479927083333333,388.02,1099.07,1.179936936805396 -1999-06-07,5.08,17.939999999999998,0.6480521990740741,279.31,1464.18,1.1258113892455155 -1999-06-08,6.81,17.8,0.6487947916666666,262.93,1438.34,1.0933360607095872 -1999-06-09,11.01,12.93,0.6498487268518519,336.32,949.24,1.1041611702215632 -1999-06-10,0.0,13.684999999999999,0.6507814814814814,492.25,760.08,1.0511181336128805 -1999-06-11,0.0,17.32,0.6515357638888889,483.78,945.98,0.9969925860529997 -1999-06-12,0.0,20.92,0.6519921296296297,449.2,1272.28,0.9482795932491073 -1999-06-13,0.0,22.4,0.6520001157407407,463.71,1299.45,0.8995666004452149 -1999-06-14,0.0,22.759999999999998,0.6520517361111111,390.76,1613.13,0.8584311842997057 -1999-06-15,4.19,18.66,0.6522856481481482,276.51,1479.53,0.8118832133982083 -1999-06-16,0.0,10.75,0.6527943287037037,471.47,656.25,0.7382724687167708 -1999-06-17,0.0,11.66,0.653352662037037,452.79,732.29,0.6960545416200639 -1999-06-18,6.76,13.63,0.653848611111111,285.98,1080.55,0.6657442349865309 -1999-06-19,0.14,12.8,0.653848611111111,455.12,768.92,0.6538366145233572 -1999-06-20,0.0,14.955,0.653848611111111,501.82,731.29,0.6202787750362311 -1999-06-21,0.0,16.825,0.6543310185185185,500.22,801.59,0.589968468402698 -1999-06-22,0.0,18.825,0.6543310185185185,484.98,924.9,0.5607406727203627 -1999-06-23,1.58,19.875,0.653848611111111,459.38,1053.12,0.5390904536964104 -1999-06-24,3.19,21.189999999999998,0.653848611111111,320.69,1522.76,0.540172964647608 -1999-06-25,3.04,19.845,0.653352662037037,375.44,1262.79,0.5358429208428175 -1999-06-26,6.01,20.295,0.653352662037037,283.35,1552.27,0.5564106289155721 -1999-06-27,0.0,20.31,0.6527943287037037,415.38,1299.01,0.5347604098916199 -1999-06-28,14.26,21.7,0.6522856481481482,267.04,1762.75,0.5412554755988056 -1999-06-29,14.89,19.305,0.6520517361111111,192.81,1745.24,0.5878034465003028 -1999-06-30,9.59,18.24,0.6519921296296297,268.9,1508.72,0.7415200015703636 -1999-07-01,0.0,17.755,0.6518894675925926,435.28,1192.98,0.6440940159625786 -1999-07-02,6.21,20.65,0.6511538194444445,265.02,1703.84,0.6343514174018001 -1999-07-03,2.42,19.77,0.6503311342592593,334.88,1552.03,0.6072886436218599 -1999-07-04,3.65,20.22,0.6493528935185184,277.4,1649.31,0.5834734026955124 -1999-07-05,0.0,19.51,0.6482863425925927,300.18,1703.03,0.5509980741595841 -1999-07-06,0.0,14.785,0.6480008101851852,448.15,974.98,0.5282653441844343 -1999-07-07,4.83,16.28,0.647890162037037,280.22,1278.59,0.5120276799164701 -1999-07-08,4.21,15.345,0.64678125,295.72,1172.4,0.46980975281976317 -1999-07-09,0.0,14.625,0.645352199074074,390.09,1105.1,0.44924204474700863 -1999-07-10,9.88,14.305,0.6440515046296297,220.38,1250.72,0.4330043804790444 -1999-07-11,11.08,12.89,0.6438894675925926,158.4,1248.19,0.46223217616137996 -1999-07-12,2.64,15.08,0.6427809027777778,401.85,1003.33,0.4579021323565895 -1999-07-13,0.0,17.8,0.6407940972222222,469.11,1154.85,0.44815953379581097 -1999-07-14,0.0,17.990000000000002,0.6399997685185186,473.37,1143.57,0.48496490613652976 -1999-07-15,0.99,19.9,0.6395354166666667,437.87,1324.11,0.4579021323565895 -1999-07-16,2.6,20.310000000000002,0.6378482638888888,370.33,1434.65,0.4384169352350325 -1999-07-17,0.0,24.16,0.6360001157407408,381.93,2015.67,0.4221792709670683 -1999-07-18,4.03,23.325,0.6355359953703703,286.77,1929.47,0.41784922716227785 -1999-07-19,1.63,19.78,0.6338483796296296,349.58,1604.3,0.41351918335748744 -1999-07-20,0.0,15.275,0.6319996527777777,454.61,1043.19,0.38753892052874483 -1999-07-21,0.02,14.24,0.6315355324074073,487.68,890.74,0.3658887015047926 -1999-07-22,5.68,18.89,0.6287943287037038,341.31,1323.13,0.3518160591392236 -1999-07-23,0.0,20.200000000000003,0.628,404.25,1564.96,0.33341337296886425 -1999-07-24,0.0,18.955,0.6267813657407407,456.64,1283.48,0.31609319774970246 -1999-07-25,3.66,19.685,0.624052199074074,275.83,1613.48,0.31284566489610965 -1999-07-26,16.28,19.555,0.6238902777777778,219.24,1745.62,0.6137837093290455 -1999-07-27,6.76,19.355,0.6207944444444444,262.22,1623.73,0.7848204396182681 -1999-07-28,3.48,19.685000000000002,0.6199998842592592,299.45,1540.66,0.754510132984735 -1999-07-29,5.7,19.035,0.6183303240740741,315.2,1414.29,0.8032231257886274 -1999-07-30,0.45,20.93,0.615999537037037,418.29,1589.6,0.8151307462518013 -1999-07-31,0.0,23.115000000000002,0.6151532407407407,392.77,1875.35,0.804305636739825 -1999-08-01,5.44,23.245,0.6120002314814815,274.02,1969.75,0.7631702205943158 -1999-08-02,0.0,17.515,0.6115356481481482,422.96,1284.36,0.7025496073272497 -1999-08-03,0.09,14.39,0.6080510416666667,420.99,1053.22,0.65708414737695 -1999-08-04,8.68,14.489999999999998,0.6078891203703704,329.02,1020.66,0.6170312421826384 -1999-08-05,13.03,15.82,0.6042853009259259,261.44,1286.58,0.6127011983778479 -1999-08-06,15.38,16.055,0.6039916666666666,262.69,1301.98,0.6863119430592853 -1999-08-07,2.85,15.740000000000002,0.6002854166666667,274.59,1290.15,0.6267738407434169 -1999-08-08,7.88,13.945,0.5999998842592592,268.28,1152.72,0.5802258698419196 -1999-08-09,3.81,12.18,0.5962851851851851,162.5,1180.79,0.5358429208428175 -1999-08-10,0.1,11.89,0.5959997685185184,356.53,966.26,0.4979550375509011 -1999-08-11,0.0,12.985000000000001,0.5920523148148148,443.7,914.21,0.46547970901497276 -1999-08-12,6.92,15.995,0.591992824074074,271.85,1272.68,0.44924204474700863 -1999-08-13,9.6,17.2,0.5880002314814815,289.67,1322.28,0.43516940238143964 -1999-08-14,21.36,17.939999999999998,0.5879922453703703,265.99,1438.09,0.4979550375509011 -1999-08-15,0.0,15.545000000000002,0.5840005787037037,426.15,1113.81,0.487129928038925 -1999-08-16,0.0,15.045,0.5835359953703704,458.78,969.59,0.46547970901497276 -1999-08-17,0.9,16.895,0.5800003472222222,382.47,1233.54,0.4535720885517991 -1999-08-18,3.19,16.825000000000003,0.5787818287037036,221.48,1443.21,0.43733442428383484 -1999-08-19,0.02,13.45,0.5760005787037037,429.57,932.32,0.4221792709670683 -1999-08-20,0.0,15.165,0.5738478009259259,455.85,964.86,0.41027165050389464 -1999-08-21,0.0,15.219999999999999,0.5719994212962963,431.75,1044.45,0.40269407384551137 -1999-08-22,0.0,15.89,0.5680513888888888,375.8,1225.06,0.38862143147994244 -1999-08-23,0.0,17.505,0.5679997685185185,430.51,1200.95,0.3745487891143735 -1999-08-24,0.0,19.53,0.5639996527777777,427.95,1335.53,0.35831112484640926 -1999-08-25,0.0,19.945,0.5639916666666667,429.28,1338.05,0.34315597152964267 -1999-08-26,0.0,20.855,0.56,415.16,1439.38,0.3301658401152714 -1999-08-27,0.0,22.035,0.558330324074074,380.5,1671.17,0.31717570870090006 -1999-08-28,0.45,20.945,0.5560002314814815,365.46,1604.91,0.3074331101401216 -1999-08-29,0.0,17.6,0.5520519675925926,390.19,1260.33,0.28578289111616934 -1999-08-30,0.0,13.035,0.5520004629629629,354.32,1000.45,0.2619676501898219 -1999-08-31,0.0,12.14,0.5479999999999999,434.33,780.85,0.24681249687305531 -1999-09-01,0.0,15.540000000000001,0.5479921296296296,454.78,836.57,0.23706989831227682 -1999-09-02,0.0,17.805,0.5439997685185185,444.45,980.58,0.22949232165389355 -1999-09-03,0.0,21.485,0.540794212962963,408.27,1393.34,0.22083223404431265 -1999-09-04,0.0,21.33,0.54,398.99,1401.36,0.214337168337127 -1999-09-05,0.0,23.01,0.5359994212962963,353.14,1739.02,0.20892461358113892 -1999-09-06,0.0,22.785,0.5359994212962963,328.24,1784.08,0.20242954787395329 -1999-09-07,1.82,22.060000000000002,0.5319998842592593,257.11,1879.37,0.19809950406916285 -1999-09-08,15.88,22.325,0.5298482638888888,141.75,2149.22,0.20134703692275568 -1999-09-09,19.27,20.75,0.5279998842592593,153.29,1906.41,0.27495778160419326 -1999-09-10,19.52,21.049999999999997,0.5240002314814816,180.02,1849.19,0.3215057525056905 -1999-09-11,49.75,19.48,0.5240002314814816,166.81,1728.27,0.7231173154000042 -1999-09-12,0.0,14.82,0.520000462962963,331.94,1080.12,0.6808993883032974 -1999-09-13,0.0,14.03,0.5183310185185186,375.04,908.25,0.6960545416200639 -1999-09-14,0.0,15.335,0.5159998842592592,349.55,1049.6,0.726364848253597 -1999-09-15,2.64,16.495,0.511999537037037,265.17,1285.56,0.7350249358631779 -1999-09-16,10.54,15.94,0.511999537037037,193.45,1305.51,0.7317774030095852 -1999-09-17,38.33,12.605,0.5079996527777778,117.64,1218.03,0.9764248779802454 -1999-09-18,14.54,10.44,0.5067805555555556,127.62,1033.23,1.5588157697245602 -1999-09-19,0.0,8.925,0.503999537037037,378.12,613.97,1.7753179599640823 -1999-09-20,0.0,11.495,0.4999997685185186,365.49,757.21,1.9160443836197718 -1999-09-21,7.96,12.774999999999999,0.4999997685185186,195.46,1046.69,1.9918201502036044 -1999-09-22,13.35,11.989999999999998,0.4959997685185185,114.1,1176.05,2.14337168337127 -1999-09-23,6.01,11.325,0.49366840277777774,113.87,1127.64,2.2624478880030074 -1999-09-24,3.34,13.24,0.4919994212962963,194.32,1098.68,2.327398545074864 -1999-09-25,6.22,12.425,0.48800034722222224,200.54,1020.54,2.457299859218577 -1999-09-26,0.0,9.74,0.48800034722222224,341.8,719.53,2.424824530682649 -1999-09-27,0.0,10.385,0.4840002314814815,361.45,677.21,2.359873873610792 -1999-09-28,0.0,12.23,0.48167002314814816,360.89,745.93,2.2624478880030074 -1999-09-29,0.0,13.485000000000001,0.4800005787037037,334.12,895.77,2.1866721214191744 -1999-09-30,0.01,14.125,0.4760001157407408,231.67,1193.98,2.110896354835342 -1999-10-01,8.54,10.19,0.4760001157407408,230.32,788.49,2.0784210262994134 -1999-10-02,2.87,8.475,0.4719996527777777,246.56,679.77,1.9701699311796523 -1999-10-03,1.04,8.790000000000001,0.4701513888888889,271.34,770.99,1.8727439455718675 -1999-10-04,0.88,5.23,0.46799976851851854,274.61,598.31,1.742842631428154 -1999-10-05,0.0,1.8450000000000002,0.463999537037037,311.75,439.41,1.6237664267964167 -1999-10-06,1.2,2.36,0.463999537037037,264.05,461.55,1.537165550700608 -1999-10-07,0.0,2.67,0.46,240.83,534.77,1.3964391270449183 -1999-10-08,0.0,0.94,0.45920532407407405,271.84,438.6,1.3206633604610856 -1999-10-09,4.19,5.090000000000001,0.45599953703703705,197.88,590.24,1.2557127033892288 -1999-10-10,5.88,7.655,0.45200810185185186,223.12,626.49,1.2124122653413245 -1999-10-11,7.52,8.370000000000001,0.452,204.43,709.01,1.1907620463173723 -1999-10-12,0.0,4.79,0.4480001157407407,257.46,569.15,1.1366364987574917 -1999-10-13,1.18,4.319999999999999,0.4480001157407407,248.67,542.12,1.0933360607095872 -1999-10-14,16.6,5.779999999999999,0.4440001157407408,192.41,601.2,1.1149862797335395 -1999-10-15,12.74,2.38,0.44166932870370373,159.11,529.38,1.16911182729342 -1999-10-16,4.19,3.59,0.4400003472222222,161.98,585.15,1.16911182729342 -1999-10-17,2.76,7.745,0.43611064814814815,193.44,736.11,1.1907620463173723 -1999-10-18,6.1,5.095000000000001,0.43600011574074077,164.03,617.33,1.2124122653413245 -1999-10-19,1.65,0.28,0.43200000000000005,161.0,480.76,1.2232373748533005 -1999-10-20,0.56,1.39,0.43194837962962956,213.21,475.51,1.2232373748533005 -1999-10-21,1.27,3.2900000000000005,0.428,228.44,527.71,1.2124122653413245 -1999-10-22,0.0,2.835,0.4261517361111111,237.0,491.18,1.2015871558293483 -1999-10-23,16.44,4.7,0.42400011574074076,145.25,618.08,1.2881880319251573 -1999-10-24,19.51,4.37,0.42121863425925926,131.7,624.33,1.6129413172844407 -1999-10-25,0.42,0.855,0.41999976851851856,181.53,472.7,1.6670668648443212 -1999-10-26,0.0,0.21999999999999975,0.4164640046296296,213.21,434.87,1.7211924124042017 -1999-10-27,0.0,1.1849999999999998,0.4159996527777778,209.86,460.17,1.742842631428154 -1999-10-28,0.0,-2.0599999999999996,0.4121109953703704,246.45,310.41,1.75366774094013 -1999-10-29,0.0,-0.5549999999999997,0.41200046296296294,235.86,361.23,1.7211924124042017 -1999-10-30,0.0,1.795,0.4080084490740741,236.69,439.98,1.6995421933802495 -1999-10-31,1.24,4.485,0.40794895833333333,202.23,551.2,1.6887170838682732 -1999-11-01,3.48,5.965000000000001,0.40399999999999997,177.84,598.56,1.6887170838682732 -1999-11-02,0.0,6.15,0.4037145833333334,235.65,559.75,1.6778919743562972 -1999-11-03,12.77,9.92,0.40000023148148145,158.63,789.84,1.75366774094013 -1999-11-04,8.97,6.52,0.39971435185185183,147.71,649.22,1.8835690550838433 -1999-11-05,0.0,2.4850000000000003,0.3960082175925926,148.67,558.59,1.851093726547915 -1999-11-06,2.26,3.86,0.39571446759259266,160.16,580.68,1.8402686170359388 -1999-11-07,0.0,0.5749999999999997,0.3921108796296296,155.55,472.21,1.7861430694760585 -1999-11-08,0.0,-1.58,0.3919487268518519,101.08,451.71,1.7211924124042017 -1999-11-09,0.0,-3.93,0.3884644675925926,148.73,346.75,1.6887170838682732 -1999-11-10,0.0,-2.85,0.38799999999999996,125.72,394.98,1.6129413172844407 -1999-11-11,0.0,-5.255000000000001,0.3848466435185185,168.41,294.43,1.537165550700608 -1999-11-12,0.0,-6.915,0.3840003472222222,184.2,240.07,1.4722148936287511 -1999-11-13,1.81,-4.42,0.38166932870370374,179.87,297.84,1.4072642365568944 -1999-11-14,11.76,0.4099999999999999,0.3799997685185186,88.49,518.56,1.4180893460688704 -1999-11-15,10.37,1.33,0.37920590277777777,66.94,578.21,1.5696408792365362 -1999-11-16,8.72,-0.27499999999999997,0.37611087962962964,40.68,549.73,1.6345915363083927 -1999-11-17,4.7,-4.17,0.3759486111111111,111.91,344.96,1.6237664267964167 -1999-11-18,0.0,-7.135,0.37321898148148147,150.31,274.45,1.6129413172844407 -1999-11-19,0.0,-7.984999999999999,0.3719998842592593,231.44,172.36,1.5696408792365362 -1999-11-20,0.0,2.56,0.37120578703703705,131.29,585.09,1.5696408792365362 -1999-11-21,2.54,4.965,0.3684645833333333,116.43,668.97,1.5263404411886317 -1999-11-22,1.22,4.545,0.3680003472222222,111.79,684.34,1.547990660212584 -1999-11-23,1.19,6.3999999999999995,0.36615196759259255,156.65,681.74,1.5804659887485122 -1999-11-24,0.27,4.71,0.3644642361111111,183.26,519.27,1.6021162077724647 -1999-11-25,0.0,4.1850000000000005,0.36400011574074076,158.78,560.0,1.6021162077724647 -1999-11-26,12.88,0.6750000000000003,0.3621513888888889,122.12,440.0,1.6129413172844407 -1999-11-27,20.63,6.255,0.3604638888888889,132.73,571.75,2.1000712453233654 -1999-11-28,8.79,3.7550000000000003,0.3599998842592593,118.09,547.23,2.457299859218577 -1999-11-29,0.0,-0.8400000000000001,0.35920578703703704,106.08,455.72,2.5872011733622906 -1999-11-30,0.0,-5.875,0.3572189814814815,147.34,276.94,2.6846271589700756 -1999-12-01,0.0,-8.505,0.35611041666666665,160.86,203.57,2.6738020494580996 -1999-12-02,0.0,-6.885,0.3559483796296296,148.01,255.16,2.641326720922171 -1999-12-03,0.0,-4.32,0.3546476851851852,155.29,292.74,2.5872011733622906 -1999-12-04,0.0,-1.23,0.35321898148148145,101.87,454.37,2.543900735314386 -1999-12-05,0.0,1.5849999999999997,0.35211030092592593,88.65,575.43,2.4681249687305535 -1999-12-06,3.02,4.14,0.35199988425925927,92.61,633.28,2.424824530682649 -1999-12-07,8.4,2.06,0.35171423611111113,65.92,597.02,2.4789500782425296 -1999-12-08,3.54,-1.02,0.3506474537037037,77.74,464.12,2.457299859218577 -1999-12-09,0.0,-1.7650000000000001,0.34966921296296294,105.71,430.53,2.413999421170673 -1999-12-10,2.68,-0.7300000000000001,0.3488465277777778,89.75,478.11,2.359873873610792 -1999-12-11,14.6,0.12,0.3481105324074074,42.6,558.72,2.3923492021467205 -1999-12-12,8.6,0.485,0.3480079861111111,36.08,579.46,2.4681249687305535 -1999-12-13,4.78,0.565,0.34794849537037037,37.84,583.13,2.554725844826362 -1999-12-14,0.16,-1.24,0.34771435185185184,70.23,489.95,2.5655509543383386 -1999-12-15,0.0,-4.51,0.3472057870370371,148.09,297.23,2.543900735314386 -1999-12-16,2.23,-3.985,0.3466476851851852,122.96,327.74,2.5114254067784576 -1999-12-17,1.45,-2.8499999999999996,0.3466476851851852,89.56,424.38,2.446474749706601 -1999-12-18,0.0,-8.325000000000001,0.3461518518518519,164.28,221.22,2.327398545074864 -1999-12-19,0.0,-11.829999999999998,0.3461518518518519,169.04,158.92,2.1866721214191744 -1999-12-20,3.37,-10.05,0.3456693287037037,170.7,161.33,2.0675959167874374 -1999-12-21,15.37,-5.215,0.3456693287037037,136.19,250.82,2.0675959167874374 -1999-12-22,0.0,-7.9350000000000005,0.3461518518518519,178.6,206.78,1.9809950406916284 -1999-12-23,0.0,-11.945,0.3461518518518519,155.95,170.43,1.8727439455718675 -1999-12-24,0.0,-16.97,0.3461518518518519,186.41,86.38,1.742842631428154 -1999-12-25,0.0,-17.835,0.3466476851851852,179.9,81.89,1.6887170838682732 -1999-12-26,0.0,-13.405,0.3472057870370371,175.66,127.8,1.5696408792365362 -1999-12-27,0.73,-10.27,0.34771435185185184,129.25,200.16,1.4722148936287511 -1999-12-28,0.0,-16.805,0.34794849537037037,172.47,119.85,1.4072642365568944 -1999-12-29,1.95,-15.415,0.34800000000000003,139.82,120.83,1.3206633604610856 -1999-12-30,3.54,-14.23,0.3480079861111111,130.35,131.74,1.2881880319251573 -1999-12-31,0.0,-18.035,0.3484641203703704,198.33,80.0,1.2232373748533005 -2000-01-01,0.0,-16.32,0.34921886574074074,187.39,83.17,1.16911182729342 -2000-01-02,3.98,-7.1,0.35015162037037034,129.36,221.52,1.0933360607095872 -2000-01-03,7.49,-3.8000000000000003,0.35120578703703703,123.19,296.45,1.071685841685635 -2000-01-04,4.11,-5.4,0.3519482638888889,145.66,224.91,1.0478706007592875 -2000-01-05,3.41,-5.675,0.35200787037037035,157.81,222.56,1.0359629802961139 -2000-01-06,0.0,-15.475000000000001,0.35284641203703704,202.85,94.36,0.9980750970041974 -2000-01-07,1.43,-9.48,0.3541518518518519,172.05,183.16,0.9612697246634786 -2000-01-08,1.85,-9.135,0.35571446759259256,145.59,215.06,0.9439495494443169 -2000-01-09,2.73,-8.675,0.35600000000000004,134.95,216.41,0.9049791552012029 -2000-01-10,0.0,-7.68,0.3564643518518519,197.18,199.85,0.8854939580796459 -2000-01-11,13.53,-4.67,0.35815185185185183,123.53,294.49,0.8746688485676697 -2000-01-12,0.0,-4.175,0.3599482638888889,149.34,321.58,0.8692562938116817 -2000-01-13,0.0,-13.5,0.36000787037037035,177.86,144.79,0.7945630381790466 -2000-01-14,0.0,-19.89,0.36121863425925926,153.93,80.0,0.7361074468143756 -2000-01-15,0.0,-22.915,0.3637142361111111,175.62,68.36,0.7339424249119803 -2000-01-16,9.01,-22.12,0.36400011574074076,194.48,40.0,0.7306948920583874 -2000-01-17,8.6,-15.075,0.36521898148148146,118.73,129.25,0.7144572277904233 -2000-01-18,0.0,-19.075,0.36771435185185186,184.23,84.74,0.7036321182784472 -2000-01-19,0.0,-21.744999999999997,0.3680083333333333,229.44,50.77,0.6928070087664712 -2000-01-20,0.0,-21.805,0.3696696759259259,255.84,40.0,0.681981899254495 -2000-01-21,4.55,-19.035,0.3719483796296296,186.64,80.04,0.6711567897425189 -2000-01-22,5.25,-19.305,0.37211041666666667,99.12,107.52,0.6603316802305428 -2000-01-23,0.0,-20.97,0.3746479166666667,200.11,80.0,0.6495065707185667 -2000-01-24,2.45,-17.21,0.3760002314814815,185.25,92.64,0.6332689064506025 -2000-01-25,7.09,-14.155000000000001,0.3772188657407407,189.35,119.76,0.6278563516946144 -2000-01-26,11.53,-8.955,0.3799997685185186,172.05,194.71,0.6224437969386264 -2000-01-27,3.31,-11.68,0.3804640046296296,173.33,160.57,0.6116186874266503 -2000-01-28,2.28,-16.005,0.383714699074074,160.87,120.14,0.6007935779146741 -2000-01-29,0.0,-14.254999999999999,0.38400833333333334,203.61,136.09,0.5953810231586861 -2000-01-30,0.0,-11.745,0.3866476851851852,285.46,120.0,0.58455591364671 -2000-01-31,6.47,-9.200000000000001,0.38799999999999996,245.67,160.0,0.579143358890722 -2000-02-01,9.35,-6.26,0.3901519675925926,141.28,280.0,0.5737308041347339 -2000-02-02,1.07,-8.77,0.39200034722222227,192.17,225.37,0.5683182493787459 -2000-02-03,0.0,-13.38,0.3936696759259259,194.26,158.56,0.5629056946227577 -2000-02-04,0.0,-18.98,0.39600023148148145,319.39,65.5,0.5520805851107816 -2000-02-05,0.0,-18.515,0.3972188657407407,327.49,62.98,0.5412554755988056 -2000-02-06,0.0,-16.49,0.40000023148148145,300.12,80.16,0.540172964647608 -2000-02-07,0.22,-14.28,0.4012189814814815,310.59,114.12,0.5358429208428175 -2000-02-08,0.0,-16.97,0.40399999999999997,343.36,80.0,0.5304303660868295 -2000-02-09,0.0,-12.145,0.40521898148148144,320.79,120.0,0.5196052565748533 -2000-02-10,0.0,-16.88,0.4080003472222223,354.27,64.12,0.5185227456236557 -2000-02-11,6.55,-15.525,0.40966990740740744,242.48,89.34,0.5141927018188653 -2000-02-12,4.24,-15.115,0.41200046296296294,236.72,120.0,0.5087801470628772 -2000-02-13,0.36,-16.53,0.41464768518518513,336.5,80.0,0.5076976361116796 -2000-02-14,27.34,-12.08,0.4159996527777778,224.25,145.07,0.5033675923068892 -2000-02-15,18.59,-8.025,0.419205324074074,103.19,274.53,0.4979550375509011 -2000-02-16,3.69,-10.415000000000001,0.41999976851851856,275.37,160.0,0.49687252659970355 -2000-02-17,1.35,-13.419999999999998,0.42400011574074076,287.16,120.0,0.4925424827949131 -2000-02-18,0.0,-22.145000000000003,0.42400011574074076,395.22,40.0,0.487129928038925 -2000-02-19,0.0,-16.465,0.428,409.62,68.27,0.4860474170877274 -2000-02-20,0.0,-14.82,0.42846388888888887,415.13,80.0,0.48171737328293696 -2000-02-21,0.0,-14.22,0.43200000000000005,376.57,103.34,0.4784698404293441 -2000-02-22,0.0,-18.915,0.4336695601851852,431.26,40.0,0.47738732947814655 -2000-02-23,4.61,-8.735,0.43600011574074077,284.57,163.18,0.5196052565748533 -2000-02-24,0.01,0.04499999999999993,0.4399488425925926,328.43,371.04,0.487129928038925 -2000-02-25,0.0,-4.545,0.4400003472222222,404.29,206.72,0.48171737328293696 -2000-02-26,0.0,-7.494999999999999,0.4440001157407408,416.34,160.0,0.4763048185269489 -2000-02-27,0.0,0.43500000000000005,0.4440081018518519,282.76,428.31,0.4979550375509011 -2000-02-28,7.61,6.2749999999999995,0.4480001157407407,174.72,714.13,0.5304303660868295 -2000-02-29,7.16,0.48,0.4501516203703704,146.21,495.9,0.5629056946227577 -2000-03-01,0.0,-1.5450000000000002,0.452,218.65,416.19,0.5953810231586861 -2000-03-02,6.62,0.24499999999999988,0.45599953703703705,150.38,489.45,0.6278563516946144 -2000-03-03,10.8,0.03500000000000003,0.45599953703703705,77.28,549.59,0.6765693444985069 -2000-03-04,6.66,-1.03,0.46,89.11,497.91,0.7469325563263517 -2000-03-05,2.63,-2.295,0.4604638888888889,135.95,435.09,0.768582775350304 -2000-03-06,1.42,-2.31,0.463999537037037,179.41,425.66,0.768582775350304 -2000-03-07,0.0,-3.495,0.46799976851851854,408.01,280.0,0.768582775350304 -2000-03-08,0.0,-2.735,0.46799976851851854,449.33,271.1,0.7469325563263517 -2000-03-09,4.75,0.31499999999999995,0.4719996527777777,308.86,375.48,0.773995330106292 -2000-03-10,2.18,-4.79,0.4719996527777777,457.12,217.77,0.7361074468143756 -2000-03-11,0.0,-10.68,0.4760001157407408,425.1,160.13,0.768582775350304 -2000-03-12,12.3,-7.46,0.4800005787037037,287.8,226.16,0.8227083229101846 -2000-03-13,8.01,-7.285,0.4800005787037037,250.43,252.85,0.8551836514461127 -2000-03-14,0.0,-12.69,0.4840002314814815,544.27,80.27,0.876833870470065 -2000-03-15,0.0,-6.375,0.4840002314814815,515.28,186.22,0.882246425226053 -2000-03-16,2.48,0.25,0.48800034722222224,299.66,447.51,0.876833870470065 -2000-03-17,1.65,-4.8500000000000005,0.4919994212962963,406.88,268.81,0.8551836514461127 -2000-03-18,0.0,-11.89,0.4919994212962963,489.56,121.71,0.8443585419341366 -2000-03-19,0.0,-10.885,0.4959997685185185,562.5,120.0,0.8389459871781486 -2000-03-20,0.0,-5.475,0.4959997685185185,559.96,172.45,0.8335334324221606 -2000-03-21,0.0,-0.8049999999999997,0.4999997685185186,516.28,312.6,0.768582775350304 -2000-03-22,0.0,1.7649999999999997,0.503999537037037,544.29,357.1,0.7393549796679684 -2000-03-23,0.0,3.5949999999999998,0.503999537037037,530.01,440.0,0.7480150672775493 -2000-03-24,0.0,3.99,0.5079996527777778,460.48,519.91,0.7837379286670705 -2000-03-25,0.0,0.1549999999999998,0.5079996527777778,524.83,359.13,0.8270383667149749 -2000-03-26,2.24,3.545,0.511999537037037,445.91,487.15,0.9082266880547958 -2000-03-27,0.0,3.0700000000000003,0.5159998842592592,509.76,451.55,1.0251378707841377 -2000-03-28,4.63,3.525,0.5159998842592592,384.36,520.6,1.2015871558293483 -2000-03-29,7.1,4.125,0.520000462962963,257.31,615.23,1.7103673028922255 -2000-03-30,3.28,2.61,0.520000462962963,199.59,604.21,2.240797668979055 -2000-03-31,0.76,2.42,0.5240002314814816,266.56,597.51,2.7712280350658847 -2000-04-01,0.0,2.58,0.5279998842592593,357.78,553.47,3.2258826345688814 -2000-04-02,0.0,3.755,0.5279998842592593,450.1,543.5,3.561461029440141 -2000-04-03,0.95,4.92,0.5319998842592593,488.99,555.98,3.994465409919185 -2000-04-04,9.6,4.78,0.5319998842592593,317.01,595.93,4.687272418685656 -2000-04-05,6.07,3.34,0.5359994212962963,165.61,649.21,5.607406727203625 -2000-04-06,0.0,1.3749999999999998,0.5395353009259259,437.39,462.36,6.224437969386264 -2000-04-07,0.0,1.5550000000000006,0.54,519.88,427.56,6.527541035721595 -2000-04-08,7.88,2.5500000000000003,0.5439997685185185,374.05,465.47,6.646617240353332 -2000-04-09,12.51,6.295,0.5439997685185185,393.35,596.02,7.155397387416209 -2000-04-10,7.16,2.04,0.5479999999999999,339.08,487.31,8.62761228104496 -2000-04-11,0.0,-3.12,0.5498481481481481,428.82,338.06,8.811639142748554 -2000-04-12,5.59,-1.6300000000000001,0.5520004629629629,302.43,394.84,8.66008760958089 -2000-04-13,2.14,-2.7800000000000002,0.5559922453703704,355.81,364.17,8.313684105197654 -2000-04-14,0.05,-2.2350000000000003,0.5560002314814815,600.06,292.32,7.84820439618268 -2000-04-15,4.75,2.1,0.56,366.83,494.47,7.588401767895255 -2000-04-16,14.31,2.075,0.5600517361111111,245.83,567.03,7.84820439618268 -2000-04-17,0.0,-1.5949999999999998,0.5639996527777777,548.55,347.0,7.545101329847349 -2000-04-18,0.0,-2.095,0.5663305555555556,622.47,280.03,7.241998263512018 -2000-04-19,0.0,1.9099999999999997,0.5679997685185185,575.47,444.24,6.949720306688664 -2000-04-20,0.76,4.79,0.5715351851851852,450.76,628.82,6.668267459377285 -2000-04-21,0.0,3.3649999999999993,0.5719994212962963,620.19,459.0,6.451765269137763 -2000-04-22,9.23,2.71,0.5760005787037037,405.18,538.6,6.246088188410216 -2000-04-23,16.96,1.34,0.5760005787037037,160.77,597.41,6.386814612065905 -2000-04-24,26.65,1.5650000000000002,0.5800003472222222,183.27,598.1,7.8373792866707035 -2000-04-25,4.38,-0.004999999999999893,0.5807946759259259,371.6,468.65,8.876589799820412 -2000-04-26,0.0,1.3699999999999997,0.5840005787037037,659.02,398.95,9.0173162234761 -2000-04-27,2.81,2.205,0.5853530092592593,511.89,471.32,8.865764690308435 -2000-04-28,3.14,1.85,0.5880002314814815,298.77,560.12,8.584311842997057 -2000-04-29,1.21,4.935,0.5903311342592593,585.16,522.14,8.23790833861382 -2000-04-30,1.25,6.155,0.5920008101851852,619.12,545.32,7.93480527227849 -2000-05-01,5.23,2.72,0.5943310185185184,511.12,440.0,7.68582775350304 -2000-05-02,3.0,4.565,0.5959997685185184,410.27,585.77,7.447675344239564 -2000-05-03,0.0,3.605,0.5987809027777777,653.59,463.33,7.177047606440162 -2000-05-04,0.0,7.5249999999999995,0.5999998842592592,688.44,539.18,6.884769649616807 -2000-05-05,1.9,11.77,0.6027810185185185,598.32,741.24,6.657442349865308 -2000-05-06,0.0,9.24,0.6039996527777778,660.16,643.69,6.462590378649739 -2000-05-07,9.25,12.174999999999999,0.6063304398148148,463.1,861.71,6.343514174018001 -2000-05-08,3.22,14.129999999999999,0.6079995370370371,503.13,1007.69,6.235263078898241 -2000-05-09,5.87,8.655,0.6098476851851852,359.2,808.36,6.0620613267066235 -2000-05-10,7.65,3.355,0.6120002314814815,277.81,613.74,5.9754604506108135 -2000-05-11,18.02,3.105,0.6133524305555556,177.52,662.89,5.98628556012279 -2000-05-12,9.92,5.155,0.6159914351851852,342.97,665.69,6.159487312314408 -2000-05-13,0.0,7.569999999999999,0.6162851851851852,630.38,621.67,6.072886436218599 -2000-05-14,8.08,10.53,0.6195356481481481,432.7,827.92,6.007935779146742 -2000-05-15,0.0,10.79,0.6199998842592592,578.98,834.02,5.769783369883268 -2000-05-16,0.0,8.235,0.6227818287037037,577.73,703.55,5.477505413059912 -2000-05-17,0.0,8.24,0.6240006944444445,649.38,604.09,5.163577237212605 -2000-05-18,12.23,10.255,0.6253526620370371,451.54,850.95,4.947075046973083 -2000-05-19,16.59,5.075,0.6278895833333333,467.53,561.97,4.957900156485059 -2000-05-20,0.0,5.54,0.6280518518518519,655.3,497.45,4.708922637709608 -2000-05-21,0.0,9.559999999999999,0.6303303240740741,675.53,604.54,4.470770228446134 -2000-05-22,0.0,11.705,0.6319916666666667,656.98,722.91,4.210967600158707 -2000-05-23,0.13,12.93,0.6322856481481481,491.62,1033.48,3.9728151908952327 -2000-05-24,10.13,8.26,0.6347809027777778,321.86,801.97,3.7779632196796626 -2000-05-25,12.53,8.285,0.6360001157407408,194.51,916.99,3.9295147528473287 -2000-05-26,5.29,9.03,0.6362856481481481,277.34,890.25,3.994465409919185 -2000-05-27,3.15,9.870000000000001,0.6387810185185185,279.85,933.75,4.210967600158707 -2000-05-28,0.55,8.280000000000001,0.6399917824074074,345.9,868.92,4.081066286014994 -2000-05-29,0.0,9.33,0.6400512731481481,418.71,878.78,3.9295147528473287 -2000-05-30,0.0,9.825,0.6418483796296296,618.85,703.44,3.745487891143735 -2000-05-31,0.0,14.34,0.6435354166666667,588.14,980.48,3.5506359199281645 -2000-06-01,0.0,15.54,0.6439998842592592,532.59,1162.66,3.3016584011527144 -2000-06-02,5.65,11.215,0.6442856481481481,505.58,799.96,3.1176315394491203 -2000-06-03,11.14,10.145,0.6458482638888889,335.83,903.16,3.1068064299371434 -2000-06-04,0.0,8.34,0.6471538194444444,608.83,631.69,2.9444297872575023 -2000-06-05,0.0,7.455,0.6479927083333333,631.04,560.97,2.7495778160419326 -2000-06-06,0.0,9.035,0.6480521990740741,608.05,665.04,2.5655509543383386 -2000-06-07,0.0,10.43,0.6487947916666666,495.49,876.9,2.3923492021467205 -2000-06-08,3.31,10.075,0.6498487268518519,473.12,674.57,2.2624478880030074 -2000-06-09,5.59,11.93,0.6507814814814814,427.16,848.58,2.14337168337127 -2000-06-10,0.0,10.49,0.6515357638888889,485.75,865.14,2.0026452597155804 -2000-06-11,0.0,8.45,0.6519921296296297,445.37,782.08,1.8727439455718675 -2000-06-12,0.0,8.08,0.6520001157407407,587.85,618.2,1.742842631428154 -2000-06-13,0.0,11.020000000000001,0.6520517361111111,599.81,731.71,1.6454166458203692 -2000-06-14,0.0,12.8,0.6522856481481482,599.27,808.88,1.5588157697245602 -2000-06-15,0.0,15.64,0.6527943287037037,479.86,1202.72,1.4505646746047989 -2000-06-16,0.0,19.155,0.653352662037037,499.8,1429.46,1.3423135794850378 -2000-06-17,0.0,21.155,0.653848611111111,457.13,1705.09,1.2557127033892288 -2000-06-18,0.0,15.035,0.653848611111111,578.63,934.5,1.1474616082694677 -2000-06-19,0.0,12.7,0.653848611111111,580.18,801.06,1.0630257540760544 -2000-06-20,0.0,16.92,0.6543310185185185,540.36,1145.31,0.9861674765410237 -2000-06-21,14.76,16.095,0.6543310185185185,382.11,1143.32,0.9363719727859338 -2000-06-22,9.24,18.585,0.653848611111111,278.38,1581.71,0.9796724108338379 -2000-06-23,2.66,18.47,0.653848611111111,354.19,1517.24,0.9201343085179694 -2000-06-24,0.0,15.155,0.653352662037037,542.32,943.65,0.8746688485676697 -2000-06-25,3.74,17.240000000000002,0.653352662037037,455.49,1227.51,0.8605962062021009 -2000-06-26,23.04,19.535,0.6527943287037037,280.57,1610.62,0.9785898998826404 -2000-06-27,0.0,21.295,0.6522856481481482,381.59,1760.16,0.9309594180299455 -2000-06-28,0.0,16.88,0.6520517361111111,463.16,1196.06,0.8919890237868314 -2000-06-29,6.68,16.945,0.6519921296296297,322.61,1300.51,0.8497710966901247 -2000-06-30,10.47,16.43,0.6518894675925926,256.46,1364.67,0.8584311842997057 -2000-07-01,3.17,15.545000000000002,0.6511538194444445,261.9,1306.12,0.848688585738927 -2000-07-02,0.0,18.975,0.6503311342592593,401.89,1465.25,0.8140482353006037 -2000-07-03,3.3,19.990000000000002,0.6493528935185184,308.61,1629.19,0.7815729067646752 -2000-07-04,16.0,18.265,0.6482863425925927,292.15,1424.15,0.7631702205943158 -2000-07-05,9.55,15.39,0.6480008101851852,301.81,1185.55,0.7620877096431182 -2000-07-06,5.58,13.5,0.647890162037037,271.02,1168.27,0.7458500453751541 -2000-07-07,2.94,14.150000000000002,0.64678125,324.62,1130.02,0.7317774030095852 -2000-07-08,10.08,13.19,0.645352199074074,193.08,1225.45,0.7469325563263517 -2000-07-09,3.05,13.625,0.6440515046296297,359.52,1009.15,0.7436850234727588 -2000-07-10,3.88,16.04,0.6438894675925926,250.53,1352.19,0.7306948920583874 -2000-07-11,3.69,13.704999999999998,0.6427809027777778,167.86,1306.25,0.7361074468143756 -2000-07-12,1.32,13.58,0.6407940972222222,418.74,1031.6,0.720952293497609 -2000-07-13,0.0,17.880000000000003,0.6399997685185186,470.95,1238.21,0.7014670963760521 -2000-07-14,0.0,18.59,0.6395354166666667,474.23,1279.37,0.6808993883032974 -2000-07-15,0.0,19.22,0.6378482638888888,450.33,1385.49,0.6744043225961118 -2000-07-16,0.07,17.23,0.6360001157407408,439.95,1262.6,0.6332689064506025 -2000-07-17,1.15,16.9,0.6355359953703703,358.67,1365.84,0.609453665524255 -2000-07-18,13.02,16.465,0.6338483796296296,178.29,1546.49,0.6246088188410216 -2000-07-19,14.78,15.28,0.6319996527777777,179.71,1425.53,0.6765693444985069 -2000-07-20,0.0,12.73,0.6315355324074073,466.84,920.0,0.6267738407434169 -2000-07-21,0.0,13.665,0.6287943287037038,494.57,907.56,0.6018760888658717 -2000-07-22,13.98,16.400000000000002,0.628,305.4,1290.31,0.6029585998170693 -2000-07-23,20.67,15.75,0.6267813657407407,262.06,1330.35,0.7382724687167708 -2000-07-24,0.95,15.945,0.624052199074074,448.21,1114.33,0.7480150672775493 -2000-07-25,0.0,18.17,0.6238902777777778,482.43,1232.86,0.7458500453751541 -2000-07-26,0.0,19.265,0.6207944444444444,476.55,1315.96,0.7469325563263517 -2000-07-27,0.0,19.08,0.6199998842592592,436.03,1413.98,0.7393549796679684 -2000-07-28,0.0,18.085,0.6183303240740741,401.97,1413.52,0.7166222496928185 -2000-07-29,0.0,18.415,0.615999537037037,430.92,1377.91,0.6873944540104832 -2000-07-30,0.0,18.78,0.6151532407407407,399.65,1475.36,0.6646617240353332 -2000-07-31,0.0,17.53,0.6120002314814815,452.08,1245.17,0.6386814612065905 -2000-08-01,0.0,18.355,0.6115356481481482,458.67,1278.41,0.6137837093290455 -2000-08-02,5.79,18.439999999999998,0.6080510416666667,273.26,1493.04,0.5888859574515005 -2000-08-03,4.93,19.56,0.6078891203703704,236.16,1724.74,0.5683182493787459 -2000-08-04,5.5,18.91,0.6042853009259259,287.25,1555.66,0.5499155632083865 -2000-08-05,0.0,15.725,0.6039916666666666,418.39,1181.39,0.5185227456236557 -2000-08-06,0.0,16.05,0.6002854166666667,467.54,1063.23,0.4925424827949131 -2000-08-07,0.22,17.19,0.5999998842592592,379.78,1348.38,0.4752223075757513 -2000-08-08,5.21,17.89,0.5962851851851851,185.87,1639.8,0.46223217616137996 -2000-08-09,13.44,17.73,0.5959997685185184,215.24,1562.16,0.4557371104541943 -2000-08-10,9.71,16.785,0.5920523148148148,139.95,1627.59,0.48388239518533216 -2000-08-11,0.0,15.0,0.591992824074074,389.52,1167.31,0.4449120009422182 -2000-08-12,0.0,16.65,0.5880002314814815,456.83,1118.2,0.43083935857664923 -2000-08-13,0.0,16.45,0.5879922453703703,466.96,1058.81,0.41568420525988264 -2000-08-14,0.0,16.59,0.5840005787037037,438.68,1158.98,0.3994465409919185 -2000-08-15,3.92,17.805,0.5835359953703704,265.1,1441.54,0.38862143147994244 -2000-08-16,10.36,18.45,0.5800003472222222,212.33,1633.5,0.3961990081383257 -2000-08-17,12.37,16.485,0.5787818287037036,214.59,1430.16,0.4340868914302421 -2000-08-18,0.0,13.855,0.5760005787037037,346.12,1136.82,0.4275918257230564 -2000-08-19,0.0,14.66,0.5738478009259259,379.13,1139.67,0.39836403004072096 -2000-08-20,8.44,14.405000000000001,0.5719994212962963,291.17,1102.44,0.39186896433353524 -2000-08-21,10.87,13.16,0.5680513888888888,265.74,1069.51,0.40485909574790657 -2000-08-22,0.0,13.129999999999999,0.5679997685185185,448.92,871.12,0.3853738986263496 -2000-08-23,0.0,14.93,0.5639996527777777,427.8,1023.53,0.37238376721197824 -2000-08-24,14.52,16.1,0.5639916666666667,251.85,1313.93,0.42542680382066117 -2000-08-25,1.76,15.95,0.56,318.26,1277.61,0.41351918335748744 -2000-08-26,0.0,18.115000000000002,0.558330324074074,379.51,1383.14,0.3972815190895233 -2000-08-27,1.92,18.22,0.5560002314814815,360.06,1382.61,0.37996134387036146 -2000-08-28,0.0,12.069999999999999,0.5520519675925926,441.86,804.92,0.35614610294401405 -2000-08-29,0.0,12.63,0.5520004629629629,454.14,781.49,0.3420734605784451 -2000-08-30,0.62,15.815000000000001,0.5479999999999999,405.94,1041.16,0.3344958839200618 -2000-08-31,0.0,16.134999999999998,0.5479921296296296,396.7,1154.24,0.3204232415544929 -2000-09-01,0.28,17.265,0.5439997685185185,381.55,1267.68,0.3074331101401216 -2000-09-02,0.0,13.63,0.540794212962963,403.73,939.42,0.2911954458721574 -2000-09-03,0.0,12.23,0.54,340.82,968.58,0.27820531445778607 -2000-09-04,0.0,12.09,0.5359994212962963,349.49,943.14,0.26413267209221714 -2000-09-05,0.0,7.97,0.5359994212962963,393.92,642.82,0.2446474749706601 -2000-09-06,0.0,6.890000000000001,0.5319998842592593,408.13,576.77,0.23382236545868398 -2000-09-07,0.0,10.64,0.5298482638888888,419.55,700.63,0.22624478880030072 -2000-09-08,0.0,14.315,0.5279998842592593,386.88,954.11,0.21758470119071982 -2000-09-09,0.0,14.524999999999999,0.5240002314814816,352.14,1051.71,0.20459456977634852 -2000-09-10,0.0,12.16,0.5240002314814816,398.88,781.75,0.19593448216676762 -2000-09-11,0.0,13.76,0.520000462962963,391.12,888.87,0.19052192741077956 -2000-09-12,1.14,15.66,0.5183310185185186,290.81,1252.95,0.18835690550838435 -2000-09-13,5.23,15.45,0.5159998842592592,185.25,1321.48,0.1829443507523963 -2000-09-14,0.0,11.415,0.511999537037037,323.85,900.23,0.17536677409401302 -2000-09-15,3.76,12.57,0.511999537037037,181.49,1141.02,0.17536677409401302 -2000-09-16,8.99,11.89,0.5079996527777778,161.28,1110.41,0.18077932885000106 -2000-09-17,1.23,9.805,0.5067805555555556,198.43,946.95,0.1721192412404202 -2000-09-18,1.1,9.45,0.503999537037037,255.37,866.01,0.1645416645820369 -2000-09-19,0.0,13.5,0.4999997685185186,346.2,928.54,0.16021162077724646 -2000-09-20,0.0,17.015,0.4999997685185186,319.13,1253.33,0.1537165550700608 -2000-09-21,0.02,17.134999999999998,0.4959997685185185,263.87,1392.57,0.15155153316766556 -2000-09-22,0.0,11.57,0.49366840277777774,298.69,913.56,0.14072642365568944 -2000-09-23,2.98,9.165,0.4919994212962963,242.15,840.7,0.13206633604610857 -2000-09-24,15.3,9.004999999999999,0.48800034722222224,166.41,875.62,0.15912910982604886 -2000-09-25,0.0,6.45,0.48800034722222224,305.07,622.7,0.15912910982604886 -2000-09-26,0.0,5.16,0.4840002314814815,344.66,510.4,0.14938651126527036 -2000-09-27,0.0,6.9,0.48167002314814816,355.61,556.97,0.14180893460688707 -2000-09-28,0.0,5.8100000000000005,0.4800005787037037,334.41,544.96,0.1288188031925157 -2000-09-29,0.0,1.6749999999999998,0.4760001157407408,330.7,400.43,0.12232373748533006 -2000-09-30,0.0,6.115,0.4760001157407408,351.55,503.24,0.12015871558293482 -2000-10-01,0.0,12.235,0.4719996527777777,327.75,822.23,0.11582867177814439 -2000-10-02,0.0,11.92,0.4701513888888889,331.28,783.89,0.11258113892455156 -2000-10-03,0.0,12.17,0.46799976851851854,314.32,827.64,0.11258113892455156 -2000-10-04,0.0,9.25,0.463999537037037,328.47,631.83,0.10500356226616828 -2000-10-05,0.0,6.11,0.463999537037037,293.21,579.96,0.10067351846137784 -2000-10-06,0.75,4.4750000000000005,0.46,204.15,612.1,0.10067351846137784 -2000-10-07,6.19,4.04,0.45920532407407405,78.95,708.88,0.1071685841685635 -2000-10-08,5.2,3.665,0.45599953703703705,115.05,636.13,0.1082510951197611 -2000-10-09,5.41,1.5500000000000003,0.45200810185185186,130.08,540.35,0.1071685841685635 -2000-10-10,10.9,1.085,0.452,99.12,553.84,0.1385614017532942 -2000-10-11,7.33,1.3599999999999999,0.4480001157407407,81.52,590.01,0.1840268617035939 -2000-10-12,0.0,4.135,0.4480001157407407,267.07,550.69,0.19376946026437242 -2000-10-13,0.0,7.73,0.4440001157407408,294.87,624.57,0.18510937265479152 -2000-10-14,3.81,7.905,0.44166932870370373,215.01,647.96,0.18835690550838435 -2000-10-15,5.29,5.74,0.4400003472222222,177.21,634.11,0.20459456977634852 -2000-10-16,0.0,0.645,0.43611064814814815,279.55,376.15,0.20351205882515092 -2000-10-17,0.0,-0.010000000000000231,0.43600011574074077,273.9,360.0,0.19918201502036048 -2000-10-18,6.02,1.5850000000000004,0.43200000000000005,219.55,436.37,0.20134703692275568 -2000-10-19,7.42,4.765000000000001,0.43194837962962956,127.77,654.06,0.22407976689790549 -2000-10-20,0.0,5.875,0.428,218.8,638.98,0.22840981070269592 -2000-10-21,0.0,7.955,0.4261517361111111,239.45,698.64,0.23273985450748638 -2000-10-22,0.0,5.795,0.42400011574074076,242.3,587.36,0.22191474499551028 -2000-10-23,0.0,1.4949999999999997,0.42121863425925926,251.45,417.77,0.22407976689790549 -2000-10-24,0.0,4.0649999999999995,0.41999976851851856,252.54,476.64,0.22299725594670786 -2000-10-25,0.0,6.12,0.4164640046296296,241.29,568.83,0.21974972309311505 -2000-10-26,0.0,7.71,0.4159996527777778,256.38,578.81,0.21974972309311505 -2000-10-27,0.0,10.045,0.4121109953703704,251.24,678.89,0.22083223404431265 -2000-10-28,1.65,6.585000000000001,0.41200046296296294,230.87,559.47,0.21758470119071982 -2000-10-29,15.44,-1.5350000000000001,0.4080084490740741,70.82,462.83,0.22840981070269592 -2000-10-30,10.23,-0.20999999999999996,0.40794895833333333,91.7,493.65,0.253307562580241 -2000-10-31,0.0,2.475,0.40399999999999997,95.22,623.67,0.25872011733622907 -2000-11-01,0.0,2.295,0.4037145833333334,125.8,586.03,0.2695452268482052 -2000-11-02,0.0,4.325,0.40000023148148145,198.03,574.07,0.28578289111616934 -2000-11-03,0.0,4.605,0.39971435185185183,233.02,496.77,0.30635059918892393 -2000-11-04,0.0,3.88,0.3960082175925926,217.59,509.08,0.3225882634568881 -2000-11-05,2.79,3.705,0.39571446759259266,124.79,606.86,0.33666090582245706 -2000-11-06,3.96,2.7199999999999998,0.3921108796296296,69.89,628.68,0.38862143147994244 -2000-11-07,0.7,3.78,0.3919487268518519,94.21,680.88,0.428674336674254 -2000-11-08,0.0,5.52,0.3884644675925926,80.34,788.67,0.4535720885517991 -2000-11-09,0.0,5.59,0.38799999999999996,115.04,742.13,0.4763048185269489 -2000-11-10,0.0,4.485,0.3848466435185185,134.91,640.07,0.49687252659970355 -2000-11-11,0.09,4.665,0.3840003472222222,113.6,693.43,0.5033675923068892 -2000-11-12,0.0,4.65,0.38166932870370374,93.73,719.01,0.4990375485020987 -2000-11-13,3.61,3.455,0.3799997685185186,67.39,682.63,0.5087801470628772 -2000-11-14,4.81,3.885,0.37920590277777777,61.47,700.83,0.5293478551356319 -2000-11-15,22.53,4.0,0.37611087962962964,66.55,700.15,0.7566751548871301 -2000-11-16,8.57,1.055,0.3759486111111111,59.33,578.52,0.9266293742251551 -2000-11-17,0.21,0.77,0.37321898148148147,119.39,527.91,0.9504446151515026 -2000-11-18,0.0,-1.435,0.3719998842592593,149.01,414.96,0.9818374327362333 -2000-11-19,0.0,-3.56,0.37120578703703705,117.64,379.19,1.0197253160281496 -2000-11-20,0.0,-2.275,0.3684645833333333,144.13,393.92,1.043540556954497 -2000-11-21,2.18,-1.5700000000000003,0.3680003472222222,135.61,422.91,1.0565306883688685 -2000-11-22,1.38,-3.175,0.36615196759259255,121.83,396.27,1.0565306883688685 -2000-11-23,0.73,-4.765000000000001,0.3644642361111111,168.57,315.31,1.0500356226616827 -2000-11-24,0.0,-8.495,0.36400011574074076,158.73,246.95,1.0305504255401257 -2000-11-25,0.0,-11.21,0.3621513888888889,206.89,158.3,1.002405140808988 -2000-11-26,0.4,-6.4750000000000005,0.3604638888888889,194.25,246.09,0.9894150093946166 -2000-11-27,6.53,-1.97,0.3599998842592593,120.55,410.34,0.9915800312970118 -2000-11-28,3.0,0.43000000000000005,0.35920578703703704,46.91,586.66,1.018642805076952 -2000-11-29,1.01,0.435,0.3572189814814815,51.57,593.86,1.018642805076952 -2000-11-30,0.0,-0.1100000000000001,0.35611041666666665,72.75,553.19,1.0056526736625806 -2000-12-01,0.03,-3.575,0.3559483796296296,117.42,388.38,0.9818374327362333 -2000-12-02,0.0,-6.745,0.3546476851851852,103.92,313.44,0.9569396808586882 -2000-12-03,0.0,-9.190000000000001,0.35321898148148145,175.24,200.07,0.8984840894940173 -2000-12-04,0.0,-6.720000000000001,0.35211030092592593,169.83,261.92,0.8811639142748555 -2000-12-05,0.0,-6.155,0.35199988425925927,182.47,240.0,0.8562661623973103 -2000-12-06,0.0,-7.82,0.35171423611111113,173.35,228.65,0.8118832133982083 -2000-12-07,0.67,-13.809999999999999,0.3506474537037037,171.49,143.42,0.7599226877407229 -2000-12-08,0.74,-17.42,0.34966921296296294,183.66,80.0,0.6949720306688663 -2000-12-09,0.0,-21.03,0.3488465277777778,177.31,75.71,0.6635792130841357 -2000-12-10,0.0,-18.549999999999997,0.3481105324074074,178.41,80.0,0.6397639721577881 -2000-12-11,3.1,-11.19,0.3480079861111111,157.03,144.84,0.6246088188410216 -2000-12-12,12.5,-3.65,0.34794849537037037,119.34,332.3,0.6029585998170693 -2000-12-13,6.34,-13.809999999999999,0.34771435185185184,162.44,116.89,0.5813083807931171 -2000-12-14,10.59,-14.965,0.3472057870370371,129.87,120.07,0.5672357384275483 -2000-12-15,10.53,-11.850000000000001,0.3466476851851852,105.64,185.02,0.5596581617691649 -2000-12-16,0.0,-11.76,0.3466476851851852,191.05,121.44,0.5466680303547936 -2000-12-17,19.44,-3.825,0.3461518518518519,143.14,250.92,0.5390904536964104 -2000-12-18,31.91,0.1299999999999999,0.3461518518518519,132.56,394.84,0.5878034465003028 -2000-12-19,0.01,-10.17,0.3456693287037037,166.18,188.79,0.726364848253597 -2000-12-20,14.28,-9.82,0.3456693287037037,74.43,239.74,0.8811639142748555 -2000-12-21,6.79,-12.094999999999999,0.3461518518518519,111.06,179.51,1.0370454912473115 -2000-12-22,0.0,-13.7,0.3461518518518519,187.65,120.0,1.2124122653413245 -2000-12-23,0.0,-14.135,0.3461518518518519,174.31,120.0,1.3531386889970138 -2000-12-24,0.0,-16.990000000000002,0.3466476851851852,183.73,84.29,1.5155153316766559 -2000-12-25,0.0,-17.384999999999998,0.3472057870370371,160.62,119.39,1.6129413172844407 -2000-12-26,0.14,-17.335,0.34771435185185184,130.4,120.0,1.6670668648443212 -2000-12-27,0.01,-14.605,0.34794849537037037,125.22,159.63,1.656241755332345 -2000-12-28,0.0,-10.469999999999999,0.34800000000000003,99.07,224.06,1.6345915363083927 -2000-12-29,0.0,-6.635,0.3480079861111111,129.54,280.82,1.6129413172844407 -2000-12-30,0.0,-5.79,0.3484641203703704,116.29,308.69,1.5804659887485122 -2000-12-31,0.0,-6.21,0.3482361111111111,122.91,294.76,1.5588157697245602 -2001-01-01,3.85,-3.765,0.34921886574074074,45.73,397.91,1.547990660212584 -2001-01-02,0.0,-7.825,0.35015162037037034,106.49,252.69,1.5155153316766559 -2001-01-03,0.0,-14.755,0.35120578703703703,141.31,122.18,1.4722148936287511 -2001-01-04,3.34,-13.405,0.3519482638888889,114.35,134.98,1.3964391270449183 -2001-01-05,0.0,-14.435,0.35200787037037035,166.43,118.64,1.3531386889970138 -2001-01-06,1.28,-12.465,0.35284641203703704,148.21,152.65,1.3098382509491096 -2001-01-07,1.11,-8.205,0.3541518518518519,91.01,264.79,1.2557127033892288 -2001-01-08,0.0,-12.129999999999999,0.35571446759259256,162.93,150.99,1.2015871558293483 -2001-01-09,1.15,-11.35,0.35600000000000004,111.1,189.76,1.158286717781444 -2001-01-10,0.0,-13.65,0.3564643518518519,138.28,146.78,1.1149862797335395 -2001-01-11,1.97,-16.185000000000002,0.35815185185185183,148.74,120.0,1.0695208197832398 -2001-01-12,1.04,-14.415,0.3599482638888889,137.52,129.73,1.0273028926865329 -2001-01-13,0.0,-16.255,0.36000787037037035,203.8,80.0,0.9850849655898262 -2001-01-14,0.0,-11.985,0.36121863425925926,180.11,137.78,0.9450320603955146 -2001-01-15,0.0,-15.73,0.3637142361111111,205.88,80.0,0.9071441771035982 -2001-01-16,2.4,-12.760000000000002,0.36400011574074076,142.53,146.26,0.882246425226053 -2001-01-17,2.0,-10.39,0.36521898148148146,120.51,205.84,0.8584311842997057 -2001-01-18,0.0,-18.625,0.36771435185185186,221.02,63.13,0.8281208776661725 -2001-01-19,0.16,-15.555,0.3680083333333333,203.57,88.77,0.8021406148374299 -2001-01-20,0.48,-15.475000000000001,0.3696696759259259,217.73,86.26,0.7761603520086873 -2001-01-21,0.0,-18.72,0.3719483796296296,228.55,63.38,0.749097578228747 -2001-01-22,0.0,-18.759999999999998,0.37211041666666667,230.67,65.18,0.7198697825464114 -2001-01-23,0.0,-15.895,0.3746479166666667,237.99,80.0,0.6971370525712616 -2001-01-24,0.0,-8.015,0.3760002314814815,204.14,199.17,0.6787343664009022 -2001-01-25,1.28,-10.165,0.3772188657407407,203.81,157.32,0.6657442349865309 -2001-01-26,0.0,-13.48,0.3799997685185186,234.82,120.0,0.6462590378649739 -2001-01-27,0.0,-12.55,0.3804640046296296,233.86,120.0,0.6278563516946144 -2001-01-28,0.0,-11.925,0.383714699074074,205.01,152.1,0.6181137531338359 -2001-01-29,0.0,-15.93,0.38400833333333334,263.75,80.0,0.5964635341098837 -2001-01-30,0.0,-10.985,0.3866476851851852,242.58,129.87,0.5823908917443148 -2001-01-31,4.51,-8.42,0.38799999999999996,114.63,232.57,0.5748133150859315 -2001-02-01,2.4,-10.92,0.3901519675925926,96.89,214.3,0.5585756508179673 -2001-02-02,1.13,-11.3,0.39200034722222227,208.01,160.0,0.5423379865500033 -2001-02-03,1.6,-9.809999999999999,0.3936696759259259,187.96,200.0,0.5304303660868295 -2001-02-04,0.0,-14.475000000000001,0.39600023148148145,257.45,107.6,0.5196052565748533 -2001-02-05,0.8,-13.735,0.3972188657407407,253.71,120.0,0.5076976361116796 -2001-02-06,14.77,-7.91,0.40000023148148145,99.35,257.72,0.5001200594532963 -2001-02-07,4.88,-6.6049999999999995,0.4012189814814815,70.09,314.86,0.49687252659970355 -2001-02-08,0.0,-8.115,0.40399999999999997,168.55,242.82,0.4925424827949131 -2001-02-09,6.5,-11.715,0.40521898148148144,266.71,119.92,0.4882124389901227 -2001-02-10,11.24,-6.324999999999999,0.4080003472222223,231.77,169.75,0.5412554755988056 -2001-02-11,0.0,-16.419999999999998,0.40966990740740744,209.89,115.12,0.5185227456236557 -2001-02-12,0.0,-18.065,0.41200046296296294,274.1,80.0,0.4903774608925179 -2001-02-13,0.0,-12.535,0.41464768518518513,250.85,143.76,0.47413979662455363 -2001-02-14,1.1,-11.98,0.4159996527777778,281.2,120.11,0.4665622199661704 -2001-02-15,3.97,-9.785,0.419205324074074,169.14,200.0,0.45681962140539184 -2001-02-16,0.0,-13.725,0.41999976851851856,341.35,80.0,0.4763048185269489 -2001-02-17,0.0,-11.665,0.42400011574074076,311.98,126.47,0.4643971980637752 -2001-02-18,0.0,-16.45,0.42400011574074076,334.24,80.0,0.4579021323565895 -2001-02-19,0.0,-13.47,0.428,311.73,120.0,0.4546545995029967 -2001-02-20,0.74,-3.78,0.42846388888888887,199.03,328.45,0.4546545995029967 -2001-02-21,4.09,-5.925,0.43200000000000005,212.72,247.0,0.44707702284461337 -2001-02-22,0.0,-19.69,0.4336695601851852,334.88,71.96,0.487129928038925 -2001-02-23,1.42,-18.575,0.43600011574074077,312.63,80.0,0.46331468711257756 -2001-02-24,1.61,-13.774999999999999,0.4399488425925926,222.74,154.65,0.4611496652101823 -2001-02-25,2.7,-16.255,0.4400003472222222,320.87,80.0,0.45140706664940383 -2001-02-26,7.5,-7.9350000000000005,0.4440001157407408,228.94,213.87,0.45681962140539184 -2001-02-27,0.0,-9.700000000000001,0.4440081018518519,334.71,160.77,0.4535720885517991 -2001-02-28,0.0,-16.565,0.4480001157407407,353.04,89.75,0.44274697903982296 -2001-03-01,0.0,-22.045,0.4501516203703704,363.74,44.16,0.43516940238143964 -2001-03-02,0.0,-24.25,0.452,419.13,40.0,0.4275918257230564 -2001-03-03,0.0,-22.075,0.45599953703703705,427.71,40.0,0.41568420525988264 -2001-03-04,0.0,-17.634999999999998,0.45599953703703705,431.72,45.32,0.4059416066991042 -2001-03-05,0.0,-9.89,0.46,389.33,145.89,0.40269407384551137 -2001-03-06,0.0,-5.0200000000000005,0.4604638888888889,252.67,297.93,0.3961990081383257 -2001-03-07,0.0,-3.4650000000000003,0.463999537037037,224.15,351.82,0.38970394243114004 -2001-03-08,0.0,-7.194999999999999,0.46799976851851854,432.95,160.0,0.37779632196796625 -2001-03-09,0.0,-5.285,0.46799976851851854,404.4,205.59,0.3637236796023974 -2001-03-10,0.19,-4.72,0.4719996527777777,316.27,279.37,0.3518160591392236 -2001-03-11,0.71,-3.075,0.4719996527777777,264.77,340.8,0.34315597152964267 -2001-03-12,0.3,-7.72,0.4760001157407408,340.64,207.13,0.3344958839200618 -2001-03-13,6.39,-8.66,0.4800005787037037,282.55,200.0,0.3442384824808404 -2001-03-14,10.94,-5.17,0.4800005787037037,158.0,320.0,0.3604761467488045 -2001-03-15,4.93,-3.1149999999999998,0.4840002314814815,130.75,399.84,0.3669712124559901 -2001-03-16,0.0,-5.255,0.4840002314814815,307.1,285.26,0.3658887015047926 -2001-03-17,0.0,-4.17,0.48800034722222224,350.42,291.58,0.35722861389521166 -2001-03-18,0.0,-2.6650000000000005,0.4919994212962963,349.55,333.44,0.3518160591392236 -2001-03-19,0.02,0.17500000000000027,0.4919994212962963,289.43,455.61,0.3442384824808404 -2001-03-20,0.0,-0.52,0.4959997685185185,427.88,344.03,0.3409909496272475 -2001-03-21,0.0,-0.08500000000000085,0.4959997685185185,495.62,276.8,0.33882592772485226 -2001-03-22,0.0,1.4100000000000001,0.4999997685185186,400.93,425.6,0.33341337296886425 -2001-03-23,6.33,-1.135,0.503999537037037,145.61,462.26,0.33124835106646905 -2001-03-24,6.79,-2.165,0.503999537037037,109.47,455.6,0.38970394243114004 -2001-03-25,1.33,-5.7700000000000005,0.5079996527777778,312.77,284.23,0.41351918335748744 -2001-03-26,0.0,-8.86,0.5079996527777778,436.14,188.07,0.38970394243114004 -2001-03-27,0.0,-7.785,0.511999537037037,440.55,201.62,0.384291387675152 -2001-03-28,4.25,-4.390000000000001,0.5159998842592592,223.06,331.55,0.3810438548215591 -2001-03-29,0.0,-6.09,0.5159998842592592,516.88,200.0,0.3713012562607806 -2001-03-30,0.0,-3.59,0.520000462962963,521.88,237.71,0.3550635919928165 -2001-03-31,6.92,-2.4850000000000003,0.520000462962963,295.75,343.99,0.3464035043832356 -2001-04-01,5.69,-2.8449999999999998,0.5240002314814816,195.61,398.32,0.4167667162110803 -2001-04-02,3.07,-3.08,0.5279998842592593,204.81,402.11,0.41351918335748744 -2001-04-03,1.78,-0.9550000000000001,0.5279998842592593,298.14,451.15,0.40918913955269703 -2001-04-04,0.0,-1.1900000000000004,0.5319998842592593,536.63,319.96,0.4081066286014994 -2001-04-05,0.0,0.3799999999999999,0.5319998842592593,541.5,343.61,0.4059416066991042 -2001-04-06,0.0,-1.6,0.5359994212962963,510.86,328.31,0.40052905194311617 -2001-04-07,0.0,-2.5199999999999996,0.5395353009259259,561.9,270.35,0.39836403004072096 -2001-04-08,0.0,-1.4949999999999997,0.54,524.82,326.59,0.39511649718712805 -2001-04-09,3.78,-0.22499999999999987,0.5439997685185185,219.43,486.0,0.38970394243114004 -2001-04-10,0.0,1.8699999999999999,0.5439997685185185,325.12,553.67,0.37887883291916397 -2001-04-11,0.0,0.6600000000000001,0.5479999999999999,545.47,373.23,0.42975684762545163 -2001-04-12,0.96,1.0150000000000001,0.5498481481481481,559.65,339.1,0.4860474170877274 -2001-04-13,10.27,1.01,0.5520004629629629,311.48,474.22,0.6007935779146741 -2001-04-14,3.19,-0.3600000000000001,0.5559922453703704,242.18,477.71,0.7166222496928185 -2001-04-15,0.0,-0.18500000000000005,0.5560002314814815,281.73,493.85,0.8476060747877294 -2001-04-16,0.0,1.7100000000000002,0.56,312.53,559.33,0.9634347465658739 -2001-04-17,0.0,1.255,0.5600517361111111,437.91,477.26,1.158286717781444 -2001-04-18,0.0,-1.35,0.5639996527777777,527.09,349.56,1.3531386889970138 -2001-04-19,0.0,-0.31000000000000005,0.5663305555555556,509.24,393.05,1.537165550700608 -2001-04-20,0.0,1.5650000000000004,0.5679997685185185,583.49,376.47,1.742842631428154 -2001-04-21,0.0,5.655,0.5715351851851852,604.85,430.39,2.0784210262994134 -2001-04-22,1.29,6.575,0.5719994212962963,544.44,548.69,2.6521518304341467 -2001-04-23,0.86,6.154999999999999,0.5760005787037037,542.23,527.33,3.572286138952117 -2001-04-24,0.03,9.925,0.5760005787037037,563.19,624.9,4.67644730917368 -2001-04-25,3.04,7.85,0.5800003472222222,461.27,553.29,6.43011505011381 -2001-04-26,0.0,3.23,0.5807946759259259,607.4,360.17,7.296123811071898 -2001-04-27,0.0,6.265,0.5840005787037037,566.84,495.02,7.84820439618268 -2001-04-28,0.0,4.234999999999999,0.5853530092592593,551.46,464.69,7.9672806008144175 -2001-04-29,0.0,1.6750000000000003,0.5880002314814815,525.24,424.66,7.869854615206632 -2001-04-30,0.0,6.09,0.5903311342592593,552.67,516.92,7.707477972526991 -2001-05-01,0.0,10.39,0.5920008101851852,607.66,534.55,7.65335242496711 -2001-05-02,0.0,14.815,0.5943310185185184,617.48,609.42,7.750778410574895 -2001-05-03,0.08,17.735,0.5959997685185184,607.14,718.67,8.032231257886275 -2001-05-04,0.0,15.865,0.5987809027777777,526.79,883.0,8.118832133982083 -2001-05-05,0.0,9.77,0.5999998842592592,422.64,799.98,7.804903958134776 -2001-05-06,0.0,5.275,0.6027810185185185,600.2,379.45,7.350249358631779 -2001-05-07,0.0,9.24,0.6039996527777778,625.13,405.08,6.863119430592855 -2001-05-08,0.0,12.795,0.6063304398148148,630.99,427.23,6.408464831089859 -2001-05-09,0.0,14.360000000000001,0.6079995370370371,616.68,483.68,5.964635341098838 -2001-05-10,0.0,15.045,0.6098476851851852,582.49,587.94,5.50998074159584 -2001-05-11,0.0,14.95,0.6120002314814815,601.18,505.1,5.076976361116796 -2001-05-12,0.56,16.22,0.6133524305555556,537.09,638.96,4.67644730917368 -2001-05-13,7.83,12.620000000000001,0.6159914351851852,385.48,692.69,4.319218695278469 -2001-05-14,1.05,6.005000000000001,0.6162851851851852,410.3,545.56,3.9836403004072087 -2001-05-15,6.68,7.225,0.6195356481481481,258.93,739.44,3.745487891143735 -2001-05-16,0.3,8.755,0.6199998842592592,221.79,923.01,3.528985700904212 -2001-05-17,0.0,9.280000000000001,0.6227818287037037,337.14,807.48,3.2908332916407383 -2001-05-18,0.0,9.155,0.6240006944444445,531.95,468.49,3.0635059918892393 -2001-05-19,1.6,11.190000000000001,0.6253526620370371,386.31,793.04,2.8470038016497177 -2001-05-20,0.87,11.610000000000001,0.6278895833333333,528.78,531.31,2.630501611410195 -2001-05-21,0.0,14.815000000000001,0.6280518518518519,514.69,671.76,2.457299859218577 -2001-05-22,0.01,14.690000000000001,0.6303303240740741,549.39,571.39,2.2840981070269595 -2001-05-23,0.0,14.98,0.6319916666666667,558.22,534.08,2.132546573859294 -2001-05-24,0.0,15.0,0.6322856481481481,498.01,673.78,1.9809950406916284 -2001-05-25,0.0,13.26,0.6347809027777778,567.35,444.94,1.851093726547915 -2001-05-26,0.0,15.77,0.6360001157407408,549.09,533.78,1.7320175219161775 -2001-05-27,0.0,17.060000000000002,0.6362856481481481,511.65,652.59,1.6237664267964167 -2001-05-28,7.93,16.805,0.6387810185185185,236.98,1302.18,1.5263404411886317 -2001-05-29,9.27,14.675,0.6399917824074074,213.4,1244.49,1.4830400031407271 -2001-05-30,7.15,11.55,0.6400512731481481,213.96,1009.69,1.3747889080209663 -2001-05-31,10.62,8.34,0.6418483796296296,166.61,878.83,1.277362922413181 -2001-06-01,0.0,9.454999999999998,0.6435354166666667,433.09,631.59,1.2340624843652768 -2001-06-02,6.04,11.954999999999998,0.6439998842592592,271.82,1000.75,1.2015871558293483 -2001-06-03,15.02,10.105,0.6442856481481481,155.85,1009.76,1.2881880319251573 -2001-06-04,12.25,11.58,0.6458482638888889,100.0,1221.17,1.6670668648443212 -2001-06-05,7.01,12.055,0.6471538194444444,153.3,1174.12,1.8186183980119868 -2001-06-06,4.31,13.17,0.6479927083333333,214.11,1181.54,1.9701699311796523 -2001-06-07,0.0,12.965,0.6480521990740741,404.79,976.83,2.045945697763485 -2001-06-08,0.0,12.5,0.6487947916666666,465.22,815.74,2.0784210262994134 -2001-06-09,0.03,13.055,0.6498487268518519,450.43,883.26,2.045945697763485 -2001-06-10,3.3,13.434999999999999,0.6507814814814814,337.83,991.81,2.0026452597155804 -2001-06-11,0.0,12.89,0.6515357638888889,533.31,646.15,1.9485197121557 -2001-06-12,0.0,14.719999999999999,0.6519921296296297,468.78,916.84,1.8943941645958196 -2001-06-13,0.0,16.83,0.6520001157407407,419.43,1156.96,1.7969681789880345 -2001-06-14,0.0,17.3,0.6520517361111111,490.39,932.02,1.7103673028922255 -2001-06-15,0.0,20.985,0.6522856481481482,483.03,1145.96,1.6345915363083927 -2001-06-16,0.0,24.04,0.6527943287037037,419.01,1642.72,1.5588157697245602 -2001-06-17,14.16,21.25,0.653352662037037,236.21,1869.33,1.5046902221646794 -2001-06-18,7.37,17.075,0.653848611111111,252.56,1421.65,1.461389784116775 -2001-06-19,1.04,15.905000000000001,0.653848611111111,473.85,957.28,1.3964391270449183 -2001-06-20,0.0,18.235,0.653848611111111,396.43,1355.49,1.3098382509491096 -2001-06-21,0.0,13.93,0.6543310185185185,485.28,836.82,1.2124122653413245 -2001-06-22,0.0,14.025,0.6543310185185185,447.41,938.37,1.1474616082694677 -2001-06-23,8.6,16.630000000000003,0.653848611111111,276.65,1352.66,1.1149862797335395 -2001-06-24,18.3,19.78,0.653848611111111,257.37,1711.79,1.1366364987574917 -2001-06-25,0.0,19.69,0.653352662037037,434.5,1422.41,1.1041611702215632 -2001-06-26,0.0,20.595,0.653352662037037,492.83,1248.45,1.0424580460032995 -2001-06-27,0.0,23.505,0.6527943287037037,446.93,1662.01,0.9861674765410237 -2001-06-28,0.0,17.995,0.6522856481481482,465.31,1168.52,0.8930715347380292 -2001-06-29,0.37,12.64,0.6520517361111111,486.47,778.15,0.8476060747877294 -2001-06-30,3.95,16.36,0.6519921296296297,325.04,1218.4,0.8248733448125797 -2001-07-01,8.24,20.060000000000002,0.6518894675925926,264.0,1701.91,0.8346159433733582 -2001-07-02,6.16,13.95,0.6511538194444445,338.68,998.89,0.8270383667149749 -2001-07-03,0.17,13.52,0.6503311342592593,439.74,957.04,0.7577576658383279 -2001-07-04,0.0,16.59,0.6493528935185184,397.03,1254.63,0.7112096949368305 -2001-07-05,8.24,18.26,0.6482863425925927,275.92,1451.97,0.6841469211568902 -2001-07-06,4.25,15.735,0.6480008101851852,284.77,1237.3,0.651671592620962 -2001-07-07,0.76,15.24,0.647890162037037,374.17,1195.25,0.6029585998170693 -2001-07-08,2.34,17.78,0.64678125,296.11,1510.45,0.5748133150859315 -2001-07-09,6.15,18.509999999999998,0.645352199074074,217.51,1637.02,0.5542456070131768 -2001-07-10,4.4,17.44,0.6440515046296297,282.3,1484.85,0.5390904536964104 -2001-07-11,9.73,16.34,0.6438894675925926,230.35,1413.35,0.5369254317940151 -2001-07-12,8.68,16.105,0.6427809027777778,240.49,1380.58,0.5315128770380272 -2001-07-13,5.84,16.32,0.6407940972222222,205.76,1457.89,0.5185227456236557 -2001-07-14,3.55,16.935,0.6399997685185186,241.54,1453.32,0.49362499374611063 -2001-07-15,4.11,17.325,0.6395354166666667,284.06,1410.74,0.5033675923068892 -2001-07-16,7.85,17.225,0.6378482638888888,228.18,1533.42,0.5033675923068892 -2001-07-17,16.01,16.935,0.6360001157407408,199.32,1569.74,0.6051236217194647 -2001-07-18,14.19,16.810000000000002,0.6355359953703703,291.01,1364.19,0.9179692866155742 -2001-07-19,0.0,17.68,0.6338483796296296,487.76,1203.28,0.8010581038862323 -2001-07-20,0.0,19.455,0.6319996527777777,497.16,1263.95,0.7729128191550944 -2001-07-21,0.0,20.595,0.6315355324074073,478.55,1417.17,0.7631702205943158 -2001-07-22,7.28,21.38,0.6287943287037038,346.9,1757.74,0.7577576658383279 -2001-07-23,12.29,23.22,0.628,300.08,1930.86,0.8162132572029988 -2001-07-24,9.85,23.62,0.6267813657407407,284.65,2134.87,0.8302858995685677 -2001-07-25,2.86,19.735,0.624052199074074,342.17,1636.97,0.7956455491302442 -2001-07-26,0.0,13.67,0.6238902777777778,458.65,984.15,0.7447675344239565 -2001-07-27,0.0,11.815,0.6207944444444444,446.85,905.18,0.6971370525712616 -2001-07-28,0.68,13.535,0.6199998842592592,462.16,970.52,0.6711567897425189 -2001-07-29,0.0,15.49,0.6183303240740741,473.73,1075.1,0.651671592620962 -2001-07-30,0.0,17.275,0.615999537037037,494.95,1108.81,0.6191962640850336 -2001-07-31,0.0,18.8,0.6151532407407407,483.32,1244.86,0.5834734026955124 -2001-08-01,0.0,19.119999999999997,0.6120002314814815,492.67,1209.13,0.5531630960619793 -2001-08-02,0.0,21.740000000000002,0.6115356481481482,462.69,1516.45,0.5325953879892247 -2001-08-03,0.0,22.66,0.6080510416666667,373.79,1907.93,0.4979550375509011 -2001-08-04,0.0,18.42,0.6078891203703704,459.04,1272.8,0.47089226377096083 -2001-08-05,0.0,18.945,0.6042853009259259,481.42,1207.28,0.44815953379581097 -2001-08-06,0.0,23.130000000000003,0.6039916666666666,437.55,1702.91,0.42542680382066117 -2001-08-07,0.0,24.775,0.6002854166666667,357.02,2162.08,0.3961990081383257 -2001-08-08,0.0,19.245,0.5999998842592592,458.95,1278.74,0.35831112484640926 -2001-08-09,0.0,21.395,0.5962851851851851,433.53,1514.07,0.3409909496272475 -2001-08-10,0.21,23.45,0.5959997685185184,352.98,1970.59,0.3269183072616786 -2001-08-11,0.0,18.05,0.5920523148148148,437.89,1225.71,0.29660800062814546 -2001-08-12,0.0,16.7,0.591992824074074,459.08,1040.75,0.2814528473113789 -2001-08-13,1.27,19.37,0.5880002314814815,385.88,1350.17,0.2706277377994028 -2001-08-14,3.95,16.555,0.5879922453703703,389.35,1054.68,0.2554725844826362 -2001-08-15,0.0,15.625,0.5840005787037037,457.09,928.03,0.24031743116586965 -2001-08-16,0.0,18.115000000000002,0.5835359953703704,435.78,1150.66,0.23490487640988159 -2001-08-17,0.96,19.005000000000003,0.5800003472222222,318.27,1501.22,0.22516227784910312 -2001-08-18,2.54,19.31,0.5787818287037036,208.4,1724.05,0.21866721214191742 -2001-08-19,0.0,18.775,0.5760005787037037,300.9,1540.62,0.20134703692275568 -2001-08-20,0.54,16.799999999999997,0.5738478009259259,307.73,1343.6,0.18835690550838435 -2001-08-21,8.16,16.369999999999997,0.5719994212962963,132.92,1559.32,0.20351205882515092 -2001-08-22,3.22,18.415,0.5680513888888888,189.11,1646.88,0.20242954787395329 -2001-08-23,1.91,19.215,0.5679997685185185,302.24,1479.95,0.19809950406916285 -2001-08-24,0.0,15.079999999999998,0.5639996527777777,379.31,1080.51,0.1829443507523963 -2001-08-25,0.0,11.27,0.5639916666666667,426.96,742.63,0.17103673028922256 -2001-08-26,0.61,14.36,0.56,426.22,866.82,0.16562417553323452 -2001-08-27,8.34,16.575,0.558330324074074,237.88,1300.43,0.1732017521916178 -2001-08-28,4.9,16.95,0.5560002314814815,203.14,1415.34,0.16237664267964166 -2001-08-29,5.11,15.995000000000001,0.5520519675925926,226.61,1291.47,0.1537165550700608 -2001-08-30,0.0,11.729999999999999,0.5520004629629629,414.56,791.19,0.14289144555808467 -2001-08-31,3.8,15.75,0.5479999999999999,388.53,1054.15,0.14397395650928227 -2001-09-01,25.31,16.41,0.5479921296296296,224.2,1327.2,0.23490487640988159 -2001-09-02,4.12,10.719999999999999,0.5439997685185185,286.91,813.56,0.22732729975149835 -2001-09-03,0.0,12.32,0.540794212962963,392.99,843.69,0.19918201502036048 -2001-09-04,0.5,15.16,0.54,297.62,1221.18,0.19376946026437242 -2001-09-05,9.49,11.455,0.5359994212962963,233.79,936.1,0.18510937265479152 -2001-09-06,0.0,10.31,0.5359994212962963,404.39,713.63,0.17753179599640825 -2001-09-07,0.0,15.46,0.5319998842592593,407.43,966.26,0.1732017521916178 -2001-09-08,0.0,20.744999999999997,0.5298482638888888,362.17,1496.52,0.16562417553323452 -2001-09-09,0.0,23.770000000000003,0.5279998842592593,304.35,2002.19,0.16129413172844406 -2001-09-10,0.96,22.21,0.5240002314814816,319.93,1745.67,0.15804659887485123 -2001-09-11,2.4,18.185,0.5240002314814816,272.69,1420.49,0.1569640879236536 -2001-09-12,0.0,11.39,0.520000462962963,346.21,863.63,0.14397395650928227 -2001-09-13,0.0,12.655000000000001,0.5183310185185186,332.99,951.3,0.14072642365568944 -2001-09-14,0.0,9.51,0.5159998842592592,376.27,717.04,0.1277362922413181 -2001-09-15,0.0,7.675000000000001,0.511999537037037,371.24,624.07,0.12015871558293482 -2001-09-16,0.0,10.525,0.511999537037037,355.57,787.0,0.11582867177814439 -2001-09-17,0.0,13.29,0.5079996527777778,369.54,901.52,0.10933360607095871 -2001-09-18,0.0,13.42,0.5067805555555556,334.9,965.71,0.10283854036377307 -2001-09-19,0.0,8.540000000000001,0.503999537037037,385.33,599.68,0.0963434746565874 -2001-09-20,0.0,10.045,0.4999997685185186,333.62,758.24,0.09526096370538978 -2001-09-21,3.95,13.274999999999999,0.4999997685185186,156.56,1184.84,0.10067351846137784 -2001-09-22,6.77,15.940000000000001,0.4959997685185185,113.24,1502.74,0.10933360607095871 -2001-09-23,10.37,16.47,0.49366840277777774,170.69,1400.0,0.1288188031925157 -2001-09-24,0.0,16.03,0.4919994212962963,295.6,1223.08,0.1277362922413181 -2001-09-25,2.78,15.785,0.48800034722222224,213.72,1366.84,0.13098382509491094 -2001-09-26,30.96,15.95,0.48800034722222224,131.37,1453.91,0.30310306633533113 -2001-09-27,4.98,13.219999999999999,0.4840002314814815,195.15,1086.64,0.29444297872575026 -2001-09-28,6.56,7.845,0.48167002314814816,185.13,776.83,0.2911954458721574 -2001-09-29,0.0,6.39,0.4800005787037037,309.17,606.51,0.2955254896769478 -2001-09-30,0.0,6.66,0.4760001157407408,354.57,534.34,0.29769051157934306 -2001-10-01,0.0,9.255,0.4760001157407408,357.4,599.56,0.29769051157934306 -2001-10-02,0.0,10.84,0.4719996527777777,333.44,735.75,0.29444297872575026 -2001-10-03,0.0,9.175,0.4701513888888889,314.13,704.08,0.2890304239697622 -2001-10-04,1.8,11.045,0.46799976851851854,260.24,876.66,0.2911954458721574 -2001-10-05,1.69,11.805,0.463999537037037,216.18,978.93,0.28578289111616934 -2001-10-06,4.88,10.14,0.463999537037037,133.01,971.46,0.2955254896769478 -2001-10-07,3.3,6.1,0.46,239.17,600.46,0.2901129349209598 -2001-10-08,0.87,2.9299999999999997,0.45920532407407405,272.83,487.72,0.2803703363601813 -2001-10-09,2.09,3.3649999999999998,0.45599953703703705,264.13,489.17,0.27171024875060035 -2001-10-10,0.0,7.324999999999999,0.45200810185185186,265.74,670.29,0.26521518304341474 -2001-10-11,0.0,11.27,0.452,282.85,822.88,0.2598026282874267 -2001-10-12,0.0,13.280000000000001,0.4480001157407407,275.2,948.97,0.2522250516290434 -2001-10-13,0.0,11.579999999999998,0.4480001157407407,248.95,912.35,0.2457299859218577 -2001-10-14,0.0,11.385000000000002,0.4440001157407408,261.36,873.95,0.2446474749706601 -2001-10-15,4.09,11.705,0.44166932870370373,153.34,1027.31,0.24031743116586965 -2001-10-16,9.93,8.89,0.4400003472222222,180.8,776.78,0.23490487640988159 -2001-10-17,13.2,9.13,0.43611064814814815,172.87,800.0,0.29336046777455266 -2001-10-18,5.7,5.855,0.43600011574074077,150.27,685.32,0.34315597152964267 -2001-10-19,0.0,3.32,0.43200000000000005,235.78,520.0,0.30526808823772633 -2001-10-20,1.31,5.745,0.43194837962962956,180.72,681.13,0.3041855772865288 -2001-10-21,3.81,6.255,0.428,184.79,612.16,0.311763153944912 -2001-10-22,6.36,6.665,0.4261517361111111,168.52,655.67,0.3453209934320379 -2001-10-23,4.83,3.1950000000000003,0.42400011574074076,184.89,498.43,0.3496510372368284 -2001-10-24,6.69,7.2700000000000005,0.42121863425925926,185.11,627.85,0.4037765847967089 -2001-10-25,4.71,10.015,0.41999976851851856,147.63,877.96,0.4167667162110803 -2001-10-26,6.5,5.745,0.4164640046296296,143.64,640.0,0.49687252659970355 -2001-10-27,3.0,3.87,0.4159996527777778,136.3,591.74,0.5076976361116796 -2001-10-28,0.0,1.58,0.4121109953703704,166.05,512.17,0.5098626580140748 -2001-10-29,0.0,1.005,0.41200046296296294,201.69,440.0,0.5228527894284463 -2001-10-30,0.0,1.1300000000000001,0.4080084490740741,156.18,504.54,0.5131101908676677 -2001-10-31,0.0,-1.32,0.40794895833333333,163.41,420.66,0.5163577237212605 -2001-11-01,0.0,1.12,0.40399999999999997,179.69,486.03,0.520687767526051 -2001-11-02,2.01,6.74,0.4037145833333334,166.26,741.18,0.5271828332332367 -2001-11-03,1.76,10.56,0.40000023148148145,146.33,999.04,0.5163577237212605 -2001-11-04,0.0,6.205,0.39971435185185183,171.17,702.12,0.5087801470628772 -2001-11-05,0.0,4.345000000000001,0.3960082175925926,104.14,707.17,0.4990375485020987 -2001-11-06,1.53,4.26,0.39571446759259266,99.55,706.56,0.487129928038925 -2001-11-07,0.0,4.04,0.3921108796296296,144.17,640.26,0.46547970901497276 -2001-11-08,0.0,0.8300000000000001,0.3919487268518519,174.66,468.85,0.4665622199661704 -2001-11-09,6.67,1.1749999999999998,0.3884644675925926,98.97,533.99,0.4882124389901227 -2001-11-10,0.0,-0.51,0.38799999999999996,140.18,462.77,0.47413979662455363 -2001-11-11,1.74,-2.14,0.3848466435185185,129.45,423.14,0.46331468711257756 -2001-11-12,0.0,-4.455,0.3840003472222222,159.98,331.48,0.44815953379581097 -2001-11-13,0.71,-5.69,0.38166932870370374,163.16,298.51,0.4340868914302421 -2001-11-14,1.67,-3.8449999999999998,0.3799997685185186,193.83,328.68,0.4362519133326373 -2001-11-15,0.0,2.6449999999999996,0.37920590277777777,199.46,519.89,0.43083935857664923 -2001-11-16,1.33,4.74,0.37611087962962964,182.03,602.83,0.42975684762545163 -2001-11-17,0.0,-0.9950000000000001,0.3759486111111111,199.59,359.83,0.41784922716227785 -2001-11-18,0.0,-1.1649999999999998,0.37321898148148147,161.63,417.58,0.4200142490646731 -2001-11-19,0.05,5.06,0.3719998842592593,175.13,602.24,0.41784922716227785 -2001-11-20,2.46,4.295,0.37120578703703705,166.18,535.79,0.4200142490646731 -2001-11-21,3.01,-1.295,0.3684645833333333,143.28,398.79,0.41460169430868504 -2001-11-22,0.0,-2.21,0.3680003472222222,125.91,438.09,0.4113541614550923 -2001-11-23,0.0,-0.735,0.36615196759259255,116.26,477.76,0.40485909574790657 -2001-11-24,0.0,1.8050000000000002,0.3644642361111111,136.64,552.93,0.4059416066991042 -2001-11-25,0.21,6.03,0.36400011574074076,137.91,728.06,0.40918913955269703 -2001-11-26,3.41,9.43,0.3621513888888889,62.54,1029.32,0.41243667240628984 -2001-11-27,1.29,2.25,0.3604638888888889,154.19,487.7,0.39511649718712805 -2001-11-28,3.89,-4.7,0.3599998842592593,79.05,364.78,0.3961990081383257 -2001-11-29,9.73,-9.21,0.35920578703703704,147.09,197.84,0.38753892052874483 -2001-11-30,13.95,-5.05,0.3572189814814815,125.26,300.55,0.42542680382066117 -2001-12-01,8.04,0.8449999999999998,0.35611041666666665,110.22,501.89,0.47955235138054175 -2001-12-02,0.54,2.02,0.3559483796296296,141.22,558.64,0.5282653441844343 -2001-12-03,1.08,0.6150000000000001,0.3546476851851852,104.26,529.39,0.5304303660868295 -2001-12-04,1.86,0.41999999999999993,0.35321898148148145,90.56,553.23,0.5477505413059912 -2001-12-05,2.15,0.41999999999999993,0.35211030092592593,106.34,525.79,0.5715657822323387 -2001-12-06,2.22,4.63,0.35199988425925927,152.04,613.71,0.6148662202802432 -2001-12-07,0.0,3.7649999999999997,0.35171423611111113,167.81,563.61,0.6657442349865309 -2001-12-08,0.0,-2.935,0.3506474537037037,133.86,384.09,0.6798168773520998 -2001-12-09,0.0,-6.545,0.34966921296296294,169.92,248.36,0.6960545416200639 -2001-12-10,0.0,-5.24,0.3488465277777778,187.31,240.0,0.7155397387416209 -2001-12-11,0.0,-1.1949999999999998,0.3481105324074074,174.03,366.43,0.7371899577655732 -2001-12-12,0.0,-4.23,0.3480079861111111,178.14,280.0,0.7339424249119803 -2001-12-13,2.76,-3.41,0.34794849537037037,134.6,332.78,0.7599226877407229 -2001-12-14,2.3,1.4849999999999999,0.34771435185185184,112.53,525.58,0.7761603520086873 -2001-12-15,0.0,-3.135,0.3472057870370371,138.22,357.02,0.7512626001311421 -2001-12-16,0.0,-6.05,0.3466476851851852,109.28,313.58,0.6993020744736568 -2001-12-17,0.0,-8.14,0.3466476851851852,150.0,239.98,0.6873944540104832 -2001-12-18,1.25,-6.655,0.3461518518518519,105.12,297.32,0.6798168773520998 -2001-12-19,0.0,-5.135,0.3461518518518519,108.8,338.43,0.6711567897425189 -2001-12-20,0.28,-5.7,0.3456693287037037,137.32,299.03,0.6624967021329381 -2001-12-21,2.08,-6.555000000000001,0.3456693287037037,121.46,280.01,0.6560016364257523 -2001-12-22,0.0,-6.4750000000000005,0.3461518518518519,111.46,303.83,0.6462590378649739 -2001-12-23,0.0,-7.949999999999999,0.3461518518518519,167.29,225.9,0.6375989502553929 -2001-12-24,5.69,-5.755000000000001,0.3461518518518519,149.14,263.75,0.6343514174018001 -2001-12-25,7.64,-2.3200000000000003,0.3466476851851852,79.23,433.4,0.6419289940601834 -2001-12-26,0.0,-6.41,0.3472057870370371,163.54,261.81,0.6256913297922193 -2001-12-27,0.6,-7.035,0.34771435185185184,120.87,280.0,0.6051236217194647 -2001-12-28,0.0,-8.31,0.34794849537037037,115.34,264.67,0.5888859574515005 -2001-12-29,0.0,-8.245,0.34800000000000003,128.34,251.02,0.5748133150859315 -2001-12-30,0.0,-8.17,0.3480079861111111,93.81,275.74,0.5585756508179673 -2001-12-31,0.0,-10.585,0.3484641203703704,166.37,199.22,0.5423379865500033 -2002-01-01,0.0,-12.045,0.34921886574074074,155.25,160.0,0.5282653441844343 -2002-01-02,0.0,-11.645,0.35015162037037034,124.7,190.67,0.5131101908676677 -2002-01-03,0.0,-9.085,0.35120578703703703,117.44,238.3,0.5001200594532963 -2002-01-04,0.0,-14.515,0.3519482638888889,188.15,120.0,0.48388239518533216 -2002-01-05,0.0,-15.52,0.35200787037037035,196.06,96.48,0.46980975281976317 -2002-01-06,1.96,-8.91,0.35284641203703704,159.58,200.07,0.4579021323565895 -2002-01-07,3.18,-5.994999999999999,0.3541518518518519,107.31,281.45,0.4459945118934157 -2002-01-08,0.0,-13.270000000000001,0.35571446759259256,194.96,120.01,0.4330043804790444 -2002-01-09,0.95,-8.885,0.35600000000000004,179.65,200.96,0.42109676001587076 -2002-01-10,3.15,-2.73,0.3564643518518519,48.8,439.77,0.4113541614550923 -2002-01-11,2.6,-2.215,0.35815185185185183,76.16,438.76,0.40052905194311617 -2002-01-12,2.45,-5.975,0.3599482638888889,98.39,319.67,0.39295147528473284 -2002-01-13,6.96,-8.08,0.36000787037037035,138.23,240.0,0.3864564095775472 -2002-01-14,9.01,-7.16,0.36121863425925926,93.75,277.12,0.4221792709670683 -2002-01-15,0.54,-11.549999999999999,0.3637142361111111,172.67,160.0,0.42109676001587076 -2002-01-16,3.77,-10.43,0.36400011574074076,91.9,214.58,0.41460169430868504 -2002-01-17,2.84,-12.065,0.36521898148148146,178.09,160.0,0.4081066286014994 -2002-01-18,3.55,-13.07,0.36771435185185186,166.74,137.77,0.4016115628943137 -2002-01-19,0.41,-15.995,0.3680083333333333,236.47,80.0,0.3961990081383257 -2002-01-20,0.0,-13.684999999999999,0.3696696759259259,232.36,120.06,0.3907864533823376 -2002-01-21,1.34,-10.735,0.3719483796296296,223.42,150.53,0.384291387675152 -2002-01-22,4.43,-7.395,0.37211041666666667,144.37,244.63,0.37887883291916397 -2002-01-23,0.0,-10.415000000000001,0.3746479166666667,250.2,138.2,0.3745487891143735 -2002-01-24,0.0,-5.11,0.3760002314814815,230.85,252.41,0.3680537234071878 -2002-01-25,0.58,-10.595,0.3772188657407407,222.2,161.49,0.3637236796023974 -2002-01-26,2.04,-11.815000000000001,0.3799997685185186,219.76,159.88,0.3593936357976069 -2002-01-27,2.64,-10.44,0.3804640046296296,165.61,198.93,0.3550635919928165 -2002-01-28,3.04,-8.684999999999999,0.383714699074074,142.62,236.29,0.35073354818802605 -2002-01-29,0.53,-5.575,0.38400833333333334,199.55,285.67,0.3464035043832356 -2002-01-30,0.04,-13.594999999999999,0.3866476851851852,192.4,160.0,0.3409909496272475 -2002-01-31,0.0,-19.39,0.38799999999999996,233.53,80.0,0.33666090582245706 -2002-02-01,8.19,-17.465,0.3901519675925926,172.49,111.61,0.3323308620176666 -2002-02-02,9.29,-13.59,0.39200034722222227,169.89,149.0,0.3301658401152714 -2002-02-03,0.0,-19.15,0.3936696759259259,293.54,80.0,0.325835796310481 -2002-02-04,3.9,-16.31,0.39600023148148145,210.75,94.67,0.3225882634568881 -2002-02-05,1.79,-14.815000000000001,0.3972188657407407,240.53,120.0,0.3182582196520977 -2002-02-06,0.0,-16.39,0.40000023148148145,261.85,118.25,0.31501068679850486 -2002-02-07,0.41,-19.945,0.4012189814814815,290.48,67.21,0.3106806429937144 -2002-02-08,4.44,-14.7,0.40399999999999997,190.89,125.88,0.3074331101401216 -2002-02-09,0.0,-15.13,0.40521898148148144,280.24,120.0,0.3041855772865288 -2002-02-10,0.68,-14.395000000000001,0.4080003472222223,319.82,80.72,0.30093804443293587 -2002-02-11,5.64,-11.82,0.40966990740740744,244.26,120.0,0.29769051157934306 -2002-02-12,0.0,-19.95,0.41200046296296294,339.52,40.0,0.2955254896769478 -2002-02-13,0.0,-14.015,0.41464768518518513,319.19,113.37,0.29336046777455266 -2002-02-14,0.0,-19.145,0.4159996527777778,346.28,43.94,0.2911954458721574 -2002-02-15,0.11,-8.645,0.419205324074074,310.68,172.12,0.28794791301856454 -2002-02-16,0.0,-1.005,0.41999976851851856,242.66,386.62,0.28686540206736694 -2002-02-17,0.0,-2.32,0.42400011574074076,257.13,345.48,0.2825353582625765 -2002-02-18,0.0,-10.350000000000001,0.42400011574074076,342.75,136.68,0.2803703363601813 -2002-02-19,0.0,-10.655,0.428,360.61,120.0,0.28470038016497173 -2002-02-20,0.0,-5.345000000000001,0.42846388888888887,343.93,211.15,0.2901129349209598 -2002-02-21,2.83,-0.9600000000000002,0.43200000000000005,154.47,440.0,0.2890304239697622 -2002-02-22,3.12,-0.805,0.4336695601851852,94.06,496.91,0.292277956823355 -2002-02-23,0.0,-6.665,0.43600011574074077,213.49,276.81,0.27171024875060035 -2002-02-24,0.0,-9.844999999999999,0.4399488425925926,302.11,182.39,0.2608851392386243 -2002-02-25,3.42,-5.995,0.4400003472222222,226.91,263.8,0.2630501611410195 -2002-02-26,4.71,-0.8750000000000002,0.4440001157407408,144.5,441.4,0.2803703363601813 -2002-02-27,10.56,2.6550000000000002,0.4440081018518519,152.41,583.02,0.2825353582625765 -2002-02-28,15.29,-4.45,0.4480001157407407,219.79,298.34,0.3182582196520977 -2002-03-01,0.0,-9.42,0.4501516203703704,330.45,200.0,0.3225882634568881 -2002-03-02,0.0,-8.77,0.452,383.96,169.47,0.3204232415544929 -2002-03-03,4.56,-4.21,0.45599953703703705,272.31,265.89,0.3290833291640738 -2002-03-04,6.59,-2.4899999999999998,0.45599953703703705,274.46,309.64,0.3301658401152714 -2002-03-05,0.0,-13.424999999999999,0.46,383.55,120.0,0.31717570870090006 -2002-03-06,0.0,-11.41,0.4604638888888889,367.96,159.42,0.31501068679850486 -2002-03-07,0.0,-8.485,0.463999537037037,385.48,190.03,0.31609319774970246 -2002-03-08,0.0,-8.940000000000001,0.46799976851851854,404.92,170.17,0.3215057525056905 -2002-03-09,5.5,-5.6899999999999995,0.46799976851851854,291.09,238.5,0.3301658401152714 -2002-03-10,12.31,0.04499999999999993,0.4719996527777777,308.05,348.74,0.34748601533443313 -2002-03-11,2.12,-7.5,0.4719996527777777,345.25,200.99,0.35831112484640926 -2002-03-12,0.1,-8.105,0.4760001157407408,310.83,238.26,0.3637236796023974 -2002-03-13,0.0,-5.824999999999999,0.4800005787037037,422.29,229.31,0.3669712124559901 -2002-03-14,0.0,-2.37,0.4800005787037037,400.47,318.07,0.3680537234071878 -2002-03-15,0.19,-7.0,0.4840002314814815,410.01,217.33,0.3615586577000021 -2002-03-16,2.87,-7.565,0.4840002314814815,254.88,241.68,0.3615586577000021 -2002-03-17,0.0,-9.48,0.48800034722222224,449.13,168.69,0.3604761467488045 -2002-03-18,0.0,-9.969999999999999,0.4919994212962963,504.27,135.07,0.3691362343583854 -2002-03-19,0.0,-5.295,0.4919994212962963,444.3,245.48,0.3810438548215591 -2002-03-20,0.66,-5.29,0.4959997685185185,488.6,209.32,0.39836403004072096 -2002-03-21,6.77,-1.81,0.4959997685185185,287.16,361.96,0.39836403004072096 -2002-03-22,3.89,-8.27,0.4999997685185186,363.15,185.89,0.3907864533823376 -2002-03-23,0.0,-11.55,0.503999537037037,341.03,185.98,0.3767138110167687 -2002-03-24,0.0,-9.365,0.503999537037037,361.96,205.53,0.3626411686511997 -2002-03-25,0.0,-10.325,0.5079996527777778,414.46,189.95,0.35831112484640926 -2002-03-26,0.0,-9.37,0.5079996527777778,544.45,145.84,0.35289857009042125 -2002-03-27,13.02,-1.615,0.511999537037037,305.32,371.27,0.3485685262856308 -2002-03-28,0.55,-0.2250000000000001,0.5159998842592592,214.81,504.01,0.3442384824808404 -2002-03-29,0.0,-0.375,0.5159998842592592,368.64,429.66,0.34315597152964267 -2002-03-30,0.48,3.0549999999999997,0.520000462962963,355.22,560.0,0.3680537234071878 -2002-03-31,2.52,3.9450000000000003,0.520000462962963,386.01,543.91,0.39836403004072096 -2002-04-01,8.02,3.195,0.5240002314814816,324.62,558.37,0.44274697903982296 -2002-04-02,12.59,0.8799999999999999,0.5279998842592593,187.1,540.03,0.5271828332332367 -2002-04-03,6.42,1.73,0.5279998842592593,188.88,574.24,0.5888859574515005 -2002-04-04,1.21,0.27,0.5319998842592593,273.05,497.5,0.6386814612065905 -2002-04-05,0.0,-1.64,0.5319998842592593,351.95,417.95,0.6744043225961118 -2002-04-06,0.0,-3.545,0.5359994212962963,474.68,309.25,0.7057971401808425 -2002-04-07,0.0,-5.535,0.5395353009259259,521.96,250.65,0.7415200015703636 -2002-04-08,0.0,-1.3399999999999999,0.54,420.25,403.08,0.7815729067646752 -2002-04-09,4.79,2.915,0.5439997685185185,254.26,600.0,0.8497710966901247 -2002-04-10,6.1,4.045,0.5439997685185185,245.69,648.37,1.0825109511976112 -2002-04-11,0.0,0.9249999999999998,0.5479999999999999,561.97,396.92,1.2557127033892288 -2002-04-12,0.0,5.395,0.5498481481481481,543.81,566.05,1.547990660212584 -2002-04-13,0.0,8.965,0.5520004629629629,505.11,773.34,2.1758470119071984 -2002-04-14,0.78,6.99,0.5559922453703704,470.99,685.33,2.7712280350658847 -2002-04-15,1.1,4.734999999999999,0.5560002314814815,477.78,597.08,3.496510372368284 -2002-04-16,4.0,7.96,0.56,386.87,719.42,4.189317381134755 -2002-04-17,6.09,10.32,0.5600517361111111,382.75,852.53,5.477505413059912 -2002-04-18,10.85,4.75,0.5639996527777777,293.4,653.8,6.668267459377285 -2002-04-19,2.37,5.6899999999999995,0.5663305555555556,336.45,722.71,7.350249358631779 -2002-04-20,2.47,2.8899999999999997,0.5679997685185185,430.23,499.79,7.826554177158728 -2002-04-21,0.0,-0.6499999999999999,0.5715351851851852,514.35,405.92,7.772428629598848 -2002-04-22,0.0,-1.5,0.5719994212962963,538.81,367.43,7.534276220335373 -2002-04-23,0.0,1.495,0.5760005787037037,536.28,452.68,7.20952293497609 -2002-04-24,0.0,2.545,0.5760005787037037,597.69,439.29,6.841469211568902 -2002-04-25,0.0,4.64,0.5800003472222222,633.35,442.53,6.505890816697644 -2002-04-26,2.81,4.97,0.5807946759259259,471.41,558.92,6.235263078898241 -2002-04-27,4.04,1.9749999999999996,0.5840005787037037,300.01,545.76,6.0620613267066235 -2002-04-28,0.0,0.9099999999999999,0.5853530092592593,496.64,454.19,5.7156578223233865 -2002-04-29,2.65,1.6199999999999999,0.5880002314814815,349.49,528.43,5.4017296464760785 -2002-04-30,0.15,1.21,0.5903311342592593,572.14,430.21,5.1202767991647 -2002-05-01,0.11,4.319999999999999,0.5920008101851852,595.82,511.43,4.817173732829369 -2002-05-02,5.11,4.0600000000000005,0.5943310185185184,491.02,503.77,4.524895776006015 -2002-05-03,7.39,4.88,0.5959997685185184,385.0,596.69,4.42746979039823 -2002-05-04,4.76,3.995,0.5987809027777777,361.01,586.16,4.243442928694636 -2002-05-05,0.0,6.3999999999999995,0.5999998842592592,614.44,525.98,4.070241176503018 -2002-05-06,1.37,10.065,0.6027810185185185,606.67,607.95,3.886214314799424 -2002-05-07,8.46,12.055,0.6039996527777778,430.91,863.33,3.8970394243114 -2002-05-08,6.66,7.995,0.6063304398148148,444.86,624.83,3.788788329191639 -2002-05-09,0.76,4.44,0.6079995370370371,588.35,479.18,3.6697121245599016 -2002-05-10,5.51,9.195,0.6098476851851852,414.2,727.07,3.626411686511997 -2002-05-11,0.59,6.11,0.6120002314814815,563.55,575.38,3.485685262856308 -2002-05-12,0.0,2.465,0.6133524305555556,563.16,440.2,3.3341337296886424 -2002-05-13,0.0,4.635,0.6159914351851852,615.34,452.34,3.182582196520977 -2002-05-14,10.15,4.43,0.6162851851851852,397.53,537.7,3.074331101401216 -2002-05-15,10.78,1.87,0.6195356481481481,228.53,564.47,3.1284566489610963 -2002-05-16,5.28,5.0249999999999995,0.6199998842592592,339.65,615.73,3.2258826345688814 -2002-05-17,3.0,8.45,0.6227818287037037,275.35,857.74,3.280008182128762 -2002-05-18,0.0,6.26,0.6240006944444445,523.57,612.69,3.2691830726167854 -2002-05-19,3.89,6.4399999999999995,0.6253526620370371,327.04,695.2,3.2475328535928334 -2002-05-20,1.88,5.57,0.6278895833333333,466.44,600.0,3.1934073060329524 -2002-05-21,2.18,7.3100000000000005,0.6280518518518519,437.2,711.84,3.1068064299371434 -2002-05-22,0.0,7.35,0.6303303240740741,599.73,574.38,2.998555334817383 -2002-05-23,0.0,13.7,0.6319916666666667,556.41,933.27,2.8686540206736693 -2002-05-24,1.45,15.84,0.6322856481481481,487.91,1126.95,2.738752706529956 -2002-05-25,3.1,8.27,0.6347809027777778,508.34,581.6,2.5872011733622906 -2002-05-26,1.26,6.9750000000000005,0.6360001157407408,511.15,624.62,2.4897751877545056 -2002-05-27,3.71,9.4,0.6362856481481481,418.59,728.27,2.3815240926347445 -2002-05-28,0.18,12.709999999999999,0.6387810185185185,548.53,871.76,2.2840981070269595 -2002-05-29,0.0,16.72,0.6399917824074074,570.89,991.27,2.1758470119071984 -2002-05-30,9.59,17.855,0.6400512731481481,349.89,1409.81,2.1000712453233654 -2002-05-31,10.29,17.18,0.6418483796296296,227.48,1554.75,2.110896354835342 -2002-06-01,20.42,15.8,0.6435354166666667,338.79,1230.81,2.554725844826362 -2002-06-02,7.61,10.195,0.6439998842592592,342.4,834.93,2.446474749706601 -2002-06-03,0.0,5.984999999999999,0.6442856481481481,355.55,700.9,2.3923492021467205 -2002-06-04,0.0,6.26,0.6458482638888889,552.18,554.19,2.349048764098816 -2002-06-05,3.74,10.01,0.6471538194444444,420.89,796.38,2.2840981070269595 -2002-06-06,6.97,9.785,0.6479927083333333,294.71,890.96,2.240797668979055 -2002-06-07,0.0,9.51,0.6480521990740741,537.08,699.47,2.14337168337127 -2002-06-08,0.12,10.08,0.6487947916666666,565.12,640.06,2.045945697763485 -2002-06-09,4.53,12.98,0.6498487268518519,328.06,1014.55,1.9701699311796523 -2002-06-10,0.0,13.795,0.6507814814814814,443.07,1062.79,1.851093726547915 -2002-06-11,0.32,13.415,0.6515357638888889,414.63,1073.42,1.7969681789880345 -2002-06-12,0.95,11.645,0.6519921296296297,312.91,1056.52,1.7211924124042017 -2002-06-13,0.0,10.809999999999999,0.6520001157407407,432.38,884.77,1.6237664267964167 -2002-06-14,0.0,10.379999999999999,0.6520517361111111,552.21,622.1,1.5263404411886317 -2002-06-15,0.38,11.665000000000001,0.6522856481481482,512.49,742.04,1.4289144555808466 -2002-06-16,5.67,10.035,0.6527943287037037,292.49,854.05,1.3856140175329423 -2002-06-17,6.68,9.01,0.653352662037037,194.36,919.18,1.3314884699730618 -2002-06-18,7.35,12.04,0.653848611111111,196.5,1136.33,1.3206633604610856 -2002-06-19,0.0,13.450000000000001,0.653848611111111,445.76,982.31,1.2557127033892288 -2002-06-20,0.0,15.595,0.653848611111111,517.94,919.63,1.2015871558293483 -2002-06-21,0.0,19.585,0.6543310185185185,493.69,1251.02,1.1366364987574917 -2002-06-22,0.0,19.845,0.6543310185185185,449.34,1427.52,1.0597782212224613 -2002-06-23,4.51,14.235,0.653848611111111,465.22,858.36,1.0121477393697664 -2002-06-24,6.28,15.065,0.653848611111111,302.98,1163.37,0.9753423670290476 -2002-06-25,0.0,14.155000000000001,0.653352662037037,484.39,923.71,0.9580221918098859 -2002-06-26,0.5,17.22,0.653352662037037,488.62,1069.85,0.9287943961275504 -2002-06-27,14.98,20.45,0.6527943287037037,298.8,1610.22,1.0218903379305448 -2002-06-28,0.85,19.509999999999998,0.6522856481481482,381.94,1548.21,0.9991576079553951 -2002-06-29,0.0,16.035,0.6520517361111111,506.13,964.98,0.949362104200305 -2002-06-30,0.0,16.765,0.6519921296296297,474.02,1111.84,0.9082266880547958 -2002-07-01,6.8,17.075000000000003,0.6518894675925926,247.57,1417.0,0.8919890237868314 -2002-07-02,19.54,21.665,0.6511538194444445,268.23,1799.32,0.9450320603955146 -2002-07-03,5.04,25.985,0.6503311342592593,293.83,2320.5,0.9222993304203646 -2002-07-04,17.52,23.23,0.6493528935185184,270.49,1974.85,0.9948275641506047 -2002-07-05,17.22,18.884999999999998,0.6482863425925927,215.73,1677.97,1.1474616082694677 -2002-07-06,10.29,14.905000000000001,0.6480008101851852,165.81,1391.9,1.1907620463173723 -2002-07-07,3.95,14.66,0.647890162037037,158.77,1396.02,1.3314884699730618 -2002-07-08,0.0,16.595,0.64678125,426.92,1241.44,1.461389784116775 -2002-07-09,4.26,19.57,0.645352199074074,319.52,1503.01,1.5696408792365362 -2002-07-10,0.0,16.015,0.6440515046296297,357.33,1315.31,1.5588157697245602 -2002-07-11,0.0,11.52,0.6438894675925926,376.76,943.18,1.5155153316766559 -2002-07-12,0.0,15.635,0.6427809027777778,413.86,1188.84,1.4938651126527034 -2002-07-13,4.91,17.995,0.6407940972222222,279.11,1436.41,1.4722148936287511 -2002-07-14,4.96,17.575,0.6399997685185186,302.63,1359.67,1.4397395650928229 -2002-07-15,8.03,18.384999999999998,0.6395354166666667,278.22,1491.59,1.4180893460688704 -2002-07-16,6.19,16.3,0.6378482638888888,309.59,1252.68,1.4289144555808466 -2002-07-17,0.0,16.244999999999997,0.6360001157407408,412.01,1243.39,1.461389784116775 -2002-07-18,0.0,17.28,0.6355359953703703,336.73,1437.44,1.4289144555808466 -2002-07-19,1.01,13.889999999999999,0.6338483796296296,458.32,937.27,1.3964391270449183 -2002-07-20,5.94,16.4,0.6319996527777777,320.11,1223.47,1.4072642365568944 -2002-07-21,0.0,16.75,0.6315355324074073,459.19,1177.89,1.3531386889970138 -2002-07-22,1.53,20.8,0.6287943287037038,412.0,1624.34,1.3098382509491096 -2002-07-23,6.59,21.939999999999998,0.628,277.19,1864.18,1.2448875938772528 -2002-07-24,1.37,13.459999999999999,0.6267813657407407,451.91,919.05,1.179936936805396 -2002-07-25,0.0,12.28,0.624052199074074,510.98,758.82,1.1041611702215632 -2002-07-26,0.0,14.48,0.6238902777777778,504.42,887.13,1.0424580460032995 -2002-07-27,2.06,15.17,0.6207944444444444,393.26,1161.74,0.9785898998826404 -2002-07-28,0.24,16.135,0.6199998842592592,335.94,1351.8,0.9179692866155742 -2002-07-29,4.4,19.8,0.6183303240740741,253.39,1741.95,0.8811639142748555 -2002-07-30,2.85,20.06,0.615999537037037,236.54,1810.69,0.8346159433733582 -2002-07-31,0.0,20.494999999999997,0.6151532407407407,372.81,1721.79,0.7815729067646752 -2002-08-01,0.0,19.16,0.6120002314814815,412.57,1475.12,0.7404374906191661 -2002-08-02,0.36,19.07,0.6115356481481482,343.37,1614.69,0.7187872715952138 -2002-08-03,4.2,19.96,0.6080510416666667,257.51,1758.27,0.6928070087664712 -2002-08-04,0.0,20.189999999999998,0.6078891203703704,437.12,1478.12,0.6505890816697643 -2002-08-05,0.0,20.655,0.6042853009259259,369.4,1725.14,0.6181137531338359 -2002-08-06,0.41,16.35,0.6039916666666666,437.81,1159.5,0.5661532274763506 -2002-08-07,1.86,15.004999999999999,0.6002854166666667,325.08,1233.47,0.5152752127700628 -2002-08-08,0.0,13.485,0.5999998842592592,439.41,960.02,0.4892949499413202 -2002-08-09,0.0,13.79,0.5962851851851851,462.17,919.78,0.4611496652101823 -2002-08-10,0.0,18.67,0.5959997685185184,409.55,1393.43,0.4362519133326373 -2002-08-11,0.0,20.46,0.5920523148148148,410.11,1546.12,0.4167667162110803 -2002-08-12,0.0,22.275,0.591992824074074,435.64,1598.11,0.39295147528473284 -2002-08-13,0.0,23.265,0.5880002314814815,413.58,1763.98,0.3680537234071878 -2002-08-14,0.0,24.07,0.5879922453703703,422.21,1780.38,0.35073354818802605 -2002-08-15,0.0,24.79,0.5840005787037037,387.18,2001.76,0.33557839487125946 -2002-08-16,0.06,24.05,0.5835359953703704,377.79,1938.82,0.3139281758473072 -2002-08-17,0.0,23.5,0.5800003472222222,347.77,1976.34,0.29444297872575026 -2002-08-18,3.16,19.975,0.5787818287037036,418.99,1325.17,0.29336046777455266 -2002-08-19,21.63,20.25,0.5760005787037037,299.01,1496.91,0.2890304239697622 -2002-08-20,0.0,17.565,0.5738478009259259,374.51,1330.13,0.2619676501898219 -2002-08-21,0.0,15.135,0.5719994212962963,443.74,957.19,0.2446474749706601 -2002-08-22,2.68,16.259999999999998,0.5680513888888888,348.29,1153.09,0.23598738736107921 -2002-08-23,3.18,12.505,0.5679997685185185,299.64,953.13,0.21974972309311505 -2002-08-24,0.0,13.88,0.5639996527777777,426.94,923.94,0.21000712453233655 -2002-08-25,0.0,15.934999999999999,0.5639916666666667,401.92,1127.98,0.19918201502036048 -2002-08-26,0.0,14.950000000000001,0.56,434.22,944.34,0.18835690550838435 -2002-08-27,0.0,15.075,0.558330324074074,404.81,1031.8,0.16995421933802496 -2002-08-28,0.0,12.255,0.5560002314814815,415.1,822.29,0.15804659887485123 -2002-08-29,0.0,14.035,0.5520519675925926,423.19,898.81,0.1537165550700608 -2002-08-30,0.0,14.235,0.5520004629629629,389.44,976.8,0.1450564674604799 -2002-08-31,0.0,9.8,0.5479999999999999,444.05,600.54,0.13206633604610857 -2002-09-01,0.0,12.809999999999999,0.5479921296296296,442.21,724.96,0.1255712703389229 -2002-09-02,0.0,15.935,0.5439997685185185,396.91,1019.92,0.12232373748533006 -2002-09-03,0.0,16.74,0.540794212962963,362.23,1173.95,0.11691118272934199 -2002-09-04,9.21,17.785,0.54,189.18,1503.55,0.11907620463173722 -2002-09-05,0.0,16.72,0.5359994212962963,277.19,1353.24,0.1071685841685635 -2002-09-06,0.0,13.875,0.5359994212962963,300.31,1087.92,0.09309594180299456 -2002-09-07,0.0,16.835,0.5319998842592593,317.01,1274.02,0.09309594180299456 -2002-09-08,0.0,18.405,0.5298482638888888,347.13,1313.18,0.09201343085179695 -2002-09-09,5.28,22.255,0.5279998842592593,231.81,1762.7,0.09201343085179695 -2002-09-10,0.0,22.990000000000002,0.5240002314814816,342.95,1701.3,0.09093091990059934 -2002-09-11,21.99,16.73,0.5240002314814816,248.54,1207.08,0.11474616082694677 -2002-09-12,28.67,8.775,0.520000462962963,178.47,848.28,0.1840268617035939 -2002-09-13,5.8,9.325,0.5183310185185186,252.24,720.26,0.16995421933802496 -2002-09-14,7.17,10.035,0.5159998842592592,288.9,657.98,0.1547990660212584 -2002-09-15,5.81,13.07,0.511999537037037,204.68,1054.22,0.16562417553323452 -2002-09-16,6.04,10.01,0.511999537037037,203.54,859.08,0.16021162077724646 -2002-09-17,0.0,10.375,0.5079996527777778,290.81,855.31,0.1547990660212584 -2002-09-18,0.0,9.719999999999999,0.5067805555555556,371.75,649.51,0.14397395650928227 -2002-09-19,0.0,11.15,0.503999537037037,383.12,682.23,0.14072642365568944 -2002-09-20,0.03,16.29,0.4999997685185186,310.93,1187.32,0.13964391270449183 -2002-09-21,0.0,20.064999999999998,0.4999997685185186,229.21,1727.04,0.1385614017532942 -2002-09-22,4.32,20.085,0.4959997685185185,205.69,1589.21,0.14289144555808467 -2002-09-23,3.5,17.18,0.49366840277777774,129.48,1571.41,0.1569640879236536 -2002-09-24,0.0,11.465,0.4919994212962963,340.56,790.07,0.14722148936287513 -2002-09-25,0.0,10.55,0.48800034722222224,352.1,711.35,0.14397395650928227 -2002-09-26,0.0,11.9,0.48800034722222224,351.16,756.45,0.14180893460688707 -2002-09-27,0.42,11.95,0.4840002314814815,320.92,819.72,0.13964391270449183 -2002-09-28,8.22,10.59,0.48167002314814816,192.96,884.57,0.14289144555808467 -2002-09-29,0.0,5.0600000000000005,0.4800005787037037,317.89,519.4,0.1353138688997014 -2002-09-30,0.29,5.449999999999999,0.4760001157407408,318.12,520.02,0.13098382509491094 -2002-10-01,5.4,11.424999999999999,0.4760001157407408,219.08,862.65,0.13423135794850377 -2002-10-02,0.61,16.66,0.4719996527777777,224.22,1368.81,0.13098382509491094 -2002-10-03,0.0,10.805,0.4701513888888889,317.54,757.4,0.12124122653413244 -2002-10-04,0.0,3.8200000000000003,0.46799976851851854,331.24,440.0,0.11907620463173722 -2002-10-05,4.19,11.89,0.463999537037037,206.05,896.6,0.1277362922413181 -2002-10-06,0.0,8.104999999999999,0.463999537037037,326.7,572.61,0.10933360607095871 -2002-10-07,0.0,5.67,0.46,257.95,601.23,0.10933360607095871 -2002-10-08,0.0,4.305000000000001,0.45920532407407405,256.25,548.54,0.10067351846137784 -2002-10-09,0.0,0.9099999999999997,0.45599953703703705,265.69,413.39,0.09201343085179695 -2002-10-10,3.8,2.49,0.45200810185185186,139.36,551.19,0.0963434746565874 -2002-10-11,0.73,5.470000000000001,0.452,137.56,727.41,0.09742598560778501 -2002-10-12,0.0,8.325,0.4480001157407407,209.92,787.78,0.09417845275419218 -2002-10-13,0.69,7.92,0.4480001157407407,269.71,645.6,0.0963434746565874 -2002-10-14,6.25,6.075,0.4440001157407408,188.37,608.58,0.10067351846137784 -2002-10-15,0.0,1.2399999999999998,0.44166932870370373,263.77,411.69,0.09201343085179695 -2002-10-16,0.7,1.2699999999999996,0.4400003472222222,260.5,404.61,0.09093091990059934 -2002-10-17,14.09,3.8099999999999996,0.43611064814814815,131.23,601.87,0.14938651126527036 -2002-10-18,4.49,3.98,0.43600011574074077,103.86,640.0,0.19052192741077956 -2002-10-19,7.65,1.0099999999999998,0.43200000000000005,144.29,479.99,0.17536677409401302 -2002-10-20,9.63,1.0899999999999999,0.43194837962962956,110.55,527.93,0.19052192741077956 -2002-10-21,0.0,-0.3749999999999999,0.428,104.08,507.72,0.19918201502036048 -2002-10-22,0.0,0.14500000000000002,0.4261517361111111,140.02,492.77,0.20134703692275568 -2002-10-23,1.14,0.635,0.42400011574074076,143.85,506.67,0.20675959167874372 -2002-10-24,1.72,1.175,0.42121863425925926,121.59,553.19,0.2165021902395222 -2002-10-25,2.24,1.9449999999999998,0.41999976851851856,133.04,560.0,0.22624478880030072 -2002-10-26,2.94,1.3,0.4164640046296296,132.9,531.54,0.23706989831227682 -2002-10-27,8.7,0.6849999999999999,0.4159996527777778,73.51,560.0,0.26738020494580994 -2002-10-28,0.0,0.875,0.4121109953703704,99.98,567.16,0.2890304239697622 -2002-10-29,0.0,-0.45500000000000007,0.41200046296296294,174.57,452.89,0.27928782540898367 -2002-10-30,0.0,-2.1100000000000003,0.4080084490740741,200.61,378.19,0.27495778160419326 -2002-10-31,0.0,-3.715,0.40794895833333333,235.6,289.83,0.27820531445778607 -2002-11-01,3.15,-3.1100000000000003,0.40399999999999997,177.78,353.12,0.27928782540898367 -2002-11-02,2.45,-5.265000000000001,0.4037145833333334,192.81,292.06,0.2760402925553908 -2002-11-03,1.91,-6.96,0.40000023148148145,219.55,248.76,0.2706277377994028 -2002-11-04,0.0,-8.535,0.39971435185185183,267.14,200.0,0.2695452268482052 -2002-11-05,1.61,-5.705,0.3960082175925926,246.81,265.49,0.272792759701798 -2002-11-06,6.93,-2.09,0.39571446759259266,119.19,430.86,0.2803703363601813 -2002-11-07,6.28,-4.255,0.3921108796296296,155.74,327.51,0.27928782540898367 -2002-11-08,0.0,-8.76,0.3919487268518519,271.56,162.51,0.2760402925553908 -2002-11-09,0.0,-2.125,0.3884644675925926,211.56,373.71,0.27928782540898367 -2002-11-10,0.0,2.605,0.38799999999999996,173.7,570.42,0.2771228035065884 -2002-11-11,0.21,9.39,0.3848466435185185,230.44,758.13,0.30093804443293587 -2002-11-12,2.93,7.02,0.3840003472222222,188.03,642.2,0.3420734605784451 -2002-11-13,6.33,1.775,0.38166932870370374,82.13,594.81,0.3637236796023974 -2002-11-14,0.46,1.7449999999999999,0.3799997685185186,118.94,591.75,0.38753892052874483 -2002-11-15,0.39,1.0300000000000002,0.37920590277777777,194.27,470.11,0.4081066286014994 -2002-11-16,0.0,-4.275,0.37611087962962964,221.9,274.4,0.4081066286014994 -2002-11-17,8.21,-5.775,0.3759486111111111,157.52,282.76,0.4167667162110803 -2002-11-18,18.27,-3.9,0.37321898148148147,50.63,429.53,0.4611496652101823 -2002-11-19,5.55,-6.885,0.3719998842592593,142.8,258.29,0.4979550375509011 -2002-11-20,1.0,-3.435,0.37120578703703705,169.84,359.14,0.5174402346724581 -2002-11-21,0.0,-1.04,0.3684645833333333,161.39,440.0,0.520687767526051 -2002-11-22,8.57,0.6,0.3680003472222222,88.83,532.92,0.5423379865500033 -2002-11-23,13.31,0.8049999999999999,0.36615196759259255,75.55,560.0,0.7555926439359325 -2002-11-24,1.49,-2.24,0.3644642361111111,106.09,432.18,0.8421935200317415 -2002-11-25,0.0,-2.82,0.36400011574074076,106.38,430.4,0.915804264713179 -2002-11-26,0.0,-5.52,0.3621513888888889,185.06,276.14,0.9688473013218619 -2002-11-27,0.0,-5.975,0.3604638888888889,153.79,282.08,1.002405140808988 -2002-11-28,0.0,-10.25,0.3599998842592593,159.75,201.66,1.0002401189065926 -2002-11-29,0.15,-12.34,0.35920578703703704,195.96,160.0,1.0067351846137784 -2002-11-30,2.79,-8.11,0.3572189814814815,149.75,231.71,1.0208078269793472 -2002-12-01,8.51,-4.645,0.35611041666666665,104.51,333.72,1.0262203817353355 -2002-12-02,4.13,-8.965,0.3559483796296296,134.54,208.43,1.0218903379305448 -2002-12-03,0.0,-14.655000000000001,0.3546476851851852,190.04,120.0,1.002405140808988 -2002-12-04,0.0,-15.575,0.35321898148148145,160.4,120.21,0.9894150093946166 -2002-12-05,0.0,-15.705,0.35211030092592593,195.0,120.0,0.9547746589562931 -2002-12-06,0.0,-13.385,0.35199988425925927,195.19,122.33,0.9168867756643766 -2002-12-07,0.04,-8.795,0.35171423611111113,171.03,200.36,0.8930715347380292 -2002-12-08,1.48,-5.11,0.3506474537037037,123.53,327.47,0.8670912719092866 -2002-12-09,0.0,-15.79,0.34966921296296294,203.76,79.89,0.8335334324221606 -2002-12-10,0.0,-12.695,0.3488465277777778,184.64,132.62,0.8086356805446154 -2002-12-11,0.0,-7.01,0.3481105324074074,149.85,260.94,0.7772428629598849 -2002-12-12,0.0,-5.8,0.3480079861111111,170.0,258.7,0.749097578228747 -2002-12-13,0.0,-5.87,0.34794849537037037,173.8,246.03,0.7274473592047948 -2002-12-14,6.28,-3.6550000000000002,0.34771435185185184,90.6,363.48,0.7122922058880281 -2002-12-15,10.8,-2.57,0.3472057870370371,65.16,440.0,0.7382724687167708 -2002-12-16,0.0,-6.335,0.3466476851851852,137.85,280.0,0.7436850234727588 -2002-12-17,0.0,-11.870000000000001,0.3466476851851852,156.5,171.71,0.7177047606440161 -2002-12-18,0.0,-11.87,0.3461518518518519,173.37,153.42,0.7090446730344352 -2002-12-19,0.0,-10.604999999999999,0.3461518518518519,191.29,124.14,0.6960545416200639 -2002-12-20,8.77,-5.22,0.3456693287037037,142.64,270.36,0.6928070087664712 -2002-12-21,16.18,-1.39,0.3456693287037037,75.6,443.87,0.7220348044488065 -2002-12-22,0.0,-1.5799999999999998,0.3461518518518519,75.37,467.45,0.720952293497609 -2002-12-23,0.0,-2.5349999999999997,0.3461518518518519,87.96,424.16,0.7133747168392256 -2002-12-24,2.18,-7.08,0.3461518518518519,130.74,257.66,0.7090446730344352 -2002-12-25,0.0,-11.98,0.3466476851851852,174.2,159.25,0.7047146292296448 -2002-12-26,0.0,-9.665,0.3472057870370371,135.48,211.02,0.6982195635224592 -2002-12-27,0.0,-11.235,0.34771435185185184,142.7,184.99,0.6895594759128783 -2002-12-28,0.0,-11.595,0.34794849537037037,178.06,159.06,0.6830644102056928 -2002-12-29,0.0,-8.04,0.34800000000000003,139.2,240.0,0.6765693444985069 -2002-12-30,0.0,-12.364999999999998,0.3480079861111111,176.4,146.79,0.6700742787913213 -2002-12-31,1.37,-14.35,0.3484641203703704,179.67,114.35,0.6668267459377285 -2003-01-01,5.66,-6.984999999999999,0.34921886574074074,137.16,203.94,0.6624967021329381 -2003-01-02,0.0,-11.995,0.35015162037037034,170.15,154.38,0.6722393006937165 -2003-01-03,0.0,-14.09,0.35120578703703703,179.43,119.95,0.6462590378649739 -2003-01-04,0.0,-11.38,0.3519482638888889,154.68,164.01,0.6191962640850336 -2003-01-05,0.0,-8.629999999999999,0.35200787037037035,124.94,240.0,0.6062061326706623 -2003-01-06,0.0,-7.904999999999999,0.35284641203703704,130.93,240.09,0.5878034465003028 -2003-01-07,0.0,-9.775,0.3541518518518519,149.01,200.23,0.5694007603299435 -2003-01-08,0.2,-13.125,0.35571446759259256,183.48,125.21,0.545585519403596 -2003-01-09,0.0,-16.09,0.35600000000000004,182.23,114.49,0.5315128770380272 -2003-01-10,0.0,-18.04,0.3564643518518519,199.21,80.0,0.5174402346724581 -2003-01-11,0.0,-19.38,0.35815185185185183,184.03,79.96,0.501202570404494 -2003-01-12,0.0,-16.975,0.3599482638888889,161.77,120.0,0.4914599718437154 -2003-01-13,0.49,-15.47,0.36000787037037035,165.86,119.45,0.4752223075757513 -2003-01-14,2.08,-17.59,0.36121863425925926,165.77,118.14,0.4589846433077871 -2003-01-15,0.0,-21.335,0.3637142361111111,203.72,78.33,0.45140706664940383 -2003-01-16,0.0,-20.595,0.36400011574074076,182.66,80.0,0.4416644680886253 -2003-01-17,0.29,-20.509999999999998,0.36521898148148146,188.57,79.75,0.4330043804790444 -2003-01-18,0.0,-23.55,0.36771435185185186,235.56,40.0,0.4232617819182659 -2003-01-19,0.0,-18.96,0.3680083333333333,230.75,80.0,0.41027165050389464 -2003-01-20,1.0,-15.739999999999998,0.3696696759259259,206.97,119.65,0.3972815190895233 -2003-01-21,0.0,-17.695,0.3719483796296296,166.84,118.04,0.38970394243114004 -2003-01-22,0.0,-22.265,0.37211041666666667,166.99,80.0,0.37887883291916397 -2003-01-23,0.0,-19.134999999999998,0.3746479166666667,179.61,88.36,0.3615586577000021 -2003-01-24,0.0,-19.155,0.3760002314814815,205.19,80.85,0.35073354818802605 -2003-01-25,0.0,-19.009999999999998,0.3772188657407407,232.04,80.0,0.3399084386760499 -2003-01-26,0.0,-12.69,0.3799997685185186,203.42,158.14,0.3290833291640738 -2003-01-27,2.97,-14.58,0.3804640046296296,180.86,115.89,0.31717570870090006 -2003-01-28,0.0,-21.17,0.383714699074074,236.06,74.56,0.3204232415544929 -2003-01-29,0.0,-17.490000000000002,0.38400833333333334,259.67,81.26,0.3225882634568881 -2003-01-30,0.0,-15.725,0.3866476851851852,276.78,80.0,0.311763153944912 -2003-01-31,0.0,-12.1,0.38799999999999996,274.67,120.0,0.30093804443293587 -2003-02-01,0.0,-7.664999999999999,0.3901519675925926,281.22,160.3,0.28794791301856454 -2003-02-02,17.28,-5.409999999999999,0.39200034722222227,180.15,257.33,0.31501068679850486 -2003-02-03,17.79,-5.455,0.3936696759259259,139.33,299.84,0.35614610294401405 -2003-02-04,10.02,-10.649999999999999,0.39600023148148145,233.96,151.05,0.38753892052874483 -2003-02-05,13.01,-11.105,0.3972188657407407,190.27,160.0,0.4059416066991042 -2003-02-06,0.0,-17.805,0.40000023148148145,248.41,84.55,0.40269407384551137 -2003-02-07,0.0,-18.02,0.4012189814814815,288.49,80.0,0.39511649718712805 -2003-02-08,0.0,-17.634999999999998,0.40399999999999997,321.83,79.77,0.37996134387036146 -2003-02-09,0.0,-12.155,0.40521898148148144,291.35,137.82,0.364806190553595 -2003-02-10,0.0,-14.57,0.4080003472222223,335.69,80.0,0.3496510372368284 -2003-02-11,1.14,-16.08,0.40966990740740744,325.39,80.0,0.33557839487125946 -2003-02-12,0.49,-21.645,0.41200046296296294,326.57,40.0,0.325835796310481 -2003-02-13,0.0,-22.17,0.41464768518518513,304.8,41.5,0.31717570870090006 -2003-02-14,0.0,-27.185,0.4159996527777778,221.01,40.0,0.3095981320425168 -2003-02-15,0.0,-26.740000000000002,0.419205324074074,221.69,40.0,0.3020205553841335 -2003-02-16,0.0,-25.439999999999998,0.41999976851851856,274.67,40.0,0.2955254896769478 -2003-02-17,0.0,-23.685,0.42400011574074076,358.66,40.0,0.29985553348173827 -2003-02-18,0.0,-15.690000000000001,0.42400011574074076,359.31,80.05,0.29660800062814546 -2003-02-19,0.71,-10.685,0.428,346.01,139.59,0.2911954458721574 -2003-02-20,0.63,-4.875,0.42846388888888887,261.24,285.84,0.29769051157934306 -2003-02-21,0.0,-4.845,0.43200000000000005,251.66,291.31,0.29336046777455266 -2003-02-22,1.96,-10.705,0.4336695601851852,245.4,180.5,0.28794791301856454 -2003-02-23,9.99,-10.3,0.43600011574074077,165.56,202.52,0.3041855772865288 -2003-02-24,7.22,-12.424999999999999,0.4399488425925926,237.37,153.12,0.3215057525056905 -2003-02-25,0.61,-15.844999999999999,0.4400003472222222,310.65,116.63,0.31717570870090006 -2003-02-26,0.0,-21.695,0.4440001157407408,372.23,45.53,0.311763153944912 -2003-02-27,0.0,-21.09,0.4440081018518519,426.04,40.0,0.3041855772865288 -2003-02-28,0.0,-16.48,0.4480001157407407,432.83,78.17,0.29769051157934306 -2003-03-01,0.0,-13.22,0.4501516203703704,447.24,80.0,0.2911954458721574 -2003-03-02,2.6,-6.7,0.452,338.21,202.28,0.28578289111616934 -2003-03-03,5.55,-13.899999999999999,0.45599953703703705,329.87,81.23,0.2911954458721574 -2003-03-04,0.0,-20.475,0.45599953703703705,362.15,78.3,0.2825353582625765 -2003-03-05,4.56,-14.940000000000001,0.46,260.89,120.0,0.28578289111616934 -2003-03-06,5.03,-13.395,0.4604638888888889,233.21,145.81,0.28578289111616934 -2003-03-07,0.0,-16.87,0.463999537037037,452.07,80.0,0.2825353582625765 -2003-03-08,0.0,-10.075,0.46799976851851854,389.02,161.85,0.28794791301856454 -2003-03-09,6.64,-7.895,0.46799976851851854,299.8,187.01,0.28578289111616934 -2003-03-10,1.16,-17.17,0.4719996527777777,475.91,62.54,0.28794791301856454 -2003-03-11,0.0,-15.985,0.4719996527777777,424.38,82.87,0.29336046777455266 -2003-03-12,1.15,-8.56,0.4760001157407408,376.0,200.03,0.28794791301856454 -2003-03-13,0.0,-12.61,0.4800005787037037,472.12,111.34,0.2825353582625765 -2003-03-14,0.0,-16.915,0.4800005787037037,408.88,84.86,0.2825353582625765 -2003-03-15,0.0,-16.95,0.4840002314814815,498.94,80.0,0.2911954458721574 -2003-03-16,0.0,-9.225,0.4840002314814815,459.75,159.37,0.28794791301856454 -2003-03-17,4.04,-4.5200000000000005,0.48800034722222224,231.71,296.58,0.28794791301856454 -2003-03-18,0.0,-6.505,0.4919994212962963,343.37,248.02,0.28578289111616934 -2003-03-19,0.0,-9.905,0.4919994212962963,478.11,148.88,0.2825353582625765 -2003-03-20,0.0,-6.925000000000001,0.4959997685185185,524.48,157.41,0.2955254896769478 -2003-03-21,10.52,0.8599999999999999,0.4959997685185185,311.59,389.35,0.3139281758473072 -2003-03-22,3.88,1.275,0.4999997685185186,231.27,496.05,0.31934073060329526 -2003-03-23,0.56,0.8199999999999998,0.503999537037037,344.14,439.9,0.3074331101401216 -2003-03-24,0.0,-0.47499999999999964,0.503999537037037,375.03,381.88,0.2955254896769478 -2003-03-25,0.0,1.22,0.5079996527777778,293.85,491.62,0.28794791301856454 -2003-03-26,3.71,1.145,0.5079996527777778,159.41,543.9,0.2825353582625765 -2003-03-27,4.76,1.5250000000000001,0.511999537037037,193.49,526.96,0.29336046777455266 -2003-03-28,0.0,0.25,0.5159998842592592,423.26,392.71,0.3409909496272475 -2003-03-29,0.66,4.1850000000000005,0.5159998842592592,378.76,557.57,0.40702411765030183 -2003-03-30,7.77,2.465,0.520000462962963,331.89,458.42,0.4947075046973083 -2003-03-31,7.47,-3.7849999999999997,0.520000462962963,260.2,330.91,0.6029585998170693 -2003-04-01,0.45,-8.665,0.5240002314814816,426.96,204.43,0.749097578228747 -2003-04-02,0.0,-8.785,0.5279998842592593,564.04,159.74,0.8941540456892267 -2003-04-03,0.0,-6.42,0.5279998842592593,503.67,224.27,0.9969925860529997 -2003-04-04,0.0,-9.77,0.5319998842592593,511.75,159.07,1.0781809073928208 -2003-04-05,0.79,-11.670000000000002,0.5319998842592593,481.3,145.52,1.1366364987574917 -2003-04-06,3.49,-6.9399999999999995,0.5359994212962963,243.73,280.0,1.1474616082694677 -2003-04-07,0.0,-7.765000000000001,0.5395353009259259,464.4,211.13,1.1474616082694677 -2003-04-08,0.0,-7.29,0.54,559.13,194.2,1.1041611702215632 -2003-04-09,0.0,-3.905,0.5439997685185185,605.84,222.79,1.057613199320066 -2003-04-10,0.0,-0.5600000000000005,0.5439997685185185,613.37,275.34,1.0067351846137784 -2003-04-11,0.0,3.7850000000000006,0.5479999999999999,570.93,422.28,1.1041611702215632 -2003-04-12,0.0,4.7749999999999995,0.5498481481481481,570.24,452.27,1.277362922413181 -2003-04-13,0.0,1.9000000000000004,0.5520004629629629,545.46,405.06,1.4722148936287511 -2003-04-14,0.0,-2.4949999999999997,0.5559922453703704,577.52,276.74,1.5912910982604884 -2003-04-15,0.0,3.5600000000000005,0.5560002314814815,442.08,556.98,1.7753179599640823 -2003-04-16,1.2,1.02,0.56,510.79,419.21,2.035120588251509 -2003-04-17,0.0,-8.41,0.5600517361111111,584.72,180.33,2.1650219023952224 -2003-04-18,0.0,-6.215,0.5639996527777777,619.93,194.21,2.33822365458684 -2003-04-19,0.0,3.4750000000000005,0.5663305555555556,526.9,487.29,2.522250516290434 -2003-04-20,0.23,6.105,0.5679997685185185,484.47,622.79,2.7712280350658847 -2003-04-21,0.0,7.109999999999999,0.5715351851851852,513.07,624.39,3.1609319774970244 -2003-04-22,1.11,8.885,0.5719994212962963,502.85,664.9,3.9728151908952327 -2003-04-23,7.4,7.16,0.5760005787037037,304.05,745.29,5.445030084523984 -2003-04-24,6.97,3.04,0.5760005787037037,199.37,622.45,6.906419868640759 -2003-04-25,5.86,1.6849999999999998,0.5800003472222222,228.9,555.03,7.65335242496711 -2003-04-26,3.19,2.375,0.5807946759259259,418.28,485.08,7.9672806008144175 -2003-04-27,7.56,4.545,0.5840005787037037,320.85,603.1,8.324509214709629 -2003-04-28,1.22,5.055,0.5853530092592593,407.88,612.49,8.367809652757535 -2003-04-29,2.32,6.449999999999999,0.5880002314814815,467.64,634.81,8.302858995685677 -2003-04-30,0.0,3.41,0.5903311342592593,564.65,469.63,8.23790833861382 -2003-05-01,3.29,1.625,0.5920008101851852,485.77,438.89,8.097181914958131 -2003-05-02,9.8,3.045,0.5943310185185184,225.99,612.24,8.053881476910227 -2003-05-03,3.85,2.6799999999999997,0.5959997685185184,382.08,498.9,7.859029505694657 -2003-05-04,0.0,5.27,0.5987809027777777,617.98,471.13,7.588401767895255 -2003-05-05,0.0,6.555000000000001,0.5999998842592592,659.99,412.34,7.328599139607827 -2003-05-06,0.0,8.045,0.6027810185185185,592.59,550.02,7.068796511320401 -2003-05-07,16.63,7.165,0.6039996527777778,302.34,754.23,7.361074468143755 -2003-05-08,2.6,5.215,0.6063304398148148,415.63,591.85,7.231173154000042 -2003-05-09,0.0,5.665,0.6079995370370371,559.38,534.21,6.982195635224592 -2003-05-10,3.53,4.9750000000000005,0.6098476851851852,311.56,645.48,6.744043225961117 -2003-05-11,4.79,5.425000000000001,0.6120002314814815,359.72,651.62,6.538366145233571 -2003-05-12,6.94,6.875,0.6133524305555556,340.49,719.38,6.300213735970097 -2003-05-13,6.66,3.54,0.6159914351851852,232.78,644.46,6.072886436218599 -2003-05-14,3.2,5.5200000000000005,0.6162851851851852,257.46,721.02,5.8563842459790765 -2003-05-15,0.0,5.88,0.6195356481481481,566.37,584.91,5.59658161769165 -2003-05-16,0.0,7.205000000000001,0.6199998842592592,664.31,468.61,5.271828332332366 -2003-05-17,0.0,10.265,0.6227818287037037,684.1,480.16,4.947075046973083 -2003-05-18,0.0,14.155000000000001,0.6240006944444445,681.5,579.15,4.611496652101823 -2003-05-19,0.0,16.63,0.6253526620370371,670.7,690.56,4.308393585766492 -2003-05-20,0.0,17.585,0.6278895833333333,663.45,738.5,4.048590957479066 -2003-05-21,0.0,15.86,0.6280518518518519,644.87,743.65,3.7671381101676866 -2003-05-22,0.73,8.565000000000001,0.6303303240740741,612.21,559.81,3.518160591392236 -2003-05-23,0.29,9.254999999999999,0.6319916666666667,458.49,806.43,3.3016584011527144 -2003-05-24,0.0,9.625,0.6322856481481481,409.71,888.82,3.074331101401216 -2003-05-25,1.46,11.575000000000001,0.6347809027777778,488.45,860.04,2.8903042396976217 -2003-05-26,0.0,10.559999999999999,0.6360001157407408,518.39,750.93,2.6954522684820517 -2003-05-27,0.0,13.995000000000001,0.6362856481481481,538.26,862.79,2.53307562580241 -2003-05-28,0.0,12.775,0.6387810185185185,635.16,578.46,2.3923492021467205 -2003-05-29,6.76,13.604999999999999,0.6399917824074074,357.83,1033.69,2.3057483260509115 -2003-05-30,5.62,11.115,0.6400512731481481,258.35,1015.78,2.229972559467079 -2003-05-31,8.11,12.095,0.6418483796296296,291.66,1045.58,2.229972559467079 -2003-06-01,5.2,12.055,0.6435354166666667,297.27,1045.22,2.1758470119071984 -2003-06-02,9.25,10.49,0.6439998842592592,296.16,924.07,2.1758470119071984 -2003-06-03,0.0,8.435,0.6442856481481481,539.32,645.41,2.132546573859294 -2003-06-04,0.0,8.87,0.6458482638888889,619.72,510.64,2.0567708072754614 -2003-06-05,0.0,11.72,0.6471538194444444,601.43,631.55,1.9809950406916284 -2003-06-06,21.31,13.370000000000001,0.6479927083333333,367.34,998.68,2.0784210262994134 -2003-06-07,0.0,11.94,0.6480521990740741,601.61,651.27,2.132546573859294 -2003-06-08,0.0,15.490000000000002,0.6487947916666666,502.53,1038.35,2.121721464347318 -2003-06-09,2.34,15.305,0.6498487268518519,339.31,1292.06,2.121721464347318 -2003-06-10,3.22,13.5,0.6507814814814814,240.81,1212.05,2.0784210262994134 -2003-06-11,6.7,11.330000000000002,0.6515357638888889,344.39,892.76,2.045945697763485 -2003-06-12,9.72,11.975000000000001,0.6519921296296297,317.23,962.97,2.013470369227557 -2003-06-13,0.0,11.29,0.6520001157407407,571.13,662.77,1.9485197121557 -2003-06-14,7.56,12.780000000000001,0.6520517361111111,318.83,992.08,1.9160443836197718 -2003-06-15,7.19,8.735,0.6522856481481482,209.02,896.35,1.9052192741077956 -2003-06-16,2.79,9.695,0.6527943287037037,466.8,656.72,1.861918836059891 -2003-06-17,0.0,15.285,0.653352662037037,552.24,881.25,1.8077932885000105 -2003-06-18,0.0,18.77,0.653848611111111,501.64,1243.6,1.742842631428154 -2003-06-19,0.0,18.24,0.653848611111111,467.13,1313.98,1.6778919743562972 -2003-06-20,2.14,15.469999999999999,0.653848611111111,440.62,979.68,1.5912910982604884 -2003-06-21,0.0,16.3,0.6543310185185185,549.48,861.36,1.5046902221646794 -2003-06-22,0.0,19.65,0.6543310185185185,528.41,1082.87,1.4180893460688704 -2003-06-23,0.72,20.485,0.653848611111111,427.3,1451.28,1.3423135794850378 -2003-06-24,4.48,21.54,0.653848611111111,304.85,1770.46,1.277362922413181 -2003-06-25,0.0,23.655,0.653352662037037,464.12,1594.85,1.2015871558293483 -2003-06-26,0.0,25.065,0.653352662037037,436.94,1833.21,1.1366364987574917 -2003-06-27,0.0,25.6,0.6527943287037037,412.49,2021.8,1.0641082650272518 -2003-06-28,0.0,21.509999999999998,0.6522856481481482,469.17,1379.13,0.9915800312970118 -2003-06-29,0.0,18.285,0.6520517361111111,474.59,1116.48,0.9320419289811432 -2003-06-30,9.68,19.94,0.6519921296296297,268.69,1600.98,0.915804264713179 -2003-07-01,4.62,16.485,0.6518894675925926,313.29,1186.85,0.8757513595188674 -2003-07-02,5.1,15.165,0.6511538194444445,294.53,1133.34,0.8789988923724602 -2003-07-03,12.6,16.975,0.6503311342592593,269.2,1332.14,0.9309594180299455 -2003-07-04,9.11,20.285,0.6493528935185184,223.9,1762.69,0.9872499874922213 -2003-07-05,3.64,21.505,0.6482863425925927,257.65,1798.26,0.9948275641506047 -2003-07-06,0.0,19.645,0.6480008101851852,409.26,1463.6,0.9688473013218619 -2003-07-07,0.0,16.705,0.647890162037037,459.33,1120.77,0.9331244399323408 -2003-07-08,6.72,18.22,0.64678125,282.23,1410.84,0.915804264713179 -2003-07-09,8.32,16.505,0.645352199074074,297.73,1241.26,0.8681737828604842 -2003-07-10,0.0,14.055,0.6440515046296297,458.39,927.45,0.8075531695934178 -2003-07-11,1.06,15.115,0.6438894675925926,352.59,1163.68,0.7859029505694657 -2003-07-12,3.71,15.125,0.6427809027777778,196.68,1336.66,0.7750778410574897 -2003-07-13,6.04,18.285,0.6407940972222222,230.33,1562.88,0.7837379286670705 -2003-07-14,0.55,17.525,0.6399997685185186,380.05,1318.96,0.7393549796679684 -2003-07-15,0.0,18.46,0.6395354166666667,444.01,1271.35,0.710127183985633 -2003-07-16,0.0,18.98,0.6378482638888888,409.99,1390.51,0.6863119430592853 -2003-07-17,1.35,19.865,0.6360001157407408,341.31,1631.43,0.6592491692793452 -2003-07-18,1.29,18.55,0.6355359953703703,346.09,1498.62,0.6213612859874288 -2003-07-19,0.0,15.71,0.6338483796296296,401.75,1177.91,0.589968468402698 -2003-07-20,0.0,16.995,0.6319996527777777,350.6,1367.78,0.5607406727203627 -2003-07-21,12.74,17.759999999999998,0.6315355324074073,243.5,1472.49,0.5488330522571889 -2003-07-22,21.12,18.05,0.6287943287037038,188.59,1644.05,0.628938862645812 -2003-07-23,10.03,17.64,0.628,149.67,1712.4,0.7047146292296448 -2003-07-24,19.23,16.96,0.6267813657407407,110.65,1719.39,0.8605962062021009 -2003-07-25,11.34,18.9,0.624052199074074,157.09,1831.99,1.1041611702215632 -2003-07-26,5.25,19.64,0.6238902777777778,222.29,1773.32,1.1474616082694677 -2003-07-27,8.4,18.57,0.6207944444444444,190.61,1743.27,1.2990131414371333 -2003-07-28,7.41,16.355,0.6199998842592592,254.24,1435.67,1.36396379850899 -2003-07-29,0.0,15.34,0.6183303240740741,349.59,1320.14,1.3856140175329423 -2003-07-30,0.37,15.835,0.615999537037037,465.13,1136.79,1.461389784116775 -2003-07-31,12.92,17.315,0.6151532407407407,348.79,1244.95,1.6345915363083927 -2003-08-01,0.0,18.805,0.6120002314814815,457.5,1368.63,1.656241755332345 -2003-08-02,0.0,18.295,0.6115356481481482,413.49,1431.99,1.7320175219161775 -2003-08-03,0.0,19.295,0.6080510416666667,366.64,1626.68,1.6995421933802495 -2003-08-04,4.74,20.235,0.6078891203703704,293.95,1794.54,1.6887170838682732 -2003-08-05,25.22,18.52,0.6042853009259259,140.96,1846.75,2.359873873610792 -2003-08-06,14.4,18.185,0.6039916666666666,202.84,1705.68,3.1609319774970244 -2003-08-07,4.77,20.47,0.6002854166666667,216.81,1926.42,3.788788329191639 -2003-08-08,7.38,22.44,0.5999998842592592,230.35,2137.83,4.135191833574875 -2003-08-09,16.87,21.325,0.5962851851851851,266.6,1969.1,4.892949499413202 -2003-08-10,17.07,20.485,0.5959997685185184,243.69,1878.05,5.369254317940151 -2003-08-11,20.08,21.240000000000002,0.5920523148148148,222.13,2033.78,6.5708414737695 -2003-08-12,0.0,19.95,0.591992824074074,437.4,1553.15,6.81981899254495 -2003-08-13,0.0,20.08,0.5880002314814815,453.37,1490.11,6.668267459377285 -2003-08-14,0.0,18.585,0.5879922453703703,462.22,1343.87,6.224437969386264 -2003-08-15,0.0,17.1,0.5840005787037037,484.81,1127.15,5.7373080413473385 -2003-08-16,3.6,19.275,0.5835359953703704,401.15,1473.36,5.282653441844342 -2003-08-17,11.61,17.450000000000003,0.5800003472222222,310.3,1377.33,4.882124389901226 -2003-08-18,0.0,15.045000000000002,0.5787818287037036,482.49,978.78,4.394994461862301 -2003-08-19,0.0,16.405,0.5760005787037037,481.64,1040.42,4.005290519431161 -2003-08-20,0.0,19.265,0.5738478009259259,447.75,1373.84,3.658887015047926 -2003-08-21,3.68,21.055,0.5719994212962963,304.93,1752.65,3.3882592772485234 -2003-08-22,0.0,21.32,0.5680513888888888,377.85,1765.4,3.1068064299371434 -2003-08-23,0.0,15.985,0.5679997685185185,441.75,1117.3,2.825353582625765 -2003-08-24,5.26,9.605,0.5639996527777777,259.35,872.87,2.6088513923862426 -2003-08-25,0.0,8.385,0.5639916666666667,424.86,701.01,2.413999421170673 -2003-08-26,0.0,11.895,0.56,436.13,839.33,2.240797668979055 -2003-08-27,4.82,16.31,0.558330324074074,266.21,1306.61,2.110896354835342 -2003-08-28,0.46,13.845,0.5560002314814815,388.58,1049.27,1.9376946026437238 -2003-08-29,0.0,11.014999999999999,0.5520519675925926,403.73,836.89,1.8077932885000105 -2003-08-30,2.81,11.8,0.5520004629629629,297.45,959.39,1.6995421933802495 -2003-08-31,0.0,10.155000000000001,0.5479999999999999,437.15,718.79,1.5804659887485122 -2003-09-01,0.0,12.739999999999998,0.5479921296296296,406.89,918.7,1.461389784116775 -2003-09-02,0.0,10.675,0.5439997685185185,435.77,731.78,1.36396379850899 -2003-09-03,0.0,10.875,0.540794212962963,445.24,691.8,1.266537812901205 -2003-09-04,0.0,12.899999999999999,0.54,350.59,997.92,1.2015871558293483 -2003-09-05,0.4,13.885000000000002,0.5359994212962963,254.6,1231.84,1.1258113892455155 -2003-09-06,0.0,13.940000000000001,0.5359994212962963,382.68,985.51,1.048953111710485 -2003-09-07,0.0,14.075,0.5319998842592593,320.91,1120.04,0.9807549217850358 -2003-09-08,0.0,9.479999999999999,0.5298482638888888,371.68,738.41,0.915804264713179 -2003-09-09,0.0,7.94,0.5279998842592593,412.14,582.63,0.8627612281044962 -2003-09-10,0.0,10.31,0.5240002314814816,416.78,647.03,0.8097181914958131 -2003-09-11,0.0,12.315,0.5240002314814816,405.89,766.49,0.768582775350304 -2003-09-12,0.0,13.555,0.520000462962963,413.83,781.49,0.7285298701559924 -2003-09-13,0.0,16.58,0.5183310185185186,400.91,957.31,0.6982195635224592 -2003-09-14,0.0,18.13,0.5159998842592592,376.54,1163.34,0.6646617240353332 -2003-09-15,0.0,20.965,0.511999537037037,331.27,1532.78,0.6386814612065905 -2003-09-16,2.12,19.85,0.511999537037037,278.67,1533.89,0.6267738407434169 -2003-09-17,12.16,13.709999999999999,0.5079996527777778,220.82,1056.29,0.6311038845482072 -2003-09-18,0.0,13.594999999999999,0.5067805555555556,368.16,868.68,0.6018760888658717 -2003-09-19,0.0,14.370000000000001,0.503999537037037,372.08,884.92,0.5737308041347339 -2003-09-20,3.98,15.344999999999999,0.4999997685185186,208.87,1195.77,0.5629056946227577 -2003-09-21,3.36,13.795,0.4999997685185186,234.03,1037.0,0.5499155632083865 -2003-09-22,0.0,12.28,0.4959997685185185,335.3,847.62,0.5282653441844343 -2003-09-23,0.0,14.19,0.49366840277777774,225.43,1201.29,0.520687767526051 -2003-09-24,7.55,13.764999999999999,0.4919994212962963,155.3,1203.53,0.5185227456236557 -2003-09-25,0.0,13.049999999999999,0.48800034722222224,310.03,927.24,0.5033675923068892 -2003-09-26,2.54,12.32,0.48800034722222224,277.45,869.89,0.4687272418685657 -2003-09-27,2.53,14.29,0.4840002314814815,231.98,1112.0,0.45681962140539184 -2003-09-28,20.92,17.035,0.48167002314814816,140.11,1490.19,0.6029585998170693 -2003-09-29,51.14,14.13,0.4800005787037037,147.3,1236.48,2.229972559467079 -2003-09-30,0.0,10.565000000000001,0.4760001157407408,235.05,907.46,1.9593448216676759 -2003-10-01,0.0,6.26,0.4760001157407408,271.16,626.03,2.045945697763485 -2003-10-02,3.83,6.1899999999999995,0.4719996527777777,199.4,655.1,2.121721464347318 -2003-10-03,8.88,5.945,0.4701513888888889,186.38,643.19,2.14337168337127 -2003-10-04,0.0,4.39,0.46799976851851854,263.69,556.13,2.110896354835342 -2003-10-05,12.27,5.16,0.463999537037037,149.87,658.98,2.2624478880030074 -2003-10-06,0.79,5.15,0.463999537037037,191.4,659.38,2.2083223404431265 -2003-10-07,0.0,4.865,0.46,185.55,652.89,2.14337168337127 -2003-10-08,0.89,8.64,0.45920532407407405,233.9,791.43,2.0892461358113894 -2003-10-09,0.0,8.700000000000001,0.45599953703703705,299.11,661.79,1.9918201502036044 -2003-10-10,0.0,6.8100000000000005,0.45200810185185186,330.34,486.67,1.9052192741077956 -2003-10-11,0.0,11.795,0.452,330.49,631.81,1.8186183980119868 -2003-10-12,0.0,13.71,0.4480001157407407,314.03,794.86,1.742842631428154 -2003-10-13,6.16,11.825,0.4480001157407407,210.07,851.0,1.6670668648443212 -2003-10-14,0.0,8.389999999999999,0.4440001157407408,297.91,601.99,1.5912910982604884 -2003-10-15,7.37,9.17,0.44166932870370373,229.19,758.72,1.6021162077724647 -2003-10-16,18.42,6.515,0.4400003472222222,150.88,703.29,1.7320175219161775 -2003-10-17,0.0,3.8349999999999995,0.43611064814814815,194.8,588.44,1.6887170838682732 -2003-10-18,0.0,2.0,0.43600011574074077,165.99,551.23,1.656241755332345 -2003-10-19,0.0,2.15,0.43200000000000005,138.33,585.5,1.6237664267964167 -2003-10-20,0.0,1.1900000000000002,0.43194837962962956,185.08,500.56,1.5804659887485122 -2003-10-21,4.72,-1.485,0.428,175.05,393.83,1.547990660212584 -2003-10-22,4.81,-2.2600000000000002,0.4261517361111111,121.33,416.17,1.5263404411886317 -2003-10-23,7.96,-0.9249999999999999,0.42400011574074076,110.65,461.37,1.5155153316766559 -2003-10-24,8.56,-0.20499999999999996,0.42121863425925926,68.93,533.65,1.537165550700608 -2003-10-25,0.0,-0.7700000000000002,0.41999976851851856,197.53,433.0,1.5155153316766559 -2003-10-26,2.72,2.76,0.4164640046296296,189.91,544.86,1.5155153316766559 -2003-10-27,22.06,7.0,0.4159996527777778,122.7,784.0,1.9268694931317478 -2003-10-28,19.79,7.365,0.4121109953703704,161.21,711.4,2.6088513923862426 -2003-10-29,20.36,5.815,0.41200046296296294,163.12,624.98,3.399084386760499 -2003-10-30,26.36,8.625,0.4080084490740741,146.52,798.8,5.022850813556915 -2003-10-31,0.0,4.6,0.40794895833333333,198.07,596.67,5.358429208428175 -2003-11-01,4.83,8.09,0.40399999999999997,168.81,696.75,5.520805851107817 -2003-11-02,0.0,3.5249999999999995,0.4037145833333334,224.65,497.12,5.423379865500032 -2003-11-03,0.0,-0.6499999999999999,0.40000023148148145,160.91,440.73,5.206877675260509 -2003-11-04,0.0,-1.745,0.39971435185185183,143.57,425.0,4.914599718437154 -2003-11-05,6.67,-0.8749999999999998,0.3960082175925926,118.17,432.85,4.708922637709608 -2003-11-06,2.15,1.175,0.39571446759259266,142.22,501.02,4.438294899910206 -2003-11-07,0.0,-0.17000000000000015,0.3921108796296296,155.32,456.98,4.200142490646731 -2003-11-08,0.0,-3.4450000000000003,0.3919487268518519,196.18,312.13,3.9186896433353517 -2003-11-09,0.0,-6.53,0.3884644675925926,139.92,289.69,3.6372367960239735 -2003-11-10,0.0,-4.76,0.38799999999999996,177.14,311.81,3.409909496272475 -2003-11-11,0.0,-0.8499999999999999,0.3848466435185185,175.2,429.98,3.1934073060329524 -2003-11-12,4.08,1.5000000000000002,0.3840003472222222,118.01,520.35,3.0202055538413353 -2003-11-13,11.74,0.9750000000000001,0.38166932870370374,100.45,526.84,3.0635059918892393 -2003-11-14,17.31,-1.0100000000000002,0.3799997685185186,71.73,491.64,3.1501068679850484 -2003-11-15,0.04,-2.665,0.37920590277777777,83.0,443.75,3.085156210913192 -2003-11-16,0.0,-3.46,0.37611087962962964,128.97,388.55,3.0202055538413353 -2003-11-17,0.0,-5.995,0.3759486111111111,190.32,264.59,2.9336046777455267 -2003-11-18,0.0,-4.38,0.37321898148148147,209.33,258.19,2.8145284731137887 -2003-11-19,0.0,0.46999999999999975,0.3719998842592593,199.79,386.72,2.7604029255539086 -2003-11-20,14.91,7.404999999999999,0.37120578703703705,124.23,737.81,2.9552548967694783 -2003-11-21,11.94,3.795,0.3684645833333333,100.51,624.37,3.215057525056905 -2003-11-22,0.0,0.76,0.3680003472222222,155.03,475.54,3.3016584011527144 -2003-11-23,0.0,-1.045,0.36615196759259255,175.59,371.74,3.3449588392006184 -2003-11-24,0.0,-0.7899999999999996,0.3644642361111111,165.11,395.24,3.3449588392006184 -2003-11-25,2.01,-0.6599999999999999,0.36400011574074076,125.56,439.97,3.2691830726167854 -2003-11-26,0.0,-2.855,0.3621513888888889,149.52,355.1,3.1501068679850484 -2003-11-27,0.0,-1.925,0.3604638888888889,171.63,346.45,3.0202055538413353 -2003-11-28,16.1,0.31000000000000005,0.3599998842592593,110.26,451.49,2.9444297872575023 -2003-11-29,26.7,3.88,0.35920578703703704,127.12,516.69,3.745487891143735 -2003-11-30,2.46,-0.20000000000000018,0.3572189814814815,166.58,365.82,3.9836403004072087 -2003-12-01,2.83,-2.625,0.35611041666666665,123.41,371.93,4.102716505038946 -2003-12-02,2.11,-7.24,0.3559483796296296,166.47,238.76,4.113541614550923 -2003-12-03,0.0,-10.83,0.3546476851851852,92.38,226.56,3.9728151908952327 -2003-12-04,0.0,-12.205,0.35321898148148145,121.17,193.58,3.799613438703615 -2003-12-05,0.0,-13.745000000000001,0.35211030092592593,141.76,156.29,3.593936357976069 -2003-12-06,0.0,-14.94,0.35199988425925927,186.67,114.69,3.3774341677365465 -2003-12-07,10.24,-10.75,0.35171423611111113,125.28,195.6,3.2367077440808574 -2003-12-08,9.42,-7.43,0.3506474537037037,87.9,274.07,3.1392817584730723 -2003-12-09,0.0,-11.31,0.34966921296296294,193.6,144.97,2.9444297872575023 -2003-12-10,0.0,-12.745000000000001,0.3488465277777778,198.95,113.98,2.7820531445778607 -2003-12-11,0.0,-6.27,0.3481105324074074,185.57,220.59,2.6738020494580996 -2003-12-12,8.96,-1.6700000000000002,0.3480079861111111,123.81,355.84,2.7820531445778607 -2003-12-13,0.0,-10.229999999999999,0.34794849537037037,175.32,172.79,2.641326720922171 -2003-12-14,0.0,-14.765,0.34771435185185184,163.54,122.16,2.5114254067784576 -2003-12-15,26.17,-11.28,0.3472057870370371,117.72,170.54,2.4897751877545056 -2003-12-16,19.27,-7.459999999999999,0.3466476851851852,88.22,266.38,2.522250516290434 -2003-12-17,1.35,-5.944999999999999,0.3466476851851852,163.11,244.82,2.446474749706601 -2003-12-18,13.81,-1.08,0.3461518518518519,131.48,350.51,2.554725844826362 -2003-12-19,1.74,-5.545,0.3461518518518519,156.59,263.2,2.554725844826362 -2003-12-20,0.0,-12.795000000000002,0.3456693287037037,170.35,149.98,2.5006002972664816 -2003-12-21,0.0,-13.370000000000001,0.3456693287037037,155.99,154.4,2.4789500782425296 -2003-12-22,1.31,-13.195,0.3461518518518519,162.41,143.45,2.413999421170673 -2003-12-23,1.24,-7.345000000000001,0.3461518518518519,157.25,240.4,2.3923492021467205 -2003-12-24,2.62,-0.5500000000000003,0.3461518518518519,111.24,449.05,2.359873873610792 -2003-12-25,9.62,4.0649999999999995,0.3466476851851852,90.38,629.49,2.446474749706601 -2003-12-26,6.35,1.3350000000000002,0.3472057870370371,88.34,526.38,2.7712280350658847 -2003-12-27,2.09,-4.029999999999999,0.34771435185185184,99.44,358.26,2.8470038016497177 -2003-12-28,0.0,-7.154999999999999,0.34794849537037037,174.26,226.07,2.92277956823355 -2003-12-29,0.0,-3.795,0.34800000000000003,192.48,257.84,2.9877302253054068 -2003-12-30,2.93,-0.41500000000000004,0.3480079861111111,137.06,399.75,3.0635059918892393 -2003-12-31,4.51,-3.105,0.3484641203703704,98.97,365.57,3.095981320425168 -2004-01-01,0.0,-8.64,0.34921886574074074,119.27,246.88,3.009380444329359 -2004-01-02,0.0,-12.459999999999999,0.35015162037037034,174.07,150.06,2.92277956823355 -2004-01-03,2.58,-10.335,0.35120578703703703,151.76,164.99,2.8578289111616932 -2004-01-04,2.21,-4.47,0.3519482638888889,160.33,277.73,2.7928782540898367 -2004-01-05,0.0,-9.290000000000001,0.35200787037037035,188.3,188.85,2.641326720922171 -2004-01-06,3.31,-11.985,0.35284641203703704,88.91,200.0,2.5114254067784576 -2004-01-07,0.0,-16.375,0.3541518518518519,188.2,110.45,2.33822365458684 -2004-01-08,0.0,-21.805,0.35571446759259256,174.03,76.18,2.1866721214191744 -2004-01-09,0.0,-25.494999999999997,0.35600000000000004,148.3,48.07,2.0567708072754614 -2004-01-10,0.0,-25.235,0.3564643518518519,164.96,41.32,1.9160443836197718 -2004-01-11,0.0,-24.104999999999997,0.35815185185185183,188.07,40.22,1.8077932885000105 -2004-01-12,0.0,-21.53,0.3599482638888889,202.0,77.75,1.7103673028922255 -2004-01-13,1.76,-19.564999999999998,0.36000787037037035,207.68,80.0,1.6021162077724647 -2004-01-14,0.39,-24.87,0.36121863425925926,197.4,40.0,1.5155153316766559 -2004-01-15,0.0,-28.130000000000003,0.3637142361111111,140.57,40.0,1.4289144555808466 -2004-01-16,0.0,-21.7,0.36400011574074076,246.01,40.0,1.3531386889970138 -2004-01-17,0.0,-12.07,0.36521898148148146,236.21,126.37,1.2881880319251573 -2004-01-18,4.41,-11.204999999999998,0.36771435185185186,211.99,148.88,1.2232373748533005 -2004-01-19,17.31,-8.92,0.3680083333333333,126.94,223.52,1.16911182729342 -2004-01-20,5.08,-8.584999999999999,0.3696696759259259,93.31,257.26,1.1149862797335395 -2004-01-21,0.0,-13.825,0.3719483796296296,209.77,138.99,1.0738508635880302 -2004-01-22,0.78,-17.47,0.37211041666666667,243.0,80.0,1.0337979583937187 -2004-01-23,0.0,-17.005,0.3746479166666667,202.15,120.0,0.9915800312970118 -2004-01-24,0.0,-21.175,0.3760002314814815,171.86,80.0,0.9580221918098859 -2004-01-25,0.0,-24.605,0.3772188657407407,187.22,50.38,0.9255468632739575 -2004-01-26,0.0,-26.395,0.3799997685185186,229.01,40.0,0.8974015785428197 -2004-01-27,0.0,-23.61,0.3804640046296296,260.57,40.67,0.8638437390556937 -2004-01-28,0.0,-18.605,0.383714699074074,266.86,81.0,0.8367809652757534 -2004-01-29,0.0,-16.06,0.38400833333333334,223.37,120.38,0.8064706586422203 -2004-01-30,0.0,-14.82,0.3866476851851852,170.4,153.64,0.7794078848622801 -2004-01-31,0.0,-15.21,0.38799999999999996,214.16,120.14,0.7534276220335374 -2004-02-01,0.0,-10.71,0.3901519675925926,239.38,172.34,0.7317774030095852 -2004-02-02,0.0,-6.635,0.39200034722222227,224.88,263.0,0.7090446730344352 -2004-02-03,0.0,-9.18,0.3936696759259259,310.87,131.74,0.6895594759128783 -2004-02-04,5.12,-5.51,0.39600023148148145,207.69,246.82,0.667909256888926 -2004-02-05,0.0,-11.54,0.3972188657407407,272.16,159.99,0.6473415488161715 -2004-02-06,5.68,-13.265,0.40000023148148145,184.88,153.18,0.6267738407434169 -2004-02-07,5.03,-10.175,0.4012189814814815,147.26,203.3,0.6105361764754527 -2004-02-08,3.19,-13.704999999999998,0.40399999999999997,192.21,149.17,0.5910509793538956 -2004-02-09,0.0,-15.26,0.40521898148148144,317.21,98.27,0.5758958260371291 -2004-02-10,0.0,-3.9699999999999998,0.4080003472222223,213.35,332.94,0.5596581617691649 -2004-02-11,2.92,-5.83,0.40966990740740744,231.6,262.88,0.5445030084523984 -2004-02-12,0.0,-12.614999999999998,0.41200046296296294,322.3,120.02,0.5315128770380272 -2004-02-13,0.0,-11.725000000000001,0.41464768518518513,313.78,150.43,0.5174402346724581 -2004-02-14,1.84,-9.684999999999999,0.4159996527777778,316.49,167.35,0.5044501032580868 -2004-02-15,0.0,-24.965,0.419205324074074,336.93,40.0,0.4925424827949131 -2004-02-16,0.0,-24.665,0.41999976851851856,351.45,40.0,0.4806348623317393 -2004-02-17,0.0,-22.345,0.42400011574074076,385.88,40.0,0.47197477472215843 -2004-02-18,0.0,-13.315,0.42400011574074076,367.84,110.46,0.4611496652101823 -2004-02-19,0.0,-10.115,0.428,365.66,144.6,0.45248957760060143 -2004-02-20,0.0,-8.944999999999999,0.42846388888888887,359.3,167.38,0.44382948999102056 -2004-02-21,0.0,-8.465,0.43200000000000005,344.56,188.68,0.4340868914302421 -2004-02-22,1.67,-7.29,0.4336695601851852,208.67,262.4,0.42650931477185877 -2004-02-23,0.0,-6.655,0.43600011574074077,245.64,280.0,0.4189317381134755 -2004-02-24,0.0,-8.8,0.4399488425925926,333.84,195.31,0.41243667240628984 -2004-02-25,0.0,-9.33,0.4400003472222222,363.16,167.47,0.4037765847967089 -2004-02-26,0.0,-10.62,0.4440001157407408,335.12,162.73,0.39836403004072096 -2004-02-27,0.0,-12.0,0.4440081018518519,361.67,141.51,0.3907864533823376 -2004-02-28,0.0,-10.125,0.4480001157407407,397.43,151.69,0.3853738986263496 -2004-02-29,0.0,-9.905000000000001,0.4501516203703704,432.34,122.29,0.37996134387036146 -2004-03-01,0.0,-4.609999999999999,0.452,395.59,236.55,0.37563130006557105 -2004-03-02,0.33,-0.34499999999999975,0.45599953703703705,320.68,395.53,0.37238376721197824 -2004-03-03,3.06,1.0449999999999997,0.45599953703703705,201.74,503.76,0.37238376721197824 -2004-03-04,0.0,-2.58,0.46,324.66,335.53,0.37238376721197824 -2004-03-05,4.15,-3.7499999999999996,0.4604638888888889,315.08,299.8,0.39836403004072096 -2004-03-06,12.84,-2.445,0.463999537037037,200.21,376.1,0.4546545995029967 -2004-03-07,0.29,-3.9499999999999997,0.46799976851851854,268.81,337.74,0.4860474170877274 -2004-03-08,0.0,-9.36,0.46799976851851854,411.3,170.7,0.4806348623317393 -2004-03-09,0.0,-8.85,0.4719996527777777,402.44,196.92,0.47413979662455363 -2004-03-10,0.0,-9.605,0.4719996527777777,482.2,120.06,0.4687272418685657 -2004-03-11,0.0,-4.790000000000001,0.4760001157407408,486.44,189.3,0.4611496652101823 -2004-03-12,0.0,-2.755,0.4800005787037037,401.55,297.34,0.45248957760060143 -2004-03-13,2.28,-4.87,0.4800005787037037,205.91,335.47,0.4449120009422182 -2004-03-14,0.0,-8.665,0.4840002314814815,436.47,176.08,0.44058195713742776 -2004-03-15,2.8,-4.92,0.4840002314814815,335.36,258.69,0.4340868914302421 -2004-03-16,0.0,-7.66,0.48800034722222224,414.12,207.74,0.42650931477185877 -2004-03-17,0.0,-11.104999999999999,0.4919994212962963,375.64,166.36,0.4189317381134755 -2004-03-18,0.0,-12.955,0.4919994212962963,496.33,120.0,0.4113541614550923 -2004-03-19,0.0,-11.395,0.4959997685185185,525.03,120.0,0.4059416066991042 -2004-03-20,0.0,-9.245000000000001,0.4959997685185185,524.89,135.48,0.4016115628943137 -2004-03-21,2.0,-4.915,0.4999997685185186,421.89,265.34,0.39836403004072096 -2004-03-22,0.0,-9.1,0.503999537037037,431.11,191.3,0.39403398623593044 -2004-03-23,0.0,-13.995000000000001,0.503999537037037,509.0,119.96,0.38970394243114004 -2004-03-24,0.0,-7.66,0.5079996527777778,489.47,186.13,0.3832088767239544 -2004-03-25,0.29,-1.42,0.5079996527777778,432.99,324.28,0.3821263657727567 -2004-03-26,6.28,3.2699999999999996,0.511999537037037,231.7,579.77,0.3821263657727567 -2004-03-27,11.98,3.7199999999999998,0.5159998842592592,192.53,631.42,0.40918913955269703 -2004-03-28,0.0,-0.43500000000000005,0.5159998842592592,420.99,380.5,0.44382948999102056 -2004-03-29,0.0,0.2599999999999998,0.520000462962963,496.96,335.65,0.48496490613652976 -2004-03-30,0.0,3.2150000000000003,0.520000462962963,531.1,355.51,0.5380079427452128 -2004-03-31,0.0,3.925,0.5240002314814816,541.65,356.7,0.6202787750362311 -2004-04-01,0.0,3.905,0.5279998842592593,403.21,533.12,0.7198697825464114 -2004-04-02,2.57,3.665,0.5279998842592593,326.55,554.02,0.848688585738927 -2004-04-03,4.25,2.955,0.5319998842592593,220.18,588.86,1.080345929295216 -2004-04-04,1.08,1.725,0.5319998842592593,212.5,587.02,1.2557127033892288 -2004-04-05,4.2,-0.8300000000000001,0.5359994212962963,195.64,463.5,1.4722148936287511 -2004-04-06,4.36,-2.7,0.5395353009259259,177.77,419.55,1.656241755332345 -2004-04-07,0.0,-1.13,0.54,267.83,456.49,1.7861430694760585 -2004-04-08,0.0,2.1100000000000003,0.5439997685185185,387.95,514.04,1.9160443836197718 -2004-04-09,0.0,1.4649999999999999,0.5439997685185185,516.53,381.58,2.024295478739533 -2004-04-10,0.0,-0.2200000000000002,0.5479999999999999,480.1,380.57,2.110896354835342 -2004-04-11,0.0,-0.4049999999999998,0.5498481481481481,475.11,383.47,2.1758470119071984 -2004-04-12,0.0,-0.2200000000000002,0.5520004629629629,498.53,367.92,2.229972559467079 -2004-04-13,10.87,1.335,0.5559922453703704,419.7,423.2,2.2732729975149835 -2004-04-14,16.14,4.935,0.5560002314814815,354.25,593.67,2.825353582625765 -2004-04-15,5.95,3.155,0.56,301.71,571.22,3.3449588392006184 -2004-04-16,0.0,1.5099999999999998,0.5600517361111111,517.68,429.33,3.745487891143735 -2004-04-17,1.01,2.4650000000000003,0.5639996527777777,586.08,351.71,4.070241176503018 -2004-04-18,7.51,4.76,0.5663305555555556,440.81,489.46,4.503245556982062 -2004-04-19,11.19,6.8,0.5679997685185185,431.64,568.03,5.206877675260509 -2004-04-20,3.51,7.58,0.5715351851851852,475.13,553.39,6.278563516946145 -2004-04-21,0.0,2.0949999999999998,0.5719994212962963,603.57,360.06,6.711567897425189 -2004-04-22,1.0,7.26,0.5760005787037037,606.28,480.23,6.776518554497047 -2004-04-23,0.0,5.63,0.5760005787037037,634.04,388.2,6.657442349865308 -2004-04-24,0.66,1.685,0.5800003472222222,527.17,416.06,6.419289940601834 -2004-04-25,1.23,-1.3049999999999997,0.5807946759259259,571.82,282.16,6.127011983778479 -2004-04-26,2.09,0.27500000000000036,0.5840005787037037,426.93,425.87,5.769783369883268 -2004-04-27,4.24,3.59,0.5853530092592593,229.95,638.83,5.4017296464760785 -2004-04-28,0.26,4.705,0.5880002314814815,527.62,523.82,5.1202767991647 -2004-04-29,0.0,3.1950000000000003,0.5903311342592593,627.07,367.11,4.817173732829369 -2004-04-30,0.0,11.69,0.5920008101851852,661.15,478.59,4.524895776006015 -2004-05-01,0.0,16.545,0.5943310185185184,643.81,673.11,4.297568476254516 -2004-05-02,0.0,18.18,0.5959997685185184,611.13,845.79,4.113541614550923 -2004-05-03,3.13,16.105,0.5987809027777777,487.5,1007.71,3.9511649718712807 -2004-05-04,13.67,7.885,0.5999998842592592,354.54,729.71,4.026940738455114 -2004-05-05,2.69,3.34,0.6027810185185185,456.35,502.88,4.026940738455114 -2004-05-06,0.25,6.77,0.6039996527777778,515.33,593.2,3.8970394243114 -2004-05-07,3.24,5.8549999999999995,0.6063304398148148,334.97,661.4,3.723837672119782 -2004-05-08,0.0,3.5649999999999995,0.6079995370370371,498.87,494.85,3.518160591392236 -2004-05-09,0.0,6.43,0.6098476851851852,569.83,490.47,3.3016584011527144 -2004-05-10,0.08,7.359999999999999,0.6120002314814815,652.07,366.22,3.095981320425168 -2004-05-11,0.0,9.879999999999999,0.6133524305555556,577.44,569.39,2.8903042396976217 -2004-05-12,0.0,7.175,0.6159914351851852,533.1,541.83,2.6954522684820517 -2004-05-13,0.82,7.1,0.6162851851851852,410.78,677.31,2.522250516290434 -2004-05-14,6.04,8.31,0.6195356481481481,286.21,799.52,2.413999421170673 -2004-05-15,1.2,14.725,0.6199998842592592,542.02,745.82,2.2732729975149835 -2004-05-16,3.83,13.045,0.6227818287037037,457.47,750.04,2.14337168337127 -2004-05-17,0.0,11.27,0.6240006944444445,554.65,654.86,2.035120588251509 -2004-05-18,2.99,12.3,0.6253526620370371,416.79,896.04,1.9701699311796523 -2004-05-19,7.3,11.06,0.6278895833333333,384.62,845.26,1.9160443836197718 -2004-05-20,0.0,10.745,0.6280518518518519,616.14,519.48,1.8186183980119868 -2004-05-21,2.33,11.739999999999998,0.6303303240740741,477.31,763.48,1.7211924124042017 -2004-05-22,0.0,7.835000000000001,0.6319916666666667,575.0,512.95,1.6237664267964167 -2004-05-23,0.0,10.355,0.6322856481481481,555.73,625.15,1.547990660212584 -2004-05-24,1.74,8.92,0.6347809027777778,471.43,651.68,1.461389784116775 -2004-05-25,10.18,8.115,0.6360001157407408,278.83,794.71,1.461389784116775 -2004-05-26,4.34,6.705,0.6362856481481481,188.78,798.77,1.4397395650928229 -2004-05-27,6.72,8.24,0.6387810185185185,233.93,840.83,1.461389784116775 -2004-05-28,2.14,11.515,0.6399917824074074,317.67,999.03,1.461389784116775 -2004-05-29,3.16,7.36,0.6400512731481481,218.33,810.23,1.3964391270449183 -2004-05-30,0.0,6.4350000000000005,0.6418483796296296,282.79,773.54,1.3423135794850378 -2004-05-31,0.0,7.970000000000001,0.6435354166666667,514.88,660.08,1.3098382509491096 -2004-06-01,1.44,9.455,0.6439998842592592,506.63,720.09,1.266537812901205 -2004-06-02,8.83,8.27,0.6442856481481481,166.2,920.0,1.277362922413181 -2004-06-03,10.37,7.745,0.6458482638888889,173.25,905.88,1.3423135794850378 -2004-06-04,2.66,8.825,0.6471538194444444,353.07,811.36,1.2990131414371333 -2004-06-05,0.0,9.56,0.6479927083333333,581.17,607.77,1.2881880319251573 -2004-06-06,0.0,13.285,0.6480521990740741,563.66,777.27,1.266537812901205 -2004-06-07,3.38,12.895,0.6487947916666666,315.95,1051.37,1.2557127033892288 -2004-06-08,2.56,13.959999999999999,0.6498487268518519,411.57,1031.91,1.2340624843652768 -2004-06-09,0.0,17.79,0.6507814814814814,500.99,1182.91,1.2015871558293483 -2004-06-10,0.0,12.895000000000001,0.6515357638888889,555.06,746.04,1.1366364987574917 -2004-06-11,0.0,8.834999999999999,0.6519921296296297,499.69,691.14,1.0781809073928208 -2004-06-12,0.0,9.645,0.6520001157407407,518.85,682.3,1.0359629802961139 -2004-06-13,0.0,11.945,0.6520517361111111,560.45,646.16,1.0034876517601854 -2004-06-14,0.0,16.04,0.6522856481481482,463.15,1115.95,0.9612697246634786 -2004-06-15,7.65,17.625,0.6527943287037037,281.29,1443.63,0.9342069508835384 -2004-06-16,6.42,15.579999999999998,0.653352662037037,399.93,1081.48,0.9125567318595862 -2004-06-17,0.0,14.995000000000001,0.653848611111111,498.03,959.76,0.8725038266652746 -2004-06-18,0.0,16.015,0.653848611111111,478.78,1066.75,0.8389459871781486 -2004-06-19,17.57,13.505,0.653848611111111,320.34,1042.42,0.8757513595188674 -2004-06-20,10.21,9.465,0.6543310185185185,356.55,724.1,0.9060616661524006 -2004-06-21,3.14,12.265,0.6543310185185185,336.17,969.09,0.9082266880547958 -2004-06-22,6.59,14.780000000000001,0.653848611111111,312.07,1164.33,0.9093091990059934 -2004-06-23,10.66,13.74,0.653848611111111,267.93,1172.47,1.0045701627113832 -2004-06-24,3.57,13.204999999999998,0.653352662037037,258.74,1180.73,1.0218903379305448 -2004-06-25,4.31,14.235,0.653352662037037,274.23,1197.87,1.0348804693449163 -2004-06-26,0.01,11.850000000000001,0.6527943287037037,502.97,793.83,1.0175602941257544 -2004-06-27,0.43,13.82,0.6522856481481482,433.64,1028.39,0.9926625422482094 -2004-06-28,3.8,12.355,0.6520517361111111,361.14,884.33,0.9591047027610835 -2004-06-29,4.85,12.815000000000001,0.6519921296296297,409.85,842.75,0.9190517975667719 -2004-06-30,14.9,15.325000000000001,0.6518894675925926,302.05,1191.23,1.0825109511976112 -2004-07-01,3.21,15.165,0.6511538194444445,350.52,1082.4,1.1258113892455155 -2004-07-02,9.97,16.805,0.6503311342592593,305.85,1283.34,1.2232373748533005 -2004-07-03,3.81,16.314999999999998,0.6493528935185184,290.97,1274.51,1.2124122653413245 -2004-07-04,0.0,16.625,0.6482863425925927,440.49,1190.7,1.2232373748533005 -2004-07-05,0.0,18.68,0.6480008101851852,389.67,1448.82,1.2340624843652768 -2004-07-06,1.5,17.33,0.647890162037037,363.04,1396.86,1.2015871558293483 -2004-07-07,0.0,14.86,0.64678125,492.97,921.59,1.158286717781444 -2004-07-08,9.57,16.885,0.645352199074074,317.59,1333.65,1.158286717781444 -2004-07-09,20.23,16.03,0.6440515046296297,124.72,1585.02,1.7103673028922255 -2004-07-10,13.43,14.555,0.6438894675925926,202.9,1317.36,1.8835690550838433 -2004-07-11,4.13,14.274999999999999,0.6427809027777778,316.07,1112.34,1.8727439455718675 -2004-07-12,0.0,17.815,0.6407940972222222,491.72,1155.48,1.8727439455718675 -2004-07-13,1.29,18.575,0.6399997685185186,435.57,1373.24,1.8727439455718675 -2004-07-14,0.0,17.56,0.6395354166666667,372.48,1417.57,1.8077932885000105 -2004-07-15,5.93,16.634999999999998,0.6378482638888888,153.52,1600.0,1.7969681789880345 -2004-07-16,6.13,16.925,0.6360001157407408,153.76,1627.0,1.8402686170359388 -2004-07-17,5.14,19.69,0.6355359953703703,336.73,1638.5,1.7753179599640823 -2004-07-18,0.0,19.615,0.6338483796296296,443.87,1463.22,1.6995421933802495 -2004-07-19,7.87,19.94,0.6319996527777777,299.65,1708.39,1.6454166458203692 -2004-07-20,1.72,20.080000000000002,0.6315355324074073,318.44,1757.43,1.5912910982604884 -2004-07-21,1.05,20.17,0.6287943287037038,415.23,1560.62,1.5263404411886317 -2004-07-22,0.0,21.355,0.628,442.83,1621.99,1.4505646746047989 -2004-07-23,14.73,20.205000000000002,0.6267813657407407,308.42,1598.12,1.4072642365568944 -2004-07-24,20.03,15.41,0.624052199074074,322.04,1162.8,1.3856140175329423 -2004-07-25,0.0,14.035,0.6238902777777778,468.06,964.46,1.2881880319251573 -2004-07-26,0.0,15.110000000000001,0.6207944444444444,491.23,962.78,1.2124122653413245 -2004-07-27,0.0,16.455,0.6199998842592592,472.89,1112.49,1.1366364987574917 -2004-07-28,0.0,18.45,0.6183303240740741,404.34,1424.61,1.071685841685635 -2004-07-29,0.25,19.490000000000002,0.615999537037037,381.61,1580.24,1.0316329364913235 -2004-07-30,2.32,20.62,0.6151532407407407,347.76,1591.52,0.9969925860529997 -2004-07-31,14.03,21.735,0.6120002314814815,264.21,1879.65,0.9558571699074907 -2004-08-01,13.81,21.57,0.6115356481481482,227.9,1972.62,1.1149862797335395 -2004-08-02,0.0,19.244999999999997,0.6080510416666667,451.67,1368.57,1.0933360607095872 -2004-08-03,0.0,19.630000000000003,0.6078891203703704,396.74,1562.24,1.0825109511976112 -2004-08-04,0.0,17.15,0.6042853009259259,438.49,1251.34,1.0500356226616827 -2004-08-05,0.0,14.579999999999998,0.6039916666666666,415.92,1106.4,1.0143127612721616 -2004-08-06,0.68,13.950000000000001,0.6002854166666667,419.49,1044.12,0.9688473013218619 -2004-08-07,2.63,14.715,0.5999998842592592,323.36,1203.11,0.9168867756643766 -2004-08-08,5.73,14.87,0.5962851851851851,272.62,1215.72,0.8995666004452149 -2004-08-09,4.66,15.515,0.5959997685185184,326.58,1140.32,0.8800814033236579 -2004-08-10,0.0,17.795,0.5920523148148148,440.35,1257.39,0.837863476226951 -2004-08-11,11.03,18.810000000000002,0.591992824074074,276.42,1506.99,0.915804264713179 -2004-08-12,14.79,19.93,0.5880002314814815,191.44,1853.47,0.9753423670290476 -2004-08-13,45.75,19.265,0.5879922453703703,168.52,1831.28,2.6954522684820517 -2004-08-14,38.42,19.465,0.5840005787037037,180.26,1832.04,3.886214314799424 -2004-08-15,0.0,15.969999999999999,0.5835359953703704,397.32,1222.75,4.03776584796709 -2004-08-16,0.0,15.725,0.5800003472222222,428.41,1124.07,4.081066286014994 -2004-08-17,0.0,17.205,0.5787818287037036,414.56,1262.6,3.9619900813832567 -2004-08-18,0.0,17.405,0.5760005787037037,423.76,1242.54,3.745487891143735 -2004-08-19,1.66,17.655,0.5738478009259259,338.07,1412.8,3.528985700904212 -2004-08-20,2.76,17.255000000000003,0.5719994212962963,311.32,1372.61,3.2583579631048094 -2004-08-21,5.95,16.015,0.5680513888888888,256.47,1364.25,2.998555334817383 -2004-08-22,0.0,11.985000000000001,0.5679997685185185,397.43,918.64,2.7820531445778607 -2004-08-23,0.44,13.690000000000001,0.5639996527777777,405.85,999.38,2.5763760638503146 -2004-08-24,1.9,11.674999999999999,0.5639916666666667,354.08,864.67,2.3706989831227685 -2004-08-25,0.0,11.075000000000001,0.56,453.54,740.65,2.1866721214191744 -2004-08-26,0.0,14.155000000000001,0.558330324074074,455.11,882.96,2.045945697763485 -2004-08-27,0.0,17.880000000000003,0.5560002314814815,413.14,1258.55,1.9160443836197718 -2004-08-28,0.0,20.25,0.5520519675925926,372.48,1563.09,1.7753179599640823 -2004-08-29,1.42,19.115000000000002,0.5520004629629629,346.72,1465.77,1.656241755332345 -2004-08-30,8.86,16.384999999999998,0.5479999999999999,172.44,1491.02,1.5804659887485122 -2004-08-31,16.7,14.84,0.5479921296296296,159.26,1381.98,1.5804659887485122 -2004-09-01,2.03,13.334999999999999,0.5439997685185185,332.64,1087.5,1.4830400031407271 -2004-09-02,0.0,9.57,0.540794212962963,416.28,715.51,1.36396379850899 -2004-09-03,8.26,10.045,0.54,275.04,813.22,1.3098382509491096 -2004-09-04,9.56,11.57,0.5359994212962963,269.48,911.89,1.2557127033892288 -2004-09-05,0.0,9.219999999999999,0.5359994212962963,416.05,683.59,1.16911182729342 -2004-09-06,0.0,12.114999999999998,0.5319998842592593,401.91,846.19,1.0933360607095872 -2004-09-07,0.0,15.68,0.5298482638888888,382.44,1113.47,1.040293024100904 -2004-09-08,5.21,15.725000000000001,0.5279998842592593,239.59,1262.49,0.9948275641506047 -2004-09-09,27.25,12.325000000000001,0.5240002314814816,264.02,1009.99,1.0424580460032995 -2004-09-10,35.72,12.28,0.5240002314814816,206.41,1075.35,1.8835690550838433 -2004-09-11,5.18,10.735,0.520000462962963,317.66,781.57,2.1000712453233654 -2004-09-12,1.45,14.225,0.5183310185185186,368.19,926.3,2.219147449955103 -2004-09-13,1.37,10.834999999999999,0.5159998842592592,356.99,755.13,2.2732729975149835 -2004-09-14,0.0,7.699999999999999,0.511999537037037,399.82,572.56,2.251622778491031 -2004-09-15,0.0,12.680000000000001,0.511999537037037,402.18,763.27,2.1974972309311505 -2004-09-16,0.0,16.82,0.5079996527777778,341.43,1209.97,2.121721464347318 -2004-09-17,0.0,17.7,0.5067805555555556,286.95,1406.81,2.024295478739533 -2004-09-18,0.0,12.649999999999999,0.503999537037037,303.47,990.53,1.9052192741077956 -2004-09-19,0.0,7.765000000000001,0.4999997685185186,190.01,850.07,1.7753179599640823 -2004-09-20,0.0,7.325,0.4999997685185186,322.04,649.39,1.6887170838682732 -2004-09-21,0.0,8.135,0.4959997685185185,349.64,640.36,1.5912910982604884 -2004-09-22,0.0,10.135,0.49366840277777774,308.63,800.87,1.5155153316766559 -2004-09-23,0.0,10.685,0.4919994212962963,333.57,786.96,1.4289144555808466 -2004-09-24,0.0,10.25,0.48800034722222224,371.59,641.25,1.36396379850899 -2004-09-25,0.0,13.735,0.48800034722222224,359.53,851.32,1.3098382509491096 -2004-09-26,0.0,12.024999999999999,0.4840002314814815,332.52,837.86,1.2232373748533005 -2004-09-27,0.0,13.4,0.48167002314814816,330.3,918.52,1.16911182729342 -2004-09-28,0.83,13.190000000000001,0.4800005787037037,302.25,923.46,1.0933360607095872 -2004-09-29,0.0,8.24,0.4760001157407408,312.66,662.32,1.0424580460032995 -2004-09-30,0.0,8.735,0.4760001157407408,338.32,608.85,0.9948275641506047 -2004-10-01,0.0,10.93,0.4719996527777777,337.27,688.25,0.9277118851763528 -2004-10-02,0.0,11.53,0.4701513888888889,323.15,750.38,0.8887414909332388 -2004-10-03,0.0,9.175,0.46799976851851854,298.51,691.21,0.8443585419341366 -2004-10-04,0.0,7.574999999999999,0.463999537037037,316.91,569.59,0.8032231257886274 -2004-10-05,0.0,5.734999999999999,0.463999537037037,291.86,543.22,0.7447675344239565 -2004-10-06,0.0,0.935,0.46,231.21,440.0,0.7198697825464114 -2004-10-07,0.0,6.465,0.45920532407407405,287.0,564.03,0.6841469211568902 -2004-10-08,0.0,11.415000000000001,0.45599953703703705,316.78,681.26,0.6581666583281476 -2004-10-09,0.0,15.195,0.45200810185185186,234.64,1158.13,0.6440940159625786 -2004-10-10,0.0,13.38,0.452,174.38,1163.77,0.6137837093290455 -2004-10-11,0.0,9.205,0.4480001157407407,194.41,843.8,0.5769783369883267 -2004-10-12,7.01,5.9750000000000005,0.4480001157407407,90.37,771.07,0.5683182493787459 -2004-10-13,10.63,6.18,0.4440001157407408,122.25,727.46,0.6170312421826384 -2004-10-14,0.0,6.655,0.44166932870370373,278.18,562.36,0.5975460450610814 -2004-10-15,7.31,8.225,0.4400003472222222,204.9,653.7,0.579143358890722 -2004-10-16,15.14,10.06,0.43611064814814815,149.66,878.33,0.7761603520086873 -2004-10-17,16.59,9.015,0.43600011574074077,128.97,867.05,0.9222993304203646 -2004-10-18,6.83,5.62,0.43200000000000005,113.54,712.0,0.9028141332988077 -2004-10-19,0.0,3.33,0.43194837962962956,175.46,566.3,0.8779163814212626 -2004-10-20,0.0,1.475,0.428,222.86,440.52,0.8638437390556937 -2004-10-21,0.0,0.8250000000000002,0.4261517361111111,231.38,410.88,0.8519361185925199 -2004-10-22,0.0,2.7299999999999995,0.42400011574074076,203.62,505.3,0.8346159433733582 -2004-10-23,0.0,2.99,0.42121863425925926,221.36,485.15,0.8140482353006037 -2004-10-24,0.0,3.5949999999999998,0.41999976851851856,245.45,463.68,0.7891504834230585 -2004-10-25,0.0,3.6599999999999997,0.4164640046296296,191.42,555.34,0.768582775350304 -2004-10-26,0.0,4.035,0.4159996527777778,218.51,523.47,0.7436850234727588 -2004-10-27,0.0,4.32,0.4121109953703704,207.56,556.45,0.7177047606440161 -2004-10-28,0.0,1.8200000000000003,0.41200046296296294,220.66,437.97,0.6917244978152736 -2004-10-29,0.0,0.20000000000000018,0.4080084490740741,220.21,380.79,0.6733218116449141 -2004-10-30,1.09,0.5800000000000001,0.40794895833333333,246.0,320.0,0.6560016364257523 -2004-10-31,6.59,5.545,0.40399999999999997,162.55,573.82,0.6787343664009022 -2004-11-01,1.1,6.085000000000001,0.4037145833333334,155.34,703.06,0.6560016364257523 -2004-11-02,0.0,0.7150000000000001,0.40000023148148145,141.87,488.22,0.643011505011381 -2004-11-03,3.7,0.8700000000000001,0.39971435185185183,73.35,552.44,0.6408464831089858 -2004-11-04,0.0,0.31000000000000005,0.3960082175925926,120.98,502.94,0.6300213735970097 -2004-11-05,13.32,0.7750000000000001,0.39571446759259266,76.66,542.82,0.6624967021329381 -2004-11-06,6.0,-0.6900000000000001,0.3921108796296296,59.46,512.68,0.6884769649616808 -2004-11-07,3.9,-2.0300000000000002,0.3919487268518519,123.22,410.16,0.6928070087664712 -2004-11-08,1.96,-2.375,0.3884644675925926,123.45,414.56,0.6776518554497045 -2004-11-09,0.0,-5.85,0.38799999999999996,174.13,279.91,0.6624967021329381 -2004-11-10,0.0,-7.625,0.3848466435185185,205.74,217.03,0.6451765269137762 -2004-11-11,0.0,-4.025,0.3840003472222222,192.42,297.76,0.6451765269137762 -2004-11-12,0.0,-6.165,0.38166932870370374,212.78,228.17,0.6137837093290455 -2004-11-13,0.0,-8.4,0.3799997685185186,209.14,199.14,0.5888859574515005 -2004-11-14,0.0,-8.03,0.37920590277777777,206.63,200.65,0.5737308041347339 -2004-11-15,0.0,-4.055,0.37611087962962964,167.52,315.74,0.5694007603299435 -2004-11-16,0.0,-4.29,0.3759486111111111,159.08,314.27,0.5542456070131768 -2004-11-17,0.0,-6.21,0.37321898148148147,194.39,240.0,0.5380079427452128 -2004-11-18,0.0,-2.7350000000000003,0.3719998842592593,158.67,348.95,0.5369254317940151 -2004-11-19,0.0,1.5499999999999998,0.37120578703703705,78.23,600.0,0.5271828332332367 -2004-11-20,0.0,0.6499999999999999,0.3684645833333333,121.38,504.23,0.5152752127700628 -2004-11-21,0.0,-1.415,0.3680003472222222,154.99,400.0,0.5152752127700628 -2004-11-22,0.0,-0.05499999999999994,0.36615196759259255,119.87,480.0,0.5087801470628772 -2004-11-23,0.0,-1.46,0.3644642361111111,179.93,354.51,0.501202570404494 -2004-11-24,3.27,1.015,0.36400011574074076,151.17,453.97,0.5044501032580868 -2004-11-25,20.36,5.12,0.3621513888888889,99.84,663.28,0.7772428629598849 -2004-11-26,10.03,-0.7850000000000001,0.3604638888888889,135.28,387.27,0.9872499874922213 -2004-11-27,0.0,-6.095000000000001,0.3599998842592593,135.46,291.88,1.0283854036377307 -2004-11-28,0.0,-2.98,0.35920578703703704,165.42,329.42,1.1474616082694677 -2004-11-29,24.45,0.32000000000000006,0.3572189814814815,95.68,486.68,1.6778919743562972 -2004-11-30,0.0,-2.5599999999999996,0.35611041666666665,161.99,351.09,1.9160443836197718 -2004-12-01,13.59,-2.9,0.3559483796296296,139.55,350.62,2.14337168337127 -2004-12-02,21.78,-4.625,0.3546476851851852,111.32,321.94,2.3706989831227685 -2004-12-03,0.0,-13.16,0.35321898148148145,195.07,131.71,2.424824530682649 -2004-12-04,0.0,-14.35,0.35211030092592593,196.42,116.96,2.435649640194625 -2004-12-05,2.07,-9.86,0.35199988425925927,192.54,160.0,2.413999421170673 -2004-12-06,0.0,-13.735,0.35171423611111113,187.63,119.87,2.327398545074864 -2004-12-07,0.0,-16.57,0.3506474537037037,190.44,85.79,2.240797668979055 -2004-12-08,11.36,-11.620000000000001,0.34966921296296294,118.15,167.71,2.229972559467079 -2004-12-09,2.97,-8.67,0.3488465277777778,114.81,236.03,2.1650219023952224 -2004-12-10,0.0,-8.865,0.3481105324074074,162.3,200.02,2.0675959167874374 -2004-12-11,18.83,-5.665,0.3480079861111111,88.82,309.99,2.0675959167874374 -2004-12-12,9.51,-4.25,0.34794849537037037,58.6,382.76,2.0784210262994134 -2004-12-13,2.25,-6.154999999999999,0.34771435185185184,99.58,306.88,1.9809950406916284 -2004-12-14,1.43,-8.09,0.3472057870370371,135.08,251.23,1.9052192741077956 -2004-12-15,0.0,-14.969999999999999,0.3466476851851852,181.97,118.46,1.8077932885000105 -2004-12-16,0.0,-15.145,0.3466476851851852,193.55,114.86,1.742842631428154 -2004-12-17,2.3,-8.475,0.3461518518518519,166.33,199.91,1.6778919743562972 -2004-12-18,0.0,-14.225,0.3461518518518519,203.82,80.0,1.5804659887485122 -2004-12-19,0.0,-11.675,0.3456693287037037,180.26,147.66,1.5155153316766559 -2004-12-20,3.17,-9.31,0.3456693287037037,122.77,208.3,1.461389784116775 -2004-12-21,1.86,-16.52,0.3461518518518519,140.38,112.22,1.4072642365568944 -2004-12-22,0.18,-13.49,0.3461518518518519,188.08,120.05,1.3423135794850378 -2004-12-23,10.52,-2.6900000000000004,0.3461518518518519,127.44,317.37,1.3098382509491096 -2004-12-24,17.24,-1.9749999999999996,0.3466476851851852,146.6,280.5,1.7103673028922255 -2004-12-25,0.0,-16.37,0.3472057870370371,189.17,94.54,1.7211924124042017 -2004-12-26,0.0,-18.89,0.34771435185185184,177.93,80.0,1.9809950406916284 -2004-12-27,1.04,-17.665,0.34794849537037037,108.08,120.0,1.8943941645958196 -2004-12-28,0.0,-17.395,0.34800000000000003,168.78,92.24,2.110896354835342 -2004-12-29,1.24,-13.065,0.3480079861111111,192.27,120.31,1.9485197121557 -2004-12-30,0.0,-14.459999999999999,0.3484641203703704,202.98,92.56,1.9160443836197718 -2004-12-31,0.62,-13.765,0.3482361111111111,197.63,106.44,1.8943941645958196 -2005-01-01,6.12,-3.97,0.34921886574074074,147.2,229.97,1.9160443836197718 -2005-01-02,2.59,-11.685,0.35015162037037034,179.96,119.31,1.8835690550838433 -2005-01-03,5.56,-10.385000000000002,0.35120578703703703,139.92,156.72,1.8402686170359388 -2005-01-04,0.0,-10.379999999999999,0.3519482638888889,181.94,159.46,1.7861430694760585 -2005-01-05,0.0,-15.795,0.35200787037037035,166.97,111.36,1.7320175219161775 -2005-01-06,0.31,-18.62,0.35284641203703704,187.81,80.0,1.6778919743562972 -2005-01-07,3.68,-13.52,0.3541518518518519,137.83,126.55,1.6129413172844407 -2005-01-08,0.0,-8.305,0.35571446759259256,151.85,217.05,1.5588157697245602 -2005-01-09,0.0,-11.389999999999999,0.35600000000000004,166.44,160.0,1.4938651126527034 -2005-01-10,1.46,-10.7,0.3564643518518519,149.19,173.01,1.4289144555808466 -2005-01-11,4.1,-11.075,0.35815185185185183,126.35,168.04,1.3747889080209663 -2005-01-12,0.45,-18.105,0.3599482638888889,221.58,78.86,1.3314884699730618 -2005-01-13,2.37,-9.455,0.36000787037037035,201.76,148.61,1.2881880319251573 -2005-01-14,6.76,0.5499999999999998,0.36121863425925926,156.84,355.32,1.2557127033892288 -2005-01-15,2.99,-9.48,0.3637142361111111,193.54,142.11,1.2232373748533005 -2005-01-16,0.0,-13.395,0.36400011574074076,160.71,155.69,1.2232373748533005 -2005-01-17,2.89,-14.295000000000002,0.36521898148148146,95.81,157.03,1.2124122653413245 -2005-01-18,2.27,-19.095,0.36771435185185186,110.72,108.08,1.2015871558293483 -2005-01-19,0.41,-22.674999999999997,0.3680083333333333,214.56,40.0,1.1907620463173723 -2005-01-20,5.72,-17.919999999999998,0.3696696759259259,157.91,80.55,1.16911182729342 -2005-01-21,2.46,-21.509999999999998,0.3719483796296296,166.0,74.82,1.1258113892455155 -2005-01-22,0.0,-24.785,0.37211041666666667,205.25,40.0,1.0814284402464136 -2005-01-23,0.0,-23.03,0.3746479166666667,209.68,47.94,1.0370454912473115 -2005-01-24,0.0,-20.795,0.3760002314814815,224.0,77.69,0.9959100751018022 -2005-01-25,0.0,-18.15,0.3772188657407407,183.08,100.97,0.9655997684682691 -2005-01-26,0.0,-20.27,0.3799997685185186,185.45,80.0,0.9331244399323408 -2005-01-27,0.0,-24.1,0.3804640046296296,261.82,40.0,0.9060616661524006 -2005-01-28,0.0,-22.52,0.383714699074074,253.27,40.03,0.8789988923724602 -2005-01-29,0.0,-19.285,0.38400833333333334,271.99,75.39,0.8584311842997057 -2005-01-30,0.0,-12.47,0.3866476851851852,258.45,120.0,0.8389459871781486 -2005-01-31,0.0,-14.545,0.38799999999999996,292.79,80.0,0.8194607900565917 -2005-02-01,0.0,-13.370000000000001,0.3901519675925926,298.38,83.16,0.804305636739825 -2005-02-02,0.0,-11.05,0.39200034722222227,303.87,120.0,0.7902329943742561 -2005-02-03,0.0,-9.2,0.3936696759259259,306.35,121.09,0.7772428629598849 -2005-02-04,0.0,-7.0649999999999995,0.39600023148148145,303.0,164.58,0.7664177534479087 -2005-02-05,0.0,-5.5,0.3972188657407407,300.75,196.74,0.7566751548871301 -2005-02-06,0.0,-4.83,0.40000023148148145,304.64,200.0,0.749097578228747 -2005-02-07,0.0,-3.4,0.4012189814814815,290.99,249.89,0.7415200015703636 -2005-02-08,1.72,0.5350000000000001,0.40399999999999997,202.27,426.67,0.7361074468143756 -2005-02-09,6.45,-0.3800000000000001,0.40521898148148144,114.08,454.57,0.72961238110719 -2005-02-10,6.56,-5.460000000000001,0.4080003472222223,151.52,302.74,0.7252823373023994 -2005-02-11,16.15,-8.23,0.40966990740740744,84.38,275.01,0.7339424249119803 -2005-02-12,0.96,-8.335,0.41200046296296294,165.73,247.13,0.7458500453751541 -2005-02-13,0.0,-9.995000000000001,0.41464768518518513,193.99,200.01,0.7404374906191661 -2005-02-14,0.0,-15.290000000000001,0.4159996527777778,364.28,80.0,0.720952293497609 -2005-02-15,4.07,-7.335000000000001,0.419205324074074,251.35,186.36,0.710127183985633 -2005-02-16,3.49,-0.17500000000000004,0.41999976851851856,142.76,460.2,0.710127183985633 -2005-02-17,5.1,-5.390000000000001,0.42400011574074076,230.63,240.66,0.710127183985633 -2005-02-18,0.0,-12.504999999999999,0.42400011574074076,338.77,120.0,0.710127183985633 -2005-02-19,0.0,-16.105,0.428,347.96,80.65,0.7057971401808425 -2005-02-20,0.0,-19.33,0.42846388888888887,303.84,79.88,0.7014670963760521 -2005-02-21,0.0,-21.395,0.43200000000000005,371.13,40.0,0.6971370525712616 -2005-02-22,3.54,-15.174999999999999,0.4336695601851852,229.39,114.74,0.6863119430592853 -2005-02-23,2.12,-11.235000000000001,0.43600011574074077,257.97,172.34,0.6754868335473093 -2005-02-24,0.0,-15.66,0.4399488425925926,377.11,80.0,0.6624967021329381 -2005-02-25,0.0,-15.03,0.4400003472222222,371.17,88.95,0.651671592620962 -2005-02-26,0.0,-15.665,0.4440001157407408,394.33,81.59,0.6408464831089858 -2005-02-27,0.0,-13.065,0.4440081018518519,326.71,133.44,0.6300213735970097 -2005-02-28,0.0,-11.29,0.4480001157407407,349.45,152.81,0.6202787750362311 -2005-03-01,6.04,-8.719999999999999,0.4501516203703704,251.99,210.64,0.6116186874266503 -2005-03-02,10.76,-6.345000000000001,0.452,91.16,320.0,0.6191962640850336 -2005-03-03,2.69,-10.3,0.45599953703703705,246.43,195.67,0.6116186874266503 -2005-03-04,0.0,-13.035,0.45599953703703705,330.33,156.34,0.5921334903050932 -2005-03-05,0.0,-11.79,0.46,413.19,133.83,0.5715657822323387 -2005-03-06,1.92,-8.485,0.4604638888888889,329.91,200.0,0.5629056946227577 -2005-03-07,5.95,-12.24,0.463999537037037,342.05,120.0,0.5553281179643744 -2005-03-08,21.65,-9.41,0.46799976851851854,321.76,172.3,0.5596581617691649 -2005-03-09,32.59,-9.825,0.46799976851851854,271.65,194.55,0.565070716525153 -2005-03-10,4.08,-18.455,0.4719996527777777,344.53,80.0,0.5509980741595841 -2005-03-11,0.0,-16.805,0.4719996527777777,509.81,80.0,0.5315128770380272 -2005-03-12,1.18,-10.74,0.4760001157407408,495.49,131.82,0.5174402346724581 -2005-03-13,0.0,-10.38,0.4800005787037037,513.67,122.34,0.5120276799164701 -2005-03-14,1.21,-6.17,0.4800005787037037,417.25,232.42,0.5055326142092844 -2005-03-15,3.55,-1.9499999999999997,0.4840002314814815,175.87,426.03,0.5001200594532963 -2005-03-16,0.0,-1.565,0.4840002314814815,412.7,343.0,0.4947075046973083 -2005-03-17,0.0,-2.535,0.48800034722222224,427.74,320.0,0.4903774608925179 -2005-03-18,4.82,-3.6750000000000003,0.4919994212962963,318.64,313.83,0.48496490613652976 -2005-03-19,6.21,-3.19,0.4919994212962963,237.0,355.06,0.48171737328293696 -2005-03-20,0.0,-4.449999999999999,0.4959997685185185,429.42,281.87,0.47738732947814655 -2005-03-21,0.0,-4.165,0.4959997685185185,495.7,258.15,0.47413979662455363 -2005-03-22,0.0,-1.42,0.4999997685185186,404.68,374.34,0.47089226377096083 -2005-03-23,0.04,-1.13,0.503999537037037,338.64,419.26,0.46764473091736797 -2005-03-24,0.0,-3.0549999999999997,0.503999537037037,524.42,276.82,0.4643971980637752 -2005-03-25,0.0,-1.9949999999999997,0.5079996527777778,468.6,332.75,0.46223217616137996 -2005-03-26,0.0,-7.284999999999999,0.5079996527777778,577.18,169.04,0.4600671542589847 -2005-03-27,0.0,-4.51,0.511999537037037,596.83,189.99,0.4589846433077871 -2005-03-28,0.01,-1.0349999999999997,0.5159998842592592,552.24,302.74,0.45681962140539184 -2005-03-29,7.84,1.4699999999999998,0.5159998842592592,252.52,514.15,0.45140706664940383 -2005-03-30,0.0,2.23,0.520000462962963,404.61,510.79,0.44274697903982296 -2005-03-31,0.0,1.145,0.520000462962963,571.19,352.57,0.4362519133326373 -2005-04-01,3.49,1.715,0.5240002314814816,334.17,472.53,0.4275918257230564 -2005-04-02,11.36,1.71,0.5279998842592593,124.09,600.16,0.43192186952784684 -2005-04-03,18.94,3.6100000000000003,0.5279998842592593,162.75,665.68,0.5704832712811411 -2005-04-04,13.25,3.57,0.5319998842592593,152.8,679.67,0.8172957681541964 -2005-04-05,3.51,2.945,0.5319998842592593,230.22,605.26,1.277362922413181 -2005-04-06,0.0,3.275,0.5359994212962963,527.12,480.06,1.861918836059891 -2005-04-07,3.08,2.62,0.5395353009259259,449.83,491.98,2.7062773779940277 -2005-04-08,9.84,1.8399999999999999,0.54,239.73,557.37,3.2367077440808574 -2005-04-09,0.0,2.4699999999999998,0.5439997685185185,464.98,519.49,3.745487891143735 -2005-04-10,0.0,2.17,0.5439997685185185,454.01,510.27,4.135191833574875 -2005-04-11,0.0,-0.8599999999999999,0.5479999999999999,470.17,404.07,4.42746979039823 -2005-04-12,0.28,-0.5900000000000001,0.5498481481481481,329.13,476.68,4.600671542589847 -2005-04-13,2.04,0.09499999999999997,0.5520004629629629,299.65,511.32,4.698097528197632 -2005-04-14,0.22,0.9650000000000001,0.5559922453703704,417.06,505.1,4.708922637709608 -2005-04-15,0.0,-0.02499999999999991,0.5560002314814815,618.87,360.0,4.665622199661704 -2005-04-16,0.0,2.535,0.56,669.05,358.5,4.643971980637752 -2005-04-17,0.0,6.710000000000001,0.5600517361111111,677.64,429.78,4.817173732829369 -2005-04-18,0.0,7.305,0.5639996527777777,640.01,547.21,5.239353003796438 -2005-04-19,0.0,5.83,0.5663305555555556,657.75,468.53,5.769783369883268 -2005-04-20,0.0,7.534999999999999,0.5679997685185185,599.39,618.73,6.733218116449141 -2005-04-21,0.0,2.4250000000000003,0.5715351851851852,529.42,479.83,7.534276220335373 -2005-04-22,0.0,2.035,0.5719994212962963,569.46,445.91,7.826554177158728 -2005-04-23,5.18,3.2,0.5760005787037037,460.39,520.18,7.956455491302442 -2005-04-24,11.45,3.84,0.5760005787037037,234.87,649.6,8.205433010077892 -2005-04-25,12.09,7.290000000000001,0.5800003472222222,313.59,783.18,10.197253160281496 -2005-04-26,8.59,6.865,0.5807946759259259,450.34,692.06,12.990131414371334 -2005-04-27,0.0,6.595,0.5840005787037037,650.29,569.29,12.665378129012051 -2005-04-28,17.98,6.41,0.5853530092592593,388.39,675.41,12.990131414371334 -2005-04-29,34.42,2.56,0.5880002314814815,234.67,600.0,14.505646746047988 -2005-04-30,6.98,5.029999999999999,0.5903311342592593,400.64,614.59,14.505646746047988 -2005-05-01,5.99,7.875,0.5920008101851852,383.57,770.19,14.938651126527033 -2005-05-02,1.91,6.76,0.5943310185185184,519.94,706.6,14.61389784116775 -2005-05-03,0.46,5.61,0.5959997685185184,565.58,610.74,13.85614017532942 -2005-05-04,0.0,4.84,0.5987809027777777,609.93,548.74,12.881880319251572 -2005-05-05,0.0,4.955,0.5999998842592592,648.61,505.26,11.907620463173723 -2005-05-06,0.0,6.9350000000000005,0.6027810185185185,692.79,490.07,11.041611702215635 -2005-05-07,0.02,8.64,0.6039996527777778,603.84,700.35,10.229728488817425 -2005-05-08,4.39,6.845,0.6063304398148148,254.17,800.0,9.461145713467122 -2005-05-09,2.55,8.469999999999999,0.6079995370370371,430.05,759.04,8.898240018844364 -2005-05-10,0.0,13.965,0.6098476851851852,623.21,945.02,8.27038366714975 -2005-05-11,0.0,15.440000000000001,0.6120002314814815,619.48,1033.98,7.65335242496711 -2005-05-12,4.35,6.955,0.6133524305555556,469.96,582.01,7.047146292296449 -2005-05-13,0.0,1.5799999999999998,0.6159914351851852,499.24,467.55,6.48424059767369 -2005-05-14,0.0,4.17,0.6162851851851852,585.38,504.95,5.997110669634766 -2005-05-15,3.37,7.19,0.6195356481481481,408.65,737.4,5.5749313986676965 -2005-05-16,13.42,6.12,0.6199998842592592,137.51,845.29,5.336778989404223 -2005-05-17,6.05,6.615,0.6227818287037037,266.46,779.87,5.1202767991647 -2005-05-18,0.0,7.435,0.6240006944444445,533.31,710.81,4.838823951853322 -2005-05-19,0.01,7.745,0.6253526620370371,594.75,672.08,4.557371104541943 -2005-05-20,0.95,8.225,0.6278895833333333,446.24,798.28,4.275918257230564 -2005-05-21,3.24,7.055,0.6280518518518519,261.18,829.44,4.081066286014994 -2005-05-22,11.08,6.2299999999999995,0.6303303240740741,183.14,829.51,3.8970394243114 -2005-05-23,15.55,7.654999999999999,0.6319916666666667,231.37,890.22,4.156842052598827 -2005-05-24,2.1,9.265,0.6322856481481481,516.9,785.83,4.146016943086851 -2005-05-25,0.0,8.775,0.6347809027777778,663.01,625.05,4.070241176503018 -2005-05-26,3.91,10.18,0.6360001157407408,448.45,789.1,3.9295147528473287 -2005-05-27,10.69,9.095,0.6362856481481481,318.01,891.06,3.994465409919185 -2005-05-28,0.44,10.445,0.6387810185185185,273.62,1083.61,3.9728151908952327 -2005-05-29,4.51,11.685,0.6399917824074074,201.53,1191.15,3.9295147528473287 -2005-05-30,5.15,11.76,0.6400512731481481,300.08,1095.42,3.9295147528473287 -2005-05-31,0.0,12.765,0.6418483796296296,595.32,934.87,3.810438548215591 -2005-06-01,0.0,14.46,0.6435354166666667,661.31,845.28,3.6697121245599016 -2005-06-02,0.0,17.47,0.6439998842592592,645.64,1045.28,3.485685262856308 -2005-06-03,0.0,20.715,0.6442856481481481,611.49,1377.59,3.2908332916407383 -2005-06-04,0.0,19.775000000000002,0.6458482638888889,591.98,1369.89,3.085156210913192 -2005-06-05,3.26,17.595,0.6471538194444444,498.43,1272.48,2.8794791301856457 -2005-06-06,3.9,12.675,0.6479927083333333,409.01,1089.79,2.7820531445778607 -2005-06-07,12.53,12.815000000000001,0.6480521990740741,355.08,1066.23,2.717102487506004 -2005-06-08,0.0,14.375,0.6487947916666666,530.56,1105.82,2.53307562580241 -2005-06-09,0.0,11.765,0.6498487268518519,633.94,733.77,2.3923492021467205 -2005-06-10,0.0,17.955,0.6507814814814814,615.59,1086.72,2.2732729975149835 -2005-06-11,0.0,22.355,0.6515357638888889,541.44,1695.49,2.132546573859294 -2005-06-12,5.14,22.259999999999998,0.6519921296296297,350.47,1867.43,2.0567708072754614 -2005-06-13,8.45,21.375,0.6520001157407407,366.83,1726.68,2.154196792883246 -2005-06-14,8.15,15.665000000000001,0.6520517361111111,321.2,1296.51,2.1974972309311505 -2005-06-15,7.78,10.59,0.6522856481481482,180.19,1093.26,2.1650219023952224 -2005-06-16,13.63,9.675,0.6527943287037037,152.85,1052.45,2.229972559467079 -2005-06-17,6.15,9.35,0.653352662037037,140.17,1045.28,2.229972559467079 -2005-06-18,8.58,8.695,0.653848611111111,180.65,958.6,2.3923492021467205 -2005-06-19,2.58,11.075,0.653848611111111,395.53,919.98,2.446474749706601 -2005-06-20,0.0,14.98,0.653848611111111,570.12,919.05,2.4031743116586965 -2005-06-21,0.0,19.525,0.6543310185185185,527.41,1335.69,2.316573435562888 -2005-06-22,2.77,16.735,0.6543310185185185,415.68,1234.37,2.1758470119071984 -2005-06-23,0.0,11.365,0.653848611111111,542.56,762.43,2.0675959167874374 -2005-06-24,0.04,16.255000000000003,0.653848611111111,503.96,1138.29,1.9485197121557 -2005-06-25,0.0,21.689999999999998,0.653352662037037,440.98,1743.22,1.8186183980119868 -2005-06-26,0.0,21.265,0.653352662037037,464.84,1609.71,1.7103673028922255 -2005-06-27,0.0,19.055,0.6527943287037037,527.08,1206.3,1.6021162077724647 -2005-06-28,0.0,23.740000000000002,0.6522856481481482,463.59,1782.45,1.5155153316766559 -2005-06-29,0.0,23.47,0.6520517361111111,386.64,1989.8,1.4289144555808466 -2005-06-30,0.0,20.14,0.6519921296296297,412.54,1567.7,1.3531386889970138 -2005-07-01,0.0,18.565,0.6518894675925926,353.41,1559.09,1.2881880319251573 -2005-07-02,0.61,18.255,0.6511538194444445,326.86,1561.34,1.179936936805396 -2005-07-03,0.0,14.715,0.6503311342592593,496.78,956.95,1.0933360607095872 -2005-07-04,0.0,19.21,0.6493528935185184,501.49,1239.1,1.032715447442521 -2005-07-05,1.24,19.86,0.6482863425925927,448.13,1413.03,0.9785898998826404 -2005-07-06,8.53,17.6,0.6480008101851852,310.31,1343.76,0.9504446151515026 -2005-07-07,0.0,14.3,0.647890162037037,501.65,903.01,0.9038966442500053 -2005-07-08,0.0,15.645,0.64678125,513.01,921.53,0.848688585738927 -2005-07-09,4.97,17.09,0.645352199074074,448.48,1171.87,0.812965724349406 -2005-07-10,32.41,19.11,0.6440515046296297,264.24,1592.23,1.1907620463173723 -2005-07-11,1.81,20.035,0.6438894675925926,359.58,1601.4,0.9915800312970118 -2005-07-12,7.88,19.09,0.6427809027777778,353.67,1361.64,0.9428670384931193 -2005-07-13,0.0,18.39,0.6407940972222222,422.97,1369.48,0.9125567318595862 -2005-07-14,10.69,18.93,0.6399997685185186,241.84,1620.18,1.0121477393697664 -2005-07-15,5.86,18.185000000000002,0.6395354166666667,378.23,1371.54,1.2448875938772528 -2005-07-16,0.0,18.11,0.6378482638888888,488.25,1136.2,1.2340624843652768 -2005-07-17,0.0,20.045,0.6360001157407408,487.1,1244.93,1.2232373748533005 -2005-07-18,0.0,23.425,0.6355359953703703,394.9,1833.24,1.2015871558293483 -2005-07-19,4.57,25.165,0.6338483796296296,243.66,2275.63,1.1907620463173723 -2005-07-20,8.05,22.395,0.6319996527777777,280.1,1834.61,1.16911182729342 -2005-07-21,0.0,19.205,0.6315355324074073,437.74,1335.47,1.0933360607095872 -2005-07-22,0.43,20.625,0.6287943287037038,395.23,1545.0,1.0175602941257544 -2005-07-23,5.12,18.97,0.628,305.86,1386.86,0.9840024546386285 -2005-07-24,0.58,16.66,0.6267813657407407,363.99,1281.72,0.9049791552012029 -2005-07-25,2.1,14.925,0.624052199074074,320.45,1230.25,0.8616787171532985 -2005-07-26,0.0,17.835,0.6238902777777778,381.16,1361.78,0.804305636739825 -2005-07-27,6.42,20.32,0.6207944444444444,224.95,1771.42,0.793480527227849 -2005-07-28,0.06,15.185,0.6199998842592592,434.89,1062.14,0.7534276220335374 -2005-07-29,0.0,15.22,0.6183303240740741,476.93,936.9,0.7122922058880281 -2005-07-30,0.0,14.709999999999999,0.615999537037037,455.07,958.59,0.65708414737695 -2005-07-31,0.0,12.925,0.6151532407407407,476.09,800.42,0.6137837093290455 -2005-08-01,4.98,14.920000000000002,0.6120002314814815,262.49,1178.85,0.5942985122074885 -2005-08-02,7.54,16.855,0.6115356481481482,210.86,1442.99,0.5726482931835363 -2005-08-03,0.0,15.64,0.6080510416666667,384.89,1182.72,0.5358429208428175 -2005-08-04,0.0,15.42,0.6078891203703704,441.83,1036.69,0.5109451689652724 -2005-08-05,1.11,19.064999999999998,0.6042853009259259,373.14,1388.26,0.4957900156485059 -2005-08-06,0.0,18.03,0.6039916666666666,428.39,1256.4,0.45248957760060143 -2005-08-07,0.0,16.845,0.6002854166666667,466.62,1051.94,0.4416644680886253 -2005-08-08,0.0,20.14,0.5999998842592592,408.72,1456.84,0.3961990081383257 -2005-08-09,0.0,22.07,0.5962851851851851,424.77,1571.29,0.3767138110167687 -2005-08-10,0.81,23.285,0.5959997685185184,343.69,1923.18,0.3637236796023974 -2005-08-11,9.11,21.165,0.5920523148148148,243.86,1774.6,0.3496510372368284 -2005-08-12,0.0,16.205000000000002,0.591992824074074,461.06,992.26,0.3323308620176666 -2005-08-13,3.94,18.405,0.5880002314814815,314.83,1332.7,0.3290833291640738 -2005-08-14,0.0,18.424999999999997,0.5879922453703703,307.74,1524.26,0.30526808823772633 -2005-08-15,0.0,15.675,0.5840005787037037,395.26,1132.16,0.28470038016497173 -2005-08-16,0.0,16.035,0.5835359953703704,469.27,929.14,0.26521518304341474 -2005-08-17,4.72,16.415,0.5800003472222222,292.7,1213.54,0.24789500782425294 -2005-08-18,0.0,12.035,0.5787818287037036,402.19,873.7,0.22191474499551028 -2005-08-19,0.0,11.165000000000001,0.5760005787037037,460.57,700.73,0.20892461358113892 -2005-08-20,2.86,14.065000000000001,0.5738478009259259,360.03,1013.78,0.20675959167874372 -2005-08-21,7.87,17.52,0.5719994212962963,173.14,1578.87,0.23382236545868398 -2005-08-22,7.72,17.384999999999998,0.5680513888888888,264.81,1329.29,0.2598026282874267 -2005-08-23,8.13,15.495000000000001,0.5679997685185185,267.31,1177.49,0.2630501611410195 -2005-08-24,4.11,15.305,0.5639996527777777,212.47,1292.44,0.22732729975149835 -2005-08-25,0.0,15.21,0.5639916666666667,357.43,1149.35,0.20784210262994132 -2005-08-26,0.0,16.11,0.56,435.65,980.7,0.1926869493131748 -2005-08-27,0.0,17.605,0.558330324074074,451.98,984.07,0.1818618398011987 -2005-08-28,0.0,18.605,0.5560002314814815,391.34,1287.68,0.17861430694760583 -2005-08-29,9.8,19.615000000000002,0.5520519675925926,207.13,1681.2,0.17969681789880346 -2005-08-30,20.11,20.36,0.5520004629629629,197.45,1781.14,0.20675959167874372 -2005-08-31,38.64,20.185000000000002,0.5479999999999999,149.38,1902.23,0.3344958839200618 -2005-09-01,42.08,19.41,0.5479921296296296,172.09,1753.74,1.074933374539228 -2005-09-02,0.0,18.185,0.5439997685185185,337.24,1390.42,0.6473415488161715 -2005-09-03,0.0,17.41,0.540794212962963,325.4,1356.96,0.5878034465003028 -2005-09-04,0.0,13.969999999999999,0.54,361.21,1018.29,0.545585519403596 -2005-09-05,0.0,11.535,0.5359994212962963,399.83,792.81,0.520687767526051 -2005-09-06,0.0,13.43,0.5359994212962963,418.89,821.61,0.49687252659970355 -2005-09-07,0.0,15.72,0.5319998842592593,417.32,937.68,0.48388239518533216 -2005-09-08,0.7,17.095,0.5298482638888888,326.59,1289.86,0.48388239518533216 -2005-09-09,7.82,13.275,0.5279998842592593,254.07,994.81,0.47738732947814655 -2005-09-10,0.0,9.620000000000001,0.5240002314814816,350.08,759.13,0.4557371104541943 -2005-09-11,0.0,9.26,0.5240002314814816,390.44,658.36,0.43192186952784684 -2005-09-12,1.01,13.495000000000001,0.520000462962963,346.55,978.34,0.41460169430868504 -2005-09-13,0.0,13.17,0.5183310185185186,400.33,798.45,0.41027165050389464 -2005-09-14,0.0,16.04,0.5159998842592592,347.83,1132.09,0.40485909574790657 -2005-09-15,0.0,18.380000000000003,0.511999537037037,285.44,1474.66,0.38970394243114004 -2005-09-16,0.14,14.07,0.511999537037037,337.69,1004.36,0.3713012562607806 -2005-09-17,7.95,13.850000000000001,0.5079996527777778,185.35,1182.11,0.37887883291916397 -2005-09-18,7.56,12.06,0.5067805555555556,114.89,1197.54,0.39295147528473284 -2005-09-19,2.25,12.23,0.503999537037037,265.23,957.11,0.3994465409919185 -2005-09-20,2.64,10.97,0.4999997685185186,343.48,728.94,0.38753892052874483 -2005-09-21,5.06,11.52,0.4999997685185186,196.63,968.86,0.3972815190895233 -2005-09-22,5.17,11.14,0.4959997685185185,217.25,920.0,0.3907864533823376 -2005-09-23,5.17,12.09,0.49366840277777774,201.34,996.38,0.39511649718712805 -2005-09-24,0.0,8.18,0.4919994212962963,335.08,661.36,0.37346627816317585 -2005-09-25,1.1,7.46,0.48800034722222224,349.07,582.73,0.3637236796023974 -2005-09-26,24.55,10.56,0.48800034722222224,219.67,853.8,0.5369254317940151 -2005-09-27,33.95,10.76,0.4840002314814815,180.99,949.18,1.1258113892455155 -2005-09-28,0.0,10.004999999999999,0.48167002314814816,346.0,707.79,1.0392105131497067 -2005-09-29,2.41,11.75,0.4800005787037037,291.16,896.36,1.179936936805396 -2005-09-30,14.95,8.82,0.4760001157407408,228.66,733.3,1.36396379850899 -2005-10-01,0.0,7.08,0.4760001157407408,328.26,581.77,1.3964391270449183 -2005-10-02,0.0,11.48,0.4719996527777777,328.74,761.42,1.4072642365568944 -2005-10-03,0.0,14.48,0.4701513888888889,338.03,862.37,1.4180893460688704 -2005-10-04,0.0,16.51,0.46799976851851854,328.28,990.18,1.4072642365568944 -2005-10-05,0.0,18.805,0.463999537037037,274.88,1372.77,1.3856140175329423 -2005-10-06,0.0,15.954999999999998,0.463999537037037,253.6,1222.19,1.3531386889970138 -2005-10-07,2.74,14.135000000000002,0.46,224.47,1146.67,1.36396379850899 -2005-10-08,28.46,8.69,0.45920532407407405,169.93,790.89,1.6021162077724647 -2005-10-09,2.46,5.815,0.45599953703703705,94.29,800.01,1.742842631428154 -2005-10-10,3.82,7.08,0.45200810185185186,74.28,893.25,1.851093726547915 -2005-10-11,2.62,7.255,0.452,123.48,826.61,1.9918201502036044 -2005-10-12,0.0,5.52,0.4480001157407407,293.14,540.88,2.035120588251509 -2005-10-13,0.0,6.3950000000000005,0.4480001157407407,285.72,583.46,2.0675959167874374 -2005-10-14,0.0,8.18,0.4440001157407408,230.73,763.73,2.0567708072754614 -2005-10-15,22.76,10.075,0.44166932870370373,106.77,1009.88,2.0675959167874374 -2005-10-16,58.15,8.29,0.4400003472222222,77.19,949.11,4.308393585766492 -2005-10-17,17.42,7.140000000000001,0.43611064814814815,71.84,895.84,6.516715926209619 -2005-10-18,0.01,7.92,0.43600011574074077,99.94,920.0,7.090446730344353 -2005-10-19,6.38,7.23,0.43200000000000005,120.94,825.36,7.133747168392257 -2005-10-20,8.6,5.64,0.43194837962962956,133.67,705.53,7.068796511320401 -2005-10-21,0.0,3.415,0.428,186.61,599.46,6.744043225961117 -2005-10-22,0.0,2.655,0.4261517361111111,221.25,525.53,6.386814612065905 -2005-10-23,0.0,3.7,0.42400011574074076,163.09,623.94,6.007935779146742 -2005-10-24,0.32,4.055,0.42121863425925926,125.84,683.51,5.6290569462275775 -2005-10-25,19.18,2.8099999999999996,0.41999976851851856,89.75,632.53,5.271828332332366 -2005-10-26,30.86,1.33,0.4164640046296296,75.54,596.84,5.542456070131769 -2005-10-27,9.41,1.025,0.4159996527777778,94.97,568.48,5.748133150859315 -2005-10-28,0.0,1.0699999999999998,0.4121109953703704,113.95,570.58,5.6182318367156014 -2005-10-29,0.0,0.2749999999999999,0.41200046296296294,232.82,427.71,5.445030084523984 -2005-10-30,0.0,3.0949999999999998,0.4080084490740741,260.76,442.21,5.206877675260509 -2005-10-31,0.19,6.5200000000000005,0.40794895833333333,214.83,681.95,5.033675923068892 -2005-11-01,0.0,8.93,0.40399999999999997,160.02,917.53,4.92542482794913 -2005-11-02,0.0,7.125,0.4037145833333334,196.15,757.63,4.795523513805417 -2005-11-03,2.95,1.6,0.40000023148148145,146.31,560.0,4.719747747221584 -2005-11-04,7.37,-0.5900000000000001,0.39971435185185183,88.26,505.15,4.633146871125776 -2005-11-05,4.63,-0.5399999999999999,0.3960082175925926,72.23,522.51,4.503245556982062 -2005-11-06,3.73,1.5,0.39571446759259266,111.47,588.55,4.340868914302421 -2005-11-07,15.74,3.755,0.3921108796296296,130.08,628.06,4.719747747221584 -2005-11-08,0.0,1.105,0.3919487268518519,161.29,534.89,4.752223075757513 -2005-11-09,0.0,-0.4950000000000001,0.3884644675925926,135.61,493.37,4.708922637709608 -2005-11-10,9.28,0.745,0.38799999999999996,88.45,554.05,4.730572856733561 -2005-11-11,0.0,-0.4600000000000002,0.3848466435185185,176.41,456.48,4.611496652101823 -2005-11-12,0.0,-1.5650000000000002,0.3840003472222222,150.22,445.37,4.405819571374277 -2005-11-13,0.0,-0.3900000000000001,0.38166932870370374,219.1,370.88,4.200142490646731 -2005-11-14,0.0,3.5699999999999994,0.3799997685185186,213.55,509.38,4.005290519431161 -2005-11-15,5.48,0.1499999999999999,0.37920590277777777,152.97,437.14,3.821263657727567 -2005-11-16,12.51,-0.5550000000000002,0.37611087962962964,122.31,446.53,3.70218745309583 -2005-11-17,11.79,2.42,0.3759486111111111,120.01,564.88,3.9295147528473287 -2005-11-18,0.76,-2.905,0.37321898148148147,167.88,368.54,3.886214314799424 -2005-11-19,0.0,-7.305000000000001,0.3719998842592593,205.16,230.44,3.799613438703615 -2005-11-20,0.0,-2.8000000000000003,0.37120578703703705,190.36,343.24,3.70218745309583 -2005-11-21,0.0,2.93,0.3684645833333333,91.48,650.9,3.593936357976069 -2005-11-22,30.54,3.85,0.3680003472222222,107.74,636.31,3.799613438703615 -2005-11-23,33.67,-1.6849999999999998,0.36615196759259255,116.7,415.95,4.903774608925178 -2005-11-24,9.74,-5.8,0.3644642361111111,134.16,290.41,5.06615125160482 -2005-11-25,8.3,-6.835,0.36400011574074076,131.96,269.02,5.185227456236557 -2005-11-26,0.0,-10.745,0.3621513888888889,205.57,166.0,5.022850813556915 -2005-11-27,2.35,-8.685,0.3604638888888889,185.74,200.0,4.838823951853322 -2005-11-28,0.48,-6.465,0.3599998842592593,211.35,212.1,4.643971980637752 -2005-11-29,2.81,0.9300000000000002,0.35920578703703704,159.89,456.36,4.492420447470086 -2005-11-30,10.49,6.795,0.3572189814814815,101.75,795.46,4.503245556982062 -2005-12-01,13.77,3.2449999999999997,0.35611041666666665,127.4,556.38,4.763048185269489 -2005-12-02,24.5,2.205,0.3559483796296296,103.64,566.24,5.8022586984191955 -2005-12-03,4.05,-2.745,0.3546476851851852,134.75,350.54,6.451765269137763 -2005-12-04,0.0,-7.4,0.35321898148148145,111.39,288.03,6.43011505011381 -2005-12-05,0.0,-6.925,0.35211030092592593,107.78,296.3,6.170312421826384 -2005-12-06,0.0,-9.190000000000001,0.35199988425925927,170.22,204.32,5.8022586984191955 -2005-12-07,0.0,-10.495,0.35171423611111113,144.34,200.01,5.4017296464760785 -2005-12-08,0.0,-11.625,0.3506474537037037,130.81,196.03,5.001200594532963 -2005-12-09,0.0,-11.844999999999999,0.34966921296296294,162.83,160.16,4.643971980637752 -2005-12-10,1.0,-10.73,0.3488465277777778,170.54,175.05,4.308393585766492 -2005-12-11,0.0,-5.425000000000001,0.3481105324074074,147.27,290.14,4.03776584796709 -2005-12-12,0.0,-6.595,0.3480079861111111,145.89,271.72,3.745487891143735 -2005-12-13,0.0,-14.7,0.34794849537037037,182.96,119.74,3.4423848248084035 -2005-12-14,0.0,-14.190000000000001,0.34771435185185184,137.29,152.79,3.1717570870090004 -2005-12-15,0.0,-12.815000000000001,0.3472057870370371,138.94,169.7,2.9119544587215738 -2005-12-16,1.43,-12.755,0.3466476851851852,178.05,130.43,2.6738020494580996 -2005-12-17,14.51,-8.379999999999999,0.3466476851851852,124.32,218.02,2.554725844826362 -2005-12-18,0.0,-5.135,0.3461518518518519,122.27,321.67,2.3923492021467205 -2005-12-19,0.0,-7.825,0.3461518518518519,152.98,239.14,2.240797668979055 -2005-12-20,0.0,-8.24,0.3456693287037037,126.04,252.94,2.110896354835342 -2005-12-21,0.0,-15.760000000000002,0.3456693287037037,191.13,87.63,1.9809950406916284 -2005-12-22,0.87,-16.435,0.3461518518518519,180.49,100.27,1.8402686170359388 -2005-12-23,1.32,-9.87,0.3461518518518519,179.06,171.1,1.742842631428154 -2005-12-24,4.39,-4.2700000000000005,0.3461518518518519,82.63,353.87,1.656241755332345 -2005-12-25,13.02,-3.33,0.3466476851851852,57.69,416.86,1.6021162077724647 -2005-12-26,36.91,-3.84,0.3472057870370371,57.47,403.07,1.5804659887485122 -2005-12-27,31.23,-8.42,0.34771435185185184,98.7,242.92,1.656241755332345 -2005-12-28,0.0,-14.71,0.34794849537037037,202.32,115.67,1.6887170838682732 -2005-12-29,11.93,-8.434999999999999,0.34800000000000003,141.86,205.5,1.5804659887485122 -2005-12-30,17.6,-5.87,0.3480079861111111,105.89,296.84,1.5155153316766559 -2005-12-31,4.79,-15.219999999999999,0.3484641203703704,157.94,108.88,1.537165550700608 -2006-01-01,0.0,-17.785,0.34921886574074074,189.06,79.99,1.5263404411886317 -2006-01-02,1.83,-13.275,0.35015162037037034,139.09,153.08,1.461389784116775 -2006-01-03,0.0,-16.425,0.35120578703703703,195.91,80.0,1.4072642365568944 -2006-01-04,0.0,-17.7,0.3519482638888889,200.54,80.0,1.36396379850899 -2006-01-05,0.0,-16.735,0.35200787037037035,190.0,81.44,1.3206633604610856 -2006-01-06,3.32,-9.255,0.35284641203703704,80.41,239.25,1.2881880319251573 -2006-01-07,1.92,-9.16,0.3541518518518519,91.99,246.03,1.2557127033892288 -2006-01-08,0.0,-17.465,0.35571446759259256,199.28,80.0,1.2232373748533005 -2006-01-09,0.67,-15.785,0.35600000000000004,175.35,120.0,1.1907620463173723 -2006-01-10,5.18,-9.57,0.3564643518518519,106.26,206.71,1.16911182729342 -2006-01-11,0.0,-6.71,0.35815185185185183,172.25,240.11,1.1366364987574917 -2006-01-12,10.94,-1.2149999999999999,0.3599482638888889,71.79,456.66,1.1149862797335395 -2006-01-13,0.04,2.1500000000000004,0.36000787037037035,80.88,601.36,1.0933360607095872 -2006-01-14,14.74,3.155,0.36121863425925926,102.43,575.9,1.1149862797335395 -2006-01-15,26.72,-4.18,0.3637142361111111,163.38,232.02,1.2557127033892288 -2006-01-16,2.84,-12.98,0.36400011574074076,117.61,159.89,1.4830400031407271 -2006-01-17,1.83,-11.43,0.36521898148148146,139.94,182.83,1.75366774094013 -2006-01-18,8.98,-7.0,0.36771435185185186,172.4,179.74,2.013470369227557 -2006-01-19,14.99,-1.005,0.3680083333333333,145.85,369.1,2.240797668979055 -2006-01-20,2.23,-6.055,0.3696696759259259,159.66,277.84,2.457299859218577 -2006-01-21,5.96,-3.385,0.3719483796296296,117.97,350.51,2.619676501898219 -2006-01-22,8.4,-10.86,0.37211041666666667,180.76,156.48,2.7712280350658847 -2006-01-23,0.0,-13.149999999999999,0.3746479166666667,214.08,135.25,2.825353582625765 -2006-01-24,2.0,-8.34,0.3760002314814815,175.61,239.82,2.825353582625765 -2006-01-25,1.0,-5.815,0.3772188657407407,175.54,285.69,2.8037033636018127 -2006-01-26,0.0,-7.99,0.3799997685185186,148.56,262.3,2.7712280350658847 -2006-01-27,0.0,-12.334999999999999,0.3804640046296296,240.41,139.53,2.717102487506004 -2006-01-28,0.0,-7.295,0.383714699074074,263.47,184.13,2.619676501898219 -2006-01-29,0.0,-6.58,0.38400833333333334,228.68,240.13,2.543900735314386 -2006-01-30,0.0,-8.97,0.3866476851851852,167.24,236.61,2.424824530682649 -2006-01-31,0.56,-7.74,0.38799999999999996,118.4,280.05,2.33822365458684 -2006-02-01,4.28,-5.87,0.3901519675925926,112.75,314.46,2.251622778491031 -2006-02-02,0.0,-9.05,0.39200034722222227,272.54,177.3,2.154196792883246 -2006-02-03,1.14,-5.145,0.3936696759259259,186.46,310.9,2.0784210262994134 -2006-02-04,11.53,-0.040000000000000036,0.39600023148148145,127.51,484.15,2.013470369227557 -2006-02-05,12.19,0.8399999999999999,0.3972188657407407,85.23,559.77,2.024295478739533 -2006-02-06,12.47,-1.23,0.40000023148148145,116.38,456.82,2.229972559467079 -2006-02-07,0.0,-8.125,0.4012189814814815,248.69,237.59,2.251622778491031 -2006-02-08,0.0,-11.925,0.40399999999999997,253.98,160.32,2.251622778491031 -2006-02-09,0.0,-15.48,0.40521898148148144,312.65,101.55,2.229972559467079 -2006-02-10,0.0,-18.67,0.4080003472222223,323.12,76.87,2.1974972309311505 -2006-02-11,0.0,-20.025,0.40966990740740744,325.57,67.84,2.132546573859294 -2006-02-12,0.0,-19.405,0.41200046296296294,340.33,49.34,2.045945697763485 -2006-02-13,0.79,-13.280000000000001,0.41464768518518513,289.53,133.19,1.9593448216676759 -2006-02-14,0.25,-10.6,0.4159996527777778,307.5,160.85,1.8727439455718675 -2006-02-15,0.1,-6.31,0.419205324074074,266.95,260.21,1.7969681789880345 -2006-02-16,0.12,-4.945,0.41999976851851856,266.19,289.79,1.75366774094013 -2006-02-17,11.63,-6.27,0.42400011574074076,218.16,256.03,1.8186183980119868 -2006-02-18,9.59,-13.84,0.42400011574074076,269.36,119.5,1.8186183980119868 -2006-02-19,0.0,-20.175,0.428,264.99,80.0,1.7753179599640823 -2006-02-20,0.0,-17.71,0.42846388888888887,351.03,80.12,1.7103673028922255 -2006-02-21,0.0,-12.18,0.43200000000000005,348.82,137.49,1.6454166458203692 -2006-02-22,0.0,-10.52,0.4336695601851852,358.93,160.0,1.5804659887485122 -2006-02-23,0.42,-8.78,0.43600011574074077,347.76,181.78,1.5155153316766559 -2006-02-24,2.94,-6.984999999999999,0.4399488425925926,236.59,247.74,1.461389784116775 -2006-02-25,0.0,-14.635,0.4400003472222222,385.57,101.92,1.4180893460688704 -2006-02-26,0.0,-17.255,0.4440001157407408,348.67,90.5,1.3747889080209663 -2006-02-27,0.0,-17.7,0.4440081018518519,247.88,120.0,1.3314884699730618 -2006-02-28,2.51,-17.235,0.4480001157407407,200.54,119.71,1.2881880319251573 -2006-03-01,1.8,-21.015,0.4501516203703704,392.63,52.29,1.2448875938772528 -2006-03-02,2.83,-18.14,0.452,343.6,80.0,1.2124122653413245 -2006-03-03,0.52,-14.83,0.45599953703703705,404.34,104.59,1.16911182729342 -2006-03-04,0.0,-10.719999999999999,0.45599953703703705,353.13,168.74,1.1366364987574917 -2006-03-05,0.0,-4.715,0.46,297.77,302.62,1.1041611702215632 -2006-03-06,0.0,-3.9099999999999997,0.4604638888888889,334.78,306.05,1.074933374539228 -2006-03-07,0.0,-7.155,0.463999537037037,423.34,186.61,1.0457055788568925 -2006-03-08,0.0,-9.145000000000001,0.46799976851851854,416.77,161.85,1.0153952722233592 -2006-03-09,0.0,-11.08,0.46799976851851854,458.39,118.24,0.9861674765410237 -2006-03-10,3.72,-5.165,0.4719996527777777,314.92,228.25,0.9634347465658739 -2006-03-11,1.29,2.135,0.4719996527777777,202.45,563.02,0.9461145713467122 -2006-03-12,0.32,0.7950000000000004,0.4760001157407408,387.79,394.58,0.9385369946883289 -2006-03-13,3.1,2.755,0.4800005787037037,258.29,513.93,0.9645172575170715 -2006-03-14,8.4,1.88,0.4800005787037037,146.69,579.41,1.0684383088320422 -2006-03-15,10.46,-1.5450000000000002,0.4840002314814815,140.08,456.44,1.2124122653413245 -2006-03-16,1.32,-5.265,0.4840002314814815,253.14,317.32,1.2340624843652768 -2006-03-17,0.0,-7.46,0.48800034722222224,312.62,257.76,1.2557127033892288 -2006-03-18,0.0,-9.055,0.4919994212962963,312.64,224.86,1.2881880319251573 -2006-03-19,0.0,-10.295,0.4919994212962963,403.57,183.1,1.2881880319251573 -2006-03-20,0.0,-8.75,0.4959997685185185,448.76,186.9,1.2990131414371333 -2006-03-21,0.0,-3.12,0.4959997685185185,349.82,342.86,1.277362922413181 -2006-03-22,0.0,0.395,0.4999997685185186,315.18,476.93,1.266537812901205 -2006-03-23,1.36,1.94,0.503999537037037,271.81,552.27,1.277362922413181 -2006-03-24,0.0,2.0300000000000002,0.503999537037037,278.54,563.91,1.2990131414371333 -2006-03-25,0.0,2.215,0.5079996527777778,300.79,558.93,1.3206633604610856 -2006-03-26,0.0,1.655,0.5079996527777778,369.43,504.67,1.3531386889970138 -2006-03-27,0.0,-0.6099999999999999,0.511999537037037,419.34,405.49,1.3964391270449183 -2006-03-28,0.0,-1.1700000000000004,0.5159998842592592,488.13,343.9,1.4397395650928229 -2006-03-29,0.0,1.7650000000000006,0.5159998842592592,529.59,370.69,1.5155153316766559 -2006-03-30,0.0,3.4849999999999994,0.520000462962963,525.64,434.17,1.656241755332345 -2006-03-31,0.0,6.24,0.520000462962963,495.54,577.2,1.8727439455718675 -2006-04-01,0.0,6.935,0.5240002314814816,494.98,608.95,2.1974972309311505 -2006-04-02,3.59,4.475,0.5279998842592593,302.22,600.72,2.8361786921377408 -2006-04-03,0.0,2.265,0.5279998842592593,461.6,477.03,3.399084386760499 -2006-04-04,0.0,3.5500000000000003,0.5319998842592593,405.74,560.77,3.84291387675152 -2006-04-05,5.35,1.1749999999999998,0.5319998842592593,240.77,523.68,4.23261781918266 -2006-04-06,2.63,0.925,0.5359994212962963,289.03,508.57,4.438294899910206 -2006-04-07,2.26,2.4,0.5395353009259259,369.76,542.03,4.579021323565895 -2006-04-08,2.44,1.3599999999999999,0.54,434.67,452.74,4.838823951853322 -2006-04-09,0.0,-0.1200000000000001,0.5439997685185185,434.25,437.87,4.903774608925178 -2006-04-10,0.0,1.02,0.5439997685185185,554.68,385.07,5.001200594532963 -2006-04-11,0.0,3.37,0.5479999999999999,569.75,439.97,5.131101908676677 -2006-04-12,0.0,5.880000000000001,0.5498481481481481,593.46,440.0,5.4017296464760785 -2006-04-13,0.0,8.995,0.5520004629629629,542.37,675.48,5.98628556012279 -2006-04-14,0.66,5.83,0.5559922453703704,511.33,582.26,6.5708414737695 -2006-04-15,1.73,4.289999999999999,0.5560002314814815,527.55,480.01,7.198697825464113 -2006-04-16,14.8,3.08,0.56,226.45,608.08,8.302858995685677 -2006-04-17,6.38,3.1999999999999997,0.5600517361111111,232.25,612.84,8.605962062021009 -2006-04-18,0.0,5.284999999999999,0.5639996527777777,347.86,695.55,8.551836514461128 -2006-04-19,0.0,7.6,0.5663305555555556,493.84,680.76,8.46523563836532 -2006-04-20,0.0,7.965,0.5679997685185185,546.37,588.98,8.367809652757535 -2006-04-21,0.0,5.035,0.5715351851851852,582.97,426.62,8.097181914958131 -2006-04-22,0.0,5.485,0.5719994212962963,606.28,364.8,7.696652863015015 -2006-04-23,0.0,8.395,0.5760005787037037,596.92,436.24,7.252823373023994 -2006-04-24,0.15,8.889999999999999,0.5760005787037037,503.02,632.25,6.863119430592855 -2006-04-25,4.97,6.4350000000000005,0.5800003472222222,238.63,751.27,6.603316802305429 -2006-04-26,2.0,2.3999999999999995,0.5807946759259259,470.54,464.98,6.224437969386264 -2006-04-27,0.0,1.6199999999999999,0.5840005787037037,459.68,456.26,5.8239089174431475 -2006-04-28,0.0,0.73,0.5853530092592593,535.78,361.51,5.390904536964103 -2006-04-29,0.0,2.9850000000000003,0.5880002314814815,587.4,351.68,5.001200594532963 -2006-04-30,0.0,6.96,0.5903311342592593,612.82,380.84,4.6223217616138 -2006-05-01,0.0,10.02,0.5920008101851852,605.77,464.41,4.28674336674254 -2006-05-02,7.56,8.595,0.5943310185185184,353.94,727.73,4.048590957479066 -2006-05-03,11.79,9.03,0.5959997685185184,224.58,920.0,3.9403398623593047 -2006-05-04,0.0,12.58,0.5987809027777777,512.39,800.17,3.691362343583854 -2006-05-05,6.38,13.865,0.5999998842592592,347.35,1034.73,3.528985700904212 -2006-05-06,0.0,10.67,0.6027810185185185,457.13,791.8,3.31248351066469 -2006-05-07,6.99,7.055,0.6039996527777778,329.86,674.44,3.182582196520977 -2006-05-08,0.0,5.15,0.6063304398148148,550.78,420.27,2.998555334817383 -2006-05-09,0.0,9.604999999999999,0.6079995370370371,578.65,473.69,2.8145284731137887 -2006-05-10,1.87,10.88,0.6098476851851852,477.24,680.91,2.641326720922171 -2006-05-11,2.71,11.65,0.6120002314814815,281.02,1021.32,2.5114254067784576 -2006-05-12,5.17,11.204999999999998,0.6133524305555556,291.44,937.67,2.446474749706601 -2006-05-13,0.0,10.955,0.6159914351851852,540.87,607.84,2.33822365458684 -2006-05-14,0.0,12.6,0.6162851851851852,574.28,564.72,2.229972559467079 -2006-05-15,0.0,13.059999999999999,0.6195356481481481,571.62,573.91,2.121721464347318 -2006-05-16,3.25,13.285,0.6199998842592592,458.9,824.31,2.0567708072754614 -2006-05-17,22.95,11.399999999999999,0.6227818287037037,164.04,1120.49,2.5006002972664816 -2006-05-18,14.94,8.995000000000001,0.6240006944444445,176.43,925.56,2.9769051157934308 -2006-05-19,8.67,9.59,0.6253526620370371,176.57,966.07,3.648061905535949 -2006-05-20,15.03,10.530000000000001,0.6278895833333333,141.78,1087.32,4.654797090149728 -2006-05-21,4.39,10.315,0.6280518518518519,165.24,1044.87,5.055326142092844 -2006-05-22,6.0,9.415,0.6303303240740741,152.58,1001.72,5.163577237212605 -2006-05-23,0.2,8.16,0.6319916666666667,238.38,895.87,5.141927018188653 -2006-05-24,0.0,8.915,0.6322856481481481,371.79,821.06,4.979550375509011 -2006-05-25,0.0,10.475000000000001,0.6347809027777778,456.28,808.62,4.773873294781465 -2006-05-26,1.12,13.795,0.6360001157407408,434.39,1035.01,4.524895776006015 -2006-05-27,0.0,16.33,0.6362856481481481,441.4,1176.18,4.23261781918266 -2006-05-28,0.0,13.96,0.6387810185185185,517.88,798.52,3.9511649718712807 -2006-05-29,0.0,16.245,0.6399917824074074,475.94,1054.34,3.658887015047926 -2006-05-30,0.0,13.015,0.6400512731481481,532.63,699.65,3.3666090582245705 -2006-05-31,3.95,16.335,0.6418483796296296,361.95,1111.38,3.1176315394491203 -2006-06-01,1.8,18.485,0.6435354166666667,416.38,1333.03,2.8470038016497177 -2006-06-02,0.0,14.505,0.6439998842592592,508.67,841.17,2.619676501898219 -2006-06-03,3.86,15.195,0.6442856481481481,325.66,1187.46,2.424824530682649 -2006-06-04,5.12,11.3,0.6458482638888889,238.94,1018.11,2.2732729975149835 -2006-06-05,0.0,13.125,0.6471538194444444,431.5,980.46,2.1000712453233654 -2006-06-06,0.0,17.135,0.6479927083333333,497.91,1024.91,1.9485197121557 -2006-06-07,0.0,18.63,0.6480521990740741,490.36,1139.44,1.8077932885000105 -2006-06-08,4.57,15.61,0.6487947916666666,317.16,1193.6,1.6778919743562972 -2006-06-09,8.99,11.905000000000001,0.6498487268518519,189.34,1145.91,1.6454166458203692 -2006-06-10,10.21,13.9,0.6507814814814814,199.12,1289.04,1.6670668648443212 -2006-06-11,24.74,14.8,0.6515357638888889,219.45,1330.45,2.0026452597155804 -2006-06-12,3.07,15.89,0.6519921296296297,266.4,1381.54,1.9485197121557 -2006-06-13,1.57,17.14,0.6520001157407407,402.85,1359.09,1.9485197121557 -2006-06-14,0.0,14.760000000000002,0.6520517361111111,506.38,961.99,1.9268694931317478 -2006-06-15,0.0,14.385,0.6522856481481482,522.56,874.05,1.851093726547915 -2006-06-16,0.0,16.669999999999998,0.6527943287037037,512.7,1013.62,1.7861430694760585 -2006-06-17,0.0,19.605,0.653352662037037,453.54,1419.58,1.7211924124042017 -2006-06-18,0.0,22.14,0.653848611111111,429.44,1725.32,1.6345915363083927 -2006-06-19,0.0,23.315,0.653848611111111,420.74,1839.96,1.5912910982604884 -2006-06-20,13.81,22.08,0.653848611111111,300.59,1791.92,1.6887170838682732 -2006-06-21,15.7,17.25,0.6543310185185185,302.71,1334.99,1.8186183980119868 -2006-06-22,0.0,15.16,0.6543310185185185,458.1,1058.17,1.6778919743562972 -2006-06-23,4.05,17.375,0.653848611111111,254.91,1434.97,1.6237664267964167 -2006-06-24,0.0,14.8,0.653848611111111,480.12,974.8,1.5588157697245602 -2006-06-25,0.0,17.54,0.653352662037037,464.16,1203.31,1.461389784116775 -2006-06-26,0.0,18.945,0.653352662037037,398.01,1456.76,1.3747889080209663 -2006-06-27,8.82,20.28,0.6527943287037037,247.41,1749.88,1.36396379850899 -2006-06-28,0.0,22.055,0.6522856481481482,296.7,2029.6,1.3314884699730618 -2006-06-29,5.98,20.84,0.6520517361111111,280.92,1728.68,1.266537812901205 -2006-06-30,15.27,19.015,0.6519921296296297,253.1,1630.95,1.2990131414371333 -2006-07-01,7.19,15.370000000000001,0.6518894675925926,268.54,1279.48,1.3531386889970138 -2006-07-02,6.43,14.025,0.6511538194444445,356.05,967.37,1.3098382509491096 -2006-07-03,12.19,16.59,0.6503311342592593,320.53,1260.41,1.3098382509491096 -2006-07-04,6.76,17.62,0.6493528935185184,313.41,1349.23,1.36396379850899 -2006-07-05,5.88,19.88,0.6482863425925927,264.3,1698.2,1.36396379850899 -2006-07-06,0.0,17.189999999999998,0.6480008101851852,436.52,1287.32,1.266537812901205 -2006-07-07,0.0,17.07,0.647890162037037,455.46,1241.47,1.2124122653413245 -2006-07-08,0.0,19.295,0.64678125,473.44,1343.84,1.179936936805396 -2006-07-09,0.0,20.685000000000002,0.645352199074074,439.56,1547.7,1.1366364987574917 -2006-07-10,0.0,21.994999999999997,0.6440515046296297,355.61,1890.18,1.0825109511976112 -2006-07-11,2.38,21.215,0.6438894675925926,384.0,1659.79,1.0738508635880302 -2006-07-12,6.46,21.255,0.6427809027777778,294.76,1709.72,1.0305504255401257 -2006-07-13,8.76,21.125,0.6407940972222222,268.55,1771.76,0.9818374327362333 -2006-07-14,1.34,21.55,0.6399997685185186,376.48,1761.06,0.9471970822979098 -2006-07-15,1.16,20.975,0.6395354166666667,427.27,1511.94,0.9006491113964125 -2006-07-16,9.13,22.345,0.6378482638888888,295.84,1819.24,0.949362104200305 -2006-07-17,3.75,24.134999999999998,0.6360001157407408,273.44,2118.07,0.9255468632739575 -2006-07-18,5.33,22.265,0.6355359953703703,278.35,1884.86,0.9147217537619815 -2006-07-19,0.0,17.645,0.6338483796296296,473.31,1203.21,0.871421315714077 -2006-07-20,0.0,18.935,0.6319996527777777,479.23,1264.41,0.8346159433733582 -2006-07-21,0.0,20.3,0.6315355324074073,400.64,1599.7,0.7880679724718609 -2006-07-22,5.33,19.645,0.6287943287037038,295.8,1563.79,0.7404374906191661 -2006-07-23,7.7,18.46,0.628,207.24,1666.58,0.7393549796679684 -2006-07-24,3.09,16.54,0.6267813657407407,217.11,1507.58,0.7285298701559924 -2006-07-25,3.19,18.52,0.624052199074074,227.86,1635.67,0.720952293497609 -2006-07-26,10.2,20.375,0.6238902777777778,238.27,1804.07,0.726364848253597 -2006-07-27,0.0,22.505,0.6207944444444444,353.01,1969.91,0.7523451110823397 -2006-07-28,27.48,23.27,0.6199998842592592,239.31,2147.2,0.9222993304203646 -2006-07-29,1.23,21.990000000000002,0.6183303240740741,359.93,1855.23,0.7664177534479087 -2006-07-30,0.0,17.78,0.615999537037037,448.33,1278.77,0.7480150672775493 -2006-07-31,0.0,17.775,0.6151532407407407,418.57,1343.21,0.6993020744736568 -2006-08-01,0.0,18.369999999999997,0.6120002314814815,456.19,1288.94,0.6668267459377285 -2006-08-02,10.06,20.419999999999998,0.6115356481481482,267.79,1715.23,0.6473415488161715 -2006-08-03,0.0,20.725,0.6080510416666667,387.26,1677.01,0.6256913297922193 -2006-08-04,0.0,20.55,0.6078891203703704,403.36,1607.95,0.6256913297922193 -2006-08-05,11.6,17.169999999999998,0.6042853009259259,319.04,1269.7,0.7079621620832377 -2006-08-06,0.0,15.25,0.6039916666666666,466.4,1016.67,0.6592491692793452 -2006-08-07,0.0,18.34,0.6002854166666667,418.3,1368.14,0.651671592620962 -2006-08-08,9.74,18.32,0.5999998842592592,282.49,1461.2,0.6949720306688663 -2006-08-09,0.0,15.264999999999999,0.5962851851851851,468.36,997.54,0.6765693444985069 -2006-08-10,4.7,15.875,0.5959997685185184,294.16,1228.5,0.6733218116449141 -2006-08-11,7.31,12.705,0.5920523148148148,315.25,934.77,0.6657442349865309 -2006-08-12,2.31,11.635000000000002,0.591992824074074,377.94,902.41,0.6321863954994049 -2006-08-13,2.23,12.13,0.5880002314814815,345.59,937.65,0.6029585998170693 -2006-08-14,0.19,13.17,0.5879922453703703,432.88,935.17,0.5748133150859315 -2006-08-15,2.25,17.44,0.5840005787037037,371.62,1326.23,0.5585756508179673 -2006-08-16,2.11,16.79,0.5835359953703704,379.77,1231.86,0.5293478551356319 -2006-08-17,4.8,15.63,0.5800003472222222,315.76,1124.36,0.5044501032580868 -2006-08-18,0.0,16.555,0.5787818287037036,453.67,1082.07,0.48496490613652976 -2006-08-19,0.0,18.775,0.5760005787037037,425.28,1329.08,0.47413979662455363 -2006-08-20,2.31,18.4,0.5738478009259259,317.92,1446.68,0.47413979662455363 -2006-08-21,7.73,16.795,0.5719994212962963,233.56,1412.69,0.4557371104541943 -2006-08-22,0.16,16.37,0.5680513888888888,411.6,1176.56,0.4330043804790444 -2006-08-23,0.0,13.434999999999999,0.5679997685185185,416.21,939.86,0.4081066286014994 -2006-08-24,0.0,9.504999999999999,0.5639996527777777,407.07,732.2,0.3821263657727567 -2006-08-25,0.0,9.530000000000001,0.5639916666666667,445.95,653.16,0.3604761467488045 -2006-08-26,0.0,10.565,0.56,445.71,694.3,0.3420734605784451 -2006-08-27,0.0,11.065000000000001,0.558330324074074,443.17,716.59,0.3323308620176666 -2006-08-28,3.98,12.075,0.5560002314814815,234.84,993.83,0.33882592772485226 -2006-08-29,1.56,13.704999999999998,0.5520519675925926,219.9,1247.94,0.3204232415544929 -2006-08-30,0.0,15.11,0.5520004629629629,274.59,1290.34,0.30093804443293587 -2006-08-31,0.0,12.485,0.5479999999999999,369.31,920.86,0.27928782540898367 -2006-09-01,0.0,12.965,0.5479921296296296,369.35,948.89,0.26413267209221714 -2006-09-02,0.0,12.125,0.5439997685185185,427.23,781.57,0.25655509543383387 -2006-09-03,0.0,13.194999999999999,0.540794212962963,399.27,903.0,0.25006002972664815 -2006-09-04,13.0,13.565000000000001,0.54,198.26,1172.13,0.2825353582625765 -2006-09-05,0.8,14.344999999999999,0.5359994212962963,299.2,1162.97,0.28686540206736694 -2006-09-06,0.0,16.09,0.5359994212962963,325.45,1257.99,0.2738752706529956 -2006-09-07,0.0,12.639999999999999,0.5319998842592593,392.02,865.51,0.2598026282874267 -2006-09-08,0.0,13.89,0.5298482638888888,405.59,894.81,0.253307562580241 -2006-09-09,3.72,13.945,0.5279998842592593,256.31,1052.77,0.24789500782425294 -2006-09-10,7.2,8.375,0.5240002314814816,275.49,676.8,0.24031743116586965 -2006-09-11,0.0,8.09,0.5240002314814816,410.44,578.23,0.22949232165389355 -2006-09-12,0.0,9.125,0.520000462962963,418.41,582.73,0.2165021902395222 -2006-09-13,0.0,10.959999999999999,0.5183310185185186,412.73,653.38,0.20567708072754615 -2006-09-14,1.52,12.275,0.5159998842592592,355.02,861.08,0.20351205882515092 -2006-09-15,0.21,14.65,0.511999537037037,252.9,1229.08,0.19809950406916285 -2006-09-16,0.0,15.584999999999999,0.511999537037037,352.39,1064.47,0.1916044383619772 -2006-09-17,0.0,16.075000000000003,0.5079996527777778,330.82,1158.53,0.18619188360598912 -2006-09-18,0.68,17.245,0.5067805555555556,246.79,1420.51,0.1829443507523963 -2006-09-19,0.23,17.785,0.503999537037037,272.6,1415.69,0.17969681789880346 -2006-09-20,10.67,15.989999999999998,0.4999997685185186,193.51,1306.48,0.20026452597155808 -2006-09-21,2.86,9.95,0.4999997685185186,195.77,894.44,0.19701699311796522 -2006-09-22,0.0,6.62,0.4959997685185185,310.05,627.19,0.1840268617035939 -2006-09-23,0.44,7.484999999999999,0.49366840277777774,299.16,657.1,0.17644928504521062 -2006-09-24,4.83,10.865,0.4919994212962963,185.16,933.06,0.20026452597155808 -2006-09-25,9.36,9.485,0.48800034722222224,245.76,725.65,0.23273985450748638 -2006-09-26,5.01,7.87,0.48800034722222224,204.28,732.87,0.21541967928832462 -2006-09-27,4.21,7.59,0.4840002314814815,262.02,624.62,0.21000712453233655 -2006-09-28,0.0,10.625,0.48167002314814816,325.02,770.71,0.20134703692275568 -2006-09-29,12.32,11.295,0.4800005787037037,199.06,918.8,0.23598738736107921 -2006-09-30,21.88,8.745,0.4760001157407408,195.38,779.19,0.35289857009042125 -2006-10-01,0.0,7.76,0.4760001157407408,296.55,660.66,0.3020205553841335 -2006-10-02,5.39,8.424999999999999,0.4719996527777777,172.93,800.85,0.28578289111616934 -2006-10-03,2.1,8.225,0.4701513888888889,181.21,841.52,0.28361786921377413 -2006-10-04,11.04,9.344999999999999,0.46799976851851854,163.28,879.93,0.2890304239697622 -2006-10-05,21.95,7.795,0.463999537037037,172.95,765.54,0.42109676001587076 -2006-10-06,0.0,4.605,0.463999537037037,312.26,502.62,0.41027165050389464 -2006-10-07,0.0,5.790000000000001,0.46,335.75,479.51,0.4081066286014994 -2006-10-08,0.0,9.17,0.45920532407407405,332.85,591.96,0.41027165050389464 -2006-10-09,0.0,13.55,0.45599953703703705,294.81,920.0,0.41027165050389464 -2006-10-10,0.0,8.62,0.45200810185185186,306.44,620.75,0.40702411765030183 -2006-10-11,0.0,3.7199999999999998,0.452,291.91,462.08,0.40485909574790657 -2006-10-12,13.21,7.2250000000000005,0.4480001157407407,171.18,715.16,0.5813083807931171 -2006-10-13,19.0,7.055,0.4480001157407407,153.37,745.53,0.8411110090805439 -2006-10-14,0.0,3.965,0.4440001157407408,292.47,469.69,0.8367809652757534 -2006-10-15,0.0,3.79,0.44166932870370373,271.31,484.9,0.8746688485676697 -2006-10-16,0.0,3.6450000000000005,0.4400003472222222,251.94,519.94,0.9136392428107837 -2006-10-17,0.0,3.6350000000000002,0.43611064814814815,286.72,440.35,0.9331244399323408 -2006-10-18,10.13,5.22,0.43600011574074077,174.54,594.75,1.0543656664664733 -2006-10-19,9.24,8.105,0.43200000000000005,88.99,916.36,1.158286717781444 -2006-10-20,21.58,9.09,0.43194837962962956,82.77,975.05,1.3314884699730618 -2006-10-21,37.43,8.08,0.428,88.49,903.42,3.399084386760499 -2006-10-22,3.97,3.78,0.4261517361111111,123.3,621.66,4.200142490646731 -2006-10-23,1.88,4.265,0.42400011574074076,130.1,660.47,4.438294899910206 -2006-10-24,2.1,3.925,0.42121863425925926,87.93,707.83,4.492420447470086 -2006-10-25,2.0,4.075,0.41999976851851856,102.71,702.04,4.416644680886253 -2006-10-26,5.08,2.4699999999999998,0.4164640046296296,73.87,629.06,4.275918257230564 -2006-10-27,0.0,0.06000000000000005,0.4159996527777778,140.67,496.45,4.059416066991042 -2006-10-28,1.9,-0.48,0.4121109953703704,223.82,400.0,3.8970394243114 -2006-10-29,21.24,3.005,0.41200046296296294,155.04,535.36,4.330043804790445 -2006-10-30,2.58,2.955,0.4080084490740741,96.67,636.81,4.200142490646731 -2006-10-31,0.23,1.745,0.40794895833333333,148.14,556.63,4.113541614550923 -2006-11-01,2.4,3.425,0.40399999999999997,174.66,572.1,3.994465409919185 -2006-11-02,0.0,2.27,0.4037145833333334,200.07,519.43,3.799613438703615 -2006-11-03,0.0,-1.0,0.40000023148148145,221.81,359.87,3.583111248464093 -2006-11-04,0.0,-2.125,0.39971435185185183,143.18,420.21,3.3666090582245705 -2006-11-05,0.0,-2.8949999999999996,0.3960082175925926,182.39,353.6,3.1392817584730723 -2006-11-06,3.96,-2.385,0.39571446759259266,115.61,400.0,2.9660800062814543 -2006-11-07,0.0,-0.9300000000000002,0.3921108796296296,179.03,439.52,2.7928782540898367 -2006-11-08,3.64,3.735,0.3919487268518519,123.19,616.85,2.6629769399461236 -2006-11-09,9.82,6.75,0.3884644675925926,81.59,840.75,2.6738020494580996 -2006-11-10,1.84,6.125,0.38799999999999996,124.49,778.86,2.5872011733622906 -2006-11-11,0.66,3.185,0.3848466435185185,174.95,566.6,2.4897751877545056 -2006-11-12,14.82,2.325,0.3840003472222222,68.22,631.4,2.6088513923862426 -2006-11-13,6.74,3.0199999999999996,0.38166932870370374,79.37,646.14,2.7928782540898367 -2006-11-14,24.0,6.109999999999999,0.3799997685185186,100.2,785.25,3.464035043832355 -2006-11-15,19.5,9.675,0.37920590277777777,85.21,1029.06,4.503245556982062 -2006-11-16,3.15,10.495,0.37611087962962964,121.33,1036.81,4.903774608925178 -2006-11-17,12.29,12.335,0.3759486111111111,138.07,1028.05,5.542456070131769 -2006-11-18,4.73,6.085,0.37321898148148147,154.19,622.25,5.7806084793952435 -2006-11-19,0.0,1.1150000000000002,0.3719998842592593,126.82,551.38,5.758958260371291 -2006-11-20,4.05,-0.65,0.37120578703703705,72.59,512.76,5.661532274763506 -2006-11-21,0.0,-2.61,0.3684645833333333,116.66,422.07,5.445030084523984 -2006-11-22,0.0,-1.17,0.3680003472222222,167.25,425.59,5.163577237212605 -2006-11-23,0.0,-1.04,0.36615196759259255,194.58,359.72,4.882124389901226 -2006-11-24,0.0,-1.2850000000000001,0.3644642361111111,186.27,355.94,4.557371104541943 -2006-11-25,0.0,-2.32,0.36400011574074076,193.57,291.26,4.265093147718588 -2006-11-26,0.0,-0.004999999999999893,0.3621513888888889,183.32,377.75,3.9728151908952327 -2006-11-27,0.0,-0.125,0.3604638888888889,157.19,440.01,3.6805372340718776 -2006-11-28,1.82,-4.455,0.3599998842592593,180.8,296.9,3.420734605784451 -2006-11-29,3.37,-3.125,0.35920578703703704,142.21,329.22,3.1934073060329524 -2006-11-30,4.84,3.1799999999999997,0.3572189814814815,124.12,561.21,3.0310306633533117 -2006-12-01,12.56,2.3249999999999997,0.35611041666666665,129.81,501.51,3.1284566489610963 -2006-12-02,10.91,-2.91,0.3559483796296296,88.85,405.23,3.0418557728652873 -2006-12-03,1.96,-6.14,0.3546476851851852,143.59,291.21,2.8903042396976217 -2006-12-04,1.81,-6.33,0.35321898148148145,138.26,286.74,2.7495778160419326 -2006-12-05,0.0,-9.8,0.35211030092592593,168.58,196.53,2.5763760638503146 -2006-12-06,0.0,-12.100000000000001,0.35199988425925927,197.03,120.03,2.424824530682649 -2006-12-07,2.79,-5.57,0.35171423611111113,162.38,252.37,2.327398545074864 -2006-12-08,0.0,-5.455,0.3506474537037037,161.83,276.23,2.1650219023952224 -2006-12-09,0.0,-9.79,0.34966921296296294,172.53,196.5,2.0675959167874374 -2006-12-10,0.0,-3.795,0.3488465277777778,153.11,325.97,1.9809950406916284 -2006-12-11,0.0,-1.35,0.3481105324074074,103.94,452.48,1.8835690550838433 -2006-12-12,0.0,-6.08,0.3480079861111111,175.98,235.61,1.7861430694760585 -2006-12-13,0.0,-7.715,0.34794849537037037,184.48,200.0,1.6887170838682732 -2006-12-14,2.0,-1.1150000000000002,0.34771435185185184,146.4,399.31,1.6454166458203692 -2006-12-15,0.0,2.135,0.3472057870370371,87.46,599.6,1.5912910982604884 -2006-12-16,0.38,1.185,0.3466476851851852,89.18,552.95,1.537165550700608 -2006-12-17,0.0,-1.0450000000000002,0.3466476851851852,146.62,396.46,1.4830400031407271 -2006-12-18,0.0,-0.29000000000000004,0.3461518518518519,103.39,476.83,1.4180893460688704 -2006-12-19,0.0,-5.640000000000001,0.3461518518518519,142.21,278.68,1.3423135794850378 -2006-12-20,0.0,-10.565,0.3456693287037037,145.34,186.2,1.2881880319251573 -2006-12-21,0.0,-5.975,0.3456693287037037,165.72,238.09,1.2448875938772528 -2006-12-22,0.0,-5.36,0.3461518518518519,149.16,273.76,1.179936936805396 -2006-12-23,10.22,-5.2749999999999995,0.3461518518518519,115.28,280.0,1.158286717781444 -2006-12-24,18.69,-0.08000000000000007,0.3461518518518519,84.95,471.39,1.2340624843652768 -2006-12-25,0.0,-0.25,0.3466476851851852,90.35,499.88,1.2015871558293483 -2006-12-26,6.93,-1.42,0.3472057870370371,68.9,461.43,1.2015871558293483 -2006-12-27,12.33,-7.25,0.34771435185185184,107.66,261.5,1.2124122653413245 -2006-12-28,0.0,-12.985000000000001,0.34794849537037037,167.99,159.25,1.179936936805396 -2006-12-29,0.0,-15.17,0.34800000000000003,173.37,120.0,1.1366364987574917 -2006-12-30,0.0,-13.670000000000002,0.3480079861111111,178.75,124.65,1.0933360607095872 -2006-12-31,0.0,-9.71,0.3484641203703704,147.53,200.5,1.057613199320066 -2007-01-01,2.1,-9.219999999999999,0.34921886574074074,159.41,160.0,1.0273028926865329 -2007-01-02,3.2,-4.035,0.35015162037037034,108.34,320.88,1.0164777831745568 -2007-01-03,0.0,-6.065,0.35120578703703703,178.75,240.1,1.0067351846137784 -2007-01-04,0.0,-1.955,0.3519482638888889,169.79,340.15,0.9720948341754548 -2007-01-05,2.74,2.56,0.35200787037037035,112.78,560.0,0.960187213712281 -2007-01-06,9.01,4.13,0.35284641203703704,73.04,660.07,1.0565306883688685 -2007-01-07,7.16,2.3699999999999997,0.3541518518518519,86.06,567.43,1.1907620463173723 -2007-01-08,6.43,-0.97,0.35571446759259256,80.38,441.21,1.2232373748533005 -2007-01-09,11.57,-1.055,0.35600000000000004,66.13,468.83,1.3098382509491096 -2007-01-10,2.54,-5.73,0.3564643518518519,116.15,296.82,1.3206633604610856 -2007-01-11,2.45,-11.165,0.35815185185185183,166.2,160.02,1.36396379850899 -2007-01-12,1.88,-8.745000000000001,0.3599482638888889,174.56,203.05,1.3747889080209663 -2007-01-13,2.0,-5.24,0.36000787037037035,152.16,290.18,1.3531386889970138 -2007-01-14,0.0,-14.76,0.36121863425925926,224.45,91.89,1.2990131414371333 -2007-01-15,1.18,-13.815,0.3637142361111111,190.91,123.75,1.2340624843652768 -2007-01-16,7.39,-15.52,0.36400011574074076,89.85,144.84,1.16911182729342 -2007-01-17,0.0,-22.03,0.36521898148148146,202.98,66.98,1.1041611702215632 -2007-01-18,0.0,-22.005,0.36771435185185186,220.23,41.46,1.048953111710485 -2007-01-19,1.06,-13.395,0.3680083333333333,196.51,132.44,0.9980750970041974 -2007-01-20,2.3,-10.325,0.3696696759259259,129.93,210.65,0.9526096370538978 -2007-01-21,0.0,-16.09,0.3719483796296296,164.28,119.48,0.9147217537619815 -2007-01-22,0.0,-18.015,0.37211041666666667,227.57,80.0,0.8746688485676697 -2007-01-23,0.0,-16.785,0.3746479166666667,255.26,80.0,0.8421935200317415 -2007-01-24,0.0,-13.845,0.3760002314814815,257.0,102.71,0.8086356805446154 -2007-01-25,0.0,-17.509999999999998,0.3772188657407407,260.44,80.0,0.7794078848622801 -2007-01-26,0.0,-21.995,0.3799997685185186,216.81,78.29,0.754510132984735 -2007-01-27,0.0,-21.0,0.3804640046296296,219.96,80.0,0.7285298701559924 -2007-01-28,0.0,-16.915,0.383714699074074,260.32,80.0,0.7068796511320401 -2007-01-29,0.0,-17.990000000000002,0.38400833333333334,274.43,80.0,0.6841469211568902 -2007-01-30,0.0,-20.835,0.3866476851851852,264.07,62.53,0.6635792130841357 -2007-01-31,0.0,-21.725,0.38799999999999996,270.5,40.0,0.6440940159625786 -2007-02-01,0.0,-18.67,0.3901519675925926,286.53,77.91,0.6246088188410216 -2007-02-02,0.0,-12.115,0.39200034722222227,280.76,125.69,0.6062061326706623 -2007-02-03,6.28,-7.9799999999999995,0.3936696759259259,178.39,213.91,0.5888859574515005 -2007-02-04,0.0,-12.84,0.39600023148148145,258.62,128.51,0.5737308041347339 -2007-02-05,0.0,-18.24,0.3972188657407407,224.66,82.45,0.5574931398667697 -2007-02-06,0.0,-20.855,0.40000023148148145,163.64,80.0,0.5412554755988056 -2007-02-07,0.0,-20.05,0.4012189814814815,268.86,80.0,0.5271828332332367 -2007-02-08,0.0,-19.299999999999997,0.40399999999999997,257.51,80.0,0.5120276799164701 -2007-02-09,0.0,-17.939999999999998,0.40521898148148144,217.48,100.34,0.5001200594532963 -2007-02-10,0.0,-15.454999999999998,0.4080003472222223,189.68,133.79,0.4860474170877274 -2007-02-11,0.0,-18.375,0.40966990740740744,313.61,80.0,0.47413979662455363 -2007-02-12,0.0,-15.355,0.41200046296296294,314.39,86.32,0.46223217616137996 -2007-02-13,0.0,-16.41,0.41464768518518513,285.82,98.5,0.45032455569820623 -2007-02-14,4.19,-15.525,0.4159996527777778,276.4,111.23,0.4449120009422182 -2007-02-15,25.62,-11.165,0.419205324074074,195.95,160.15,0.45681962140539184 -2007-02-16,3.53,-14.379999999999999,0.41999976851851856,234.53,120.0,0.4600671542589847 -2007-02-17,0.0,-12.025,0.42400011574074076,252.79,162.07,0.45140706664940383 -2007-02-18,0.0,-10.32,0.42400011574074076,317.7,160.6,0.4394994461862301 -2007-02-19,1.0,-13.565,0.428,305.25,120.0,0.42975684762545163 -2007-02-20,0.0,-19.755000000000003,0.42846388888888887,344.36,77.07,0.42109676001587076 -2007-02-21,0.21,-14.395,0.43200000000000005,285.49,123.34,0.41243667240628984 -2007-02-22,0.0,-13.97,0.4336695601851852,352.07,112.22,0.4037765847967089 -2007-02-23,0.0,-14.535,0.43600011574074077,368.96,97.03,0.3972815190895233 -2007-02-24,1.7,-9.635,0.4399488425925926,274.8,195.42,0.38970394243114004 -2007-02-25,0.0,-7.255000000000001,0.4400003472222222,268.03,247.63,0.384291387675152 -2007-02-26,0.0,-9.865,0.4440001157407408,390.61,142.68,0.37779632196796625 -2007-02-27,0.0,-8.445,0.4440081018518519,414.09,139.24,0.37887883291916397 -2007-02-28,0.0,-6.29,0.4480001157407407,380.11,204.94,0.37238376721197824 -2007-03-01,0.0,-11.28,0.4501516203703704,409.06,120.79,0.3658887015047926 -2007-03-02,2.69,-13.81,0.452,411.31,80.05,0.3637236796023974 -2007-03-03,15.35,-7.745,0.45599953703703705,264.85,209.33,0.37238376721197824 -2007-03-04,4.53,-3.265,0.45599953703703705,213.8,343.11,0.37346627816317585 -2007-03-05,3.61,-6.25,0.46,281.32,247.38,0.3691362343583854 -2007-03-06,0.0,-16.105,0.4604638888888889,381.54,104.13,0.3637236796023974 -2007-03-07,0.0,-21.81,0.463999537037037,334.17,80.0,0.3593936357976069 -2007-03-08,0.0,-20.715,0.46799976851851854,307.58,80.0,0.3550635919928165 -2007-03-09,0.0,-18.475,0.46799976851851854,378.35,80.0,0.3518160591392236 -2007-03-10,0.0,-8.995000000000001,0.4719996527777777,441.26,159.98,0.3496510372368284 -2007-03-11,0.34,-0.4950000000000001,0.4719996527777777,328.77,401.27,0.34748601533443313 -2007-03-12,0.0,-2.235,0.4760001157407408,392.38,311.44,0.3464035043832356 -2007-03-13,0.0,-1.1800000000000002,0.4800005787037037,352.92,367.95,0.34748601533443313 -2007-03-14,5.01,2.165,0.4800005787037037,197.75,547.98,0.35614610294401405 -2007-03-15,6.29,2.115,0.4840002314814815,238.53,510.16,0.364806190553595 -2007-03-16,5.32,-8.754999999999999,0.4840002314814815,362.3,153.46,0.37887883291916397 -2007-03-17,26.75,-7.71,0.48800034722222224,314.1,206.84,0.4037765847967089 -2007-03-18,25.69,-6.035,0.4919994212962963,186.8,302.34,0.45248957760060143 -2007-03-19,3.09,-8.59,0.4919994212962963,324.51,216.78,0.5033675923068892 -2007-03-20,4.89,-7.390000000000001,0.4959997685185185,266.25,247.31,0.5585756508179673 -2007-03-21,0.05,-11.17,0.4959997685185185,537.83,120.0,0.5986285560122789 -2007-03-22,1.9,-4.945,0.4999997685185186,434.85,255.59,0.6148662202802432 -2007-03-23,2.03,1.855,0.503999537037037,373.49,484.63,0.648424059767369 -2007-03-24,0.0,-3.4699999999999998,0.503999537037037,481.2,280.0,0.6808993883032974 -2007-03-25,0.0,-3.8,0.5079996527777778,540.16,238.19,0.710127183985633 -2007-03-26,0.0,-1.2249999999999996,0.5079996527777778,540.49,282.94,0.7285298701559924 -2007-03-27,0.0,1.725,0.511999537037037,384.63,479.02,0.7426025125215612 -2007-03-28,0.0,0.11999999999999966,0.5159998842592592,342.76,453.65,0.7729128191550944 -2007-03-29,0.0,-2.8,0.5159998842592592,368.75,352.41,0.7869854615206633 -2007-03-30,0.0,-0.75,0.520000462962963,436.18,389.41,0.8075531695934178 -2007-03-31,0.0,-2.535,0.520000462962963,511.19,305.11,0.8313684105197653 -2007-04-01,0.0,-3.4949999999999997,0.5240002314814816,565.14,246.13,0.8519361185925199 -2007-04-02,0.0,-1.3000000000000003,0.5279998842592593,506.94,341.23,0.8725038266652746 -2007-04-03,5.01,-1.455,0.5279998842592593,245.54,438.87,0.8746688485676697 -2007-04-04,0.0,-2.525,0.5319998842592593,389.37,365.95,0.8649262500068913 -2007-04-05,12.33,-1.335,0.5319998842592593,260.77,430.21,0.8800814033236579 -2007-04-06,19.49,-1.825,0.5359994212962963,196.82,442.31,0.9071441771035982 -2007-04-07,0.0,-4.155,0.5395353009259259,429.82,316.09,0.9147217537619815 -2007-04-08,0.0,-3.84,0.54,350.17,354.75,0.9049791552012029 -2007-04-09,3.71,-2.595,0.5439997685185185,226.72,413.86,0.882246425226053 -2007-04-10,0.0,-3.9650000000000003,0.5439997685185185,534.68,288.95,0.8605962062021009 -2007-04-11,0.0,-4.08,0.5479999999999999,606.72,252.07,0.8432760309829391 -2007-04-12,0.0,-2.965,0.5498481481481481,636.1,242.64,0.8367809652757534 -2007-04-13,15.69,-0.4900000000000002,0.5520004629629629,355.24,413.96,0.8941540456892267 -2007-04-14,6.3,0.25,0.5559922453703704,284.01,478.6,0.9331244399323408 -2007-04-15,0.0,0.18999999999999995,0.5560002314814815,555.33,400.0,0.9461145713467122 -2007-04-16,8.27,0.7049999999999998,0.56,282.39,497.62,0.9558571699074907 -2007-04-17,16.79,0.275,0.5600517361111111,177.54,541.15,1.0089002065161736 -2007-04-18,0.0,2.64,0.5639996527777777,370.87,581.79,1.0619432431248563 -2007-04-19,0.0,4.23,0.5663305555555556,631.18,459.36,1.16911182729342 -2007-04-20,0.0,5.59,0.5679997685185185,667.94,430.35,1.3423135794850378 -2007-04-21,0.0,6.07,0.5715351851851852,656.8,475.5,1.6345915363083927 -2007-04-22,0.0,5.395,0.5719994212962963,671.02,414.29,2.0675959167874374 -2007-04-23,0.0,10.469999999999999,0.5760005787037037,659.53,593.14,3.0635059918892393 -2007-04-24,1.23,9.455,0.5760005787037037,629.08,640.35,4.87129928038925 -2007-04-25,0.0,1.6549999999999998,0.5800003472222222,563.04,440.0,6.235263078898241 -2007-04-26,0.0,2.9299999999999997,0.5807946759259259,624.99,439.51,7.112096949368305 -2007-04-27,0.0,4.744999999999999,0.5840005787037037,595.32,518.62,7.696652863015015 -2007-04-28,4.77,4.775,0.5853530092592593,321.53,635.16,8.07553169593418 -2007-04-29,2.23,5.075,0.5880002314814815,273.23,720.05,8.23790833861382 -2007-04-30,6.31,3.5300000000000002,0.5903311342592593,200.06,664.92,8.476060747877295 -2007-05-01,8.32,2.84,0.5920008101851852,290.73,585.52,8.876589799820412 -2007-05-02,0.0,4.09,0.5943310185185184,559.57,541.39,8.995666004452149 -2007-05-03,0.0,4.495,0.5959997685185184,485.03,603.31,9.028141332988076 -2007-05-04,0.0,4.27,0.5987809027777777,458.82,607.44,8.789988923724602 -2007-05-05,0.14,4.7,0.5999998842592592,529.4,582.79,8.519361185925199 -2007-05-06,0.0,4.484999999999999,0.6027810185185185,582.82,533.14,8.259558557637773 -2007-05-07,0.0,8.31,0.6039996527777778,647.29,593.94,8.064706586422203 -2007-05-08,0.0,15.229999999999999,0.6063304398148148,605.29,986.98,8.010581038862322 -2007-05-09,0.0,15.525,0.6079995370370371,643.37,869.43,7.98893081983837 -2007-05-10,0.0,16.765,0.6098476851851852,650.92,880.33,7.826554177158728 -2007-05-11,0.41,17.18,0.6120002314814815,577.59,1091.24,7.577576658383278 -2007-05-12,0.9,9.629999999999999,0.6133524305555556,576.51,671.53,7.252823373023994 -2007-05-13,0.0,5.01,0.6159914351851852,591.25,520.0,6.852294321080879 -2007-05-14,0.0,5.875,0.6162851851851852,604.53,525.87,6.419289940601834 -2007-05-15,2.82,8.98,0.6195356481481481,445.31,759.07,6.007935779146742 -2007-05-16,1.49,7.43,0.6199998842592592,313.59,799.93,5.607406727203625 -2007-05-17,4.71,3.6799999999999997,0.6227818287037037,290.15,596.79,5.239353003796438 -2007-05-18,1.34,2.46,0.6240006944444445,450.83,492.86,4.882124389901226 -2007-05-19,8.0,5.91,0.6253526620370371,347.78,640.11,4.579021323565895 -2007-05-20,8.63,8.9,0.6278895833333333,328.83,818.07,4.384169352350325 -2007-05-21,12.58,4.739999999999999,0.6280518518518519,353.96,598.56,4.438294899910206 -2007-05-22,0.0,5.645,0.6303303240740741,628.13,517.93,4.23261781918266 -2007-05-23,0.0,7.335,0.6319916666666667,662.94,503.52,4.026940738455114 -2007-05-24,0.9,13.395,0.6322856481481481,661.4,699.37,3.810438548215591 -2007-05-25,0.0,20.805,0.6347809027777778,631.38,1141.99,3.583111248464093 -2007-05-26,0.0,20.950000000000003,0.6360001157407408,536.39,1511.18,3.3341337296886424 -2007-05-27,0.0,11.7,0.6362856481481481,644.27,660.86,3.1284566489610963 -2007-05-28,11.45,13.805,0.6387810185185185,389.67,1021.89,3.0526808823772633 -2007-05-29,0.07,13.485,0.6399917824074074,443.63,1094.26,2.9444297872575023 -2007-05-30,0.0,11.205,0.6400512731481481,516.1,851.45,2.8145284731137887 -2007-05-31,0.61,11.315,0.6418483796296296,501.6,848.41,2.6738020494580996 -2007-06-01,0.0,14.345,0.6435354166666667,552.5,956.77,2.522250516290434 -2007-06-02,0.0,14.25,0.6439998842592592,574.06,878.91,2.359873873610792 -2007-06-03,0.0,13.005,0.6442856481481481,575.33,800.36,2.219147449955103 -2007-06-04,1.82,12.98,0.6458482638888889,376.93,1078.02,2.0892461358113894 -2007-06-05,15.54,13.594999999999999,0.6471538194444444,214.54,1249.84,2.121721464347318 -2007-06-06,12.6,14.245000000000001,0.6479927083333333,295.93,1182.63,2.33822365458684 -2007-06-07,0.0,9.034999999999998,0.6480521990740741,523.91,710.6,2.0784210262994134 -2007-06-08,0.0,11.77,0.6487947916666666,587.15,740.44,2.0026452597155804 -2007-06-09,0.0,15.67,0.6498487268518519,540.98,1049.84,1.9485197121557 -2007-06-10,6.08,16.2,0.6507814814814814,380.59,1210.85,2.035120588251509 -2007-06-11,0.0,19.025,0.6515357638888889,549.8,1217.06,1.9701699311796523 -2007-06-12,0.0,19.54,0.6519921296296297,536.96,1283.33,1.9052192741077956 -2007-06-13,0.0,16.045,0.6520001157407407,561.5,964.11,1.829443507523963 -2007-06-14,0.0,14.76,0.6520517361111111,560.37,883.21,1.742842631428154 -2007-06-15,0.0,16.745,0.6522856481481482,563.29,943.45,1.6454166458203692 -2007-06-16,0.0,19.4,0.6527943287037037,535.35,1125.73,1.547990660212584 -2007-06-17,2.17,19.84,0.653352662037037,441.9,1359.15,1.4830400031407271 -2007-06-18,9.8,14.905,0.653848611111111,368.71,982.66,1.4505646746047989 -2007-06-19,0.0,14.845,0.653848611111111,530.94,814.85,1.4072642365568944 -2007-06-20,1.72,17.545,0.653848611111111,389.13,1303.95,1.36396379850899 -2007-06-21,8.37,15.774999999999999,0.6543310185185185,179.24,1426.29,1.3206633604610856 -2007-06-22,3.97,14.415,0.6543310185185185,236.37,1249.87,1.266537812901205 -2007-06-23,3.89,13.205,0.653848611111111,232.3,1165.36,1.1907620463173723 -2007-06-24,1.69,13.39,0.653848611111111,288.43,1170.17,1.1366364987574917 -2007-06-25,0.0,13.695,0.653352662037037,513.15,821.94,1.0825109511976112 -2007-06-26,3.45,18.865000000000002,0.653352662037037,327.28,1401.79,1.041375535052102 -2007-06-27,8.14,19.73,0.6527943287037037,247.14,1679.52,0.9969925860529997 -2007-06-28,18.84,17.275,0.6522856481481482,276.78,1375.59,1.1149862797335395 -2007-06-29,3.49,13.469999999999999,0.6520517361111111,385.5,895.99,1.1041611702215632 -2007-06-30,3.09,13.13,0.6519921296296297,320.19,1060.12,1.0316329364913235 -2007-07-01,0.0,11.605,0.6518894675925926,375.55,934.37,0.9840024546386285 -2007-07-02,3.01,11.934999999999999,0.6511538194444445,344.03,931.9,0.9352894618347359 -2007-07-03,4.23,12.125,0.6503311342592593,366.46,801.25,0.8919890237868314 -2007-07-04,0.0,14.485,0.6493528935185184,492.65,918.97,0.8465235638365318 -2007-07-05,4.79,16.38,0.6482863425925927,246.98,1369.46,0.8259558557637772 -2007-07-06,6.76,16.259999999999998,0.6480008101851852,176.32,1489.26,0.8021406148374299 -2007-07-07,3.24,16.29,0.647890162037037,287.04,1274.73,0.7675002643991063 -2007-07-08,3.82,15.184999999999999,0.64678125,288.86,1190.63,0.7252823373023994 -2007-07-09,0.81,13.185,0.645352199074074,455.92,897.8,0.7025496073272497 -2007-07-10,4.62,15.805,0.6440515046296297,293.99,1225.02,0.6949720306688663 -2007-07-11,11.08,19.015,0.6438894675925926,272.15,1549.7,0.6733218116449141 -2007-07-12,16.06,19.9,0.6427809027777778,217.57,1783.26,0.765335242496711 -2007-07-13,0.0,16.36,0.6407940972222222,464.73,1126.84,0.7328599139607828 -2007-07-14,2.7,16.35,0.6399997685185186,376.62,1176.15,0.7166222496928185 -2007-07-15,8.9,18.28,0.6395354166666667,261.08,1528.21,0.7393549796679684 -2007-07-16,10.71,17.32,0.6378482638888888,300.44,1356.79,0.8151307462518013 -2007-07-17,0.0,16.72,0.6360001157407408,449.28,1214.71,0.7404374906191661 -2007-07-18,2.56,17.62,0.6355359953703703,385.04,1236.32,0.6938895197176687 -2007-07-19,6.78,18.505,0.6338483796296296,288.46,1509.82,0.6592491692793452 -2007-07-20,11.98,17.6,0.6319996527777777,181.4,1653.78,0.6906419868640759 -2007-07-21,8.64,16.47,0.6315355324074073,223.05,1462.42,0.7426025125215612 -2007-07-22,0.0,16.525,0.6287943287037038,479.02,1124.15,0.6982195635224592 -2007-07-23,0.0,16.945,0.628,503.78,1035.97,0.6549191254745548 -2007-07-24,0.0,20.005,0.6267813657407407,459.36,1397.4,0.6116186874266503 -2007-07-25,0.0,22.075,0.624052199074074,418.91,1729.1,0.5704832712811411 -2007-07-26,0.0,23.61,0.6238902777777778,410.58,1896.85,0.5336778989404223 -2007-07-27,0.0,23.314999999999998,0.6207944444444444,418.11,1822.41,0.5044501032580868 -2007-07-28,0.14,23.93,0.6199998842592592,363.59,2075.32,0.49362499374611063 -2007-07-29,25.18,22.085,0.6183303240740741,242.96,1968.52,0.5499155632083865 -2007-07-30,0.0,20.555,0.615999537037037,385.47,1658.31,0.5412554755988056 -2007-07-31,0.0,19.27,0.6151532407407407,445.27,1370.0,0.5087801470628772 -2007-08-01,0.0,18.06,0.6120002314814815,467.79,1206.67,0.4784698404293441 -2007-08-02,6.58,20.575,0.6115356481481482,335.31,1444.59,0.4806348623317393 -2007-08-03,11.86,22.93,0.6080510416666667,293.12,1860.35,0.5380079427452128 -2007-08-04,12.97,19.825,0.6078891203703704,266.74,1634.03,0.6311038845482072 -2007-08-05,5.37,15.96,0.6042853009259259,319.39,1153.79,0.6538366145233572 -2007-08-06,0.01,14.55,0.6039916666666666,457.69,961.28,0.6581666583281476 -2007-08-07,4.34,15.864999999999998,0.6002854166666667,310.25,1209.29,0.648424059767369 -2007-08-08,0.25,15.515,0.5999998842592592,393.35,1179.54,0.6787343664009022 -2007-08-09,16.83,13.920000000000002,0.5962851851851851,308.5,1049.14,0.7631702205943158 -2007-08-10,0.0,15.45,0.5959997685185184,446.24,1040.43,0.7480150672775493 -2007-08-11,0.0,17.565,0.5920523148148148,439.51,1197.05,0.7155397387416209 -2007-08-12,0.0,17.59,0.591992824074074,446.35,1171.4,0.6830644102056928 -2007-08-13,0.19,17.875,0.5880002314814815,392.59,1326.61,0.6527541035721596 -2007-08-14,0.0,15.105,0.5879922453703703,399.69,1103.18,0.6127011983778479 -2007-08-15,2.76,13.975,0.5840005787037037,260.17,1185.64,0.5953810231586861 -2007-08-16,2.26,13.555,0.5835359953703704,373.47,984.71,0.5704832712811411 -2007-08-17,1.31,12.870000000000001,0.5800003472222222,431.84,888.57,0.5445030084523984 -2007-08-18,0.08,13.735,0.5787818287037036,387.24,1014.04,0.506615125160482 -2007-08-19,0.0,10.64,0.5760005787037037,346.3,886.99,0.4643971980637752 -2007-08-20,0.0,10.520000000000001,0.5738478009259259,392.32,802.0,0.43733442428383484 -2007-08-21,0.0,10.93,0.5719994212962963,438.23,733.23,0.4113541614550923 -2007-08-22,0.0,12.595,0.5680513888888888,453.92,784.22,0.39295147528473284 -2007-08-23,0.0,13.11,0.5679997685185185,412.99,904.61,0.37996134387036146 -2007-08-24,9.59,14.43,0.5639996527777777,215.47,1222.02,0.3864564095775472 -2007-08-25,9.73,17.869999999999997,0.5639916666666667,146.59,1681.21,0.41027165050389464 -2007-08-26,11.75,18.84,0.56,183.93,1691.18,0.4947075046973083 -2007-08-27,0.0,14.965,0.558330324074074,409.12,1024.16,0.45248957760060143 -2007-08-28,0.0,15.125,0.5560002314814815,439.38,916.75,0.42109676001587076 -2007-08-29,0.0,17.634999999999998,0.5520519675925926,420.99,1136.92,0.4016115628943137 -2007-08-30,8.22,17.595,0.5520004629629629,253.69,1353.11,0.40918913955269703 -2007-08-31,9.94,14.004999999999999,0.5479999999999999,269.23,1109.8,0.41351918335748744 -2007-09-01,0.0,13.555,0.5479921296296296,359.33,1009.5,0.37779632196796625 -2007-09-02,0.0,11.195,0.5439997685185185,395.17,797.38,0.3593936357976069 -2007-09-03,0.0,14.52,0.540794212962963,371.99,1036.78,0.3496510372368284 -2007-09-04,0.0,13.285,0.54,361.03,970.39,0.3204232415544929 -2007-09-05,0.0,9.29,0.5359994212962963,375.81,722.89,0.29336046777455266 -2007-09-06,0.0,9.445,0.5359994212962963,413.46,639.81,0.28794791301856454 -2007-09-07,0.0,14.98,0.5319998842592593,386.18,1003.32,0.2825353582625765 -2007-09-08,0.0,20.695,0.5298482638888888,353.41,1513.61,0.27171024875060035 -2007-09-09,0.0,14.845,0.5279998842592593,416.28,872.64,0.2522250516290434 -2007-09-10,2.92,13.09,0.5240002314814816,244.75,1035.52,0.2435649640194625 -2007-09-11,4.12,13.715,0.5240002314814816,162.58,1237.6,0.23923492021467205 -2007-09-12,8.76,12.024999999999999,0.520000462962963,113.75,1203.59,0.253307562580241 -2007-09-13,0.04,7.655,0.5183310185185186,338.29,678.38,0.23706989831227682 -2007-09-14,0.0,8.775,0.5159998842592592,403.22,599.43,0.22840981070269592 -2007-09-15,8.8,10.625,0.511999537037037,274.83,755.03,0.253307562580241 -2007-09-16,10.55,7.49,0.511999537037037,248.73,657.8,0.2695452268482052 -2007-09-17,0.0,7.69,0.5079996527777778,382.65,581.08,0.2522250516290434 -2007-09-18,0.0,10.284999999999998,0.5067805555555556,396.37,630.83,0.23490487640988159 -2007-09-19,0.0,13.12,0.503999537037037,384.05,788.85,0.22624478880030072 -2007-09-20,0.0,15.045,0.4999997685185186,352.92,979.79,0.21217214643473176 -2007-09-21,0.0,13.280000000000001,0.4999997685185186,370.47,816.02,0.20242954787395329 -2007-09-22,0.0,14.515,0.4959997685185185,327.27,1007.29,0.20134703692275568 -2007-09-23,0.0,14.14,0.49366840277777774,281.43,1090.97,0.1916044383619772 -2007-09-24,0.0,10.8,0.4919994212962963,297.03,826.65,0.16778919743562973 -2007-09-25,0.0,13.625,0.48800034722222224,304.1,968.03,0.16129413172844406 -2007-09-26,1.92,18.14,0.48800034722222224,279.38,1255.53,0.15804659887485123 -2007-09-27,11.02,13.94,0.4840002314814815,233.35,954.59,0.17644928504521062 -2007-09-28,19.36,10.49,0.48167002314814816,139.94,980.18,0.28578289111616934 -2007-09-29,0.16,8.1,0.4800005787037037,274.36,708.39,0.2695452268482052 -2007-09-30,0.0,5.98,0.4760001157407408,323.69,534.38,0.2511425406778458 -2007-10-01,0.0,7.825,0.4760001157407408,324.34,597.86,0.2457299859218577 -2007-10-02,0.0,12.049999999999999,0.4719996527777777,282.35,893.36,0.23923492021467205 -2007-10-03,0.0,12.425,0.4701513888888889,287.86,894.47,0.23273985450748638 -2007-10-04,0.0,13.165,0.46799976851851854,280.41,945.18,0.22624478880030072 -2007-10-05,0.0,13.329999999999998,0.463999537037037,324.3,808.26,0.214337168337127 -2007-10-06,0.0,12.325,0.463999537037037,291.13,847.4,0.20459456977634852 -2007-10-07,0.0,6.65,0.46,280.77,593.01,0.18943941645958198 -2007-10-08,0.0,6.295,0.45920532407407405,248.95,626.15,0.19809950406916285 -2007-10-09,1.08,7.515,0.45599953703703705,266.3,639.32,0.20134703692275568 -2007-10-10,0.0,7.455,0.45200810185185186,204.89,743.39,0.18727439455718675 -2007-10-11,0.0,8.805,0.452,90.21,989.49,0.17536677409401302 -2007-10-12,24.76,8.475,0.4480001157407407,62.51,975.29,0.20459456977634852 -2007-10-13,25.95,6.27,0.4480001157407407,90.25,791.35,0.41784922716227785 -2007-10-14,1.91,3.93,0.4440001157407408,153.62,611.15,0.3713012562607806 -2007-10-15,0.0,4.76,0.44166932870370373,164.73,656.52,0.3637236796023974 -2007-10-16,0.0,5.8950000000000005,0.4400003472222222,221.29,636.69,0.35722861389521166 -2007-10-17,0.0,5.78,0.43611064814814815,262.29,566.47,0.3604761467488045 -2007-10-18,0.0,6.56,0.43600011574074077,282.7,546.76,0.3626411686511997 -2007-10-19,0.0,8.354999999999999,0.43200000000000005,280.92,605.05,0.3637236796023974 -2007-10-20,12.51,11.8,0.43194837962962956,167.63,934.85,0.4189317381134755 -2007-10-21,1.91,12.935,0.428,174.22,1121.98,0.4232617819182659 -2007-10-22,0.0,13.600000000000001,0.4261517361111111,247.99,953.35,0.41460169430868504 -2007-10-23,1.92,13.61,0.42400011574074076,222.49,1006.31,0.4221792709670683 -2007-10-24,11.09,7.255,0.42121863425925926,153.52,708.71,0.45032455569820623 -2007-10-25,0.0,3.7699999999999996,0.41999976851851856,207.06,553.82,0.4459945118934157 -2007-10-26,0.0,4.0649999999999995,0.4164640046296296,260.17,443.83,0.4459945118934157 -2007-10-27,14.13,6.79,0.4159996527777778,199.73,552.82,0.46764473091736797 -2007-10-28,21.21,6.885,0.4121109953703704,152.93,673.69,0.5878034465003028 -2007-10-29,0.0,1.2999999999999998,0.41200046296296294,162.05,500.3,0.5780608479395244 -2007-10-30,4.59,0.5450000000000002,0.4080084490740741,131.83,477.99,0.5997110669634765 -2007-10-31,0.0,1.6950000000000003,0.40794895833333333,236.43,401.11,0.6181137531338359 -2007-11-01,0.0,5.095000000000001,0.40399999999999997,215.62,565.49,0.6365164393041954 -2007-11-02,0.0,2.7250000000000005,0.4037145833333334,209.07,482.24,0.6267738407434169 -2007-11-03,0.0,-0.10999999999999988,0.40000023148148145,208.86,390.21,0.6375989502553929 -2007-11-04,40.76,-0.10000000000000009,0.39971435185185183,113.59,454.84,1.071685841685635 -2007-11-05,0.0,0.5999999999999996,0.3960082175925926,196.85,428.38,1.3098382509491096 -2007-11-06,4.56,0.15500000000000025,0.39571446759259266,146.0,419.22,1.4938651126527034 -2007-11-07,9.27,1.3050000000000002,0.3921108796296296,99.23,521.03,1.8077932885000105 -2007-11-08,0.0,0.675,0.3919487268518519,115.25,519.06,1.8943941645958196 -2007-11-09,0.0,-1.8850000000000002,0.3884644675925926,124.58,425.65,1.9376946026437238 -2007-11-10,0.0,-3.0549999999999997,0.38799999999999996,134.43,365.71,1.9485197121557 -2007-11-11,0.0,-4.225,0.3848466435185185,135.95,343.44,1.9160443836197718 -2007-11-12,0.0,-4.89,0.3840003472222222,178.96,279.03,1.8835690550838433 -2007-11-13,3.38,-1.605,0.38166932870370374,153.38,375.35,1.861918836059891 -2007-11-14,0.0,2.0599999999999996,0.3799997685185186,179.48,498.15,1.829443507523963 -2007-11-15,16.41,4.815,0.37920590277777777,106.31,643.49,1.9918201502036044 -2007-11-16,39.09,1.4,0.37611087962962964,68.57,570.22,3.085156210913192 -2007-11-17,11.39,-2.2849999999999997,0.3759486111111111,61.78,443.81,3.734662781631758 -2007-11-18,0.0,-5.325,0.37321898148148147,123.04,321.67,3.9619900813832567 -2007-11-19,0.0,-8.095,0.3719998842592593,193.47,197.02,3.994465409919185 -2007-11-20,0.0,-6.87,0.37120578703703705,182.21,232.78,3.9186896433353517 -2007-11-21,2.73,-3.73,0.3684645833333333,105.97,371.12,3.7779632196796626 -2007-11-22,12.37,-1.31,0.3680003472222222,42.74,513.79,3.70218745309583 -2007-11-23,16.22,-4.17,0.36615196759259255,87.53,364.73,3.615586577000021 -2007-11-24,0.0,-9.455,0.3644642361111111,164.01,218.35,3.409909496272475 -2007-11-25,0.49,-8.495,0.36400011574074076,184.24,204.54,3.2583579631048094 -2007-11-26,0.0,-1.9000000000000004,0.3621513888888889,147.77,413.49,3.074331101401216 -2007-11-27,16.23,-0.20499999999999996,0.3604638888888889,65.34,524.52,2.9877302253054068 -2007-11-28,0.0,-7.57,0.3599998842592593,198.31,213.3,2.8145284731137887 -2007-11-29,0.69,-9.355,0.35920578703703704,174.19,200.0,2.6738020494580996 -2007-11-30,3.68,-6.38,0.3572189814814815,137.81,250.57,2.5114254067784576 -2007-12-01,6.06,-10.290000000000001,0.35611041666666665,112.35,209.24,2.3706989831227685 -2007-12-02,0.0,-13.895,0.3559483796296296,179.38,144.57,2.219147449955103 -2007-12-03,1.67,-12.56,0.3546476851851852,193.1,128.56,2.1000712453233654 -2007-12-04,10.09,-7.34,0.35321898148148145,133.24,240.07,2.035120588251509 -2007-12-05,0.0,-9.879999999999999,0.35211030092592593,188.52,183.81,1.9485197121557 -2007-12-06,0.0,-11.185,0.35199988425925927,165.0,184.88,1.851093726547915 -2007-12-07,0.0,-15.16,0.35171423611111113,202.55,91.84,1.75366774094013 -2007-12-08,1.28,-12.375,0.3506474537037037,196.66,120.0,1.6778919743562972 -2007-12-09,0.0,-15.655,0.34966921296296294,201.25,80.0,1.5912910982604884 -2007-12-10,0.0,-17.240000000000002,0.3488465277777778,194.79,80.0,1.5263404411886317 -2007-12-11,0.0,-13.375,0.3481105324074074,190.12,120.0,1.4505646746047989 -2007-12-12,5.64,-9.43,0.3480079861111111,136.96,172.41,1.3856140175329423 -2007-12-13,0.0,-14.33,0.34794849537037037,186.99,118.34,1.3314884699730618 -2007-12-14,3.24,-16.735,0.34771435185185184,127.36,120.0,1.2881880319251573 -2007-12-15,2.2,-16.445,0.3472057870370371,140.74,119.33,1.2448875938772528 -2007-12-16,0.96,-16.235,0.3466476851851852,144.89,120.0,1.2015871558293483 -2007-12-17,23.33,-11.995000000000001,0.3466476851851852,102.09,170.21,1.158286717781444 -2007-12-18,0.0,-15.215,0.3461518518518519,158.65,118.8,1.1366364987574917 -2007-12-19,0.0,-18.44,0.3461518518518519,190.8,80.0,1.1041611702215632 -2007-12-20,3.44,-15.205000000000002,0.3456693287037037,127.9,120.1,1.0825109511976112 -2007-12-21,1.49,-15.379999999999999,0.3456693287037037,169.17,112.27,1.066273286929647 -2007-12-22,0.0,-12.104999999999999,0.3461518518518519,156.95,160.0,1.0457055788568925 -2007-12-23,0.29,-4.6,0.3461518518518519,149.45,280.23,1.0370454912473115 -2007-12-24,11.52,0.26000000000000023,0.3461518518518519,113.43,422.09,1.0706033307344374 -2007-12-25,0.0,-4.38,0.3466476851851852,90.24,355.69,1.080345929295216 -2007-12-26,0.0,-6.125,0.3472057870370371,146.05,258.71,1.060860732173659 -2007-12-27,0.0,-4.345,0.34771435185185184,107.76,343.3,1.060860732173659 -2007-12-28,7.16,-6.015000000000001,0.34794849537037037,75.29,310.02,1.077098396441623 -2007-12-29,5.33,-5.325,0.34800000000000003,68.11,321.13,1.0933360607095872 -2007-12-30,6.42,-5.8149999999999995,0.3480079861111111,99.13,288.33,1.0933360607095872 -2007-12-31,4.84,-9.17,0.3484641203703704,107.28,214.81,1.0825109511976112 -2008-01-01,4.02,-13.145000000000001,0.34921886574074074,128.59,126.33,1.077098396441623 -2008-01-02,4.96,-14.049999999999999,0.35015162037037034,111.99,129.61,1.0641082650272518 -2008-01-03,0.0,-20.695,0.35120578703703703,167.18,79.82,1.0511181336128805 -2008-01-04,0.49,-19.705,0.3519482638888889,198.26,73.88,1.0392105131497067 -2008-01-05,0.0,-11.82,0.35200787037037035,189.92,125.84,1.0273028926865329 -2008-01-06,0.0,-4.76,0.35284641203703704,135.93,300.2,1.0153952722233592 -2008-01-07,0.0,-0.5,0.3541518518518519,117.71,447.48,1.0034876517601854 -2008-01-08,6.31,2.28,0.35571446759259256,92.76,539.4,1.0034876517601854 -2008-01-09,6.26,4.345,0.35600000000000004,74.55,651.78,1.1258113892455155 -2008-01-10,2.58,0.04499999999999993,0.3564643518518519,108.25,460.95,1.277362922413181 -2008-01-11,11.17,-3.7950000000000004,0.35815185185185183,104.33,327.24,1.36396379850899 -2008-01-12,8.92,-3.125,0.3599482638888889,95.52,364.38,1.4830400031407271 -2008-01-13,0.0,-8.225,0.36000787037037035,194.82,193.19,1.5696408792365362 -2008-01-14,1.57,-12.54,0.36121863425925926,174.63,137.6,1.6237664267964167 -2008-01-15,4.62,-10.174999999999999,0.3637142361111111,76.4,225.65,1.6778919743562972 -2008-01-16,0.04,-10.05,0.36400011574074076,159.74,192.9,1.6995421933802495 -2008-01-17,0.0,-14.545,0.36521898148148146,230.16,89.34,1.7103673028922255 -2008-01-18,12.64,-8.59,0.36771435185185186,151.91,193.79,1.7103673028922255 -2008-01-19,8.64,-7.93,0.3680083333333333,138.02,216.03,1.6887170838682732 -2008-01-20,2.19,-16.744999999999997,0.3696696759259259,222.32,81.62,1.6670668648443212 -2008-01-21,0.0,-24.42,0.3719483796296296,218.03,40.0,1.6129413172844407 -2008-01-22,3.24,-21.625,0.37211041666666667,186.56,44.02,1.5588157697245602 -2008-01-23,2.7,-15.91,0.3746479166666667,189.67,96.98,1.5155153316766559 -2008-01-24,0.0,-19.65,0.3760002314814815,260.12,60.39,1.461389784116775 -2008-01-25,0.0,-24.330000000000002,0.3772188657407407,275.74,40.0,1.4180893460688704 -2008-01-26,0.0,-21.14,0.3799997685185186,268.24,40.0,1.3747889080209663 -2008-01-27,0.0,-19.560000000000002,0.3804640046296296,285.95,40.0,1.3314884699730618 -2008-01-28,0.0,-16.7,0.383714699074074,286.42,75.62,1.2990131414371333 -2008-01-29,0.0,-10.715,0.38400833333333334,259.39,144.25,1.2557127033892288 -2008-01-30,8.92,-4.664999999999999,0.3866476851851852,165.28,284.53,1.2340624843652768 -2008-01-31,7.83,-9.17,0.38799999999999996,213.01,175.22,1.3531386889970138 -2008-02-01,18.39,-14.615,0.3901519675925926,202.95,120.0,1.4072642365568944 -2008-02-02,21.67,-11.479999999999999,0.39200034722222227,177.08,161.31,1.5155153316766559 -2008-02-03,0.0,-12.22,0.3936696759259259,254.11,160.0,1.5804659887485122 -2008-02-04,0.0,-13.585,0.39600023148148145,312.6,102.54,1.5263404411886317 -2008-02-05,7.29,-12.745000000000001,0.3972188657407407,272.94,113.31,1.4722148936287511 -2008-02-06,6.93,-8.83,0.40000023148148145,170.74,209.95,1.4180893460688704 -2008-02-07,0.07,-13.34,0.4012189814814815,275.33,126.18,1.3747889080209663 -2008-02-08,0.65,-17.58,0.40399999999999997,312.53,80.0,1.3314884699730618 -2008-02-09,0.89,-14.205,0.40521898148148144,300.27,116.23,1.2881880319251573 -2008-02-10,7.26,-9.545000000000002,0.4080003472222223,220.22,169.32,1.2557127033892288 -2008-02-11,8.81,-9.56,0.40966990740740744,169.65,201.87,1.2232373748533005 -2008-02-12,0.0,-14.725,0.41200046296296294,264.92,120.0,1.2015871558293483 -2008-02-13,12.06,-13.86,0.41464768518518513,225.51,120.0,1.179936936805396 -2008-02-14,11.55,-11.475,0.4159996527777778,221.37,155.23,1.16911182729342 -2008-02-15,1.84,-10.584999999999999,0.419205324074074,317.97,154.5,1.158286717781444 -2008-02-16,0.14,-17.79,0.41999976851851856,387.73,45.79,1.1474616082694677 -2008-02-17,0.47,-17.58,0.42400011574074076,379.08,50.71,1.1366364987574917 -2008-02-18,8.41,-2.9699999999999998,0.42400011574074076,248.0,273.7,1.1258113892455155 -2008-02-19,2.97,-0.1549999999999998,0.428,229.65,402.04,1.1258113892455155 -2008-02-20,1.7,-11.34,0.42846388888888887,334.07,135.69,1.179936936805396 -2008-02-21,0.0,-18.225,0.43200000000000005,335.44,80.0,1.16911182729342 -2008-02-22,0.0,-17.185,0.4336695601851852,387.15,80.0,1.1474616082694677 -2008-02-23,0.0,-12.7,0.43600011574074077,374.97,119.72,1.1041611702215632 -2008-02-24,0.0,-10.185,0.4399488425925926,401.14,121.1,1.1258113892455155 -2008-02-25,0.0,-5.8149999999999995,0.4400003472222222,362.5,219.06,1.1149862797335395 -2008-02-26,1.48,-3.99,0.4440001157407408,238.93,313.24,1.0760158854904256 -2008-02-27,7.53,-7.085,0.4440081018518519,177.44,264.73,1.0446230679056947 -2008-02-28,2.65,-15.095,0.4480001157407407,320.84,110.31,1.0218903379305448 -2008-02-29,0.0,-20.455,0.4501516203703704,463.62,40.0,0.9969925860529997 -2008-03-01,12.47,-17.175,0.452,342.51,65.16,0.9720948341754548 -2008-03-02,10.96,-10.36,0.45599953703703705,243.29,176.9,0.9536921480050955 -2008-03-03,1.59,-12.58,0.45599953703703705,443.48,94.21,0.9374544837371314 -2008-03-04,0.0,-6.449999999999999,0.46,477.32,152.81,0.921216819469167 -2008-03-05,8.35,-9.24,0.4604638888888889,294.66,165.98,0.9071441771035982 -2008-03-06,5.91,-10.025,0.463999537037037,331.25,166.49,0.8952365566404243 -2008-03-07,0.0,-5.83,0.46799976851851854,454.88,193.13,0.8811639142748555 -2008-03-08,15.56,-3.74,0.46799976851851854,288.95,274.54,0.8703388047628793 -2008-03-09,20.97,-8.92,0.4719996527777777,295.25,181.21,0.8595136952509033 -2008-03-10,3.35,-15.07,0.4719996527777777,388.48,87.78,0.9331244399323408 -2008-03-11,0.0,-12.96,0.4760001157407408,513.25,80.47,0.9504446151515026 -2008-03-12,0.2,-7.95,0.4800005787037037,434.35,180.72,0.9136392428107837 -2008-03-13,0.79,-12.229999999999999,0.4800005787037037,463.97,115.28,0.876833870470065 -2008-03-14,0.0,-13.085,0.4840002314814815,446.38,119.13,0.8530186295437175 -2008-03-15,0.0,-8.49,0.4840002314814815,363.4,204.74,0.8302858995685677 -2008-03-16,0.86,-5.35,0.48800034722222224,281.75,284.44,0.8162132572029988 -2008-03-17,0.02,-6.715,0.4919994212962963,381.6,232.12,0.804305636739825 -2008-03-18,0.0,-9.955,0.4919994212962963,542.59,120.98,0.793480527227849 -2008-03-19,0.0,-8.685,0.4959997685185185,555.87,122.08,0.7837379286670705 -2008-03-20,19.57,-4.505,0.4959997685185185,229.22,306.53,0.7750778410574897 -2008-03-21,13.0,-7.775,0.4999997685185186,232.62,240.29,0.804305636739825 -2008-03-22,5.24,-11.645,0.503999537037037,235.07,175.79,0.8216258119589868 -2008-03-23,0.0,-13.465,0.503999537037037,408.35,125.8,0.8216258119589868 -2008-03-24,0.0,-17.955000000000002,0.5079996527777778,597.56,40.0,0.793480527227849 -2008-03-25,0.0,-16.335,0.5079996527777778,609.25,40.02,0.773995330106292 -2008-03-26,4.73,-6.255,0.511999537037037,388.27,196.72,0.7555926439359325 -2008-03-27,2.11,-7.1899999999999995,0.5159998842592592,516.81,158.82,0.7415200015703636 -2008-03-28,0.0,-8.09,0.5159998842592592,533.75,162.64,0.72961238110719 -2008-03-29,0.0,-9.495000000000001,0.520000462962963,484.34,160.0,0.7177047606440161 -2008-03-30,0.0,-6.7,0.520000462962963,469.62,214.09,0.7079621620832377 -2008-03-31,0.31,-4.0,0.5240002314814816,538.73,239.52,0.7003845854248544 -2008-04-01,6.0,-0.1499999999999999,0.5279998842592593,301.5,397.08,0.6971370525712616 -2008-04-02,3.32,0.03000000000000025,0.5279998842592593,297.45,413.56,0.6917244978152736 -2008-04-03,0.0,-2.875,0.5319998842592593,389.38,332.23,0.6873944540104832 -2008-04-04,0.29,0.5449999999999999,0.5319998842592593,473.13,384.67,0.5856384245979076 -2008-04-05,5.29,2.005,0.5359994212962963,264.63,509.59,0.6137837093290455 -2008-04-06,0.04,2.08,0.5395353009259259,255.26,564.66,0.6451765269137762 -2008-04-07,0.0,1.2349999999999999,0.54,498.13,408.37,0.6917244978152736 -2008-04-08,0.0,2.06,0.5439997685185185,564.82,383.98,0.7555926439359325 -2008-04-09,0.0,4.58,0.5439997685185185,563.1,466.45,0.8551836514461127 -2008-04-10,0.0,5.3149999999999995,0.5479999999999999,439.72,607.28,0.9785898998826404 -2008-04-11,0.0,2.5,0.5498481481481481,272.68,589.18,1.1258113892455155 -2008-04-12,9.4,1.205,0.5520004629629629,171.7,560.24,1.3206633604610856 -2008-04-13,8.07,0.52,0.5559922453703704,180.36,533.45,1.5588157697245602 -2008-04-14,0.66,0.41500000000000004,0.5560002314814815,312.19,496.32,1.7861430694760585 -2008-04-15,0.0,0.7349999999999999,0.56,508.16,423.07,1.9918201502036044 -2008-04-16,0.0,2.79,0.5600517361111111,608.9,416.71,2.240797668979055 -2008-04-17,0.0,7.704999999999999,0.5639996527777777,651.59,526.49,2.6738020494580996 -2008-04-18,0.0,8.355,0.5663305555555556,669.86,517.68,3.464035043832355 -2008-04-19,0.0,7.135,0.5679997685185185,565.44,616.24,4.600671542589847 -2008-04-20,0.0,6.28,0.5715351851851852,544.05,600.71,5.639882055739554 -2008-04-21,0.0,7.484999999999999,0.5719994212962963,592.2,601.15,6.863119430592855 -2008-04-22,0.0,6.695,0.5760005787037037,628.21,520.06,8.04305636739825 -2008-04-23,0.81,8.35,0.5760005787037037,612.63,618.02,8.974015785428197 -2008-04-24,1.01,6.784999999999999,0.5800003472222222,567.78,612.06,10.175602941257544 -2008-04-25,0.0,3.7,0.5807946759259259,590.05,479.9,10.706033307344374 -2008-04-26,0.0,4.625,0.5840005787037037,655.5,440.69,11.041611702215635 -2008-04-27,0.0,4.239999999999999,0.5853530092592593,600.82,495.06,11.149862797335393 -2008-04-28,1.07,5.855,0.5880002314814815,586.1,542.83,11.041611702215635 -2008-04-29,27.05,6.84,0.5903311342592593,322.28,730.18,12.77362922413181 -2008-04-30,36.74,2.92,0.5920008101851852,321.03,562.25,19.37694602643724 -2008-05-01,0.0,1.2000000000000002,0.5943310185185184,488.31,465.65,18.727439455718674 -2008-05-02,0.0,1.9299999999999997,0.5959997685185184,590.13,445.36,16.67066864844321 -2008-05-03,0.0,5.5,0.5987809027777777,646.56,521.35,15.479906602125837 -2008-05-04,2.94,7.0600000000000005,0.5999998842592592,390.29,700.88,14.830400031407274 -2008-05-05,3.59,7.095000000000001,0.6027810185185185,347.73,740.24,14.289144555808468 -2008-05-06,0.0,8.01,0.6039996527777778,691.93,556.67,13.6396379850899 -2008-05-07,0.0,9.545,0.6063304398148148,637.87,690.78,12.990131414371334 -2008-05-08,7.61,8.78,0.6079995370370371,386.02,787.28,12.448875938772527 -2008-05-09,3.34,7.84,0.6098476851851852,512.27,666.61,11.907620463173723 -2008-05-10,0.0,5.71,0.6120002314814815,617.82,560.22,11.149862797335393 -2008-05-11,0.0,5.875,0.6133524305555556,594.54,579.79,10.370454912473114 -2008-05-12,0.0,7.695,0.6159914351851852,688.85,540.75,9.54774658956293 -2008-05-13,0.0,9.37,0.6162851851851852,694.58,576.48,8.800814033236579 -2008-05-14,0.0,10.534999999999998,0.6195356481481481,705.89,575.7,8.140482353006036 -2008-05-15,0.0,11.745000000000001,0.6199998842592592,676.23,670.06,7.523451110823397 -2008-05-16,0.18,11.49,0.6227818287037037,610.35,772.47,6.96054541620064 -2008-05-17,0.0,10.195,0.6240006944444445,665.42,634.38,6.43011505011381 -2008-05-18,0.0,11.415000000000001,0.6253526620370371,616.66,772.17,5.942985122074885 -2008-05-19,8.24,11.975,0.6278895833333333,358.98,962.86,5.553281179643745 -2008-05-20,6.86,9.445,0.6280518518518519,266.92,913.52,5.423379865500032 -2008-05-21,1.74,8.14,0.6303303240740741,557.87,684.94,5.044501032580868 -2008-05-22,4.97,9.075000000000001,0.6319916666666667,383.2,794.73,4.741397966245537 -2008-05-23,2.33,7.885,0.6322856481481481,371.26,797.37,4.449120009422182 -2008-05-24,0.95,8.76,0.6347809027777778,489.51,769.35,4.146016943086851 -2008-05-25,0.0,9.690000000000001,0.6360001157407408,673.5,634.99,3.8537389862634956 -2008-05-26,0.0,13.625,0.6362856481481481,550.34,1023.17,3.561461029440141 -2008-05-27,5.95,12.145,0.6387810185185185,348.06,1020.77,3.3016584011527144 -2008-05-28,0.41,8.495000000000001,0.6399917824074074,608.42,659.79,2.998555334817383 -2008-05-29,2.93,9.76,0.6400512731481481,426.03,851.87,2.738752706529956 -2008-05-30,0.22,8.5,0.6418483796296296,629.31,636.39,2.4897751877545056 -2008-05-31,6.59,9.425,0.6435354166666667,444.72,782.52,2.316573435562888 -2008-06-01,6.28,9.675,0.6439998842592592,229.28,973.02,2.219147449955103 -2008-06-02,0.0,11.205,0.6442856481481481,395.55,1014.65,2.0567708072754614 -2008-06-03,1.23,10.649999999999999,0.6458482638888889,502.9,883.54,1.9376946026437238 -2008-06-04,0.06,9.81,0.6471538194444444,662.92,633.12,1.8186183980119868 -2008-06-05,0.0,10.775,0.6479927083333333,673.55,643.98,1.7103673028922255 -2008-06-06,0.0,13.669999999999998,0.6480521990740741,568.9,965.95,1.6237664267964167 -2008-06-07,2.55,15.655000000000001,0.6487947916666666,412.99,1279.82,1.537165550700608 -2008-06-08,8.05,18.975,0.6498487268518519,399.97,1439.25,1.537165550700608 -2008-06-09,10.3,19.16,0.6507814814814814,409.3,1429.18,1.5155153316766559 -2008-06-10,9.02,19.055,0.6515357638888889,330.31,1603.31,1.4397395650928229 -2008-06-11,11.64,18.080000000000002,0.6519921296296297,346.53,1483.4,1.537165550700608 -2008-06-12,5.17,15.105,0.6520001157407407,439.76,1103.71,1.5046902221646794 -2008-06-13,0.0,12.79,0.6520517361111111,650.21,776.08,1.461389784116775 -2008-06-14,0.0,13.585,0.6522856481481482,702.27,656.46,1.4289144555808466 -2008-06-15,0.0,15.06,0.6527943287037037,610.04,967.08,1.3856140175329423 -2008-06-16,9.6,14.37,0.653352662037037,281.48,1283.31,1.3531386889970138 -2008-06-17,9.2,13.52,0.653848611111111,137.94,1386.79,1.3964391270449183 -2008-06-18,7.74,14.19,0.653848611111111,222.06,1348.86,1.4505646746047989 -2008-06-19,3.59,14.97,0.653848611111111,298.72,1332.58,1.4180893460688704 -2008-06-20,1.91,15.084999999999999,0.6543310185185185,417.26,1301.93,1.4072642365568944 -2008-06-21,5.8,16.6,0.6543310185185185,361.17,1354.74,1.3856140175329423 -2008-06-22,3.38,17.665,0.653848611111111,408.98,1337.21,1.3531386889970138 -2008-06-23,8.46,18.895,0.653848611111111,383.71,1486.12,1.3856140175329423 -2008-06-24,18.06,17.215,0.653352662037037,375.79,1366.43,1.4830400031407271 -2008-06-25,1.47,15.92,0.653352662037037,601.64,1029.36,1.4289144555808466 -2008-06-26,4.26,17.785,0.6527943287037037,354.21,1436.25,1.4072642365568944 -2008-06-27,10.09,16.085,0.6522856481481482,240.98,1479.86,1.5046902221646794 -2008-06-28,5.28,15.525,0.6520517361111111,261.88,1400.03,1.4722148936287511 -2008-06-29,35.24,13.725,0.6519921296296297,181.22,1355.76,2.013470369227557 -2008-06-30,7.73,16.21,0.6518894675925926,293.82,1418.19,2.3815240926347445 -2008-07-01,2.26,18.205,0.6511538194444445,497.52,1317.19,2.5872011733622906 -2008-07-02,0.0,17.325,0.6503311342592593,603.84,1107.84,2.6738020494580996 -2008-07-03,1.77,17.81,0.6493528935185184,508.67,1312.1,2.72792759701798 -2008-07-04,5.98,14.864999999999998,0.6482863425925927,509.51,1012.54,2.825353582625765 -2008-07-05,0.1,16.11,0.6480008101851852,587.61,1032.73,2.6954522684820517 -2008-07-06,0.0,18.580000000000002,0.647890162037037,567.76,1250.07,2.5655509543383386 -2008-07-07,0.0,20.15,0.64678125,565.31,1329.07,2.413999421170673 -2008-07-08,0.0,22.259999999999998,0.645352199074074,509.64,1672.77,2.251622778491031 -2008-07-09,8.76,23.475,0.6440515046296297,306.16,2068.56,2.2083223404431265 -2008-07-10,10.47,21.355,0.6438894675925926,331.45,1737.93,2.327398545074864 -2008-07-11,0.0,16.79,0.6427809027777778,481.79,1248.72,2.14337168337127 -2008-07-12,0.0,15.84,0.6407940972222222,541.93,1009.72,2.013470369227557 -2008-07-13,0.31,17.56,0.6399997685185186,437.59,1351.62,1.9160443836197718 -2008-07-14,11.74,18.78,0.6395354166666667,266.11,1633.92,1.8943941645958196 -2008-07-15,2.05,18.8,0.6378482638888888,408.67,1402.72,1.7753179599640823 -2008-07-16,2.95,18.235,0.6360001157407408,399.03,1300.63,1.6670668648443212 -2008-07-17,5.63,18.915,0.6355359953703703,338.74,1413.24,1.5696408792365362 -2008-07-18,3.92,18.475,0.6338483796296296,316.78,1504.26,1.4830400031407271 -2008-07-19,5.28,18.395,0.6319996527777777,259.48,1587.1,1.3964391270449183 -2008-07-20,10.58,19.205,0.6315355324074073,302.81,1562.28,1.4722148936287511 -2008-07-21,11.59,19.73,0.6287943287037038,278.42,1630.41,1.3423135794850378 -2008-07-22,11.44,19.35,0.628,264.77,1628.79,1.277362922413181 -2008-07-23,1.33,17.41,0.6267813657407407,346.21,1442.58,1.266537812901205 -2008-07-24,2.55,19.619999999999997,0.624052199074074,265.73,1759.79,1.2448875938772528 -2008-07-25,10.94,20.915,0.6238902777777778,237.56,1874.64,1.2881880319251573 -2008-07-26,0.0,19.665,0.6207944444444444,411.28,1532.92,1.2448875938772528 -2008-07-27,5.36,20.509999999999998,0.6199998842592592,299.86,1710.84,1.2015871558293483 -2008-07-28,7.26,19.515,0.6183303240740741,275.75,1605.42,1.2015871558293483 -2008-07-29,8.67,18.585,0.615999537037037,243.41,1588.49,1.266537812901205 -2008-07-30,4.95,18.395,0.6151532407407407,335.52,1454.08,1.2881880319251573 -2008-07-31,0.77,19.055,0.6120002314814815,348.3,1575.78,1.2448875938772528 -2008-08-01,17.65,19.065,0.6115356481481482,181.98,1781.29,1.3856140175329423 -2008-08-02,32.52,19.155,0.6080510416666667,164.46,1841.66,1.9376946026437238 -2008-08-03,23.57,19.025,0.6078891203703704,174.43,1806.34,2.3706989831227685 -2008-08-04,21.07,17.295,0.6042853009259259,197.37,1596.62,2.6846271589700756 -2008-08-05,0.34,16.39,0.6039916666666666,376.66,1345.99,2.9119544587215738 -2008-08-06,0.0,15.549999999999999,0.6002854166666667,433.94,1183.31,2.9660800062814543 -2008-08-07,0.0,14.91,0.5999998842592592,365.43,1256.09,2.9336046777455267 -2008-08-08,0.42,15.16,0.5962851851851851,244.15,1416.53,2.8578289111616932 -2008-08-09,8.25,16.259999999999998,0.5959997685185184,210.53,1481.99,2.9552548967694783 -2008-08-10,4.39,17.525,0.5920523148148148,297.74,1411.24,2.9119544587215738 -2008-08-11,5.32,16.81,0.591992824074074,285.07,1400.68,2.8145284731137887 -2008-08-12,6.96,16.9,0.5880002314814815,272.84,1432.14,2.9660800062814543 -2008-08-13,12.12,16.705,0.5879922453703703,286.45,1382.44,3.095981320425168 -2008-08-14,1.19,16.97,0.5840005787037037,437.2,1289.66,2.8578289111616932 -2008-08-15,0.0,17.27,0.5835359953703704,451.28,1267.65,2.7062773779940277 -2008-08-16,0.04,17.465,0.5800003472222222,450.02,1281.61,2.5655509543383386 -2008-08-17,0.01,15.95,0.5787818287037036,437.27,1203.56,2.4031743116586965 -2008-08-18,3.32,15.11,0.5760005787037037,396.03,918.72,2.2624478880030074 -2008-08-19,5.44,15.82,0.5738478009259259,328.3,1202.71,2.132546573859294 -2008-08-20,0.0,12.695,0.5719994212962963,393.38,1032.25,1.9485197121557 -2008-08-21,0.0,14.729999999999999,0.5680513888888888,459.37,997.59,1.8186183980119868 -2008-08-22,0.0,18.765,0.5679997685185185,468.76,1182.68,1.7103673028922255 -2008-08-23,0.0,21.04,0.5639996527777777,440.71,1453.72,1.6129413172844407 -2008-08-24,0.0,20.759999999999998,0.5639916666666667,413.16,1544.53,1.5263404411886317 -2008-08-25,6.0,18.415,0.56,285.87,1436.03,1.4289144555808466 -2008-08-26,0.0,14.265,0.558330324074074,389.84,1100.52,1.3206633604610856 -2008-08-27,0.0,14.125,0.5560002314814815,442.63,928.19,1.2340624843652768 -2008-08-28,0.0,16.845,0.5520519675925926,447.31,1067.81,1.158286717781444 -2008-08-29,0.0,15.96,0.5520004629629629,401.5,1161.14,1.0933360607095872 -2008-08-30,0.13,16.025,0.5479999999999999,353.4,1271.19,1.038128002198509 -2008-08-31,0.94,15.375,0.5479921296296296,335.81,1220.66,0.9991576079553951 -2008-09-01,0.0,14.95,0.5439997685185185,397.93,1061.59,0.921216819469167 -2008-09-02,0.0,16.21,0.540794212962963,399.99,1128.03,0.8725038266652746 -2008-09-03,0.0,16.57,0.54,400.39,1131.74,0.8292033886173701 -2008-09-04,0.0,15.459999999999999,0.5359994212962963,399.82,1037.74,0.773995330106292 -2008-09-05,0.0,12.915000000000001,0.5359994212962963,408.39,850.58,0.7285298701559924 -2008-09-06,2.65,16.490000000000002,0.5319998842592593,285.35,1258.73,0.7014670963760521 -2008-09-07,4.29,16.555,0.5298482638888888,200.89,1394.67,0.667909256888926 -2008-09-08,0.98,14.055,0.5279998842592593,200.1,1279.7,0.6560016364257523 -2008-09-09,18.27,13.425,0.5240002314814816,189.78,1167.5,0.7122922058880281 -2008-09-10,19.67,10.15,0.5240002314814816,236.43,864.4,0.8172957681541964 -2008-09-11,0.0,8.625,0.520000462962963,378.13,644.16,0.7599226877407229 -2008-09-12,1.5,9.204999999999998,0.5183310185185186,340.44,709.27,0.7361074468143756 -2008-09-13,0.0,12.209999999999999,0.5159998842592592,270.63,1024.79,0.7198697825464114 -2008-09-14,0.0,15.14,0.511999537037037,227.92,1324.68,0.7090446730344352 -2008-09-15,9.41,15.685,0.511999537037037,210.54,1271.38,0.7750778410574897 -2008-09-16,1.89,11.11,0.5079996527777778,334.32,746.14,0.7285298701559924 -2008-09-17,2.32,10.13,0.5067805555555556,305.98,718.57,0.6906419868640759 -2008-09-18,4.44,7.665,0.503999537037037,268.22,618.12,0.6473415488161715 -2008-09-19,0.0,4.39,0.4999997685185186,368.53,468.82,0.6127011983778479 -2008-09-20,0.0,7.96,0.4999997685185186,373.18,585.56,0.5867209355491053 -2008-09-21,0.0,9.425,0.4959997685185185,335.68,724.96,0.5369254317940151 -2008-09-22,0.0,5.1,0.49366840277777774,342.57,519.65,0.506615125160482 -2008-09-23,0.0,5.54,0.4919994212962963,375.54,473.08,0.4882124389901227 -2008-09-24,0.0,7.875,0.48800034722222224,376.02,535.84,0.46223217616137996 -2008-09-25,0.0,12.46,0.48800034722222224,353.9,785.99,0.44382948999102056 -2008-09-26,0.0,14.37,0.4840002314814815,329.67,953.51,0.428674336674254 -2008-09-27,18.96,13.524999999999999,0.48167002314814816,173.49,1139.18,0.487129928038925 -2008-09-28,25.27,15.655,0.4800005787037037,100.8,1490.91,0.5997110669634765 -2008-09-29,9.8,13.54,0.4760001157407408,124.52,1261.91,0.7361074468143756 -2008-09-30,0.0,11.24,0.4760001157407408,227.46,977.22,0.7306948920583874 -2008-10-01,0.53,11.25,0.4719996527777777,213.49,985.47,0.7426025125215612 -2008-10-02,16.67,9.245000000000001,0.4701513888888889,150.87,893.26,0.8811639142748555 -2008-10-03,16.89,6.574999999999999,0.46799976851851854,180.81,703.03,1.0933360607095872 -2008-10-04,0.77,5.58,0.463999537037037,199.34,696.98,1.0619432431248563 -2008-10-05,0.0,4.595,0.463999537037037,265.26,583.54,1.0760158854904256 -2008-10-06,0.0,4.11,0.46,261.42,565.93,1.071685841685635 -2008-10-07,0.0,4.555,0.45920532407407405,244.09,596.57,1.0532831555152757 -2008-10-08,0.0,6.93,0.45599953703703705,310.79,574.69,1.0392105131497067 -2008-10-09,1.03,7.984999999999999,0.45200810185185186,293.5,641.98,1.0164777831745568 -2008-10-10,0.21,8.549999999999999,0.452,217.56,806.73,0.9840024546386285 -2008-10-11,0.0,7.295,0.4480001157407407,254.72,679.35,0.9471970822979098 -2008-10-12,1.3,5.925,0.4480001157407407,280.95,571.82,0.9147217537619815 -2008-10-13,2.15,6.855,0.4440001157407408,230.45,675.34,0.8963190675916219 -2008-10-14,0.23,7.635,0.44166932870370373,238.68,707.71,0.8876589799820411 -2008-10-15,0.48,8.395,0.4400003472222222,243.64,729.32,0.8497710966901247 -2008-10-16,3.03,7.16,0.43611064814814815,151.34,758.68,0.8313684105197653 -2008-10-17,2.64,3.7,0.43600011574074077,177.48,569.69,0.8032231257886274 -2008-10-18,0.0,1.3850000000000002,0.43200000000000005,249.27,440.0,0.7718303082038968 -2008-10-19,0.0,1.1099999999999999,0.43194837962962956,274.65,382.88,0.7415200015703636 -2008-10-20,0.0,2.2899999999999996,0.428,292.63,360.02,0.7155397387416209 -2008-10-21,6.47,2.71,0.4261517361111111,211.14,467.17,0.6993020744736568 -2008-10-22,13.34,-0.52,0.42400011574074076,104.78,474.3,0.7718303082038968 -2008-10-23,0.0,-2.8099999999999996,0.42121863425925926,242.85,314.22,0.7631702205943158 -2008-10-24,0.0,0.355,0.41999976851851856,255.95,373.3,0.7555926439359325 -2008-10-25,0.0,3.225,0.4164640046296296,270.31,430.27,0.7523451110823397 -2008-10-26,23.79,7.34,0.4159996527777778,152.63,728.49,0.9417845275419217 -2008-10-27,13.98,8.155,0.4121109953703704,156.55,752.98,1.1149862797335395 -2008-10-28,6.99,9.1,0.41200046296296294,166.7,759.72,1.2015871558293483 -2008-10-29,8.14,6.755,0.4080084490740741,151.97,678.21,1.5804659887485122 -2008-10-30,2.08,0.7999999999999998,0.40794895833333333,126.96,523.57,1.6995421933802495 -2008-10-31,0.0,1.5199999999999998,0.40399999999999997,177.59,492.75,1.7969681789880345 -2008-11-01,0.0,0.9700000000000002,0.4037145833333334,176.42,474.53,1.8402686170359388 -2008-11-02,0.0,-1.5850000000000002,0.40000023148148145,155.86,414.01,1.851093726547915 -2008-11-03,0.0,-0.77,0.39971435185185183,186.67,400.0,1.8402686170359388 -2008-11-04,0.0,4.29,0.3960082175925926,170.16,600.28,1.8077932885000105 -2008-11-05,0.0,9.315,0.39571446759259266,181.27,814.22,1.7753179599640823 -2008-11-06,0.0,9.92,0.3921108796296296,216.62,716.81,1.7320175219161775 -2008-11-07,13.1,8.81,0.3919487268518519,134.15,782.52,1.6887170838682732 -2008-11-08,4.19,5.93,0.3884644675925926,74.93,781.53,1.6670668648443212 -2008-11-09,13.92,5.805,0.38799999999999996,94.98,731.47,1.8835690550838433 -2008-11-10,5.43,3.64,0.3848466435185185,89.87,640.0,1.9268694931317478 -2008-11-11,7.82,0.8349999999999997,0.3840003472222222,93.71,514.68,2.035120588251509 -2008-11-12,1.25,-0.74,0.38166932870370374,110.86,464.08,2.0675959167874374 -2008-11-13,0.28,-2.095,0.3799997685185186,181.54,345.5,2.0784210262994134 -2008-11-14,6.7,2.145,0.37920590277777777,120.09,515.32,2.14337168337127 -2008-11-15,10.43,8.66,0.37611087962962964,87.06,905.5,2.33822365458684 -2008-11-16,17.44,10.025,0.3759486111111111,131.1,823.97,2.7928782540898367 -2008-11-17,4.61,2.975,0.37321898148148147,132.18,540.59,3.085156210913192 -2008-11-18,1.4,-3.3850000000000002,0.3719998842592593,107.75,385.25,3.1934073060329524 -2008-11-19,0.49,-6.3100000000000005,0.37120578703703705,130.25,297.34,3.1934073060329524 -2008-11-20,0.0,-7.83,0.3684645833333333,93.9,286.64,3.1176315394491203 -2008-11-21,0.0,-8.445,0.3680003472222222,136.84,240.5,2.998555334817383 -2008-11-22,2.38,-7.6,0.36615196759259255,107.94,275.4,2.8361786921377408 -2008-11-23,0.71,-8.195,0.3644642361111111,84.81,282.52,2.6954522684820517 -2008-11-24,0.0,-8.565,0.36400011574074076,167.77,239.61,2.554725844826362 -2008-11-25,0.0,-6.985,0.3621513888888889,197.4,240.0,2.4031743116586965 -2008-11-26,16.74,-0.8999999999999999,0.3604638888888889,100.48,449.22,2.424824530682649 -2008-11-27,2.27,-0.24,0.3599998842592593,82.85,522.93,2.435649640194625 -2008-11-28,0.82,-0.245,0.35920578703703704,80.9,524.2,2.349048764098816 -2008-11-29,3.05,-1.36,0.3572189814814815,83.8,466.79,2.2624478880030074 -2008-11-30,0.0,-2.96,0.35611041666666665,161.89,344.5,2.1866721214191744 -2008-12-01,10.63,-1.6100000000000003,0.3559483796296296,93.03,439.23,2.154196792883246 -2008-12-02,5.53,-0.28500000000000014,0.3546476851851852,86.61,485.2,2.121721464347318 -2008-12-03,0.0,-1.545,0.35321898148148145,111.37,445.49,2.045945697763485 -2008-12-04,1.14,-2.13,0.35211030092592593,120.53,418.13,1.9809950406916284 -2008-12-05,1.46,-7.285,0.35199988425925927,179.9,230.35,1.8835690550838433 -2008-12-06,1.44,-11.71,0.35171423611111113,189.85,151.75,1.8077932885000105 -2008-12-07,2.66,-7.665,0.3506474537037037,160.83,223.6,1.7211924124042017 -2008-12-08,1.62,-12.175,0.34966921296296294,172.9,143.22,1.6129413172844407 -2008-12-09,4.1,-14.645,0.3488465277777778,155.37,119.93,1.547990660212584 -2008-12-10,12.42,-8.935,0.3481105324074074,141.68,186.03,1.537165550700608 -2008-12-11,7.23,-12.365,0.3480079861111111,142.06,134.95,1.4722148936287511 -2008-12-12,20.27,-9.67,0.34794849537037037,138.97,179.61,1.4938651126527034 -2008-12-13,3.81,-11.285,0.34771435185185184,171.87,154.89,1.4938651126527034 -2008-12-14,0.14,-16.695,0.3472057870370371,199.43,80.0,1.461389784116775 -2008-12-15,3.22,-5.43,0.3466476851851852,149.72,228.82,1.4289144555808466 -2008-12-16,2.23,-1.9799999999999995,0.3466476851851852,169.59,315.68,1.4289144555808466 -2008-12-17,6.66,-12.21,0.3461518518518519,111.7,171.13,1.4072642365568944 -2008-12-18,2.41,-14.975,0.3461518518518519,167.12,120.0,1.4072642365568944 -2008-12-19,0.0,-16.8,0.3456693287037037,187.85,86.64,1.3856140175329423 -2008-12-20,0.0,-21.705,0.3456693287037037,173.19,70.85,1.36396379850899 -2008-12-21,1.0,-24.005,0.3461518518518519,198.68,40.0,1.3314884699730618 -2008-12-22,16.65,-15.76,0.3461518518518519,121.6,120.07,1.2990131414371333 -2008-12-23,0.88,-16.91,0.3461518518518519,155.77,120.0,1.266537812901205 -2008-12-24,5.28,-11.58,0.3466476851851852,128.58,160.04,1.2232373748533005 -2008-12-25,5.26,-5.875,0.3472057870370371,144.23,208.74,1.1907620463173723 -2008-12-26,0.0,-16.555,0.34771435185185184,204.04,80.0,1.1907620463173723 -2008-12-27,5.05,-13.26,0.34794849537037037,149.82,104.69,1.16911182729342 -2008-12-28,10.47,-1.3450000000000002,0.34800000000000003,108.51,381.99,1.1474616082694677 -2008-12-29,0.0,-1.6700000000000002,0.3480079861111111,150.27,363.46,1.1474616082694677 -2008-12-30,0.0,-9.86,0.3484641203703704,174.03,170.13,1.1041611702215632 -2008-12-31,0.0,-5.765,0.3482361111111111,162.15,266.8,1.0651907759784494 -2009-01-01,0.0,-18.630000000000003,0.34921886574074074,96.42,111.19,1.0197253160281496 -2009-01-02,0.0,-16.325,0.35015162037037034,140.24,114.77,0.9829199436874309 -2009-01-03,0.0,-15.94,0.35120578703703703,146.45,120.0,0.9461145713467122 -2009-01-04,0.0,-13.0,0.3519482638888889,134.53,150.18,0.9103917099571911 -2009-01-05,1.01,-10.2,0.35200787037037035,137.1,195.98,0.8789988923724602 -2009-01-06,0.58,-11.07,0.35284641203703704,132.08,177.14,0.8465235638365318 -2009-01-07,4.36,-15.54,0.3541518518518519,144.0,113.24,0.8151307462518013 -2009-01-08,13.85,-12.705,0.35571446759259256,84.91,164.3,0.7848204396182681 -2009-01-09,0.11,-12.29,0.35600000000000004,96.09,183.4,0.7566751548871301 -2009-01-10,0.0,-15.945,0.3564643518518519,136.38,120.0,0.7328599139607828 -2009-01-11,0.0,-19.549999999999997,0.35815185185185183,182.37,80.0,0.7068796511320401 -2009-01-12,0.0,-18.84,0.3599482638888889,192.76,80.0,0.6852294321080878 -2009-01-13,0.03,-13.915,0.36000787037037035,202.72,107.56,0.6657442349865309 -2009-01-14,1.94,-11.325,0.36121863425925926,196.32,131.64,0.6462590378649739 -2009-01-15,0.0,-25.865000000000002,0.3637142361111111,208.84,40.0,0.6267738407434169 -2009-01-16,0.0,-30.019999999999996,0.36400011574074076,223.97,8.53,0.6083711545730576 -2009-01-17,0.0,-29.785,0.36521898148148146,222.8,26.67,0.5932160012562909 -2009-01-18,5.21,-26.284999999999997,0.36771435185185186,196.14,40.0,0.5748133150859315 -2009-01-19,8.18,-16.885,0.3680083333333333,129.24,99.62,0.5574931398667697 -2009-01-20,1.97,-12.495000000000001,0.3696696759259259,134.35,160.0,0.5434204975012007 -2009-01-21,0.0,-17.015,0.3719483796296296,210.8,80.0,0.5325953879892247 -2009-01-22,0.0,-14.645,0.37211041666666667,217.78,107.55,0.5217702784772486 -2009-01-23,0.74,-17.955000000000002,0.3746479166666667,248.43,62.94,0.5131101908676677 -2009-01-24,2.09,-18.64,0.3760002314814815,218.45,80.0,0.5055326142092844 -2009-01-25,0.0,-22.02,0.3772188657407407,229.5,40.0,0.5001200594532963 -2009-01-26,0.0,-28.145,0.3799997685185186,266.33,19.78,0.4947075046973083 -2009-01-27,0.0,-26.560000000000002,0.3804640046296296,268.58,40.0,0.4914599718437154 -2009-01-28,5.81,-22.445,0.383714699074074,232.07,40.0,0.4892949499413202 -2009-01-29,13.16,-15.1,0.38400833333333334,167.15,111.53,0.5358429208428175 -2009-01-30,0.0,-12.809999999999999,0.3866476851851852,229.0,120.76,0.5509980741595841 -2009-01-31,1.14,-10.35,0.38799999999999996,189.63,188.57,0.5477505413059912 -2009-02-01,0.0,-16.455,0.3901519675925926,272.93,80.0,0.545585519403596 -2009-02-02,0.0,-11.58,0.39200034722222227,242.43,137.23,0.5412554755988056 -2009-02-03,0.0,-12.09,0.3936696759259259,245.81,128.73,0.5380079427452128 -2009-02-04,0.0,-15.105,0.39600023148148145,165.47,127.19,0.5347604098916199 -2009-02-05,0.0,-18.16,0.3972188657407407,218.69,86.02,0.5293478551356319 -2009-02-06,0.0,-17.945,0.40000023148148145,273.58,80.0,0.5250178113308414 -2009-02-07,0.31,-13.469999999999999,0.4012189814814815,289.44,99.81,0.520687767526051 -2009-02-08,1.0,-6.315,0.40399999999999997,257.35,213.85,0.520687767526051 -2009-02-09,0.0,-14.219999999999999,0.40521898148148144,286.35,94.27,0.5163577237212605 -2009-02-10,0.0,-18.085,0.4080003472222223,285.35,80.0,0.5076976361116796 -2009-02-11,1.41,-9.1,0.40966990740740744,215.76,203.69,0.506615125160482 -2009-02-12,4.63,-2.2350000000000003,0.41200046296296294,143.26,364.14,0.5087801470628772 -2009-02-13,5.61,-10.245000000000001,0.41464768518518513,212.32,155.03,0.5141927018188653 -2009-02-14,2.02,-11.21,0.4159996527777778,160.79,184.14,0.5120276799164701 -2009-02-15,0.0,-6.04,0.419205324074074,141.13,303.17,0.506615125160482 -2009-02-16,0.0,-5.18,0.41999976851851856,141.71,332.12,0.5001200594532963 -2009-02-17,0.0,-5.33,0.42400011574074076,173.09,312.4,0.4947075046973083 -2009-02-18,0.0,-10.53,0.42400011574074076,344.28,127.96,0.4990375485020987 -2009-02-19,4.76,-7.4799999999999995,0.428,214.69,226.68,0.4903774608925179 -2009-02-20,7.33,-7.195,0.42846388888888887,112.68,285.62,0.487129928038925 -2009-02-21,0.07,-8.440000000000001,0.43200000000000005,177.86,248.57,0.48388239518533216 -2009-02-22,0.0,-10.075000000000001,0.4336695601851852,299.26,174.07,0.4806348623317393 -2009-02-23,9.14,-6.805000000000001,0.43600011574074077,137.76,285.67,0.4784698404293441 -2009-02-24,6.37,-8.035,0.4399488425925926,169.91,252.0,0.4752223075757513 -2009-02-25,0.0,-11.379999999999999,0.4400003472222222,385.99,128.74,0.4730572856733561 -2009-02-26,0.0,-9.370000000000001,0.4440001157407408,395.81,149.66,0.47197477472215843 -2009-02-27,7.6,-3.7,0.4440081018518519,259.54,289.48,0.47197477472215843 -2009-02-28,6.81,-4.98,0.4480001157407407,316.26,198.07,0.5196052565748533 -2009-03-01,0.0,-16.759999999999998,0.4501516203703704,413.87,80.0,0.5250178113308414 -2009-03-02,4.22,-13.705,0.452,298.92,134.17,0.5271828332332367 -2009-03-03,6.71,-12.105,0.45599953703703705,152.47,191.71,0.6007935779146741 -2009-03-04,0.0,-17.049999999999997,0.45599953703703705,433.89,80.0,0.6127011983778479 -2009-03-05,0.0,-14.645000000000001,0.46,435.56,97.5,0.6072886436218599 -2009-03-06,9.5,-9.655,0.4604638888888889,337.19,140.13,0.6646617240353332 -2009-03-07,8.73,-2.1500000000000004,0.463999537037037,255.85,350.5,0.7718303082038968 -2009-03-08,4.17,-1.1649999999999998,0.46799976851851854,242.2,394.55,0.8097181914958131 -2009-03-09,0.0,-5.635,0.46799976851851854,446.54,212.21,0.8140482353006037 -2009-03-10,0.0,-6.13,0.4719996527777777,469.99,199.52,0.8172957681541964 -2009-03-11,2.18,-3.1950000000000003,0.4719996527777777,374.36,283.41,0.8454410528853343 -2009-03-12,3.76,-7.68,0.4760001157407408,355.78,181.04,0.848688585738927 -2009-03-13,0.0,-15.18,0.4800005787037037,480.52,88.05,0.8530186295437175 -2009-03-14,0.0,-11.355,0.4800005787037037,494.61,126.91,0.8562661623973103 -2009-03-15,0.0,-6.125,0.4840002314814815,431.56,231.35,0.8335334324221606 -2009-03-16,0.0,-11.450000000000001,0.4840002314814815,507.59,120.0,0.8259558557637772 -2009-03-17,0.0,-8.315000000000001,0.48800034722222224,531.72,125.02,0.8183782791053941 -2009-03-18,0.35,-3.425,0.4919994212962963,493.04,235.65,0.8151307462518013 -2009-03-19,0.09,-1.085,0.4919994212962963,361.84,379.93,0.8021406148374299 -2009-03-20,0.0,-7.950000000000001,0.4959997685185185,504.18,160.0,0.7891504834230585 -2009-03-21,0.0,-8.834999999999999,0.4959997685185185,507.57,158.18,0.7837379286670705 -2009-03-22,0.0,-6.654999999999999,0.4999997685185186,483.58,196.55,0.768582775350304 -2009-03-23,0.0,-9.05,0.503999537037037,451.91,170.32,0.7436850234727588 -2009-03-24,0.0,-6.61,0.503999537037037,392.04,236.06,0.72961238110719 -2009-03-25,0.0,-3.29,0.5079996527777778,485.29,255.45,0.72961238110719 -2009-03-26,0.0,-2.04,0.5079996527777778,518.71,252.27,0.7231173154000042 -2009-03-27,0.0,-0.03500000000000014,0.511999537037037,433.34,363.76,0.7112096949368305 -2009-03-28,0.0,2.0649999999999995,0.5159998842592592,424.7,440.0,0.6993020744736568 -2009-03-29,0.81,4.135,0.5159998842592592,448.77,469.62,0.6873944540104832 -2009-03-30,15.57,2.19,0.520000462962963,265.07,496.49,0.6776518554497045 -2009-03-31,8.22,-1.5549999999999997,0.520000462962963,154.18,443.45,0.7707477972526992 -2009-04-01,0.0,-1.6,0.5240002314814816,312.78,401.58,0.8800814033236579 -2009-04-02,1.9,2.1950000000000003,0.5279998842592593,365.21,483.6,1.032715447442521 -2009-04-03,3.24,4.335000000000001,0.5279998842592593,360.14,509.2,1.2340624843652768 -2009-04-04,13.65,5.19,0.5319998842592593,279.18,618.12,1.764492850452106 -2009-04-05,4.74,2.88,0.5319998842592593,181.43,607.53,2.6629769399461236 -2009-04-06,3.43,1.6949999999999998,0.5359994212962963,163.42,575.51,3.593936357976069 -2009-04-07,14.13,3.25,0.5395353009259259,205.87,607.32,4.708922637709608 -2009-04-08,4.87,0.995,0.54,181.44,537.19,5.79143358890722 -2009-04-09,0.0,0.7599999999999999,0.5439997685185185,210.81,546.85,6.300213735970097 -2009-04-10,0.0,1.1350000000000002,0.5439997685185185,291.38,520.0,6.527541035721595 -2009-04-11,0.0,0.2400000000000002,0.5479999999999999,409.09,440.2,6.592491692793452 -2009-04-12,0.0,-0.7450000000000001,0.5498481481481481,480.42,377.53,6.614141911817404 -2009-04-13,1.76,-1.4900000000000002,0.5520004629629629,267.18,450.5,6.48424059767369 -2009-04-14,0.0,-0.8650000000000002,0.5559922453703704,420.03,415.55,6.311038845482074 -2009-04-15,0.0,0.1200000000000001,0.5560002314814815,549.72,373.12,6.137837093290456 -2009-04-16,0.0,0.5900000000000003,0.56,579.25,370.91,5.997110669634766 -2009-04-17,0.32,1.8200000000000003,0.5600517361111111,588.72,406.67,5.8888595745150045 -2009-04-18,0.0,2.9450000000000003,0.5639996527777777,551.29,473.65,5.910509793538957 -2009-04-19,0.0,1.1750000000000003,0.5663305555555556,563.84,413.01,5.8996846840269805 -2009-04-20,0.0,1.4650000000000003,0.5679997685185185,626.34,358.46,5.8996846840269805 -2009-04-21,7.93,3.685,0.5715351851851852,501.5,478.13,5.9538102315868615 -2009-04-22,13.02,6.735,0.5719994212962963,338.7,720.29,6.646617240353332 -2009-04-23,9.3,8.37,0.5760005787037037,357.81,783.88,8.07553169593418 -2009-04-24,5.11,6.055000000000001,0.5760005787037037,417.87,652.53,9.612697246634786 -2009-04-25,0.0,10.955,0.5800003472222222,641.16,631.96,10.197253160281496 -2009-04-26,0.0,10.78,0.5807946759259259,635.86,644.79,10.82510951197611 -2009-04-27,0.0,6.15,0.5840005787037037,632.4,505.8,10.82510951197611 -2009-04-28,0.2,11.190000000000001,0.5853530092592593,635.33,626.9,10.413755350521019 -2009-04-29,2.6,7.085,0.5880002314814815,521.49,548.1,10.024051408089878 -2009-04-30,0.0,5.155,0.5903311342592593,634.46,448.35,9.439495494443168 -2009-05-01,5.45,9.57,0.5920008101851852,445.16,692.22,8.930715347380291 -2009-05-02,3.77,8.54,0.5943310185185184,402.34,718.78,8.46523563836532 -2009-05-03,0.0,6.6899999999999995,0.5959997685185184,563.22,598.12,7.956455491302442 -2009-05-04,0.0,8.719999999999999,0.5987809027777777,585.04,652.05,7.393549796679685 -2009-05-05,0.0,6.969999999999999,0.5999998842592592,637.63,479.38,6.863119430592855 -2009-05-06,4.03,7.7,0.6027810185185185,366.7,705.79,6.37598950255393 -2009-05-07,5.84,7.154999999999999,0.6039996527777778,212.26,816.92,5.997110669634766 -2009-05-08,3.29,9.175,0.6063304398148148,283.24,905.26,5.694007603299435 -2009-05-09,4.93,11.585,0.6079995370370371,404.19,843.83,5.325953879892247 -2009-05-10,15.47,10.855,0.6098476851851852,337.07,905.45,5.1202767991647 -2009-05-11,0.0,6.3100000000000005,0.6120002314814815,460.07,648.55,4.903774608925178 -2009-05-12,0.0,6.62,0.6133524305555556,590.17,540.47,4.6223217616138 -2009-05-13,0.0,8.940000000000001,0.6159914351851852,630.56,533.68,4.340868914302421 -2009-05-14,1.82,12.035,0.6162851851851852,520.02,792.83,4.102716505038946 -2009-05-15,4.97,12.43,0.6195356481481481,352.27,957.75,3.799613438703615 -2009-05-16,1.57,8.045,0.6199998842592592,546.64,565.55,3.50733548188026 -2009-05-17,9.4,8.565,0.6227818287037037,371.31,710.32,3.3449588392006184 -2009-05-18,0.37,4.295,0.6240006944444445,379.35,605.6,3.1284566489610963 -2009-05-19,0.0,5.765000000000001,0.6253526620370371,554.63,530.2,2.92277956823355 -2009-05-20,0.11,8.715,0.6278895833333333,565.09,633.83,2.6954522684820517 -2009-05-21,0.0,12.745000000000001,0.6280518518518519,597.62,727.74,2.53307562580241 -2009-05-22,0.0,16.505,0.6303303240740741,577.55,948.03,2.359873873610792 -2009-05-23,0.0,8.91,0.6319916666666667,591.84,571.46,2.1866721214191744 -2009-05-24,1.76,11.025,0.6322856481481481,448.27,796.02,2.045945697763485 -2009-05-25,0.0,7.13,0.6347809027777778,494.43,623.79,1.9376946026437238 -2009-05-26,0.0,5.175,0.6360001157407408,479.0,564.57,1.8077932885000105 -2009-05-27,0.32,8.15,0.6362856481481481,479.72,696.97,1.7103673028922255 -2009-05-28,1.26,9.469999999999999,0.6387810185185185,472.68,735.89,1.6237664267964167 -2009-05-29,16.7,10.24,0.6399917824074074,273.25,925.3,1.6670668648443212 -2009-05-30,9.24,11.555,0.6400512731481481,263.2,1024.72,1.7753179599640823 -2009-05-31,12.07,11.415,0.6418483796296296,401.82,805.09,1.7861430694760585 -2009-06-01,9.82,10.57,0.6435354166666667,382.03,791.53,1.9052192741077956 -2009-06-02,1.03,10.97,0.6439998842592592,468.59,861.21,1.9160443836197718 -2009-06-03,0.0,10.604999999999999,0.6442856481481481,489.49,817.75,1.8943941645958196 -2009-06-04,0.0,10.555,0.6458482638888889,520.43,786.71,1.8402686170359388 -2009-06-05,0.0,10.92,0.6471538194444444,593.39,635.32,1.7753179599640823 -2009-06-06,0.61,14.495,0.6479927083333333,549.03,881.34,1.6995421933802495 -2009-06-07,1.54,12.035,0.6480521990740741,512.02,775.39,1.6021162077724647 -2009-06-08,0.0,9.505,0.6487947916666666,511.52,701.86,1.5155153316766559 -2009-06-09,0.96,8.370000000000001,0.6498487268518519,505.73,604.92,1.4397395650928229 -2009-06-10,5.24,9.559999999999999,0.6507814814814814,239.69,910.31,1.4072642365568944 -2009-06-11,2.56,10.29,0.6515357638888889,208.55,1026.36,1.3531386889970138 -2009-06-12,6.39,12.015,0.6519921296296297,206.46,1125.16,1.3314884699730618 -2009-06-13,7.97,12.24,0.6520001157407407,362.36,886.54,1.3206633604610856 -2009-06-14,0.0,14.7,0.6520517361111111,509.17,947.84,1.2557127033892288 -2009-06-15,2.24,15.065,0.6522856481481482,418.33,1067.78,1.2124122653413245 -2009-06-16,0.0,15.08,0.6527943287037037,478.32,1019.96,1.1474616082694677 -2009-06-17,0.0,17.24,0.653352662037037,486.09,1120.65,1.1041611702215632 -2009-06-18,0.0,18.055,0.653848611111111,471.64,1205.05,1.052200644564078 -2009-06-19,1.48,17.155,0.653848611111111,358.57,1340.55,1.002405140808988 -2009-06-20,9.68,16.115000000000002,0.653848611111111,140.21,1551.59,1.0034876517601854 -2009-06-21,11.58,16.735,0.6543310185185185,167.26,1570.21,1.2232373748533005 -2009-06-22,0.0,16.495,0.6543310185185185,303.12,1429.51,1.179936936805396 -2009-06-23,0.0,17.04,0.653848611111111,340.14,1426.73,1.158286717781444 -2009-06-24,0.0,19.15,0.653848611111111,347.75,1620.8,1.1474616082694677 -2009-06-25,0.0,20.155,0.653352662037037,401.18,1615.73,1.158286717781444 -2009-06-26,12.3,20.63,0.653352662037037,275.76,1734.65,1.2557127033892288 -2009-06-27,9.76,19.255000000000003,0.6527943287037037,218.55,1740.85,1.266537812901205 -2009-06-28,2.51,19.125,0.6522856481481482,181.42,1877.52,1.2557127033892288 -2009-06-29,7.26,17.53,0.6520517361111111,165.7,1681.79,1.2881880319251573 -2009-06-30,4.65,18.195,0.6519921296296297,227.05,1631.65,1.3206633604610856 -2009-07-01,3.51,18.025,0.6518894675925926,247.41,1575.44,1.2990131414371333 -2009-07-02,3.69,18.924999999999997,0.6511538194444445,222.57,1735.87,1.2881880319251573 -2009-07-03,2.45,18.240000000000002,0.6503311342592593,203.85,1767.48,1.277362922413181 -2009-07-04,6.74,17.55,0.6493528935185184,151.12,1734.25,1.277362922413181 -2009-07-05,5.67,16.38,0.6482863425925927,208.5,1524.75,1.2340624843652768 -2009-07-06,1.45,14.815,0.6480008101851852,296.15,1361.51,1.2232373748533005 -2009-07-07,2.11,13.055,0.647890162037037,302.02,1224.04,1.2448875938772528 -2009-07-08,0.04,12.745000000000001,0.64678125,349.74,1162.55,1.2340624843652768 -2009-07-09,0.0,14.805,0.645352199074074,523.23,977.9,1.179936936805396 -2009-07-10,0.0,17.225,0.6440515046296297,528.4,1057.7,1.158286717781444 -2009-07-11,0.0,18.509999999999998,0.6438894675925926,496.86,1292.49,1.1258113892455155 -2009-07-12,2.27,17.87,0.6427809027777778,398.71,1399.28,1.0825109511976112 -2009-07-13,6.28,15.695,0.6407940972222222,330.55,1240.24,1.0348804693449163 -2009-07-14,2.37,13.685,0.6399997685185186,404.39,1088.79,1.0143127612721616 -2009-07-15,0.0,12.690000000000001,0.6395354166666667,486.95,926.58,0.9591047027610835 -2009-07-16,0.48,14.084999999999999,0.6378482638888888,459.22,1096.24,0.9201343085179694 -2009-07-17,4.46,16.585,0.6360001157407408,301.97,1403.27,0.9017316223476101 -2009-07-18,20.32,17.97,0.6355359953703703,236.59,1650.91,1.0511181336128805 -2009-07-19,7.36,17.23,0.6338483796296296,290.19,1471.75,1.0933360607095872 -2009-07-20,0.0,17.345,0.6319996527777777,464.33,1336.5,1.0457055788568925 -2009-07-21,0.0,18.67,0.6315355324074073,472.1,1398.86,1.013230250320964 -2009-07-22,11.07,18.23,0.6287943287037038,300.08,1528.83,1.048953111710485 -2009-07-23,7.28,16.21,0.628,286.08,1381.93,1.1366364987574917 -2009-07-24,2.83,16.485,0.6267813657407407,379.13,1351.11,1.1149862797335395 -2009-07-25,19.1,15.44,0.624052199074074,236.43,1403.02,1.5046902221646794 -2009-07-26,4.59,15.015,0.6238902777777778,255.28,1345.4,1.6237664267964167 -2009-07-27,6.83,17.66,0.6207944444444444,261.61,1577.25,1.7103673028922255 -2009-07-28,4.67,19.855,0.6199998842592592,319.81,1624.09,1.7861430694760585 -2009-07-29,10.2,21.34,0.6183303240740741,352.73,1704.04,1.7753179599640823 -2009-07-30,31.74,21.845,0.615999537037037,291.77,1895.18,3.182582196520977 -2009-07-31,5.05,19.39,0.6151532407407407,340.22,1605.44,3.409909496272475 -2009-08-01,2.72,18.345,0.6120002314814815,339.79,1495.36,3.409909496272475 -2009-08-02,0.93,19.28,0.6115356481481482,424.97,1438.84,3.3016584011527144 -2009-08-03,2.62,19.48,0.6080510416666667,381.63,1502.43,3.1717570870090004 -2009-08-04,0.0,18.435000000000002,0.6078891203703704,460.87,1325.95,2.9552548967694783 -2009-08-05,0.0,19.965,0.6042853009259259,405.07,1597.96,2.7495778160419326 -2009-08-06,0.0,17.365000000000002,0.6039916666666666,431.32,1303.79,2.543900735314386 -2009-08-07,0.22,16.08,0.6002854166666667,410.77,1233.58,2.359873873610792 -2009-08-08,0.0,13.43,0.5999998842592592,460.51,941.29,2.1866721214191744 -2009-08-09,2.41,15.005,0.5962851851851851,419.78,1065.22,2.035120588251509 -2009-08-10,9.86,16.925,0.5959997685185184,280.66,1379.57,2.024295478739533 -2009-08-11,3.17,17.625,0.5920523148148148,302.46,1392.36,1.9268694931317478 -2009-08-12,0.0,19.115000000000002,0.591992824074074,415.4,1459.06,1.8077932885000105 -2009-08-13,0.0,19.665,0.5880002314814815,447.1,1400.08,1.6995421933802495 -2009-08-14,0.0,21.175,0.5879922453703703,449.09,1491.86,1.5804659887485122 -2009-08-15,0.0,22.385,0.5840005787037037,417.81,1737.99,1.4830400031407271 -2009-08-16,0.67,21.939999999999998,0.5835359953703704,374.89,1779.78,1.3856140175329423 -2009-08-17,6.18,23.535,0.5800003472222222,310.92,1995.09,1.3098382509491096 -2009-08-18,4.03,24.555,0.5787818287037036,283.04,2140.06,1.2340624843652768 -2009-08-19,3.8,22.755000000000003,0.5760005787037037,285.74,1884.35,1.179936936805396 -2009-08-20,0.0,18.175,0.5738478009259259,419.07,1321.09,1.1041611702215632 -2009-08-21,15.69,19.855,0.5719994212962963,263.88,1632.3,1.060860732173659 -2009-08-22,21.06,21.740000000000002,0.5680513888888888,183.56,2085.82,1.158286717781444 -2009-08-23,4.81,20.17,0.5679997685185185,246.86,1756.87,1.0825109511976112 -2009-08-24,0.0,17.15,0.5639996527777777,380.95,1316.05,1.041375535052102 -2009-08-25,0.0,16.700000000000003,0.5639916666666667,419.59,1171.09,0.9937450531994071 -2009-08-26,0.0,17.71,0.56,388.25,1315.39,0.9363719727859338 -2009-08-27,0.0,12.63,0.558330324074074,403.3,917.24,0.8454410528853343 -2009-08-28,0.0,9.545,0.5560002314814815,417.75,720.05,0.7880679724718609 -2009-08-29,0.12,9.85,0.5520519675925926,364.8,807.14,0.7458500453751541 -2009-08-30,5.88,12.315,0.5520004629629629,220.86,1062.95,0.7241998263512018 -2009-08-31,4.91,12.795,0.5479999999999999,248.46,1038.32,0.7177047606440161 -2009-09-01,0.0,10.565000000000001,0.5479921296296296,412.97,761.18,0.6624967021329381 -2009-09-02,0.0,14.09,0.5439997685185185,428.07,897.37,0.6246088188410216 -2009-09-03,0.0,16.75,0.540794212962963,382.7,1203.06,0.5910509793538956 -2009-09-04,0.0,16.64,0.54,392.24,1155.2,0.5574931398667697 -2009-09-05,0.0,12.58,0.5359994212962963,405.7,844.0,0.520687767526051 -2009-09-06,0.0,9.59,0.5359994212962963,408.77,682.7,0.4925424827949131 -2009-09-07,0.0,12.09,0.5319998842592593,426.44,740.91,0.47089226377096083 -2009-09-08,0.0,13.684999999999999,0.5298482638888888,394.58,908.55,0.44274697903982296 -2009-09-09,0.0,11.135000000000002,0.5279998842592593,406.76,726.03,0.4167667162110803 -2009-09-10,0.0,10.06,0.5240002314814816,424.8,607.98,0.3994465409919185 -2009-09-11,0.0,12.445,0.5240002314814816,416.26,731.49,0.37887883291916397 -2009-09-12,0.0,14.57,0.520000462962963,404.12,863.23,0.3615586577000021 -2009-09-13,0.38,14.075000000000001,0.5183310185185186,350.52,969.93,0.3496510372368284 -2009-09-14,1.57,11.155,0.5159998842592592,262.85,944.72,0.33341337296886425 -2009-09-15,0.34,10.02,0.511999537037037,279.69,860.76,0.31717570870090006 -2009-09-16,0.0,7.24,0.511999537037037,344.81,620.7,0.3020205553841335 -2009-09-17,0.0,7.290000000000001,0.5079996527777778,386.47,550.17,0.2911954458721574 -2009-09-18,4.08,8.344999999999999,0.5067805555555556,275.53,645.63,0.28361786921377413 -2009-09-19,2.88,8.28,0.503999537037037,197.02,796.98,0.26521518304341474 -2009-09-20,0.0,8.83,0.4999997685185186,324.69,711.48,0.2608851392386243 -2009-09-21,0.0,12.52,0.4999997685185186,362.63,800.0,0.2522250516290434 -2009-09-22,0.0,14.010000000000002,0.4959997685185185,343.53,912.28,0.24681249687305531 -2009-09-23,8.32,15.23,0.49366840277777774,200.56,1187.47,0.25006002972664815 -2009-09-24,7.42,12.92,0.4919994212962963,201.69,1011.07,0.2911954458721574 -2009-09-25,4.87,6.8,0.48800034722222224,197.1,673.32,0.30310306633533113 -2009-09-26,0.0,5.1899999999999995,0.48800034722222224,353.48,468.48,0.3074331101401216 -2009-09-27,3.56,8.09,0.4840002314814815,240.45,649.93,0.30635059918892393 -2009-09-28,8.12,12.615,0.48167002314814816,154.45,1096.51,0.3344958839200618 -2009-09-29,9.85,13.715,0.4800005787037037,134.45,1229.08,0.3972815190895233 -2009-09-30,9.93,12.035,0.4760001157407408,143.29,1076.16,0.44382948999102056 -2009-10-01,3.36,8.059999999999999,0.4760001157407408,120.93,866.08,0.4340868914302421 -2009-10-02,0.36,6.18,0.4719996527777777,147.12,777.06,0.4340868914302421 -2009-10-03,5.45,5.720000000000001,0.4701513888888889,117.7,740.76,0.428674336674254 -2009-10-04,24.41,8.455,0.46799976851851854,84.13,948.93,0.5802258698419196 -2009-10-05,7.09,9.615,0.463999537037037,97.96,1007.6,0.7415200015703636 -2009-10-06,1.1,9.08,0.463999537037037,196.68,885.15,0.7317774030095852 -2009-10-07,8.59,6.865,0.46,152.63,751.43,0.7750778410574897 -2009-10-08,11.56,6.445,0.45920532407407405,110.91,800.97,0.9244643523227599 -2009-10-09,6.15,5.57,0.45599953703703705,138.56,714.65,0.9666822794194668 -2009-10-10,9.07,4.855,0.45200810185185186,150.86,665.99,1.0706033307344374 -2009-10-11,1.0,3.47,0.452,254.99,559.56,1.1258113892455155 -2009-10-12,0.0,3.58,0.4480001157407407,253.71,560.0,1.1366364987574917 -2009-10-13,0.0,2.295,0.4480001157407407,213.81,551.3,1.1474616082694677 -2009-10-14,0.13,0.06000000000000005,0.4440001157407408,201.27,471.83,1.1366364987574917 -2009-10-15,0.0,-0.7099999999999997,0.44166932870370373,246.39,411.63,1.1149862797335395 -2009-10-16,0.0,-1.2200000000000002,0.4400003472222222,300.74,328.77,1.0933360607095872 -2009-10-17,0.0,-0.45999999999999996,0.43611064814814815,301.71,341.29,1.0597782212224613 -2009-10-18,0.0,-0.7450000000000001,0.43600011574074077,286.45,360.0,1.0305504255401257 -2009-10-19,0.0,0.9750000000000001,0.43200000000000005,269.77,426.04,0.9969925860529997 -2009-10-20,0.25,2.9650000000000003,0.43194837962962956,261.54,497.59,0.9785898998826404 -2009-10-21,0.0,2.86,0.428,239.94,528.49,0.9417845275419217 -2009-10-22,7.61,1.055,0.4261517361111111,162.79,517.23,0.9298769070787479 -2009-10-23,14.05,-1.565,0.42400011574074076,133.25,433.71,0.9342069508835384 -2009-10-24,10.44,-0.45999999999999996,0.42121863425925926,162.21,440.0,0.9536921480050955 -2009-10-25,16.29,2.8449999999999998,0.41999976851851856,135.28,596.83,1.1366364987574917 -2009-10-26,0.0,2.64,0.4164640046296296,224.62,541.68,1.2448875938772528 -2009-10-27,0.0,-0.22499999999999987,0.4159996527777778,192.27,463.57,1.3098382509491096 -2009-10-28,0.0,0.5599999999999999,0.4121109953703704,139.65,539.48,1.3747889080209663 -2009-10-29,0.0,0.96,0.41200046296296294,213.86,482.45,1.4289144555808466 -2009-10-30,0.32,2.45,0.4080084490740741,233.97,515.88,1.4722148936287511 -2009-10-31,2.81,7.185,0.40794895833333333,190.63,681.49,1.5263404411886317 -2009-11-01,2.07,7.71,0.40399999999999997,192.55,733.94,1.5263404411886317 -2009-11-02,0.0,1.9400000000000002,0.4037145833333334,231.31,459.59,1.5046902221646794 -2009-11-03,0.0,1.775,0.40000023148148145,204.97,494.88,1.4830400031407271 -2009-11-04,0.0,0.9900000000000002,0.39971435185185183,173.32,500.14,1.4289144555808466 -2009-11-05,0.0,-0.8850000000000001,0.3960082175925926,138.64,461.67,1.3856140175329423 -2009-11-06,0.0,-1.545,0.39571446759259266,134.5,441.35,1.3314884699730618 -2009-11-07,0.0,-2.295,0.3921108796296296,179.86,380.09,1.3098382509491096 -2009-11-08,0.0,3.36,0.3919487268518519,201.39,534.92,1.277362922413181 -2009-11-09,0.0,6.17,0.3884644675925926,211.44,610.26,1.2340624843652768 -2009-11-10,0.0,6.824999999999999,0.38799999999999996,177.56,719.91,1.1907620463173723 -2009-11-11,0.0,2.3449999999999998,0.3848466435185185,206.36,458.66,1.158286717781444 -2009-11-12,0.0,0.8050000000000002,0.3840003472222222,222.18,360.0,1.1258113892455155 -2009-11-13,0.0,1.4299999999999997,0.38166932870370374,220.72,359.9,1.0825109511976112 -2009-11-14,10.92,2.01,0.3799997685185186,188.64,366.38,1.0543656664664733 -2009-11-15,22.66,5.175,0.37920590277777777,154.18,571.19,1.16911182729342 -2009-11-16,0.0,6.944999999999999,0.37611087962962964,140.8,782.43,1.179936936805396 -2009-11-17,0.0,1.3900000000000001,0.3759486111111111,144.4,524.22,1.1907620463173723 -2009-11-18,0.0,0.9499999999999997,0.37321898148148147,214.78,390.17,1.2124122653413245 -2009-11-19,0.0,3.1900000000000004,0.3719998842592593,216.83,435.48,1.2124122653413245 -2009-11-20,7.9,2.84,0.37120578703703705,183.86,431.19,1.2232373748533005 -2009-11-21,9.51,2.675,0.3684645833333333,120.37,528.37,1.2990131414371333 -2009-11-22,0.0,1.2850000000000001,0.3680003472222222,152.97,480.62,1.2990131414371333 -2009-11-23,0.0,-1.02,0.36615196759259255,184.58,359.67,1.2990131414371333 -2009-11-24,0.0,-0.7999999999999998,0.3644642361111111,160.86,394.17,1.2990131414371333 -2009-11-25,0.0,-0.19500000000000006,0.36400011574074076,117.66,463.59,1.277362922413181 -2009-11-26,3.66,2.2,0.3621513888888889,67.29,593.57,1.2881880319251573 -2009-11-27,10.2,3.89,0.3604638888888889,66.74,657.51,1.3098382509491096 -2009-11-28,20.29,1.5,0.3599998842592593,43.77,599.67,1.764492850452106 -2009-11-29,2.43,-0.385,0.35920578703703704,64.79,501.73,1.8835690550838433 -2009-11-30,4.8,-1.68,0.3572189814814815,60.25,449.85,2.013470369227557 -2009-12-01,2.16,-4.91,0.35611041666666665,109.87,319.93,2.1000712453233654 -2009-12-02,0.0,-3.145,0.3559483796296296,113.99,360.0,2.121721464347318 -2009-12-03,13.1,-0.6549999999999998,0.3546476851851852,79.66,454.45,2.435649640194625 -2009-12-04,24.53,1.0550000000000002,0.35321898148148145,61.59,559.01,3.0418557728652873 -2009-12-05,0.0,-0.955,0.35211030092592593,88.09,474.8,3.2475328535928334 -2009-12-06,0.0,-3.205,0.35199988425925927,82.99,408.33,3.3557839487125944 -2009-12-07,0.0,-6.04,0.35171423611111113,135.95,279.53,3.3449588392006184 -2009-12-08,0.0,-8.16,0.3506474537037037,134.41,239.64,3.2367077440808574 -2009-12-09,4.51,-10.155000000000001,0.34966921296296294,145.39,191.44,3.074331101401216 -2009-12-10,11.65,-7.275,0.3488465277777778,102.45,260.67,3.0310306633533117 -2009-12-11,0.06,-7.775,0.3481105324074074,134.63,255.91,2.8361786921377408 -2009-12-12,0.0,-12.705,0.3480079861111111,107.01,187.03,2.6629769399461236 -2009-12-13,1.1,-12.5,0.34794849537037037,166.01,145.95,2.522250516290434 -2009-12-14,0.0,-5.9399999999999995,0.34771435185185184,152.29,282.62,2.4031743116586965 -2009-12-15,4.36,-3.975,0.3472057870370371,60.36,398.59,2.3057483260509115 -2009-12-16,3.11,-9.11,0.3466476851851852,132.32,193.15,2.2083223404431265 -2009-12-17,0.0,-16.785,0.3466476851851852,157.92,116.16,2.0567708072754614 -2009-12-18,0.0,-15.84,0.3461518518518519,103.41,143.22,1.9485197121557 -2009-12-19,0.0,-13.735,0.3461518518518519,153.51,155.18,1.8402686170359388 -2009-12-20,0.0,-13.35,0.3456693287037037,179.1,137.26,1.7320175219161775 -2009-12-21,1.85,-9.64,0.3456693287037037,103.16,242.33,1.656241755332345 -2009-12-22,5.49,-8.015,0.3461518518518519,43.12,302.75,1.6021162077724647 -2009-12-23,18.11,-6.805,0.3461518518518519,98.99,290.93,1.6129413172844407 -2009-12-24,11.02,-3.9099999999999997,0.3461518518518519,123.84,342.19,1.6237664267964167 -2009-12-25,0.0,-4.26,0.3466476851851852,87.53,388.29,1.5696408792365362 -2009-12-26,0.0,-5.445,0.3472057870370371,100.76,343.01,1.5046902221646794 -2009-12-27,8.29,-3.33,0.34771435185185184,88.97,398.57,1.4830400031407271 -2009-12-28,8.53,-1.08,0.34794849537037037,84.94,470.39,1.5046902221646794 -2009-12-29,4.32,-5.98,0.34800000000000003,135.07,267.53,1.4505646746047989 -2009-12-30,0.0,-15.405,0.3480079861111111,189.77,120.0,1.4180893460688704 -2009-12-31,0.0,-16.795,0.3484641203703704,197.01,96.46,1.36396379850899 -2010-01-01,1.14,-11.2,0.34921886574074074,153.76,182.12,1.3423135794850378 -2010-01-02,7.1,-6.155,0.35015162037037034,93.5,289.05,1.3314884699730618 -2010-01-03,8.92,-2.35,0.35120578703703703,105.43,389.14,1.3098382509491096 -2010-01-04,2.61,-0.21999999999999997,0.3519482638888889,62.59,529.49,1.277362922413181 -2010-01-05,0.53,-1.075,0.35200787037037035,63.21,509.85,1.2448875938772528 -2010-01-06,0.0,-2.335,0.35284641203703704,64.76,461.11,1.2124122653413245 -2010-01-07,0.15,-3.9050000000000002,0.3541518518518519,78.46,403.34,1.1907620463173723 -2010-01-08,0.0,-6.46,0.35571446759259256,97.98,312.45,1.158286717781444 -2010-01-09,0.38,-10.24,0.35600000000000004,140.42,212.39,1.1366364987574917 -2010-01-10,0.0,-16.205,0.3564643518518519,200.12,106.4,1.1149862797335395 -2010-01-11,0.0,-12.53,0.35815185185185183,166.7,160.0,1.0933360607095872 -2010-01-12,0.0,-12.48,0.3599482638888889,161.03,162.99,1.071685841685635 -2010-01-13,0.0,-16.035,0.36000787037037035,187.85,119.39,1.0446230679056947 -2010-01-14,0.0,-15.510000000000002,0.36121863425925926,225.17,89.49,1.0208078269793472 -2010-01-15,0.0,-7.970000000000001,0.3637142361111111,206.04,208.31,0.9937450531994071 -2010-01-16,0.97,-4.53,0.36400011574074076,194.61,291.16,0.9591047027610835 -2010-01-17,0.0,-12.645,0.36521898148148146,238.07,113.64,0.9222993304203646 -2010-01-18,0.0,-10.095,0.36771435185185186,176.89,204.71,0.8789988923724602 -2010-01-19,1.89,-5.975,0.3680083333333333,99.23,320.04,0.8292033886173701 -2010-01-20,0.0,-5.32,0.3696696759259259,102.02,359.57,0.7772428629598849 -2010-01-21,0.0,-5.199999999999999,0.3719483796296296,124.08,338.36,0.7469325563263517 -2010-01-22,0.0,-8.085,0.37211041666666667,204.44,227.86,0.7274473592047948 -2010-01-23,0.0,-13.684999999999999,0.3746479166666667,248.26,117.59,0.7144572277904233 -2010-01-24,0.0,-12.215,0.3760002314814815,258.54,120.0,0.7025496073272497 -2010-01-25,7.59,-6.765000000000001,0.3772188657407407,197.27,168.79,0.6938895197176687 -2010-01-26,10.75,2.175,0.3799997685185186,128.2,559.97,0.6906419868640759 -2010-01-27,1.57,-1.9349999999999998,0.3804640046296296,166.54,413.05,0.6993020744736568 -2010-01-28,2.56,-5.755,0.383714699074074,192.73,273.97,0.7274473592047948 -2010-01-29,4.83,-9.21,0.38400833333333334,162.47,213.59,0.7967280600814419 -2010-01-30,0.89,-15.25,0.3866476851851852,240.06,118.43,0.9168867756643766 -2010-01-31,0.0,-19.07,0.38799999999999996,267.76,80.0,1.0392105131497067 -2010-02-01,0.0,-18.16,0.3901519675925926,251.7,80.1,1.1258113892455155 -2010-02-02,0.0,-20.91,0.39200034722222227,265.37,80.0,1.1258113892455155 -2010-02-03,0.0,-20.105,0.3936696759259259,290.38,54.77,1.071685841685635 -2010-02-04,0.0,-16.485,0.39600023148148145,273.68,89.38,1.0240553598329403 -2010-02-05,0.0,-16.18,0.3972188657407407,224.16,120.0,0.9840024546386285 -2010-02-06,0.0,-15.240000000000002,0.40000023148148145,233.39,128.01,0.9482795932491073 -2010-02-07,2.69,-11.120000000000001,0.4012189814814815,143.33,201.69,0.9168867756643766 -2010-02-08,2.13,-6.395,0.40399999999999997,117.3,317.84,0.8887414909332388 -2010-02-09,0.0,-4.385,0.40521898148148144,186.03,339.37,0.8616787171532985 -2010-02-10,0.0,-7.455,0.4080003472222223,307.23,189.18,0.8346159433733582 -2010-02-11,0.0,-6.95,0.40966990740740744,279.25,223.44,0.8108007024470107 -2010-02-12,0.0,-3.905,0.41200046296296294,148.85,373.54,0.7880679724718609 -2010-02-13,0.0,-4.32,0.41464768518518513,172.78,351.04,0.7696652863015014 -2010-02-14,0.0,-3.75,0.4159996527777778,144.26,387.55,0.7501800891799445 -2010-02-15,1.52,-4.6850000000000005,0.419205324074074,110.74,378.64,0.7328599139607828 -2010-02-16,0.68,-3.85,0.41999976851851856,168.0,378.89,0.7198697825464114 -2010-02-17,1.06,-2.17,0.42400011574074076,172.61,431.28,0.7090446730344352 -2010-02-18,3.28,-0.19499999999999984,0.42400011574074076,96.27,531.48,0.7003845854248544 -2010-02-19,0.68,-0.06499999999999995,0.428,156.85,517.91,0.6971370525712616 -2010-02-20,1.08,-0.06999999999999984,0.42846388888888887,157.29,517.34,0.6960545416200639 -2010-02-21,2.34,-0.3599999999999999,0.43200000000000005,164.15,495.14,0.7014670963760521 -2010-02-22,2.23,0.565,0.4336695601851852,162.08,537.13,0.7371899577655732 -2010-02-23,0.95,1.17,0.43600011574074077,176.31,561.26,0.7664177534479087 -2010-02-24,0.27,0.4850000000000001,0.4399488425925926,178.66,546.7,0.7566751548871301 -2010-02-25,0.0,-0.3799999999999999,0.4400003472222222,191.86,504.41,0.7382724687167708 -2010-02-26,8.35,-0.9199999999999999,0.4440001157407408,112.01,504.93,0.7306948920583874 -2010-02-27,11.7,-0.20999999999999996,0.4440081018518519,108.83,541.12,0.7523451110823397 -2010-02-28,4.06,0.17500000000000004,0.4480001157407407,137.09,544.73,0.7436850234727588 -2010-03-01,1.25,0.42000000000000004,0.4501516203703704,201.83,540.89,0.7382724687167708 -2010-03-02,0.0,-0.8850000000000002,0.452,320.05,435.75,0.7328599139607828 -2010-03-03,0.0,-2.695,0.45599953703703705,405.03,304.01,0.7274473592047948 -2010-03-04,0.0,-2.385,0.45599953703703705,392.05,339.07,0.7220348044488065 -2010-03-05,0.0,-4.289999999999999,0.46,419.79,268.83,0.7177047606440161 -2010-03-06,0.0,-2.5200000000000005,0.4604638888888889,424.15,300.12,0.7144572277904233 -2010-03-07,0.0,-0.44499999999999984,0.463999537037037,433.4,328.95,0.7112096949368305 -2010-03-08,0.0,0.7350000000000003,0.46799976851851854,385.36,448.14,0.7057971401808425 -2010-03-09,0.0,-2.6000000000000005,0.46799976851851854,411.46,326.03,0.7003845854248544 -2010-03-10,0.0,-5.72,0.4719996527777777,438.15,238.11,0.6982195635224592 -2010-03-11,0.0,-5.01,0.4719996527777777,456.46,212.78,0.6938895197176687 -2010-03-12,0.0,-3.1100000000000003,0.4760001157407408,463.38,240.0,0.6895594759128783 -2010-03-13,0.0,-2.135,0.4800005787037037,466.46,256.56,0.6852294321080878 -2010-03-14,0.0,-0.5800000000000001,0.4800005787037037,468.15,287.83,0.6873944540104832 -2010-03-15,0.0,1.5249999999999995,0.4840002314814815,464.74,346.9,0.6971370525712616 -2010-03-16,0.0,2.0850000000000004,0.4840002314814815,472.43,336.32,0.7155397387416209 -2010-03-17,0.0,2.2900000000000005,0.48800034722222224,472.55,340.64,0.7447675344239565 -2010-03-18,0.0,2.2600000000000002,0.4919994212962963,435.52,420.56,0.7837379286670705 -2010-03-19,0.0,-0.48999999999999977,0.4919994212962963,421.74,360.0,0.8302858995685677 -2010-03-20,0.0,0.5100000000000002,0.4959997685185185,415.22,399.43,0.8660087609580888 -2010-03-21,0.0,-2.0100000000000002,0.4959997685185185,445.72,302.46,0.9201343085179694 -2010-03-22,0.0,0.7949999999999999,0.4999997685185186,420.99,396.7,0.9731773451266524 -2010-03-23,9.49,1.6950000000000003,0.503999537037037,250.32,530.1,1.0478706007592875 -2010-03-24,17.22,-0.8899999999999999,0.503999537037037,96.91,515.12,1.179936936805396 -2010-03-25,2.49,-0.7050000000000001,0.5079996527777778,318.2,395.91,1.2557127033892288 -2010-03-26,0.0,-6.53,0.5079996527777778,484.54,194.05,1.2881880319251573 -2010-03-27,0.0,-12.755,0.511999537037037,469.99,120.45,1.2990131414371333 -2010-03-28,0.0,-7.715,0.5159998842592592,471.47,195.16,1.3747889080209663 -2010-03-29,20.28,-1.04,0.5159998842592592,273.75,385.42,1.5046902221646794 -2010-03-30,19.24,3.005,0.520000462962963,185.37,599.67,2.013470369227557 -2010-03-31,6.37,3.495,0.520000462962963,159.09,640.05,2.543900735314386 -2010-04-01,2.76,4.7,0.5240002314814816,267.93,640.0,3.215057525056905 -2010-04-02,0.0,6.965,0.5279998842592593,484.74,534.63,3.994465409919185 -2010-04-03,0.0,11.615,0.5279998842592593,517.01,572.26,5.076976361116796 -2010-04-04,0.0,12.395,0.5319998842592593,504.87,632.71,6.646617240353332 -2010-04-05,0.76,8.545,0.5319998842592593,494.8,531.63,8.205433010077892 -2010-04-06,2.13,8.7,0.5359994212962963,413.19,666.32,9.15804264713179 -2010-04-07,2.05,6.744999999999999,0.5395353009259259,340.19,687.92,9.601872137122811 -2010-04-08,2.18,4.245,0.54,374.03,539.57,9.504446151515026 -2010-04-09,11.12,4.815,0.5439997685185185,228.91,656.38,9.287943961275504 -2010-04-10,22.44,3.15,0.5439997685185185,191.05,599.7,10.07817695564976 -2010-04-11,0.0,3.435,0.5479999999999999,270.68,600.55,10.013226298577903 -2010-04-12,0.0,3.53,0.5498481481481481,373.75,557.18,9.580221918098859 -2010-04-13,0.0,2.41,0.5520004629629629,478.63,439.54,9.028141332988076 -2010-04-14,0.0,3.1599999999999997,0.5559922453703704,462.84,465.26,8.443585419341368 -2010-04-15,0.0,3.2249999999999996,0.5560002314814815,402.65,520.04,7.869854615206632 -2010-04-16,0.0,1.7349999999999999,0.56,471.8,439.96,7.328599139607827 -2010-04-17,0.0,2.035,0.5600517361111111,444.57,452.77,6.798168773520998 -2010-04-18,3.32,3.04,0.5639996527777777,247.55,566.39,6.354339283529978 -2010-04-19,3.97,4.365,0.5663305555555556,254.19,625.52,5.964635341098838 -2010-04-20,0.0,7.12,0.5679997685185185,433.79,677.59,5.59658161769165 -2010-04-21,0.0,6.37,0.5715351851851852,533.8,508.47,5.239353003796438 -2010-04-22,2.17,7.71,0.5719994212962963,458.16,582.2,4.914599718437154 -2010-04-23,5.04,7.625,0.5760005787037037,346.31,657.89,4.730572856733561 -2010-04-24,4.35,7.74,0.5760005787037037,352.5,672.5,4.42746979039823 -2010-04-25,5.46,8.959999999999999,0.5800003472222222,360.96,730.18,4.156842052598827 -2010-04-26,0.0,5.9799999999999995,0.5807946759259259,498.81,559.36,3.907864533823376 -2010-04-27,4.8,4.455,0.5840005787037037,316.62,572.05,3.70218745309583 -2010-04-28,5.07,4.71,0.5853530092592593,273.04,618.71,3.572286138952117 -2010-04-29,1.95,4.125,0.5880002314814815,416.41,562.61,3.3666090582245705 -2010-04-30,2.28,5.95,0.5903311342592593,312.88,705.61,3.182582196520977 -2010-05-01,0.0,8.559999999999999,0.5920008101851852,463.91,706.13,3.009380444329359 -2010-05-02,1.64,15.24,0.5943310185185184,444.49,1016.08,2.8578289111616932 -2010-05-03,7.12,17.28,0.5959997685185184,298.2,1382.46,2.7820531445778607 -2010-05-04,7.72,14.445,0.5987809027777777,344.56,1061.93,2.7928782540898367 -2010-05-05,0.4,12.54,0.5999998842592592,434.7,967.03,2.717102487506004 -2010-05-06,9.48,11.675,0.6027810185185185,254.21,1040.0,2.717102487506004 -2010-05-07,6.8,7.965,0.6039996527777778,341.22,768.81,2.8145284731137887 -2010-05-08,5.06,5.2250000000000005,0.6063304398148148,383.55,580.53,2.7604029255539086 -2010-05-09,7.3,4.88,0.6079995370370371,249.59,652.1,2.8361786921377408 -2010-05-10,1.86,2.43,0.6098476851851852,205.77,596.36,2.7928782540898367 -2010-05-11,0.0,2.2350000000000003,0.6120002314814815,396.04,502.11,2.717102487506004 -2010-05-12,0.0,4.845,0.6133524305555556,411.57,597.24,2.619676501898219 -2010-05-13,0.0,4.744999999999999,0.6159914351851852,500.04,499.74,2.4897751877545056 -2010-05-14,0.0,7.755,0.6162851851851852,509.58,601.37,2.3923492021467205 -2010-05-15,0.0,8.74,0.6195356481481481,444.99,735.75,2.2732729975149835 -2010-05-16,0.0,7.529999999999999,0.6199998842592592,496.23,609.3,2.132546573859294 -2010-05-17,0.0,10.600000000000001,0.6227818287037037,490.07,755.38,2.013470369227557 -2010-05-18,0.0,12.370000000000001,0.6240006944444445,535.08,681.26,1.9160443836197718 -2010-05-19,0.0,14.81,0.6253526620370371,486.89,956.76,1.8186183980119868 -2010-05-20,4.19,13.67,0.6278895833333333,404.9,953.09,1.6778919743562972 -2010-05-21,0.0,10.569999999999999,0.6280518518518519,516.98,651.81,1.5696408792365362 -2010-05-22,0.0,12.35,0.6303303240740741,525.39,702.42,1.4938651126527034 -2010-05-23,0.0,17.53,0.6319916666666667,511.66,986.55,1.4180893460688704 -2010-05-24,0.0,20.645,0.6322856481481481,462.2,1401.38,1.3423135794850378 -2010-05-25,0.52,20.795,0.6347809027777778,426.98,1514.09,1.277362922413181 -2010-05-26,4.88,18.795,0.6360001157407408,322.02,1437.46,1.2232373748533005 -2010-05-27,0.0,12.4,0.6362856481481481,467.36,852.93,1.16911182729342 -2010-05-28,0.0,11.709999999999999,0.6387810185185185,459.8,825.27,1.1149862797335395 -2010-05-29,0.0,13.879999999999999,0.6399917824074074,470.35,899.55,1.066273286929647 -2010-05-30,0.0,14.235000000000001,0.6400512731481481,407.53,1063.25,0.9829199436874309 -2010-05-31,0.79,11.785,0.6418483796296296,440.26,836.98,0.9222993304203646 -2010-06-01,7.56,12.94,0.6435354166666667,202.61,1171.32,0.9277118851763528 -2010-06-02,8.86,13.5,0.6439998842592592,197.99,1226.63,0.9450320603955146 -2010-06-03,14.78,14.895,0.6442856481481481,229.55,1284.52,0.9775073889314428 -2010-06-04,6.12,14.52,0.6458482638888889,189.96,1324.77,0.9829199436874309 -2010-06-05,5.47,15.580000000000002,0.6471538194444444,219.21,1359.03,0.9666822794194668 -2010-06-06,11.37,11.41,0.6479927083333333,176.15,1106.32,1.0348804693449163 -2010-06-07,6.44,11.265,0.6480521990740741,197.16,1066.68,1.1366364987574917 -2010-06-08,1.0,10.23,0.6487947916666666,373.85,878.1,1.16911182729342 -2010-06-09,0.64,9.725,0.6498487268518519,456.9,729.17,1.179936936805396 -2010-06-10,0.0,12.055,0.6507814814814814,482.55,801.43,1.179936936805396 -2010-06-11,0.0,14.005,0.6515357638888889,500.31,864.1,1.158286717781444 -2010-06-12,0.0,16.31,0.6519921296296297,420.68,1202.15,1.1258113892455155 -2010-06-13,0.0,15.475000000000001,0.6520001157407407,452.51,1073.45,1.0825109511976112 -2010-06-14,0.0,15.26,0.6520517361111111,429.48,1105.45,1.0348804693449163 -2010-06-15,0.0,11.49,0.6522856481481482,492.5,752.55,0.9547746589562931 -2010-06-16,0.0,12.975,0.6527943287037037,496.2,810.02,0.9125567318595862 -2010-06-17,0.88,17.09,0.653352662037037,453.83,1142.63,0.8725038266652746 -2010-06-18,0.0,19.035,0.653848611111111,451.18,1335.82,0.8194607900565917 -2010-06-19,0.0,21.595,0.653848611111111,437.27,1590.85,0.7902329943742561 -2010-06-20,13.7,22.049999999999997,0.653848611111111,308.79,1849.32,0.7523451110823397 -2010-06-21,9.59,18.54,0.6543310185185185,317.32,1392.35,0.7382724687167708 -2010-06-22,0.0,17.01,0.6543310185185185,503.71,1047.89,0.7057971401808425 -2010-06-23,1.65,17.965,0.653848611111111,358.68,1408.25,0.6787343664009022 -2010-06-24,13.92,16.875,0.653848611111111,162.31,1599.77,0.7393549796679684 -2010-06-25,10.24,14.504999999999999,0.653352662037037,354.65,1146.29,0.7837379286670705 -2010-06-26,1.02,14.155000000000001,0.653352662037037,441.94,1039.47,0.7458500453751541 -2010-06-27,0.8,13.515,0.6527943287037037,499.03,874.91,0.726364848253597 -2010-06-28,2.92,14.149999999999999,0.6522856481481482,295.35,1200.83,0.7122922058880281 -2010-06-29,13.23,13.68,0.6520517361111111,165.95,1314.74,0.7469325563263517 -2010-06-30,11.27,13.575000000000001,0.6519921296296297,333.84,1003.68,1.1366364987574917 -2010-07-01,3.15,11.43,0.6518894675925926,350.21,867.19,1.2448875938772528 -2010-07-02,2.77,12.65,0.6511538194444445,361.38,934.18,1.2881880319251573 -2010-07-03,0.0,17.045,0.6503311342592593,442.57,1246.52,1.3098382509491096 -2010-07-04,0.85,21.375,0.6493528935185184,355.02,1800.96,1.2881880319251573 -2010-07-05,4.52,22.08,0.6482863425925927,261.08,1968.18,1.266537812901205 -2010-07-06,0.0,23.674999999999997,0.6480008101851852,345.37,2100.87,1.2015871558293483 -2010-07-07,0.0,23.53,0.647890162037037,441.44,1763.57,1.158286717781444 -2010-07-08,0.03,25.740000000000002,0.64678125,373.23,2251.27,1.1258113892455155 -2010-07-09,11.28,25.085,0.645352199074074,247.21,2300.98,1.2232373748533005 -2010-07-10,18.07,22.46,0.6440515046296297,226.32,2057.63,1.4938651126527034 -2010-07-11,4.85,21.425,0.6438894675925926,272.71,1796.17,1.6887170838682732 -2010-07-12,0.02,22.939999999999998,0.6427809027777778,386.84,1897.37,1.7211924124042017 -2010-07-13,10.78,23.035,0.6407940972222222,320.61,2000.2,1.6454166458203692 -2010-07-14,13.49,22.155,0.6399997685185186,273.81,1887.34,1.5696408792365362 -2010-07-15,0.0,20.845,0.6395354166666667,465.37,1455.14,1.5155153316766559 -2010-07-16,0.15,21.445,0.6378482638888888,358.74,1819.54,1.461389784116775 -2010-07-17,2.09,22.435000000000002,0.6360001157407408,339.99,1983.36,1.3856140175329423 -2010-07-18,2.21,21.165,0.6355359953703703,364.23,1761.56,1.2990131414371333 -2010-07-19,5.49,18.165,0.6338483796296296,277.76,1484.56,1.2232373748533005 -2010-07-20,3.49,18.275,0.6319996527777777,316.14,1514.61,1.1907620463173723 -2010-07-21,0.0,18.295,0.6315355324074073,455.78,1327.32,1.1258113892455155 -2010-07-22,13.39,19.395,0.6287943287037038,295.08,1583.13,1.1366364987574917 -2010-07-23,0.0,17.77,0.628,449.58,1309.66,1.077098396441623 -2010-07-24,0.0,18.89,0.6267813657407407,430.63,1422.23,1.0305504255401257 -2010-07-25,8.66,19.3,0.624052199074074,272.71,1617.25,0.9991576079553951 -2010-07-26,1.91,16.235,0.6238902777777778,355.52,1326.28,0.9428670384931193 -2010-07-27,0.0,16.77,0.6207944444444444,351.12,1410.04,0.882246425226053 -2010-07-28,0.26,19.83,0.6199998842592592,437.65,1459.69,0.8681737828604842 -2010-07-29,1.35,20.085,0.6183303240740741,377.15,1633.41,0.8237908338613822 -2010-07-30,0.0,16.060000000000002,0.615999537037037,416.49,1236.28,0.768582775350304 -2010-07-31,0.0,14.905000000000001,0.6151532407407407,427.76,1126.64,0.7328599139607828 -2010-08-01,0.0,15.41,0.6120002314814815,484.84,1001.18,0.6960545416200639 -2010-08-02,0.0,17.384999999999998,0.6115356481481482,482.65,1134.96,0.6614141911817405 -2010-08-03,6.94,18.96,0.6080510416666667,309.01,1441.82,0.6419289940601834 -2010-08-04,3.65,21.33,0.6078891203703704,253.17,1886.52,0.6256913297922193 -2010-08-05,0.0,23.244999999999997,0.6042853009259259,340.35,2082.22,0.5986285560122789 -2010-08-06,0.0,19.49,0.6039916666666666,422.2,1465.91,0.5629056946227577 -2010-08-07,0.0,12.205,0.6002854166666667,468.6,834.08,0.526100322282039 -2010-08-08,0.0,13.645,0.5999998842592592,451.37,945.12,0.5001200594532963 -2010-08-09,5.82,18.47,0.5962851851851851,298.88,1448.43,0.4730572856733561 -2010-08-10,0.0,19.29,0.5959997685185184,409.11,1443.17,0.4449120009422182 -2010-08-11,0.05,17.19,0.5920523148148148,431.88,1227.98,0.4167667162110803 -2010-08-12,0.0,14.605,0.591992824074074,466.94,929.63,0.3972815190895233 -2010-08-13,0.0,15.86,0.5880002314814815,473.83,965.88,0.37996134387036146 -2010-08-14,0.0,17.46,0.5879922453703703,475.49,1053.13,0.3658887015047926 -2010-08-15,0.0,19.52,0.5840005787037037,428.36,1359.85,0.35289857009042125 -2010-08-16,0.22,19.490000000000002,0.5835359953703704,297.12,1680.19,0.3409909496272475 -2010-08-17,1.13,18.295,0.5800003472222222,303.26,1549.54,0.3225882634568881 -2010-08-18,0.01,17.625,0.5787818287037036,398.02,1289.25,0.30310306633533113 -2010-08-19,0.0,17.455,0.5760005787037037,418.93,1213.93,0.2911954458721574 -2010-08-20,0.94,17.015,0.5738478009259259,393.24,1243.13,0.27495778160419326 -2010-08-21,0.0,13.74,0.5719994212962963,398.51,981.99,0.2608851392386243 -2010-08-22,0.0,14.68,0.5680513888888888,419.48,990.68,0.25006002972664815 -2010-08-23,0.0,16.465,0.5679997685185185,375.88,1224.89,0.24139994211706728 -2010-08-24,0.0,16.075,0.5639996527777777,406.26,1113.02,0.23057483260509115 -2010-08-25,9.05,15.594999999999999,0.5639916666666667,335.84,1028.9,0.22516227784910312 -2010-08-26,5.14,16.04,0.56,223.82,1316.96,0.22732729975149835 -2010-08-27,1.63,15.684999999999999,0.558330324074074,242.57,1363.48,0.21974972309311505 -2010-08-28,0.0,16.02,0.5560002314814815,353.13,1215.13,0.21217214643473176 -2010-08-29,0.0,19.735,0.5520519675925926,394.63,1371.58,0.20567708072754615 -2010-08-30,0.0,22.674999999999997,0.5520004629629629,403.36,1556.43,0.19918201502036048 -2010-08-31,0.0,23.67,0.5479999999999999,366.93,1790.65,0.19376946026437242 -2010-09-01,0.0,25.625,0.5479921296296296,338.1,2128.16,0.18943941645958198 -2010-09-02,0.0,24.325000000000003,0.5439997685185185,288.08,2159.01,0.18619188360598912 -2010-09-03,3.29,22.33,0.540794212962963,258.56,1883.4,0.18077932885000106 -2010-09-04,35.17,20.205,0.54,208.24,1711.48,0.30093804443293587 -2010-09-05,25.63,13.98,0.5359994212962963,199.52,1191.19,0.5109451689652724 -2010-09-06,0.0,12.66,0.5359994212962963,326.41,982.59,0.506615125160482 -2010-09-07,5.1,15.145,0.5319998842592593,168.05,1348.07,0.5390904536964104 -2010-09-08,15.44,13.935,0.5298482638888888,94.1,1396.85,0.6451765269137762 -2010-09-09,13.85,12.555,0.5279998842592593,117.34,1247.68,0.7945630381790466 -2010-09-10,3.77,11.105,0.5240002314814816,131.34,1115.25,0.8356984543245557 -2010-09-11,0.45,10.355,0.5240002314814816,296.27,906.81,0.871421315714077 -2010-09-12,0.0,10.020000000000001,0.520000462962963,372.78,774.57,0.8930715347380292 -2010-09-13,0.83,11.025,0.5183310185185186,275.72,973.08,0.8963190675916219 -2010-09-14,5.24,12.02,0.5159998842592592,125.38,1205.75,0.8887414909332388 -2010-09-15,3.52,11.530000000000001,0.511999537037037,199.32,1033.57,0.8800814033236579 -2010-09-16,1.33,9.07,0.511999537037037,298.39,822.64,0.8541011404949151 -2010-09-17,2.95,10.18,0.5079996527777778,273.22,874.52,0.8281208776661725 -2010-09-18,0.0,10.1,0.5067805555555556,399.51,691.83,0.804305636739825 -2010-09-19,1.34,11.5,0.503999537037037,364.72,830.48,0.7718303082038968 -2010-09-20,0.0,9.91,0.4999997685185186,374.99,730.42,0.7220348044488065 -2010-09-21,1.86,8.41,0.4999997685185186,323.58,681.72,0.6798168773520998 -2010-09-22,2.48,11.175,0.4959997685185185,318.92,825.48,0.6624967021329381 -2010-09-23,0.0,10.584999999999999,0.49366840277777774,364.48,769.53,0.6202787750362311 -2010-09-24,12.02,8.035,0.4919994212962963,184.0,814.72,0.6159487312314408 -2010-09-25,13.81,9.09,0.48800034722222224,119.98,973.89,0.6787343664009022 -2010-09-26,2.07,9.485,0.48800034722222224,267.18,854.16,0.6495065707185667 -2010-09-27,1.57,10.685,0.4840002314814815,227.89,956.84,0.6343514174018001 -2010-09-28,14.67,14.129999999999999,0.48167002314814816,200.94,1201.15,0.6917244978152736 -2010-09-29,10.05,16.215,0.4800005787037037,194.26,1379.62,0.8140482353006037 -2010-09-30,17.14,15.435,0.4760001157407408,209.82,1279.99,0.9320419289811432 diff --git a/data/exphydro/03604000.csv b/data/exphydro/03604000.csv deleted file mode 100644 index 89be557..0000000 --- a/data/exphydro/03604000.csv +++ /dev/null @@ -1,1462 +0,0 @@ -prcp(mm/day),tmean(C),pet(mm),flow(mm) -17.16,6.815,0.687782786,6.418713023 -0,5.05,0.641754432,5.134970419 -3.4,6.58,0.680981265,3.325103796 -0,2.895,0.624178251,2.567485209 -0,2.335,0.620796713,2.098182585 -10.38,10.06,0.788813396,2.011898246 -0,11.285,0.84576258,1.974017317 -12.65,10.8,0.798132904,2.357035602 -4.87,2.06,0.605037099,2.777934817 -0,2.86,0.637390405,2.29390072 -26.62,6.81,0.739652009,2.925249542 -54.87,9.825,0.784337843,20.51883671 -34.11,5.485,0.724145096,34.72418521 -25.78,3.58,0.658726735,12.69011132 -29.85,4.605,0.651665501,14.85774228 -0,2.935,0.710695587,7.449916099 -0,2.18,0.722343167,4.503621597 -0,5.175,0.792224852,3.367193717 -0,6.78,0.846901837,4.082722382 -0,6.09,0.867522561,4.840340968 -0,1.405,0.752735465,4.31421695 -0,2.13,0.7897398,3.935407657 -0,4.865,0.863458294,3.640778207 -0,8.215,0.978805814,3.388238678 -0,11.06,1.105766207,3.198834031 -0,12.47,1.174924252,3.093609228 -14.61,5.045,0.875650738,3.15674411 -0,3.825,0.940854252,3.135699149 -10.51,6.33,0.962715291,3.304058835 -13.65,9.415,0.958009464,3.851227814 -0,7.945,1.133079512,3.914362696 -0,12.27,1.303194205,3.872272775 -0,17.205,1.431029824,3.682868128 -9.49,11.435,1.175645263,3.661823167 -6.66,-0.46,0.689158701,3.72495805 -6.36,-2.38,0.534583068,3.682868128 -5.45,-4.875,0.584196343,3.556598364 -5.88,-6.425,0.563418607,3.45137356 -0,-3.73,0.879815302,3.325103796 -0,-4.35,0.933121885,3.15674411 -0,-4.515,0.938622648,3.030474345 -0,1.11,1.205868118,2.925249542 -0,4.04,1.356802154,2.841069699 -6.67,8.25,1.317313469,2.777934817 -33.37,14.22,1.414577335,9.133512958 -28.53,13.315,1.421898321,13.30041518 -10.89,10.93,1.360413184,16.62551898 -14.29,3.04,0.770188033,12.14294234 -20.92,1.045,0.680916061,12.14294234 -2,1.85,0.903189902,15.72058567 -18.12,6.065,1.039767147,13.59504463 -54.01,8.845,1.216614497,23.1494568 -2.53,2.74,1.189380244,18.09866623 -16.1,-4.23,0.969619192,6.018858769 -0,-5.475,1.14550288,3.956452618 -0,-1.31,1.493277815,3.009429385 -0,5.115,1.888554416,2.483305366 -21.17,6.725,1.609950701,2.525395288 -13.86,1.405,1.124508968,4.377351832 -0,4.05,1.785696983,4.124812303 -0,5.07,1.997316063,3.15674411 -0,7.68,2.218446135,2.630620091 -0,11.33,1.95655171,2.31494568 -74.88,10.58,1.854978828,10.24889588 -23.9,2.475,1.175333544,25.25395288 -0,-1.385,0.758692281,9.133512958 -0,-0.48,1.403441235,4.819296008 -0,3.7,1.968577091,3.493463481 -0,6.835,2.281487665,2.777934817 -0,10.905,2.558805263,2.378080563 -0,13.915,2.79549806,2.089764601 -0,15.02,2.900775772,1.877210497 -0,16.78,2.963521007,1.706746315 -0,18.325,2.98479228,1.567849575 -0,9.445,2.665127722,1.426848338 -0,11.31,2.820506094,1.304787565 -2.59,15.31,2.855008334,1.250070667 -0.72,6.88,2.513345089,1.21639873 -13.87,10.54,2.231241372,1.207980746 -17.77,12.045,2.385225047,1.271115628 -0,3.01,1.726572627,1.256384156 -0,6.96,2.066794648,1.180622297 -1.06,8.955,1.789023644,1.191144777 -0,12.27,2.737455806,1.201667258 -0,13.81,3.241078096,1.167995321 -0,15.635,3.398648402,1.144845864 -0,19.545,3.490297536,1.085919974 -18.78,20.535,2.651329694,1.045934548 -7.57,18.735,2.359371456,1.041725556 -17.67,12.935,2.610966197,1.241652683 -0,4.93,2.608150066,1.38265392 -0,10.475,3.088093357,1.262697644 -26.7,16.205,2.517972438,2.378080563 -47.32,16.87,2.516124752,10.50143541 -16.71,10.865,2.660302609,16.54133914 -6.22,6.555,2.454832733,6.566027748 -14.15,7.27,2.05642672,4.987655693 -5.84,9.82,1.949142293,4.714071204 -0.5,7.515,2.792346416,3.661823167 -0,5.42,2.121989665,2.798979777 -0,2.2,2.688500856,2.29390072 -0,4.62,2.979934685,2.030838711 -0,8.025,3.403710204,1.84353856 -0,8.95,3.478682957,1.692014843 -5.41,11.085,2.391685734,1.620461976 -0,9.745,3.585469528,1.511028181 -0,14.645,4.126236254,1.384758416 -0,18.455,4.450967076,1.279533612 -6.86,17.405,3.376758228,1.231130203 -0,11.51,3.803469604,1.193249273 -0,13.07,4.131176488,1.134323383 -0,16.74,4.427733656,1.094337958 -0,18.625,4.598794645,1.073292997 -0,20.62,4.57077199,1.058561525 -0,21.285,4.57792569,1.005949123 -0,21.64,4.54441846,0.940709745 -0,22.705,4.649510766,0.913351296 -0,22.245,4.564717185,0.883888351 -0,22.085,4.406030665,0.860738894 -0,19.74,3.638035607,0.839693933 -8.37,18.595,3.053728311,0.87336587 -0,13.145,3.59825822,0.923873776 -0,13.335,3.279496776,0.856529902 -0,13.27,3.161929988,0.835484941 -18.71,15.91,2.074524571,0.999635635 -14.3,14.8,2.988428579,1.241652683 -0,8.915,3.718719272,1.14695036 -0,11.27,4.107134265,1.056457029 -6.26,15.495,3.205506159,1.037516564 -8.19,16.19,2.797807444,1.056457029 -0,11.49,4.026145723,0.997531139 -0,10.375,4.1451261,0.93229176 -0,11.705,4.198914977,0.896515327 -0.01,13.99,3.870389867,0.881783855 -11.56,15.33,2.972265308,0.936500753 -0,14.7,4.510868889,0.925978272 -0,15.92,4.633006728,0.854425406 -0,17.95,4.364091952,0.824962461 -0,21.385,3.510982527,0.824962461 -41.41,21.62,3.056893614,5.008700654 -18.35,19.245,3.647387911,9.154557918 -2.42,21.12,4.33966351,3.240923953 -4.5,19.66,4.297918936,2.546440249 -0,19.56,5.193762838,2.230765838 -0,23.375,5.032793537,1.782508174 -0,25.42,3.825132514,1.54890911 -25.24,22.05,3.154289844,1.719373292 -0,17.205,5.130061471,1.578372055 -0,19.08,5.438018753,1.31320555 -0,22.615,5.367210627,1.182726793 -0,23.835,5.143621181,1.090128966 -0,24.04,5.487879791,1.014367107 -14.55,24.115,4.055250463,0.949127729 -0,22.345,4.30305431,1.525759653 -0,22.65,3.999311034,1.338459503 -4.52,22.18,1.993005686,1.121696407 -5.38,19.47,3.036914685,1.052248037 -0,17.71,5.034139453,0.97017269 -0,18.87,4.566221768,0.915455792 -13.09,20.33,3.225322907,0.909142304 -0,21.075,4.863389144,0.909142304 -0,20.435,5.118867499,0.856529902 -13.95,22.49,3.937702991,0.925978272 -30.77,22.845,3.865588316,1.630984457 -19.12,21.845,3.329688474,1.906673442 -43.03,21,3.218431948,6.587072709 -2.66,18.78,3.671399362,7.302601374 -0,17.385,5.199694025,3.830182853 -0,21.62,5.578408782,2.630620091 -14.3,21.16,4.184456181,2.335990641 -5.2,21.035,4.208710381,2.483305366 -13.29,21.545,4.017467653,2.146585995 -6.64,22.225,4.308253255,2.777934817 -0,23.555,5.514695866,2.209720877 -0,24.615,5.386109467,1.780403678 -0,25.15,5.375773513,1.422639345 -0,25.775,5.505409354,1.258488652 -0,25.545,5.330737038,1.20587625 -16.03,24.585,3.886118643,1.479460739 -16.74,23.56,2.729967616,3.114654188 -8.42,22.99,3.949467126,2.378080563 -10.3,23.155,3.326890856,2.967339463 -33.39,22.525,2.767430868,4.419441754 -11.43,23.765,3.053825122,9.386052486 -16.46,23.08,3.907299562,7.954995157 -0,23.56,4.914529911,5.008700654 -5.02,24.015,4.145158486,4.798251047 -0,25.015,5.514065928,3.72495805 -35.84,24.54,4.358354041,5.366464987 -0,26.05,5.868277356,3.346148756 -0,26.13,5.505126221,2.420170484 -19.46,25.19,4.124608657,3.030474345 -12.21,23.94,4.087195337,4.398396793 -2.92,24.815,4.613756795,3.135699149 -0,24.125,5.207612365,2.357035602 -0,22.085,5.667253326,1.856165537 -5.05,22.81,4.321618431,1.639402441 -8.23,22.335,4.047485944,1.563640582 -0,22.88,5.422083635,1.351086479 -14.52,23.735,3.948855075,1.332146014 -5.57,21.875,4.233268598,1.687805851 -0,21.015,5.084992825,1.3931764 -0,22.11,5.160721128,1.207980746 -0,23.16,4.999054665,1.125905399 -9.39,24.54,4.079212537,1.081710982 -11.95,24.625,4.182114689,1.052248037 -0,25.88,5.682183787,1.005949123 -0,25.93,5.628981802,0.938605249 -0,25.73,5.496675866,0.894410831 -0,25.95,5.491995014,0.860738894 -0,26.395,5.400910364,0.833380445 -16.31,25.77,4.307107639,0.841798429 -5.37,25.68,3.919245831,1.403698881 -6.37,25.695,3.852003624,1.201667258 -0,26.27,4.988560224,1.008053619 -0,24.7,5.485145825,0.885992847 -0,26.235,5.309832155,0.820753469 -0,25.935,4.962628529,0.780768043 -0,22.955,4.563742918,0.770245563 -0,16.145,4.642954211,0.74499161 -0,16.83,4.7617823,0.698692696 -0,18.675,4.867867954,0.671334247 -0,20.66,4.808168481,0.665020759 -0,20.95,4.928706136,0.650289287 -0,20.695,4.874888494,0.635557814 -0,21.59,4.784863772,0.620826342 -0,22.375,4.800489302,0.612408357 -0,22.9,4.700022712,0.603990373 -0,23.15,3.994533344,0.599781381 -2.3,21.535,4.060527928,0.665020759 -0,21.815,4.70533719,0.635557814 -0,23.755,4.518185557,0.601885877 -0,25.185,4.706397446,0.585049908 -0,26.005,4.633497071,0.570318436 -0,26.71,4.547537003,0.561900452 -0,26.935,4.457135227,0.570318436 -3.56,25.95,3.573524238,0.561900452 -6.61,25.715,3.422516307,0.557691459 -2.34,25.6,4.270633565,0.576631924 -0,25.675,4.356593918,0.726051145 -0,26.72,4.308517516,0.62713983 -0,26.44,3.899780023,0.614512853 -43.07,24.725,3.181445795,1.081710982 -0,25.41,4.05722107,0.987008658 -14.82,25.46,3.116097754,0.982799666 -0,23.33,4.075366863,0.989113154 -0,22.905,3.91437694,0.757618586 -0,23.27,3.836589272,0.677647736 -0,23.555,3.904210997,0.63766231 -0,23.87,3.737349989,0.612408357 -0,23.195,3.874814883,0.601885877 -0,24.21,4.009292587,0.593467893 -1.55,24.785,3.335556137,0.669229751 -4.6,23.72,2.244151508,0.662916263 -0,24.1,3.121475502,0.614512853 -0,23.965,3.720246607,0.652393783 -18.76,23.595,2.691796959,1.060666021 -5.77,20.765,2.37385229,1.121696407 -11.59,18.185,1.409948964,1.001740131 -0,17.05,3.069852758,0.919664784 -0,16.885,3.354399928,0.79339502 -0,17.67,3.443618186,0.717633161 -0,17.87,3.407067517,0.665020759 -0,19.155,3.402454963,0.622930838 -2.39,20.14,2.660784018,0.616617349 -16.12,16.58,1.927253585,0.643975798 -0,10.39,2.54290259,0.688170216 -17.96,10.55,1.730111354,0.679752232 -6.93,14.735,1.756656053,0.820753469 -0,15.93,2.861850318,0.885992847 -0,16.145,2.581550639,0.835484941 -11.96,15.85,1.269479363,0.8039175 -44.44,16.72,1.244102845,1.414221361 -33.07,19.895,1.50866284,3.535553403 -10.77,20.26,2.431338378,4.145857264 -0,19.025,2.92541543,2.29390072 -0,15.755,2.684805131,1.567849575 -0,14.075,2.600699662,1.266906636 -0,17.195,2.749459277,1.130114391 -0,17.25,2.688377614,1.033307572 -0,10.92,2.263218615,0.955441217 -0,10.25,2.190041787,0.907037808 -0,12.76,2.280811206,0.869156878 -0,14.855,2.370206624,0.837589437 -0,16.585,2.413188897,0.812335484 -0,17.945,2.444468244,0.789186027 -0,17.35,2.364763009,0.770245563 -0,18.305,2.366513688,0.75551409 -0,18.96,2.202928598,0.749200602 -44.72,19.92,1.465143738,1.115382919 -3.19,12.63,1.574244255,1.534177637 -4.71,4.13,0.904377036,1.153263848 -2.91,3.32,0.993174564,1.018576099 -0,6.735,1.560064292,0.938605249 -0,12.3,1.792522608,0.869156878 -0,14.87,1.868420157,0.835484941 -0,15.005,1.829607442,0.808126492 -0,14.135,1.757291503,0.780768043 -0,14.325,1.717962269,0.761827578 -0,13.5,1.633064322,0.742887114 -0,13.78,1.626827325,0.711319673 -0,13.655,1.57105486,0.698692696 -0,14.51,1.567597638,0.690274712 -5.11,13.78,1.26518809,0.690274712 -0,6.2,1.138872692,0.690274712 -0,7.515,1.124711204,0.690274712 -0,5.23,1.075559235,0.683961224 -0,4.23,1.055275944,0.673438743 -0,8.805,1.186112402,0.669229751 -22.54,15.84,1.122799675,0.717633161 -6.56,16.29,1.09401027,0.894410831 -23.2,17.92,1.086469147,1.403698881 -0.15,10.965,1.164660665,2.378080563 -0,9.155,1.095431809,1.809866623 -0,11.785,1.161802722,1.388967408 -0,14.865,1.219053397,1.207980746 -0,14.395,1.182413754,1.096442454 -20.71,15.665,1.105440911,1.25427966 -23.56,15.75,1.049845408,3.45137356 -19.93,10.65,0.927799637,6.208263416 -0,-1.37,0.665818565,4.187947186 -0,1.745,0.745501658,2.609575131 -0,5.75,0.826776511,1.946658868 -0,9.895,0.908875338,1.59731252 -0,11.385,0.965241633,1.416325857 -14.25,6.595,0.751187307,1.321623534 -23.1,1.78,0.620755236,1.574163063 -0,-0.38,0.632399943,1.652029417 -0,4.905,0.740478185,1.439475314 -0,11.075,0.886953022,1.332146014 -1.24,15.32,0.9680311,1.245861675 -0,14.525,0.978650595,1.176413305 -0,1.805,0.643627031,1.096442454 -0,-0.065,0.594273737,1.02909858 -0,2.915,0.640712717,0.98069517 -0,4.255,0.652111577,0.936500753 -0,0.685,0.578806692,0.902828815 -0,-1.825,0.521654457,0.87336587 -0,5.385,0.632983969,0.860738894 -0,11.135,0.804270243,0.85232091 -0,9.69,0.723428957,0.841798429 -8.03,1.305,0.550188751,0.841798429 -9.27,-1.855,0.463879662,0.864947886 -0,-1.16,0.489237158,0.864947886 -0.78,2.215,0.582303477,0.841798429 -4.01,0.22,0.535251423,0.841798429 -0,-6.485,0.422171612,0.833380445 -0,-4.015,0.460505747,0.808126492 -0,-1.105,0.498987863,0.812335484 -0,-9.76,0.362908907,0.818648972 -0.01,-9.44,0.364188599,0.791290524 -0,-5.695,0.432622037,0.782872539 -8.91,-4.155,0.451309956,0.797604012 -0,-6.83,0.412524124,0.833380445 -0,-8.695,0.384514154,0.810230988 -0,-16.135,0.278426671,0.742887114 -0,-18.34,0.24208485,0.763932075 -0,-14.47,0.301702037,0.881783855 -0,-7.805,0.401227174,0.79339502 -0,-2.82,0.491493488,0.776559051 -0,3.195,0.592774241,0.761827578 -0,3.2,0.527300055,0.759723082 -0,4.94,0.593925473,0.747096106 -19.22,11.22,0.722652975,0.925978272 -43.01,8.93,0.734684886,6.481847905 -0,2.005,0.600643494,9.175602879 -0,1.38,0.601191153,4.124812303 -0,4.34,0.669069074,2.777934817 -23.41,10.455,0.803662949,3.072564267 -0,7.715,0.77142541,4.377351832 -0.35,4.335,0.655963508,3.198834031 -0,4.72,0.6867261,2.546440249 -7.74,5.365,0.682707889,2.209720877 -0,7.345,0.790029139,2.007689254 -0,6.99,0.753776867,1.780403678 -0,8.46,0.811690282,1.593103527 -0,6.9,0.774275362,1.443684306 -0,-1.3,0.604370465,1.315310046 -0,1.745,0.671118717,1.218503226 -0,7.56,0.848796307,1.155368344 -0,11.375,0.96662173,1.104860438 -0,13.625,1.065707855,1.083815478 -14.41,12.965,0.927044792,1.296369581 -3.31,8.51,0.871539898,1.359504463 -18.79,10.785,0.937670503,1.281638109 -4.7,7.34,0.898575344,2.798979777 -0,3.83,0.838872955,2.967339463 -0,6.82,0.935317032,2.399125523 -0,8.93,0.990654979,2.066615144 -6.26,8.61,0.888892625,1.862479025 -0,1.73,0.840383428,1.685701355 -0,5.295,0.971298594,1.517341669 -0,8.125,1.066973322,1.367922448 -28.46,6.61,0.914268174,1.578372055 -0,1.94,0.921446962,2.567485209 -0,4.07,1.008278643,2.441215445 -0,8.505,1.166047804,2.096078089 -18.76,15.585,1.179202381,2.209720877 -51.52,15.1,1.182559539,16.43611433 -43.54,10.615,1.161470333,48.61385929 -0,3.52,1.057170224,16.20461976 -0,6.6,1.209484889,5.492734751 -1.12,7.675,1.213080302,3.893317735 -0,8.44,1.339335805,3.072564267 -0,11.08,1.43429241,2.630620091 -45.53,10.43,1.244186485,11.17487415 -0,6.675,1.351224594,11.74308809 -0,8.78,1.465077151,5.324375065 -0,12.325,1.646857438,3.788092932 -0,16.17,1.444907775,3.030474345 -10.29,17.13,1.099608543,2.567485209 -17.07,15.165,1.251168483,3.872272775 -0,6.1,1.475429096,4.714071204 -0,4.23,1.320004792,3.198834031 -0.01,6.175,1.417675809,2.651665052 -0,6.27,1.572157557,2.31494568 -0,6.55,1.623092012,2.028734215 -6.08,11.555,1.514745014,1.976121813 -0,10.22,1.787096519,1.887732978 -0,3.77,1.329269104,1.675178874 -0,1.025,1.436278973,1.492087716 -0,0.715,1.377453205,1.38265392 -0,8.625,1.911391483,1.315310046 -0,11.64,1.992894367,1.271115628 -6.6,6.155,1.271819293,1.241652683 -17.46,4.25,0.831573804,1.355295471 -10.56,4.34,1.350047938,1.788821662 -0,5.555,1.94865255,1.910882434 -0,6.66,2.043136968,1.765672205 -0,10.02,2.289683669,1.654133914 -0,11.715,2.357840034,1.569954071 -24.29,11.31,1.444003364,1.90246445 -21.21,11.27,1.353843537,4.629891361 -11.97,16.27,1.840055766,5.871544044 -0,18.64,2.826664615,4.103767343 -0,19.9,2.646712907,3.114654188 -0,17.855,2.800102146,2.546440249 -0,19.42,2.993020068,2.272855759 -24.31,17.785,2.212632223,2.756889856 -30.54,11.885,1.416877557,10.12262611 -3.65,9.755,1.931720982,7.870815314 -0,8.86,2.53360134,4.735116165 -0,9.115,2.651125944,3.472418521 -0,1.71,1.930359128,2.777934817 -0,3.625,2.376380137,2.378080563 -0,9.66,2.873504896,2.146585995 -0,13.365,2.966805696,1.946658868 -0,11.5,2.689116744,1.788821662 -0.29,6.405,2.020944643,1.670969882 -0,5.255,1.966175315,1.553118102 -0,3.51,2.480071496,1.443684306 -0,8.55,2.829527771,1.348981983 -3.1,12.81,1.77862996,1.319519038 -6.48,13.895,1.701649656,1.302683069 -5.66,14.885,2.336350356,1.43105733 -0,15.545,3.414288974,1.31320555 -2.99,14.76,2.934122582,1.20587625 -0,9.305,2.963086205,1.142741368 -0,6.825,3.08274826,1.111173927 -0,10.4,3.46712264,1.090128966 -14.8,10.15,2.730869505,1.117487415 -0.76,2.665,2.555064948,1.189040281 -0,5.425,3.043858635,1.121696407 -0,9.38,3.485265532,1.069084005 -8.74,13.955,3.034052824,1.064875013 -12.03,10.725,2.52375507,1.09854695 -0,5.795,2.993753313,1.08802447 -0,7.865,3.297576397,1.052248037 -0,11.37,3.306635754,1.037516564 -1.5,12.105,2.740049933,1.037516564 -0,14.595,3.418168968,1.037516564 -7.36,14.245,3.018515896,1.043830052 -3.94,9.56,3.179792705,1.094337958 -0,11.875,3.686374118,1.058561525 -0,16.445,3.44623054,1.026994084 -41.28,17.35,2.650682053,2.777934817 -16.3,17.68,3.298208874,4.756161125 -0,18.885,4.62771605,2.841069699 -0,20.22,4.768864895,2.146585995 -0,20.21,4.623862227,1.816180111 -0,19.165,4.616634849,1.620461976 -0,19.685,4.400334534,1.456311283 -17.36,18.275,3.370215424,1.391071904 -5.86,14.765,3.621285895,1.37213144 -0,18.985,4.440920757,1.271115628 -0,20.185,3.763060042,1.197458266 -15.84,15.465,2.220098779,1.416325857 -19.02,17.22,2.916494516,1.955076852 -11.47,21.79,3.274121924,1.700432827 -20.76,16.88,3.349502684,1.809866623 -0,9.335,3.650041422,1.824598095 -0,12.415,4.281811493,1.569954071 -0,15.115,4.627074887,1.401594385 -2.73,17.03,3.534271324,1.31320555 -5.02,13.11,3.051294048,1.294265085 -0,10.32,4.078120927,1.212189738 -0,12.045,3.912572164,1.167995321 -13.62,17.815,3.159128012,1.266906636 -0,17.28,4.889239177,1.184831289 -0,19.98,5.035899195,1.090128966 -0,23.205,4.129018788,1.043830052 -18.62,21.005,3.564950521,1.140636872 -0,16.825,4.83270148,1.199562762 -0,19.17,4.816826509,1.064875013 -27.73,20.65,3.064107292,1.7151643 -21.2,19.695,2.975054519,5.913633966 -15.18,16.105,3.168479847,4.461531675 -0,12.045,3.736369627,3.15674411 -0,15.195,4.35628456,2.462260406 -0,19.415,5.123770388,2.02031623 -0,21.64,4.824198491,1.738313756 -3.81,22,3.94460719,1.612043992 -3.58,21.36,3.534580948,1.532073141 -0,15.745,4.885467769,1.338459503 -0,17.66,5.325089079,1.189040281 -0,19.145,5.183319101,1.08802447 -0,21.52,4.847289981,1.018576099 -0,23.705,4.394323828,0.953336721 -36.98,23.735,3.438953599,1.21639873 -0,20.315,4.240908056,1.266906636 -0,16.36,5.149197002,1.066979509 -0,19.6,5.530252858,0.974381682 -0,24.215,5.731379647,0.92176928 -0,25.24,5.446389194,0.87336587 -0,25.93,5.131293945,0.843902925 -0,24.705,5.10451978,0.812335484 -0,22.08,5.456855387,0.776559051 -0,20.595,5.705376709,0.751305098 -0,22.385,5.668838187,0.732364633 -0.33,24.29,5.414702185,0.723946649 -9.42,25.4,3.943947867,0.75551409 -0,25.605,5.34877759,0.820753469 -0,26.105,5.572824464,0.753409594 -0,26.13,5.270744923,0.717633161 -0.04,23.57,5.852006812,0.700797192 -0,24.715,5.849604655,0.698692696 -31.88,25.74,4.363964289,0.907037808 -14.51,24.695,3.850909726,1.079606486 -0,21.9,5.08778714,1.024889588 -0,20.195,5.25095683,0.85232091 -0,20.835,5.181058115,0.763932075 -0,20.855,5.515753103,0.717633161 -0,22.61,5.531544447,0.692379208 -0,23.54,5.721446571,0.673438743 -0,24.995,5.710995194,0.654498279 -0,25.74,5.641226703,0.639766806 -0,26.825,5.169399275,0.629244326 -0,26.62,5.087479037,0.622930838 -0,23.965,5.89800553,0.614512853 -0,25.01,5.642796783,0.595572389 -0,25.015,5.724976916,0.57873642 -0,25.885,5.585917863,0.56821394 -0,26.8,5.322674203,0.566109444 -0.78,27.53,5.406359092,0.572422932 -0,28.255,5.314003664,0.582945412 -0,27.425,5.033381549,0.5892589 -6.11,26.455,3.73320696,0.654498279 -63.52,24.635,3.260774687,1.55943159 -10.19,22.6,2.750179098,1.776194686 -1.55,20.37,3.704677672,1.115382919 -0,18.68,4.831928119,0.858634398 -0,20.33,4.837538487,0.759723082 -0,21.63,5.100487228,0.707110681 -0,22.94,4.861284075,0.675543239 -0,23.89,4.999068542,0.652393783 -0,25.09,4.658538529,0.639766806 -0,25.09,4.780669707,0.63766231 -0.13,25.095,4.763713195,0.641871302 -10.91,24.015,3.462512621,0.711319673 -0,21.465,4.237404489,0.770245563 -0,21.37,5.026909929,0.688170216 -0,22.575,5.24692819,0.635557814 -0,24.12,5.349478667,0.614512853 -0,25.08,5.148655017,0.599781381 -0,24.75,5.388187689,0.5892589 -0,25.04,5.26366121,0.570318436 -0,25.015,4.831166769,0.557691459 -0,23.485,4.775675863,0.549273475 -0,24.36,4.758037429,0.542959987 -0,24.005,5.161413924,0.532437507 -0,24.875,5.269950713,0.528228514 -8.07,24.885,3.760398693,0.555586963 -3.55,23.52,4.004192098,0.612408357 -0,18.74,4.673251714,0.595572389 -0,19.105,4.521742264,0.553482467 -0,20.915,4.872575385,0.53033301 -0,21.605,4.824597514,0.515601538 -0,22.02,4.947885744,0.507183554 -0,23.225,5.141037861,0.498765569 -0,23.95,4.817874086,0.488243089 -0,23.305,4.171150389,0.484034097 -0,23.775,4.748545356,0.484034097 -0,23.925,4.889448814,0.475616113 -0,26.13,5.016907851,0.46088464 -0,26.83,5.135758094,0.448257664 -0,27.925,5.167299585,0.437735183 -0,27.95,5.09939387,0.427212703 -2.26,28.345,4.795617196,0.437735183 -0,26.77,4.681482587,0.462989136 -0,24.48,3.960636797,0.439839679 -0,23.09,4.351495978,0.435630687 -0,23.76,4.622485101,0.431421695 -0,25,4.825409842,0.423003711 -0,26.79,4.881526983,0.414585726 -0,27.645,4.887246975,0.408272238 -0,27.92,4.77242093,0.399854254 -0,27.07,4.48676522,0.393540766 -0,23.6,4.394288944,0.383018285 -0,24.94,4.35216699,0.383018285 -0,25.83,4.323871147,0.378809293 -0,26.385,4.340599596,0.378809293 -0,26.805,4.325495143,0.378809293 -0,27.375,4.330683982,0.374600301 -0,27.35,4.3337637,0.370391309 -0,27.93,4.291479679,0.368286813 -13.24,27.47,3.224601877,0.378809293 -4.65,25.66,2.598258518,0.427212703 -10.92,25.48,2.812542922,0.423003711 -5.78,23.465,2.66283652,0.45036216 -7.73,24.295,2.609809558,0.473511616 -11.49,23.44,1.925304015,0.465093632 -0,23.435,2.433052987,0.462989136 -14.11,22.555,2.667948651,0.462989136 -0,19.605,3.499286806,0.481929601 -0,18.765,3.387272849,0.456675648 -0,17.98,3.343475972,0.429317199 -0,21.145,3.382508686,0.420899215 -0,24.49,2.864184557,0.418794719 -0,23.655,2.852405,0.420899215 -12.81,22.645,2.26008101,0.441944175 -0,16.07,2.874779801,0.448257664 -0,11.515,2.640503507,0.429317199 -0,13.01,2.746547196,0.425108207 -0,16.02,2.952532473,0.418794719 -0,19.22,3.092087515,0.414585726 -0,20.585,3.111652831,0.408272238 -0,21.095,3.067836367,0.40195875 -0,20.64,2.88359416,0.393540766 -0,18.74,2.533463537,0.359868829 -0,17.295,2.754393616,0.359868829 -0,19.555,2.846887241,0.359868829 -37.56,21.34,1.985682149,0.454571152 -0.06,16.885,2.594610963,0.650289287 -0,18.24,2.675153798,0.555586963 -0,19.025,2.590352337,0.47140712 -16.9,21.375,2.001450351,0.507183554 -11.68,22.075,1.739564045,0.867052382 -4.66,16.57,1.963070278,0.656602775 -0,9.16,1.300317032,0.555586963 -0,12.175,1.624674373,0.505079058 -0,12.24,1.803822889,0.484034097 -0,13.515,2.055278679,0.477720609 -0,14.48,2.083150655,0.467198128 -0,16.615,2.139807636,0.458780144 -0,17.665,2.16776117,0.458780144 -17.47,15.545,1.678869804,0.570318436 -0,8.2,1.608813112,0.707110681 -0,10.06,1.703415003,0.597676885 -0,12.665,1.781487724,0.542959987 -22.26,15.84,1.439849966,0.580840916 -6.83,11.46,1.119004836,0.837589437 -0,8.83,1.502951319,0.774454555 -0.44,8.845,1.43959136,0.656602775 -0,6.505,1.337318913,0.593467893 -0,7.405,1.388318068,0.566109444 -0,8.73,1.412380209,0.542959987 -0,7.48,1.325771573,0.517706034 -0,10.3,1.399079991,0.50928805 -0,12.735,1.442191684,0.505079058 -0,13.185,1.429056471,0.502974561 -0,13.71,1.44578798,0.502974561 -0,14.005,1.429947772,0.498765569 -0,16.15,1.487101874,0.502974561 -10.33,14.81,1.244769894,0.526124018 -1.65,6.125,0.984302679,0.56821394 -0,6.13,1.043826217,0.5892589 -0,5.805,0.979684659,0.572422932 -31.11,6.965,0.782247469,0.650289287 -39.25,7.095,0.822978834,1.849852048 -0,7.945,1.024516936,1.38265392 -0,9.93,1.068288293,0.959650209 -0,10.285,1.043295705,0.768141067 -0,11.73,1.054812468,0.679752232 -0,12.57,1.072524765,0.635557814 -0,12.395,1.052324254,0.614512853 -0.87,9.455,0.929263823,0.646080294 -0,6.2,0.856844291,0.662916263 -0,8.065,0.886085427,0.662916263 -0,12.175,0.999407862,0.660811767 -0,14.43,1.051809433,0.650289287 -3.69,15.345,0.973767853,0.643975798 -8.54,13.395,0.862505407,0.650289287 -0,10.44,0.859332138,0.673438743 -0,13.2,0.95039137,0.671334247 -0,13.505,0.957520197,0.654498279 -0.83,19.355,0.967429214,0.646080294 -28.12,15.71,0.945346574,0.74499161 -0,3.78,0.677582356,1.115382919 -0,2.565,0.625155831,0.997531139 -0,4.57,0.667762169,0.867052382 -0.27,8.99,0.786682998,0.774454555 -56.42,11.075,0.770939958,2.31494568 -0.13,5.03,0.67374895,5.198105301 -0,-0.115,0.559570851,2.504350327 -0,2.67,0.592822347,1.748836237 -0,3.895,0.635929639,1.386862912 -0,-0.075,0.530571983,1.229025707 -0,4.235,0.584091924,1.115382919 -0,6.42,0.586309889,1.02909858 -0,7.365,0.60850601,0.961754705 -0,7.645,0.644211736,0.9112468 -0,9.45,0.736488597,0.858634398 -9.34,8.66,0.702491835,0.827066957 -0.74,10.77,0.765299273,0.827066957 -7.94,8.54,0.696683077,0.81443998 -15.62,9.5,0.720575543,0.86284339 -27.2,14.375,0.818554686,2.081346616 -20.74,8.175,0.693573835,4.356306871 -0.08,7.86,0.704585569,3.135699149 -30.85,12.38,0.758417101,4.798251047 -53.26,12.395,0.779073361,17.04641819 -16.38,4.515,0.582311132,17.29895772 -2.35,-7.195,0.397047636,7.134241688 -0,-7.305,0.406138163,4.103767343 -0,-3.5,0.46952739,3.030474345 -18.19,-0.99,0.510424888,2.609575131 -14.62,5.115,0.635555822,5.050790576 -7.88,11.39,0.762600897,4.693026243 -20.01,15.64,0.881526211,4.524666557 -24.22,4.05,0.527860784,12.26921211 -0,-1.605,0.533278204,6.629162631 -0,2.16,0.593178839,3.893317735 -0,2.515,0.634656717,2.904204581 -0,-1.405,0.550948844,2.420170484 -0,3.32,0.659633826,2.146585995 -6.03,9.58,0.758630745,1.889837474 -26.13,7.97,0.752750632,2.209720877 -0,4.57,0.635439676,2.777934817 -0,5.57,0.653841894,2.378080563 -7.19,5.89,0.668998668,2.209720877 -13.15,8.5,0.786096739,3.72495805 -3.46,5.585,0.742287934,3.74600301 -0,1,0.618309808,2.967339463 -0,2.59,0.722835906,2.420170484 -0,4.11,0.76513783,2.146585995 -3.53,6.46,0.792592626,1.99927127 -0,5.52,0.820800244,1.851956544 -0,3.79,0.796148413,1.662551898 -0,5.19,0.849849593,1.534177637 -0.64,6.715,0.871156295,1.45210229 -0,0.59,0.760236916,1.359504463 -0,-5.26,0.600434843,1.25427966 -0,-2.175,0.714448694,1.165890825 -0,2.4,0.84135591,1.083815478 -0,-0.275,0.787265545,1.035412068 -0,1.635,0.863785761,0.993322147 -0,2.775,0.910001064,0.963859202 -0.74,5.67,0.93750542,0.957545713 -0,7.275,1.093512841,0.951232225 -4.15,8.545,1.039836651,0.934396256 -0,0.785,0.92501873,0.9112468 -0,0.515,0.926296515,0.877574863 -0,3.625,1.004485808,0.875470366 -0,5.865,1.094783875,0.871261374 -0,10.32,1.308951771,0.864947886 -11.01,13.445,1.241722265,0.87336587 -14.2,12.355,0.947715545,1.024889588 -0,7.905,1.175481206,1.081710982 -0,3.62,0.850219645,1.066979509 -0,3.07,1.062471582,1.037516564 -0,7.27,1.366186071,1.020680595 -0,6.235,1.334083771,1.001740131 -0,5.905,1.351418551,0.972277186 -24.56,9.635,1.313555084,1.290056093 -19.15,7.56,1.203199125,4.419441754 -0.05,-2.115,1.069269784,4.040632461 -0,-7.44,0.866621774,2.735844895 -24.56,1.145,1.075000443,3.767047971 -76.99,10.46,1.30801601,28.41069699 -66.97,12.9,1.137274583,50.92880497 -10.31,7.125,1.264101627,37.88092932 -0,5.755,1.440998296,8.965153272 -0.02,8.07,1.535289865,5.134970419 -0,7.575,1.627584312,3.872272775 -0,6.305,1.6302255,3.17778907 -0,7.21,1.677938301,2.609575131 -0,-0.485,1.274331933,2.31494568 -0,2.345,1.546415283,2.060301656 -0,5.625,1.797510387,1.835120576 -3.35,9.34,1.924995491,1.786717166 -5.4,14.74,1.656602037,2.378080563 -7.08,10.585,1.879958447,2.399125523 -0,2.795,1.262633064,2.441215445 -0,5.135,1.874128907,2.29390072 -0,11.39,2.298549702,2.125541034 -0,10.75,2.364623562,1.96139034 -0,5.53,1.630019397,1.790926158 -0,3.94,1.960807296,1.647820425 -0,4.505,2.058405255,1.525759653 -0,6.565,2.17422804,1.437370818 -1.4,10.57,2.2715305,1.3931764 -8.81,11.63,1.510404007,1.397385393 -0,6.545,1.668517992,1.351086479 -0,4.725,1.47929102,1.262697644 -0,7.945,2.299817788,1.19535377 -3.74,11.18,2.376750622,1.153263848 -11.24,9.59,1.648403282,1.20587625 -0,6.76,2.52715559,1.199562762 -0,11.07,2.888232898,1.134323383 -0,15.67,3.067349924,1.094337958 -15.06,20.06,2.525667211,1.13642788 -39.7,19.58,2.484959808,9.322917604 -0,14.13,3.216693143,6.629162631 -0,12.66,3.20236398,3.619733246 -0,15.835,3.461751228,2.714799934 -0,21.365,3.090231977,2.29390072 -12.39,14.565,2.634444174,2.125541034 -41.26,9.795,1.903201449,3.893317735 -11.7,4.515,1.890106949,11.49054856 -0,4.485,2.62550322,6.376623102 -0,8.755,3.112740531,4.103767343 -0,12.685,3.474402369,3.15674411 -0,14.1,3.543145761,2.58853017 -0.85,16.3,3.025023801,2.230765838 -6.64,16.635,2.559901068,2.05819716 -0,17.505,3.879578252,1.868792513 -0,19.075,3.902432871,1.702537323 -10.35,19.56,2.9370134,1.639402441 -5.11,19.485,2.540433596,1.710955307 -3.97,13.405,3.073644714,1.637297945 -0,13.44,3.74188443,1.534177637 -13.62,15.085,2.686879988,1.569954071 -10.71,17.165,2.20872182,1.675178874 -41.18,18.26,2.112761868,2.988384424 -31.64,18.365,2.620301263,9.996356348 -0,15.27,4.135374286,8.081264921 -0,17.43,4.32901488,4.419441754 -0,17.335,4.233019898,3.261968913 -13.96,17.885,2.758471742,2.904204581 -2.64,15.865,3.159430042,4.187947186 -0,11.415,2.77007327,3.283013874 -0,10.6,3.145435782,2.609575131 -0,12.39,3.668400437,2.272855759 -0,13.75,3.897835254,1.980330805 -0,16.07,4.338079494,1.765672205 -0,18.685,3.816158131,1.620461976 -1.44,19.745,3.054656296,1.538386629 -23.15,18.93,2.454716985,1.776194686 -38.93,17.99,2.306188544,7.492006021 -0,17.42,3.386150731,10.03844627 -0,19.095,4.423163881,5.324375065 -0,14.98,4.63420827,3.493463481 -0,15.355,4.666030237,2.735844895 -8.43,17.585,3.451625188,2.462260406 -24.51,19.535,2.382960508,3.388238678 -16,15.04,3.153135773,4.082722382 -0,13.505,4.596314829,3.051519306 -0,15.805,4.494105749,2.462260406 -11.3,17.925,3.411209654,2.904204581 -7.49,20.945,3.109924002,3.009429385 -28.39,19.91,2.528504983,4.272127029 -14.54,20.36,2.541499197,7.744545549 -26.89,20.26,2.939289009,7.007971924 -17.5,21.38,3.595025427,5.029745615 -0,22.655,5.169195049,3.535553403 -0,23.17,5.197170017,2.735844895 -0,23.665,5.221845367,2.272855759 -22.7,23.835,4.023346511,3.219878992 -18.73,23.875,3.794262579,4.756161125 -5.59,22.86,3.64408736,4.440486714 -0,22.445,4.395769322,3.240923953 -0,22.16,4.128778714,2.357035602 -0,23.135,4.621065778,2.003480262 -0,23.875,4.932866435,1.782508174 -0,23.915,3.852259405,1.732000268 -97.43,23.32,2.71270709,22.30765838 -100.35,22.41,2.665038748,159.5208023 -13.92,24.27,3.529073217,51.7706034 -10,24.585,3.894876967,9.470232329 -0,24.96,5.349078693,5.156015379 -0,25.025,5.199379729,3.703913089 -0,25.32,5.42730695,2.988384424 -19.8,24.79,4.346432062,2.798979777 -0,24.91,5.93433388,2.335990641 -6.85,25.645,4.485627806,2.077137624 -21.99,23.22,4.354780284,2.420170484 -0,21.3,5.257447551,2.209720877 -0,20.175,5.510171807,1.830911584 -0,19.995,5.58183217,1.649924921 -0,21.19,5.547461053,1.496296708 -0,21.325,5.668093317,1.388967408 -7.27,22.015,4.046602967,1.327937022 -3.65,23.075,3.388490082,1.330041518 -1.52,24.25,4.769596877,1.277429116 -11.14,25.275,4.166512694,1.304787565 -0,25.42,5.312940715,1.27532462 -9.64,25.505,3.89746723,1.308996558 -0,24.225,5.188374516,1.197458266 -0,22.425,5.880390333,1.100651446 -0,23.725,5.867024219,1.048039044 -0,24.555,5.812726167,1.016471603 -14.07,25.255,4.704393033,1.018576099 -27.71,23.86,4.292217493,1.250070667 -12.93,23.34,4.134270711,1.487878724 -20.71,23.555,4.071096103,1.915091427 -5.4,24.01,3.664801129,2.066615144 -0,20.585,3.742026626,1.664656394 -0,20.2,4.724734635,1.378444928 -0,23.175,5.07255678,1.243757179 -0,23.72,5.663504359,1.15747284 -0,24.255,5.640456052,1.096442454 -0,26.45,5.754636529,1.03962106 -0,26.9,5.804059226,0.984904162 -4.04,25.52,5.117420327,1.197458266 -2.37,25.41,4.97063143,1.037516564 -0,25.18,5.163805579,1.050143541 -0,25.155,5.568307898,0.955441217 -0,25.82,5.481608617,0.917560288 -0,25.38,5.611034697,0.898619823 -18.72,25.465,4.466612203,0.909142304 -0,25.985,5.554407179,0.917560288 -8.18,26.16,4.365480366,0.902828815 -0,27.05,5.40942996,0.87336587 -5.2,26.435,4.62616119,0.829171453 -0,25.32,5.401204876,0.799708508 -0,23.435,5.395177609,0.774454555 -0,24.3,5.311842914,0.749200602 -1.32,24.16,4.854046326,0.761827578 -0,24.64,4.976533426,0.759723082 -12.57,25.065,4.108721571,0.79339502 -0,25.91,5.514202827,0.757618586 -0,26.375,5.444812465,0.719737657 -0,26.455,5.763433919,0.688170216 -0,27.18,5.734831414,0.669229751 -1.3,27.585,5.348105012,0.713424169 -24.8,25.925,3.793895262,0.822857965 -1.24,24.06,4.36826689,0.843902925 -1.13,23.115,4.462655133,0.782872539 -0,23.79,5.036063331,0.740782618 -0,24.01,5.000845933,0.707110681 -0,24.38,4.656141661,0.688170216 -0,22.075,5.25191585,0.667125255 -0,23.475,5.471508961,0.639766806 -0,24.495,5.595267459,0.618721846 -0,25.825,5.242187975,0.606094869 -0,25.865,5.089490865,0.599781381 -7.87,26.155,4.294714326,0.593467893 -0,26.64,5.21873206,0.669229751 -0,26.99,5.084410431,0.667125255 -4.52,27.07,4.475607592,0.62713983 -7.86,26.655,3.380057108,0.614512853 -32.68,24.505,3.150647504,1.02909858 -0,23.135,4.219955595,1.117487415 -0,22.63,4.822385792,0.854425406 -0,21.705,4.770968543,0.74499161 -0,21.92,4.537680938,0.702901688 -0,21.84,4.79453224,0.683961224 -0,23.12,4.937567176,0.652393783 -0,23.98,4.587686156,0.643975798 -10.31,25.04,3.453255953,0.675543239 -0,22.47,4.594975104,0.705006185 -0,20.135,4.563987522,0.658707271 -0,19.07,4.185882466,0.629244326 -0,20.37,4.455073176,0.616617349 -0,22.375,4.675407902,0.603990373 -0,23.265,4.54371231,0.585049908 -0,23.41,4.176670714,0.576631924 -4.41,23.675,2.623778629,0.582945412 -4.25,25.75,2.970110549,0.625035334 -0,25.96,3.4057412,0.622930838 -18.05,24.615,2.914236504,0.665020759 -30.31,24.34,2.769508676,1.115382919 -0,25.28,3.826103318,0.871261374 -0,26.135,4.135628896,0.738678122 -0,25.275,4.002908046,0.669229751 -0,24.745,3.862705823,0.629244326 -0,23.73,3.639597294,0.603990373 -0,23.675,3.879725627,0.593467893 -0,24.44,3.865531502,0.585049908 -0,24.365,4.013196314,0.564004948 -0,24.78,3.921576322,0.547168979 -5.92,24.435,2.889164296,0.538750995 -3.16,24.455,2.746610332,0.650289287 -0,25.295,3.839617288,0.643975798 -0,26.2,3.966464454,0.593467893 -0,26.195,3.917267546,0.572422932 -0,26.52,4.027011242,0.547168979 -0,26.57,3.991829225,0.534542003 -0,26.56,3.903409091,0.51981053 -0,25.5,3.795754354,0.511392546 -7.41,25.27,3.055918101,0.505079058 -6.54,20.69,2.96777431,0.524019522 -0,11.775,2.831238155,0.532437507 -0,12.165,2.923346785,0.507183554 -0,14.95,3.09353195,0.502974561 -0,19.43,3.060683512,0.502974561 -11.3,18.635,1.723304229,0.513497042 -23.25,16.13,2.138397283,0.610303861 -0,13.65,2.751063016,0.73446913 -0,12.135,2.731317202,0.633453318 -0,13.905,2.820420793,0.572422932 -0,16.985,2.970268034,0.547168979 -0,18,2.971378597,0.532437507 -0,18.1,2.917367505,0.494556577 -0,18.23,2.832964471,0.484034097 -0,19.655,2.838006333,0.481929601 -0,20.875,2.733910509,0.47140712 -10.33,19.33,2.185895649,0.473511616 -15.32,10.165,1.818826779,0.521915026 -0,6.75,1.941098472,0.536646499 -0,8.75,2.060556794,0.532437507 -0,10.915,2.150568529,0.51981053 -0.1,13.18,2.194638703,0.51981053 -3.6,13.41,1.908020845,0.51981053 -0,14.52,2.196820925,0.51981053 -0,13.27,2.067876733,0.524019522 -0,12.815,1.94999901,0.51981053 -13.88,12.24,1.392803439,0.526124018 -0,8.11,1.7163068,0.553482467 -0,8.97,1.736136289,0.559795955 -0,12.14,1.83852357,0.559795955 -0,13.6,1.873548531,0.557691459 -0,11.215,1.67180578,0.553482467 -0,13.215,1.755644685,0.540855491 -0,15.155,1.808269192,0.53033301 -17.26,17.285,1.290903109,0.572422932 -30.87,18.605,1.078453859,0.68606572 -23.38,19.605,1.265132423,1.959285844 -0.51,20.455,1.533901368,1.521550661 -3.32,21.17,1.318283941,1.151159352 -3.87,20.85,1.689077723,1.229025707 -0,20.325,1.635857112,0.974381682 -0,18.775,1.40139421,0.841798429 -0,16.55,1.455617198,0.763932075 -11.08,14.79,1.338224072,0.747096106 -0,6.92,1.157515377,0.774454555 -0,2.225,0.893946395,0.747096106 -0,-2.9,0.799588788,0.694483704 -0,-2.5,0.819150335,0.662916263 -0,1.845,0.953549382,0.646080294 -0,5.04,1.031102672,0.63766231 -0,3.64,0.942895109,0.631348822 -0,-0.545,0.818036186,0.618721846 -0,1.625,0.886295804,0.610303861 -0,2.895,0.89928937,0.606094869 -0,3.31,0.902332924,0.601885877 -0,4.295,0.909998197,0.597676885 -0,8.345,1.007472176,0.593467893 -0,10.785,1.068451412,0.591363397 -0,14.51,1.187471883,0.591363397 -0,15.215,1.202464434,0.591363397 -0,16.465,1.219816174,0.591363397 -0.11,17.41,1.102629266,0.591363397 -27.19,17.87,0.884693971,0.641871302 -5.24,14.25,0.948467424,0.894410831 -11.37,10.72,0.72713564,0.942814241 -0,6.69,0.815339401,0.951232225 -0,2.34,0.713491702,0.871261374 -0,0.56,0.658188409,0.799708508 -0,0.935,0.651704211,0.787081531 -0,4.69,0.722704085,0.770245563 -0,10.1,0.873249253,0.774454555 -0,13.82,0.976583978,0.772350059 -31.68,15.76,0.95429421,1.045934548 -95.55,12.435,0.848632351,19.31927395 -55.45,10.835,0.794493124,35.14508442 -53.65,9.11,0.751719288,53.66464987 -0,-0.94,0.548337118,16.58342906 -0,-0.585,0.558244241,5.029745615 -0,4.15,0.635644527,3.430328599 -0,7.73,0.702312076,2.630620091 -0,10.7,0.81205938,2.167630955 -33.92,13.275,0.792259015,2.714799934 -16.62,6.385,0.657937133,6.502892866 -0,6.365,0.661570934,4.503621597 -0,11.02,0.787303803,3.17778907 -32.7,14.425,0.794389767,3.219878992 -14.59,11.02,0.771064208,5.576914594 -0,1.43,0.5294085,4.187947186 -0,1.385,0.526688498,3.072564267 -0,4.47,0.574100244,2.483305366 -0,3.33,0.569335336,2.083451112 -0,0.065,0.523579502,1.807762127 -0,3.04,0.59916335,1.622566472 -5.35,7.15,0.648928857,1.494192212 -4.23,8.84,0.657574859,1.416325857 -15.46,12.93,0.798890792,1.447893298 -10.36,7.89,0.677721663,1.786717166 -0,2.625,0.585827142,1.841434064 -0,4.725,0.599856355,1.647820425 -0,7.045,0.699362416,1.506819188 -8.63,7.54,0.679897964,1.45210229 -3,5.725,0.628496177,1.477356243 -0,3.73,0.606333599,1.43105733 -0,4.1,0.648307325,1.348981983 -0,4.855,0.654330432,1.285847101 -4.46,5.91,0.679003988,1.243757179 -9.62,7.35,0.638536329,1.357399967 -0,5.125,0.624473589,1.380549424 -0,4.58,0.615673639,1.321623534 -0,3.675,0.67051792,1.271115628 -0,4.73,0.676614247,1.222712219 -1.97,5.37,0.715009512,1.203771754 -11.41,8.27,0.749722519,1.292160589 -0,3.39,0.690359339,1.277429116 -0,-1.29,0.589816543,1.207980746 -14.81,1.86,0.640140002,1.180622297 -9.44,7.205,0.746777572,1.279533612 -18.65,4.12,0.709118609,2.081346616 -0,-3.775,0.568964412,2.904204581 -0,-5.695,0.547595228,2.167630955 -0,-3.8,0.587299689,1.856165537 -0,-0.02,0.651568705,1.681492362 -0,-3.695,0.606355017,1.521550661 -0,-0.23,0.712348258,1.391071904 -0,3.64,0.818097933,1.317414542 -0,4.965,0.860151108,1.269011132 -9.39,7.615,0.860530956,1.281638109 -0,2.59,0.81654868,1.285847101 -0,3.49,0.884742257,1.20587625 -0,5.205,0.937836536,1.132218887 -0,5.52,0.972339644,1.077501989 -0,6.775,1.025863994,1.050143541 -0,7.925,1.099704344,1.033307572 -0,7.015,1.092127468,1.008053619 -0,7.735,1.128923246,0.97017269 -0,5.76,1.082378608,0.965963698 -0,4.2,1.05516255,0.947023233 -0,7.455,1.164428533,0.928082768 -0,9.375,1.259192475,0.9112468 -0,9.01,1.272641378,0.902828815 -0,4.255,1.089120429,0.883888351 -0,3.52,1.111248849,0.850216414 -0,0.315,0.957865769,0.831275949 -0,-2.535,0.905104361,0.810230988 -0,0.905,1.088135369,0.791290524 -0,5.19,1.270870502,0.782872539 -1.12,9.56,1.303835905,0.780768043 -3.09,9.97,1.10351931,0.780768043 -5.46,10.575,1.094201528,0.79339502 -13.19,13.2,1.324988147,0.909142304 -0,8.875,1.571147074,0.959650209 -21.54,7.64,1.249001351,0.955441217 -10.27,11.25,1.295134067,1.252175164 -0,9.595,1.662054933,1.348981983 -0,4.65,1.45610802,1.300578573 -0,7.37,1.66206988,1.212189738 -0,8.83,1.753261375,1.144845864 -28.18,11.735,1.5212233,1.65623841 -15.7,12.625,1.229996876,3.325103796 -2.68,10.315,1.481977479,2.88315962 -22.13,5.705,1.212259385,3.872272775 -0,1.915,1.325411214,5.45064483 -0,8.13,1.915662594,3.598688285 -0,9,1.980564982,2.693754974 -0,8.6,1.997692405,2.167630955 -0,11.295,2.208858327,1.849852048 -0,13.89,2.392834498,1.668865386 -0,16.255,2.411449669,1.521550661 -0,17.18,2.201328974,1.399489889 -0,16.045,2.072252679,1.338459503 -0,16.52,2.434956108,1.252175164 -0,15.065,2.627774757,1.163786328 -0,16.635,2.662083038,1.245861675 -70.25,12.05,2.035500044,25.8853017 -2.89,0.51,1.64762975,18.11971119 -0,0.835,1.751153722,5.576914594 -0,2.78,1.791899151,3.788092932 -0,3.785,2.003265481,2.820024738 -0,5.28,2.122173262,2.29390072 -0,3.74,2.224616123,1.948763364 -0,8.5,2.534691703,1.710955307 -19.31,15.08,1.925076044,2.043465687 -15.32,11.775,1.889970967,3.851227814 -0,5.955,2.169275543,3.261968913 -0,4.69,2.309089492,2.609575131 -5.23,7.1,1.946492843,2.29390072 -10.45,4.68,1.673220192,2.29390072 -0,4.55,2.470671634,2.167630955 -3.37,8.22,2.090135025,1.917195923 -2.77,9.355,2.249093652,1.788821662 -0,8.785,2.711335716,1.681492362 -0,6.04,2.653212781,1.586790039 -0,10.115,2.588668173,1.496296708 -6.5,10.79,1.995293072,1.529968645 -1.05,10.36,2.550805784,1.555222598 -0,7.835,2.565295031,1.426848338 -0,2.505,2.319078073,1.342668495 -0,2.195,2.555615341,1.271115628 -0,7.005,3.037740161,1.226921211 -0,8.15,3.211515106,1.180622297 -0,9.585,3.14435417,1.134323383 -6.27,12.55,2.174112527,1.119591911 -0,13.195,3.604578694,1.117487415 -0,15.395,3.902826514,1.079606486 -0,16.395,4.030702446,1.048039044 -0,18.055,4.133092562,1.016471603 -0,17.92,4.003015773,0.989113154 -0,15.67,3.8631384,0.963859202 -0,17.845,4.272035633,0.940709745 -0.59,19.915,4.203671577,0.930187264 -10.02,19.78,3.323088625,1.058561525 -0,20.81,3.996770107,1.052248037 -0,20.02,4.190187946,0.982799666 -2.01,20.515,3.388254064,0.97017269 -15.5,18.8,2.107732576,1.111173927 -13.66,15.99,2.196285028,1.464729267 -0,15.01,3.982209046,1.525759653 -0,17.115,4.541111723,1.361608959 -0,20.165,4.593776473,1.243757179 -0,16.56,4.423563772,1.163786328 -0,9.025,2.976300518,1.094337958 -0,7.195,2.422764378,1.052248037 -0.45,7.3,3.328092955,1.014367107 -0,9.23,3.882810647,0.98069517 -0.15,13.405,4.34080073,0.949127729 -0,18.44,4.673727195,0.92176928 -0,19.73,4.713188131,0.890201839 -0,20.45,4.27438656,0.86284339 -0,15.15,4.615759953,0.833380445 -0,12.88,4.471014688,0.808126492 -0,10.325,3.713816102,0.797604012 -0,10.21,3.734932881,0.784977035 -0,11.925,4.085145209,0.772350059 -0,13.445,4.492566689,0.761827578 -0,16.8,4.698046451,0.751305098 -0,17.77,4.94053797,0.738678122 -0,19.31,4.92105388,0.736573626 -38.69,18.97,3.358676682,1.351086479 -0,17.825,4.723827142,1.374235936 -0,19.69,4.864343797,1.018576099 -0,21.37,4.809242907,0.877574863 -0,20.945,4.303580345,0.822857965 -0,22.425,4.542381102,0.787081531 -0.26,22.52,4.484466401,0.913351296 -16.07,23.005,3.733981146,0.883888351 -5.79,22.4,3.369374704,0.816544476 -0,19.99,4.327160756,0.940709745 -0,20.08,4.934581758,0.829171453 -0,19.205,4.479811741,0.747096106 -0,15.85,3.370061015,0.73446913 -0,17.115,3.590531724,0.73446913 -0,14.525,3.556846261,0.732364633 -0,14.94,3.28275867,0.717633161 -14.4,15.265,2.258338753,0.723946649 -14.08,15.39,2.981118352,0.883888351 -0,15.26,4.682017401,0.904933311 -0,16.395,4.655973274,0.761827578 -0,17.89,4.633852335,0.721842153 -17.28,18.775,3.165164155,0.848111917 -44.26,18.08,2.320481454,1.683596859 -9.96,18.91,3.4431482,2.104496073 -0,20.58,5.191878134,2.58853017 -22.38,22.455,3.591004296,2.251810798 -0,23.115,4.209564905,1.946658868 -10.73,23.165,3.257023878,1.820389103 -0,22.265,5.044523781,1.641506937 -3.69,22.725,4.127462089,1.515237173 -20.73,22.38,3.6797994,1.43105733 -0,21.105,3.576517411,1.388967408 -0,21.565,4.069928303,1.283742605 -0,22.76,5.393607583,1.189040281 -0,24.195,5.895660148,1.13642788 -0,25.08,5.755270565,0.907037808 -0,25.17,5.386115235,0.85232091 -29,22.915,4.599444966,0.98069517 -0,23.38,5.742322616,0.961754705 -0,21.14,5.590490688,1.584685543 -0,16.225,5.430083137,1.073292997 -0,17.375,5.48380854,0.87336587 -0,19.95,5.787465387,0.79339502 -0,23.67,5.817473533,0.75551409 -26.48,24.015,3.904328307,1.576267559 -12.68,19.715,3.872020361,3.788092932 -0,19.19,5.46959791,1.995062277 -0,21.01,5.689977398,1.3931764 -0,22.015,4.752338509,1.13642788 -6.39,23.19,2.991037032,1.144845864 -1.04,25.3,4.639855373,1.056457029 -28.55,25.29,3.990219581,1.085919974 -4.37,23.84,4.657139923,1.607835 -19.82,23.455,3.572947634,1.955076852 -11.5,24.105,3.93613235,3.598688285 -0,24.965,5.357173036,2.630620091 -0,25.43,5.654424978,1.875106001 -0,25.475,5.595555415,1.481565236 -0,25.865,5.479615382,1.229025707 -0,26.19,5.440568044,1.085919974 -0,25.95,5.546595489,0.987008658 -0,25.745,5.720860492,0.904933311 -0,26.075,5.134746327,0.843902925 -6.61,25.555,3.174987346,0.869156878 -4.81,24.145,3.661470185,0.915455792 -10.68,23.895,3.137177792,0.86284339 -0,22.815,4.986118458,0.806021996 -0,23.53,5.342450966,0.753409594 -0,23.95,5.458537821,0.711319673 -0,24.36,5.294652015,0.723946649 -9.94,24.31,3.70363893,0.831275949 -2.54,25.47,4.223294693,0.879679359 -1.33,25.375,4.613293252,0.850216414 -0,25.88,4.817352599,0.812335484 -0,25.205,4.987559302,0.87336587 -0,25.43,4.820463949,0.782872539 -1.18,23.315,4.842852097,0.719737657 -0,22.96,5.002384072,0.683961224 -0,22.875,4.863893438,0.675543239 -8.9,25.105,3.500270736,0.761827578 -6.1,22.09,4.029144559,0.816544476 -0,20.765,5.055327503,0.726051145 -0,20.97,4.935562185,0.673438743 -0,22.465,4.419855008,0.679752232 -0,22.69,3.984292583,0.709215177 -2.11,22.78,3.134655035,0.671334247 -2.46,23.78,3.418429317,0.669229751 -0,25.48,4.788716231,0.652393783 -0,25.275,4.765531438,0.631348822 -3.13,25.38,4.856987167,0.625035334 -0,25.13,5.009251404,0.62713983 -0,24.3,4.556437625,0.658707271 -0,23.645,4.118626383,0.671334247 -2.21,21.04,4.522930561,0.618721846 -2.46,18.79,3.801689546,0.606094869 -0,17.65,4.377304195,0.721842153 -0,18.615,4.433093907,0.62713983 -0,19.67,4.651479511,0.595572389 -0,20.1,4.619240055,0.574527428 -0,21.545,4.451088609,0.566109444 -0,21.585,4.006456596,0.555586963 -0,22.63,4.44755224,0.551377971 -0,22.925,3.920528647,0.559795955 -20.36,23.22,3.313147777,0.593467893 -5.74,24.81,3.958939461,0.692379208 -0,25.08,4.359793415,0.759723082 -5.26,24.655,3.576765224,0.719737657 -58.95,18.21,3.00145137,3.072564267 -0,16.97,4.132074143,2.146585995 -0,17.76,4.222104963,1.296369581 -0,19.575,4.394116348,1.02909858 -0,21.665,4.278481159,0.898619823 -0,21.55,4.001000278,0.955441217 -50.47,21.095,2.654966409,9.154557918 -33.86,20.995,2.039505027,7.071106806 -0,22.28,3.526328345,3.093609228 -0,23.37,3.791006952,2.230765838 -0,23.45,3.966962984,1.811971119 -0,23.805,4.109909838,1.416325857 -0,24.21,4.016780842,1.191144777 -0,23.885,3.727009182,1.054352533 -0,18.48,3.80578266,0.942814241 -0,17.025,3.670445917,0.85232091 -0,18.66,3.690190168,0.79339502 -0,21.13,3.754934917,0.753409594 -0,20.02,3.604476235,0.719737657 -0,20.415,3.629355044,0.688170216 -0,20.265,3.370138362,0.683961224 -46.88,22.015,2.517477289,1.908777938 -0.02,22.83,2.934838866,2.504350327 -0,21.755,2.905899495,1.616252984 -3.66,23.12,2.788044973,1.252175164 -45.38,22.64,2.203105971,1.761463213 -12.84,16.22,2.286609775,2.925249542 -0,15.56,2.290154696,2.335990641 -0,16.28,2.50001311,1.679387866 -14.09,17.83,1.941122405,1.418430353 -0,17.825,2.408976589,2.609575131 -0,15.465,2.75497949,1.969808324 -0,14.93,2.704928873,1.412116865 -0,12.54,2.581669893,1.178517801 -0,12.74,2.600419727,1.050143541 -0,13.61,2.601609058,0.989113154 -0,14.05,2.585036167,0.928082768 -3.53,15.765,2.061667013,0.885992847 -0.92,15.875,2.03260584,0.858634398 -0,13.825,2.375752378,0.818648972 -0,13.945,2.319947938,0.782872539 -0,15.885,2.274347577,0.75551409 -0,12.235,2.217654438,0.738678122 -0,12.605,2.200928427,0.723946649 -0,11.72,2.104101603,0.726051145 -0,10.505,2.000738118,0.707110681 -0,13.315,2.135234714,0.694483704 -0,16.65,2.247997949,0.715528665 -0,19.29,2.279652885,0.698692696 -14.26,16.66,1.712106567,0.73446913 -9.69,10.675,1.531039125,0.818648972 -0,10.25,1.703984841,0.766036571 -0,7.465,1.597963885,0.719737657 -0,8.52,1.607946537,0.698692696 -0,13.835,1.781351077,0.6965882 -0,15.935,1.846879135,0.713424169 -0,16.3,1.879492654,0.711319673 -0,16.07,1.826269594,0.705006185 -0,14.835,1.726914355,0.681856728 -0,13.325,1.628971731,0.673438743 -11.2,15.36,1.430688311,0.694483704 -0,13.54,1.4306026,0.778663547 -0,12.03,1.458707103,0.784977035 -6.08,12.955,1.201699152,0.757618586 -9.43,15.82,0.996813376,0.799708508 -8.2,17.61,1.100269756,0.778663547 -15.04,16.37,1.120088916,0.808126492 -0,12.085,1.357556465,0.888097343 -11.14,13.485,1.218529234,0.92176928 -11.44,5.515,0.780082238,1.020680595 -0,2.6,0.610330423,1.031203076 -0,1.79,0.80173941,0.963859202 -0,3.765,0.948220649,0.896515327 -0,7.38,1.060147749,0.850216414 -0,11.485,1.110710793,0.81443998 -1.26,13.795,1.04246891,0.797604012 -22.58,13.83,1.018157212,0.860738894 -0,6.8,0.977303756,1.121696407 -0,4.91,0.890117892,1.21639873 -0,5.875,0.903081926,1.066979509 -0,5.565,0.884685233,0.974381682 -0,9.255,0.959795622,0.923873776 -0,9.83,0.933461608,0.9112468 -0,11.045,0.941229961,0.885992847 -0,13.73,1.064911246,0.869156878 -25.61,16.045,0.94833837,1.02909858 -34.65,16.205,0.980122426,2.88315962 -0,11.375,0.955257734,3.556598364 -10.78,8.095,0.732650574,2.272855759 -14.68,11.1,0.862208637,2.188675916 -0,8.645,0.848541329,3.009429385 -0,4.01,0.667224362,2.378080563 -0,1.225,0.579164244,1.938240883 -0,1.29,0.596271989,1.681492362 -0,0.925,0.622689377,1.496296708 -0,2.385,0.642172563,1.355295471 -0,2.69,0.646072977,1.252175164 -0,2.42,0.626187385,1.153263848 -11.53,4.265,0.651153566,1.092233462 -0.45,2.305,0.613699093,1.085919974 -0,-0.315,0.533957655,1.026994084 -4.81,0.99,0.541748939,0.989113154 -0,2.265,0.575739395,0.963859202 -0,1.87,0.583548572,0.961754705 -9.73,3.43,0.580399133,1.064875013 -0.45,3.99,0.6170864,1.100651446 -0,0.14,0.544929245,1.050143541 -0,2.32,0.578634314,1.014367107 -0,4.86,0.640477954,0.984904162 -0,8.405,0.738738217,0.959650209 -5.68,9.405,0.706683766,0.976486178 -3.18,6.105,0.658313545,0.989113154 -0,3.51,0.612295158,0.976486178 -0,6.305,0.659801315,0.959650209 -25.2,7.52,0.693344775,1.245861675 -0,4.365,0.645122725,1.689910347 -10.62,7.4,0.687003194,1.696223835 -23.2,10.565,0.771063562,2.925249542 -4.14,1.73,0.556933123,4.693026243 -0,-2.225,0.509369649,3.535553403 -5.88,0.215,0.544183601,2.946294502 -2.84,0.745,0.565012373,2.567485209 -4.07,4.875,0.613773415,2.29390072 -0,7.89,0.746469534,2.077137624 -0,11.495,0.857948183,1.877210497 -0,9.695,0.80849671,1.723582284 diff --git a/data/gr4j/sample.csv b/data/gr4j/sample.csv deleted file mode 100644 index 65d64f8..0000000 --- a/data/gr4j/sample.csv +++ /dev/null @@ -1,3653 +0,0 @@ -,time,pet,prec,prob,pn,ps,evap,perc,pr,q9,q1,rout,exch,aexch1,aexch2,qr,qd,qsim,qobs -1,1990/1/1,0.3,0,235.9667195,0,0,0.279675952,0.684557147,0.684557147,1.287989557,0.177967848,45.46972289,0.565239243,0.565239243,0.565239243,2.339703949,0.743207091,3.08291104,1.992 -2,1990/1/2,0.4,9.3,239.2147372,8.9,3.98130338,0.4,0.733285667,5.651982287,2.578724164,0.193185311,46.0748721,0.544572942,0.544572942,0.544572942,2.518147897,0.737758253,3.25590615,1.8 -3,1990/1/3,0.4,3.2,239.7022077,2.8,1.228304717,0.4,0.74083417,2.312529453,3.767370764,0.433310655,47.44397923,0.570364474,0.570364474,0.570364474,2.968628107,1.003675129,3.972303237,2.856 -4,1990/1/4,0.3,7.3,241.9506898,7,3.024949583,0.3,0.776467478,4.751517895,3.044917386,0.324174899,47.96284481,0.631919646,0.631919646,0.631919646,3.157971452,0.956094545,4.114065997,2.4 -5,1990/1/5,0.1,0,241.0939282,0,0,0.094031223,0.762730418,0.762730418,2.700401621,0.358832311,48.10710716,0.656440327,0.656440327,0.656440327,3.212579599,1.015272639,4.227852237,3.312 -6,1990/1/6,0.1,0,240.2506272,0,0,0.093899739,0.749401224,0.749401224,0.681191012,0.123025164,46.72732434,0.663376878,0.663376878,0.663376878,2.724350714,0.786402043,3.510752757,3.072 -7,1990/1/7,0.1,0,239.4203956,0,0,0.093768922,0.736462698,0.736462698,0.66934909,0.074813348,45.61449333,0.599137055,0.599137055,0.599137055,2.381317149,0.673950403,3.055267552,2.616 -8,1990/1/8,0.2,0,238.5106406,0,0,0.187262792,0.722492267,0.722492267,0.657296713,0.073492237,44.69460709,0.550665637,0.550665637,0.550665637,2.127848595,0.624157874,2.752006469,2.184 -9,1990/1/9,0.2,0.1,237.7068189,0,0,0.193494622,0.710327071,0.710327071,0.645436571,0.072146989,43.91947046,0.512768002,0.512768002,0.512768002,1.933341194,0.584914991,2.518256185,2.184 -10,1990/1/10,0.3,0.2,236.9149482,0,0,0.293365908,0.698504713,0.698504713,0.63462335,0.070916703,43.25667073,0.482311721,0.482311721,0.482311721,1.779734808,0.553228424,2.332963232,2.184 -11,1990/1/11,0.3,2.9,237.3783299,2.6,1.16878509,0.3,0.705403428,2.136618337,1.196850913,0.101556415,43.15392001,0.457313266,0.457313266,0.457313266,1.756914901,0.558869681,2.315784582,1.716 -12,1990/1/12,0.2,0.2,236.6832541,0,0,0.2,0.695075756,0.695075756,1.353404989,0.165058685,43.19486932,0.453522529,0.453522529,0.453522529,1.7659782,0.618581213,2.384559414,1.8 -13,1990/1/13,0.2,0,235.8145293,0,0,0.186385175,0.682339626,0.682339626,0.620536137,0.086229921,42.62662199,0.455030553,0.455030553,0.455030553,1.643814023,0.541260474,2.185074497,1.62 -14,1990/1/14,0.2,0,234.9584552,0,0,0.186100522,0.669973591,0.669973591,0.609219844,0.068112758,42.12755579,0.434421384,0.434421384,0.434421384,1.542707429,0.502534142,2.045241571,1.428 -15,1990/1/15,0.2,0,234.1146756,0,0,0.185817134,0.657962481,0.657962481,0.598230643,0.06687958,41.68502176,0.416878888,0.416878888,0.416878888,1.457643561,0.483758468,1.941402028,1.236 -16,1990/1/16,0.3,3.3,234.8323206,3,1.385811916,0.3,0.668166935,2.282355019,1.233961444,0.101593225,41.83477575,0.401752046,0.401752046,0.401752046,1.485959495,0.503345271,1.989304766,1.236 -17,1990/1/17,0.3,4.6,236.112026,4.3,1.966385158,0.3,0.686679784,3.020294626,2.345678373,0.225274818,42.88818984,0.40682632,0.40682632,0.40682632,1.699090611,0.632101137,2.331191748,1.236 -18,1990/1/18,0.2,0.8,235.7044791,0.6,0.273192799,0.2,0.680739722,1.007546923,1.92303128,0.249146437,43.43506714,0.44382319,0.44382319,0.44382319,1.819977162,0.692969627,2.512946789,1.236 -19,1990/1/19,0.2,1.8,235.7528687,1.6,0.729832476,0.2,0.681442835,1.551610358,1.121750911,0.13643568,43.24388537,0.463948445,0.463948445,0.463948445,1.776881132,0.600384125,2.377265257,1.236 -20,1990/1/20,0.3,1.1,235.4413529,0.8,0.365410869,0.3,0.676926663,1.111515794,1.222568537,0.139084219,43.16412462,0.456840353,0.456840353,0.456840353,1.759169638,0.595924573,2.35509421,1.1064 -21,1990/1/21,0.2,0,234.590659,0,0,0.18597734,0.664716525,0.664716525,0.823834419,0.106534971,42.76830163,0.453897996,0.453897996,0.453897996,1.673555401,0.560432966,2.233988367,0.9816 -22,1990/1/22,0.2,5,236.1019222,4.8,2.197795139,0.2,0.686532016,3.288736877,1.634991639,0.129338381,43.09815165,0.439496072,0.439496072,0.439496072,1.744637696,0.568834453,2.313472149,0.8688 -23,1990/1/23,0.3,13.1,241.0072019,12.8,5.666630649,0.3,0.761350871,7.894720222,4.77968071,0.39902647,45.87223985,0.451474515,0.451474515,0.451474515,2.457067028,0.850500985,3.307568013,0.9816 -24,1990/1/24,0.6,14.6,246.0298502,14,5.867284684,0.6,0.844636437,8.977351752,7.53299422,0.758911865,49.96603332,0.561633229,0.561633229,0.561633229,4.000833972,1.320545095,5.321379067,2.856 -25,1990/1/25,0.4,4,246.6354373,3.6,1.460742721,0.4,0.855155617,2.994412895,5.715765561,0.753641504,51.59668242,0.757512911,0.757512911,0.757512911,4.842629381,1.511154415,6.353783796,4.992 -26,1990/1/26,0.4,0.8,245.9544958,0.4,0.162393412,0.4,0.843334853,1.080941442,1.938961631,0.32800496,50.24788541,0.847625876,0.847625876,0.847625876,4.135384514,1.175630836,5.311015349,4.704 -27,1990/1/27,0.4,0.1,244.846278,0,0,0.3838389,0.824378939,0.824378939,0.871479785,0.125030565,48.51867093,0.772574284,0.772574284,0.772574284,3.373268545,0.897604848,4.270873394,4.056 -28,1990/1/28,0.5,3.3,245.1705148,2.8,1.154125784,0.5,0.829889019,2.475763236,1.394400659,0.121711638,47.57949137,0.68345373,0.68345373,0.68345373,3.017033948,0.805165368,3.822199316,3.816 -29,1990/1/29,0.4,7.7,247.2697772,7.3,2.965549812,0.4,0.866287345,5.200737533,3.304820399,0.287912566,48.25362642,0.638259468,0.638259468,0.638259468,3.268944815,0.926172034,4.195116849,3.072 -30,1990/1/30,0.3,10.3,250.2858404,10,3.93688993,0.3,0.920826727,6.983936796,5.385203199,0.527075998,50.19803275,0.670475379,0.670475379,0.670475379,4.111272254,1.197551377,5.308823631,2.856 -31,1990/1/31,0.3,3.7,250.6684542,3.4,1.310552951,0.3,0.927939154,3.017386204,4.718364341,0.590296881,51.11100645,0.769894867,0.769894867,0.769894867,4.575285509,1.360191749,5.935477258,2.616 -32,1990/2/1,0.5,15.3,255.1742207,14.8,5.520853278,0.5,1.01508681,10.29423353,5.590719746,0.508247382,52.27787613,0.820027653,0.820027653,0.820027653,5.243877722,1.328275035,6.572152757,3.816 -33,1990/2/2,0.5,3.2,255.1375811,2.7,0.977712841,0.5,1.014352439,2.736639598,6.278815106,0.777710138,53.43818387,0.887443589,0.887443589,0.887443589,6.005950948,1.665153727,7.671104676,6.552 -34,1990/2/3,0.3,2.7,254.9962218,2.4,0.870163828,0.3,1.011523183,2.541359355,2.385820621,0.358513643,51.81470963,0.95831635,0.95831635,0.95831635,4.967611212,1.316829993,6.284441205,5.808 -35,1990/2/4,0.3,2.2,254.6820347,1.9,0.691070644,0.3,1.005257672,2.214187028,2.157958028,0.249257767,50.54895637,0.860228295,0.860228295,0.860228295,4.283939583,1.109486062,5.393425645,4.992 -36,1990/2/5,0.4,8,256.3795947,7.6,2.737046854,0.4,1.039486874,5.90244002,3.449991887,0.30623439,50.51894416,0.788897647,0.788897647,0.788897647,4.268901744,1.095132037,5.364033782,4.704 -37,1990/2/6,0.4,14.3,260.0756279,13.9,4.813309369,0.4,1.117276224,10.20396685,7.011723133,0.641162242,52.76611505,0.787259502,0.787259502,0.787259502,5.551811746,1.428421745,6.980233491,5.544 -38,1990/2/7,0.3,6.3,260.9479797,6,2.008657472,0.3,1.136305598,5.127648126,7.177923473,0.858238897,54.25276,0.916792186,0.916792186,0.916792186,6.608070711,1.775031083,8.383101794,5.4 -39,1990/2/8,0.2,0,259.6468165,0,0,0.193146149,1.108017125,1.108017125,3.026732587,0.484405596,52.74912377,1.010425766,1.010425766,1.010425766,5.540794583,1.494831362,7.035625944,4.992 -40,1990/2/9,0.1,5.9,260.4760037,5.8,1.955164979,0.1,1.125977711,4.970812732,2.523400546,0.242998281,51.43584922,0.915759341,0.915759341,0.915759341,4.752434438,1.158757622,5.91119206,4.44 -41,1990/2/10,0.1,9.2,262.3137769,9.1,3.004397913,0.1,1.166624705,7.262226792,5.379065841,0.501819064,52.35931172,0.838414313,0.838414313,0.838414313,5.294017655,1.340233377,6.634251032,3.936 -42,1990/2/11,0,6.1,263.1021813,6.1,1.97282646,0,1.184422066,5.311595607,5.765312278,0.656381172,53.18579882,0.892291455,0.892291455,0.892291455,5.831116624,1.548672627,7.379789251,3.552 -43,1990/2/12,0.1,0.1,261.9438328,0,0,0.1,1.158348532,1.158348532,3.13949379,0.463002406,52.11989717,0.942568421,0.942568421,0.942568421,5.147963866,1.405570827,6.553534693,2.856 -44,1990/2/13,0.1,0,260.7159219,0,0,0.096692772,1.131218126,1.131218126,1.031794466,0.164223724,50.00880648,0.878092785,0.878092785,0.878092785,4.020977936,1.042316509,5.063294445,2.4 -45,1990/2/14,0,2.8,260.5248337,2.8,0.935954463,0,1.127042685,2.991088223,1.752928369,0.154265837,48.96532229,0.759784968,0.759784968,0.759784968,3.556197534,0.914050805,4.470248339,2.088 -46,1990/2/15,0.2,10.6,262.7677284,10.4,3.419740251,0.2,1.176845532,8.157105281,4.733065467,0.390566861,50.26191987,0.705729292,0.705729292,0.705729292,4.14219718,1.096296153,5.238493333,1.992 -47,1990/2/16,0.9,8.8,264.0859262,7.9,2.525134218,0.9,1.206936399,6.581802181,6.7189945,0.720203736,52.4215696,0.773329789,0.773329789,0.773329789,5.332674552,1.493533525,6.826208077,5.112 -48,1990/2/17,0.9,7.2,264.841287,6.3,1.979818586,0.9,1.22445782,5.544639234,5.513840171,0.653994211,53.07524115,0.896010408,0.896010408,0.896010408,5.756179034,1.550004618,7.306183652,10.728 -49,1990/2/18,0.5,4.9,264.9859591,4.4,1.372509137,0.5,1.227837015,4.255327878,4.480770059,0.538396303,52.87125771,0.93572859,0.93572859,0.93572859,5.620482089,1.474124893,7.094606981,12.84 -50,1990/2/19,0.9,1.8,264.0621891,0.9,0.282619053,0.9,1.206389096,1.823770042,2.869089878,0.387366804,51.73944226,0.923201982,0.923201982,0.923201982,4.924107313,1.310568787,6.234676099,11.76 -51,1990/2/20,0.8,0,262.1246667,0,0,0.77513422,1.162388089,1.162388089,1.380081907,0.196538115,49.97182906,0.855862667,0.855862667,0.855862667,4.003557768,1.052400782,5.05595855,9.864 -52,1990/2/21,0.8,1.2,261.1163129,0.4,0.131653785,0.8,1.140007584,1.408353799,1.143329961,0.129438258,48.50511979,0.757820489,0.757820489,0.757820489,3.367859725,0.887258746,4.255118471,8.064 -53,1990/2/22,0.9,0,259.1499661,0,0,0.868980293,1.097366587,1.097366587,1.144647772,0.13110829,47.38482802,0.682785859,0.682785859,0.682785859,2.947725392,0.813894149,3.761619541,6.984 -54,1990/2/23,1.2,0.3,257.2261659,0,0,1.16689475,1.056905415,1.056905415,0.971643749,0.11251642,46.37460252,0.629166461,0.629166461,0.629166461,2.611035712,0.741682881,3.352718592,5.952 -55,1990/2/24,1.4,0,254.8723081,0,0,1.344809441,1.009048343,1.009048343,0.932306586,0.105117316,45.53265427,0.583456771,0.583456771,0.583456771,2.357711608,0.688574086,3.046285694,5.256 -56,1990/2/25,1.2,5.1,255.2691729,3.9,1.413856695,1.2,1.016991944,3.503135249,1.893553744,0.156214325,45.59713186,0.547215474,0.547215474,0.547215474,2.376291632,0.703429799,3.079721431,4.992 -57,1990/2/26,1,0.8,254.0839851,0,0,0.991769761,0.993418024,0.993418024,2.161235864,0.265809659,45.85605367,0.549932419,0.549932419,0.549932419,2.452246472,0.815742078,3.26798855,4.704 -58,1990/2/27,1,1.4,253.2546432,0.4,0.147844262,1,0.977186127,1.229341865,0.987289379,0.134120521,45.15326455,0.560939925,0.560939925,0.560939925,2.251018422,0.695060447,2.946078869,4.32 -59,1990/2/28,1,0,251.3580192,0,0,0.9557545,0.940869497,0.940869497,0.992432619,0.113819728,44.57927545,0.531422607,0.531422607,0.531422607,2.097844328,0.645242334,2.743086663,3.816 -60,1990/3/1,1,1.5,250.622415,0.5,0.191476722,1,0.927080988,1.235604266,0.963231821,0.103958689,44.07870682,0.50815184,0.50815184,0.50815184,1.971952289,0.612110529,2.584062818,3.672 -61,1990/3/2,1,0,248.7769789,0,0,0.952230015,0.893206069,0.893206069,0.97676276,0.11256867,43.66978085,0.488459926,0.488459926,0.488459926,1.874148661,0.601028596,2.475177257,2.4 -62,1990/3/3,1.1,2.3,248.3650386,1.2,0.473842415,1.1,0.885782672,1.611940257,1.087856316,0.109135115,43.41500745,0.472782645,0.472782645,0.472782645,1.815412358,0.581917761,2.397330119,2.088 -63,1990/3/4,1,3.4,248.4278321,2.4,0.949704463,1,0.886911017,2.337206553,1.737297895,0.168636691,43.72775686,0.463198946,0.463198946,0.463198946,1.887747435,0.631835637,2.519583072,1.992 -64,1990/3/5,0.7,0,246.9034157,0,0,0.664572326,0.859844071,0.859844071,1.519781985,0.192738752,43.81430988,0.474983126,0.474983126,0.474983126,1.908212089,0.667721878,2.575933967,1.896 -65,1990/3/6,0.6,0,245.4995293,0,0,0.568375692,0.835510627,0.835510627,0.764245534,0.102874664,43.27336926,0.478281846,0.478281846,0.478281846,1.783467992,0.58115651,2.364624502,1.524 -66,1990/3/7,0.6,0,244.1202255,0,0,0.567156461,0.812147398,0.812147398,0.742728765,0.083325256,42.79484898,0.457931449,0.457931449,0.457931449,1.679180496,0.541256705,2.220437201,1.428 -67,1990/3/8,0.7,0,242.6718318,0,0,0.660209603,0.788184069,0.788184069,0.721464761,0.080964317,42.36637592,0.440451635,0.440451635,0.440451635,1.590389455,0.521415952,2.111805407,1.428 -68,1990/3/9,0.9,0,241.0628431,0,0,0.846752967,0.762235719,0.762235719,0.699113487,0.07853149,41.97733866,0.425209136,0.425209136,0.425209136,1.513359889,0.503740626,2.017100515,1.236 -69,1990/3/10,1,0,239.3885777,0,0,0.938295014,0.735970447,0.735970447,0.675634757,0.07595311,41.61930586,0.411699308,0.411699308,0.411699308,1.445366862,0.487652418,1.933019279,0.9816 -70,1990/3/11,1.2,0,237.5578595,0,0,1.122627221,0.708090934,0.708090934,0.651358228,0.073294888,41.28577067,0.399539661,0.399539661,0.399539661,1.38443308,0.472834549,1.857267629,0.8688 -71,1990/3/12,1.1,3.2,237.7852315,2.1,0.938878421,1.1,0.711506464,1.872628043,1.097388812,0.096699434,41.37169167,0.38844485,0.38844485,0.38844485,1.399912657,0.485144284,1.885056941,0.6648 -72,1990/3/13,0.9,0,236.2565702,0,0,0.839864738,0.688796544,0.688796544,1.217635019,0.147543013,41.54838881,0.391281632,0.391281632,0.391281632,1.432219509,0.538824645,1.971044154,0.7632 -73,1990/3/14,0.9,1.7,235.9360175,0.8,0.363556696,0.9,0.68410933,1.120552635,0.790503103,0.092319068,41.34158267,0.397161953,0.397161953,0.397161953,1.394471196,0.489481021,1.883952217,0.7632 -74,1990/3/15,1.1,0.2,234.4363478,0,0,1.037148892,0.662520811,0.662520811,0.82752961,0.096909294,41.19173603,0.39028587,0.39028587,0.39028587,1.367662123,0.487195163,1.854857287,0.7632 -75,1990/3/16,1,6.7,236.3546034,5.7,2.60849073,1,0.69023517,3.78174444,1.828669621,0.140120965,41.90614141,0.385357058,0.385357058,0.385357058,1.499621304,0.525478023,2.025099327,0.8688 -76,1990/3/17,0.7,6.3,238.1518918,5.6,2.51433068,0.7,0.717042315,3.802711635,3.411854015,0.34184592,43.81813492,0.409260511,0.409260511,0.409260511,1.90912101,0.751106431,2.660227441,0.7632 -77,1990/3/18,0.5,0.4,237.3534232,0,0,0.493437332,0.705031232,0.705031232,2.198551172,0.312030099,44.43441859,0.478428003,0.478428003,0.478428003,2.060695506,0.790458103,2.851153608,0.7632 -78,1990/3/19,0.7,25.2,246.9121133,24.5,10.41868672,0.7,0.859996589,14.94130987,6.259261934,0.419523193,48.01751389,0.502396077,0.502396077,0.502396077,3.178562711,0.92191927,4.100481981,0.7632 -79,1990/3/20,1.5,12.5,250.3292355,11,4.338753345,1.5,0.92163118,7.582877834,10.53987229,1.164708334,53.30406502,0.659062847,0.659062847,0.659062847,5.912384009,1.823771181,7.736155191,3.072 -80,1990/3/21,0.8,4.5,250.82278,3.7,1.42436497,0.8,0.930820448,3.206455477,5.095471498,0.749012851,53.38252399,0.949924607,0.949924607,0.949924607,5.966937127,1.698937458,7.665874585,4.848 -81,1990/3/22,0.9,6.9,252.1493823,6,2.282489881,0.9,0.955887594,4.673397713,3.465396685,0.404461436,52.45143126,0.954827342,0.954827342,0.954827342,5.351316762,1.359288777,6.71060554,4.056 -82,1990/3/23,1,10.2,254.5600538,9.2,3.413505036,1,1.002833597,6.789328561,5.042059159,0.496482958,52.81055608,0.897798106,0.897798106,0.897798106,5.580732445,1.394281064,6.975013509,4.056 -83,1990/3/24,0.8,4.9,255.0396042,4.1,1.491941209,0.8,1.012390787,3.620449579,4.858375875,0.584420575,52.92952283,0.919497546,0.919497546,0.919497546,5.658906664,1.503918121,7.162824786,4.32 -84,1990/3/25,1.2,7.5,256.2675408,6.3,2.265135478,1.2,1.037198813,5.072063336,3.831935106,0.431282352,52.38086022,0.926767741,0.926767741,0.926767741,5.307365467,1.358050093,6.66541556,4.848 -85,1990/3/26,1.1,11.1,258.682416,10,3.502295032,1.1,1.087419872,7.58512484,5.557763978,0.545247307,53.07570811,0.893577397,0.893577397,0.893577397,5.756493476,1.438824704,7.19531818,5.4 -86,1990/3/27,1.3,0,256.3915378,0,0,1.251147179,1.039730984,1.039730984,4.240536188,0.585202112,52.72610026,0.935757405,0.935757405,0.935757405,5.525901445,1.520959517,7.046860962,5.952 -87,1990/3/28,1.8,0,253.6793364,0,0,1.726730211,0.985471245,0.985471245,0.914319914,0.17998001,50.36313123,0.914361143,0.914361143,0.914361143,4.191650087,1.094341153,5.285991241,5.664 -88,1990/3/29,1.8,0.6,251.5867241,0,0,1.747422293,0.945190027,0.945190027,0.871009044,0.09830293,48.60501122,0.778793855,0.778793855,0.778793855,3.407922907,0.877096785,4.285019691,5.4 -89,1990/3/30,1.3,11,254.211761,9.7,3.620975087,1.3,0.995938105,7.074963019,3.272535765,0.229542189,48.99611765,0.687719993,0.687719993,0.687719993,3.569149336,0.917262182,4.486411518,5.4 -90,1990/3/31,1.4,0,251.9207764,0,0,1.339455118,0.951529485,0.951529485,3.948106496,0.500791587,49.75064565,0.707283983,0.707283983,0.707283983,3.900862478,1.208075571,5.108938048,4.848 -91,1990/4/1,1.5,0.4,249.9567191,0,0,1.449313393,0.914743946,0.914743946,0.841842599,0.166566718,48.12081833,0.746145471,0.746145471,0.746145471,3.217815391,0.912712189,4.130527581,4.056 -92,1990/4/2,1.5,0,247.6570954,0,0,1.426482166,0.873141501,0.873141501,0.806832462,0.090995103,46.83264128,0.664038863,0.664038863,0.664038863,2.759048369,0.755033966,3.514082336,3.672 -93,1990/4/3,1.4,1,246.4261854,0,0,1.379401029,0.851508983,0.851508983,0.777280352,0.087330008,45.78315598,0.603876688,0.603876688,0.603876688,2.430642344,0.691206696,3.12184904,3.552 -94,1990/4/4,1.5,1.6,245.6291795,0.1,0.040728351,1.5,0.837734276,0.897005925,0.784333843,0.086404712,44.93396504,0.557825067,0.557825067,0.557825067,2.191349852,0.644229779,2.835579631,3.312 -95,1990/4/5,1.6,3.1,245.4098036,1.5,0.614598596,1.6,0.833974518,1.719375921,1.13222255,0.107214975,44.50890725,0.522443805,0.522443805,0.522443805,2.079724137,0.62965878,2.709382917,1.992 -96,1990/4/6,1.2,0,243.474751,0,0,1.133655887,0.801396648,0.801396648,1.184745957,0.142088832,44.19774114,0.505349971,0.505349971,0.505349971,2.001262043,0.647438803,2.648700846,2.4 -97,1990/4/7,1.1,0,241.6667595,0,0,1.036098459,0.771893104,0.771893104,0.709600155,0.090318942,43.55333605,0.493092324,0.493092324,0.493092324,1.847097565,0.583411266,2.430508832,1.992 -98,1990/4/8,1.1,0,239.8899307,0,0,1.03307108,0.74375772,0.74375772,0.683587524,0.076919731,42.98528658,0.468384996,0.468384996,0.468384996,1.72002199,0.545304727,2.265326717,1.716 -99,1990/4/9,1.3,0,237.9586964,0,0,1.217113137,0.714121134,0.714121134,0.657672557,0.074057104,42.47733126,0.447349932,0.447349932,0.447349932,1.612977812,0.521407036,2.134384848,1.428 -100,1990/4/10,1.3,2.4,237.7387816,1.1,0.490892791,1.3,0.710807627,1.319914836,0.882057251,0.0850588,42.22624953,0.429119514,0.429119514,0.429119514,1.562258495,0.514178314,2.076436808,1.428 -101,1990/4/11,0.9,2.1,237.5671691,1.2,0.536618054,0.9,0.708230521,1.371612467,1.208348983,0.125981404,42.28158982,0.420307139,0.420307139,0.420307139,1.573315831,0.546288543,2.119604374,1.236 -102,1990/4/12,0.9,0.8,236.7773589,0,0,0.893343418,0.696466819,0.696466819,0.967702083,0.121732147,42.12861419,0.422238241,0.422238241,0.422238241,1.542915956,0.543970388,2.086886344,1.236 -103,1990/4/13,1,8.4,239.3365928,7.4,3.294400676,1,0.735166767,4.840766091,2.264226985,0.168576594,43.07105656,0.416915546,0.416915546,0.416915546,1.738700157,0.58549214,2.324192297,1.1712 -104,1990/4/14,0.8,16.1,245.018849,15.3,6.509564174,0.8,0.827307925,9.617743752,6.24406658,0.540052221,46.96303471,0.450481875,0.450481875,0.450481875,2.802570305,0.990534096,3.793104401,1.62 -105,1990/4/15,0.7,2.9,245.0965263,2.2,0.906306375,0.7,0.828629051,2.122322677,5.69453873,0.740909873,49.48603575,0.609781884,0.609781884,0.609781884,3.781319579,1.350691757,5.132011337,1.896 -106,1990/4/16,0.9,0,243.4455971,0,0,0.850015474,0.800913796,0.800913796,1.388003552,0.271630212,48.3139629,0.732347678,0.732347678,0.732347678,3.292424075,1.00397789,4.296401965,1.62 -107,1990/4/17,0.9,0.4,242.1940468,0,0,0.871144699,0.780405553,0.780405553,0.712719619,0.095226245,46.9139749,0.673414244,0.673414244,0.673414244,2.78612186,0.768640489,3.554762349,1.62 -108,1990/4/18,1.2,12.2,245.933322,11,4.582244623,1.2,0.842969413,7.260724789,3.262730075,0.220524996,47.71726316,0.60755527,0.60755527,0.60755527,3.066997093,0.828080265,3.895077359,1.992 -109,1990/4/19,1.7,8.8,247.9155994,7.1,2.860017818,1.7,0.877740408,5.11772259,5.687954956,0.602603528,50.02251499,0.644751448,0.644751448,0.644751448,4.027454571,1.247354976,5.274809547,3.072 -110,1990/4/20,1.8,6.3,248.8032888,4.5,1.781371255,1.8,0.89368189,3.612310635,4.011164044,0.504003758,50.52317479,0.760514176,0.760514176,0.760514176,4.271018422,1.264517934,5.535536356,3.936 -111,1990/4/21,1.5,2.5,248.3133667,1,0.394932961,1.5,0.884855041,1.489922079,2.412526726,0.332400049,49.79975065,0.787490274,0.787490274,0.787490274,3.923441133,1.119890322,5.043331455,5.4 -112,1990/4/22,1.6,0,245.9522722,0,0,1.517798104,0.843296468,0.843296468,1.085448958,0.159830798,48.33376259,0.748726271,0.748726271,0.748726271,3.300163291,0.908557069,4.20872036,5.112 -113,1990/4/23,1.9,0,243.3572786,0,0,1.795541045,0.799452483,0.799452483,0.741644104,0.090993746,46.9511948,0.674380647,0.674380647,0.674380647,2.798592539,0.765374393,3.563966933,4.584 -114,1990/4/24,1.9,1.7,242.3852932,0,0,1.888473827,0.783511648,0.783511648,0.713209014,0.080112473,45.82933877,0.609243989,0.609243989,0.609243989,2.444309036,0.689356462,3.133665498,4.056 -115,1990/4/25,2,2.5,241.8239469,0.5,0.213076627,2,0.774422842,1.061346215,0.814932515,0.084637642,44.99598858,0.559796981,0.559796981,0.559796981,2.20807969,0.644434624,2.852514314,3.672 -116,1990/4/26,2,9.9,244.3369773,7.9,3.328813812,2,0.815783502,5.386969689,2.664259373,0.197804927,45.76108472,0.524972163,0.524972163,0.524972163,2.424135396,0.72277709,3.146912486,3.552 -117,1990/4/27,1.7,7.5,245.8824509,5.8,2.38756559,1.7,0.842091946,4.254526356,4.40084581,0.462822647,47.66929878,0.556884422,0.556884422,0.556884422,3.049516168,1.019707068,4.069223236,4.848 -118,1990/4/28,2.1,0.3,243.3816159,0,0,2.000980035,0.799854952,0.799854952,2.464137763,0.362979245,47.71115628,0.64248598,0.64248598,0.64248598,3.06476624,1.005465225,4.070231465,4.704 -119,1990/4/29,2.2,6.3,244.2799453,4.1,1.713154901,2.2,0.814825496,3.201670595,1.66882345,0.173450387,47.15622661,0.644462689,0.644462689,0.644462689,2.868215815,0.817913076,3.686128891,4.32 -120,1990/4/30,2.1,4.6,244.4993703,2.5,1.037941255,2.1,0.818516309,2.280575055,2.517579895,0.271621587,47.35513075,0.618606735,0.618606735,0.618606735,2.937282491,0.890228322,3.827510813,4.584 -121,1990/5/1,1.9,1.1,242.9516815,0,0,1.854919681,0.792769083,0.792769083,1.46468743,0.206263939,46.72425883,0.62778744,0.62778744,0.62778744,2.723346782,0.834051379,3.557398161,4.056 -122,1990/5/2,2,0,240.3202418,0,0,1.880945328,0.750494386,0.750494386,0.696789482,0.095896527,45.63328137,0.598999496,0.598999496,0.598999496,2.386766443,0.694896023,3.081662466,3.432 -123,1990/5/3,2.4,0,237.3683384,0,0,2.246649296,0.7052541,0.7052541,0.657570555,0.074555033,44.71034043,0.551459889,0.551459889,0.551459889,2.131971379,0.626014922,2.7579863,2.616 -124,1990/5/4,2.9,0,234.0119747,0,0,2.699851205,0.656512467,0.656512467,0.615470922,0.069989126,43.90850432,0.513400044,0.513400044,0.513400044,1.930707074,0.583389169,2.514096244,2.52 -125,1990/5/5,2.6,0.4,231.3550388,0,0,2.437051015,0.619884869,0.619884869,0.576389692,0.065422159,43.19972806,0.481890357,0.481890357,0.481890357,1.767056315,0.547312517,2.314368831,2.292 -126,1990/5/6,2,9.1,234.0354835,7.1,3.337288783,2,0.656844155,4.419555372,2.059140886,0.145822991,43.80748692,0.455209721,0.455209721,0.455209721,1.906591746,0.601032713,2.507624458,2.088 -127,1990/5/7,1.8,0,231.7430372,0,0,1.667317744,0.625128518,0.625128518,2.478426969,0.313854055,44.64820437,0.478021216,0.478021216,0.478021216,2.115730738,0.791875271,2.90760601,2.4 -128,1990/5/8,2.4,13.4,236.1614947,11,5.105861179,2.4,0.687403632,6.581542453,2.915986493,0.238008071,45.67592209,0.510907142,0.510907142,0.510907142,2.399175908,0.748915213,3.148091121,1.716 -129,1990/5/9,2.2,4,236.2891253,1.8,0.816904572,2.2,0.689274018,1.672369447,3.98378064,0.480147087,47.29627948,0.553265532,0.553265532,0.553265532,2.916688784,1.03341262,3.950101403,2.52 -130,1990/5/10,2.6,0,233.2270729,0,0,2.416536963,0.645515399,0.645515399,1.099423859,0.20259753,46.40130392,0.625061009,0.625061009,0.625061009,2.619460428,0.827658539,3.447118967,2.856 -131,1990/5/11,1.8,0,230.9478116,0,0,1.664841777,0.614419509,0.614419509,0.568677901,0.075979956,45.27097089,0.584633409,0.584633409,0.584633409,2.283644346,0.660613365,2.944257711,2.4 -132,1990/5/12,2,8.6,233.4174559,6.6,3.11781337,2,0.648169074,4.130355704,1.942119033,0.138983265,45.42297052,0.536287053,0.536287053,0.536287053,2.326406457,0.675270319,3.001676775,2.292 -133,1990/5/13,1.7,5.3,234.4271567,3.6,1.672090923,1.7,0.662390213,2.59029929,3.108845893,0.337763779,46.44206346,0.542615688,0.542615688,0.542615688,2.632368632,0.880379467,3.512748099,2.52 -134,1990/5/14,2,2.5,234.0023588,0.5,0.231579011,2,0.656376835,0.924797824,1.673231992,0.240636133,46.15809588,0.586432809,0.586432809,0.586432809,2.543632383,0.827068942,3.370701326,2.736 -135,1990/5/15,2.3,1.8,232.8977866,0,0,2.263625964,0.640946266,0.640946266,0.720168665,0.105892591,45.19085199,0.573978441,0.573978441,0.573978441,2.261390993,0.679871032,2.941262025,2.616 -136,1990/5/16,2.7,0,229.8047017,0,0,2.493799972,0.599284959,0.599284959,0.5603913,0.06652799,44.26597751,0.532972542,0.532972542,0.532972542,2.018238328,0.599500532,2.61773886,2.52 -137,1990/5/17,3.1,2.4,228.5774371,0,0,3.043892674,0.583371854,0.583371854,0.533069203,0.060070582,43.46744267,0.495761948,0.495761948,0.495761948,1.827365984,0.555832529,2.383198514,2.184 -138,1990/5/18,2.8,13.3,232.9623159,10.5,5.026718315,2.8,0.641839607,6.115121292,2.710621146,0.179946386,44.55233369,0.465159932,0.465159932,0.465159932,2.090890062,0.645106318,2.73599638,2.4 -139,1990/5/19,2.6,5.8,233.803008,3.2,1.494262232,2.6,0.653570057,2.359307825,4.019692352,0.46382971,46.44560946,0.507077785,0.507077785,0.507077785,2.633494365,0.970907495,3.60440186,3.192 -140,1990/5/20,2.8,4.3,233.8462483,1.5,0.69741827,2.8,0.654178039,1.456759769,1.766781507,0.260416904,46.23239744,0.58658954,0.58658954,0.58658954,2.566583064,0.847006443,3.413589507,3.192 -141,1990/5/21,2.7,20,240.8415793,17.3,7.754052979,2.7,0.758721918,10.30466894,4.806880336,0.350531844,48.32123281,0.577218757,0.577218757,0.577218757,3.295263726,0.927750601,4.223014327,2.856 -142,1990/5/22,2,9.8,243.3651291,7.8,3.323132037,2,0.799582289,5.276450252,7.287559606,0.815743819,51.4963787,0.673768966,0.673768966,0.673768966,4.786182685,1.489512785,6.275695469,5.664 -143,1990/5/23,2.2,2.1,242.4857369,0,0,2.194245157,0.785146977,0.785146977,2.974297438,0.488365336,50.8663749,0.841872644,0.841872644,0.841872644,4.446173877,1.33023798,5.776411857,6.84 -144,1990/5/24,2.6,1.6,240.7873916,0,0,2.540481903,0.757863379,0.757863379,0.695852549,0.13088731,48.85742955,0.806372559,0.806372559,0.806372559,3.511170457,0.937259869,4.448430326,6.24 -145,1990/5/25,2.2,3.7,240.6802198,1.5,0.648995871,2.2,0.756167678,1.607171806,1.017637599,0.094750404,47.56393031,0.700301624,0.700301624,0.700301624,3.011438464,0.795052028,3.806490493,5.544 -146,1990/5/26,2.6,0.2,237.7216616,0,0,2.448008094,0.710550197,0.710550197,1.092200639,0.131019499,46.60810413,0.637529158,0.637529158,0.637529158,2.685555976,0.768548657,3.454104633,4.992 -147,1990/5/27,3.2,0,234.0838755,0,0,2.980258729,0.657527349,0.657527349,0.618545907,0.080466151,45.47830231,0.593803857,0.593803857,0.593803857,2.342151586,0.674270008,3.016421595,4.056 -148,1990/5/28,3.2,0,230.5143895,0,0,2.960840639,0.608645288,0.608645288,0.572461364,0.065305157,44.51452958,0.54493266,0.54493266,0.54493266,2.081166754,0.610237817,2.691404571,3.432 -149,1990/5/29,3.4,0.1,226.9193495,0,0,3.13262542,0.562414619,0.562414619,0.529515072,0.06042631,43.67439121,0.50557343,0.50557343,0.50557343,1.875226874,0.565999739,2.441226613,2.856 -150,1990/5/30,3.5,0.7,223.8381467,0,0,3.256122272,0.525080548,0.525080548,0.491422504,0.05596725,42.93057182,0.472957365,0.472957365,0.472957365,1.708199261,0.528924615,2.237123876,2.52 -151,1990/5/31,3.6,2.2,222.0619723,0,0,3.471691666,0.504482756,0.504482756,0.464434322,0.052496274,42.26947658,0.445360134,0.445360134,0.445360134,1.570889695,0.497856408,2.068746102,2.184 -152,1990/6/1,3.8,0,218.1694991,0,0,3.430861516,0.461611636,0.461611636,0.437096149,0.049750205,41.67299728,0.421815008,0.421815008,0.421815008,1.455390453,0.471565213,1.926955666,1.896 -153,1990/6/2,4,1.1,215.1408409,0,0,3.698334058,0.430324144,0.430324144,0.403088817,0.045980048,41.12207983,0.401346578,0.401346578,0.401346578,1.355352846,0.447326627,1.802679473,1.1064 -154,1990/6/3,3.9,1.5,212.5988025,0,0,3.636637779,0.405400662,0.405400662,0.377444486,0.042854368,40.61414953,0.383081108,0.383081108,0.383081108,1.268455894,0.425935475,1.69439137,0.9816 -155,1990/6/4,3.9,0,208.7828157,0,0,3.445809956,0.370176804,0.370176804,0.350943689,0.040060868,40.14012732,0.36677418,0.36677418,0.36677418,1.191740077,0.406835048,1.598575125,0.8688 -156,1990/6/5,4.2,0,204.7719349,0,0,3.675032117,0.335848707,0.335848707,0.319596132,0.036679628,39.6892292,0.352008859,0.352008859,0.352008859,1.122503114,0.388688487,1.511191601,0.924 -157,1990/6/6,3.9,1.1,202.0292677,0,0,3.528783104,0.3138841,0.3138841,0.293585643,0.033507631,39.26118369,0.338362565,0.338362565,0.338362565,1.05999372,0.371870196,1.431863916,1.1712 -158,1990/6/7,3.8,16.5,209.1070837,12.7,7.450886784,3.8,0.373070737,5.622183953,2.379797554,0.148164275,40.68625272,0.325761566,0.325761566,0.325761566,1.280490085,0.473925841,1.754415926,1.236 -159,1990/6/8,3.9,0,205.3500134,0,0,3.416438354,0.340631978,0.340631978,2.973231601,0.383681529,42.42604112,0.36905824,0.36905824,0.36905824,1.602501444,0.752739769,2.355241213,1.044 -160,1990/6/9,4.2,0.4,201.7409467,0,0,3.697422876,0.311643819,0.311643819,0.295115591,0.09571876,41.68990585,0.427308727,0.427308727,0.427308727,1.458559592,0.523027487,1.981587079,0.6216 -161,1990/6/10,3.7,0,198.274896,0,0,3.180347978,0.285702749,0.285702749,0.270230149,0.030936878,41.02388874,0.401916821,0.401916821,0.401916821,1.338164072,0.432853699,1.771017771,0.7128 -162,1990/6/11,3,0,195.4527793,0,0,2.556229346,0.265887375,0.265887375,0.24930344,0.028441291,40.41702876,0.379889135,0.379889135,0.379889135,1.236052556,0.408330426,1.644382982,0.4968 -163,1990/6/12,3.1,0,192.5859468,0,0,2.61992931,0.246903108,0.246903108,0.231797974,0.026405748,39.86095455,0.360581404,0.360581404,0.360581404,1.14845359,0.386987151,1.535440741,0.4584 -164,1990/6/13,3,0,189.8417524,0,0,2.514429139,0.229765339,0.229765339,0.215441683,0.024538049,39.3475501,0.343514374,0.343514374,0.343514374,1.072360512,0.368052422,1.440412935,0.4584 -165,1990/6/14,3.2,0.3,187.2166885,0,0,2.710785931,0.214277897,0.214277897,0.200669733,0.022838718,38.87088342,0.328276597,0.328276597,0.328276597,1.005613002,0.351115315,1.356728317,0.4584 -166,1990/6/15,3.2,2.1,186.0996255,0,0,3.00911603,0.207946995,0.207946995,0.190348771,0.021471494,38.42888333,0.314567189,0.314567189,0.314567189,0.946916052,0.336038683,1.282954735,0.4224 -167,1990/6/16,2.6,4.1,186.8776086,1.5,0.99032315,2.6,0.212340057,0.722016907,0.390260596,0.03215317,38.20327318,0.302224843,0.302224843,0.302224843,0.918095594,0.334378013,1.252473607,0.4224 -168,1990/6/17,2.6,0,184.535956,0,0,2.142314747,0.199337883,0.199337883,0.443305445,0.054665882,38.04439003,0.296060175,0.296060175,0.296060175,0.898248763,0.350726057,1.24897482,0.4968 -169,1990/6/18,3,4.7,185.4631206,1.7,1.131571924,3,0.204407316,0.772835392,0.405992156,0.038686619,37.865782,0.291773048,0.291773048,0.291773048,0.876373238,0.330459667,1.206832905,0.4224 -170,1990/6/19,3.1,0.5,183.1385753,0,0,2.632656865,0.191888454,0.191888454,0.466020509,0.057767852,37.75569349,0.287006834,0.287006834,0.287006834,0.863115848,0.344774687,1.207890534,0.4968 -171,1990/6/20,3.4,1.8,181.6501166,0,0,3.104257844,0.184200804,0.184200804,0.169662224,0.025871929,37.38925112,0.284096945,0.284096945,0.284096945,0.820201545,0.309968874,1.130170419,0.3576 -172,1990/6/21,3.4,0,178.7291312,0,0,2.75115302,0.169832439,0.169832439,0.160103798,0.01819537,37.04263682,0.274562782,0.274562782,0.274562782,0.78128088,0.292758152,1.074039031,0.3264 -173,1990/6/22,3.3,2.3,177.76004,0,0,3.10382178,0.165269384,0.165269384,0.151046335,0.017052553,36.71364973,0.265756938,0.265756938,0.265756938,0.745790361,0.282809491,1.028599852,0.3 -174,1990/6/23,3,8.9,181.6148503,5.9,4.038831981,3,0.184021703,2.045189722,0.891496346,0.057844877,37.0775987,0.257587298,0.257587298,0.257587298,0.785134678,0.315432175,1.100566853,0.3 -175,1990/6/24,2.7,3.9,182.2396389,1.2,0.81200409,2.7,0.187215466,0.575211376,1.259884306,0.150080888,37.74257182,0.266635875,0.266635875,0.266635875,0.861547052,0.416716762,1.278263814,0.3888 -176,1990/6/25,2.6,2.3,181.8103711,0,0,2.544251412,0.185016421,0.185016421,0.363524742,0.066293664,37.55093897,0.283751521,0.283751521,0.283751521,0.838909122,0.350045185,1.188954306,0.3888 -177,1990/6/26,2.7,3.2,181.9629842,0.5,0.338408995,2.7,0.185795838,0.347386843,0.230667102,0.026667715,37.25536829,0.278740957,0.278740957,0.278740957,0.804978739,0.305408672,1.11038741,0.3888 -178,1990/6/27,2.5,2,181.373581,0,0,2.406603104,0.182800154,0.182800154,0.247620179,0.029210992,36.99776727,0.271137131,0.271137131,0.271137131,0.77635833,0.300348123,1.076706453,0.3888 -179,1990/6/28,2.8,0,178.9373461,0,0,2.265408917,0.170825896,0.170825896,0.159789122,0.019958359,36.67995505,0.264631958,0.264631958,0.264631958,0.742233301,0.284590317,1.026823617,0.4224 -180,1990/6/29,3.4,0,176.0540156,0,0,2.725854956,0.157475559,0.157475559,0.148468603,0.016930782,36.3745473,0.256760826,0.256760826,0.256760826,0.710637174,0.273691608,0.984328782,0.3888 -181,1990/6/30,3.6,6.5,177.9008207,2.9,2.012731165,3.6,0.165926088,1.053194924,0.495625472,0.035565992,36.40571923,0.249355856,0.249355856,0.249355856,0.713809402,0.284921849,0.99873125,0.3576 -182,1990/7/1,3.3,0,175.1109777,0,0,2.636547375,0.153295599,0.153295599,0.592326438,0.075002471,36.52236467,0.250104575,0.250104575,0.250104575,0.725785572,0.325107046,1.050892619,0.3 -183,1990/7/2,3.3,0.6,172.8296271,0,0,2.737799935,0.143550654,0.143550654,0.134115821,0.025729283,36.2148324,0.252920535,0.252920535,0.252920535,0.694568628,0.278649818,0.973218446,0.3 -184,1990/7/3,3.8,3.4,172.3728222,0,0,3.715144423,0.141660467,0.141660467,0.128448775,0.014428514,35.9228464,0.245544755,0.245544755,0.245544755,0.665979528,0.259973268,0.925952796,0.3 -185,1990/7/4,2.9,3,172.3024432,0.1,0.070991988,2.9,0.141371032,0.170379044,0.138841087,0.014818714,35.65934138,0.238685248,0.238685248,0.238685248,0.641031355,0.253503962,0.894535316,0.3264 -186,1990/7/5,2.9,9.6,176.8465391,6.7,4.705154494,2.9,0.161058603,2.15590411,0.937819321,0.060281328,36.14239233,0.232613328,0.232613328,0.232613328,0.687381695,0.292894656,0.980276351,0.3264 -187,1990/7/6,2.8,4.7,177.9959446,1.9,1.315776505,2.8,0.166370999,0.750594494,1.385077777,0.161326277,36.99522039,0.243829989,0.243829989,0.243829989,0.776079702,0.405156265,1.181235968,0.3888 -188,1990/7/7,2.6,0.1,175.8391429,0,0,2.100286472,0.156515206,0.156515206,0.440815128,0.078594015,36.93147083,0.264568204,0.264568204,0.264568204,0.769132897,0.343162219,1.112295116,0.5352 -189,1990/7/8,3.2,0,173.1557449,0,0,2.538485576,0.144912406,0.144912406,0.136279432,0.022403552,36.59717167,0.262975989,0.262975989,0.262975989,0.733554581,0.285379541,1.018934122,0.4224 -190,1990/7/9,3.4,0.1,170.4297348,0,0,2.692168317,0.133841859,0.133841859,0.126047204,0.014385092,36.2771551,0.25473834,0.25473834,0.25473834,0.700802116,0.269123432,0.969925548,0.3888 -191,1990/7/10,3.8,0,167.3549173,0,0,2.952638139,0.122179285,0.122179285,0.115849803,0.013258765,35.9695471,0.247026906,0.247026906,0.247026906,0.670484707,0.260285671,0.930770378,0.3576 -192,1990/7/11,3.7,4.9,168.1002897,1.2,0.870300938,3.7,0.124928558,0.45462762,0.241311227,0.0196527,35.79669508,0.239773055,0.239773055,0.239773055,0.6539363,0.259425754,0.913362054,0.3264 -193,1990/7/12,3.9,0,164.9835042,0,0,3.003032305,0.113753246,0.113753246,0.274485857,0.034059632,35.66535361,0.23576441,0.23576441,0.23576441,0.641591736,0.269824042,0.911415779,0.3264 -194,1990/7/13,4.3,0,161.6122118,0,0,3.268710043,0.102582358,0.102582358,0.097964316,0.015150478,35.3805749,0.232750623,0.232750623,0.232750623,0.615493658,0.247901101,0.863394759,0.3264 -195,1990/7/14,4.3,0,158.2955661,0,0,3.224177847,0.092467832,0.092467832,0.088327884,0.010167977,35.10419472,0.226310697,0.226310697,0.226310697,0.591018756,0.236478674,0.82749743,0.3 -196,1990/7/15,3.9,0,155.3259286,0,0,2.885532783,0.08410473,0.08410473,0.079916797,0.009182509,34.83622597,0.22018338,0.22018338,0.22018338,0.568068926,0.229365889,0.797434816,0.2712 -197,1990/7/16,3.9,0,152.4009306,0,0,2.848527191,0.076470804,0.076470804,0.072678101,0.008341547,34.57670579,0.214356585,0.214356585,0.214356585,0.546554871,0.222698132,0.769253003,0.2712 -198,1990/7/17,4.5,0,149.0916693,0,0,3.240747419,0.06851389,0.06851389,0.065679956,0.007562465,34.32487462,0.208819299,0.208819299,0.208819299,0.52633042,0.216381764,0.742712183,0.2472 -199,1990/7/18,3.6,9,153.2083982,5.4,4.195249201,3.6,0.07852032,1.283271119,0.541611387,0.03360907,34.52747898,0.203544486,0.203544486,0.203544486,0.542551513,0.237153556,0.77970507,0.2232 -200,1990/7/19,3,0,150.9616967,0,0,2.173777343,0.072924104,0.072924104,0.676737558,0.087432985,34.84332958,0.207780614,0.207780614,0.207780614,0.568667576,0.2952136,0.863881176,0.2232 -201,1990/7/20,3.1,0,148.6711521,0,0,2.222992411,0.067552226,0.067552226,0.063509271,0.021449612,34.57493779,0.21450961,0.21450961,0.21450961,0.546410665,0.235959222,0.782369887,0.2472 -202,1990/7/21,3.1,0,146.4092282,0,0,2.199360683,0.062563211,0.062563211,0.058825849,0.006709073,34.31684929,0.20878193,0.20878193,0.20878193,0.525696282,0.215491003,0.741187286,0.2472 -203,1990/7/22,3.3,0,144.0362812,0,0,2.315296016,0.057651009,0.057651009,0.054366084,0.006207342,34.06823032,0.20337797,0.20337797,0.20337797,0.506363023,0.209585312,0.715948335,0.2232 -204,1990/7/23,3.8,0,141.3508001,0,0,2.633011465,0.052469538,0.052469538,0.049838715,0.005709305,33.82808401,0.198267483,0.198267483,0.198267483,0.488252511,0.203976788,0.6922293,0.2232 -205,1990/7/24,4,0,138.5698908,0,0,2.73340541,0.047503921,0.047503921,0.045260675,0.005199072,33.5955337,0.193418889,0.193418889,0.193418889,0.471229878,0.198617961,0.669847838,0.2004 -206,1990/7/25,4.1,0,135.7658657,0,0,2.761139826,0.042885336,0.042885336,0.040928731,0.004707581,33.37006925,0.188804956,0.188804956,0.188804956,0.455198129,0.193512537,0.648710666,0.2004 -207,1990/7/26,3.5,13.7,143.959296,10.2,8.250927314,3.5,0.057496982,2.006569669,0.814445743,0.047445738,33.87702323,0.184407194,0.184407194,0.184407194,0.491898965,0.231852932,0.723751897,0.2004 -208,1990/7/27,3.9,0,141.206294,0,0,2.700800327,0.052201684,0.052201684,1.033744588,0.134598632,34.55997625,0.194400031,0.194400031,0.194400031,0.545191599,0.328998662,0.874190261,0.2472 -209,1990/7/28,4.4,0,138.1570833,0,0,3.002410614,0.046800064,0.046800064,0.044847342,0.028151871,34.28973128,0.208465891,0.208465891,0.208465891,0.523558194,0.236617762,0.760175956,0.2232 -210,1990/7/29,4.7,0,134.9605214,0,0,3.154934257,0.041627614,0.041627614,0.040076429,0.004630181,34.02923857,0.202816026,0.202816026,0.202816026,0.503385174,0.207446207,0.710831381,0.18 -211,1990/7/30,4.2,9.3,139.0772747,5.1,4.165133913,4.2,0.04838062,0.983246706,0.409497242,0.024892239,34.12545073,0.197474395,0.197474395,0.197474395,0.510759472,0.222366635,0.733126107,0.2004 -212,1990/7/31,3,10.9,145.3564525,7.9,6.339521892,3,0.060344146,1.620822254,1.136827222,0.101213759,34.88917002,0.199435456,0.199435456,0.199435456,0.572543383,0.300649215,0.873192598,0.2004 -213,1990/8/1,3.2,0,143.0666656,0,0,2.234051896,0.055735012,0.055735012,0.840376203,0.120208998,35.33375607,0.215498979,0.215498979,0.215498979,0.611289133,0.335707977,0.94699711,0.2712 -214,1990/8/2,3.6,0.7,141.0119839,0,0,2.70283843,0.051843241,0.051843241,0.048623876,0.023947078,35.02360706,0.225264267,0.225264267,0.225264267,0.584037154,0.249211345,0.833248499,0.2004 -215,1990/8/3,3.6,0.2,138.6425349,0,0,2.5218203,0.047628655,0.047628655,0.044993739,0.005137716,34.72800659,0.218419312,0.218419312,0.218419312,0.559013525,0.223557028,0.782570552,0.2004 -216,1990/8/4,3.5,0,136.2384013,0,0,2.360496257,0.043637347,0.043637347,0.041288828,0.004724966,34.44539971,0.212034962,0.212034962,0.212034962,0.535930665,0.216759927,0.752690592,0.18 -217,1990/8/5,3.5,0,133.8679408,0,0,2.330491848,0.039968696,0.039968696,0.037824133,0.004330284,34.17471114,0.206056958,0.206056958,0.206056958,0.514569661,0.210387241,0.724956902,0.1608 -218,1990/8/6,3.7,12.9,141.3143961,9.2,7.498857315,3.7,0.052401957,1.753544642,0.713003293,0.041653009,34.5442469,0.200444879,0.200444879,0.200444879,0.543912412,0.242097888,0.786010301,0.1608 -219,1990/8/7,2.5,23.1,157.3303524,20.6,16.10563598,2.5,0.089679703,4.58404372,2.696516375,0.217273448,36.70411493,0.208134002,0.208134002,0.208134002,0.744782347,0.42540745,1.170189797,0.2712 -220,1990/8/8,2.7,1.6,156.4290832,0,0,2.414131726,0.087137484,0.087137484,2.348917854,0.326314153,38.37094373,0.257353234,0.257353234,0.257353234,0.939442289,0.583667386,1.523109675,0.7128 -221,1990/8/9,2.7,1.5,155.4600605,0,0,2.384553849,0.084468897,0.084468897,0.077369379,0.061692724,37.87183855,0.30063301,0.30063301,0.30063301,0.87710757,0.362325735,1.239433305,0.3576 -222,1990/8/10,2.7,1,154.1323114,0,0,2.246829974,0.080919131,0.080919131,0.074619498,0.008400449,37.41093574,0.287167538,0.287167538,0.287167538,0.822689849,0.295567987,1.118257836,0.3 -223,1990/8/11,2.7,0,152.0911375,0,0,1.965477861,0.075695957,0.075695957,0.070763547,0.008019133,36.98216683,0.275120519,0.275120519,0.275120519,0.774652968,0.283139652,1.05779262,0.2712 -224,1990/8/12,3,0,149.8580375,0,0,2.162805367,0.070294652,0.070294652,0.065992311,0.007512643,36.58057574,0.264241618,0.264241618,0.264241618,0.731825025,0.271754261,1.003579285,0.2232 -225,1990/8/13,3.1,0,147.5812826,0,0,2.21164489,0.065110079,0.065110079,0.061216768,0.00697937,36.2027602,0.254334257,0.254334257,0.254334257,0.693366565,0.261313627,0.954680192,0.2004 -226,1990/8/14,3.2,0,145.2629277,0,0,2.258204713,0.060150103,0.060150103,0.05663939,0.006463286,35.84603341,0.245258391,0.245258391,0.245258391,0.658624567,0.251721678,0.910346245,0.2004 -227,1990/8/15,3.3,1.3,143.8072142,0,0,2.698519875,0.057193677,0.057193677,0.052967011,0.006008617,35.50877389,0.236903704,0.236903704,0.236903704,0.627130238,0.242912322,0.87004256,0.18 -228,1990/8/16,3.1,1.4,142.571569,0,0,2.580868642,0.054776545,0.054776545,0.050519303,0.005701182,35.18996163,0.229193792,0.229193792,0.229193792,0.598525355,0.234894974,0.833420329,0.18 -229,1990/8/17,2.8,0,140.5911839,0,0,1.929311379,0.051073748,0.051073748,0.047835919,0.005424888,34.88747025,0.222071977,0.222071977,0.222071977,0.572399276,0.227496865,0.799896141,0.18 -230,1990/8/18,2.9,0,138.5658412,0,0,1.977845657,0.047496975,0.047496975,0.044553194,0.005072538,34.59910138,0.215462235,0.215462235,0.215462235,0.5483843,0.220534772,0.768919073,0.1608 -231,1990/8/19,3.5,0,136.1627799,0,0,2.359545077,0.043516296,0.043516296,0.041174516,0.004704508,34.3233584,0.209293071,0.209293071,0.209293071,0.526210564,0.213997579,0.740208143,0.1428 -232,1990/8/20,3.6,0,133.7273535,0,0,2.395667269,0.039759137,0.039759137,0.037680217,0.00431611,34.05890233,0.203513019,0.203513019,0.203513019,0.505649306,0.207829129,0.713478435,0.1428 -233,1990/8/21,3.5,0,131.3922089,0,0,2.298739459,0.036405064,0.036405064,0.034458033,0.003946606,33.80490465,0.198077547,0.198077547,0.198077547,0.486533258,0.202024152,0.68855741,0.1428 -234,1990/8/22,3.6,2.3,130.510865,0,0,3.146144209,0.03519971,0.03519971,0.032288323,0.003653609,33.56137686,0.192955422,0.192955422,0.192955422,0.468771539,0.196609031,0.665380569,0.1428 -235,1990/8/23,3.4,0.7,128.7339445,0,0,2.444053846,0.032866654,0.032866654,0.030757951,0.003482978,33.32801067,0.188133951,0.188133951,0.188133951,0.452258093,0.191616929,0.643875022,0.1428 -236,1990/8/24,3.1,0,126.7230917,0,0,1.980475317,0.030377497,0.030377497,0.028596526,0.003259546,33.10338183,0.183595002,0.183595002,0.183595002,0.436820369,0.186854548,0.623674917,0.1428 -237,1990/8/25,3.1,0,124.7379353,0,0,1.957085893,0.028070491,0.028070491,0.026428252,0.00301647,32.88676231,0.179300398,0.179300398,0.179300398,0.422348169,0.182316868,0.604665037,0.126 -238,1990/8/26,2.7,0,123.0262068,0,0,1.685532723,0.026195837,0.026195837,0.024522768,0.002793111,32.67775059,0.175227353,0.175227353,0.175227353,0.40876184,0.178020464,0.586782304,0.126 -239,1990/8/27,2.3,0,121.5796588,0,0,1.421857009,0.024690963,0.024690963,0.022981679,0.002608663,32.47609518,0.171360421,0.171360421,0.171360421,0.395997509,0.173969084,0.569966593,0.126 -240,1990/8/28,2.3,0,120.1473656,0,0,1.409023256,0.023269898,0.023269898,0.021660406,0.002455653,32.28145277,0.167687736,0.167687736,0.167687736,0.383990557,0.17014339,0.554133947,0.126 -241,1990/8/29,2.5,0,118.6085074,0,0,1.517041356,0.021816841,0.021816841,0.020368807,0.002311856,32.09334473,0.164196438,0.164196438,0.164196438,0.372673287,0.166508294,0.539181582,0.126 -242,1990/8/30,2.3,1.9,118.3456172,0,0,2.141314159,0.021576042,0.021576042,0.019540017,0.002193537,31.91174708,0.160871983,0.160871983,0.160871983,0.362009649,0.16306552,0.525075169,0.1428 -243,1990/8/31,2,0,117.1244247,0,0,1.200707292,0.020485199,0.020485199,0.018987447,0.002136501,31.73648559,0.15770847,0.15770847,0.15770847,0.351957403,0.15984497,0.511802374,0.11064 -244,1990/9/1,2.1,0,115.8546516,0,0,1.250374873,0.019398231,0.019398231,0.018007219,0.002037527,31.5667486,0.154697714,0.154697714,0.154697714,0.342441921,0.156735241,0.499177163,0.2232 -245,1990/9/2,2.2,0,114.537764,0,0,1.298567442,0.018320196,0.018320196,0.017032477,0.001928981,31.40218309,0.151821215,0.151821215,0.151821215,0.333419208,0.153750196,0.487169404,0.11064 -246,1990/9/3,2.3,0,113.1752841,0,0,1.345224027,0.017255854,0.017255854,0.016067656,0.001821372,31.24246964,0.149069031,0.149069031,0.149069031,0.324850134,0.150890403,0.475740537,0.126 -247,1990/9/4,2.7,0.2,111.7111957,0,0,1.647920493,0.016167899,0.016167899,0.015100419,0.001714258,31.08730332,0.146432248,0.146432248,0.146432248,0.316698984,0.148146507,0.464845491,0.1428 -248,1990/9/5,2.7,4.7,113.4463175,2,1.752585302,2.7,0.017463533,0.264878231,0.112816214,0.007088796,31.03027637,0.143902606,0.143902606,0.143902606,0.313745771,0.150991402,0.464737173,0.11064 -249,1990/9/6,2.4,8,118.2907786,5.6,4.865987159,2.4,0.021526081,0.755538922,0.432249757,0.034324449,31.27872751,0.142980804,0.142980804,0.142980804,0.326779423,0.177305254,0.504084677,0.1428 -250,1990/9/7,2.4,17.6,131.143265,15.2,12.88854768,2.4,0.036061303,2.347513619,1.308971995,0.104710675,32.34674318,0.147027899,0.147027899,0.147027899,0.387984221,0.251738574,0.639722796,0.2232 -251,1990/9/8,2.7,2.4,130.9121712,0,0,2.595349222,0.035744522,0.035744522,1.199385454,0.165232135,33.26369757,0.165361706,0.165361706,0.165361706,0.447792776,0.330593841,0.778386617,0.3264 -252,1990/9/9,2.8,1.3,129.9044773,0,0,2.27330476,0.03438911,0.03438911,0.031634547,0.03081024,33.04482189,0.182357998,0.182357998,0.182357998,0.432868224,0.213168237,0.646036461,0.2232 -253,1990/9/10,2.7,0,128.1343812,0,0,1.737988099,0.032108008,0.032108008,0.030048938,0.003404828,32.83416868,0.178192712,0.178192712,0.178192712,0.418894853,0.181597539,0.600492393,0.2232 -254,1990/9/11,2.6,1.9,127.6552201,0,0,2.347649338,0.031511845,0.031511845,0.028661663,0.00322462,32.63128768,0.174248509,0.174248509,0.174248509,0.405791176,0.177473129,0.583264305,0.2232 -255,1990/9/12,2,0,126.3529972,0,0,1.272286558,0.029936285,0.029936285,0.027738158,0.003123633,32.43603372,0.170509164,0.170509164,0.170509164,0.393501277,0.173632797,0.567134074,0.1608 -256,1990/9/13,1.9,0,125.1249094,0,0,1.199578994,0.028508816,0.028508816,0.026378665,0.002980879,32.24745294,0.166964863,0.166964863,0.166964863,0.381924314,0.169945741,0.551870056,0.1608 -257,1990/9/14,2.4,0,123.5954545,0,0,1.502647158,0.026807784,0.026807784,0.024985859,0.002830381,32.06503656,0.163591956,0.163591956,0.163591956,0.370994197,0.166422336,0.537416533,0.1428 -258,1990/9/15,2,0,122.3285101,0,0,1.241483215,0.025461111,0.025461111,0.023594937,0.002671282,31.88835301,0.160375887,0.160375887,0.160375887,0.36065437,0.163047169,0.523701539,0.1428 -259,1990/9/16,2.1,0,121.0113144,0,0,1.293076769,0.024118996,0.024118996,0.022384732,0.002532535,31.71717776,0.157304191,0.157304191,0.157304191,0.350864172,0.159836727,0.510700899,0.126 -260,1990/9/17,2.3,0,119.584629,0,0,1.403955551,0.022729826,0.022729826,0.021158237,0.002397237,31.55112762,0.154368562,0.154368562,0.154368562,0.34157694,0.1567658,0.49834274,0.11064 -261,1990/9/18,2.1,0,118.2924028,0,0,1.270698616,0.02152756,0.02152756,0.019981829,0.002262978,31.38991347,0.151558424,0.151558424,0.151558424,0.332754398,0.153821402,0.4865758,0.11064 -262,1990/9/19,1.7,0,117.250957,0,0,1.020849721,0.020596131,0.020596131,0.019006797,0.002146491,31.23341571,0.148865273,0.148865273,0.148865273,0.324369835,0.151011764,0.475381599,0.11064 -263,1990/9/20,1.5,0,116.3362114,0,0,0.894940674,0.019804887,0.019804887,0.018223898,0.002053231,31.08152469,0.146283778,0.146283778,0.146283778,0.316398696,0.148337009,0.464735706,0.11064 -264,1990/9/21,1.4,0,115.4867539,0,0,0.830365406,0.019092083,0.019092083,0.01754277,0.001974175,30.93406206,0.143809006,0.143809006,0.143809006,0.308814408,0.145783181,0.45459759,0.11064 -265,1990/9/22,1.7,0,114.4665423,0,0,1.001948291,0.018263289,0.018263289,0.016855419,0.001899424,30.7907648,0.141435137,0.141435137,0.141435137,0.301587816,0.143334561,0.444922377,0.11064 -266,1990/9/23,1.8,0,113.3957884,0,0,1.053329312,0.017424664,0.017424664,0.01610562,0.001817697,30.65133576,0.139155267,0.139155267,0.139155267,0.29468993,0.140972964,0.435662894,0.11064 -267,1990/9/24,2,0,112.2179625,0,0,1.161287765,0.016538071,0.016538071,0.015331906,0.001732897,30.51553365,0.136962256,0.136962256,0.136962256,0.288096264,0.138695153,0.426791418,0.11064 -268,1990/9/25,2.2,0,110.9359178,0,0,1.266430229,0.01561445,0.01561445,0.014519342,0.001643991,30.38311922,0.134850132,0.134850132,0.134850132,0.281783905,0.136494123,0.418278027,0.11064 -269,1990/9/26,2,0,109.7797542,0,0,1.141346332,0.014817358,0.014817358,0.013738074,0.001554843,30.25393539,0.132813198,0.132813198,0.132813198,0.275735107,0.134368041,0.410103148,0.11064 -270,1990/9/27,1.5,2.1,110.2936796,0.6,0.529092992,1.5,0.015167549,0.086074557,0.041489242,0.003055228,30.15509277,0.130847234,0.130847234,0.130847234,0.27117909,0.133902461,0.405081551,0.11064 -271,1990/9/28,1.5,0,109.4261488,0,0,0.85295062,0.01458019,0.01458019,0.049219775,0.006197738,30.06652069,0.129357116,0.129357116,0.129357116,0.267148971,0.135554854,0.402703825,0.11064 -272,1990/9/29,1.6,1.2,109.1851851,0,0,1.426543317,0.014420321,0.014420321,0.013059007,0.002297731,29.94587354,0.128032166,0.128032166,0.128032166,0.261738325,0.130329897,0.392068222,0.126 -273,1990/9/30,1.3,0.9,108.9447761,0,0,1.126146858,0.01426222,0.01426222,0.012915823,0.001440448,29.8284728,0.126243037,0.126243037,0.126243037,0.256559602,0.127683485,0.384243087,0.126 -274,1990/10/1,1.1,0.8,108.7612855,0,0,0.969348054,0.014142487,0.014142487,0.012788692,0.001425459,29.71418195,0.124519265,0.124519265,0.124519265,0.251598803,0.125944723,0.377543527,0.126 -275,1990/10/2,1.1,0,108.1284621,0,0,0.619087672,0.013735707,0.013735707,0.01256752,0.001406732,29.60276825,0.122857368,0.122857368,0.122857368,0.246838593,0.1242641,0.371102694,0.1428 -276,1990/10/3,1.1,4.3,110.9380955,3.2,2.825249318,1.1,0.015615983,0.390366665,0.161168502,0.009645391,29.63690034,0.121252617,0.121252617,0.121252617,0.248289021,0.130898008,0.379187029,0.1428 -277,1990/10/4,1.1,0,110.2940211,0,0,0.628906624,0.015167783,0.015167783,0.203089434,0.026359015,29.71030069,0.121742639,0.121742639,0.121742639,0.251431724,0.148101654,0.399533378,0.1428 -278,1990/10/5,1.1,0,109.653277,0,0,0.626011919,0.014732176,0.014732176,0.013478897,0.005932399,29.59986525,0.122801211,0.122801211,0.122801211,0.246715552,0.12873361,0.375449162,0.1608 -279,1990/10/6,1.2,0,108.959374,0,0,0.679631209,0.014271781,0.014271781,0.013077057,0.00146825,29.49197521,0.121211005,0.121211005,0.121211005,0.242178099,0.122679255,0.364857354,0.1608 -280,1990/10/7,1.5,0,108.1009187,0,0,0.844737055,0.013718217,0.013718217,0.01262589,0.001420458,29.38646592,0.119671709,0.119671709,0.119671709,0.237806895,0.121092167,0.358899061,0.1428 -281,1990/10/8,1.7,0,107.136847,0,0,0.950954504,0.013117171,0.013117171,0.012108923,0.001365158,29.28316499,0.118179934,0.118179934,0.118179934,0.233589785,0.119545092,0.353134877,0.1428 -282,1990/10/9,1.7,0,106.1801392,0,0,0.944166135,0.012541736,0.012541736,0.0115781,0.001306176,29.18195786,0.116732298,0.116732298,0.116732298,0.229517529,0.118038473,0.347556003,0.126 -283,1990/10/10,1.9,0,105.1209672,0,0,1.047243578,0.011928419,0.011928419,0.011045242,0.001247498,29.08274742,0.11532633,0.11532633,0.11532633,0.225582011,0.116573829,0.342155839,0.126 -284,1990/10/11,1.7,0,104.1796904,0,0,0.929873008,0.011403735,0.011403735,0.010528275,0.001188559,28.98545921,0.113959883,0.113959883,0.113959883,0.221776362,0.115148442,0.336924804,0.09672 -285,1990/10/12,1.5,0,103.3538406,0,0,0.814891029,0.010958754,0.010958754,0.01008755,0.001136795,28.89008152,0.112631179,0.112631179,0.112631179,0.218096425,0.113767974,0.331864399,0.072 -286,1990/10/13,1.5,0,102.533643,0,0,0.809667003,0.01053068,0.01053068,0.009693747,0.001091728,28.79657737,0.111339347,0.111339347,0.111339347,0.214537242,0.112431074,0.326968316,0.11064 -287,1990/10/14,1.5,0,101.7190649,0,0,0.804459155,0.010118887,0.010118887,0.009314913,0.001049078,28.70488244,0.110083198,0.110083198,0.110083198,0.211093037,0.111132276,0.322225313,0.11064 -288,1990/10/15,1.4,2.9,103.0547892,1.5,1.346525326,1.4,0.010801092,0.164275766,0.070014166,0.004400478,28.67382123,0.108861217,0.108861217,0.108861217,0.209936598,0.113261696,0.323198293,0.11064 -289,1990/10/16,1.2,0.7,102.774306,0,0,0.969828304,0.010654873,0.010654873,0.087152785,0.011237451,28.65999982,0.108449484,0.108449484,0.108449484,0.209423675,0.119686935,0.32911061,0.1428 -290,1990/10/17,0.9,21.5,120.8284771,20.6,18.07810835,0.9,0.023937266,2.545828919,1.011233117,0.058524216,29.53549929,0.108266631,0.108266631,0.108266631,0.244000286,0.166790848,0.410791134,0.1608 -291,1990/10/18,0.8,1.9,121.7456684,1.1,0.94205136,0.8,0.024860063,0.182808703,1.357619973,0.172814401,30.71555927,0.120290988,0.120290988,0.120290988,0.297850977,0.293105389,0.590956365,0.2712 -292,1990/10/19,0.7,0,121.2906522,0,0,0.430617367,0.024398774,0.024398774,0.101940286,0.042673793,30.66033753,0.137969306,0.137969306,0.137969306,0.295131329,0.180643099,0.475774428,0.2232 -293,1990/10/20,0.6,0.8,121.4373514,0.2,0.171245935,0.6,0.024546741,0.053300805,0.033378048,0.004942599,30.54147242,0.13710309,0.13710309,0.13710309,0.289346254,0.142045689,0.431391943,0.18 -294,1990/10/21,0.8,0.8,121.4128295,0,0,0.8,0.024521957,0.024521957,0.036600241,0.004357511,30.42934964,0.135251746,0.135251746,0.135251746,0.283974766,0.139609257,0.423584023,0.18 -295,1990/10/22,0.8,0.6,121.2655611,0,0,0.72289483,0.024373538,0.024373538,0.02201112,0.002788363,30.30669032,0.133521846,0.133521846,0.133521846,0.278192289,0.136310209,0.414502499,0.1608 -296,1990/10/23,1,0,120.6288712,0,0,0.612949767,0.023740121,0.023740121,0.021685921,0.002425201,30.18736402,0.131647547,0.131647547,0.131647547,0.272659766,0.134072749,0.406732514,0.1608 -297,1990/10/24,0.9,0,120.0561542,0,0,0.549535353,0.02318167,0.02318167,0.021145465,0.002369225,30.07100016,0.129842286,0.129842286,0.129842286,0.267351608,0.132211512,0.39956312,0.1428 -298,1990/10/25,0.9,0.1,119.5466752,0,0,0.58678526,0.022693765,0.022693765,0.020670732,0.002314045,29.95751344,0.128098941,0.128098941,0.128098941,0.262256399,0.130412985,0.392669385,0.1428 -299,1990/10/26,1,2.4,120.7256114,1.4,1.202771763,1,0.023835506,0.221063742,0.09880009,0.006629338,29.9220479,0.126414867,0.126414867,0.126414867,0.26068049,0.133044205,0.393724695,0.126 -300,1990/10/27,0.9,0,120.1524624,0,0,0.549874131,0.023274836,0.023274836,0.120811242,0.015425306,29.90866323,0.12589184,0.12589184,0.12589184,0.260087758,0.141317146,0.401404904,0.1428 -301,1990/10/28,0.6,0,119.7641043,0,0,0.365457179,0.022900972,0.022900972,0.020799639,0.004652046,29.79984801,0.125694852,0.125694852,0.125694852,0.255309706,0.130346898,0.385656604,0.1428 -302,1990/10/29,0.7,0,119.3164066,0,0,0.425221774,0.022475962,0.022475962,0.020442953,0.002285178,29.69367543,0.124101535,0.124101535,0.124101535,0.250717067,0.126386714,0.377103781,0.1428 -303,1990/10/30,0.7,0,118.8703524,0,0,0.423995341,0.022058815,0.022058815,0.020063551,0.002243453,29.59000197,0.122560869,0.122560869,0.122560869,0.246297878,0.124804322,0.371102201,0.1428 -304,1990/10/31,0.8,0,118.3656865,0,0,0.483071537,0.02159435,0.02159435,0.019669423,0.002200607,29.48869968,0.121069699,0.121069699,0.121069699,0.242041416,0.123270306,0.365311722,0.1428 -305,1990/11/1,0.7,0,117.9231111,0,0,0.421381872,0.021193502,0.021193502,0.01927654,0.002156115,29.38966302,0.119625196,0.119625196,0.119625196,0.237938396,0.121781311,0.359719707,0.1428 -306,1990/11/2,0.6,0,117.5420488,0,0,0.360209183,0.020853159,0.020853159,0.018939682,0.002116608,29.29284529,0.118224941,0.118224941,0.118224941,0.233982358,0.120341549,0.354323907,0.1428 -307,1990/11/3,0.6,0,117.1622242,0,0,0.359306341,0.020518288,0.020518288,0.018635535,0.00208198,29.19818183,0.116867414,0.116867414,0.116867414,0.230166403,0.118949394,0.349115798,0.1428 -308,1990/11/4,0.8,0,116.6644546,0,0,0.477683569,0.020085963,0.020085963,0.018295648,0.002046289,29.10554685,0.115550895,0.115550895,0.115550895,0.226481519,0.117597184,0.344078704,0.1428 -309,1990/11/5,0.7,0,116.2280671,0,0,0.416674601,0.019712975,0.019712975,0.017929999,0.002005509,29.01483002,0.114272875,0.114272875,0.114272875,0.222919708,0.116278384,0.339198092,0.1428 -310,1990/11/6,0.6,0,115.8524905,0,0,0.35618016,0.019396421,0.019396421,0.017616607,0.001968749,28.92600134,0.113031135,0.113031135,0.113031135,0.219476422,0.114999884,0.334476306,0.1428 -311,1990/11/7,0.6,0,115.4781226,0,0,0.355282898,0.019084947,0.019084947,0.017333715,0.001936539,28.83901305,0.111824609,0.111824609,0.111824609,0.216146618,0.113761149,0.329907766,0.1428 -312,1990/11/8,0.7,0,115.0460235,0,0,0.413368743,0.018730431,0.018730431,0.017036383,0.001904387,28.7537775,0.110652023,0.110652023,0.110652023,0.212923958,0.112556411,0.325480369,0.1428 -313,1990/11/9,0.6,0,114.6742432,0,0,0.353350667,0.01842964,0.01842964,0.016738545,0.001870622,28.67022463,0.109511609,0.109511609,0.109511609,0.209803027,0.111382231,0.321185258,0.1428 -314,1990/11/10,0.6,0,114.3036521,0,0,0.352457355,0.018133671,0.018133671,0.016469739,0.001840016,28.58831644,0.108401881,0.108401881,0.108401881,0.206779803,0.110241896,0.317021699,0.1608 -315,1990/11/11,0.6,0,113.9342444,0,0,0.351565296,0.017842445,0.017842445,0.01620524,0.001810466,28.50799384,0.107321817,0.107321817,0.107321817,0.203849656,0.109132282,0.312981939,0.1608 -316,1990/11/12,0.8,0,113.4494008,0,0,0.467377711,0.017465907,0.017465907,0.01590943,0.001779415,28.4291664,0.106270147,0.106270147,0.106270147,0.201007015,0.108049561,0.309056577,0.1608 -317,1990/11/13,0.8,1.1,113.6939771,0.3,0.262231412,0.8,0.017655046,0.055423634,0.030716361,0.002584201,28.36636261,0.10524523,0.10524523,0.10524523,0.198765385,0.107829432,0.306594817,0.1608 -318,1990/11/14,0.7,0,113.2682893,0,0,0.408360952,0.017326895,0.017326895,0.034829301,0.004258462,28.30889359,0.104433723,0.104433723,0.104433723,0.196732039,0.108692184,0.305424223,0.1608 -319,1990/11/15,0.7,0,112.8441248,0,0,0.40715972,0.017004792,0.017004792,0.015466943,0.002174942,28.23394974,0.103695072,0.103695072,0.103695072,0.194105871,0.105870014,0.299975884,0.2004 -320,1990/11/16,0.6,1.3,113.4392059,0.7,0.612539216,0.6,0.017458058,0.104918842,0.050039031,0.003633986,28.19400826,0.102737434,0.102737434,0.102737434,0.192717947,0.106371419,0.299089366,0.18 -321,1990/11/17,0.3,0,113.2470503,0,0,0.174844936,0.017310651,0.017310651,0.059813081,0.007532015,28.16435812,0.102229647,0.102229647,0.102229647,0.191692868,0.109761662,0.30145453,0.1608 -322,1990/11/18,0.4,0,112.9971605,0,0,0.232769435,0.017120447,0.017120447,0.015504436,0.002760162,28.09248981,0.101853858,0.101853858,0.101853858,0.189226599,0.10461402,0.293840619,0.1608 -323,1990/11/19,0.5,0,112.6898732,0,0,0.290398413,0.016888852,0.016888852,0.015316899,0.001709205,28.02192361,0.100947088,0.100947088,0.100947088,0.18683019,0.102656293,0.289486483,0.1608 -324,1990/11/20,0.6,1.3,113.2853106,0.7,0.612777329,0.6,0.017339922,0.104562593,0.049839739,0.003616049,27.98619927,0.100062371,0.100062371,0.100062371,0.185626448,0.10367842,0.289304868,0.1608 -325,1990/11/21,0.5,0.2,113.0934584,0,0,0.374658667,0.017193545,0.017193545,0.059586942,0.007504473,27.96063392,0.099616599,0.099616599,0.099616599,0.184768894,0.107121072,0.291889966,0.1608 -326,1990/11/22,0.3,0,112.9019837,0,0,0.174426264,0.017048445,0.017048445,0.015416861,0.002746621,27.89283885,0.099298464,0.099298464,0.099298464,0.182510391,0.102045085,0.284555475,0.18 -327,1990/11/23,0.2,0.5,113.1473436,0.3,0.262594476,0.2,0.017234558,0.054640082,0.030196003,0.00253169,27.84070429,0.098458337,0.098458337,0.098458337,0.180788909,0.100990027,0.281778936,0.18 -328,1990/11/24,0.3,0,112.9557629,0,0,0.17449156,0.0170891,0.0170891,0.034339732,0.004196404,27.79361439,0.09781574,0.09781574,0.09781574,0.179245372,0.102012143,0.281257515,0.18 -329,1990/11/25,0.4,4.1,116.1621027,3.7,3.225996845,0.4,0.01965708,0.493660235,0.20367278,0.012612498,27.91139863,0.097237902,0.097237902,0.097237902,0.183126441,0.1098504,0.292976841,0.126 -330,1990/11/26,0.2,1.1,116.9224801,0.9,0.780686544,0.2,0.020309145,0.139622601,0.304414424,0.035974145,28.12418965,0.098687826,0.098687826,0.098687826,0.190311224,0.13466197,0.324973195,0.1608 -331,1990/11/27,0.1,3.4,119.7485035,3.3,2.84890944,0.1,0.022886054,0.473976614,0.257763142,0.025476912,28.28732581,0.101346334,0.101346334,0.101346334,0.195973319,0.126823246,0.322796565,0.18 -332,1990/11/28,0.1,1.6,121.0122068,1.5,1.287823198,0.1,0.024119886,0.236296688,0.332671934,0.038237167,28.51916155,0.103418827,0.103418827,0.103418827,0.204255015,0.141655994,0.345911009,0.18 -333,1990/11/29,0.1,0,120.9268681,0,0,0.061303816,0.024034924,0.024034924,0.128802687,0.021773796,28.5490375,0.106415924,0.106415924,0.106415924,0.205342663,0.12818972,0.333532382,0.1608 -334,1990/11/30,0,0,120.902857,0,0,0,0.024011063,0.024011063,0.021622004,0.004906433,28.47481684,0.10680661,0.10680661,0.10680661,0.202649279,0.111713044,0.314362323,0.1608 -335,1990/12/1,0,0,120.8788698,0,0,0,0.023987244,0.023987244,0.021600545,0.002400865,28.40221283,0.105837914,0.105837914,0.105837914,0.200042465,0.108238779,0.308281244,0.1608 -336,1990/12/2,0.1,0,120.7937149,0,0,0.061251987,0.023902838,0.023902838,0.02155517,0.002397153,28.33114702,0.104896405,0.104896405,0.104896405,0.197517382,0.107293558,0.304810941,0.1608 -337,1990/12/3,0.4,1.6,121.7964722,1.2,1.027669256,0.4,0.024911998,0.197242742,0.089998908,0.006196078,28.32772996,0.103980652,0.103980652,0.103980652,0.197396626,0.11017673,0.307573356,0.1428 -338,1990/12/4,0.4,9,129.0420548,8.6,7.278844623,0.4,0.033262059,1.354417436,0.634716571,0.04307977,28.84982506,0.103936764,0.103936764,0.103936764,0.216558233,0.147016534,0.363574766,0.1608 -339,1990/12/5,0.3,0.6,129.259665,0.3,0.251153842,0.3,0.03354361,0.082389768,0.716399302,0.093872875,29.43712412,0.110797287,0.110797287,0.110797287,0.239897531,0.204670162,0.444567693,0.3 -340,1990/12/6,0.2,0,129.0974709,0,0,0.128860534,0.033333578,0.033333578,0.054768757,0.022164787,29.37351267,0.118894512,0.118894512,0.118894512,0.237274716,0.141059299,0.378334014,0.2472 -341,1990/12/7,0.5,0.8,129.3149673,0.3,0.251111937,0.5,0.033615465,0.082503529,0.049427198,0.004991215,29.30640444,0.117997711,0.117997711,0.117997711,0.234533139,0.122988926,0.357522065,0.2004 -342,1990/12/8,0.7,6.2,133.8453046,5.5,4.570272186,0.7,0.039934895,0.969662709,0.424768529,0.027143514,29.60144723,0.11705686,0.11705686,0.11705686,0.246782597,0.144200373,0.39098297,0.18 -343,1990/12/9,0.5,0,133.4755098,0,0,0.330408922,0.03938594,0.03938594,0.505145361,0.066083426,29.96522613,0.12123368,0.12123368,0.12123368,0.262600142,0.187317106,0.449917247,0.2004 -344,1990/12/10,0.6,0,133.0411497,0,0,0.395611166,0.038748873,0.038748873,0.035195641,0.01489651,29.86862914,0.126528815,0.126528815,0.126528815,0.258321447,0.141425325,0.399746772,0.18 -345,1990/12/11,0.7,4.8,136.3709542,4.1,3.37365461,0.7,0.043850182,0.770195572,0.323867556,0.019937605,30.0511491,0.125106968,0.125106968,0.125106968,0.266454563,0.145044573,0.411499136,0.18 -346,1990/12/12,0.6,7.1,141.5920232,6.5,5.273988175,0.6,0.052919116,1.278930941,0.894176631,0.079559429,30.77245446,0.127803214,0.127803214,0.127803214,0.300674486,0.207362643,0.508037129,0.2004 -347,1990/12/13,0.5,11.2,149.9994387,10.7,8.478042742,0.5,0.070627231,2.292584489,1.55153092,0.144142605,32.09035554,0.138865852,0.138865852,0.138865852,0.37249569,0.283008458,0.655504147,0.2232 -348,1990/12/14,0.4,6.2,154.4056757,5.8,4.487876998,0.4,0.081640022,1.393763024,1.708202878,0.197574173,33.49532986,0.160819547,0.160819547,0.160819547,0.46404811,0.35839372,0.82244183,0.3264 -349,1990/12/15,0.5,3.6,156.6854311,3.1,2.367609972,0.5,0.087854615,0.820244643,1.027790376,0.137388556,34.19390119,0.186841304,0.186841304,0.186841304,0.516060343,0.32422986,0.840290203,0.3576 -350,1990/12/16,0.3,7.1,161.6994232,6.8,5.116851929,0.3,0.102859794,1.786007865,1.119791862,0.109987125,34.93784891,0.2008391,0.2008391,0.2008391,0.576683244,0.310826225,0.887509469,0.3576 -351,1990/12/17,0.3,2.7,163.3719553,2.4,1.780829956,0.3,0.108297859,0.727467903,1.189179373,0.143975519,35.69885926,0.216553173,0.216553173,0.216553173,0.644722201,0.360528692,1.005250892,0.4968 -352,1990/12/18,0.1,0.1,163.2640152,0,0,0.1,0.107940096,0.107940096,0.409946523,0.071632881,35.69770816,0.23351682,0.23351682,0.23351682,0.644614441,0.305149701,0.949764142,0.4584 -353,1990/12/19,0.1,0.4,163.3775551,0.3,0.221856325,0.1,0.108316446,0.186460121,0.128169236,0.019824375,35.43862735,0.233490467,0.233490467,0.233490467,0.620740514,0.253314842,0.874055356,0.3264 -354,1990/12/20,0.2,1,163.8584882,0.8,0.590855409,0.2,0.109922266,0.319066858,0.220206841,0.020630642,35.2799596,0.227613022,0.227613022,0.227613022,0.606487612,0.248243663,0.854731276,0.3 -355,1990/12/21,0.3,2.7,165.5072559,2.4,1.76434058,0.3,0.115572878,0.751232298,0.457908128,0.039828699,35.3492555,0.224066154,0.224066154,0.224066154,0.612678382,0.263894853,0.876573236,0.2712 -356,1990/12/22,0.2,0,165.2393146,0,0,0.153302189,0.114639098,0.114639098,0.424591965,0.056053014,35.38368404,0.225610305,0.225610305,0.225610305,0.615773725,0.281663319,0.897437044,0.2712 -357,1990/12/23,0.3,3,167.0900324,2.7,1.971931829,0.3,0.121214032,0.849282203,0.393431652,0.035097403,35.38738846,0.226380311,0.226380311,0.226380311,0.616107551,0.261477714,0.877585265,0.2472 -358,1990/12/24,0.5,2.7,168.5582322,2.2,1.594841826,0.5,0.126642096,0.73180027,0.717937015,0.07368497,35.68807547,0.226463273,0.226463273,0.226463273,0.643713271,0.300148243,0.943861514,0.2712 -359,1990/12/25,0.5,0.1,168.1230594,0,0,0.410159491,0.125013316,0.125013316,0.418879546,0.061246723,35.69579012,0.233270024,0.233270024,0.233270024,0.644434918,0.294516747,0.938951665,0.2712 -360,1990/12/26,0.4,0,167.6900065,0,0,0.309643642,0.123409181,0.123409181,0.11187819,0.019622709,35.42189085,0.233446561,0.233446561,0.233446561,0.61922403,0.25306927,0.872293301,0.2232 -361,1990/12/27,0.6,1.1,167.9282101,0.5,0.362493062,0.6,0.124289491,0.261796429,0.165744869,0.015397431,35.21421066,0.227237014,0.227237014,0.227237014,0.600662069,0.242634445,0.843296514,0.2472 -362,1990/12/28,0.6,3.1,169.6021607,2.5,1.804569361,0.6,0.130618764,0.826049403,0.458552343,0.03693279,35.28815408,0.222608035,0.222608035,0.222608035,0.607216959,0.259540825,0.866757784,0.2232 -363,1990/12/29,0.6,6.4,173.587173,5.8,4.131742121,0.6,0.146729789,1.814987668,1.134172573,0.097657154,35.97551295,0.22424836,0.22424836,0.22424836,0.671062062,0.321905515,0.992967577,0.2712 -364,1990/12/30,0.5,15.8,183.9113884,15.3,10.52019553,0.5,0.195980178,4.975784648,2.882315338,0.239214311,38.1822875,0.239912273,0.239912273,0.239912273,0.915453056,0.479126584,1.39457964,0.3264 -365,1990/12/31,0.5,3.7,185.8363441,3.2,2.131432672,0.5,0.206476942,1.275044271,3.0160487,0.379068429,40.27989458,0.295491359,0.295491359,0.295491359,1.213932983,0.674559788,1.888492771,1.1064 -366,1991/1/1,0,0.3,185.8286939,0.3,0.198784125,0,0.206434351,0.307650226,0.765323775,0.149917613,40.20028655,0.356317474,0.356317474,0.356317474,1.201249283,0.506235087,1.70748437,1.0776 -367,1991/1/2,0,2.1,187.0026435,2.1,1.387002571,0,0.213052987,0.926050417,0.521214249,0.055748538,39.91814949,0.353858802,0.353858802,0.353858802,1.15721011,0.409607341,1.566817451,0.8496 -368,1991/1/3,0,3.1,188.8095863,3.1,2.030514935,0,0.223572132,1.293057198,0.97844922,0.093367282,40.06230617,0.345242604,0.345242604,0.345242604,1.179535147,0.438609886,1.618145033,0.7968 -369,1991/1/4,0.1,3.1,190.5211702,3,1.94550045,0.1,0.233916567,1.288416118,1.161917763,0.124875317,40.3488393,0.349626057,0.349626057,0.349626057,1.22501069,0.474501374,1.699512064,0.7464 -370,1991/1/5,0.2,0,190.1225157,0,0,0.167180886,0.231473568,0.231473568,0.741977947,0.105696567,40.24147629,0.358456652,0.358456652,0.358456652,1.207797606,0.464153219,1.671950825,0.7968 -371,1991/1/6,0.1,0,189.8094463,0,0,0.083500015,0.229569432,0.229569432,0.207573884,0.035571391,39.68265924,0.355129418,0.355129418,0.355129418,1.121520354,0.390700809,1.512221163,0.696 -372,1991/1/7,0.1,0.2,189.6456967,0.1,0.064828937,0.1,0.228578501,0.263749564,0.220117006,0.023729658,39.19092005,0.338166568,0.338166568,0.338166568,1.050022759,0.361896226,1.411918985,0.648 -373,1991/1/8,0.3,7.1,193.7490367,6.8,4.357809269,0.3,0.254469261,2.696659993,1.19861412,0.079374044,39.60351966,0.323725634,0.323725634,0.323725634,1.109740148,0.403099678,1.512839825,0.648 -374,1991/1/9,0.3,3.4,195.4361112,3.1,1.952848218,0.3,0.265773712,1.412925494,1.919792218,0.212793877,40.59401158,0.335812013,0.335812013,0.335812013,1.26511231,0.54860589,1.8137182,0.7464 -375,1991/1/10,0.3,9.8,200.9815006,9.5,5.851193654,0.3,0.30580425,3.954610596,2.275849151,0.21222305,41.7635635,0.366138065,0.366138065,0.366138065,1.472435295,0.578361115,2.05079641,0.8496 -376,1991/1/11,0.3,4.4,203.1228444,4.1,2.463842996,0.3,0.322499167,1.958656171,2.770550631,0.321672877,43.17659365,0.404407686,0.404407686,0.404407686,1.761928168,0.726080563,2.488008731,1.2 -377,1991/1/12,0.2,6.4,206.4313213,6.2,3.658202955,0.2,0.349726065,2.891523109,2.131364934,0.239882773,43.84645352,0.45435708,0.45435708,0.45435708,1.915862147,0.694239853,2.610102,1.272 -378,1991/1/13,0,0,206.0845328,0,0,0,0.346788494,0.346788494,1.59694963,0.22229319,43.97595459,0.479511065,0.479511065,0.479511065,1.946959621,0.701804255,2.648763876,0.8496 -379,1991/1/14,0,0,205.7406378,0,0,0,0.343895041,0.343895041,0.310966437,0.064628533,43.03958199,0.48448624,0.48448624,0.48448624,1.731825276,0.549114774,2.280940049,0.696 -380,1991/1/15,0,0,205.399593,0,0,0,0.341044755,0.341044755,0.308379385,0.034361075,42.23357406,0.449330749,0.449330749,0.449330749,1.563718068,0.483691824,2.047409891,0.552 -381,1991/1/16,0,0,205.0613563,0,0,0,0.338236712,0.338236712,0.305830818,0.034076464,41.53096246,0.420562366,0.420562366,0.420562366,1.429004787,0.45463883,1.883643618,0.696 -382,1991/1/17,0,0,204.7258863,0,0,0,0.335470014,0.335470014,0.303319914,0.033796069,40.91204594,0.396579233,0.396579233,0.396579233,1.318815663,0.430375302,1.749190965,0.744 -383,1991/1/18,0.1,0,204.306849,0,0,0.086997676,0.332039683,0.332039683,0.300567686,0.033504345,40.36178911,0.376276571,0.376276571,0.376276571,1.227101084,0.409780915,1.636882,0.768 -384,1991/1/19,0.4,3.8,205.9624585,3.4,2.001368656,0.4,0.345759158,1.744390502,0.856853546,0.064245434,40.35198408,0.358859472,0.358859472,0.358859472,1.225518048,0.423104906,1.648622954,0.696 -385,1991/1/20,0.5,0.1,205.2734807,0,0,0.448982178,0.339995589,0.339995589,1.015076938,0.126955133,40.47938987,0.358554445,0.358554445,0.358554445,1.246225595,0.485509577,1.731735172,0.696 -386,1991/1/21,0.3,1,205.3444677,0.7,0.411572859,0.3,0.340585832,0.629012973,0.420186387,0.056907235,40.07983399,0.362532408,0.362532408,0.362532408,1.182274675,0.419439643,1.601714318,0.5568 -387,1991/1/22,0.4,4.3,207.2648475,3.9,2.277248338,0.4,0.356868517,1.979620179,1.099734685,0.089138306,40.31083653,0.350161732,0.350161732,0.350161732,1.218893875,0.439300038,1.658193913,0.648 -388,1991/1/23,0.6,0.3,206.6506215,0,0,0.562632068,0.351594003,0.351594003,1.138427242,0.146297634,40.5488917,0.357276392,0.357276392,0.357276392,1.257648465,0.503574027,1.761222492,1.14 -389,1991/1/24,0.2,0.1,206.2153,0,0,0.187427636,0.347893857,0.347893857,0.314972672,0.054279507,40.05083487,0.364715686,0.364715686,0.364715686,1.177745185,0.418995193,1.596740378,1.464 -390,1991/1/25,0.1,0,205.7837126,0,0,0.087331024,0.344256396,0.344256396,0.311667307,0.034753192,39.60222906,0.349275795,0.349275795,0.349275795,1.109548919,0.384028988,1.493577907,0.9624 -391,1991/1/26,0.3,7.7,209.6830022,7.4,4.277545016,0.3,0.378255331,3.500710315,1.556941291,0.103752486,40.28085703,0.335773713,0.335773713,0.335773713,1.214087029,0.439526199,1.653613228,0.9624 -392,1991/1/27,0.4,14.3,216.9459792,13.9,7.711736208,0.4,0.448759233,6.637023025,4.389791979,0.381685009,43.24897879,0.356347274,0.356347274,0.356347274,1.778017493,0.738032283,2.516049776,1.332 -393,1991/1/28,0.2,0.5,216.6622631,0.3,0.162104364,0.2,0.445820461,0.583716096,3.581667436,0.493842412,45.06173574,0.45702871,0.45702871,0.45702871,2.2259392,0.950871122,3.176810322,1.92 -394,1991/1/29,0.4,2.4,217.2891345,2,1.079205832,0.4,0.452334479,1.373128647,0.837240271,0.14709327,44.37979682,0.527661843,0.527661843,0.527661843,2.04684103,0.674755113,2.721596143,1.764 -395,1991/1/30,0.4,2.7,218.0628593,2.3,1.23420459,0.4,0.460479805,1.526275215,1.296323745,0.13136394,44.17959053,0.50023787,0.50023787,0.50023787,1.996767905,0.63160181,2.628369715,1.68 -396,1991/1/31,0.2,0,217.4294175,0,0,0.179639074,0.453802632,0.453802632,0.949915235,0.127280616,43.73292565,0.492383947,0.492383947,0.492383947,1.88896406,0.619664562,2.508628622,1.404 -397,1991/2/1,0.4,2.8,218.2530839,2.4,1.286166727,0.4,0.462500333,1.576333606,0.851932781,0.082668737,43.27598475,0.475179662,0.475179662,0.475179662,1.784053346,0.557848399,2.341901745,1.332 -398,1991/2/2,0.8,3.4,219.1644746,2.6,1.38367079,0.8,0.472280109,1.68860932,1.463060186,0.146858453,43.38782942,0.458028329,0.458028329,0.458028329,1.80924385,0.604886782,2.414130631,1.464 -399,1991/2/3,0.6,0.2,218.3409579,0,0,0.560080591,0.463436117,0.463436117,1.035684123,0.140644303,43.13332603,0.462184862,0.462184862,0.462184862,1.752372368,0.602829165,2.355201533,1.836 -400,1991/2/4,0.7,16.6,226.0074162,15.9,8.217607649,0.7,0.551149353,8.233541704,3.48705038,0.231346859,44.89282577,0.452765473,0.452765473,0.452765473,2.180316114,0.684112332,2.864428446,1.272 -401,1991/2/5,0.8,15.3,232.4151471,14.5,7.042027181,0.8,0.634296334,8.092269153,7.354370749,0.728611027,49.13839685,0.520771589,0.520771589,0.520771589,3.629571263,1.249382616,4.878953879,2.784 -402,1991/2/6,0.7,4.9,233.7297436,4.2,1.967137527,0.7,0.652540957,2.88540343,5.225816656,0.69660298,50.71211519,0.71449867,0.71449867,0.71449867,4.366596988,1.41110165,5.777698638,4.848 -403,1991/2/7,0.8,1.3,233.3161587,0.5,0.233171118,0.8,0.646756039,0.913584921,1.817800274,0.306670112,49.52780664,0.797845906,0.797845906,0.797845906,3.799954732,1.104516018,4.90447075,4.608 -404,1991/2/8,0.8,2.2,233.3234746,1.4,0.654173875,0.8,0.646858008,1.392684133,1.011517838,0.125130789,48.07390438,0.734513559,0.734513559,0.734513559,3.199933648,0.859644348,4.059577996,4.368 -405,1991/2/9,1,8.3,236.0035618,7.3,3.36518203,1,0.685094838,4.619912808,2.528489237,0.204455278,48.06689823,0.661775777,0.661775777,0.661775777,3.197271165,0.866231055,4.06350222,4.248 -406,1991/2/10,0.9,1.4,235.5529824,0.5,0.227962843,0.9,0.67854222,0.950579377,2.708172894,0.343387106,48.19155516,0.66143828,0.66143828,0.66143828,3.244954248,1.004825386,4.249779634,4.368 -407,1991/2/11,0.9,8.9,238.4328949,8,3.601220877,0.9,0.721308365,5.120087488,2.502888259,0.229855329,48.13765094,0.667461588,0.667461588,0.667461588,3.224254064,0.897316918,4.121570981,4.008 -408,1991/2/12,0.8,2.6,238.5084512,1.8,0.798015203,0.8,0.722458906,1.724443703,3.266464492,0.388298593,48.6449154,0.664852199,0.664852199,0.664852199,3.424052233,1.053150792,4.477203025,3.912 -409,1991/2/13,0.7,0.9,237.8843801,0.2,0.088928918,0.7,0.713000004,0.824071086,1.196263326,0.192730303,47.53118251,0.689698158,0.689698158,0.689698158,2.99969437,0.882428461,3.882122832,3.48 -410,1991/2/14,0.7,1,237.3141676,0.3,0.134232373,0.7,0.704444933,0.87021256,0.759894389,0.094039133,46.33004035,0.635994192,0.635994192,0.635994192,2.597030747,0.730033325,3.327064071,3.168 -411,1991/2/15,0.1,7.2,239.7186595,7.1,3.145582,0.1,0.741090015,4.695508015,2.294560185,0.170442035,46.54187365,0.581496838,0.581496838,0.581496838,2.664223721,0.751938873,3.416162594,2.688 -412,1991/2/16,0,1.9,239.8069792,1.9,0.830784419,0,0.74246471,1.811680291,3.086560788,0.361134685,47.30096631,0.5908558,0.5908558,0.5908558,2.918323929,0.951990484,3.870314413,2.592 -413,1991/2/17,0.1,8.5,242.6333887,8.4,3.613965336,0.1,0.787555897,5.573590561,3.116837722,0.297754262,47.90628338,0.625277827,0.625277827,0.625277827,3.136798479,0.923032089,4.059830568,2.244 -414,1991/2/18,0.2,3.7,243.3115845,3.5,1.476893101,0.2,0.798697275,2.821804175,3.929004407,0.452588838,48.94242594,0.653734884,0.653734884,0.653734884,3.546596729,1.106323722,4.652920451,1.92 -415,1991/2/19,0.2,0.8,242.7747168,0.6,0.252999529,0.2,0.789867228,1.136867699,1.873907637,0.277651453,48.25242835,0.704574962,0.704574962,0.704574962,3.268480191,0.982226415,4.250706606,1.764 -416,1991/2/20,0.2,0.3,242.0392888,0.1,0.04247132,0.2,0.777899353,0.835428033,0.90408251,0.126942747,47.0088996,0.670417116,0.670417116,0.670417116,2.818028375,0.797359864,3.615388238,1.608 -417,1991/2/21,0.3,0,240.9960244,0,0,0.28209116,0.761173218,0.761173218,0.722547236,0.085468184,45.88303021,0.611868761,0.611868761,0.611868761,2.460285386,0.697336946,3.157622331,1.836 -418,1991/2/22,0.3,2.4,241.137854,2.1,0.905259504,0.3,0.76342991,1.958170406,1.157987798,0.103267121,45.30887325,0.562095754,0.562095754,0.562095754,2.294240516,0.665362875,2.95960339,1.764 -419,1991/2/23,0.4,0.5,240.4288951,0.1,0.043244208,0.4,0.752203144,0.808958936,1.308301469,0.156474317,44.95738211,0.537860189,0.537860189,0.537860189,2.197652795,0.694334506,2.891987301,1.992 -420,1991/2/24,0.3,0,239.411228,0,0,0.281346251,0.736320839,0.736320839,0.699363812,0.092855577,44.18262474,0.523397366,0.523397366,0.523397366,1.997518555,0.616252943,2.613771497,1.764 -421,1991/2/25,0.2,0,238.5016133,0,0,0.187259901,0.722354722,0.722354722,0.657170744,0.074182257,43.497946,0.492502314,0.492502314,0.492502314,1.834351796,0.566684571,2.401036367,1.608 -422,1991/2/26,0.2,0,237.6058314,0,0,0.186971459,0.708810455,0.708810455,0.644767911,0.072102913,42.90608579,0.466303427,0.466303427,0.466303427,1.702931547,0.53840634,2.241337887,1.608 -423,1991/2/27,0.2,0,236.7234771,0,0,0.186684249,0.695670061,0.695670061,0.632737641,0.070752376,42.38843673,0.444471708,0.444471708,0.444471708,1.594858407,0.515224084,2.110082491,1.404 -424,1991/2/28,0.5,1.8,236.6166859,1.3,0.587301847,0.5,0.694093092,1.406791245,0.907066027,0.085331063,42.17033236,0.425984585,0.425984585,0.425984585,1.551154978,0.511315648,2.062470626,1.404 -425,1991/3/1,0.5,0,235.4734998,0,0,0.465794507,0.67739159,0.67739159,0.9779273,0.116281761,42.04090362,0.418362324,0.418362324,0.418362324,1.525718372,0.534644084,2.060362456,1.332 -426,1991/3/2,0.5,1.2,235.1218861,0.7,0.320706578,0.5,0.6723203,1.051613722,0.757507058,0.084556032,41.74362764,0.413885422,0.413885422,0.413885422,1.46866846,0.498441454,1.967109914,1.332 -427,1991/3/3,0.9,0.2,233.8178282,0,0,0.85027952,0.653778385,0.653778385,0.789268138,0.092015278,41.51125195,0.403732434,0.403732434,0.403732434,1.425376259,0.495747712,1.921123971,1.464 -428,1991/3/4,1.1,2.8,233.9520917,1.7,0.78993172,1.1,0.65566818,1.56573646,0.948713895,0.09008743,41.4430112,0.395920868,0.395920868,0.395920868,1.412875514,0.486008299,1.898883813,1.68 -429,1991/3/5,1,0.4,232.7568398,0,0,0.956253389,0.638998488,0.638998488,1.043009896,0.125476007,41.4631195,0.393647542,0.393647542,0.393647542,1.416549135,0.519123549,1.935672684,2.076 -430,1991/3/6,1.1,1.6,232.3587018,0.5,0.235384235,1.1,0.63352226,0.898138025,0.677484294,0.08051812,41.1709427,0.394316445,0.394316445,0.394316445,1.363977534,0.474834565,1.838812099,1.764 -431,1991/3/7,1,0,230.821905,0,0,0.924059193,0.612737604,0.612737604,0.695562893,0.080492954,40.92938324,0.384676647,0.384676647,0.384676647,1.321799007,0.465169601,1.786968608,1.764 -432,1991/3/8,0.7,0,229.5804097,0,0,0.645144334,0.596350922,0.596350922,0.544989474,0.064280167,40.58722109,0.376834958,0.376834958,0.376834958,1.263986575,0.441115125,1.705101699,1.836 -433,1991/3/9,0.9,5.9,231.3615211,5,2.401083546,0.9,0.619972182,3.218888636,1.572876811,0.11739289,41.16338178,0.365923746,0.365923746,0.365923746,1.362639869,0.483316636,1.845956505,1.764 -434,1991/3/10,1.1,14.4,236.8280551,13.3,6.16375112,1.1,0.697217144,7.833466024,4.720212789,0.392247769,44.25301935,0.384429448,0.384429448,0.384429448,2.015004671,0.776677217,2.791681888,1.764 -435,1991/3/11,1.4,9.6,239.7286946,8.2,3.64188565,1.4,0.741246108,5.299360457,6.048897658,0.673297964,47.72671745,0.495254191,0.495254191,0.495254191,3.070453744,1.168552155,4.239005899,2.784 -436,1991/3/12,1.4,0.5,238.1687426,0,0,1.342654406,0.717297562,0.717297562,2.959057623,0.459248045,48.1152758,0.645198668,0.645198668,0.645198668,3.215697944,1.104446713,4.320144657,4.848 -437,1991/3/13,1.2,0,236.3581654,0,0,1.120289782,0.690287487,0.690287487,0.634896146,0.12517881,46.69889111,0.663771209,0.663771209,0.663771209,2.715052041,0.78895002,3.504002061,4.968 -438,1991/3/14,1.2,6.8,238.1553106,5.6,2.51423936,1.2,0.717094096,3.802854736,1.851029703,0.137667956,46.49770053,0.597862029,0.597862029,0.597862029,2.650082318,0.735529985,3.385612303,4.608 -439,1991/3/15,1.2,0.5,236.804689,0,0,1.153750444,0.696871235,0.696871235,2.19539942,0.275399113,46.59928796,0.588895382,0.588895382,0.588895382,2.682707367,0.864294496,3.547001862,4.608 -440,1991/3/16,0.7,2,236.6962363,1.3,0.586814831,0.7,0.695267526,1.408452695,0.908328937,0.121938988,45.69599107,0.593410826,0.593410826,0.593410826,2.405036659,0.715349814,3.120386473,3.912 -441,1991/3/17,1.1,0.2,235.1847391,0,0,1.038272642,0.67322457,0.67322457,0.977119784,0.116314543,45.01421101,0.554116823,0.554116823,0.554116823,2.213016665,0.670431366,2.883448031,3.384 -442,1991/3/18,1,0.8,234.3377262,0,0,0.985892319,0.661120574,0.661120574,0.601119825,0.075728241,44.1512731,0.525716649,0.525716649,0.525716649,1.98977439,0.601444891,2.59121928,2.784 -443,1991/3/19,1,3.8,234.9589178,2.8,1.291171807,1,0.669980223,2.178808416,1.194644851,0.09956797,43.90688081,0.491280234,0.491280234,0.491280234,1.93031737,0.590848204,2.521165573,2.496 -444,1991/3/20,1,3,235.2037018,2,0.918281628,1,0.67349758,1.755215952,1.79356673,0.190683109,44.18433401,0.481827998,0.481827998,0.481827998,1.997941533,0.672511107,2.670452639,2.328 -445,1991/3/21,1.1,1.4,234.6757162,0.3,0.137943737,1.1,0.665929318,0.827985581,1.213346888,0.160164944,43.94964431,0.492569004,0.492569004,0.492569004,1.94060559,0.652733948,2.593339538,2.244 -446,1991/3/22,1.2,4.1,235.3328662,2.9,1.332509537,1.2,0.67535956,2.242850024,1.304197972,0.12479072,43.82626142,0.483472481,0.483472481,0.483472481,1.911053336,0.6082632,2.519316536,2.076 -447,1991/3/23,1.3,1.9,234.9385203,0.6,0.275341932,1.3,0.669687797,0.994345865,1.525282715,0.180193242,43.9013036,0.478738627,0.478738627,0.478738627,1.928979162,0.658931869,2.587911031,1.836 -448,1991/3/24,1.6,1.2,233.9118598,0,0,1.571559101,0.655101444,0.655101444,0.760876257,0.106713365,43.34437422,0.48161382,0.48161382,0.48161382,1.799419457,0.588327185,2.387746642,1.68 -449,1991/3/25,1.7,4.8,234.6804017,3.1,1.434538097,1.7,0.665996178,2.331458081,1.251917454,0.106307195,43.27338655,0.460566731,0.460566731,0.460566731,1.78347186,0.566873926,2.350345786,1.536 -450,1991/3/26,1.4,3,234.7507393,1.6,0.737338135,1.4,0.667000519,1.529662384,1.781523855,0.195775169,43.6445782,0.457932089,0.457932089,0.457932089,1.868264295,0.653707258,2.521971553,1.836 -451,1991/3/27,1.2,7,236.7007641,5.8,2.645359241,1.2,0.695334421,3.84997518,2.29344846,0.213353538,44.36639942,0.471828353,0.471828353,0.471828353,2.043455592,0.685181891,2.728637483,1.68 -452,1991/3/28,1,2.2,236.5500297,1.2,0.542375833,1,0.693110252,1.350734419,2.47753103,0.30277315,45.10568899,0.499709527,0.499709527,0.499709527,2.237950987,0.802482677,3.040433664,1.764 -453,1991/3/29,0.8,5.8,238.0776869,5,2.243576332,0.8,0.715919174,3.472342843,2.053905475,0.211119249,45.37595647,0.529465427,0.529465427,0.529465427,2.313103418,0.740584675,3.053688094,1.836 -454,1991/3/30,0.8,4,238.7705617,3.2,1.419336563,0.8,0.726461694,2.507125131,2.743752303,0.301025168,46.12644769,0.540652551,0.540652551,0.540652551,2.533913639,0.84167772,3.375591359,1.836 -455,1991/3/31,0.8,1,238.1423488,0.2,0.088684819,0.8,0.716897796,0.828212977,1.593076707,0.225244572,45.84358707,0.572602206,0.572602206,0.572602206,2.448539533,0.797846778,3.246386311,1.836 -456,1991/4/1,1.1,1.5,237.6119031,0.4,0.178455854,1.1,0.708901564,0.930445711,0.78578367,0.104866796,44.98474002,0.560406359,0.560406359,0.560406359,2.205037081,0.665273155,2.870310236,1.92 -457,1991/4/2,1.4,5.9,238.8832956,4.5,1.999581339,1.4,0.728188783,3.228607444,1.745401615,0.142283322,45.03578115,0.524512974,0.524512974,0.524512974,2.218873455,0.666796296,2.885669751,1.992 -458,1991/4/3,1.1,2.7,238.861765,1.6,0.706328011,1.1,0.727858677,1.621530665,2.270792828,0.260480552,45.48819586,0.526598882,0.526598882,0.526598882,2.344977005,0.787079434,3.132056439,2.328 -459,1991/4/4,1,8.7,241.4452994,7.7,3.351874731,1,0.768340289,5.116465558,2.840221464,0.25782091,46.2894357,0.545347687,0.545347687,0.545347687,2.584329311,0.803168597,3.387497908,2.424 -460,1991/4/5,0.8,3,241.6176998,2.2,0.943505348,0.8,0.771104915,2.027599567,3.384412233,0.402626223,47.32636366,0.579715063,0.579715063,0.579715063,2.927199336,0.982341286,3.909540622,2.784 -461,1991/4/6,0.7,1.3,241.112479,0.6,0.257804901,0.7,0.763025765,1.105220864,1.460409022,0.218944656,46.69835075,0.626453674,0.626453674,0.626453674,2.714875605,0.84539833,3.560273935,2.976 -462,1991/4/7,0.9,0,239.5297225,0,0,0.844600352,0.738156102,0.738156102,0.849671975,0.113343815,45.7306669,0.597837816,0.597837816,0.597837816,2.415193641,0.711181631,3.126375271,2.88 -463,1991/4/8,1.5,0,237.4204051,0,0,1.403284865,0.706032543,0.706032543,0.6516485,0.077439764,44.7860062,0.555589916,0.555589916,0.555589916,2.151899113,0.63302968,2.784928794,2.496 -464,1991/4/9,2,0,234.8879285,0,0,1.863513682,0.668962935,0.668962935,0.620783121,0.070168469,43.97621435,0.516447475,0.516447475,0.516447475,1.947022446,0.586615944,2.53363839,2.424 -465,1991/4/10,2.1,1.9,234.0451542,0,0,2.08579366,0.65698064,0.65698064,0.597332438,0.067070506,43.27435456,0.484496256,0.484496256,0.484496256,1.783688485,0.551566763,2.335255248,2.16 -466,1991/4/11,1.6,1.8,233.4890296,0.2,0.09304441,1.6,0.649168982,0.756124572,0.63045419,0.068015604,42.70298976,0.457967943,0.457967943,0.457967943,1.659786939,0.525983547,2.185770487,2.16 -467,1991/4/12,1.8,0,231.2055095,0,0,1.66564659,0.617873519,0.617873519,0.625889299,0.071408548,42.20750241,0.437151498,0.437151498,0.437151498,1.558528145,0.508560046,2.067088191,2.076 -468,1991/4/13,2,0,228.7770629,0,0,1.842509774,0.585936827,0.585936827,0.54346801,0.062716923,41.70856163,0.419654391,0.419654391,0.419654391,1.462063177,0.482371314,1.944434491,1.836 -469,1991/4/14,2.1,0.2,226.4777686,0,0,1.942357493,0.556936784,0.556936784,0.515885254,0.058333816,41.24911843,0.402546661,0.402546661,0.402546661,1.377875114,0.460880477,1.838755591,1.464 -470,1991/4/15,2.2,0.1,224.0337525,0,0,2.016626401,0.527389677,0.527389677,0.489569072,0.055387168,40.82243788,0.387239216,0.387239216,0.387239216,1.303488839,0.442626384,1.746115223,1.536 -471,1991/4/16,2.1,0,221.6271642,0,0,1.907047476,0.499540846,0.499540846,0.463647663,0.052476186,40.42253723,0.373399955,0.373399955,0.373399955,1.236948268,0.425876141,1.662824409,1.404 -472,1991/4/17,1.2,0.6,220.5962885,0,0,1.142896042,0.487979693,0.487979693,0.445018954,0.050028786,40.05060092,0.360753436,0.360753436,0.360753436,1.177708703,0.410782222,1.588490925,1.404 -473,1991/4/18,1.2,1.3,220.1655741,0.1,0.052499161,1.2,0.483213501,0.53071434,0.456066111,0.049872358,39.72766795,0.349268654,0.349268654,0.349268654,1.128267729,0.399141013,1.527408742,1.332 -474,1991/4/19,1.2,0,218.6174319,0,0,1.081751981,0.46639027,0.46639027,0.452228543,0.051155516,39.43447571,0.339510911,0.339510911,0.339510911,1.084931698,0.390666427,1.475598125,1.2 -475,1991/4/20,1.5,0.7,217.444462,0,0,1.41900954,0.453960309,0.453960309,0.414840172,0.047124854,39.13762454,0.330821885,0.330821885,0.330821885,1.042513223,0.377946739,1.420459963,1.0776 -476,1991/4/21,1.5,1,216.5514408,0,0,1.448344519,0.444676759,0.444676759,0.40489635,0.04533887,38.86050785,0.322187437,0.322187437,0.322187437,1.004200475,0.367526307,1.371726783,0.9048 -477,1991/4/22,1.9,5.9,218.2402225,4,2.151145202,1.9,0.462363497,2.311218295,1.137677031,0.085547632,39.25355153,0.314273408,0.314273408,0.314273408,1.058906758,0.399821039,1.458727797,0.9048 -478,1991/4/23,2.1,15.7,224.7736462,13.6,7.06962192,2.1,0.536198168,7.066576248,3.958931708,0.31348723,42.01696865,0.325539978,0.325539978,0.325539978,1.521054567,0.639027208,2.160081776,1.14 -479,1991/4/24,1.8,5,225.8354746,3.2,1.6108742,1.8,0.549045828,2.138171628,4.41271266,0.542393877,44.71068171,0.413061285,0.413061285,0.413061285,2.132060887,0.955455161,3.087516048,1.68 -480,1991/4/25,1.4,5.6,227.3576852,4.2,2.090105565,1.4,0.567895008,2.677789443,2.13755666,0.283788527,45.11982547,0.51341376,0.51341376,0.51341376,2.241826661,0.797202286,3.039028947,1.272 -481,1991/4/26,1.2,5.8,229.0248831,4.6,2.256331602,1.2,0.58913367,2.932802068,2.510765568,0.26701214,45.74208951,0.53004644,0.53004644,0.53004644,2.418547969,0.79705858,3.215606548,1.464 -482,1991/4/27,1.2,2.9,229.2593696,1.7,0.826657906,1.2,0.592171427,1.465513521,2.059798132,0.258065721,45.8943097,0.556075781,0.556075781,0.556075781,2.463653722,0.814141502,3.277795224,1.464 -483,1991/4/28,1.3,2.8,229.3936136,1.5,0.728160221,1.3,0.593916218,1.365755997,1.279548075,0.161667256,45.41288924,0.562579535,0.562579535,0.562579535,2.323548066,0.724246791,3.047794857,1.464 -484,1991/4/29,1.5,0,227.4469034,0,0,1.377694484,0.569015725,0.569015725,0.914389394,0.120263804,44.73185284,0.542194302,0.542194302,0.542194302,2.137620099,0.662458106,2.800078205,1.608 -485,1991/4/30,1.8,7.5,229.6366254,5.7,2.786807224,1.8,0.597085209,3.510277985,1.674202757,0.13085902,44.77209724,0.514265143,0.514265143,0.514265143,2.148223498,0.645124164,2.793347662,1.464 -486,1991/5/1,1.9,7.9,231.8829264,6,2.873328798,1.9,0.627027804,3.753699006,3.255425409,0.321681031,46.03683199,0.515886327,0.515886327,0.515886327,2.506576988,0.837567357,3.344144346,1.68 -487,1991/5/2,1.5,6.6,233.6278176,5.1,2.396002681,1.5,0.651111437,3.355108756,3.220846564,0.363749999,47.0085024,0.568718019,0.568718019,0.568718019,2.817894169,0.932468018,3.750362187,2.244 -488,1991/5/3,1.4,3.8,234.0857534,2.4,1.115489683,1.4,0.657553873,1.94206419,2.461305863,0.309195794,47.19879075,0.611850667,0.611850667,0.611850667,2.882868184,0.921046461,3.803914644,2.328 -489,1991/5/4,1.2,5.9,235.5702498,4.7,2.163288786,1.2,0.6787924,3.215503614,2.250991866,0.238824143,47.19037885,0.620563224,0.620563224,0.620563224,2.879966988,0.859387367,3.739354355,2.424 -490,1991/5/5,1.4,0.6,234.1678256,0,0,1.343710262,0.658713908,0.658713908,1.883769127,0.250409849,46.90964857,0.620176216,0.620176216,0.620176216,2.784675626,0.870586065,3.655261691,2.592 -491,1991/5/6,1.6,0,232.0557745,0,0,1.482670178,0.629380993,0.629380993,0.581253107,0.095382918,45.69385007,0.607359195,0.607359195,0.607359195,2.404410805,0.702742113,3.107152918,2.688 -492,1991/5/7,1.7,0,229.8863579,0,0,1.569060574,0.600356012,0.600356012,0.554975149,0.062646977,44.67906756,0.554025961,0.554025961,0.554025961,2.123783614,0.616672939,2.740456553,2.496 -493,1991/5/8,2.5,0,227.0263126,0,0,2.296297309,0.563748005,0.563748005,0.525856624,0.0595744,43.80990307,0.512144291,0.512144291,0.512144291,1.907165404,0.571718691,2.478884095,1.992 -494,1991/5/9,2.4,5.3,227.8838887,2.9,1.432106763,2.4,0.574530678,2.042423915,1.091595982,0.089263407,43.5364166,0.478113499,0.478113499,0.478113499,1.843195952,0.567376907,2.410572859,1.764 -495,1991/5/10,2.4,0,225.1471975,0,0,2.19600103,0.540690081,0.540690081,1.24484853,0.153839645,43.43015515,0.467748457,0.467748457,0.467748457,1.818858445,0.621588103,2.440446548,1.608 -496,1991/5/11,2.7,0,222.1851262,0,0,2.456181777,0.505889614,0.505889614,0.472871444,0.071016948,42.70630748,0.463764836,0.463764836,0.463764836,1.660483945,0.534781784,2.195265729,1.608 -497,1991/5/12,2.8,0,219.1815256,0,0,2.531135926,0.472464648,0.472464648,0.442094483,0.050265743,42.0568415,0.437270382,0.437270382,0.437270382,1.528830841,0.487536125,2.016366965,1.536 -498,1991/5/13,3,0,216.0482796,0,0,2.693732325,0.439513697,0.439513697,0.412199297,0.046917427,41.46633779,0.414434853,0.414434853,0.414434853,1.41713786,0.46135228,1.87849014,1.272 -499,1991/5/14,3.1,0,212.8766007,0,0,2.763612368,0.408066442,0.408066442,0.38313755,0.043649746,40.92316978,0.394423577,0.394423577,0.394423577,1.320729145,0.438073323,1.758802468,1.272 -500,1991/5/15,3.7,0,209.2304448,0,0,3.271979467,0.374176436,0.374176436,0.353869894,0.040433667,40.41753895,0.376634771,0.376634771,0.376634771,1.236135492,0.417068438,1.65320393,1.14 -501,1991/5/16,3.9,1.3,206.5977162,0,0,3.581586043,0.351142639,0.351142639,0.327658162,0.037311769,39.94452673,0.360597334,0.360597334,0.360597334,1.16126772,0.397909103,1.559176824,1.0776 -502,1991/5/17,2.8,19.5,215.5811475,16.7,9.418194934,2.8,0.434763594,7.716568659,3.226097919,0.197056512,41.99908781,0.34604172,0.34604172,0.34604172,1.517578553,0.543098232,2.060676785,1.0776 -503,1991/5/18,1.9,3.9,216.2281051,2,1.088310956,1.9,0.441353366,1.35304241,4.43069126,0.545108572,44.71027201,0.41244637,0.41244637,0.41244637,2.131953433,0.957554942,3.089508375,1.68 -504,1991/5/19,2.7,3.3,216.113745,0.6,0.325822647,2.7,0.440182713,0.714360066,0.965395633,0.196338137,44.18977615,0.513397294,0.513397294,0.513397294,1.999288783,0.709735431,2.709024214,1.608 -505,1991/5/20,2.6,1.1,214.3516531,0,0,2.439633595,0.422458292,0.422458292,0.527594059,0.072561567,43.39849029,0.492781379,0.492781379,0.492781379,1.811661301,0.565342946,2.377004247,1.272 -506,1991/5/21,3,14.8,220.2172739,11.8,6.349404361,3,0.483783614,5.934379253,2.55796474,0.166674866,44.3737301,0.462582458,0.462582458,0.462582458,2.045307388,0.629257324,2.674564712,1.2 -507,1991/5/22,3,3.9,220.2067516,0.9,0.473145213,3,0.483667536,0.910522324,3.356022317,0.4181559,45.79547108,0.499998572,0.499998572,0.499998572,2.434279908,0.918154472,3.352434381,1.332 -508,1991/5/23,2.9,42.3,238.530366,39.4,19.04640734,2.9,0.722792893,21.07638556,8.78697452,0.592944034,50.75316146,0.558350412,0.558350412,0.558350412,4.387634549,1.151294446,5.538928995,1.764 -509,1991/5/24,2.3,0.8,236.43801,0,0,2.200894978,0.691461057,0.691461057,10.91469125,1.422350585,55.135451,0.800108406,0.800108406,0.800108406,7.332510115,2.222458991,9.554969106,7.272 -510,1991/5/25,2.7,1.3,234.4721293,0,0,2.602851265,0.663029428,0.663029428,0.611081638,0.30894655,51.83580449,1.069144098,1.069144098,1.069144098,4.979872247,1.378090647,6.357962895,6 -511,1991/5/26,3.2,19.2,240.861165,16,7.148068178,3.2,0.759032423,9.610964245,4.132043042,0.263044816,51.84441601,0.861454678,0.861454678,0.861454678,4.984886198,1.124499494,6.109385693,5.088 -512,1991/5/27,2.4,2.3,240.0214891,0,0,2.393863771,0.745812117,0.745812117,5.147258344,0.660973193,52.48271371,0.861955682,0.861955682,0.861955682,5.370916329,1.522928875,6.893845204,5.88 -513,1991/5/28,3.8,0,235.7881107,0,0,3.551423216,0.681955277,0.681955277,0.646001139,0.177737225,50.00785817,0.899673592,0.899673592,0.899673592,4.020530271,1.077410817,5.097941088,4.968 -514,1991/5/29,4,0,231.4568094,0,0,3.71004447,0.621256818,0.621256818,0.589777856,0.067616359,48.13437177,0.759734542,0.759734542,0.759734542,3.222998797,0.827350901,4.050349698,4.128 -515,1991/5/30,4.2,0.1,227.1199443,0,0,3.87194777,0.564917291,0.564917291,0.536871453,0.06160494,46.64003914,0.664693697,0.664693697,0.664693697,2.695897778,0.726298637,3.422196415,2.976 -516,1991/5/31,3.8,15,231.9174955,11.2,5.425049015,3.8,0.627497867,6.402448852,2.81482613,0.185289624,47.17531578,0.595229099,0.595229099,0.595229099,2.874778589,0.780518723,3.655297312,2.328 -517,1991/6/1,3.7,2.1,229.8412236,0,0,3.576508005,0.599763813,0.599763813,3.469571045,0.444027324,48.06704394,0.619483636,0.619483636,0.619483636,3.197326517,1.063510959,4.260837476,4.488 -518,1991/6/2,3.8,7,230.7683918,3.2,1.539192013,3.8,0.612023879,2.272831867,1.200814273,0.165138325,47.08533808,0.661445298,0.661445298,0.661445298,2.843965437,0.826583623,3.67054906,2.88 -519,1991/6/3,4.1,1,227.3498633,0,0,3.850731668,0.567796837,0.567796837,1.371891663,0.170125294,46.44066351,0.615358081,0.615358081,0.615358081,2.631924315,0.785483375,3.41740769,2.424 -520,1991/6/4,4,9.7,229.5432435,5.7,2.789246129,4,0.595865858,3.506619729,1.672141968,0.141396226,46.15614431,0.58637094,0.58637094,0.58637094,2.543032101,0.727767165,3.270799267,1.992 -521,1991/6/5,3.5,1.1,226.7793946,0,0,3.303175161,0.560673797,0.560673797,1.992018542,0.2513376,46.17363859,0.573893508,0.573893508,0.573893508,2.548417771,0.825231107,3.373648878,2.496 -522,1991/6/6,3.3,1.5,224.6009863,0,0,3.144276126,0.534132126,0.534132126,0.494119827,0.090229971,45.02615547,0.574655186,0.574655186,0.574655186,2.21625814,0.664885157,2.881143297,2.16 -523,1991/6/7,3.1,0,221.2894447,0,0,2.815812287,0.495729354,0.495729354,0.465546019,0.052883326,44.05238389,0.526205055,0.526205055,0.526205055,1.965522653,0.579088381,2.544611034,1.764 -524,1991/6/8,3.1,0,218.0331585,0,0,2.796121182,0.460164972,0.460164972,0.432104969,0.049245243,43.20393772,0.487439743,0.487439743,0.487439743,1.767990876,0.536684985,2.304675861,1.68 -525,1991/6/9,4,0,214.0350092,0,0,3.578814329,0.419334979,0.419334979,0.39801659,0.045539747,42.44994315,0.455364995,0.455364995,0.455364995,1.607376158,0.500904743,2.1082809,1.404 -526,1991/6/10,4.2,5.3,214.2206764,1.1,0.6068313,4.2,0.421164104,0.914332803,0.572974421,0.053280233,41.94413109,0.428151903,0.428151903,0.428151903,1.506938386,0.481432136,1.988370522,1.2 -527,1991/6/11,4,2.4,212.3946653,0,0,3.822560425,0.403450679,0.403450679,0.621050686,0.074381358,41.54428112,0.410560525,0.410560525,0.410560525,1.431461178,0.484941882,1.91640306,1.2 -528,1991/6/12,3.8,8.1,214.3577129,4.3,2.385565846,3.8,0.422518246,2.3369524,1.127029436,0.088810763,41.62239345,0.397024541,0.397024541,0.397024541,1.445941649,0.485835304,1.931776953,1.272 -529,1991/6/13,3.3,1.3,212.1782925,0,0,3.078028371,0.401392055,0.401392055,1.338519911,0.16840572,41.86821033,0.399643412,0.399643412,0.399643412,1.492346439,0.568049132,2.060395571,1.404 -530,1991/6/14,3.1,5.8,213.2717333,2.7,1.505323194,3.1,0.411882429,1.606559235,0.837412713,0.089420993,41.66053077,0.407965439,0.407965439,0.407965439,1.453057718,0.497386432,1.95044415,0.9048 -531,1991/6/15,2.6,20.2,222.1983303,17.6,9.432637652,2.6,0.506040639,8.673402987,4.238003388,0.301558656,44.27817442,0.400926514,0.400926514,0.400926514,2.021286246,0.702485171,2.723771417,1.464 -532,1991/6/16,2.2,13.2,227.1975124,11,5.565069591,2.2,0.565887451,6.00081786,6.750127824,0.725329469,48.25504675,0.496240215,0.496240215,0.496240215,3.269495711,1.221569684,4.491065395,2.328 -533,1991/6/17,2.9,0,224.0216169,0,0,2.648649283,0.527246179,0.527246179,3.23813539,0.511458508,48.71228152,0.670544455,0.670544455,0.670544455,3.451445075,1.182002963,4.633448038,3.48 -534,1991/6/18,3.3,0,220.5409629,0,0,2.993288657,0.487365364,0.487365364,0.458764694,0.116405816,47.03666778,0.69304691,0.69304691,0.69304691,2.827425343,0.809452725,3.636878069,2.592 -535,1991/6/19,3.4,0,217.0305018,0,0,3.0608234,0.449637735,0.449637735,0.423722682,0.048378793,45.67470444,0.613134705,0.613134705,0.613134705,2.398820732,0.661513498,3.06033423,1.992 -536,1991/6/20,3.6,0,213.402421,0,0,3.214929985,0.413150838,0.413150838,0.390258029,0.044607868,44.5324146,0.553213912,0.553213912,0.553213912,2.085761773,0.59782178,2.683583553,1.92 -537,1991/6/21,4,3.3,212.3773733,0,0,3.921761811,0.403285847,0.403285847,0.3679381,0.041528893,43.55837621,0.506284738,0.506284738,0.506284738,1.848261235,0.547813631,2.396074866,1.68 -538,1991/6/22,3.7,4.7,212.5312911,1,0.558672758,3.7,0.404754936,0.846082178,0.537905466,0.050164292,42.86972157,0.468574735,0.468574735,0.468574735,1.695134836,0.518739027,2.213873863,1.536 -539,1991/6/23,4.1,0.2,208.7164536,0,0,3.645250753,0.369586784,0.369586784,0.573211274,0.068926756,42.30755925,0.443154642,0.443154642,0.443154642,1.578528244,0.512081398,2.090609642,1.404 -540,1991/6/24,3.4,0.3,205.657878,0,0,3.01537395,0.343201623,0.343201623,0.322203357,0.041999431,41.60938744,0.423146626,0.423146626,0.423146626,1.44352179,0.465146057,1.908667848,1.2 -541,1991/6/25,3.5,0,202.3012978,0,0,3.040570565,0.31600964,0.31600964,0.298137938,0.034034501,40.97675203,0.399206506,0.399206506,0.399206506,1.329979853,0.433241007,1.76322086,1.14 -542,1991/6/26,4.1,0,198.4862031,0,0,3.527861865,0.287232829,0.287232829,0.27303899,0.031290031,40.39558382,0.378363595,0.378363595,0.378363595,1.232570792,0.409653626,1.642224418,1.0776 -543,1991/6/27,3.7,14.3,204.5432931,10.6,6.391061727,3.7,0.333971784,4.542910057,1.939921679,0.1224745,41.30714736,0.359912222,0.359912222,0.359912222,1.388270369,0.482386723,1.870657092,1.02 -544,1991/6/28,3.9,0,200.8617342,0,0,3.376667407,0.304891414,0.304891414,2.414183685,0.31107447,42.49407042,0.389149249,0.389149249,0.389149249,1.616409868,0.700223719,2.316633587,1.2 -545,1991/6/29,3.9,0,197.2399865,0,0,3.343444596,0.278303156,0.278303156,0.263897282,0.079889707,41.72291553,0.429711671,0.429711671,0.429711671,1.464763846,0.509601378,1.974365225,0.9624 -546,1991/6/30,3.4,0,194.0960281,0,0,2.887196251,0.256762187,0.256762187,0.241962027,0.027671088,41.02887665,0.403031743,0.403031743,0.403031743,1.339032653,0.430702831,1.769735483,0.7464 -547,1991/7/1,2.9,0,191.4147394,0,0,2.441820943,0.239467666,0.239467666,0.224252921,0.02555067,40.39990818,0.380050821,0.380050821,0.380050821,1.233272206,0.405601491,1.638873698,0.648 -548,1991/7/2,2.9,0,188.7690289,0,0,2.422378956,0.223331544,0.223331544,0.209145534,0.023796561,39.82597457,0.360047091,0.360047091,0.360047091,1.143126237,0.383843652,1.526969888,0.6024 -549,1991/7/3,2.9,0,186.1579547,0,0,2.402800452,0.208273814,0.208273814,0.195049096,0.022192957,39.29820441,0.342460452,0.342460452,0.342460452,1.065279705,0.364653409,1.429933114,0.5568 -550,1991/7/4,3.1,0,183.4178235,0,0,2.546772254,0.193358971,0.193358971,0.181553594,0.020677601,38.80933714,0.326837936,0.326837936,0.326837936,0.997258803,0.347515536,1.34477434,0.5136 -551,1991/7/5,3.6,0,180.3109518,0,0,2.929374415,0.1774972,0.1774972,0.167756106,0.019163646,38.35280746,0.31282739,0.31282739,0.31282739,0.93711317,0.331991036,1.269104206,0.4728 -552,1991/7/6,3.8,0,177.0895442,0,0,3.059237448,0.162170238,0.162170238,0.153691814,0.017600376,37.92327071,0.300135968,0.300135968,0.300135968,0.883364533,0.317736344,1.201100877,0.4728 -553,1991/7/7,3.9,0,173.8373113,0,0,3.104441065,0.14779183,0.14779183,0.140272321,0.016082192,37.51711209,0.288534823,0.288534823,0.288534823,0.834965772,0.304617015,1.139582787,0.3936 -554,1991/7/8,3.8,0,170.7121509,0,0,2.99020415,0.134956237,0.134956237,0.127941319,0.014667028,37.13177808,0.277863106,0.277863106,0.277863106,0.791138431,0.292530134,1.083668565,0.3576 -555,1991/7/9,4.1,0,167.402075,0,0,3.187724142,0.122351773,0.122351773,0.116480604,0.013370346,36.76501978,0.268002037,0.268002037,0.268002037,0.751240942,0.281372383,1.032613325,0.3576 -556,1991/7/10,4.2,0,164.0676269,0,0,3.223821508,0.110626499,0.110626499,0.105483953,0.012126471,36.41463572,0.25885097,0.25885097,0.25885097,0.714718977,0.270977441,0.985696418,0.3216 -557,1991/7/11,4.3,0.1,160.7861855,0,0,3.281457235,0.099984223,0.099984223,0.095359098,0.010967346,36.07915501,0.250319036,0.250319036,0.250319036,0.681158844,0.261286382,0.942445226,0.2904 -558,1991/7/12,3.9,8.6,164.1634991,4.7,3.488264102,3.9,0.110950535,1.322686433,0.573073737,0.036962168,36.20134324,0.242340073,0.242340073,0.242340073,0.693225588,0.279302241,0.972527829,0.3216 -559,1991/7/13,3.5,9.5,168.4167829,6,4.379394645,3.5,0.126110821,1.746716175,1.357951318,0.127155266,37.02515904,0.245224795,0.245224795,0.245224795,0.779360311,0.372380061,1.151740372,0.3936 -560,1991/7/14,3.6,0,165.5244832,0,0,2.776666568,0.115633123,0.115633123,0.927605876,0.133868398,37.39699394,0.265318325,0.265318325,0.265318325,0.821089301,0.399186724,1.220276025,0.432 -561,1991/7/15,3.7,0,162.5974657,0,0,2.82126569,0.105751769,0.105751769,0.100165699,0.03058379,36.9957805,0.274761837,0.274761837,0.274761837,0.776140971,0.305345627,1.081486598,0.3576 -562,1991/7/16,3.6,0,159.7873155,0,0,2.713237065,0.096913145,0.096913145,0.091684461,0.010497715,36.61647643,0.264582224,0.264582224,0.264582224,0.73557076,0.275079939,1.010650699,0.3576 -563,1991/7/17,3.7,0,156.9429085,0,0,2.755827361,0.088579657,0.088579657,0.083929279,0.009612642,36.25684871,0.255208955,0.255208955,0.255208955,0.698765949,0.264821597,0.963587545,0.3216 -564,1991/7/18,4.3,0,153.7021575,0,0,3.160955924,0.079795102,0.079795102,0.076250924,0.008763435,35.91446888,0.246543282,0.246543282,0.246543282,0.665174042,0.255306717,0.920480759,0.2904 -565,1991/7/19,4.1,13.7,160.8816066,9.6,7.279730715,4.1,0.100281632,2.420550917,0.996644949,0.059462542,36.43300809,0.238490482,0.238490482,0.238490482,0.716596216,0.297953024,1.01454924,0.2568 -566,1991/7/20,3.9,0.1,157.9472855,0,0,2.942867126,0.091453891,0.091453891,1.25827278,0.163324223,37.14898857,0.250761344,0.250761344,0.250761344,0.793053647,0.414085567,1.207139213,0.3216 -567,1991/7/21,3.5,0,155.2759473,0,0,2.587368874,0.083969353,0.083969353,0.079351369,0.036451014,36.74740845,0.268437053,0.268437053,0.268437053,0.749368544,0.304888066,1.05425661,0.2904 -568,1991/7/22,3.2,0,152.8589267,0,0,2.33939265,0.07762796,0.07762796,0.07306694,0.008346019,36.36883544,0.258417244,0.258417244,0.258417244,0.710057189,0.266763263,0.976820452,0.2568 -569,1991/7/23,3.1,0,150.5446756,0,0,2.242329604,0.071921459,0.071921459,0.067610531,0.007712332,36.01114566,0.249218837,0.249218837,0.249218837,0.674519151,0.256931169,0.931450321,0.2568 -570,1991/7/24,3.4,0,148.0463215,0,0,2.432210853,0.06614332,0.06614332,0.062446377,0.007132622,35.67211463,0.240744995,0.240744995,0.240744995,0.642222399,0.247877616,0.890100016,0.2004 -571,1991/7/25,3.7,0,145.3713169,0,0,2.614629498,0.060375033,0.060375033,0.057249944,0.006555869,35.34956364,0.232905087,0.232905087,0.232905087,0.612706028,0.239460956,0.852166984,0.174 -572,1991/7/26,4.1,0,142.4585935,0,0,2.858163719,0.054559695,0.054559695,0.052039896,0.005977891,35.04162832,0.225617188,0.225617188,0.225617188,0.585592402,0.231595079,0.817187482,0.174 -573,1991/7/27,4.4,0,139.3880721,0,0,3.021597449,0.048924006,0.048924006,0.046877071,0.005400855,34.74674545,0.218812918,0.218812918,0.218812918,0.560572862,0.224213774,0.784786636,0.174 -574,1991/7/28,4.3,0,136.4368781,0,0,2.907237665,0.043956342,0.043956342,0.042068887,0.004849831,34.46383792,0.212435673,0.212435673,0.212435673,0.537412085,0.217285504,0.754697589,0.174 -575,1991/7/29,4.5,0,133.4034587,0,0,2.994139711,0.039279688,0.039279688,0.037712968,0.004351573,34.19207577,0.206443265,0.206443265,0.206443265,0.51591839,0.210794838,0.726713228,0.174 -576,1991/7/30,4.3,0.2,130.683007,0,0,2.885019041,0.035432589,0.035432589,0.033831735,0.003898684,33.9307788,0.200801576,0.200801576,0.200801576,0.495930278,0.20470026,0.700630538,0.1488 -577,1991/7/31,4.1,0,128.0069612,0,0,2.644097231,0.031948601,0.031948601,0.03051281,0.00351216,33.67945797,0.195481823,0.195481823,0.195481823,0.477315464,0.198993983,0.676309447,0.1488 -578,1991/8/1,4,0,125.4378307,0,0,2.540263242,0.028867253,0.028867253,0.027536304,0.003168316,33.43750972,0.19046089,0.19046089,0.19046089,0.459945443,0.193629207,0.653574649,0.1272 -579,1991/8/2,4,0.6,123.2826333,0,0,2.728727295,0.026470099,0.026470099,0.025033415,0.002870451,33.20454033,0.185714889,0.185714889,0.185714889,0.44371769,0.18858534,0.632303029,0.1272 -580,1991/8/3,3.3,1.8,122.3269661,0,0,2.730207702,0.025459503,0.025459503,0.023423804,0.002653101,32.98062024,0.181225429,0.181225429,0.181225429,0.428569324,0.18387853,0.612447854,0.1272 -581,1991/8/4,3.5,0,120.1544211,0,0,2.149268274,0.023276734,0.023276734,0.022051143,0.002509959,32.76525035,0.176983936,0.176983936,0.176983936,0.414404969,0.179493894,0.593898863,0.1272 -582,1991/8/5,4,0,117.7131654,0,0,2.420250209,0.021005445,0.021005445,0.020051677,0.002303563,32.55718368,0.172971758,0.172971758,0.172971758,0.401090109,0.175275322,0.57636543,0.1056 -583,1991/8/6,4.1,0,115.2532195,0,0,2.441046134,0.018899761,0.018899761,0.018072947,0.002081113,32.35586921,0.169157745,0.169157745,0.169157745,0.388545156,0.171238858,0.559784014,0.1056 -584,1991/8/7,3.8,0.3,113.1838075,0,0,2.35214967,0.017262355,0.017262355,0.016362848,0.001878871,32.16104294,0.165525052,0.165525052,0.165525052,0.376714174,0.167403922,0.544118096,0.1056 -585,1991/8/8,3.2,2.6,112.8179625,0,0,2.948859951,0.016985083,0.016985083,0.015426569,0.001739462,31.97295681,0.162062829,0.162062829,0.162062829,0.365575525,0.163802291,0.529377816,0.1056 -586,1991/8/9,3,2.8,112.6849924,0,0,2.916084928,0.016885193,0.016885193,0.015247108,0.001699586,31.79186508,0.158769759,0.158769759,0.158769759,0.355108601,0.160469346,0.515577947,0.1056 -587,1991/8/10,2.9,0.3,111.1688272,0,0,1.800386052,0.015779098,0.015779098,0.014759657,0.001665419,31.61703088,0.155644582,0.155644582,0.155644582,0.345238435,0.157310001,0.502548436,0.1056 -588,1991/8/11,3.1,8,115.4356913,4.9,4.285914003,3.1,0.019049898,0.633135895,0.258117998,0.015141893,31.67910176,0.152669321,0.152669321,0.152669321,0.348716447,0.167811215,0.516527661,0.1488 -589,1991/8/12,3.3,0,113.4801387,0,0,1.938063041,0.017489588,0.017489588,0.326581293,0.042518964,31.80362333,0.153720925,0.153720925,0.153720925,0.355780644,0.196239889,0.552020533,0.174 -590,1991/8/13,3.4,0,111.4943691,0,0,1.969758016,0.016011556,0.016011556,0.01515666,0.008977591,31.62873413,0.155846153,0.155846153,0.155846153,0.345892012,0.164823744,0.510715756,0.2004 -591,1991/8/14,4.1,6.8,113.8420484,2.7,2.365449619,4.1,0.017770348,0.352320729,0.147285686,0.009000551,31.58540943,0.152867203,0.152867203,0.152867203,0.343477587,0.161867754,0.505345341,0.174 -592,1991/8/15,2.6,66.8,165.4281,64.2,51.701348,2.6,0.115296387,12.61394838,5.16164064,0.300407422,36.20554222,0.152135572,0.152135572,0.152135572,0.693643424,0.452542994,1.146186418,0.2004 -593,1991/8/16,2.5,1.6,164.626658,0,0,2.288915325,0.112526686,0.112526686,6.413258959,0.842373364,41.44997816,0.245324362,0.245324362,0.245324362,1.414147383,1.087697727,2.50184511,2.976 -594,1991/8/17,2.6,12.8,171.865905,10.2,7.378833338,2.6,0.139586332,2.960752994,1.226604258,0.221215685,41.62418615,0.393879206,0.393879206,0.393879206,1.44627547,0.615094891,2.061370361,1.0464 -595,1991/8/18,2.4,9.8,176.9059842,7.4,5.201409128,2.4,0.16132997,2.359920842,2.427289678,0.249294509,42.77599554,0.399703661,0.399703661,0.399703661,1.67518395,0.64899817,2.324182121,0.7848 -596,1991/8/19,2.5,1.8,176.1885439,0,0,2.359360999,0.158079221,0.158079221,1.253984147,0.194748228,42.79132063,0.439772859,0.439772859,0.439772859,1.67843192,0.634521087,2.312953007,1.1016 -597,1991/8/20,2.6,0.8,174.6049433,0,0,2.232511038,0.151089592,0.151089592,0.139509703,0.041623532,41.87710524,0.440324548,0.440324548,0.440324548,1.49404964,0.481948079,1.97599772,1.1616 -598,1991/8/21,2.8,0.1,172.3295479,0,0,2.233912979,0.141482444,0.141482444,0.132184859,0.014980524,41.07114602,0.408268873,0.408268873,0.408268873,1.34641295,0.423249397,1.769662347,1.0464 -599,1991/8/22,2.9,0,169.9253081,0,0,2.272370003,0.131869813,0.131869813,0.123536259,0.01405056,40.35078129,0.381422982,0.381422982,0.381422982,1.225323976,0.395473542,1.620797518,0.8328 -600,1991/8/23,2.5,12.9,177.1033381,10.4,7.340263561,2.5,0.162233523,3.221969962,1.33957709,0.081127835,40.75655666,0.358517039,0.358517039,0.358517039,1.292318753,0.439644874,1.731963627,0.7848 -601,1991/8/24,2.2,6.1,179.6172173,3.9,2.687981501,2.2,0.174102267,1.386120766,2.174431431,0.245454961,41.81927639,0.371295069,0.371295069,0.371295069,1.483006771,0.61675003,2.099756801,1.1616 -602,1991/8/25,2.3,14.5,187.5808385,12.2,8.179995921,2.3,0.216374786,4.236378865,2.373641658,0.222827499,42.89801802,0.406299026,0.406299026,0.406299026,1.70119905,0.629126526,2.330325576,0.9912 -603,1991/8/26,2.4,9.4,191.875919,7,4.537454205,2.4,0.242373713,2.704919508,3.20766342,0.356405963,44.47804063,0.444179262,0.444179262,0.444179262,2.071820077,0.800585226,2.872405302,1.476 -604,1991/8/27,2.2,0.2,189.9705358,0,0,1.87483556,0.230547627,0.230547627,1.456806612,0.234242115,44.38964012,0.504124435,0.504124435,0.504124435,2.049331559,0.738366549,2.787698109,1.98 -605,1991/8/28,2.2,0,187.9209485,0,0,1.83123924,0.218348083,0.218348083,0.202672836,0.051970302,43.30286108,0.500626307,0.500626307,0.500626307,1.790078182,0.552596608,2.34267479,1.824 -606,1991/8/29,2.6,1.1,186.4691263,0,0,2.341797881,0.210024281,0.210024281,0.193224547,0.021795991,42.36499936,0.459024698,0.459024698,0.459024698,1.590110963,0.480820689,2.070931653,1.476 -607,1991/8/30,2.9,0.2,184.0508669,0,0,2.421533305,0.196726057,0.196726057,0.183767738,0.020808711,41.54274939,0.425160782,0.425160782,0.425160782,1.431178491,0.445969493,1.877147984,1.224 -608,1991/8/31,3.1,0,181.3387727,0,0,2.52946982,0.182624458,0.182624458,0.171481924,0.019519924,40.80985553,0.396973309,0.396973309,0.396973309,1.301349095,0.416493233,1.717842328,1.1616 -609,1991/9/1,3.3,0,178.5022098,0,0,2.66780785,0.168755011,0.168755011,0.158882208,0.018124334,40.14865151,0.372997296,0.372997296,0.372997296,1.193083523,0.39112163,1.584205154,1.0464 -610,1991/9/2,2.9,9.7,182.9413622,6.8,4.630007758,2.9,0.190855348,2.360847589,1.017972227,0.06515536,40.30149929,0.352270563,0.352270563,0.352270563,1.21739501,0.417425923,1.634820932,0.8856 -611,1991/9/3,2.5,0,180.7276895,0,0,2.034110723,0.179561979,0.179561979,1.26293987,0.162351707,40.64742802,0.356986829,0.356986829,0.356986829,1.273997967,0.519338536,1.793336503,1.0464 -612,1991/9/4,2.4,0,178.6197595,0,0,1.938617528,0.169312454,0.169312454,0.157556204,0.043457811,40.00257154,0.367827106,0.367827106,0.367827106,1.17023979,0.411284917,1.581524707,0.9912 -613,1991/9/5,2.5,0,176.4558571,0,0,2.004618159,0.15928423,0.15928423,0.148419067,0.016832016,39.41647705,0.347804879,0.347804879,0.347804879,1.082318439,0.364636895,1.446955334,0.8328 -614,1991/9/6,2.9,0,174.0008389,0,0,2.306528727,0.148489464,0.148489464,0.139090806,0.015809758,38.87912531,0.330293709,0.330293709,0.330293709,1.006736257,0.346103467,1.352839724,0.7368 -615,1991/9/7,2.8,0,171.6543121,0,0,2.207799042,0.1387278,0.1387278,0.129783694,0.014761998,38.38274873,0.314800695,0.314800695,0.314800695,0.940960966,0.329562693,1.270523659,0.6456 -616,1991/9/8,2.9,0.2,169.4134366,0,0,2.310982928,0.12989254,0.12989254,0.121364218,0.013793981,37.9218755,0.300956854,0.300956854,0.300956854,0.883194302,0.314750835,1.197945137,0.6456 -617,1991/9/9,2.8,17.5,179.564096,14.7,10.32450383,2.8,0.173844469,4.549340639,1.863021066,0.110100031,39.04396673,0.288497671,0.288497671,0.288497671,1.029427512,0.398597702,1.428025215,0.6456 -618,1991/9/10,2.4,12.9,186.4179375,10.5,7.063577043,2.4,0.209735515,3.646158472,3.737560451,0.382985399,41.64994474,0.319496976,0.319496976,0.319496976,1.451079415,0.702482375,2.15356179,1.1016 -619,1991/9/11,2.3,0,184.3266247,0,0,1.893105395,0.198207407,0.198207407,1.919261879,0.299585994,42.3771966,0.400570061,0.400570061,0.400570061,1.592580075,0.700156055,2.29273613,1.284 -620,1991/9/12,2.6,0,182.0157346,0,0,2.124824259,0.186065854,0.186065854,0.173589551,0.060220169,41.54481567,0.425589362,0.425589362,0.425589362,1.431559843,0.485809532,1.917369375,0.9912 -621,1991/9/13,2.7,3.4,182.3012955,0.7,0.473093876,2.7,0.187533033,0.414439157,0.257689238,0.023762568,40.88531929,0.397042421,0.397042421,0.397042421,1.31422804,0.420804989,1.735033028,0.936 -622,1991/9/14,2.5,0.8,180.7399123,0,0,2.18176034,0.179622828,0.179622828,0.280219627,0.033596237,40.32050782,0.375416936,0.375416936,0.375416936,1.220448037,0.409013173,1.62946121,0.9912 -623,1991/9/15,2.1,0,178.872339,0,0,1.697058031,0.170515228,0.170515228,0.158062141,0.020531854,39.71046218,0.357576492,0.357576492,0.357576492,1.125684271,0.378108346,1.503792617,0.9912 -624,1991/9/16,1.7,0,177.343157,0,0,1.36584509,0.163336951,0.163336951,0.150627574,0.017001381,39.15511385,0.33899655,0.33899655,0.33899655,1.04497246,0.355997932,1.400970392,0.8328 -625,1991/9/17,2.2,0,175.4314656,0,0,1.756985307,0.154706038,0.154706038,0.14359319,0.016228913,38.64602212,0.322691631,0.322691631,0.322691631,0.975376544,0.338920544,1.314297088,0.5592 -626,1991/9/18,2.3,0,173.4610509,0,0,1.824218125,0.146196623,0.146196623,0.135873372,0.015385621,38.1755354,0.308244103,0.308244103,0.308244103,0.914604197,0.323629724,1.238233921,0.48 -627,1991/9/19,2.3,10.6,179.0699228,8.3,5.780332768,2.3,0.171460884,2.691128115,1.137075842,0.070581092,38.63412163,0.295308509,0.295308509,0.295308509,0.973798122,0.365889601,1.339687723,0.444 -628,1991/9/20,2.2,5.6,181.210101,3.4,2.322154332,2.2,0.181976156,1.259821824,1.856508119,0.207680296,39.67775458,0.307912013,0.307912013,0.307912013,1.120787178,0.515592309,1.636379487,0.48 -629,1991/9/21,1.6,0,179.7394745,0,0,1.295929746,0.174696746,0.174696746,0.705108206,0.119044951,39.61015878,0.338020303,0.338020303,0.338020303,1.110724314,0.457065254,1.567789569,0.5208 -630,1991/9/22,1.3,3,180.7205105,1.7,1.160562238,1.3,0.179526247,0.718964009,0.372266304,0.042214522,39.25878252,0.336009088,0.336009088,0.336009088,1.059651646,0.37822361,1.437875256,0.48 -631,1991/9/23,1.2,1.6,180.8128419,0.4,0.272317669,1.2,0.179986237,0.307668568,0.484565336,0.056449299,39.04014339,0.325691841,0.325691841,0.325691841,1.028896313,0.38214114,1.411037452,0.48 -632,1991/9/24,1.3,0,179.5869183,0,0,1.051968428,0.173955188,0.173955188,0.224071734,0.032682778,38.61264724,0.319387487,0.319387487,0.319387487,0.970955364,0.352070265,1.32302563,0.48 -633,1991/9/25,1.4,0,178.2911229,0,0,1.128037694,0.167757692,0.167757692,0.154111043,0.018836535,38.16125997,0.307313404,0.307313404,0.307313404,0.91281172,0.326149939,1.238961659,0.444 -634,1991/9/26,1.3,0,177.0860113,0,0,1.042957567,0.162154033,0.162154033,0.148767921,0.016725868,37.74331432,0.294922191,0.294922191,0.294922191,0.861635759,0.311648059,1.173283818,0.444 -635,1991/9/27,1.5,0,175.731931,0,0,1.198042458,0.156037791,0.156037791,0.143522107,0.016147247,37.35439263,0.283771059,0.283771059,0.283771059,0.816214856,0.299918306,1.116133162,0.5208 -636,1991/9/28,1.6,0,174.3104705,0,0,1.271642935,0.14981763,0.14981763,0.137976431,0.015539387,36.99047607,0.273667901,0.273667901,0.273667901,0.775560899,0.289207288,1.064768187,0.5208 -637,1991/9/29,1.6,0,172.9014319,0,0,1.265188948,0.143849601,0.143849601,0.132477903,0.014924131,36.64847999,0.264449473,0.264449473,0.264449473,0.738923455,0.279373603,1.018297058,0.5208 -638,1991/9/30,1.8,0,171.3482766,0,0,1.415661768,0.137493564,0.137493564,0.126953376,0.014315837,36.32573077,0.255990511,0.255990511,0.255990511,0.705693109,0.270306348,0.975999457,0.48 -639,1991/10/1,1.8,0,169.8092876,0,0,1.407569479,0.131419545,0.131419545,0.121344368,0.013691,36.01989171,0.24818655,0.24818655,0.24818655,0.67536997,0.26187755,0.93724752,0.444 -640,1991/10/2,1.9,0,168.2069631,0,0,1.476998445,0.12532604,0.12532604,0.115870052,0.013079844,35.72914835,0.240949702,0.240949702,0.240949702,0.647563122,0.254029546,0.901592667,0.444 -641,1991/10/3,2,0,166.5426899,0,0,1.545034365,0.11923885,0.11923885,0.110388393,0.012470862,35.45181053,0.234211011,0.234211011,0.234211011,0.621937217,0.246681872,0.868619089,0.444 -642,1991/10/4,1.9,3.4,167.5112528,1.5,1.091314754,1.9,0.122751863,0.531437109,0.270173919,0.021043404,35.33820622,0.227909512,0.227909512,0.227909512,0.611687741,0.248952916,0.860640657,0.408 -643,1991/10/5,1.4,0,166.3132416,0,0,1.079592619,0.118418558,0.118418558,0.315110331,0.039216435,35.27282678,0.225363581,0.225363581,0.225363581,0.605853354,0.264580016,0.87043337,0.408 -644,1991/10/6,1.4,10.6,172.7858825,9.2,6.616009676,1.4,0.143368775,2.727359099,1.13736547,0.073979153,35.96413827,0.22390764,0.22390764,0.22390764,0.669961619,0.297886793,0.967848412,0.408 -645,1991/10/7,1.8,0,171.2337858,0,0,1.415062625,0.137034093,0.137034093,1.431189325,0.18510808,36.87224812,0.239646885,0.239646885,0.239646885,0.76272636,0.424754965,1.187481325,0.444 -646,1991/10/8,1.9,0,169.6181875,0,0,1.484917651,0.130680586,0.130680586,0.120820419,0.044114844,36.52818407,0.261502981,0.261502981,0.261502981,0.726387451,0.305617825,1.032005276,0.444 -647,1991/10/9,2,0,167.9404711,0,0,1.55338147,0.124334939,0.124334939,0.115105368,0.01300371,36.20296419,0.253061613,0.253061613,0.253061613,0.693386862,0.266065323,0.959452185,0.444 -648,1991/10/10,1.9,26.2,184.6464413,24.3,16.90590682,1.9,0.199936631,7.594029813,3.063167473,0.176467606,38.54884413,0.245263228,0.245263228,0.245263228,0.962550769,0.421730835,1.384281603,0.408 -649,1991/10/11,1.6,3.6,185.7700766,2,1.329743552,1.6,0.206108249,0.876364696,4.180486528,0.523851591,41.59417461,0.305539768,0.305539768,0.305539768,1.440695809,0.829391358,2.270087168,1.224 -650,1991/10/12,1.5,1.7,185.6969694,0.2,0.13259486,1.5,0.205702114,0.273107254,0.550382031,0.153624724,41.17802159,0.3986959,0.3986959,0.3986959,1.36523095,0.552320625,1.917551575,1.0464 -651,1991/10/13,1.3,14.7,194.1149872,13.4,8.674905756,1.3,0.256887946,4.98198219,2.106266445,0.137785157,42.1266644,0.38490819,0.38490819,0.38490819,1.542531826,0.522693347,2.065225173,0.8856 -652,1991/10/14,1.2,3.9,195.5468806,2.7,1.698423226,1.2,0.266529802,1.268106576,3.016436774,0.361141477,43.68276302,0.416848015,0.416848015,0.416848015,1.877186172,0.777989493,2.655175664,1.0464 -653,1991/10/15,1.3,8.1,199.4597486,6.8,4.207235501,1.3,0.294367521,2.887132021,1.780970584,0.206150486,43.98730247,0.47327475,0.47327475,0.47327475,1.949705881,0.679425236,2.629131117,1.1616 -654,1991/10/16,1.3,7.1,202.6491608,5.8,3.508156811,1.3,0.318744536,2.610587725,2.489156484,0.263547984,44.80456944,0.484923953,0.484923953,0.484923953,2.156813468,0.748471937,2.905285405,1.224 -655,1991/10/17,1.1,0,201.3895412,0,0,0.950688874,0.308930747,0.308930747,1.440147427,0.213799256,44.64660085,0.517197077,0.517197077,0.517197077,2.115313095,0.730996333,2.846309428,1.608 -656,1991/10/18,1,0,200.2279921,0,0,0.861451651,0.300097504,0.300097504,0.274547663,0.057845466,43.578969,0.510842924,0.510842924,0.510842924,1.853022438,0.56868839,2.421710828,1.344 -657,1991/10/19,0.9,0,199.1628581,0,0,0.772957159,0.292176829,0.292176829,0.266958299,0.029940081,42.66372116,0.46935053,0.46935053,0.46935053,1.651556668,0.499290611,2.150847279,1.344 -658,1991/10/20,1.2,0.4,198.1926022,0,0,1.085147253,0.285108631,0.285108631,0.260166504,0.029155962,41.86743562,0.435746137,0.435746137,0.435746137,1.492198177,0.464902099,1.957100276,1.1016 -659,1991/10/21,1.3,1.2,197.8246535,0,0,1.28548432,0.282464356,0.282464356,0.255553012,0.028536192,41.16755042,0.407939019,0.407939019,0.407939019,1.363377236,0.436475211,1.799852447,0.936 -660,1991/10/22,1.2,15,205.7836676,13.8,8.303270079,1.2,0.344256018,5.840985939,2.450382042,0.15028678,42.40439932,0.384565725,0.384565725,0.384565725,1.59809887,0.534852505,2.132951375,0.9912 -661,1991/10/23,1.2,2.6,206.2545691,1.4,0.819127851,1.2,0.348226347,0.929098496,3.316207325,0.41072467,44.15617059,0.426546308,0.426546308,0.426546308,1.990982355,0.837270978,2.828253333,1.752 -662,1991/10/24,1.1,3.4,207.2368676,2.3,1.338925437,1.1,0.356626873,1.317701436,0.989725104,0.159371612,43.74545145,0.491470994,0.491470994,0.491470994,1.891915247,0.650842606,2.542757853,1.536 -663,1991/10/25,1.2,30.8,222.9022086,29.6,16.1794851,1.2,0.514144096,13.934659,6.170873606,0.404128217,47.42874843,0.475656179,0.475656179,0.475656179,2.9632328,0.879784396,3.843017196,1.476 -664,1991/10/26,0.8,10.1,227.0327495,9.3,4.69436922,0.8,0.563828328,5.169459108,9.078074511,1.052263416,52.03868823,0.63120991,0.63120991,0.63120991,5.099344619,1.683473326,6.782817945,5.688 -665,1991/10/27,0.8,6.1,229.0465641,5.3,2.603228585,0.8,0.589414019,3.286185434,3.908434271,0.5789871,51.83881278,0.873313502,0.873313502,0.873313502,4.981623219,1.452300602,6.433923822,6.096 -666,1991/10/28,0.8,0.1,227.8297682,0,0,0.742950614,0.573845327,0.573845327,1.885925017,0.291294715,50.38430139,0.861629672,0.861629672,0.861629672,4.20206608,1.152924387,5.354990466,4.704 -667,1991/10/29,0.8,7.4,230.4314442,6.6,3.20922132,0.8,0.607545256,3.998323936,1.869467505,0.164541571,49.32390015,0.779940239,0.779940239,0.779940239,3.709808984,0.94448181,4.654290794,3.384 -668,1991/10/30,0.6,0.6,229.8318039,0,0,0.6,0.599640278,0.599640278,2.255676272,0.284842536,48.81142475,0.723983915,0.723983915,0.723983915,3.492135594,1.008826451,4.500962045,3.096 -669,1991/10/31,0.7,3.3,230.4760576,2.6,1.252390363,0.7,0.608136725,1.955746362,1.075471859,0.129815332,47.57093645,0.697996393,0.697996393,0.697996393,3.013956554,0.827811725,3.841768278,2.904 -670,1991/11/1,1,0.6,229.5120894,0,0,0.968508671,0.595459503,0.595459503,1.222724238,0.149722256,46.71213797,0.637857895,0.637857895,0.637857895,2.719380605,0.787580151,3.506960756,2.544 -671,1991/11/2,0.8,0,228.1981683,0,0,0.735397523,0.578523567,0.578523567,0.529222174,0.075217759,45.49336229,0.598455814,0.598455814,0.598455814,2.346453671,0.673673573,3.020127243,2.292 -672,1991/11/3,0.5,0,227.1740017,0,0,0.458573361,0.565593256,0.565593256,0.515562449,0.057768297,44.48172669,0.545564505,0.545564505,0.545564505,2.072762556,0.603332803,2.676095359,2.136 -673,1991/11/4,0.7,2.4,227.4456406,1.7,0.840638696,0.7,0.56899985,1.428361154,0.849912311,0.075649536,43.90584169,0.504270675,0.504270675,0.504270675,1.930067979,0.579920211,2.50998819,1.752 -674,1991/11/5,0.8,6.8,229.7782563,6,2.931554162,0.8,0.598938415,3.667384253,2.170159909,0.181806863,44.4843549,0.481788088,0.481788088,0.481788088,2.073434792,0.663594951,2.737029743,1.752 -675,1991/11/6,0.9,3.1,230.2345109,2.2,1.061194564,0.9,0.604939913,1.743745349,2.540618691,0.298107222,45.25121089,0.504374965,0.504374965,0.504374965,2.278137665,0.802482187,3.080619852,1.824 -676,1991/11/7,1,3.3,230.7275154,2.3,1.104483639,1,0.611479149,1.80699551,1.594360823,0.198450754,45.1350363,0.53546822,0.53546822,0.53546822,2.246003629,0.733918974,2.979922603,1.824 -677,1991/11/8,1,7.8,233.2985367,6.8,3.217531769,1,0.646510477,4.228978708,2.583218101,0.233115965,45.81026912,0.530672117,0.530672117,0.530672117,2.438657401,0.763788082,3.202445483,1.824 -678,1991/11/9,0.7,1.4,232.984061,0.7,0.327665114,0.7,0.642140871,1.014475757,2.536035102,0.323774434,46.31345158,0.558982142,0.558982142,0.558982142,2.591834788,0.882756576,3.474591364,1.98 -679,1991/11/10,0.3,0.6,232.4897257,0.3,0.140985023,0.3,0.635320252,0.794335229,0.826050941,0.13452812,45.40029058,0.580768433,0.580768433,0.580768433,2.319980369,0.715296554,3.035276922,2.052 -680,1991/11/11,0.3,0.4,231.9095765,0.1,0.04724091,0.3,0.627390161,0.680149252,0.669786966,0.079523556,44.52729902,0.541668021,0.541668021,0.541668021,2.084446552,0.621191577,2.705638129,1.824 -681,1991/11/12,0.6,5.9,233.7450195,5.3,2.488198411,0.6,0.65275542,3.464557008,1.712249933,0.130479228,44.63367974,0.506081213,0.506081213,0.506081213,2.111950422,0.636560441,2.748510863,1.824 -682,1991/11/13,0.6,9.2,236.9818747,8.6,3.936352922,0.6,0.699497724,5.363144802,3.868230615,0.355289702,46.39482278,0.510325663,0.510325663,0.510325663,2.617413244,0.865615365,3.48302861,2.136 -683,1991/11/14,0.6,5.4,238.4062852,4.8,2.14531407,0.6,0.720903516,3.375589446,4.041549844,0.470295528,47.88999465,0.584347652,0.584347652,0.584347652,3.130725619,1.05464318,4.185368799,2.64 -684,1991/11/15,0.4,2,238.3954219,1.6,0.709874971,0.4,0.72073829,1.610863319,2.340789588,0.322265099,47.79004172,0.652957242,0.652957242,0.652957242,3.093699762,0.975222341,4.068922103,2.544 -685,1991/11/16,0.3,1.3,238.1231572,1,0.444342485,0.3,0.716607229,1.272264744,1.315997124,0.174467743,46.95452713,0.648199836,0.648199836,0.648199836,2.799711551,0.822667579,3.62237913,2.292 -686,1991/11/17,0.3,0,237.14104,0,0,0.280253283,0.701863887,0.701863887,0.919673656,0.118699756,45.99092005,0.609395345,0.609395345,0.609395345,2.492676087,0.728095101,3.220771188,2.292 -687,1991/11/18,0.3,7.9,239.7683963,7.6,3.369220188,0.3,0.741863914,4.972643726,2.319056642,0.170657156,46.29168168,0.566735379,0.566735379,0.566735379,2.585030387,0.737392535,3.322422923,2.052 -688,1991/11/19,0.4,0.2,238.8532951,0,0,0.387372278,0.727728852,0.727728852,2.798219286,0.353718352,46.89119866,0.579813518,0.579813518,0.579813518,2.778515822,0.933531869,3.712047691,2.292 -689,1991/11/20,0.4,0,237.7679416,0,0,0.374107255,0.711246274,0.711246274,0.648443706,0.122476616,45.73090297,0.60652353,0.60652353,0.60652353,2.415262923,0.729000146,3.144263069,1.98 -690,1991/11/21,0.3,0,236.791188,0,0,0.280082138,0.696671432,0.696671432,0.63436313,0.070999127,44.77252864,0.555599955,0.555599955,0.555599955,2.148337416,0.626599082,2.774936497,1.824 -691,1991/11/22,0.3,0,235.8290297,0,0,0.279607726,0.682550656,0.682550656,0.621425173,0.069529109,43.96543956,0.515903725,0.515903725,0.515903725,1.944417985,0.585432833,2.529850818,1.68 -692,1991/11/23,0.2,0,234.9727458,0,0,0.186105297,0.670178526,0.670178526,0.609407363,0.068150058,43.27507753,0.484080904,0.484080904,0.484080904,1.783850289,0.552230962,2.336081251,1.536 -693,1991/11/24,0.1,0,234.2203697,0,0,0.092918672,0.659457447,0.659457447,0.598924774,0.066928461,42.67754676,0.457994723,0.457994723,0.457994723,1.654450268,0.524923185,2.179373452,1.344 -694,1991/11/25,0.2,0,233.3870545,0,0,0.185570509,0.647744731,0.647744731,0.588884009,0.065815114,42.15462328,0.436240565,0.436240565,0.436240565,1.548048053,0.502055679,2.050103732,1.344 -695,1991/11/26,0.4,0,232.3826872,0,0,0.370516168,0.633851096,0.633851096,0.577480887,0.064607667,41.6911317,0.417817116,0.417817116,0.417817116,1.458789585,0.482424783,1.941214368,1.344 -696,1991/11/27,0.4,0,231.3924671,0,0,0.369830999,0.620389148,0.620389148,0.565147174,0.063253501,41.27562245,0.401958186,0.401958186,0.401958186,1.382614615,0.465211687,1.847826302,1.224 -697,1991/11/28,0.3,0,230.5070345,0,0,0.276884861,0.60854768,0.60854768,0.553671671,0.061937784,40.90056211,0.388110768,0.388110768,0.388110768,1.316842773,0.450048552,1.766891324,1.1016 -698,1991/11/29,0.5,0,229.451739,0,0,0.460622578,0.594672966,0.594672966,0.542211017,0.060689895,40.55931142,0.375907033,0.375907033,0.375907033,1.259368741,0.436596928,1.695965669,1.0464 -699,1991/11/30,0.4,0,228.5015532,0,0,0.367786556,0.582399203,0.582399203,0.530356308,0.059361544,40.24616637,0.365043811,0.365043811,0.365043811,1.208545176,0.424405355,1.632950531,0.9912 -700,1991/12/1,0.5,0,227.4733592,0,0,0.458845593,0.569348394,0.569348394,0.519002912,0.058098229,39.95721905,0.355274303,0.355274303,0.355274303,1.163224529,0.413372533,1.576597062,0.8856 -701,1991/12/2,0.4,0,226.5491709,0,0,0.366368691,0.55781961,0.55781961,0.507858535,0.056835721,39.68903087,0.346426713,0.346426713,0.346426713,1.122473436,0.403262435,1.52573587,0.8328 -702,1991/12/3,0.5,0,225.546567,0,0,0.457078003,0.545525901,0.545525901,0.497180409,0.055648101,39.43898122,0.338356647,0.338356647,0.338356647,1.085586705,0.394004749,1.479591454,0.7848 -703,1991/12/4,0.5,0,224.5568067,0,0,0.456155858,0.533604505,0.533604505,0.486263171,0.054435924,39.20428537,0.330954195,0.330954195,0.330954195,1.051913209,0.385390119,1.437303328,0.7848 -704,1991/12/5,0.5,0,223.5795307,0,0,0.455235918,0.522040078,0.522040078,0.475674953,0.053247229,38.98307704,0.3241122,0.3241122,0.3241122,1.020995484,0.377359429,1.398354913,0.7368 -705,1991/12/6,0.5,0,222.6143944,0,0,0.454318214,0.51081809,0.51081809,0.465402266,0.052094092,38.77377686,0.317756461,0.317756461,0.317756461,0.992458903,0.369850553,1.362309456,0.6912 -706,1991/12/7,0.5,0,221.6610668,0,0,0.453402776,0.499924768,0.499924768,0.455432332,0.050975068,38.57504048,0.311825305,0.311825305,0.311825305,0.96599402,0.362800374,1.328794394,0.7368 -707,1991/12/8,0.5,3.2,222.5481925,2.7,1.397181154,0.5,0.51005551,1.812874355,0.968676831,0.078940116,38.84754617,0.306267102,0.306267102,0.306267102,1.002438249,0.385207219,1.387645468,0.6456 -708,1991/12/9,0.6,2.6,223.0610499,2,1.028844515,0.6,0.515987127,1.487142612,1.502890719,0.15865246,39.56090304,0.313906677,0.313906677,0.313906677,1.103440526,0.472559137,1.575999663,0.6456 -709,1991/12/10,0.7,10.7,227.5241936,10,5.033131751,0.7,0.569988047,5.536856296,2.938464546,0.241446977,41.42442855,0.334548949,0.334548949,0.334548949,1.409487979,0.575995927,1.985483906,1.0464 -710,1991/12/11,0.6,6.3,229.7109997,5.7,2.784863971,0.6,0.598057802,3.513193831,4.183624316,0.461503259,44.03885711,0.393030111,0.393030111,0.393030111,1.962225868,0.85453337,2.816759238,1.284 -711,1991/12/12,0.4,0,228.7573465,0,0,0.367970101,0.58568309,0.58568309,2.005218952,0.310928358,44.463011,0.486916085,0.486916085,0.486916085,2.067981148,0.797844443,2.865825591,1.1016 -712,1991/12/13,0.5,1.5,228.6611257,1,0.488225231,0.5,0.584446058,1.096220826,0.728827515,0.104302326,43.79236265,0.503528464,0.503528464,0.503528464,1.903004328,0.60783079,2.510835118,1.0464 -713,1991/12/14,0.5,2.5,229.0468361,2,0.975127878,0.5,0.589417536,1.614289658,1.191286991,0.114972283,43.60259514,0.477443847,0.477443847,0.477443847,1.858498352,0.59241613,2.450914482,1.1616 -714,1991/12/15,0.4,6.2,231.2227383,5.8,2.79400724,0.4,0.618104999,3.624097759,2.246933033,0.199433925,44.2944181,0.470241731,0.470241731,0.470241731,2.025351796,0.669675656,2.695027452,0.9912 -715,1991/12/16,0.3,20.9,239.8810551,20.6,9.401936047,0.3,0.743619284,11.94168324,6.547954324,0.521276128,48.12126428,0.496877677,0.496877677,0.496877677,3.21798582,1.018153804,4.236139624,0.936 -716,1991/12/17,0.6,8.2,242.3710933,7.6,3.273318942,0.6,0.783280682,5.10996174,8.048310989,0.94611329,51.84715417,0.664060402,0.664060402,0.664060402,4.986481508,1.610173692,6.596655201,3.192 -717,1991/12/18,0.3,13.7,247.0480208,13.4,5.539310081,0.3,0.862382633,8.723072552,6.026500489,0.670878718,53.01800163,0.862115027,0.862115027,0.862115027,5.717768054,1.532993745,7.250761799,3.096 -718,1991/12/19,0.2,12.6,250.9807218,12.4,4.866477758,0.2,0.933776727,8.467298969,7.749709303,0.824079389,54.71907632,0.932201339,0.932201339,0.932201339,6.980835951,1.756280728,8.737116679,3.696 -719,1991/12/20,0.1,0.3,250.1396184,0.2,0.077016875,0.1,0.918120251,1.041103376,4.686489344,0.68674229,54.01819884,1.041150794,1.041150794,1.041150794,6.428517618,1.727893085,8.156410703,4.824 -720,1991/12/21,0.1,0.4,249.3526842,0.3,0.116730397,0.1,0.903664658,1.086934261,0.955100733,0.19270261,51.29416449,0.995218247,0.995218247,0.995218247,4.67435333,1.187920857,5.862274187,4.584 -721,1991/12/22,0,2.3,249.3484588,2.3,0.899362218,0,0.90358754,2.304225322,1.45919081,0.134872364,49.70412647,0.830358897,0.830358897,0.830358897,3.879587728,0.965231261,4.844818989,4.248 -722,1991/12/23,0.1,2.7,249.4588362,2.6,1.015981229,0.1,0.905603826,2.489622597,2.14705294,0.220135033,49.01694971,0.743706441,0.743706441,0.743706441,3.577936135,0.963841473,4.541777608,3.696 -723,1991/12/24,0.3,0,248.2890896,0,0,0.285327157,0.884419481,0.884419481,1.606446765,0.211541607,48.11582561,0.708337068,0.708337068,0.708337068,3.215907934,0.919878676,4.135786609,3.384 -724,1991/12/25,0.1,0,247.3268358,0,0,0.094959456,0.867294342,0.867294342,0.789211393,0.106998209,46.81547089,0.663797757,0.663797757,0.663797757,2.753363873,0.770795966,3.524159839,3.192 -725,1991/12/26,0.1,0,246.3812841,0,0,0.094823585,0.850728125,0.850728125,0.774019598,0.086567805,45.76677976,0.603102139,0.603102139,0.603102139,2.425812868,0.689669945,3.115482813,3 -726,1991/12/27,0.3,0.4,245.5850571,0.1,0.040749942,0.3,0.836976991,0.896227048,0.783631853,0.086266917,44.9199526,0.557127028,0.557127028,0.557127028,2.187586035,0.643393944,2.830979979,2.64 -727,1991/12/28,0.4,0.7,244.8833863,0.3,0.123337329,0.4,0.825008058,1.00167073,0.848264974,0.091400583,44.27067874,0.521873802,0.521873802,0.521873802,2.019412644,0.613274384,2.632687028,2.472 -728,1991/12/29,0.3,19.5,251.5446457,19.2,7.605653318,0.3,0.944393913,12.53874059,5.459783853,0.352161327,47.30624297,0.495946254,0.495946254,0.495946254,2.920165871,0.848107581,3.768273452,2.292 -729,1991/12/30,0.3,17.8,256.9063873,17.5,6.412039942,0.3,1.050298338,12.1382584,11.12663628,1.109012941,53.2104442,0.625521996,0.625521996,0.625521996,5.847957044,1.734534937,7.582491981,3.096 -730,1991/12/31,0.2,0.9,256.1208724,0.7,0.2486952,0.2,1.0342101,1.485514901,6.715548163,0.984722552,54.25797139,0.944098002,0.944098002,0.944098002,6.612118975,1.928820553,8.540939528,3.384 -731,1992/1/1,0.2,5.4,256.9173262,5.2,1.846977559,0.2,1.050523798,4.403546238,2.489873489,0.338243017,52.42425935,1.010765513,1.010765513,1.010765513,5.334351042,1.349008531,6.683359573,3.312 -732,1992/1/2,0.1,0.2,255.9227188,0.1,0.035575887,0.1,1.03018331,1.094607423,2.655834397,0.333307824,51.29917318,0.896171328,0.896171328,0.896171328,4.677091893,1.229479152,5.906571045,3 -733,1992/1/3,0,2.5,255.7916413,2.5,0.896449146,0,1.027526583,2.631077437,1.592203815,0.182212562,49.79894844,0.830642717,0.830642717,0.830642717,3.923071269,1.01285528,4.935926549,1.8 -734,1992/1/4,0.3,6.9,257.0844429,6.6,2.346774612,0.3,1.053973085,5.307198473,3.425301321,0.30372699,49.97016044,0.748684058,0.748684058,0.748684058,4.002773389,1.052411048,5.055184437,3 -735,1992/1/5,0.4,5.9,257.9384899,5.5,1.925790923,0.4,1.07174384,4.645952917,4.515221302,0.484642893,50.8206658,0.757731926,0.757731926,0.757731926,4.422447861,1.242374819,5.66482268,5.352 -736,1992/1/6,0.4,2.5,257.6063097,2.1,0.732623112,0.4,1.064803383,2.432180271,3.306699028,0.423802134,50.61433011,0.803839252,0.803839252,0.803839252,4.316873975,1.227641386,5.544515362,6.336 -737,1992/1/7,0.3,0.9,256.7699349,0.6,0.211114451,0.3,1.047489219,1.436374768,1.79552082,0.247469971,49.44099976,0.792474341,0.792474341,0.792474341,3.761325512,1.039944311,4.801269823,6.048 -738,1992/1/8,0.2,0.8,255.9527724,0.6,0.213630736,0.2,1.03079323,1.417162494,1.285146514,0.154960563,48.20574127,0.730017611,0.730017611,0.730017611,3.250422608,0.884978174,4.135400782,5.496 -739,1992/1/9,0.3,2.6,255.7508725,2.3,0.824801504,0.3,1.026701395,2.501899891,1.704024444,0.165752785,47.56580366,0.668149522,0.668149522,0.668149522,3.012111578,0.833902308,3.846013886,5.088 -740,1992/1/10,0.3,0,254.4621619,0,0,0.287818972,1.000891651,1.000891651,1.658663579,0.204449382,47.03516742,0.637617046,0.637617046,0.637617046,2.826916871,0.842066429,3.6689833,4.224 -741,1992/1/11,0,0.1,253.5166716,0.1,0.03680092,0,0.982291225,1.045490304,0.918423328,0.118771363,46.05466244,0.613066256,0.613066256,0.613066256,2.511994556,0.731837619,3.243832175,3.408 -742,1992/1/12,0,0.6,252.7721702,0.6,0.223340825,0,0.967842171,1.344501346,1.059080095,0.11058632,45.37141099,0.569489335,0.569489335,0.569489335,2.311820882,0.680075654,2.991896537,2.784 -743,1992/1/13,0,0,251.8225092,0,0,0,0.949661071,0.949661071,1.054050337,0.122256846,44.80815934,0.540463018,0.540463018,0.540463018,2.157765004,0.662719864,2.820484868,2.688 -744,1992/1/14,0.1,0,250.7967327,0,0,0.095442878,0.930333632,0.930333632,0.847058697,0.099198731,44.17654537,0.51734213,0.51734213,0.51734213,1.996014797,0.616540861,2.612555658,2.316 -745,1992/1/15,0.1,0,249.789757,0,0,0.095305047,0.9116706,0.9116706,0.829926509,0.092851685,43.63313835,0.492265172,0.492265172,0.492265172,1.865598704,0.585116858,2.450715562,2.316 -746,1992/1/16,0,0,248.8944253,0,0,0,0.895331694,0.895331694,0.814048039,0.09102856,43.1602654,0.47139564,0.47139564,0.47139564,1.758316632,0.5624242,2.320740832,1.968 -747,1992/1/17,0,0,248.0149129,0,0,0,0.879512429,0.879512429,0.799548334,0.089378664,42.74494882,0.453755974,0.453755974,0.453755974,1.66862089,0.543134638,2.211755527,1.8 -748,1992/1/18,0.1,0,247.0574437,0,0,0.094920926,0.862548264,0.862548264,0.784858647,0.087765478,42.37610518,0.438656721,0.438656721,0.438656721,1.592359,0.526422199,2.118781198,1.644 -749,1992/1/19,0.3,0,245.9302129,0,0,0.28431506,0.842915763,0.842915763,0.768536643,0.086023994,42.0438914,0.425551,0.425551,0.425551,1.526301427,0.511574994,2.037876421,1.344 -750,1992/1/20,0.4,1.5,245.543501,1.1,0.449552413,0.4,0.836264258,1.486711845,1.012987101,0.098654424,41.96072302,0.413988381,0.413988381,0.413988381,1.510143867,0.512642806,2.022786673,1.344 -751,1992/1/21,0.4,8.7,248.0131017,8.3,3.349080742,0.4,0.879480087,5.830399345,3.054225501,0.23642177,43.57416662,0.411129228,0.411129228,0.411129228,1.851911123,0.647550998,2.499462121,1.5 -752,1992/1/22,0.5,6.5,249.4710178,6,2.363742634,0.5,0.90582657,4.542083936,4.73834765,0.503531191,46.21919311,0.469169527,0.469169527,0.469169527,2.562490691,0.972700718,3.535191409,2.052 -753,1992/1/23,0.5,10.7,252.4166715,10.2,3.90665734,0.5,0.961003584,7.254346244,5.159486491,0.528937154,48.56392927,0.576641959,0.576641959,0.576641959,3.391392288,1.105579113,4.496971402,1.968 -754,1992/1/24,0.7,7.6,253.9907917,6.9,2.565703457,0.7,0.991583255,5.325879798,5.766977042,0.65111605,50.67098101,0.685687679,0.685687679,0.685687679,4.345612981,1.336803729,5.68241671,2.904 -755,1992/1/25,0.4,0,252.6426108,0,0,0.382835578,0.965345351,0.965345351,3.07045061,0.459619466,50.35121609,0.79558315,0.79558315,0.79558315,4.185798683,1.255202616,5.441001299,3.408 -756,1992/1/26,0.3,0,251.414067,0,0,0.286616972,0.941926834,0.941926834,0.859558169,0.147449672,48.5878964,0.778149168,0.778149168,0.778149168,3.401027022,0.92559884,4.326625861,3.096 -757,1992/1/27,0.1,0,250.3958123,0,0,0.095388242,0.922866475,0.922866475,0.840203407,0.094050536,47.22354962,0.686872805,0.686872805,0.686872805,2.891422989,0.78092334,3.672346329,2.904 -758,1992/1/28,0.2,0,249.3025736,0,0,0.190488258,0.902750412,0.902750412,0.822631977,0.092069926,46.13220561,0.621703313,0.621703313,0.621703313,2.535679301,0.713773239,3.24945254,2.592 -759,1992/1/29,0.4,0,248.0422495,0,0,0.380323405,0.880000695,0.880000695,0.803486968,0.090012962,45.23493428,0.572852417,0.572852417,0.572852417,2.273610722,0.662865378,2.9364761,2.316 -760,1992/1/30,0.7,0,246.5248309,0,0,0.664192125,0.853226511,0.853226511,0.781422162,0.087680714,44.4790681,0.534794406,0.534794406,0.534794406,2.072082748,0.62247512,2.694557869,2.052 -761,1992/1/31,0.7,10.1,249.3603145,9.4,3.739287612,0.7,0.903803936,6.564516325,3.024426483,0.211000855,45.62367963,0.504165195,0.504165195,0.504165195,2.383980141,0.71516605,3.099146191,2.232 -762,1992/2/1,0.4,1.8,249.0114476,1.4,0.54858676,0.4,0.897453701,1.748866941,4.005408178,0.483388361,47.27193323,0.55105388,0.55105388,0.55105388,2.908208456,1.034442241,3.942650696,2.316 -763,1992/2/2,0.6,5.7,250.0834433,5.1,1.989077931,0.6,0.917082195,4.028004264,2.474464184,0.281710516,47.41275565,0.623935585,0.623935585,0.623935585,2.95757735,0.905646101,3.863223451,2.232 -764,1992/2/3,0.6,22.3,257.0488929,21.7,8.018688101,0.6,1.053238568,14.73455047,7.855345221,0.610927774,51.24889368,0.630465279,0.630465279,0.630465279,4.64967247,1.241393052,5.891065523,2.316 -765,1992/2/4,0.9,4.5,257.2584981,3.6,1.267180529,0.9,1.057575309,3.390394781,8.779034972,1.098176519,54.24988607,0.827796745,0.827796745,0.827796745,6.605839327,1.925973263,8.53181259,5.088 -766,1992/2/5,0.9,0,255.3745635,0,0,0.86482464,1.0191099,1.0191099,2.114463871,0.420785613,52.18644025,1.01023844,1.01023844,1.01023844,5.188148132,1.431024053,6.619172185,6.648 -767,1992/2/6,0.7,3.4,255.3313531,2.7,0.975030683,0.7,1.018241102,2.74321042,1.598388597,0.167722378,50.4381689,0.882022859,0.882022859,0.882022859,4.228682813,1.049745237,5.27842805,5.904 -768,1992/2/7,0.6,0,253.7689166,0,0,0.575210506,0.987226043,0.987226043,1.775102333,0.215442937,49.29774106,0.78286265,0.78286265,0.78286265,3.698392815,0.998305587,4.696698402,5.496 -769,1992/2/8,0.7,0,252.1435109,0,0,0.669630222,0.955775461,0.955775461,0.876077334,0.118742774,47.79933448,0.722640921,0.722640921,0.722640921,3.097124834,0.841383695,3.938508529,4.584 -770,1992/2/9,0.9,2.2,251.6882546,1.3,0.491856902,0.9,0.947113197,1.755256295,1.176071655,0.113497051,46.856937,0.648641091,0.648641091,0.648641091,2.767110232,0.762138142,3.529248374,4.104 -771,1992/2/10,0.7,1.5,251.0578732,0.8,0.304842167,0.7,0.935223564,1.430381397,1.451373004,0.158965429,46.31954241,0.604973871,0.604973871,0.604973871,2.593741463,0.7639393,3.357680764,3.984 -772,1992/2/11,0.5,0,249.6717961,0,0,0.476572828,0.90950427,0.90950427,1.081545396,0.135436608,45.60387983,0.581035803,0.581035803,0.581035803,2.378243783,0.716472411,3.094716193,3 -773,1992/2/12,0.4,0,248.4047721,0,0,0.380527472,0.886496514,0.886496514,0.809463489,0.096588775,44.80629092,0.55021732,0.55021732,0.55021732,2.157269715,0.646806095,2.80407581,2.496 -774,1992/2/13,0.6,3.6,248.6978255,3,1.184829213,0.6,0.891775798,2.706946585,1.517104127,0.12887978,44.70903314,0.517266631,0.517266631,0.517266631,2.131628541,0.646146411,2.777774952,2.316 -775,1992/2/14,0.7,0,247.1684862,0,0,0.664837344,0.864502034,0.864502034,1.708304588,0.208782389,44.78029584,0.513347506,0.513347506,0.513347506,2.150389396,0.722129895,2.872519291,2.052 -776,1992/2/15,0.6,0.1,245.8530313,0,0,0.573869978,0.84158483,0.84158483,0.768997255,0.107677409,44.0906375,0.516217041,0.516217041,0.516217041,1.974872635,0.62389445,2.598767085,1.968 -777,1992/2/16,0.7,10.5,248.8836844,9.8,3.925790208,0.7,0.895137129,6.76934692,3.099476865,0.214542747,45.36813909,0.488922819,0.488922819,0.488922819,2.310898092,0.703465566,3.014363658,1.968 -778,1992/2/17,0.6,0,247.4442585,0,0,0.570056302,0.869369647,0.869369647,3.761339271,0.477517382,46.89126652,0.540326618,0.540326618,0.540326618,2.778538456,1.017844,3.796382456,2.052 -779,1992/2/18,0.6,0,246.0307669,0,0,0.568839246,0.844652282,0.844652282,0.772666865,0.155980133,45.82688025,0.606526602,0.606526602,0.606526602,2.443579742,0.762506736,3.206086477,1.884 -780,1992/2/19,0.7,0,244.5492342,0,0,0.662175828,0.819356918,0.819356918,0.75019287,0.084201539,44.94298836,0.559691882,0.559691882,0.559691882,2.193776644,0.643893421,2.837670065,1.728 -781,1992/2/20,0.8,0,243.0006813,0,0,0.75497879,0.793574097,0.793574097,0.72723445,0.08166812,44.19295724,0.522811094,0.522811094,0.522811094,2.000076663,0.604479214,2.604555876,1.728 -782,1992/2/21,0.7,0,241.5712872,0,0,0.659034292,0.770359851,0.770359851,0.705044752,0.079151966,43.54559578,0.492905548,0.492905548,0.492905548,1.845311757,0.572057515,2.417369272,1.5 -783,1992/2/22,0.9,6.4,243.1130905,5.5,2.337226717,0.9,0.795423349,3.958196632,1.952833716,0.147282587,44.01105734,0.468093717,0.468093717,0.468093717,1.95546587,0.615376304,2.570842173,1.344 -784,1992/2/23,0.8,19.7,249.847245,18.9,7.646882309,0.8,0.912727864,12.16584556,6.805207522,0.538378981,48.09437951,0.485841145,0.485841145,0.485841145,3.207726503,1.024220126,4.231946629,1.968 -785,1992/2/24,0.8,1.1,249.0659596,0.3,0.117158159,0.8,0.898443572,1.081285412,6.56976645,0.876476641,50.87581788,0.6627628,0.6627628,0.6627628,4.451090875,1.53923944,5.990330315,3.744 -786,1992/2/25,0.8,0,247.436554,0,0,0.760172198,0.869233358,0.869233358,0.889375374,0.234207898,49.00091772,0.806896621,0.806896621,0.806896621,3.571172155,1.041104519,4.612276674,2.688 -787,1992/2/26,0.8,0,245.8369116,0,0,0.758335346,0.841307073,0.841307073,0.771276365,0.088811367,47.49349077,0.707526534,0.707526534,0.707526534,2.986229853,0.796337901,3.782567754,2.688 -788,1992/2/27,0.6,0,244.4517459,0,0,0.567451571,0.817714106,0.817714106,0.747854797,0.083942232,46.29081614,0.634230762,0.634230762,0.634230762,2.58476019,0.718172994,3.302933185,2.592 -789,1992/2/28,0.4,0,243.2760912,0,0,0.377543621,0.798111059,0.798111059,0.728197539,0.081619405,45.30549498,0.579775575,0.579775575,0.579775575,2.293294273,0.66139498,2.954689253,2.496 -790,1992/2/29,0.3,0,242.2127297,0,0,0.282652958,0.78070855,0.78070855,0.711424227,0.079660344,44.48184598,0.537719841,0.537719841,0.537719841,2.072793065,0.617380185,2.690173249,2.136 -791,1992/3/1,0.4,0,241.074116,0,0,0.376198633,0.76241509,0.76241509,0.695409956,0.077874583,43.78117648,0.504275409,0.504275409,0.504275409,1.900354867,0.582149991,2.482504858,2.052 -792,1992/3/2,0.6,0,239.7690792,0,0,0.563162282,0.741874545,0.741874545,0.678058022,0.076006421,43.17473492,0.477017135,0.477017135,0.477017135,1.761516717,0.553023556,2.314540273,1.8 -793,1992/3/3,0.6,0,238.4850363,0,0,0.561940685,0.722102196,0.722102196,0.659875045,0.07399573,42.64189991,0.454288625,0.454288625,0.454288625,1.646998678,0.528284355,2.175283032,1.8 -794,1992/3/4,0.3,0,237.4974241,0,0,0.280426879,0.707185314,0.707185314,0.64399832,0.072116012,42.1698127,0.434966586,0.434966586,0.434966586,1.551052113,0.507082597,2.05813471,1.284 -795,1992/3/5,0.8,0.1,236.1570768,0,0,0.753008331,0.687338962,0.687338962,0.6286255,0.070458855,41.74740159,0.41834428,0.41834428,0.41834428,1.469380895,0.488803135,1.95818403,1.284 -796,1992/3/6,1,13,240.7196101,12,5.319323886,1,0.756790566,7.43746668,3.285571101,0.217132805,43.58290028,0.4038602,0.4038602,0.4038602,1.853932612,0.620993005,2.474925618,1.344 -797,1992/3/7,0.9,5.6,241.9627031,4.7,2.019754505,0.9,0.776661504,3.456906999,5.121006254,0.576761283,46.51711588,0.469498738,0.469498738,0.469498738,2.656289387,1.046260021,3.702549407,1.8 -798,1992/3/8,0.7,11.4,245.5974694,10.7,4.47195622,0.7,0.837189971,7.065233751,4.536861086,0.471840935,48.34081098,0.589756469,0.589756469,0.589756469,3.302922452,1.061597404,4.364519856,1.644 -799,1992/3/9,0.7,0.4,244.4953378,0,0,0.683683241,0.81844836,0.81844836,3.890614008,0.526849614,49.23500141,0.674724911,0.674724911,0.674724911,3.67114849,1.201574525,4.872723015,1.8 -800,1992/3/10,0.8,4.8,245.3136936,4,1.650687443,0.8,0.832331638,3.181644196,1.670298885,0.207392862,48.32715054,0.719427152,0.719427152,0.719427152,3.297576907,0.926820014,4.224396921,1.728 -801,1992/3/11,0.7,0.4,244.2163759,0,0,0.683558986,0.813758745,0.813758745,1.92793146,0.238317503,47.82320189,0.67405781,0.67405781,0.67405781,3.105937927,0.912375312,4.01831324,2.4 -802,1992/3/12,0.8,4.7,245.004278,3.9,1.614962464,0.8,0.827060293,3.112097829,1.640453419,0.159751659,47.22240405,0.649775388,0.649775388,0.649775388,2.891026646,0.809527047,3.700553694,1.572 -803,1992/3/13,0.8,9.7,247.7383581,8.9,3.608665134,0.8,0.8745851,6.165919966,4.007448841,0.351133893,48.48976326,0.621650529,0.621650529,0.621650529,3.36174016,0.972784422,4.334524582,1.8 -804,1992/3/14,0.5,11.7,251.1726206,11.2,4.371641284,0.5,0.937378794,7.76573751,6.181413504,0.615690542,50.89310186,0.682029573,0.682029573,0.682029573,4.460104477,1.297720114,5.757824592,2.136 -805,1992/3/15,0.6,3.5,251.3387816,2.9,1.106667822,0.6,0.940506802,2.733838979,5.001067479,0.647255507,51.76385168,0.807856469,0.807856469,0.807856469,4.938174122,1.455111976,6.393286098,2.4 -806,1992/3/16,0.6,0.2,250.0410466,0,0,0.581435566,0.916299377,0.916299377,1.742347653,0.292836471,50.23455326,0.857276714,0.857276714,0.857276714,4.128922794,1.150113185,5.279035979,2.592 -807,1992/3/17,0.6,0,248.5803725,0,0,0.571017294,0.889656872,0.889656872,0.814143001,0.11248164,48.46761917,0.771857073,0.771857073,0.771857073,3.35293416,0.884338712,4.237272873,2.688 -808,1992/3/18,1,0,246.7734028,0,0,0.949402814,0.857566829,0.857566829,0.788012432,0.088575562,47.09075861,0.680940063,0.680940063,0.680940063,2.845813057,0.769515625,3.615328682,2.904 -809,1992/3/19,1.2,10.6,249.5935413,9.4,3.728207938,1.2,0.90806943,6.579861491,3.032680769,0.211739139,47.68413282,0.61560606,0.61560606,0.61560606,3.054912614,0.827345199,3.882257812,3.528 -810,1992/3/20,1,8.9,251.6846107,7.9,3.038113508,1,0.947044121,5.808930614,5.61728147,0.573574366,49.95087963,0.643186017,0.643186017,0.643186017,3.993720681,1.216760383,5.210481064,4.224 -811,1992/3/21,1,1,250.7550556,0,0,1,0.929555131,0.929555131,3.300202963,0.482883794,49.99386264,0.756709131,0.756709131,0.756709131,4.013929084,1.239592925,5.25352201,5.088 -812,1992/3/22,0.8,5.3,251.5305788,4.5,1.719651091,0.8,0.94412789,3.724476798,1.94086925,0.211852345,49.08636103,0.758990617,0.758990617,0.758990617,3.607361479,0.970842962,4.578204441,4.704 -813,1992/3/23,0.7,0.3,250.2292614,0,0,0.681538657,0.919778722,0.919778722,2.24389673,0.277920896,48.62579638,0.711853973,0.711853973,0.711853973,3.416315347,0.989774869,4.406090216,4.464 -814,1992/3/24,1,1.2,249.40244,0.2,0.077751747,1,0.904573171,1.026821424,0.87009325,0.12740673,47.27527009,0.688749867,0.688749867,0.688749867,2.909369407,0.816156597,3.725526004,3.744 -815,1992/3/25,1.1,1.4,248.6297017,0.3,0.117807982,1.1,0.890546305,1.072738323,0.94228096,0.102427553,46.26494494,0.624089748,0.624089748,0.624089748,2.576695861,0.726517301,3.303213162,3.312 -816,1992/3/26,1.3,9.8,250.9989334,8.5,3.303349805,1.3,0.93411809,6.130768285,2.963885052,0.217755699,46.99435456,0.578642271,0.578642271,0.578642271,2.813117707,0.79639797,3.609515677,3.192 -817,1992/3/27,1.9,5.1,251.2824496,3.2,1.222961601,1.9,0.9394454,2.916483799,4.247731991,0.482868089,48.49104315,0.611206403,0.611206403,0.611206403,3.362249798,1.094074491,4.456324289,3.528 -818,1992/3/28,1.9,3.3,250.8859183,1.4,0.535470023,1.9,0.932001331,1.796531308,2.182343682,0.304975585,48.13300405,0.682092583,0.682092583,0.682092583,3.22247537,0.987068168,4.209543537,3.984 -819,1992/3/29,1.6,0,248.4746478,0,0,1.523517433,0.887753011,0.887753011,1.257821096,0.172914533,47.17930197,0.664627595,0.664627595,0.664627595,2.876150771,0.837542128,3.713692899,3.744 -820,1992/3/30,1.2,1.5,247.7195566,0.3,0.119159689,1.2,0.874250928,1.055091239,0.86509279,0.103166725,46.12927969,0.619666862,0.619666862,0.619666862,2.534781929,0.722833587,3.257615516,3.528 -821,1992/3/31,1.8,0.2,245.3698172,0,0,1.716448679,0.833290684,0.833290684,0.861949,0.098667017,45.27827193,0.572725261,0.572725261,0.572725261,2.285682022,0.671392278,2.9570743,3.312 -822,1992/4/1,2.1,0,242.6003458,0,0,1.982455156,0.787016289,0.787016289,0.731678647,0.084929336,44.47539623,0.536589827,0.536589827,0.536589827,2.071144172,0.621519162,2.692663334,3.192 -823,1992/4/2,1.4,0.3,240.8075205,0,0,1.334643058,0.758182205,0.758182205,0.696922335,0.078614512,43.77697704,0.50401954,0.50401954,0.50401954,1.899361069,0.582634052,2.481995121,2.904 -824,1992/4/3,0.9,3.2,241.0387085,2.3,0.993039746,0.9,0.76185181,2.068812064,1.200191997,0.104926546,43.59685859,0.476857012,0.476857012,0.476857012,1.857167456,0.581783558,2.438951014,2.592 -825,1992/4/4,0.7,1.9,240.7988117,1.2,0.51814745,0.7,0.75804425,1.4398968,1.613447264,0.17761874,43.78020594,0.470025232,0.470025232,0.470025232,1.900125147,0.647643972,2.547769119,2.316 -826,1992/4/5,0.7,0.1,239.4982373,0,0,0.662906237,0.737668095,0.737668095,1.018457503,0.135993416,43.45184144,0.476980125,0.476980125,0.476980125,1.823802127,0.612973541,2.436775668,2.052 -827,1992/4/6,0.8,0,238.0341815,0,0,0.748794447,0.715261351,0.715261351,0.655048395,0.081557248,42.87516562,0.464575854,0.464575854,0.464575854,1.69630007,0.546133102,2.242433172,1.8 -828,1992/4/7,1.1,0,236.3177111,0,0,1.026776922,0.689693496,0.689693496,0.633633375,0.07122921,42.3625376,0.443351641,0.443351641,0.443351641,1.589613031,0.514580851,2.104193882,1.884 -829,1992/4/8,1.1,1.6,235.8619209,0.5,0.227239317,1.1,0.683029534,0.955790216,0.725858573,0.075111723,41.9964116,0.42507432,0.42507432,0.42507432,1.517058897,0.500186043,2.01724494,1.572 -830,1992/4/9,0.8,0.1,234.5466927,0,0,0.751137861,0.664090326,0.664090326,0.744960952,0.086037847,41.69433602,0.412354393,0.412354393,0.412354393,1.459390923,0.498392239,1.957783162,1.344 -831,1992/4/10,1,0,232.9768749,0,0,0.927776494,0.6420413,0.6420413,0.588969738,0.06936545,41.29863149,0.402066325,0.402066325,0.402066325,1.386740597,0.471431775,1.858172372,1.416 -832,1992/4/11,1.4,0,231.0661488,0,0,1.294722406,0.616003685,0.616003685,0.56754973,0.063892673,40.93268237,0.388868527,0.388868527,0.388868527,1.322367371,0.4527612,1.775128571,1.284 -833,1992/4/12,1.8,0,228.8215282,0,0,1.658111194,0.586509392,0.586509392,0.542750148,0.061260079,40.58822144,0.376941281,0.376941281,0.376941281,1.264152359,0.43820136,1.702353719,1.1472 -834,1992/4/13,1.9,0,226.5215411,0,0,1.742509237,0.557477859,0.557477859,0.516388121,0.058361576,40.25983822,0.365955313,0.365955313,0.365955313,1.210726657,0.424316889,1.635043546,0.9576 -835,1992/4/14,2,3.2,226.5610868,1.2,0.597512753,2,0.55796705,1.160454297,0.73996521,0.069325493,40.16054082,0.355696893,0.355696893,0.355696893,1.194959501,0.425022386,1.619981887,0.9576 -836,1992/4/15,1.7,11.4,230.6881028,9.7,4.737970212,1.7,0.610954293,5.572984081,2.787793206,0.205788527,41.81817306,0.352635813,0.352635813,0.352635813,1.482796776,0.55842434,2.041221116,0.9 -837,1992/4/16,1.9,4.8,231.4517487,2.9,1.384834508,1.9,0.621188539,2.136354031,3.657877798,0.429822364,43.94324858,0.406261509,0.406261509,0.406261509,1.939063787,0.836083873,2.77514766,1.0824 -838,1992/4/17,1.9,7.6,233.4878702,5.7,2.685274208,1.9,0.649152774,3.663878566,2.526241391,0.287696915,44.79771782,0.483226277,0.483226277,0.483226277,2.154998428,0.770923192,2.92592162,1.344 -839,1992/4/18,1.9,1.1,232.1167401,0,0,1.840917417,0.630212685,0.630212685,2.098893462,0.281783219,45.16051554,0.516920311,0.516920311,0.516920311,2.253016052,0.79870353,3.051719582,1.644 -840,1992/4/19,1.9,0.4,230.1283372,0,0,1.784863863,0.603539017,0.603539017,0.556652672,0.098215553,44.23770146,0.531721354,0.531721354,0.531721354,2.011188113,0.629936907,2.64112502,1.416 -841,1992/4/20,1.2,3.8,230.765295,2.6,1.248940425,1.2,0.611982597,1.963042173,1.080322902,0.090509508,43.8871032,0.494654449,0.494654449,0.494654449,1.925575605,0.585163958,2.510739562,1.212 -842,1992/4/21,1.1,9.4,234.0212335,8.3,3.912581613,1.1,0.656643085,5.044061472,2.984044339,0.247898123,45.11242057,0.481068797,0.481068797,0.481068797,2.239795771,0.72896692,2.968762691,1.1472 -843,1992/4/22,1.2,8.2,236.5353661,7,3.207026765,1.2,0.692894189,4.485867424,4.319113514,0.455815696,47.10917683,0.529742039,0.529742039,0.529742039,2.852099291,0.985557735,3.837657026,1.416 -844,1992/4/23,1.3,0,234.6595691,0,0,1.210098044,0.665698947,0.665698947,2.527937335,0.371317894,47.32636393,0.616449192,0.616449192,0.616449192,2.927199431,0.987767086,3.914966517,1.8 -845,1992/4/24,1.2,0.9,233.7284927,0,0,1.17855301,0.652523397,0.652523397,0.593923395,0.111336656,46.03938805,0.626453687,0.626453687,0.626453687,2.507352961,0.737790343,3.245143304,1.644 -846,1992/4/25,1.5,0.2,231.8972604,0,0,1.40400958,0.627222681,0.627222681,0.577274764,0.064852402,44.98136614,0.568828544,0.568828544,0.568828544,2.204125219,0.633680946,2.837806165,1.884 -847,1992/4/26,1.5,5.9,233.3205846,4.4,2.07014192,1.5,0.646817727,2.976675807,1.492766053,0.114591013,44.83390683,0.524375301,0.524375301,0.524375301,2.164600658,0.638966314,2.803566972,1.644 -848,1992/4/27,1.4,2,232.9596417,0.6,0.280859593,1.4,0.641802566,0.960942973,1.882594922,0.225712468,45.02023435,0.518383334,0.518383334,0.518383334,2.21465074,0.744095802,2.958746542,1.728 -849,1992/4/28,1.7,0,230.7758114,0,0,1.571707496,0.612122797,0.612122797,0.727030287,0.11221176,44.25718408,0.525962902,0.525962902,0.525962902,2.016043459,0.638174662,2.654218121,1.8 -850,1992/4/29,2,1,229.2622902,0,0,1.921311832,0.592209343,0.592209343,0.543042725,0.064889261,43.46812268,0.495417343,0.495417343,0.495417343,1.827521462,0.560306604,2.387828066,1.968 -851,1992/4/30,2.2,0.1,226.7744348,0,0,2.027243241,0.560612185,0.560612185,0.520504401,0.058762257,42.77816837,0.465185402,0.465185402,0.465185402,1.675644118,0.523947659,2.199591777,1.8 -852,1992/5/1,2.1,0.1,224.4158918,0,0,1.926618557,0.531924412,0.531924412,0.493216454,0.055804201,42.16177419,0.439851049,0.439851049,0.439851049,1.549461677,0.49565525,2.045116928,1.728 -853,1992/5/2,2.3,2.2,223.8002033,0,0,2.291054902,0.524633569,0.524633569,0.475851357,0.053370771,41.61173287,0.418065236,0.418065236,0.418065236,1.443957914,0.471436007,1.915393921,1.572 -854,1992/5/3,2.1,4,224.2376711,1.9,0.967273418,2.1,0.529805631,1.462532214,0.842732647,0.073136167,41.44120487,0.39928527,0.39928527,0.39928527,1.412545919,0.472421438,1.884967357,1.5 -855,1992/5/4,2.2,1.6,223.174491,0,0,2.145873468,0.517306633,0.517306633,0.942821648,0.11444383,41.37677996,0.393587494,0.393587494,0.393587494,1.400834057,0.508031324,1.908865381,1.416 -856,1992/5/5,2,0.1,220.959805,0,0,1.822654333,0.49203165,0.49203165,0.455589847,0.0623241,40.90603689,0.39145009,0.39145009,0.39145009,1.317783005,0.45377419,1.771557195,1.5 -857,1992/5/6,2.1,6.9,222.9323665,4.8,2.487055085,2.1,0.514493609,2.827438525,1.365544473,0.100763289,41.26665506,0.376083173,0.376083173,0.376083173,1.38100947,0.476846463,1.857855932,1.344 -858,1992/5/7,2.4,4.5,223.4879517,2.1,1.076551954,2.4,0.520966815,1.54441486,2.037773744,0.227037315,42.14591622,0.38781573,0.38781573,0.38781573,1.546328322,0.614853045,2.161181367,1.416 -859,1992/5/8,2.3,6.5,225.0812008,4.2,2.1331434,2.3,0.539894282,2.606750882,1.809700819,0.192891999,42.71154697,0.417515142,0.417515142,0.417515142,1.66158521,0.610407142,2.271992352,1.5 -860,1992/5/9,1.8,0.1,223.0179854,0,0,1.64772845,0.515486927,0.515486927,1.519820258,0.20224262,42.95529324,0.437458176,0.437458176,0.437458176,1.71353216,0.639700796,2.353232957,1.8 -861,1992/5/10,2.1,0,220.6266733,0,0,1.902994745,0.488317347,0.488317347,0.453203559,0.075617184,42.28146448,0.446258387,0.446258387,0.446258387,1.573290709,0.521875571,2.09516628,1.5 -862,1992/5/11,2.8,0,217.6479313,0,0,2.522644875,0.45609715,0.45609715,0.426755446,0.04844496,41.67473745,0.42223386,0.42223386,0.42223386,1.455716332,0.470678819,1.926395152,1.344 -863,1992/5/12,3.2,0.1,214.4507824,0,0,2.873708943,0.423439918,0.423439918,0.397584597,0.045272914,41.11892897,0.401405239,0.401405239,0.401405239,1.354798319,0.446678153,1.801476472,1.284 -864,1992/5/13,2.6,3.1,214.304104,0.5,0.275309656,2.6,0.421988087,0.646678431,0.469297142,0.047629238,40.6900739,0.382978384,0.382978384,0.382978384,1.281130589,0.430607622,1.711738211,1.212 -865,1992/5/14,2.4,2.3,213.7980286,0,0,2.389065805,0.417009616,0.417009616,0.491268744,0.056993718,40.32874856,0.369179569,0.369179569,0.369179569,1.221773659,0.426173287,1.647946946,1.212 -866,1992/5/15,2.6,0,211.0998191,0,0,2.306952702,0.391256719,0.391256719,0.365133711,0.043844464,39.89764959,0.357832343,0.357832343,0.357832343,1.154065021,0.401676808,1.555741829,1.1472 -867,1992/5/16,2.1,0,208.8765041,0,0,1.852303954,0.371011068,0.371011068,0.344132009,0.038985026,39.49294571,0.344622457,0.344622457,0.344622457,1.09345835,0.383607483,1.477065833,1.0824 -868,1992/5/17,2.2,0,206.595659,0,0,1.929720014,0.351125097,0.351125097,0.326053033,0.036903402,39.11254526,0.332541868,0.332541868,0.332541868,1.038995351,0.369445269,1.408440621,1.02 -869,1992/5/18,2.5,0,204.0858688,0,0,2.179548184,0.330242072,0.330242072,0.307761725,0.034888677,38.75221439,0.321465417,0.321465417,0.321465417,0.989558008,0.356354094,1.345912101,0.9576 -870,1992/5/19,2.7,0.9,202.2102355,0,0,2.460336385,0.315296831,0.315296831,0.291313013,0.032942467,38.41024043,0.311218795,0.311218795,0.311218795,0.94450577,0.344161263,1.288667033,0.9 -871,1992/5/20,2.7,1.3,200.6984522,0,0,2.508132912,0.303650436,0.303650436,0.279165666,0.031450321,38.08751829,0.301711992,0.301711992,0.301711992,0.903599796,0.333162313,1.236762109,0.9 -872,1992/5/21,2.4,4.8,201.83582,2.4,1.449747382,2.4,0.312379571,1.262632189,0.652177739,0.051551992,38.12442771,0.292932358,0.292932358,0.292932358,0.908200675,0.34448435,1.252685025,0.8424 -873,1992/5/22,2.3,2.7,201.7647794,0.4,0.240787876,2.3,0.311828513,0.471040637,0.823612221,0.097577419,38.31029434,0.293927113,0.293927113,0.293927113,0.931672704,0.391504532,1.323177237,0.9 -874,1992/5/23,2.6,0,199.2342126,0,0,2.237864583,0.292702141,0.292702141,0.353475271,0.052525771,38.06227788,0.298973154,0.298973154,0.298973154,0.900464885,0.351498925,1.251963811,0.9 -875,1992/5/24,2.4,0,196.9063188,0,0,2.051943366,0.275950523,0.275950523,0.256813379,0.03100589,37.74902631,0.292253484,0.292253484,0.292253484,0.862318434,0.323259374,1.185577807,0.7848 -876,1992/5/25,2.7,0,194.3552856,0,0,2.292546934,0.258486167,0.258486167,0.241455321,0.02740929,37.4475027,0.283921396,0.283921396,0.283921396,0.826900333,0.311330686,1.138231019,0.732 -877,1992/5/26,3.2,0.8,192.0879563,0,0,2.823610088,0.243719294,0.243719294,0.226803173,0.02573047,37.15648019,0.276062868,0.276062868,0.276062868,0.793888548,0.301793338,1.095681885,0.6792 -878,1992/5/27,2.7,6.1,193.9937319,3.4,2.161860146,2.7,0.256084496,1.49422435,0.713420163,0.051994596,37.32559342,0.26862657,0.26862657,0.26862657,0.812933501,0.320621166,1.133554666,0.6792 -879,1992/5/28,2.5,20.2,204.4858905,17.7,10.82566052,2.5,0.333501892,7.207841372,3.602243999,0.26008721,40.02676987,0.272930145,0.272930145,0.272930145,1.173997701,0.533017355,1.707015057,0.6792 -880,1992/5/29,2.4,8.8,207.8639416,6.4,3.740125167,2.4,0.362074148,3.021948981,4.833216814,0.561516554,43.39716734,0.348541814,0.348541814,0.348541814,1.811361155,0.910058369,2.721419523,1.5 -881,1992/5/30,2.2,1.4,206.8099645,0,0,2.101020783,0.352956265,0.352956265,1.665238709,0.292980151,43.6543867,0.462533106,0.462533106,0.462533106,1.870552455,0.755513257,2.626065712,1.344 -882,1992/5/31,2.4,6.2,208.6380309,3.8,2.196956893,2.4,0.36889051,1.971933617,0.957316325,0.102310787,43.29548067,0.472199586,0.472199586,0.472199586,1.788421938,0.574510373,2.362932311,1.212 -883,1992/6/1,2.5,2.2,208.0111338,0,0,2.463534636,0.363362416,0.363362416,1.139195969,0.142790794,43.13965934,0.458750935,0.458750935,0.458750935,1.753768238,0.601541729,2.355309967,1.0824 -884,1992/6/2,2.8,0,205.2224956,0,0,2.449066099,0.339572165,0.339572165,0.317626671,0.054785916,42.32770253,0.452998196,0.452998196,0.452998196,1.582581673,0.507784111,2.090365785,1.212 -885,1992/6/3,3.3,0,202.044264,0,0,2.86423063,0.314000975,0.314000975,0.295511799,0.033676527,41.60446049,0.423852179,0.423852179,0.423852179,1.442606019,0.457528706,1.900134724,1.02 -886,1992/6/4,3.7,0,198.5734365,0,0,3.182961029,0.287866404,0.287866404,0.272275138,0.031128046,40.95036025,0.399041086,0.399041086,0.399041086,1.325416464,0.430169132,1.755585596,0.9576 -887,1992/6/5,3.7,0,195.1568927,0,0,3.152668355,0.263875459,0.263875459,0.249600968,0.028568285,40.35195864,0.377511361,0.377511361,0.377511361,1.225513943,0.406079646,1.631593589,0.9 -888,1992/6/6,3.2,0,192.2106047,0,0,2.701787653,0.244500349,0.244500349,0.229832828,0.026245225,39.80100822,0.358553653,0.358553653,0.358553653,1.139336906,0.384798878,1.524135784,0.8424 -889,1992/6/7,3.1,0,189.3885775,0,0,2.594997739,0.227029471,0.227029471,0.213147589,0.024295071,39.29153911,0.341709647,0.341709647,0.341709647,1.064326344,0.366004718,1.430331062,0.6792 -890,1992/6/8,3,0,186.6872059,0,0,2.490113549,0.211258087,0.211258087,0.198095267,0.022562827,38.81786545,0.326643956,0.326643956,0.326643956,0.998412883,0.349206783,1.347619666,0.6288 -891,1992/6/9,3.1,3.5,186.7394117,0.4,0.263760132,3.1,0.211554307,0.347794176,0.244077492,0.024308782,38.42818529,0.313068058,0.313068058,0.313068058,0.94682571,0.33737684,1.28420255,0.6792 -892,1992/6/10,3.2,1.4,185.0532105,0,0,2.884047737,0.202153463,0.202153463,0.255472308,0.029972285,38.08284461,0.302205629,0.302205629,0.302205629,0.903018618,0.332177913,1.235196531,0.6792 -893,1992/6/11,3.5,0,182.0035519,0,0,2.863655172,0.186003466,0.186003466,0.175557271,0.02157858,37.69529385,0.292806569,0.292806569,0.292806569,0.855914593,0.314385149,1.170299742,0.6792 -894,1992/6/12,4.1,0.6,178.9973996,0,0,3.435039027,0.171113293,0.171113293,0.161520028,0.01846399,37.32630847,0.28250943,0.28250943,0.28250943,0.813014838,0.30097342,1.113988257,0.5808 -895,1992/6/13,4,0,175.6369124,0,0,3.204871476,0.15561565,0.15561565,0.147878863,0.016946779,36.97343586,0.272948446,0.272948446,0.272948446,0.773699919,0.289895225,1.063595145,0.4896 -896,1992/6/14,3.5,2.4,174.6112174,0,0,3.274578233,0.151116787,0.151116787,0.138276587,0.015645602,36.63792001,0.264023339,0.264023339,0.264023339,0.737815774,0.279668941,1.017484716,0.4464 -897,1992/6/15,3.4,0.1,171.865699,0,0,2.705932882,0.139585494,0.139585494,0.131449107,0.014911632,36.31998815,0.255732438,0.255732438,0.255732438,0.705113407,0.27064407,0.975757477,0.4896 -898,1992/6/16,3.4,7.5,174.6126349,4.1,2.898058803,3.4,0.151122931,1.353064128,0.605070658,0.040730325,36.45432823,0.248049255,0.248049255,0.248049255,0.718779837,0.288779579,1.007559417,0.5352 -899,1992/6/17,3.1,7.6,177.5849663,4.5,3.136786978,3.1,0.164455621,1.527668643,1.286743683,0.124826955,37.19423934,0.251275318,0.251275318,0.251275318,0.798107891,0.376102273,1.174210164,0.4896 -900,1992/6/18,3,17.8,187.3519064,14.8,9.981994716,3,0.215054611,5.033059895,2.759876939,0.227650662,39.17581042,0.269583227,0.269583227,0.269583227,1.047889081,0.497233889,1.545122969,0.7848 -901,1992/6/19,3.5,2.5,186.3158181,0,0,3.326927909,0.209160391,0.209160391,2.623837816,0.356078468,40.81988312,0.323289013,0.323289013,0.323289013,1.303054133,0.679367482,1.982421614,1.8 -902,1992/6/20,3,0,183.6550149,0,0,2.466188028,0.194615106,0.194615106,0.182497525,0.077490959,40.17798264,0.373318173,0.373318173,0.373318173,1.197716181,0.450809132,1.648525314,1.212 -903,1992/6/21,2.7,0.9,181.9996481,0,0,2.369383308,0.185983478,0.185983478,0.171743246,0.019443602,39.59449453,0.353172131,0.353172131,0.353172131,1.108403483,0.372615734,1.481019216,0.8424 -904,1992/6/22,3,2.8,181.6527073,0,0,2.962726891,0.184213966,0.184213966,0.166685994,0.018661315,39.06444772,0.335544244,0.335544244,0.335544244,1.032277045,0.354205559,1.386482604,0.9 -905,1992/6/23,3,3.2,181.6042868,0.2,0.135547565,3,0.183968083,0.248420518,0.191160484,0.0198516,38.6056602,0.320083947,0.320083947,0.320083947,0.970031951,0.339935547,1.309967498,0.9 -906,1992/6/24,2.9,3.2,181.6235576,0.3,0.203336787,2.9,0.18406591,0.280729123,0.236343545,0.024793962,38.2279157,0.307118817,0.307118817,0.307118817,0.921206865,0.331912779,1.253119644,0.8424 -907,1992/6/25,2.9,9,185.5104532,6.1,4.091564445,2.9,0.204668863,2.213104418,1.016134989,0.070107363,38.57481541,0.296729108,0.296729108,0.296729108,0.965964392,0.366836472,1.332800864,0.9 -908,1992/6/26,2.8,11.6,191.0249104,8.8,5.751490272,2.8,0.237033089,3.285542817,2.41551284,0.222059561,40.10964286,0.306260848,0.306260848,0.306260848,1.186946237,0.528320409,1.715266646,1.5 -909,1992/6/27,2.8,1.5,189.7091304,0,0,2.586818069,0.228961962,0.228961962,1.749337622,0.248814043,40.8942885,0.351074079,0.351074079,0.351074079,1.315766061,0.599888123,1.915654184,1.5 -910,1992/6/28,3.1,4.1,190.1252203,1,0.647580008,3.1,0.231490073,0.583910065,0.346305261,0.066737306,40.38538167,0.375705265,0.375705265,0.375705265,1.230917355,0.442442571,1.673359926,1.212 -911,1992/6/29,3.1,3.5,190.1522685,0.4,0.25870333,3.1,0.231655186,0.372951856,0.442169751,0.049574163,40.0149801,0.35959418,0.35959418,0.35959418,1.1721655,0.409168343,1.581333843,1.344 -912,1992/6/30,3.2,0,187.2759602,0,0,2.661690204,0.214618086,0.214618086,0.27309921,0.036307869,39.5364258,0.34818263,0.34818263,0.34818263,1.099836143,0.384490499,1.484326642,1.212 -913,1992/7/1,3,4.5,188.0408076,1.5,0.983894381,3,0.219046929,0.735152548,0.398818712,0.034754933,39.21555942,0.333825034,0.333825034,0.333825034,1.053510119,0.368579967,1.422090086,1.284 -914,1992/7/2,2.9,0,185.4391897,0,0,2.397342785,0.204275183,0.204275183,0.451888369,0.055723249,38.97236776,0.324438537,0.324438537,0.324438537,1.019518566,0.380161786,1.399680352,1.1472 -915,1992/7/3,3.1,0,182.7086477,0,0,2.540899905,0.189642009,0.189642009,0.178066113,0.026367616,38.51037201,0.317451041,0.317451041,0.317451041,0.957512906,0.343818657,1.301331563,1.02 -916,1992/7/4,3.4,0.8,180.4170652,0,0,2.913561429,0.178021135,0.178021135,0.166086413,0.018881715,38.07845874,0.304473838,0.304473838,0.304473838,0.902473519,0.323355553,1.225829072,0.9576 -917,1992/7/5,3.6,0.2,177.5132282,0,0,2.93971384,0.164123104,0.164123104,0.154727925,0.017634116,37.67264755,0.29268856,0.29268856,0.29268856,0.853227677,0.310322677,1.163550354,0.9 -918,1992/7/6,3.7,0,174.4125078,0,0,2.950463077,0.150257399,0.150257399,0.142232469,0.01627188,37.28811585,0.281915842,0.281915842,0.281915842,0.808680013,0.298187722,1.106867735,0.7848 -919,1992/7/7,3.8,16.2,182.7571111,12.4,8.534497561,3.8,0.189894179,4.055396617,1.678146717,0.100906805,38.3069845,0.271972204,0.271972204,0.271972204,0.931250267,0.372879009,1.304129275,0.8424 -920,1992/7/8,3.2,10.7,187.5287867,7.5,4.987749639,3.2,0.216074051,2.728324412,3.125532481,0.330352506,40.48436023,0.298882759,0.298882759,0.298882759,1.247039511,0.629235265,1.876274776,1.212 -921,1992/7/9,2.9,13.8,194.2872825,10.9,7.016528854,2.9,0.258033071,4.141504217,3.013837277,0.319503497,42.28657124,0.362688232,0.362688232,0.362688232,1.5743145,0.68219173,2.256506229,1.212 -922,1992/7/10,2.8,7.5,196.9532089,4.7,2.942206571,2.8,0.27628017,2.034073598,2.894710797,0.351225201,43.71819565,0.422412378,0.422412378,0.422412378,1.885498765,0.773637579,2.659136344,2.592 -923,1992/7/11,2.9,0.1,194.3174901,0,0,2.477484581,0.258234261,0.258234261,1.129034544,0.189283385,43.48944694,0.474619727,0.474619727,0.474619727,1.832402986,0.663903112,2.496306099,2.592 -924,1992/7/12,2.9,0.2,191.8001331,0,0,2.47546275,0.241894228,0.241894228,0.225954905,0.046409428,42.55287002,0.465984616,0.465984616,0.465984616,1.628516438,0.512394044,2.140910483,2.316 -925,1992/7/13,3.1,0,188.9837291,0,0,2.591796473,0.22460752,0.22460752,0.210874845,0.024002705,41.72953119,0.431796365,0.431796365,0.431796365,1.466010037,0.455799069,1.921809106,1.968 -926,1992/7/14,3.9,2.7,187.7691542,0,0,3.697109297,0.217465606,0.217465606,0.199325002,0.022507876,40.99838169,0.403255457,0.403255457,0.403255457,1.333729958,0.425763333,1.759493291,1.8 -927,1992/7/15,3.6,10.3,191.8676203,6.7,4.340787248,3.6,0.242321171,2.601533923,1.137661109,0.074160928,41.15410558,0.379063077,0.379063077,0.379063077,1.361000293,0.453224005,1.814224298,1.8 -928,1992/7/16,2.9,2,190.8768055,0,0,2.754701402,0.236113362,0.236113362,1.406806103,0.180114391,41.51835506,0.384126323,0.384126323,0.384126323,1.426682954,0.564240714,1.990923668,1.884 -929,1992/7/17,2.8,0,188.3207856,0,0,2.335333553,0.220686351,0.220686351,0.20640683,0.051171036,40.81815907,0.396158034,0.396158034,0.396158034,1.302760848,0.44732907,1.750089917,1.884 -930,1992/7/18,3.4,0,185.3059328,0,0,2.811312167,0.203540663,0.203540663,0.191843473,0.021874243,40.18451544,0.373262991,0.373262991,0.373262991,1.198750098,0.395137234,1.593887332,1.344 -931,1992/7/19,3.9,0,181.9284747,0,0,3.191838712,0.185619363,0.185619363,0.176105911,0.02016292,39.60415954,0.353373158,0.353373158,0.353373158,1.10983497,0.373536078,1.483371048,1.212 -932,1992/7/20,3.4,3.8,182.0130303,0.4,0.270607577,3.4,0.186052003,0.315444426,0.218351124,0.02162296,39.11851049,0.335831004,0.335831004,0.335831004,1.039831175,0.357453963,1.397285138,1.1472 -933,1992/7/21,2.9,0,179.4885239,0,0,2.351028117,0.173478245,0.173478245,0.227809336,0.026897116,38.68711344,0.321637048,0.321637048,0.321637048,0.980843437,0.348534164,1.3293776,1.1472 -934,1992/7/22,3.1,0,176.8364146,0,0,2.49109688,0.161012421,0.161012421,0.151205187,0.018748587,38.2266629,0.309392746,0.309392746,0.309392746,0.921048475,0.328141333,1.249189807,1.02 -935,1992/7/23,4,0,173.5092666,0,0,3.180747772,0.146400265,0.146400265,0.139137933,0.015927535,37.79470201,0.296695074,0.296695074,0.296695074,0.867793892,0.312622609,1.180416501,0.7848 -936,1992/7/24,4.1,0,170.1554887,0,0,3.221011084,0.132766789,0.132766789,0.126373668,0.014513115,37.386334,0.285125607,0.285125607,0.285125607,0.819867291,0.299638722,1.119506013,0.732 -937,1992/7/25,4.6,0,166.4701971,0,0,3.56631236,0.118979193,0.118979193,0.114042647,0.013134842,36.99843325,0.274487814,0.274487814,0.274487814,0.776431202,0.287622655,1.064053858,0.6792 -938,1992/7/26,3.6,1.9,165.0511626,0,0,3.205047545,0.113987006,0.113987006,0.105108865,0.011950958,36.6310906,0.26464863,0.26464863,0.26464863,0.737100152,0.276599589,1.01369974,0.5808 -939,1992/7/27,3.4,0,162.3573691,0,0,2.588821174,0.104972283,0.104972283,0.099026598,0.01125971,36.2841756,0.255565634,0.255565634,0.255565634,0.701507233,0.266825344,0.968332577,0.6288 -940,1992/7/28,4,0,159.2521984,0,0,3.009871424,0.095299272,0.095299272,0.090653259,0.010391231,35.95312549,0.247194266,0.247194266,0.247194266,0.668897628,0.257585497,0.926483125,0.5808 -941,1992/7/29,3.7,2.7,158.4130747,0,0,3.446311831,0.092811956,0.092811956,0.084786608,0.009589419,35.63823492,0.239390141,0.239390141,0.239390141,0.639067326,0.24897956,0.888046885,0.5352 -942,1992/7/30,3.3,0,155.882284,0,0,2.445167169,0.085623486,0.085623486,0.080690604,0.009152747,35.33927391,0.232131798,0.232131798,0.232131798,0.611783407,0.241284545,0.853067953,0.4896 -943,1992/7/31,3.7,0,153.0941061,0,0,2.709950352,0.078227581,0.078227581,0.074139023,0.008484794,35.05228651,0.225387414,0.225387414,0.225387414,0.586513836,0.233872207,0.820386043,0.4896 -944,1992/8/1,4.4,0,149.8446032,0,0,3.179239778,0.07026312,0.07026312,0.067258074,0.00773517,34.77560875,0.219045945,0.219045945,0.219045945,0.562981779,0.226781115,0.789762894,0.4464 -945,1992/8/2,4.7,0,146.4380288,0,0,3.34394959,0.062624823,0.062624823,0.060218926,0.006952588,34.5079144,0.213053943,0.213053943,0.213053943,0.540967216,0.220006532,0.760973747,0.3672 -946,1992/8/3,4.3,0.5,143.7168206,0,0,3.16419417,0.057014008,0.057014008,0.054145514,0.006229415,34.24906342,0.207368829,0.207368829,0.207368829,0.520365323,0.213598244,0.733963567,0.3288 -947,1992/8/4,3.8,0,141.0361008,0,0,2.628832189,0.051887622,0.051887622,0.049287178,0.005655054,33.99922321,0.201975379,0.201975379,0.201975379,0.501102774,0.207630433,0.708733207,0.2928 -948,1992/8/5,3.5,0,138.5985638,0,0,2.389983805,0.047553123,0.047553123,0.044986304,0.005154083,33.75800497,0.196865432,0.196865432,0.196865432,0.48306997,0.202019515,0.685089485,0.2928 -949,1992/8/6,3.5,0,136.195045,0,0,2.359950961,0.043567912,0.043567912,0.041223258,0.00471896,33.52507767,0.192020098,0.192020098,0.192020098,0.466170659,0.196739059,0.662909717,0.3288 -950,1992/8/7,4,2.6,135.2175054,0,0,3.53551389,0.042025698,0.042025698,0.038601793,0.004369943,33.30074187,0.187422729,0.187422729,0.187422729,0.45036032,0.191792672,0.642152992,0.2928 -951,1992/8/8,3.5,2.6,134.5776888,0,0,3.198776354,0.041040186,0.041040186,0.037433753,0.004199128,33.08562646,0.183069782,0.183069782,0.183069782,0.435618942,0.18726891,0.622887852,0.2928 -952,1992/8/9,3.4,0,132.2960523,0,0,2.243961218,0.037675283,0.037675283,0.035606698,0.004041784,32.87839968,0.17896403,0.17896403,0.17896403,0.42179751,0.183005814,0.604803323,0.3288 -953,1992/8/10,3.6,0,129.9164726,0,0,2.345174767,0.034404999,0.034404999,0.032615669,0.003735433,32.67735061,0.175071451,0.175071451,0.175071451,0.408736191,0.178806884,0.587543075,0.2928 -954,1992/8/11,3.7,0.2,127.635242,0,0,2.44974337,0.031487182,0.031487182,0.029811673,0.003415025,32.48214007,0.17135308,0.17135308,0.17135308,0.396375297,0.174768105,0.571143403,0.2928 -955,1992/8/12,3.3,0,125.512404,0,0,2.093884779,0.028953204,0.028953204,0.027337292,0.003127512,32.29260411,0.167797005,0.167797005,0.167797005,0.38467025,0.170924517,0.555594766,0.2292 -956,1992/8/13,3.2,0,123.4805418,0,0,2.005178887,0.02668334,0.02668334,0.025161063,0.002875384,32.10858063,0.164395045,0.164395045,0.164395045,0.373579587,0.167270429,0.540850016,0.2292 -957,1992/8/14,3.9,0.9,121.598509,0,0,2.757322674,0.024710118,0.024710118,0.023235388,0.002651794,31.92989177,0.161139444,0.161139444,0.161139444,0.3630637,0.163791238,0.526854938,0.2292 -958,1992/8/15,3,43,154.0334871,40,32.51563791,3,0.08065978,7.565021872,3.001405768,0.168003588,34.54532044,0.158022543,0.158022543,0.158022543,0.543999638,0.32602613,0.870025769,0.6288 -959,1992/8/16,2.9,0.1,151.9211706,0,0,2.137042981,0.075273519,0.075273519,3.849330371,0.503170752,37.74140034,0.208156641,0.208156641,0.208156641,0.86140711,0.711327394,1.572734503,1.02 -960,1992/8/17,3,0,149.6901394,0,0,2.161129908,0.069901383,0.069901383,0.065623642,0.095745255,37.28268004,0.283720697,0.283720697,0.283720697,0.808064642,0.379465952,1.187530594,0.4056 -961,1992/8/18,3.1,0,147.4154823,0,0,2.209912248,0.064744839,0.064744839,0.0608739,0.006940314,36.8545652,0.271833462,0.271833462,0.271833462,0.760822203,0.278773776,1.039595979,0.2928 -962,1992/8/19,3.2,0,145.0992553,0,0,2.256415269,0.059811722,0.059811722,0.056321286,0.006427021,36.45327859,0.26106431,0.26106431,0.26106431,0.718672202,0.267491332,0.986163534,0.2292 -963,1992/8/20,3.3,0,142.7435765,0,0,2.300570792,0.055108029,0.055108029,0.051972126,0.00593611,36.07568223,0.251249996,0.251249996,0.251249996,0.680818478,0.257186107,0.938004585,0.2292 -964,1992/8/21,3.4,0,140.3506256,0,0,2.342312914,0.050637978,0.050637978,0.047831114,0.005468163,35.71914781,0.242258441,0.242258441,0.242258441,0.646623981,0.247726604,0.894350585,0.2592 -965,1992/8/22,3,0,138.2604945,0,0,2.043155438,0.046975596,0.046975596,0.044127177,0.005036131,35.38166481,0.233981647,0.233981647,0.233981647,0.615591823,0.239017778,0.854609601,0.2592 -966,1992/8/23,2.4,0,136.5977301,0,0,1.618548208,0.044216234,0.044216234,0.041187815,0.004680188,35.06184638,0.226335098,0.226335098,0.226335098,0.587341344,0.231015286,0.81835663,0.2592 -967,1992/8/24,2.3,0,135.0182655,0,0,1.537747832,0.041716799,0.041716799,0.038807086,0.004399307,34.75836683,0.219255109,0.219255109,0.219255109,0.561541743,0.223654416,0.785196159,0.2292 -968,1992/8/25,2.7,0.2,133.3224451,0,0,1.856659857,0.039160494,0.039160494,0.036535126,0.004145049,34.46970243,0.212684456,0.212684456,0.212684456,0.537883982,0.216829505,0.754713488,0.1992 -969,1992/8/26,3.1,27.1,152.4471899,24,19.20133184,3.1,0.076587049,4.87525521,1.945978724,0.110098133,35.95333002,0.206566244,0.206566244,0.206566244,0.668917376,0.316664377,0.985581752,0.1992 -970,1992/8/27,2.8,1.3,151.2876439,0,0,2.385830481,0.073715549,0.073715549,2.490647947,0.325094169,37.81333669,0.239394907,0.239394907,0.239394907,0.87003619,0.564489077,1.434525267,0.4896 -971,1992/8/28,2.9,0.3,149.3497412,0,0,2.16879318,0.069109472,0.069109472,0.064524138,0.063900919,37.34799394,0.285617944,0.285617944,0.285617944,0.81548483,0.349518863,1.165003694,0.5352 -972,1992/8/29,3.1,0.1,147.1499992,0,0,2.235578567,0.064163429,0.064163429,0.060244348,0.006856709,36.91445463,0.273503861,0.273503861,0.273503861,0.767287515,0.28036057,1.047648085,0.3672 -973,1992/8/30,3,0.3,145.186961,0,0,2.203045379,0.059992857,0.059992857,0.056099297,0.006383135,36.50872914,0.262552151,0.262552151,0.262552151,0.724376942,0.268935287,0.993312229,0.3288 -974,1992/8/31,2.5,0,143.3846001,0,0,1.746003306,0.056357555,0.056357555,0.052557267,0.005968681,36.12792295,0.252590194,0.252590194,0.252590194,0.685953652,0.258558876,0.944512528,0.2592 -975,1992/9/1,2.2,0,141.8076177,0,0,1.523658836,0.053323534,0.053323534,0.049523061,0.005612036,35.76956433,0.243488504,0.243488504,0.243488504,0.65137018,0.24910054,0.900470721,0.2592 -976,1992/9/2,2.3,0,140.1772244,0,0,1.58006764,0.050325714,0.050325714,0.046806745,0.005302337,35.43142329,0.235139592,0.235139592,0.235139592,0.620087379,0.240441928,0.860529308,0.2292 -977,1992/9/3,3,0,138.0892105,0,0,2.041328721,0.046685141,0.046685141,0.043854756,0.004988019,35.11110824,0.227451119,0.227451119,0.227451119,0.591620926,0.232439138,0.824060064,0.1992 -978,1992/9/4,3.1,3.2,138.1238469,0.1,0.081380117,3.1,0.046743759,0.065363642,0.049396476,0.005121445,34.81459101,0.22033519,0.22033519,0.22033519,0.566248893,0.225456635,0.791705528,0.2292 -979,1992/9/5,2.5,10.5,144.5050072,8,6.439756215,2.5,0.058595947,1.618839731,0.672603514,0.040414756,35.10959634,0.213891007,0.213891007,0.213891007,0.591489195,0.254305763,0.845794958,0.2292 -980,1992/9/6,2.1,0,142.9866802,0,0,1.46274769,0.055579264,0.055579264,0.839313688,0.109248501,35.53928535,0.220301985,0.220301985,0.220301985,0.629926657,0.329550486,0.959477143,0.4056 -981,1992/9/7,2.6,0,141.1387381,0,0,1.795865216,0.05207684,0.05207684,0.048637533,0.023918504,35.21690668,0.229883817,0.229883817,0.229883817,0.600900023,0.253802321,0.854702344,0.2592 -982,1992/9/8,2.6,12.1,148.6234673,9.5,7.552173022,2.6,0.067443864,2.015270842,0.822524368,0.048340961,35.62432319,0.222667691,0.222667691,0.222667691,0.637775545,0.271008652,0.908784197,0.4464 -983,1992/9/9,2.1,0,147.0674207,0,0,1.492063121,0.063983436,0.063983436,1.042792776,0.135542151,36.20531042,0.2318148,0.2318148,0.2318148,0.693620352,0.367356951,1.060977303,0.6792 -984,1992/9/10,2.1,2,146.9329633,0,0,2.070766213,0.063691231,0.063691231,0.057469641,0.029405865,35.8491749,0.245318865,0.245318865,0.245318865,0.65892403,0.27472473,0.93364876,0.6792 -985,1992/9/11,2.4,1.4,146.1647894,0,0,2.106131686,0.062042246,0.062042246,0.056670594,0.006336376,35.51511162,0.236976379,0.236976379,0.236976379,0.627710246,0.243312754,0.871023,0.5808 -986,1992/9/12,2.6,7.3,149.7897102,4.7,3.695055267,2.6,0.070134395,1.075079128,0.45608748,0.028459762,35.56797088,0.229337,0.229337,0.229337,0.632565222,0.257796761,0.890361983,0.4464 -987,1992/9/13,2.1,0.1,148.2939732,0,0,1.529038151,0.066698897,0.066698897,0.569161566,0.073426074,35.7208798,0.2305339,0.2305339,0.2305339,0.646786548,0.303959974,0.950746522,0.5352 -988,1992/9/14,2,0,146.8115031,0,0,1.419041914,0.063428191,0.063428191,0.058736754,0.018491168,35.39669135,0.234021359,0.234021359,0.234021359,0.616946557,0.252512528,0.869459084,0.4464 -989,1992/9/15,2.2,0,145.2020516,0,0,1.549427412,0.060024067,0.060024067,0.055740406,0.006306676,35.08937389,0.226671712,0.226671712,0.226671712,0.589729579,0.232978388,0.822707967,0.2928 -990,1992/9/16,2.4,0,143.4689534,0,0,1.676574522,0.056523657,0.056523657,0.052638652,0.005965723,34.79709051,0.219858191,0.219858191,0.219858191,0.564780224,0.225823914,0.790604138,0.2928 -991,1992/9/17,2.3,0,141.8222928,0,0,1.593309499,0.053351152,0.053351152,0.049617838,0.005624015,34.51840688,0.21351493,0.21351493,0.21351493,0.541816395,0.219138945,0.76095534,0.2928 -992,1992/9/18,2.5,0,140.0551938,0,0,1.716992122,0.050106884,0.050106884,0.04673423,0.005301322,34.25212554,0.207589597,0.207589597,0.207589597,0.520605168,0.212890919,0.733496088,0.2592 -993,1992/9/19,2.7,0,138.1713582,0,0,1.837011346,0.046824263,0.046824263,0.043799236,0.0049769,33.99702724,0.202038589,0.202038589,0.202038589,0.500936128,0.207015489,0.707951618,0.2292 -994,1992/9/20,2.6,19.6,151.607186,17,13.5103259,2.6,0.074498105,3.564172205,1.431841104,0.081926679,35.04021865,0.196820932,0.196820932,0.196820932,0.585470623,0.278747611,0.864218234,0.2292 -995,1992/9/21,2,30.5,172.623682,28.5,21.159192,2,0.142695999,7.483504002,4.756277429,0.400961945,38.99292321,0.218782111,0.218782111,0.218782111,1.02235498,0.619744056,1.642099036,0.4056 -996,1992/9/22,2.1,0,170.839015,0,0,1.649207742,0.135459241,0.135459241,3.831951182,0.54083602,41.68522936,0.318037451,0.318037451,0.318037451,1.457682487,0.85887347,2.316555957,1.212 -997,1992/9/23,1.9,0,169.2271058,0,0,1.482730478,0.129178704,0.129178704,0.119431882,0.100072604,40.89118635,0.401759048,0.401759048,0.401759048,1.315233935,0.501831653,1.817065588,0.5808 -998,1992/9/24,1.9,0,167.6301765,0,0,1.473740444,0.123188859,0.123188859,0.113894251,0.012860471,40.18228856,0.375605524,0.375605524,0.375605524,1.198397573,0.388465994,1.586863568,0.4464 -999,1992/9/25,2.1,0,165.8948039,0,0,1.618438374,0.116934264,0.116934264,0.108398788,0.012252247,39.54316452,0.353304624,0.353304624,0.353304624,1.100827444,0.36555687,1.466384314,0.4056 -1000,1992/9/26,2,0,164.2523604,0,0,1.531191881,0.111251554,0.111251554,0.102995604,0.011642462,38.96208251,0.33402422,0.33402422,0.33402422,1.01810184,0.345666682,1.363768523,0.3288 -1001,1992/9/27,2,0,162.6252848,0,0,1.521233236,0.105842384,0.105842384,0.09798924,0.01107345,38.43014969,0.317157911,0.317157911,0.317157911,0.947079965,0.328231361,1.275311326,0.2928 -1002,1992/9/28,2,0,161.0133266,0,0,1.511264888,0.100693342,0.100693342,0.093223764,0.010535017,37.94020076,0.302259702,0.302259702,0.302259702,0.885432402,0.312794718,1.19822712,0.2928 -1003,1992/9/29,1.9,0,159.4908638,0,0,1.426446368,0.096016387,0.096016387,0.088776147,0.010027407,37.48654671,0.28898591,0.28898591,0.28898591,0.831416107,0.299013317,1.130429424,0.2928 -1004,1992/9/30,1.9,0,157.9819018,0,0,1.417407737,0.091554268,0.091554268,0.084651769,0.009558859,37.06457306,0.277071595,0.277071595,0.277071595,0.783697013,0.286630454,1.070327466,0.2592 -1005,1992/10/1,1.8,0,156.559946,0,0,1.334452817,0.087502983,0.087502983,0.080798182,0.009119131,36.67044724,0.26630817,0.26630817,0.26630817,0.74123217,0.2754273,1.016659471,0.2592 -1006,1992/10/2,1.6,0,155.2966022,0,0,1.179318538,0.084025277,0.084025277,0.077378646,0.008721747,36.30114027,0.256527959,0.256527959,0.256527959,0.703213572,0.265249706,0.968463278,0.2292 -1007,1992/10/3,1.7,0,153.9701726,0,0,1.245935609,0.080493969,0.080493969,0.074227532,0.008366035,35.9539861,0.247599018,0.247599018,0.247599018,0.668980724,0.255965053,0.924945776,0.2292 -1008,1992/10/4,1.7,0,152.6544176,0,0,1.238645505,0.077109534,0.077109534,0.071107385,0.00801676,35.62652393,0.239410197,0.239410197,0.239410197,0.63797975,0.247426957,0.885406707,0.2292 -1009,1992/10/5,1.5,0,151.4933512,0,0,1.086847847,0.074218565,0.074218565,0.068256361,0.007687415,35.31686691,0.231864927,0.231864927,0.231864927,0.609778312,0.239552342,0.849330654,0.2292 -1010,1992/10/6,1.5,0,150.3407843,0,0,1.081131601,0.071435278,0.071435278,0.065697034,0.007394862,35.02342971,0.224887633,0.224887633,0.224887633,0.584021866,0.232282495,0.816304361,0.2292 -1011,1992/10/7,1.6,18.6,163.149172,17,12.9159482,1.6,0.107560494,4.191612293,1.692167943,0.097613947,36.23721149,0.218415441,0.218415441,0.218415441,0.696801602,0.316029387,1.012830989,0.2592 -1012,1992/10/8,1.2,4.4,165.3906904,3.2,2.356684342,1.2,0.115165899,0.958481558,2.495045518,0.299600023,38.07614694,0.246076239,0.246076239,0.246076239,0.902186308,0.545676262,1.44786257,0.4056 -1013,1992/10/9,0.8,5.5,168.682749,4.7,3.419169794,0.8,0.127111258,1.407941464,1.040214361,0.143846081,38.45826266,0.292626372,0.292626372,0.292626372,0.950725016,0.436472452,1.387197469,0.4056 -1014,1992/10/10,0.9,21.6,182.9318225,20.7,14.439879,0.9,0.190805487,6.450926487,3.259623636,0.246186306,40.7326369,0.303034306,0.303034306,0.303034306,1.288283697,0.549220612,1.837504309,0.5808 -1015,1992/10/11,1.2,24,197.3822096,22.8,14.72969799,1.2,0.279310829,8.34961284,6.556002016,0.627290704,45.35264041,0.370532941,0.370532941,0.370532941,2.306531445,0.997823645,3.304355089,1.416 -1016,1992/10/12,0.8,21.4,209.271869,20.6,12.26420763,0.8,0.374548315,8.71034069,7.657174427,0.820485889,49.68061719,0.539680841,0.539680841,0.539680841,3.868878491,1.36016673,5.229045221,4.104 -1017,1992/10/13,0.8,0.1,208.2904413,0,0,0.715610492,0.365817118,0.365817118,4.542396783,0.683618075,50.63709146,0.742476003,0.742476003,0.742476003,4.328398516,1.426094077,5.754492593,5.352 -1018,1992/10/14,0.9,1.9,208.4982283,1,0.575438829,0.9,0.367651889,0.79221306,0.49770384,0.144358316,48.54479776,0.793722362,0.793722362,0.793722362,3.383719906,0.938080678,4.321800584,3.648 -1019,1992/10/15,1.3,0,207.0032739,0,0,1.140339822,0.354614602,0.354614602,0.540097195,0.064587058,46.96605262,0.684742713,0.684742713,0.684742713,2.803585042,0.749329771,3.552914813,2.904 -1020,1992/10/16,1.4,30.8,222.5966747,29.4,16.1040147,1.4,0.510613887,13.80659918,5.634013489,0.335892704,49.44630818,0.609919044,0.609919044,0.609919044,3.763676973,0.945811748,4.709488721,2.232 -1021,1992/10/17,1,1.4,222.2959184,0.4,0.206401671,1,0.507157953,0.700756282,7.247838677,0.934332127,52.21745454,0.730291982,0.730291982,0.730291982,5.206984301,1.664624109,6.87160841,6.624 -1022,1992/10/18,0.8,9,225.916403,8.2,4.170519739,0.8,0.550035096,4.579515357,2.16317294,0.309787462,50.83474412,0.883858868,0.883858868,0.883858868,4.429742225,1.193646329,5.623388554,3.984 -1023,1992/10/19,0.6,0,224.8317619,0,0,0.547746063,0.536895023,0.536895023,2.524330054,0.323469439,50.09962157,0.8046189,0.8046189,0.8046189,4.064071506,1.128088339,5.192159845,3.528 -1024,1992/10/20,0.6,0,223.7610494,0,0,0.546539932,0.524172651,0.524172651,0.478178916,0.101089856,48.12356165,0.764625085,0.764625085,0.764625085,3.218863924,0.865714941,4.084578865,3 -1025,1992/10/21,0.9,0,222.4345291,0,0,0.817771958,0.508748356,0.508748356,0.465661256,0.052228766,46.5776626,0.66417137,0.66417137,0.66417137,2.675731674,0.716400136,3.39213181,2.784 -1026,1992/10/22,1,4.5,223.7073187,3.5,1.796330316,1,0.523540667,2.227210351,1.136835447,0.088776883,45.85500973,0.592447539,0.592447539,0.592447539,2.45193586,0.681224422,3.133160283,2.592 -1027,1992/10/23,1.1,3.2,224.2468778,2.1,1.069474031,1.1,0.529914919,1.560440888,1.741049577,0.187817609,45.73924289,0.560895231,0.560895231,0.560895231,2.417711645,0.74871284,3.166424485,2.496 -1028,1992/10/24,1,10.7,228.5001579,9.7,4.835661392,1,0.58238133,5.446719937,2.939860196,0.249211706,46.56379168,0.555954671,0.555954671,0.555954671,2.671266081,0.805166376,3.476432457,2.316 -1029,1992/10/25,0.8,7.6,231.1676471,6.8,3.284854287,0.8,0.617365059,4.132510772,4.382805605,0.469989655,48.2650496,0.591830257,0.591830257,0.591830257,3.273377937,1.061819912,4.335197849,3.312 -1030,1992/10/26,0.8,0,229.8303005,0,0,0.737725993,0.599620564,0.599620564,2.3234196,0.351204575,48.06351432,0.671031074,0.671031074,0.671031074,3.19598595,1.022235649,4.218221599,3.096 -1031,1992/10/27,1,0,228.3304423,0,0,0.919647477,0.58021076,0.58021076,0.531989706,0.101203749,46.58022272,0.661275316,0.661275316,0.661275316,2.676556624,0.762479064,3.439035689,2.688 -1032,1992/10/28,1.2,0,226.670947,0,0,1.100167473,0.559327862,0.559327862,0.513938866,0.057791635,45.37413399,0.59256152,0.59256152,0.59256152,2.312589116,0.650353155,2.962942272,2.316 -1033,1992/10/29,1.1,0,225.1252579,0,0,1.005263661,0.540425424,0.540425424,0.495926736,0.05576419,44.36702398,0.540576554,0.540576554,0.540576554,2.043613303,0.596340744,2.639954046,2.052 -1034,1992/10/30,0.7,0,223.9607777,0,0,0.637952898,0.526527255,0.526527255,0.480891722,0.053960431,43.51043178,0.499734148,0.499734148,0.499734148,1.837218073,0.55369458,2.390912653,1.884 -1035,1992/10/31,0.6,0,222.9010852,0,0,0.545561433,0.51413108,0.51413108,0.468976806,0.052544561,42.77187009,0.466772067,0.466772067,0.466772067,1.674310554,0.519316628,2.193627182,1.644 -1036,1992/11/1,0.5,0,221.9442685,0,0,0.453675652,0.503141101,0.503141101,0.458375835,0.051318094,42.12722759,0.439624432,0.439624432,0.439624432,1.542642771,0.490942526,2.033585297,1.5 -1037,1992/11/2,0.4,0,221.088551,0,0,0.362244246,0.493473197,0.493473197,0.449007204,0.050231531,41.55893436,0.416867521,0.416867521,0.416867521,1.434167948,0.467099051,1.901266999,1.416 -1038,1992/11/3,0.1,0,220.5110947,0,0,0.090422402,0.487033969,0.487033969,0.441581735,0.049320016,41.05452439,0.397514883,0.397514883,0.397514883,1.343506596,0.4468349,1.790341496,1.284 -1039,1992/11/4,0.1,0.3,220.133286,0.2,0.105049051,0.1,0.482857722,0.577808671,0.474195519,0.050771852,40.6372947,0.380882984,0.380882984,0.380882984,1.272308193,0.431654837,1.70396303,1.1472 -1040,1992/11/5,0.1,15.3,227.3187542,15.2,7.752874765,0.1,0.567406533,8.014531768,3.458266718,0.219945802,42.7858053,0.367506261,0.367506261,0.367506261,1.677262375,0.587452063,2.264714438,1.0824 -1041,1992/11/6,0.1,0.5,226.9540196,0.4,0.198111959,0.1,0.562846534,0.764734575,4.348693636,0.554610412,45.28661293,0.440125944,0.440125944,0.440125944,2.288011951,0.994736356,3.282748307,1.1472 -1042,1992/11/7,0.4,1.4,226.8882284,1,0.496235898,0.4,0.562027145,1.065791248,0.807208171,0.168587428,44.54242053,0.536935877,0.536935877,0.536935877,2.088336451,0.705523305,2.793859755,1.1472 -1043,1992/11/8,0.7,20.6,235.681016,19.9,9.473186637,0.7,0.680399009,11.10721237,4.926563585,0.323436893,47.11990153,0.506682998,0.506682998,0.506682998,2.855765582,0.83011989,3.685885472,1.5 -1044,1992/11/9,0.7,11.1,239.5915772,10.4,4.649676724,0.7,0.73911558,6.489438856,8.172014992,0.890930868,51.25555888,0.616940516,0.616940516,0.616940516,4.653298154,1.507871384,6.161169539,4.368 -1045,1992/11/10,0.3,0.1,238.6791961,0,0,0.287316707,0.72506439,0.72506439,3.5629985,0.576879519,51.08522417,0.828173614,0.828173614,0.828173614,4.56150683,1.405053133,5.966559963,3.984 -1046,1992/11/11,0.3,7.2,240.9340723,6.9,3.01506537,0.3,0.760189169,4.645123799,2.201367941,0.226537841,50.05997088,0.818580783,0.818580783,0.818580783,4.045202015,1.045118624,5.090320639,3.192 -1047,1992/11/12,0.3,3.9,241.7089464,3.6,1.547445561,0.3,0.772571396,2.825125835,3.46153265,0.378329581,50.18096455,0.762509146,0.762509146,0.762509146,4.103048121,1.140838727,5.243886848,3.192 -1048,1992/11/13,0.2,0,240.7634874,0,0,0.187974138,0.757484894,0.757484894,1.725691131,0.258593556,49.07367028,0.768979035,0.768979035,0.768979035,3.60196444,1.027572591,4.629537031,2.4 -1049,1992/11/14,0.2,0,239.8329356,0,0,0.18768274,0.742869111,0.742869111,0.675961711,0.099813926,47.47957064,0.711210034,0.711210034,0.711210034,2.981271387,0.81102396,3.792295346,2.232 -1050,1992/11/15,0.7,0.5,238.9168397,0,0,0.687392531,0.728703319,0.728703319,0.662985297,0.074148373,46.21495719,0.633580384,0.633580384,0.633580384,2.561179129,0.707728757,3.268907886,2.316 -1051,1992/11/16,0.8,0,237.4621258,0,0,0.748057077,0.706656803,0.706656803,0.647122422,0.072553504,45.18011341,0.576457011,0.576457011,0.576457011,2.258423208,0.649010515,2.907433723,2.052 -1052,1992/11/17,0.7,1.9,237.2961056,1.2,0.538155082,0.7,0.704175302,1.36602022,0.896504673,0.085398699,44.52523213,0.532529403,0.532529403,0.532529403,2.083915362,0.617928101,2.701843464,1.644 -1053,1992/11/18,0.7,0.5,236.4183495,0,0,0.686584215,0.691171934,0.691171934,0.962786548,0.114012499,44.03317516,0.505998997,0.505998997,0.505998997,1.960842514,0.620011496,2.58085401,1.728 -1054,1992/11/19,0.6,0,235.1863882,0,0,0.558712977,0.673248309,0.673248309,0.614973125,0.076683104,43.33707145,0.486696242,0.486696242,0.486696242,1.797773074,0.563379346,2.36115242,1.884 -1055,1992/11/20,0.7,0,233.8813615,0,0,0.650354631,0.654672085,0.654672085,0.598584022,0.067128496,42.73039795,0.460295197,0.460295197,0.460295197,1.665552721,0.527423692,2.192976414,1.644 -1056,1992/11/21,0.7,0,232.5957592,0,0,0.648823923,0.636778315,0.636778315,0.582135058,0.065293549,42.1946851,0.43813431,0.43813431,0.43813431,1.555982211,0.503427859,2.059410071,1.5 -1057,1992/11/22,0.6,0,231.4201268,0,0,0.554870413,0.620762025,0.620762025,0.566772455,0.063537334,41.71701327,0.419208527,0.419208527,0.419208527,1.463652817,0.482745861,1.946398678,1.284 -1058,1992/11/23,0.6,0,230.2611803,0,0,0.553654283,0.605292209,0.605292209,0.552573705,0.061925556,41.28764927,0.402832229,0.402832229,0.402832229,1.384769935,0.464757785,1.849527719,1.212 -1059,1992/11/24,0.5,0,229.2092523,0,0,0.460406843,0.591521104,0.591521104,0.53932203,0.060409415,40.89891756,0.388506717,0.388506717,0.388506717,1.316560452,0.448916132,1.765476584,1.1472 -1060,1992/11/25,0.5,11.5,233.7854647,11,5.229535836,0.5,0.653323517,6.423787681,2.836689374,0.187332378,42.49488419,0.375854135,0.375854135,0.375854135,1.616576879,0.563186512,2.179763392,0.9 -1061,1992/11/26,0.5,5.5,235.4155127,5,2.306601171,0.5,0.676553132,3.369951961,4.574842524,0.506560349,45.22782985,0.429740473,0.429740473,0.429740473,2.271637341,0.936300823,3.207938164,1.8 -1062,1992/11/27,0.2,3.6,236.2754141,3.4,1.548974325,0.2,0.689072889,2.540098564,2.705082764,0.354797696,45.97848878,0.534500489,0.534500489,0.534500489,2.488924316,0.889298185,3.378222502,1.728 -1063,1992/11/28,0.2,12,240.7449815,11.8,5.226759364,0.2,0.757191988,7.330432624,4.178742956,0.368944889,47.67268419,0.566199404,0.566199404,0.566199404,3.050746957,0.935144293,3.98589125,1.5 -1064,1992/11/29,0.1,7.2,242.9847564,7.1,3.033087249,0.1,0.793312395,4.860225145,5.621413656,0.622324256,49.94553076,0.642645693,0.642645693,0.642645693,3.991212775,1.264969949,5.256182724,1.5 -1065,1992/11/30,0.1,0.5,242.3708462,0.4,0.169366526,0.1,0.783276663,1.013910137,2.854528817,0.430730488,49.68542077,0.756425563,0.756425563,0.756425563,3.871064372,1.187156051,5.058220423,1.416 -1066,1992/12/1,0,0.3,241.7259286,0.3,0.127926976,0,0.772844575,0.944917599,0.885260244,0.145240983,48.10256242,0.742727296,0.742727296,0.742727296,3.210845887,0.887968279,4.098814166,1.344 -1067,1992/12/2,0,9.6,244.9333436,9.6,4.033270627,0,0.825855625,6.392584999,3.002791612,0.214881406,48.43034948,0.663157559,0.663157559,0.663157559,3.338162116,0.878038965,4.21620108,1.416 -1068,1992/12/3,0.2,5.9,246.4129386,5.7,2.330873546,0.2,0.851278553,4.220405008,4.89510106,0.527328412,49.99166583,0.679109168,0.679109168,0.679109168,4.012893875,1.206437579,5.219331454,1.5 -1069,1992/12/4,0.2,7.4,248.4095555,7.2,2.8831994,0.2,0.886582483,5.203383084,4.186737674,0.469236091,50.61836344,0.758873894,0.758873894,0.758873894,4.318913956,1.228109986,5.547023942,1.5 -1070,1992/12/5,0.3,10,251.2398292,9.7,3.768916624,0.3,0.938642993,6.869726369,5.34141456,0.545321078,51.79581746,0.792695389,0.792695389,0.792695389,4.956655931,1.338016467,6.294672398,1.5 -1071,1992/12/6,0.4,4.1,251.7004607,3.7,1.407976103,0.4,0.947344615,3.239368512,4.74840424,0.587633469,52.20434108,0.859131027,0.859131027,0.859131027,5.199011647,1.446764496,6.645776143,6.24 -1072,1992/12/7,0.2,1.7,251.330615,1.5,0.57050724,0.2,0.940352869,1.869845628,2.374335001,0.336693277,50.9643232,0.883082234,0.883082234,0.883082234,4.497435112,1.219775511,5.717210623,5.904 -1073,1992/12/8,0,0.2,250.4828064,0.2,0.076673954,0,0.924482618,1.047808664,1.358075362,0.185093424,49.39375819,0.811820282,0.811820282,0.811820282,3.740460654,0.996913705,4.737374359,4.704 -1074,1992/12/9,0,0,249.5750752,0,0,0,0.907731112,0.907731112,0.887683327,0.111401493,47.88146918,0.727579129,0.727579129,0.727579129,3.12755147,0.838980621,3.966532092,3.864 -1075,1992/12/10,0.1,0,248.5901047,0,0,0.095138217,0.889832293,0.889832293,0.809886181,0.092032362,46.64605562,0.652550489,0.652550489,0.652550489,2.69785023,0.744582851,3.442433081,2.688 -1076,1992/12/11,0.3,0,247.4359177,0,0,0.284964915,0.869222102,0.869222102,0.792705985,0.088741961,45.64429376,0.595497885,0.595497885,0.595497885,2.38996573,0.684239846,3.074205576,2.316 -1077,1992/12/12,0.3,0,246.3020886,0,0,0.284476812,0.849352281,0.849352281,0.774449333,0.086729171,44.81190949,0.55192581,0.55192581,0.55192581,2.158759416,0.638654982,2.797414398,2.136 -1078,1992/12/13,0.5,0,245.0018223,0,0,0.473247809,0.827018563,0.827018563,0.755593012,0.084679374,44.10628707,0.517493689,0.517493689,0.517493689,1.978709115,0.602173064,2.580882179,1.968 -1079,1992/12/14,0.6,4.3,245.6822561,3.7,1.519079798,0.6,0.838645977,3.019566179,1.610589193,0.131091548,44.2036738,0.489530474,0.489530474,0.489530474,2.002732939,0.620622022,2.623354961,2.592 -1080,1992/12/15,0.5,4.8,246.5770851,4.3,1.748966427,0.5,0.854137447,3.40517102,2.869961424,0.284561276,45.2806212,0.49332402,0.49332402,0.49332402,2.286338039,0.777885296,3.064223335,3.744 -1081,1992/12/16,0.3,1.7,246.295254,1.4,0.567402539,0.3,0.849233628,1.68183109,2.383764633,0.298142083,45.77332967,0.536687277,0.536687277,0.536687277,2.427743443,0.83482936,3.262572803,4.584 -1082,1992/12/17,0.2,5.2,247.4415986,5,2.015667277,0.2,0.869322594,3.853655317,2.371732665,0.236180004,46.15866195,0.557406144,0.557406144,0.557406144,2.543806526,0.793586148,3.337392673,4.344 -1083,1992/12/18,0.3,4.9,248.3864105,4.6,1.830978471,0.3,0.886166577,3.655188106,3.389875575,0.355394287,47.22917177,0.574003078,0.574003078,0.574003078,2.893368842,0.929397365,3.822766207,4.464 -1084,1992/12/19,0.2,1.9,248.1776626,1.7,0.673674588,0.2,0.882422568,1.90874798,2.599653149,0.32952543,47.47215451,0.621962408,0.621962408,0.621962408,2.978632817,0.951487839,3.930120656,4.224 -1085,1992/12/20,0.4,10,250.9853859,9.6,3.741587446,0.4,0.933864142,6.792276696,3.647348524,0.318665867,48.41904392,0.633234082,0.633234082,0.633234082,3.333693196,0.951899949,4.285593144,4.104 -1086,1992/12/21,0.3,6.9,252.5241713,6.6,2.501852768,0.3,0.963067384,5.061214616,5.42910865,0.583633679,50.34430077,0.678554471,0.678554471,0.678554471,4.182406271,1.26218815,5.444594421,4.704 -1087,1992/12/22,0.3,8,254.3784464,7.7,2.85350854,0.3,0.999233344,5.845724804,4.865051915,0.54375807,51.30619438,0.777775179,0.777775179,0.777775179,4.680933478,1.321533249,6.002466727,5.232 -1088,1992/12/23,0.5,1.3,253.6870523,0.8,0.294228108,0.5,0.985622293,1.491394185,3.540762227,0.479742681,51.10560294,0.831040694,0.831040694,0.831040694,4.572394364,1.310783375,5.883177739,6.936 -1089,1992/12/24,0.4,0,252.3447494,0,0,0.382678014,0.959624806,0.959624806,1.132153391,0.188823134,49.34043729,0.819724264,0.819724264,0.819724264,3.717043306,1.008547397,4.725590703,7.08 -1090,1992/12/25,0.3,1.2,251.7366793,0.9,0.339961403,0.3,0.94803156,1.508070157,1.080352296,0.11427265,47.98087475,0.724833843,0.724833843,0.724833843,3.164748678,0.839106493,4.003855171,6.192 -1091,1992/12/26,0.3,7.8,253.5629386,7.5,2.809454181,0.3,0.983194878,5.673740697,3.003113729,0.235774731,48.33905718,0.657304413,0.657304413,0.657304413,3.302235708,0.893079143,4.195314851,5.64 -1092,1992/12/27,0.1,5.5,254.5454973,5.4,1.985103397,0.1,1.002544639,4.417441242,4.610004329,0.490667643,49.7315739,0.674639239,0.674639239,0.674639239,3.892126853,1.165306882,5.057433735,4.968 -1093,1992/12/28,0,0,253.5623147,0,0,0,0.983182687,0.983182687,2.618826245,0.381179586,49.36689816,0.745144837,0.745144837,0.745144837,3.728646816,1.126324423,4.854971239,4.464 -1094,1992/12/29,0,0,252.5978311,0,0,0,0.964483585,0.964483585,0.877476406,0.138412285,47.85343482,0.726195284,0.726195284,0.726195284,3.117135036,0.864607569,3.981742605,4.104 -1095,1992/12/30,0,0,251.651416,0,0,0,0.946415044,0.946415044,0.860896348,0.09627232,46.66238837,0.65121424,0.65121424,0.65121424,2.703157032,0.74748656,3.450643592,3 -1096,1992/12/31,0,1.3,251.2083603,1.3,0.494995131,0,0.938050889,1.743055759,1.166525153,0.112340838,45.94599856,0.596227985,0.596227985,0.596227985,2.479142956,0.708568824,3.18771178,2.052 -1097,1993/1/1,0.2,2.4,251.1127068,2.2,0.840599503,0.2,0.93625297,2.295653467,1.787080726,0.177039333,45.84802192,0.564800294,0.564800294,0.564800294,2.449857652,0.741839627,3.191697279,2.76 -1098,1993/1/2,0.3,1,250.457472,0.7,0.268776954,0.3,0.924011731,1.355234777,1.694529952,0.202405814,45.69763167,0.560596128,0.560596128,0.560596128,2.405516337,0.763001942,3.168518279,3.12 -1099,1993/1/3,0.5,12.8,254.0927939,12.3,4.628913492,0.5,0.993591593,8.6646781,4.107662134,0.307056782,47.40473533,0.554186456,0.554186456,0.554186456,2.954744926,0.861243238,3.815988164,2.928 -1100,1993/1/4,0.4,4.9,254.732751,4.5,1.646224036,0.4,1.006266928,3.860042891,5.899905411,0.674797358,49.94416171,0.630092085,0.630092085,0.630092085,3.990571117,1.304889443,5.29546056,4.512 -1101,1993/1/5,0.2,4,255.0997234,3.8,1.380566431,0.2,1.013594104,3.433027673,3.305325392,0.433298403,49.99253614,0.756352995,0.756352995,0.756352995,4.013303961,1.189651399,5.20295536,6.288 -1102,1993/1/6,0.3,10.6,257.6966125,10.3,3.663575621,0.3,1.066686531,7.70311091,4.776828758,0.442067186,51.00787291,0.758920135,0.758920135,0.758920135,4.520412122,1.200987321,5.721399443,6.048 -1103,1993/1/7,0.1,0.7,256.8581501,0.6,0.210842282,0.1,1.049304594,1.438462312,4.457645708,0.58244034,51.49458838,0.814250866,0.814250866,0.814250866,4.785181102,1.396691207,6.181872309,5.784 -1104,1993/1/8,0.1,0.1,255.8298497,0,0,0.1,1.028300432,1.028300432,1.13256166,0.208729952,49.62518224,0.841770208,0.841770208,0.841770208,3.843738009,1.05050016,4.894238169,4.848 -1105,1993/1/9,0.1,2,255.4915854,1.9,0.683201505,0.1,1.021465773,2.238264269,1.403525389,0.134226231,48.43018927,0.739580385,0.739580385,0.739580385,3.338098747,0.873806616,4.211905363,4.416 -1106,1993/1/10,0.2,6.3,256.6277489,6.1,2.180731953,0.2,1.044568526,4.963836574,3.091307606,0.269382005,48.73845474,0.679101305,0.679101305,0.679101305,3.462143435,0.948483309,4.410626745,4.512 -1107,1993/1/11,0.2,0.1,255.5098537,0,0,0.196061207,1.021833945,1.021833945,2.909973055,0.377711072,48.83917367,0.6943511,0.6943511,0.6943511,3.503605231,1.072062172,4.575667403,4.416 -1108,1993/1/12,0.2,8,257.2288668,7.8,2.775974406,0.2,1.056961361,6.080986955,2.918514828,0.259724353,48.91989965,0.699386199,0.699386199,0.699386199,3.53717504,0.959110552,4.496285593,3.6 -1109,1993/1/13,0.1,1.1,256.5395042,1,0.353396652,0.1,1.042759175,1.689362523,3.737763424,0.452034182,49.55083699,0.703440606,0.703440606,0.703440606,3.810266692,1.155474787,4.965741479,3.504 -1110,1993/1/14,0.1,15.3,260.6443896,15.2,5.234539009,0.1,1.129653622,11.09511461,5.236625769,0.427187708,51.00452876,0.73570967,0.73570967,0.73570967,4.518643668,1.162897379,5.681541047,3.12 -1111,1993/1/15,0.3,2.4,260.2277913,2.1,0.703978434,0.3,1.120576807,2.516598373,6.59624308,0.8102803,52.82480102,0.81406404,0.81406404,0.81406404,5.59003486,1.62434434,7.2143792,5.496 -1112,1993/1/16,0.3,7.1,261.3493177,6.8,2.266674327,0.3,1.145147915,5.678473588,3.514190965,0.42223983,52.11458719,0.920365916,0.920365916,0.920365916,5.144770708,1.342605747,6.487376455,5.544 -1113,1993/1/17,0.4,8.9,262.9419288,8.5,2.773397995,0.4,1.180786875,6.90738888,5.596168812,0.557530211,52.92958675,0.877779714,0.877779714,0.877779714,5.658948965,1.435309926,7.09425889,6.048 -1114,1993/1/18,0.3,7.1,263.9126566,6.8,2.173673762,0.3,1.20294597,5.829272208,5.790687433,0.652580359,53.55696067,0.926771659,0.926771659,0.926771659,6.090085175,1.579352017,7.669437192,5.784 -1115,1993/1/19,0.5,22,269.1011902,21.5,6.515702014,0.5,1.327168385,16.31146637,9.387845149,0.825726327,55.89071584,0.965792244,0.965792244,0.965792244,8.019882229,1.791518572,9.811400801,6.168 -1116,1993/1/20,0.4,6.1,269.4132359,5.7,1.647003656,0.4,1.334957932,5.387954276,10.36445494,1.267747303,57.56518647,1.121287124,1.121287124,1.121287124,9.811271432,2.389034427,12.20030586,14.52 -1117,1993/1/21,0.2,1.2,268.3944714,1,0.290898134,0.2,1.309662709,2.018764575,3.517996566,0.593676504,55.05951991,1.243333652,1.243333652,1.243333652,7.266996779,1.837010155,9.104006934,13.2 -1118,1993/1/22,0.3,0.5,267.1739714,0.2,0.059371052,0.3,1.279870997,1.420499945,1.580514548,0.22848164,52.39061502,1.063999573,1.063999573,1.063999573,5.313419015,1.292481213,6.605900229,9.216 -1119,1993/1/23,0.1,1.7,266.3962005,1.6,0.483403081,0.1,1.261174019,2.377770938,1.656666352,0.170118129,50.62112838,0.894159966,0.894159966,0.894159966,4.320312952,1.064278095,5.384591047,6.816 -1120,1993/1/24,0,1,265.4637903,1,0.306641551,0,1.239051682,1.93241013,1.964032353,0.216711238,49.56250595,0.792846948,0.792846948,0.792846948,3.815501731,1.009558186,4.825059917,5.304 -1121,1993/1/25,0.1,0.3,264.3140084,0.2,0.062423508,0.1,1.212205491,1.349781983,1.508973503,0.185705101,48.45848685,0.736316244,0.736316244,0.736316244,3.349308847,0.922021345,4.271330192,4.632 -1122,1993/1/26,0.3,0,262.8445872,0,0,0.290837991,1.178583174,1.178583174,1.147163342,0.13809208,47.35048823,0.680491107,0.680491107,0.680491107,2.935653072,0.818583187,3.754236258,4.2 -1123,1993/1/27,0.1,0,261.5971568,0,0,0.09679432,1.150636066,1.150636066,1.049682965,0.119264067,46.40660675,0.627572056,0.627572056,0.627572056,2.621136507,0.746836123,3.36797263,3.792 -1124,1993/1/28,0.1,0,260.3766893,0,0,0.096653267,1.12381419,1.12381419,1.024975146,0.11480451,45.63049237,0.584867288,0.584867288,0.584867288,2.385956808,0.699671798,3.085628606,3.12 -1125,1993/1/29,0.2,0,259.0876396,0,0,0.193013377,1.096036413,1.096036413,1.000457783,0.112088069,44.97884739,0.551341934,0.551341934,0.551341934,2.203444696,0.663430003,2.866874699,2.496 -1126,1993/1/30,0.2,0,257.8255504,0,0,0.192709113,1.069380031,1.069380031,0.975900846,0.109346179,44.42158734,0.524272539,0.524272539,0.524272539,2.057433433,0.633618719,2.691052152,2.028 -1127,1993/1/31,0.2,1.1,257.0869672,0.9,0.315442048,0.2,1.054025257,1.63858321,1.187333385,0.119746389,44.12700975,0.501888494,0.501888494,0.501888494,1.983799474,0.621634884,2.605434358,1.884 -1128,1993/2/1,0.3,0,255.7715295,0,0,0.28831828,1.027119438,1.027119438,1.233136366,0.143723461,43.91759225,0.490335942,0.490335942,0.490335942,1.932889811,0.634059402,2.566949213,1.884 -1129,1993/2/2,0.3,0,254.4824096,0,0,0.287826771,1.00129307,1.00129307,0.914203508,0.109356826,43.48308897,0.482239533,0.482239533,0.482239533,1.830946321,0.59159636,2.422542681,1.74 -1130,1993/2/3,0.5,3.7,254.6461425,3.2,1.168276773,0.5,1.00454391,3.036267137,1.705179156,0.145101468,43.75892099,0.465746222,0.465746222,0.465746222,1.895093355,0.61084769,2.505941046,1.476 -1131,1993/2/4,0.5,7.4,256.102797,6.9,2.490496794,0.5,1.033842254,5.44334546,3.683673641,0.33246103,45.55471094,0.476168979,0.476168979,0.476168979,2.364052669,0.808630008,3.172682678,1.884 -1132,1993/2/5,0.3,4.1,256.4173273,3.8,1.354788495,0.3,1.040258263,3.485469768,4.125456828,0.472969808,47.30765324,0.548143813,0.548143813,0.548143813,2.920658341,1.02111362,3.941771961,1.74 -1133,1993/2/6,0.6,0.4,255.2094753,0,0,0.592058191,1.015793826,1.015793826,2.161157186,0.317429487,47.20826031,0.625587266,0.625587266,0.625587266,2.886137386,0.943016753,3.829154139,1.812 -1134,1993/2/7,0.7,0.6,254.1194744,0,0,0.695883393,0.994117451,0.994117451,0.905650113,0.130231539,46.18346278,0.620999099,0.620999099,0.620999099,2.551446735,0.751230638,3.302677373,1.956 -1135,1993/2/8,0.6,0,252.5810351,0,0,0.574278851,0.964160513,0.964160513,0.882869738,0.099009872,45.3387824,0.575083235,0.575083235,0.575083235,2.302633352,0.674093108,2.97672646,1.956 -1136,1993/2/9,0.6,4.8,253.1741977,4.2,1.56878575,0.6,0.975623114,3.606837364,1.911862378,0.154775961,45.45440815,0.539103892,0.539103892,0.539103892,2.335340526,0.693879853,3.02922038,1.812 -1137,1993/2/10,0.4,0,251.8417605,0,0,0.382410339,0.950026874,0.950026874,2.196451421,0.271198682,45.76847764,0.543931247,0.543931247,0.543931247,2.426313181,0.815129929,3.24144311,1.884 -1138,1993/2/11,0.1,0.2,250.9467163,0.1,0.03809543,0.1,0.933139589,0.995044159,0.87281043,0.127325872,44.99159627,0.557199371,0.557199371,0.557199371,2.206891171,0.684525243,2.891416414,1.956 -1139,1993/2/12,0.1,0,249.9370103,0,0,0.095325328,0.914380722,0.914380722,0.863669708,0.097202939,44.34260387,0.524792826,0.524792826,0.524792826,2.037454931,0.621995765,2.659450695,1.74 -1140,1993/2/13,0,0,249.0390554,0,0,0,0.897954914,0.897954914,0.816452814,0.092028912,43.7620067,0.498772103,0.498772103,0.498772103,1.895822088,0.590801015,2.486623102,1.608 -1141,1993/2/14,0,0,248.1570026,0,0,0,0.882052716,0.882052716,0.801876465,0.08964019,43.25974753,0.476286511,0.476286511,0.476286511,1.780422148,0.565926701,2.34634885,1.668 -1142,1993/2/15,0.1,0,247.1970564,0,0,0.094940912,0.8650053,0.8650053,0.787112013,0.088018657,42.81980344,0.457427125,0.457427125,0.457427125,1.684483222,0.545445782,2.229929005,1.668 -1143,1993/2/16,0.1,0,246.2537381,0,0,0.094805122,0.848513183,0.848513183,0.771988737,0.086339611,42.4298633,0.441351214,0.441351214,0.441351214,1.60328009,0.527690825,2.130970915,1.536 -1144,1993/2/17,0,0,245.4195961,0,0,0,0.834142055,0.834142055,0.757983832,0.084730405,42.0816115,0.42744348,0.42744348,0.42744348,1.533679113,0.512173885,2.045852998,1.344 -1145,1993/2/18,0.1,1.2,245.0440999,1.1,0.452241055,0.1,0.827737203,1.475496148,1.004125938,0.097661398,41.9859904,0.415289788,0.415289788,0.415289788,1.515036832,0.512951186,2.027988018,1.404 -1146,1993/2/19,0.1,0.3,244.3115068,0.2,0.082762457,0.1,0.815355545,0.932593088,1.113446256,0.128068689,41.99470535,0.411996371,0.411996371,0.411996371,1.516727667,0.540065059,2.056792726,1.404 -1147,1993/2/20,0.1,0.5,243.673654,0.4,0.16684432,0.1,0.80469718,1.03785286,0.880921746,0.101972899,41.80721107,0.412295759,0.412295759,0.412295759,1.480711793,0.514268658,1.994980452,1.344 -1148,1993/2/21,0.1,0.6,243.0886562,0.5,0.21002331,0.1,0.795021083,1.084997773,0.952694439,0.10357868,41.70449548,0.405888898,0.405888898,0.405888898,1.461298924,0.509467578,1.970766502,1.1616 -1149,1993/2/22,0.2,8,245.49455,7.8,3.241319121,0.2,0.835425321,5.3941062,2.679020702,0.202528386,43.05149987,0.402409323,0.402409323,0.402409323,1.734425633,0.604937709,2.339363343,1.104 -1150,1993/2/23,0.4,6.8,247.2247754,6.4,2.595719243,0.4,0.865493797,4.669774554,4.568513028,0.472689102,45.67180429,0.449766376,0.449766376,0.449766376,2.397974985,0.922455479,3.320430464,1.1616 -1151,1993/2/24,0.4,6.7,248.8344148,6.3,2.503884397,0.4,0.894245073,4.690360676,4.210930535,0.475972365,47.46111626,0.553090978,0.553090978,0.553090978,2.974709547,1.029063343,4.00377289,1.1616 -1152,1993/2/25,0.3,0,247.6758726,0,0,0.285067233,0.8734749,0.8734749,2.713278247,0.385013013,47.73399602,0.632718892,0.632718892,0.632718892,3.073117379,1.017731905,4.090849283,1.404 -1153,1993/2/26,0.3,0,246.5378405,0,0,0.28457893,0.853453231,0.853453231,0.778216856,0.131925268,46.50525886,0.64554312,0.64554312,0.64554312,2.65249713,0.777468387,3.429965517,1.344 -1154,1993/2/27,0.6,7.6,248.4508185,7,2.800302361,0.6,0.887324353,5.087021993,2.440785003,0.178508015,46.79024301,0.589230494,0.589230494,0.589230494,2.745031349,0.767738508,3.512769858,1.104 -1155,1993/2/28,0.8,4.7,249.088027,3.9,1.536053082,0.8,0.89884454,3.262791458,3.857568731,0.418728905,48.05646645,0.601965408,0.601965408,0.601965408,3.193310704,1.020694313,4.214005017,1.884 -1156,1993/3/1,0.9,0.2,247.5515392,0,0,0.865218597,0.871269208,0.871269208,1.991625127,0.295300877,47.66211983,0.660935993,0.660935993,0.660935993,3.046907735,0.95623687,4.003144605,2.424 -1157,1993/3/2,1,9.2,249.8697222,8.2,3.231324465,1,0.913141513,5.881817048,2.763802733,0.225314273,47.92447586,0.642147391,0.642147391,0.642147391,3.143594091,0.867461664,4.011055755,1.956 -1158,1993/3/3,0.8,4.5,250.3797667,3.7,1.43261317,0.8,0.922568636,3.189955467,4.230084445,0.47000012,49.16723065,0.654604195,0.654604195,0.654604195,3.641933853,1.124604315,4.766538168,2.76 -1159,1993/3/4,0.6,2,250.0057609,1.4,0.541642417,0.6,0.915648267,1.774005851,2.311520125,0.319664066,48.73428214,0.715967153,0.715967153,0.715967153,3.460435783,1.035631219,4.496067003,3.024 -1160,1993/3/5,0.7,0.4,248.8261131,0,0,0.685552948,0.894094837,0.894094837,1.248953608,0.17478668,47.63889537,0.694143065,0.694143065,0.694143065,3.038483446,0.868929745,3.907413192,2.496 -1161,1993/3/6,1.1,5.5,249.6401152,4.4,1.722925286,1.1,0.908923164,3.585997879,1.868252471,0.158874457,47.24822758,0.641052905,0.641052905,0.641052905,2.899973164,0.799927362,3.699900526,2.592 -1162,1993/3/7,1.4,1.1,248.4670959,0,0,1.38540219,0.887617143,0.887617143,2.161271539,0.267621684,47.16210499,0.622841165,0.622841165,0.622841165,2.870235301,0.890462849,3.76069815,2.928 -1163,1993/3/8,1.5,1.3,247.4084048,0,0,1.489955486,0.868735552,0.868735552,0.791395318,0.120172611,46.05904823,0.618876676,0.618876676,0.618876676,2.513328754,0.739049286,3.25237804,2.856 -1164,1993/3/9,1.5,0,245.1576296,0,0,1.421105775,0.829669483,0.829669483,0.766427027,0.086238772,45.14610647,0.569679171,0.569679171,0.569679171,2.249047954,0.655917943,2.904965897,2.592 -1165,1993/3/10,1.8,0,242.6704072,0,0,1.699061529,0.788160784,0.788160784,0.730302486,0.082516609,44.36454849,0.531127805,0.531127805,0.531127805,2.042988268,0.613644415,2.656632682,2.928 -1166,1993/3/11,2,8.8,244.6944362,6.8,2.845837635,2,0.821808707,4.775971072,2.284922972,0.166837811,44.95271321,0.499636565,0.499636565,0.499636565,2.196394815,0.666474375,2.86286919,2.928 -1167,1993/3/12,1.3,10.6,247.6030628,9.3,3.780809367,1.3,0.872182698,6.391373331,4.936617031,0.466022031,47.44392759,0.523207145,0.523207145,0.523207145,2.968609799,0.989229176,3.957838976,3.792 -1168,1993/3/13,1.2,2.8,247.3751662,1.6,0.640251403,1.2,0.86814804,1.827896637,3.949212566,0.519917072,48.61364912,0.631917239,0.631917239,0.631917239,3.411408276,1.151834311,4.563242587,4.512 -1169,1993/3/14,1,1.1,246.5615704,0.1,0.040271113,1,0.853866902,0.913595789,1.283867939,0.216543565,47.57150421,0.688147854,0.688147854,0.688147854,3.014160702,0.90469142,3.918852121,4.512 -1170,1993/3/15,1,1,245.7222372,0,0,1,0.839333264,0.839333264,0.792895168,0.100513019,46.38725822,0.637884541,0.637884541,0.637884541,2.615025696,0.738397559,3.353423255,4.104 -1171,1993/3/16,0.9,6.3,247.0493871,5.4,2.189556571,0.9,0.862406648,4.072850077,2.032957902,0.155784678,46.38873784,0.584014253,0.584014253,0.584014253,2.61549254,0.739798931,3.355291471,3.888 -1172,1993/3/17,0.6,6.9,248.6673223,6.3,2.509160377,0.6,0.89122511,4.682064733,3.906264833,0.38252048,47.78663654,0.584079454,0.584079454,0.584079454,3.092445583,0.966599934,4.059045518,3.888 -1173,1993/3/18,0.5,2.1,248.4127091,1.6,0.632025933,0.5,0.886639164,1.854613231,3.096736001,0.398959009,48.25999507,0.648038199,0.648038199,0.648038199,3.271415674,1.046997208,4.318412882,3.792 -1174,1993/3/19,0.9,0,246.7020789,0,0,0.85431063,0.856319622,0.856319622,1.274727451,0.196896509,47.29074772,0.670785149,0.670785149,0.670785149,2.914759947,0.867681658,3.782441606,3.6 -1175,1993/3/20,1.3,0,244.6505294,0,0,1.230482779,0.821066701,0.821066701,0.756759259,0.096632289,46.13559345,0.624805172,0.624805172,0.624805172,2.536718702,0.72143746,3.258156162,2.928 -1176,1993/3/21,1.7,0.5,242.729097,0,0,1.632311837,0.789120548,0.789120548,0.726338131,0.081821255,45.17728825,0.572999671,0.572999671,0.572999671,2.257643009,0.654820926,2.912463935,3.024 -1177,1993/3/22,1.6,1.4,241.7673019,0,0,1.588284645,0.773510441,0.773510441,0.704040943,0.078946213,44.36950272,0.532412863,0.532412863,0.532412863,2.044239331,0.611359076,2.655598407,2.592 -1178,1993/3/23,1.8,7.8,243.5065715,6,2.541193492,1.8,0.801923931,4.260730439,2.073955138,0.154079401,44.79026425,0.499831874,0.499831874,0.499831874,2.153025483,0.653911275,2.806936758,2.592 -1179,1993/3/24,1.9,0.6,241.5127924,0,0,1.824357408,0.769421659,0.769421659,2.455246062,0.308310091,45.4329037,0.516619351,0.516619351,0.516619351,2.329225965,0.824929442,3.154155406,2.76 -1180,1993/3/25,2.3,11.8,244.6926305,9.5,4.001616297,2.3,0.821778181,6.320161884,2.885569199,0.239957835,46.28009005,0.543031112,0.543031112,0.543031112,2.581413962,0.782988948,3.36440291,2.592 -1181,1993/3/26,1.8,0.1,242.3067779,0,0,1.703617357,0.782235252,0.782235252,3.500118453,0.444992536,47.40476029,0.579305519,0.579305519,0.579305519,2.954753735,1.024298056,3.97905179,3.024 -1182,1993/3/27,1.7,0,239.9643613,0,0,1.597497114,0.744919457,0.744919457,0.689268289,0.142720048,46.17521748,0.630093246,0.630093246,0.630093246,2.548904346,0.772813295,3.321717641,2.928 -1183,1993/3/28,1.7,7,241.4883455,5.3,2.29301402,1.7,0.76902983,3.776015811,1.868009437,0.141464422,46.09397424,0.574723964,0.574723964,0.574723964,2.523976638,0.716188387,3.240165024,2.928 -1184,1993/3/29,1.7,6.2,242.6195618,4.5,1.918546302,1.7,0.78733006,3.368783758,3.237517323,0.332913507,47.06547848,0.571192537,0.571192537,0.571192537,2.837205619,0.904106045,3.741311663,2.76 -1185,1993/3/30,1.6,7.3,244.19917,5.7,2.39307844,1.6,0.813470209,4.12039177,3.328864579,0.358179187,47.88130342,0.614450153,0.614450153,0.614450153,3.127489788,0.97262934,4.100119127,3.216 -1186,1993/3/31,1.5,21.7,251.305755,20.2,8.046469415,1.5,0.939884401,13.09341499,7.253581458,0.600131854,51.17679667,0.652542583,0.652542583,0.652542583,4.610630797,1.252674437,5.863305233,4.296 -1187,1993/4/1,1.4,0.5,249.5407522,0,0,1.357900259,0.907102548,0.907102548,6.96927812,0.936023221,53.15777493,0.823727998,0.823727998,0.823727998,5.812027857,1.759751218,7.571779075,5.928 -1188,1993/4/2,1.6,0,247.1559189,0,0,1.520552537,0.864280737,0.864280737,0.799473434,0.23349852,50.59232098,0.94083131,0.94083131,0.94083131,4.30575869,1.17432983,5.48008852,5.424 -1189,1993/4/3,1.8,0,244.630878,0,0,1.704306212,0.820734775,0.820734775,0.760647694,0.085977314,48.69843832,0.791268898,0.791268898,0.791268898,3.445799254,0.877246212,4.323045466,5.088 -1190,1993/4/4,1.9,0,242.0607947,0,0,1.791835998,0.778247238,0.778247238,0.721874511,0.08165449,47.22183936,0.692357822,0.692357822,0.692357822,2.890831297,0.774012312,3.664843609,4.512 -1191,1993/4/5,1.7,0,239.7227851,0,0,1.596855414,0.741154184,0.741154184,0.685767082,0.07751166,46.02595391,0.621624512,0.621624512,0.621624512,2.50327704,0.699136172,3.202413211,4.2 -1192,1993/4/6,1.9,2.4,239.2089245,0.5,0.219335422,1.9,0.733196033,1.013860611,0.774784677,0.080538807,45.12558027,0.568247818,0.568247818,0.568247818,2.243406135,0.648786625,2.892192759,3.792 -1193,1993/4/7,2.3,0.1,236.4612432,0,0,2.155878478,0.691802844,0.691802844,0.785229951,0.091100578,44.39133313,0.530283094,0.530283094,0.530283094,2.049760193,0.621383672,2.671143864,2.856 -1194,1993/4/8,2.3,0,233.6706379,0,0,2.13889358,0.651711687,0.651711687,0.606782583,0.072098726,43.63319658,0.500693138,0.500693138,0.500693138,1.865612264,0.572791865,2.438404129,2.424 -1195,1993/4/9,2.3,0,230.9283517,0,0,2.12812695,0.614159313,0.614159313,0.571703612,0.064819757,42.96143805,0.471397842,0.471397842,0.471397842,1.714859988,0.536217599,2.251077588,2.184 -1196,1993/4/10,2.6,0.2,228.1414844,0,0,2.409065468,0.577801758,0.577801758,0.538378548,0.061060802,42.35766965,0.446481859,0.446481859,0.446481859,1.588628808,0.507542661,2.096171469,1.956 -1197,1993/4/11,2.5,2.9,227.7651069,0.4,0.196649878,2.5,0.573027359,0.776377481,0.59847856,0.062567722,41.88541019,0.424903383,0.424903383,0.424903383,1.495641406,0.487471105,1.983112511,1.812 -1198,1993/4/12,2.4,1.1,226.0233494,0,0,2.290412944,0.551344607,0.551344607,0.60982954,0.070356263,41.48350938,0.408552326,0.408552326,0.408552326,1.420282668,0.47890859,1.899191258,1.812 -1199,1993/4/13,2.7,0,223.0469345,0,0,2.460591797,0.515823132,0.515823132,0.482175648,0.05700887,41.02271996,0.394995543,0.394995543,0.394995543,1.337960614,0.452004413,1.789965026,1.608 -1200,1993/4/14,2.6,0.1,220.2975266,0,0,2.364738225,0.484669662,0.484669662,0.451932114,0.051317458,40.59004818,0.379851255,0.379851255,0.379851255,1.264455148,0.431168713,1.695623861,1.404 -1201,1993/4/15,2.3,0.6,218.3023334,0,0,2.132168559,0.463024611,0.463024611,0.427650755,0.048359302,40.18490079,0.366012963,0.366012963,0.366012963,1.19881111,0.414372264,1.613183375,1.404 -1202,1993/4/16,2.2,0,215.8912928,0,0,1.973127872,0.437912722,0.437912722,0.406800467,0.046006555,39.80512524,0.353385019,0.353385019,0.353385019,1.139961035,0.399391574,1.539352608,1.344 -1203,1993/4/17,1.6,0,214.0438021,0,0,1.428069284,0.419421458,0.419421458,0.386815567,0.043681576,39.44701822,0.341833376,0.341833376,0.341833376,1.086755959,0.385514952,1.472270911,1.1616 -1204,1993/4/18,1.3,0,212.4837871,0,0,1.155713884,0.404301069,0.404301069,0.371505258,0.041828355,39.11094286,0.331190305,0.331190305,0.331190305,1.038770928,0.37301866,1.411789588,1.104 -1205,1993/4/19,1.1,0.1,211.2055211,0,0,0.986025084,0.392240902,0.392240902,0.359105997,0.04034373,38.79601051,0.321419324,0.321419324,0.321419324,0.995457674,0.361763054,1.357220727,1.104 -1206,1993/4/20,1.2,0.2,209.9416032,0,0,1.08331581,0.380602092,0.380602092,0.348418325,0.039110869,38.50063853,0.312451578,0.312451578,0.312451578,0.956241881,0.351562447,1.307804328,1.0488 -1207,1993/4/21,1.5,0,208.2558962,0,0,1.320194252,0.365512797,0.365512797,0.336580114,0.03786628,38.22108027,0.304204578,0.304204578,0.304204578,0.920342954,0.342070858,1.262413812,0.9408 -1208,1993/4/22,1.6,0,206.5033733,0,0,1.402184016,0.350338902,0.350338902,0.322966324,0.036396189,37.95352706,0.296543449,0.296543449,0.296543449,0.887062984,0.332939638,1.220002622,0.888 -1209,1993/4/23,1.6,0,204.7715407,0,0,1.395987103,0.335845464,0.335845464,0.309578666,0.034894733,37.69640093,0.289341333,0.289341333,0.289341333,0.856046128,0.324236066,1.180282194,0.8376 -1210,1993/4/24,1.5,0,203.1458019,0,0,1.303056746,0.322682037,0.322682037,0.297060058,0.033466557,37.44893395,0.282538471,0.282538471,0.282538471,0.827065504,0.316005028,1.143070532,0.7392 -1211,1993/4/25,1.7,11.4,208.4609559,9.7,5.682476249,1.7,0.367322229,4.38484598,1.895369136,0.121587671,38.64514302,0.276099799,0.276099799,0.276099799,0.97525987,0.39768747,1.37294734,0.7392 -1212,1993/4/26,1.2,0.9,207.8357096,0,0,1.163418867,0.361827474,0.361827474,2.356872274,0.302269636,40.12143605,0.308219562,0.308219562,0.308219562,1.188798807,0.610489198,1.799288005,0.8376 -1213,1993/4/27,1.3,0.6,206.8688318,0,0,1.213417238,0.353460607,0.353460607,0.32233898,0.083447512,39.67485639,0.351435496,0.351435496,0.351435496,1.120354133,0.434883008,1.555237141,0.8376 -1214,1993/4/28,1.2,0.6,205.9982063,0,0,1.124565135,0.346060331,0.346060331,0.315190699,0.035282314,39.26713852,0.337933896,0.337933896,0.337933896,1.060842462,0.37321621,1.434058672,0.8376 -1215,1993/4/29,1.6,3.2,206.5815925,1.6,0.934391399,1.6,0.351005171,1.016613773,0.576389019,0.049411922,39.12826316,0.325934531,0.325934531,0.325934531,1.041198914,0.375346453,1.416545367,0.8376 -1216,1993/4/30,2.1,1.3,205.540616,0,0,1.998755444,0.342221046,0.342221046,0.648500745,0.078949868,39.06616537,0.321917792,0.321917792,0.321917792,1.032516327,0.40086766,1.433383986,0.8376 -1217,1993/5/1,2.1,6.1,207.5136237,4,2.332030475,2.1,0.359022824,2.026992349,0.973649726,0.079156665,39.29511113,0.320133208,0.320133208,0.320133208,1.064837172,0.399289874,1.464127046,0.888 -1218,1993/5/2,2,16,214.9729924,14,7.88801019,2,0.428641416,6.540631226,3.607625494,0.281902752,41.75808518,0.326747902,0.326747902,0.326747902,1.471399343,0.608650654,2.080049996,0.9936 -1219,1993/5/3,1.6,6.1,216.9712397,4.5,2.447268939,1.6,0.449021639,2.5017527,4.290812673,0.512175287,44.40092878,0.404222048,0.404222048,0.404222048,2.052191123,0.916397335,2.968588458,2.148 -1220,1993/5/4,1.6,14.7,223.3388015,13.1,6.886784355,1.6,0.519222645,6.73243829,3.923115349,0.39067404,46.25234083,0.501072046,0.501072046,0.501072046,2.572775347,0.891746086,3.464521433,1.344 -1221,1993/5/5,1.8,1.4,222.4663801,0,0,1.763306985,0.509114378,0.509114378,3.600367698,0.486744794,47.45740699,0.578090714,0.578090714,0.578090714,2.973392256,1.064835508,4.038227764,2.028 -1222,1993/5/6,2.4,0,219.815328,0,0,2.171686714,0.479365422,0.479365422,0.446449157,0.12365778,46.03145626,0.632545836,0.632545836,0.632545836,2.504945723,0.756203616,3.261149339,2.496 -1223,1993/5/7,2.9,1.9,218.4497807,0,0,2.80095012,0.464597099,0.464597099,0.425593925,0.047963256,44.85525321,0.56848562,0.56848562,0.56848562,2.170282594,0.616448876,2.78673147,1.956 -1224,1993/5/8,2.6,3.2,218.3068788,0.6,0.320171056,2.6,0.463073022,0.742901967,0.528095243,0.052742674,43.95959065,0.519247695,0.519247695,0.519247695,1.943005497,0.571990368,2.514995866,2.268 -1225,1993/5/9,2.8,3.6,218.2713833,0.8,0.427199564,2.8,0.46269508,0.835495516,0.705195334,0.073040244,43.34832975,0.483855544,0.483855544,0.483855544,1.800311773,0.556895788,2.357207561,1.812 -1226,1993/5/10,2.1,33,233.0950469,30.9,15.46734397,2.1,0.643680284,16.07633632,6.773580898,0.416992866,47.56926784,0.460713854,0.460713854,0.460713854,3.013356661,0.87770672,3.891063381,3.024 -1227,1993/5/11,2.1,18,239.5592722,15.9,7.202839574,2.1,0.738614345,9.435774772,11.84502569,1.282120174,53.79194127,0.637779591,0.637779591,0.637779591,6.260131862,1.919899765,8.180031627,5.424 -1228,1993/5/12,2,5,240.1224966,3,1.310616945,2,0.747392536,2.43677559,5.72690225,0.868270485,54.04828647,0.980704672,0.980704672,0.980704672,6.451261724,1.848975158,8.300236881,6.408 -1229,1993/5/13,2.2,1.3,238.5560997,0,0,2.143211607,0.72318524,0.72318524,1.516060815,0.288612242,51.67458379,0.997159743,0.997159743,0.997159743,4.886923236,1.285771985,6.172695221,5.784 -1230,1993/5/14,2.4,0.2,235.8201022,0,0,2.253576777,0.682420725,0.682420725,0.634760695,0.091634243,49.41266164,0.852113485,0.852113485,0.852113485,3.74879633,0.943747728,4.692544058,5.088 -1231,1993/5/15,2.7,1.9,234.4138601,0,0,2.644040819,0.662201318,0.662201318,0.606189977,0.06827906,47.69026117,0.728554174,0.728554174,0.728554174,3.057144621,0.796833235,3.853977855,3.696 -1232,1993/5/16,2.2,6.2,235.5731074,4,1.838081097,2.2,0.678833809,2.840752712,1.456723789,0.114277667,46.98163165,0.643475381,0.643475381,0.643475381,2.808828688,0.757753048,3.566581736,3.312 -1233,1993/5/17,2.5,0,232.6152494,0,0,2.320811339,0.637046618,0.637046618,1.685996168,0.210009811,46.5964608,0.610627441,0.610627441,0.610627441,2.681794462,0.820637252,3.502431714,3.216 -1234,1993/5/18,3.3,0,228.981894,0,0,3.044777325,0.588578113,0.588578113,0.554192102,0.088631815,45.41873311,0.593284829,0.593284829,0.593284829,2.325204618,0.681916643,3.007121261,2.664 -1235,1993/5/19,3.7,0,225.053488,0,0,3.388845575,0.539560399,0.539560399,0.510353457,0.058353539,44.41560977,0.542438541,0.542438541,0.542438541,2.055915337,0.600792079,2.656707417,2.268 -1236,1993/5/20,3.7,0,221.1967523,0,0,3.362048351,0.494687334,0.494687334,0.467875061,0.053549218,43.5409064,0.501652157,0.501652157,0.501652157,1.844230585,0.555201375,2.39943196,2.112 -1237,1993/5/21,3.2,15.9,227.0878221,12.7,6.455585745,3.2,0.564515925,6.80893018,2.939967135,0.188595167,44.79461415,0.467917311,0.467917311,0.467917311,2.154176696,0.656512478,2.810689174,2.004 -1238,1993/5/22,2.6,0,224.1838695,0,0,2.374785353,0.529167345,0.529167345,3.646911458,0.4685812,46.35382377,0.516794976,0.516794976,0.516794976,2.60449682,0.985376176,3.589872996,2.904 -1239,1993/5/23,3,7.4,225.8550136,4.4,2.220428673,3,0.549284541,2.728855868,1.345344467,0.175264723,45.83555626,0.582542294,0.582542294,0.582542294,2.446154269,0.757807017,3.203961286,1.812 -1240,1993/5/24,2.9,10.6,229.0669689,7.7,3.801633328,2.9,0.589677964,4.488044636,3.151023246,0.285556086,46.79879045,0.560062836,0.560062836,0.560062836,2.747851888,0.845618921,3.59347081,1.884 -1241,1993/5/25,2.3,5.6,230.0626283,3.3,1.598332726,2.3,0.602673339,2.304340613,3.17646165,0.380124146,47.56557358,0.602350372,0.602350372,0.602350372,3.012028898,0.982474518,3.994503416,2.112 -1242,1993/5/26,2.4,4.8,230.606848,2.4,1.154093039,2.4,0.609873374,1.855780335,1.896680957,0.246343359,47.2123206,0.637606251,0.637606251,0.637606251,2.887540182,0.88394961,3.771489792,1.884 -1243,1993/5/27,2.4,4.3,230.9030733,1.9,0.910046729,2.4,0.613821453,1.603774724,1.570635192,0.185336996,46.69150165,0.621186058,0.621186058,0.621186058,2.712640198,0.806523054,3.519163251,2.028 -1244,1993/5/28,2.7,2.8,230.3446359,0.1,0.047958339,2.7,0.606395708,0.658437369,1.069895742,0.142599636,45.89505265,0.597530982,0.597530982,0.597530982,2.463875732,0.740130618,3.204006349,1.884 -1245,1993/5/29,3.5,6.7,231.2580418,3.2,1.531985394,3.5,0.618579541,2.286594147,1.23587609,0.112731204,45.37945045,0.562611411,0.562611411,0.562611411,2.314089701,0.675342615,2.989432315,1.668 -1246,1993/5/30,3.9,0.1,227.1966125,0,0,3.595553068,0.565876188,0.565876188,1.378081411,0.171686977,45.07010752,0.540798272,0.540798272,0.540798272,2.228222605,0.712485249,2.940707854,2.112 -1247,1993/5/31,3.6,0,223.3909368,0,0,3.28584393,0.519831783,0.519831783,0.491096476,0.075871505,44.10966978,0.528005033,0.528005033,0.528005033,1.979539255,0.603876539,2.583415793,1.74 -1248,1993/6/1,4.1,0,219.2070515,0,0,3.711144255,0.472741019,0.472741019,0.449243097,0.05149261,43.26661714,0.489661891,0.489661891,0.489661891,1.78195763,0.541154501,2.323112132,1.476 -1249,1993/6/2,4.1,0.1,215.1880115,0,0,3.688241981,0.430797997,0.430797997,0.408895276,0.046908866,42.51291298,0.457681412,0.457681412,0.457681412,1.620280844,0.504590278,2.124871123,1.404 -1250,1993/6/3,2.9,28.6,227.9504455,25.7,13.33780841,2.9,0.575374418,12.93756601,5.329124792,0.318097158,45.82838933,0.430378935,0.430378935,0.430378935,2.444027373,0.748476092,3.192503465,1.836 -1251,1993/6/4,2.8,0.1,224.9420754,0,0,2.57015036,0.538219776,0.538219776,6.744844688,0.874084442,49.39290539,0.559756392,0.559756392,0.559756392,3.74008502,1.433840834,5.173925854,3.6 -1252,1993/6/5,3.3,0,221.4455581,0,0,2.999028968,0.497488326,0.497488326,0.468304847,0.199168687,47.57376991,0.727535163,0.727535163,0.727535163,3.014975491,0.92670385,3.941679341,2.028 -1253,1993/6/6,3.5,5.9,222.1846519,2.4,1.244977979,3.5,0.50588419,1.660906211,0.907404266,0.07576618,46.47600354,0.637990879,0.637990879,0.637990879,2.643161519,0.713757059,3.356918578,1.956 -1254,1993/6/7,4,0.1,218.2009749,0,0,3.621730876,0.461946134,0.461946134,1.021108095,0.126051954,45.68362263,0.587934167,0.587934167,0.587934167,2.401423168,0.713986121,3.115409289,2.112 -1255,1993/6/8,4.4,0.2,214.0233421,0,0,3.958412486,0.419220253,0.419220253,0.398870573,0.059397606,44.54665768,0.553592065,0.553592065,0.553592065,2.089427592,0.612989671,2.702417263,1.74 -1256,1993/6/9,3.6,1.3,211.5850598,0,0,3.342491134,0.395791167,0.395791167,0.368041418,0.041911687,43.57049008,0.506851714,0.506851714,0.506851714,1.851060736,0.548763401,2.399824137,1.608 -1257,1993/6/10,3.2,0,208.3957724,0,0,2.822541128,0.366746276,0.366746276,0.344736445,0.039217921,42.72073877,0.469030991,0.469030991,0.469030991,1.663518744,0.508248912,2.171767656,1.536 -1258,1993/6/11,3.9,0,204.6505784,0,0,3.410342608,0.334851438,0.334851438,0.317470034,0.036317109,41.96502132,0.437787768,0.437787768,0.437787768,1.510975249,0.474104877,1.985080126,1.476 -1259,1993/6/12,4.1,0,200.796169,0,0,3.550016738,0.304392616,0.304392616,0.289332048,0.033192758,41.28189217,0.411276648,0.411276648,0.411276648,1.383737846,0.444469406,1.828207252,1.344 -1260,1993/6/13,3.7,0,197.3449557,0,0,3.172166776,0.279046596,0.279046596,0.26393917,0.030242164,40.65833035,0.388317145,0.388317145,0.388317145,1.275818137,0.418559309,1.694377446,1.1616 -1261,1993/6/14,4,0,193.6956019,0,0,3.395236184,0.254117628,0.254117628,0.241292529,0.027656414,40.08475121,0.368172523,0.368172523,0.368172523,1.183044197,0.395828937,1.578873134,0.9936 -1262,1993/6/15,4.4,0,189.772731,0,0,3.693523874,0.229346951,0.229346951,0.218918999,0.025162072,39.55187272,0.350312114,0.350312114,0.350312114,1.102109597,0.375474187,1.477583783,0.888 -1263,1993/6/16,3.5,0,186.6549506,0,0,2.906705188,0.211075234,0.211075234,0.199193121,0.022825789,39.05446086,0.334281747,0.334281747,0.334281747,1.030886728,0.357107536,1.387994263,0.8376 -1264,1993/6/17,2.9,0,184.0712409,0,0,2.386874474,0.1968352,0.1968352,0.184341488,0.021010462,38.59056101,0.319797634,0.319797634,0.319797634,0.968038976,0.340808096,1.308847072,0.7872 -1265,1993/6/18,2.5,0,181.8443783,0,0,2.041672772,0.185189873,0.185189873,0.172550623,0.019595861,38.15747347,0.306698608,0.306698608,0.306698608,0.912336772,0.326294469,1.238631241,0.7872 -1266,1993/6/19,2.5,0,179.6434388,0,0,2.026709834,0.174229633,0.174229633,0.162340506,0.018415763,37.75196404,0.294819782,0.294819782,0.294819782,0.862669717,0.313235545,1.175905262,0.7872 -1267,1993/6/20,2.9,0,177.1487322,0,0,2.332264681,0.162441925,0.162441925,0.152149359,0.017293496,37.37010259,0.283998738,0.283998738,0.283998738,0.81800954,0.301292234,1.119301774,0.6936 -1268,1993/6/21,2.9,0,174.6851236,0,0,2.312171201,0.151437422,0.151437422,0.141849865,0.016141675,37.00849098,0.274070946,0.274070946,0.274070946,0.777532425,0.290212621,1.067745046,0.6936 -1269,1993/6/22,2.6,0.5,172.8797495,0,0,2.161614765,0.143759278,0.143759278,0.133260052,0.015105001,36.66589799,0.264900515,0.264900515,0.264900515,0.740753556,0.280005516,1.020759072,0.6936 -1270,1993/6/23,2.9,0,170.4687744,0,0,2.276979716,0.133995463,0.133995463,0.125525677,0.014252174,36.34064022,0.256416592,0.256416592,0.256416592,0.707200044,0.270668766,0.97786881,0.7392 -1271,1993/6/24,3.3,9.5,174.7130668,6.2,4.395851247,3.3,0.151558794,1.955707547,0.840351818,0.053501156,36.68660148,0.248543261,0.248543261,0.248543261,0.742933816,0.302044417,1.044978233,0.6936 -1272,1993/6/25,3,10.6,179.804869,7.6,5.266817566,3,0.175015396,2.50819783,1.978424886,0.186212231,38.02597759,0.256923701,0.256923701,0.256923701,0.895972478,0.443135933,1.339108411,0.7872 -1273,1993/6/26,3,6,181.6632777,3,2.042676338,3,0.184267678,1.14159134,1.717433668,0.21430673,39.00997705,0.291279111,0.291279111,0.291279111,1.024713317,0.505585842,1.530299158,0.888 -1274,1993/6/27,3,19.6,192.3405329,16.6,10.92258525,3,0.245329954,5.922744701,2.916459207,0.235223207,40.92407572,0.318524553,0.318524553,0.318524553,1.320885088,0.55374776,1.874632848,1.1616 -1275,1993/6/28,2.6,27.5,207.1553288,24.9,15.17071926,2.6,0.355923425,10.08520417,6.975052022,0.627250273,45.83099211,0.376663954,0.376663954,0.376663954,2.444799592,1.003914228,3.448713819,2.268 -1276,1993/6/29,2.5,0.4,204.9834827,0,0,2.234253227,0.337592843,0.337592843,5.225415865,0.74546828,48.32107398,0.559867668,0.559867668,0.559867668,3.295201661,1.305335948,4.600537609,2.712 -1277,1993/6/30,2.5,0,202.495454,0,0,2.170495,0.31753376,0.31753376,0.295908235,0.148284572,46.60589992,0.673761215,0.673761215,0.673761215,2.684843509,0.822045787,3.506889296,1.536 -1278,1993/7/1,3.2,0.1,199.5286569,0,0,2.771919192,0.294877862,0.294877862,0.276829063,0.03149267,45.20979874,0.593705575,0.593705575,0.593705575,2.266635813,0.625198244,2.891834057,1.344 -1279,1993/7/2,4,8.8,202.1217661,4.8,2.907714781,4,0.314605555,2.206890774,1.020823705,0.071723549,44.64855533,0.533755043,0.533755043,0.533755043,2.115822159,0.605478591,2.72130075,1.284 -1280,1993/7/3,3.2,3.1,201.7238503,0,0,3.186404445,0.311511383,0.311511383,1.237339889,0.156534967,44.35598822,0.510921198,0.510921198,0.510921198,2.040828201,0.667456165,2.708284366,1.344 -1281,1993/7/4,3.2,0.1,198.7681974,0,0,2.766367902,0.289284998,0.289284998,0.271578623,0.05301782,43.33055988,0.499299224,0.499299224,0.499299224,1.796306188,0.552317044,2.348623231,1.284 -1282,1993/7/5,3.7,2.7,197.6318152,0,0,3.555295778,0.281086402,0.281086402,0.257117237,0.029010691,42.44197969,0.460053178,0.460053178,0.460053178,1.605750604,0.489063869,2.094814473,1.224 -1283,1993/7/6,3.8,0,194.1458315,0,0,3.228891098,0.257092646,0.257092646,0.243497855,0.027678682,41.6603285,0.427870849,0.427870849,0.427870849,1.453019896,0.455549531,1.908569427,1.0488 -1284,1993/7/7,4.1,0,190.4646888,0,0,3.447573504,0.233569191,0.233569191,0.222089291,0.02547592,40.95680749,0.400919701,0.400919701,0.400919701,1.32653,0.426395622,1.752925622,0.9936 -1285,1993/7/8,4.2,3.6,189.7343713,0,0,4.101202785,0.229114689,0.229114689,0.208452299,0.02353659,40.32225089,0.377719427,0.377719427,0.377719427,1.220728328,0.401256016,1.621984344,0.9936 -1286,1993/7/9,4.1,2.1,187.852438,0,0,3.763983847,0.217949433,0.217949433,0.201791838,0.022718935,39.75003897,0.357630598,0.357630598,0.357630598,1.131634351,0.380349533,1.511983884,0.7872 -1287,1993/7/10,3.6,1.7,186.0728506,0,0,3.271790285,0.207797113,0.207797113,0.192143317,0.021703791,39.22720148,0.340180518,0.340180518,0.340180518,1.055161328,0.36188431,1.417045638,0.7392 -1288,1993/7/11,3.4,3,185.5383316,0,0,3.329696026,0.204823037,0.204823037,0.185842343,0.020834174,38.74872972,0.324775772,0.324775772,0.324775772,0.989089877,0.345609947,1.334699824,0.7872 -1289,1993/7/12,3.6,1.7,183.7827348,0,0,3.260302529,0.195294199,0.195294199,0.180575898,0.020308228,38.30892816,0.311120858,0.311120858,0.311120858,0.931498317,0.331429086,1.262927403,0.8376 -1290,1993/7/13,3.5,1.9,182.2882551,0,0,3.207013932,0.187465832,0.187465832,0.172671798,0.019469978,37.90000617,0.29893584,0.29893584,0.29893584,0.880529628,0.318405818,1.198935445,0.7872 -1291,1993/7/14,3.6,1.6,180.4850276,0,0,3.224870074,0.178357351,0.178357351,0.165120496,0.018638987,37.51797614,0.287915778,0.287915778,0.287915778,0.835066303,0.306554765,1.141621068,0.7872 -1292,1993/7/15,3.6,0,177.4205893,0,0,2.900743827,0.163694506,0.163694506,0.154728342,0.017621319,37.15667924,0.277885504,0.277885504,0.277885504,0.793910741,0.295506823,1.089417564,0.7392 -1293,1993/7/16,3.9,0,174.1633438,0,0,3.108060148,0.149185347,0.149185347,0.141592503,0.016223916,36.81077899,0.268631607,0.268631607,0.268631607,0.756124364,0.284855523,1.040979888,0.7392 -1294,1993/7/17,3.5,10.1,178.5882898,6.6,4.594109011,3.5,0.169163073,2.175054063,0.934684714,0.059557336,37.20601629,0.259980342,0.259980342,0.259980342,0.799427752,0.319537678,1.11896543,0.6936 -1295,1993/7/18,2.6,5.9,180.6688231,3.3,2.259802534,2.6,0.179269155,1.219466621,1.579997339,0.172636819,38.14510846,0.269882102,0.269882102,0.269882102,0.910787268,0.442518922,1.35330619,0.9408 -1296,1993/7/19,2.9,4,181.2348712,1.1,0.748148857,2.9,0.182100815,0.533951959,0.826674043,0.118170112,38.33184131,0.294485538,0.294485538,0.294485538,0.934426739,0.412655651,1.34708239,0.9936 -1297,1993/7/20,3.2,1.2,179.4424525,0,0,2.819163386,0.173255286,0.173255286,0.338045998,0.05356306,38.06824431,0.299562101,0.299562101,0.299562101,0.901205095,0.353125162,1.254330256,0.9936 -1298,1993/7/21,3.6,0.1,176.4725693,0,0,2.91052336,0.15935981,0.15935981,0.15043967,0.021274668,37.65943455,0.292413858,0.292413858,0.292413858,0.851663291,0.313688525,1.165351816,0.9408 -1299,1993/7/22,3.7,7.2,178.7243548,3.5,2.421595211,3.7,0.169809705,1.248214493,0.573628792,0.040000154,37.6625959,0.281569925,0.281569925,0.281569925,0.852037366,0.321570078,1.173607444,0.888 -1300,1993/7/23,3.2,5,179.7844471,1.8,1.235008111,3.2,0.174915835,0.739907724,0.922561718,0.100821979,37.97688333,0.281652662,0.281652662,0.281652662,0.889926951,0.38247464,1.272401591,0.7872 -1301,1993/7/24,2.8,3.6,180.1546053,0.8,0.546885649,2.8,0.176727491,0.429841842,0.543410336,0.073179953,37.92650003,0.289965016,0.289965016,0.289965016,0.883758652,0.36314497,1.246903622,0.7872 -1302,1993/7/25,2.7,1.5,179.0143868,0,0,2.469023821,0.171194659,0.171194659,0.284666506,0.040963896,37.64931997,0.288620826,0.288620826,0.288620826,0.85046739,0.329584722,1.180052112,0.8376 -1303,1993/7/26,2.8,2.9,178.9123946,0.1,0.068714429,2.8,0.1707066,0.201992171,0.166243243,0.020846018,37.28818114,0.281305329,0.281305329,0.281305329,0.808687406,0.302151347,1.110838753,0.888 -1304,1993/7/27,3.1,0,176.2677962,0,0,2.486162746,0.158435714,0.158435714,0.164583853,0.018879928,36.95323971,0.27197387,0.27197387,0.27197387,0.771499146,0.290853798,1.062352945,0.8376 -1305,1993/7/28,3.4,0,173.4212774,0,0,2.700489907,0.146028808,0.146028808,0.137690187,0.016084959,36.61865069,0.263518919,0.263518919,0.263518919,0.73579813,0.279603878,1.015402009,0.7392 -1306,1993/7/29,3.8,0,170.302273,0,0,2.985663081,0.133341333,0.133341333,0.12641312,0.014470725,36.29748062,0.255261998,0.255261998,0.255261998,0.702845183,0.269732723,0.972577906,0.6936 -1307,1993/7/30,4.3,0,166.8448818,0,0,3.337065043,0.120326146,0.120326146,0.114864914,0.013198093,35.98762199,0.247511664,0.247511664,0.247511664,0.672235214,0.260709757,0.932944971,0.7392 -1308,1993/7/31,4.6,1.4,164.2789345,0,0,3.854605669,0.111341701,0.111341701,0.104743787,0.011988914,35.68878151,0.240195025,0.240195025,0.240195025,0.643779287,0.252183939,0.895963226,0.648 -1309,1993/8/1,3.4,2.8,163.7121082,0,0,3.257394803,0.109431502,0.109431502,0.099452811,0.011198209,35.40392124,0.233286176,0.233286176,0.233286176,0.617599261,0.244484385,0.862083646,0.648 -1310,1993/8/2,3.6,4.5,164.26446,0.9,0.663644455,3.6,0.111292592,0.347648137,0.19260741,0.01619452,35.22201164,0.226833798,0.226833798,0.226833798,0.601350808,0.243028318,0.844379125,0.6936 -1311,1993/8/3,3.9,0,161.2052447,0,0,2.957919676,0.101295633,0.101295633,0.215549784,0.02654782,35.07211115,0.222780682,0.222780682,0.222780682,0.588230952,0.249328503,0.837559454,0.6936 -1312,1993/8/4,4.3,0,157.8952028,0,0,3.218738877,0.091303033,0.091303033,0.087218005,0.012815767,34.8127175,0.219479855,0.219479855,0.219479855,0.566091513,0.232295622,0.798387135,0.648 -1313,1993/8/5,4.5,0.8,155.0780342,0,0,3.533733593,0.083435009,0.083435009,0.079064082,0.009075458,34.56040574,0.213850723,0.213850723,0.213850723,0.545226563,0.222926181,0.768152744,0.6048 -1314,1993/8/6,3.8,7.4,157.7272737,3.6,2.740057456,3.8,0.090817981,0.950760525,0.417770608,0.027474033,34.63529934,0.208474959,0.208474959,0.208474959,0.551351973,0.235948992,0.787300965,0.6048 -1315,1993/8/7,3.5,17.3,167.8294166,13.8,10.22606668,3.5,0.123923779,3.697857103,1.941058478,0.145145211,36.10292582,0.21006045,0.21006045,0.21006045,0.683492442,0.355205661,1.038698104,1.0272 -1316,1993/8/8,3.4,11.1,173.1971933,7.7,5.512862925,3.4,0.145086219,2.332223294,2.788511291,0.307410344,38.21478816,0.242899365,0.242899365,0.242899365,0.91954832,0.550309709,1.469858029,1.536 -1317,1993/8/9,3.1,0.6,171.0943806,0,0,2.566336405,0.136476299,0.136476299,1.231464332,0.201132496,38.7529661,0.296372621,0.296372621,0.296372621,0.989659016,0.497505116,1.487164133,1.104 -1318,1993/8/10,2.9,3,171.0295835,0.1,0.071420522,2.9,0.136217651,0.164797129,0.134018186,0.04016642,38.27149348,0.311239925,0.311239925,0.311239925,0.926730727,0.351406345,1.278137072,0.9936 -1319,1993/8/11,2.6,2.4,170.7379489,0,0,2.556576102,0.135058403,0.135058403,0.136567683,0.015492932,37.83350705,0.29791469,0.29791469,0.29791469,0.872468801,0.313407621,1.185876423,0.888 -1320,1993/8/12,2.9,0.2,168.5077274,0,0,2.303769375,0.126452198,0.126452198,0.11815226,0.013667683,37.4146896,0.286151539,0.286151539,0.286151539,0.823121251,0.299819222,1.122940473,1.1616 -1321,1993/8/13,3.3,0,165.8436625,0,0,2.547310957,0.116753881,0.116753881,0.109975184,0.012533849,37.02098023,0.275217152,0.275217152,0.275217152,0.778901706,0.287751001,1.066652707,0.9936 -1322,1993/8/14,3.5,0,163.0634283,0,0,2.672956485,0.107277775,0.107277775,0.101334494,0.011581775,36.64859295,0.265213533,0.265213533,0.265213533,0.738935311,0.276795308,1.015730619,0.7872 -1323,1993/8/15,3.8,0,160.0970347,0,0,2.868536378,0.097857192,0.097857192,0.092827936,0.010632762,36.29483517,0.255993272,0.255993272,0.255993272,0.702578986,0.266626034,0.969205021,0.7392 -1324,1993/8/16,4,0.3,157.2481696,0,0,3.059419686,0.089445457,0.089445457,0.084748006,0.009712193,35.95769297,0.247448532,0.247448532,0.247448532,0.669338739,0.257160725,0.926499464,0.6936 -1325,1993/8/17,3,0,154.9522242,0,0,2.212848568,0.083096754,0.083096754,0.077992546,0.008904404,35.63629504,0.2394966,0.2394966,0.2394966,0.638887067,0.248401004,0.887288071,0.648 -1326,1993/8/18,2.7,0,152.9018443,0,0,1.972642804,0.077737108,0.077737108,0.072669488,0.008266912,35.33009109,0.232087577,0.232087577,0.232087577,0.610961017,0.240354488,0.851315505,0.648 -1327,1993/8/19,3.2,0,150.5152619,0,0,2.31473128,0.071851158,0.071851158,0.067637865,0.007707729,35.03766167,0.225182498,0.225182498,0.225182498,0.585249782,0.232890228,0.81814001,0.6048 -1328,1993/8/20,2.9,8.6,154.8349601,5.7,4.402480674,2.9,0.082782466,1.380301792,0.581633062,0.035974935,35.23547955,0.218726239,0.218726239,0.218726239,0.602541422,0.254701174,0.857242596,0.5616 -1329,1993/8/21,2.6,0,152.858428,0,0,1.898905444,0.077626692,0.077626692,0.727586464,0.094004419,35.55479304,0.223078973,0.223078973,0.223078973,0.631351947,0.317083391,0.948435339,0.648 -1330,1993/8/22,2.7,0,150.8315415,0,0,1.954276464,0.072609977,0.072609977,0.067881924,0.023016605,35.24915745,0.230235096,0.230235096,0.230235096,0.603752613,0.253251701,0.857004313,0.648 -1331,1993/8/23,2.8,1.1,149.5408235,0,0,2.321164908,0.069553121,0.069553121,0.064141218,0.00725307,34.95825482,0.223382206,0.223382206,0.223382206,0.578426051,0.230635276,0.809061327,0.6048 -1332,1993/8/24,2.5,0,147.6927328,0,0,1.782734194,0.065356517,0.065356517,0.060939735,0.006899252,34.68106738,0.216996179,0.216996179,0.216996179,0.555123359,0.223895431,0.779018789,0.5616 -1333,1993/8/25,2.5,0,145.8640721,0,0,1.767254534,0.061406108,0.061406108,0.057260063,0.006498438,34.41580134,0.211033585,0.211033585,0.211033585,0.533559679,0.217532023,0.751091702,0.4824 -1334,1993/8/26,2.7,0,143.915392,0,0,1.891270865,0.05740929,0.05740929,0.053686358,0.006099474,34.16138873,0.205437908,0.205437908,0.205437908,0.513536881,0.211537383,0.725074263,0.4824 -1335,1993/8/27,2.8,0,141.9195492,0,0,1.942308363,0.053534472,0.053534472,0.050137425,0.005703018,33.91681706,0.200171523,0.200171523,0.200171523,0.494880616,0.205874541,0.700755157,0.4824 -1336,1993/8/28,2.8,0,139.946666,0,0,1.922970228,0.049912909,0.049912909,0.046750149,0.005319656,33.68131667,0.195200441,0.195200441,0.195200441,0.477450977,0.200520097,0.677971074,0.444 -1337,1993/8/29,2.7,0,138.0640425,0,0,1.835980927,0.046642584,0.046642584,0.043629516,0.004962222,33.4543095,0.190497682,0.190497682,0.190497682,0.461134376,0.195459904,0.65659428,0.408 -1338,1993/8/30,2.9,0,136.0686975,0,0,1.951978971,0.043366069,0.043366069,0.040683778,0.004630911,33.2352085,0.18604167,0.18604167,0.18604167,0.445826442,0.190672581,0.636499023,0.408 -1339,1993/8/31,2.9,7.4,139.6840365,4.5,3.664785,2.9,0.049445991,0.884660991,0.371423912,0.022841615,33.3356532,0.181811944,0.181811944,0.181811944,0.45279116,0.204653559,0.657444719,0.408 -1340,1993/9/1,2.8,0,137.7368891,0,0,1.901055176,0.046092213,0.046092213,0.464877516,0.060137169,33.51856764,0.183742396,0.183742396,0.183742396,0.465705473,0.243879565,0.709585038,0.408 -1341,1993/9/2,2.6,0,135.9457563,0,0,1.747962397,0.043170387,0.043170387,0.040328581,0.014435362,33.29615019,0.187295379,0.187295379,0.187295379,0.45004141,0.201730741,0.651772152,0.444 -1342,1993/9/3,2.4,6.4,139.1583312,4,3.261096794,2.4,0.048521868,0.787425074,0.332907337,0.020687838,33.35770666,0.182981448,0.182981448,0.182981448,0.454332307,0.203669285,0.658001592,0.408 -1343,1993/9/4,2.3,0,137.5538467,0,0,1.558697956,0.045786556,0.045786556,0.415662203,0.053685702,33.49361133,0.184168195,0.184168195,0.184168195,0.463925735,0.237853897,0.701779633,0.4824 -1344,1993/9/5,2.3,0,135.9650412,0,0,1.545604523,0.043201036,0.043201036,0.040186364,0.01326896,33.27222286,0.186807754,0.186807754,0.186807754,0.448382589,0.200076715,0.648459304,0.4824 -1345,1993/9/6,2.6,0,134.1931009,0,0,1.731483466,0.040456767,0.040456767,0.037796674,0.004290362,33.05873654,0.182521631,0.182521631,0.182521631,0.433804621,0.186811993,0.620616614,0.4824 -1346,1993/9/7,2.9,0,132.2438323,0,0,1.911667656,0.037600944,0.037600944,0.035282757,0.004015359,32.85238638,0.178455469,0.178455469,0.178455469,0.420088384,0.182470828,0.602559213,0.444 -1347,1993/9/8,2.7,11.3,139.2474407,8.6,7.052285863,2.7,0.048677529,1.596391667,0.64971689,0.038009122,33.23114391,0.174587124,0.174587124,0.174587124,0.445546484,0.212596246,0.65814273,0.444 -1348,1993/9/9,2.7,2.8,139.2797731,0.1,0.081066592,2.7,0.048734108,0.067667516,0.832755681,0.107699082,33.76225105,0.181734132,0.181734132,0.181734132,0.483382676,0.289433214,0.772815891,0.444 -1349,1993/9/10,2.8,0.5,137.6741016,0,0,2.059684338,0.045987183,0.045987183,0.052334893,0.024320997,33.53948879,0.192104645,0.192104645,0.192104645,0.467201799,0.216425641,0.68362744,0.5208 -1350,1993/9/11,2.4,3.9,138.8461961,1.5,1.220074207,2.4,0.047979751,0.327905544,0.152774015,0.01104251,33.42117575,0.18770486,0.18770486,0.18770486,0.458791909,0.198747371,0.65753928,0.5208 -1351,1993/9/12,2.3,4.8,140.8174791,2.5,2.022769421,2.3,0.051486416,0.528716995,0.374455306,0.033873349,33.51553941,0.185397562,0.185397562,0.185397562,0.465489216,0.219270911,0.684760127,0.5208 -1352,1993/9/13,2.1,1,140.0139781,0,0,1.753467842,0.050033147,0.050033147,0.286717962,0.039996219,33.52343993,0.187236162,0.187236162,0.187236162,0.466053595,0.227232381,0.693285976,0.4824 -1353,1993/9/14,2,0,138.6042735,0,0,1.362141699,0.047562925,0.047562925,0.04405385,0.010594802,33.3042784,0.187390686,0.187390686,0.187390686,0.450606072,0.197985488,0.64859156,0.4824 -1354,1993/9/15,2.2,0.5,137.4087532,0,0,1.649974861,0.045545424,0.045545424,0.04200952,0.004741144,33.09328868,0.183137838,0.183137838,0.183137838,0.436137075,0.187878982,0.624016057,0.4824 -1355,1993/9/16,2.3,0,135.8213652,0,0,1.544414855,0.042973118,0.042973118,0.039974566,0.004521876,32.88982255,0.179109132,0.179109132,0.179109132,0.422549827,0.183631009,0.606180836,0.444 -1356,1993/9/17,2.2,0,134.3157002,0,0,1.465022989,0.040642024,0.040642024,0.037754793,0.004276484,32.69311373,0.175284429,0.175284429,0.175284429,0.40974804,0.179560913,0.589308953,0.408 -1357,1993/9/18,2.1,10.4,141.0274494,8.3,6.763620885,2.1,0.051871698,1.588250813,0.648035895,0.038061599,33.07770816,0.171642559,0.171642559,0.171642559,0.435084027,0.209704158,0.644788185,0.408 -1358,1993/9/19,2.2,0,139.4727317,0,0,1.50564486,0.049072865,0.049072865,0.821298632,0.106787419,33.60584674,0.178814166,0.178814166,0.178814166,0.471974224,0.285601585,0.757575808,0.5208 -1359,1993/9/20,2.7,0.2,137.7302404,0,0,1.896410198,0.046081082,0.046081082,0.042983528,0.022995038,33.38181606,0.189007889,0.189007889,0.189007889,0.456022089,0.212002927,0.668025016,0.6048 -1360,1993/9/21,2.5,31.2,160.0927966,28.7,22.46040042,2.5,0.097844224,6.337443802,2.527181612,0.142738356,35.47003725,0.184634495,0.184634495,0.184634495,0.623594919,0.327372851,0.95096777,0.984 -1361,1993/9/22,2.1,46.6,190.8707293,44.5,31.01400836,2.1,0.23607569,13.72206733,8.62135373,0.721634706,42.66738733,0.228319886,0.228319886,0.228319886,1.652323538,0.949954592,2.60227813,2.22 -1362,1993/9/23,1.7,0.2,189.3905693,0,0,1.453118474,0.227041439,0.227041439,7.017994351,0.988896256,47.22821966,0.435877207,0.435877207,0.435877207,2.893039228,1.424773462,4.31781269,5.208 -1363,1993/9/24,1.5,0,187.9247296,0,0,1.247469614,0.218370102,0.218370102,0.200911256,0.181677261,45.65730014,0.621918525,0.621918525,0.621918525,2.393749306,0.803595786,3.197345092,2.112 -1364,1993/9/25,1.7,2,187.9029851,0.3,0.19649895,1.7,0.218243501,0.32174455,0.237376187,0.024208349,44.39616805,0.552476457,0.552476457,0.552476457,2.050984733,0.576684806,2.627669539,1.536 -1365,1993/9/26,1.8,14.1,195.5169168,12.3,7.880256812,1.8,0.266325105,4.686068293,2.013908314,0.126751834,44.76469162,0.500884031,0.500884031,0.500884031,2.146268768,0.627635865,2.773904633,1.536 -1366,1993/9/27,1.6,0.8,194.5787915,0,0,1.478145434,0.259979855,0.259979855,2.46871998,0.319980776,45.42267633,0.515587729,0.515587729,0.515587729,2.326323,0.835568505,3.161891506,2.184 -1367,1993/9/28,1.4,0,193.145601,0,0,1.182669583,0.250520904,0.250520904,0.230244645,0.077992676,44.19495321,0.542603388,0.542603388,0.542603388,2.000571159,0.620596064,2.621167223,1.536 -1368,1993/9/29,1.4,0,191.7264612,0,0,1.177710957,0.241428847,0.241428847,0.221876549,0.024964087,43.15308312,0.49298347,0.49298347,0.49298347,1.756730102,0.517947557,2.27467766,1.224 -1369,1993/9/30,1.5,0,190.2379273,0,0,1.256355183,0.232178708,0.232178708,0.213631239,0.024047084,42.25267596,0.453491746,0.453491746,0.453491746,1.567530151,0.477538831,2.045068982,1.1616 -1370,1993/10/1,1.6,9,194.6979228,7.4,4.720774338,1.6,0.260778834,2.940004496,1.278819026,0.082763557,42.36301409,0.421228502,0.421228502,0.421228502,1.589709398,0.503992058,2.093701456,1.104 -1371,1993/10/2,1.5,1.9,194.6890385,0.4,0.251834903,1.5,0.260719182,0.408884279,1.645961907,0.206505891,42.76187161,0.425091054,0.425091054,0.425091054,1.672195442,0.631596945,2.303792387,1.104 -1372,1993/10/3,1.3,12.1,201.0484937,10.8,6.665771016,1.3,0.306315815,4.440544799,1.960899292,0.159235713,43.35925692,0.439264849,0.439264849,0.439264849,1.80277883,0.598500561,2.401279391,1.224 -1373,1993/10/4,1.5,0,199.4638622,0,0,1.290233528,0.294397968,0.294397968,2.35835338,0.305496626,44.18149237,0.461120458,0.461120458,0.461120458,1.997238384,0.766617084,2.763855468,1.344 -1374,1993/10/5,1.9,0,197.5568545,0,0,1.626455498,0.280552219,0.280552219,0.259487728,0.078036502,43.17243133,0.492458137,0.492458137,0.492458137,1.761006911,0.57049464,2.33150155,1.224 -1375,1993/10/6,2.1,0,195.5029412,0,0,1.787683667,0.266229674,0.266229674,0.246838173,0.02790415,42.29705518,0.454203795,0.454203795,0.454203795,1.576418119,0.482107945,2.058526063,1.0488 -1376,1993/10/7,1.5,0,193.9765855,0,0,1.270384648,0.255971044,0.255971044,0.23555353,0.026566721,41.52709547,0.422779036,0.422779036,0.422779036,1.428292277,0.449345757,1.877638034,0.9408 -1377,1993/10/8,1.5,0,192.46569,0,0,1.264764296,0.246131228,0.246131228,0.226486236,0.02550212,40.84303378,0.396450007,0.396450007,0.396450007,1.306997925,0.421952127,1.728950051,0.8376 -1378,1993/10/9,1.7,1.1,191.7200804,0,0,1.604220947,0.241388574,0.241388574,0.219644283,0.024625081,40.23066235,0.374059734,0.374059734,0.374059734,1.206075447,0.398684815,1.604760262,0.6936 -1379,1993/10/10,1.5,7.7,195.3846111,6.2,3.929953464,1.5,0.265422769,2.535469305,1.12363781,0.074549707,40.46519245,0.354795516,0.354795516,0.354795516,1.243903232,0.429345223,1.673248455,0.6936 -1380,1993/10/11,1.4,3.5,196.4244057,2.1,1.312375432,1.4,0.272580846,1.060205414,1.699047607,0.194108137,41.16364178,0.362087572,0.362087572,0.362087572,1.362685848,0.556195709,1.918881557,0.6936 -1381,1993/10/12,1.5,7.9,200.0668868,6.4,3.941369576,1.5,0.298888533,2.757518958,1.624791062,0.16067608,41.71045216,0.384437946,0.384437946,0.384437946,1.46241863,0.545114026,2.007532656,1.0488 -1382,1993/10/13,1.1,0.8,199.5143941,0,0,1.05772054,0.294772172,0.294772172,1.508739175,0.201676339,42.0870554,0.402610526,0.402610526,0.402610526,1.534746455,0.604286865,2.13903332,1.1616 -1383,1993/10/14,1.3,6.4,202.2864142,5.1,3.087913213,1.3,0.315893047,2.327979834,1.068612461,0.10315219,42.04468867,0.415477853,0.415477853,0.415477853,1.526457044,0.518630043,2.045087088,1.0488 -1384,1993/10/15,1.5,1.1,201.6299792,0,0,1.445649992,0.310785021,0.310785021,1.298190937,0.164540637,42.19988152,0.414015858,0.414015858,0.414015858,1.55701395,0.578556496,2.135570445,1.104 -1385,1993/10/16,1.4,0,200.124407,0,0,1.206252433,0.299319729,0.299319729,0.275176591,0.054618108,41.47561181,0.419389249,0.419389249,0.419389249,1.418835552,0.474007357,1.892842909,1.0488 -1386,1993/10/17,1.7,0,198.3797035,0,0,1.458242674,0.286460843,0.286460843,0.264307221,0.029784953,40.8298933,0.39473241,0.39473241,0.39473241,1.304758136,0.424517363,1.729275499,0.9936 -1387,1993/10/18,1.4,0.1,196.9928584,0,0,1.210285996,0.27655916,0.27655916,0.25390261,0.028580411,40.24851493,0.37363869,0.37363869,0.37363869,1.208919672,0.4022191,1.611138772,0.9408 -1388,1993/10/19,1,0,195.8730415,0,0,0.851050729,0.268766145,0.268766145,0.245824228,0.027601649,39.72223466,0.35534687,0.35534687,0.35534687,1.127451368,0.38294852,1.510399888,0.8376 -1389,1993/10/20,1,9.4,200.7397972,8.4,5.170719972,1,0.303964283,3.53324431,1.531680296,0.098623595,40.36555398,0.339348425,0.339348425,0.339348425,1.227709396,0.43797202,1.665681416,0.9408 -1390,1993/10/21,0.7,1.5,200.9191084,0.8,0.484639645,0.7,0.305328435,0.62068879,2.029173169,0.250892122,41.356533,0.358976644,0.358976644,0.358976644,1.3971708,0.609868766,2.007039566,0.9408 -1391,1993/10/22,0.6,0.3,200.3597017,0,0,0.55831787,0.301088797,0.301088797,0.432346385,0.089405048,40.86833892,0.390780079,0.390780079,0.390780079,1.311320537,0.480185127,1.791505664,1.1616 -1392,1993/10/23,0.6,2.9,201.4430198,2.3,1.392660477,0.6,0.309342407,1.21668193,0.632729481,0.053975527,40.6084338,0.37487151,0.37487151,0.37487151,1.267506115,0.428847036,1.696353151,0.9936 -1393,1993/10/24,0.6,2,201.9728352,1.4,0.843260035,0.6,0.3134446,0.870184565,0.958113082,0.103263913,40.65746659,0.366593552,0.366593552,0.366593552,1.275673848,0.469857465,1.745531313,1.0488 -1394,1993/10/25,0.7,8,205.9579505,7.3,4.330836464,0.7,0.345721194,3.31488473,1.749063715,0.144766141,41.37429199,0.368145148,0.368145148,0.368145148,1.400383463,0.512911289,1.913294752,0.9936 -1395,1993/10/26,0.5,6.2,208.8890725,5.7,3.302245143,0.5,0.3711231,2.768877957,2.767669663,0.290670385,42.84374485,0.391367714,0.391367714,0.391367714,1.689584512,0.682038099,2.371622611,1.224 -1396,1993/10/27,0.6,1.5,209.0324774,0.9,0.515808206,0.6,0.372403308,0.756595102,1.696939945,0.239158127,43.21291499,0.442215507,0.442215507,0.442215507,1.769985318,0.681373634,2.451358952,1.344 -1397,1993/10/28,0.8,0,207.9664438,0,0,0.703062765,0.362970887,0.362970887,0.525415195,0.090752833,42.56334493,0.455696249,0.455696249,0.455696249,1.630681499,0.546449082,2.177130581,1.344 -1398,1993/10/29,1,1.3,207.7783891,0.3,0.173272412,1,0.361327057,0.488054645,0.376094208,0.043685172,41.87748521,0.432168501,0.432168501,0.432168501,1.494122434,0.475853673,1.969976107,1.104 -1399,1993/10/30,1.1,10.3,212.5980291,9.2,5.22503325,1.1,0.405393261,4.380360011,1.977093593,0.132766033,42.62035201,0.408281838,0.408281838,0.408281838,1.642508623,0.541047872,2.183556495,1.1616 -1400,1993/10/31,1.1,2.1,212.7489477,1,0.557758329,1.1,0.406839727,0.849081397,2.547120648,0.314618046,43.71655686,0.434197777,0.434197777,0.434197777,1.885113581,0.748815823,2.633929404,1.608 -1401,1993/11/1,1,0,211.4676743,0,0,0.886583109,0.394690376,0.394690376,0.584643978,0.116583024,43.04315401,0.474557461,0.474557461,0.474557461,1.732604291,0.591140485,2.323744776,1.344 -1402,1993/11/2,1,0,210.2008339,0,0,0.883874033,0.382966296,0.382966296,0.350589162,0.044570897,42.27184137,0.449461283,0.449461283,0.449461283,1.571363077,0.49403218,2.065395257,1.476 -1403,1993/11/3,1,0,208.9480209,0,0,0.881164072,0.371648917,0.371648917,0.340198177,0.0381865,41.59338745,0.42189761,0.42189761,0.42189761,1.440549714,0.460084109,1.900633823,1.476 -1404,1993/11/4,0.9,0.1,207.8828655,0,0,0.802915893,0.362239569,0.362239569,0.330766396,0.037091846,40.99046672,0.398669493,0.398669493,0.398669493,1.332356616,0.435761338,1.768117955,1.344 -1405,1993/11/5,0.7,0.2,207.0892085,0,0,0.638303204,0.355353814,0.355353814,0.323295051,0.0361838,40.4509857,0.378807007,0.378807007,0.378807007,1.241583078,0.414990807,1.656573886,1.284 -1406,1993/11/6,0.4,0,206.3898523,0,0,0.349982435,0.349373741,0.349373741,0.317455706,0.03548534,39.96557059,0.361642834,0.361642834,0.361642834,1.16451365,0.397128174,1.561641824,1.224 -1407,1993/11/7,0.2,0,205.8701496,0,0,0.174720209,0.344982438,0.344982438,0.312701361,0.034911524,39.52656518,0.346680205,0.346680205,0.346680205,1.098386973,0.381591729,1.479978703,1.1616 -1408,1993/11/8,0.1,0,205.4415015,0,0,0.087254161,0.341393979,0.341393979,0.309066391,0.034471278,39.1280029,0.333533722,0.333533722,0.333533722,1.041162395,0.368004999,1.409167394,0.9408 -1409,1993/11/9,0,0,205.1029207,0,0,0,0.338580776,0.338580776,0.30614308,0.03411998,38.76480524,0.321910298,0.321910298,0.321910298,0.991251033,0.356030277,1.34728131,0.9408 -1410,1993/11/10,0,0,204.7671117,0,0,0,0.335809026,0.335809026,0.303627576,0.033830426,38.4326075,0.311572849,0.311572849,0.311572849,0.947398164,0.345403274,1.292801438,0.9936 -1411,1993/11/11,0.2,0,204.2614477,0,0,0.173994322,0.331669716,0.331669716,0.30059268,0.033522744,38.12700488,0.302327366,0.302327366,0.302327366,0.908522668,0.33585011,1.244372778,1.0488 -1412,1993/11/12,0.4,1.9,204.8118599,1.5,0.88658959,0.4,0.336177319,0.94958773,0.542641282,0.046779056,38.06307863,0.293996661,0.293996661,0.293996661,0.900564198,0.340775717,1.241339914,1.0488 -1413,1993/11/13,0.5,1.7,205.1797045,1.2,0.707061663,0.5,0.339217119,0.832155455,0.808231606,0.085093298,38.24075393,0.292275004,0.292275004,0.292275004,0.922831311,0.377368302,1.300199613,0.9936 -1414,1993/11/14,0.4,0,204.4978235,0,0,0.348281471,0.33359953,0.33359953,0.551961139,0.073657322,38.17522759,0.297078036,0.297078036,0.297078036,0.914565515,0.370735357,1.285300873,1.0488 -1415,1993/11/15,0.2,0,203.9944499,0,0,0.17387287,0.329500695,0.329500695,0.298620125,0.039150075,37.88985305,0.295300175,0.295300175,0.295300175,0.879294835,0.334450251,1.213745086,0.888 -1416,1993/11/16,0.2,0,203.4953283,0,0,0.173645084,0.325476522,0.325476522,0.294960673,0.03291009,37.62487648,0.287645912,0.287645912,0.287645912,0.847583162,0.320556002,1.168139164,0.8376 -1417,1993/11/17,0.5,1.2,203.5856627,0.7,0.416536259,0.5,0.326201902,0.609665643,0.405211587,0.038833053,37.48008712,0.280666625,0.280666625,0.280666625,0.830667566,0.319499678,1.150167244,1.0488 -1418,1993/11/18,0.7,0,202.66007,0,0,0.606762006,0.318830611,0.318830611,0.433790548,0.051230979,37.37249864,0.276904526,0.276904526,0.276904526,0.818283554,0.328135504,1.146419058,1.1616 -1419,1993/11/19,0.7,0,201.7431294,0,0,0.605279954,0.31166073,0.31166073,0.284114732,0.035155866,37.13882381,0.274132454,0.274132454,0.274132454,0.791922021,0.30928832,1.101210341,1.104 -1420,1993/11/20,0.7,0,200.8346439,0,0,0.603800242,0.30468524,0.30468524,0.277738643,0.031097532,36.91716167,0.268180065,0.268180065,0.268180065,0.76758084,0.299277597,1.066858438,1.0488 -1421,1993/11/21,0.6,0,200.0197711,0,0,0.51633702,0.298535707,0.298535707,0.271787037,0.03041582,36.70653063,0.262619545,0.262619545,0.262619545,0.745037625,0.293035365,1.03807299,0.9936 -1422,1993/11/22,0.6,0,199.2120391,0,0,0.515193261,0.292538818,0.292538818,0.266312767,0.029794476,36.50614561,0.257412521,0.257412521,0.257412521,0.724110308,0.287206996,1.011317304,0.9936 -1423,1993/11/23,0.7,0.6,198.8365291,0,0,0.685725944,0.289784038,0.289784038,0.26219652,0.02926415,36.31614418,0.252527639,0.252527639,0.252527639,0.704725592,0.28179179,0.986517382,0.9408 -1424,1993/11/24,0.6,0.5,198.4638215,0,0,0.585637178,0.287070452,0.287070452,0.259733493,0.028951338,36.13698711,0.247957383,0.247957383,0.247957383,0.686847941,0.276908721,0.963756662,0.9408 -1425,1993/11/25,0.3,0.1,198.0089578,0,0,0.27107728,0.283786392,0.283786392,0.257065872,0.028666972,35.96747144,0.243702383,0.243702383,0.243702383,0.67028393,0.272369355,0.942653284,0.9408 -1426,1993/11/26,0.2,0,197.5575399,0,0,0.170860782,0.280557099,0.280557099,0.254131857,0.028346496,35.80646545,0.239724631,0.239724631,0.239724631,0.654862483,0.268071127,0.92293361,0.9408 -1427,1993/11/27,0.5,13.3,204.950078,12.8,7.729855083,0.5,0.337316951,5.407461868,2.278134309,0.140628996,37.48890046,0.23598971,0.23598971,0.23598971,0.831689003,0.376618706,1.208307709,0.9408 -1428,1993/11/28,0.4,8.4,209.2213379,8,4.645354577,0.4,0.374094719,3.728740142,4.203454939,0.443430597,40.68860376,0.277132489,0.277132489,0.277132489,1.280884131,0.720563087,2.001447218,1.224 -1429,1993/11/29,0.3,6.8,212.4910163,6.5,3.674048492,0.3,0.404370112,3.230321621,3.158941576,0.381733083,42.58211154,0.369132886,0.369132886,0.369132886,1.634566685,0.750865969,2.385432654,1.476 -1430,1993/11/30,0.4,17.8,221.3792895,17.4,9.385014286,0.4,0.496741048,8.511726762,4.99396519,0.444837167,45.62465071,0.432835785,0.432835785,0.432835785,2.384261801,0.877672951,3.261934752,1.608 -1431,1993/12/1,0.3,0,220.6196668,0,0,0.27138323,0.48823947,0.48823947,4.490485239,0.612767798,47.63071102,0.551094932,0.551094932,0.551094932,3.035519865,1.16386273,4.199382595,3.216 -1432,1993/12/2,0.2,0.3,220.1886876,0.1,0.052489096,0.2,0.483468315,0.530979219,0.456301927,0.144392952,46.17793763,0.640667523,0.640667523,0.640667523,2.549742834,0.785060475,3.334803308,3.984 -1433,1993/12/3,0.2,0,219.53194,0,0,0.180477654,0.476269974,0.476269974,0.456265738,0.051392988,44.99990572,0.574842471,0.574842471,0.574842471,2.20914012,0.626235459,2.835375579,2.592 -1434,1993/12/4,0.3,4.9,221.4470039,4.6,2.412568613,0.3,0.49750464,2.684936027,1.301283844,0.096752324,44.69767084,0.525132136,0.525132136,0.525132136,2.128650863,0.62188446,2.750535323,2.496 -1435,1993/12/5,0.3,0.3,220.9550257,0,0,0.3,0.491978202,0.491978202,1.550007781,0.194308883,44.6455343,0.512891035,0.512891035,0.512891035,2.115035349,0.707199918,2.822235267,2.76 -1436,1993/12/6,0.3,11.9,226.3225544,11.6,5.922550262,0.3,0.555021576,6.232471314,2.710841196,0.201065495,45.51463347,0.510800213,0.510800213,0.510800213,2.35254224,0.711865708,3.064407948,2.592 -1437,1993/12/7,0.4,13,231.8242604,12.6,6.127936663,0.4,0.626230726,7.098294063,5.951309395,0.574547328,48.6046311,0.546457835,0.546457835,0.546457835,3.407769604,1.121005163,4.528774767,3.408 -1438,1993/12/8,0.6,8.8,234.9814736,8.2,3.827516996,0.6,0.670303713,5.042786717,5.576336401,0.654499623,50.57276367,0.687701168,0.687701168,0.687701168,4.295904998,1.342200792,5.63810579,4.632 -1439,1993/12/9,0.4,3.6,235.7647365,3.2,1.464878266,0.4,0.681615366,2.416737101,3.500959383,0.470880319,50.56960586,0.790198841,0.790198841,0.790198841,4.294316034,1.26107916,5.555395194,4.2 -1440,1993/12/10,0.4,6.1,237.6295791,5.7,2.574009407,0.4,0.709166859,3.835157452,2.735479237,0.303780227,50.05314778,0.790026162,0.790026162,0.790026162,4.041963477,1.09380639,5.135769867,4.416 -1441,1993/12/11,0.5,11.8,241.7970187,11.3,4.941428606,0.5,0.773988992,7.132560386,4.754440918,0.439164418,51.03496838,0.762145457,0.762145457,0.762145457,4.53476578,1.201309875,5.736075655,4.848 -1442,1993/12/12,0.2,5.9,243.41172,5.7,2.415054333,0.2,0.800353013,4.08529868,5.215335326,0.607478702,51.99355012,0.815765732,0.815765732,0.815765732,5.072519318,1.423244434,6.495763752,5.928 -1443,1993/12/13,0.2,12.1,247.421895,11.9,4.87914905,0.2,0.868974091,7.889825041,5.179931776,0.527979154,52.59945011,0.870665097,0.870665097,0.870665097,5.444696876,1.398644251,6.843341127,5.784 -1444,1993/12/14,0.4,10.6,250.5033484,10.2,4.006317993,0.4,0.924864573,7.118546581,6.796111304,0.727181724,53.93568675,0.906697038,0.906697038,0.906697038,6.366571704,1.633878762,8.000450465,7.344 -1445,1993/12/15,0.5,13.5,254.3850977,13,4.881114346,0.5,0.999365017,9.118250671,7.196772051,0.764844825,54.94933137,0.989907758,0.989907758,0.989907758,7.173035196,1.754752584,8.92778778,7.2 -1446,1993/12/16,0.5,7,255.7158913,6.5,2.3567874,0.5,1.025993779,5.169206379,6.646163492,0.801559074,55.23377531,1.0565655,1.0565655,1.0565655,7.418285045,1.858124574,9.276409619,6.288 -1447,1993/12/17,0.4,10.5,258.2023734,10.1,3.563765429,0.4,1.077283351,7.613517923,5.618029701,0.617149163,54.84357118,1.075832189,1.075832189,1.075832189,7.08406602,1.692981352,8.777047372,5.784 -1448,1993/12/18,0.3,9.4,260.1899617,9.1,3.107343804,0.3,1.119755509,7.112411706,6.654179581,0.721523954,55.17784963,1.04946516,1.04946516,1.04946516,7.369366289,1.770989114,9.140355403,6.408 -1449,1993/12/19,0,1.8,259.6890496,1.8,0.608014121,0,1.108926279,2.300912158,4.500153602,0.611539432,54.19028597,1.07202443,1.07202443,1.07202443,6.559741701,1.683563862,8.243305563,6.048 -1450,1993/12/20,0,0.9,258.9039126,0.9,0.306985952,0,1.09212289,1.685136938,1.827528957,0.273322984,51.96723105,1.006359227,1.006359227,1.006359227,5.056943097,1.27968221,6.336625307,4.968 -1451,1993/12/21,0.3,2.4,258.5419047,2.1,0.72243703,0.3,1.084444906,2.462007877,1.823563829,0.19282859,50.43353278,0.86912352,0.86912352,0.86912352,4.226385625,1.06195211,5.288337735,4.848 -1452,1993/12/22,0.3,2.2,258.1237003,1.9,0.657424934,0.3,1.075629408,2.318204474,2.158990506,0.233881777,49.56052264,0.782610825,0.782610825,0.782610825,3.814611472,1.016492602,4.831104073,4.512 -1453,1993/12/23,0.3,3.8,258.2587296,3.5,1.213498743,0.3,1.078469389,3.364970646,2.499959827,0.256492996,49.15850647,0.736213123,0.736213123,0.736213123,3.638189117,0.992706118,4.630895236,3.888 -1454,1993/12/24,0.3,6.8,259.388559,6.5,2.232300046,0.3,1.10247071,5.370170664,3.820725233,0.36816534,49.78028055,0.71552261,0.71552261,0.71552261,3.914473757,1.08368795,4.998161707,3.792 -1455,1993/12/25,0.2,0.3,258.3426524,0.1,0.034330965,0.2,1.080237532,1.145906567,3.164152614,0.420645109,49.7784868,0.747702224,0.747702224,0.747702224,3.913648594,1.168347333,5.081995926,3.408 -1456,1993/12/26,0.1,0,257.1902204,0,0,0.096270968,1.056161058,1.056161058,0.995857558,0.162442721,48.25318044,0.74760793,0.74760793,0.74760793,3.268771849,0.910050652,4.178822501,3.12 -1457,1993/12/27,0.3,3.6,257.2920793,3.3,1.160130424,0.3,1.058271446,3.198141022,1.796838225,0.153690917,47.67051432,0.67045369,0.67045369,0.67045369,3.049958033,0.824144607,3.87410264,2.424 -1458,1993/12/28,0.4,10.6,259.7020222,10.2,3.519148563,0.4,1.109205663,7.7900571,4.692586485,0.395343402,49.3043641,0.642543322,0.642543322,0.642543322,3.701280028,1.037886724,4.739166752,2.664 -1459,1993/12/29,0.5,0.3,258.4271472,0,0,0.492854939,1.082020094,1.082020094,4.360715135,0.577606847,50.25111078,0.722980776,0.722980776,0.722980776,4.136949227,1.300587623,5.43753685,2.76 -1460,1993/12/30,0.6,1.8,257.7754573,1.2,0.416642999,0.6,1.068332939,1.85168994,1.277913542,0.204212368,48.81015895,0.772747866,0.772747866,0.772747866,3.49161324,0.976960234,4.468573474,3.312 -1461,1993/12/31,0.5,3.7,257.8220513,3.2,1.115900923,0.5,1.069306863,3.153405941,2.180827079,0.204663947,48.37326445,0.697933042,0.697933042,0.697933042,3.31565462,0.90259699,4.218251609,2.268 -1462,1994/1/1,0.4,2.2,257.3912113,1.8,0.629488547,0.4,1.060328605,2.230840058,2.473560777,0.279737676,48.25403399,0.676311653,0.676311653,0.676311653,3.269102887,0.956049329,4.225152216,2.904 -1463,1994/1/2,0.4,0,255.9754081,0,0,0.384550404,1.0312528,1.0312528,1.533800746,0.207634159,47.47771793,0.6704952,0.6704952,0.6704952,2.980612012,0.878129359,3.858741371,2.832 -1464,1994/1/3,0.6,0.7,254.9998594,0.1,0.036047258,0.6,1.011595909,1.075548651,0.945628724,0.118245804,46.42870787,0.633493858,0.633493858,0.633493858,2.628132637,0.751739662,3.379872299,2.364 -1465,1994/1/4,0.6,3.2,254.9335706,2.6,0.943982451,0.6,1.010271283,2.666288832,1.596492988,0.141949088,46.08868282,0.585842768,0.585842768,0.585842768,2.522360809,0.727791856,3.250152665,2.544 -1466,1994/1/5,0.6,35.1,265.2787699,34.5,11.57989877,0.6,1.234699472,24.1548007,10.88974097,0.719538686,52.29500353,0.570963072,0.570963072,0.570963072,5.254383329,1.290501759,6.544885088,2.64 -1467,1994/1/6,0.5,21.3,270.1007092,20.8,6.174189228,0.5,1.352249916,15.97806069,18.50870147,1.982561325,59.38704085,0.888461619,0.888461619,0.888461619,12.30512577,2.871022943,15.17614872,8.928 -1468,1994/1/7,0.1,1.8,269.2571388,1.7,0.487486309,0.1,1.33105669,2.543570381,9.072305847,1.399358707,58.64205728,1.386592615,1.386592615,1.386592615,11.20388203,2.785951322,13.98983335,13.2 -1469,1994/1/8,0.4,2.1,268.441329,1.7,0.495007756,0.4,1.31081757,2.515809814,2.278245121,0.412197233,55.01666565,1.32666165,1.32666165,1.32666165,7.2302984,1.738858883,8.969157283,9.36 -1470,1994/1/9,0.6,0,266.5912951,0,0,0.584190835,1.265843023,1.265843023,1.770368636,0.224471774,52.47933944,1.061103907,1.061103907,1.061103907,5.368798756,1.285575681,6.654374437,7.224 -1471,1994/1/10,0.6,0,264.7851022,0,0,0.583045415,1.22314751,1.22314751,1.122389753,0.140389566,50.32718099,0.899471159,0.899471159,0.899471159,4.174019358,1.039860725,5.213880082,5.952 -1472,1994/1/11,0.6,1.4,263.8360289,0.8,0.252111325,0.6,1.20118463,1.749073305,1.308625278,0.134362374,48.88855267,0.776849873,0.776849873,0.776849873,3.524103471,0.911212248,4.435315719,5.184 -1473,1994/1/12,0.3,0.3,262.6615798,0,0,0.3,1.174449108,1.174449108,1.347132714,0.156091522,47.82934103,0.701864237,0.701864237,0.701864237,3.108208593,0.857955759,3.966164353,4.56 -1474,1994/1/13,0.2,0.1,261.4181363,0,0,0.196773816,1.146669707,1.146669707,1.046028566,0.123612433,46.78284479,0.65006738,0.65006738,0.65006738,2.742592185,0.773679813,3.516271998,4.224 -1475,1994/1/14,0.3,0.2,260.2014976,0,0,0.296632775,1.120005907,1.120005907,1.021467879,0.114409366,45.93123512,0.601632346,0.601632346,0.601632346,2.474709899,0.716041712,3.190751611,2.712 -1476,1994/1/15,0.5,0,258.6327832,0,0,0.482346096,1.086368273,1.086368273,0.994715107,0.111576753,45.22050988,0.56416536,0.56416536,0.56416536,2.269605706,0.675742113,2.945347818,2.64 -1477,1994/1/16,0.7,0,256.9085429,0,0,0.673897594,1.050342763,1.050342763,0.963497791,0.108242826,44.61190976,0.534197775,0.534197775,0.534197775,2.106295684,0.642440601,2.748736285,2.424 -1478,1994/1/17,0.6,0,255.3142483,0,0,0.576397273,1.017897354,1.017897354,0.932489326,0.10474702,44.0812738,0.509455008,0.509455008,0.509455008,1.972580299,0.614202028,2.586782326,2.28 -1479,1994/1/18,0.5,0,253.8461456,0,0,0.479361701,0.988740918,0.988740918,0.904587927,0.101532447,43.61341121,0.488559494,0.488559494,0.488559494,1.861010011,0.590091941,2.451101952,2.1 -1480,1994/1/19,0.5,0,252.4069096,0,0,0.478419721,0.96081635,0.96081635,0.878833845,0.098605051,43.19654518,0.470650126,0.470650126,0.470650126,1.766349994,0.569255177,2.335605172,2.0136 -1481,1994/1/20,0.6,6.1,253.4778362,5.5,2.05245983,0.6,0.981533237,4.429073407,2.23503822,0.172539001,43.94676452,0.455092346,0.455092346,0.455092346,1.939911231,0.627631346,2.567542577,1.86 -1482,1994/1/21,0.5,2.8,253.3517466,2.3,0.85298596,0.5,0.979075487,2.426089526,3.194789822,0.35803667,45.32590073,0.483361612,0.483361612,0.483361612,2.299015222,0.841398282,3.140413504,1.776 -1483,1994/1/22,0.4,3.4,253.4826455,3,1.112525974,0.4,0.98162708,2.869101107,2.358513774,0.275956737,45.79024641,0.538567986,0.538567986,0.538567986,2.432736074,0.814524723,3.247260797,1.62 -1484,1994/1/23,0.3,2.7,253.3925701,2.4,0.889795216,0.3,0.979870676,2.49007546,2.432438423,0.273365613,46.21852771,0.558127492,0.558127492,0.558127492,2.562284623,0.831493104,3.393777728,1.62 -1485,1994/1/24,0.3,0.2,252.3374355,0,0,0.295649866,0.959484685,0.959484685,1.636333573,0.219881563,45.9508676,0.576612904,0.576612904,0.576612904,2.48060658,0.796494467,3.277101047,1.62 -1486,1994/1/25,0.2,0.6,251.5443419,0.4,0.151294535,0.2,0.944388166,1.193093631,0.955834762,0.119128332,45.20610086,0.56500981,0.56500981,0.56500981,2.26561131,0.684138141,2.949749451,1.776 -1487,1994/1/26,0.3,8.8,253.7417863,8.5,3.18413869,0.3,0.986694317,6.302555627,3.092525551,0.228706479,46.25776637,0.533602256,0.533602256,0.533602256,2.574462297,0.762308734,3.336771031,1.776 -1488,1994/1/27,0.3,17.1,258.6446147,16.8,5.989447285,0.3,1.086618878,11.89717159,7.882724883,0.69279496,50.47289251,0.57832809,0.57832809,0.57832809,4.245926838,1.27112305,5.517049889,1.932 -1489,1994/1/28,0.2,1.1,257.8857088,0.9,0.3117328,0.2,1.070638614,1.658905814,6.662329614,0.899004052,52.5234348,0.78475061,0.78475061,0.78475061,5.396537935,1.683754662,7.080292597,2.64 -1490,1994/1/29,0.4,14.3,261.4492572,13.9,4.710906775,0.4,1.147358423,10.33645165,4.921501455,0.477114598,52.78377161,0.902119146,0.902119146,0.902119146,5.563283793,1.379233744,6.942517537,2.1936 -1491,1994/1/30,0.6,2,260.7810427,1.4,0.46442947,0.6,1.132643926,2.068214457,6.036037249,0.749813221,53.60978404,0.917866352,0.917866352,0.917866352,6.127891167,1.667679573,7.79557074,6.912 -1492,1994/1/31,0.5,0,259.1999244,0,0,0.482684549,1.098433742,1.098433742,1.478233953,0.283052374,51.35140418,0.969130329,0.969130329,0.969130329,4.705744147,1.252182702,5.957926849,8.736 -1493,1994/2/1,0.5,0,257.6524067,0,0,0.481753459,1.06576434,1.06576434,0.975682707,0.120564127,49.41213123,0.833606545,0.833606545,0.833606545,3.748562199,0.954170671,4.70273287,7.224 -1494,1994/2/2,0.3,0,256.3254985,0,0,0.288526443,1.038381758,1.038381758,0.948369061,0.106360724,47.93972592,0.728526803,0.728526803,0.728526803,3.149301168,0.834887527,3.984188695,5.808 -1495,1994/2/3,0.6,0,254.7430642,0,0,0.575961947,1.006472261,1.006472261,0.921936159,0.103460746,46.77649527,0.655333541,0.655333541,0.655333541,2.740500359,0.758794287,3.499294646,5.064 -1496,1994/2/4,0.7,0,253.0984012,0,0,0.670510752,0.974152278,0.974152278,0.893055431,0.100314177,45.82721752,0.6013466,0.6013466,0.6013466,2.443679778,0.701660777,3.145340555,4.56 -1497,1994/2/5,0.7,0,251.4860975,0,0,0.669016621,0.943287092,0.943287092,0.864542235,0.097118952,45.03327405,0.559706299,0.559706299,0.559706299,2.218192004,0.656825251,2.875017255,4.224 -1498,1994/2/6,0.7,0,249.9047942,0,0,0.667516064,0.913787246,0.913787246,0.837303012,0.094045243,44.3561934,0.526496286,0.526496286,0.526496286,2.040879951,0.620541529,2.66142148,3.552 -1499,1994/2/7,0.8,0,248.2597983,0,0,0.761101691,0.883894191,0.883894191,0.810597795,0.091070524,43.76869583,0.499307308,0.499307308,0.499307308,1.897402671,0.590377831,2.487780502,2.64 -1500,1994/2/8,0.6,0,246.8316796,0,0,0.569531773,0.858586973,0.858586973,0.785505904,0.088186514,43.2520419,0.476541365,0.476541365,0.476541365,1.778701193,0.564727879,2.343429072,2.424 -1501,1994/2/9,0.5,0,245.5221523,0,0,0.473628983,0.835898294,0.835898294,0.76376399,0.085659182,42.79395674,0.457142012,0.457142012,0.457142012,1.67899117,0.542801194,2.221792364,2.0136 -1502,1994/2/10,0.8,0,243.9566165,0,0,0.756124339,0.809411455,0.809411455,0.741843531,0.083276061,42.3825541,0.440419495,0.440419495,0.440419495,1.593665664,0.523695555,2.117361219,1.776 -1503,1994/2/11,0.8,0,242.4182941,0,0,0.75427379,0.784048634,0.784048634,0.718449475,0.080696845,42.00755716,0.425777709,0.425777709,0.425777709,1.51922412,0.506474553,2.025698673,1.932 -1504,1994/2/12,0.7,0,240.9986628,0,0,0.658416135,0.761215149,0.761215149,0.696622274,0.078202824,41.66333485,0.412737546,0.412737546,0.412737546,1.453582134,0.49094037,1.944522503,1.86 -1505,1994/2/13,0.8,3.3,241.3091449,2.5,1.076644677,0.8,0.766162559,2.189517882,1.249414034,0.107741979,41.82892548,0.401020972,0.401020972,0.401020972,1.484844379,0.508762951,1.99360733,1.86 -1506,1994/2/14,0.6,0,240.0002841,0,0,0.563380167,0.745480673,0.745480673,1.400028953,0.170409595,42.09857459,0.406627234,0.406627234,0.406627234,1.537007069,0.577036829,2.114043898,1.692 -1507,1994/2/15,0.4,2.6,240.2099155,2.2,0.958393997,0.4,0.748762521,1.990368524,1.162786042,0.118904592,42.13338117,0.415875995,0.415875995,0.415875995,1.54385546,0.534780587,2.078636046,1.776 -1508,1994/2/16,0.6,0.5,239.3803104,0,0,0.593762572,0.735842588,0.735842588,1.295670176,0.156817651,42.27428055,0.417080683,0.417080683,0.417080683,1.57185148,0.573898334,2.145749814,1.776 -1509,1994/2/17,0.7,0,238.0102935,0,0,0.655116545,0.714900359,0.714900359,0.653984066,0.087920764,41.85955643,0.421982821,0.421982821,0.421982821,1.490691009,0.509903585,2.000594594,1.62 -1510,1994/2/18,0.8,0,236.5699922,0,0,0.746896819,0.693404479,0.693404479,0.634917314,0.071265217,41.48211673,0.407670381,0.407670381,0.407670381,1.420027392,0.478935599,1.89896299,1.5456 -1511,1994/2/19,0.8,2.1,236.4663362,1.3,0.588221822,0.8,0.691877787,1.403655965,0.904683387,0.085183961,41.38028092,0.394949133,0.394949133,0.394949133,1.401468328,0.480133095,1.881601422,1.5456 -1512,1994/2/20,0.7,0,235.1418948,0,0,0.65183336,0.672608061,0.672608061,0.974454327,0.115942311,41.35026318,0.391566027,0.391566027,0.391566027,1.396038097,0.507508338,1.903546435,1.5456 -1513,1994/2/21,0.4,0,234.1122719,0,0,0.371694422,0.657928513,0.657928513,0.59954737,0.075560755,41.00542946,0.390572765,0.390572765,0.390572765,1.334953859,0.466133519,1.801087378,1.5456 -1514,1994/2/22,0.4,0,233.0975508,0,0,0.371006013,0.643715047,0.643715047,0.586519926,0.065654016,40.69010481,0.379291194,0.379291194,0.379291194,1.28113577,0.44494521,1.72608098,1.5456 -1515,1994/2/23,0.3,0,232.1885935,0,0,0.27776325,0.631194046,0.631194046,0.574396497,0.064264322,40.40033964,0.36918055,0.36918055,0.36918055,1.233342209,0.433444872,1.666787081,1.4616 -1516,1994/2/24,0.1,0,231.4746477,0,0,0.092448254,0.621497545,0.621497545,0.564243552,0.063054258,40.13388643,0.360060549,0.360060549,0.360060549,1.190757312,0.423114807,1.613872119,1.32 -1517,1994/2/25,0.3,0.3,230.8613831,0,0,0.3,0.613264567,0.613264567,0.556094938,0.062083419,39.88905074,0.351817343,0.351817343,0.351817343,1.152747973,0.413900761,1.566648734,1.1856 -1518,1994/2/26,0.3,0,229.9831478,0,0,0.276607793,0.601627564,0.601627564,0.547340332,0.061168142,39.66227739,0.344362568,0.344362568,0.344362568,1.118476251,0.405530709,1.52400696,1.056 -1519,1994/2/27,0.6,0.5,229.2984045,0,0,0.59206488,0.592678345,0.592678345,0.537928969,0.060103585,39.45050224,0.337559045,0.337559045,0.337559045,1.087263162,0.39766263,1.484925792,0.9336 -1520,1994/2/28,1,0.4,228.168836,0,0,0.951418573,0.578149961,0.578149961,0.527670352,0.059054501,39.25093146,0.331292696,0.331292696,0.331292696,1.058533829,0.390347197,1.448881026,0.9336 -1521,1994/3/1,1.2,7.1,230.4258601,5.9,2.864495334,1.2,0.607471256,3.642975922,1.731243416,0.125259071,40.11919261,0.325463933,0.325463933,0.325463933,1.188446199,0.450723005,1.639169203,0.816 -1522,1994/3/2,0.8,1.3,230.0638202,0.5,0.240649189,0.8,0.602689033,0.862039844,2.179934276,0.267109067,41.26905476,0.351366723,0.351366723,0.351366723,1.381438852,0.61847579,1.999914642,0.9336 -1523,1994/3/3,1.1,7,232.2466809,5.9,2.814848916,1.1,0.631988292,3.717139376,1.903881684,0.181672236,42.03605794,0.387894667,0.387894667,0.387894667,1.52477317,0.569566904,2.094340073,1.1184 -1524,1994/3/4,0.7,5.4,233.7956032,4.7,2.202388282,0.7,0.653465986,3.151077703,3.121775172,0.325615311,43.69216327,0.413718479,0.413718479,0.413718479,1.879388322,0.73933379,2.618722113,1.4616 -1525,1994/3/5,0.6,0,232.6026353,0,0,0.556094924,0.636872961,0.636872961,1.842611069,0.266597493,44.04474529,0.473631306,0.473631306,0.473631306,1.963660348,0.740228799,2.703889147,1.62 -1526,1994/3/6,0.4,0,231.609336,0,0,0.369981718,0.623317579,0.623317579,0.567829937,0.093042882,43.30839767,0.487143983,0.487143983,0.487143983,1.791321543,0.580186865,2.371508408,1.392 -1527,1994/3/7,0.3,0.1,230.8120489,0,0,0.284680994,0.612606099,0.612606099,0.556753716,0.062256532,42.67124974,0.459230145,0.459230145,0.459230145,1.653131794,0.521486677,2.174618471,1.32 -1528,1994/3/8,0.5,1.9,230.8687116,1.4,0.670025086,0.5,0.613362429,1.343337342,0.84005637,0.077426457,42.35852061,0.436015322,0.436015322,0.436015322,1.58880082,0.513441779,2.1022426,1.1856 -1529,1994/3/9,0.8,0.1,229.6265563,0,0,0.745201589,0.596953634,0.596953634,0.914108413,0.109332285,42.15035706,0.424933261,0.424933261,0.424933261,1.547205223,0.534265545,2.081470769,1.4616 -1530,1994/3/10,1,5.2,231.0307025,4.2,2.019674951,1,0.615528821,2.795853871,1.406040674,0.116764102,42.38076401,0.417669138,0.417669138,0.417669138,1.593302866,0.53443324,2.127736105,1.4616 -1531,1994/3/11,0.8,0.1,229.7862597,0,0,0.745399512,0.599043275,0.599043275,1.648311613,0.205431282,42.77897534,0.42571477,0.42571477,0.42571477,1.67581505,0.631146052,2.306961102,1.392 -1532,1994/3/12,1,6.1,231.606853,5.1,2.443877275,1,0.623283987,3.279406713,1.598146791,0.144647818,43.07700096,0.439880091,0.439880091,0.439880091,1.740001267,0.584527908,2.324529175,1.32 -1533,1994/3/13,0.7,0.2,230.5363359,0,0,0.661580445,0.608936612,0.608936612,1.896366949,0.237711298,43.57253397,0.450699517,0.450699517,0.450699517,1.851533448,0.688410814,2.539944262,1.32 -1534,1994/3/14,0.7,0,229.2988573,0,0,0.644794368,0.592684226,0.592684226,0.541621641,0.092033077,42.8848821,0.469108004,0.469108004,0.469108004,1.69838152,0.561141081,2.259522601,1.32 -1535,1994/3/15,1,0.3,228.0785906,0,0,0.943264983,0.577001721,0.577001721,0.527219653,0.059115891,42.28233913,0.443703398,0.443703398,0.443703398,1.573466016,0.502819289,2.076285305,1.32 -1536,1994/3/16,1.1,30.8,240.9964898,29.7,13.67907984,1.1,0.761180615,16.78210078,6.92191358,0.413585912,46.85879087,0.422264432,0.422264432,0.422264432,2.767726276,0.835850344,3.60357662,1.392 -1537,1994/3/17,1,3.2,241.1805191,2.2,0.948139088,1,0.764109822,2.015970733,9.269812904,1.162968306,51.78390246,0.605057649,0.605057649,0.605057649,4.949758959,1.768025956,6.717784914,3.24 -1538,1994/3/18,0.7,3.3,241.5280827,2.6,1.117230422,0.7,0.769666809,2.252436387,1.907800862,0.380942668,50.36002094,0.858439512,0.858439512,0.858439512,4.190121894,1.23938218,5.429504074,2.64 -1539,1994/3/19,0.8,8.3,243.8933373,7.5,3.173609838,0.8,0.808355268,5.134745429,3.165988979,0.285721239,50.19488237,0.778625531,0.778625531,0.778625531,4.109753081,1.06434677,5.174099851,2.364 -1540,1994/3/20,1,9,246.3360239,8,3.292628277,1,0.849941611,5.557313334,4.788226754,0.488755383,51.15431321,0.769725768,0.769725768,0.769725768,4.598521681,1.258481151,5.857002832,2.904 -1541,1994/3/21,0.8,0,244.7561009,0,0,0.757071287,0.822851728,0.822851728,3.131002688,0.446826509,50.73133995,0.822462086,0.822462086,0.822462086,4.376438039,1.269288596,5.645726635,3.312 -1542,1994/3/22,0.8,0.2,243.3896122,0,0,0.766501482,0.799987223,0.799987223,0.731532802,0.13762265,48.78183402,0.798905019,0.798905019,0.798905019,3.479943753,0.936527669,4.416471422,2.952 -1543,1994/3/23,0.8,1.3,242.8098671,0.5,0.210697855,0.8,0.790442938,1.079745083,0.830520422,0.086409076,47.36730988,0.696516513,0.696516513,0.696516513,2.941561074,0.782925589,3.724486663,2.544 -1544,1994/3/24,0.9,0,241.1985287,0,0,0.846941465,0.76439697,0.76439697,0.847176949,0.097753137,46.26585913,0.628352728,0.628352728,0.628352728,2.57698043,0.726105865,3.303086295,2.352 -1545,1994/3/25,1,0,239.5219873,0,0,0.938505254,0.738036184,0.738036184,0.677542145,0.079580386,45.24552751,0.578682291,0.578682291,0.578682291,2.276556049,0.658262677,2.934818726,1.776 -1546,1994/3/26,1.3,0,237.5969524,0,0,1.216357589,0.708677236,0.708677236,0.652632869,0.073470114,44.38518839,0.535232872,0.535232872,0.535232872,2.048204859,0.608702987,2.656907846,1.392 -1547,1994/3/27,1.3,0.7,236.3469662,0,0,1.259863276,0.690123007,0.690123007,0.630478746,0.070806743,43.64723411,0.500450606,0.500450606,0.500450606,1.868883631,0.571257349,2.44014098,1.392 -1548,1994/3/28,1.4,0.4,234.7492221,0,0,1.330765187,0.666978843,0.666978843,0.611966463,0.068723137,43.00650354,0.471928854,0.471928854,0.471928854,1.724625887,0.540651991,2.265277878,1.32 -1549,1994/3/29,1.4,4.4,235.4493161,3,1.377135756,1.4,0.677041807,2.299906051,1.245448206,0.102813503,42.98098506,0.44812323,0.44812323,0.44812323,1.719089919,0.550936733,2.270026652,1.26 -1550,1994/3/30,0.7,11.1,239.3741687,10.4,4.660600223,0.7,0.735747615,6.475147391,3.719547424,0.302377788,44.95162426,0.44719327,0.44719327,0.44719327,2.196101501,0.749571058,2.945672559,1.392 -1551,1994/3/31,0.8,0.4,238.2807356,0,0,0.774437285,0.718995826,0.718995826,3.553385039,0.47192402,46.40693256,0.523162786,0.523162786,0.523162786,2.62123952,0.995086806,3.616326326,1.392 -1552,1994/4/1,1.5,11.5,241.8620908,10,4.356392968,1.5,0.775037728,6.41864476,2.899019574,0.264895864,47.05663392,0.58488166,0.58488166,0.58488166,2.834199873,0.849777524,3.683977398,1.392 -1553,1994/4/2,1.3,0.4,240.2667953,0,0,1.245640477,0.749654998,0.749654998,3.536970179,0.450207736,48.0259129,0.614046111,0.614046111,0.614046111,3.181737307,1.064253847,4.245991154,2.424 -1554,1994/4/3,1.3,0,238.3291804,0,0,1.217883455,0.719731449,0.719731449,0.662866728,0.14117007,46.64933202,0.659466417,0.659466417,0.659466417,2.698914026,0.800636487,3.499550513,1.776 -1555,1994/4/4,1.9,0,235.8727139,0,0,1.77327984,0.683186732,0.683186732,0.63331952,0.071523933,45.52327578,0.595644294,0.595644294,0.595644294,2.355020055,0.667168227,3.022188282,1.692 -1556,1994/4/5,2.2,0,233.1838747,0,0,2.043924639,0.644914496,0.644914496,0.599746735,0.067909633,44.57349347,0.546821085,0.546821085,0.546821085,2.09635013,0.614730719,2.711080849,1.776 -1557,1994/4/6,1.9,0.5,231.2699177,0,0,1.795217738,0.618739242,0.618739242,0.570081225,0.064368312,43.75688357,0.5079212,0.5079212,0.5079212,1.894612327,0.572289512,2.466901839,1.62 -1558,1994/4/7,1.9,0,228.9312416,0,0,1.750752124,0.587924062,0.587924062,0.544690269,0.061506265,43.04471943,0.476091387,0.476091387,0.476091387,1.732945791,0.537597652,2.270543443,1.932 -1559,1994/4/8,1.9,2.4,228.5916842,0.5,0.24399726,1.9,0.583554613,0.839557353,0.628551604,0.064679194,42.50428269,0.449518498,0.449518498,0.449518498,1.618506848,0.514197692,2.13270454,1.86 -1560,1994/4/9,1.4,0,226.7474522,0,0,1.283954899,0.560277093,0.560277093,0.645258356,0.074857753,42.05177371,0.430073222,0.430073222,0.430073222,1.527840563,0.504930975,2.032771537,1.776 -1561,1994/4/10,1.1,0,225.2006986,0,0,1.005417746,0.541335896,0.541335896,0.49676573,0.058905861,41.53335394,0.414260093,0.414260093,0.414260093,1.429445584,0.473165953,1.902611538,1.776 -1562,1994/4/11,1.3,0,223.4953555,0,0,1.18428957,0.521053518,0.521053518,0.479188754,0.053911803,41.06403327,0.396659165,0.396659165,0.396659165,1.345168594,0.450570968,1.795739562,1.4616 -1563,1994/4/12,1.2,0,221.9032314,0,0,1.089450054,0.502674013,0.502674013,0.461686437,0.05194115,40.63498777,0.381191839,0.381191839,0.381191839,1.271923774,0.433132989,1.705056763,1.32 -1564,1994/4/13,0.9,0,220.6006169,0,0,0.814586754,0.488027781,0.488027781,0.446619894,0.050162702,40.24127533,0.367433246,0.367433246,0.367433246,1.207765583,0.417595948,1.625361531,1.32 -1565,1994/4/14,1.1,0,219.1360063,0,0,0.992638434,0.471972132,0.471972132,0.432881427,0.04862311,39.87819316,0.355123211,0.355123211,0.355123211,1.151086807,0.403746321,1.554833128,1.392 -1566,1994/4/15,1.2,0,217.6010825,0,0,1.079319361,0.455604427,0.455604427,0.41830805,0.047027319,39.54015168,0.344034612,0.344034612,0.344034612,1.100384144,0.39106193,1.491446074,1.32 -1567,1994/4/16,1.7,0,215.6426312,0,0,1.523064855,0.435386431,0.435386431,0.402055871,0.045309714,39.22175424,0.333935155,0.333935155,0.333935155,1.054388464,0.379244869,1.433633333,1.32 -1568,1994/4/17,1.9,0,213.5338596,0,0,1.694341956,0.414429699,0.414429699,0.383567802,0.04331711,38.91790433,0.324617951,0.324617951,0.324617951,1.012035658,0.367935061,1.37997072,1.26 -1569,1994/4/18,1.8,0,211.5410127,0,0,1.597469033,0.395377824,0.395377824,0.36545935,0.041271961,38.62647911,0.315901032,0.315901032,0.315901032,0.972785603,0.357172993,1.329958596,1.26 -1570,1994/4/19,1.7,0,209.6612254,0,0,1.501729116,0.378058241,0.378058241,0.348997089,0.03938233,38.34682865,0.307698879,0.307698879,0.307698879,0.936346427,0.347081209,1.283427636,1.26 -1571,1994/4/20,1.7,0,207.8048031,0,0,1.494864646,0.361557586,0.361557586,0.333733022,0.037647916,38.07810442,0.299972241,0.299972241,0.299972241,0.902429494,0.337620157,1.240049651,1.1856 -1572,1994/4/21,1.8,0,205.8843764,0,0,1.575324655,0.345102056,0.345102056,0.318900262,0.035989182,37.81896884,0.292679028,0.292679028,0.292679028,0.870714868,0.32866821,1.199383079,1.1856 -1573,1994/4/22,1.9,0,203.9010811,0,0,1.654550487,0.328744886,0.328744886,0.304129147,0.034345255,37.56796499,0.285766868,0.285766868,0.285766868,0.840899866,0.320112123,1.16101199,1.1856 -1574,1994/4/23,2.1,0,201.7703251,0,0,1.818884424,0.311871503,0.311871503,0.289203739,0.032697047,37.32364085,0.279183553,0.279183553,0.279183553,0.81271143,0.3118806,1.12459203,1.056 -1575,1994/4/24,1.4,0.8,200.9471422,0,0,1.317640775,0.305542153,0.305542153,0.278183628,0.031247237,37.08837851,0.272880178,0.272880178,0.272880178,0.786326147,0.304127415,1.090453562,0.9336 -1576,1994/4/25,1.7,0,199.1932217,0,0,1.461520277,0.292400273,0.292400273,0.269795592,0.030340409,36.86331725,0.266907296,0.266907296,0.266907296,0.761764153,0.297247705,1.059011858,0.8736 -1577,1994/4/26,1.8,0,197.3740863,0,0,1.539882184,0.279253195,0.279253195,0.257965846,0.029106455,36.64410055,0.261281362,0.261281362,0.261281362,0.738463907,0.290387817,1.028851724,0.816 -1578,1994/4/27,1.8,0,195.5752982,0,0,1.532063989,0.266724053,0.266724053,0.246377622,0.027805372,36.43006628,0.25588346,0.25588346,0.25588346,0.716295351,0.283688832,0.999984183,0.7032 -1579,1994/4/28,1.9,0,193.7123688,0,0,1.608701524,0.254227922,0.254227922,0.235114438,0.026545894,36.22071608,0.250690483,0.250690483,0.250690483,0.695155117,0.277236377,0.972391494,0.7032 -1580,1994/4/29,2,2.4,193.7114758,0.4,0.253329023,2,0.254222047,0.400893024,0.286752301,0.028789469,36.07263305,0.245684408,0.245684408,0.245684408,0.680519746,0.274473877,0.954993623,0.6 -1581,1994/4/30,1.6,0,192.1196886,0,0,1.347865965,0.243921181,0.243921181,0.298784356,0.034913989,35.94544752,0.242186782,0.242186782,0.242186782,0.668156664,0.277100771,0.945257435,0.6 -1582,1994/5/1,1.8,0,190.3778196,0,0,1.508833277,0.233035729,0.233035729,0.21522823,0.026004551,35.75033089,0.239211258,0.239211258,0.239211258,0.649556122,0.265215809,0.914771932,0.5496 -1583,1994/5/2,2.1,0,188.4062282,0,0,1.750402795,0.22118862,0.22118862,0.205051374,0.023171921,35.55839614,0.234697365,0.234697365,0.234697365,0.631683488,0.257869285,0.889552774,0.5016 -1584,1994/5/3,2.7,4.3,189.2228586,1.6,1.042665926,2.7,0.22603556,0.783369634,0.421186688,0.034598428,35.576544,0.230316767,0.230316767,0.230316767,0.633355588,0.264915195,0.898270783,0.5016 -1585,1994/5/4,2.1,36.5,209.8108027,34.4,20.96735779,2.1,0.379413641,13.81205585,5.852648414,0.357685219,40.42291168,0.230728442,0.230728442,0.230728442,1.237009176,0.588413661,1.825422837,0.4584 -1586,1994/5/5,1.8,0.4,208.2137419,0,0,1.631919145,0.365141719,0.365141719,7.11799291,0.932383783,45.54143546,0.360765133,0.360765133,0.360765133,2.360234263,1.293148916,3.653383179,2.28 -1587,1994/5/6,1.6,5.4,210.0079407,3.8,2.17540485,1.6,0.381205975,2.005801125,0.976849783,0.231122543,44.88708878,0.547584929,0.547584929,0.547584929,2.178781396,0.778707472,2.957488869,1.692 -1588,1994/5/7,1.7,0,208.1472442,0,0,1.496139526,0.364556967,0.364556967,1.156767686,0.145204653,44.4896145,0.520538697,0.520538697,0.520538697,2.074780661,0.665743351,2.740524012,1.392 -1589,1994/5/8,2.1,4.4,209.0956224,2.3,1.321346351,2.1,0.372968142,1.35162179,0.718089197,0.07747892,43.8060393,0.504583717,0.504583717,0.504583717,1.906248116,0.582062637,2.488310753,1.392 -1590,1994/5/9,1.8,0.2,207.3330449,0,0,1.605119474,0.357458044,0.357458044,0.823666869,0.101698718,43.3148913,0.477965932,0.477965932,0.477965932,1.7927808,0.57966465,2.37244545,1.32 -1591,1994/5/10,2,0,205.2453931,0,0,1.747889596,0.339762273,0.339762273,0.314720657,0.047082788,42.47631375,0.459471189,0.459471189,0.459471189,1.612769396,0.506553977,2.119323373,1.392 -1592,1994/5/11,2.5,0,202.7538475,0,0,2.171974314,0.319571292,0.319571292,0.297808609,0.033741753,41.73598018,0.429083538,0.429083538,0.429083538,1.467225719,0.462825291,1.93005101,1.32 -1593,1994/5/12,3.1,0,199.7833072,0,0,2.673770235,0.296769991,0.296769991,0.278605393,0.031694787,41.07157173,0.403473619,0.403473619,0.403473619,1.346487458,0.435168406,1.781655864,1.32 -1594,1994/5/13,3.3,0,196.68621,0,0,2.822689853,0.274407334,0.274407334,0.258257531,0.029455071,40.46705792,0.38143682,0.38143682,0.38143682,1.244208166,0.410891891,1.655100056,1.32 -1595,1994/5/14,3.5,0,193.466538,0,0,2.967057415,0.252614666,0.252614666,0.238356341,0.027226143,39.91138826,0.362145999,0.362145999,0.362145999,1.156171993,0.389372142,1.545544134,1.32 -1596,1994/5/15,3.7,0.4,190.4609088,0,0,3.172083215,0.233545957,0.233545957,0.219819173,0.025099944,39.39678058,0.34503798,0.34503798,0.34503798,1.07946484,0.370137924,1.449602764,1.32 -1597,1994/5/16,3.2,1.6,188.9019596,0,0,2.934828305,0.224120871,0.224120871,0.206467518,0.023372622,38.92056445,0.329716401,0.329716401,0.329716401,1.012400049,0.353089023,1.365489072,1.1856 -1598,1994/5/17,3.4,1.6,187.1936822,0,0,3.094131423,0.214145969,0.214145969,0.197767709,0.022304306,38.48066995,0.315976612,0.315976612,0.315976612,0.953638816,0.338280918,1.291919733,1.056 -1599,1994/5/18,3.3,0.6,184.766447,0,0,2.826646631,0.200588606,0.200588606,0.187374872,0.021234665,38.07024421,0.303652715,0.303652715,0.303652715,0.901453323,0.32488738,1.226340703,0.9336 -1600,1994/5/19,3.4,0.3,182.0448563,0,0,2.835375587,0.186215055,0.186215055,0.174850771,0.019903266,37.68309613,0.292467628,0.292467628,0.292467628,0.854466482,0.312370893,1.166837376,0.9336 -1601,1994/5/20,3.2,1.9,180.8085789,0,0,2.956312427,0.179964979,0.179964979,0.165124149,0.018653846,37.31830504,0.282189602,0.282189602,0.282189602,0.812104837,0.300843448,1.112948285,0.816 -1602,1994/5/21,3,0,178.21922,0,0,2.421939843,0.167419055,0.167419055,0.1570116,0.017794835,36.97426944,0.272743663,0.272743663,0.272743663,0.773790868,0.290538498,1.064329366,0.816 -1603,1994/5/22,2.8,4.7,179.3531322,1.9,1.306735805,2.8,0.172823681,0.766087876,0.387210362,0.030030617,36.8637168,0.264044174,0.264044174,0.264044174,0.761807178,0.29407479,1.055881968,0.7032 -1604,1994/5/23,2.8,6.4,181.6233857,3.6,2.454318541,2.8,0.184065037,1.329746496,0.912179805,0.081920234,37.2345542,0.261291274,0.261291274,0.261291274,0.802633673,0.343211508,1.145845181,0.7032 -1605,1994/5/24,2.6,0,179.3446696,0,0,2.105933199,0.172782834,0.172782834,0.739657085,0.100931492,37.42097464,0.270607318,0.270607318,0.270607318,0.823843967,0.371538811,1.195382778,0.6528 -1606,1994/5/25,3.1,0,176.694437,0,0,2.489866728,0.160365922,0.160365922,0.150598642,0.030651233,37.06338616,0.275378997,0.275378997,0.275378997,0.783566122,0.306030231,1.089596353,0.6528 -1607,1994/5/26,4,0,173.3694762,0,0,3.179150284,0.145810476,0.145810476,0.138578489,0.015863553,36.72161016,0.266278323,0.266278323,0.266278323,0.746632812,0.282141876,1.028774688,0.6 -1608,1994/5/27,3.3,1.3,171.6555485,0,0,2.875194909,0.138732804,0.138732804,0.128433047,0.014597367,36.39509876,0.25778283,0.25778283,0.25778283,0.712727272,0.272380197,0.98510747,0.5496 -1609,1994/5/28,3.1,1.1,169.9582545,0,0,2.66529612,0.131997901,0.131997901,0.12219857,0.013808929,36.08537756,0.249849302,0.249849302,0.249849302,0.68176907,0.263658231,0.945427301,0.5496 -1610,1994/5/29,3.3,0,167.2749104,0,0,2.561456996,0.121887089,0.121887089,0.11480334,0.013057295,35.78941993,0.242486392,0.242486392,0.242486392,0.653247363,0.255543686,0.908791049,0.5016 -1611,1994/5/30,3.6,0.6,164.8558445,0,0,2.905752662,0.113313227,0.113313227,0.106310856,0.012119765,35.50458079,0.235596748,0.235596748,0.235596748,0.626746747,0.247716513,0.87446326,0.5016 -1612,1994/5/31,3.8,2.9,164.0578946,0,0,3.587356213,0.110593647,0.110593647,0.100907399,0.011372753,35.2323249,0.22909908,0.22909908,0.22909908,0.602262363,0.240471833,0.842734196,0.5016 -1613,1994/6/1,3.6,2,162.7349122,0,0,3.216782414,0.106200079,0.106200079,0.097798387,0.010995004,34.97340919,0.223009077,0.223009077,0.223009077,0.579723178,0.234004081,0.81372726,0.4584 -1614,1994/6/2,3.6,1.4,160.9717289,0,0,3.062620064,0.100563177,0.100563177,0.093352936,0.0105481,34.72529919,0.217325594,0.217325594,0.217325594,0.55878853,0.227873693,0.786662223,0.4128 -1615,1994/6/3,4,0.3,158.1102734,0,0,3.069528198,0.091927279,0.091927279,0.087094825,0.009933246,34.48523558,0.211977111,0.211977111,0.211977111,0.539135548,0.221910357,0.761045905,0.2928 -1616,1994/6/4,3.9,0.9,155.8038009,0,0,3.121064585,0.085407919,0.085407919,0.080158759,0.009151484,34.25171366,0.206892226,0.206892226,0.206892226,0.520572902,0.216043711,0.736616613,0.2928 -1617,1994/6/5,4,0.1,152.8716141,0,0,2.954526584,0.077660214,0.077660214,0.073806018,0.008447623,34.02452369,0.202030086,0.202030086,0.202030086,0.50302608,0.21047771,0.71350379,0.2928 -1618,1994/6/6,4.2,1.6,150.9164823,0,0,3.482317005,0.072814857,0.072814857,0.067979797,0.007751046,33.80345615,0.197378649,0.197378649,0.197378649,0.486425986,0.205129695,0.691555682,0.2592 -1619,1994/6/7,4,0.5,148.3420374,0,0,3.007637755,0.066807154,0.066807154,0.063159735,0.007206766,33.58879811,0.192926486,0.192926486,0.192926486,0.47074426,0.200133252,0.670877512,0.2592 -1620,1994/6/8,4.2,0,145.3121657,0,0,2.969619482,0.060252198,0.060252198,0.057536583,0.006607692,33.37917076,0.188672501,0.188672501,0.188672501,0.455836431,0.195280194,0.651116625,0.2592 -1621,1994/6/9,4.5,0.6,142.5385641,0,0,3.318888467,0.054713123,0.054713123,0.052038496,0.00598095,33.17415596,0.184583291,0.184583291,0.184583291,0.441636591,0.19056424,0.632200831,0.22536 -1622,1994/6/10,4.5,9.3,146.2987118,4.8,3.822474904,4.5,0.062327239,1.039852334,0.438468938,0.027160378,33.3401645,0.180645676,0.180645676,0.180645676,0.453106068,0.207806054,0.660912122,0.22536 -1623,1994/6/11,3.7,5.2,147.4181069,1.5,1.18414574,3.7,0.064750608,0.380604868,0.675399321,0.077895865,33.71917518,0.183829441,0.183829441,0.183829441,0.480218083,0.261725306,0.741943388,0.22536 -1624,1994/6/12,3.1,10.1,152.8002054,7,5.459577369,3.1,0.077478818,1.617901449,0.831398527,0.072994384,34.22345851,0.191248167,0.191248167,0.191248167,0.518363367,0.264242551,0.782605918,0.22536 -1625,1994/6/13,2.7,12,159.7841078,9.3,7.080805784,2.7,0.096903406,2.316097622,1.7319676,0.162522578,35.52798384,0.201447378,0.201447378,0.201447378,0.628889645,0.363969956,0.992859601,0.1944 -1626,1994/6/14,3.1,9.5,164.4295554,6.4,4.757301368,3.1,0.111853759,1.754552391,1.862622067,0.211049253,36.85894094,0.229628058,0.229628058,0.229628058,0.761293025,0.440677311,1.201970336,0.1944 -1627,1994/6/15,3.3,1,162.5740229,0,0,2.749857096,0.105675457,0.105675457,0.927628132,0.145885544,37.24404017,0.261172813,0.261172813,0.261172813,0.803701715,0.407058357,1.210760073,0.1944 -1628,1994/6/16,3.9,0,159.5401684,0,0,2.937689438,0.096165069,0.096165069,0.091350368,0.029806031,36.84630512,0.270848687,0.270848687,0.270848687,0.759934102,0.300654718,1.06058882,0.22536 -1629,1994/6/17,4.3,0,156.2571653,0,0,3.196343846,0.086659179,0.086659179,0.082792796,0.009520023,36.46960914,0.260859578,0.260859578,0.260859578,0.720348353,0.270379601,0.990727954,0.22536 -1630,1994/6/18,3.8,0,153.390862,0,0,2.787313853,0.078989488,0.078989488,0.074962975,0.008609685,36.11184638,0.251644165,0.251644165,0.251644165,0.684369907,0.26025385,0.944623757,0.22536 -1631,1994/6/19,3.2,0,150.9980107,0,0,2.319839368,0.073011941,0.073011941,0.068728817,0.007858202,35.77207718,0.24310949,0.24310949,0.24310949,0.6516075,0.250967692,0.902575192,0.22536 -1632,1994/6/20,3.8,0.6,148.6358342,0,0,2.89470454,0.067471954,0.067471954,0.063521904,0.007250094,35.44910503,0.235197413,0.235197413,0.235197413,0.621691468,0.242447507,0.864138975,0.22536 -1633,1994/6/21,4,2.5,147.5039982,0,0,3.566896421,0.064939625,0.064939625,0.059724237,0.006756952,35.14233109,0.227848643,0.227848643,0.227848643,0.594346822,0.234605595,0.828952417,0.22536 -1634,1994/6/22,4.1,11.1,152.8841388,7,5.457832755,4.1,0.077692065,1.61985931,0.672792261,0.040654207,35.41733345,0.221021725,0.221021725,0.221021725,0.618811624,0.261675932,0.880487556,0.22536 -1635,1994/6/23,3.5,2.6,152.1548582,0,0,3.253425809,0.075854817,0.075854817,0.847839318,0.1097561,35.8347569,0.227134703,0.227134703,0.227134703,0.65755057,0.336890804,0.994441374,0.22536 -1636,1994/6/24,3.8,0,149.3490209,0,0,2.736729494,0.069107804,0.069107804,0.065603598,0.025647732,35.50978109,0.236642967,0.236642967,0.236642967,0.627222383,0.262290699,0.889513083,0.2592 -1637,1994/6/25,3.8,10.8,154.6867552,7,5.420120881,3.8,0.082386614,1.662265733,0.691651499,0.04196006,35.77844036,0.229216547,0.229216547,0.229216547,0.652208776,0.271176607,0.923385383,0.2592 -1638,1994/6/26,3.4,5.6,156.2806979,2.2,1.680667223,3.4,0.086724526,0.606057303,1.078732642,0.124252842,36.38120334,0.235343875,0.235343875,0.235343875,0.711313534,0.359596717,1.070910251,0.2592 -1639,1994/6/27,3.2,1.6,155.0195307,0,0,2.777889606,0.083277579,0.083277579,0.338902018,0.061587933,36.26957908,0.249515593,0.249515593,0.249515593,0.70004187,0.311103526,1.011145396,0.2592 -1640,1994/6/28,3.7,0.5,152.6057982,0,0,2.836745776,0.076986694,0.076986694,0.072464299,0.01435546,35.92290464,0.246846394,0.246846394,0.246846394,0.66598513,0.261201854,0.927186984,0.22536 -1641,1994/6/29,3.5,0,150.0080527,0,0,2.527098,0.070647532,0.070647532,0.066783429,0.007633723,35.5934574,0.238686602,0.238686602,0.238686602,0.634917275,0.246320325,0.881237601,0.22536 -1642,1994/6/30,3.5,0,147.4461466,0,0,2.497093798,0.064812265,0.064812265,0.061277271,0.007011437,35.27940865,0.231112586,0.231112586,0.231112586,0.606438602,0.238124023,0.844562625,0.22536 -1643,1994/7/1,4.1,0,144.5005195,0,0,2.887040291,0.058586841,0.058586841,0.055871381,0.006413403,34.97912122,0.224053907,0.224053907,0.224053907,0.580212724,0.23046731,0.810680034,0.2592 -1644,1994/7/2,5,0.1,141.0520555,0,0,3.496547032,0.051916999,0.051916999,0.050092911,0.005785707,34.69074077,0.217449851,0.217449851,0.217449851,0.555923209,0.223235558,0.779158767,0.2592 -1645,1994/7/3,4.3,12.8,147.7554089,8.5,6.768848875,4.3,0.065495434,1.796646559,0.736065515,0.043567056,35.05159219,0.211239675,0.211239675,0.211239675,0.586453773,0.254806731,0.841260503,0.22536 -1646,1994/7/4,3.8,0,145.0146515,0,0,2.681119978,0.059637408,0.059637408,0.930691966,0.12095973,35.56868398,0.219030759,0.219030759,0.219030759,0.632630932,0.339990489,0.97262142,0.22536 -1647,1994/7/5,4.1,0,142.1075953,0,0,2.85316583,0.053890355,0.053890355,0.051403013,0.026324281,35.24706948,0.230550077,0.230550077,0.230550077,0.60356759,0.256874358,0.860441949,0.22536 -1648,1994/7/6,4.7,0,138.8394357,0,0,3.220191536,0.047968064,0.047968064,0.046161429,0.005326825,34.93972363,0.223335897,0.223335897,0.223335897,0.576843175,0.228662722,0.805505898,0.22536 -1649,1994/7/7,4.6,0,135.6971684,0,0,3.099490419,0.042776878,0.042776878,0.041120226,0.00475271,34.64526626,0.216593845,0.216593845,0.216593845,0.552171447,0.221346556,0.773518003,0.22536 -1650,1994/7/8,4.6,0,132.6111414,0,0,3.047900709,0.038126341,0.038126341,0.036661768,0.004236836,34.36285961,0.210272096,0.210272096,0.210272096,0.529340507,0.214508932,0.74384944,0.1944 -1651,1994/7/9,4.7,0,129.5162961,0,0,3.060967235,0.033878096,0.033878096,0.03263523,0.003774236,34.09166872,0.204333948,0.204333948,0.204333948,0.508160066,0.208108183,0.71626825,0.1944 -1652,1994/7/10,4.4,0,126.6690231,0,0,2.816960207,0.030312716,0.030312716,0.029081609,0.003359655,33.83102466,0.198745311,0.198745311,0.198745311,0.488470984,0.202104967,0.690575951,0.1944 -1653,1994/7/11,4.9,0,123.560349,0,0,3.081904472,0.026769718,0.026769718,0.02588161,0.002995555,33.58025509,0.193477744,0.193477744,0.193477744,0.470128928,0.196473298,0.666602226,0.1644 -1654,1994/7/12,4.7,0.1,120.6960198,0,0,2.94052281,0.023806296,0.023806296,0.022921902,0.002653712,33.33867922,0.188504599,0.188504599,0.188504599,0.453002369,0.191158312,0.644160681,0.13656 -1655,1994/7/13,4.6,4,120.305868,0,0,4.366727944,0.023423856,0.023423856,0.021274565,0.002407187,33.10670877,0.18380078,0.18380078,0.18380078,0.437045793,0.186207967,0.623253759,0.11088 -1656,1994/7/14,4.1,4,120.2214974,0,0,4.061028861,0.023341803,0.023341803,0.021049051,0.002345096,32.88489607,0.179363476,0.179363476,0.179363476,0.42222523,0.181708572,0.603933802,0.08784 -1657,1994/7/15,4.3,0,117.5992324,0,0,2.601361041,0.020903951,0.020903951,0.02004443,0.002281638,32.67175552,0.175192553,0.175192553,0.175192553,0.408377533,0.177474191,0.585851723,0.08784 -1658,1994/7/16,4.1,0.3,115.3182058,0,0,2.562073445,0.018953123,0.018953123,0.018042786,0.002076328,32.46570017,0.171250414,0.171250414,0.171250414,0.395348545,0.173326742,0.568675286,0.08784 -1659,1994/7/17,4.2,0,112.8409954,0,0,2.460207981,0.017002434,0.017002434,0.016287096,0.001875504,32.26641186,0.167499953,0.167499953,0.167499953,0.383075356,0.169375457,0.552450813,0.0672 -1660,1994/7/18,4.1,0,110.4643363,0,0,2.361373842,0.015285288,0.015285288,0.014623748,0.001685559,32.07347063,0.16392883,0.16392883,0.16392883,0.371493809,0.165614389,0.537108198,0.0672 -1661,1994/7/19,4.2,0,108.0726575,0,0,2.377978455,0.01370029,0.01370029,0.013130528,0.001513991,31.8865733,0.160523578,0.160523578,0.160523578,0.360551438,0.162037569,0.522589007,0.04896 -1662,1994/7/20,4.3,12.3,115.0812931,8,7.02739476,4.3,0.018759169,0.991364409,0.398603991,0.022848381,32.07109758,0.157273466,0.157273466,0.157273466,0.371353179,0.180121847,0.551475026,0.04896 -1663,1994/7/21,4.2,4.7,115.4973255,0.5,0.435133216,4.2,0.019100826,0.08396761,0.533716734,0.067688374,32.37553984,0.160482013,0.160482013,0.160482013,0.38975649,0.228170387,0.617926877,0.03288 -1664,1994/7/22,3.7,4.6,116.2596281,0.9,0.782042325,3.7,0.019739763,0.137697438,0.096799427,0.020278176,32.25578686,0.165877526,0.165877526,0.165877526,0.382429935,0.186155702,0.568585637,0.03288 -1665,1994/7/23,3.6,1.5,114.9977643,0,0,2.743172591,0.018691166,0.018691166,0.076908479,0.010523866,32.12205283,0.163739977,0.163739977,0.163739977,0.374382484,0.174263843,0.548646327,0.04896 -1666,1994/7/24,3.3,2.6,114.5673957,0,0,3.012024719,0.018343914,0.018343914,0.01668485,0.003265082,31.93665656,0.161376207,0.161376207,0.161376207,0.363457323,0.16464129,0.528098613,0.04896 -1667,1994/7/25,3.4,0,112.5660028,0,0,1.984596657,0.016796206,0.016796206,0.015898025,0.001804515,31.75754153,0.158139751,0.158139751,0.158139751,0.353152805,0.159944266,0.513097072,0.04896 -1668,1994/7/26,3.3,0,110.6505447,0,0,1.90004356,0.01541459,0.01541459,0.01457071,0.001667549,31.5837823,0.155057238,0.155057238,0.155057238,0.34338718,0.156724787,0.500111967,0.04896 -1669,1994/7/27,3.4,0,108.7056582,0,0,1.930780144,0.014106348,0.014106348,0.013356246,0.001529039,31.41512506,0.152108143,0.152108143,0.152108143,0.334121632,0.153637182,0.487758813,0.11088 -1670,1994/7/28,3.4,0.5,107.0671687,0,0,2.12541489,0.013074562,0.013074562,0.012288056,0.001403417,31.25137421,0.14928417,0.14928417,0.14928417,0.32532308,0.150687587,0.476010667,0.11088 -1671,1994/7/29,3.3,8.1,111.2927348,4.8,4.241433312,3.3,0.015867256,0.574433944,0.233559415,0.013641424,31.30341364,0.146578374,0.146578374,0.146578374,0.328098352,0.160219798,0.48831815,0.11088 -1672,1994/7/30,3.3,39.9,142.0557593,36.6,30.8168166,3.3,0.053792065,5.836975463,2.596213354,0.166335015,33.57715559,0.147434436,0.147434436,0.147434436,0.469905844,0.313769452,0.783675295,0.11088 -1673,1994/7/31,3.4,0,139.6721381,0,0,2.33419631,0.04942492,0.04942492,2.966624626,0.394593738,36.05356938,0.188443709,0.188443709,0.188443709,0.678654546,0.583037447,1.261691993,1.62 -1674,1994/8/1,3.9,0,136.9847131,0,0,2.642578432,0.044846531,0.044846531,0.042673512,0.073101703,35.69373901,0.24173911,0.24173911,0.24173911,0.644242986,0.314840813,0.959083799,0.9336 -1675,1994/8/2,3.6,16.7,147.4310652,13.1,10.51113114,3.6,0.064779097,2.653647958,1.071095684,0.061801657,36.29558035,0.233399616,0.233399616,0.233399616,0.702653961,0.295201273,0.997855234,0.6528 -1676,1994/8/3,3.5,7.1,150.1816454,3.6,2.82163788,3.5,0.071057642,0.849419761,1.675435054,0.194993374,37.39735141,0.247466314,0.247466314,0.247466314,0.821130307,0.442459688,1.263589995,0.5496 -1677,1994/8/4,3.5,0,147.6173427,0,0,2.499112934,0.065189733,0.065189733,0.454629574,0.089007687,37.3150204,0.27477103,0.27477103,0.27477103,0.811731617,0.363778717,1.175510334,0.5496 -1678,1994/8/5,3.4,2.4,146.8454001,0,0,3.108441166,0.063501512,0.063501512,0.058003744,0.015731308,36.8819148,0.272659651,0.272659651,0.272659651,0.763768994,0.288390959,1.052159954,0.5016 -1679,1994/8/6,3.2,17.9,158.1127637,14.7,11.35929821,3.2,0.091934527,3.432636313,1.388291822,0.080322332,37.67807827,0.261743011,0.261743011,0.261743011,0.853871365,0.342065342,1.195936707,0.5016 -1680,1994/8/7,3.2,2.4,157.4284401,0,0,2.994363678,0.089959927,0.089959927,1.76868582,0.230155853,38.74079726,0.282058107,0.282058107,0.282058107,0.988024935,0.51221396,1.500238896,0.8736 -1681,1994/8/8,3.2,0.4,155.276875,0,0,2.467593254,0.083971865,0.083971865,0.078598057,0.048288853,38.21119812,0.310897995,0.310897995,0.310897995,0.919095193,0.359186849,1.278282042,1.1856 -1682,1994/8/9,3.3,0,152.7873115,0,0,2.412117452,0.0774461,0.0774461,0.072996356,0.008324573,37.72144358,0.296275184,0.296275184,0.296275184,0.859026078,0.304599757,1.163625835,1.26 -1683,1994/8/10,3.4,0,150.2587513,0,0,2.457319785,0.071240414,0.071240414,0.06724963,0.007685364,37.26573975,0.283195957,0.283195957,0.283195957,0.806149418,0.290881321,1.097030739,1.1856 -1684,1994/8/11,3.6,0,147.6225417,0,0,2.571008382,0.065201224,0.065201224,0.061730295,0.007064675,36.83965204,0.271401408,0.271401408,0.271401408,0.759219415,0.278466082,1.037685497,1.056 -1685,1994/8/12,4.2,0,144.6042918,0,0,2.95945218,0.058797684,0.058797684,0.05615107,0.006450794,36.43926173,0.26069476,0.26069476,0.26069476,0.717236139,0.267145554,0.984381693,0.9936 -1686,1994/8/13,3.9,0,141.8414635,0,0,2.709441081,0.053387247,0.053387247,0.050780258,0.005836536,36.06152191,0.250912025,0.250912025,0.250912025,0.679432105,0.256748561,0.936180666,0.816 -1687,1994/8/14,3.4,0.1,139.5288125,0,0,2.363479287,0.049171673,0.049171673,0.046382954,0.005310006,35.70457331,0.241925787,0.241925787,0.241925787,0.645257342,0.247235793,0.892493136,0.816 -1688,1994/8/15,3.4,4,139.9644769,0.6,0.485609069,3.4,0.049944702,0.164335633,0.089755625,0.007494729,35.40984236,0.233647667,0.233647667,0.233647667,0.61813424,0.241142395,0.859276636,0.7032 -1689,1994/8/16,3.5,0.9,138.1492331,0,0,2.668456974,0.04678676,0.04678676,0.10145867,0.012495108,35.14379293,0.226966604,0.226966604,0.226966604,0.594474703,0.239461712,0.833936415,0.6528 -1690,1994/8/17,3.2,0,135.9523301,0,0,2.153722224,0.043180833,0.043180833,0.040683386,0.005985926,34.83736531,0.221053906,0.221053906,0.221053906,0.568164908,0.227039831,0.795204739,0.5496 -1691,1994/8/18,3.3,0,133.7178612,0,0,2.194723861,0.03974502,0.03974502,0.037505264,0.004285198,34.5452572,0.214381123,0.214381123,0.214381123,0.5439945,0.218666321,0.762660821,0.5016 -1692,1994/8/19,3.4,7.6,137.1208211,4.2,3.448029779,3.4,0.045069919,0.79704014,0.334976763,0.020637599,34.54445958,0.208155308,0.208155308,0.208155308,0.543929692,0.228792907,0.772722599,0.4128 -1693,1994/8/20,2.6,8.1,141.525595,5.5,4.457568902,2.6,0.052795004,1.095226102,0.835148965,0.07731748,35.00528735,0.208138487,0.208138487,0.208138487,0.58245968,0.285455967,0.867915647,0.3744 -1694,1994/8/21,2.3,0.1,139.9661758,0,0,1.609471476,0.049947735,0.049947735,0.57271544,0.083061977,35.19688751,0.218019705,0.218019705,0.218019705,0.599134984,0.301081682,0.900216666,0.2928 -1695,1994/8/22,2.5,0,138.2185167,0,0,1.700754772,0.046904279,0.046904279,0.043750495,0.017256225,34.89022975,0.222224989,0.222224989,0.222224989,0.572633243,0.239481214,0.812114457,0.2592 -1696,1994/8/23,2.9,0,136.2213364,0,0,1.953570313,0.043610007,0.043610007,0.040912288,0.004654015,34.59834176,0.215521889,0.215521889,0.215521889,0.548322166,0.220175904,0.768498071,0.1944 -1697,1994/8/24,2.7,0,134.3803566,0,0,1.800239764,0.040739998,0.040739998,0.038115069,0.004336859,34.31980413,0.209276989,0.209276989,0.209276989,0.525929691,0.213613848,0.739543538,0.1644 -1698,1994/8/25,2.9,0,132.4288548,0,0,1.913636921,0.037864869,0.037864869,0.035530038,0.004044741,34.05353447,0.203439268,0.203439268,0.203439268,0.505238971,0.20748401,0.71272298,0.13656 -1699,1994/8/26,2.9,8.4,136.9102105,5.5,4.526080273,2.9,0.04472463,1.018644357,0.42158299,0.025348437,34.15968113,0.197968305,0.197968305,0.197968305,0.513404629,0.223316742,0.736721371,0.13656 -1700,1994/8/27,2.5,0.1,135.261115,0,0,1.7070019,0.042093554,0.042093554,0.530946036,0.0688617,34.36152886,0.200136505,0.200136505,0.200136505,0.529234812,0.268998205,0.798233017,0.13656 -1701,1994/8/28,2.6,0,133.4968046,0,0,1.724893055,0.039417387,0.039417387,0.036826848,0.01566828,34.09429984,0.204306253,0.204306253,0.204306253,0.508362126,0.219974533,0.728336659,0.13656 -1702,1994/8/29,2.6,0,131.7516326,0,0,1.708266,0.036906008,0.036906008,0.034483405,0.003918178,33.83855168,0.198799002,0.198799002,0.198799002,0.489030566,0.20271718,0.691747746,0.13656 -1703,1994/8/30,2.9,0.5,130.1547961,0,0,2.062114545,0.034721897,0.034721897,0.032352467,0.00367228,33.59345279,0.193628449,0.193628449,0.193628449,0.471079806,0.197300729,0.668380535,0.1644 -1704,1994/8/31,2.1,13.6,139.5622005,11.5,9.456634903,2.1,0.049230575,2.092595672,0.844312766,0.048668132,34.11646277,0.188764028,0.188764028,0.188764028,0.510066806,0.23743216,0.747498966,0.1644 -1705,1994/9/1,2.2,0,138.0213019,0,0,1.494328171,0.046570384,0.046570384,1.074954316,0.140078471,34.82365773,0.199251671,0.199251671,0.199251671,0.567011035,0.339330141,0.906341177,0.1644 -1706,1994/9/2,2.2,0.1,136.5619408,0,0,1.515202795,0.044158302,0.044158302,0.040960334,0.028735389,34.53550179,0.214086032,0.214086032,0.214086032,0.543202298,0.24282142,0.786023718,0.1644 -1707,1994/9/3,2.6,0,134.7835332,0,0,1.737052431,0.041355208,0.041355208,0.038634972,0.004382752,34.26080121,0.207949643,0.207949643,0.207949643,0.521285202,0.212332396,0.733617598,0.1644 -1708,1994/9/4,3.2,0,132.6302628,0,0,2.115116533,0.038153852,0.038153852,0.035954835,0.004098313,33.9979664,0.202217755,0.202217755,0.202217755,0.501007393,0.206316068,0.707323461,0.1644 -1709,1994/9/5,3.3,15.2,142.2792852,11.9,9.703239365,3.3,0.054216934,2.25097757,0.908622032,0.052424466,34.55836773,0.196839963,0.196839963,0.196839963,0.545060672,0.249264428,0.7943251,0.1644 -1710,1994/9/6,2.4,8.7,147.2258885,6.3,5.010932496,2.4,0.064329198,1.353396702,1.67124681,0.179297422,35.78519858,0.208431934,0.208431934,0.208431934,0.65284789,0.387729356,1.040577246,0.1644 -1711,1994/9/7,2.3,0.5,145.8933244,0,0,1.771096342,0.061467758,0.061467758,0.707617675,0.11756823,36.05000908,0.235499502,0.235499502,0.235499502,0.678306679,0.353067733,1.031374412,0.1644 -1712,1994/9/8,2.5,0.2,144.2228852,0,0,1.812413522,0.058025723,0.058025723,0.053961038,0.021308533,35.70072847,0.241655569,0.241655569,0.241655569,0.644897218,0.262964101,0.907861319,0.1644 -1713,1994/9/9,2.4,0,142.4997222,0,0,1.668524446,0.05463856,0.05463856,0.050884886,0.005768822,35.37057901,0.233559618,0.233559618,0.233559618,0.614593964,0.239328439,0.853922404,0.1644 -1714,1994/9/10,2.7,0,140.5885943,0,0,1.860058847,0.051069041,0.051069041,0.04776439,0.005425456,35.05746815,0.226086992,0.226086992,0.226086992,0.58696224,0.231512447,0.818474688,0.1644 -1715,1994/9/11,2.8,0,138.6310303,0,0,1.909955101,0.047608883,0.047608883,0.044595032,0.005073055,34.75957955,0.219159298,0.219159298,0.219159298,0.561642929,0.224232353,0.785875282,0.1644 -1716,1994/9/12,2.6,0,136.8302176,0,0,1.75621864,0.04459404,0.04459404,0.041656834,0.004735524,34.47558882,0.212710429,0.212710429,0.212710429,0.538357987,0.217445953,0.75580394,0.1944 -1717,1994/9/13,2.6,0,135.0489038,0,0,1.739549598,0.041764182,0.041764182,0.039016562,0.004432848,34.20441643,0.206689734,0.206689734,0.206689734,0.516878686,0.211122582,0.728001267,0.1944 -1718,1994/9/14,2.7,0,133.2210499,0,0,1.788842214,0.03901172,0.03901172,0.036500269,0.004149379,33.94497276,0.201055349,0.201055349,0.201055349,0.496999292,0.205204728,0.702204019,0.1944 -1719,1994/9/15,2.8,0,131.3485211,0,0,1.836184253,0.036344548,0.036344548,0.034056751,0.003875092,33.69625635,0.195768182,0.195768182,0.195768182,0.478541346,0.199643274,0.67818462,0.1944 -1720,1994/9/16,2.7,0,129.5621813,0,0,1.752401593,0.033938182,0.033938182,0.03175934,0.003613093,33.4574522,0.190793586,0.190793586,0.190793586,0.46135707,0.194406679,0.655763749,0.1944 -1721,1994/9/17,2.6,0.8,128.3714606,0,0,1.958314429,0.032406298,0.032406298,0.029939118,0.003388575,33.22815356,0.186102846,0.186102846,0.186102846,0.44534061,0.189491421,0.634832031,0.1944 -1722,1994/9/18,2.6,0,126.6820513,0,0,1.659080984,0.030328316,0.030328316,0.028344659,0.003213086,33.0077908,0.181676901,0.181676901,0.181676901,0.430384321,0.184889988,0.615274309,0.1944 -1723,1994/9/19,2.6,0.6,125.3882804,0,0,1.864960634,0.028810257,0.028810257,0.0266957,0.003024019,32.79560377,0.17749478,0.17749478,0.17749478,0.416377509,0.1805188,0.596896309,0.1944 -1724,1994/9/20,2.6,0.6,124.1057497,0,0,1.855164649,0.027366034,0.027366034,0.02535862,0.00286723,32.59125001,0.173533246,0.173533246,0.173533246,0.403245624,0.176400476,0.579646101,0.22536 -1725,1994/9/21,2.5,4,125.3492001,1.5,1.272215771,2.5,0.028765367,0.256549596,0.115179535,0.0077842,32.47996808,0.169778052,0.169778052,0.169778052,0.39623952,0.177562252,0.573801772,0.22536 -1726,1994/9/22,2.2,4.1,126.9234938,1.9,1.604912239,2.2,0.030618572,0.325706333,0.25821836,0.024469907,32.50795234,0.167757738,0.167757738,0.167757738,0.397991836,0.192227645,0.590219481,0.22536 -1727,1994/9/23,1.6,0.2,126.0062129,0,0,1.087753408,0.029527532,0.029527532,0.176115861,0.025253887,32.45749543,0.168264164,0.168264164,0.168264164,0.394836939,0.193518051,0.58835499,0.22536 -1728,1994/9/24,1.9,0.1,124.8437258,0,0,1.234297223,0.028189781,0.028189781,0.026046234,0.006416591,32.26773755,0.167351843,0.167351843,0.167351843,0.383155949,0.173768434,0.556924383,0.22536 -1729,1994/9/25,2.5,55.2,166.3606191,52.7,41.63548078,2.5,0.118587563,11.18310679,4.43266296,0.247684386,36.17385722,0.163952404,0.163952404,0.163952404,0.690495696,0.41163679,1.102132486,0.2592 -1730,1994/9/26,1.8,10.4,172.4081655,8.6,6.189352396,1.8,0.141805996,2.5524536,6.654836799,0.797305063,41.62655171,0.244573756,0.244573756,0.244573756,1.446716066,1.041878819,2.488594885,2.16 -1731,1994/9/27,1.8,0,170.8595239,0,0,1.413100851,0.135540698,0.135540698,1.342289261,0.303986269,41.87498134,0.399783171,0.399783171,0.399783171,1.493642801,0.703769441,2.197412242,2.0136 -1732,1994/9/28,1.9,0,169.2474233,0,0,1.482844246,0.129256387,0.129256387,0.119503703,0.041921761,41.05848314,0.408196405,0.408196405,0.408196405,1.344198306,0.450118166,1.794316472,1.392 -1733,1994/9/29,2,8.5,173.7326876,6.5,4.632611185,2,0.14734687,2.014735685,0.861280988,0.054385896,40.97167478,0.381011545,0.381011545,0.381011545,1.329100894,0.435397441,1.764498335,1.26 -1734,1994/9/30,1.7,0.3,172.4855163,0,0,1.405046353,0.142124912,0.142124912,1.073396163,0.138132167,41.07600661,0.378199536,0.378199536,0.378199536,1.34726387,0.516331703,1.863595573,1.1184 -1735,1994/10/1,1.4,0,171.2483956,0,0,1.100028047,0.137092656,0.137092656,0.12592418,0.03618804,40.35715853,0.381580995,0.381580995,0.381580995,1.226353252,0.417769035,1.644122286,1.056 -1736,1994/10/2,1.5,0.2,170.0989079,0,0,1.216941882,0.132545851,0.132545851,0.121586951,0.013668818,39.71160515,0.358715395,0.358715395,0.358715395,1.125855731,0.372384214,1.498239945,0.9936 -1737,1994/10/3,1.6,2.5,170.6092685,0.9,0.64491,1.6,0.134549418,0.389639418,0.220868573,0.0189514,39.217692,0.339030702,0.339030702,0.339030702,1.053812421,0.357982102,1.411794523,0.9336 -1738,1994/10/4,1.5,4.7,172.744868,3.2,2.278797897,1.5,0.143198415,1.064400518,0.617272637,0.050742688,39.11949566,0.324500293,0.324500293,0.324500293,1.039969269,0.375242981,1.41521225,0.8736 -1739,1994/10/5,1.3,8.7,177.7590852,7.4,5.179482187,1.3,0.165264937,2.385782751,1.480036719,0.127486035,39.78437886,0.3216654,0.3216654,0.3216654,1.136818925,0.449151434,1.585970359,0.816 -1740,1994/10/6,1,2.4,178.5560121,1.4,0.965936887,1,0.169009968,0.603073082,1.442858314,0.183863296,40.34418694,0.341210211,0.341210211,0.341210211,1.224260444,0.525073507,1.749333951,0.7584 -1741,1994/10/7,1,4.3,180.6370747,3.3,2.260173979,1,0.179111386,1.218937407,0.786092895,0.094851189,40.27538106,0.358312013,0.358312013,0.358312013,1.213210789,0.453163202,1.666373991,0.7584 -1742,1994/10/8,1.1,5.9,183.6861346,4.8,3.243840325,1.1,0.194780396,1.750940071,1.307237148,0.126307544,40.66231244,0.35617775,0.35617775,0.35617775,1.276483516,0.482485294,1.75896881,0.816 -1743,1994/10/9,1.1,2.6,184.4904303,1.5,1.003387289,1.1,0.199091587,0.695704297,1.158923839,0.145657137,40.87677133,0.368298745,0.368298745,0.368298745,1.312763698,0.513955882,1.82671958,0.816 -1744,1994/10/10,1.2,0.9,184.0476669,0,0,1.14605449,0.196708919,0.196708919,0.428981473,0.071063228,40.44094891,0.375142296,0.375142296,0.375142296,1.239946184,0.446205524,1.686151708,0.816 -1745,1994/10/11,1.2,5.5,186.692699,4.3,2.856321322,1.2,0.21128924,1.654967918,0.75319412,0.057564844,40.33301194,0.361328871,0.361328871,0.361328871,1.222459961,0.418893714,1.641353675,0.816 -1746,1994/10/12,1.3,4.8,188.7641857,3.5,2.294789512,1.3,0.223302828,1.428513316,1.399999189,0.143327126,40.79256265,0.357964761,0.357964761,0.357964761,1.298413235,0.501291887,1.799705121,1.32 -1747,1994/10/13,1.5,14.2,196.5808401,12.7,8.090325436,1.5,0.273671039,4.883345603,2.650661371,0.221355545,42.24889372,0.372444397,0.372444397,0.372444397,1.566774702,0.593799942,2.160574643,1.32 -1748,1994/10/14,1.2,7.7,200.2786503,6.5,3.998288618,1.2,0.300478465,2.802189847,3.572749188,0.401906368,44.23277695,0.421096545,0.421096545,0.421096545,2.009962508,0.823002913,2.832965421,1.932 -1749,1994/10/15,0.9,0.4,199.5539036,0,0,0.829681588,0.295065019,0.295065019,1.531409271,0.249733472,44.24551409,0.49446175,0.49446175,0.49446175,2.013133879,0.744195222,2.757329101,2.1 -1750,1994/10/16,1,3.1,200.5301843,2.1,1.278656427,1,0.302375812,1.123719385,0.592958695,0.077265021,43.49886941,0.494960273,0.494960273,0.494960273,1.834563643,0.572225294,2.406788937,1.62 -1751,1994/10/17,1.3,1.4,200.2903629,0.1,0.060745217,1.3,0.300566601,0.339821385,0.701630413,0.08539212,42.95365878,0.466338075,0.466338075,0.466338075,1.713179123,0.551730194,2.264909317,1.62 -1752,1994/10/18,1.3,2.3,200.5948181,1,0.607320089,1.3,0.302864902,0.695544812,0.446385068,0.051035724,42.27437284,0.446198959,0.446198959,0.446198959,1.571869963,0.497234683,2.069104646,1.62 -1753,1994/10/19,1.1,0,199.3557706,0,0,0.945448627,0.293598795,0.293598795,0.467182003,0.056536327,41.70259841,0.421986046,0.421986046,0.421986046,1.46094248,0.478522373,1.939464853,1.62 -1754,1994/10/20,1.2,0.1,198.128877,0,0,1.04224441,0.284649251,0.284649251,0.260702956,0.033904089,41.0269496,0.402345259,0.402345259,0.402345259,1.338697024,0.436249348,1.774946372,1.392 -1755,1994/10/21,1.2,0.2,196.9985039,0,0,1.053774148,0.276598902,0.276598902,0.253003637,0.02839378,40.42292951,0.379988349,0.379988349,0.379988349,1.237012077,0.408382129,1.645394206,1.32 -1756,1994/10/22,1.2,1.6,196.9704204,0.4,0.24831773,1.2,0.276401249,0.42808352,0.308790367,0.031079921,39.9329935,0.36076569,0.36076569,0.36076569,1.159492065,0.391845611,1.551337676,1.32 -1757,1994/10/23,1,0.5,196.2731356,0,0,0.925754889,0.27152996,0.27152996,0.323421064,0.037585378,39.50664268,0.345692151,0.345692151,0.345692151,1.09546404,0.383277529,1.47874157,1.26 -1758,1994/10/24,0.8,0.4,195.6658199,0,0,0.739972076,0.26734358,0.26734358,0.242722925,0.028907541,39.05179539,0.332945706,0.332945706,0.332945706,1.030515925,0.361853247,1.392369171,1.1856 -1759,1994/10/25,0.8,2,196.1451095,1.2,0.749932725,0.8,0.270643097,0.720710371,0.419733803,0.036735108,38.79581867,0.319721249,0.319721249,0.319721249,0.995431767,0.356456357,1.351888124,1.1856 -1760,1994/10/26,1.1,2.5,196.7423317,1.4,0.872022272,1.1,0.274800145,0.802777873,0.681064073,0.068525318,38.79412575,0.31244617,0.31244617,0.31244617,0.995203167,0.380971488,1.376174655,1.32 -1761,1994/10/27,1.1,1.2,196.5312205,0.1,0.06221369,1.1,0.273324861,0.311111171,0.528243238,0.068517835,38.65782347,0.312398453,0.312398453,0.312398453,0.976943966,0.380916288,1.357860253,1.32 -1762,1994/10/28,1,0,195.4156494,0,0,0.849936856,0.265634232,0.265634232,0.262032171,0.035911739,38.2982882,0.308573679,0.308573679,0.308573679,0.930141125,0.344485418,1.274626543,1.26 -1763,1994/10/29,0.9,0,194.3943046,0,0,0.762598372,0.258746432,0.258746432,0.236349443,0.026948608,37.94701689,0.298645347,0.298645347,0.298645347,0.886266095,0.325593956,1.21186005,1.1856 -1764,1994/10/30,1,0,193.298064,0,0,0.844726758,0.251513814,0.251513814,0.230014186,0.02579713,37.61927533,0.289167663,0.289167663,0.289167663,0.846923416,0.314964793,1.161888209,1.1856 -1765,1994/10/31,1,0,192.2115382,0,0,0.84201951,0.244506302,0.244506302,0.223593768,0.025082876,37.31200086,0.280520414,0.280520414,0.280520414,0.811388648,0.30560329,1.116991938,1.1184 -1766,1994/11/1,1,0,191.1345095,0,0,0.839313195,0.237715545,0.237715545,0.217372647,0.024384228,37.02284916,0.272582436,0.272582436,0.272582436,0.779106784,0.296966664,1.076073448,1.1184 -1767,1994/11/2,1,0,190.066768,0,0,0.836607879,0.231133578,0.231133578,0.211343459,0.023707178,36.74982751,0.265260397,0.265260397,0.265260397,0.749625501,0.288967575,1.038593076,1.056 -1768,1994/11/3,0.9,0,189.0909125,0,0,0.750608866,0.225246703,0.225246703,0.205694319,0.023061776,36.49140777,0.258476789,0.258476789,0.258476789,0.722590854,0.281538565,1.00412942,1.056 -1769,1994/11/4,0.8,0,188.2056009,0,0,0.665300857,0.220010695,0.220010695,0.200653288,0.022479177,36.24650172,0.252171003,0.252171003,0.252171003,0.697730342,0.27465018,0.972380522,1.056 -1770,1994/11/5,0.7,0,187.4095935,0,0,0.580620713,0.215386663,0.215386663,0.196182672,0.021961332,36.0141684,0.246297115,0.246297115,0.246297115,0.674813103,0.268258447,0.94307155,0.9936 -1771,1994/11/6,0.8,0,186.5373498,0,0,0.661834068,0.210409639,0.210409639,0.191881576,0.021483963,35.79325523,0.24081573,0.24081573,0.24081573,0.653610479,0.262299693,0.915910172,0.9336 -1772,1994/11/7,1.1,1,186.2460042,0,0,1.082577716,0.208767936,0.208767936,0.188720036,0.021063634,35.58364914,0.235685125,0.235685125,0.235685125,0.634011245,0.256748759,0.890760004,0.9336 -1773,1994/11/8,1.1,4.8,188.4555697,3.7,2.431044673,1.1,0.221479088,1.490434415,0.694275777,0.049028649,35.84982835,0.230889761,0.230889761,0.230889761,0.658986335,0.27991841,0.938904745,0.8736 -1774,1994/11/9,0.9,0.2,187.657679,0,0,0.781071351,0.216819354,0.216819354,0.838187403,0.105971448,36.22902335,0.236991497,0.236991497,0.236991497,0.695983896,0.342962945,1.038946841,0.8736 -1775,1994/11/10,0.7,0.7,187.4421051,0,0,0.7,0.215573983,0.215573983,0.194645369,0.036675914,35.99645805,0.245881682,0.245881682,0.245881682,0.673092355,0.282557597,0.955649952,0.816 -1776,1994/11/11,0.8,0.7,187.1454228,0,0,0.782812834,0.213869441,0.213869441,0.193343117,0.021534677,35.77803245,0.240401502,0.240401502,0.240401502,0.652170218,0.261936179,0.914106396,0.816 -1777,1994/11/12,0.9,20.8,199.4742769,19.9,12.62332913,0.9,0.29447506,7.571145926,3.099332174,0.182898745,38.19557378,0.235334484,0.235334484,0.235334484,0.917125327,0.418233229,1.335358556,0.7584 -1778,1994/11/13,0.6,3.5,200.9327479,2.9,1.763903445,0.6,0.305432402,1.441528957,4.392228034,0.535796704,41.46648788,0.295851392,0.295851392,0.295851392,1.417165321,0.831648097,2.248813418,1.1856 -1779,1994/11/14,0.5,3.3,202.3041904,2.8,1.687474791,0.5,0.316032303,1.428557513,1.292251027,0.216162324,41.69386497,0.394428574,0.394428574,0.394428574,1.459302511,0.610590897,2.069893408,1.4616 -1780,1994/11/15,0.3,5.4,204.9987288,5.1,3.032257261,0.3,0.337718822,2.405461562,1.671675155,0.164451747,42.20880372,0.402050427,0.402050427,0.402050427,1.558786833,0.566502174,2.125289007,1.392 -1781,1994/11/16,0.3,3.5,206.5237841,3.2,1.875567939,0.3,0.350512663,1.674944723,1.876289164,0.21298959,42.82022058,0.419699677,0.419699677,0.419699677,1.684571987,0.632689267,2.317261254,1.5456 -1782,1994/11/17,0.5,9.2,211.1223226,8.7,4.990004619,0.5,0.391466081,4.101461462,2.466163592,0.229372265,43.81853446,0.441366263,0.441366263,0.441366263,1.909215972,0.670738528,2.5799545,0.9336 -1783,1994/11/18,0.7,1.5,211.1815757,0.8,0.451270818,0.7,0.392017774,0.740746956,2.363501602,0.307759903,44.56605109,0.478443272,0.478443272,0.478443272,2.094428246,0.786203175,2.880631421,1.1184 -1784,1994/11/19,0.6,0.4,210.6179766,0,0,0.576803699,0.386795435,0.386795435,0.52682649,0.105942545,43.71561077,0.507624437,0.507624437,0.507624437,1.884891243,0.613566982,2.498458225,1.056 -1785,1994/11/20,0.4,0,209.8848396,0,0,0.353051007,0.380085972,0.380085972,0.345464983,0.042706866,42.84561394,0.474521516,0.474521516,0.474521516,1.689983336,0.517228383,2.207211719,1.056 -1786,1994/11/21,0.5,0,209.071607,0,0,0.440479349,0.372753242,0.372753242,0.339180214,0.037926786,42.09146558,0.442283033,0.442283033,0.442283033,1.535611599,0.480209819,2.015821418,0.9936 -1787,1994/11/22,0.8,0,208.0051661,0,0,0.703130775,0.363310113,0.363310113,0.331746942,0.037154541,41.42859575,0.415630251,0.415630251,0.415630251,1.410247027,0.452784792,1.863031819,0.9936 -1788,1994/11/23,0.8,7.6,211.4850767,6.8,3.874764008,0.8,0.394853413,3.320089405,1.495198469,0.101343488,41.83160727,0.393168511,0.393168511,0.393168511,1.485355462,0.494511999,1.979867461,0.816 -1789,1994/11/24,0.6,1.9,211.8177126,1.3,0.730616135,0.6,0.397980175,0.96736404,2.058521873,0.24549393,42.64847642,0.406718487,0.406718487,0.406718487,1.648371206,0.652212417,2.300583622,0.816 -1790,1994/11/25,0.5,0.1,211.0726365,0,0,0.454072167,0.391003946,0.391003946,0.642908543,0.11183395,42.17458866,0.435201423,0.435201423,0.435201423,1.551997723,0.547035372,2.099033095,0.9936 -1791,1994/11/26,0.4,25.2,223.85828,24.8,13.31096134,0.4,0.525317846,12.0143565,4.944273933,0.301029884,45.25748727,0.418510133,0.418510133,0.418510133,2.279885457,0.719540016,2.999425474,0.9336 -1792,1994/11/27,0.2,12.5,229.3818878,12.3,6.117371403,0.2,0.593763651,6.776392248,8.743408191,0.949374496,50.35095374,0.53572821,0.53572821,0.53572821,4.185669936,1.485102706,5.670772642,2.0136 -1793,1994/11/28,0.3,0.7,228.9876706,0.4,0.194435583,0.3,0.588652741,0.794217159,3.735203823,0.60810883,50.56985245,0.778134977,0.778134977,0.778134977,4.294440092,1.386243807,5.680683899,2.28 -1794,1994/11/29,0.2,1.7,229.1271927,1.5,0.729979559,0.2,0.590457537,1.360477978,0.938524284,0.162406272,48.80778329,0.790039645,0.790039645,0.790039645,3.490633084,0.952445917,4.443079001,2.0136 -1795,1994/11/30,0.3,0.4,228.5923846,0.1,0.048755507,0.3,0.583563598,0.634808091,0.937718987,0.113440818,47.46664311,0.697814157,0.697814157,0.697814157,2.976673329,0.811254974,3.787928303,1.86 -1796,1994/12/1,0.3,0,227.7442158,0,0,0.275405468,0.572763285,0.572763285,0.54681345,0.070677663,46.11578613,0.63297681,0.63297681,0.63297681,2.530647239,0.703654473,3.234301712,1.62 -1797,1994/12/2,0.3,0,226.9070066,0,0,0.274948296,0.562260918,0.562260918,0.511337472,0.057777587,44.99220646,0.572139115,0.572139115,0.572139115,2.207056251,0.629916702,2.836972953,1.4616 -1798,1994/12/3,0.3,0.1,226.17084,0,0,0.28301194,0.553154679,0.553154679,0.50243695,0.056150091,44.05363365,0.524817738,0.524817738,0.524817738,1.965827499,0.580967829,2.546795328,1.32 -1799,1994/12/4,0.2,0,225.4438187,0,0,0.182742834,0.544278446,0.544278446,0.494332211,0.055228049,43.25589292,0.487488145,0.487488145,0.487488145,1.779561087,0.542716194,2.322277281,1.26 -1800,1994/12/5,0.4,5,227.1732683,4.6,2.29503373,0.4,0.565584082,2.870550352,1.408957375,0.105594048,43.32669806,0.457284487,0.457284487,0.457284487,1.795436721,0.562878534,2.358315255,0.9336 -1801,1994/12/6,0.5,18.5,235.0845014,18,8.583015993,0.5,0.671782909,10.08876692,5.43540255,0.418057853,46.55391859,0.459909687,0.459909687,0.459909687,2.668091708,0.87796754,3.546059248,1.4616 -1802,1994/12/7,0.6,8.7,238.0319088,8.1,3.662634371,0.6,0.715227,5.152592629,7.129614405,0.81539495,50.17482867,0.591391166,0.591391166,0.591391166,4.100095494,1.406786115,5.506881609,3.024 -1803,1994/12/8,0.6,6.6,239.9327124,6,2.64522894,0.6,0.744425292,4.099196352,4.221137843,0.550355791,50.76889291,0.768649991,0.768649991,0.768649991,4.395723595,1.319005782,5.714729376,4.344 -1804,1994/12/9,0.6,1.8,239.7160295,1.2,0.524366193,0.6,0.74104911,1.416682917,2.629419301,0.363462754,50.12371171,0.800976747,0.800976747,0.800976747,4.075577246,1.164439501,5.240016748,4.464 -1805,1994/12/10,0.5,7.1,241.7964005,6.6,2.854350006,0.5,0.773979034,4.519629028,2.500984274,0.241415952,49.57120143,0.76591269,0.76591269,0.76591269,3.819407245,1.007328642,4.826735887,3.984 -1806,1994/12/11,0.3,12.5,246.041729,12.2,5.09017027,0.3,0.844841766,7.954671496,5.424846508,0.490765085,51.14129291,0.736768483,0.736768483,0.736768483,4.591523507,1.227533568,5.819057075,3.672 -1807,1994/12/12,0.4,3,246.2506411,2.6,1.057371517,0.4,0.848459458,2.391087941,4.96104005,0.632833396,51.90421836,0.821729625,0.821729625,0.821729625,5.019844226,1.454563021,6.474407247,3.552 -1808,1994/12/13,0.4,3.3,246.5722172,2.9,1.175628673,0.4,0.854052553,2.578423881,2.225995259,0.308839049,50.65710018,0.865440622,0.865440622,0.865440622,4.338554061,1.174279671,5.512833732,3.432 -1809,1994/12/14,0.3,5.5,247.7852138,5.2,2.088414964,0.3,0.875418349,3.987003385,2.87710923,0.286551185,50.21133647,0.794820613,0.794820613,0.794820613,4.117693552,1.081371799,5.19906535,4.56 -1810,1994/12/15,0.4,10.7,250.8801534,10.3,4.026833059,0.4,0.93189346,7.205060401,4.859752792,0.452723443,51.21202918,0.770609248,0.770609248,0.770609248,4.629669328,1.223332691,5.853002019,5.184 -1811,1994/12/16,0.7,1.6,250.3053891,0.9,0.346424791,0.7,0.921189048,1.474764257,4.220522171,0.556772116,51.48079466,0.825714532,0.825714532,0.825714532,4.777471232,1.382486648,6.159957879,5.688 -1812,1994/12/17,0.5,14,254.3815038,13.5,5.07540854,0.5,0.999293867,9.423885328,4.467974449,0.389543533,51.81940985,0.840981283,0.840981283,0.840981283,4.970340535,1.230524816,6.200865351,5.688 -1813,1994/12/18,0.2,3.4,254.5487655,3.2,1.169871237,0.2,1.00260951,3.032738273,5.956363279,0.708349771,52.95829494,0.860501442,0.860501442,0.860501442,5.677979629,1.568851212,7.246830841,6.648 -1814,1994/12/19,0.2,2.5,254.3901244,2.3,0.840823442,0.2,0.999464538,2.458641096,2.502639379,0.36605117,51.56483212,0.928532185,0.928532185,0.928532185,4.824634386,1.294583355,6.119217741,5.688 -1815,1994/12/20,0.5,4.5,254.8409677,4,1.459266428,0.5,1.008423179,3.549156751,2.643638143,0.276571943,50.69593506,0.84579597,0.84579597,0.84579597,4.358331179,1.122367913,5.480699092,5.304 -1816,1994/12/21,0.3,1.9,254.4244448,1.6,0.583621369,0.3,1.000144244,2.016522875,2.588699483,0.308412763,50.04397583,0.796955303,0.796955303,0.796955303,4.037614007,1.105368066,5.142982073,4.944 -1817,1994/12/22,0.2,3.1,254.4835009,2.9,1.060370808,0.2,1.001314708,2.8409439,2.140598137,0.237824555,49.26296353,0.761656763,0.761656763,0.761656763,3.683267207,0.999481319,4.682748526,4.56 -1818,1994/12/23,0.1,0,253.4075475,0,0,0.095790856,0.980162549,0.980162549,1.821657325,0.233527029,48.45682825,0.720858216,0.720858216,0.720858216,3.348650817,0.954385245,4.303036062,4.104 -1819,1994/12/24,0,0,252.4459816,0,0,0,0.96156593,0.96156593,0.874798773,0.119554568,47.146991,0.680409591,0.680409591,0.680409591,2.865045619,0.799964159,3.665009778,2.832 -1820,1994/12/25,0.2,6.6,253.8391821,6.4,2.381804753,0.2,0.988604249,5.006799496,2.463675457,0.185168536,47.30805174,0.618182796,0.618182796,0.618182796,2.920797511,0.803351332,3.724148843,2.712 -1821,1994/12/26,0.4,2.5,253.6301294,2.1,0.775455704,0.4,0.984508395,2.309052691,3.440243426,0.393754302,48.14632441,0.62560571,0.62560571,0.62560571,3.227576468,1.019360012,4.24693648,3.024 -1822,1994/12/27,0.4,2.1,253.2825282,1.7,0.630127148,0.4,0.977728388,2.047601239,1.974848263,0.256984331,47.71886261,0.665271571,0.665271571,0.665271571,3.067581627,0.922255902,3.989837529,2.904 -1823,1994/12/28,0.3,0.1,252.1356444,0,0,0.29125854,0.955625242,0.955625242,1.411402872,0.183874997,46.97013451,0.644827092,0.644827092,0.644827092,2.804958067,0.828702088,3.633660155,2.832 -1824,1994/12/29,0.2,0,251.0103557,0,0,0.190956402,0.934332244,0.934332244,0.851649861,0.107974184,45.9511865,0.610104596,0.610104596,0.610104596,2.480702467,0.71807878,3.198781247,2.712 -1825,1994/12/30,0.1,0,249.9994892,0,0,0.09533392,0.915532579,0.915532579,0.833471276,0.09327173,45.11043094,0.565023534,0.565023534,0.565023534,2.239250372,0.658295264,2.897545636,2.544 -1826,1994/12/31,0.1,0,249.0069212,0,0,0.095196505,0.897371547,0.897371547,0.816803901,0.091376374,44.40394048,0.529660271,0.529660271,0.529660271,2.052954627,0.621036645,2.673991273,2.1 -1827,1995/1/1,0.1,0.2,248.1642201,0.1,0.039480795,0.1,0.882181907,0.942701113,0.825544019,0.090946352,43.82089775,0.501191012,0.501191012,0.501191012,1.909777763,0.592137365,2.501915128,2.1936 -1828,1995/1/2,0.2,0.8,247.532339,0.6,0.239047898,0.2,0.870928994,1.231881096,0.962685587,0.100082986,43.44082714,0.478533592,0.478533592,0.478533592,1.821289787,0.578616579,2.399906366,2.0136 -1829,1995/1/3,0.5,0.6,246.7159717,0.1,0.040195215,0.5,0.856562445,0.91636723,0.984033868,0.112851977,43.13605182,0.464163818,0.464163818,0.464163818,1.752973014,0.577015795,2.329988809,2.1 -1830,1995/1/4,0.6,1.5,246.2324254,0.9,0.364597168,0.6,0.848143523,1.383546355,1.009312306,0.105612536,42.89720517,0.452865624,0.452865624,0.452865624,1.70102458,0.55847816,2.259502741,2.0136 -1831,1995/1/5,0.6,0.2,245.0264037,0,0,0.578585368,0.827436339,0.827436339,1.025473395,0.120638075,42.70633801,0.444149805,0.444149805,0.444149805,1.66049036,0.56478788,2.22527824,1.932 -1832,1995/1/6,0.6,0.6,244.2127065,0,0,0.6,0.813697204,0.813697204,0.739264372,0.08900097,42.30488339,0.437271476,0.437271476,0.437271476,1.577990466,0.526272446,2.104262912,1.86 -1833,1995/1/7,0.4,0.2,243.2266819,0,0,0.388728969,0.797295579,0.797295579,0.725847205,0.081171768,41.94640602,0.423052963,0.423052963,0.423052963,1.50737754,0.50422473,2.01160227,1.692 -1834,1995/1/8,0.2,3.5,243.8037427,3.3,1.383922526,0.2,0.806861755,2.722939228,1.478385123,0.122190762,42.26536306,0.410638467,0.410638467,0.410638467,1.57006655,0.532829228,2.102895779,1.62 -1835,1995/1/9,0.2,0,242.8244534,0,0,0.188607347,0.790681938,0.790681938,1.687213079,0.207169593,42.71246851,0.421671352,0.421671352,0.421671352,1.661778972,0.628840945,2.290619918,1.4616 -1836,1995/1/10,0.2,0,241.8611179,0,0,0.188313461,0.775022039,0.775022039,0.705426521,0.101513967,42.28199018,0.437491212,0.437491212,0.437491212,1.573396073,0.539005179,2.112401252,1.62 -1837,1995/1/11,0.2,0,240.9132387,0,0,0.188020713,0.759858479,0.759858479,0.691528715,0.07735408,41.89775997,0.422252234,0.422252234,0.422252234,1.498011157,0.499606314,1.997617471,1.62 -1838,1995/1/12,0.2,0,239.9803405,0,0,0.187729127,0.745169055,0.745169055,0.678068842,0.075842277,41.55192947,0.408974093,0.408974093,0.408974093,1.432873437,0.48481637,1.917689807,1.5456 -1839,1995/1/13,0.4,5.3,241.3353425,4.9,2.121583149,0.4,0.766581191,3.544998042,1.776860661,0.136146219,42.1741581,0.397280424,0.397280424,0.397280424,1.551912452,0.533426643,2.085339096,1.62 -1840,1995/1/14,0.3,6.5,243.1760508,6.2,2.637168953,0.3,0.796460631,4.359291678,3.512224434,0.339351747,44.12224876,0.418495179,0.418495179,0.418495179,1.982628946,0.757846926,2.740475872,1.32 -1841,1995/1/15,0.5,11.4,246.8096488,10.9,4.491799227,0.5,0.858201207,7.26640198,5.071957634,0.490136168,46.90217744,0.490150804,0.490150804,0.490150804,2.782179757,0.980286971,3.762466728,1.5456 -1842,1995/1/16,0.5,2.5,246.7594978,2,0.807172576,0.5,0.857323564,2.050150988,4.478828114,0.577856906,48.58725672,0.607020701,0.607020701,0.607020701,3.400769538,1.184877607,4.585647145,2.64 -1843,1995/1/17,0.4,0,245.5443304,0,0,0.378888976,0.836278478,0.836278478,1.365536504,0.2398924,47.611177,0.686841155,0.686841155,0.686841155,3.028457383,0.926733555,3.955190938,2.712 -1844,1995/1/18,0.2,1.6,245.2867893,1.4,0.574331085,0.2,0.831872211,1.657541125,1.077130337,0.115971216,46.63408793,0.639748381,0.639748381,0.639748381,2.693967782,0.755719597,3.449687379,2.832 -1845,1995/1/19,0.2,0.1,244.3758232,0,0,0.194529554,0.816436544,0.816436544,1.159467726,0.137605806,45.91782848,0.594963315,0.594963315,0.594963315,2.470690494,0.732569121,3.203259614,3.024 -1846,1995/1/20,0.1,0,243.4799448,0,0,0.094395633,0.801482693,0.801482693,0.728884625,0.091235619,45.00089447,0.563589221,0.563589221,0.563589221,2.20940786,0.65482484,2.8642327,2.544 -1847,1995/1/21,0.1,0,242.5986932,0,0,0.094262352,0.786989309,0.786989309,0.715608089,0.080006529,44.23192463,0.525172521,0.525172521,0.525172521,2.009750451,0.60517905,2.614929501,2.1 -1848,1995/1/22,0.1,0,241.7316272,0,0,0.094129718,0.772936261,0.772936261,0.70273802,0.078561425,43.57661372,0.494428404,0.494428404,0.494428404,1.852477331,0.572989828,2.425467159,1.5456 -1849,1995/1/23,0.2,0,240.7858078,0,0,0.187981086,0.757838297,0.757838297,0.689677432,0.07712799,43.01013741,0.469261753,0.469261753,0.469261753,1.725415492,0.546389743,2.271805235,1.5456 -1850,1995/1/24,0.3,0,239.7625227,0,0,0.281512654,0.741772488,0.741772488,0.67570687,0.075609273,42.51366462,0.44825577,0.44825577,0.44825577,1.620435428,0.523865043,2.144300471,1.776 -1851,1995/1/25,0.5,0,238.5707977,0,0,0.468315619,0.723409407,0.723409407,0.660339994,0.073963682,42.07251341,0.430405568,0.430405568,0.430405568,1.531896771,0.50436925,2.036266021,1.776 -1852,1995/1/26,0.6,0,237.305678,0,0,0.560801479,0.704318189,0.704318189,0.643525535,0.072138485,41.67520977,0.414975622,0.414975622,0.414975622,1.455804795,0.487114107,1.942918902,1.86 -1853,1995/1/27,0.7,0.8,236.6560374,0.1,0.045033233,0.7,0.694673853,0.749640621,0.651793183,0.071651826,41.33511873,0.401421162,0.401421162,0.401421162,1.393305393,0.473072988,1.866378381,1.62 -1854,1995/1/28,0.7,1.7,236.4172764,1,0.452395167,0.7,0.691156156,1.238760989,0.867927316,0.085165694,41.22036845,0.390072331,0.390072331,0.390072331,1.372749923,0.475238025,1.847987948,1.62 -1855,1995/1/29,0.7,2.4,236.4946796,1.7,0.769698199,0.7,0.692294972,1.622596773,1.266537844,0.126532498,41.4576522,0.38629539,0.38629539,0.38629539,1.415549484,0.512827888,1.928377373,1.4616 -1856,1995/1/30,0.6,3.6,237.1458944,3,1.353150969,0.6,0.701936154,2.348785185,1.747253086,0.173672452,42.06802219,0.394134495,0.394134495,0.394134495,1.531017595,0.567806947,2.098824541,1.392 -1857,1995/1/31,0.5,1.7,236.9862417,1.2,0.539909805,0.5,0.699562558,1.359652753,1.723101766,0.204602355,42.57321972,0.414820598,0.414820598,0.414820598,1.632724832,0.619422953,2.252147784,1.5456 -1858,1995/2/1,0.6,4.8,238.148922,4.2,1.879677668,0.6,0.716997338,3.037319671,1.886531306,0.184456032,43.13871132,0.432519527,0.432519527,0.432519527,1.753559231,0.616975559,2.370534791,1.5456 -1859,1995/2/2,0.3,1.6,238.0127146,1.3,0.578729565,0.3,0.71493694,1.436207376,2.100990396,0.248800949,43.79017835,0.452963355,0.452963355,0.452963355,1.902486717,0.701764304,2.60425102,1.5456 -1860,1995/2/3,0.4,2.1,238.0543188,1.7,0.757169931,0.4,0.715565776,1.658395845,1.380372958,0.16738168,43.7539839,0.477360503,0.477360503,0.477360503,1.893927912,0.644742183,2.538670095,1.5456 -1861,1995/2/4,0.3,1,237.6571047,0.7,0.312366113,0.3,0.709580144,1.097214032,1.270834069,0.150901181,43.63481076,0.475980973,0.475980973,0.475980973,1.865988181,0.626882154,2.492870336,1.5456 -1862,1995/2/5,0.6,9.1,240.6417962,8.5,3.740251923,0.6,0.755560473,5.51530855,2.733075588,0.213316995,44.70799017,0.471458882,0.471458882,0.471458882,2.13135506,0.684775877,2.816130937,1.4616 -1863,1995/2/6,0.4,8.8,243.4227478,8.4,3.581487115,0.4,0.800535526,5.619048411,5.004765038,0.501700044,47.30598501,0.513305593,0.513305593,0.513305593,2.920075798,1.015005637,3.935081435,1.776 -1864,1995/2/7,0.3,7,245.3704299,6.7,2.780983302,0.3,0.833301159,4.752317857,4.714699402,0.54165677,49.05300292,0.625510058,0.625510058,0.625510058,3.593191548,1.167166827,4.760358376,2.1 -1865,1995/2/8,0.2,1.5,245.0766552,1.3,0.534516164,0.2,0.828290923,1.593774759,3.029149983,0.416124524,49.15544098,0.710162245,0.710162245,0.710162245,3.636874167,1.126286769,4.763160936,2.1936 -1866,1995/2/9,0.1,3.8,245.7545296,3.7,1.517763179,0.1,0.839888712,3.022125533,1.998736645,0.227982297,48.50266378,0.715366454,0.715366454,0.715366454,3.366880303,0.943348751,4.310229054,1.86 -1867,1995/2/10,0.1,3.5,246.2901076,3.4,1.384722228,0.1,0.849144293,2.864422065,2.657604488,0.281904747,48.48363296,0.682664864,0.682664864,0.682664864,3.359300163,0.964569611,4.323869774,1.86 -1868,1995/2/11,0.1,3.4,246.7685016,3.3,1.3358751,0.1,0.857481077,2.821605976,2.561063213,0.287362456,48.40017636,0.681727832,0.681727832,0.681727832,3.326247644,0.969090288,4.295337932,1.86 -1869,1995/2/12,0,0.7,246.2043796,0.7,0.283535304,0,0.847657281,1.264121977,1.924085554,0.248478985,47.87627304,0.677629474,0.677629474,0.677629474,3.125618351,0.926108459,4.05172681,1.776 -1870,1995/2/13,0,1.4,245.9313505,1.4,0.569906273,0,0.842935392,1.673029119,1.299268391,0.153757036,47.00958435,0.652302669,0.652302669,0.652302669,2.818259753,0.806059705,3.624319458,1.692 -1871,1995/2/14,0,0,245.1026178,0,0,0,0.828732725,0.828732725,1.172145839,0.143947961,46.22831345,0.611899956,0.611899956,0.611899956,2.565316691,0.755847918,3.321164609,1.692 -1872,1995/2/15,0,0,244.2876627,0,0,0,0.814955077,0.814955077,0.740415903,0.0925287,45.26405422,0.577040314,0.577040314,0.577040314,2.281715456,0.669569014,2.951284471,1.5456 -1873,1995/2/16,0.2,0,243.300399,0,0,0.18875119,0.798512495,0.798512495,0.726963109,0.08129711,44.4598445,0.536000332,0.536000332,0.536000332,2.067173158,0.617297443,2.684470601,1.5456 -1874,1995/2/17,0.1,0,242.4220537,0,0,0.094235452,0.784109829,0.784109829,0.712970753,0.079729059,43.77688009,0.503402967,0.503402967,0.503402967,1.899338131,0.583132025,2.482470156,1.5456 -1875,1995/2/18,0.1,0,241.5578072,0,0,0.094102951,0.770143565,0.770143565,0.700180776,0.078274311,43.18919445,0.476853316,0.476853316,0.476853316,1.764719726,0.555127627,2.319847353,1.4616 -1876,1995/2/19,0.3,0,240.5222632,0,0,0.281870035,0.753674022,0.753674022,0.686622097,0.076817591,42.676423,0.454821354,0.454821354,0.454821354,1.654214906,0.531638944,2.18585385,1.4616 -1877,1995/2/20,0.2,0,239.5954792,0,0,0.187607834,0.739176141,0.739176141,0.672578509,0.075243438,42.22349247,0.436200362,0.436200362,0.436200362,1.561709399,0.5114438,2.073153199,1.5456 -1878,1995/2/21,0.2,0,238.6830381,0,0,0.187317935,0.725123106,0.725123106,0.659706175,0.07378016,41.82022282,0.420211097,0.420211097,0.420211097,1.483186924,0.493991257,1.977178181,1.4616 -1879,1995/2/22,0.2,0,237.7845132,0,0,0.187029247,0.711495654,0.711495654,0.647226591,0.072378951,41.45814166,0.40633121,0.40633121,0.40633121,1.415638953,0.478710161,1.894349114,1.392 -1880,1995/2/23,0.6,3.8,238.4860692,3.2,1.423673905,0.6,0.722117928,2.498444023,1.346366881,0.110533696,41.73215482,0.394150782,0.394150782,0.394150782,1.466504505,0.504684478,1.971188983,1.4616 -1881,1995/2/24,0.9,4.2,239.2099686,3.3,1.457111548,0.9,0.733212133,2.576100585,2.27928156,0.230473337,42.74594868,0.403344201,0.403344201,0.403344201,1.668831902,0.633817538,2.302649439,1.692 -1882,1995/2/25,1,13.1,243.6004349,12.1,5.19394717,1,0.803480933,7.709533762,4.346702757,0.369372711,45.25277184,0.438692635,0.438692635,0.438692635,2.278572232,0.808065346,3.086637578,2.1936 -1883,1995/2/26,0.9,8.5,245.8994999,7.6,3.14145099,0.9,0.842385939,5.300934949,5.986946169,0.657540094,48.43517829,0.535532872,0.535532872,0.535532872,3.340072589,1.193072966,4.533145555,2.64 -1884,1995/2/27,0.8,5.6,246.9832822,4.8,1.945027629,0.8,0.861245391,3.716217762,4.144721776,0.523716762,49.48042371,0.679346187,0.679346187,0.679346187,3.778822551,1.20306295,4.9818855,3.432 -1885,1995/2/28,0.8,4.4,247.5562524,3.6,1.444322962,0.8,0.871352738,3.027029776,3.072298685,0.375184758,49.49809075,0.732057033,0.732057033,0.732057033,3.786688674,1.107241791,4.893930465,4.56 -1886,1995/3/1,0.5,4.8,248.3806331,4.3,1.710443546,0.5,0.886062784,3.475619238,2.901563797,0.320677998,49.39265298,0.732972278,0.732972278,0.732972278,3.739973845,1.053650276,4.793624122,4.824 -1887,1995/3/2,0.5,0,247.0436,0,0,0.474728153,0.862304937,0.862304937,2.095540394,0.284909177,48.74917935,0.72752215,0.72752215,0.72752215,3.466536174,1.012431328,4.478967501,4.824 -1888,1995/3/3,0.5,0,245.7303466,0,0,0.473780747,0.839472722,0.839472722,0.767053447,0.11655138,47.29490825,0.694886005,0.694886005,0.694886005,2.916210548,0.811437385,3.727647933,4.344 -1889,1995/3/4,0.7,0,244.2540852,0,0,0.661869951,0.814391405,0.814391405,0.745615837,0.083666048,46.13039708,0.624997584,0.624997584,0.624997584,2.535124595,0.708663632,3.243788227,3.744 -1890,1995/3/5,0.5,0,242.9889558,0,0,0.471748024,0.793381399,0.793381399,0.724651221,0.081273807,45.17171696,0.572773818,0.572773818,0.572773818,2.256105154,0.654047625,2.910152779,3.24 -1891,1995/3/6,0.6,0,241.6523752,0,0,0.564918641,0.77166194,0.77166194,0.705461912,0.079109215,44.36600578,0.532183097,0.532183097,0.532183097,2.043356197,0.611292313,2.654648509,2.904 -1892,1995/3/7,0.6,0,240.337906,0,0,0.563697201,0.750771973,0.750771973,0.686242131,0.076963843,43.67627446,0.499694009,0.499694009,0.499694009,1.875667462,0.576657853,2.452325314,2.364 -1893,1995/3/8,1,0,238.675729,0,0,0.937165676,0.725011409,0.725011409,0.665516795,0.074758154,43.07521068,0.473028748,0.473028748,0.473028748,1.73960932,0.547786901,2.287396222,2.28 -1894,1995/3/9,1.4,0,236.6728733,0,0,1.30793317,0.694922444,0.694922444,0.640622142,0.072144534,42.5405032,0.450633961,0.450633961,0.450633961,1.625963584,0.522778495,2.14874208,2.1 -1895,1995/3/10,1.2,0,234.8865541,0,0,1.117375974,0.668943253,0.668943253,0.615165841,0.069276896,42.05797411,0.43135731,0.43135731,0.43135731,1.529052236,0.500634206,2.029686442,2.1 -1896,1995/3/11,0.9,0,233.4030058,0,0,0.835580939,0.647967352,0.647967352,0.593761362,0.066740326,41.62060138,0.414473917,0.414473917,0.414473917,1.445608012,0.481214243,1.926822256,1.32 -1897,1995/3/12,0.9,0,231.9418452,0,0,0.83333151,0.627829139,0.627829139,0.575214022,0.064602113,41.22230412,0.399583192,0.399583192,0.399583192,1.373094471,0.464185305,1.837279775,1.5456 -1898,1995/3/13,1.5,2.6,231.8366459,1.1,0.521199668,1.5,0.626398937,1.205199269,0.793164344,0.075693677,41.0577561,0.386358885,0.386358885,0.386358885,1.344071248,0.462052561,1.806123809,1.392 -1899,1995/3/14,1.4,8.2,234.358997,6.8,3.183773476,1.4,0.661422377,4.277648901,2.29859988,0.181150369,42.18356715,0.380987932,0.380987932,0.380987932,1.553776768,0.562138301,2.115915069,1.392 -1900,1995/3/15,1,11.2,238.2636405,10.2,4.623379864,1,0.718736386,6.295356522,4.647077377,0.43581635,45.03170182,0.418822052,0.418822052,0.418822052,2.217764755,0.854638402,3.072403157,1.692 -1901,1995/3/16,0.9,0,236.7273555,0,0,0.840557595,0.695727387,0.695727387,3.453415055,0.482827035,46.39430049,0.526431954,0.526431954,0.526431954,2.617248335,1.009258989,3.626507324,1.932 -1902,1995/3/17,1.1,2.5,236.6648591,1.4,0.632307678,1.1,0.694804101,1.462496423,0.929104009,0.152446598,45.54614182,0.584324628,0.584324628,0.584324628,2.361587308,0.736771226,3.098358534,1.5456 -1903,1995/3/18,1.4,2.5,236.4703965,1.1,0.497474951,1.4,0.691937538,1.294462587,1.249856811,0.133517896,45.1058002,0.547783015,0.547783015,0.547783015,2.237981452,0.681300911,2.919282363,1.5456 -1904,1995/3/19,1.4,0,234.5039882,0,0,1.302925788,0.663482553,0.663482553,0.915716965,0.117578153,44.47893774,0.529469996,0.529469996,0.529469996,2.072049421,0.647048148,2.719097569,1.86 -1905,1995/3/20,1.4,0,232.5692257,0,0,1.29834921,0.636413202,0.636413202,0.586439219,0.073196025,43.69053117,0.504160024,0.504160024,0.504160024,1.879005814,0.577356049,2.456361863,1.62 -1906,1995/3/21,1.5,2.1,232.2205032,0.6,0.282907705,1.5,0.631630257,0.948722553,0.696164855,0.070815765,43.11248051,0.473569386,0.473569386,0.473569386,1.7477849,0.544385151,2.292170051,1.62 -1907,1995/3/22,1.2,1.4,231.6907874,0.2,0.094704511,1.2,0.624420308,0.729715797,0.767321011,0.086381647,42.67738518,0.45200009,0.45200009,0.45200009,1.654416425,0.538381737,2.192798162,1.62 -1908,1995/3/23,1.3,0,229.890907,0,0,1.199464711,0.600415726,0.600415726,0.605657922,0.072716486,42.16848798,0.436234784,0.436234784,0.436234784,1.550789915,0.50895127,2.059741185,1.62 -1909,1995/3/24,1.4,15.4,235.7779925,14,6.568893695,1.4,0.68180812,8.112914425,3.508551902,0.22646539,44.11459072,0.418298285,0.418298285,0.418298285,1.980747442,0.644763675,2.625511117,1.5456 -1910,1995/3/25,0.8,4.5,236.7601289,3.7,1.678348304,0.8,0.696211957,2.717863653,5.17004575,0.604266516,46.96968332,0.489853114,0.489853114,0.489853114,2.804806268,1.09411963,3.898925898,1.932 -1911,1995/3/26,0.7,0.9,236.1632498,0.2,0.090550253,0.7,0.687429325,0.796879071,1.687098893,0.293251429,46.58785041,0.610084084,0.610084084,0.610084084,2.679015883,0.903335513,3.582351396,1.86 -1912,1995/3/27,0.9,4.2,236.9565841,3.3,1.492456643,0.9,0.699122345,2.506665702,1.39272546,0.139874155,46.05989167,0.592901209,0.592901209,0.592901209,2.513585411,0.732775364,3.246360776,1.776 -1913,1995/3/28,0.9,0.7,236.0838423,0,0,0.886474127,0.686267663,0.686267663,1.536762345,0.190543406,45.74651965,0.569715684,0.569715684,0.569715684,2.419850047,0.76025909,3.180109136,2.1 -1914,1995/3/29,0.7,0,234.7652408,0,0,0.651393804,0.667207735,0.667207735,0.610110329,0.089678613,44.76622176,0.556264301,0.556264301,0.556264301,2.14667252,0.645942914,2.792615434,2.1936 -1915,1995/3/30,1.1,1,234.0157903,0,0,1.092884133,0.656566293,0.656566293,0.596282527,0.066712008,43.93989735,0.515649415,0.515649415,0.515649415,1.938256348,0.582361422,2.520617771,1.932 -1916,1995/3/31,1.3,2.6,233.9634072,1.3,0.603444518,1.3,0.65582765,1.352383132,0.865825911,0.081055282,43.46256864,0.483097306,0.483097306,0.483097306,1.826251927,0.564152589,2.390404516,2.0136 -1917,1995/4/1,1.2,0.4,232.5852129,0,0,1.141561151,0.636633173,0.636633173,0.934352976,0.111321061,43.11381972,0.464977402,0.464977402,0.464977402,1.748079301,0.576298463,2.324377764,1.86 -1918,1995/4/2,0.8,19.2,240.1664226,18.4,8.329290424,0.8,0.74808067,10.81879025,4.595925905,0.295602671,45.74298403,0.452049234,0.452049234,0.452049234,2.418810829,0.747651905,3.166462734,1.932 -1919,1995/4/3,0.7,8.9,242.8905898,8.2,3.515933523,0.7,0.791766336,5.475832813,7.62591593,0.844511041,49.93754327,0.556113843,0.556113843,0.556113843,3.987470529,1.400624884,5.388095413,2.424 -1920,1995/4/4,0.8,8.4,245.2265143,7.6,3.166768133,0.8,0.830843677,5.264075544,4.844584399,0.605951427,51.0143112,0.756002251,0.756002251,0.756002251,4.523818728,1.361953677,5.885772406,3.024 -1921,1995/4/5,1.3,6.7,246.5746922,5.4,2.202273606,1.3,0.854095716,4.051822109,4.258708222,0.502296318,51.37105911,0.814610639,0.814610639,0.814610639,4.716570946,1.316906957,6.033477903,3.552 -1922,1995/4/6,1.6,11.7,249.6737356,10.1,4.008583241,1.6,0.909539854,7.000956613,4.811838733,0.484213195,51.96311199,0.83472381,0.83472381,0.83472381,5.054509663,1.318937005,6.373446668,7.08 -1923,1995/4/7,1.9,4.1,249.622183,2.2,0.857041765,1.9,0.908594376,2.251552611,4.424377885,0.561063978,52.11272248,0.868882432,0.868882432,0.868882432,5.14364983,1.42994641,6.57359624,8.736 -1924,1995/4/8,2.3,2,248.4494878,0,0,2.285394776,0.88730042,0.88730042,1.487383158,0.251225643,50.31144884,0.877669791,0.877669791,0.877669791,4.166326588,1.128895434,5.295222022,7.968 -1925,1995/4/9,2.6,0,245.1547017,0,0,2.46516641,0.829619606,0.829619606,0.775780748,0.103554278,48.49814919,0.77600026,0.77600026,0.77600026,3.365080652,0.879554539,4.244635191,6.648 -1926,1995/4/10,2.6,0,241.9259071,0,0,2.452727292,0.776067337,0.776067337,0.725499199,0.082466813,47.06802075,0.682442493,0.682442493,0.682442493,2.838070132,0.764909306,3.602979438,6.768 -1927,1995/4/11,1.6,14,246.2413331,12.4,5.163724011,1.6,0.848298008,8.084573997,3.586041378,0.238659558,48.07012957,0.614566325,0.614566325,0.614566325,3.198498884,0.853225883,4.051724767,4.824 -1928,1995/4/12,0.9,4.4,246.8002678,3.5,1.416971636,0.9,0.858036983,2.941065347,5.243923307,0.609359733,49.9720059,0.661593923,0.661593923,0.661593923,4.003640904,1.270953657,5.274594561,4.824 -1929,1995/4/13,0.9,0.2,245.3051287,0,0,0.862953689,0.832185359,0.832185359,1.813743199,0.308480567,48.98085452,0.757829875,0.757829875,0.757829875,3.562724452,1.066310442,4.629034894,4.68 -1930,1995/4/14,1.1,0,243.4648048,0,0,1.03909201,0.801231891,0.801231891,0.736737131,0.107411746,47.4524663,0.706513125,0.706513125,0.706513125,2.971638483,0.813924871,3.785563354,4.464 -1931,1995/4/15,1.5,0,241.2865904,0,0,1.412412081,0.765802292,0.765802292,0.707110498,0.079710603,46.22698675,0.63231538,0.63231538,0.63231538,2.564905426,0.712025984,3.276931409,4.104 -1932,1995/4/16,2.1,0,238.5933764,0,0,1.969460162,0.723753879,0.723753879,0.672608775,0.076075153,45.20991097,0.576982355,0.576982355,0.576982355,2.266666911,0.653057507,2.919724418,3.024 -1933,1995/4/17,2.3,0.5,236.2242045,0,0,2.180849761,0.688322113,0.688322113,0.637379432,0.072093609,44.34339572,0.53375968,0.53375968,0.53375968,2.037654362,0.605853289,2.643507651,2.364 -1934,1995/4/18,2.5,13.4,240.3145265,10.9,4.840726579,2.5,0.75040459,6.809678011,3.038029067,0.203613442,45.52477728,0.498803278,0.498803278,0.498803278,2.355450785,0.702416719,3.057867504,2.364 -1935,1995/4/19,1.5,10.2,243.2370309,8.7,3.719970728,1.5,0.797466329,5.777495601,5.720896216,0.586114951,48.44757556,0.546884213,0.546884213,0.546884213,3.34498215,1.132999164,4.477981313,3.432 -1936,1995/4/20,2,0.6,241.155451,0,0,1.91786968,0.763710277,0.763710277,3.218806311,0.479871266,48.84168983,0.679954971,0.679954971,0.679954971,3.504647011,1.159826238,4.664473248,3.432 -1937,1995/4/21,1.5,12.2,244.8431577,10.7,4.512032822,1.5,0.824326057,7.012293235,3.156145647,0.272660734,49.08890395,0.699512319,0.699512319,0.699512319,3.60844384,0.972173054,4.580616893,3.024 -1938,1995/4/22,2.2,0,241.9910514,0,0,2.074986809,0.77711951,0.77711951,3.847555298,0.490670646,49.74854358,0.711983053,0.711983053,0.711983053,3.899898726,1.202653699,5.102552425,3.432 -1939,1995/4/23,1.6,9.6,244.5358367,8,3.363916241,1.6,0.819130993,5.455214752,2.547716449,0.253934902,49.32987429,0.746035135,0.746035135,0.746035135,3.712420876,0.999970037,4.712390913,3.24 -1940,1995/4/24,2,8.2,246.2316679,6.2,2.543961615,2,0.848130387,4.504168773,4.533936206,0.46947168,50.38546303,0.724290874,0.724290874,0.724290874,4.202638343,1.193762554,5.396400897,3.888 -1941,1995/4/25,1.6,30.1,256.062938,28.5,10.86430159,1.6,1.033031469,18.66872988,9.650150134,0.772544942,54.22729208,0.780003177,0.780003177,0.780003177,6.588324261,1.552548119,8.14087238,6.168 -1942,1995/4/26,1.5,10.2,258.0544485,8.7,3.065685752,1.5,1.07417523,6.708489479,12.07638214,1.437286913,57.53600975,1.008766602,1.008766602,1.008766602,9.77643106,2.446053515,12.22248458,9.696 -1943,1995/4/27,2,0.9,255.9654455,0,0,1.957952503,1.031050511,1.031050511,3.794492149,0.687291562,55.19088973,1.241129421,1.241129421,1.241129421,7.380741598,1.928420983,9.309162581,8.736 -1944,1995/4/28,2,10.9,258.0306296,8.9,3.13885954,2,1.073675438,6.834815898,3.221005049,0.297458334,53.46204794,1.072911417,1.072911417,1.072911417,6.022758253,1.370369751,7.393128004,7.224 -1945,1995/4/29,2.2,0,254.9064911,0,0,2.114407958,1.009730566,1.009730566,3.849851051,0.4871706,52.73807293,0.959815041,0.959815041,0.959815041,5.533641098,1.446985641,6.980626739,6.504 -1946,1995/4/30,2.6,16.2,258.6306575,13.6,4.810489641,2.6,1.086323252,9.875833611,4.411742438,0.364285807,52.61213072,0.915088043,0.915088043,0.915088043,5.452772696,1.27937385,6.732146545,5.184 -1947,1995/5/1,2,2.9,257.8720998,0.9,0.311796105,2,1.070353793,1.658557687,5.641615752,0.702646115,53.27139171,0.907462317,0.907462317,0.907462317,5.889817079,1.610108432,7.49992551,5.688 -1948,1995/5/2,2.2,1.4,256.0695507,0,0,2.169383192,1.033165944,1.033165944,1.245610473,0.249044951,50.96637522,0.947888235,0.947888235,0.947888235,4.498515194,1.196933186,5.69544838,4.944 -1949,1995/5/3,2.2,1.1,254.0221062,0,0,2.155245043,0.992199461,0.992199461,0.913663524,0.109793422,49.08513408,0.811934692,0.811934692,0.811934692,3.606839356,0.921728114,4.52856747,4.464 -1950,1995/5/4,2.6,0.2,250.797645,0,0,2.494110516,0.930350679,0.930350679,0.868543124,0.098345562,47.63015153,0.711791699,0.711791699,0.711791699,3.035317372,0.81013726,3.845454633,4.104 -1951,1995/5/5,2.9,0,247.1744869,0,0,2.758550337,0.864607718,0.864607718,0.811340637,0.092321496,46.44790879,0.640641184,0.640641184,0.640641184,2.634224559,0.732962679,3.367187238,3.888 -1952,1995/5/6,3.1,7.5,248.0521599,4.4,1.757850732,3.1,0.880177761,3.522327029,1.82820812,0.145572929,46.28108417,0.586691185,0.586691185,0.586691185,2.581723932,0.732264113,3.313988045,2.904 -1953,1995/5/7,2.4,6.3,248.7038146,3.9,1.543538715,2.4,0.891883954,3.248345239,3.061844419,0.314873152,47.08009746,0.579349074,0.579349074,0.579349074,2.842180194,0.894222226,3.73640242,2.64 -1954,1995/5/8,2.1,4.4,248.7182585,2.3,0.906588649,2.1,0.892144836,2.285556187,2.543114025,0.306932855,47.31507766,0.615118401,0.615118401,0.615118401,2.923252232,0.922051256,3.845303488,2.64 -1955,1995/5/9,2.4,1,246.5357806,0,0,2.329060509,0.853417331,0.853417331,1.491164448,0.208475684,46.71263118,0.62593096,0.62593096,0.62593096,2.719541888,0.834406644,3.553948532,2.1936 -1956,1995/5/10,2.1,2.5,245.8567174,0.4,0.162585142,2.1,0.841648355,1.079063213,0.857227951,0.10718564,45.74804001,0.59847793,0.59847793,0.59847793,2.420297048,0.70566357,3.125960618,1.5456 -1957,1995/5/11,2.3,0.3,243.1707203,0,0,2.189624323,0.796372768,0.796372768,0.859466265,0.099039992,44.96431367,0.556329008,0.556329008,0.556329008,2.199521615,0.655369001,2.854890616,1.62 -1958,1995/5/12,2.5,17.9,248.5603283,15.4,6.278903661,2.5,0.889295669,10.01039201,4.357181629,0.285218474,47.02253579,0.523679862,0.523679862,0.523679862,2.822639367,0.808898336,3.631537704,1.86 -1959,1995/5/13,2.2,6.8,249.4609404,4.6,1.806254429,2.2,0.905642299,3.699387869,6.515883632,0.753841083,50.09096496,0.612490198,0.612490198,0.612490198,4.059944661,1.366331281,5.426275942,2.832 -1960,1995/5/14,2.4,17.3,254.1094362,14.9,5.642415384,2.4,0.993919577,10.25150419,5.91818102,0.588190797,51.80900697,0.764162772,0.764162772,0.764162772,4.964301789,1.352353569,6.316655358,3.432 -1961,1995/5/15,2.5,5.9,254.3575503,3.4,1.24693381,2.5,0.998819761,3.151885951,6.42130426,0.792037381,53.22931971,0.859896975,0.859896975,0.859896975,5.860888492,1.651934357,7.512822849,4.224 -1962,1995/5/16,2.6,23.5,260.54439,20.9,7.314309151,2.6,1.127469435,14.71316028,7.404540652,0.652692348,54.6526897,0.945270681,0.945270681,0.945270681,6.926441345,1.59796303,8.524404375,4.56 -1963,1995/5/17,1.8,6.5,260.9750443,4.7,1.567554447,1.8,1.136900146,4.269345699,9.115507322,1.105719062,56.34153654,1.036736465,1.036736465,1.036736465,8.463396947,2.142455527,10.60585247,8.4 -1964,1995/5/18,2.4,1.1,258.6339635,0,0,2.354687531,1.08639327,1.08639327,2.58483096,0.480245851,53.80782701,1.153263074,1.153263074,1.153263074,6.271803563,1.633508925,7.905312488,6.912 -1965,1995/5/19,2.6,0,255.1198148,0,0,2.500152249,1.013996501,1.013996501,0.949150055,0.144590724,51.14511764,0.981718716,0.981718716,0.981718716,4.593578141,1.12630944,5.719887581,5.568 -1966,1995/5/20,2.5,23.4,261.2156571,20.9,7.238039289,2.5,1.142196934,14.80415764,6.36107027,0.404946588,52.77230307,0.821944738,0.821944738,0.821944738,5.555829575,1.226891325,6.7827209,4.68 -1967,1995/5/21,2.1,5.3,261.1357011,3.2,1.06047854,2.1,1.140434593,3.279956053,8.770545544,1.064816378,55.13119541,0.917168542,0.917168542,0.917168542,7.328821741,1.98198492,9.310806661,8.256 -1968,1995/5/22,2.1,0.4,258.4132941,0,0,2.040679321,1.081727675,1.081727675,2.083443402,0.415663819,52.74522462,1.068855302,1.068855302,1.068855302,5.538269498,1.484519121,7.022788619,6.504 -1969,1995/5/23,2.1,7.5,259.1709881,5.4,1.855509549,2.1,1.097815533,4.642305984,2.380334408,0.212253644,51.34103774,0.915522442,0.915522442,0.915522442,4.70004373,1.127776086,5.827819816,5.304 -1970,1995/5/24,2,19.9,263.8627358,17.9,5.893546039,2,1.20179827,13.20825223,7.562468695,0.610258334,53.60911402,0.833017705,0.833017705,0.833017705,6.127410119,1.443276039,7.570686158,5.568 -1971,1995/5/25,2.1,1.3,261.9297433,0,0,2.07495823,1.158034272,1.158034272,7.126402377,0.955295372,54.72165029,0.969087937,0.969087937,0.969087937,6.982954046,1.924383308,8.907337354,8.88 -1972,1995/5/26,2.4,0,258.5280724,0,0,2.31751851,1.084152399,1.084152399,1.013040192,0.256304802,51.81071811,1.041322219,1.041322219,1.041322219,4.965294588,1.297627021,6.262921608,7.08 -1973,1995/5/27,2.1,0,255.4869961,0,0,2.019703045,1.021373298,1.021373298,0.950933198,0.107908649,49.73016529,0.859996382,0.859996382,0.859996382,3.8914824,0.967905031,4.859387431,6.072 -1974,1995/5/28,2.5,0,252.1370538,0,0,2.394290118,0.955652155,0.955652155,0.893269612,0.101435211,48.14242391,0.74507097,0.74507097,0.74507097,3.22608197,0.846506181,4.072588151,5.064 -1975,1995/5/29,2.6,0,248.7656145,0,0,2.478438724,0.893000605,0.893000605,0.835333377,0.094965172,46.87104029,0.665082954,0.665082954,0.665082954,2.771799946,0.760048126,3.531848072,4.224 -1976,1995/5/30,3.2,1.5,246.3026223,0,0,3.113630672,0.849361546,0.849361546,0.786458792,0.089081134,45.82121156,0.605611422,0.605611422,0.605611422,2.44189894,0.694692556,3.136591496,3.672 -1977,1995/5/31,3.8,0.2,242.1236985,0,0,3.599658244,0.779265505,0.779265505,0.736730523,0.083912261,44.92772001,0.559449605,0.559449605,0.559449605,2.189671685,0.643361866,2.833033551,2.904 -1978,1995/6/1,3.5,6.6,242.652615,3.1,1.316786512,3.5,0.787870011,2.571083499,1.409283727,0.118083575,44.72371243,0.522189712,0.522189712,0.522189712,2.135481017,0.640273287,2.775754304,2.424 -1979,1995/6/2,3.4,0,238.7341065,0,0,3.192604632,0.725903904,0.725903904,1.584947202,0.195473737,44.69471932,0.513937663,0.513937663,0.513937663,2.127877978,0.709411399,2.837289377,2.424 -1980,1995/6/3,4.1,0,234.2518163,0,0,3.822387459,0.659902764,0.659902764,0.627236538,0.092904161,43.904889,0.512772508,0.512772508,0.512772508,1.929839357,0.605676669,2.535516026,2.0136 -1981,1995/6/4,4.5,0,229.4962496,0,0,4.160313722,0.595252984,0.595252984,0.568369434,0.065349667,43.19009136,0.4817515,0.4817515,0.4817515,1.764918575,0.547101166,2.312019741,1.776 -1982,1995/6/5,4.8,0,224.5661432,0,0,4.396390374,0.533715973,0.533715973,0.511414484,0.058937074,42.53212431,0.454854413,0.454854413,0.454854413,1.624235946,0.513791487,2.138027433,1.62 -1983,1995/6/6,4.6,0,219.9136743,0,0,4.172025434,0.480443435,0.480443435,0.459296457,0.052928063,41.92016253,0.431060019,0.431060019,0.431060019,1.502318257,0.483988082,1.986306339,1.4616 -1984,1995/6/7,4.8,0,215.1738358,0,0,4.309182999,0.430655551,0.430655551,0.412727956,0.047579823,41.34715381,0.409739974,0.409739974,0.409739974,1.395476655,0.457319797,1.852796452,1.3656 -1985,1995/6/8,4.8,0.2,210.7001342,0,0,4.286148414,0.387553211,0.387553211,0.370560311,0.042706682,40.8072737,0.390469981,0.390469981,0.390469981,1.300910405,0.433176663,1.734087068,1.176 -1986,1995/6/9,4.4,0,206.482392,0,0,3.867581842,0.350160357,0.350160357,0.334024016,0.038442919,40.29746459,0.372914711,0.372914711,0.372914711,1.216747829,0.41135763,1.628105458,1.152 -1987,1995/6/10,4.1,0,202.5970687,0,0,3.566989475,0.318333783,0.318333783,0.302569678,0.034758473,39.81537924,0.356861758,0.356861758,0.356861758,1.141516786,0.391620231,1.533137018,1.032 -1988,1995/6/11,3.8,0,199.0323716,0,0,3.273479001,0.291218148,0.291218148,0.275787047,0.03161357,39.3592611,0.342141678,0.342141678,0.342141678,1.074046865,0.373755248,1.447802113,0.888 -1989,1995/6/12,4,6.5,200.2581346,2.5,1.526087224,4,0.300324136,1.274236912,0.650485669,0.051018821,39.27622656,0.328618691,0.328618691,0.328618691,1.0621389,0.379637512,1.441776412,0.816 -1990,1995/6/13,3.2,0,197.2387719,0,0,2.741068209,0.278294563,0.278294563,0.753317757,0.093968908,39.29143193,0.326198629,0.326198629,0.326198629,1.06431102,0.420167537,1.484478557,1.2456 -1991,1995/6/14,2.9,0,194.5151217,0,0,2.464096484,0.259553646,0.259553646,0.24306059,0.039164475,38.85736097,0.326640838,0.326640838,0.326640838,1.003772393,0.365805312,1.369577705,1.056 -1992,1995/6/15,2.9,0,191.8282265,0,0,2.44482341,0.242071881,0.242071881,0.226691254,0.025792682,38.44874669,0.314184343,0.314184343,0.314184343,0.94948987,0.339977025,1.289466895,0.8616 -1993,1995/6/16,2.8,0,189.2599038,0,0,2.342065254,0.226257438,0.226257438,0.211616423,0.024066252,38.0626269,0.302771951,0.302771951,0.302771951,0.900508171,0.326838203,1.227346374,0.7896 -1994,1995/6/17,2.9,0,186.6424369,0,0,2.406462575,0.211004329,0.211004329,0.197605206,0.022477464,37.69644375,0.292262864,0.292262864,0.292262864,0.856051216,0.314740327,1.170791543,0.768 -1995,1995/6/18,2.7,0.4,184.5485736,0,0,2.294457079,0.199406188,0.199406188,0.185321482,0.021025758,37.34873543,0.282539594,0.282539594,0.282539594,0.815569398,0.303565352,1.119134751,0.72 -1996,1995/6/19,3.2,0,181.7489111,0,0,2.614959247,0.184703278,0.184703278,0.173656465,0.019754687,37.01740521,0.273522867,0.273522867,0.273522867,0.778509546,0.293277553,1.071787099,0.648 -1997,1995/6/20,3.4,0.3,179.0671993,0,0,2.810263971,0.17144782,0.17144782,0.160995733,0.018352785,36.69925577,0.265123905,0.265123905,0.265123905,0.744269079,0.283476691,1.02774577,0.6216 -1998,1995/6/21,3.6,2.9,178.3356697,0,0,3.463561761,0.167967767,0.167967767,0.15292807,0.017224737,36.39654346,0.257234007,0.257234007,0.257234007,0.712874393,0.274458744,0.987333137,0.6216 -1999,1995/6/22,3.7,0,175.2229309,0,0,2.958951748,0.153787118,0.153787118,0.145568232,0.016526561,36.10800388,0.249884016,0.249884016,0.249884016,0.683991826,0.266410577,0.950402403,0.6 -2000,1995/6/23,4,0.6,172.3907615,0,0,3.290435058,0.141734318,0.141734318,0.133646358,0.015281407,35.82778218,0.243018964,0.243018964,0.243018964,0.656887017,0.258300371,0.915187388,0.6 -2001,1995/6/24,4,4.1,172.320303,0.1,0.070985952,4,0.141444436,0.170458484,0.138909761,0.014946082,35.57038596,0.236481799,0.236481799,0.236481799,0.632787787,0.251427881,0.884215668,0.5496 -2002,1995/6/25,4.1,5.4,173.0968988,1.3,0.921261701,4.1,0.144665923,0.523404222,0.292861001,0.024454207,35.47022375,0.230588691,0.230588691,0.230588691,0.6236119,0.255042898,0.878654798,0.5496 -2003,1995/6/26,3.8,23.6,186.4274089,19.8,13.54029907,3.8,0.209788921,6.469489853,2.820353931,0.178693865,37.6664126,0.228324088,0.228324088,0.228324088,0.852489172,0.407017953,1.259507124,0.5496 -2004,1995/6/27,3.6,11.5,191.3339822,7.9,5.145534884,3.6,0.238961676,2.993426792,4.449153044,0.500520299,41.05391761,0.281752573,0.281752573,0.281752573,1.343400602,0.782272872,2.125673475,0.6696 -2005,1995/6/28,3.4,0,188.2760273,0,0,2.837531221,0.220423609,0.220423609,1.598474349,0.279473019,41.59281227,0.380863282,0.380863282,0.380863282,1.440442971,0.6603363,2.100779272,0.9096 -2006,1995/6/29,3.1,0,185.5074775,0,0,2.563897453,0.204652412,0.204652412,0.192150065,0.054401628,40.87171446,0.398650197,0.398650197,0.398650197,1.311898077,0.453051826,1.764949902,0.888 -2007,1995/6/30,3.4,4.1,185.7657206,0.7,0.464327208,3.4,0.206084032,0.441756824,0.277866788,0.02585568,40.30638245,0.37497989,0.37497989,0.37497989,1.218178683,0.40083557,1.619014253,0.72 -2008,1995/7/1,3.4,0.7,183.3561442,0,0,2.916543055,0.193033394,0.193033394,0.29931085,0.035919767,39.82053225,0.357138243,0.357138243,0.357138243,1.142299295,0.39305801,1.535357305,0.72 -2009,1995/7/2,3.5,0,180.3307411,0,0,2.847808235,0.177594815,0.177594815,0.167630289,0.02189797,39.26930748,0.342296686,0.342296686,0.342296686,1.061151748,0.364194656,1.425346404,0.6216 -2010,1995/7/3,4,0.4,177.268527,0,0,3.299221161,0.162992929,0.162992929,0.154066145,0.017621062,38.75891277,0.325997546,0.325997546,0.325997546,0.990458397,0.343618608,1.334077005,0.576 -2011,1995/7/4,4,2.7,176.0717144,0,0,3.739257791,0.157554872,0.157554872,0.144545063,0.01635215,38.28625652,0.311407117,0.311407117,0.311407117,0.928608433,0.327759267,1.2563677,0.5016 -2012,1995/7/5,3.9,8,178.7412574,4.1,2.839433202,3.9,0.16989017,1.430456968,0.644721225,0.043759738,38.29905586,0.298317101,0.298317101,0.298317101,0.930238988,0.342076839,1.272315828,0.528 -2013,1995/7/6,4,3.8,178.4119803,0,0,3.960948951,0.168328125,0.168328125,0.788745891,0.100329192,38.43832882,0.298666299,0.298666299,0.298666299,0.948139222,0.398995492,1.347134714,0.6 -2014,1995/7/7,4.1,2.2,176.7277751,0,0,3.723687715,0.160517541,0.160517541,0.148409357,0.031547213,37.99684253,0.302484917,0.302484917,0.302484917,0.892380569,0.334032131,1.2264127,0.648 -2015,1995/7/8,4.3,0,173.1662822,0,0,3.416536305,0.144956578,0.144956578,0.138317668,0.015802316,37.58299804,0.290498748,0.290498748,0.290498748,0.842660902,0.306301063,1.148961965,0.6216 -2016,1995/7/9,4.5,0,169.5072679,0,0,3.52876107,0.130253204,0.130253204,0.124651634,0.014356453,37.18963236,0.279574758,0.279574758,0.279574758,0.79759208,0.293931211,1.091523291,0.5496 -2017,1995/7/10,4.9,0,165.6035168,0,0,3.787841289,0.115909833,0.115909833,0.111560835,0.012883903,36.81417204,0.269466375,0.269466375,0.269466375,0.756487531,0.282350278,1.038837809,0.5016 -2018,1995/7/11,4.8,0,161.8451623,0,0,3.655029782,0.10332476,0.10332476,0.099346502,0.011483914,36.45475877,0.260064225,0.260064225,0.260064225,0.718823991,0.271548139,0.99037213,0.4296 -2019,1995/7/12,4.8,0,158.1533731,0,0,3.599736414,0.092052787,0.092052787,0.08853874,0.010233491,36.11035962,0.251285705,0.251285705,0.251285705,0.684223597,0.261519196,0.945742793,0.408 -2020,1995/7/13,4.6,0,154.6734463,0,0,3.39757559,0.082351141,0.082351141,0.079014399,0.009125275,35.78008429,0.24307446,0.24307446,0.24307446,0.652364192,0.252199735,0.904563927,0.36 -2021,1995/7/14,4.2,0,151.541811,0,0,3.057297914,0.074337463,0.074337463,0.070949832,0.00817364,35.46342292,0.235381725,0.235381725,0.235381725,0.622992926,0.243555364,0.86654829,0.36 -2022,1995/7/15,4.1,0,148.5315241,0,0,2.943051578,0.067235319,0.067235319,0.064097668,0.007372372,35.15981378,0.228170904,0.228170904,0.228170904,0.595877708,0.235543275,0.831420983,0.3 -2023,1995/7/16,4.8,0,145.0782969,0,0,3.393458695,0.059768502,0.059768502,0.057561656,0.006643402,34.86802905,0.221406805,0.221406805,0.221406805,0.570753191,0.228050207,0.798803397,0.3 -2024,1995/7/17,4.8,0.2,141.8255834,0,0,3.39935607,0.053357346,0.053357346,0.051258612,0.005924193,34.58693973,0.215042292,0.215042292,0.215042292,0.547390221,0.220966484,0.768356705,0.2688 -2025,1995/7/18,4.9,0,138.4270888,0,0,3.351235164,0.047259484,0.047259484,0.045612354,0.005277503,34.31596161,0.2090357,0.2090357,0.2090357,0.525626179,0.214313203,0.739939382,0.2688 -2026,1995/7/19,4.9,8.9,141.6084898,4,3.234350962,4.9,0.052949918,0.818598956,0.347288685,0.021728715,34.33914987,0.203359558,0.203359558,0.203359558,0.527459977,0.225088273,0.75254825,0.2496 -2027,1995/7/20,4.8,0,138.2816899,0,0,3.279788269,0.047011638,0.047011638,0.431885967,0.055826273,34.43942538,0.20384092,0.20384092,0.20384092,0.535451385,0.259667193,0.795118578,0.2496 -2028,1995/7/21,4.9,0,134.9499021,0,0,3.290176653,0.041611229,0.041611229,0.040176779,0.013682905,34.1712341,0.205931897,0.205931897,0.205931897,0.514299948,0.219614803,0.733914751,0.22056 -2029,1995/7/22,5.1,14.8,142.7678372,9.7,7.873090059,5.1,0.055154912,1.882064854,0.764610767,0.044622643,34.58868555,0.20037351,0.20037351,0.20037351,0.54753283,0.244996153,0.792528983,0.2496 -2030,1995/7/23,4.2,1.5,140.8537167,0,0,3.362567795,0.051552745,0.051552745,0.970625541,0.126320186,35.17148241,0.209072632,0.209072632,0.209072632,0.596901311,0.335392818,0.932294129,0.2496 -2031,1995/7/24,4.3,0,137.8779993,0,0,2.929388375,0.046328962,0.046328962,0.04433356,0.026630096,34.8668284,0.221664089,0.221664089,0.221664089,0.570651661,0.248294185,0.818945846,0.2496 -2032,1995/7/25,4.9,0,134.5538484,0,0,3.283147141,0.041003826,0.041003826,0.039592111,0.004577621,34.57501956,0.215016376,0.215016376,0.215016376,0.546417333,0.219593998,0.766011331,0.348 -2033,1995/7/26,5.2,0,131.0976088,0,0,3.420241035,0.035998541,0.035998541,0.034925861,0.004053324,34.29477385,0.208783658,0.208783658,0.208783658,0.523955222,0.212836982,0.736792204,0.3 -2034,1995/7/27,5,0,127.8391108,0,0,3.226758415,0.031739581,0.031739581,0.030715977,0.003565405,34.0253233,0.202920435,0.202920435,0.202920435,0.503086965,0.20648584,0.709572805,0.2496 -2035,1995/7/28,4.5,0,124.9585206,0,0,2.852270528,0.028319682,0.028319682,0.027214425,0.003149123,33.76625491,0.197394885,0.197394885,0.197394885,0.483677698,0.200544008,0.684221706,0.2364 -2036,1995/7/29,4.5,0,122.1299426,0,0,2.80332293,0.025255049,0.025255049,0.024276881,0.002805035,33.5171145,0.192184392,0.192184392,0.192184392,0.465601689,0.194989428,0.660591116,0.2064 -2037,1995/7/30,4.8,0,119.171111,0,0,2.93649224,0.022339395,0.022339395,0.021577573,0.002497652,33.27722974,0.187266961,0.187266961,0.187266961,0.448729285,0.189764613,0.638493899,0.2064 -2038,1995/7/31,5.3,0,115.9732959,0,0,3.17831723,0.019497794,0.019497794,0.018982743,0.002205955,33.04589021,0.182617781,0.182617781,0.182617781,0.432940058,0.184823736,0.617763794,0.192 -2039,1995/8/1,3.7,1.3,114.5377896,0,0,2.717186096,0.018320216,0.018320216,0.017082755,0.001957447,32.82302001,0.178212875,0.178212875,0.178212875,0.41816583,0.180170322,0.598336153,0.14856 -2040,1995/8/2,3.1,1.9,113.8166291,0,0,2.60341002,0.017750512,0.017750512,0.016263105,0.001833406,32.60895498,0.174041519,0.174041519,0.174041519,0.404369657,0.175874924,0.580244582,0.13536 -2041,1995/8/3,2.7,0,112.22999,0,0,1.570092156,0.016546938,0.016546938,0.01549993,0.001755352,32.40309725,0.170101078,0.170101078,0.170101078,0.391458732,0.171856431,0.563315163,0.13536 -2042,1995/8/4,2.9,0,110.5474966,0,0,1.667150421,0.015342927,0.015342927,0.014416541,0.001642461,32.20455559,0.166372222,0.166372222,0.166372222,0.379330427,0.168014684,0.54734511,0.13536 -2043,1995/8/5,3.2,0,108.7167779,0,0,1.816605221,0.014113566,0.014113566,0.013322915,0.001521509,32.01279803,0.162831555,0.162831555,0.162831555,0.367912032,0.164353064,0.532265096,0.13536 -2044,1995/8/6,3.1,0,106.9668292,0,0,1.736935284,0.013013396,0.013013396,0.012267534,0.001401708,31.8273868,0.159463284,0.159463284,0.159463284,0.35714204,0.160864992,0.518007032,0.13536 -2045,1995/8/7,3,0,105.2952488,0,0,1.659552776,0.012027652,0.012027652,0.01132259,0.001292679,31.6479937,0.1562541,0.1562541,0.1562541,0.34696979,0.157546778,0.504516568,0.13536 -2046,1995/8/8,3.8,0.4,103.4286639,0,0,2.2555864,0.010998488,0.010998488,0.010418265,0.001191802,31.47425864,0.153193248,0.153193248,0.153193248,0.337346579,0.15438505,0.491731629,0.1224 -2047,1995/8/9,3.8,1.5,102.1782015,0,0,2.740112963,0.010349377,0.010349377,0.009642176,0.001097739,31.30593737,0.150269993,0.150269993,0.150269993,0.328233435,0.151367732,0.479601167,0.1092 -2048,1995/8/10,3.7,3.5,102.0606557,0,0,3.607255862,0.010289972,0.010289972,0.009290968,0.00104129,31.14309417,0.147476043,0.147476043,0.147476043,0.319610216,0.148517332,0.468127548,0.08496 -2049,1995/8/11,3.1,11.1,109.174738,8,7.128495753,3.1,0.014413422,0.885917669,0.355220257,0.020249663,31.31443437,0.144808528,0.144808528,0.144808528,0.328688576,0.165058191,0.493746767,0.096 -2050,1995/8/12,3.3,0,107.3070725,0,0,1.854443754,0.013221736,0.013221736,0.452524934,0.05910882,31.57185067,0.147616187,0.147616187,0.147616187,0.342724828,0.206725007,0.549449835,0.1092 -2051,1995/8/13,3.2,0,105.5209499,0,0,1.773965467,0.012157143,0.012157143,0.011478943,0.011591583,31.40183632,0.151907117,0.151907117,0.151907117,0.333400404,0.163498701,0.496899105,0.1224 -2052,1995/8/14,3.1,0,103.8138946,0,0,1.695850445,0.011204889,0.011204889,0.010565194,0.001207369,31.23690967,0.149063269,0.149063269,0.149063269,0.324555116,0.150270638,0.474825754,0.12 -2053,1995/8/15,3.6,8.1,107.8085362,4.5,4.008175245,3.6,0.013533652,0.505358407,0.205323766,0.011978355,31.26265163,0.146341061,0.146341061,0.146341061,0.325922865,0.158319415,0.48424228,0.12 -2054,1995/8/16,3.5,3.4,107.739043,0,0,3.456003102,0.013490078,0.013490078,0.260486063,0.033911218,31.33984832,0.146763588,0.146763588,0.146763588,0.330052964,0.180674806,0.51072777,0.12 -2055,1995/8/17,3.3,0.1,105.9469516,0,0,1.879686774,0.01240459,0.01240459,0.011712195,0.00712639,31.17814597,0.148035917,0.148035917,0.148035917,0.321450466,0.155162307,0.476612773,0.12 -2056,1995/8/18,3.6,0,103.9619619,0,0,1.97370472,0.011285041,0.011285041,0.010721798,0.001228688,31.02098099,0.145379772,0.145379772,0.145379772,0.313266546,0.14660846,0.459875006,0.12 -2057,1995/8/19,3.7,0.4,102.168681,0,0,2.182936368,0.010344555,0.010344555,0.009784952,0.001121065,30.86812516,0.142830952,0.142830952,0.142830952,0.305471732,0.143952017,0.449423748,0.1632 -2058,1995/8/20,3.4,5.6,104.1288401,2.2,1.97153511,3.4,0.011375925,0.239840816,0.099983752,0.006082975,30.80613544,0.140382789,0.140382789,0.140382789,0.302356266,0.146465764,0.44882203,0.17616 -2059,1995/8/21,3.1,3.5,104.4748028,0.4,0.357528844,3.1,0.011566207,0.054037363,0.142446043,0.017198983,30.78660015,0.139398549,0.139398549,0.139398549,0.301379881,0.156597532,0.457977414,0.17616 -2060,1995/8/22,3.2,11.3,111.6350934,8.1,7.17640347,3.2,0.016112887,0.939709417,0.398561419,0.027035584,31.01147394,0.139089403,0.139089403,0.139089403,0.31277703,0.166124987,0.478902017,0.17616 -2061,1995/8/23,3,4.6,113.0209066,1.6,1.402951729,3,0.017138449,0.21418672,0.559085447,0.067599972,31.38096687,0.142677803,0.142677803,0.142677803,0.332270325,0.210277775,0.5425481,0.192 -2062,1995/8/24,2.9,9.3,118.5613196,6.4,5.562186447,2.9,0.021773461,0.859587013,0.447764799,0.044142149,31.63140706,0.148716825,0.148716825,0.148716825,0.346041426,0.192858974,0.5389004,0.192 -2063,1995/8/25,2.9,13.8,127.8136856,10.9,9.284073988,2.9,0.031708015,1.647634027,1.084984568,0.095644297,32.47347049,0.152912424,0.152912424,0.152912424,0.395833566,0.248556721,0.644390287,0.2064 -2064,1995/8/26,3.2,1.4,126.6368514,0,0,2.546559947,0.030274223,0.030274223,0.843853981,0.119968102,33.05163806,0.167640308,0.167640308,0.167640308,0.433326715,0.28760841,0.720935125,0.2364 -2065,1995/8/27,3.3,10.2,132.3691073,6.9,5.770035312,3.3,0.037779481,1.167744168,0.47665959,0.047070321,33.25914123,0.17832139,0.17832139,0.17832139,0.447477814,0.225391712,0.672869526,0.3312 -2066,1995/8/28,3,12.8,140.3387357,9.8,8.020244999,3,0.050616517,1.830371518,1.312772866,0.117903485,34.23492554,0.182270587,0.182270587,0.182270587,0.519259141,0.300174072,0.819433212,0.3696 -2067,1995/8/29,3,5.6,142.3771102,2.6,2.092778188,3,0.054403719,0.561625531,1.146054552,0.147373132,35.00060661,0.201683718,0.201683718,0.201683718,0.5820572,0.349056851,0.931114051,0.3144 -2068,1995/8/30,3,0,140.2622563,0,0,2.064375232,0.050478648,0.050478648,0.303509544,0.059906812,34.94476077,0.217917688,0.217917688,0.217917688,0.577273074,0.2778245,0.855097574,0.516 -2069,1995/8/31,3.1,4.2,141.0977242,1.1,0.887469042,3.1,0.052001162,0.26453212,0.13000301,0.015774909,34.73211208,0.216703155,0.216703155,0.216703155,0.559354851,0.232478063,0.791832914,0.6096 -2070,1995/9/1,2.6,17.3,152.6217193,14.7,11.60102199,2.6,0.077026902,3.176004916,1.388397744,0.087835242,35.68884711,0.212122707,0.212122707,0.212122707,0.643785421,0.299957949,0.94374337,0.4896 -2071,1995/9/2,2.6,0.7,151.1727161,0,0,2.075567495,0.073435707,0.073435707,1.63258358,0.215160814,36.79977119,0.233287677,0.233287677,0.233287677,0.75494718,0.448448491,1.203395671,0.5496 -2072,1995/9/3,2.4,0.6,149.8077271,0,0,1.894812369,0.070176624,0.070176624,0.064804476,0.043864452,36.41003452,0.259708341,0.259708341,0.259708341,0.714249485,0.303572793,1.017822278,0.6096 -2073,1995/9/4,2.4,0,148.0277809,0,0,1.71384431,0.066101876,0.066101876,0.061549033,0.006966662,36.04406561,0.250208351,0.250208351,0.250208351,0.677726293,0.257175013,0.934901306,0.72 -2074,1995/9/5,2.9,0.6,146.3363562,0,0,2.229017171,0.062407536,0.062407536,0.058032058,0.006577157,35.69888885,0.241516154,0.241516154,0.241516154,0.644724971,0.248093311,0.892818282,0.588 -2075,1995/9/6,2.8,0.7,144.8012883,0,0,2.175868259,0.059199611,0.059199611,0.054899334,0.006213913,35.37253569,0.233517498,0.233517498,0.233517498,0.614769992,0.239731411,0.854501403,0.444 -2076,1995/9/7,2.4,0,143.0722574,0,0,1.673285067,0.055745913,0.055745913,0.051915097,0.005881989,35.06312911,0.226130769,0.226130769,0.226130769,0.587452451,0.232012758,0.81946521,0.3696 -2077,1995/9/8,2.8,6.8,146.1931652,4,3.183010399,2.8,0.062102543,0.879092145,0.375474269,0.023687717,35.06985154,0.219283185,0.219283185,0.219283185,0.588035023,0.242970902,0.831005926,0.3336 -2078,1995/9/9,3,0.7,144.5197811,0,0,2.314758146,0.058625931,0.058625931,0.467017852,0.060189326,35.16037302,0.219430367,0.219430367,0.219430367,0.595926733,0.279619692,0.875546425,0.3024 -2079,1995/9/10,2.3,27.2,163.5259309,24.9,19.1149596,2.3,0.108809849,5.893850245,2.358252328,0.143622118,36.96704189,0.221419131,0.221419131,0.221419131,0.773002597,0.365041249,1.138043846,0.3336 -2080,1995/9/11,1.9,2.9,164.1528759,1,0.737859596,1.9,0.110914592,0.373054996,3.123206573,0.399382124,39.29000501,0.263863568,0.263863568,0.263863568,1.06410702,0.663245692,1.727352712,0.4536 -2081,1995/9/12,1.8,1.2,163.5866989,0,0,1.65716454,0.109012444,0.109012444,0.231426643,0.096623326,38.84582635,0.326599321,0.326599321,0.326599321,1.002204627,0.423222646,1.425427273,0.72 -2082,1995/9/13,1.9,0.3,162.2675377,0,0,1.514479375,0.104681826,0.104681826,0.096400176,0.013920369,38.32281266,0.31385804,0.31385804,0.31385804,0.933271899,0.327778409,1.261050308,0.576 -2083,1995/9/14,2.5,0,160.284243,0,0,1.884863285,0.09843138,0.09843138,0.091744098,0.010382065,37.84055216,0.299315219,0.299315219,0.299315219,0.873319819,0.309697283,1.183017103,0.576 -2084,1995/9/15,2.7,5.2,162.0461482,2.5,1.865873936,2.7,0.103968746,0.73809481,0.341318369,0.023957426,37.62107345,0.286338081,0.286338081,0.286338081,0.847135165,0.310295507,1.157430672,0.5016 -2085,1995/9/16,2,14.8,171.2352462,12.8,9.32613792,2,0.137039946,3.610902026,1.799327438,0.129323073,38.71623466,0.280567346,0.280567346,0.280567346,0.984733565,0.409890419,1.394623984,0.48 -2086,1995/9/17,1.7,0.3,170.0080995,0,0,1.39495487,0.132191877,0.132191877,1.875378207,0.250850299,39.76754645,0.310208633,0.310208633,0.310208633,1.134275059,0.561058933,1.695333991,0.516 -2087,1995/9/18,1.9,0,168.4039287,0,0,1.47810818,0.126062629,0.126062629,0.116551029,0.054113364,39.17677719,0.340705208,0.340705208,0.340705208,1.04802549,0.394818572,1.442844062,0.6 -2088,1995/9/19,2.2,0.5,166.9682958,0,0,1.814860394,0.120772473,0.120772473,0.11136623,0.012562437,38.63724781,0.323316937,0.323316937,0.323316937,0.974212552,0.335879374,1.310091927,0.576 -2089,1995/9/20,1.8,0,165.4685622,0,0,1.384295904,0.115437655,0.115437655,0.106587443,0.012022545,38.14149909,0.307999226,0.307999226,0.307999226,0.910335386,0.32002177,1.230357156,0.4536 -2090,1995/9/21,2.5,0,163.4506813,0,0,1.909321552,0.108559392,0.108559392,0.101176295,0.011455711,37.68264987,0.294388023,0.294388023,0.294388023,0.854413541,0.305843734,1.160257275,0.4392 -2091,1995/9/22,2.2,0,161.6804268,0,0,1.667455132,0.102799312,0.102799312,0.095427651,0.010810632,37.25528597,0.282177905,0.282177905,0.282177905,0.804969453,0.292988538,1.09795799,0.4392 -2092,1995/9/23,2.3,0,159.8528783,0,0,1.730436176,0.097112374,0.097112374,0.090272477,0.010223041,36.85574442,0.271135034,0.271135034,0.271135034,0.760949061,0.281358076,1.042307137,0.42 -2093,1995/9/24,2.5,0,157.895488,0,0,1.866086433,0.091303858,0.091303858,0.085106198,0.009650816,36.48047839,0.261093548,0.261093548,0.261093548,0.721465779,0.270744364,0.992210143,0.384 -2094,1995/9/25,2.3,0,156.1060987,0,0,1.703148717,0.086240623,0.086240623,0.080172993,0.009087757,36.12672282,0.251906759,0.251906759,0.251906759,0.685835319,0.260994516,0.946829835,0.3336 -2095,1995/9/26,1.9,0,154.6268639,0,0,1.39700768,0.082227076,0.082227076,0.076030812,0.008595684,35.79265974,0.243460196,0.243460196,0.243460196,0.653554089,0.25205588,0.905609969,0.2832 -2096,1995/9/27,1.9,0,153.1605063,0,0,1.3879601,0.078397547,0.078397547,0.072491325,0.008185988,35.47662728,0.235671401,0.235671401,0.235671401,0.624195184,0.24385739,0.868052573,0.2688 -2097,1995/9/28,2,0,151.6346918,0,0,1.451248695,0.074565776,0.074565776,0.069043863,0.007800816,35.17677359,0.22846839,0.22846839,0.22846839,0.597365949,0.236269206,0.833635155,0.2496 -2098,1995/9/29,2,0,150.1225247,0,0,1.441249339,0.070917756,0.070917756,0.065667869,0.007421698,34.89148277,0.221780825,0.221780825,0.221780825,0.572739507,0.229202524,0.801942031,0.2364 -2099,1995/9/30,1.9,0,148.6950035,0,0,1.359914675,0.06760648,0.06760648,0.062517699,0.007062121,34.61949484,0.215548981,0.215548981,0.215548981,0.55005461,0.222611101,0.772665711,0.2364 -2100,1995/10/1,1.9,0,147.2796857,0,0,1.350870945,0.064446918,0.064446918,0.059597492,0.006730351,34.35972586,0.209725156,0.209725156,0.209725156,0.529091635,0.216455507,0.745547143,0.2364 -2101,1995/10/2,1.9,0,145.8764229,0,0,1.341830632,0.061432131,0.061432131,0.056811087,0.006415784,34.11114809,0.204268734,0.204268734,0.204268734,0.509657591,0.210684518,0.720342109,0.22056 -2102,1995/10/3,2,0,144.4153065,0,0,1.402702268,0.05841416,0.05841416,0.05409652,0.006112527,33.87280396,0.199143053,0.199143053,0.199143053,0.491583702,0.205255581,0.696839282,0.22056 -2103,1995/10/4,2.1,0,142.8977983,0,0,1.462101543,0.055406602,0.055406602,0.051384461,0.005810996,33.64378305,0.194315302,0.194315302,0.194315302,0.47472067,0.200126299,0.674846969,0.22056 -2104,1995/10/5,2,6.2,146.1789979,4.2,3.343271997,2,0.062072433,0.918800435,0.39099164,0.024527566,33.74259399,0.189755716,0.189755716,0.189755716,0.481936422,0.214283282,0.696219704,0.2064 -2105,1995/10/6,1.7,3.2,147.2991676,1.5,1.184659255,1.7,0.064489592,0.379830337,0.613974035,0.069866644,34.04378694,0.191713464,0.191713464,0.191713464,0.504494547,0.261580109,0.766074656,0.22056 -2106,1995/10/7,1.5,0,146.1769433,0,0,1.06015615,0.062068067,0.062068067,0.216299864,0.037364921,33.9597431,0.197770042,0.197770042,0.197770042,0.498113743,0.235134964,0.733248707,0.22056 -2107,1995/10/8,1.4,0,145.132735,0,0,0.984327577,0.059880814,0.059880814,0.054997078,0.00990656,33.72980897,0.196066488,0.196066488,0.196066488,0.480997699,0.205973048,0.686970747,0.22056 -2108,1995/10/9,1.4,0,144.0956173,0,0,0.979347749,0.057769949,0.057769949,0.053058732,0.005967546,33.50928427,0.191459345,0.191459345,0.191459345,0.465042778,0.197426891,0.66246967,0.22056 -2109,1995/10/10,1.4,2.1,144.594449,0.7,0.557609451,1.4,0.05877766,0.201168209,0.108649406,0.008949474,33.35117233,0.187113884,0.187113884,0.187113884,0.453875221,0.196063358,0.649938579,0.22056 -2110,1995/10/11,1.2,0.1,143.7694735,0,0,0.867856931,0.057118607,0.057118607,0.124137587,0.015263675,33.21492132,0.18404196,0.18404196,0.18404196,0.444430564,0.199305635,0.643736198,0.22056 -2111,1995/10/12,1,0,143.0184942,0,0,0.695338111,0.055641171,0.055641171,0.050823012,0.007378387,33.01621949,0.181423809,0.181423809,0.181423809,0.430948647,0.188802196,0.619750843,0.22056 -2112,1995/10/13,1.5,11.1,150.5265107,9.6,7.579894468,1.5,0.071878037,2.091983569,0.854633095,0.050279113,33.57850322,0.177653465,0.177653465,0.177653465,0.470002828,0.227932579,0.697935407,0.2064 -2113,1995/10/14,1.4,35.5,175.5733101,34.1,25.20213303,1.4,0.155333595,9.053200569,4.633152294,0.337979529,37.56014112,0.188470182,0.188470182,0.188470182,0.839984576,0.526449711,1.366434287,0.22056 -2114,1995/10/15,1.3,1.6,175.6273805,0.3,0.209643724,1.3,0.155573353,0.245929629,4.668139826,0.629899108,41.14743818,0.278980107,0.278980107,0.278980107,1.359822879,0.908879215,2.268702095,0.3024 -2115,1995/10/16,1.2,16.5,185.8344046,15.3,10.41349029,1.2,0.206466144,5.092975856,2.136397867,0.23486027,42.12545165,0.383908553,0.383908553,0.383908553,1.542292942,0.618768823,2.161061765,0.648 -2116,1995/10/17,0.9,0.5,185.3014425,0,0,0.829446108,0.20351595,0.20351595,2.651859356,0.344807232,43.3854193,0.416806016,0.416806016,0.416806016,1.808697728,0.761613248,2.570310976,0.9816 -2117,1995/10/18,1,1,185.0990381,0,0,1,0.202404448,0.202404448,0.182725197,0.07799462,42.4274509,0.462095011,0.462095011,0.462095011,1.602788603,0.540089631,2.142878234,1.272 -2118,1995/10/19,1.1,0.1,184.0811195,0,0,0.921030469,0.196888136,0.196888136,0.179984511,0.020132476,41.59411002,0.427358426,0.427358426,0.427358426,1.440683821,0.447490902,1.888174723,1.068 -2119,1995/10/20,1.2,0.1,182.9899631,0,0,1.000046861,0.191109529,0.191109529,0.174916198,0.019627039,40.85814263,0.398693733,0.398693733,0.398693733,1.309577326,0.418320772,1.727898098,1.032 -2120,1995/10/21,1,0,181.9886161,0,0,0.815420019,0.185927002,0.185927002,0.169950963,0.019065356,40.2012377,0.374544266,0.374544266,0.374544266,1.201400152,0.393609622,1.595009774,0.936 -2121,1995/10/22,0.6,0,181.3181961,0,0,0.487899327,0.18252066,0.18252066,0.165988456,0.01857906,39.6103601,0.353888107,0.353888107,0.353888107,1.110754169,0.372467167,1.483221336,0.6144 -2122,1995/10/23,0.7,0,180.5715406,0,0,0.56786938,0.178786075,0.178786075,0.162793061,0.018210272,39.07536895,0.336015066,0.336015066,0.336015066,1.03379927,0.354225337,1.388024607,0.6144 -2123,1995/10/24,0.7,0,179.8299547,0,0,0.566448194,0.175137756,0.175137756,0.159466017,0.017842578,38.58758557,0.320397256,0.320397256,0.320397256,0.967646654,0.338239834,1.305886488,0.5496 -2124,1995/10/25,0.5,0,179.2539065,0,0,0.403702984,0.172345225,0.172345225,0.156520651,0.017495513,38.14051043,0.306615851,0.306615851,0.306615851,0.910211642,0.324111364,1.234323006,0.4896 -2125,1995/10/26,0.7,0,178.5211401,0,0,0.563921678,0.168844682,0.168844682,0.153727639,0.017190626,37.72870732,0.294361316,0.294361316,0.294361316,0.859892066,0.311551942,1.171444008,0.516 -2126,1995/10/27,0.9,0,177.6334374,0,0,0.723022136,0.164680598,0.164680598,0.150314986,0.016834357,37.34703384,0.283386868,0.283386868,0.283386868,0.81537534,0.300221225,1.115596566,0.48 -2127,1995/10/28,0.8,5.8,180.8834409,5,3.430342085,0.8,0.180338595,1.74999651,0.774568641,0.051314747,37.55562509,0.273479254,0.273479254,0.273479254,0.839456642,0.324794,1.164250643,0.4536 -2128,1995/10/29,0.6,19.8,193.258547,19.2,12.62636233,0.6,0.251256159,6.82489383,3.580081673,0.267695744,40.21153497,0.278862724,0.278862724,0.278862724,1.203034513,0.546558468,1.749592981,0.4536 -2129,1995/10/30,0.5,1.1,193.3873284,0.6,0.380877918,0.5,0.25209661,0.471218692,3.632076094,0.483172322,42.56648543,0.35420547,0.35420547,0.35420547,1.631331102,0.837377792,2.468708894,0.444 -2130,1995/10/31,0.5,2.1,194.1432332,1.6,1.012980262,0.5,0.257075397,0.844095136,0.571419774,0.130243201,42.04388512,0.432280117,0.432280117,0.432280117,1.526300202,0.562523318,2.08882352,0.4896 -2131,1995/11/1,0.8,0,193.2167954,0,0,0.675453678,0.250984163,0.250984163,0.525348283,0.066993,41.55059469,0.413988165,0.413988165,0.413988165,1.432626885,0.480981164,1.913608049,0.636 -2132,1995/11/2,0.7,0,192.3817098,0,0,0.589492219,0.245593343,0.245593343,0.223755835,0.031975382,40.86144465,0.397235759,0.397235759,0.397235759,1.310141636,0.429211141,1.739352777,0.756 -2133,1995/11/3,0.8,0,191.4699369,0,0,0.671958954,0.239814003,0.239814003,0.218750593,0.024496065,40.24628187,0.37465022,0.37465022,0.37465022,1.208563591,0.399146285,1.607709876,0.828 -2134,1995/11/4,0.9,0,190.4824559,0,0,0.753802529,0.233678419,0.233678419,0.213408436,0.023914893,39.69204382,0.355277872,0.355277872,0.355277872,1.122924361,0.379192765,1.502117126,0.756 -2135,1995/11/5,0.9,0,189.5031785,0,0,0.75155858,0.227718848,0.227718848,0.207955953,0.0233094,39.18873268,0.338446557,0.338446557,0.338446557,1.049713644,0.361755957,1.411469601,0.756 -2136,1995/11/6,0.8,0,188.6146168,0,0,0.66614421,0.222417464,0.222417464,0.202852388,0.022725814,38.72882762,0.3236624,0.3236624,0.3236624,0.986419845,0.346388213,1.332808058,0.576 -2137,1995/11/7,0.9,0,187.6505712,0,0,0.747267424,0.2167782,0.2167782,0.197947647,0.022180496,38.3061885,0.310561925,0.310561925,0.310561925,0.931148696,0.332742421,1.263891117,0.4896 -2138,1995/11/8,1,0,186.6120367,0,0,0.827702331,0.210832155,0.210832155,0.192751101,0.021613821,37.91539647,0.298861022,0.298861022,0.298861022,0.882404152,0.320474843,1.202878995,0.5376 -2139,1995/11/9,0.9,0,185.6639191,0,0,0.742598877,0.20551872,0.20551872,0.187649604,0.02103672,37.55230282,0.288325191,0.288325191,0.288325191,0.839068442,0.309361911,1.148430353,0.5376 -2140,1995/11/10,0.7,0,184.8866853,0,0,0.575990292,0.201243554,0.201243554,0.183277731,0.020520705,37.21403003,0.278776392,0.278776392,0.278776392,0.800326916,0.299297097,1.099624013,0.5376 -2141,1995/11/11,0.6,0,184.1966349,0,0,0.492542367,0.197508001,0.197508001,0.179643282,0.020092787,36.89822772,0.27008561,0.27008561,0.27008561,0.765531203,0.290178398,1.055709601,0.576 -2142,1995/11/12,0.4,0,183.6742003,0,0,0.327717563,0.194716994,0.194716994,0.176654473,0.0197336,36.60288032,0.262148427,0.262148427,0.262148427,0.734150305,0.281882028,1.016032333,0.4896 -2143,1995/11/13,0.4,0,183.1550635,0,0,0.327161774,0.191975031,0.191975031,0.174161944,0.019444436,36.32618111,0.254877442,0.254877442,0.254877442,0.705738587,0.274321878,0.980060465,0.4224 -2144,1995/11/14,0.4,0,182.6391752,0,0,0.326607385,0.189280991,0.189280991,0.171713112,0.019170713,36.06620154,0.248197319,0.248197319,0.248197319,0.679890004,0.267368032,0.947258037,0.4032 -2145,1995/11/15,0.3,0,182.2075511,0,0,0.244573638,0.187050366,0.187050366,0.169471571,0.018910916,35.821426,0.242035685,0.242035685,0.242035685,0.656282798,0.2609466,0.917229399,0.384 -2146,1995/11/16,0.2,0,181.8594455,0,0,0.162838927,0.185266764,0.185266764,0.167640627,0.0186922,35.59073585,0.236334993,0.236334993,0.236334993,0.634665766,0.255027192,0.889692958,0.48 -2147,1995/11/17,0,0,181.6751176,0,0,0,0.184327856,0.184327856,0.166369122,0.018527108,35.37331556,0.231050742,0.231050742,0.231050742,0.614840162,0.249577851,0.864418012,0.516 -2148,1995/11/18,0.1,0,181.4108424,0,0,0.08128682,0.182988383,0.182988383,0.165365842,0.018414462,35.16821507,0.226148219,0.226148219,0.226148219,0.596614543,0.244562681,0.841177225,0.444 -2149,1995/11/19,0.1,0,181.1479633,0,0,0.081215335,0.181663743,0.181663743,0.164166177,0.018285565,34.97418374,0.221592025,0.221592025,0.221592025,0.57978954,0.23987759,0.81966713,0.4536 -2150,1995/11/20,0.2,0,180.8057463,0,0,0.162266167,0.179950854,0.179950854,0.162820604,0.018144404,34.79014828,0.21734244,0.21734244,0.21734244,0.564198501,0.235486844,0.799685345,0.4536 -2151,1995/11/21,0.1,0,180.5460356,0,0,0.081051146,0.178659596,0.178659596,0.16144559,0.017986949,34.61525291,0.213365875,0.213365875,0.213365875,0.54970683,0.231352824,0.781059654,0.3696 -2152,1995/11/22,0.1,0,180.2876727,0,0,0.080980456,0.177382424,0.177382424,0.160289023,0.017853159,34.44896066,0.209635228,0.209635228,0.209635228,0.536216505,0.227488387,0.763704892,0.3336 -2153,1995/11/23,0.2,0,179.9501498,0,0,0.161797915,0.175724979,0.175724979,0.158989323,0.017716929,34.29046552,0.206131525,0.206131525,0.206131525,0.523615988,0.223848454,0.747464442,0.3336 -2154,1995/11/24,0.5,0.8,179.9793696,0.3,0.205087776,0.5,0.175867973,0.270780198,0.195708661,0.019678506,34.17445557,0.202831226,0.202831226,0.202831226,0.514549833,0.222509732,0.737059565,0.3336 -2155,1995/11/25,0.7,3.5,181.700368,2.8,1.905454711,0.7,0.184456248,1.079001537,0.563029296,0.043697324,34.40521104,0.200439633,0.200439633,0.200439633,0.532713461,0.244136957,0.776850417,0.3336 -2156,1995/11/26,0.9,24.8,196.9375744,23.9,15.51337656,0.9,0.276170221,8.66279366,3.967447053,0.264831524,37.71912502,0.205216735,0.205216735,0.205216735,0.858749813,0.47004826,1.328798073,0.3336 -2157,1995/11/27,0.7,7.9,201.0443254,7.2,4.413034932,0.7,0.306283965,3.093249032,5.59599477,0.654583474,42.0673657,0.283135038,0.283135038,0.283135038,1.530889122,0.937718512,2.468607634,0.384 -2158,1995/11/28,0.5,10.5,206.6300522,10,5.937145321,0.5,0.35141846,4.414273139,3.305858838,0.404009855,43.8672067,0.414797941,0.414797941,0.414797941,1.920815779,0.818807796,2.739623576,0.4536 -2159,1995/11/29,0.5,4.6,208.6331331,4.1,2.371927904,0.5,0.368847059,2.096919155,3.057262392,0.374981202,45.15365033,0.480305895,0.480305895,0.480305895,2.251124663,0.855287097,3.10641176,1.032 -2160,1995/11/30,0.4,0,207.9192384,0,0,0.351336959,0.36255769,0.36255769,1.201983393,0.198954263,44.74578632,0.531438498,0.531438498,0.531438498,2.141285901,0.730392761,2.871678662,1.296 -2161,1995/12/1,0.1,0,207.4728622,0,0,0.087707076,0.358669131,0.358669131,0.324765548,0.056625883,43.70336289,0.514826019,0.514826019,0.514826019,1.882014995,0.571451902,2.453466897,1.4616 -2162,1995/12/2,0,0,207.1172668,0,0,0,0.35559544,0.35559544,0.321587798,0.035845317,42.81544998,0.474056363,0.474056363,0.474056363,1.68355707,0.50990168,2.19345875,1.32 -2163,1995/12/3,0,0,206.7646979,0,0,0,0.35256884,0.35256884,0.318840082,0.035529371,42.04831853,0.441194183,0.441194183,0.441194183,1.527165721,0.476723553,2.003889275,1.32 -2164,1995/12/4,0,0,206.4151096,0,0,0,0.349588295,0.349588295,0.316134338,0.035227166,41.37760951,0.414140973,0.414140973,0.414140973,1.400984325,0.449368139,1.850352465,1.1856 -2165,1995/12/5,0,0,206.0684568,0,0,0,0.3466528,0.3466528,0.313469647,0.034929557,40.78536394,0.391477559,0.391477559,0.391477559,1.297192777,0.426407116,1.723599893,1.1184 -2166,1995/12/6,0.1,0,205.6381222,0,0,0.087298351,0.343036262,0.343036262,0.310558622,0.034620527,40.25774459,0.372214408,0.372214408,0.372214408,1.210392379,0.406834935,1.617227314,1.1184 -2167,1995/12/7,0.1,0,205.2114395,0,0,0.087202359,0.339480402,0.339480402,0.307327712,0.034268238,39.78395036,0.355632157,0.355632157,0.355632157,1.136754105,0.389900395,1.5266545,1.1184 -2168,1995/12/8,0,0,204.874744,0,0,0,0.336695425,0.336695425,0.304432013,0.033928857,39.35600233,0.341197349,0.341197349,0.341197349,1.073577384,0.375126206,1.448703589,0.9936 -2169,1995/12/9,0.3,7,208.4105812,6.7,3.90271423,0.3,0.366877061,3.164162831,1.420154305,0.095765104,39.94356114,0.328523472,0.328523472,0.328523472,1.16111897,0.424288577,1.585407546,0.9936 -2170,1995/12/10,0.3,9.9,213.420509,9.6,5.423254443,0.3,0.413326641,4.590072198,3.411121275,0.314367164,42.1529729,0.346012444,0.346012444,0.346012444,1.547721958,0.660379609,2.208101567,1.1184 -2171,1995/12/11,0.1,0.1,213.0111464,0,0,0.1,0.40936261,0.40936261,2.479272338,0.350423549,43.26778608,0.417759866,0.417759866,0.417759866,1.782219027,0.768183416,2.550402443,1.26 -2172,1995/12/12,0.1,7.2,216.4653173,7.1,3.897960521,0.1,0.443789583,3.645829062,1.647149722,0.16128473,43.53076595,0.457724692,0.457724692,0.457724692,1.841894542,0.619009423,2.460903965,1.1856 -2173,1995/12/13,0.1,0,215.9374269,0,0,0.089507703,0.438382717,0.438382717,2.013988489,0.256008144,44.04786878,0.467536008,0.467536008,0.467536008,1.964421671,0.723544152,2.687965823,1.26 -2174,1995/12/14,0.1,0,215.4149428,0,0,0.089400608,0.433083507,0.433083507,0.392450725,0.081551327,43.16763791,0.487264906,0.487264906,0.487264906,1.759946499,0.568816233,2.328762732,1.1856 -2175,1995/12/15,0.5,0.1,214.6326307,0,0,0.457066687,0.425245435,0.425245435,0.386678335,0.043198816,42.40925735,0.454027314,0.454027314,0.454027314,1.599086212,0.49722613,2.096312343,1.26 -2176,1995/12/16,0.5,2.1,215.0806567,1.6,0.877746209,0.5,0.429720171,1.151973962,0.669850309,0.058568637,41.99000877,0.426717367,0.426717367,0.426717367,1.515816254,0.485286004,2.001102257,1.26 -2177,1995/12/17,0.4,1.1,215.034821,0.7,0.383424988,0.4,0.429260649,0.745835661,0.876311862,0.097711513,41.7992549,0.412134396,0.412134396,0.412134396,1.479200124,0.509845909,1.989046034,1.1184 -2178,1995/12/18,0.4,7.8,218.5669113,7.4,3.997939566,0.4,0.465849324,3.867909759,1.904779201,0.147902975,42.49338376,0.405618611,0.405618611,0.405618611,1.616268955,0.553521587,2.169790542,0.9936 -2179,1995/12/19,0.4,0.8,218.3170684,0.4,0.213338696,0.4,0.463181564,0.649842868,2.209664948,0.279332269,43.33535074,0.429687369,0.429687369,0.429687369,1.79738534,0.709019637,2.506404977,1.26 -2180,1995/12/20,0.5,0.2,217.5919761,0,0,0.469583602,0.455508702,0.455508702,0.508077408,0.098673304,42.65411136,0.460231233,0.460231233,0.460231233,1.649548024,0.558904538,2.208452561,1.32 -2181,1995/12/21,0.4,0.7,217.3008024,0.3,0.161282754,0.4,0.452456446,0.591173692,0.463558869,0.05082074,42.0295654,0.435402709,0.435402709,0.435402709,1.523507531,0.486223449,2.00973098,1.1856 -2182,1995/12/22,0.5,3.1,218.2326892,2.6,1.394170133,0.5,0.462283364,1.668113231,0.957553619,0.081156065,41.90182248,0.413494874,0.413494874,0.413494874,1.498791413,0.494650939,1.993442352,1.1856 -2183,1995/12/23,0.7,3,218.9873229,2.3,1.224999972,0.7,0.47036626,1.545366289,1.452804722,0.151415403,42.20559172,0.409112903,0.409112903,0.409112903,1.55814839,0.560528306,2.118676696,1.4616 -2184,1995/12/24,0.6,0,217.9878339,0,0,0.539804144,0.459684856,0.459684856,0.961878402,0.132153742,42.05800061,0.419587904,0.419587904,0.419587904,1.529057416,0.551741646,2.080799061,1.392 -2185,1995/12/25,0.6,0,216.9999021,0,0,0.538612238,0.449319532,0.449319532,0.409621034,0.058545756,41.46517192,0.414474831,0.414474831,0.414474831,1.41692456,0.473020587,1.889945147,1.392 -2186,1995/12/26,0.5,5.9,219.410189,5.4,2.885231859,0.5,0.474945035,2.989713175,1.408093555,0.100815673,41.79017386,0.394384764,0.394384764,0.394384764,1.477476371,0.495200438,1.972676809,1.26 -2187,1995/12/27,0.3,0,218.6729711,0,0,0.270232311,0.466985535,0.466985535,1.694015613,0.213635709,42.31040034,0.405310268,0.405310268,0.405310268,1.579099405,0.618945977,2.198045382,1.4616 -2188,1995/12/28,0.3,0,217.9439551,0,0,0.269795578,0.459220439,0.459220439,0.417218992,0.076281753,41.69192667,0.423246089,0.423246089,0.423246089,1.458938752,0.499527842,1.958466594,1.32 -2189,1995/12/29,0.4,0,217.1341269,0,0,0.359111562,0.450716669,0.450716669,0.409938557,0.045826981,41.14453905,0.401985012,0.401985012,0.401985012,1.359311191,0.447811993,1.807123184,1.32 -2190,1995/12/30,0.5,0.8,216.848247,0.3,0.161865321,0.5,0.447745156,0.585879835,0.45904777,0.048138795,40.70394305,0.383813889,0.383813889,0.383813889,1.283457652,0.431952684,1.715410337,1.32 -2191,1995/12/31,0.3,0,216.139104,0,0,0.268700927,0.440442086,0.440442086,0.469829586,0.053801504,40.32260719,0.369620176,0.369620176,0.369620176,1.220785628,0.42342168,1.644207308,1.1856 -2192,1996/1/1,0.2,0,215.5260331,0,0,0.17886501,0.434205888,0.434205888,0.393933954,0.045622661,39.91712937,0.357641659,0.357641659,0.357641659,1.15705343,0.40326432,1.56031775,1.086 -2193,1996/1/2,0.1,0,215.0077271,0,0,0.08931677,0.428989207,0.428989207,0.388724185,0.043379645,39.54933017,0.345211725,0.345211725,0.345211725,1.101735111,0.38859137,1.490326481,1.1004 -2194,1996/1/3,0.3,6.1,217.6959076,5.8,3.144782617,0.3,0.456602175,3.111819558,1.446072807,0.101848392,40.13817669,0.334206542,0.334206542,0.334206542,1.191432831,0.436054933,1.627487765,1.2324 -2195,1996/1/4,0.3,0.4,217.2972281,0.1,0.053739613,0.3,0.45241908,0.498679467,1.768189521,0.222181872,40.9354678,0.351948991,0.351948991,0.351948991,1.3228474,0.574130863,1.896978264,1.31688 -2196,1996/1/5,0.2,2.6,218.1236136,2.4,1.287509789,0.2,0.461124352,1.573614563,0.873516866,0.104282684,40.87376646,0.377031065,0.377031065,0.377031065,1.312249273,0.481313749,1.793563022,1.36656 -2197,1996/1/6,0.3,1.7,218.4072056,1.4,0.747734626,0.3,0.464142605,1.116407979,1.235611385,0.13464781,41.1280241,0.375045786,0.375045786,0.375045786,1.356399526,0.509693595,1.866093121,1.27992 -2198,1996/1/7,0.4,7,221.3885275,6.6,3.478167085,0.4,0.496845166,3.618678081,1.993410583,0.171957874,41.98907461,0.383274955,0.383274955,0.383274955,1.515635029,0.555232829,2.070867858,1.42272 -2199,1996/1/8,0.2,1.9,221.7709715,1.7,0.883615021,0.2,0.50117099,1.317555969,2.347640048,0.281846078,43.02103222,0.412102306,0.412102306,0.412102306,1.727784741,0.693948384,2.421733125,1.54872 -2200,1996/1/9,0.2,1,221.6860703,0.8,0.415306885,0.2,0.500208067,0.884901182,1.014859037,0.149398851,42.80352263,0.448653309,0.448653309,0.448653309,1.681021945,0.598052161,2.279074106,1.52112 -2201,1996/1/10,0.1,1.1,221.7049244,1,0.519275837,0.1,0.500421775,0.981145938,0.834437212,0.095705535,42.46771494,0.440764161,0.440764161,0.440764161,1.611009054,0.536469696,2.14747875,1.596 -2202,1996/1/11,0.2,1.5,221.8770623,1.3,0.674514259,0.2,0.502376336,1.127862077,0.940998663,0.100199893,42.2670826,0.428779596,0.428779596,0.428779596,1.570410598,0.528979489,2.099390087,1.64904 -2203,1996/1/12,0.3,1.7,222.0973763,1.4,0.725200874,0.3,0.504886874,1.179686,1.035551402,0.112193362,42.1727348,0.421731399,0.421731399,0.421731399,1.551630609,0.533924761,2.08555537,1.49544 -2204,1996/1/13,0.4,2.2,222.5175512,1.8,0.929877739,0.4,0.509702863,1.379825123,1.140792061,0.121750444,42.17908431,0.418445749,0.418445749,0.418445749,1.552888292,0.540196193,2.093084485,1.46616 -2205,1996/1/14,0.7,4.1,223.7378169,3.4,1.74416503,0.7,0.523899314,2.179734284,1.557885572,0.153180007,42.53152396,0.418666294,0.418666294,0.418666294,1.624112221,0.571846301,2.195958522,1.602 -2206,1996/1/15,0.4,0.9,223.4724931,0.5,0.255462046,0.4,0.520785824,0.765323777,1.402929184,0.177492958,42.70523356,0.431038724,0.431038724,0.431038724,1.660258303,0.608531682,2.268789985,1.26864 -2207,1996/1/16,0.5,1.5,223.4633375,1,0.511523024,0.5,0.520678652,1.009155627,0.785129005,0.098566371,42.34210833,0.437231898,0.437231898,0.437231898,1.585486134,0.535798269,2.121284403,1.51512 -2208,1996/1/17,0.5,1.7,223.5551904,1.2,0.61360758,0.5,0.521754649,1.108147069,0.947351421,0.100212633,42.16392914,0.424357282,0.424357282,0.424357282,1.549887898,0.524569915,2.074457813,1.45752 -2209,1996/1/18,0.2,2.9,224.3984956,2.7,1.375022445,0.2,0.531717297,1.856694852,1.293082521,0.126077776,42.29845292,0.418140029,0.418140029,0.418140029,1.576698765,0.544217804,2.120916569,1.5 -2210,1996/1/19,0.4,6.3,226.7996617,5.9,2.962091698,0.4,0.56092562,3.498833922,2.31983218,0.212885819,43.2605186,0.422827937,0.422827937,0.422827937,1.78059444,0.635713756,2.416308196,1.61136 -2211,1996/1/20,0.2,1.7,226.9810313,1.5,0.744552812,0.2,0.563183224,1.318630413,2.287555079,0.282660398,44.04243254,0.457455663,0.457455663,0.457455663,1.963096804,0.74011606,2.703212864,1.79568 -2212,1996/1/21,0.3,9.2,230.7083877,8.9,4.338580777,0.3,0.61122438,5.172643603,2.709482579,0.242172209,45.02344687,0.487054461,0.487054461,0.487054461,2.21552271,0.72922667,2.94474938,1.7472 -2213,1996/1/22,0.5,6.7,233.0041124,6.2,2.938143534,0.5,0.642418772,3.904275238,4.154248547,0.443968769,46.91674235,0.526094273,0.526094273,0.526094273,2.787047341,0.970063041,3.757110383,2.72208 -2214,1996/1/23,0.5,14.6,238.6983159,14.1,6.419560082,0.5,0.72535662,8.405796539,5.292392412,0.504195116,49.17258257,0.607680717,0.607680717,0.607680717,3.644232904,1.111875833,4.756108737,3.62712 -2215,1996/1/24,0.3,0.1,237.7995596,0,0,0.287034108,0.711722142,0.711722142,4.525298617,0.618603492,50.26865212,0.716239959,0.716239959,0.716239959,4.145469029,1.334843452,5.480312481,4.93536 -2216,1996/1/25,0.3,0.5,237.1866049,0.2,0.089587756,0.3,0.702542444,0.812954688,0.680546749,0.164139966,48.39764239,0.773692388,0.773692388,0.773692388,3.32524887,0.937832354,4.263081224,4.04016 -2217,1996/1/26,0.5,2.6,237.4230134,2.1,0.942480045,0.5,0.706071558,1.863591512,1.146764344,0.103162931,47.30290981,0.677505312,0.677505312,0.677505312,2.91900223,0.780668243,3.699670473,3.24504 -2218,1996/1/27,0.5,0.2,236.4514396,0,0,0.479915243,0.691658605,0.691658605,1.214203259,0.148243899,46.49368167,0.625367752,0.625367752,0.625367752,2.648799153,0.773611651,3.422410804,3.17424 -2219,1996/1/28,0.4,0.1,235.4943055,0,0,0.379441401,0.677692633,0.677692633,0.616974792,0.082681372,45.38399937,0.588717255,0.588717255,0.588717255,2.315374345,0.671398627,2.986772973,2.61456 -2220,1996/1/29,0.5,3.5,236.1736428,3,1.366918744,0.5,0.687581482,2.320662738,1.259058552,0.103997073,44.98022821,0.540988034,0.540988034,0.540988034,2.203817747,0.644985107,2.848802854,2.19528 -2221,1996/1/30,0.5,3.9,237.0108799,3.4,1.53716552,0.5,0.699928438,2.562762917,2.184249852,0.218002842,45.37575919,0.524328873,0.524328873,0.524328873,2.313047741,0.742331716,3.055379457,2.17968 -2222,1996/1/31,0.5,7.2,239.2573815,6.7,2.980445178,0.5,0.733943531,4.453498353,3.053513499,0.294922475,46.36264581,0.540644325,0.540644325,0.540644325,2.607271209,0.835566799,3.442838009,2.34096 -2223,1996/2/1,0.5,5.2,240.5549203,4.7,2.051727837,0.5,0.754189035,3.402461198,3.592885097,0.399979982,47.53676719,0.582930428,0.582930428,0.582930428,3.001694149,0.98291041,3.984604559,2.42784 -2224,1996/2/2,0.5,2,240.4529685,1.5,0.650630321,0.5,0.752582164,1.601951843,2.350836261,0.313121324,47.52601437,0.636255772,0.636255772,0.636255772,2.997844845,0.949377096,3.947221941,2.5296 -2225,1996/2/3,0.6,5,241.5801105,4.4,1.897643402,0.6,0.770501447,3.272858044,2.101929331,0.218107116,47.33386896,0.635752191,0.635752191,0.635752191,2.92982693,0.853859307,3.783686238,2.41728 -2226,1996/2/4,0.7,2.2,241.4550251,1.5,0.643410686,0.7,0.768496038,1.625085353,2.294539469,0.271410337,47.3275836,0.626801457,0.626801457,0.626801457,2.927626288,0.898211794,3.825838082,2.5596 -2227,1996/2/5,0.7,5.3,242.6289765,4.6,1.961435212,0.7,0.787483827,3.426048614,2.174134853,0.2214738,47.23339673,0.626510195,0.626510195,0.626510195,2.89483192,0.847983995,3.742815915,2.4348 -2228,1996/2/6,0.6,12.6,246.7348025,12,4.962717672,0.6,0.856891662,7.89417399,4.848793778,0.419438999,49.09381335,0.622157166,0.622157166,0.622157166,3.610534326,1.041596165,4.65213049,2.55432 -2229,1996/2/7,0.7,14.6,251.2518555,13.9,5.455922373,0.7,0.938869355,9.382946982,7.692968537,0.769397947,52.2637719,0.712232304,0.712232304,0.712232304,5.235242293,1.481630251,6.716872544,4.09872 -2230,1996/2/8,0.6,6,252.3383672,5.4,2.046014176,0.6,0.959502532,4.313488357,6.441716025,0.809461736,53.52486335,0.886605879,0.886605879,0.886605879,6.067230447,1.696067616,7.763298063,6.5676 -2231,1996/2/9,0.4,0.4,251.3967668,0,0,0.4,0.941600365,0.941600365,2.549911173,0.417126603,51.97626075,0.963767924,0.963767924,0.963767924,5.062281696,1.380894527,6.443176223,6.37824 -2232,1996/2/10,0.2,0.3,250.5100908,0.1,0.038313932,0.2,0.924989967,0.986676035,0.86524964,0.134918291,49.79151634,0.869652193,0.869652193,0.869652193,3.919646242,1.004570485,4.924216726,5.46624 -2233,1996/2/11,0.3,0.1,249.4147729,0,0,0.29051937,0.904798477,0.904798477,0.855658699,0.096338788,48.1619125,0.748293058,0.748293058,0.748293058,3.233555599,0.844631846,4.078187445,4.74768 -2234,1996/2/12,0.3,0,248.2458204,0,0,0.28530889,0.883643609,0.883643609,0.805960349,0.090981204,46.86433068,0.666025747,0.666025747,0.666025747,2.769567916,0.757006951,3.526574867,4.3152 -2235,1996/2/13,0,0,247.3776289,0,0,0,0.868191557,0.868191557,0.789174143,0.088274716,45.81789641,0.605308049,0.605308049,0.605308049,2.440916462,0.693582765,3.134499227,3.97512 -2236,1996/2/14,0,0,246.5244097,0,0,0,0.853219172,0.853219172,0.775456812,0.086672779,44.95551227,0.559307952,0.559307952,0.559307952,2.197148909,0.645980731,2.84312964,3.17544 -2237,1996/2/15,0,0,245.6857044,0,0,0,0.838705237,0.838705237,0.762162799,0.085179945,44.23138103,0.523321178,0.523321178,0.523321178,2.009615215,0.608501124,2.618116339,2.42808 -2238,1996/2/16,0,0,244.8610747,0,0,0,0.82462975,0.82462975,0.749273488,0.083732768,43.61393089,0.494407137,0.494407137,0.494407137,1.861130765,0.578139905,2.43927067,1.992 -2239,1996/2/17,0,0,244.0501009,0,0,0,0.810973831,0.810973831,0.736771321,0.082329258,43.08058566,0.470669755,0.470669755,0.470669755,1.740786303,0.552999013,2.293785315,1.33608 -2240,1996/2/18,0,0,243.2523812,0,0,0,0.797719651,0.797719651,0.72463972,0.080967535,42.61471947,0.4508308,0.4508308,0.4508308,1.641336712,0.531798335,2.173135047,1.33536 -2241,1996/2/19,0.3,1.8,243.0889245,1.5,0.631568818,0.3,0.7950255,1.663456681,1.059999161,0.098931173,42.4926062,0.433996974,0.433996974,0.433996974,1.616109402,0.532928147,2.149037549,1.30032 -2242,1996/2/20,0.5,0.1,241.9359652,0,0,0.476729625,0.776229714,0.776229714,1.146568836,0.136660437,42.459505,0.42965985,0.42965985,0.42965985,1.60932989,0.566320288,2.175650178,1.33944 -2243,1996/2/21,0.6,6.4,243.5857982,5.8,2.453071026,0.6,0.803237981,4.150166954,2.031644624,0.16214483,43.1611312,0.428489542,0.428489542,0.428489542,1.758507968,0.590634372,2.34914234,1.54536 -2244,1996/2/22,0.5,0.2,242.5173439,0,0,0.482792236,0.78566214,0.78566214,2.405838998,0.301373161,44.0546762,0.453787833,0.453787833,0.453787833,1.966081831,0.755160994,2.721242825,1.82232 -2245,1996/2/23,0.5,0,241.2811838,0,0,0.470444143,0.76571595,0.76571595,0.699215195,0.117810161,43.42396942,0.487528524,0.487528524,0.487528524,1.8174505,0.605338685,2.422789184,2.20392 -2246,1996/2/24,0.3,0.3,240.5274283,0,0,0.3,0.753755459,0.753755459,0.684418763,0.076544331,42.87554135,0.463533689,0.463533689,0.463533689,1.696380517,0.54007802,2.236458537,1.5936 -2247,1996/2/25,0.3,0,239.5082134,0,0,0.281392264,0.737822691,0.737822691,0.672084881,0.075166906,42.3948349,0.44336524,0.44336524,0.44336524,1.596156568,0.518532145,2.114688713,1.10688 -2248,1996/2/26,0.3,0,238.5048951,0,0,0.280913559,0.722404722,0.722404722,0.657948786,0.073631778,41.96753226,0.426209673,0.426209673,0.426209673,1.511461102,0.499841451,2.011302553,0.99912 -2249,1996/2/27,0.4,0.1,237.5169804,0,0,0.380436383,0.707478262,0.707478262,0.644266809,0.072094698,41.58429815,0.411362784,0.411362784,0.411362784,1.438863705,0.483457482,1.922321186,1.3716 -2250,1996/2/28,0.5,0.3,236.6359475,0,0,0.48665559,0.694377313,0.694377313,0.631554252,0.070636324,41.23827663,0.398364655,0.398364655,0.398364655,1.375940427,0.469000979,1.844941406,1.21488 -2251,1996/2/29,0.4,0.4,235.9516108,0,0,0.4,0.684336743,0.684336743,0.62097255,0.069371874,40.92507514,0.3868831,0.3868831,0.3868831,1.32105714,0.456254974,1.777312114,1.1796 -2252,1996/3/1,0.3,1.3,235.7261953,1,0.455639708,0.3,0.681055192,1.225415484,0.829682508,0.080428751,40.82716097,0.37669615,0.37669615,0.37669615,1.304292829,0.457124901,1.76141773,1.10304 -2253,1996/3/2,0.5,3.3,236.3100183,2.8,1.273403561,0.5,0.689580589,2.216177028,1.494322411,0.137907115,41.30682257,0.373551184,0.373551184,0.373551184,1.388211998,0.511458299,1.899670297,1.1412 -2254,1996/3/3,0.4,5.2,237.7590182,4.8,2.16011194,0.4,0.711112018,3.351000078,2.442926277,0.23484177,42.51763515,0.38913854,0.38913854,0.38913854,1.62125223,0.62398031,2.24523254,0.99192 -2255,1996/3/4,0.4,0.1,236.782399,0,0,0.380077829,0.696541386,0.696541386,1.967127062,0.263450545,43.15758426,0.430546275,0.430546275,0.430546275,1.757724233,0.69399682,2.451721053,0.95352 -2256,1996/3/5,0.3,0,235.8203709,0,0,0.279603432,0.682424635,0.682424635,0.621309722,0.100651591,42.5952581,0.453657325,0.453657325,0.453657325,1.637293207,0.554308916,2.191602124,1.04568 -2257,1996/3/6,0.4,0,234.7807973,0,0,0.372143533,0.667430085,0.667430085,0.608257829,0.068079847,42.09960933,0.433303675,0.433303675,0.433303675,1.537210275,0.501383521,2.038593796,1.2072 -2258,1996/3/7,0.4,0,233.7564277,0,0,0.371453933,0.652915621,0.652915621,0.594952416,0.066601282,41.65790644,0.415911772,0.415911772,0.415911772,1.452567069,0.482513054,1.935080123,1.15632 -2259,1996/3/8,0.5,0,232.6554095,0,0,0.46341854,0.637599748,0.637599748,0.581572763,0.065126582,41.26042253,0.400838127,0.400838127,0.400838127,1.379894809,0.465964709,1.845859518,1.14984 -2260,1996/3/9,0.3,0,231.7526139,0,0,0.277537111,0.625258394,0.625258394,0.568963706,0.063669737,40.90021399,0.387610766,0.387610766,0.387610766,1.316783006,0.451280503,1.76806351,1.17 -2261,1996/3/10,0.2,0,230.9533893,0,0,0.184730495,0.614494104,0.614494104,0.558479584,0.062435136,40.57296364,0.375895835,0.375895835,0.375895835,1.261625767,0.438330971,1.699956738,1.10664 -2262,1996/3/11,0.3,0,230.0739115,0,0,0.276655911,0.602821918,0.602821918,0.548433014,0.061320178,40.27389726,0.365474049,0.365474049,0.365474049,1.212973451,0.426794227,1.639767678,1.02432 -2263,1996/3/12,0.6,0,228.9337137,0,0,0.552241847,0.58795597,0.58795597,0.536666197,0.060093564,39.99727642,0.356131825,0.356131825,0.356131825,1.169418855,0.416225389,1.585644244,1.0344 -2264,1996/3/13,0.7,0,227.7184661,0,0,0.642809716,0.572437931,0.572437931,0.523029204,0.058630324,39.73811114,0.34764377,0.34764377,0.34764377,1.129838257,0.406274094,1.536112351,1.0332 -2265,1996/3/14,0.8,0,226.4293012,0,0,0.732826674,0.556338168,0.556338168,0.50883313,0.057073441,39.49326289,0.339823378,0.339823378,0.339823378,1.09350476,0.39689682,1.49040158,1.04712 -2266,1996/3/15,0.9,0,225.0673332,0,0,0.822240839,0.539727185,0.539727185,0.494141362,0.055459104,39.26011413,0.332551215,0.332551215,0.332551215,1.059841337,0.38801032,1.447851657,1.02264 -2267,1996/3/16,1,0.1,223.7236254,0,0,0.919975354,0.523732403,0.523732403,0.479434938,0.053817561,39.03684178,0.325730507,0.325730507,0.325730507,1.028437789,0.379548068,1.407985857,1.008 -2268,1996/3/17,1,0.1,222.3975929,0,0,0.917708392,0.508324163,0.508324163,0.465271376,0.052223689,38.82238163,0.31929296,0.31929296,0.31929296,0.999024488,0.37151665,1.370541137,1.0128 -2269,1996/3/18,0.9,0.1,221.1782086,0,0,0.82490523,0.494479082,0.494479082,0.452021562,0.050710258,38.61617665,0.313195558,0.313195558,0.313195558,0.971422099,0.363905816,1.335327915,1.02 -2270,1996/3/19,0.9,0,219.884755,0,0,0.813327307,0.480126237,0.480126237,0.439360373,0.049296168,38.41750446,0.307411731,0.307411731,0.307411731,0.945444293,0.356707899,1.302152193,1.0368 -2271,1996/3/20,1,6,221.9936247,5,2.61257305,1,0.503703342,2.891130293,1.384697943,0.101103282,39.07093336,0.301911746,0.301911746,0.301911746,1.033180796,0.403015028,1.436195823,1.0488 -2272,1996/3/21,1,1.3,221.6494511,0.3,0.155619596,1,0.499793202,0.644173606,1.71424774,0.211356622,39.94422919,0.320269981,0.320269981,0.320269981,1.161221883,0.531626603,1.692848486,1.05048 -2273,1996/3/22,1,0.2,220.4394552,0,0,0.923756067,0.486239852,0.486239852,0.517356824,0.087451867,39.68565094,0.346032699,0.346032699,0.346032699,1.121967774,0.433484566,1.555452339,1.02144 -2274,1996/3/23,1.1,0,218.9769088,0,0,0.992292499,0.470253946,0.470253946,0.431299846,0.050135814,39.37839904,0.338255807,0.338255807,0.338255807,1.076807554,0.388391622,1.465199176,1.0008 -2275,1996/3/24,1.1,9.4,222.8020341,8.3,4.338109792,1.1,0.512984499,4.474874707,2.00544862,0.135115086,40.46857049,0.329178284,0.329178284,0.329178284,1.244455461,0.46429337,1.708748831,1.01736 -2276,1996/3/25,1.1,1.8,222.6511355,0.7,0.360343115,1.1,0.511241707,0.850898591,2.595559218,0.320710141,41.92338449,0.362193378,0.362193378,0.362193378,1.502938594,0.682903518,2.185842112,1.01424 -2277,1996/3/26,1.1,3.4,223.3135802,2.3,1.181372937,1.1,0.518928172,1.637555234,1.076615655,0.145098946,41.90956996,0.409850207,0.409850207,0.409850207,1.500280392,0.554949154,2.055229546,1.11096 -2278,1996/3/27,1.4,2.7,223.4584035,1.3,0.665444144,1.4,0.520620903,1.155176759,1.283212609,0.14388938,42.07063188,0.409377716,0.409377716,0.409377716,1.5315284,0.553267096,2.084795496,1.09152 -2279,1996/3/28,1.5,6.8,225.5982779,5.3,2.686029044,1.5,0.546154586,3.160125542,1.831811525,0.165215469,42.66543827,0.414910672,0.414910672,0.414910672,1.651915806,0.58012614,2.232041946,1.11504 -2280,1996/3/29,1.2,4.7,226.7856214,3.5,1.748094647,1.2,0.560751157,2.31265651,2.50927908,0.273763917,43.72372578,0.435807522,0.435807522,0.435807522,1.88679909,0.709571439,2.596370529,1.12296 -2281,1996/3/30,1,0,225.3285697,0,0,0.914169773,0.542881955,0.542881955,1.382155345,0.202414527,43.69958291,0.47482989,0.47482989,0.47482989,1.881128105,0.677244417,2.558372522,1.14384 -2282,1996/3/31,1.3,6.2,227.2081116,4.9,2.445562062,1.3,0.566020122,3.02045806,1.467480612,0.129543956,43.74837237,0.473912872,0.473912872,0.473912872,1.89260403,0.603456827,2.496060858,1.02984 -2283,1996/4/1,1.5,4.7,228.2061208,3.2,1.576634013,1.5,0.578624891,2.201990877,2.395036939,0.254859478,44.53321025,0.475767348,0.475767348,0.475767348,2.085966402,0.730626826,2.816593228,0.92784 -2284,1996/4/2,0.5,2.1,228.4089464,1.6,0.784039595,0.5,0.581213973,1.397174378,1.66380986,0.212186666,44.60010217,0.506316399,0.506316399,0.506316399,2.103234343,0.718503065,2.821737408,1.35408 -2285,1996/4/3,0.5,0,227.3819837,0,0,0.45876259,0.568200059,0.568200059,0.929930309,0.131013736,44.06935085,0.508983226,0.508983226,0.508983226,1.969664859,0.639996962,2.609661821,1.48512 -2286,1996/4/4,0.8,3.4,228.0856171,2.6,1.280724401,0.8,0.577091056,1.896366656,1.03613681,0.095750295,43.71000944,0.488097147,0.488097147,0.488097147,1.883575363,0.583847443,2.467422805,1.38744 -2287,1996/4/5,0.8,1.5,227.855527,0.7,0.344081393,0.8,0.57417144,0.930090047,1.324955404,0.152762305,43.64168399,0.474308747,0.474308747,0.474308747,1.867589599,0.627071052,2.494660652,1.32432 -2288,1996/4/6,1.1,0,226.2932313,0,0,1.007635409,0.55466035,0.55466035,0.68874927,0.096164861,43.0648168,0.471718853,0.471718853,0.471718853,1.737335318,0.567883714,2.305219032,1.3296 -2289,1996/4/7,1.3,0,224.5725205,0,0,1.186918682,0.533792121,0.533792121,0.490949293,0.059435896,42.40732597,0.450253499,0.450253499,0.450253499,1.598693617,0.509689396,2.108383013,1.15416 -2290,1996/4/8,1.3,0,222.8759167,0,0,1.182764236,0.513839543,0.513839543,0.47252966,0.053187392,41.82282301,0.426649354,0.426649354,0.426649354,1.483681973,0.479836746,1.963518719,1.02144 -2291,1996/4/9,1.2,0,221.2921197,0,0,1.088037575,0.495759452,0.495759452,0.455312158,0.051222435,41.29793862,0.40641964,0.40641964,0.40641964,1.386616196,0.457642075,1.844258271,1.37616 -2292,1996/4/10,1.1,0,219.8186019,0,0,0.994116441,0.479401278,0.479401278,0.439720403,0.049430137,40.82293181,0.388845693,0.388845693,0.388845693,1.303572899,0.43827583,1.741848729,1.42872 -2293,1996/4/11,1,0,218.4530138,0,0,0.900956551,0.464631626,0.464631626,0.42562567,0.047808879,40.39026475,0.373415769,0.373415769,0.373415769,1.231708504,0.421224647,1.652933151,1.3452 -2294,1996/4/12,1.2,0,216.9267621,0,0,1.077691966,0.448559689,0.448559689,0.411818453,0.046284593,39.99306352,0.35974638,0.35974638,0.35974638,1.168766058,0.406030972,1.57479703,1.35048 -2295,1996/4/13,1.5,0,215.1541924,0,0,1.342111472,0.430458224,0.430458224,0.396551846,0.04464821,39.6243069,0.347515627,0.347515627,0.347515627,1.112824092,0.392163837,1.504987928,1.29048 -2296,1996/4/14,2.1,0,212.875935,0,0,1.870197378,0.408060036,0.408060036,0.378562899,0.042767687,39.27704362,0.336429336,0.336429336,0.336429336,1.062255521,0.379197023,1.441452544,0.97872 -2297,1996/4/15,2.3,3.4,213.078065,1.1,0.612138514,2.3,0.410008513,0.897869998,0.560777256,0.051821476,39.12351099,0.32622238,0.32622238,0.32622238,1.040532266,0.378043856,1.418576122,0.9264 -2298,1996/4/16,1.5,1,212.2322904,0,0,1.443869566,0.401905012,0.401905012,0.612127902,0.073123694,39.02994002,0.321780972,0.321780972,0.321780972,1.027479842,0.394904666,1.422384508,1.09368 -2299,1996/4/17,1.2,0,210.781616,0,0,1.062368493,0.388305931,0.388305931,0.356341523,0.045741537,38.72012299,0.319095424,0.319095424,0.319095424,0.985253976,0.364836961,1.350090937,1.18536 -2300,1996/4/18,1.3,0,209.2604064,0,0,1.146764193,0.374445382,0.374445382,0.343999045,0.038686755,38.42767947,0.310317688,0.310317688,0.310317688,0.946760251,0.349004443,1.295764694,1.1448 -2301,1996/4/19,1.7,0,207.4089058,0,0,1.493385882,0.358114737,0.358114737,0.33054862,0.037249565,38.14912895,0.302191707,0.302191707,0.302191707,0.911290846,0.339441272,1.250732117,1.11912 -2302,1996/4/20,2.3,0,205.060884,0,0,2.009789001,0.338232804,0.338232804,0.314447931,0.035567683,37.88006522,0.294594188,0.294594188,0.294594188,0.878105854,0.330161871,1.208267725,1.08816 -2303,1996/4/21,2.7,0,202.4000257,0,0,2.344074335,0.316783915,0.316783915,0.295935089,0.033586979,37.61675906,0.287385926,0.287385926,0.287385926,0.846627173,0.320972905,1.167600078,1.05168 -2304,1996/4/22,2.9,0,199.6051021,0,0,2.49947876,0.295444853,0.295444853,0.276674482,0.031462981,37.3573373,0.280454748,0.280454748,0.280454748,0.816550997,0.311917729,1.128468726,0.9588 -2305,1996/4/23,3,0,196.7644145,0,0,2.565732804,0.274954833,0.274954833,0.257804782,0.029346416,37.10114619,0.273743415,0.273743415,0.273743415,0.787739301,0.30308983,1.090829131,0.89832 -2306,1996/4/24,3,0,193.9632182,0,0,2.545313667,0.255882626,0.255882626,0.239923941,0.02731852,36.84816515,0.267229025,0.267229025,0.267229025,0.760134011,0.294547545,1.054681556,0.90936 -2307,1996/4/25,2.7,0,191.450429,0,0,2.27309764,0.239691554,0.239691554,0.223897288,0.025457818,36.59920172,0.26090567,0.26090567,0.26090567,0.73376638,0.286363488,1.020129868,0.94968 -2308,1996/4/26,2.8,0,188.886999,0,0,2.339398038,0.224031926,0.224031926,0.209535296,0.023816395,36.35488273,0.2547878,0.2547878,0.2547878,0.708642092,0.278604194,0.987246286,1.00896 -2309,1996/4/27,2.6,0,186.5208211,0,0,2.155861727,0.210316225,0.210316225,0.196209674,0.022286833,36.11526985,0.248884357,0.248884357,0.248884357,0.684706906,0.27117119,0.955878095,0.91248 -2310,1996/4/28,2.3,0,184.4283399,0,0,1.893725123,0.198756067,0.198756067,0.184717195,0.020939649,35.88119441,0.243190165,0.243190165,0.243190165,0.661982802,0.264129814,0.926112617,0.81384 -2311,1996/4/29,1.9,0,182.6841032,0,0,1.554722329,0.189514399,0.189514399,0.175229086,0.019809101,35.65364109,0.237718019,0.237718019,0.237718019,0.640500426,0.25752712,0.898027546,0.72 -2312,1996/4/30,1.7,0,181.1190715,0,0,1.383513074,0.181518628,0.181518628,0.167403837,0.018884936,35.4332731,0.232483209,0.232483209,0.232483209,0.620255032,0.251368145,0.871623178,0.648 -2313,1996/5/1,2.2,0.2,179.3278364,0,0,1.818533423,0.172701607,0.172701607,0.159883168,0.018052638,35.21951835,0.227492683,0.227492683,0.227492683,0.601130607,0.245545321,0.846675928,0.6 -2314,1996/5/2,2.3,28.4,196.1476818,26.1,17.09050625,2.3,0.270660892,9.280154642,3.753773439,0.217282096,38.26953536,0.222725492,0.222725492,0.222725492,0.926481916,0.440007588,1.366489505,0.68712 -2315,1996/5/3,2.2,3,196.3743134,0.8,0.49886412,2.2,0.27223249,0.57336837,4.912099838,0.629486949,41.96795385,0.297861345,0.297861345,0.297861345,1.511542691,0.927348294,2.438890985,0.93144 -2316,1996/5/4,2.2,0,194.2502252,0,0,1.866301751,0.257786433,0.257786433,0.391345536,0.153099695,41.37090617,0.411377247,0.411377247,0.411377247,1.399770464,0.564476942,1.964247406,0.96672 -2317,1996/5/5,2.5,6.7,196.6086657,4.2,2.632305739,2.5,0.273865322,1.841559583,0.857754347,0.064264403,41.24311298,0.391255631,0.391255631,0.391255631,1.376803169,0.455520033,1.832323202,0.97776 -2318,1996/5/6,2.4,11.7,201.9837845,9.3,5.688648648,2.4,0.313529835,3.924881187,2.480521042,0.211205376,42.49423277,0.387041929,0.387041929,0.387041929,1.616443186,0.598247305,2.214690491,0.97848 -2319,1996/5/7,2.4,2.3,201.5869592,0,0,2.386372643,0.310452593,0.310452593,2.104337276,0.288580588,43.25003438,0.429717417,0.429717417,0.429717417,1.778253079,0.718298005,2.496551084,1.14864 -2320,1996/5/8,1.7,0,199.8258187,0,0,1.464053741,0.297086812,0.297086812,0.274126525,0.073381293,42.38671868,0.457067753,0.457067753,0.457067753,1.59450998,0.530449047,2.124959027,1.06656 -2321,1996/5/9,1.8,0,197.9995262,0,0,1.54257386,0.283718618,0.283718618,0.262096369,0.029572896,41.62779207,0.425924158,0.425924158,0.425924158,1.446947135,0.455497055,1.90244419,0.95352 -2322,1996/5/10,1.7,0,196.2782862,0,0,1.449674311,0.271565689,0.271565689,0.250545144,0.02826278,40.95239438,0.399824867,0.399824867,0.399824867,1.325767702,0.428087647,1.753855348,0.8772 -2323,1996/5/11,1.7,3.4,197.0586718,1.7,1.057408372,1.7,0.277022749,0.919614377,0.500452247,0.041524532,40.56938914,0.377576998,0.377576998,0.377576998,1.261034483,0.41910153,1.680136013,0.8712 -2324,1996/5/12,1.7,4.2,198.3178006,2.5,1.545141653,1.7,0.286012891,1.240871238,0.954581056,0.091369789,40.61991672,0.365361366,0.365361366,0.365361366,1.269414847,0.456731155,1.726146002,0.88128 -2325,1996/5/13,1.7,1.9,198.1561436,0.2,0.123188776,1.7,0.284845737,0.361656961,0.769407749,0.100999486,40.50573588,0.366956499,0.366956499,0.366956499,1.250545083,0.467955984,1.718501067,0.93648 -2326,1996/5/14,2.1,0.1,196.1796274,0,0,1.80563427,0.27088198,0.27088198,0.289626188,0.044542856,39.99037185,0.36335892,0.36335892,0.36335892,1.168349141,0.407901776,1.576250918,0.8688 -2327,1996/5/15,2.2,2.6,196.1584662,0.4,0.249574369,2.2,0.270735513,0.421161143,0.303168863,0.031457442,39.54053408,0.347433772,0.347433772,0.347433772,1.100440402,0.378891214,1.479331616,0.94104 -2328,1996/5/16,2.3,3.9,196.8788415,1.6,0.996132808,2.3,0.2757575,0.879624692,0.560183328,0.050406939,39.36044622,0.333946458,0.333946458,0.333946458,1.074217645,0.384353398,1.458571043,0.82968 -2329,1996/5/17,2.2,4.9,198.263197,2.7,1.669973675,2.2,0.285618228,1.315644553,0.963933041,0.09212587,39.55104493,0.328653324,0.328653324,0.328653324,1.101987661,0.420779194,1.522766856,0.85536 -2330,1996/5/18,2.5,1.5,197.1315656,0,0,2.354094499,0.27753694,0.27753694,0.773925196,0.10363558,39.55644419,0.334257261,0.334257261,0.334257261,1.10278319,0.437892841,1.54067603,0.876 -2331,1996/5/19,2.5,1.7,196.1794133,0,0,2.381271806,0.270880498,0.270880498,0.247153288,0.039851273,39.10067994,0.334416996,0.334416996,0.334416996,1.037334537,0.374268268,1.411602805,0.83544 -2332,1996/5/20,2.5,2.5,195.9103901,0,0,2.5,0.269023186,0.269023186,0.24305862,0.027125796,38.68438337,0.321124223,0.321124223,0.321124223,0.980479415,0.348250019,1.328729434,0.75168 -2333,1996/5/21,2.3,6.8,198.41399,4.5,2.790309149,2.3,0.286709194,1.996400045,0.92460505,0.064840029,38.90766999,0.309316337,0.309316337,0.309316337,1.010634766,0.374156365,1.384791132,0.82968 -2334,1996/5/22,2.2,11.9,203.9463505,9.7,5.861471617,2.2,0.329111162,4.167639545,2.654613692,0.226925523,40.61010954,0.315610371,0.315610371,0.315610371,1.267784509,0.542535893,1.810320402,0.91248 -2335,1996/5/23,2.4,0,201.557864,0,0,2.078258559,0.310227928,0.310227928,2.226817539,0.306486046,41.73628953,0.366646502,0.366646502,0.366646502,1.467284056,0.673132548,2.140416605,1.12272 -2336,1996/5/24,2.6,6.6,203.6265178,4,2.395184192,2.6,0.326530393,1.931346201,0.919706697,0.112101432,41.61492808,0.403484086,0.403484086,0.403484086,1.444552234,0.515585519,1.960137752,1.13904 -2337,1996/5/25,2.7,18.3,212.2260994,15.6,9.001427775,2.7,0.401846173,7.000418399,3.740994893,0.285280595,43.84080073,0.399392589,0.399392589,0.399392589,1.914514835,0.684673184,2.59918802,1.36968 -2338,1996/5/26,2.4,4.2,212.8236118,1.8,1.005069265,2.4,0.40755687,1.202487605,4.009622018,0.512992035,45.87255616,0.479294731,0.479294731,0.479294731,2.457161317,0.992286766,3.449448083,2.8176 -2339,1996/5/27,2.2,14,218.7793152,11.8,6.42383046,2.2,0.468127028,5.844296567,2.916211066,0.290518296,46.6509685,0.561646784,0.561646784,0.561646784,2.699445507,0.85216508,3.551610587,2.77704 -2340,1996/5/28,1.8,19.5,227.2921104,17.7,9.079867573,1.8,0.567072421,9.187204848,6.580645173,0.603059828,49.87093595,0.595717431,0.595717431,0.595717431,3.956395158,1.198777259,5.155172418,3.4056 -2341,1996/5/29,1.9,15.8,233.3271316,13.9,6.681930195,1.9,0.646908984,7.864978789,7.746074472,0.850270906,52.79736018,0.752478852,0.752478852,0.752478852,5.572129095,1.602749758,7.174878853,6.03768 -2342,1996/5/30,2.2,0.3,230.9551075,0,0,2.057507047,0.614517082,0.614517082,4.21383341,0.64294559,52.52951383,0.918693647,0.918693647,0.918693647,5.400373401,1.561639238,6.962012639,8.46312 -2343,1996/5/31,2.9,0.1,227.8051116,0,0,2.676462589,0.573533309,0.573533309,0.536872728,0.146065749,49.96739666,0.902484637,0.902484637,0.902484637,4.001474534,1.048550386,5.05002492,6.73488 -2344,1996/6/1,2.9,7.7,229.5530162,4.8,2.343898033,2.9,0.595993372,3.052095339,1.495456367,0.112240976,48.75252903,0.757585255,0.757585255,0.757585255,3.467909259,0.869826231,4.337735489,5.41464 -2345,1996/6/2,3.3,7,230.7240345,3.7,1.782451113,3.3,0.611432779,2.528981666,2.54020425,0.264494567,48.58708571,0.695053135,0.695053135,0.695053135,3.400700704,0.959547702,4.360248405,5.62872 -2346,1996/6/3,2.2,11.5,234.4372725,9.3,4.375771907,2.2,0.662533951,5.586762044,3.484208204,0.32618601,49.13150454,0.686832694,0.686832694,0.686832694,3.626622067,1.013018704,4.639640771,6.13944 -2347,1996/6/4,2.4,6.1,235.4610611,3.7,1.701000244,2.4,0.677211664,2.676211419,3.878131212,0.458725793,49.80015578,0.714147969,0.714147969,0.714147969,3.923627934,1.172873762,5.096501696,6.2388 -2348,1996/6/5,2.3,5.3,236.1413279,3,1.36737529,2.3,0.687108468,2.319733179,2.267746158,0.294124239,49.1724665,0.74874759,0.74874759,0.74874759,3.644183028,1.042871829,4.687054857,5.99904 -2349,1996/6/6,2.4,2.9,235.6884664,0.5,0.227645668,2.4,0.680507183,0.952861515,1.547710717,0.206175025,48.1914843,0.716234042,0.716234042,0.716234042,3.244926958,0.922409067,4.167336025,5.35128 -2350,1996/6/7,2.5,11.7,239.0815191,9.2,4.124286319,2.5,0.731233604,5.806947285,2.775417862,0.217954209,48.33407484,0.667458154,0.667458154,0.667458154,3.300285479,0.885412362,4.185697841,4.64376 -2351,1996/6/8,2.5,9.7,241.443786,7.2,3.130582939,2.5,0.768316056,4.837733116,4.843317251,0.502170479,49.88762742,0.674395896,0.674395896,0.674395896,3.96416057,1.176566374,5.140726944,6.36648 -2352,1996/6/9,3.1,0,237.8258882,0,0,2.905779216,0.712118597,0.712118597,2.723935144,0.404647619,49.55347409,0.753360695,0.753360695,0.753360695,3.81144917,1.158008314,4.969457484,7.27464 -2353,1996/6/10,3.3,1,235.0111269,0,0,3.144032063,0.670729184,0.670729184,0.624553821,0.118961831,47.81205545,0.73584672,0.73584672,0.73584672,3.101819178,0.854808551,3.956627729,5.7576 -2354,1996/6/11,3.5,0,231.1508955,0,0,3.243091224,0.617140207,0.617140207,0.582483319,0.066384816,46.41879245,0.649245478,0.649245478,0.649245478,2.624991795,0.715630295,3.340622089,4.72584 -2355,1996/6/12,3.5,0,227.3631463,0,0,3.219785672,0.567963556,0.567963556,0.535996545,0.061266652,45.25969379,0.585404986,0.585404986,0.585404986,2.280500196,0.646671639,2.927171834,3.9432 -2356,1996/6/13,3.7,0,223.4645167,0,0,3.377937076,0.520692454,0.520692454,0.492490441,0.056338773,44.2690085,0.535819633,0.535819633,0.535819633,2.018995366,0.592158406,2.611153772,3.48216 -2357,1996/6/14,4.1,0,219.2792709,0,0,3.711722189,0.473523645,0.473523645,0.449986866,0.051591432,43.40234095,0.495880769,0.495880769,0.495880769,1.812535176,0.547472201,2.360007377,2.48328 -2358,1996/6/15,3.7,0,215.524423,0,0,3.320658339,0.434189604,0.434189604,0.410630445,0.047045316,42.63097639,0.462726128,0.462726128,0.462726128,1.644721138,0.509771444,2.154492583,2.17152 -2359,1996/6/16,3.3,0,212.1852204,0,0,2.937744733,0.401457838,0.401457838,0.377838358,0.043164426,41.93769492,0.434576723,0.434576723,0.434576723,1.505696548,0.477741149,1.983437697,1.5792 -2360,1996/6/17,3.6,0,208.6377287,0,0,3.178603814,0.368887829,0.368887829,0.348443679,0.03981693,41.30804667,0.410340071,0.410340071,0.410340071,1.388432005,0.450157001,1.838589006,1.54224 -2361,1996/6/18,4,0,204.8021015,0,0,3.49953031,0.336096976,0.336096976,0.319043417,0.036553173,40.72865581,0.389178903,0.389178903,0.389178903,1.287613178,0.425732076,1.713345254,1.32312 -2362,1996/6/19,4.4,0.6,201.20191,0,0,3.892701607,0.307489903,0.307489903,0.291184656,0.033368525,40.19054208,0.370406204,0.370406204,0.370406204,1.199704588,0.40377473,1.603479318,1.11072 -2363,1996/6/20,4.6,2.3,198.9340837,0,0,4.277328599,0.290497697,0.290497697,0.270027309,0.030713418,39.69131309,0.353558682,0.353558682,0.353558682,1.122814984,0.384272101,1.507087085,1.01328 -2364,1996/6/21,4.1,22.6,209.5071387,18.5,10.94972114,4.1,0.376666052,7.926944916,3.278597571,0.196869656,41.82436062,0.33842475,0.33842475,0.33842475,1.483974784,0.535294406,2.01926919,1.27248 -2365,1996/6/22,3.7,0.9,206.6969076,0,0,3.358241909,0.351989278,0.351989278,4.141395823,0.536358928,44.33634834,0.40647194,0.40647194,0.40647194,2.035880051,0.942830867,2.978710918,1.896 -2366,1996/6/23,3.3,5.8,207.7858322,2.5,1.450316602,3.3,0.361392004,1.411075402,0.735233793,0.147786574,43.69099378,0.498525875,0.498525875,0.498525875,1.879114227,0.64631245,2.525426676,1.14552 -2367,1996/6/24,3.2,1.4,205.8656382,0,0,2.975249422,0.344944513,0.344944513,0.848741,0.105214971,43.23779788,0.473586936,0.473586936,0.473586936,1.775523833,0.578801907,2.35432574,1.158 -2368,1996/6/25,3.2,0,202.7635969,0,0,2.782392943,0.319648375,0.319648375,0.300455585,0.046513405,42.39805792,0.456615308,0.456615308,0.456615308,1.596810854,0.503128713,2.099939567,1.07376 -2369,1996/6/26,3.7,0.6,199.7929153,0,0,3.273839998,0.296841573,0.296841573,0.278672594,0.031762586,41.65165478,0.426323091,0.426323091,0.426323091,1.451398826,0.458085677,1.909484503,0.9756 -2370,1996/6/27,4.1,0.4,196.3573909,0,0,3.563409556,0.272114886,0.272114886,0.257387929,0.029410404,40.9792567,0.400627626,0.400627626,0.400627626,1.330413639,0.43003803,1.760451669,0.82056 -2371,1996/6/28,3.8,4.9,196.7670779,1.1,0.684660541,3.8,0.274973494,0.690312954,0.410132865,0.036682545,40.5156588,0.378444546,0.378444546,0.378444546,1.252175309,0.415127091,1.667302401,0.80784 -2372,1996/6/29,3.4,0,193.6300873,0,0,2.883303635,0.253687035,0.253687035,0.44877135,0.05451508,40.13687316,0.363670564,0.363670564,0.363670564,1.191227551,0.418185644,1.609413195,0.76032 -2373,1996/6/30,3.5,0,190.4557968,0,0,2.940775948,0.23351454,0.23351454,0.220348201,0.030075591,39.59992304,0.351908988,0.351908988,0.351908988,1.109207306,0.381984579,1.491191886,0.72984 -2374,1996/7/1,4,0.4,187.2457019,0,0,3.395650512,0.214444365,0.214444365,0.202628481,0.02317079,39.10089254,0.335705286,0.335705286,0.335705286,1.037364274,0.358876076,1.396240349,0.648 -2375,1996/7/2,3.5,1.5,185.3905451,0,0,3.151150005,0.204006805,0.204006805,0.188876058,0.021440256,38.6367521,0.321130334,0.321130334,0.321130334,0.974146828,0.34257059,1.316717418,0.59856 -2376,1996/7/3,3.2,0,182.5794696,0,0,2.622104344,0.188971169,0.188971169,0.177665561,0.020193757,38.20419166,0.307985395,0.307985395,0.307985395,0.918211398,0.328179153,1.246390551,0.55344 -2377,1996/7/4,2.8,0,180.128319,0,0,2.274552204,0.176598345,0.176598345,0.165185562,0.018802873,37.79735008,0.296085088,0.296085088,0.296085088,0.868112233,0.314887961,1.183000194,0.50544 -2378,1996/7/5,3.1,0,177.4678529,0,0,2.496553031,0.163913061,0.163913061,0.153926568,0.017527326,37.41348893,0.285195533,0.285195533,0.285195533,0.822983246,0.302722858,1.125706105,0.49224 -2379,1996/7/6,3.5,0,174.5257857,0,0,2.791320358,0.150746827,0.150746827,0.14231979,0.016251925,37.04901249,0.275186241,0.275186241,0.275186241,0.78198247,0.291438166,1.073420637,0.47856 -2380,1996/7/7,4.1,0,171.1561069,0,0,3.232955753,0.136723056,0.136723056,0.130131368,0.014922151,36.70064512,0.265917067,0.265917067,0.265917067,0.744415804,0.280839218,1.025255022,0.456 -2381,1996/7/8,4.7,0,167.3767569,0,0,3.657090865,0.122259143,0.122259143,0.117336076,0.013520227,36.36552778,0.257268093,0.257268093,0.257268093,0.709721509,0.270788319,0.980509828,0.432 -2382,1996/7/9,5.1,0,163.3595628,0,0,3.908937377,0.108256737,0.108256737,0.104500895,0.012089156,36.04167521,0.249139515,0.249139515,0.249139515,0.677492985,0.261228672,0.938721656,0.408 -2383,1996/7/10,5.1,0,159.4170002,0,0,3.846768675,0.095793989,0.095793989,0.092507046,0.010717267,35.72817106,0.241460098,0.241460098,0.241460098,0.647471295,0.252177366,0.899648661,0.384 -2384,1996/7/11,4.8,8.6,162.1533186,3.8,2.840631871,4.8,0.104313447,1.063681576,0.468625624,0.030971453,35.77874746,0.234188589,0.234188589,0.234188589,0.652237807,0.265160042,0.91739785,0.36 -2385,1996/7/12,3.9,0,159.1257759,0,0,2.932621479,0.094921155,0.094921155,0.574557501,0.073688472,35.9226913,0.235350946,0.235350946,0.235350946,0.665964608,0.309039417,0.975004025,0.35328 -2386,1996/7/13,3.5,0,156.4382047,0,0,2.600408359,0.087162921,0.087162921,0.08236377,0.020747609,35.60751865,0.238681641,0.238681641,0.238681641,0.636218061,0.25942925,0.89564731,0.34608 -2387,1996/7/14,3.5,0.4,154.0791983,0,0,2.678226728,0.08077966,0.08077966,0.075924609,0.008667684,35.30606215,0.231432299,0.231432299,0.231432299,0.608813408,0.240099983,0.848913392,0.33912 -2388,1996/7/15,3.6,8.1,157.423229,4.5,3.433975741,3.6,0.089945022,1.15596928,0.497507612,0.031753589,35.41006254,0.22464692,0.22464692,0.22464692,0.618154142,0.256400508,0.87455465,0.33192 -2389,1996/7/16,3.1,0,155.0518927,0,0,2.287971701,0.083364634,0.083364634,0.616587724,0.079372326,35.61656565,0.226971544,0.226971544,0.226971544,0.637056162,0.30634387,0.943400031,0.32496 -2390,1996/7/17,2.9,0,152.855264,0,0,2.119010049,0.07761865,0.07761865,0.072757938,0.020860888,35.31164953,0.231638169,0.231638169,0.231638169,0.609312222,0.252499057,0.861811279,0.312 -2391,1996/7/18,3.3,0,150.397522,0,0,2.386171617,0.071570304,0.071570304,0.06746709,0.007696876,35.02014889,0.224771375,0.224771375,0.224771375,0.583739106,0.23246825,0.816207356,0.3 -2392,1996/7/19,3.6,0,147.7593514,0,0,2.572666439,0.06550418,0.06550418,0.062016555,0.007095217,34.74045987,0.218343839,0.218343839,0.218343839,0.560049411,0.225439056,0.785488466,0.288 -2393,1996/7/20,3.9,0,144.9485889,0,0,2.751260922,0.059501579,0.059501579,0.056582141,0.006490208,34.47132834,0.212301202,0.212301202,0.212301202,0.538014875,0.21879141,0.756806286,0.276 -2394,1996/7/21,4.2,0,141.9736501,0,0,2.921302124,0.053636667,0.053636667,0.051234201,0.005892221,34.21171553,0.206600349,0.206600349,0.206600349,0.517447367,0.212492569,0.729939936,0.264 -2395,1996/7/22,4.4,0,138.9113745,0,0,3.014183108,0.04809255,0.04809255,0.046082526,0.005311147,33.96080933,0.201205554,0.201205554,0.201205554,0.498194272,0.206516701,0.704710974,0.252 -2396,1996/7/23,4.7,4.5,138.72773,0,0,4.635869156,0.047775274,0.047775274,0.043157939,0.004867681,33.71979203,0.196088034,0.196088034,0.196088034,0.480263278,0.200955715,0.681218993,0.24 -2397,1996/7/24,4.2,0,135.8543763,0,0,2.830328345,0.043025399,0.043025399,0.041121076,0.004677011,33.48860418,0.191260413,0.191260413,0.191260413,0.463569334,0.195937424,0.659506758,0.2376 -2398,1996/7/25,3.7,0.1,133.4233894,0,0,2.491677878,0.039309057,0.039309057,0.037254537,0.004276989,33.26470622,0.186710028,0.186710028,0.186710028,0.447862525,0.190987017,0.638849542,0.23352 -2399,1996/7/26,3.4,0.4,131.4181167,0,0,2.368831689,0.03644099,0.03644099,0.034244981,0.003911784,33.04823106,0.182377352,0.182377352,0.182377352,0.433097492,0.186289136,0.619386629,0.21168 -2400,1996/7/27,3.2,0,129.3086905,0,0,2.075818907,0.033607303,0.033607303,0.031677305,0.003615727,32.83895713,0.178257063,0.178257063,0.178257063,0.419208297,0.181872791,0.601081087,0.1896 -2401,1996/7/28,3.7,0,126.9090326,0,0,2.369056797,0.030601125,0.030601125,0.029058835,0.003328167,32.63624609,0.174337467,0.174337467,0.174337467,0.406107347,0.177665634,0.58377298,0.17136 -2402,1996/7/29,4.3,0,124.1700908,0,0,2.711504661,0.027437076,0.027437076,0.0262909,0.003026118,32.43942478,0.170599864,0.170599864,0.170599864,0.39371207,0.173625982,0.567338052,0.162 -2403,1996/7/30,4.7,0,121.2330784,0,0,2.912671551,0.024340898,0.024340898,0.023470072,0.002713065,32.24796543,0.167025965,0.167025965,0.167025965,0.381955392,0.16973903,0.551694421,0.15264 -2404,1996/7/31,3.7,3.9,121.3798629,0.2,0.171273201,3.7,0.02448867,0.053215469,0.03331511,0.003104402,32.07339242,0.163601056,0.163601056,0.163601056,0.371489173,0.166705458,0.538194631,0.14352 -2405,1996/8/1,3.4,0,119.2815977,0,0,2.075822009,0.022443184,0.022443184,0.035735834,0.004305545,31.90786595,0.160522208,0.160522208,0.160522208,0.361784516,0.164827754,0.526612269, -2406,1996/8/2,3.8,0,116.9740536,0,0,2.287190113,0.020353991,0.020353991,0.019373428,0.002561397,31.7331144,0.157641348,0.157641348,0.157641348,0.351766321,0.160202744,0.511969066, -2407,1996/8/3,3.9,28.6,137.7028333,24.7,20.7748149,3.9,0.046035221,3.971220321,1.57930037,0.088781273,33.03485637,0.154640208,0.154640208,0.154640208,0.432198613,0.24342148,0.675620094, -2408,1996/8/4,3,12.6,145.3640714,9.6,7.721598136,3,0.060359976,1.93876184,2.771076682,0.30591238,35.36944572,0.178004697,0.178004697,0.178004697,0.61449203,0.483917078,1.098409108, -2409,1996/8/5,3.1,0,143.1434965,0,0,2.164689951,0.055884946,0.055884946,1.000963574,0.176518501,35.92982025,0.226061639,0.226061639,0.226061639,0.666650675,0.40258014,1.069230815, -2410,1996/8/6,2.9,0,141.0879048,0,0,2.003608659,0.051983057,0.051983057,0.048754819,0.027709934,35.5834314,0.238847466,0.238847466,0.238847466,0.633991143,0.2665574,0.900548544, -2411,1996/8/7,3,11,147.3975871,8,6.374387834,3,0.064705517,1.690317683,0.694088477,0.041205654,35.84945404,0.230884816,0.230884816,0.230884816,0.658950645,0.272090471,0.931041116, -2412,1996/8/8,2.7,4.3,148.5880819,1.6,1.257858312,2.7,0.067363542,0.409505229,1.015238659,0.121595171,36.3895165,0.236982837,0.236982837,0.236982837,0.712159043,0.358578008,1.07073705, -2413,1996/8/9,2.8,4.8,150.08178,2,1.56451956,2.8,0.070821479,0.506301919,0.406798934,0.058181411,36.33899682,0.249715202,0.249715202,0.249715202,0.70703381,0.307896612,1.014930422, -2414,1996/8/10,2.8,5.7,152.2585716,2.9,2.252905581,2.8,0.076113954,0.723208373,0.541371153,0.054249643,36.41419764,0.248503925,0.248503925,0.248503925,0.714674264,0.302753567,1.017427831, -2415,1996/8/11,2.8,0,150.1667256,0,0,2.020823652,0.071022319,0.071022319,0.393209718,0.055447173,36.3496081,0.250308496,0.250308496,0.250308496,0.708107751,0.305755668,1.013863419, -2416,1996/8/12,2.9,0,148.0279973,0,0,2.072626029,0.06610236,0.06610236,0.061976217,0.014686274,35.98806422,0.248757995,0.248757995,0.248757995,0.67227809,0.263444269,0.935722359, -2417,1996/8/13,3,0,145.8443362,0,0,2.122296484,0.061364542,0.061364542,0.057620217,0.00656427,35.64609193,0.240205356,0.240205356,0.240205356,0.639797859,0.246769626,0.886567485, -2418,1996/8/14,3.1,0.4,143.8958764,0,0,2.291089485,0.057370345,0.057370345,0.053649984,0.006104662,35.32183085,0.232310967,0.232310967,0.232310967,0.610222038,0.238415629,0.848637667, -2419,1996/8/15,3.2,0,141.6248654,0,0,2.218030485,0.052980563,0.052980563,0.049898912,0.005687789,35.01355674,0.224998284,0.224998284,0.224998284,0.583171301,0.230686073,0.813857373, -2420,1996/8/16,3.2,0,139.3830912,0,0,2.192858933,0.048915259,0.048915259,0.04607631,0.005260599,34.71952421,0.21820002,0.21820002,0.21820002,0.558308859,0.223460618,0.781769478, -2421,1996/8/17,3.2,0,137.1702391,0,0,2.167700777,0.045151247,0.045151247,0.042536576,0.004856854,34.43853459,0.211853752,0.211853752,0.211853752,0.535379954,0.216710607,0.75209056, -2422,1996/8/18,3.3,0,134.9195518,0,0,2.209122916,0.041564429,0.041564429,0.039218974,0.004480789,34.16950124,0.205913255,0.205913255,0.205913255,0.514165574,0.210394044,0.724559618, -2423,1996/8/19,3.4,0,132.6332278,0,0,2.24816583,0.038158119,0.038158119,0.036062157,0.004123979,33.91142558,0.200337948,0.200337948,0.200337948,0.49447577,0.204461928,0.698937698, -2424,1996/8/20,3.5,0,130.3135216,0,0,2.284771984,0.034934247,0.034934247,0.033068559,0.003785224,33.66343724,0.195091859,0.195091859,0.195091859,0.476148756,0.198877083,0.675025839, -2425,1996/8/21,3.7,0,127.8988512,0,0,2.382856577,0.031813848,0.031813848,0.030207956,0.003462956,33.42474538,0.190143983,0.190143983,0.190143983,0.459043798,0.193606939,0.652650736, -2426,1996/8/22,3.5,0.1,125.7093794,0,0,2.26029053,0.029181215,0.029181215,0.027592313,0.003160402,33.19475779,0.185466877,0.185466877,0.185466877,0.443046777,0.188627279,0.631674056, -2427,1996/8/23,3,24.4,143.2644012,21.4,17.61114331,3,0.056121544,3.844978232,1.533879175,0.086705643,34.37904792,0.181038627,0.181038627,0.181038627,0.530627675,0.26774427,0.798371946, -2428,1996/8/24,2.8,6.3,145.9879482,3.5,2.785214542,2.8,0.06166752,0.776452978,2.248110267,0.272139616,36.14426277,0.204671061,0.204671061,0.204671061,0.687566478,0.476810677,1.164377155, -2429,1996/8/25,2.7,16.5,156.6128302,13.8,10.712533,2.7,0.087651036,3.175118032,1.646516881,0.166486737,37.23227642,0.243874157,0.243874157,0.243874157,0.802377392,0.410360894,1.212738285, -2430,1996/8/26,2.8,0.1,154.5437769,0,0,2.087047158,0.08200616,0.08200616,1.635521965,0.221327886,38.21834972,0.270549383,0.270549383,0.270549383,0.919998041,0.49187727,1.41187531, -2431,1996/8/27,2.8,0,152.4255696,0,0,2.041674622,0.076532702,0.076532702,0.071642987,0.044561351,37.72679769,0.296469307,0.296469307,0.296469307,0.859664327,0.341030658,1.200694985, -2432,1996/8/28,2.8,0,150.3317987,0,0,2.02235693,0.071413912,0.071413912,0.066857003,0.00760547,37.27032404,0.283336669,0.283336669,0.283336669,0.806667327,0.290942139,1.097609466, -2433,1996/8/29,2.9,0,148.1911159,0,0,2.074215113,0.066467697,0.066467697,0.062318277,0.007093196,36.84442817,0.27151828,0.27151828,0.27151828,0.759732419,0.278611476,1.038343895, -2434,1996/8/30,2.9,0,146.0757727,0,0,2.05348977,0.061853392,0.061853392,0.05799782,0.006603824,36.44537673,0.260813072,0.260813072,0.260813072,0.71786234,0.267416897,0.985279237, -2435,1996/8/31,2.9,0,143.9854648,0,0,2.032758677,0.057549302,0.057549302,0.053967512,0.006145288,36.07012915,0.251059429,0.251059429,0.251059429,0.680274518,0.257204717,0.937479235, -2436,1996/9/1,3.1,0,141.7821446,0,0,2.150044588,0.053275623,0.053275623,0.050105846,0.005711888,35.71603139,0.242127949,0.242127949,0.242127949,0.646331553,0.247839837,0.894171391,0.38952 -2437,1996/9/2,3.3,0.3,139.6745456,0,0,2.358169753,0.049429183,0.049429183,0.046428336,0.005293539,35.38085137,0.233910205,0.233910205,0.233910205,0.615518558,0.239203744,0.854722302,0.36 -2438,1996/9/3,3,0,137.592671,0,0,2.036023394,0.045851252,0.045851252,0.043072628,0.00490975,35.06281559,0.226316887,0.226316887,0.226316887,0.587425294,0.231226637,0.81865193,0.32808 -2439,1996/9/4,3,7.3,141.0260301,4.3,3.485228165,3,0.051869086,0.866640921,0.365558979,0.0226436,35.06043204,0.219276323,0.219276323,0.219276323,0.587218856,0.241919922,0.829138779,0.228 -2440,1996/9/5,2,7.4,145.2852444,5.4,4.319410684,2,0.06019636,1.140785676,0.888291019,0.083000988,35.53812692,0.219224155,0.219224155,0.219224155,0.629820295,0.302225143,0.932045438,0.18384 -2441,1996/9/6,1.6,4,147.1202737,2.4,1.899127921,1.6,0.064098591,0.564970669,0.799203375,0.09820617,35.90310514,0.229857592,0.229857592,0.229857592,0.664082741,0.328063762,0.992146502,0.19536 -2442,1996/9/7,1.7,2.1,147.3709552,0.4,0.315328502,1.7,0.064647031,0.149318529,0.344250008,0.054164841,35.82861537,0.238226473,0.238226473,0.238226473,0.656966254,0.292391314,0.949357568, -2443,1996/9/8,1.9,0,145.9669163,0,0,1.342415834,0.061623074,0.061623074,0.09973832,0.017909245,35.53529444,0.236501048,0.236501048,0.236501048,0.629560294,0.254410293,0.883970586, -2444,1996/9/9,2.1,10.1,152.1549608,8,6.263899572,2.1,0.075855073,1.811955501,0.747014667,0.045616281,35.85282999,0.229793477,0.229793477,0.229793477,0.659272596,0.275409758,0.934682354, -2445,1996/9/10,2,0,150.6381465,0,0,1.444669009,0.072145225,0.072145225,0.943363293,0.122363058,36.32739324,0.237060955,0.237060955,0.237060955,0.705861005,0.359424013,1.065285018, -2446,1996/9/11,1.9,0,149.206206,0,0,1.363162876,0.06877771,0.06877771,0.0636002,0.027660331,35.96880666,0.248226307,0.248226307,0.248226307,0.670413079,0.275886638,0.946299717, -2447,1996/9/12,2.2,0,147.5739736,0,0,1.567138399,0.065093943,0.065093943,0.060444486,0.006836631,35.63064467,0.23975578,0.23975578,0.23975578,0.638362258,0.246592412,0.88495467, -2448,1996/9/13,2.5,0,145.7465605,0,0,1.766254177,0.061158947,0.061158947,0.057029836,0.00646647,35.31042999,0.231958805,0.231958805,0.231958805,0.609203319,0.238425276,0.847628594, -2449,1996/9/14,2.3,11.4,152.7886192,9.1,7.119508156,2.3,0.077449418,2.057941262,0.84396896,0.049991535,35.73137114,0.224744206,0.224744206,0.224744206,0.647772017,0.274735741,0.922507759, -2450,1996/9/15,1.9,22.5,168.076109,20.6,15.41232838,1.9,0.124838597,5.312510216,3.138022743,0.25368122,38.18754182,0.234262012,0.234262012,0.234262012,0.916114079,0.487943232,1.404057311, -2451,1996/9/16,1.9,2.5,168.3842811,0.6,0.434161081,1.9,0.125988998,0.291827918,2.797594491,0.382662395,40.09596872,0.295633704,0.295633704,0.295633704,1.184801298,0.678296098,1.863097396,1.23936 -2452,1996/9/17,2,15.4,177.6973254,13.4,9.478021829,2,0.164977509,4.086955681,1.762094807,0.171700666,40.8931484,0.35065535,0.35065535,0.35065535,1.315570473,0.522356016,1.837926489,1.15224 -2453,1996/9/18,1.7,10.9,183.7654854,9.2,6.263362402,1.7,0.195202373,3.131839971,3.30089513,0.342970332,42.87372128,0.375668606,0.375668606,0.375668606,1.695990857,0.718638938,2.414629795,1.41024 -2454,1996/9/19,1.7,0.1,182.2711673,0,0,1.406940297,0.187377802,0.187377802,1.655303001,0.259818193,43.20426099,0.44329937,0.44329937,0.44329937,1.76806266,0.703117563,2.471180223,2.2056 -2455,1996/9/20,1.9,0.4,180.8714802,0,0,1.619408243,0.180278861,0.180278861,0.165835236,0.053309629,42.25706579,0.455376921,0.455376921,0.455376921,1.568407358,0.50868655,2.077093908,1.54176 -2456,1996/9/21,1.7,3.9,182.176406,2.2,1.491815971,1.7,0.186890228,0.895074257,0.444665635,0.033801325,41.66855439,0.421381694,0.421381694,0.421381694,1.454558725,0.455183018,1.909741744,1.4832 -2457,1996/9/22,1.7,7.4,185.7850302,5.7,3.814815588,1.7,0.2061914,2.091375812,1.278223887,0.107335719,41.85764881,0.401196837,0.401196837,0.401196837,1.49032631,0.508532556,1.998858866,1.54032 -2458,1996/9/23,1.6,18.8,196.5625902,17.2,11.0511037,1.6,0.273543675,6.422439977,3.593435595,0.290094723,43.92420929,0.407605361,0.407605361,0.407605361,1.934480471,0.697700084,2.632180555,1.91592 -2459,1996/9/24,1.4,8.5,200.6223013,7.1,4.362784188,1.4,0.303073062,3.040288874,4.443912641,0.516924607,46.27178887,0.482493887,0.482493887,0.482493887,2.57882695,0.999418494,3.578245444,3.22272 -2460,1996/9/25,1.3,1.2,200.2360861,0,0,1.286056857,0.300158347,0.300158347,1.653638163,0.283773161,46.00687124,0.578941919,0.578941919,0.578941919,2.49749771,0.862715081,3.360212791,2.9076 -2461,1996/9/26,1.5,12.7,206.5543146,11.2,6.669001173,1.5,0.350772703,4.88177153,2.080331486,0.162899654,46.12205806,0.567423647,0.567423647,0.567423647,2.532568316,0.730323302,3.262891618,2.87184 -2462,1996/9/27,1.8,0.4,204.9947088,0,0,1.621920226,0.337685601,0.337685601,2.598232245,0.334398306,46.60737994,0.572411508,0.572411508,0.572411508,2.685321875,0.906809814,3.592131689,3.468 -2463,1996/9/28,2,0,202.9362601,0,0,1.737432624,0.321015999,0.321015999,0.297330896,0.086996669,45.22705906,0.593771565,0.593771565,0.593771565,2.271423335,0.680768234,2.952191569,3.4152 -2464,1996/9/29,1.8,4.2,204.0350471,2.4,1.42861669,1.8,0.32982976,1.30121307,0.676188887,0.053813468,44.38863854,0.534468607,0.534468607,0.534468607,2.049078018,0.588282076,2.637360094,2.39088 -2465,1996/9/30,1.8,0.3,202.4175733,0,0,1.600552088,0.316921691,0.316921691,0.78219958,0.096955542,43.77300369,0.500586773,0.500586773,0.500586773,1.898421201,0.597542315,2.495963516,2.31888 -2466,1996/10/1,1.7,14.6,209.5857596,12.9,7.545562153,1.7,0.377375884,5.731813731,2.424645811,0.162157629,44.57707856,0.476705545,0.476705545,0.476705545,2.097276488,0.638863174,2.736139662,2.59776 -2467,1996/10/2,1.4,7.6,212.6770548,6.2,3.497445376,1.4,0.406150158,3.108704782,4.122245532,0.451739971,46.54285093,0.508064198,0.508064198,0.508064198,2.664537362,0.959804169,3.624341532,2.70648 -2468,1996/10/3,1.2,1.4,212.3853643,0.2,0.111671504,1.2,0.403362012,0.491690509,1.763855539,0.284364828,46.30760113,0.590899224,0.590899224,0.590899224,2.590004565,0.875264052,3.465268617,2.28744 -2469,1996/10/4,1.2,32.2,228.0668632,31,16.25835162,1.2,0.576852642,15.31850102,6.300573608,0.405482161,49.43154542,0.580511699,0.580511699,0.580511699,3.757141015,0.98599386,4.743134875,2.73888 -2470,1996/10/5,1.3,24,237.975357,22.7,10.62286642,1.3,0.71437267,12.79150625,12.78823844,1.301512291,55.39132952,0.729529137,0.729529137,0.729529137,7.557983473,2.031041428,9.589024901,5.49264 -2471,1996/10/6,1.1,0.8,236.9954752,0,0,1.080182161,0.699699658,0.699699658,6.734899391,1.0435406,55.52976806,1.086611371,1.086611371,1.086611371,7.683072221,2.130151972,9.813224192,9.81528 -2472,1996/10/7,1,0.3,235.662901,0,0,0.952438149,0.68013605,0.68013605,0.622000121,0.212154118,52.10743909,1.096146221,1.096146221,1.096146221,5.140475318,1.308300339,6.448775657,8.60736 -2473,1996/10/8,1.1,3.9,236.2484394,2.8,1.274215786,1.1,0.688677335,2.214461548,1.218332294,0.101922694,50.12630978,0.877358395,0.877358395,0.877358395,4.076819993,0.979281089,5.056101082,6.39768 -2474,1996/10/9,1.4,0.3,234.5605723,0,0,1.323579178,0.664287957,0.664287957,1.380543916,0.16932382,48.78971744,0.766051648,0.766051648,0.766051648,3.483187911,0.935375467,4.418563378,5.30808 -2475,1996/10/10,1.4,0,232.6249103,0,0,1.298482374,0.637179643,0.637179643,0.587148688,0.084116891,47.19293008,0.696910557,0.696910557,0.696910557,2.880846601,0.781027447,3.661874048,4.14864 -2476,1996/10/11,1.3,0,230.8107602,0,0,1.2015612,0.612588906,0.612588906,0.563745898,0.063497936,45.90894047,0.620293573,0.620293573,0.620293573,2.468029077,0.683791509,3.151820586,3.71784 -2477,1996/10/12,1.4,0,228.9333399,0,0,1.289469104,0.587951146,0.587951146,0.541595656,0.061008137,44.8459413,0.563207497,0.563207497,0.563207497,2.167802326,0.624215634,2.79201796,3.40488 -2478,1996/10/13,1.1,0,227.3557025,0,0,1.009767291,0.567870123,0.567870123,0.521222033,0.058644935,43.9462473,0.518870509,0.518870509,0.518870509,1.939786545,0.577515444,2.517301989,2.68248 -2479,1996/10/14,1.1,0,225.8004461,0,0,1.006638331,0.548618084,0.548618084,0.503476643,0.056601285,43.17212624,0.483341701,0.483341701,0.483341701,1.760939402,0.539942986,2.300882389,1.77552 -2480,1996/10/15,1.1,0,224.2667931,0,0,1.003501611,0.530151384,0.530151384,0.486460095,0.054683542,42.49597759,0.454192561,0.454192561,0.454192561,1.616801304,0.508876103,2.125677407,1.59792 -2481,1996/10/16,1,0,222.8438234,0,0,0.909501749,0.513467986,0.513467986,0.470544646,0.052866752,41.89820483,0.429779175,0.429779175,0.429779175,1.498096582,0.482645927,1.980742509,1.34376 -2482,1996/10/17,1.2,0,221.2604559,0,0,1.08796415,0.495403282,0.495403282,0.454983836,0.05114706,41.36370965,0.408989292,0.408989292,0.408989292,1.39846831,0.460136352,1.858604662,0.82896 -2483,1996/10/18,1.5,0,219.4302978,0,0,1.354994477,0.475163662,0.475163662,0.437866296,0.049309141,40.87938255,0.391017474,0.391017474,0.391017474,1.313210873,0.440326615,1.753537489,1.23192 -2484,1996/10/19,1.5,12.5,224.5911256,11,5.69484211,1.5,0.534014326,5.839172216,2.546959586,0.165494692,42.23713935,0.375226177,0.375226177,0.375226177,1.564428961,0.540720869,2.10514983,1.134 -2485,1996/10/20,1.1,1,223.9733621,0,0,1.091087614,0.526675897,0.526675897,3.156294966,0.404044093,43.88826669,0.42068664,0.42068664,0.42068664,1.925854268,0.824730734,2.750585002,1.36296 -2486,1996/10/21,0.9,0.2,222.8236822,0,0,0.83644496,0.513234915,0.513234915,0.468697781,0.11502938,43.09428797,0.481113436,0.481113436,0.481113436,1.74378993,0.596142816,2.339932746,0.96264 -2487,1996/10/22,1,0,221.4197137,0,0,0.906771661,0.497196785,0.497196785,0.455574768,0.051129994,42.4033167,0.451332872,0.451332872,0.451332872,1.597878913,0.502462866,2.10034178,0.76152 -2488,1996/10/23,1.2,0,219.8552294,0,0,1.084681787,0.479802562,0.479802562,0.440604661,0.049527046,41.79250992,0.426508194,0.426508194,0.426508194,1.477919633,0.47603524,1.953954872,0.7476 -2489,1996/10/24,1.3,0.5,218.6673397,0,0,1.220964569,0.46692515,0.46692515,0.426734447,0.047902761,41.24711628,0.405389572,0.405389572,0.405389572,1.37751766,0.453292333,1.830809992,0.83256 -2490,1996/10/25,1.3,16,225.7166854,14.7,7.596942039,1.3,0.547596344,7.650654306,3.258513998,0.204526746,43.13914818,0.387173435,0.387173435,0.387173435,1.753655541,0.591700181,2.345355721,0.8988 -2491,1996/10/26,1,1.8,225.5723794,0.8,0.401533665,1,0.545839647,0.944305982,4.235919819,0.53313519,45.48420927,0.45297941,0.45297941,0.45297941,2.343838137,0.986114599,3.329952736,1.11096 -2492,1996/10/27,0.9,0,224.2219412,0,0,0.820819235,0.529618953,0.529618953,0.686033094,0.164424489,44.60970026,0.545180426,0.545180426,0.545180426,2.105722526,0.709604914,2.815327441,1.14288 -2493,1996/10/28,0.7,0,223.0690888,0,0,0.636771904,0.516080543,0.516080543,0.471308038,0.057555655,43.70741002,0.509366702,0.509366702,0.509366702,1.882964978,0.566922357,2.449887335,1.02336 -2494,1996/10/29,0.8,0,221.841191,0,0,0.725929238,0.501968525,0.501968525,0.458896838,0.051457984,42.93200818,0.47421003,0.47421003,0.47421003,1.708508712,0.525668014,2.234176726,0.96912 -2495,1996/10/30,1.1,0,220.360542,0,0,0.995282729,0.485366311,0.485366311,0.445212149,0.049998887,42.25469838,0.445412289,0.445412289,0.445412289,1.567934233,0.495411176,2.063345409,0.99144 -2496,1996/10/31,1,0,218.9881485,0,0,0.902018244,0.470375165,0.470375165,0.430906688,0.048403398,41.65489915,0.421299073,0.421299073,0.421299073,1.452004996,0.469702472,1.921707468,0.93744 -2497,1996/11/1,0.9,0,217.7218066,0,0,0.809467,0.456874989,0.456874989,0.418003737,0.046918009,41.11885452,0.400736858,0.400736858,0.400736858,1.354785219,0.447654867,1.802440086,0.97848 -2498,1996/11/2,1,13.2,223.5872886,12.2,6.387613164,1,0.52213108,6.334517916,2.733436005,0.174860575,42.59750656,0.382975957,0.382975957,0.382975957,1.637759925,0.557836532,2.195596457,0.88488 -2499,1996/11/3,0.7,0.2,222.6220567,0,0,0.654325536,0.510906411,0.510906411,3.400165186,0.436301811,44.38332266,0.433383734,0.433383734,0.433383734,2.047732819,0.869685546,2.917418365,1.01568 -2500,1996/11/4,0.6,0.4,221.9375759,0,0,0.58141591,0.503064902,0.503064902,0.456717589,0.11960355,43.50454991,0.500376982,0.500376982,0.500376982,1.835867319,0.619980532,2.455847851,1.03176 -2501,1996/11/5,0.7,18.2,230.0823307,17.5,8.747687603,0.7,0.602932802,9.355245199,3.950242494,0.24470371,45.55671429,0.466551256,0.466551256,0.466551256,2.364629374,0.711254966,3.07588434,1.06128 -2502,1996/11/6,0.9,1.5,229.7730995,0.6,0.289639711,0.9,0.598870859,0.909231147,5.082712079,0.645730684,48.01140063,0.548228187,0.548228187,0.548228187,3.176253925,1.193958871,4.370212796,1.63272 -2503,1996/11/7,1,0,228.2740622,0,0,0.919546229,0.579491131,0.579491131,0.68802819,0.183299604,46.65684365,0.658769218,0.658769218,0.658769218,2.701354382,0.842068822,3.543423204,1.66944 -2504,1996/11/8,1.2,0,226.6153773,0,0,1.100045646,0.5586392,0.5586392,0.513303435,0.061380458,45.43601688,0.595980056,0.595980056,0.595980056,2.330110268,0.657360514,2.987470782,1.47984 -2505,1996/11/9,1.2,0,224.9802699,0,0,1.096428329,0.538679067,0.538679067,0.494889046,0.055671742,44.41763717,0.543161358,0.543161358,0.543161358,2.056430114,0.5988331,2.655263214,1.1796 -2506,1996/11/10,1,0,223.5477658,0,0,0.910836537,0.521667607,0.521667607,0.478089943,0.053729934,43.55091954,0.501732306,0.501732306,0.501732306,1.846539873,0.555462239,2.402002113,1.18224 -2507,1996/11/11,0.9,0,222.2240218,0,0,0.817409359,0.506334597,0.506334597,0.463442783,0.052030852,42.8019652,0.468294045,0.468294045,0.468294045,1.680691168,0.520324897,2.201016065,1.17216 -2508,1996/11/12,0.8,0,221.0068247,0,0,0.724639397,0.492557728,0.492557728,0.450257903,0.050511912,42.14648962,0.440708033,0.440708033,0.440708033,1.546441523,0.491219944,2.037661467,1.18872 -2509,1996/11/13,0.8,0,219.8048124,0,0,0.722762016,0.479250273,0.479250273,0.438044186,0.049126174,41.56650135,0.417535024,0.417535024,0.417535024,1.435567475,0.466661198,1.902228673,1.13424 -2510,1996/11/14,0.7,19.3,228.6631813,18.6,9.44284134,0.7,0.584472462,9.741631122,4.090878995,0.251390586,44.08231382,0.397768267,0.397768267,0.397768267,1.972834792,0.649158853,2.621993645,1.24944 -2511,1996/11/15,0.5,6.6,230.9950552,6.1,2.946925492,0.5,0.615051563,3.768126071,6.40734426,0.733802681,47.85904205,0.488599839,0.488599839,0.488599839,3.119215868,1.22240252,4.341618389,1.86336 -2512,1996/11/16,0.6,5.5,232.67974,4.9,2.322619796,0.6,0.637935045,3.215315248,3.172898589,0.435131435,48.36931807,0.651481351,0.651481351,0.651481351,3.314103919,1.086612786,4.400716705,1.77384 -2513,1996/11/17,0.5,0.7,232.1434505,0.2,0.094287911,0.5,0.630577348,0.736289437,1.914324005,0.273637141,47.8455496,0.676118562,0.676118562,0.676118562,3.114211039,0.949755703,4.063966741,1.86744 -2514,1996/11/18,0.6,0.8,231.6148329,0.2,0.094774329,0.6,0.62339195,0.72861762,0.659629352,0.102698767,46.50394158,0.650838746,0.650838746,0.650838746,2.652076125,0.753537514,3.405613639,1.89912 -2515,1996/11/19,0.6,9.3,235.0085794,8.7,4.064439125,0.6,0.670692623,5.306253498,2.464373394,0.173431042,46.80694259,0.58917208,0.58917208,0.58917208,2.750544462,0.762603122,3.513147584,1.71216 -2516,1996/11/20,0.5,3.4,235.6566361,2.9,1.328101847,0.5,0.680045128,2.251943281,3.568874313,0.409593893,47.85924383,0.602717695,0.602717695,0.602717695,3.11929077,1.012311588,4.131602358,2.28888 -2517,1996/11/21,0.6,1.7,235.4817052,1.1,0.502579375,0.6,0.677510303,1.274930928,1.640732681,0.23977227,47.25065279,0.651490964,0.651490964,0.651490964,2.900814684,0.891263234,3.792077917,2.69568 -2518,1996/11/22,0.9,0.2,234.1722312,0,0,0.850697795,0.658776224,0.658776224,0.90399594,0.125491681,46.21607623,0.622953066,0.622953066,0.622953066,2.561525559,0.748444747,3.309970305,2.1756 -2519,1996/11/23,0.9,0.3,232.9737573,0,0,0.856475824,0.641998106,0.641998106,0.586269575,0.07277643,45.13331977,0.576505867,0.576505867,0.576505867,2.245531909,0.649282297,2.894814206,2.12712 -2520,1996/11/24,0.8,0,231.6102104,0,0,0.740217498,0.623329408,0.623329408,0.570422304,0.063987934,44.22605333,0.530601483,0.530601483,0.530601483,2.008290219,0.594589418,2.602879637,2.0808 -2521,1996/11/25,0.7,5.3,233.1351686,4.6,2.169195801,0.7,0.644237516,3.075041716,1.529664567,0.116368048,44.2385238,0.494198737,0.494198737,0.494198737,2.011392841,0.610566786,2.621959627,1.9008 -2522,1996/11/26,0.5,14.9,238.9491873,14.4,6.54321841,0.5,0.729199779,8.585981369,4.944902045,0.399552915,46.8974957,0.494686633,0.494686633,0.494686633,2.78061678,0.894239548,3.674856329,2.496 -2523,1996/11/27,0.3,0,237.9544813,0,0,0.280648414,0.714057508,0.714057508,4.617196884,0.620812884,48.6822807,0.606808654,0.606808654,0.606808654,3.439220532,1.227621537,4.666842069,3.52032 -2524,1996/11/28,0.4,0,236.8829187,0,0,0.373532782,0.698029881,0.698029881,0.636319247,0.163897248,47.14558933,0.691554146,0.691554146,0.691554146,2.864564767,0.855451394,3.720016161,2.4996 -2525,1996/11/29,0.5,0,235.7357136,0,0,0.466011606,0.6811935,0.6811935,0.621574846,0.069622481,45.91533813,0.618118474,0.618118474,0.618118474,2.469944521,0.687740955,3.157685477,2.41368 -2526,1996/11/30,0.8,2,235.6041364,1.2,0.547706423,0.8,0.679283583,1.33157716,0.870039811,0.082593813,45.10978645,0.563482246,0.563482246,0.563482246,2.239073731,0.646076059,2.88514979,2.418 -2527,1996/12/1,0.5,24.1,245.0182031,23.6,10.24136367,0.5,0.827296947,14.18593328,6.277157594,0.407639169,48.53627184,0.529633787,0.529633787,0.529633787,3.380305991,0.937272955,4.317578946,3.43344 -2528,1996/12/2,0.3,0,243.9258758,0,0,0.283429101,0.808898226,0.808898226,7.482091711,0.973361465,51.76426994,0.684321891,0.684321891,0.684321891,4.938415505,1.657683356,6.596098861,4.54344 -2529,1996/12/3,0.3,3.2,244.3181424,2.9,1.207733616,0.3,0.815467019,2.507733403,1.399215794,0.275950988,50.00269358,0.857300959,0.857300959,0.857300959,4.018093108,1.133251947,5.151345055,3.60288 -2530,1996/12/4,0.4,0.5,243.5571181,0.1,0.041737764,0.4,0.802762093,0.861024329,1.606347544,0.1945918,48.85735964,0.759459961,0.759459961,0.759459961,3.511141454,0.954051761,4.465193214,3.17232 -2531,1996/12/5,0.4,0,242.3964146,0,0,0.377010904,0.783692581,0.783692581,0.74436821,0.103826694,47.36224493,0.700298117,0.700298117,0.700298117,2.939781035,0.80412481,3.743905845,2.90856 -2532,1996/12/6,0.5,0,241.1622438,0,0,0.470352259,0.763818527,0.763818527,0.697471093,0.078845111,46.14746853,0.628117597,0.628117597,0.628117597,2.540365084,0.706962708,3.247327792,2.49792 -2533,1996/12/7,0.4,0,240.0405791,0,0,0.375554124,0.746110602,0.746110602,0.68044028,0.076227582,45.15102351,0.573516043,0.573516043,0.573516043,2.250401344,0.649743626,2.90014497,2.27112 -2534,1996/12/8,0.4,0,238.9367143,0,0,0.374856443,0.729008316,0.729008316,0.664742435,0.074444535,44.31626499,0.531330298,0.531330298,0.531330298,2.03083125,0.605774834,2.636606084,2.0928 -2535,1996/12/9,0.4,0,237.8500712,0,0,0.374160252,0.712482901,0.712482901,0.649578298,0.072739826,43.60461263,0.49773595,0.49773595,0.49773595,1.858966617,0.570475776,2.429442393,1.77696 -2536,1996/12/10,0.3,0,236.8720801,0,0,0.280121774,0.697869261,0.697869261,0.635460765,0.071122443,42.98946374,0.470317888,0.470317888,0.470317888,1.720927541,0.541440332,2.262367872,1.87056 -2537,1996/12/11,0.2,0,236.0005821,0,0,0.186446657,0.685051339,0.685051339,0.623017975,0.069677947,42.45215575,0.447502102,0.447502102,0.447502102,1.607828064,0.517180049,2.125008113,1.79016 -2538,1996/12/12,0.3,0,235.0500742,0,0,0.279219639,0.671288336,0.671288336,0.611108446,0.068354231,41.97800519,0.428230015,0.428230015,0.428230015,1.513489024,0.496584246,2.01007327,1.71072 -2539,1996/12/13,0.4,4.9,236.411437,4.5,2.052433163,0.4,0.691070305,3.138637142,1.57900556,0.121449303,42.37632867,0.411722188,0.411722188,0.411722188,1.592404266,0.533171491,2.125575758,1.66608 -2540,1996/12/14,0.4,0,235.363109,0,0,0.372531858,0.675796127,0.675796127,1.851708301,0.230704124,42.94276754,0.425558855,0.425558855,0.425558855,1.71082829,0.65626298,2.36709127,1.66224 -2541,1996/12/15,0.3,1.9,235.4188458,1.6,0.732338041,0.3,0.676601304,1.544263263,0.951346653,0.115689735,42.68409498,0.445803104,0.445803104,0.445803104,1.655822315,0.561492839,2.217315154,1.43712 -2542,1996/12/16,0.4,4.6,236.6343466,4.2,1.909854489,0.4,0.694353686,2.984499197,1.958872109,0.175796537,43.29183717,0.43647488,0.43647488,0.43647488,1.787604795,0.612271417,2.399876212,1.43856 -2543,1996/12/17,0.4,5.3,238.1151787,4.9,2.197318538,0.4,0.71648646,3.419167922,2.857786213,0.291004464,44.52450953,0.458615829,0.458615829,0.458615829,2.083729685,0.749620292,2.833349977,1.64136 -2544,1996/12/18,0.3,4.4,239.1961887,4.1,1.814009694,0.3,0.732999672,3.018989978,2.919141301,0.328006413,45.57866454,0.505970256,0.505970256,0.505970256,2.370956551,0.833976669,3.20493322,1.86048 -2545,1996/12/19,0.2,1.1,238.8649281,0.9,0.396646595,0.2,0.727907167,1.231260571,2.010761512,0.267378328,45.72503729,0.549153264,0.549153264,0.549153264,2.41354202,0.816531592,3.230073613,1.81464 -2546,1996/12/20,0.4,8.5,241.6164264,8.1,3.522582807,0.4,0.771084466,5.348501659,2.734850699,0.234584126,46.3971047,0.55535057,0.55535057,0.55535057,2.618133863,0.789934696,3.408068559,1.80144 -2547,1996/12/21,0.4,0.4,240.8574529,0,0,0.4,0.758973564,0.758973564,3.000335213,0.38555079,47.12453669,0.584448252,0.584448252,0.584448252,2.857351478,0.969999042,3.82735052,2.05488 -2548,1996/12/22,0.1,0,240.0178347,0,0,0.093863196,0.745754988,0.745754988,0.677853548,0.12973718,45.94169363,0.617152951,0.617152951,0.617152951,2.477849559,0.746890131,3.22473969,2.12448 -2549,1996/12/23,0.2,0,239.0988834,0,0,0.187450464,0.731500818,0.731500818,0.665547668,0.074418541,44.97063046,0.564615098,0.564615098,0.564615098,2.201225932,0.63903364,2.840259572,2.11944 -2550,1996/12/24,0.3,4.1,240.0182581,3.8,1.66513627,0.3,0.745761606,2.880625337,1.50746682,0.120491345,44.83669313,0.523937399,0.523937399,0.523937399,2.165341551,0.644428744,2.809770295,2.03688 -2551,1996/12/25,0.2,2.8,240.3979102,2.6,1.131367638,0.2,0.751715535,2.220347897,2.331688038,0.24822229,45.37425422,0.518496099,0.518496099,0.518496099,2.312623042,0.766718388,3.079341431,2.21472 -2552,1996/12/26,0.3,5.2,241.7369473,4.9,2.112059,0.3,0.773021866,3.560962866,2.52798816,0.25924871,45.95959267,0.540581567,0.540581567,0.540581567,2.483231279,0.799830277,3.283061556,1.96248 -2553,1996/12/27,0.2,0.5,241.1028991,0.3,0.128825009,0.2,0.762873232,0.934048224,2.166976182,0.282624261,46.15062051,0.565385389,0.565385389,0.565385389,2.541333736,0.848009651,3.389343386,1.9704 -2554,1996/12/28,0.2,0,240.1670213,0,0,0.187787751,0.748090051,0.748090051,0.767171564,0.120305513,45.22155074,0.573653158,0.573653158,0.573653158,2.269894493,0.693958671,2.963853164,2.14272 -2555,1996/12/29,0.1,0,239.3380757,0,0,0.093755877,0.735189683,0.735189683,0.668184111,0.076719094,44.37767191,0.534240812,0.534240812,0.534240812,2.046303745,0.610959906,2.657263652,2.016 -2556,1996/12/30,0,0,238.614007,0,0,0,0.724068744,0.724068744,0.65727683,0.073427032,43.66262626,0.500154045,0.500154045,0.500154045,1.872476527,0.573581077,2.446057604,1.968 -2557,1996/12/31,0,6.6,240.7448007,6.6,2.887982805,0,0.757189126,4.469206321,2.131360488,0.154743556,44.25179818,0.472511599,0.472511599,0.472511599,2.014700172,0.627255155,2.641955327,1.596 -2558,1997/1/1,0.2,5.1,242.0705306,4.9,2.104134688,0.2,0.778404769,3.57427008,3.668697521,0.383105936,45.93873965,0.49520636,0.49520636,0.49520636,2.476962405,0.878312296,3.355274701,1.92 -2559,1997/1/2,0.1,4.7,243.2214867,4.6,1.948165993,0.1,0.797209873,3.44904388,3.16736629,0.365233472,46.89185819,0.564488045,0.564488045,0.564488045,2.7787358,0.929721517,3.708457317,1.7256 -2560,1997/1/3,0,1.1,242.8934256,1.1,0.463751738,0,0.791812859,1.428061121,2.305651939,0.30202099,46.99180558,0.606553388,0.606553388,0.606553388,2.812257938,0.908574378,3.720832316,1.7256 -2561,1997/1/4,0,5.3,244.2987181,5.3,2.220433212,0,0.815140735,3.894707523,2.259823529,0.220784795,47.03564184,0.611090379,0.611090379,0.611090379,2.827077644,0.831875173,3.658952818,1.8216 -2562,1997/1/5,0,0.1,243.5380198,0.1,0.041747025,0,0.802445323,0.860698298,2.306503863,0.293782364,47.10467276,0.613087899,0.613087899,0.613087899,2.850560846,0.906870263,3.757431109, -2563,1997/1/6,0,1.3,243.2856107,1.3,0.545859153,0,0.79826825,1.552409097,1.04792242,0.137036657,46.20938375,0.616242932,0.616242932,0.616242932,2.559454364,0.75327959,3.312733954, -2564,1997/1/7,0,3,243.7380162,3,1.258173046,0,0.805767531,2.547594484,1.79036451,0.168926998,46.06179677,0.576213729,0.576213729,0.576213729,2.514165217,0.745140727,3.259305943, -2565,1997/1/8,0,0.4,243.1105706,0.4,0.16793623,0,0.795381855,1.027445625,1.69222628,0.209654905,45.86801365,0.569798163,0.569798163,0.569798163,2.455807557,0.779453068,3.235260625, -2566,1997/1/9,0,2.1,243.1980926,2.1,0.884346051,0,0.796824031,2.01247798,1.313885948,0.142294963,45.41827658,0.561452149,0.561452149,0.561452149,2.325075169,0.703747112,3.028822281, -2567,1997/1/10,0,1.7,243.1184559,1.7,0.715875047,0,0.795511703,1.779636655,1.719234851,0.184519297,45.36883621,0.542419458,0.542419458,0.542419458,2.311094678,0.726938755,3.038033433, -2568,1997/1/11,0,0,242.3357499,0,0,0,0.782706044,0.782706044,1.207787053,0.158827337,44.92739466,0.540355678,0.540355678,0.540355678,2.189584288,0.699183015,2.888767303, -2569,1997/1/12,0,0.4,241.7333807,0.4,0.170595322,0,0.772964476,1.002369154,0.79122401,0.094850242,44.23121999,0.522176477,0.522176477,0.522176477,2.009575153,0.617026719,2.626601872, -2570,1997/1/13,0,1,241.3945771,1,0.428724779,0,0.767528426,1.338803647,1.035057014,0.105030895,43.84513099,0.494400837,0.494400837,0.494400837,1.915546854,0.599431731,2.514978585, -2571,1997/1/14,0,2.2,241.5682947,2.2,0.944029458,0,0.770311833,2.026282374,1.476545137,0.145002519,43.87779021,0.479460445,0.479460445,0.479460445,1.923346361,0.624462965,2.547809326, -2572,1997/1/15,0,0,240.8100721,0,0,0,0.758222628,0.758222628,1.322645451,0.166686183,43.7808659,0.480711596,0.480711596,0.480711596,1.900281353,0.647397779,2.547679132, -2573,1997/1/16,0,0,240.0636014,0,0,0,0.746470701,0.746470701,0.677757177,0.090520116,43.1742246,0.477005292,0.477005292,0.477005292,1.761403768,0.567525407,2.328929176, -2574,1997/1/17,0,0,239.3285588,0,0,0,0.735042625,0.735042625,0.667308396,0.074534847,42.64761207,0.454269831,0.454269831,0.454269831,1.648190757,0.528804679,2.176995436, -2575,1997/1/18,0.3,1.3,239.0379929,1,0.439998252,0.3,0.73056414,1.290565887,0.881024811,0.085832761,42.37223263,0.435170553,0.435170553,0.435170553,1.591574804,0.521003314,2.112578118, -2576,1997/1/19,0.2,0,238.1340784,0,0,0.187141938,0.716772568,0.716772568,0.934804327,0.109909928,42.17948431,0.425414904,0.425414904,0.425414904,1.552967552,0.535324832,2.088292384, -2577,1997/1/20,0.3,0.5,237.5158935,0.2,0.089277102,0.3,0.707461977,0.818184875,0.685163155,0.080670717,41.80334969,0.41868019,0.41868019,0.41868019,1.479977965,0.499350908,1.979328873, -2578,1997/1/21,0.6,2,237.4368236,1.4,0.627208241,0.6,0.706278157,1.479069915,0.997481126,0.095128806,41.73882605,0.405757703,0.405757703,0.405757703,1.467762467,0.500886509,1.968648977, -2579,1997/1/22,0.7,1.8,237.2272277,1.1,0.493552015,0.7,0.703147849,1.309595834,1.264203915,0.136392452,41.90684362,0.403569919,0.403569919,0.403569919,1.499756273,0.539962371,2.039718644,2.424 -2580,1997/1/23,0.4,9,240.2777038,8.6,3.80030228,0.4,0.749826256,5.549523975,2.853825917,0.22602455,43.36571562,0.409284514,0.409284514,0.409284514,1.804238432,0.635309064,2.439547496,3.432 -2581,1997/1/24,0.1,0,239.4470553,0,0,0.093773144,0.73687535,0.73687535,3.093100683,0.399308547,44.77198369,0.461360909,0.461360909,0.461360909,2.148193514,0.860669456,3.00886297,3.672 -2582,1997/1/25,0.4,3.8,240.1844426,3.4,1.485750473,0.4,0.748363113,2.662612641,1.424043916,0.172718836,44.60691035,0.515881747,0.515881747,0.515881747,2.104999006,0.688600583,2.793599589,2.832 -2583,1997/1/26,0.6,5.9,241.6996116,5.3,2.287590212,0.6,0.772421266,3.784831054,2.839738244,0.268181352,45.58353986,0.509255214,0.509255214,0.509255214,2.372363945,0.777436566,3.149800511,3.552 -2584,1997/1/27,0.3,1.3,241.3614961,1,0.42888386,0.3,0.766999304,1.338115444,2.439653932,0.311542261,46.05918293,0.549358882,0.549358882,0.549358882,2.513369744,0.860901143,3.374270887,4.56 -2585,1997/1/28,0.5,3.1,241.7040269,2.6,1.115023044,0.5,0.772492274,2.25746923,1.567539267,0.182848454,45.76972608,0.569685002,0.569685002,0.569685002,2.42668112,0.752533456,3.179214576,3.672 -2586,1997/1/29,0.6,1.3,241.2393948,0.7,0.300416723,0.6,0.765048866,1.164632143,1.599943844,0.190916211,45.56104578,0.557252569,0.557252569,0.557252569,2.365876718,0.74816878,3.114045498,3.888 -2587,1997/1/30,0.7,0.9,240.5713195,0.2,0.086372492,0.7,0.754447761,0.868075269,0.930999694,0.122843013,44.86703243,0.548410646,0.548410646,0.548410646,2.173423692,0.671253659,2.84467735,3.792 -2588,1997/1/31,0.6,0,239.274419,0,0,0.562693991,0.734206497,0.734206497,0.728376356,0.087366798,44.13048067,0.519725101,0.519725101,0.519725101,1.984653217,0.607091899,2.591745115,3.552 -2589,1997/2/1,0.7,0,237.9060923,0,0,0.654999265,0.713327406,0.713327406,0.65253653,0.074541252,43.45008651,0.490470945,0.490470945,0.490470945,1.823401627,0.565012197,2.388413823,3.432 -2590,1997/2/2,0.7,0,236.5593743,0,0,0.653470014,0.69324797,0.69324797,0.634061291,0.071138268,42.85637653,0.464510186,0.464510186,0.464510186,1.692281463,0.535648455,2.227929918,2.76 -2591,1997/2/3,0.6,0,235.3252729,0,0,0.558851471,0.675249984,0.675249984,0.616812178,0.069166581,42.33234379,0.442672002,0.442672002,0.442672002,1.583516922,0.511838582,2.095355504,2.544 -2592,1997/2/4,0.4,0,234.2929708,0,0,0.371816162,0.660485921,0.660485921,0.601891709,0.067413217,41.86627439,0.424014866,0.424014866,0.424014866,1.491975968,0.491428083,1.983404051,2.544 -2593,1997/2/5,0.7,0,233.001282,0,0,0.649309221,0.642379539,0.642379539,0.587283507,0.065825305,41.44772194,0.407899419,0.407899419,0.407899419,1.413735384,0.473724724,1.887460108,2.3256 -2594,1997/2/6,0.7,0,231.7285711,0,0,0.647778536,0.624932375,0.624932375,0.57124822,0.064068556,41.0670739,0.393804172,0.393804172,0.393804172,1.345700423,0.457872728,1.803573151,2.3256 -2595,1997/2/7,0.6,0,230.5652753,0,0,0.553974916,0.609320935,0.609320935,0.556271065,0.062356358,40.71869822,0.381290638,0.381290638,0.381290638,1.285937384,0.443646996,1.729584381,2.0136 -2596,1997/2/8,0.8,3.7,231.3321311,2.9,1.386432226,0.8,0.619576391,2.133144165,1.150449261,0.094564044,40.91919217,0.370089344,0.370089344,0.370089344,1.320044656,0.464653388,1.784698044,2.0136 -2597,1997/2/9,0.7,1.3,231.0032356,0.6,0.286265527,0.7,0.615161059,0.928895531,1.444032741,0.168908974,41.34469818,0.37650666,0.37650666,0.37650666,1.395033394,0.545415633,1.940449027,2.124 -2598,1997/2/10,0.5,7.3,233.5621975,6.8,3.209154312,0.5,0.650192445,4.241038133,2.144628881,0.179794054,42.30225375,0.390388821,0.390388821,0.390388821,1.577462132,0.570182876,2.147645008,1.92 -2599,1997/2/11,0.4,0.9,233.1512888,0.5,0.233552901,0.4,0.644461512,0.910908611,2.501204687,0.311943636,43.41174782,0.422960932,0.422960932,0.422960932,1.81467155,0.734904568,2.549576118,2.424 -2600,1997/2/12,0.3,11.3,237.4809219,11,5.036571284,0.3,0.706938192,6.670366908,3.095371672,0.256786895,44.81153629,0.463077237,0.463077237,0.463077237,2.158660438,0.719864132,2.87852457,2.124 -2601,1997/2/13,0.6,11.9,241.6582597,11.3,4.949094294,0.6,0.771756501,7.122662207,6.1820313,0.60903632,48.24532102,0.517478605,0.517478605,0.517478605,3.265725174,1.126514926,4.3922401,3.072 -2602,1997/2/14,0.8,16.5,247.2978041,15.7,6.506326223,0.8,0.866781858,10.06045563,7.571113904,0.771416271,51.62679996,0.670071559,0.670071559,0.670071559,4.85970652,1.441487829,6.301194349,4.392 -2603,1997/2/15,0.5,3.5,247.6260303,3,1.200816332,0.5,0.872590149,2.671773817,6.135151946,0.809215754,52.94328759,0.849358829,0.849358829,0.849358829,5.668023146,1.658574583,7.326597729,7.728 -2604,1997/2/16,0.2,19.6,254.0663471,19.4,7.433387387,0.2,0.993070562,12.95968317,6.469335017,0.580140136,53.95741241,0.927611563,0.927611563,0.927611563,6.382821762,1.507751699,7.890573461,6.504 -2605,1997/2/17,0.2,4.2,254.5297623,4,1.465647564,0.2,1.00223236,3.536584796,7.940661515,0.967794317,55.35968136,0.991304056,0.991304056,0.991304056,7.529696619,1.959098373,9.488794992,12.48 -2606,1997/2/18,0,0,253.5468811,0,0,0,0.982881179,0.982881179,2.173961493,0.408743147,52.94735978,1.084439977,1.084439977,1.084439977,5.670723047,1.493183124,7.163906171,9.84 -2607,1997/2/19,0,0,252.5826888,0,0,0,0.964192319,0.964192319,0.877209095,0.127996891,50.49532629,0.927861306,0.927861306,0.927861306,4.257103892,1.055858198,5.31296209,7.104 -2608,1997/2/20,0,0,251.6365553,0,0,0,0.946133525,0.946133525,0.86063806,0.096243286,48.6968034,0.785972087,0.785972087,0.785972087,3.445133041,0.882215374,4.327348414,6.048 -2609,1997/2/21,0,0,250.7078807,0,0,0,0.928674569,0.928674569,0.844622141,0.094443142,47.3116482,0.692276471,0.692276471,0.692276471,2.922053808,0.786719613,3.708773421,5.088 -2610,1997/2/22,0,0,249.7960936,0,0,0,0.911787088,0.911787088,0.82913487,0.092702715,46.20764023,0.625772185,0.625772185,0.625772185,2.55891503,0.7184749,3.277389931,4.824 -2611,1997/2/23,0.2,0,248.7137069,0,0,0.190324152,0.892062619,0.892062619,0.812815247,0.090944955,45.30377927,0.576137639,0.576137639,0.576137639,2.292813844,0.667082594,2.959896437,3.552 -2612,1997/2/24,0.6,0,247.2773717,0,0,0.569913846,0.866421321,0.866421321,0.792725494,0.088876093,44.54512142,0.537648573,0.537648573,0.537648573,2.089031919,0.626524666,2.715556585,3.072 -2613,1997/2/25,0.6,0,245.8668521,0,0,0.568696573,0.841823033,0.841823033,0.770060419,0.086404641,43.89460049,0.506790538,0.506790538,0.506790538,1.92737189,0.593195179,2.520567069,2.64 -2614,1997/2/26,0.7,0,244.3881983,0,0,0.662009088,0.816644672,0.816644672,0.747692774,0.083919778,43.32793466,0.481356494,0.481356494,0.481356494,1.795715094,0.565276272,2.360991365,2.424 -2615,1997/2/27,0.8,0,242.8424339,0,0,0.754787757,0.790976635,0.790976635,0.72483878,0.081398035,42.82676411,0.459955631,0.459955631,0.459955631,1.68596496,0.541353665,2.227318626,2.22 -2616,1997/2/28,0.9,0.4,241.6009082,0,0,0.870690445,0.770835291,0.770835291,0.703921136,0.078958316,42.37928454,0.441602372,0.441602372,0.441602372,1.593003076,0.520560688,2.113563765,1.92 -2617,1997/3/1,0.9,11.7,245.2996395,10.8,4.530822885,0.9,0.83209162,7.101268734,3.194897172,0.21627366,44.03786115,0.425662758,0.425662758,0.425662758,1.961983324,0.641936418,2.603919742,2.124 -2618,1997/3/2,0.7,1.1,244.643646,0.4,0.164956936,0.7,0.820950423,1.055993487,4.002661869,0.502771092,46.02454933,0.486877545,0.486877545,0.486877545,2.502851235,0.989648637,3.492499873,2.0136 -2619,1997/3/3,0.9,4.4,245.2559141,3.5,1.443613326,0.9,0.831345227,2.887731901,1.674111407,0.217105271,45.8240943,0.568187126,0.568187126,0.568187126,2.442753559,0.785292397,3.228045955,2.124 -2620,1997/3/4,0.9,0.6,244.1595739,0,0,0.883533629,0.812806512,0.812806512,1.779158514,0.22162485,45.74378067,0.559572803,0.559572803,0.559572803,2.419044948,0.781197653,3.200242601,2.22 -2621,1997/3/5,0.6,3.1,244.382397,2.5,1.039370179,0.6,0.816547099,2.27717692,1.310096548,0.137895645,45.31427164,0.556147741,0.556147741,0.556147741,2.295753319,0.694043386,2.989796704,1.8216 -2622,1997/3/6,0.6,0.2,243.2079086,0,0,0.57750255,0.796985909,0.796985909,1.464637768,0.177956537,45.08476768,0.538084517,0.538084517,0.538084517,2.232226242,0.716041055,2.948267296,1.632 -2623,1997/3/7,0.5,6,244.6813136,5.5,2.294991917,0.5,0.821586884,4.026594967,1.993301335,0.168046011,45.31165537,0.528606391,0.528606391,0.528606391,2.295020042,0.696652402,2.991672444,1.8216 -2624,1997/3/8,0.6,0,243.3161064,0,0,0.566435235,0.798771984,0.798771984,2.348627014,0.293718356,45.77115567,0.537975791,0.537975791,0.537975791,2.427102505,0.831694146,3.258796651,2.22 -2625,1997/3/9,0.7,0,241.8813902,0,0,0.659367159,0.775348987,0.775348987,0.709640373,0.117432773,44.86518007,0.55731349,0.55731349,0.55731349,2.172929463,0.674746263,2.847675726,1.7256 -2626,1997/3/10,0.7,1.6,241.4975287,0.9,0.385315519,0.7,0.769176998,1.283861479,0.898726646,0.088972986,44.26545009,0.519650005,0.519650005,0.519650005,2.018106624,0.608622991,2.626729615,1.3656 -2627,1997/3/11,0.7,5.9,242.9184083,5.2,2.213102421,0.7,0.792222817,3.779120396,2.14134862,0.177159419,44.75802858,0.495741274,0.495741274,0.495741274,2.144511407,0.672900694,2.8174121,1.5456 -2628,1997/3/12,0.5,0,241.6756249,0,0,0.470747858,0.772035604,0.772035604,2.213113257,0.282477175,45.21764892,0.515319178,0.515319178,0.515319178,2.268812099,0.797796353,3.066608452,1.8216 -2629,1997/3/13,0.3,0,240.638197,0,0,0.281924269,0.755503616,0.755503616,0.68830026,0.112306954,44.39048358,0.534079495,0.534079495,0.534079495,2.049545095,0.646386449,2.695931544,1.7256 -2630,1997/3/14,0.6,1.5,240.2789287,0.9,0.390577221,0.6,0.749845489,1.259268268,0.878989948,0.08680296,43.85276555,0.500659601,0.500659601,0.500659601,1.91736758,0.587462561,2.504830141,1.632 -2631,1997/3/15,0.6,2.3,240.2684782,1.7,0.739230887,0.6,0.749681416,1.710450529,1.311602894,0.129888759,43.75091691,0.479752711,0.479752711,0.479752711,1.893204241,0.60964147,2.502845711,1.632 -2632,1997/3/16,0.5,3.4,240.7685488,2.9,1.257635669,0.5,0.757565021,2.399929353,1.811817557,0.180857757,44.06901571,0.475864207,0.475864207,0.475864207,1.969582966,0.656721964,2.62630493,1.5456 -2633,1997/3/17,0.3,6,242.4267922,5.7,2.44243028,0.3,0.784186962,4.041756682,2.808620049,0.267899113,45.12301733,0.488084156,0.488084156,0.488084156,2.242702582,0.755983268,2.99868585,1.452 -2634,1997/3/18,0.3,1.5,242.1572849,1.2,0.510302397,0.3,0.779809631,1.469507234,2.621288746,0.328350983,45.82998346,0.530177689,0.530177689,0.530177689,2.444500309,0.858528672,3.303028981,1.452 -2635,1997/3/19,0.1,0,241.2972497,0,0,0.094062714,0.765972537,0.765972537,1.044590897,0.161845925,45.17687108,0.559824543,0.559824543,0.559824543,2.257527824,0.721670469,2.979198292,1.5456 -2636,1997/3/20,0.4,0.2,240.3583093,0,0,0.387847679,0.751092706,0.751092706,0.683496265,0.084568311,44.35275111,0.532395656,0.532395656,0.532395656,2.040011891,0.616963967,2.656975858,1.452 -2637,1997/3/21,1,1.6,239.8761229,0.6,0.261355974,1,0.743542365,1.082186391,0.806798071,0.082552267,43.76272833,0.499171699,0.499171699,0.499171699,1.895992546,0.581723966,2.477716513,1.5456 -2638,1997/3/22,1.1,3.2,240.0461871,2.1,0.916262505,1.1,0.746198306,1.929935801,1.308912336,0.122921708,43.67304312,0.476314,0.476314,0.476314,1.874911543,0.599235709,2.474147252,1.632 -2639,1997/3/23,1.1,1,239.2190972,0,0,1.093737,0.733352906,0.733352906,1.264173941,0.156730165,43.56120801,0.472906271,0.472906271,0.472906271,1.848915325,0.629636437,2.478551762,1.7256 -2640,1997/3/24,1.1,2.2,238.9739634,1.1,0.484446437,1.1,0.729580219,1.345133782,0.901731369,0.100876629,43.17094312,0.468681363,0.468681363,0.468681363,1.760677625,0.569557992,2.330235617,1.92 -2641,1997/3/25,1.2,3.8,239.3821056,2.6,1.144012557,1.2,0.735870351,2.191857794,1.545159848,0.145883457,43.3659586,0.454148998,0.454148998,0.454148998,1.804293364,0.600032455,2.404325819,1.8216 -2642,1997/3/26,1.6,0.2,237.3673571,0,0,1.509509048,0.705239436,0.705239436,1.385311121,0.176568207,43.4005182,0.461369957,0.461369957,0.461369957,1.812121472,0.637938164,2.450059636,1.92 -2643,1997/3/27,1.1,3.9,237.906295,2.8,1.252268348,1.1,0.713330463,2.261062115,1.249418847,0.122207676,43.31891062,0.462658117,0.462658117,0.462658117,1.793684552,0.584865793,2.378550345,1.7256 -2644,1997/3/28,0.7,0.2,236.7434894,0,0,0.666839682,0.695965901,0.695965901,1.416588517,0.173402784,43.38623665,0.459620431,0.459620431,0.459620431,1.808882919,0.633023215,2.441906134,1.632 -2645,1997/3/29,1.1,0,235.0477618,0,0,1.024472509,0.671255128,0.671255128,0.616606102,0.087513313,42.7873734,0.462125481,0.462125481,0.462125481,1.677594824,0.549638793,2.227233617,1.8216 -2646,1997/3/30,1.8,0,232.7386287,0,0,1.670385882,0.638747172,0.638747172,0.591285751,0.066703426,42.25153861,0.440182404,0.440182404,0.440182404,1.567302948,0.50688583,2.074188779,1.632 -2647,1997/3/31,1.8,0,230.4672738,0,0,1.663334714,0.608020236,0.608020236,0.56273227,0.063583685,41.76311016,0.421188818,0.421188818,0.421188818,1.472349543,0.484772503,1.957122046,1.452 -2648,1997/4/1,2.1,0.1,228.0507113,0,0,1.939915156,0.576647369,0.576647369,0.534822822,0.060475806,41.31300231,0.404392322,0.404392322,0.404392322,1.38932299,0.464868128,1.854191118,1.452 -2649,1997/4/2,1.9,0,225.7626856,0,0,1.739868384,0.54815728,0.54815728,0.507726224,0.057409414,40.89430242,0.389342339,0.389342339,0.389342339,1.31576845,0.446751753,1.762520203,1.452 -2650,1997/4/3,2.1,0,223.3297201,0,0,1.913848938,0.519116599,0.519116599,0.481867606,0.054514319,40.50195185,0.375705712,0.375705712,0.375705712,1.24992389,0.430220031,1.680143921,1.3656 -2651,1997/4/4,2.4,0,220.6653201,0,0,2.175652935,0.488747085,0.488747085,0.455205974,0.051587576,40.13021799,0.363240127,0.363240127,0.363240127,1.190179961,0.414827703,1.605007664,1.2816 -2652,1997/4/5,1.7,3.7,221.2155219,2,1.045100014,1.7,0.494898193,1.449798179,0.819582312,0.070327908,40.11389171,0.351704803,0.351704803,0.351704803,1.187613395,0.422032711,1.609646106,1.2816 -2653,1997/4/6,1.6,1.4,220.5472108,0,0,1.580876397,0.487434708,0.487434708,0.924589861,0.112521185,40.19005795,0.35120426,0.35120426,0.35120426,1.199627887,0.463725445,1.663353332,1.2816 -2654,1997/4/7,2.1,10.5,224.3493935,8.4,4.333315787,2.1,0.53113305,4.597817263,2.062697643,0.150316422,41.23155688,0.353543776,0.353543776,0.353543776,1.374742489,0.503860198,1.878602687,1.2816 -2655,1997/4/8,1.9,7.2,226.4582069,5.3,2.665508476,1.9,0.556695116,3.19118664,3.582277629,0.380427595,43.39062052,0.386662497,0.386662497,0.386662497,1.809876482,0.767090092,2.576966574,1.7256 -2656,1997/4/9,1.8,8.8,229.308303,7,3.442903111,1.8,0.592806944,4.149903834,3.250855727,0.35675264,44.91697752,0.462288932,0.462288932,0.462288932,2.186787659,0.819041572,3.005829231,1.632 -2657,1997/4/10,1.6,1.3,228.450766,0,0,1.575788081,0.581748961,0.581748961,2.325140336,0.325362407,45.43425961,0.521752837,0.521752837,0.521752837,2.329611078,0.847115244,3.176726322,2.124 -2658,1997/4/11,1.4,8.8,231.4017599,7.4,3.57150832,1.4,0.620514403,4.449006083,2.051521949,0.185144568,45.64011742,0.543087837,0.543087837,0.543087837,2.388751977,0.728232405,3.116984382,1.92 -2659,1997/4/12,1.2,3.2,231.7274207,2,0.950577588,1.2,0.624916779,1.674339192,2.907838348,0.338385653,46.46124234,0.551749081,0.551749081,0.551749081,2.638462517,0.890134734,3.528597251,2.124 -2660,1997/4/13,1.7,3.7,232.0458166,2,0.947641127,1.7,0.629245232,1.681604105,1.50977559,0.200318485,46.04825291,0.58728086,0.58728086,0.58728086,2.510045872,0.787599344,3.297645216,2.22 -2661,1997/4/14,1.4,8.8,234.8307061,7.4,3.453033371,1.4,0.668143836,4.615110465,2.672467928,0.232465021,46.6052873,0.569211983,0.569211983,0.569211983,2.684645523,0.801677004,3.486322527,2.3256 -2662,1997/4/15,1.4,4.6,235.6182981,3.2,1.467080928,1.4,0.679488941,2.412408013,3.28331464,0.378563545,47.49537764,0.593678261,0.593678261,0.593678261,2.986902561,0.972241806,3.959144367,2.952 -2663,1997/4/16,1.8,0.4,233.6657001,0,0,1.700955559,0.651642447,0.651642447,1.475491134,0.228571361,46.8427783,0.634318957,0.634318957,0.634318957,2.762409431,0.862890319,3.62529975,3.312 -2664,1997/4/17,2,0,231.1969381,0,0,1.85100363,0.617758383,0.617758383,0.57309064,0.085187383,45.63340182,0.604334298,0.604334298,0.604334298,2.386801416,0.689521681,3.076323097,3.192 -2665,1997/4/18,1.8,0,228.9502455,0,0,1.658523203,0.588169383,0.588169383,0.544291957,0.061526013,44.62060589,0.551464984,0.551464984,0.551464984,2.108552871,0.612990997,2.721543867,2.544 -2666,1997/4/19,2,0,226.5578022,0,0,1.834516954,0.557926404,0.557926404,0.517403472,0.058502101,43.75390317,0.509802668,0.509802668,0.509802668,1.89390886,0.568304769,2.462213629,2.3256 -2667,1997/4/20,2.6,0,223.6625374,0,0,2.372250383,0.523014415,0.523014415,0.488340072,0.055383031,42.99589794,0.475977899,0.475977899,0.475977899,1.722323208,0.53136093,2.253684137,2.124 -2668,1997/4/21,2.5,0,220.9034639,0,0,2.26767162,0.491401874,0.491401874,0.45822289,0.052019321,42.32068824,0.447736566,0.447736566,0.447736566,1.581169155,0.499755887,2.080925043,2.124 -2669,1997/4/22,2.4,1.4,219.5242021,0,0,2.30307613,0.476185679,0.476185679,0.436249777,0.04917905,41.71691086,0.423606396,0.423606396,0.423606396,1.463633548,0.472785447,1.936418994,1.8216 -2670,1997/4/23,2.3,3.7,219.7845445,1.4,0.739370841,2.3,0.479028393,1.139657552,0.690703912,0.062361203,41.40456822,0.402828768,0.402828768,0.402828768,1.405875327,0.46518997,1.871065297,1.7256 -2671,1997/4/24,1.8,0,217.7074986,0,0,1.620321678,0.456724255,0.456724255,0.755865776,0.091150305,41.18613603,0.392370992,0.392370992,0.392370992,1.366668953,0.483521298,1.85019025,1.632 -2672,1997/4/25,1.7,0,215.7476183,0,0,1.523428685,0.436451619,0.436451619,0.403042129,0.053282126,40.69276933,0.385173727,0.385173727,0.385173727,1.281582561,0.438455854,1.720038415,1.632 -2673,1997/4/26,1.3,0,214.1667052,0,0,1.160281337,0.420631739,0.420631739,0.386556034,0.043537027,40.24088685,0.36926517,0.36926517,0.36926517,1.207703681,0.412802197,1.620505879,1.5456 -2674,1997/4/27,1.5,3.1,214.622423,1.6,0.880861701,1.5,0.425143922,1.144282221,0.664481852,0.058133843,40.07842557,0.355111212,0.355111212,0.355111212,1.182054343,0.413245056,1.595299398,1.452 -2675,1997/4/28,1.3,0.1,213.14342,0,0,1.168362915,0.410640114,0.410640114,0.739992998,0.089789957,39.99887119,0.350118667,0.350118667,0.350118667,1.169666049,0.439908624,1.609574674,1.2816 -2676,1997/4/29,1.3,4.7,214.5977746,3.4,1.879253578,1.3,0.424898881,1.945645303,0.976054503,0.083410019,40.13213616,0.347692287,0.347692287,0.347692287,1.190481818,0.431102306,1.621584124,1.2 -2677,1997/4/30,2,0.1,212.5030406,0,0,1.790249111,0.404484973,0.404484973,1.142170428,0.142632013,40.39379026,0.351763645,0.351763645,0.351763645,1.232279974,0.494395657,1.726675632,1.2816 -2678,1997/5/1,2.2,0,210.1734552,0,0,1.946869363,0.382716044,0.382716044,0.355435592,0.058147481,39.94737547,0.359856295,0.359856295,0.359856295,1.161706673,0.418003776,1.579710449,1.1184 -2679,1997/5/2,1.9,10.6,214.6100936,8.7,4.861659729,1.9,0.425021335,4.263361606,1.877682082,0.123708253,40.8611025,0.346128104,0.346128104,0.346128104,1.310083155,0.469836357,1.779919512,1.1184 -2680,1997/5/3,1.7,0,212.6911226,0,0,1.512685943,0.406285017,0.406285017,2.313099761,0.295904479,42.02602395,0.374639241,0.374639241,0.374639241,1.522817555,0.67054372,2.193361275,1.452 -2681,1997/5/4,1.6,0,210.8844246,0,0,1.417440671,0.389257342,0.389257342,0.358928895,0.085746006,41.3943128,0.413372942,0.413372942,0.413372942,1.404012986,0.499118948,1.903131934,1.452 -2682,1997/5/5,1.9,0.2,209.012852,0,0,1.699344687,0.372227898,0.372227898,0.343603289,0.038752777,40.82587342,0.392030948,0.392030948,0.392030948,1.304073613,0.430783725,1.734857338,1.2 -2683,1997/5/6,1.8,26.4,221.922782,24.6,13.41282653,1.8,0.502896497,11.69006997,4.806668724,0.285849471,44.04285288,0.373509953,0.373509953,0.373509953,1.963199218,0.659359424,2.622558642,1.2 -2684,1997/5/7,1.6,34.5,237.1199465,32.9,15.89871441,1.6,0.701549939,17.70283553,12.89669798,1.16750181,52.21881156,0.487070731,0.487070731,0.487070731,5.207810036,1.654572541,6.862382576,3.6 -2685,1997/5/8,2,26.2,246.589197,24.2,10.32359924,2,0.854348705,14.73074947,14.75828449,1.634130955,57.7839472,0.883939264,0.883939264,0.883939264,10.07708812,2.518070219,12.59515834,17.16 -2686,1997/5/9,2.2,12.7,249.8392154,10.5,4.162598479,2.2,0.912580132,7.249981653,10.30203324,1.343926449,58.4315704,1.25994968,1.25994968,1.25994968,10.91435972,2.603876129,13.51823585,23.88 -2687,1997/5/10,1.5,10,252.1375934,8.5,3.254040437,1.5,0.955662458,6.201622021,6.110777886,0.79021682,56.8528631,1.310069807,1.310069807,1.310069807,8.999554991,2.100286627,11.09984162,19.44 -2688,1997/5/11,1.6,6.1,252.8574561,4.5,1.689351399,1.6,0.969488613,3.780137214,4.624734399,0.579375527,55.24221393,1.190312995,1.190312995,1.190312995,7.42569657,1.769688522,9.195385092,15.72 -2689,1997/5/12,2.1,2.8,252.1640655,0.7,0.262777402,2.1,0.956168062,1.39339066,2.459123166,0.354184446,53.04313977,1.076407578,1.076407578,1.076407578,5.734604903,1.430592024,7.165196927,12.84 -2690,1997/5/13,2,8.4,253.5712994,6.4,2.39059212,2,0.983358246,4.992766125,2.676159789,0.246494972,51.73277615,0.933749246,0.933749246,0.933749246,4.920272653,1.180244218,6.100516871,9.84 -2691,1997/5/14,2.3,0.6,251.0121927,0,0,2.224739966,0.934366689,0.934366689,2.890021434,0.367743291,50.97514194,0.855476786,0.855476786,0.855476786,4.503132429,1.223220077,5.726352506,8.808 -2692,1997/5/15,2.7,0.4,247.9445358,0,0,2.589400493,0.878256413,0.878256413,0.818760906,0.140070773,49.02499247,0.81242361,0.81242361,0.81242361,3.581333988,0.952494383,4.533828371,6.648 -2693,1997/5/16,2.6,2.4,246.8950301,0,0,2.58980864,0.859697046,0.859697046,0.783097971,0.088080063,47.52084017,0.708743939,0.708743939,0.708743939,2.995994211,0.796824002,3.792818212,5.64 -2694,1997/5/17,2.9,0.4,243.7245392,0,0,2.764947548,0.805543313,0.805543313,0.752331256,0.084999948,46.31603732,0.635509971,0.635509971,0.635509971,2.592644074,0.720509919,3.313153993,4.824 -2695,1997/5/18,2.8,5.6,244.0820675,2.8,1.169036887,2.8,0.811508637,2.44247175,1.371737106,0.117123514,45.82548918,0.580881929,0.580881929,0.580881929,2.443167183,0.698005443,3.141172626,4.56 -2696,1997/5/19,2.7,4.5,244.021826,1.8,0.750259562,2.7,0.810501026,1.860241464,1.968186143,0.212161009,45.89072496,0.559632421,0.559632421,0.559632421,2.462582777,0.77179343,3.234376207,4.272 -2697,1997/5/20,2.8,9.5,245.9408125,6.7,2.762085173,2.8,0.843098677,4.781013504,2.828210235,0.257001886,46.59880844,0.562425752,0.562425752,0.562425752,2.682552507,0.819427638,3.501980146,4.032 -2698,1997/5/21,2.6,6.9,246.8259935,4.3,1.743668392,2.6,0.858487395,3.414819004,3.763130497,0.413665334,47.84231578,0.593389454,0.593389454,0.593389454,3.113012612,1.007054788,4.1200674,3.672 -2699,1997/5/22,2.6,0.3,243.8426446,0,0,2.475838928,0.807509964,0.807509964,2.043192855,0.300364948,47.53509735,0.650684796,0.650684796,0.650684796,3.001096081,0.951049745,3.952145825,3.672 -2700,1997/5/23,2.8,0,240.4545387,0,0,2.635499041,0.752606891,0.752606891,0.705066821,0.110297101,46.29139945,0.636177551,0.636177551,0.636177551,2.58494228,0.746474652,3.331416931,3.432 -2701,1997/5/24,3.3,0,236.671996,0,0,3.087633254,0.694909487,0.694909487,0.65455002,0.074641793,45.24839633,0.579801145,0.579801145,0.579801145,2.277354283,0.654442938,2.93179722,2.76 -2702,1997/5/25,3.6,0,232.6884744,0,0,3.34546609,0.638055448,0.638055448,0.60295557,0.06892352,44.34791153,0.53535166,0.53535166,0.53535166,2.03879203,0.60427518,2.64306721,1.92 -2703,1997/5/26,4,1.5,229.7809286,0,0,3.808572404,0.598973426,0.598973426,0.558808635,0.063618262,43.55761566,0.498981089,0.498981089,0.498981089,1.848085597,0.562599351,2.410684948,2.3256 -2704,1997/5/27,3.3,5.9,230.4264316,2.6,1.252981818,3.3,0.607478829,1.954497011,1.074641548,0.090111945,43.30928289,0.4685461,0.4685461,0.4685461,1.79152041,0.558658045,2.350178455,2.64 -2705,1997/5/28,2.9,7.4,231.9449667,4.5,2.146406757,2.9,0.627871617,2.98146486,2.164800829,0.202004261,43.98435458,0.459262999,0.459262999,0.459262999,1.948992141,0.66126726,2.610259402,2.64 -2706,1997/5/29,3,0,228.5961436,0,0,2.765211253,0.583611827,0.583611827,1.735929913,0.233401559,44.2026225,0.484810219,0.484810219,0.484810219,2.002472217,0.718211778,2.720683996,2.544 -2707,1997/5/30,2.8,0,225.4866647,0,0,2.564680623,0.544798354,0.544798354,0.509915481,0.085790075,43.39496039,0.493282956,0.493282956,0.493282956,1.810860547,0.579073031,2.389933578,2.124 -2708,1997/5/31,3.5,0,221.8013852,0,0,3.183763165,0.501516296,0.501516296,0.473217825,0.053987585,42.67641563,0.462450784,0.462450784,0.462450784,1.654213363,0.516438369,2.170651732,1.5456 -2709,1997/6/1,3.9,1,218.7148253,0,0,3.619125414,0.467434528,0.467434528,0.437898995,0.049914028,42.02742436,0.436200099,0.436200099,0.436200099,1.523090363,0.486114126,2.009204489,0.8856 -2710,1997/6/2,3.9,1,215.6775814,0,0,3.601503097,0.435740799,0.435740799,0.408168916,0.046449757,41.43719918,0.413421155,0.413421155,0.413421155,1.41181525,0.459870912,1.871686163,1.3656 -2711,1997/6/3,4.1,0.2,211.8087382,0,0,3.670947616,0.397895555,0.397895555,0.377214106,0.043117193,40.89242181,0.393454356,0.393454356,0.393454356,1.315445836,0.436571549,1.752017386,1.452 -2712,1997/6/4,4,2.4,210.0130318,0,0,3.814454072,0.381252352,0.381252352,0.351530284,0.039870603,40.38822015,0.375645244,0.375645244,0.375645244,1.231377188,0.415515847,1.646893035,1.1184 -2713,1997/6/5,4.1,8.2,211.9296811,4.1,2.315686433,4.1,0.399037138,2.183350705,1.055133655,0.077877468,40.54588415,0.359682646,0.359682646,0.359682646,1.257152301,0.437560114,1.694712416,1.1184 -2714,1997/6/6,3.6,7.3,213.5771944,3.7,2.062365365,3.6,0.414852032,2.052486667,1.913311384,0.194208303,41.41588386,0.364621015,0.364621015,0.364621015,1.407932688,0.558829318,1.966762006,0.8856 -2715,1997/6/7,3.3,7.8,215.6155231,4.5,2.473440438,3.3,0.435111734,2.461671296,2.008906228,0.21577373,42.25045085,0.392746436,0.392746436,0.392746436,1.567085677,0.608520165,2.175605842,0.8856 -2716,1997/6/8,2.4,0,213.0666404,0,0,2.138984504,0.409898184,0.409898184,1.404851411,0.196304898,42.46582978,0.421150867,0.421150867,0.421150867,1.610623348,0.617455765,2.228079113,1.452 -2717,1997/6/9,2.6,0.6,210.9045638,0,0,2.372632687,0.389443933,0.389443933,0.36082691,0.064739944,41.7798507,0.428712981,0.428712981,0.428712981,1.475518966,0.493452925,1.968971891,1.2816 -2718,1997/6/10,2.9,11.3,215.146041,8.4,4.671853588,2.9,0.430376361,4.158522774,1.839657326,0.121916655,42.42265589,0.404959952,0.404959952,0.404959952,1.601812089,0.526876607,2.128688696,1.2 -2719,1997/6/11,2.9,0,212.1643204,0,0,2.580461231,0.401259412,0.401259412,2.258180881,0.28892733,43.31518039,0.427189405,0.427189405,0.427189405,1.792845788,0.716116735,2.508962523,1.3656 -2720,1997/6/12,3.3,0,208.8787786,0,0,2.914510394,0.37103134,0.37103134,0.349190392,0.083776477,42.50516464,0.459481922,0.459481922,0.459481922,1.618688059,0.543258399,2.161946458,1.2816 -2721,1997/6/13,3.2,0,205.731167,0,0,2.803796032,0.343815631,0.343815631,0.323175309,0.036862277,41.78243553,0.430104456,0.430104456,0.430104456,1.476008872,0.466966733,1.942975605,0.6048 -2722,1997/6/14,3.3,5.1,206.4341134,1.8,1.052696176,3.3,0.349749796,1.09705362,0.607037339,0.05123608,41.39109198,0.405047647,0.405047647,0.405047647,1.403428541,0.456283727,1.859712268,0.6696 -2723,1997/6/15,3.1,0,203.4096233,0,0,2.699700527,0.324789513,0.324789513,0.68222776,0.083870384,41.11171456,0.391924197,0.391924197,0.391924197,1.353529379,0.475794581,1.82932396,0.54 -2724,1997/6/16,2.7,0,200.7714977,0,0,2.333920578,0.304205095,0.304205095,0.284177679,0.041135394,40.52493461,0.382743255,0.382743255,0.382743255,1.253700881,0.423878648,1.677579529,0.6048 -2725,1997/6/17,3,0,197.9144085,0,0,2.573981594,0.28310756,0.28310756,0.265448971,0.030200205,39.98658312,0.363962058,0.363962058,0.363962058,1.167762518,0.394162263,1.561924781,0.54 -2726,1997/6/18,3.6,0,194.5921977,0,0,3.06214111,0.260069668,0.260069668,0.245694558,0.028053912,39.48700661,0.347318579,0.347318579,0.347318579,1.092589647,0.375372491,1.467962138,0.54 -2727,1997/6/19,2.9,33,212.0927377,30.1,17.90112038,2.9,0.400580399,12.59946001,5.109338619,0.297127421,43.16856136,0.332366869,0.332366869,0.332366869,1.760150743,0.629494291,2.389645033,0.7392 -2728,1997/6/20,3,0.7,209.6813497,0,0,2.733147591,0.378240372,0.378240372,6.510926869,0.846157791,47.23734852,0.454061309,0.454061309,0.454061309,2.896201019,1.300219101,4.196420119,1.452 -2729,1997/6/21,3.3,7.6,211.7177815,4.3,2.43347055,3.3,0.397038744,2.263568194,1.08530672,0.223346739,46.34368343,0.62233937,0.62233937,0.62233937,2.601311179,0.845686109,3.446997287,0.7392 -2730,1997/6/22,2.9,5.8,212.9308624,2.9,1.621669662,2.9,0.408588783,1.686919121,1.809378075,0.191463476,46.1836526,0.582096387,0.582096387,0.582096387,2.551505291,0.773559864,3.325065155,0.8088 -2731,1997/6/23,2.9,6.9,214.7164256,4,2.211642676,2.9,0.42607949,2.214436813,1.726648673,0.18707206,45.99229993,0.575091508,0.575091508,0.575091508,2.493092854,0.762163568,3.255256422,0.8856 -2732,1997/6/24,3.1,1,212.4442048,0,0,2.868297587,0.403923202,0.403923202,1.277661675,0.175481425,45.49098298,0.566794895,0.566794895,0.566794895,2.345773515,0.74227632,3.088049835,1.0392 -2733,1997/6/25,3.2,0,209.2415316,0,0,2.828397332,0.374275936,0.374275936,0.351817279,0.061095189,44.3491586,0.545464646,0.545464646,0.545464646,2.039106305,0.606559836,2.64566614,0.8856 -2734,1997/6/26,3.5,1.6,207.2164449,0,0,3.268636052,0.356450579,0.356450579,0.32980556,0.037386004,43.37227297,0.499030201,0.499030201,0.499030201,1.805721398,0.536416205,2.342137603,0.8088 -2735,1997/6/27,3.1,0,204.1803273,0,0,2.705108138,0.331009506,0.331009506,0.31075378,0.035296873,42.52239914,0.461605124,0.461605124,0.461605124,1.622232734,0.496901997,2.119134732,0.7392 -2736,1997/6/28,3.2,0,201.1034144,0,0,2.77017713,0.306735706,0.306735706,0.288318003,0.032868208,41.7681325,0.430715144,0.430715144,0.430715144,1.473299781,0.463583352,1.936883133,0.7392 -2737,1997/6/29,3.6,0,197.7322187,0,0,3.089392531,0.281803175,0.281803175,0.26621132,0.030412601,41.08931099,0.404562557,0.404562557,0.404562557,1.349595386,0.434975159,1.784570545,0.6696 -2738,1997/6/30,4.3,9.5,200.6129085,5.2,3.18369164,4.3,0.303001907,2.319310268,1.058639062,0.073197519,41.16673145,0.382013745,0.382013745,0.382013745,1.363232346,0.455211264,1.81844361,0.6696 -2739,1997/7/1,4.4,0,196.5720196,0,0,3.767279406,0.273609476,0.273609476,1.279125655,0.162997268,41.42145034,0.384538949,0.384538949,0.384538949,1.40894572,0.547536217,1.956481937,0.8856 -2740,1997/7/2,4.2,0,192.7676927,0,0,3.556253555,0.248073347,0.248073347,0.236159233,0.050927905,40.75798136,0.392931221,0.392931221,0.392931221,1.292559431,0.443859125,1.736418556,0.8088 -2741,1997/7/3,4.6,0.3,188.9432604,0,0,3.900065712,0.224366566,0.224366566,0.21389949,0.024588157,40.14993537,0.371340498,0.371340498,0.371340498,1.193285978,0.395928655,1.589214633,0.6696 -2742,1997/7/4,4.1,13.5,194.7015457,9.4,6.019088473,4.1,0.260803163,3.64171469,1.552119384,0.097726812,40.76125256,0.352309991,0.352309991,0.352309991,1.29311219,0.450036803,1.743148993,0.54 -2743,1997/7/5,3.9,0.6,191.6782439,0,0,3.382177132,0.241124651,0.241124651,1.93397475,0.249223856,41.62099149,0.37144482,0.37144482,0.37144482,1.445680635,0.620668676,2.066349312,0.96 -2744,1997/7/6,3.9,0,188.2021161,0,0,3.256137581,0.21999028,0.21999028,0.208662019,0.063755916,40.91067057,0.399596301,0.399596301,0.399596301,1.318579243,0.463352216,1.78193146,0.96 -2745,1997/7/7,3.8,0,184.8617599,0,0,3.139248489,0.201107643,0.201107643,0.190530743,0.021833824,40.26576088,0.376232299,0.376232299,0.376232299,1.211672729,0.398066123,1.609738852,0.8088 -2746,1997/7/8,4,0,181.4102446,0,0,3.268530028,0.182985362,0.182985362,0.173836786,0.019935693,39.67508887,0.355880071,0.355880071,0.355880071,1.120388865,0.375815763,1.496204629,0.6048 -2747,1997/7/9,4,0,178.0124133,0,0,3.231383098,0.166448123,0.166448123,0.158152982,0.018149288,39.12977202,0.337940826,0.337940826,0.337940826,1.041410658,0.356090114,1.397500773,0.3624 -2748,1997/7/10,3.7,0,174.9044003,0,0,2.955621056,0.152391948,0.152391948,0.144249732,0.016531328,38.6235811,0.321961242,0.321961242,0.321961242,0.972401894,0.338492571,1.310894465,0.288 -2749,1997/7/11,3.4,0,172.0765993,0,0,2.687355603,0.140445445,0.140445445,0.132432703,0.015142755,38.15198338,0.307618087,0.307618087,0.307618087,0.911648513,0.322760842,1.234409355,0.2424 -2750,1997/7/12,3.8,0,168.9774726,0,0,2.970899362,0.128227288,0.128227288,0.12157352,0.01391726,37.71050489,0.294671344,0.294671344,0.294671344,0.857723351,0.308588604,1.166311955,0.21936 -2751,1997/7/13,4.6,0,165.3122686,0,0,3.550311243,0.114892743,0.114892743,0.110136096,0.012674143,37.29418237,0.282908631,0.282908631,0.282908631,0.809367251,0.295582774,1.104950026,0.17256 -2752,1997/7/14,4.8,6.6,166.5092664,1.8,1.3161168,4.8,0.119119076,0.603002276,0.296254862,0.022360517,37.07744647,0.272127103,0.272127103,0.272127103,0.785117863,0.29448762,1.079605483,0.14856 -2753,1997/7/15,4.1,5.3,167.2610393,1.2,0.873609401,4.1,0.121836487,0.448227085,0.481550572,0.051146061,37.04417859,0.266632043,0.266632043,0.266632043,0.781450491,0.317778105,1.099228595,0.1248 -2754,1997/7/16,3.9,4.1,167.2844663,0.2,0.145348954,3.9,0.121921959,0.176573005,0.296074218,0.040685386,36.84613287,0.265795654,0.265795654,0.265795654,0.759915592,0.30648104,1.066396631,0.1248 -2755,1997/7/17,3.8,0,164.2559901,0,0,2.917212286,0.111263864,0.111263864,0.13311215,0.019427725,36.51506876,0.26085531,0.26085531,0.26085531,0.725031576,0.280283034,1.00531461,0.1248 -2756,1997/7/18,4.3,0.7,161.4224562,0,0,3.431553161,0.10198078,0.10198078,0.096469741,0.011692897,36.17379292,0.252743743,0.252743743,0.252743743,0.690489321,0.26443664,0.95492596,0.1248 -2757,1997/7/19,4.2,0,158.1831024,0,0,3.147214358,0.092139439,0.092139439,0.0878944,0.010091551,35.84749562,0.244572234,0.244572234,0.244572234,0.658763938,0.254663785,0.913427723,0.1128 -2758,1997/7/20,3.5,0.2,155.6553362,0,0,2.642764875,0.085001326,0.085001326,0.080105235,0.009173336,35.53500468,0.236937528,0.236937528,0.236937528,0.6295337,0.246110865,0.875644565,0.102 -2759,1997/7/21,3.2,0,153.2334501,0,0,2.343301494,0.078584604,0.078584604,0.073965954,0.008443477,35.23615625,0.229786919,0.229786919,0.229786919,0.602601297,0.238230396,0.840831693,0.102 -2760,1997/7/22,3.8,0,150.411698,0,0,2.750148009,0.071604073,0.071604073,0.067968143,0.00778092,34.94953738,0.223093968,0.223093968,0.223093968,0.577680985,0.230874888,0.808555873,0.09216 -2761,1997/7/23,4.1,0,147.4192172,0,0,2.927727796,0.064753049,0.064753049,0.061736834,0.007092359,34.67357644,0.216806847,0.216806847,0.216806847,0.554504624,0.223899206,0.77840383,0.08256 -2762,1997/7/24,4.2,0,144.4042539,0,0,2.956571442,0.058391792,0.058391792,0.055764419,0.00641648,34.40733209,0.21087409,0.21087409,0.21087409,0.532882854,0.21729057,0.750173424,0.08256 -2763,1997/7/25,4.7,0.4,141.3694318,0,0,3.382318024,0.052504153,0.052504153,0.050226414,0.005784973,34.15015237,0.205261019,0.205261019,0.205261019,0.512667154,0.211045992,0.723713146,0.08256 -2764,1997/7/26,4.5,0,138.2498039,0,0,3.072670448,0.046957425,0.046957425,0.045062232,0.005198106,33.90142986,0.199941176,0.199941176,0.199941176,0.49372592,0.205139283,0.698865203,0.07368 -2765,1997/7/27,3.7,0,135.7176561,0,0,2.489338557,0.0428092,0.0428092,0.040622724,0.00467011,33.66097369,0.194890665,0.194890665,0.194890665,0.475969558,0.199560775,0.675530333,0.06552 -2766,1997/7/28,4.3,7.9,138.6088414,3.6,2.938756059,4.3,0.047570769,0.708814709,0.301666127,0.018948619,33.67569396,0.190095284,0.190095284,0.190095284,0.477041138,0.209043904,0.686085041,0.05808 -2767,1997/7/29,3.6,1.2,136.9425507,0,0,2.821513248,0.044777512,0.044777512,0.375573051,0.048450896,33.75854377,0.1903864,0.1903864,0.1903864,0.483109641,0.238837297,0.721946938,0.05112 -2768,1997/7/30,3.1,1.8,136.0269221,0,0,2.672329062,0.043299497,0.043299497,0.039715798,0.012277118,33.52418364,0.192030825,0.192030825,0.192030825,0.466106752,0.204307943,0.670414695,0.05112 -2769,1997/7/31,3.2,0.1,133.9235835,0,0,2.163286729,0.04005188,0.04005188,0.037686418,0.004276098,33.29903364,0.187405236,0.187405236,0.187405236,0.450241655,0.191681334,0.64192299,0.05808 -2770,1997/8/1,3.3,0,131.716197,0,0,2.170530109,0.036856376,0.036856376,0.034784152,0.003973351,33.08151367,0.183036916,0.183036916,0.183036916,0.435341038,0.187010267,0.622351305,0.06552 -2771,1997/8/2,3.5,0,129.409455,0,0,2.273003489,0.033738519,0.033738519,0.031938877,0.00365489,32.87102625,0.178886179,0.178886179,0.178886179,0.421312479,0.182541069,0.603853548,0.08256 -2772,1997/8/3,3.4,3.4,129.3757604,0,0,3.4,0.033694597,0.033694597,0.030347313,0.003409661,32.66816042,0.174934071,0.174934071,0.174934071,0.408147216,0.178343733,0.586490949,0.08256 -2773,1997/8/4,3.4,0,127.1658053,0,0,2.179042984,0.030912105,0.030912105,0.029225778,0.003308903,32.47278021,0.171184469,0.171184469,0.171184469,0.395790459,0.174493372,0.570283831,0.102 -2774,1997/8/5,3.5,3.1,126.8807499,0,0,3.354488345,0.030567025,0.030567025,0.027684553,0.003116454,32.28394992,0.167627836,0.167627836,0.167627836,0.384142676,0.17074429,0.554886966,0.1128 -2775,1997/8/6,2.5,9.4,132.6084412,6.9,5.765813682,2.5,0.038122457,1.172308775,0.478610895,0.028121923,32.5275772,0.164240898,0.164240898,0.164240898,0.399224512,0.192362821,0.591587332,0.1128 -2776,1997/8/7,2.7,0,130.8079499,0,0,1.764888855,0.035602387,0.035602387,0.60596676,0.078814316,32.88024496,0.168619963,0.168619963,0.168619963,0.421918966,0.247434279,0.669353245,0.19536 -2777,1997/8/8,3.3,0,128.6423323,0,0,2.132867813,0.032749815,0.032749815,0.0309151,0.016904203,32.67751892,0.175105843,0.175105843,0.175105843,0.408746984,0.192010046,0.60075703,0.21936 -2778,1997/8/9,4.1,0,125.9997914,0,0,2.61302085,0.029520005,0.029520005,0.028198739,0.003237732,32.48078335,0.171356169,0.171356169,0.171356169,0.39629048,0.174593901,0.570884381,0.1128 -2779,1997/8/10,3.3,0.2,124.0239016,0,0,2.148613973,0.027275873,0.027275873,0.02568135,0.002940836,32.2897415,0.167772476,0.167772476,0.167772476,0.384495674,0.170713312,0.555208986,0.102 -2780,1997/8/11,3.7,0.1,121.7653238,0,0,2.333697623,0.024880146,0.024880146,0.023601737,0.00270147,32.104359,0.164344045,0.164344045,0.164344045,0.373328284,0.167045515,0.540373798,0.09216 -2781,1997/8/12,3.2,0.1,119.8439541,0,0,1.998392307,0.022977446,0.022977446,0.021640377,0.002474507,31.92432465,0.161065303,0.161065303,0.161065303,0.36274003,0.16353981,0.52627984,0.09216 -2782,1997/8/13,3.7,0.1,117.6474307,0,0,2.275576548,0.020946839,0.020946839,0.019877411,0.002275614,31.74943595,0.157926132,0.157926132,0.157926132,0.352692235,0.160201746,0.512893981,0.102 -2783,1997/8/14,4.1,1.5,116.0759272,0,0,3.051919209,0.01958425,0.01958425,0.018313797,0.002088725,31.57951817,0.154918767,0.154918767,0.154918767,0.343150347,0.157007492,0.50015784,0.1128 -2784,1997/8/15,3.5,5.1,117.4422562,1.6,1.38709376,3.5,0.020764756,0.233670997,0.1022112,0.006673685,31.49526719,0.152036279,0.152036279,0.152036279,0.338498453,0.158709963,0.497208417,0.102 -2785,1997/8/16,3.4,0,115.3997741,0,0,2.023461832,0.019020271,0.019020271,0.125495689,0.016130549,31.43612049,0.150621345,0.150621345,0.150621345,0.33526374,0.166751894,0.502015634,0.09216 -2786,1997/8/17,3.1,0,113.5613309,0,0,1.820890957,0.017552264,0.017552264,0.016538236,0.004401445,31.27567571,0.149633657,0.149633657,0.149633657,0.326616674,0.154035102,0.480651776,0.08256 -2787,1997/8/18,3.4,0,111.574393,0,0,1.970868765,0.016069116,0.016069116,0.015211047,0.001739986,31.11948867,0.146977697,0.146977697,0.146977697,0.318375785,0.148717683,0.467093468,0.08256 -2788,1997/8/19,3.6,0,109.5027118,0,0,2.05704993,0.014631283,0.014631283,0.013894118,0.001592844,30.96729693,0.144424731,0.144424731,0.144424731,0.310510586,0.146017575,0.456528161,0.07368 -2789,1997/8/20,3.1,0,107.7422735,0,0,1.746946212,0.013492101,0.013492101,0.012718065,0.001455082,30.81898289,0.141967694,0.141967694,0.141967694,0.302999801,0.143422775,0.446422576,0.06552 -2790,1997/8/21,3.3,0,105.8949349,0,0,1.834964437,0.012374161,0.012374161,0.011701194,0.001338108,30.67446124,0.139602128,0.139602128,0.139602128,0.295824971,0.140940236,0.436765206,0.06552 -2791,1997/8/22,3.5,0,103.965125,0,0,1.918523182,0.011286758,0.011286758,0.010707113,0.001226733,30.5335296,0.137324266,0.137324266,0.137324266,0.288963018,0.138550999,0.427514017,0.07368 -2792,1997/8/23,3.3,0,102.1717986,0,0,1.782980278,0.010346134,0.010346134,0.009786443,0.001120855,30.39604945,0.135128675,0.135128675,0.135128675,0.28239527,0.13624953,0.4186448,0.05808 -2793,1997/8/24,3.2,3.5,102.4306778,0.3,0.269357133,3.2,0.0104779,0.041120767,0.021470535,0.001721209,30.27386962,0.133011129,0.133011129,0.133011129,0.276661494,0.134732338,0.411393832,0.05808 -2794,1997/8/25,2.5,2.7,102.5995991,0.2,0.179485902,2.5,0.0105646,0.031078699,0.033041082,0.003528692,30.16636443,0.131149234,0.131149234,0.131149234,0.271695509,0.134677926,0.406373435,0.06552 -2795,1997/8/26,2.2,2,102.4814812,0,0,2.107613939,0.010503915,0.010503915,0.01984176,0.002774694,30.04935883,0.129526428,0.129526428,0.129526428,0.266373784,0.132301122,0.398674906,0.07368 -2796,1997/8/27,2.3,0,101.2406998,0,0,1.230898344,0.009883133,0.009883133,0.009208253,0.001279429,29.92550968,0.127776567,0.127776567,0.127776567,0.260833972,0.129055997,0.389889969,0.08256 -2797,1997/8/28,2.5,0,99.90727048,0,0,1.324180184,0.009249089,0.009249089,0.00864431,0.000981718,29.80458079,0.125942824,0.125942824,0.125942824,0.255516018,0.126924542,0.38244056,0.102 -2798,1997/8/29,2.6,0,98.53660492,0,0,1.362033867,0.008631694,0.008631694,0.008080248,0.000918835,29.68642563,0.124170533,0.124170533,0.124170533,0.250405946,0.125089368,0.375495314,0.08256 -2799,1997/8/30,3.1,0,96.92470449,0,0,1.60395213,0.007948303,0.007948303,0.007498518,0.000855451,29.57089011,0.122456169,0.122456169,0.122456169,0.245490204,0.12331162,0.368801824,0.07368 -2800,1997/8/31,3,0.1,95.43645526,0,0,1.580892783,0.007356448,0.007356448,0.006919631,0.000789899,29.45784883,0.120796228,0.120796228,0.120796228,0.240757141,0.121586128,0.362343269,0.07368 -2801,1997/9/1,2.7,1,94.57007912,0,0,1.859347635,0.007028496,0.007028496,0.00649123,0.000735427,29.34732598,0.11918774,0.11918774,0.11918774,0.236201815,0.119923167,0.356124982,0.06552 -2802,1997/9/2,2.9,0.7,93.46093107,0,0,1.802522225,0.006625833,0.006625833,0.006166555,0.000697879,29.23930467,0.117629936,0.117629936,0.117629936,0.231817808,0.118327815,0.350145623,0.06552 -2803,1997/9/3,2.8,1.4,92.75854909,0,0,2.096001439,0.006380539,0.006380539,0.005866334,0.000661948,29.13369636,0.116121497,0.116121497,0.116121497,0.227596138,0.116783445,0.344379583,0.07368 -2804,1997/9/4,2.4,0,91.56951006,0,0,1.183057141,0.005981889,0.005981889,0.005584979,0.000632197,29.03041322,0.114660161,0.114660161,0.114660161,0.223528279,0.115292358,0.338820636,0.07368 -2805,1997/9/5,2.7,3.4,92.20563486,0.7,0.642317406,2.7,0.006192602,0.063875197,0.028257265,0.001873645,28.95145559,0.113243751,0.113243751,0.113243751,0.220458647,0.115117395,0.335576042,0.07368 -2806,1997/9/6,2.3,0.3,91.21791107,0,0,1.281855886,0.00586791,0.00586791,0.034569077,0.004431458,28.88046586,0.1121694,0.1121694,0.1121694,0.217728205,0.116600858,0.334329063,0.07368 -2807,1997/9/7,1.9,0,90.28771297,0,0,0.924623376,0.005574723,0.005574723,0.005165281,0.001264507,28.78282313,0.111209698,0.111209698,0.111209698,0.214017712,0.112474205,0.326491917,0.07368 -2808,1997/9/8,2.3,0,89.17374521,0,0,1.108728597,0.005239162,0.005239162,0.004884671,0.000553565,28.68717398,0.109899279,0.109899279,0.109899279,0.210433099,0.110452844,0.320885943,0.06552 -2809,1997/9/9,2.3,0,88.07158193,0,0,1.097240016,0.004923259,0.004923259,0.004590432,0.00052094,28.5934235,0.108626345,0.108626345,0.108626345,0.206967261,0.109147285,0.316114546,0.06552 -2810,1997/9/10,2.2,0,87.02809833,0,0,1.038845201,0.004638401,0.004638401,0.004318386,0.000489799,28.50151599,0.107388934,0.107388934,0.107388934,0.203614828,0.107878733,0.311493561,0.06552 -2811,1997/9/11,2.6,0,85.80943711,0,0,1.214338639,0.004322579,0.004322579,0.00404978,0.000460268,28.41138128,0.106185654,0.106185654,0.106185654,0.20037014,0.106645921,0.307016061,0.05808 -2812,1997/9/12,2.8,0,84.51378523,0,0,1.291645966,0.004005919,0.004005919,0.003765209,0.000429032,28.32293421,0.105014968,0.105014968,0.105014968,0.197227248,0.105444,0.302671248,0.05808 -2813,1997/9/13,2.5,0.1,83.41610761,0,0,1.193925201,0.00375242,0.00375242,0.00350517,0.000398762,28.23613261,0.103875191,0.103875191,0.103875191,0.194181957,0.104273953,0.29845591,0.05808 -2814,1997/9/14,1.9,0,82.55511154,0,0,0.857433364,0.003562703,0.003562703,0.003302221,0.000374068,28.15096866,0.102765237,0.102765237,0.102765237,0.191231417,0.103139305,0.294370722,0.05808 -2815,1997/9/15,1.7,1.6,82.50664152,0,0,1.644917761,0.003552256,0.003552256,0.003202305,0.000358279,28.06748098,0.101684483,0.101684483,0.101684483,0.188374462,0.102042761,0.290417224,0.05808 -2816,1997/9/16,1.8,0,81.69832539,0,0,0.804934525,0.003381611,0.003381611,0.003129609,0.000351603,27.98563598,0.100632906,0.100632906,0.100632906,0.185607518,0.100984509,0.286592027,0.05808 -2817,1997/9/17,2,0,80.80865634,0,0,0.886467603,0.00320144,0.00320144,0.002972265,0.000336219,27.90529419,0.099609582,0.099609582,0.099609582,0.182923632,0.099945801,0.282869432,0.05808 -2818,1997/9/18,2.6,0,79.66562073,0,0,1.140054297,0.002981318,0.002981318,0.002794326,0.000317437,27.8263825,0.098612303,0.098612303,0.098612303,0.180318323,0.098929741,0.279248064,0.05808 -2819,1997/9/19,2.8,0,78.45060713,0,0,1.21225281,0.002760786,0.002760786,0.002596054,0.000295887,27.7488309,0.097639739,0.097639739,0.097639739,0.17778739,0.097935626,0.275723017,0.05808 -2820,1997/9/20,2.7,0,77.2941847,0,0,1.153859227,0.002563203,0.002563203,0.002406643,0.000274343,27.67260039,0.096690632,0.096690632,0.096690632,0.175327789,0.096964975,0.272292763,0.05112 -2821,1997/9/21,2.7,0,76.15264907,0,0,1.139156209,0.002379425,0.002379425,0.002234272,0.000254617,27.59766189,0.095764134,0.095764134,0.095764134,0.1729369,0.09601875,0.268955651,0.05112 -2822,1997/9/22,2.6,0,75.06725263,0,0,1.083181832,0.002214612,0.002214612,0.002076365,0.000236492,27.52398562,0.094859536,0.094859536,0.094859536,0.170612177,0.095096029,0.265708205,0.05112 -2823,1997/9/23,2.5,0,74.03631606,0,0,1.028869912,0.002066652,0.002066652,0.001934692,0.000220157,27.45154519,0.093976142,0.093976142,0.093976142,0.168351265,0.094196299,0.262547564,0.04488 -2824,1997/9/24,2.5,0,73.01782215,0,0,1.016565566,0.001928351,0.001928351,0.001805344,0.000205375,27.38031201,0.09311331,0.09311331,0.09311331,0.166151825,0.093318685,0.259470509,0.04488 -2825,1997/9/25,2.4,0,72.05160005,0,0,0.964418006,0.00180409,0.00180409,0.001686421,0.000191739,27.31025724,0.09227039,0.09227039,0.09227039,0.164011588,0.092462129,0.256473717,0.03888 -2826,1997/9/26,2.3,0,71.13614953,0,0,0.913758164,0.001692351,0.001692351,0.001579533,0.000179422,27.24135506,0.091446745,0.091446745,0.091446745,0.161928455,0.091626167,0.253554621,0.03888 -2827,1997/9/27,2.3,0,70.23097862,0,0,0.90358353,0.001587381,0.001587381,0.001481643,0.000168249,27.17357814,0.090641787,0.090641787,0.090641787,0.159900351,0.090810035,0.250710386,0.0336 -2828,1997/9/28,2.3,0,69.33600307,0,0,0.893486773,0.001488779,0.001488779,0.001389685,0.000157812,27.10689753,0.089854925,0.089854925,0.089854925,0.157925223,0.090012736,0.24793796,0.0336 -2829,1997/9/29,2.2,0,68.48933955,0,0,0.845263451,0.001400071,0.001400071,0.001304853,0.000148094,27.04128678,0.089085564,0.089085564,0.089085564,0.156001161,0.089233657,0.245234818,0.0288 -2830,1997/9/30,2.1,0,67.68966566,0,0,0.798353673,0.001320219,0.001320219,0.001228514,0.000139301,26.97672206,0.088333151,0.088333151,0.088333151,0.154126388,0.088472451,0.242598839,0.0288 -2831,1997/10/1,2.3,0,66.82348146,0,0,0.864946318,0.00123788,0.00123788,0.001155665,0.000131156,26.91317582,0.087597176,0.087597176,0.087597176,0.152299082,0.087728332,0.240027414,0.02064 -2832,1997/10/2,2.5,0,65.89327235,0,0,0.92905502,0.001154084,0.001154084,0.001080984,0.00012292,26.85061653,0.086877097,0.086877097,0.086877097,0.150517365,0.087000017,0.237517383,0.02064 -2833,1997/10/3,2.5,0,64.97460879,0,0,0.917587719,0.001075844,0.001075844,0.001007763,0.000114679,26.7890171,0.086172343,0.086172343,0.086172343,0.148779545,0.086287022,0.235066567,0.02448 -2834,1997/10/4,2.2,36.5,97.03343303,34.3,32.06681723,2.2,0.007992992,2.241175766,0.886028616,0.04927854,27.58790068,0.085482401,0.085482401,0.085482401,0.172627432,0.134760941,0.307388373,0.02448 -2835,1997/10/5,1.5,1.4,96.9740391,0,0,1.451425365,0.007968556,0.007968556,1.13472108,0.148678637,28.60979481,0.094742158,0.094742158,0.094742158,0.207569112,0.243420794,0.450989907,0.06552 -2836,1997/10/6,1.5,0,96.19774028,0,0,0.768644199,0.007654621,0.007654621,0.007047665,0.027128926,28.52015563,0.107604289,0.107604289,0.107604289,0.20429113,0.134733215,0.339024345,0.08256 -2837,1997/10/7,1.8,0.7,95.62986605,0,0,1.260442932,0.007431305,0.007431305,0.006800927,0.000764263,28.43226724,0.106428907,0.106428907,0.106428907,0.201118223,0.10719317,0.308311393,0.07368 -2838,1997/10/8,1.4,0,94.91335967,0,0,0.709349367,0.007157009,0.007157009,0.0065798,0.000739744,28.34608642,0.105285413,0.105285413,0.105285413,0.198046037,0.106025157,0.304071194,0.05112 -2839,1997/10/9,1.3,0.5,94.50299326,0,0,0.90336281,0.007003599,0.007003599,0.006380696,0.000715569,28.26156942,0.104172685,0.104172685,0.104172685,0.195070373,0.104888254,0.299958627,0.04488 -2840,1997/10/10,1.3,0,93.84383006,0,0,0.652400502,0.006762695,0.006762695,0.006208058,0.000696882,28.17867966,0.103089622,0.103089622,0.103089622,0.192187444,0.103786504,0.295973948,0.04488 -2841,1997/10/11,1.4,0,93.13895049,0,0,0.69836711,0.006512468,0.006512468,0.005987561,0.000673618,28.09731123,0.102035248,0.102035248,0.102035248,0.189391241,0.102708866,0.292100107,0.03888 -2842,1997/10/12,1.4,0,92.43867015,0,0,0.694009069,0.006271264,0.006271264,0.005765921,0.000648904,28.01740723,0.101007739,0.101007739,0.101007739,0.186677659,0.101656643,0.288334302,0.03888 -2843,1997/10/13,1.2,0,91.84119359,0,0,0.59140539,0.006071169,0.006071169,0.00556508,0.000625579,27.93893469,0.100005937,0.100005937,0.100005937,0.184043554,0.100631516,0.28467507,0.03888 -2844,1997/10/14,1.1,0,91.29597898,0,0,0.539321552,0.005893066,0.005893066,0.005393684,0.000605568,27.86187115,0.099029009,0.099029009,0.099029009,0.181486239,0.099634576,0.281120816,0.03888 -2845,1997/10/15,1.1,0,90.75360915,0,0,0.536649767,0.005720065,0.005720065,0.005235407,0.00058761,27.78618016,0.098076275,0.098076275,0.098076275,0.179002671,0.098663885,0.277666555,0.0336 -2846,1997/10/16,1.1,0,90.21407149,0,0,0.533985636,0.005552022,0.005552022,0.005081665,0.000570358,27.71181901,0.0971469,0.0971469,0.0971469,0.176589712,0.097717259,0.27430697,0.03888 -2847,1997/10/17,1.1,0,89.67735349,0,0,0.531329197,0.005388801,0.005388801,0.004932331,0.000553602,27.63874694,0.096239997,0.096239997,0.096239997,0.174244401,0.096793599,0.271038,0.03888 -2848,1997/10/18,1.4,0,88.99975332,0,0,0.672411927,0.005188243,0.005188243,0.00477068,0.000536403,27.5669089,0.095354722,0.095354722,0.095354722,0.171963436,0.095891125,0.267854561,0.03888 -2849,1997/10/19,0.9,0,88.56468301,0,0,0.430007659,0.00506265,0.00506265,0.004619797,0.000518433,27.49627439,0.094490083,0.094490083,0.094490083,0.169744397,0.095008516,0.264752914,0.03888 -2850,1997/10/20,0.9,0,88.13150128,0,0,0.428241697,0.004940031,0.004940031,0.004507938,0.000505055,27.42684188,0.093645404,0.093645404,0.093645404,0.167585848,0.094150459,0.261736307,0.03888 -2851,1997/10/21,1.1,0,87.60568951,0,0,0.52101738,0.004794397,0.004794397,0.004388488,0.000492253,27.3585657,0.092820369,0.092820369,0.092820369,0.165485042,0.093312622,0.258797664,0.03888 -2852,1997/10/22,0.9,0,87.17667392,0,0,0.424337447,0.004678135,0.004678135,0.004269022,0.000478605,27.29140927,0.092014151,0.092014151,0.092014151,0.163439604,0.092492756,0.25593236,0.04488 -2853,1997/10/23,0.7,0,86.84325732,0,0,0.328827255,0.004589347,0.004589347,0.004175241,0.000467236,27.22536252,0.091226046,0.091226046,0.091226046,0.161448034,0.091693282,0.253141316,0.04488 -2854,1997/10/24,0.8,0,86.46426243,0,0,0.374504823,0.004490064,0.004490064,0.004091186,0.000457803,27.16040093,0.090455678,0.090455678,0.090455678,0.159508451,0.090913481,0.250421932,0.04488 -2855,1997/10/25,0.9,0,86.04021186,0,0,0.419669546,0.004381024,0.004381024,0.003997976,0.000447784,27.09648289,0.089702511,0.089702511,0.089702511,0.15761853,0.090150295,0.247768826,0.0336 -2856,1997/10/26,1,0,85.57168876,0,0,0.464260086,0.004263022,0.004263022,0.003896299,0.000436798,27.03356892,0.088965826,0.088965826,0.088965826,0.155776087,0.089402624,0.245178712,0.0336 -2857,1997/10/27,0.7,0,85.24380031,0,0,0.323706485,0.004181964,0.004181964,0.003804694,0.000425915,26.97163899,0.088244943,0.088244943,0.088244943,0.15397957,0.088670858,0.242650428,0.0288 -2858,1997/10/28,0.5,0,85.0091013,0,0,0.230574304,0.004124704,0.004124704,0.003741144,0.000417896,26.91069155,0.08753942,0.08753942,0.08753942,0.152228004,0.087957316,0.24018532,0.05112 -2859,1997/10/29,0.4,0,84.82095065,0,0,0.184071396,0.004079255,0.004079255,0.003694277,0.000412148,26.85071471,0.086849033,0.086849033,0.086849033,0.150520148,0.087261181,0.237781329,0.05112 -2860,1997/10/30,0.5,0,84.58732239,0,0,0.229604881,0.00402338,0.00402338,0.003649253,0.000407235,26.791683,0.086173446,0.086173446,0.086173446,0.148854416,0.086580681,0.235435096,0.05112 -2861,1997/10/31,0.7,1.5,85.32676725,0.8,0.743647214,0.7,0.004202357,0.060555143,0.025956662,0.001643865,26.75531614,0.085512178,0.085512178,0.085512178,0.147835696,0.087156043,0.234991739,0.05112 -2862,1997/11/1,0.7,0.3,85.13795742,0,0,0.484653761,0.004156063,0.004156063,0.032216429,0.004150811,26.72563084,0.085106609,0.085106609,0.085106609,0.147008341,0.08925742,0.236265761,0.05808 -2863,1997/11/2,0.6,0,84.85753458,0,0,0.276334783,0.004088061,0.004088061,0.003713589,0.001079297,26.66868916,0.084776574,0.084776574,0.084776574,0.145431836,0.085855871,0.231287707,0.05808 -2864,1997/11/3,0.6,0.2,84.66969831,0,0,0.383793258,0.004043011,0.004043011,0.003661455,0.000408619,26.61260421,0.084146068,0.084146068,0.084146068,0.143892479,0.084554687,0.228447167,0.06552 -2865,1997/11/4,0.9,7.9,91.13566367,7,6.471806857,0.9,0.0058415,0.534034643,0.213037664,0.012038111,26.76117088,0.083528329,0.083528329,0.083528329,0.147999318,0.09556644,0.243565758,0.06552 -2866,1997/11/5,1.1,14.1,102.9282592,13,11.80333043,1.1,0.010734933,1.207404502,0.746678659,0.061933054,27.42547769,0.085171809,0.085171809,0.085171809,0.167543662,0.147104863,0.314648525,0.07368 -2867,1997/11/6,0.6,0,102.5942935,0,0,0.323403802,0.010561869,0.010561869,0.613793167,0.08652799,27.94773754,0.092804212,0.092804212,0.092804212,0.184337527,0.179332201,0.363669728,0.17256 -2868,1997/11/7,0.6,3.2,104.9093088,2.6,2.326824132,0.6,0.011808787,0.284984655,0.117929742,0.021195586,27.97940724,0.099138257,0.099138257,0.099138257,0.185398303,0.120333843,0.305732146,0.1248 -2869,1997/11/8,1,1.8,105.6105891,0.8,0.713489135,1,0.012208879,0.098719744,0.182893176,0.021173365,28.07326128,0.099532008,0.099532008,0.099532008,0.188571139,0.120705373,0.309276512,0.1248 -2870,1997/11/9,1.2,5.8,109.6755233,4.6,4.079681377,1.2,0.01474713,0.535065754,0.261247468,0.021646592,28.24086714,0.100705461,0.100705461,0.100705461,0.194347067,0.122352052,0.316699119,0.1128 -2871,1997/11/10,0.8,7,115.0922053,6.2,5.435450004,0.8,0.018768068,0.783318064,0.579643307,0.053809343,28.71197807,0.102825559,0.102825559,0.102825559,0.21135794,0.156634902,0.367992843,0.09216 -2872,1997/11/11,0.3,0,114.8967591,0,0,0.17683693,0.0186092,0.0186092,0.402850833,0.058618575,29.00138847,0.10895543,0.10895543,0.10895543,0.222395861,0.167574006,0.389969867,0.1248 -2873,1997/11/12,0.3,0.2,114.8193216,0,0,0.258891,0.018546553,0.018546553,0.016723528,0.010878698,28.91202148,0.11284797,0.11284797,0.11284797,0.218938489,0.123726668,0.342665156,0.1248 -2874,1997/11/13,0.2,1.8,116.191283,1.6,1.391643171,0.2,0.01968179,0.228038619,0.099461921,0.00645373,28.90447058,0.111635568,0.111635568,0.111635568,0.218648384,0.118089298,0.336737682,0.1128 -2875,1997/11/14,0.2,0,116.0529261,0,0,0.118792022,0.019564847,0.019564847,0.122867055,0.015757085,28.9196397,0.111533556,0.111533556,0.111533556,0.219231498,0.127290642,0.346522139,0.102 -2876,1997/11/15,0.1,0,115.9740749,0,0,0.059352752,0.019498449,0.019498449,0.017582128,0.004413816,28.83304085,0.111738556,0.111738556,0.111738556,0.215919529,0.116152372,0.3320719,0.102 -2877,1997/11/16,0.1,0,115.8953212,0,0,0.059321343,0.019432314,0.019432314,0.017522474,0.001949177,28.74841273,0.110571843,0.110571843,0.110571843,0.21272244,0.11252102,0.32524346,0.102 -2878,1997/11/17,0.2,0,115.757448,0,0,0.118556288,0.019316963,0.019316963,0.017443507,0.00194148,28.66566265,0.109440113,0.109440113,0.109440113,0.209633703,0.111381593,0.321015296,0.09216 -2879,1997/11/18,0.1,1.1,116.6056616,1,0.868248969,0.1,0.020035385,0.151786416,0.069723762,0.004840752,28.63522125,0.108341522,0.108341522,0.108341522,0.208506681,0.113182274,0.321688955,0.102 -2880,1997/11/19,0,1.4,117.7968751,1.4,1.212293827,0,0.021080266,0.208786439,0.159128401,0.014867416,28.69168787,0.107939371,0.107939371,0.107939371,0.210601157,0.122806788,0.333407945,0.102 -2881,1997/11/20,0,1.6,119.1553342,1.6,1.380783671,0,0.022324606,0.241540935,0.200849046,0.020925336,28.78704598,0.10868618,0.10868618,0.10868618,0.21417711,0.129611516,0.343788626,0.102 -2882,1997/11/21,0,3.1,121.7912261,3.1,2.66079855,0,0.024906631,0.464108081,0.305322805,0.028653118,28.98073173,0.109955723,0.109955723,0.109955723,0.221592778,0.138608841,0.36020162,0.09216 -2883,1997/11/22,0.1,1.3,122.7901083,1.2,1.024827549,0.1,0.025945334,0.201117785,0.313790162,0.038013193,29.17773972,0.112566897,0.112566897,0.112566897,0.229349071,0.15058009,0.379929161,0.09216 -2884,1997/11/23,0.1,2.9,125.1415449,2.8,2.379964307,0.1,0.028527781,0.448563475,0.278771449,0.028644967,29.33603859,0.115267996,0.115267996,0.115267996,0.235740579,0.143912963,0.379653542,0.09216 -2885,1997/11/24,0.2,0.7,125.5358914,0.5,0.423326879,0.2,0.028980317,0.105653438,0.268223839,0.034411076,29.48005318,0.117471664,0.117471664,0.117471664,0.241680912,0.15188274,0.393563652,0.09216 -2886,1997/11/25,0.1,0.3,125.6759489,0.2,0.169199866,0.1,0.029142416,0.05994255,0.077027783,0.013606356,29.43670333,0.119502476,0.119502476,0.119502476,0.239880104,0.133108831,0.372988935,0.08256 -2887,1997/11/26,0.1,0,125.5838183,0,0,0.063094839,0.029035705,0.029035705,0.041737042,0.005854978,29.36058441,0.118888564,0.118888564,0.118888564,0.236744533,0.124743542,0.361488075,0.08256 -2888,1997/11/27,0,0,125.5548162,0,0,0,0.029002177,0.029002177,0.026118887,0.003267358,29.27140571,0.117816039,0.117816039,0.117816039,0.233113624,0.121083397,0.354197021,0.07368 -2889,1997/11/28,0.2,3.5,128.3034816,3.3,2.780985961,0.2,0.032320542,0.55133458,0.232474763,0.014365773,29.38279289,0.116568313,0.116568313,0.116568313,0.237655891,0.130934085,0.368589976,0.07368 -2890,1997/11/29,0.4,0.4,128.2712017,0,0,0.4,0.032279884,0.032279884,0.291123322,0.037579749,29.54753818,0.118128242,0.118128242,0.118128242,0.24450628,0.155707991,0.400214272,0.07368 -2891,1997/11/30,0.5,0.1,127.9831343,0,0,0.356148532,0.031918863,0.031918863,0.028909256,0.009341916,29.4562206,0.120462686,0.120462686,0.120462686,0.240689516,0.129804601,0.370494117,0.102 -2892,1997/12/1,0.5,0,127.632065,0,0,0.319586034,0.031483262,0.031483262,0.02855487,0.003186584,29.3669353,0.119164684,0.119164684,0.119164684,0.237004859,0.122351268,0.359356127,0.1128 -2893,1997/12/2,0.7,0,127.1548359,0,0,0.446330308,0.030898768,0.030898768,0.028104002,0.003140635,29.27950314,0.117905259,0.117905259,0.117905259,0.233441423,0.121045894,0.354487317,0.1128 -2894,1997/12/3,0.7,0,126.6794368,0,0,0.445073974,0.030325185,0.030325185,0.027582269,0.003084181,29.19377655,0.116681215,0.116681215,0.116681215,0.229990068,0.119765396,0.349755463,0.1128 -2895,1997/12/4,0.7,0,126.2058551,0,0,0.443819375,0.0297623,0.0297623,0.02707027,0.003026929,29.10969136,0.115489888,0.115489888,0.115489888,0.226645347,0.118516817,0.345162164,0.1128 -2896,1997/12/5,0.7,6.8,131.2823919,6.1,5.112789921,0.7,0.036253099,1.023463177,0.419395901,0.024794533,29.4048531,0.114329837,0.114329837,0.114329837,0.238563997,0.13912437,0.377688367,0.1128 -2897,1997/12/6,0.5,0,130.9209171,0,0,0.325718353,0.03575647,0.03575647,0.530875292,0.068946313,29.79889899,0.118438946,0.118438946,0.118438946,0.255268352,0.187385259,0.442653611,0.1248 -2898,1997/12/7,0.5,1.2,131.4667973,0.7,0.582388796,0.5,0.036508571,0.154119775,0.078945999,0.017822955,29.748838,0.124087703,0.124087703,0.124087703,0.253094697,0.141910658,0.395005354,0.1128 -2899,1997/12/8,0.5,7,136.7805193,6.5,5.358235031,0.5,0.044513061,1.18627803,0.546512081,0.036671777,30.14786149,0.123359615,0.123359615,0.123359615,0.270848206,0.160031392,0.430879598,0.1128 -2900,1997/12/9,0.4,1.9,137.9577291,1.5,1.223672963,0.4,0.046463159,0.322790196,0.726487359,0.087500823,30.70620841,0.129248578,0.129248578,0.129248578,0.297389012,0.2167494,0.514138412,0.1248 -2901,1997/12/10,0.2,0,137.7763779,0,0,0.135192835,0.046158368,0.046158368,0.181214319,0.036391153,30.7268362,0.137822353,0.137822353,0.137822353,0.298408878,0.174213506,0.472622384,0.14856 -2902,1997/12/11,0.1,0,137.6628655,0,0,0.067543931,0.045968407,0.045968407,0.041467477,0.007874328,30.61360468,0.138146677,0.138146677,0.138146677,0.29284568,0.146021004,0.438866685,0.14856 -2903,1997/12/12,0.1,0,137.5495826,0,0,0.067503522,0.045779455,0.045779455,0.041296911,0.004594935,30.50374503,0.136373073,0.136373073,0.136373073,0.287529634,0.140968008,0.428497642,0.1248 -2904,1997/12/13,0,0,137.5038792,0,0,0,0.0457034,0.0457034,0.041171459,0.004578506,30.39713761,0.134667888,0.134667888,0.134667888,0.28244677,0.139246394,0.421693164,0.1128 -2905,1997/12/14,0.2,0.3,137.5396538,0.1,0.081537567,0.2,0.045762924,0.064225357,0.048451058,0.004977794,30.3007039,0.133027796,0.133027796,0.133027796,0.27791256,0.13800559,0.41591815,0.102 -2906,1997/12/15,0.3,0.1,137.3592951,0,0,0.23489522,0.045463462,0.045463462,0.050390021,0.005792263,30.20899456,0.131556556,0.131556556,0.131556556,0.27365592,0.137348818,0.411004738,0.102 -2907,1997/12/16,0.3,0,137.1121257,0,0,0.202113861,0.045055621,0.045055621,0.040755978,0.004758677,30.11076288,0.13016821,0.13016821,0.13016821,0.269155866,0.134926887,0.404082753,0.102 -2908,1997/12/17,0.2,0.1,136.9999471,0,0,0.167307108,0.04487149,0.04487149,0.040477308,0.004506332,30.01510106,0.128692767,0.128692767,0.128692767,0.26483189,0.133199099,0.398030989,0.102 -2909,1997/12/18,0.2,1.8,138.2571127,1.6,1.304135512,0.2,0.046969847,0.342834336,0.158109045,0.011029585,30.03476166,0.127267443,0.127267443,0.127267443,0.265715891,0.138297028,0.404012919,0.102 -2910,1997/12/19,0.3,0,138.0074934,0,0,0.203072248,0.046547077,0.046547077,0.191488211,0.024265715,30.08578787,0.127559453,0.127559453,0.127559453,0.268021451,0.151825168,0.419846619,0.09216 -2911,1997/12/20,0.2,0,137.8260235,0,0,0.135228215,0.046241646,0.046241646,0.041771693,0.008142485,29.9920793,0.128319555,0.128319555,0.128319555,0.263799819,0.13646204,0.400261858,0.102 -2912,1997/12/21,0.2,0,137.6449858,0,0,0.135099151,0.045938543,0.045938543,0.041497725,0.004621115,29.90076465,0.126926118,0.126926118,0.126926118,0.259738492,0.131547233,0.391285725,0.102 -2913,1997/12/22,0.5,7.4,143.1607953,6.9,5.571728262,0.5,0.055918749,1.384190488,0.570086165,0.033971965,30.31772119,0.125578709,0.125578709,0.125578709,0.278708336,0.159550674,0.43825901,0.102 -2914,1997/12/23,0.4,4.5,146.3594431,4.1,3.261104545,0.4,0.062456823,0.901352278,1.055002702,0.112037166,31.18284158,0.131815331,0.131815331,0.131815331,0.321697648,0.243852497,0.565550145,0.102 -2915,1997/12/24,0.4,14.5,157.1954989,14.1,10.9253514,0.4,0.089295587,3.263944182,1.744673796,0.147688678,32.66502533,0.145456419,0.145456419,0.145456419,0.407946457,0.293145097,0.701091554,0.17256 -2916,1997/12/25,0.5,15.4,168.1169491,14.9,11.04644077,0.5,0.124990567,3.978549797,3.219889369,0.314215084,35.43557772,0.171126978,0.171126978,0.171126978,0.620463958,0.485342062,1.105806021,1.068 -2917,1997/12/26,0.5,0.3,167.8381289,0,0,0.454864169,0.123955996,0.123955996,2.057750085,0.304818793,36.94975259,0.227544475,0.227544475,0.227544475,0.771119689,0.532363268,1.303482957,0.8856 -2918,1997/12/27,0.4,1.9,168.7955602,1.5,1.084968794,0.4,0.127537517,0.542568723,0.276953698,0.06704609,36.74140682,0.263431894,0.263431894,0.263431894,0.748731362,0.330477984,1.079209346,0.6048 -2919,1997/12/28,0.4,6.8,173.2220412,6.4,4.571671465,0.4,0.145190498,1.973519033,1.05367831,0.080728927,37.24908453,0.258269557,0.258269557,0.258269557,0.804270157,0.338998484,1.143268641,0.3384 -2920,1997/12/29,0.1,0.4,173.288616,0.3,0.212044969,0.1,0.145470189,0.23342522,1.088658443,0.142280058,37.7466819,0.270977103,0.270977103,0.270977103,0.862038183,0.413257161,1.275295344,0.3624 -2921,1997/12/30,0,0,173.1437538,0,0,0,0.144862153,0.144862153,0.175091548,0.041921642,37.38582424,0.283859685,0.283859685,0.283859685,0.819808893,0.325781328,1.14559022,0.3384 -2922,1997/12/31,0,0,172.9994951,0,0,0,0.144258677,0.144258677,0.130137502,0.015517506,37.0124682,0.274474715,0.274474715,0.274474715,0.777968254,0.289992221,1.067960475,0.3384 -2923,1998/1/1,0.2,2.4,174.4009397,2.2,1.551652104,0.2,0.15020749,0.798555386,0.388344523,0.028794755,36.90008124,0.265000167,0.265000167,0.265000167,0.765731647,0.293794922,1.059526569,0.3144 -2924,1998/1/2,0.5,1.3,174.8107308,0.8,0.561774655,0.5,0.15198361,0.390208955,0.557362723,0.063175456,36.94863985,0.26219452,0.26219452,0.26219452,0.770998637,0.325369977,1.096368614,0.3144 -2925,1998/1/3,0.4,6.9,179.1498117,6.5,4.510925336,0.4,0.171844432,2.160919095,1.050793158,0.082703998,37.4371327,0.263404129,0.263404129,0.263404129,0.825704441,0.346108126,1.171812567,0.3144 -2926,1998/1/4,0.1,2.6,180.6799582,2.5,1.709471048,0.1,0.179324516,0.969853468,1.474238765,0.169063992,38.26168223,0.275795394,0.275795394,0.275795394,0.925484621,0.444859386,1.370344007,0.2904 -2927,1998/1/5,0.2,6.6,184.7910771,6.4,4.311841543,0.2,0.200722629,2.288881086,1.394014071,0.139985634,38.93848587,0.29764747,0.29764747,0.29764747,1.014857901,0.437633104,1.452491005,0.2904 -2928,1998/1/6,0.3,0.9,184.9888957,0.6,0.399620197,0.3,0.201801651,0.402181454,1.314560529,0.171918326,39.47822612,0.316486138,0.316486138,0.316486138,1.091306419,0.488404463,1.579710882,0.3384 -2929,1998/1/7,0.2,4.5,187.6140753,4.3,2.84174665,0.2,0.216566991,1.674820341,0.864781149,0.090404658,39.57029005,0.332108269,0.332108269,0.332108269,1.104825486,0.422512927,1.527338413,0.3384 -2930,1998/1/8,0.3,3.6,189.5394863,3.3,2.153348538,0.3,0.227937605,1.374589067,1.388717309,0.145882223,40.10726174,0.334826868,0.334826868,0.334826868,1.186572492,0.480709091,1.667281583,0.3624 -2931,1998/1/9,0.4,8.5,194.4617637,8.1,5.181474295,0.4,0.259196897,3.177722602,1.949545674,0.180578588,41.06284734,0.351001139,0.351001139,0.351001139,1.344961215,0.531579727,1.876540942,0.6792 -2932,1998/1/10,0.4,1.5,194.8922878,1.1,0.692610699,0.4,0.262086614,0.669475915,1.868945497,0.241449928,41.82823359,0.381153309,0.381153309,0.381153309,1.484712549,0.622603237,2.107315786,1.068 -2933,1998/1/11,0.5,15,203.4416759,14.5,8.874434419,0.5,0.325046309,5.95061189,2.689097769,0.212451004,43.1646494,0.406603693,0.406603693,0.406603693,1.759285658,0.619054697,2.378340355,1.692 -2934,1998/1/12,0.4,11.8,209.7055321,11.4,6.642315527,0.4,0.378459322,5.136143794,5.03375535,0.514896879,46.12029416,0.45391731,0.45391731,0.45391731,2.532027903,0.968814189,3.500842092,2.22 -2935,1998/1/13,0.5,4,211.2960918,3.5,1.9836455,0.5,0.393085779,1.909440279,3.347663232,0.452394615,47.16802267,0.572334892,0.572334892,0.572334892,2.872269614,1.024729507,3.896999121,3.024 -2936,1998/1/14,0.6,6.4,214.1099467,5.8,3.233927377,0.6,0.420072465,2.986145088,2.143900774,0.252634152,47.08665704,0.619148507,0.619148507,0.619148507,2.84441491,0.871782659,3.716197569,3.576 -2937,1998/1/15,0.4,7.5,217.5208157,7.1,3.865630248,0.4,0.454761232,3.689130984,2.965279255,0.301346165,47.63153617,0.615418415,0.615418415,0.615418415,3.035818535,0.91676458,3.952583115,3.816 -2938,1998/1/16,0.3,0.2,216.9819624,0,0,0.289720205,0.449133063,0.449133063,2.040099136,0.289504286,47.36987776,0.64070637,0.64070637,0.64070637,2.942463918,0.930210656,3.872674574,3.816 -2939,1998/1/17,0.2,0.2,216.5374301,0,0,0.2,0.444532335,0.444532335,0.402402005,0.083025614,45.92724016,0.628471961,0.628471961,0.628471961,2.473511562,0.711497575,3.185009137,2.808 -2940,1998/1/18,0.4,0.9,216.3655894,0.5,0.270923295,0.4,0.442764043,0.671840748,0.489888328,0.04949691,44.82017067,0.563993636,0.563993636,0.563993636,2.160951456,0.613490546,2.774442002,2.22 -2941,1998/1/19,0.6,5.7,218.6392661,5.1,2.74030098,0.6,0.466624215,2.826323235,1.455889684,0.111793899,44.67196108,0.517827671,0.517827671,0.517827671,2.121926949,0.62962157,2.751548519,1.944 -2942,1998/1/20,0.4,2,219.0192337,1.6,0.850678153,0.4,0.470710546,1.220032393,1.909047571,0.221963959,44.90838468,0.511859239,0.511859239,0.511859239,2.184483204,0.733823198,2.918306402,2.424 -2943,1998/1/21,0.4,1.9,219.3402982,1.5,0.795250261,0.4,0.474185798,1.178935537,1.081791814,0.14004616,44.44754314,0.521403572,0.521403572,0.521403572,2.064036925,0.661449732,2.725486657,2.22 -2944,1998/1/22,0.5,1.9,219.6037178,1.4,0.740472075,0.5,0.477052479,1.136580404,1.044307501,0.117448595,44.03377723,0.502915642,0.502915642,0.502915642,1.960989057,0.620364237,2.581353294,1.944 -2945,1998/1/23,0.7,6.8,222.2837969,6.1,3.187098201,0.7,0.507019063,3.419920862,1.925066968,0.164276773,44.39490018,0.486719534,0.486719534,0.486719534,2.050663556,0.650996307,2.701659863,1.86 -2946,1998/1/24,0.3,4.3,223.8123416,4,2.053321222,0.3,0.524776527,2.471455305,2.703191275,0.294243173,45.30560136,0.500833968,0.500833968,0.500833968,2.293324063,0.795077141,3.088401204,2.316 -2947,1998/1/25,0.2,0.2,223.2936461,0,0,0.2,0.518695524,0.518695524,1.452777048,0.215469074,45.06835754,0.53772426,0.53772426,0.53772426,2.227745123,0.753193333,2.980938456,2.136 -2948,1998/1/26,0.1,0,222.6910993,0,0,0.090843987,0.511702802,0.511702802,0.464063144,0.074747374,44.08649561,0.527933282,0.527933282,0.527933282,1.973858362,0.602680656,2.576539018,2.04 -2949,1998/1/27,0.1,2.1,223.2010881,2,1.027605173,0.1,0.517616393,1.49001122,0.847060802,0.072726566,43.57111357,0.488762084,0.488762084,0.488762084,1.851204925,0.56148865,2.412693575,1.86 -2950,1998/1/28,0.3,4.9,225.0021263,4.6,2.339980213,0.3,0.538942032,2.79896182,1.85817462,0.166194134,43.95616422,0.469054483,0.469054483,0.469054483,1.942178451,0.635248617,2.577427069,1.776 -2951,1998/1/29,0.4,7.1,227.7692542,6.7,3.340207709,0.4,0.573079793,3.932872085,2.967071936,0.289347433,45.15536326,0.483723557,0.483723557,0.483723557,2.251596448,0.77307099,3.024667438,1.86 -2952,1998/1/30,0.2,0.5,227.3494791,0.3,0.148016923,0.2,0.567792016,0.719775093,2.27009464,0.309386454,45.5843648,0.531509063,0.531509063,0.531509063,2.372602161,0.840895517,3.213497678,1.86 -2953,1998/1/31,0.2,2.1,227.714733,1.9,0.937644645,0.2,0.572390775,1.53474613,0.969791487,0.127762089,44.91680784,0.54939368,0.54939368,0.54939368,2.186742132,0.677155769,2.863897901,1.776 -2954,1998/2/1,0.2,3.3,228.6511707,3.1,1.520755881,0.2,0.584318194,2.163562313,1.629715877,0.157665163,44.88898193,0.521745939,0.521745939,0.521745939,2.17928773,0.679411102,2.858698832,1.524 -2955,1998/2/2,0.2,3.7,229.7534726,3.5,1.700915744,0.2,0.598613792,2.397698048,2.039712733,0.214079142,45.18855446,0.520615541,0.520615541,0.520615541,2.260755737,0.734694683,2.99545042,1.44 -2956,1998/2/3,0.4,0.5,229.2104116,0.1,0.048475081,0.4,0.59153614,0.643061059,1.464673558,0.198494255,44.98184981,0.53287771,0.53287771,0.53287771,2.204255921,0.731371965,2.935627885,1.44 -2957,1998/2/4,0.3,0.5,228.7225903,0.2,0.097414782,0.3,0.585236015,0.687821232,0.59643962,0.085983197,44.12048821,0.524395036,0.524395036,0.524395036,1.982196255,0.610378233,2.592574488,1.368 -2958,1998/2/5,0.2,0,227.9633852,0,0,0.183666591,0.575538569,0.575538569,0.574676369,0.065789631,43.37818711,0.490082354,0.490082354,0.490082354,1.807059824,0.555871986,2.36293181,1.212 -2959,1998/2/6,0.1,0.8,227.7351977,0.7,0.344461886,0.1,0.572649323,0.928187436,0.657315774,0.066618776,42.81406568,0.461825464,0.461825464,0.461825464,1.683262668,0.528444239,2.211706908,1.14 -2960,1998/2/7,0,0,227.1696588,0,0,0,0.565538926,0.565538926,0.69208675,0.080699435,42.35850003,0.441144258,0.441144258,0.441144258,1.58879666,0.521843693,2.110640353,1.284 -2961,1998/2/8,0,0,226.6110729,0,0,0,0.558585885,0.558585885,0.506237883,0.060678447,41.80867951,0.424932538,0.424932538,0.424932538,1.480990944,0.485610986,1.966601929,0.9984 -2962,1998/2/9,0,1,226.5509831,1,0.497752186,0,0.55784203,1.060089844,0.700870798,0.066948584,41.49339351,0.405938798,0.405938798,0.405938798,1.422095596,0.472887381,1.894982977,0.6792 -2963,1998/2/10,0,2,226.9816256,2,0.99383318,0,0.563190635,1.569357455,1.155291758,0.111272544,41.60188314,0.395325041,0.395325041,0.395325041,1.442127167,0.506597585,1.948724751,0.6792 -2964,1998/2/11,0,0.2,226.5235221,0.2,0.099398811,0,0.557502355,0.658103545,1.052386523,0.130927405,41.60965306,0.398954572,0.398954572,0.398954572,1.443571175,0.529881978,1.973453153,0.6792 -2965,1998/2/12,0,0,225.9727968,0,0,0,0.5507253,0.5507253,0.54986818,0.074200964,41.19117421,0.399215426,0.399215426,0.399215426,1.367562455,0.47341639,1.840978844,0.6792 -2966,1998/2/13,0,0.2,225.5277895,0.2,0.100290487,0,0.545297753,0.645007266,0.53290343,0.058408469,40.80832695,0.385338663,0.385338663,0.385338663,1.301089352,0.443747132,1.744836484,0.6792 -2967,1998/2/14,0.4,4.3,226.9128189,3.9,1.947362696,0.4,0.562333292,2.514970596,1.319326429,0.10443432,41.14177779,0.3729484,0.3729484,0.3729484,1.35882399,0.47738272,1.83620671,0.6792 -2968,1998/2/15,0.5,5.7,228.8829434,5.2,2.557425495,0.5,0.587300957,3.229875462,2.545931392,0.245134451,42.46166201,0.383723743,0.383723743,0.383723743,1.609770911,0.628858195,2.238629106,0.564 -2969,1998/2/16,0.6,10.4,232.9273607,9.8,4.685772774,0.6,0.641355564,5.75558279,3.904791283,0.369994965,44.67285786,0.428565735,0.428565735,0.428565735,2.122161166,0.7985607,2.920721866,0.564 -2970,1998/2/17,0.6,5.2,234.4071424,4.6,2.141887691,0.6,0.662105902,3.120218212,4.138795503,0.487923578,46.63068409,0.511895204,0.511895204,0.511895204,2.692864475,0.999818782,3.692683257,1.284 -2971,1998/2/18,0.6,2.5,234.6193746,1.9,0.877357935,0.6,0.665125768,1.687767833,2.242237168,0.31166181,46.73941798,0.594811336,0.594811336,0.594811336,2.728314616,0.906473146,3.634787762,1.692 -2972,1998/2/19,0.2,0.1,233.8719748,0,0,0.192859804,0.654539985,0.654539985,1.110764127,0.162992196,45.96500221,0.599679956,0.599679956,0.599679956,2.484859858,0.762672153,3.247532011,1.524 -2973,1998/2/20,0,0,233.2264678,0,0,0,0.645506979,0.645506979,0.585517043,0.077441868,44.92673144,0.565618338,0.565618338,0.565618338,2.189406143,0.643060206,2.832466349,1.284 -2974,1998/2/21,0,0,232.5897719,0,0,0,0.636695913,0.636695913,0.577475026,0.064463848,44.05917605,0.522149498,0.522149498,0.522149498,1.967179918,0.586613347,2.553793265,1.14 -2975,1998/2/22,0.3,8.6,235.7531453,8.3,3.844820209,0.3,0.681446855,5.136626646,2.350942666,0.162546683,44.75429445,0.487702837,0.487702837,0.487702837,2.143527103,0.65024952,2.793776623,1.068 -2976,1998/2/23,1,5.6,237.1341758,4.6,2.082792265,1,0.701761711,3.218969446,3.865300173,0.418497128,46.48783116,0.515168719,0.515168719,0.515168719,2.646932183,0.933665847,3.58059803,1.692 -2977,1998/2/24,0.3,0.2,236.3507242,0,0,0.293273444,0.690178197,0.690178197,1.897950527,0.289007526,46.36593379,0.588458013,0.588458013,0.588458013,2.608305915,0.877465538,3.485771453,1.776 -2978,1998/2/25,0.1,0,235.578664,0,0,0.093145903,0.678914335,0.678914335,0.616710025,0.098595742,45.27965166,0.583075133,0.583075133,0.583075133,2.286067281,0.681670876,2.967738157,1.608 -2979,1998/2/26,0.1,2.1,235.8090097,2,0.912605025,0.1,0.682259309,1.769654284,1.041972719,0.091965962,44.72298221,0.536647058,0.536647058,0.536647058,2.135289229,0.62861302,2.763902249,1.368 -2980,1998/2/27,0.5,1.8,235.7208071,1.3,0.592774332,0.5,0.680976907,1.388202575,1.441977775,0.155728194,44.58066477,0.513908294,0.513908294,0.513908294,2.098203504,0.669636488,2.767839993,1.368 -2981,1998/2/28,0.8,0,234.3160839,0,0,0.743909567,0.660813615,0.660813615,0.96199192,0.127353084,44.07887141,0.50820727,0.50820727,0.50820727,1.971992551,0.635560355,2.607552906,1.44 -2982,1998/3/1,0.8,0.9,233.7102259,0.1,0.046409015,0.8,0.652267024,0.705858009,0.612529215,0.075649092,43.37380003,0.48846631,0.48846631,0.48846631,1.806066904,0.564115401,2.370182305,1.284 -2983,1998/3/2,0.7,1,233.2050107,0.3,0.139993222,0.7,0.645208448,0.805215226,0.674528089,0.072235438,42.82450599,0.46166201,0.46166201,0.46166201,1.685484142,0.533897448,2.21938159,1.212 -2984,1998/3/3,0.5,0,232.1119126,0,0,0.46295132,0.630146796,0.630146796,0.655524392,0.07550696,42.33707955,0.441520883,0.441520883,0.441520883,1.584471714,0.517027843,2.101499557,1.14 -2985,1998/3/4,0.4,0,231.1254686,0,0,0.369644932,0.616799034,0.616799034,0.56185842,0.06478651,41.83677764,0.424180912,0.424180912,0.424180912,1.48634124,0.488967421,1.975308661,1.14 -2986,1998/3/5,1,5.8,232.7593628,4.8,2.272927491,1,0.639033311,3.16610582,1.562346673,0.117794446,42.2408497,0.40689446,0.40689446,0.40689446,1.565169078,0.524688906,2.089857984,0.9288 -2987,1998/3/6,0.9,12.3,237.2902331,11.4,5.234958015,0.9,0.704087655,6.86912964,4.312554711,0.367824653,44.81471642,0.420815999,0.420815999,0.420815999,2.15950399,0.788640652,2.948144642,1.368 -2988,1998/3/7,0.7,0.1,236.0449681,0,0,0.659565486,0.685699545,0.685699545,3.739151902,0.507512963,46.43981911,0.51760715,0.51760715,0.51760715,2.631656355,1.025120114,3.656776469,1.944 -2989,1998/3/8,0.5,0,234.9103579,0,0,0.465325968,0.669284218,0.669284218,0.610643901,0.141138456,45.33517659,0.586333625,0.586333625,0.586333625,2.301620054,0.727472081,3.029092135,1.524 -2990,1998/3/9,0.5,0,233.7925482,0,0,0.464386686,0.653423054,0.653423054,0.596089056,0.066773892,44.4145685,0.538953844,0.538953844,0.538953844,2.055650992,0.605727737,2.661378729,1.44 -2991,1998/3/10,0.5,0,232.6910088,0,0,0.463449042,0.638090387,0.638090387,0.582022817,0.06519284,43.63270461,0.501610996,0.501610996,0.501610996,1.865497704,0.566803836,2.432301539,1.368 -2992,1998/3/11,0.6,0.3,231.7877187,0,0,0.577555361,0.625734658,0.625734658,0.569399602,0.063718684,42.95912368,0.47137924,0.47137924,0.47137924,1.714359771,0.535097923,2.249457694,1.284 -2993,1998/3/12,0.8,0.9,231.2172465,0.1,0.047558939,0.8,0.618031205,0.670472267,0.580836944,0.063701194,42.39098331,0.446397682,0.446397682,0.446397682,1.595374987,0.510098876,2.105473863,1.14 -2994,1998/3/13,0.7,0,229.9701626,0,0,0.645626991,0.601456849,0.601456849,0.576157129,0.065004713,41.89561523,0.426074164,0.426074164,0.426074164,1.497599377,0.491078877,1.988678255,1.068 -2995,1998/3/14,0.8,0,228.6498158,0,0,0.736046057,0.584300793,0.584300793,0.534532816,0.060583109,41.42877008,0.408900824,0.408900824,0.408900824,1.410278789,0.469483933,1.879762722,0.9984 -2996,1998/3/15,0.9,0,227.2573147,0,0,0.825864726,0.566636326,0.566636326,0.518891493,0.058244702,41.00581503,0.393174302,0.393174302,0.393174302,1.335020845,0.451419004,1.786439849,0.864 -2997,1998/3/16,1.3,0,225.5228632,0,0,1.189213624,0.545237911,0.545237911,0.501518196,0.056402291,40.6176063,0.379303676,0.379303676,0.379303676,1.269030602,0.435705968,1.704736569,0.7992 -2998,1998/3/17,1.4,0,223.7230295,0,0,1.276108281,0.523725395,0.523725395,0.482214542,0.054303984,40.25650914,0.366883451,0.366883451,0.366883451,1.210195157,0.421187435,1.631382592,0.7992 -2999,1998/3/18,1.5,6.5,225.7054806,5,2.529910894,1.5,0.547459782,3.017548887,1.456659028,0.107365523,40.77356721,0.35559396,0.35559396,0.35559396,1.295194921,0.462959482,1.758154404,0.6792 -3000,1998/3/19,1.2,1.9,225.5118306,0.7,0.351453927,1.2,0.545103913,0.893649986,1.876644432,0.225722803,41.58335966,0.371837737,0.371837737,0.371837737,1.438689718,0.59756054,2.036250257,0.864 -3001,1998/3/20,1,3.3,226.1120643,2.3,1.152666451,1,0.552432785,1.699766334,1.122780412,0.132108969,41.65285096,0.398333189,0.398333189,0.398333189,1.451622293,0.530442159,1.982064452,0.7992 -3002,1998/3/21,0.9,0.1,224.8445344,0,0,0.830481627,0.537048273,0.537048273,1.070401375,0.134947574,41.66923426,0.400667897,0.400667897,0.400667897,1.454685973,0.53561547,1.990301444,0.7392 -3003,1998/3/22,1,1.6,224.6138312,0.6,0.30358243,1,0.534285607,0.830703176,0.599366076,0.073863909,41.28544534,0.401219749,0.401219749,0.401219749,1.384374752,0.475083658,1.85945841,0.6792 -3004,1998/3/23,1.4,3.6,225.1841465,2.2,1.111451257,1.4,0.541136028,1.629684771,1.063309353,0.097144493,41.34254415,0.388434137,0.388434137,0.388434137,1.394644675,0.48557863,1.880223305,0.6792 -3005,1998/3/24,1.6,3.9,225.7916093,2.3,1.155973044,1.6,0.548510218,1.692537173,1.491549151,0.154924749,41.75381807,0.39031764,0.39031764,0.39031764,1.470592869,0.545242388,2.015835258,0.7992 -3006,1998/3/25,0.9,1.6,225.5966628,0.7,0.351188485,0.9,0.546134941,0.894946457,1.208156435,0.151005403,41.87282261,0.404077496,0.404077496,0.404077496,1.49322939,0.555082899,2.048312288,0.7992 -3007,1998/3/26,1.1,3.7,226.3425789,2.6,1.301184451,1.1,0.555268363,1.854083912,1.184405661,0.119954634,41.95610076,0.408122759,0.408122759,0.408122759,1.509250273,0.528077393,2.037327666,0.7992 -3008,1998/3/27,1.6,0.5,224.8014466,0,0,1.50460089,0.536531426,0.536531426,1.148112326,0.145175964,41.99784635,0.41097074,0.41097074,0.41097074,1.517337473,0.556146704,2.073484177,0.864 -3009,1998/3/28,1.4,2,224.5713641,0.6,0.3036958,1.4,0.533778312,0.830082512,0.598859895,0.075636099,41.57244277,0.412403701,0.412403701,0.412403701,1.436667182,0.4880398,1.924706982,0.6792 -3010,1998/3/29,1.3,1.8,224.2945229,0.5,0.253639617,1.3,0.530480777,0.77684116,0.726038657,0.078377418,41.30802128,0.397967299,0.397967299,0.397967299,1.388427442,0.476344717,1.864772159,0.6192 -3011,1998/3/30,1.3,2.9,224.5723606,1.6,0.811627887,1.3,0.533790212,1.322162325,0.914612657,0.090281836,41.23623554,0.389178066,0.389178066,0.389178066,1.375576464,0.479459902,1.855036365,0.6192 -3012,1998/3/31,1.6,0.6,223.1453189,0,0,1.510074625,0.516967055,0.516967055,0.871814532,0.108110642,41.13690207,0.386816084,0.386816084,0.386816084,1.357964083,0.494926726,1.852890809,0.6192 -3013,1998/4/1,1.4,0,221.3787312,0,0,1.269852948,0.496734756,0.496734756,0.457276584,0.060749279,40.69567356,0.383564604,0.383564604,0.383564604,1.2820697,0.444313883,1.726383583,0.6792 -3014,1998/4/2,1.6,15.6,227.8895259,14,7.085396826,1.6,0.574602103,7.489205277,3.209776623,0.203396339,42.63023992,0.369357419,0.369357419,0.369357419,1.644567685,0.572753757,2.217321443,0.54 -3015,1998/4/3,1,10.1,231.6632666,9.1,4.397788163,1,0.624047542,5.326259379,5.885707662,0.618973389,46.34787156,0.434550448,0.434550448,0.434550448,2.60262647,1.053523837,3.656150307,1.572 -3016,1998/4/4,0.8,0,230.3187979,0,0,0.738414754,0.60605389,0.60605389,2.928686706,0.454528175,47.03274328,0.582280524,0.582280524,0.582280524,2.826095511,1.0368087,3.862904211,1.572 -3017,1998/4/5,0.9,1.6,230.0533409,0.7,0.337094009,0.9,0.602551063,0.965457054,0.687448176,0.124165469,45.87519813,0.612955674,0.612955674,0.612955674,2.457948993,0.737121143,3.195070136,1.176 -3018,1998/4/6,0.7,9,233.3450673,8.3,3.938885489,0.7,0.647159044,5.008273555,2.466222489,0.181046377,46.31184771,0.561760008,0.561760008,0.561760008,2.591332924,0.742806385,3.33413931,1.248 -3019,1998/4/7,0.9,18.6,240.5563907,17.7,7.965535591,0.9,0.754212229,10.48867664,6.672745698,0.57344002,49.69147184,0.580698043,0.580698043,0.580698043,3.873819611,1.154138063,5.027957674,1.728 -3020,1998/4/8,0.8,8,242.8467366,7.2,3.081393054,0.8,0.791047167,4.909654114,7.235544702,0.861771631,52.36964579,0.743043937,0.743043937,0.743043937,5.300414687,1.604815568,6.905230255,2.784 -3021,1998/4/9,1.1,2.1,242.485068,1,0.423467564,1.1,0.785136078,1.361668514,3.016884421,0.478887777,51.49437594,0.892907993,0.892907993,0.892907993,4.785062266,1.37179577,6.156858036,4.536 -3022,1998/4/10,0.8,4.1,243.0855633,3.3,1.395465402,0.8,0.794970175,2.699504773,1.754078871,0.207378054,50.04982542,0.841758054,0.841758054,0.841758054,4.040387443,1.049136108,5.089523551,4.536 -3023,1998/4/11,0.5,0.5,242.3033832,0,0,0.5,0.782180103,0.782180103,1.672021927,0.212086653,48.93875572,0.761968411,0.761968411,0.761968411,3.545060032,0.974055064,4.519115096,4.296 -3024,1998/4/12,0.5,2.8,242.4949599,2.3,0.976873965,0.5,0.785297274,2.108423309,1.227958916,0.129942342,47.78080562,0.704390052,0.704390052,0.704390052,3.090299067,0.834332394,3.924631461,3.456 -3025,1998/4/13,0.8,3.8,242.9712367,3,1.269367064,0.8,0.793090274,2.523723209,2.061665339,0.204316166,47.50123922,0.647761484,0.647761484,0.647761484,2.988993227,0.85207765,3.841070877,3.36 -3026,1998/4/14,1.5,0.8,241.5423381,0,0,1.45900315,0.769895424,0.769895424,1.578415915,0.208977844,46.92457866,0.634592992,0.634592992,0.634592992,2.789669472,0.843570836,3.633240309,3.36 -3027,1998/4/15,1.6,1.7,240.8269025,0.1,0.043053706,1.6,0.758489303,0.815435597,0.710898722,0.098674214,45.8060923,0.608036036,0.608036036,0.608036036,2.43742111,0.706710249,3.144131359,2.808 -3028,1998/4/16,1.6,0.7,239.2488885,0,0,1.544201509,0.733812473,0.733812473,0.701642835,0.079214846,44.88761642,0.558803782,0.558803782,0.558803782,2.178922506,0.638018628,2.816941133,2.616 -3029,1998/4/17,1.5,2.3,238.8733132,0.8,0.352460467,1.5,0.728035719,1.175575252,0.834971066,0.084040608,44.23310377,0.520560114,0.520560114,0.520560114,2.010043826,0.604600722,2.614644548,2.316 -3030,1998/4/18,1.3,5.7,240.0568984,4.4,1.929951007,1.3,0.746365843,3.216414836,1.864350573,0.157143584,44.5115315,0.494474537,0.494474537,0.494474537,2.080397375,0.651618121,2.732015496,2.04 -3031,1998/4/19,1.2,3.4,240.2650826,2.2,0.957812335,1.2,0.749628112,1.991815777,2.410935895,0.270691566,45.17179498,0.505454263,0.505454263,0.505454263,2.256126682,0.776145829,3.032272511,2.316 -3032,1998/4/20,1.6,9.9,243.025285,8.3,3.554180958,1.6,0.793978558,5.539797599,3.194436824,0.291502776,46.30822,0.532186314,0.532186314,0.532186314,2.590198115,0.82368909,3.413887205,2.136 -3033,1998/4/21,2.3,35.1,254.8667022,32.8,12.85035361,2.3,1.008936495,20.95858288,11.07775828,0.850575409,52.55195869,0.580538853,0.580538853,0.580538853,5.414558447,1.431114262,6.845672709,2.712 -3034,1998/4/22,1.3,2.5,254.3068831,1.2,0.43799847,1.3,0.997817516,1.759819045,11.27731927,1.492594588,56.30582016,0.903835008,0.903835008,0.903835008,8.427292795,2.396429596,10.82372239,8.736 -3035,1998/4/23,1.6,13.8,257.6079752,12.2,4.365930155,1.6,1.064838091,8.898907935,4.404481167,0.559119084,54.80723641,1.150706308,1.150706308,1.150706308,7.053771233,1.709825392,8.763596625,7.608 -3036,1998/4/24,1.8,3.7,257.2175794,1.9,0.666331767,1.8,1.056727568,2.2903958,5.398002998,0.660634577,54.47179227,1.047033666,1.047033666,1.047033666,6.780480798,1.707668244,8.488149042,9.36 -3037,1998/4/25,2,11.5,259.4017254,9.5,3.286898972,2,1.102752933,7.315853961,4.046907679,0.417290397,53.49642251,1.02477568,1.02477568,1.02477568,6.047053118,1.442066078,7.489119196,7.872 -3038,1998/4/26,2.1,2.8,258.5568694,0.7,0.239905431,2.1,1.084761432,1.544856001,4.304155142,0.545641166,53.03404605,0.961976746,0.961976746,0.961976746,5.728508351,1.507617912,7.236126263,8.304 -3039,1998/4/27,1.8,0.3,256.0802583,0,0,1.743227349,1.033383724,1.033383724,1.18828838,0.211323338,50.76288888,0.933189079,0.933189079,0.933189079,4.392634632,1.144512417,5.537147049,6.744 -3040,1998/4/28,1.7,8.8,257.5283818,7.1,2.511303954,1.7,1.063180459,5.651876505,2.754805386,0.210746405,50.20412697,0.800645259,0.800645259,0.800645259,4.114212548,1.011391663,5.125604211,5.808 -3041,1998/4/29,1.8,1.8,256.4867041,0,0,1.8,1.041677782,1.041677782,3.265205631,0.409522685,50.15093664,0.770222055,0.770222055,0.770222055,4.08861802,1.17974474,5.26836276,5.664 -3042,1998/4/30,1.8,0.1,253.8664571,0,0,1.731107317,0.989139647,0.989139647,0.916752235,0.157388341,48.47799929,0.76736971,0.76736971,0.76736971,3.3570593,0.924758052,4.281817351,5.04 -3043,1998/5/1,2.5,0.2,250.7390034,0,0,2.398198223,0.929255427,0.929255427,0.866565487,0.098219181,47.15739745,0.68145062,0.68145062,0.68145062,2.868617946,0.7796698,3.648287747,4.536 -3044,1998/5/2,3.2,0,246.8372939,0,0,3.043024231,0.858685305,0.858685305,0.808447705,0.092082844,46.06834622,0.618660494,0.618660494,0.618660494,2.516159429,0.710743338,3.226902767,3.96 -3045,1998/5/3,1.8,2.7,246.3511613,0.9,0.364072001,1.8,0.850204597,1.386132596,0.981210443,0.098278302,45.32177964,0.570081779,0.570081779,0.570081779,2.297858799,0.66836008,2.966218879,3.456 -3046,1998/5/4,2,0.2,243.8414602,0,0,1.902210862,0.807490222,0.807490222,1.018898508,0.119691299,44.73945523,0.53839662,0.53839662,0.53839662,2.139619538,0.658087919,2.797707457,3.096 -3047,1998/5/5,2.7,0,240.5458517,0,0,2.54156255,0.754045991,0.754045991,0.70562544,0.086400586,44.005528,0.514571115,0.514571115,0.514571115,1.954123786,0.600971701,2.555095487,2.352 -3048,1998/5/6,2.4,10.5,243.2084812,8.1,3.459624882,2.4,0.796995353,5.437370472,2.529016347,0.178833588,44.85101774,0.485627542,0.485627542,0.485627542,2.169154144,0.66446113,2.833615274,2.448 -3049,1998/5/7,2.2,2.1,242.3316206,0,0,2.194221656,0.78263893,0.78263893,3.054555352,0.386329944,45.94562001,0.51907611,0.51907611,0.51907611,2.479029198,0.905406054,3.384435252,2.544 -3050,1998/5/8,2.3,0,239.4345315,0,0,2.160407696,0.736681476,0.736681476,0.686217293,0.132154126,44.99012746,0.564784007,0.564784007,0.564784007,2.206493852,0.696938133,2.903431985,2.256 -3051,1998/5/9,2.5,0,236.4069639,0,0,2.336563025,0.691004545,0.691004545,0.644966419,0.073207593,44.1663352,0.524732864,0.524732864,0.524732864,1.993491535,0.597940457,2.591431992,1.884 -3052,1998/5/10,3.1,0,232.8855277,0,0,2.880659474,0.640776669,0.640776669,0.60205911,0.068536697,43.43931605,0.491867081,0.491867081,0.491867081,1.820945348,0.560403778,2.381349126,1.584 -3053,1998/5/11,3.2,0.2,229.5198625,0,0,2.970104383,0.59556087,0.59556087,0.558834287,0.063677598,42.78513695,0.464107309,0.464107309,0.464107309,1.677120697,0.527784907,2.204905604,1.452 -3054,1998/5/12,3.6,1.6,227.11841,0,0,3.436554359,0.564898115,0.564898115,0.523889957,0.059416341,42.19340137,0.440101882,0.440101882,0.440101882,1.55572742,0.499518223,2.055245643,1.404 -3055,1998/5/13,3.3,35.3,241.1478328,32,14.79301166,3.3,0.763588889,17.97057723,7.385367842,0.438904878,47.13648859,0.41916389,0.41916389,0.41916389,2.861444512,0.858068768,3.71951328,1.536 -3056,1998/5/14,2.4,1.8,239.841598,0,0,2.363230691,0.743004111,0.743004111,9.366928954,1.213627562,52.02808689,0.617700961,0.617700961,0.617700961,5.093031612,1.831328523,6.924360135,5.424 -3057,1998/5/15,2.7,1.3,237.8190554,0,0,2.61052685,0.712015693,0.712015693,0.656460201,0.276806205,49.68593817,0.872690969,0.872690969,0.872690969,3.871299888,1.149497174,5.020797062,4.536 -3058,1998/5/16,2.8,7.1,238.9966182,4.3,1.907491012,2.8,0.729928226,3.122437215,1.59316829,0.124475651,48.61137178,0.742754367,0.742754367,0.742754367,3.410489049,0.867230018,4.277719066,3.624 -3059,1998/5/17,3.6,0,234.9673782,0,0,3.359138494,0.670101545,0.670101545,1.841279015,0.229986136,47.97728687,0.688035032,0.688035032,0.688035032,3.163398958,0.918021169,4.081420126,3.6 -3060,1998/5/18,3.8,10.2,237.1737207,6.4,2.908693071,3.8,0.702350518,4.193657447,1.995243399,0.173275382,47.6038503,0.657132399,0.657132399,0.657132399,3.025812368,0.830407781,3.856220149,3.12 -3061,1998/5/19,3.8,0,232.997507,0,0,3.53388648,0.642327215,0.642327215,2.371165979,0.29985677,47.59264784,0.639403877,0.639403877,0.639403877,3.02177231,0.939260647,3.961032957,3.6 -3062,1998/5/20,4,6.4,233.470948,2.4,1.122357219,4,0.648916259,1.926559039,1.085492682,0.134306741,46.62575153,0.638877392,0.638877392,0.638877392,2.691266388,0.773184133,3.464450521,2.64 -3063,1998/5/21,2.9,5.7,234.1151898,2.8,1.302211576,2.9,0.657969747,2.155758172,1.824459347,0.182540328,46.41956549,0.594591149,0.594591149,0.594591149,2.62523654,0.777131477,3.402368017,3.168 -3064,1998/5/22,3.4,0,230.3630164,0,0,3.145534501,0.606638963,0.606638963,1.328127463,0.178869585,45.87518653,0.585439109,0.585439109,0.585439109,2.457945531,0.764308694,3.222254226,2.856 -3065,1998/5/23,3.3,11.3,233.5017339,8,3.78806415,3.3,0.649346595,4.861282445,2.22697876,0.1723237,46.12917498,0.56175951,0.56175951,0.56175951,2.53474982,0.73408321,3.26883303,2.304 -3066,1998/5/24,3.1,0.3,230.3069932,0,0,2.888842999,0.605897773,0.605897773,2.693857533,0.342542725,46.68517607,0.572720711,0.572720711,0.572720711,2.710577153,0.915263436,3.625840589,2.64 -3067,1998/5/25,3.2,0,226.8061739,0,0,2.939812665,0.561006555,0.561006555,0.527571524,0.109793421,45.47016521,0.597247701,0.597247701,0.597247701,2.339830083,0.707041122,3.046871204,1.968 -3068,1998/5/26,3.9,16.1,232.0892975,12.2,5.912961735,3.9,0.629838204,6.916876469,3.016101228,0.196141016,46.40897314,0.544591484,0.544591484,0.544591484,2.621884778,0.740732499,3.362617277,1.848 -3069,1998/5/27,3.3,7.4,233.368573,4.1,1.926762422,3.3,0.647486877,2.820724455,4.606804707,0.526814973,48.30990823,0.584971678,0.584971678,0.584971678,3.290841302,1.111786652,4.402627954,4.152 -3070,1998/5/28,2.7,1.2,231.3605271,0,0,2.588087102,0.619958793,0.619958793,1.669132497,0.282076825,47.62044932,0.673216461,0.673216461,0.673216461,3.031807866,0.955293286,3.987101153,3.336 -3071,1998/5/29,2,3.9,231.6403951,1.9,0.903605875,2,0.623737887,1.620132012,0.953129943,0.109905962,46.54767709,0.640184557,0.640184557,0.640184557,2.666086734,0.75009052,3.416177254,3.168 -3072,1998/5/30,2.1,1.6,230.5694098,0,0,2.061609473,0.609375858,0.609375858,1.058770425,0.128030941,45.77061738,0.591113704,0.591113704,0.591113704,2.426943832,0.719144645,3.146088477,2.856 -3073,1998/5/31,2.4,0,227.7885385,0,0,2.207547605,0.573323661,0.573323661,0.534194085,0.072067348,44.7260159,0.557290551,0.557290551,0.557290551,2.136086114,0.629357899,2.765444013,2.76 -3074,1998/6/1,2.7,3.6,227.6602176,0.9,0.443381619,2.7,0.571702498,1.028320879,0.695760048,0.067744744,43.98633472,0.514030314,0.514030314,0.514030314,1.949471545,0.581775058,2.531246603,2.4 -3075,1998/6/2,2.9,5.7,228.4536123,2.8,1.37518003,2.9,0.581785387,2.006605358,1.3120076,0.118939045,43.86333755,0.484886613,0.484886613,0.484886613,1.91989138,0.603825658,2.523717038,2.472 -3076,1998/6/3,3.2,8.5,230.4162283,5.3,2.569959633,3.2,0.607343634,3.337384001,2.331733561,0.218332967,44.57777283,0.480157638,0.480157638,0.480157638,2.097455925,0.698490605,2.79594653,3.84 -3077,1998/6/4,2.7,8,232.3070875,5.3,2.523674301,2.7,0.632815103,3.409140802,3.031996533,0.319618026,45.70901444,0.508091894,0.508091894,0.508091894,2.408846818,0.82770992,3.236556738,3.288 -3078,1998/6/5,2,11.9,236.2009245,9.9,4.581818029,2,0.687981026,6.006162997,4.094306489,0.397072296,47.40363437,0.554669752,0.554669752,0.554669752,2.954356311,0.951742049,3.90609836,4.296 -3079,1998/6/6,2.1,1.1,234.6054718,0,0,2.03052509,0.664927605,0.664927605,3.295231897,0.45274683,48.1137803,0.630040869,0.630040869,0.630040869,3.215126832,1.082787699,4.297914531,5.424 -3080,1998/6/7,2.4,0,231.7558993,0,0,2.224269534,0.625302954,0.625302954,0.582779184,0.12861878,46.65839867,0.663699004,0.663699004,0.663699004,2.701859823,0.792317783,3.494177606,4.536 -3081,1998/6/8,2.9,0,228.5011891,0,0,2.67231567,0.582394538,0.582394538,0.545819588,0.062055816,45.46259551,0.59604958,0.59604958,0.59604958,2.337672325,0.658105396,2.995777721,4.176 -3082,1998/6/9,3.4,0,224.8520814,0,0,3.11196887,0.537138841,0.537138841,0.506274608,0.05775218,44.44878979,0.544274234,0.544274234,0.544274234,2.064354564,0.602026414,2.666380978,3.384 -3083,1998/6/10,3.8,0.3,221.1780123,0,0,3.479592226,0.494476878,0.494476878,0.466569262,0.053311226,43.5678693,0.502965013,0.502965013,0.502965013,1.85045476,0.556276239,2.406730999,2.76 -3084,1998/6/11,2.8,3.1,220.8439524,0.3,0.156677509,2.8,0.490737365,0.634059856,0.500178218,0.053014701,42.84675329,0.468932256,0.468932256,0.468932256,1.690226491,0.521946957,2.212173448,2.592 -3085,1998/6/12,2.8,0,217.8617643,0,0,2.523836593,0.45835154,0.45835154,0.501231745,0.057902942,42.22775153,0.442324198,0.442324198,0.442324198,1.562557703,0.50022714,2.062784843,2.256 -3086,1998/6/13,3.1,0,214.6611878,0,0,2.775046979,0.425529531,0.425529531,0.399548445,0.047187069,41.60496051,0.420359468,0.420359468,0.420359468,1.442698933,0.467546537,1.91024547,2.064 -3087,1998/6/14,3.2,0,211.4236118,0,0,2.843298173,0.394277813,0.394277813,0.370629058,0.042254101,41.03461493,0.399057872,0.399057872,0.399057872,1.340032506,0.441311973,1.781344479,1.704 -3088,1998/6/15,3.9,0.1,207.7145558,0,0,3.448285571,0.360770436,0.360770436,0.341611305,0.039060896,40.50589235,0.380236892,0.380236892,0.380236892,1.250570775,0.419297788,1.669868563,1.536 -3089,1998/6/16,3.9,7.3,209.2946803,3.4,1.954877776,3.9,0.374753227,1.819875451,0.901183741,0.068499497,40.5178967,0.363363833,0.363363833,0.363363833,1.252543226,0.431863329,1.684406555,1.452 -3090,1998/6/17,3.8,3.7,208.8360234,0,0,3.788006498,0.370650415,0.370650415,1.065301071,0.132968182,40.66928872,0.363740876,0.363740876,0.363740876,1.277649925,0.496709057,1.774358983,1.572 -3091,1998/6/18,3.7,0,205.2564162,0,0,3.239753418,0.339853823,0.339853823,0.321417674,0.053481562,40.16375867,0.368519949,0.368519949,0.368519949,1.195467672,0.42200151,1.617469183,1.284 -3092,1998/6/19,4.2,0,201.3061596,0,0,3.641966752,0.308289781,0.308289781,0.293397524,0.033655784,39.68762746,0.352734715,0.352734715,0.352734715,1.122263452,0.386390499,1.508653951,1.1304 -3093,1998/6/20,4.5,0.1,197.253314,0,0,3.87444819,0.27839746,0.27839746,0.265650381,0.030545125,39.23528368,0.338314774,0.338314774,0.338314774,1.056308937,0.368859899,1.425168836,0.9792 -3094,1998/6/21,4.6,0,193.1024292,0,0,3.900644506,0.250240321,0.250240321,0.239432861,0.027574262,38.80328595,0.325010036,0.325010036,0.325010036,0.996440625,0.352584299,1.349024924,0.8376 -3095,1998/6/22,4.5,0.1,189.1895818,0,0,3.787010975,0.225836402,0.225836402,0.215574329,0.024820466,38.38966526,0.312656706,0.312656706,0.312656706,0.941851723,0.337477171,1.279328895,0.7032 -3096,1998/6/23,4.1,0,185.5882628,0,0,3.396219571,0.205099401,0.205099401,0.195059596,0.022416295,37.99385823,0.301146709,0.301146709,0.301146709,0.89201334,0.323563004,1.215576344,0.576 -3097,1998/6/24,3.6,0,182.449784,0,0,2.950179208,0.18829961,0.18829961,0.177951882,0.020385768,37.6157237,0.290418899,0.290418899,0.290418899,0.846505304,0.310804667,1.157309971,0.516 -3098,1998/6/25,4.3,0,178.7951942,0,0,3.48444269,0.170147143,0.170147143,0.16229763,0.018629661,37.25366271,0.280427732,0.280427732,0.280427732,0.804786358,0.299057392,1.103843751,0.4848 -3099,1998/6/26,4.9,0,174.725299,0,0,3.91828316,0.151611949,0.151611949,0.145809195,0.016821967,36.90436998,0.271093688,0.271093688,0.271093688,0.766195609,0.287915655,1.054111264,0.4536 -3100,1998/6/27,5.2,0,170.4943993,0,0,4.096803412,0.134096363,0.134096363,0.129530367,0.014995341,36.56590281,0.262301194,0.262301194,0.262301194,0.73029873,0.277296535,1.007595265,0.4536 -3101,1998/6/28,5.3,0,166.266123,0,0,4.110025591,0.118250667,0.118250667,0.114426111,0.01326841,36.23747806,0.253977378,0.253977378,0.253977378,0.696828236,0.267245788,0.964074025,0.3936 -3102,1998/6/29,5.2,0,162.1940641,0,0,3.967614156,0.10444474,0.10444474,0.100970895,0.011708918,35.91892878,0.246082575,0.246082575,0.246082575,0.665602753,0.257791493,0.923394246,0.3936 -3103,1998/6/30,4.1,0.6,159.4642082,0,0,3.233919872,0.095936081,0.095936081,0.090638504,0.010420542,35.61156834,0.238594154,0.238594154,0.238594154,0.636593104,0.249014697,0.885607801,0.4536 -3104,1998/7/1,4.1,0,156.3296844,0,0,3.047663039,0.086860683,0.086860683,0.082756793,0.009494759,35.31613652,0.231524436,0.231524436,0.231524436,0.609713046,0.241019195,0.850732241,0.4848 -3105,1998/7/2,4.7,0.5,153.1715559,0,0,3.579702647,0.07842586,0.07842586,0.074842026,0.008607964,35.03116123,0.224871355,0.224871355,0.224871355,0.584688666,0.233479319,0.818167985,0.4536 -3106,1998/7/3,4.2,9,156.7578557,4.8,3.674357846,4.2,0.088058076,1.21370023,0.519128593,0.032861261,35.17193319,0.218584243,0.218584243,0.218584243,0.596940883,0.251445504,0.848386387,0.4536 -3107,1998/7/4,4.3,0,153.5201191,0,0,3.158413397,0.079323203,0.079323203,0.644139396,0.08308087,35.41880212,0.221674032,0.221674032,0.221674032,0.618944501,0.304754902,0.923699403,0.4848 -3108,1998/7/5,4.7,2.8,152.0633541,0,0,4.181138235,0.075626774,0.075626774,0.069930427,0.02123029,35.12322287,0.22716767,0.22716767,0.22716767,0.592677347,0.24839796,0.841075307,0.3936 -3109,1998/7/6,3.8,9,155.9728773,5.2,3.995396085,3.8,0.085872856,1.290476771,0.548049635,0.034272146,35.28494283,0.220601388,0.220601388,0.220601388,0.606931056,0.254873534,0.86180459,0.3936 -3110,1998/7/7,3.3,0,153.474167,0,0,2.419505856,0.079204435,0.079204435,0.682857052,0.088132146,35.56013343,0.224176945,0.224176945,0.224176945,0.631843399,0.312309091,0.94415249,0.4224 -3111,1998/7/8,3.2,0,151.0802478,0,0,2.320708075,0.073211171,0.073211171,0.068916059,0.022074919,35.25512405,0.230356154,0.230356154,0.230356154,0.604281597,0.252431073,0.85671267,0.4536 -3112,1998/7/9,3.4,0,148.5746776,0,0,2.438237037,0.067333135,0.067333135,0.063567648,0.007262782,34.96334482,0.223514575,0.223514575,0.223514575,0.578861456,0.230777357,0.809638813,0.3048 -3113,1998/7/10,3.5,0,146.0325715,0,0,2.480344248,0.061761905,0.061761905,0.058398635,0.006680354,34.68352385,0.217106782,0.217106782,0.217106782,0.555326383,0.223787136,0.779113518,0.3048 -3114,1998/7/11,3.8,0,143.3173866,0,0,2.658959415,0.056225483,0.056225483,0.05339828,0.006120376,34.41454852,0.211085906,0.211085906,0.211085906,0.533459514,0.217206282,0.750665796,0.3336 -3115,1998/7/12,3.8,0.4,140.9166579,0,0,2.749060578,0.051668116,0.051668116,0.048802324,0.005587814,34.15566861,0.205411735,0.205411735,0.205411735,0.513093974,0.210999548,0.724093522,0.3048 -3116,1998/7/13,3.6,0,138.4130899,0,0,2.45633235,0.047235576,0.047235576,0.044750013,0.00512327,33.90637601,0.200054236,0.200054236,0.200054236,0.494096848,0.205177506,0.699274354,0.276 -3117,1998/7/14,3.4,0,136.0790106,0,0,2.290696785,0.043382516,0.043382516,0.040989679,0.004691263,33.66601926,0.194990203,0.194990203,0.194990203,0.476336631,0.199681466,0.676018097,0.1944 -3118,1998/7/15,3.5,0,133.7107872,0,0,2.328488902,0.039734502,0.039734502,0.037602938,0.004303623,33.43411194,0.190195032,0.190195032,0.190195032,0.459705288,0.194498655,0.654203943,0.1188 -3119,1998/7/16,4,0,131.0503674,0,0,2.624486143,0.035933691,0.035933691,0.034259356,0.003933049,33.2099323,0.185648847,0.185648847,0.185648847,0.444087844,0.189581896,0.63366974,0.07248 -3120,1998/7/17,4.4,17,141.3146131,12.6,10.31664808,4.4,0.052402359,2.335754278,0.940996229,0.054119095,33.8429027,0.18132845,0.18132845,0.18132845,0.489354276,0.235447545,0.724801821,0.1188 -3121,1998/7/18,3.6,0,138.8053639,0,0,2.461340066,0.047909194,0.047909194,1.198254391,0.156232833,34.67984993,0.193715602,0.193715602,0.193715602,0.555022762,0.349948436,0.904971198,0.3936 -3122,1998/7/19,3.1,0,136.6670318,0,0,2.094003451,0.044328584,0.044328584,0.041703579,0.031695699,34.4002442,0.211007657,0.211007657,0.211007657,0.532316969,0.242703356,0.775020326,0.3048 -3123,1998/7/20,3.3,0,134.4230421,0,0,2.203184991,0.040804783,0.040804783,0.038503476,0.004397743,34.13255335,0.205113064,0.205113064,0.205113064,0.511307395,0.209510807,0.720818202,0.2496 -3124,1998/7/21,3.8,0,131.8819521,0,0,2.50400094,0.037088996,0.037088996,0.035256202,0.004040479,33.87559788,0.199580775,0.199580775,0.199580775,0.491792444,0.203621254,0.695413698,0.222 -3125,1998/7/22,4.5,0,128.9290665,0,0,2.919769016,0.033116619,0.033116619,0.031810615,0.003665532,33.62818972,0.194371405,0.194371405,0.194371405,0.473590174,0.198036937,0.671627111,0.1692 -3126,1998/7/23,4.3,4.3,128.8959923,0,0,4.3,0.033074142,0.033074142,0.029788174,0.003357581,33.39077467,0.189448074,0.189448074,0.189448074,0.456651305,0.192805655,0.64945696,0.1692 -3127,1998/7/24,3.3,0,126.7561234,0,0,2.10945181,0.030417128,0.030417128,0.028716944,0.003249595,33.16339791,0.184807978,0.184807978,0.184807978,0.440901683,0.188057572,0.628959255,0.1692 -3128,1998/7/25,3.5,0,124.5199243,0,0,2.208373163,0.027825937,0.027825937,0.026351639,0.003016175,32.94405361,0.180440723,0.180440723,0.180440723,0.426136654,0.183456898,0.609593551,0.144 -3129,1998/7/26,3.9,0,122.0689051,0,0,2.425827281,0.025191977,0.025191977,0.024002669,0.00275534,32.7320952,0.176298091,0.176298091,0.176298091,0.412259175,0.179053431,0.591312606,0.144 -3130,1998/7/27,4,0,119.5962207,0,0,2.449943529,0.022740849,0.022740849,0.021704341,0.002496462,32.52697296,0.172359927,0.172359927,0.172359927,0.399186511,0.174856389,0.5740429,0.144 -3131,1998/7/28,4.4,0,116.9253023,0,0,2.650606781,0.020311597,0.020311597,0.019506969,0.002249673,32.32823996,0.168609,0.168609,0.168609,0.386848963,0.170858673,0.557707636,0.1188 -3132,1998/7/29,4.4,0,114.3027596,0,0,2.604409717,0.018132963,0.018132963,0.017419661,0.00201199,32.1355049,0.165030873,0.165030873,0.165030873,0.375185599,0.167042863,0.542228463,0.1188 -3133,1998/7/30,4.4,5.8,115.5032396,1.4,1.219585689,4.4,0.019105718,0.199520029,0.087985443,0.005820425,32.01694714,0.161612865,0.161612865,0.161612865,0.368156064,0.16743329,0.535589354,0.1188 -3134,1998/7/31,4,0,113.1390644,0,0,2.346946949,0.017228251,0.017228251,0.107544794,0.013811395,31.92145432,0.159535633,0.159535633,0.159535633,0.362573243,0.173347028,0.535920271,0.1188 -3135,1998/8/1,4,0,110.8144801,0,0,2.309055139,0.01552915,0.01552915,0.014834113,0.003835522,31.74190038,0.15787644,0.15787644,0.15787644,0.352264497,0.161711962,0.513976459,0.1188 -3136,1998/8/2,4.5,0,108.2479835,0,0,2.5526848,0.013811809,0.013811809,0.013297715,0.001535259,31.56750439,0.154790113,0.154790113,0.154790113,0.342483817,0.156325373,0.49880919,0.1188 -3137,1998/8/3,4.8,0.5,105.8406236,0,0,2.895017436,0.012342454,0.012342454,0.011850088,0.001369184,31.39799619,0.151833938,0.151833938,0.151833938,0.333192225,0.153203122,0.486395347,0.1188 -3138,1998/8/4,3.2,11.7,113.3263804,8.5,7.503128187,3.2,0.017371386,1.014243199,0.406957796,0.023243225,31.60915433,0.148999478,0.148999478,0.148999478,0.344799135,0.172242703,0.517041838,0.1188 -3139,1998/8/5,3.1,0,111.5152264,0,0,1.795127507,0.016026543,0.016026543,0.518424846,0.067696912,31.91775693,0.152536245,0.152536245,0.152536245,0.362358491,0.220233157,0.582591648,0.1188 -3140,1998/8/6,3.7,0,109.3878024,0,0,2.112869269,0.014554655,0.014554655,0.013842347,0.013343544,31.73740234,0.157812447,0.157812447,0.157812447,0.35200938,0.171155991,0.523165372,0.09504 -3141,1998/8/7,3.5,0,107.4054375,0,0,1.96908248,0.013282462,0.013282462,0.012596547,0.001444901,31.56250546,0.154713355,0.154713355,0.154713355,0.342206788,0.156158256,0.498365044,0.1188 -3142,1998/8/8,3.5,0,105.4528318,0,0,1.940487789,0.012117944,0.012117944,0.011494116,0.00131769,31.39283669,0.151749801,0.151749801,0.151749801,0.332912689,0.153067491,0.485980179,0.1188 -3143,1998/8/9,3.6,4,105.796959,0.4,0.356444265,3.6,0.01231701,0.055872745,0.02819361,0.002185944,31.24496166,0.1489138,0.1489138,0.1489138,0.324982435,0.151099744,0.476082179,0.1188 -3144,1998/8/10,3.5,5.4,107.4727616,1.9,1.689126792,3.5,0.013324153,0.224197361,0.11679029,0.008765935,31.18634302,0.146473132,0.146473132,0.146473132,0.32188207,0.155239067,0.477121137,0.1188 -3145,1998/8/11,3.3,39.2,138.0003367,35.9,30.57411004,3.3,0.046535001,5.37242496,2.235835167,0.133437709,33.12912464,0.145513592,0.145513592,0.145513592,0.438567133,0.278951301,0.717518435,0.1188 -3146,1998/8/12,3,0.2,136.0725924,0,0,2.08437197,0.04337228,0.04337228,2.729681051,0.359550916,35.41957972,0.179788888,0.179788888,0.179788888,0.619014863,0.539339804,1.158354667,0.7032 -3147,1998/8/13,3.1,0,133.9686777,0,0,2.063795345,0.040119397,0.040119397,0.037749841,0.067117905,35.09435232,0.227185127,0.227185127,0.227185127,0.590162362,0.294303031,0.884465393,0.3936 -3148,1998/8/14,3.6,0,131.56489,0,0,2.36714266,0.036645053,0.036645053,0.034734748,0.003974044,34.78526486,0.219967386,0.219967386,0.219967386,0.563789595,0.22394143,0.787731025,0.276 -3149,1998/8/15,3.7,1.5,130.0992859,0,0,2.930956183,0.034647877,0.034647877,0.032191465,0.003661646,34.49110805,0.21326107,0.21326107,0.21326107,0.539609346,0.216922715,0.756532061,0.222 -3150,1998/8/16,3.9,0,127.5602624,0,0,2.507628807,0.031394759,0.031394759,0.029897786,0.003416938,34.21065657,0.207015563,0.207015563,0.207015563,0.51736483,0.210432501,0.727797331,0.1944 -3151,1998/8/17,4.2,0.2,124.9983351,0,0,2.7335624,0.028364847,0.028364847,0.027058169,0.003111338,33.94211462,0.201183758,0.201183758,0.201183758,0.496783878,0.204295096,0.701078974,0.1944 -3152,1998/8/18,3.4,13.7,133.5770087,10.3,8.618209578,3.4,0.039536009,1.72132643,0.694415123,0.040032606,34.30729785,0.195710496,0.195710496,0.195710496,0.524942384,0.235743102,0.760685487,0.1944 -3153,1998/8/19,3.1,2.5,133.1422793,0,0,2.895832936,0.038896456,0.038896456,0.884468009,0.115236287,34.82760285,0.203179917,0.203179917,0.203179917,0.567342927,0.318416204,0.885759131,0.1692 -3154,1998/8/20,2.7,0,131.3357974,0,0,1.770154949,0.036326938,0.036326938,0.033991596,0.023676213,34.53278364,0.214170931,0.214170931,0.214170931,0.542981738,0.237847144,0.780828882,0.3936 -3155,1998/8/21,3.2,0,129.2274466,0,0,2.074848965,0.033501805,0.033501805,0.031578037,0.003600989,34.25168351,0.207892365,0.207892365,0.207892365,0.52057054,0.211493354,0.732063893,0.2496 -3156,1998/8/22,3.6,5.6,130.8615952,2,1.669824041,3.6,0.035675491,0.365851449,0.161462505,0.010678552,34.10592015,0.202029464,0.202029464,0.202029464,0.509255321,0.212708016,0.721963337,0.222 -3157,1998/8/23,2.9,1.6,129.983501,0,0,2.443600288,0.034493891,0.034493891,0.198347386,0.025392071,34.00199092,0.19903625,0.19903625,0.19903625,0.501312874,0.224428321,0.725741195,0.222 -3158,1998/8/24,2.7,0.9,128.7894325,0,0,2.061130906,0.032937584,0.032937584,0.030429606,0.007323337,33.74707617,0.196921528,0.196921528,0.196921528,0.482265879,0.204244865,0.686510744,0.2496 -3159,1998/8/25,2.8,0,126.9683562,0,0,1.790403587,0.030672749,0.030672749,0.028748992,0.003262402,33.50303095,0.191802611,0.191802611,0.191802611,0.464596825,0.195065012,0.659661837,0.276 -3160,1998/8/26,3.2,0.9,125.4830756,0,0,2.356361168,0.028919376,0.028919376,0.026912718,0.003055501,33.26879033,0.186991699,0.186991699,0.186991699,0.448145036,0.1900472,0.638192237,0.1692 -3161,1998/8/27,2.3,0.2,124.1372472,0,0,1.518427613,0.027400793,0.027400793,0.025427448,0.002879285,33.04386933,0.182455735,0.182455735,0.182455735,0.432804182,0.18533502,0.618139202,0.1692 -3162,1998/8/28,2,2.4,124.4491813,0.4,0.339681053,2,0.027746948,0.088065896,0.048629411,0.004089585,32.85069596,0.178174734,0.178174734,0.178174734,0.419977518,0.182264319,0.602241837,0.1692 -3163,1998/8/29,1.9,1.7,124.2963726,0,0,1.825231749,0.027576941,0.027576941,0.055360202,0.006763365,32.67220548,0.174555684,0.174555684,0.174555684,0.408406366,0.181319049,0.589725415,0.222 -3164,1998/8/30,2,0,123.023333,0,0,1.246846837,0.026192777,0.026192777,0.024272365,0.003440733,32.47199508,0.171258669,0.171258669,0.171258669,0.395741433,0.174699402,0.570440835,0.222 -3165,1998/8/31,2.1,0,121.6998246,0,0,1.298695136,0.024813274,0.024813274,0.023028459,0.002605323,32.2788077,0.167613651,0.167613651,0.167613651,0.383829481,0.170218975,0.554048456,0.1692 -3166,1998/9/1,2,0,120.4493783,0,0,1.226882361,0.023563954,0.023563954,0.021838341,0.002470176,32.09219069,0.164149354,0.164149354,0.164149354,0.372604714,0.16661953,0.539224244,0.1188 -3167,1998/9/2,2.4,0,118.9677602,0,0,1.459468683,0.022149377,0.022149377,0.02064866,0.002340081,31.91168504,0.160851738,0.160851738,0.160851738,0.362006049,0.163191819,0.525197868,0.1188 -3168,1998/9/3,2.6,0,117.3816259,0,0,1.565423132,0.020711193,0.020711193,0.019366214,0.002200054,31.73678431,0.157707396,0.157707396,0.157707396,0.351974339,0.15990745,0.511881789,0.144 -3169,1998/9/4,2.1,0,116.1095022,0,0,1.25251108,0.0196126,0.0196126,0.018206021,0.002063968,31.56722482,0.154702811,0.154702811,0.154702811,0.342468319,0.156766779,0.499235098,0.1188 -3170,1998/9/5,2.3,0,114.7313724,0,0,1.359654256,0.018475608,0.018475608,0.017202115,0.001949261,31.40280332,0.151829232,0.151829232,0.151829232,0.333452844,0.153778492,0.487231336,0.1188 -3171,1998/9/6,2.8,0,113.0760046,0,0,1.638187522,0.017180278,0.017180278,0.016116264,0.001832539,31.24311455,0.149079336,0.149079336,0.149079336,0.324884368,0.150911875,0.475796243,0.1188 -3172,1998/9/7,2.5,0,111.6129883,0,0,1.446919368,0.016096936,0.016096936,0.015034223,0.001709526,31.0878635,0.146442828,0.146442828,0.146442828,0.316728106,0.148152354,0.464880461,0.1188 -3173,1998/9/8,2.4,0,110.2227618,0,0,1.37510763,0.015118835,0.015118835,0.014100796,0.001601002,30.9369162,0.143911682,0.143911682,0.143911682,0.308959774,0.145512684,0.454472458,0.1188 -3174,1998/9/9,2.2,0,108.9599289,0,0,1.248560714,0.014272144,0.014272144,0.013272425,0.001504835,30.79011412,0.141480816,0.141480816,0.141480816,0.301555321,0.142985651,0.444540972,0.1188 -3175,1998/9/10,1.9,0,107.8772307,0,0,1.069121406,0.013576835,0.013576835,0.012570214,0.001421939,30.64733537,0.139144975,0.139144975,0.139144975,0.294493946,0.140566914,0.43506086,0.09504 -3176,1998/9/11,2.4,0,106.526125,0,0,1.338358226,0.012747456,0.012747456,0.011891465,0.00134768,30.50837449,0.136899703,0.136899703,0.136899703,0.287752044,0.138247383,0.425999427,0.07248 -3177,1998/9/12,2.5,11.3,114.2606168,8.8,7.752591352,2.5,0.018099549,1.065508198,0.427417012,0.024392551,30.76997972,0.134739435,0.134739435,0.134739435,0.300551219,0.159131986,0.459683205,0.07248 -3178,1998/9/13,2.9,0.8,113.0170729,0,0,2.026408382,0.017135542,0.017135542,0.544746778,0.071122638,31.13439825,0.13882677,0.13882677,0.13882677,0.319155014,0.209949407,0.529104421,0.07248 -3179,1998/9/14,2.7,15.7,124.2022299,13,11.21262961,2.7,0.027472618,1.814843012,0.725693703,0.053537854,31.65726918,0.144667058,0.144667058,0.144667058,0.347489836,0.198204912,0.545694748,0.09504 -3180,1998/9/15,2.9,19.4,137.8851974,16.5,13.72930859,2.9,0.046341064,2.817032477,2.029322328,0.182279755,33.38378186,0.15335045,0.15335045,0.15335045,0.456160097,0.335630205,0.791790302,0.276 -3181,1998/9/16,2.7,20.3,151.7993337,17.6,13.98910813,2.7,0.074971868,3.685863742,2.878603184,0.288954045,35.79343051,0.184672552,0.184672552,0.184672552,0.653627079,0.473626598,1.127253676,0.3624 -3182,1998/9/17,2.4,2.8,152.033647,0.4,0.30986621,2.4,0.075552857,0.165686647,1.926460217,0.281071631,37.16116849,0.235689165,0.235689165,0.235689165,0.79441141,0.516760795,1.311172206,0.6384 -3183,1998/9/18,1.9,0.4,150.8771306,0,0,1.483796498,0.072719882,0.072719882,0.112386939,0.056045835,36.7885517,0.26874522,0.26874522,0.26874522,0.753748944,0.324791055,1.078539999,0.576 -3184,1998/9/19,1.9,0,149.4431395,0,0,1.364665063,0.069326037,0.069326037,0.064106989,0.008293967,36.39896859,0.259431317,0.259431317,0.259431317,0.713121414,0.267725284,0.980846697,0.3936 -3185,1998/9/20,2.2,0,147.8086484,0,0,1.568877497,0.065613621,0.065613621,0.060926662,0.006891146,36.03317378,0.249942296,0.249942296,0.249942296,0.676663773,0.256833442,0.933497215,0.276 -3186,1998/9/21,2.1,0,146.2600857,0,0,1.486317775,0.062244933,0.062244933,0.057721294,0.006531206,35.68841122,0.241260814,0.241260814,0.241260814,0.643744663,0.247792021,0.891536684,0.2496 -3187,1998/9/22,2,0,144.7955873,0,0,1.40531043,0.059187948,0.059187948,0.054812628,0.006197125,35.3626229,0.233277705,0.233277705,0.233277705,0.61387865,0.23947483,0.85335348,0.2496 -3188,1998/9/23,2,4.2,146.4773013,2.2,1.744422859,2,0.062708915,0.518286056,0.234658174,0.016032022,35.22185331,0.225909049,0.225909049,0.225909049,0.601336822,0.241941071,0.843277893,0.222 -3189,1998/9/24,2.1,11.7,153.8819989,9.6,7.484961169,2.1,0.080263511,2.195302342,1.129044235,0.083224296,35.90902378,0.222777177,0.222777177,0.222777177,0.664650942,0.306001474,0.970652415,0.1944 -3190,1998/9/25,1.8,11.9,161.4274849,10.1,7.647482629,1.8,0.101996686,2.554514057,2.117696103,0.207635841,37.43914719,0.238363952,0.238363952,0.238363952,0.825936643,0.445999793,1.271936436,0.222 -3191,1998/9/26,1.7,0,160.05089,0,0,1.278878812,0.097716074,0.097716074,1.328385132,0.197288301,38.13398447,0.275847339,0.275847339,0.275847339,0.909395188,0.47313564,1.382530828,0.3336 -3192,1998/9/27,1.5,0,158.8344926,0,0,1.122342871,0.094054528,0.094054528,0.086497793,0.038667281,37.66262637,0.294185072,0.294185072,0.294185072,0.852040972,0.332852353,1.184893325,0.3624 -3193,1998/9/28,1.5,0,157.6273475,0,0,1.116614743,0.090530332,0.090530332,0.083256668,0.009371284,37.22587858,0.281653459,0.281653459,0.281653459,0.801657917,0.291024743,1.09268266,0.276 -3194,1998/9/29,1.4,0,156.5030102,0,0,1.0369935,0.087343811,0.087343811,0.080218307,0.009024657,36.8194327,0.270386703,0.270386703,0.270386703,0.757050884,0.27941136,1.036462244,0.1944 -3195,1998/9/30,1.5,0,155.313424,0,0,1.105515348,0.084070845,0.084070845,0.077316284,0.008700124,36.4396658,0.260194318,0.260194318,0.260194318,0.717277504,0.268894442,0.986171946,0.222 -3196,1998/10/1,2,0,153.7682524,0,0,1.465204669,0.079966995,0.079966995,0.074042333,0.008355609,36.08308564,0.250921764,0.250921764,0.250921764,0.681544255,0.259277373,0.940821628,0.3048 -3197,1998/10/2,1.9,0,152.3093397,0,0,1.382671617,0.07624106,0.07624106,0.070498182,0.007963319,35.74679338,0.242432491,0.242432491,0.242432491,0.649222933,0.250395811,0.899618744,0.3048 -3198,1998/10/3,2,0,150.7911453,0,0,1.445681711,0.072512703,0.072512703,0.067143883,0.007586215,35.42871167,0.234616093,0.234616093,0.234616093,0.619841687,0.242202308,0.862043995,0.2496 -3199,1998/10/4,2,0,149.2864996,0,0,1.43568257,0.06896314,0.06896314,0.063859003,0.007217332,35.12695754,0.227390199,0.227390199,0.227390199,0.593003335,0.234607532,0.827610867,0.222 -3200,1998/10/5,1.9,0,147.8661308,0,0,1.354627313,0.065741419,0.065741419,0.060793927,0.006867463,34.84004431,0.220683497,0.220683497,0.220683497,0.568390648,0.227550961,0.795941609,0.222 -3201,1998/10/6,1.7,0.1,146.6693111,0,0,1.23369833,0.063121359,0.063121359,0.058132094,0.006554631,34.5668628,0.21443883,0.21443883,0.21443883,0.545752434,0.220993461,0.766745895,0.222 -3202,1998/10/7,1.6,0,145.4814721,0,0,1.127234736,0.060604316,0.060604316,0.055814742,0.00628779,34.30641604,0.208611316,0.208611316,0.208611316,0.524872827,0.214899107,0.739771934,0.222 -3203,1998/10/8,1.5,0,144.3722381,0,0,1.050906951,0.058327038,0.058327038,0.053644134,0.006040134,34.05766696,0.203161639,0.203161639,0.203161639,0.505554846,0.209201773,0.714756619,0.1944 -3204,1998/10/9,1.4,0,143.3402654,0,0,0.975702325,0.056270411,0.056270411,0.051681763,0.005814421,33.81976614,0.198052402,0.198052402,0.198052402,0.487634982,0.203866823,0.691501805,0.1944 -3205,1998/10/10,1.6,0,142.1772203,0,0,1.109022415,0.054022601,0.054022601,0.049755262,0.00560196,33.59181236,0.193252483,0.193252483,0.193252483,0.470961529,0.198854443,0.669815971,0.1944 -3206,1998/10/11,1.6,0,141.0227784,0,0,1.102578801,0.051863102,0.051863102,0.047767125,0.005381372,33.37291372,0.188731768,0.188731768,0.188731768,0.455397536,0.19411314,0.649510676,0.222 -3207,1998/10/12,1.5,0.4,140.2181214,0,0,1.154257796,0.050399223,0.050399223,0.046098414,0.005179649,33.1626254,0.184462216,0.184462216,0.184462216,0.44084895,0.189641865,0.630490816,0.1944 -3208,1998/10/13,1.7,0.7,139.4860355,0,0,1.382989662,0.049096291,0.049096291,0.044844513,0.00502859,32.96065617,0.180426012,0.180426012,0.180426012,0.427239755,0.185454602,0.612694357,0.1944 -3209,1998/10/14,1.7,3,140.4864509,1.3,1.051299072,1.7,0.050883657,0.299584585,0.143154236,0.010423197,32.85984201,0.176609253,0.176609253,0.176609253,0.420577648,0.187032451,0.607610099,0.1692 -3210,1998/10/15,1.5,9.7,146.9682932,8.2,6.545610202,1.5,0.063767906,1.718157705,0.830102381,0.058141727,33.40688555,0.174725838,0.174725838,0.174725838,0.457784674,0.232867565,0.690652239,0.222 -3211,1998/10/16,1.6,4.9,149.4908911,3.3,2.592034902,1.6,0.06943697,0.777402068,1.174650653,0.134435314,34.24649245,0.185120257,0.185120257,0.185120257,0.520164018,0.319555571,0.83971959,0.2496 -3212,1998/10/17,1.5,0,148.3528786,0,0,1.071180901,0.066831592,0.066831592,0.418916438,0.073238743,34.33981829,0.201922318,0.201922318,0.201922318,0.527512916,0.275161061,0.802673977,0.2496 -3213,1998/10/18,1.4,1.3,148.2151582,0,0,1.371198769,0.066521681,0.066521681,0.060025986,0.01505699,34.09526297,0.203854807,0.203854807,0.203854807,0.508436108,0.218911798,0.727347905,0.2496 -3214,1998/10/19,1.3,5.6,151.4980073,4.3,3.357079093,1.3,0.074229983,1.01715089,0.435461786,0.027522068,34.21206853,0.198818658,0.198818658,0.198818658,0.517474883,0.226340726,0.743815609,0.2496 -3215,1998/10/20,1.4,5.5,154.5782367,4.1,3.162327158,1.4,0.082097726,1.019770568,0.916470808,0.090560675,34.76745201,0.201212821,0.201212821,0.201212821,0.56230015,0.291773496,0.854073646,0.2496 -3216,1998/10/21,1.2,0,153.6212387,0,0,0.877412965,0.079585059,0.079585059,0.546327503,0.081309179,34.94902167,0.212879091,0.212879091,0.212879091,0.577636933,0.29418827,0.871825203,0.276 -3217,1998/10/22,1.5,16.7,164.937944,15.2,11.43030141,1.5,0.113596052,3.883294644,1.574466905,0.102538425,36.0609118,0.21679565,0.21679565,0.21679565,0.679372425,0.319334075,0.9987065,0.276 -3218,1998/10/23,0.9,1.1,164.971089,0.2,0.146855377,0.9,0.113710393,0.166855016,2.026604971,0.261892145,37.49682043,0.241911462,0.241911462,0.241911462,0.832607806,0.503803607,1.336411413,0.4224 -3219,1998/10/24,0.8,3.3,166.6799767,2.5,1.828619529,0.8,0.119731832,0.791112303,0.396812694,0.074220454,37.35471853,0.27733746,0.27733746,0.27733746,0.816252052,0.351557914,1.167809966,0.516 -3220,1998/10/25,1,5.1,169.5181132,4.1,2.968431378,1,0.130294942,1.261863564,0.897994221,0.082081571,37.6731069,0.273676257,0.273676257,0.273676257,0.853282107,0.355757829,1.209039936,0.3936 -3221,1998/10/26,0.7,1.8,170.1753483,1.1,0.790079567,0.7,0.132844408,0.442764841,0.812052414,0.102655079,37.88801566,0.281927874,0.281927874,0.281927874,0.879071533,0.384582953,1.263654486,0.3936 -3222,1998/10/27,0.7,0.7,170.0430204,0,0,0.7,0.13232791,0.13232791,0.275835148,0.047123065,37.60607733,0.287597094,0.287597094,0.287597094,0.845370571,0.334720159,1.180090731,0.3936 -3223,1998/10/28,0.9,2.7,171.194367,1.8,1.288222815,0.9,0.136876184,0.648653369,0.323094585,0.028227466,37.38915724,0.280176112,0.280176112,0.280176112,0.820190786,0.308403578,1.128594363,0.4224 -3224,1998/10/29,0.8,4.1,173.3916305,3.3,2.34316726,0.8,0.145903819,1.102736559,0.763195652,0.068742784,37.58412072,0.274560369,0.274560369,0.274560369,0.842792541,0.343303153,1.186095694,0.3336 -3225,1998/10/30,0.4,0,172.9318643,0,0,0.315789724,0.143976452,0.143976452,0.613658095,0.083873405,37.62928059,0.279603989,0.279603989,0.279603989,0.848102217,0.363477394,1.21157961,0.4224 -3226,1998/10/31,0.6,0.3,172.5529803,0,0,0.536480497,0.142403535,0.142403535,0.128957346,0.025670961,37.2362006,0.280781627,0.280781627,0.280781627,0.802818958,0.306452588,1.109271546,0.3624 -3227,1998/11/1,1,6.9,176.5373406,5.9,4.144013297,1,0.159653006,1.915639708,0.828766318,0.053181315,37.50236462,0.2706492,0.2706492,0.2706492,0.833251502,0.323830515,1.157082017,0.3336 -3228,1998/11/2,0.6,1,176.6553043,0.4,0.278151856,0.6,0.160188096,0.282036241,1.078641239,0.134792581,37.96946981,0.277481009,0.277481009,0.277481009,0.889017052,0.41227359,1.301290642,0.3624 -3229,1998/11/3,0.4,0,176.177785,0,0,0.319488469,0.158030875,0.158030875,0.204838263,0.044748818,37.61737531,0.289766949,0.289766949,0.289766949,0.846699716,0.334515767,1.181215483,0.4248 -3230,1998/11/4,0.4,0,175.7029237,0,0,0.318952477,0.155908822,0.155908822,0.141389364,0.01721906,37.2363947,0.280470829,0.280470829,0.280470829,0.802840804,0.297689889,1.100530693,0.408 -3231,1998/11/5,0.5,0.5,175.5477035,0,0,0.5,0.155220154,0.155220154,0.140045845,0.015600798,36.88318824,0.270654138,0.270654138,0.270654138,0.763906435,0.286254935,1.050161371,0.3624 -3232,1998/11/6,0.6,0.1,174.9971594,0,0,0.497746956,0.152797183,0.152797183,0.138740822,0.015476957,36.55458087,0.261774643,0.261774643,0.261774643,0.729122837,0.2772516,1.006374438,0.3624 -3233,1998/11/7,0.6,0,174.3707876,0,0,0.47629435,0.150077465,0.150077465,0.136442904,0.015248601,36.24695076,0.253702247,0.253702247,0.253702247,0.697775259,0.268950848,0.966726107,0.3936 -3234,1998/11/8,0.7,0.7,174.2213532,0,0,0.7,0.149434388,0.149434388,0.134815636,0.015025712,35.95864361,0.246307794,0.246307794,0.246307794,0.66943058,0.261333506,0.930764086,0.4224 -3235,1998/11/9,0.6,0,173.5995994,0,0,0.47497141,0.146782404,0.146782404,0.133443151,0.014892816,35.68790792,0.239518762,0.239518762,0.239518762,0.643697605,0.254411578,0.898109183,0.4224 -3236,1998/11/10,0.9,0,172.7458433,0,0,0.71055358,0.143202465,0.143202465,0.130689731,0.014630943,35.43174712,0.23326619,0.23326619,0.23326619,0.620116726,0.247897133,0.868013859,0.3624 -3237,1998/11/11,0.9,0,171.8977798,0,0,0.708347477,0.139716031,0.139716031,0.12750473,0.014285946,35.18832856,0.227458395,0.227458395,0.227458395,0.598381684,0.24174434,0.840126025,0.3624 -3238,1998/11/12,0.9,0,171.055316,0,0,0.706143457,0.13632032,0.13632032,0.124402784,0.013938191,34.95649193,0.222035909,0.222035909,0.222035909,0.578275316,0.2359741,0.814249415,0.3936 -3239,1998/11/13,0.9,9.8,177.1568087,8.9,6.263971743,0.9,0.162479027,2.798507284,1.174514643,0.072106898,35.70286696,0.216957881,0.216957881,0.216957881,0.645097498,0.28906478,0.934162278,0.3624 -3240,1998/11/14,0.9,0.2,176.4377546,0,0,0.759851791,0.159202394,0.159202394,1.475870806,0.190519795,36.67105068,0.233608588,0.233608588,0.233608588,0.741295676,0.424128382,1.165424058,0.4224 -3241,1998/11/15,0.9,0.3,175.8026696,0,0,0.77873227,0.156352659,0.156352659,0.142156224,0.046986262,36.36053461,0.256542734,0.256542734,0.256542734,0.709215025,0.303528997,1.012744022,0.4536 -3242,1998/11/16,0.8,0.2,175.1714482,0,0,0.677660503,0.153560932,0.153560932,0.139614382,0.015607602,36.06900441,0.249019808,0.249019808,0.249019808,0.680164388,0.264627409,0.944791797,0.3936 -3243,1998/11/17,0.7,0.7,175.0185574,0,0,0.7,0.152890786,0.152890786,0.137940061,0.015374313,35.79524689,0.242101525,0.242101525,0.242101525,0.653799111,0.257475839,0.91127495,0.3336 -3244,1998/11/18,0.5,0,174.4710487,0,0,0.396998589,0.150510171,0.150510171,0.136661126,0.015244732,35.53784466,0.235731028,0.235731028,0.235731028,0.629794382,0.25097576,0.880770142,0.3048 -3245,1998/11/19,0.6,0.3,174.0844012,0,0,0.537800501,0.148846971,0.148846971,0.134802022,0.015042591,35.29469797,0.229851202,0.229851202,0.229851202,0.607799921,0.244893793,0.852693714,0.3048 -3246,1998/11/20,0.6,2.1,174.9853414,1.5,1.053685763,0.6,0.152745506,0.599059742,0.311840708,0.024786455,35.22896716,0.224393941,0.224393941,0.224393941,0.601965457,0.249180396,0.851145853,0.3336 -3247,1998/11/21,0.6,13,183.3028017,12.4,8.510212464,0.6,0.192752177,4.082539714,1.915471834,0.131058211,36.630351,0.222934699,0.222934699,0.222934699,0.737022688,0.35399291,1.091015598,0.3336 -3248,1998/11/22,0.7,8.9,188.5113811,8.2,5.430387337,0.7,0.221808012,2.991420674,3.243186034,0.343219118,39.09284545,0.255547575,0.255547575,0.255547575,1.036239167,0.598766693,1.63500586,0.7032 -3249,1998/11/23,0.4,1.3,188.8743329,0.9,0.58690845,0.4,0.223956643,0.537048193,1.72255939,0.258137748,39.97095802,0.32089908,0.32089908,0.32089908,1.165345892,0.579036828,1.744382719,1.0536 -3250,1998/11/24,0.5,1.7,189.4275772,1.2,0.780508249,0.5,0.227263884,0.646755634,0.526688618,0.085060338,39.71771741,0.346843799,0.346843799,0.346843799,1.12677303,0.431904136,1.558677166,0.876 -3251,1998/11/25,0.6,0,188.705005,0,0,0.499620075,0.222952174,0.222952174,0.414635899,0.054079208,39.39269321,0.339213375,0.339213375,0.339213375,1.078873475,0.393292584,1.472166058,0.516 -3252,1998/11/26,0.5,1.2,188.9368303,0.7,0.456153663,0.5,0.2243283,0.468174637,0.297544005,0.032676274,38.99692583,0.32959669,0.32959669,0.32959669,1.022908077,0.362272964,1.38518104,0.516 -3253,1998/11/27,0.2,0,188.5484295,0,0,0.166374224,0.222026573,0.222026573,0.324104405,0.038522332,38.66172,0.318151728,0.318151728,0.318151728,0.977461961,0.35667406,1.334136022,0.6384 -3254,1998/11/28,0.2,0,188.1624963,0,0,0.166174977,0.219758277,0.219758277,0.19892771,0.025056001,38.24585307,0.308682552,0.308682552,0.308682552,0.923477189,0.333738553,1.257215742,0.516 -3255,1998/11/29,0.2,0,187.7789971,0,0,0.165976413,0.217522742,0.217522742,0.196899187,0.021953516,37.86383204,0.297216705,0.297216705,0.297216705,0.876136924,0.319170221,1.195307146,0.4848 -3256,1998/11/30,0.2,0,187.3978993,0,0,0.165778525,0.215319317,0.215319317,0.194899893,0.021730281,37.5113871,0.286955108,0.286955108,0.286955108,0.834299937,0.308685389,1.142985326,0.4224 -3257,1998/12/1,0.3,0,186.9368817,0,0,0.248339768,0.212677785,0.212677785,0.192743714,0.021499943,37.18479479,0.277714731,0.277714731,0.277714731,0.797050755,0.299214674,1.096265429,0.4224 -3258,1998/12/2,0.3,0,186.478822,0,0,0.247980705,0.210079012,0.210079012,0.19038323,0.021241896,36.88086593,0.269343714,0.269343714,0.269343714,0.763655807,0.29058561,1.054241417,0.3624 -3259,1998/12/3,0.3,0,186.0236772,0,0,0.247622715,0.207522073,0.207522073,0.188060863,0.020982432,36.59709697,0.261716959,0.261716959,0.261716959,0.733546788,0.282699391,1.01624618,0.4224 -3260,1998/12/4,0.4,0,185.4894798,0,0,0.329644523,0.204552937,0.204552937,0.185596759,0.020717197,36.33118607,0.25473652,0.25473652,0.25473652,0.706244177,0.275453717,0.981697894,0.3936 -3261,1998/12/5,0.4,0,184.958759,0,0,0.329083803,0.201636968,0.201636968,0.182945543,0.020426312,36.08109918,0.248317027,0.248317027,0.248317027,0.681349453,0.268743338,0.950092792,0.4536 -3262,1998/12/6,0.5,4,187.0621625,3.5,2.316796499,0.5,0.21339303,1.396596531,0.653600123,0.04642737,36.27636254,0.242385782,0.242385782,0.242385782,0.700722551,0.288813152,0.989535703,0.4536 -3263,1998/12/7,0.6,0,186.3568081,0,0,0.495963258,0.20939109,0.20939109,0.78787363,0.099506983,36.57952821,0.247008018,0.247008018,0.247008018,0.731715971,0.346515001,1.078230972,0.4536 -3264,1998/12/8,0.6,14.6,195.1130041,14,9.019774063,0.6,0.263578077,5.243804014,2.177541504,0.145446292,38.10553529,0.254308767,0.254308767,0.254308767,0.905843198,0.399755059,1.305598257,0.4536 -3265,1998/12/9,0.4,3.6,196.8364566,3.2,1.998912441,0.4,0.275459965,1.476547523,3.2309857,0.382312489,40.39711888,0.293417638,0.293417638,0.293417638,1.23281974,0.675730127,1.908549868,1.0536 -3266,1998/12/10,0.2,0,196.3937897,0,0,0.170298995,0.272367891,0.272367891,0.853123042,0.165655023,40.38013434,0.359960094,0.359960094,0.359960094,1.230067678,0.525615116,1.755682794,2.64 -3267,1998/12/11,0.2,0,195.954378,0,0,0.170085503,0.269326173,0.269326173,0.243929317,0.041372402,39.83846785,0.359430677,0.359430677,0.359430677,1.145026489,0.400803079,1.545829568,0.7032 -3268,1998/12/12,0.1,0,195.6025211,0,0,0.08494671,0.266910244,0.266910244,0.241439019,0.026915469,39.35002654,0.3428366,0.3428366,0.3428366,1.072716925,0.369752069,1.442468994,0.9072 -3269,1998/12/13,0.3,2.7,196.8241505,2.4,1.497003071,0.3,0.275373626,1.178370555,0.600335911,0.046726013,39.22400379,0.328348916,0.328348916,0.328348916,1.054707576,0.375074929,1.429782505,0.7032 -3270,1998/12/14,0.3,1.8,197.4744111,1.5,0.930226225,0.3,0.279965653,0.849739428,0.930691771,0.099873681,39.39951768,0.32468312,0.32468312,0.32468312,1.079861003,0.424556801,1.504417804,0.8376 -3271,1998/12/15,0.3,3,198.8483321,2.7,1.663791315,0.3,0.289870308,1.326078993,0.952966563,0.099305534,39.57653338,0.329796583,0.329796583,0.329796583,1.10574745,0.429102117,1.534849567,0.6384 -3272,1998/12/16,0.4,4.4,200.9799968,4,2.437457501,0.4,0.305792775,1.868335274,1.407715763,0.138892359,40.12923556,0.335011804,0.335011804,0.335011804,1.190025383,0.473904163,1.663929546,0.6384 -3273,1998/12/17,0.4,7,204.5923112,6.6,3.946687849,0.4,0.334373463,2.987685614,2.123755461,0.205007736,41.23017028,0.351674668,0.351674668,0.351674668,1.374495411,0.556682404,1.931177815,0.7032 -3274,1998/12/18,0.6,7.8,208.4231501,7.2,4.197826986,0.6,0.366988093,3.369161107,2.839637417,0.293940116,42.78032394,0.386616987,0.386616987,0.386616987,1.676100742,0.680557104,2.356657846,0.8376 -3275,1998/12/19,0.4,1,208.4015733,0.6,0.345220715,0.4,0.366797502,0.621576787,1.946678181,0.272107702,43.36324971,0.439928627,0.439928627,0.439928627,1.803681038,0.712036329,2.515717368,0.9792 -3276,1998/12/20,0.3,2.9,209.5149368,2.6,1.490099902,0.3,0.37673641,1.486636508,0.901202983,0.113551335,43.00206083,0.461269095,0.461269095,0.461269095,1.723660959,0.574820431,2.29848139,1.1304 -3277,1998/12/21,0.2,3.8,211.1657682,3.6,2.042701964,0.2,0.391870533,1.949168569,1.520718594,0.148613518,43.20296562,0.447961226,0.447961226,0.447961226,1.767775027,0.596574745,2.364349772,1.1304 -3278,1998/12/22,0.2,3.9,212.8321328,3.7,2.074003387,0.2,0.407638779,2.033635392,1.787624389,0.191315734,43.59027749,0.455329136,0.455329136,0.455329136,1.855641661,0.64664487,2.502286531,1.38 -3279,1998/12/23,0.1,5.1,215.1624231,5,2.760831116,0.1,0.430540896,2.66970978,2.081583908,0.216329154,44.15174707,0.469776946,0.469776946,0.469776946,1.989891268,0.6861061,2.675997368,1.536 -3280,1998/12/24,0.1,0.4,214.898883,0.3,0.164360118,0.1,0.427900135,0.563540017,1.570594001,0.213238758,44.20946907,0.491298693,0.491298693,0.491298693,2.004170702,0.704537451,2.708708153,1.0536 -3281,1998/12/25,0.1,25.5,227.5492863,25.4,13.22070721,0.1,0.570304004,12.74959679,5.321880046,0.34867774,47.15656686,0.493550425,0.493550425,0.493550425,2.868332673,0.842228165,3.710560839,1.0536 -3282,1998/12/26,0.4,12.9,232.9217278,12.5,6.013719144,0.4,0.641277591,7.127558447,9.253377297,1.007831481,51.96999179,0.618622358,0.618622358,0.618622358,5.058574725,1.626453838,6.685028564,4.176 -3283,1998/12/27,0.3,3.9,233.9463163,3.6,1.680175297,0.3,0.655586799,2.575411503,4.616255521,0.679144332,52.23677777,0.869285132,0.869285132,0.869285132,5.218754674,1.548429464,6.767184138,6.744 -3284,1998/12/28,0.4,2.6,234.3054642,2.2,1.019810961,0.4,0.660663035,1.840852073,2.027646885,0.295106755,50.75886382,0.885004159,0.885004159,0.885004159,4.390564999,1.180110914,5.570675913,5.808 -3285,1998/12/29,0.5,0.4,233.5624608,0,0,0.492807304,0.650196131,0.650196131,1.186340319,0.166614002,49.12274854,0.800423086,0.800423086,0.800423086,3.622878686,0.967037088,4.589915774,5.424 -3286,1998/12/30,0.4,0.3,232.8297727,0,0,0.392682277,0.64000577,0.64000577,0.581150305,0.078838822,47.447666,0.713702615,0.713702615,0.713702615,2.969935461,0.792541437,3.762476898,4.92 -3287,1998/12/31,0.5,3.2,233.4450595,2.7,1.263841326,0.5,0.648554558,2.084713232,1.146807082,0.095832005,46.55736516,0.632091531,0.632091531,0.632091531,2.669199448,0.727923536,3.397122984,4.776 -3288,1999/1/1,0.6,3.6,234.1811004,3,1.394942538,0.6,0.658901691,2.263959153,1.947061673,0.195366595,46.45840961,0.59154442,0.59154442,0.59154442,2.637561638,0.786911015,3.424472654,4.008 -3289,1999/1/2,0.4,7.9,236.9094166,7.5,3.426738949,0.4,0.698422689,4.77168374,3.028361672,0.279326277,47.19304173,0.587155547,0.587155547,0.587155547,2.880885102,0.866481824,3.747366926,4.272 -3290,1999/1/3,0.2,1.6,236.8431083,1.4,0.631131791,0.2,0.697440064,1.466308272,2.988566013,0.375039051,47.73018427,0.620298709,0.620298709,0.620298709,3.071722181,0.99533776,4.067059941,4.968 -3291,1999/1/4,0.1,1,236.5563773,0.9,0.406472706,0.1,0.693203798,1.186731092,1.209216856,0.179478524,46.82743893,0.645362716,0.645362716,0.645362716,2.75732492,0.824841239,3.582166159,4.392 -3292,1999/1/5,0.3,4.6,237.7774656,4.3,1.932477887,0.3,0.711389588,3.078911701,1.815655875,0.163503764,46.57262701,0.603641937,0.603641937,0.603641937,2.67410973,0.767145701,3.441255431,3.816 -3293,1999/1/6,0.3,2.5,238.0431923,2.2,0.98112435,0.3,0.71539756,1.934273209,2.318775385,0.260449696,46.75138392,0.592223393,0.592223393,0.592223393,2.732241868,0.852673089,3.584914957,4.272 -3294,1999/1/7,0.1,1.7,238.040407,1.6,0.712570151,0.1,0.715355455,1.602785303,1.609875433,0.199651362,46.35622509,0.60021747,0.60021747,0.60021747,2.60525173,0.799868832,3.405120562,3.6 -3295,1999/1/8,0,0,237.3356414,0,0,0,0.704765605,0.704765605,1.087700404,0.144476745,45.63833833,0.582647924,0.582647924,0.582647924,2.388235093,0.727124669,3.115359762,2.976 -3296,1999/1/9,0.1,0.6,236.862798,0.5,0.224888302,0.1,0.697731729,0.972843427,0.740206202,0.086952318,44.77992654,0.551673808,0.551673808,0.551673808,2.150291794,0.638626126,2.78891792,2.784 -3297,1999/1/10,0.2,2.2,237.0628925,2,0.900795859,0.2,0.700701336,1.799905477,1.202330124,0.112276547,44.43708488,0.516202141,0.516202141,0.516202141,2.061373931,0.628478688,2.68985262,2.88 -3298,1999/1/11,0,1.5,237.0375612,1.5,0.674993533,0,0.700324832,1.525331299,1.511431011,0.164209147,44.39925147,0.502501597,0.502501597,0.502501597,2.051766013,0.666710744,2.718476757,2.496 -3299,1999/1/12,0,0.6,236.6141365,0.6,0.270630723,0,0.694055481,1.023424757,1.174495558,0.144754745,44.09806112,0.501005798,0.501005798,0.501005798,1.976691704,0.645760543,2.622452247,2.304 -3300,1999/1/13,0,5,238.1393898,5,2.242106318,0,0.71685299,3.474746672,1.889596128,0.162068442,44.41987085,0.489211002,0.489211002,0.489211002,2.056997401,0.651279444,2.708276845,2.496 -3301,1999/1/14,0,8.8,241.2246692,8.8,3.850093258,0,0.764813911,5.714720653,4.012282519,0.367730563,46.3352953,0.501820621,0.501820621,0.501820621,2.598678693,0.869551183,3.468229876,1.968 -3302,1999/1/15,0,2.5,241.5289833,2.5,1.073995434,0,0.769681251,2.195685817,3.752882694,0.467810869,47.63340914,0.581727716,0.581727716,0.581727716,3.036496568,1.049538585,4.086035154,1.872 -3303,1999/1/16,0,0.4,240.9408055,0.4,0.172118241,0,0.76029607,0.988177829,1.49903246,0.234568228,46.96874541,0.640794553,0.640794553,0.640794553,2.804490745,0.875362781,3.679853526,1.872 -3304,1999/1/17,0,0.2,240.2776338,0.2,0.086653416,0,0.749825157,0.863171741,0.839970291,0.110315559,45.94108915,0.610041447,0.610041447,0.610041447,2.477667996,0.720357006,3.198025001,1.872 -3305,1999/1/18,0,0,239.5393287,0,0,0,0.738305046,0.738305046,0.727519889,0.08505073,45.01890746,0.564589098,0.564589098,0.564589098,2.214290675,0.649639828,2.863930503,1.872 -3306,1999/1/19,0,0.1,238.8555591,0.1,0.04399395,0,0.727763552,0.783769601,0.682437506,0.076301172,44.22037479,0.525908647,0.525908647,0.525908647,2.006878825,0.60220982,2.609088645,1.872 -3307,1999/1/20,0,0,238.1387163,0,0,0,0.716842792,0.716842792,0.678949934,0.076371721,43.547541,0.493976683,0.493976683,0.493976683,1.845760408,0.570348404,2.416108812,1.872 -3308,1999/1/21,0,0,237.4325028,0,0,0,0.706213513,0.706213513,0.640958883,0.072240335,42.94529353,0.468166907,0.468166907,0.468166907,1.711373262,0.540407241,2.251780503,1.872 -3309,1999/1/22,0,0,236.7366382,0,0,0,0.695864608,0.695864608,0.631503307,0.070519575,42.42118008,0.445894892,0.445894892,0.445894892,1.601511643,0.516414466,2.117926109,1.44 -3310,1999/1/23,0,0,236.0508527,0,0,0,0.685785519,0.685785519,0.622295897,0.0694873,41.96051058,0.427137393,0.427137393,0.427137393,1.510102789,0.496624693,2.006727481,1.104 -3311,1999/1/24,0,0,235.3748865,0,0,0,0.675966201,0.675966201,0.613327352,0.06848191,41.55206196,0.411121943,0.411121943,0.411121943,1.432897914,0.479603853,1.912501767,1.104 -3312,1999/1/25,0.1,0,234.6168119,0,0,0.092985369,0.665089237,0.665089237,0.604072091,0.067473699,41.1866575,0.397284858,0.397284858,0.397284858,1.36676141,0.464758557,1.831519967,1.056 -3313,1999/1/26,0.1,0.2,234.006646,0.1,0.046271412,0.1,0.656437302,0.710165891,0.616390021,0.067626654,40.87566418,0.385190797,0.385190797,0.385190797,1.312574138,0.452817451,1.765391589,1.056 -3314,1999/1/27,0.2,5.2,235.6285931,5,2.301585335,0.2,0.679638258,3.378052923,1.693227732,0.129044891,41.51747724,0.375106735,0.375106735,0.375106735,1.426521413,0.504151626,1.930673038,1.152 -3315,1999/1/28,0.3,4.9,237.0140295,4.6,2.085411648,0.3,0.699975221,3.214563573,2.975653136,0.302751119,43.13624377,0.396128719,0.396128719,0.396128719,1.75301532,0.698879838,2.451895158,2.64 -3316,1999/1/29,0.1,0,236.2323343,0,0,0.093253962,0.688441258,0.688441258,1.895039734,0.267936461,43.62131004,0.452872677,0.452872677,0.452872677,1.862846142,0.720809139,2.58365528,2.496 -3317,1999/1/30,0,0,235.5537805,0,0,0,0.678553781,0.678553781,0.615690587,0.098420782,42.98745676,0.470948532,0.470948532,0.470948532,1.720492403,0.569369314,2.289861717,1.68 -3318,1999/1/31,0.1,0,234.7931587,0,0,0.093014937,0.66760681,0.66760681,0.606373254,0.067731724,42.43660475,0.447428985,0.447428985,0.447428985,1.60465425,0.515160709,2.119814959,1.632 -3319,1999/2/1,0.2,0,233.9517335,0,0,0.185762086,0.655663133,0.655663133,0.596127183,0.066627645,41.95196252,0.427681227,0.427681227,0.427681227,1.50845064,0.494308872,2.002759512,1.548 -3320,1999/2/2,0.4,1.2,233.6720114,0.8,0.372008787,0.4,0.651730947,1.07972216,0.757641934,0.075015261,41.66629704,0.410828884,0.410828884,0.410828884,1.454136298,0.485844145,1.939980443,1.548 -3321,1999/2/3,0.5,1.9,233.6721855,1.4,0.651907528,0.5,0.651733389,1.399825862,1.098222445,0.109997045,41.70436571,0.401120772,0.401120772,0.401120772,1.46127454,0.511117817,1.972392357,1.788 -3322,1999/2/4,0.4,0,232.6637614,0,0,0.370709248,0.63771483,0.63771483,0.958734236,0.11947896,41.62000744,0.402404941,0.402404941,0.402404941,1.445497451,0.521883901,1.967381352,1.956 -3323,1999/2/5,0.3,0.2,231.9433818,0,0,0.29252961,0.627850049,0.627850049,0.57004577,0.07254348,41.21739555,0.399563235,0.399563235,0.399563235,1.372220895,0.472106715,1.84432761,2.22 -3324,1999/2/6,0.4,3.7,232.8587741,3.3,1.555799019,0.4,0.640406665,2.384607646,1.259157507,0.101462071,41.44881582,0.386197888,0.386197888,0.386197888,1.413935121,0.487659958,1.901595079,2.22 -3325,1999/2/7,0.6,5.3,234.3863714,4.7,2.189408265,0.6,0.661810945,3.172402679,2.457403544,0.235033262,42.65113382,0.39384055,0.39384055,0.39384055,1.648926094,0.628873812,2.277799906,2.88 -3326,1999/2/8,0.7,0.1,233.1847531,0,0,0.656691654,0.644926709,0.644926709,1.856560104,0.252470991,43.18025203,0.43529634,0.43529634,0.43529634,1.762738237,0.687767331,2.450505567,3.6 -3327,1999/2/9,0.8,6.6,235.1978621,5.8,2.686522542,0.8,0.673413496,3.786890954,1.821819716,0.163268211,43.59891835,0.454491837,0.454491837,0.454491837,1.85764523,0.617760048,2.475405279,3.096 -3328,1999/2/10,0.7,2.9,235.5269383,2.2,1.00724123,0.7,0.67816502,1.87092379,2.651205813,0.299576793,44.61351496,0.47010296,0.47010296,0.47010296,2.106712169,0.769679752,2.876391921,4.152 -3329,1999/2/11,0.6,2.1,235.5342649,1.5,0.685597719,0.6,0.678271115,1.492673396,1.534385163,0.201387213,44.5636188,0.509519169,0.509519169,0.509519169,2.093800486,0.710906382,2.804706868,4.152 -3330,1999/2/12,0.5,5.3,237.011475,4.8,2.177147296,0.5,0.699937276,3.32278998,2.066482532,0.193899475,44.94366901,0.507527478,0.507527478,0.507527478,2.193959801,0.701426953,2.895386754,4.152 -3331,1999/2/13,0.5,2.3,237.1197844,1.8,0.809856944,0.5,0.701547526,1.691690583,2.346065805,0.274891745,45.47217138,0.522838807,0.522838807,0.522838807,2.340402246,0.797730552,3.138132798,4.608 -3332,1999/2/14,0.7,3.9,237.840928,3.2,1.433488756,0.7,0.712345146,2.47885639,1.833529597,0.205684894,45.50157407,0.544675585,0.544675585,0.544675585,2.348802485,0.750360479,3.099162964,3.936 -3333,1999/2/15,0.4,3.3,238.4103112,2.9,1.290347934,0.4,0.720964756,2.330616822,2.172401445,0.235347835,45.78785503,0.545909253,0.545909253,0.545909253,2.432029741,0.781257088,3.21328683,4.056 -3334,1999/2/16,0.2,3.9,239.3090758,3.7,1.633506284,0.2,0.734741644,2.80123536,2.283495812,0.245140153,46.10272532,0.55802548,0.55802548,0.55802548,2.526651003,0.803165633,3.329816636,3.72 -3335,1999/2/17,0.1,2.7,239.7081106,2.6,1.139960745,0.1,0.740925958,2.200965213,2.283945859,0.261397132,46.35376501,0.571572176,0.571572176,0.571572176,2.604478349,0.832969309,3.437447658,3.504 -3336,1999/2/18,0.1,2.1,239.8395421,2,0.874403612,0.1,0.74297207,1.868568458,1.849539145,0.219880213,46.22236932,0.582539709,0.582539709,0.582539709,2.563474539,0.802419922,3.365894462,3.096 -3337,1999/2/19,0,4.1,240.8617255,4.1,1.78122472,0,0.75904131,3.07781659,2.159483819,0.217320164,46.35406208,0.576780666,0.576780666,0.576780666,2.604571729,0.79410083,3.398672559,2.976 -3338,1999/2/20,0.1,2.8,241.2603036,2.7,1.163960659,0.1,0.765382579,2.30142192,2.463282406,0.276477774,46.68830108,0.582552776,0.582552776,0.582552776,2.711596174,0.859030549,3.570626724,2.784 -3339,1999/2/21,0.2,2.3,241.3954173,2.1,0.902655582,0.2,0.76754187,1.964886288,1.938314914,0.231912292,46.55542713,0.597387638,0.597387638,0.597387638,2.668576506,0.829299929,3.497876435,2.784 -3340,1999/2/22,0.2,0.1,240.5474007,0,0,0.193946171,0.754070424,0.754070424,1.290005952,0.173880533,45.95503224,0.591458241,0.591458241,0.591458241,2.481859083,0.765338774,3.247197856,2.316 -3341,1999/2/23,0.3,0,239.5278717,0,0,0.281401584,0.738127408,0.738127408,0.6723643,0.089337754,44.98695082,0.565189059,0.565189059,0.565189059,2.20563478,0.654526812,2.860161592,1.836 -3342,1999/2/24,0.3,0,238.5242492,0,0,0.28092285,0.72269966,0.72269966,0.658219168,0.073662156,44.17431085,0.524603201,0.524603201,0.524603201,1.995462332,0.598265357,2.593727689,2.4 -3343,1999/2/25,0.8,3.8,239.1175042,3,1.325042436,0.8,0.731787454,2.406745018,1.31579365,0.109416617,44.02373616,0.49217803,0.49217803,0.49217803,1.958546372,0.601594646,2.560141018,2.316 -3344,1999/2/26,1,1.2,238.4837824,0.2,0.088361305,1,0.722083098,0.833721793,1.544571175,0.186284793,44.08190402,0.486331189,0.486331189,0.486331189,1.972734509,0.672615982,2.645350491,3.096 -3345,1999/2/27,1.1,2,238.1661558,0.9,0.399631699,1.1,0.717258373,1.217626674,0.902029877,0.110351482,43.61186667,0.488583942,0.488583942,0.488583942,1.860651162,0.598935424,2.459586587,4.056 -3346,1999/2/28,1.2,0.9,237.1833873,0,0,1.18027395,0.70249451,0.70249451,0.892335978,0.10592772,43.20628277,0.470591792,0.470591792,0.470591792,1.768511674,0.576519512,2.345031185,4.056 -3347,1999/3/1,1.1,0.7,236.1235047,0,0,1.073034919,0.686847691,0.686847691,0.626063006,0.075981609,42.6409887,0.455451509,0.455451509,0.455451509,1.646808585,0.531433118,2.178241703,4.056 -3348,1999/3/2,1.2,0.1,234.437613,0,0,1.1233529,0.662538789,0.662538789,0.608558492,0.068335749,42.13943245,0.434934055,0.434934055,0.434934055,1.545048799,0.503269804,2.048318602,4.056 -3349,1999/3/3,0.3,1.6,234.3768786,1.3,0.600941822,0.3,0.661676178,1.360734356,0.87214099,0.081865942,41.92551492,0.417290377,0.417290377,0.417290377,1.503348898,0.499156319,2.002505217,3.288 -3350,1999/3/4,0.4,2.1,234.499065,1.7,0.785598901,0.4,0.663412516,1.577813615,1.310428601,0.132603663,42.1071707,0.409923108,0.409923108,0.409923108,1.538695928,0.542526771,2.081222699,3.192 -3351,1999/3/5,0.5,0,233.3872741,0,0,0.4640431,0.647747796,0.647747796,1.052564508,0.134806238,42.04867345,0.416173283,0.416173283,0.416173283,1.527235032,0.550979521,2.078214552,3.384 -3352,1999/3/6,0.4,0,232.3829037,0,0,0.370516317,0.633854065,0.633854065,0.577483608,0.075439239,41.59876268,0.414153209,0.414153209,0.414153209,1.441547595,0.489592448,1.931140043,2.688 -3353,1999/3/7,0.6,1.1,231.9906427,0.5,0.236232398,0.6,0.628493442,0.892261044,0.672564881,0.069221302,41.28574833,0.398849846,0.398849846,0.398849846,1.384429075,0.468071148,1.852500223,2.04 -3354,1999/3/8,0.8,0.2,230.8236355,0,0,0.75424647,0.612760696,0.612760696,0.69260472,0.080043402,41.02792948,0.388444115,0.388444115,0.388444115,1.338867679,0.468487516,1.807355195,2.316 -3355,1999/3/9,0.8,0.1,229.5821159,0,0,0.745146451,0.596373197,0.596373197,0.545009934,0.064212871,40.67444663,0.380020114,0.380020114,0.380020114,1.278512901,0.444232986,1.722745886,2.04 -3356,1999/3/10,0.6,0,228.4486731,0,0,0.551720575,0.581722178,0.581722178,0.530947266,0.059509023,40.34903517,0.368683557,0.368683557,0.368683557,1.225042286,0.42819258,1.653234866,1.872 -3357,1999/3/11,0.5,0,227.4211825,0,0,0.458798207,0.568692449,0.568692449,0.518401919,0.058059028,40.04851617,0.358462742,0.358462742,0.358462742,1.177383662,0.41652177,1.593905431,1.632 -3358,1999/3/12,0.5,0,226.4072445,0,0,0.457872069,0.556065919,0.556065919,0.506834466,0.056745783,39.7699219,0.349205027,0.349205027,0.349205027,1.134633763,0.40595081,1.540584572,1.548 -3359,1999/3/13,0.6,0.4,225.6772986,0,0,0.582829482,0.547116422,0.547116422,0.49692338,0.055559085,39.5114526,0.340776444,0.340776444,0.340776444,1.096169119,0.396335528,1.492504647,1.632 -3360,1999/3/14,0.3,0.1,224.956346,0,0,0.282561235,0.538391344,0.538391344,0.4889575,0.054625693,39.27196666,0.333087604,0.333087604,0.333087604,1.061531044,0.387713297,1.44924434,1.548 -3361,1999/3/15,0.4,0.1,224.1541154,0,0,0.37341595,0.528814619,0.528814619,0.480768446,0.053731844,39.04872148,0.326074817,0.326074817,0.326074817,1.030088445,0.379806662,1.409895107,1.392 -3362,1999/3/16,0.6,1.5,224.0839261,0.9,0.457793922,0.6,0.527983291,0.970189369,0.650319693,0.062682569,38.99590707,0.319633175,0.319633175,0.319633175,1.022767277,0.382315744,1.405083021,1.392 -3363,1999/3/17,0.7,0.1,223.0226843,0,0,0.645700321,0.515541486,0.515541486,0.693539664,0.081833796,38.98614979,0.318122639,0.318122639,0.318122639,1.021419584,0.399956435,1.42137602,1.248 -3364,1999/3/18,0.9,3.5,223.8281246,2.6,1.330402785,0.9,0.524962456,1.794559671,0.969325627,0.08499074,39.21928173,0.317844132,0.317844132,0.317844132,1.054037819,0.402834872,1.456872692,1.284 -3365,1999/3/19,0.7,2.1,224.0143019,1.4,0.713337025,0.7,0.527159697,1.213822672,1.385655282,0.151623839,39.79157534,0.324546334,0.324546334,0.324546334,1.137908013,0.476170173,1.614078186,1.248 -3366,1999/3/20,0.5,0.6,223.5436983,0.1,0.051016263,0.5,0.521619927,0.570603665,0.838305443,0.114113031,39.8278897,0.341426282,0.341426282,0.341426282,1.143417356,0.455539313,1.598956669,1.1712 -3367,1999/3/21,0.8,1.3,223.2810354,0.5,0.255885488,0.8,0.518548389,0.762662901,0.589425621,0.06886234,39.64407045,0.342518093,0.342518093,0.342518093,1.115762966,0.411380433,1.527143399,1.0344 -3368,1999/3/22,0.9,0.2,222.1401302,0,0,0.835529936,0.505375234,0.505375234,0.584742594,0.068353671,39.47499546,0.337017009,0.337017009,0.337017009,1.090834597,0.405370681,1.496205278,1.0344 -3369,1999/3/23,1.2,0,220.5661372,0,0,1.086348157,0.487644819,0.487644819,0.447832436,0.053182864,39.20309617,0.332013156,0.332013156,0.332013156,1.051744885,0.38519602,1.436940905,1.0344 -3370,1999/3/24,1.7,0.8,219.280345,0,0,1.612256901,0.473535293,0.473535293,0.433305672,0.048663907,38.94476005,0.324077791,0.324077791,0.324077791,1.01571958,0.372741699,1.388461279,0.9672 -3371,1999/3/25,1.7,13.6,224.8990019,11.9,6.156359108,1.7,0.537702195,6.281343087,2.720838515,0.175000917,40.69954406,0.316664658,0.316664658,0.316664658,1.282719163,0.491665575,1.774384738,0.8376 -3372,1999/3/26,1.2,0.1,223.3776654,0,0,1.101659832,0.519676669,0.519676669,3.376782259,0.433167669,42.77156147,0.369480385,0.369480385,0.369480385,1.674245232,0.802648054,2.476893285,1.68 -3373,1999/3/27,1.5,12.7,228.4035388,11.2,5.607018234,1.5,0.581144825,6.17412659,2.701774271,0.244036872,43.9679295,0.439613329,0.439613329,0.439613329,1.945019573,0.683650201,2.628669775,1.392 -3374,1999/3/28,1.2,2.3,228.3615921,1.1,0.538661895,1.2,0.580608659,1.141946765,3.56850655,0.440266933,45.63371931,0.484176865,0.484176865,0.484176865,2.386893599,0.924443798,3.311337398,2.1 -3375,1999/3/29,0.8,4.4,229.5197842,3.6,1.753751946,0.8,0.595559848,2.441807902,1.541325384,0.202077252,45.40516343,0.551478412,0.551478412,0.551478412,2.321359678,0.753555664,3.074915342,2.316 -3376,1999/3/30,0.7,1.9,229.5059275,1.2,0.581522524,0.7,0.595379158,1.213856634,1.712465219,0.201896544,45.35289661,0.541871531,0.541871531,0.541871531,2.306603567,0.743768075,3.050371642,2.52 -3377,1999/3/31,0.9,0.1,228.1920926,0,0,0.835388777,0.578446164,0.578446164,0.841421151,0.121921218,44.6244563,0.539691512,0.539691512,0.539691512,2.109552981,0.66161273,2.771165711,1.956 -3378,1999/4/1,0.9,1.7,228.0087476,0.8,0.392769373,0.9,0.576114332,0.98334496,0.680576484,0.074226307,43.88896734,0.509956656,0.509956656,0.509956656,1.926022097,0.584182964,2.510205061,2.448 -3379,1999/4/2,1.3,3.4,228.4566693,2.1,1.02974616,1.3,0.581824512,1.652078352,1.149226071,0.1082377,43.64984183,0.481140319,0.481140319,0.481140319,1.869491903,0.589378018,2.458869922,2.232 -3380,1999/4/3,1.6,13.2,233.3551536,11.6,5.545783989,1.6,0.6472997,6.701515711,3.481896139,0.268155467,45.30938236,0.472027545,0.472027545,0.472027545,2.294383148,0.740183013,3.03456616,2.448 -3381,1999/4/4,1.1,0.9,232.5339469,0,0,1.085278698,0.635928008,0.635928008,3.634858735,0.477458287,46.75025222,0.537881343,0.537881343,0.537881343,2.73187022,1.015339629,3.74720985,2.568 -3382,1999/4/5,1.4,2.3,232.3251016,0.9,0.424216536,1.4,0.633061838,1.108845302,0.759184156,0.145512257,45.70262591,0.600166619,0.600166619,0.600166619,2.406977086,0.745678876,3.152655962,2.688 -3383,1999/4/6,1.9,0,229.9694181,0,0,1.75423636,0.601447062,0.601447062,0.797488408,0.094169506,44.87812687,0.554398468,0.554398468,0.554398468,2.176385915,0.648567974,2.824953889,2.316 -3384,1999/4/7,2.1,8.2,232.2489215,6.1,2.911522267,2.1,0.632018944,3.820496678,1.813144357,0.136787001,45.00179463,0.520175041,0.520175041,0.520175041,2.209651639,0.656962041,2.86661368,2.136 -3385,1999/4/8,1.9,9,234.8887775,7.1,3.308831107,1.9,0.668975094,4.460143987,3.691170679,0.358123758,46.5510156,0.52520929,0.52520929,0.52520929,2.667159,0.883333048,3.550492049,2.592 -3386,1999/4/9,1.7,3.1,234.8642854,1.4,0.644132317,1.7,0.668624402,1.424492085,2.814747648,0.371838015,47.10600838,0.591262104,0.591262104,0.591262104,2.85101697,0.963100119,3.814117089,3.192 -3387,1999/4/10,1.5,0.1,232.9237837,0,0,1.399195637,0.641306049,0.641306049,0.972607132,0.161061544,46.15288863,0.616304091,0.616304091,0.616304091,2.542030973,0.777365634,3.319396608,3.192 -3388,1999/4/11,1.5,2.6,232.8004888,1.1,0.516306318,1.5,0.639601174,1.223294857,0.807118395,0.08614231,45.25466068,0.573751839,0.573751839,0.573751839,2.279098182,0.659894149,2.938992331,2.544 -3389,1999/4/12,1.3,0.1,231.0747793,0,0,1.209590226,0.616119349,0.616119349,0.861071145,0.102137946,44.5587886,0.535611111,0.535611111,0.535611111,2.092554336,0.637749057,2.730303393,2.832 -3390,1999/4/13,1.2,0,229.3750962,0,0,1.106007757,0.593675299,0.593675299,0.545639787,0.068280472,43.72472842,0.507334967,0.507334967,0.507334967,1.88703493,0.57561544,2.46265037,2.784 -3391,1999/4/14,1.4,0,227.5192534,0,0,1.285916917,0.56992586,0.56992586,0.524924385,0.059110956,43.0010741,0.474868001,0.474868001,0.474868001,1.723446712,0.533978957,2.257425668,2.184 -3392,1999/4/15,1.6,0,225.5101604,0,0,1.464009433,0.545083629,0.545083629,0.503118129,0.056727421,42.36251002,0.447925251,0.447925251,0.447925251,1.589607454,0.504652672,2.094260125,2.052 -3393,1999/4/16,1.9,0,223.2608384,0,0,1.731009166,0.518312813,0.518312813,0.479998141,0.054213753,41.7901161,0.425073351,0.425073351,0.425073351,1.477465413,0.479287105,1.956752518,2.04 -3394,1999/4/17,2.3,0,220.6869522,0,0,2.084898473,0.488987758,0.488987758,0.454895231,0.051503352,41.2689072,0.405308307,0.405308307,0.405308307,1.381412445,0.456811659,1.838224104,1.92 -3395,1999/4/18,2.5,0.1,218.0630676,0,0,2.263402566,0.460482014,0.460482014,0.428826391,0.048618955,40.78798617,0.387889813,0.387889813,0.387889813,1.29763723,0.436508768,1.734145998,1.632 -3396,1999/4/19,2.5,4.1,218.4530371,1.6,0.85460139,2.5,0.464631875,1.210030486,0.710579358,0.062836951,40.60408055,0.372298173,0.372298173,0.372298173,1.26678315,0.435135124,1.701918273,1.548 -3397,1999/4/20,2.1,4.3,219.1508321,2.2,1.169927482,2.1,0.472132501,1.502205019,1.204465159,0.11857594,40.86436145,0.366456024,0.366456024,0.366456024,1.310640288,0.485031964,1.795672252,1.632 -3398,1999/4/21,1.7,0,217.1714004,0,0,1.528326435,0.451105266,0.451105266,0.936696434,0.123703,40.86504461,0.374743831,0.374743831,0.374743831,1.310757104,0.498446831,1.809203935,1.632 -3399,1999/4/22,1.8,0,215.1302486,0,0,1.610934024,0.430217796,0.430217796,0.397742119,0.057048972,40.40366985,0.374765758,0.374765758,0.374765758,1.233882632,0.43181473,1.665697362,1.212 -3400,1999/4/23,2.6,0,212.4124745,0,0,2.314153565,0.403620497,0.403620497,0.37668745,0.042684333,39.97461122,0.360164439,0.360164439,0.360164439,1.165910521,0.402848772,1.568759293,1.0344 -3401,1999/4/24,2.7,0.1,209.734385,0,0,2.399368791,0.378720693,0.378720693,0.35342056,0.040129205,39.57017765,0.346954762,0.346954762,0.346954762,1.104808893,0.387083967,1.491892861,0.9672 -3402,1999/4/25,2.5,0,207.1814237,0,0,2.196812929,0.356148428,0.356148428,0.331930344,0.037670293,39.18740542,0.334823539,0.334823539,0.334823539,1.049526116,0.372493832,1.422019948,0.9672 -3403,1999/4/26,2.5,8.1,210.0175714,5.6,3.217441453,2.5,0.381293709,2.763852256,1.271814003,0.08873,39.66409589,0.323624034,0.323624034,0.323624034,1.118747563,0.412354035,1.531101597,1.0344 -3404,1999/4/27,2.7,0,207.2868148,0,0,2.373698253,0.357058326,0.357058326,1.536546038,0.195159323,40.31818116,0.337613217,0.337613217,0.337613217,1.22007399,0.53277254,1.752846531,1.1712 -3405,1999/4/28,2.9,0,204.4222296,0,0,2.531603789,0.33298139,0.33298139,0.311839721,0.063563637,39.84196609,0.357504279,0.357504279,0.357504279,1.145559065,0.421067916,1.56662698,0.9 -3406,1999/4/29,3.1,0,201.4273819,0,0,2.685625741,0.309221986,0.309221986,0.290295936,0.033060599,39.39587082,0.342941978,0.342941978,0.342941978,1.079333191,0.376002577,1.455335767,0.7752 -3407,1999/4/30,2.8,0,198.731123,0,0,2.407244438,0.289014524,0.289014524,0.27031584,0.030758878,38.97587444,0.329689753,0.329689753,0.329689753,1.020001971,0.360448631,1.380450602,0.7152 -3408,1999/5/1,2.9,0,195.9870908,0,0,2.474480457,0.269551676,0.269551676,0.252423321,0.028712583,38.57929461,0.317551025,0.317551025,0.317551025,0.966554171,0.346263608,1.312817779,0.7152 -3409,1999/5/2,3,7.7,198.6107776,4.7,2.911824761,3,0.288137954,2.076313193,0.956445458,0.066843009,38.84062681,0.306385334,0.306385334,0.306385334,1.001498597,0.373228343,1.37472694,0.7752 -3410,1999/5/3,1.8,7.1,201.5271014,5.3,3.226314342,1.8,0.30999053,2.383676188,1.990120515,0.193068603,39.97802066,0.313711029,0.313711029,0.313711029,1.166437689,0.506779632,1.673217321,0.7752 -3411,1999/5/4,1.1,48.3,226.8663167,47.2,25.90096975,1.1,0.561754463,21.86078471,9.840686938,0.662263703,47.26126595,0.347058345,0.347058345,0.347058345,2.904499994,1.009322047,3.913822041,1.512 -3412,1999/5/5,1.4,25.2,237.3939363,23.8,11.23325628,1.4,0.705636724,13.27238045,16.28143917,1.767846625,56.02088427,0.623442938,0.623442938,0.623442938,8.145263787,2.391289563,10.53655335,3.912 -3413,1999/5/6,1.8,0.4,235.4123894,0,0,1.705038877,0.676507995,0.676507995,6.96853044,1.152053483,55.99739138,1.130453862,1.130453862,1.130453862,8.122477196,2.282507345,10.40498454,9.048 -3414,1999/5/7,1.9,0,233.0057532,0,0,1.764194664,0.642441517,0.642441517,0.595397561,0.215461683,52.40143977,1.128795498,1.128795498,1.128795498,5.320144669,1.344257181,6.66440185,7.344 -3415,1999/5/8,2.2,0,230.3658049,0,0,2.033272413,0.606675874,0.606675874,0.564066394,0.063860902,49.89344321,0.894806751,0.894806751,0.894806751,3.966869702,0.958667652,4.925537355,6.264 -3416,1999/5/9,3,0,227.0449441,0,0,2.756880316,0.563980523,0.563980523,0.529139399,0.06015227,48.00312119,0.753668128,0.753668128,0.753668128,3.173129542,0.813820398,3.98694994,5.688 -3417,1999/5/10,3,4.4,227.1729159,1.4,0.693551424,3,0.565579672,1.272028248,0.787331126,0.072443221,46.72517668,0.658371694,0.658371694,0.658371694,2.723647335,0.730814915,3.45446225,5.016 -3418,1999/5/11,2.7,0,224.1775068,0,0,2.466317123,0.529091902,0.529091902,0.851292278,0.102544577,45.75358243,0.59904068,0.59904068,0.59904068,2.421927207,0.701585257,3.123512464,4.512 -3419,1999/5/12,2.2,14.2,229.5373025,12,5.955584064,2.2,0.59578835,6.640204287,2.890674683,0.195810044,46.53787976,0.556564944,0.556564944,0.556564944,2.662942299,0.752374988,3.415317287,3.912 -3420,1999/5/13,1.7,5.8,230.8972215,4.1,1.973662219,1.7,0.613743262,2.740081042,4.435250443,0.506337293,48.28332612,0.590678358,0.590678358,0.590678358,3.280482435,1.097015651,4.377498086,4.392 -3421,1999/5/14,2,0.9,229.2910508,0,0,1.913587855,0.592582821,0.592582821,1.617599319,0.27286969,47.5620745,0.671920842,0.671920842,0.671920842,3.010771789,0.944790533,3.955562322,3.792 -3422,1999/5/15,2.1,10.3,232.5746134,8.2,3.920049924,2.1,0.636487325,4.916437401,2.241673441,0.179494684,47.46507427,0.637442101,0.637442101,0.637442101,2.976115772,0.816936785,3.793052557,3.576 -3423,1999/5/16,1.9,0,230.2148785,0,0,1.755054246,0.604680678,0.604680678,2.721224473,0.346004568,47.74284406,0.63290359,0.63290359,0.63290359,3.076358269,0.978908159,4.055266427,3.792 -3424,1999/5/17,2.3,0.4,227.893005,0,0,2.147227289,0.574646187,0.574646187,0.53234601,0.11066268,46.32553383,0.645962023,0.645962023,0.645962023,2.595618267,0.756624703,3.35224297,2.784 -3425,1999/5/18,2.4,3.7,227.9568172,1.3,0.639267434,2.4,0.575455244,1.23618781,0.778555728,0.072339657,45.37309304,0.581298894,0.581298894,0.581298894,2.312295408,0.653638552,2.96593396,2.928 -3426,1999/5/19,2.3,1.7,226.8453459,0,0,2.249977748,0.561493588,0.561493588,0.845998253,0.101006946,44.64478437,0.540533149,0.540533149,0.540533149,2.114840073,0.641540095,2.756380168,2.64 -3427,1999/5/20,2.3,0.2,224.3956168,0,0,2.118046005,0.53168303,0.53168303,0.493566106,0.063452532,43.75496193,0.510770183,0.510770183,0.510770183,1.894158732,0.574222715,2.468381447,2.28 -3428,1999/5/21,1.9,2.9,224.3717109,1,0.507492552,1.9,0.531398532,1.023905979,0.672991315,0.064324167,43.14829772,0.476018212,0.476018212,0.476018212,1.755673732,0.540342379,2.29601611,1.788 -3429,1999/5/22,1.8,0.4,222.588097,0,0,1.673098805,0.51051506,0.51051506,0.718675321,0.085316337,42.66786527,0.453315758,0.453315758,0.453315758,1.652423534,0.538632096,2.191055629,1.788 -3430,1999/5/23,2.2,0,220.1138419,0,0,1.991611483,0.482643572,0.482643572,0.448451556,0.056494792,42.02884413,0.435894296,0.435894296,0.435894296,1.523366985,0.492389087,2.015756073,1.872 -3431,1999/5/24,3.1,0.1,216.9656051,0,0,2.799273741,0.448963096,0.448963096,0.421072094,0.047853807,41.44935304,0.413470039,0.413470039,0.413470039,1.414033223,0.461323846,1.875357069,1.572 -3432,1999/5/25,3.3,0.1,213.691176,0,0,2.95846454,0.415964527,0.415964527,0.391029087,0.044569239,40.91492915,0.393858416,0.393858416,0.393858416,1.319311393,0.438427655,1.757739048,1.296 -3433,1999/5/26,3.2,6.8,215.240626,3.6,1.980776955,3.2,0.431327031,2.050550076,1.020190536,0.077864691,40.9808069,0.37636939,0.37636939,0.37636939,1.330682182,0.454234081,1.784916263,1.104 -3434,1999/5/27,2.9,9.6,218.3959599,6.7,3.619356533,2.9,0.464022616,3.544666083,2.435818171,0.218572117,42.23176272,0.378494655,0.378494655,0.378494655,1.563357007,0.597066772,2.160423779,1.26 -3435,1999/5/28,3,1.7,216.7816693,0,0,2.867235151,0.447055396,0.447055396,1.966337726,0.268852411,42.91397293,0.420499239,0.420499239,0.420499239,1.704626755,0.68935165,2.393978405,1.356 -3436,1999/5/29,2.7,0,213.9511054,0,0,2.412053464,0.418510487,0.418510487,0.391071792,0.080612926,42.19396348,0.444757738,0.444757738,0.444757738,1.555838981,0.525370664,2.081209645,1.356 -3437,1999/5/30,2.9,0,210.9876349,0,0,2.573256121,0.390214354,0.390214354,0.365479665,0.041566626,41.54671594,0.419183435,0.419183435,0.419183435,1.431910634,0.460750061,1.892660695,1.02 -3438,1999/5/31,3.1,0.1,207.9816697,0,0,2.742860947,0.363104243,0.363104243,0.340481742,0.038760111,40.95763133,0.397105987,0.397105987,0.397105987,1.326672347,0.435866098,1.762538446,0.9312 -3439,1999/6/1,3,0,205.0205483,0,0,2.623222267,0.337899183,0.337899183,0.316835326,0.036076927,40.41628157,0.377746019,0.377746019,0.377746019,1.235931101,0.413822946,1.649754047,0.8256 -3440,1999/6/2,3.4,3.1,204.4263996,0,0,3.361133185,0.333015465,0.333015465,0.302179706,0.033980003,39.92132188,0.360558073,0.360558073,0.360558073,1.157697474,0.394538076,1.55223555,0.7728 -3441,1999/6/3,3.2,13.2,209.8506809,10,5.804056991,3.2,0.379775657,4.575718667,1.976000031,0.126486185,40.92211325,0.345338644,0.345338644,0.345338644,1.320547302,0.471824829,1.792372131,0.8256 -3442,1999/6/4,2.8,11.4,214.2473338,8.6,4.818080079,2.8,0.421427248,4.203347169,3.971023231,0.399359028,43.4470324,0.376600739,0.376600739,0.376600739,1.822704818,0.775959767,2.598664585,1.332 -3443,1999/6/5,3,0,211.1916569,0,0,2.663565135,0.3921117,0.3921117,2.277198531,0.341070307,44.18942502,0.46439592,0.46439592,0.46439592,1.999201832,0.805466227,2.804668059,1.5 -3444,1999/6/6,3.7,6.8,212.5264545,3.1,1.73950624,3.7,0.404708706,1.765202466,0.895406768,0.114301013,43.69706251,0.492767674,0.492767674,0.492767674,1.880536952,0.607068688,2.48760564,1.104 -3445,1999/6/7,3.4,15.8,218.8150425,12.4,6.757099052,3.4,0.468511026,6.111411974,3.305863495,0.255724727,45.21004043,0.473817212,0.473817212,0.473817212,2.266702787,0.729541939,2.996244726,1.512 -3446,1999/6/8,2.8,2.7,218.2624645,0,0,2.789977804,0.462600156,0.462600156,3.268432956,0.435890131,46.3948246,0.533765029,0.533765029,0.533765029,2.617413819,0.969655161,3.587068979,1.716 -3447,1999/6/9,2.5,0.9,216.3837743,0,0,2.335739312,0.442950903,0.442950903,0.408576737,0.112452116,45.14029872,0.584347732,0.584347732,0.584347732,2.247450345,0.696799848,2.944250193,1.428 -3448,1999/6/10,3,7.9,218.5516689,4.9,2.633580827,3,0.465686217,2.73210539,1.303097549,0.094773626,44.81476745,0.530888702,0.530888702,0.530888702,2.159517527,0.625662328,2.785179856,1.5 -3449,1999/6/11,3.5,3.6,218.1437066,0.1,0.053375323,3.5,0.46133768,0.507962357,1.580138974,0.197392008,44.76592217,0.517609213,0.517609213,0.517609213,2.146593463,0.715001221,2.861594684,1.296 -3450,1999/6/12,3.6,0.4,214.8502016,0,0,3.266091263,0.427413758,0.427413758,0.42534147,0.075260268,43.80168592,0.515637337,0.515637337,0.515637337,1.905215061,0.590897604,2.496112665,1.332 -3451,1999/6/13,3.7,6,215.6723286,2.3,1.257814528,3.7,0.435687525,1.477872997,0.799707353,0.0667489,43.29163378,0.477799704,0.477799704,0.477799704,1.787559189,0.544548604,2.332107793,1.296 -3452,1999/6/14,2.8,33,230.5261028,30.2,15.46257504,2.8,0.60880076,15.34622572,6.809452489,0.439807325,47.55239704,0.458608288,0.458608288,0.458608288,3.007297518,0.898415613,3.905713131,1.44 -3453,1999/6/15,2.6,9.1,232.9677032,6.5,3.083514565,2.6,0.641914234,4.058399669,9.351798445,1.123289415,52.28992047,0.636988265,0.636988265,0.636988265,5.251263281,1.76027768,7.011540961,5.16 -3454,1999/6/16,2.5,8.4,235.0346361,5.9,2.737999593,2.5,0.671066652,3.833067059,3.563531005,0.534025252,51.78893817,0.888159402,0.888159402,0.888159402,4.952672705,1.422184654,6.374857358,4.968 -3455,1999/6/17,2.7,7.9,236.7074544,5.2,2.368251534,2.7,0.695433272,3.527181738,3.328905398,0.379250261,51.29937372,0.858731723,0.858731723,0.858731723,4.677201573,1.237981984,5.915183557,4.968 -3456,1999/6/18,3.1,10.2,239.1406252,7.1,3.165314345,3.1,0.73214349,4.666829145,3.624736582,0.381341119,51.15556782,0.830654082,0.830654082,0.830654082,4.599196563,1.211995201,5.811191764,5.472 -3457,1999/6/19,3.1,6,239.6731179,2.9,1.272874614,3.1,0.740381962,2.367507348,3.291687283,0.402771813,50.83823502,0.822532689,0.822532689,0.822532689,4.431552772,1.225304502,5.656857274,5.592 -3458,1999/6/20,2.7,3.4,239.2464317,0.7,0.307088404,2.7,0.733774565,1.126686161,1.640509836,0.236633587,49.49724528,0.804812307,0.804812307,0.804812307,3.78631188,1.041445893,4.827757773,5.856 -3459,1999/6/21,3,0.7,236.4061465,0,0,2.84929272,0.690992529,0.690992529,0.841875572,0.11773973,47.9273721,0.73292846,0.73292846,0.73292846,3.144677216,0.85066819,3.995345406,5.472 -3460,1999/6/22,3.3,0.8,233.4334829,0,0,3.124270679,0.648392869,0.648392869,0.605062193,0.073302881,46.5275472,0.654742665,0.654742665,0.654742665,2.65962976,0.728045546,3.387675306,4.512 -3461,1999/6/23,3.5,0.7,230.2399553,0,0,3.288515785,0.605011819,0.605011819,0.566413774,0.064389522,45.37215085,0.590219477,0.590219477,0.590219477,2.312029595,0.654608999,2.966638594,3.936 -3462,1999/6/24,3.5,0,226.4689881,0,0,3.214138913,0.556828298,0.556828298,0.525473381,0.059955218,44.38895897,0.540493865,0.540493865,0.540493865,2.049159129,0.600449082,2.649608212,3.504 -3463,1999/6/25,3.8,2.4,224.6556479,0,0,3.678554745,0.534785509,0.534785509,0.49243638,0.055767293,43.53835272,0.50059942,0.50059942,0.50059942,1.843642049,0.556366713,2.400008763,3.096 -3464,1999/6/26,3.6,13.2,228.8387692,9.6,4.769852818,3.6,0.586731519,5.416878701,2.41021516,0.160900137,44.37161596,0.467821266,0.467821266,0.467821266,2.044773184,0.628721403,2.673494588,4.008 -3465,1999/6/27,3.7,0,224.9130101,0,0,3.387888627,0.537870476,0.537870476,2.947501354,0.377013585,45.47719653,0.4999152,0.4999152,0.4999152,2.341835986,0.876928786,3.218764772,3.384 -3466,1999/6/28,4.2,0,220.6114082,0,0,3.813454203,0.488147688,0.488147688,0.464438011,0.110239797,44.42756761,0.544886287,0.544886287,0.544886287,2.058953215,0.655126084,2.714079299,2.832 -3467,1999/6/29,4.8,0,215.858015,0,0,4.315819201,0.437573953,0.437573953,0.419351295,0.048291133,43.51156542,0.502125018,0.502125018,0.502125018,1.837478512,0.550416151,2.387894663,2.268 -3468,1999/6/30,4.6,0,211.3715563,0,0,4.092667854,0.393790858,0.393790858,0.376517907,0.043392848,42.69647824,0.466814633,0.466814633,0.466814633,1.658419712,0.510207482,2.168627193,1.956 -3469,1999/7/1,4.4,0.9,207.9243973,0,0,3.984556159,0.362602829,0.362602829,0.342089416,0.039210908,41.96459343,0.436918238,0.436918238,0.436918238,1.510892468,0.476129146,1.987021613,1.668 -3470,1999/7/2,4.4,0,203.7559843,0,0,3.84083986,0.327573109,0.327573109,0.312502344,0.03585923,41.30116261,0.411261971,0.411261971,0.411261971,1.387195131,0.447121201,1.834316332,1.548 -3471,1999/7/3,4.4,0,199.660671,0,0,3.799455816,0.295857554,0.295857554,0.282285019,0.032474313,40.69109739,0.38895195,0.38895195,0.38895195,1.281302192,0.421426263,1.702728455,1.32 -3472,1999/7/4,4.5,0,195.5518069,0,0,3.842300582,0.266563468,0.266563468,0.254697739,0.02931682,40.12555998,0.369212071,0.369212071,0.369212071,1.189447215,0.398528891,1.587976106,1.1712 -3473,1999/7/5,4.5,0,191.5140707,0,0,3.797645018,0.24009121,0.24009121,0.229447963,0.02642079,39.59769287,0.351561942,0.351561942,0.351561942,1.108877015,0.377982733,1.486859748,1.0008 -3474,1999/7/6,4.4,9.6,194.5605328,5.2,3.30631971,4.4,0.259857573,2.153537863,0.972082188,0.066321364,39.77066777,0.335639119,0.335639119,0.335639119,1.134746412,0.401960483,1.536706895,0.8376 -3475,1999/7/7,4.2,9.5,197.5882768,5.3,3.308520037,4.2,0.28077604,2.272256003,1.985089397,0.195392061,40.79733338,0.340798813,0.340798813,0.340798813,1.299222602,0.536190874,1.835413476,1.308 -3476,1999/7/8,4.1,0,193.8510322,0,0,3.482103047,0.255141537,0.255141537,1.248071235,0.181549947,41.07152262,0.372596871,0.372596871,0.372596871,1.346478863,0.554146819,1.900625682,2.424 -3477,1999/7/9,3.7,0,190.5071284,0,0,3.110073631,0.233830168,0.233830168,0.221207285,0.04883669,40.4351619,0.381435223,0.381435223,0.381435223,1.23900323,0.430271913,1.669275143,1.404 -3478,1999/7/10,3.7,0,187.2139145,0,0,3.078951967,0.214261986,0.214261986,0.202715784,0.023204853,39.85194603,0.361147934,0.361147934,0.361147934,1.147079586,0.384352788,1.531432374,1.1712 -3479,1999/7/11,4.4,0,183.3999053,0,0,3.620744854,0.193264344,0.193264344,0.184539643,0.021196099,39.31241384,0.343242732,0.343242732,0.343242732,1.067314564,0.364438831,1.431753395,1.0008 -3480,1999/7/12,4.5,0,179.5689917,0,0,3.65704538,0.173868215,0.173868215,0.166274521,0.019148346,38.80875944,0.327251745,0.327251745,0.327251745,0.997180668,0.346400092,1.34358076,0.8376 -3481,1999/7/13,4.4,0.2,176.040761,0,0,3.570814563,0.157416182,0.157416182,0.149981214,0.017254467,38.3365254,0.312811092,0.312811092,0.312811092,0.935026352,0.330065559,1.265091911,0.9 -3482,1999/7/14,4.4,12.2,181.2267354,7.8,5.368034277,4.4,0.182059863,2.614025586,1.112277511,0.069858061,38.75813882,0.299690242,0.299690242,0.299690242,0.990354328,0.369548303,1.359902631,0.7752 -3483,1999/7/15,4.1,1.9,179.2737497,0,0,3.680544865,0.172440821,0.172440821,1.387956228,0.178836192,39.38038589,0.311385354,0.311385354,0.311385354,1.077094509,0.490221546,1.567316056,1.1712 -3484,1999/7/16,3.9,25,192.9714545,21.1,13.94709549,3.9,0.249390633,7.402295142,3.011702098,0.204735484,41.32910319,0.329236419,0.329236419,0.329236419,1.392221223,0.533971903,1.926193126,0.8088 -3485,1999/7/17,3.6,5.5,193.9210598,1.9,1.205209182,3.6,0.25560393,0.950394748,4.1129286,0.51334037,43.90261236,0.389873681,0.389873681,0.389873681,1.929293113,0.903214051,2.832507164,1.872 -3486,1999/7/18,3.2,4.5,194.4826155,1.3,0.820891965,3.2,0.259336264,0.7384443,0.771613924,0.166482401,43.35424374,0.481664073,0.481664073,0.481664073,1.801646618,0.648146474,2.449793092,1.1016 -3487,1999/7/19,3.4,1.7,192.7991734,0,0,3.135165567,0.248276499,0.248276499,0.470935237,0.065585092,42.63959498,0.460933884,0.460933884,0.460933884,1.646517873,0.526518976,2.173036849,1.0008 -3488,1999/7/20,3.3,4.2,193.1213607,0.9,0.572550626,3.3,0.250363331,0.577812705,0.353648139,0.037842104,41.92489745,0.434884302,0.434884302,0.434884302,1.503229969,0.472726406,1.975956375,0.7752 -3489,1999/7/21,3.1,4.2,193.5662785,1.1,0.698186005,3.1,0.253268216,0.655082211,0.550560495,0.055590718,41.46793061,0.409901978,0.409901978,0.409901978,1.417429314,0.465492697,1.882922011,0.9 -3490,1999/7/22,3.1,1.3,191.8090032,0,0,2.815325049,0.241950308,0.241950308,0.426346135,0.055528687,40.96142529,0.394476607,0.394476607,0.394476607,1.327328063,0.450005294,1.777333356,1.0344 -3491,1999/7/23,3.3,3,191.3184263,0,0,3.251712502,0.238864309,0.238864309,0.216535997,0.028999872,40.3333202,0.377868503,0.377868503,0.377868503,1.222509596,0.406868375,1.629377971,0.6552 -3492,1999/7/24,3.6,1,188.9222023,0,0,3.171982782,0.224241266,0.224241266,0.209200329,0.023601859,39.76639382,0.357974336,0.357974336,0.357974336,1.134101042,0.381576195,1.515677237,0.7152 -3493,1999/7/25,3.6,1.3,186.8022348,0,0,3.208056284,0.211911213,0.211911213,0.196945547,0.022325956,39.24615566,0.340670647,0.340670647,0.340670647,1.057854354,0.362996602,1.420850957,0.7152 -3494,1999/7/26,3,0,184.1350457,0,0,2.470011831,0.197177314,0.197177314,0.184898743,0.021013142,38.76509036,0.325325353,0.325325353,0.325325353,0.991289399,0.346338495,1.337627894,0.6288 -3495,1999/7/27,3,6.2,186.0562037,3.2,2.128862037,3,0.207703969,1.278841933,0.604823761,0.043633972,38.69905759,0.31158087,0.31158087,0.31158087,0.982437398,0.355214841,1.33765224,0.6 -3496,1999/7/28,3.5,3.5,185.8496527,0,0,3.5,0.206551051,0.206551051,0.727297076,0.091590114,38.74719773,0.309727199,0.309727199,0.309727199,0.98888413,0.401317313,1.390201443,0.7752 -3497,1999/7/29,3.7,2.6,184.7439982,0,0,3.505187921,0.200466516,0.200466516,0.183491949,0.033168401,38.31011738,0.311077808,0.311077808,0.311077808,0.931650114,0.344246208,1.275896322,1.0344 -3498,1999/7/30,3.3,1,182.6715927,0,0,2.882956118,0.189449382,0.189449382,0.176067005,0.019876593,37.90412209,0.298968321,0.298968321,0.298968321,0.881030613,0.318844914,1.199875527,0.8376 -3499,1999/7/31,3.2,0,179.8972528,0,0,2.598873566,0.175466352,0.175466352,0.164979764,0.018767955,37.52163497,0.288025229,0.288025229,0.288025229,0.835492116,0.306793184,1.1422853,0.6 -3500,1999/8/1,3.4,1,177.7986438,0,0,2.933159727,0.165449253,0.165449253,0.153961971,0.017491684,37.15936685,0.277980366,0.277980366,0.277980366,0.794210449,0.29547205,1.089682499,0.7152 -3501,1999/8/2,3.5,0,174.8519251,0,0,2.794555605,0.152163082,0.152163082,0.143654976,0.016371443,36.81513123,0.26869962,0.26869962,0.26869962,0.756590223,0.285071063,1.041661286,0.7152 -3502,1999/8/3,3.6,0,171.8682471,0,0,2.84408219,0.139595859,0.139595859,0.131981478,0.015097162,36.48524443,0.260087942,0.260087942,0.260087942,0.721956217,0.275185104,0.997141321,0.7752 -3503,1999/8/4,3.3,0,169.1594466,0,0,2.57988019,0.12892028,0.12892028,0.121418363,0.013873482,36.16870025,0.252021965,0.252021965,0.252021965,0.689984515,0.265895447,0.955879961,0.6 -3504,1999/8/5,2.7,0,166.9475085,0,0,2.091240964,0.120697203,0.120697203,0.112779323,0.012837445,35.86545368,0.244451744,0.244451744,0.244451744,0.660477634,0.25728919,0.917766824,0.4416 -3505,1999/8/6,2.6,0,164.8372867,0,0,1.996972406,0.113249375,0.113249375,0.105684853,0.012003229,35.57525505,0.237353223,0.237353223,0.237353223,0.633236705,0.249356452,0.882593157,0.4416 -3506,1999/8/7,3,0,162.448319,0,0,2.283700677,0.105267012,0.105267012,0.098770614,0.011237569,35.29674268,0.230699185,0.230699185,0.230699185,0.60798217,0.241936755,0.849918924,0.4416 -3507,1999/8/8,3.3,0.1,159.9391528,0,0,2.511791197,0.09737504,0.09737504,0.091622201,0.010447621,35.02835754,0.224439444,0.224439444,0.224439444,0.584446789,0.234887065,0.819333854,0.3936 -3508,1999/8/9,3.2,0,157.4622727,0,0,2.38682335,0.090056744,0.090056744,0.084746085,0.00966995,34.76918198,0.218523019,0.218523019,0.218523019,0.56244466,0.228192969,0.790637629,0.3936 -3509,1999/8/10,3.1,0,155.0904474,0,0,2.288356773,0.083468443,0.083468443,0.078448039,0.008947377,34.5187056,0.212916167,0.212916167,0.212916167,0.541840587,0.221863544,0.763704131,0.3936 -3510,1999/8/11,3.4,0,152.5308852,0,0,2.482764477,0.076797729,0.076797729,0.072486007,0.008278129,34.27628664,0.207595885,0.207595885,0.207595885,0.522500847,0.215874013,0.73837486,0.312 -3511,1999/8/12,3.7,0,149.7910328,0,0,2.669714976,0.070137495,0.070137495,0.066486505,0.007612259,34.04102704,0.202537835,0.202537835,0.202537835,0.504283938,0.210150094,0.714434033,0.288 -3512,1999/8/13,3.9,0,146.9495083,0,0,2.777797372,0.063727129,0.063727129,0.060591017,0.006951596,33.81225415,0.197713932,0.197713932,0.197713932,0.487077839,0.204665529,0.691743368,0.24 -3513,1999/8/14,4.3,0,143.8725597,0,0,3.019624708,0.057323842,0.057323842,0.054824485,0.006307768,33.58939374,0.193102288,0.193102288,0.193102288,0.470787187,0.199410056,0.670197243,0.24 -3514,1999/8/15,3.9,0,141.1208798,0,0,2.699635988,0.052043877,0.052043877,0.04950535,0.005692013,33.37223346,0.188684211,0.188684211,0.188684211,0.455349841,0.194376224,0.649726065,0.228 -3515,1999/8/16,3.9,0,138.411241,0,0,2.662406448,0.047232419,0.047232419,0.044938488,0.005161051,33.16089047,0.184449057,0.184449057,0.184449057,0.440730539,0.189610108,0.630340647,0.204 -3516,1999/8/17,3.7,1.8,137.0827246,0,0,3.083509053,0.045007303,0.045007303,0.041630036,0.004731149,32.95598436,0.180392978,0.180392978,0.180392978,0.426929115,0.185124127,0.612053242,0.204 -3517,1999/8/18,3.5,0,134.7004234,0,0,2.341073435,0.041227786,0.041227786,0.03901329,0.004444015,32.75760966,0.176521655,0.176521655,0.176521655,0.41390965,0.18096567,0.59487532,0.204 -3518,1999/8/19,3.6,0,132.2860697,0,0,2.376692645,0.037661063,0.037661063,0.035695799,0.004089067,32.56457886,0.172830623,0.172830623,0.172830623,0.401557222,0.17691969,0.578476912,0.204 -3519,1999/8/20,3.7,0,129.8420245,0,0,2.409738699,0.034306481,0.034306481,0.032569565,0.003734541,32.37661773,0.169292264,0.169292264,0.169292264,0.389822958,0.173026806,0.562849763,0.18 -3520,1999/8/21,4.1,0,127.1797656,0,0,2.631329794,0.030929085,0.030929085,0.029541428,0.00339608,32.19339788,0.165896856,0.165896856,0.165896856,0.378658133,0.169292936,0.547951069,0.156 -3521,1999/8/22,4,10,132.1572701,6,5.014982386,4,0.037477973,1.022495587,0.419602718,0.024897557,32.38527749,0.162634187,0.162634187,0.162634187,0.390357294,0.187531744,0.577889038,0.156 -3522,1999/8/23,3,31.5,154.8207052,28.5,22.74617947,3,0.082744325,5.836564856,2.822278061,0.196223295,34.80791916,0.166052211,0.166052211,0.166052211,0.565688606,0.362275506,0.927964112,0.18 -3523,1999/8/24,2.8,3.1,154.9672891,0.3,0.229721061,2.8,0.0831372,0.153416138,3.007504096,0.402133675,37.22734774,0.213747576,0.213747576,0.213747576,0.801823085,0.615881251,1.417704336,1.1808 -3524,1999/8/25,2.6,0.1,153.0619085,0,0,1.927235255,0.078145271,0.078145271,0.108335106,0.080717794,36.84618564,0.270424054,0.270424054,0.270424054,0.759921262,0.351141848,1.11106311,0.7752 -3525,1999/8/26,2.8,1.1,151.7534298,0,0,2.333620259,0.074858468,0.074858468,0.06903213,0.008630146,36.45701861,0.260856617,0.260856617,0.260856617,0.719055784,0.269486763,0.988542547,0.3936 -3526,1999/8/27,2.8,0.9,150.3119079,0,0,2.270155282,0.071366635,0.071366635,0.065993001,0.007447968,36.09193883,0.25134023,0.25134023,0.25134023,0.682413009,0.258788198,0.941201207,0.288 -3527,1999/8/28,2.5,0,148.4557,0,0,1.789144161,0.067063724,0.067063724,0.062529896,0.0070834,35.74779245,0.242640743,0.242640743,0.242640743,0.649317018,0.249724143,0.899041161,0.264 -3528,1999/8/29,2.6,0,146.5485373,0,0,1.844301017,0.06286168,0.06286168,0.058697128,0.006664889,35.42190345,0.234639044,0.234639044,0.234639044,0.619225171,0.241303933,0.860529103,0.264 -3529,1999/8/30,3,0,144.3828787,0,0,2.107310028,0.058348553,0.058348553,0.054792381,0.006236667,35.11221569,0.227237297,0.227237297,0.227237297,0.591717433,0.233473964,0.825191397,0.228 -3530,1999/8/31,3.4,8.2,148.114111,4.8,3.797527308,3.4,0.066295028,1.068767719,0.451728901,0.028066714,35.18611695,0.220359515,0.220359515,0.220359515,0.598187162,0.248426229,0.846613391,0.204 -3531,1999/9/1,3.2,12.4,155.1639994,9.2,7.133555155,3.2,0.08366677,2.150111615,1.389128388,0.118695102,36.11277145,0.22198707,0.22198707,0.22198707,0.684460955,0.340682172,1.025143127,0.6 -3532,1999/9/2,3,0.2,153.0386284,0,0,2.247285167,0.0780858,0.0780858,1.116445891,0.156776775,36.72532265,0.243131288,0.243131288,0.243131288,0.747025979,0.399908063,1.146934042,1.32 -3533,1999/9/3,2.9,0.8,151.4418097,0,0,2.32272646,0.074092273,0.074092273,0.068699381,0.032158874,36.34432336,0.257874057,0.257874057,0.257874057,0.707572725,0.290032931,0.997605656,0.6552 -3534,1999/9/4,2.8,1.1,150.1462467,0,0,2.324589179,0.070973858,0.070973858,0.065450963,0.007387881,35.98629882,0.248631437,0.248631437,0.248631437,0.672106939,0.256019318,0.928126257,0.492 -3535,1999/9/5,2.7,2.5,149.9322078,0,0,2.643569879,0.070468946,0.070468946,0.063676981,0.007123084,35.64998027,0.240164117,0.240164117,0.240164117,0.64015965,0.247287201,0.887446851,0.4416 -3536,1999/9/6,2.4,0,148.1509921,0,0,1.714838001,0.066377682,0.066377682,0.061805597,0.006963048,35.33296706,0.232399672,0.232399672,0.232399672,0.611218482,0.239362721,0.850581203,0.432 -3537,1999/9/7,2.8,0.1,146.176773,0,0,2.012151417,0.062067705,0.062067705,0.058037046,0.006591419,35.03153026,0.225246661,0.225246661,0.225246661,0.584720508,0.231838081,0.816558589,0.336 -3538,1999/9/8,2.6,1.1,145.0625806,0,0,2.154456271,0.059736109,0.059736109,0.054939723,0.006206426,34.7446629,0.218592302,0.218592302,0.218592302,0.560399386,0.224798728,0.785198115,0.288 -3539,1999/9/9,2.6,0,143.192174,0,0,1.814426564,0.055980107,0.055980107,0.052278505,0.005918668,34.47131844,0.212391113,0.212391113,0.212391113,0.538014078,0.218309781,0.756323859,0.288 -3540,1999/9/10,2.4,0,141.4794623,0,0,1.660002682,0.052708949,0.052708949,0.049089665,0.005570509,34.20971666,0.206600141,0.206600141,0.206600141,0.517291581,0.21217065,0.729462232,0.24 -3541,1999/9/11,2.6,0,139.647827,0,0,1.782253468,0.049381891,0.049381891,0.046123537,0.005236448,33.95895071,0.201164412,0.201164412,0.201164412,0.498053903,0.206400861,0.704454764,0.216 -3542,1999/9/12,3.1,0,137.4989054,0,0,2.103226432,0.045695129,0.045695129,0.042987066,0.004896506,33.71786607,0.196050476,0.196050476,0.196050476,0.480122178,0.200946983,0.68106916,0.216 -3543,1999/9/13,3.2,0,135.3104181,0,0,2.146316952,0.042170374,0.042170374,0.039732989,0.004535628,33.48547456,0.191222181,0.191222181,0.191222181,0.463346687,0.195757809,0.659104497,0.192 -3544,1999/9/14,3.2,0,133.1503039,0,0,2.121205984,0.038908185,0.038908185,0.036664449,0.004187005,33.26116994,0.186648965,0.186648965,0.186648965,0.447618028,0.190835971,0.638453999,0.192 -3545,1999/9/15,2.8,0,131.2785944,0,0,1.835461715,0.036247853,0.036247853,0.033966272,0.0038709,33.04459289,0.182309503,0.182309503,0.182309503,0.432852827,0.186180403,0.619033231,0.192 -3546,1999/9/16,3.1,0,129.2353533,0,0,2.009729017,0.03351206,0.03351206,0.031542159,0.003596112,32.8353512,0.17818839,0.17818839,0.17818839,0.418972241,0.181784502,0.600756742,0.192 -3547,1999/9/17,3,0,127.2817433,0,0,1.922556671,0.031053345,0.031053345,0.029189419,0.003329505,32.6329161,0.174270474,0.174270474,0.174270474,0.405894989,0.177599979,0.583494968,0.204 -3548,1999/9/18,3,0,125.3523491,0,0,1.900625146,0.028768982,0.028768982,0.027045461,0.003084192,32.43694274,0.170538947,0.170538947,0.170538947,0.393557774,0.17362314,0.567180913,0.1788 -3549,1999/9/19,2.8,0,123.571398,0,0,1.754169429,0.026781694,0.026781694,0.025106908,0.00286022,32.24712637,0.16698124,0.16698124,0.16698124,0.381904513,0.169841461,0.551745973,0.1788 -3550,1999/9/20,2.8,0,121.8113263,0,0,1.735144515,0.024927199,0.024927199,0.023370816,0.002660903,32.06319799,0.163586158,0.163586158,0.163586158,0.370885358,0.16624706,0.537132418,0.156 -3551,1999/9/21,2.8,0,120.0719543,0,0,1.716175074,0.023196934,0.023196934,0.021750853,0.002476614,31.88484126,0.160343704,0.160343704,0.160343704,0.360451286,0.162820318,0.523271604,0.1356 -3552,1999/9/22,2.6,7.6,124.3155,5,4.271143887,2.6,0.027598175,0.756454289,0.310586199,0.018435048,31.98631355,0.157243568,0.157243568,0.157243568,0.366357472,0.175678616,0.542036088,0.1356 -3553,1999/9/23,2.3,8.4,129.4230858,6.1,5.141342103,2.3,0.033756301,0.992414198,0.774036273,0.072176544,32.52056796,0.159002023,0.159002023,0.159002023,0.398783887,0.231178566,0.629962453,0.156 -3554,1999/9/24,2,1,128.7462526,0,0,1.643950813,0.032882377,0.032882377,0.51406307,0.075396823,32.78728755,0.168492824,0.168492824,0.168492824,0.415836304,0.243889647,0.659725951,0.2304 -3555,1999/9/25,1.9,23,145.8906111,21.1,17.20582056,1.9,0.061462037,3.955641479,1.579470791,0.100709459,34.03622031,0.17337928,0.17337928,0.17337928,0.503917308,0.27408874,0.778006048,0.2304 -3556,1999/9/26,1.9,29.4,166.6884272,27.5,20.91757825,1.9,0.11976223,6.702183979,4.64523235,0.409584728,37.98780058,0.197616237,0.197616237,0.197616237,0.891268318,0.607200965,1.498469283,1.692 -3557,1999/9/27,1.5,0,165.4203161,0,0,1.152841843,0.115269226,0.115269226,3.429484585,0.493242895,40.46385705,0.290256869,0.290256869,0.290256869,1.243684985,0.783499764,2.027184749,2.148 -3558,1999/9/28,1.3,0,164.3143872,0,0,0.99446681,0.111462058,0.111462058,0.102238094,0.08913095,39.79040939,0.362045751,0.362045751,0.362045751,1.137731503,0.451176701,1.588908204,0.9672 -3559,1999/9/29,1.2,0,163.2922708,0,0,0.91408275,0.108033657,0.108033657,0.098961293,0.011115858,39.18199936,0.341391268,0.341391268,0.341391268,1.048762593,0.352507126,1.401269719,0.7752 -3560,1999/9/30,1.3,0,162.2017545,0,0,0.986046796,0.104469535,0.104469535,0.095822109,0.010765571,38.6282669,0.323467803,0.323467803,0.323467803,0.973022378,0.334233375,1.307255752,0.6552 -3561,1999/10/1,1.7,0.1,160.8937645,0,0,1.30767041,0.100319577,0.100319577,0.092382936,0.010397901,38.12066751,0.307748727,0.307748727,0.307748727,0.907731047,0.318146628,1.225877675,0.5448 -3562,1999/10/2,1.7,0.2,159.6709174,0,0,1.326286817,0.096560247,0.096560247,0.088802311,0.009998389,37.6524573,0.293825661,0.293825661,0.293825661,0.850838182,0.303824049,1.154662231,0.6 -3563,1999/10/3,1.7,0,158.3088441,0,0,1.269566663,0.092506665,0.092506665,0.085302656,0.00961139,37.21833684,0.281387382,0.281387382,0.281387382,0.800810503,0.290998772,1.091809275,0.5448 -3564,1999/10/4,1.9,4.7,160.3163404,2.8,2.106026375,1.9,0.098530096,0.792503721,0.359823857,0.024663363,37.0646502,0.270195026,0.270195026,0.270195026,0.783705521,0.294858389,1.07856391,0.4416 -3565,1999/10/5,1.9,9.4,165.7526085,7.5,5.552701376,1.9,0.116433273,2.063731897,1.21551381,0.098897832,37.69106215,0.26631011,0.26631011,0.26631011,0.855411972,0.365207941,1.220619913,0.4416 -3566,1999/10/6,1.7,4.4,167.5969899,2.7,1.967448242,1.7,0.123066787,0.855618545,1.380034757,0.164862079,38.40913264,0.282398444,0.282398444,0.282398444,0.944362712,0.447260523,1.391623235,0.6 -3567,1999/10/7,1.6,4.5,169.5615974,2.9,2.095069885,1.6,0.1304624,0.935392515,0.801575254,0.101561675,38.54972328,0.301681538,0.301681538,0.301681538,0.962666155,0.403243213,1.365909367,0.7152 -3568,1999/10/8,1.4,1.6,169.5749201,0.2,0.143836404,1.4,0.13051374,0.186677335,0.546036917,0.076164157,38.45147986,0.305564157,0.305564157,0.305564157,0.949844488,0.381728314,1.331572802,0.6552 -3569,1999/10/9,1.4,0,168.3608666,0,0,1.088152201,0.125901295,0.125901295,0.143997069,0.026164228,38.00494586,0.302847288,0.302847288,0.302847288,0.893378359,0.329011516,1.222389875,0.6552 -3570,1999/10/10,1.5,9,173.5725382,7.5,5.358339483,1.5,0.146667842,2.288328359,0.967683081,0.060772058,38.32924948,0.29071564,0.29071564,0.29071564,0.934095099,0.351487698,1.285582797,0.6 -3571,1999/10/11,1,0.6,173.1118129,0,0,0.915996921,0.144728361,0.144728361,1.212562098,0.156276861,38.83990251,0.299491215,0.299491215,0.299491215,1.001400281,0.455768075,1.457168356,0.6 -3572,1999/10/12,1.1,2,173.6008498,0.9,0.635824588,1.1,0.1467877,0.410963112,0.2354445,0.045598786,38.44060357,0.313690555,0.313690555,0.313690555,0.948433997,0.35928934,1.307723338,0.492 -3573,1999/10/13,1.3,10.8,180.0226285,9.5,6.597858471,1.3,0.176079843,3.078221372,1.423696811,0.096502415,39.12597068,0.302547575,0.302547575,0.302547575,1.040877274,0.39904999,1.439927263,0.4416 -3574,1999/10/14,1.4,2,180.2552125,0.6,0.409806543,1.4,0.177222482,0.367415939,1.699363714,0.216861967,39.98038309,0.321851784,0.321851784,0.321851784,1.166803087,0.538713751,1.705516838,0.7896 -3575,1999/10/15,1.7,3.6,181.3656514,1.9,1.293199021,1.7,0.182760118,0.789561097,0.4974633,0.077979523,39.70074852,0.347130131,0.347130131,0.347130131,1.124227999,0.425109654,1.549337653,0.6552 -3576,1999/10/16,1.3,7.5,185.3255628,6.2,4.163560147,1.3,0.203648732,2.240088584,1.283706357,0.105816226,40.13260559,0.33870641,0.33870641,0.33870641,1.190555701,0.444522636,1.635078337,0.5448 -3577,1999/10/17,1,0.4,184.6324651,0,0,0.893236945,0.199860811,0.199860811,1.209988523,0.162118203,40.45253607,0.351778046,0.351778046,0.351778046,1.241836093,0.513896249,1.755732342,0.5448 -3578,1999/10/18,0.9,0,183.6996976,0,0,0.737914975,0.19485247,0.19485247,0.177895937,0.04393907,39.84595652,0.361691349,0.361691349,0.361691349,1.14616683,0.405630419,1.551797249,0.3936 -3579,1999/10/19,1.2,0,182.5304614,0,0,0.980519094,0.188717161,0.188717161,0.172943167,0.019409652,39.29687273,0.34306221,0.34306221,0.34306221,1.065089171,0.362471862,1.427561033,0.4416 -3580,1999/10/20,1.5,3.1,183.4138197,1.6,1.076696186,1.5,0.193337824,0.716641638,0.378427665,0.030531986,38.98134331,0.326799173,0.326799173,0.326799173,1.020756261,0.357331159,1.37808742,0.492 -3581,1999/10/21,1.2,0,182.2469636,0,0,0.979602969,0.18725317,0.18725317,0.435816812,0.053817679,38.74612679,0.317707002,0.317707002,0.317707002,0.988740324,0.371524681,1.360265005,0.492 -3582,1999/10/22,0.9,3.8,184.0004139,2.9,1.949906281,0.9,0.19645599,1.146549709,0.547544574,0.046025541,38.63129549,0.311047716,0.311047716,0.311047716,0.973423597,0.357073257,1.330496854,0.492 -3583,1999/10/23,0.9,1.9,184.469832,1,0.668398321,0.9,0.198980229,0.530581907,0.788526691,0.089820385,38.73976847,0.307833185,0.307833185,0.307833185,0.987886891,0.39765357,1.385540461,0.5448 -3584,1999/10/24,0.8,0,183.6197374,0,0,0.655666709,0.194427867,0.194427867,0.344709711,0.052944513,38.44618915,0.3108691,0.3108691,0.3108691,0.94915814,0.363813613,1.312971752,0.5448 -3585,1999/10/25,1,0.1,182.6946758,0,0,0.835492221,0.189569359,0.189569359,0.173065486,0.023300826,38.02598296,0.302701468,0.302701468,0.302701468,0.895973141,0.326002293,1.221975435,0.492 -3586,1999/10/26,1.2,0,181.5337754,0,0,0.977289973,0.183610492,0.183610492,0.168258079,0.018883446,37.6365596,0.291279255,0.291279255,0.291279255,0.848960688,0.310162701,1.159123389,0.4416 -3587,1999/10/27,1.6,0.8,180.7049537,0,0,1.449372864,0.179448837,0.179448837,0.163605174,0.018339986,37.27404827,0.280971774,0.280971774,0.280971774,0.807088279,0.29931176,1.106400038,0.3936 -3588,1999/10/28,1.2,11.6,187.4451722,10.4,6.955810175,1.2,0.215591661,3.659781486,1.536578527,0.094387024,38.16851743,0.271613251,0.271613251,0.271613251,0.913722621,0.366000275,1.279722897,0.3936 -3589,1999/10/29,1,0.6,186.9015699,0,0,0.93112576,0.212476532,0.212476532,1.931777869,0.249262293,39.32613167,0.295118545,0.295118545,0.295118545,1.069282173,0.544380839,1.613663012,0.492 -3590,1999/10/30,1,0,185.8691533,0,0,0.825756933,0.206659679,0.206659679,0.188930643,0.061778288,38.84114497,0.327651593,0.327651593,0.327651593,1.001568938,0.389429882,1.390998819,0.6552 -3591,1999/10/31,1,0,184.845079,0,0,0.823057536,0.201016728,0.201016728,0.183764184,0.020610716,38.39597046,0.313725677,0.313725677,0.313725677,0.942664374,0.334336393,1.277000767,0.7152 -3592,1999/11/1,0.9,0,183.9106813,0,0,0.738421333,0.195976402,0.195976402,0.178923625,0.020057597,37.98525815,0.301319858,0.301319858,0.301319858,0.890955786,0.321377455,1.212333241,0.4416 -3593,1999/11/2,0.8,0,183.0647019,0,0,0.654478435,0.191500942,0.191500942,0.174610509,0.019558856,37.60483323,0.290188883,0.290188883,0.290188883,0.845224318,0.309747739,1.154972057,0.3936 -3594,1999/11/3,0.7,0,182.3059807,0,0,0.571164023,0.187557183,0.187557183,0.17079267,0.019116318,37.25125475,0.280143672,0.280143672,0.280143672,0.80451482,0.29925999,1.103774811,0.3936 -3595,1999/11/4,0.6,0,181.633452,0,0,0.488412566,0.184116155,0.184116155,0.167441915,0.018726706,36.9216605,0.271032364,0.271032364,0.271032364,0.768068526,0.28975907,1.057827596,0.492 -3596,1999/11/5,0.6,0,180.9653802,0,0,0.487323564,0.180748245,0.180748245,0.164373879,0.018378279,36.61350575,0.262731575,0.262731575,0.262731575,0.735260202,0.281109854,1.016370056,0.3456 -3597,1999/11/6,0.6,0,180.3016921,0,0,0.486236548,0.177451538,0.177451538,0.161370892,0.018042188,36.32444942,0.255136495,0.255136495,0.255136495,0.705563725,0.273178683,0.978742408,0.3456 -3598,1999/11/7,0.6,0,179.6423164,0,0,0.485151502,0.174224179,0.174224179,0.158431255,0.0177132,36.05248774,0.248155911,0.248155911,0.248155911,0.678548846,0.26586911,0.944417957,0.3936 -3599,1999/11/8,0.7,3,181.0305402,2.3,1.569298362,0.7,0.181074541,0.911776179,0.448207524,0.0336497,36.06284723,0.241713727,0.241713727,0.241713727,0.67956176,0.275363427,0.954925187,0.3456 -3600,1999/11/9,0.8,9.6,186.7116375,8.8,5.892493957,0.8,0.211396673,3.118902716,1.692631157,0.130925051,37.19881484,0.241956908,0.241956908,0.241956908,0.798620456,0.372881958,1.171502414,0.3936 -3601,1999/11/10,0.7,1.4,186.9600928,0.7,0.461265459,0.7,0.212810155,0.451544695,1.753142934,0.227310669,38.29228142,0.269699316,0.269699316,0.269699316,0.929375665,0.497009985,1.42638565,0.9 -3602,1999/11/11,0.7,0,186.1733699,0,0,0.578362652,0.208360254,0.208360254,0.310308381,0.071276035,38.00739155,0.298481439,0.298481439,0.298481439,0.893679691,0.369757474,1.263437165,0.492 -3603,1999/11/12,0.8,7.6,190.3846223,6.8,4.444329873,0.8,0.233077469,2.588747596,1.128011944,0.075953535,38.47348141,0.290781124,0.290781124,0.290781124,0.952703207,0.366734659,1.319437866,0.3456 -3604,1999/11/13,0.8,4.2,192.3228666,3.4,2.18346132,0.8,0.24521702,1.4617557,1.884599848,0.206062593,39.55845578,0.303454224,0.303454224,0.303454224,1.103079702,0.509516816,1.612596519,0.5448 -3605,1999/11/14,0.5,1.2,192.523105,0.7,0.446737868,0.5,0.24649951,0.499761642,0.935497584,0.138351906,39.70375181,0.334476521,0.334476521,0.334476521,1.124678079,0.472828428,1.597506507,0.6552 -3606,1999/11/15,0.5,5.9,195.667547,5.4,3.411797405,0.5,0.267355411,2.255558006,1.143498161,0.09986176,40.01402836,0.338796097,0.338796097,0.338796097,1.172017702,0.438657857,1.610675559,0.5448 -3607,1999/11/16,0.8,3.2,196.8881318,2.4,1.496407628,0.8,0.275822751,1.179415123,1.604819598,0.181226328,40.68647438,0.348153646,0.348153646,0.348153646,1.280527231,0.529379974,1.809907205,0.6552 -3608,1999/11/17,0.6,0,196.1070266,0,0,0.510725468,0.270379738,0.270379738,0.702314969,0.110680556,40.50708758,0.369065277,0.369065277,0.369065277,1.250767044,0.479745833,1.730512877,0.7752 -3609,1999/11/18,0.4,0,195.500999,0,0,0.339811229,0.266216414,0.266216414,0.241696834,0.037667968,39.95006461,0.363401361,0.363401361,0.363401361,1.162121163,0.401069329,1.563190492,0.7152 -3610,1999/11/19,0.4,7.9,199.8391964,7.5,4.635384007,0.4,0.297186567,3.16180256,1.383636816,0.090228659,40.44010281,0.346209662,0.346209662,0.346209662,1.239808279,0.436438321,1.676246601,0.6552 -3611,1999/11/20,0.5,2.2,200.5705379,1.7,1.0340226,0.5,0.302681097,0.968658498,1.979114067,0.233889766,41.37923964,0.361302412,0.361302412,0.361302412,1.401279652,0.595192178,1.99647183,1.0344 -3612,1999/11/21,0.4,2.1,201.2915286,1.7,1.029168054,0.4,0.308177421,0.979009367,0.875882239,0.12295952,41.26579739,0.391531541,0.391531541,0.391531541,1.380856032,0.514491062,1.895347093,0.9 -3613,1999/11/22,0.4,6.7,204.7179718,6.3,3.76184815,0.4,0.335404961,2.873556811,1.629641461,0.13936406,41.80326457,0.38778752,0.38778752,0.38778752,1.479961792,0.52715158,2.007113372,1.1016 -3614,1999/11/23,0.4,8.7,209.1686492,8.3,4.824299642,0.4,0.373622226,3.849322584,2.971724758,0.286429009,43.37451537,0.405754812,0.405754812,0.405754812,1.806228772,0.692183821,2.498412593,1.32 -3615,1999/11/24,0.3,0.5,208.9118824,0.2,0.114559739,0.3,0.371326492,0.456766753,2.123996155,0.298957586,44.00596931,0.461688659,0.461688659,0.461688659,1.954230872,0.760646245,2.714877117,1.632 -3616,1999/11/25,0.3,0.8,208.8280506,0.5,0.286747577,0.3,0.370579417,0.58383184,0.461293305,0.088478341,43.1883702,0.485644588,0.485644588,0.485644588,1.764537004,0.574122929,2.338659933,1.392 -3617,1999/11/26,0.3,15.9,217.0563617,15.6,8.67821792,0.3,0.449906792,7.371688872,3.207321492,0.205877539,44.71681311,0.454790974,0.454790974,0.454790974,2.133669562,0.660668512,2.794338075,1.392 -3618,1999/11/27,0.3,6.8,220.0378482,6.5,3.463293806,0.3,0.481807336,3.51851353,5.112135603,0.572534589,47.39226352,0.513660226,0.513660226,0.513660226,2.95034542,1.086194815,4.036540235,2.496 -3619,1999/11/28,0.3,3.3,221.1164056,3,1.572342955,0.3,0.493785526,1.921442572,2.535661584,0.362241082,47.55073571,0.629512073,0.629512073,0.629512073,3.006701463,0.991753155,3.998454619,2.4 -3620,1999/11/29,0.3,0.3,220.6280727,0,0,0.3,0.488332903,0.488332903,1.163078636,0.179523872,46.65120304,0.636910378,0.636910378,0.636910378,2.699521686,0.81643425,3.515955936,2.136 -3621,1999/11/30,0.3,0.1,219.9664017,0,0,0.28064878,0.481022202,0.481022202,0.436611153,0.065575258,45.37165296,0.595727914,0.595727914,0.595727914,2.31188914,0.661303172,2.973192313,2.136 -3622,1999/12/1,0.2,0.9,219.8555101,0.7,0.36891402,0.2,0.479805639,0.810891619,0.563250917,0.055429066,44.41868163,0.540473106,0.540473106,0.540473106,2.056695358,0.595902172,2.65259753,1.956 -3623,1999/12/2,0.2,0,219.2024713,0,0,0.18034739,0.472691419,0.472691419,0.59618001,0.069775155,43.64765374,0.5017736,0.5017736,0.5017736,1.868981501,0.571548755,2.440530256,1.548 -3624,1999/12/3,0.3,0,218.4675746,0,0,0.270109579,0.464787155,0.464787155,0.422299302,0.051084466,42.8508061,0.471944734,0.471944734,0.471944734,1.691091672,0.5230292,2.214120872,1.548 -3625,1999/12/4,0.5,3.4,219.5310076,2.9,1.539692861,0.5,0.476259816,1.836566955,0.960296715,0.07668242,42.6126642,0.442470651,0.442470651,0.442470651,1.640909273,0.519153071,2.160062344,1.704 -3626,1999/12/5,0.5,25.3,231.3607498,24.8,12.44970394,0.5,0.619961792,12.97025785,6.051815967,0.41186137,46.4602553,0.433923719,0.433923719,0.433923719,2.638148583,0.845785088,3.483933671,2.688 -3627,1999/12/6,0.5,0.4,230.6578921,0,0,0.492305462,0.610552225,0.610552225,6.789929293,0.894418123,49.8778239,0.587237194,0.587237194,0.587237194,3.959597885,1.481655317,5.441253202,4.512 -3628,1999/12/7,0.3,0,229.7823982,0,0,0.276501195,0.59899268,0.59899268,0.544929828,0.206574724,48.00264607,0.752842667,0.752842667,0.752842667,3.172950331,0.959417391,4.132367722,3.816 -3629,1999/12/8,0.2,0,229.0094216,0,0,0.184042785,0.58893381,0.58893381,0.535119152,0.059814827,46.53431505,0.658348886,0.658348886,0.658348886,2.661799054,0.718163713,3.379962767,3.504 -3630,1999/12/9,0.1,0.3,228.5243251,0.2,0.097594495,0.1,0.582690947,0.685096453,0.568034141,0.061122795,45.37892723,0.590520016,0.590520016,0.590520016,2.313941981,0.651642811,2.965584792,3.096 -3631,1999/12/10,0.1,0,227.8583124,0,0,0.091806077,0.574206712,0.574206712,0.572774409,0.064941475,44.43231714,0.540776449,0.540776449,0.540776449,2.060160941,0.605717924,2.665878865,2.688 -3632,1999/12/11,0.1,0,227.2006985,0,0,0.091686542,0.565927329,0.565927329,0.513514854,0.058546812,43.59208444,0.502312922,0.502312922,0.502312922,1.856060483,0.560859735,2.416920217,2.496 -3633,1999/12/12,0.1,0.6,226.886539,0.5,0.247846678,0.1,0.562006118,0.81415944,0.607410744,0.062139072,42.95571666,0.469845108,0.469845108,0.469845108,1.713623628,0.53198418,2.245607808,2.22 -3634,1999/12/13,0.2,1,226.7239572,0.8,0.397403605,0.2,0.559985443,0.962581838,0.791384959,0.081746118,42.56280547,0.446273783,0.446273783,0.446273783,1.630569936,0.528019901,2.158589837,1.956 -3635,1999/12/14,0.4,1.5,226.7109902,1.1,0.546857569,0.4,0.559824533,1.112966965,0.925740585,0.097808622,42.3363673,0.43214933,0.43214933,0.43214933,1.584328083,0.529957952,2.114286034,1.872 -3636,1999/12/15,0.4,0.4,226.1579934,0,0,0.4,0.55299683,0.55299683,0.780426822,0.097231742,42.01941867,0.424155936,0.424155936,0.424155936,1.521531389,0.521387678,2.042919066,1.632 -3637,1999/12/16,0.6,6.1,228.299585,5.5,2.721408416,0.6,0.579816812,3.358408397,1.606111333,0.123482696,42.43445887,0.413145591,0.413145591,0.413145591,1.604216727,0.536628287,2.140845013,1.632 -3638,1999/12/17,0.7,5.1,229.8406842,4.4,2.140855905,0.7,0.599756738,2.858900833,2.825212735,0.291789094,43.7858223,0.427605539,0.427605539,0.427605539,1.901454839,0.719394632,2.620849471,1.788 -3639,1999/12/18,0.7,1.7,229.725815,1,0.483382558,0.7,0.598251695,1.114869137,1.88394619,0.253500088,44.15601809,0.477194323,0.477194323,0.477194323,1.990944729,0.730694411,2.72163914,2.136 -3640,1999/12/19,0.5,0,228.6811764,0,0,0.459935028,0.584703659,0.584703659,0.793914555,0.120419358,43.58660662,0.491465053,0.491465053,0.491465053,1.854791072,0.611884411,2.466675483,1.872 -3641,1999/12/20,0.4,0,227.7412131,0,0,0.367237938,0.572725337,0.572725337,0.521500661,0.06446035,42.88033797,0.469638497,0.469638497,0.469638497,1.697407805,0.534098847,2.231506652,1.704 -3642,1999/12/21,0.2,0,226.994547,0,0,0.18331433,0.563351755,0.563351755,0.5117493,0.057208073,42.26552683,0.443538866,0.443538866,0.443538866,1.570099315,0.500746939,2.070846254,1.632 -3643,1999/12/22,0.2,0.1,226.3476855,0,0,0.191530225,0.555331311,0.555331311,0.5038477,0.056269695,41.72575331,0.421677071,0.421677071,0.421677071,1.465298285,0.477946766,1.943245051,1.464 -3644,1999/12/23,0.2,0.2,225.799084,0,0,0.2,0.548601457,0.548601457,0.497139211,0.055480019,41.24829256,0.403127694,0.403127694,0.403127694,1.377727657,0.458607713,1.836335371,1.464 -3645,1999/12/24,0.2,0.6,225.455463,0.4,0.200798719,0.2,0.544419703,0.743620983,0.570793241,0.059220197,40.89108187,0.387212081,0.387212081,0.387212081,1.315216015,0.446432278,1.761648293,1.248 -3646,1999/12/25,0.3,11.2,230.2132147,10.9,5.362410349,0.3,0.604658712,6.142248363,2.802249019,0.190561495,42.4595865,0.375602164,0.375602164,0.375602164,1.609346551,0.566163659,2.175510211,1.548 -3647,1999/12/26,0.3,0.1,229.4345708,0,0,0.284194456,0.594449369,0.594449369,3.336095732,0.428778536,44.21790853,0.42849242,0.42849242,0.42849242,2.006266116,0.857270957,2.863537072,1.872 -3648,1999/12/27,0.3,0,228.5753702,0,0,0.275855252,0.583345343,0.583345343,0.530617233,0.124633239,43.42477274,0.493880265,0.493880265,0.493880265,1.817633291,0.618513504,2.436146795,1.632 -3649,1999/12/28,0.3,0,227.7274228,0,0,0.275396339,0.572551085,0.572551085,0.520745999,0.058228578,42.74124335,0.463563702,0.463563702,0.463563702,1.667839091,0.521792281,2.189631372,1.392 -3650,1999/12/29,0.3,0,226.8904291,0,0,0.274939202,0.562054538,0.562054538,0.511148792,0.057152034,42.14480652,0.438523644,0.438523644,0.438523644,1.546109266,0.495675677,2.041784943,1.464 -3651,1999/12/30,0.3,0,226.064101,0,0,0.274483845,0.551844252,0.551844252,0.501815001,0.056105151,41.61882148,0.417476668,0.417476668,0.417476668,1.445276708,0.473581819,1.918858526,1.32 -3652,1999/12/31,0.4,0.8,225.7168343,0.4,0.200331467,0.4,0.54759816,0.747266693,0.573870947,0.059594369,41.21960225,0.399523387,0.399523387,0.399523387,1.372613561,0.459117756,1.831731317,1.32 diff --git a/data/hbv_edu/hbv_sample.csv b/data/hbv_edu/hbv_sample.csv deleted file mode 100644 index 7e30cef..0000000 --- a/data/hbv_edu/hbv_sample.csv +++ /dev/null @@ -1,3653 +0,0 @@ -date,month,temp,prec,pet,qsim,snow,soil,s1,s2 -1/1/1991,1,-1.5,0.4,0.151662,0.0,0.0,100.0,3.0,10.0 -1/2/1991,1,-0.8,10.5,0.153916,0.28180000000000005,10.5,99.85464538672207,2.7600000000000002,9.950000000000001 -1/3/1991,1,-2.8,0.9,0.147476,0.27395600000000003,11.4,99.71557499591036,2.5392,9.889000000000001 -1/4/1991,1,-3.7,4.4,0.144578,0.26644552000000005,15.8,99.57942731055991,2.3360640000000004,9.818180000000002 -1/5/1991,1,-6.1,0.6,0.13685,0.25924775840000003,16.400000000000002,99.4507329614481,2.1491788800000005,9.738619600000002 -1/6/1991,1,-3.0,0.0,0.14683200000000002,0.252343460128,16.400000000000002,99.31282994867829,1.9772445696000005,9.651306152 -1/7/1991,1,-0.7,4.4,0.154238,0.24571479526976003,20.800000000000004,99.16817216923145,1.8190650040320004,9.55714225744 -1/8/1991,1,1.8,3.1,0.16228800000000002,0.3218902955256024,13.150000000000004,107.01468449967342,4.425041409191546,9.456952662492801 -1/9/1991,1,0.6,1.7,0.158424,0.35094155303366614,10.600000000000005,109.80529061480912,5.3720079813205235,9.489065679702524 -1/10/1991,1,1.8,3.6,0.16228800000000002,0.47372763376274596,2.9500000000000046,117.23449824545031,8.575651313107661,9.5678847651745 -1/11/1991,1,1.2,2.4,0.160356,0.6733936363695721,0.0,120.39496295439862,9.733495933455371,9.805309635526394 -1/12/1991,1,1.5,0.0,0.161322,0.7064416053257263,0.0,120.23364095439862,8.711641462106172,10.095878239488634 -1/13/1991,1,1.1,0.0,0.160034,0.6333517702223631,0.0,120.07360695439863,7.822628072032369,10.32954274780417 -1/14/1991,1,-0.5,0.0,0.154882,0.5693886622106574,0.0,119.91872495439863,7.0491864226681615,10.514083296449705 -1/15/1991,1,-3.2,1.3,0.146188,0.5133733057981295,1.3,119.77253695439863,6.3762921877213,10.656260951654119 -1/16/1991,1,-0.9,0.6,0.153594,0.46427984232573294,1.9,119.61894295439863,5.790874203317531,10.7619503420071 -1/17/1991,1,3.2,5.0,0.166796,0.5035320779255722,0.0,123.60826528285025,8.025442228434631,10.836255045332836 -1/18/1991,1,-1.5,20.7,0.151662,0.5949571947008336,20.7,123.45660328285025,7.225634738738129,11.02080205584791 -1/19/1991,1,-2.8,8.4,0.147476,0.5369091586513287,29.1,123.30912728285026,6.529802222702172,11.161667751667856 -1/20/1991,1,-5.1,1.5,0.14007,0.48602143930302744,30.6,123.16905728285026,5.92442793375089,11.264924507769607 -1/21/1991,1,-2.9,2.4,0.147154,0.44137091404447787,33.0,123.02190328285026,5.3977523023632745,11.335847414301758 -1/22/1991,1,-0.6,0.9,0.15456,0.4021543118325229,33.9,122.86734328285026,4.939544503056048,11.379018081133886 -1/23/1991,1,0.1,0.9,0.156814,0.3845070964836716,33.475,123.47438058592273,5.102052414586299,11.39841494466401 -1/24/1991,1,-0.8,1.2,0.153916,0.38058217408001827,34.675000000000004,123.32046458592274,4.68228560069008,11.425549266500044 -1/25/1991,1,-1.0,1.9,0.153272,0.35785413380313713,36.575,123.16719258592273,4.3077027526348735,11.431152561204547 -1/26/1991,1,-1.5,0.4,0.151662,0.34725088892496647,36.975,123.01553058592273,3.963086532424083,11.4179146476122 -1/27/1991,1,-2.2,1.8,0.14940799999999999,0.3371354019205279,38.775,122.86612258592274,3.6460396098301566,11.38771068128116 -1/28/1991,1,0.1,2.4,0.156814,0.3633673653864701,38.35,124.33792514618219,4.550739880784307,11.342258448147044 -1/29/1991,1,2.1,0.0,0.163254,0.46906904027591234,29.425,129.21268400945556,8.0736678270482,11.34295027322332 -1/30/1991,1,3.5,3.1,0.16776200000000002,0.8656720183508173,14.55,138.45107522511475,15.836437793872737,11.519774659111262 -1/31/1991,1,4.6,3.7,0.171304,1.5175667475057582,0.0,146.2969442157951,24.254027889988933,12.081201055622673 -2/1/1991,2,0.3,12.0,0.181148,2.1003512480404884,0.0,150.45682431472383,29.003476165361615,13.052278429009666 -2/2/1991,2,0.6,4.1,0.182222,2.339648899322943,0.0,151.57956132255805,28.271565256030375,14.241406668697554 -2/3/1991,2,-0.5,14.7,0.178284,2.222674251946414,14.7,151.40127732255806,24.839761772746428,15.370156798125121 -2/4/1991,2,-0.8,6.3,0.17720999999999998,1.9802057059220022,21.0,151.22406732255806,21.854092742289396,16.30474175079994 -2/5/1991,2,-0.1,3.6,0.179716,1.7683284887461914,24.6,151.04435132255804,19.256560685791776,17.071351552898413 -2/6/1991,2,4.0,1.1,0.194394,1.9566627199932323,7.600000000000001,156.49734396649546,29.44932115270143,17.692752556130035 -2/7/1991,2,1.3,2.2,0.184728,2.554425189448481,2.075000000000001,158.26096335066038,31.641062018685314,18.811363562642505 -2/8/1991,2,1.7,5.3,0.18616,2.741896338489567,0.0,159.7877123166225,33.43331499029409,20.01718939232392 -2/9/1991,2,4.0,1.2,0.194394,2.7621198478267948,0.0,159.8510066504368,30.272795707741576,21.28851135399215 -2/10/1991,2,2.1,8.3,0.187592,2.7108041038300064,0.0,161.43969024294066,33.104556673231336,22.376380912299382 -2/11/1991,2,4.8,0.0,0.19725800000000002,2.754743385387204,0.0,161.24243224294065,29.044464305711266,23.58408112771496 -2/12/1991,2,2.6,5.3,0.189382,2.592925165411396,0.0,162.1015843316792,29.763649857230273,24.564622720446224 -2/13/1991,2,5.5,4.2,0.199764,2.6423917366248415,0.0,162.6903960879578,29.549299619511725,25.561512758898814 -2/14/1991,2,6.0,0.0,0.20155399999999998,2.5430616507387707,0.0,162.4888420879578,25.9513906689752,26.527747484696423 -2/15/1991,2,6.4,0.1,0.20298599999999997,2.287051505020089,0.0,162.30417496322275,22.90289100674346,27.294762068451256 -2/16/1991,2,5.8,0.0,0.20083799999999996,2.0645952331615653,0.0,162.10333696322274,20.16901517586681,27.894011377419403 -2/17/1991,2,4.0,0.0,0.194394,1.8655586930567516,0.0,161.90894296322276,17.790543203004127,28.344581908664356 -2/18/1991,2,5.8,0.0,0.20083799999999996,1.6910096863614394,0.0,161.70810496322275,15.721272586613589,28.667217430641273 -2/19/1991,2,3.0,0.0,0.190814,1.5377925780684767,0.0,161.51729096322276,13.921007150353823,28.87993671135913 -2/20/1991,2,2.2,0.0,0.18795,1.4031614108349186,0.0,161.32934096322276,12.354776220807826,28.998388334649636 -2/21/1991,2,0.7,0.0,0.18258,1.2847266579834165,0.0,161.14676096322276,10.99215531210281,29.036159378997038 -2/22/1991,2,3.1,0.0,0.191172,1.1804088983914687,0.0,160.95558896322277,9.806675121529445,29.005043957022238 -2/23/1991,2,4.0,0.0,0.194394,1.088398513427556,0.0,160.76119496322278,8.775307355730616,28.915276833958266 -2/24/1991,2,7.4,0.0,0.20656599999999997,1.0071206230724126,0.0,160.55462896322277,7.878017399485636,28.775736665065633 -2/25/1991,2,6.8,0.0,0.20441799999999996,0.935204580135629,0.0,160.35021096322276,7.097375137552504,28.594122801738603 -2/26/1991,2,8.2,1.2,0.20942999999999998,0.8999611990832692,0.0,160.39065532775962,7.368342005133825,28.377109102581457 -2/27/1991,2,10.2,0.0,0.21658999999999998,0.8880955070064146,0.0,160.17406532775962,6.6539575444664285,28.17798402078652 -2/28/1991,2,3.4,0.0,0.192246,0.8291136134857775,0.0,159.9818193277596,6.032443063685793,27.947122217594114 -3/1/1991,3,1.3,12.1,0.62823,1.0625336420161138,0.0,161.92479978305644,15.020515010109794,27.689801926426522 -3/2/1991,3,1.1,0.8,0.62565,1.484050754613223,0.0,161.4510187971965,13.95947904465546,27.88703163840348 -3/3/1991,3,2.3,2.9,0.64113,1.4566672105328902,0.0,161.37653692795496,14.721598638091782,28.027264957868184 -3/4/1991,3,2.4,1.4,0.64242,1.481931395383935,0.0,161.00889202086023,14.176515722234587,28.20279959061541 -3/5/1991,3,3.4,0.0,0.65532,1.4095892341603489,0.0,160.35357202086024,12.57706867834409,28.34756938491483 -3/6/1991,3,5.3,0.0,0.67983,1.2891093550446602,0.0,159.67374202086023,11.18554975015936,28.40947143113374 -3/7/1991,3,5.9,0.0,0.68757,1.1830365257875082,0.0,158.98617202086024,9.974928282638643,28.400559490019035 -3/8/1991,3,6.2,0.0,0.69144,1.0895229365958123,0.0,158.29473202086024,8.921687605895618,28.331294714350587 -3/9/1991,3,7.2,0.0,0.7043400000000001,1.0069604908158238,0.0,157.59039202086024,8.005368217129188,28.210753200358358 -3/10/1991,3,8.0,0.0,0.7146600000000001,0.9339496522676842,0.0,156.87573202086023,7.208170348902393,28.046806547207648 -3/11/1991,3,6.1,0.0,0.69015,0.8692723422256443,0.0,156.18558202086024,6.514608203545082,27.846278933708614 -3/12/1991,3,7.3,0.0,0.7056300000000001,0.8118683595940146,0.0,155.47995202086022,5.911209137084222,27.615083765211697 -3/13/1991,3,8.1,0.0,0.7159500000000001,0.7608148662673426,0.0,154.76400202086023,5.386251949263272,27.358342546761673 -3/14/1991,3,5.8,0.0,0.68628,0.715308539204727,0.0,154.07772202086022,4.929539195859046,27.0804882932896 -3/15/1991,3,5.8,0.0,0.68628,0.6746500425492087,0.0,153.3914420208602,4.532199100397371,26.785355487216762 -3/16/1991,3,7.3,0.0,0.7056300000000001,0.6546138618208133,0.0,152.6858120208602,4.169623172365581,26.476258332492293 -3/17/1991,3,10.2,0.1,0.7430399999999999,0.6403029527473886,0.0,151.9722031308307,3.906622208605802,26.155214324460726 -3/18/1991,3,6.8,0.0,0.69918,0.624371595925556,0.0,151.2730231308307,3.5940924319173377,25.8274411484018 -3/19/1991,3,0.0,10.4,0.61146,0.8244261352690401,0.0,153.88098829057975,10.487139877614913,25.49059694702963 -3/20/1991,3,0.1,2.0,0.61275,1.1151035090665489,0.0,153.8307608125578,10.804789171546917,25.50514200196978 -3/21/1991,3,-0.6,2.8,0.60372,1.096755028364875,2.8,153.2270408125578,9.643666579245817,25.535278620507732 -3/22/1991,3,-2.2,6.5,0.58308,1.007823154221804,9.3,152.6439608125578,8.633489923943861,25.506756377059865 -3/23/1991,3,2.9,0.0,0.6488700000000001,1.1261399027510892,0.0,154.736410658403,14.31331638798596,25.42829574571586 -3/24/1991,3,4.0,0.0,0.66306,1.3657562901297484,0.0,154.073350658403,12.696085257547786,25.63539565020084 -3/25/1991,3,5.6,0.0,0.6837000000000001,1.2451269281008708,0.0,153.389650658403,11.289094174066573,25.757492000074212 -3/26/1991,3,7.1,0.0,0.7030500000000001,1.1390410040219874,0.0,152.68660065840302,10.065011931437919,25.806796868776058 -3/27/1991,3,3.8,0.0,0.6604800000000001,1.0456306385418743,0.0,152.02612065840302,9.00006038035099,25.793911527972433 -3/28/1991,3,0.4,0.4,0.61662,0.9716528573063818,0.0,151.5300827906343,8.352970398674056,25.728036316430536 -3/29/1991,3,4.3,0.0,0.66693,0.9120885295398083,0.0,150.8631527906343,7.510584246846429,25.63112411003563 -3/30/1991,3,4.9,1.9,0.67467,0.8843460256292536,0.0,150.78498453594446,8.081206549446243,25.49403084017724 -3/31/1991,3,6.6,6.3,0.6966000000000001,1.0160549759879614,0.0,152.07151965067175,11.59101458329097,25.388210550846004 -4/1/1991,4,6.8,2.4,1.68367,1.2054116702418556,0.0,151.11016568155375,12.005366656581145,25.459997068993633 -4/2/1991,4,8.2,1.9,1.7303460000000002,1.2276902909213288,0.0,149.9713003766655,11.996688296113843,25.551065460442818 -4/3/1991,4,7.8,2.1,1.7170100000000001,1.2321737553793928,0.0,148.93351688585432,12.10139230843025,25.639878566039652 -4/4/1991,4,9.7,0.1,1.780356,1.2013607913053663,0.0,147.18660007148708,10.838272122701548,25.732150610140373 -4/5/1991,4,12.9,0.0,1.8870440000000002,1.103785932619041,0.0,145.29955607148707,9.672796746750347,25.759421204072645 -4/6/1991,4,14.0,0.0,1.9237179999999998,1.0144622847742755,0.0,143.37583807148707,8.658833169672802,25.727872617328707 -4/7/1991,4,12.9,0.1,1.8870440000000002,0.9374934474416068,0.0,141.52792384614736,7.83755508295504,25.646256823465773 -4/8/1991,4,11.1,0.4,1.8270320000000002,0.8778322414368643,0.0,139.86472148611065,7.298343282207607,25.52520944114421 -4/9/1991,4,10.2,8.6,1.7970260000000002,0.9749577396554293,0.0,141.72914990108413,11.53160424054716,25.379622416431705 -4/10/1991,4,10.9,0.0,1.820364,1.1503322863082475,0.0,139.90878590108412,10.27599568927603,25.44861018013043 -4/11/1991,4,10.1,4.5,1.793692,1.1324581161337197,0.0,140.02905760241808,11.769652548336191,25.453437760991623 -4/12/1991,4,11.1,0.0,1.8270320000000002,1.170132591592156,0.0,138.20202560241808,10.483097717052486,25.5328516331886 -4/13/1991,4,12.6,0.4,1.8770419999999999,1.0791957519816069,0.0,136.50164940287263,9.58712921338112,25.54634948637745 -4/14/1991,4,11.1,0.0,1.8270320000000002,1.0036811122846825,0.0,134.67461740287263,8.584302415641574,25.51477895731896 -4/15/1991,4,6.8,11.0,1.68367,1.0991335006802456,0.0,138.211310173845,13.491480330635792,25.43369849895466 -4/16/1991,4,8.3,0.8,1.73368,1.3159007916829064,0.0,136.83089125346584,12.427826808032322,25.599598545507355 -4/17/1991,4,9.4,1.0,1.7703540000000002,1.2401047296055479,0.0,135.5151322129888,11.60111436346518,25.70899791499882 -4/18/1991,4,7.6,4.2,1.710342,1.2293254575627612,0.0,135.7655175128015,12.575742196401999,25.774873674872104 -4/19/1991,4,8.3,2.1,1.73368,1.2723173633246598,0.0,135.0073336476491,12.30889957602215,25.88816331119476 -4/20/1991,4,8.5,0.0,1.740348,1.2202291582107252,0.0,133.26698564764908,10.95224263113927,25.985845023771972 -4/21/1991,4,8.9,1.9,1.753684,1.1467640615290908,0.0,132.43934857423835,10.745904162501915,26.013740254853495 -4/22/1991,4,7.6,2.3,1.710342,1.137039356152541,0.0,131.8671453666212,10.754297828993828,26.03076065788152 -4/23/1991,4,6.7,1.5,1.680336,1.1256662091191036,0.0,130.9367447796478,10.34980369819802,26.04786033617358 -4/24/1991,4,5.3,15.6,1.6336600000000001,1.3024713398154621,0.0,137.23113770980137,16.919776287278694,26.044393314360008 -4/25/1991,4,7.5,4.0,1.707008,1.6446892496130647,0.0,137.327483413054,17.16035166667984,26.369494262436742 -4/26/1991,4,8.4,2.2,1.737014,1.6400146919657903,0.0,136.58031971568687,16.383155647378608,26.700121960522 -4/27/1991,4,6.7,4.2,1.680336,1.6186943547773542,0.0,136.81912825107912,16.777700877827126,26.98527730368049 -4/28/1991,4,9.4,0.9,1.7703540000000002,1.601000134112965,0.0,135.45800887506726,15.330865139721464,27.284456801498237 -4/29/1991,4,7.6,8.5,1.710342,1.6164112600039515,0.0,137.7202933943319,18.108726152293052,27.505310922454346 -4/30/1991,4,6.2,1.3,1.663666,1.7206890155436572,0.0,136.63672289027332,16.71799625655354,27.86064101161991 -5/1/1991,5,7.4,0.3,2.85045,1.6037233671853786,0.0,133.92319649102834,14.951233142446597,28.13932800421519 -5/2/1991,5,8.7,1.4,2.9301399999999997,1.4898553495892526,0.0,131.66707497689495,13.977054348061948,28.324103101253215 -5/3/1991,5,10.3,5.0,3.02822,1.4713276119416114,0.0,131.1475449461792,14.894847313529635,28.45647375663125 -5/4/1991,5,13.4,2.3,3.2182500000000003,1.5040067480373618,0.0,129.09389046170406,14.33742164724593,28.632086647175107 -5/5/1991,5,16.2,0.0,3.3898899999999994,1.4304091072872935,0.0,125.70400046170407,12.71705683310396,28.7763159965939 -5/6/1991,5,10.8,7.2,3.0588699999999998,1.4048243645490006,0.0,126.62784748892257,14.524622417581941,28.83664251831722 -5/7/1991,5,9.8,3.5,2.99757,1.4965846507072946,0.0,125.5391751904989,14.471023801719939,28.98614078882997 -5/8/1991,5,8.8,5.0,2.93627,1.5144696724040425,0.0,125.37555926281998,15.060636635175273,29.129969163139368 -5/9/1991,5,6.9,0.1,2.8198,1.4972597982194853,0.0,122.6113486611553,13.390664474267155,29.300401611635344 -5/10/1991,5,5.3,5.4,2.72172,1.4387860211687866,0.0,123.01386470733075,14.169142046436964,29.383926803115994 -5/11/1991,5,3.4,2.7,2.60525,1.466571213585401,0.0,121.96193482519617,13.71733346253475,29.50470536937552 -5/12/1991,5,5.8,2.3,2.75237,1.428422190571185,0.0,120.55227964619633,13.134865291405077,29.60047793511475 -5/13/1991,5,11.4,0.7,3.09565,1.3651773564004226,0.0,117.87313381603492,11.95432863368382,29.665211640982708 -5/14/1991,5,13.5,1.0,3.22438,1.2784466616442969,0.0,115.26459462190115,11.027925105438703,29.669623839847244 -5/15/1991,5,9.1,7.1,2.95466,1.2732165546408472,0.0,116.8221378968839,12.425591566748917,29.627627618322233 -5/16/1991,5,7.7,9.4,2.8688399999999996,1.408596211191401,0.0,119.81741122768578,14.589651332269678,29.656354644293234 -5/17/1991,5,8.0,0.8,2.8872299999999997,1.4795128589794304,0.0,117.41080821990941,13.255869666850982,29.792710118020853 -5/18/1991,5,9.1,0.0,2.95466,1.3697696696274195,0.0,114.45614821990941,11.776106610160355,29.859649399002986 -5/19/1991,5,8.9,0.0,2.9423999999999997,1.2569919478638218,0.0,111.5137482199094,10.48871275083951,29.851261741530944 -5/20/1991,5,6.4,0.0,2.7891500000000002,1.1575694832237327,0.0,108.7245982199094,9.368680093230372,29.778672144242304 -5/21/1991,5,4.7,4.8,2.68494,1.1155451728077335,0.0,109.31455943349198,9.919350467527842,29.651532706018976 -5/22/1991,5,6.8,1.1,2.8136699999999997,1.120376207111097,0.0,107.2469145992677,9.2273097409735,29.55446957527499 -5/23/1991,5,10.0,0.0,3.00983,1.0544981847044466,0.0,104.2370845992677,8.271259474646946,29.424745670818165 -5/24/1991,5,11.2,8.5,3.08339,1.051624315981686,0.0,107.25581900514295,9.885502254221855,29.24981373113415 -5/25/1991,5,13.7,0.0,3.23664,1.0992735729307346,0.0,104.01917900514296,8.843886961173014,29.15909256922256 -5/26/1991,5,12.5,2.7,3.16308,1.0403815553388867,0.0,102.83882779323756,8.710836865410025,29.01810506589676 -5/27/1991,5,6.6,3.2,2.8014099999999997,1.0309278915073836,0.0,102.42605548562746,8.714011735996529,28.873284807849327 -5/28/1991,5,3.6,8.6,2.61751,1.0728193527622265,0.0,106.11924903427749,10.199612399751897,28.731519698492164 -5/29/1991,5,3.2,15.7,2.59299,1.2546919408006945,0.0,114.51429107796493,13.829130744096716,28.666869924509914 -5/30/1991,5,6.7,0.9,2.80754,1.401592671515645,0.0,112.2837163904518,12.597878434877273,28.78498906322455 -5/31/1991,5,13.1,0.0,3.19986,1.2992872129682391,0.0,109.0838563904518,11.203654238343228,28.839183203703925 -6/1/1991,6,11.7,0.0,3.64135,1.1928547325688599,0.0,105.4425063904518,9.990679187358609,28.822582251547008 -6/2/1991,6,9.3,15.0,3.4573660000000004,1.2320500809877508,0.0,112.56504784939719,13.370094343404682,28.745664565884 -6/3/1991,6,9.1,0.5,3.442034,1.3632253168609583,0.0,109.45064659962615,12.047849328533102,28.83925599173655 -6/4/1991,6,8.4,0.2,3.3883720000000004,1.259880025801241,0.0,106.19772709518274,10.789676420267215,28.864863338328473 -6/5/1991,6,11.9,0.6,3.6566820000000004,1.166852022896528,0.0,102.9606567797598,9.8109068010554,28.82704989257526 -6/6/1991,6,13.4,0.1,3.771672,1.0860747508483102,0.0,99.36536910805933,8.806944203333654,28.741054234776524 -6/7/1991,6,13.3,1.3,3.764006,1.016173962351938,0.0,96.79899339701404,8.239838166010054,28.606580360247676 -6/8/1991,6,12.9,4.1,3.733342,0.9895287166946868,0.0,96.49473051674127,8.403599838910647,28.446440661343228 -6/9/1991,6,12.3,2.1,3.6873460000000007,0.9843948246293758,0.0,94.73048252902574,8.058699862753516,28.297691840061894 -6/10/1991,6,10.0,25.6,3.5110280000000005,1.1162873866271092,0.0,111.305411917944,13.138631118715558,28.134672996398333 -6/11/1991,6,11.1,0.0,3.5953540000000004,1.328233049982377,0.0,107.710057917944,11.674109073282535,28.228911092406143 -6/12/1991,6,11.8,3.6,3.6490160000000005,1.2507324528756443,0.0,106.54214238746397,11.518874424235822,28.248038324222147 -6/13/1991,6,11.4,7.6,3.6183520000000002,1.2746429019662946,0.0,108.22141929736534,12.56729183918379,28.259021278949493 -6/14/1991,6,10.9,7.6,3.5800220000000005,1.3582768010089068,0.0,109.85283785935113,13.565603338104115,28.322205445329693 -6/15/1991,6,13.3,0.0,3.764006,1.3648282440962891,0.0,106.08883185935113,12.04557490415058,28.434041503328306 -6/16/1991,6,14.2,0.0,3.833,1.2498260385752447,0.0,102.25583185935113,10.723150166611005,28.46763941846927 -6/17/1991,6,16.5,0.0,4.009318,1.148525610447706,0.0,98.3841145368592,9.572640644951575,28.434444138430433 -6/18/1991,6,18.8,0.0,4.185636000000001,1.0591706988390028,0.0,94.49517231725771,8.571697361107871,28.344387287909402 -6/19/1991,6,18.7,0.0,4.17797,0.9802328573844411,0.0,90.76679385766442,7.700876704163848,28.206084410206607 -6/20/1991,6,17.2,0.0,4.0629800000000005,0.9103818483310823,0.0,87.2840885209205,6.943262732622548,28.02700655721067 -6/21/1991,6,18.4,0.0,4.154972000000001,0.8484598852065276,0.0,83.85918584975282,6.284138577381617,27.81362956269758 -6/22/1991,6,17.0,0.0,4.047648000000001,0.7934592237449953,0.0,80.6536662927939,5.710700562322007,27.57156390031271 -6/23/1991,6,17.9,2.3,4.116642000000001,0.7553694774552854,0.0,79.45589980886317,5.574036544357798,27.305667650422556 -6/24/1991,6,20.1,0.0,4.285294,0.7287543035182684,0.0,76.24037529554252,5.092911793591285,27.038256124631996 -6/25/1991,6,20.7,0.0,4.33129,0.6864183193286753,0.0,73.12186386751503,4.674333260424419,26.75213659181892 -6/26/1991,6,21.4,6.2,4.384952,0.6812932002089473,0.0,75.51834190136253,5.075899658295736,26.450810523003764 -6/27/1991,6,15.1,1.7,3.901994,0.6804741974738711,0.0,74.2061468584912,4.888914288330489,26.175589295458476 -6/28/1991,6,12.6,6.8,3.710344,0.6801968208464744,0.0,77.52549332439452,5.3773547316877774,25.896523223965833 -6/29/1991,6,15.7,0.0,3.9479900000000003,0.685970905002858,0.0,74.63504217329643,4.921798616568366,25.647460496070906 -6/30/1991,6,18.7,0.0,4.17797,0.6459658990604107,0.0,71.69026016225887,4.525464796414479,25.380601216977904 -7/1/1991,7,20.6,0.0,4.370688,0.626888077030221,0.0,68.73119169679411,4.16342761270132,25.09926243245907 -7/2/1991,7,22.1,0.0,4.4916480000000005,0.6110195733994556,0.0,65.81574812589486,3.8303534036852147,24.805448564444955 -7/3/1991,7,20.2,0.0,4.338432,0.5957348992085183,0.0,63.11920314739526,3.5239251313903974,24.50085726334032 -7/4/1991,7,15.1,1.3,3.927168,0.5844535360261877,0.0,61.96320352153332,3.3570936177775663,24.187036374643032 -7/5/1991,7,11.8,0.0,3.6610560000000003,0.5700787904114418,0.0,59.82087886357005,3.088526128355361,23.87115032803905 -7/6/1991,7,11.1,0.0,3.6046080000000003,0.5562063937005287,0.0,57.78451264845384,2.841444038086932,23.54815362789604 -7/7/1991,7,13.3,0.0,3.782016,0.5428091105960486,0.0,55.72065438621326,2.6141285150399773,23.219262757242465 -7/8/1991,7,14.8,0.0,3.9029760000000002,0.5298616255720957,0.0,53.66685915745054,2.4049982338367792,22.885583927849616 -7/9/1991,7,13.6,5.6,3.8062080000000003,0.5274983237237989,0.0,56.99921034323955,2.5511960168036536,22.548122160984462 -7/10/1991,7,15.0,0.4,3.919104,0.5157433102017339,0.0,55.261743952740844,2.3749639943211593,22.224719518604953 -7/11/1991,7,17.5,0.0,4.120704,0.5035284728022422,0.0,53.111235978871406,2.1849668747754665,21.898973327948912 -7/12/1991,7,18.7,0.0,4.217472,0.49170992984637707,0.0,50.99587899873841,2.010169524793429,21.570242205128707 -7/13/1991,7,9.8,26.6,3.4997760000000007,0.5230629586961726,0.0,74.48389939799598,3.2758680650285488,21.239345837265805 -7/14/1991,7,11.6,10.8,3.644928,0.5523041608387289,0.0,81.30925511988508,4.424570478776351,20.97835232377192 -7/15/1991,7,11.0,14.3,3.596544,0.6065793113534749,0.0,90.5522308293932,6.3659678442923,20.780013801235295 -7/16/1991,7,10.7,0.5,3.572352,0.6650103119419105,0.0,87.89395659068715,5.885256045959715,20.682711917425205 -7/17/1991,7,10.5,8.9,3.556224,0.6744031327433904,0.0,92.12665619869321,7.0791306939303595,20.56332048137469 -7/18/1991,7,12.3,3.4,3.701376,0.73460501986643,0.0,91.57444465365187,7.134275768034593,20.506010606443713 -7/19/1991,7,12.8,0.9,3.741696,0.7215063287595166,0.0,89.04757001201176,6.64134855678185,20.45260418271657 -7/20/1991,7,12.9,6.1,3.74976,0.7130945215835092,0.0,90.78188129388107,7.233823440212999,20.375619526901332 -7/21/1991,7,14.0,0.0,3.838464,0.7208949299676883,0.0,87.49107967711994,6.536926392985309,20.329798308373956 -7/22/1991,7,13.9,0.0,3.8304000000000005,0.6662660717432969,0.0,84.32623095112844,5.930625961897219,20.250048661855743 -7/23/1991,7,12.0,0.0,3.677184,0.6179572154346482,0.0,81.39788014147885,5.403144586850581,20.14157898671349 -7/24/1991,7,14.3,0.0,3.8626560000000003,0.5751623957857642,0.0,78.42864782383069,4.944235790560005,20.008904636321752 -7/25/1991,7,14.9,0.0,3.9110400000000003,0.5371801103240827,0.0,75.53189101218733,4.544985137787204,19.855938333123316 -7/26/1991,7,17.8,0.0,4.144896,0.5191629662699311,0.0,72.57531500945949,4.181386326764228,19.68606882335021 -7/27/1991,7,19.6,0.0,4.2900480000000005,0.5054345978831211,0.0,69.63498461937826,3.8468754206230895,19.50141676322142 -7/28/1991,7,13.3,0.2,3.782016,0.49291749201453,0.0,67.32556656249191,3.561428267825569,19.303732198988147 -7/29/1991,7,11.1,21.6,3.6046080000000003,0.5469650958309259,0.0,84.4085629363386,5.5016838820977565,19.095728968399662 -7/30/1991,7,10.8,2.9,3.580416,0.5775091516269105,0.0,83.9462222472328,5.538232861976384,18.988898583136557 -7/31/1991,7,13.4,0.0,3.79008,0.5629851658878557,0.0,80.94156743549617,5.061762589919454,18.886032254572648 -8/1/1991,8,17.8,0.0,3.367944,0.5242331278724137,0.0,78.36713485078586,4.647233453229924,18.761399738977165 -8/2/1991,8,14.9,6.9,3.1808359999999998,0.5311042484724723,0.0,81.89739527102466,5.291119337842997,18.61853341685912 -8/3/1991,8,12.9,2.5,3.0517960000000004,0.5489178106041137,0.0,81.6289347844649,5.254915646789406,18.510718715414086 -8/4/1991,8,15.8,0.0,3.238904,0.5317690831895792,0.0,79.13211465613227,4.815276612706783,18.40325012344527 -8/5/1991,8,19.3,0.0,3.4647240000000004,0.49842061354294126,0.0,76.54290947320798,4.43005448369024,18.275948951611703 -8/6/1991,8,20.6,0.0,3.5486000000000004,0.4849081576851302,0.0,73.97779313968616,4.07565012499502,18.13193269676398 -8/7/1991,8,14.0,5.6,3.1227679999999998,0.49354599991440706,0.0,76.67625360582736,4.4694822977612665,17.973076549078453 -8/8/1991,8,15.8,10.0,3.238904,0.5220522713120048,0.0,82.93249740707198,5.510349621743531,17.837089132984946 -8/9/1991,8,16.2,3.8,3.264712,0.55742867875884,0.0,83.53663274689612,5.676463368113829,17.755864831412424 -8/10/1991,8,16.8,3.4,3.303424,0.5669213387868581,0.0,83.74902577317786,5.76355854391231,17.68457070318987 -8/11/1991,8,15.7,21.2,3.232452,0.6642253539559073,0.0,98.7447135996425,8.905542747795268,17.61905721632169 -8/12/1991,8,11.3,0.3,2.948564,0.7980364007557705,0.0,96.21909616032625,8.067339972610226,17.71195320938502 -8/13/1991,8,11.9,1.8,2.987276,0.7458261027393697,0.0,94.8754836367737,7.691249374410061,17.761081143827827 -8/14/1991,8,13.3,0.0,3.077604,0.7049175171860411,0.0,92.11800731282932,6.934886955736753,17.790421989671774 -8/15/1991,8,11.8,0.0,2.980824,0.6471770552848705,0.0,89.52486757319141,6.276851651490976,17.781357897665178 -8/16/1991,8,9.8,6.5,2.851784,0.6355102678846702,0.0,92.30564259883202,7.012540628813102,17.73957332228642 -8/17/1991,8,9.0,14.6,2.8001679999999998,0.7468886515351663,0.0,101.30732992859721,9.501781411629473,17.73540888728135 -8/18/1991,8,11.3,8.2,2.948564,0.9102093398162227,0.0,104.47960688176825,10.716815787746839,17.855789780117192 -8/19/1991,8,12.2,0.0,3.0066319999999997,0.9400449769255781,0.0,101.51302146862116,9.56712973533975,18.034514773902192 -8/20/1991,8,11.2,0.8,2.9421120000000003,0.8613968790850304,0.0,99.27619919811163,8.783225767140669,18.152180965191135 -8/21/1991,8,13.9,0.3,3.116316,0.799083937649523,0.0,96.57754288521049,7.961889220253421,18.228298634244346 -8/22/1991,8,13.2,0.0,3.0711519999999997,0.734941312112728,0.0,93.77648221860363,7.170343621620476,18.261827122572132 -8/23/1991,8,11.4,4.8,2.955016,0.7068901763664985,0.0,94.88218267553721,7.5590280020480165,18.255107761201714 -8/24/1991,8,12.1,0.0,3.00018,0.7044061710774557,0.0,92.19388702137257,6.8198543617817755,18.26795700608008 -8/25/1991,8,13.0,0.0,3.058248,0.6476677286125445,0.0,89.5312014930381,6.176773294750145,18.24359058404757 -8/26/1991,8,16.3,0.0,3.271164,0.5976085964725686,0.0,86.76539505993986,5.617292766432626,18.187557437104125 -8/27/1991,8,18.7,0.0,3.426012,0.5533743980591963,0.0,83.95814900592065,5.1305447067963845,18.104670926683674 -8/28/1991,8,18.8,0.0,3.432464,0.5142215470570013,0.0,81.2366141681696,4.707073894912855,17.99910474348982 -8/29/1991,8,19.5,0.0,3.477628,0.4874047663669082,0.0,78.5686500161588,4.330507983319826,17.874476343365668 -8/30/1991,8,19.7,0.0,3.4905320000000004,0.4741922646529142,0.0,75.97873229892201,3.9840673446542403,17.733512215664348 -8/31/1991,8,18.1,0.0,3.3873,0.4615211654841325,0.0,73.54825954496849,3.665341957081901,17.578045338583774 -9/1/1991,9,19.4,0.0,2.645622,0.44935846860878437,0.0,71.71068382002866,3.3721146005153493,17.409751529666195 -9/2/1991,9,19.3,0.0,2.6409560000000005,0.43767360755619644,0.0,69.9221791387688,3.1023454324741215,17.23016222909864 -9/3/1991,9,17.9,0.0,2.5756320000000006,0.42643825905909316,0.0,68.22141606293968,2.854157797876192,17.040676256140372 -9/4/1991,9,17.3,0.5,2.5476360000000002,0.4172201787905635,0.0,67.02692495368727,2.6789588790778684,16.842570620911374 -9/5/1991,9,15.8,3.4,2.4776460000000005,0.4171311488385549,0.0,68.5119908230791,2.811260192987136,16.63966715244704 -9/6/1991,9,13.2,9.9,2.3563300000000003,0.4384177558763362,0.0,75.82481154275875,3.6489673165129037,16.447436819047454 -9/7/1991,9,10.0,6.8,2.207018,0.4545192446849615,0.0,80.1181282518276,4.283350523837283,16.300936448492152 -9/8/1991,9,10.2,0.5,2.2163500000000003,0.4443278328617633,0.0,78.86367934115337,4.018204264915995,16.189085245714175 -9/9/1991,9,10.9,0.0,2.249012,0.4322267127925953,0.0,77.18868301286547,3.6967479237227154,16.06621375404569 -9/10/1991,9,11.6,0.0,2.281674,0.4206247801977653,0.0,75.5254531410674,3.401008089824898,15.929726875150914 -9/11/1991,9,13.3,0.0,2.360996,0.40949147812194997,0.0,73.84148588481801,3.1289274426389064,15.781182742139139 -9/12/1991,9,13.6,0.1,2.374994,0.39918249105771586,0.0,72.2725046491075,2.8914127289716607,15.622005459428301 -9/13/1991,9,15.1,0.0,2.4449840000000003,0.3888857110533842,0.0,70.60374350540184,2.660099710653928,15.454135986688318 -9/14/1991,9,15.7,3.8,2.47298,0.3921120839927628,0.0,72.31710815282582,2.8850306314339282,15.278058252487249 -9/15/1991,9,16.7,11.7,2.5196400000000003,0.4247387827359431,0.0,80.87043230435701,4.0801270118586395,15.116748619009199 -9/16/1991,9,18.5,0.5,2.6036280000000005,0.41535720326541686,0.0,79.3027432808532,3.832960110699263,15.018419997221947 -9/17/1991,9,19.2,0.0,2.63629,0.40398369111154914,0.0,77.32838282109421,3.526323301843322,14.909699602812472 -9/18/1991,9,19.2,0.0,2.63629,0.39308295864784343,0.0,75.40317701934312,3.2442174376958564,14.787821775848387 -9/19/1991,9,18.5,0.0,2.6036280000000005,0.3826259255247299,0.0,73.54916037021177,2.984680042680188,14.654276212216214 -9/20/1991,9,18.3,0.0,2.5942960000000004,0.37258566298009116,0.0,71.74721219236874,2.745905639265773,14.5104246901059 -9/21/1991,9,17.9,0.0,2.5756320000000006,0.36293722520907673,0.0,70.00205763921494,2.526233188124511,14.357511478267071 -9/22/1991,9,17.3,0.0,2.5476360000000002,0.3536574941543956,0.0,68.31785930022411,2.32413453307455,14.196672908107955 -9/23/1991,9,15.4,0.0,2.4589820000000002,0.344725036644848,0.0,66.73137911986919,2.138203770428586,14.028946176599522 -9/24/1991,9,16.1,0.0,2.4916440000000004,0.3361199728956082,0.0,65.16115680996506,1.9671474687942991,13.85527744158896 -9/25/1991,9,14.5,2.1,2.4169880000000004,0.3338342167311807,0.0,65.57347803104426,2.0101210469080923,13.676529266196896 -9/26/1991,9,14.4,0.0,2.412322,0.3255494355590306,0.0,64.07962267481794,1.849311363155445,13.503504733218362 -9/27/1991,9,15.9,1.5,2.4823120000000003,0.3216865327856599,0.0,63.93986028813192,1.8389509550474854,13.325900206711767 -9/28/1991,9,17.2,1.2,2.5429700000000004,0.3170667696770182,0.0,63.49482719329427,1.8013391556806704,13.151329750329905 -9/29/1991,9,17.2,0.1,2.5429700000000004,0.309553666924153,0.0,62.06100913741582,1.6662088220668734,12.97837011310734 -9/30/1991,9,15.8,0.0,2.4776460000000005,0.3020296265280164,0.0,60.60888701969667,1.5329121163015236,12.802113151948536 -10/1/1991,10,12.4,2.0,1.047376,0.29959104556359045,0.0,61.8484495010552,1.5712238556365885,12.62271649472464 -10/2/1991,10,13.5,6.9,1.068672,0.30981170416270376,0.0,67.54194206964237,2.0278412336821403,12.448823357611978 -10/3/1991,10,13.3,0.0,1.0648,0.301993197092504,0.0,66.86275933363562,1.8656139349875691,12.301238952143846 -10/4/1991,10,11.9,0.0,1.037696,0.29446084200266387,0.0,66.2075207095023,1.7163648201885635,12.148494869850348 -10/5/1991,10,14.1,0.0,1.080288,0.2871985333064597,0.0,65.53207269616557,1.5790556345734785,11.99134321346277 -10/6/1991,10,13.9,0.0,1.076416,0.28019131813267173,0.0,64.8659118541284,1.4527311838076002,11.830469130922188 -10/7/1991,10,8.9,1.6,0.9796159999999999,0.27795601884125426,0.0,65.71479665633738,1.487536423045725,11.666496307494125 -10/8/1991,10,8.2,11.1,0.9660639999999999,0.30361388658426486,0.0,75.13502833166439,2.4487674178111427,11.507543202496528 -10/9/1991,10,11.1,0.1,1.022208,0.2959825741151882,0.0,74.49638048692586,2.2661986642815037,11.399830709337154 -10/10/1991,10,11.0,0.0,1.020272,0.2882499637014593,0.0,73.77859248888868,2.084902771138984,11.285144028364487 -10/11/1991,10,11.6,0.0,1.031888,0.2808170422105189,0.0,73.0596271073968,1.918110549447865,11.163686286354146 -10/12/1991,10,12.2,0.0,1.043504,0.2736662129267502,0.0,72.33965342598141,1.7646617054920357,11.036318088099456 -10/13/1991,10,9.7,0.0,0.995104,0.26678115930382157,0.0,71.65983967130384,1.623488769052673,10.90382481161207 -10/14/1991,10,7.4,0.0,0.950576,0.260146745102503,0.0,71.01654829576896,1.4936096675284591,10.766922753832462 -10/15/1991,10,8.1,0.0,0.964128,0.2537489224664302,0.0,70.36994292533451,1.3741208941261824,10.626264782132235 -10/16/1991,10,9.3,0.1,0.98736,0.24791754735545518,0.0,69.80235590355586,1.2756212243845728,10.4824455311959 -10/17/1991,10,7.5,0.0,0.9525119999999999,0.24193869942883844,0.0,69.17446298046201,1.173571526433807,10.336577681791212 -10/18/1991,10,0.6,17.8,0.818928,0.2947884175853712,0.0,84.48523920642516,3.033930783194323,10.188524704477077 -10/19/1991,10,1.5,1.9,0.836352,0.2964769367088256,0.0,85.3842342299798,3.124930723929351,10.136450749547251 -10/20/1991,10,4.2,5.2,0.8886239999999999,0.3161372468534347,0.0,88.93136722270447,3.811262714612642,10.089968270752774 -10/21/1991,10,3.2,0.0,0.869264,0.30676549174467593,0.0,88.20131871956464,3.506361697443631,10.07873204106835 -10/22/1991,10,4.7,0.0,0.8983039999999999,0.2978250925518275,0.0,87.45307433944319,3.2258527616481403,10.052475485119164 -10/23/1991,10,7.6,0.0,0.954448,0.28928790849147246,0.0,86.66480904624144,2.967784540716289,10.012718613499189 -10/24/1991,10,10.3,0.7,1.00672,0.28504386440644536,0.0,86.41033586169652,2.860893168038165,9.96085346826502 -10/25/1991,10,11.3,1.7,1.02608,0.28649892405777133,0.0,86.95819317677228,2.9468434303912914,9.904681057301628 -10/26/1991,10,11.5,4.3,1.029952,0.3026583464061388,0.0,89.60415451908425,3.51932514175452,9.85392960767516 -10/27/1991,10,8.5,0.1,0.971872,0.2943947519702635,0.0,88.8615883439857,3.25794688393586,9.832817272609384 -10/28/1991,10,6.6,3.9,0.9350879999999999,0.30903980447150436,0.0,91.20556380306178,3.7686213014808203,9.799058271353989 -10/29/1991,10,5.1,0.5,0.906048,0.30299786502819503,0.0,90.82003808828611,3.572256720272535,9.79150817100095 -10/30/1991,10,4.3,0.0,0.8905599999999999,0.29408010235141313,0.0,90.05622004012383,3.2864761826507323,9.774290843594558 -10/31/1991,10,4.7,0.0,0.8983039999999999,0.2855693193582643,0.0,89.29223984665019,3.0235580880386737,9.743128835855204 -11/1/1991,11,3.4,0.0,0.33633,0.27743908650066806,0.0,89.00862799446752,2.78167344099558,9.699444163540033 -11/2/1991,11,3.8,0.0,0.338994,0.2696649660178582,0.0,88.72367766074048,2.5591395657159337,9.64453895231901 -11/3/1991,11,3.8,1.6,0.338994,0.27168281711548914,0.0,89.72435749194914,2.6696904694773536,9.579605151558427 -11/4/1991,11,-1.2,5.6,0.305694,0.26411340839759745,5.6,89.46533210957928,2.4561152319191653,9.521497572001126 -11/5/1991,11,-0.7,2.1,0.309024,0.2568662480441102,7.699999999999999,89.20424102647577,2.259626013365632,9.453873382157061 -11/6/1991,11,-1.6,1.7,0.30303,0.24992122227253546,9.399999999999999,88.94896138573299,2.0788559322963813,9.377777215182201 -11/7/1991,11,-0.4,3.4,0.311022,0.24325971308124766,12.799999999999999,88.68769890704648,1.9125474577126709,9.294164467493376 -11/8/1991,11,2.6,1.5,0.331002,0.3109836121848889,1.7499999999999982,98.48983194192712,4.230181372143534,9.203908551029143 -11/9/1991,11,6.1,3.0,0.354312,0.3372695939248015,0.0,101.71395455194009,5.088093498416226,9.231339448615737 -11/10/1991,11,2.9,12.1,0.333,0.435644966574787,0.0,110.20696377793283,7.957264832089702,9.301117334564234 -11/11/1991,11,1.7,0.1,0.325008,0.5605960268670576,0.0,109.94915549275008,7.199120689100791,9.512958229477434 -11/12/1991,11,2.4,0.0,0.32967,0.5053111864274287,0.0,109.61948549275009,6.506734999517689,9.682655099342925 -11/13/1991,11,2.6,3.4,0.331002,0.4882929960080796,0.0,111.58719390614527,7.005649036185207,9.81433874733195 -11/14/1991,11,2.7,0.7,0.331668,0.5033940812674296,0.0,111.71910920181716,6.574831365809258,9.968334424194571 -11/15/1991,11,3.1,0.1,0.334332,0.46711988452781966,0.0,111.45090948482674,5.997471005244463,10.097709304001143 -11/16/1991,11,1.9,0.0,0.32634,0.42412511686277043,0.0,111.12456948482674,5.461299774562683,10.195628668183343 -11/17/1991,11,1.2,0.0,0.321678,0.3847055345151764,0.0,110.80289148482673,4.994830803869535,10.26478108354781 -11/18/1991,11,0.3,0.0,0.315684,0.3500961642158782,0.0,110.48720748482673,4.5890027993664955,10.30922700207033 -11/19/1991,11,0.5,0.0,0.317016,0.3333063293024603,0.0,110.17019148482673,4.221882575417176,10.332492601997249 -11/20/1991,11,-1.2,0.0,0.305694,0.32326269665607726,0.0,109.86449748482673,3.8841319693838017,10.336936878728162 -11/21/1991,11,-1.4,0.0,0.304362,0.3136901371474487,0.0,109.56013548482673,3.5734014118330975,10.32440473962279 -11/22/1991,11,1.2,0.0,0.321678,0.3045576132750333,0.0,109.23845748482672,3.2875292988864495,10.29658671542199 -11/23/1991,11,3.5,0.1,0.336996,0.29680024484423156,0.0,108.96933457569978,3.0566538641024716,10.255031446057872 -11/24/1991,11,4.6,0.0,0.344322,0.288418916856065,0.0,108.62501257569977,2.812121554974274,10.202763510341839 -11/25/1991,11,5.2,1.5,0.348318,0.29466788585760423,0.0,109.3011264229451,3.062719983330996,10.139314317883716 -11/26/1991,11,6.1,0.8,0.354312,0.2940452093778372,0.0,109.48945251547678,3.0750642921328453,10.08966403069259 -11/27/1991,11,6.3,0.2,0.355644,0.2876422926987808,0.0,109.26920721740323,2.8936604468357734,10.04162396468538 -11/28/1991,11,2.8,0.1,0.332334,0.2805389634463774,0.0,109.00472505210186,2.6943157763902734,9.985474507733462 -11/29/1991,11,-0.3,0.1,0.311688,0.2727727315563377,0.1,108.69303705210186,2.4787705142790517,9.920480806398308 -11/30/1991,11,1.2,0.0,0.321678,0.26628679714655706,0.0,108.43960783100954,2.312220094229039,9.846009715984295 -12/1/1991,12,6.5,2.0,0.183218,0.27805779788401974,0.0,109.62483940581697,2.7587929118832837,9.76470052637606 -12/2/1991,12,4.9,10.8,0.17806600000000003,0.3752480727628068,0.0,116.7481579002845,6.036704984465091,9.707346161442704 -12/3/1991,12,4.5,5.3,0.17677800000000002,0.4792191168667719,0.0,119.88070730694328,7.486105929825841,9.815034487437105 -12/4/1991,12,10.6,6.1,0.19642,0.606505746161889,0.0,123.34604387299163,9.194655592900128,9.993039094179654 -12/5/1991,12,9.5,4.3,0.192878,0.7237106226203293,0.0,125.61536220093136,10.080654037883383,10.252911091941067 -12/6/1991,12,-1.1,4.1,0.158746,0.7419804837228537,4.1,125.45661620093136,9.013669012958543,10.551885571996415 -12/7/1991,12,-3.4,0.0,0.15134,0.6655758381102335,4.1,125.30527620093136,8.085392041273932,10.791531311204414 -12/8/1991,12,-4.4,0.0,0.14812,0.5987027400818267,4.1,125.15715620093135,7.277791075908321,10.979970287044022 -12/9/1991,12,1.6,0.0,0.16744,0.5945317951753837,0.0,127.27632668103837,8.388567755933217,11.12426043509856 -12/10/1991,12,3.9,5.0,0.17484600000000003,0.6976126617658496,0.0,129.80102790585613,9.842006722844127,11.321203614193248 -12/11/1991,12,10.0,4.1,0.194488,0.8037838743173257,0.0,131.7310544009276,10.781531353802919,11.586879878051588 -12/12/1991,12,8.8,28.1,0.190624,1.2426785825481492,0.0,145.62327474892317,23.640587929812973,11.894218848180701 -12/13/1991,12,6.9,5.5,0.184506,1.9237958221686093,0.0,147.4662753037336,24.28330494412686,12.838363867707736 -12/14/1991,12,4.1,5.9,0.17549,2.0027829749973614,0.0,149.35401090379665,25.206749701327333,13.795761837559926 -12/15/1991,12,-1.5,2.4,0.15745800000000001,1.9776423339885119,2.4,149.19655290379666,22.17337224015478,14.780184085875096 -12/16/1991,12,-5.8,0.1,0.14361200000000002,1.7630636077990853,2.5,149.05294090379667,19.534333848934658,15.593249016165332 -12/17/1991,12,-11.3,0.0,0.12590200000000001,1.5755298204697026,2.5,148.92703890379667,17.238370448573153,16.25810072828876 -12/18/1991,12,-11.0,0.0,0.126868,1.4115421358594498,2.5,148.80017090379667,15.240882290258641,16.79485723615164 -12/19/1991,12,-8.1,0.0,0.136206,1.2680562264075135,2.5,148.66396490379668,13.503067592525017,17.22100420594154 -12/20/1991,12,-6.7,0.0,0.140714,1.142423193820133,2.5,148.52325090379668,11.991168805496764,17.55173750144896 -12/21/1991,12,-2.7,0.0,0.153594,1.0323381699322,2.5,148.36965690379668,10.675816860782184,17.80026119169482 -12/22/1991,12,-2.6,0.0,0.153916,0.9357955993235249,2.5,148.21574090379667,9.5314606688805,17.978046810900032 -12/23/1991,12,-5.7,0.1,0.143934,0.8510503350643273,2.6,148.07180690379667,8.535870781926036,18.09505890812606 -12/24/1991,12,-10.7,0.2,0.127834,0.7765837918857681,2.8000000000000003,147.94397290379666,7.6697075802756505,18.15995126905984 -12/25/1991,12,-8.9,0.1,0.13363,0.7110744993128255,2.9000000000000004,147.81034290379665,6.916145594839816,18.180237622692427 -12/26/1991,12,-0.9,1.1,0.15939,0.6533724827669214,4.0,147.65095290379665,6.260546667510639,18.16244014998057 -12/27/1991,12,-0.9,7.1,0.15939,0.6024769750046896,11.1,147.49156290379665,5.690175600734257,18.11221868035649 -12/28/1991,12,-0.7,0.0,0.160034,0.5575170249515985,11.1,147.33152890379665,5.193952772638803,18.034483086786075 -12/29/1991,12,-0.8,0.0,0.159712,0.5177346272714588,11.1,147.17181690379664,4.762238912195758,17.933491063682293 -12/30/1991,12,1.7,0.0,0.16776200000000002,0.6279886230527199,3.875,149.55264939327168,9.057665309745039,17.812933188018434 -12/31/1991,12,5.6,0.5,0.18032,0.8995013984991664,0.0,150.80676563884958,11.064232573900272,17.909557789745318 -1/1/1992,1,-0.7,3.2,0.154238,0.9678846641267193,3.2,150.6525276388496,9.869382339293235,18.104578262645425 -1/2/1992,1,-3.7,22.3,0.144578,0.8795841123073588,25.5,150.5079496388496,8.829862635185115,18.23595581435718 -1/3/1992,1,-6.9,0.6,0.134274,0.8020121431341731,26.1,150.3736756388496,7.925480492611051,18.31272982982929 -1/4/1992,1,-4.4,1.4,0.142324,0.7337890506449662,27.5,150.2313516388496,7.138668028571614,18.342749257863257 -1/5/1992,1,-3.2,0.0,0.146188,0.6737141904569913,27.5,150.0851636388496,6.4541411848573045,18.332827674134574 -1/6/1992,1,-1.9,0.0,0.150374,0.6207427077655359,27.5,149.9347896388496,5.8586028308258555,18.28887817989475 -1/7/1992,1,-0.4,0.1,0.155204,0.5739652905826106,27.6,149.7795856388496,5.340484462818495,18.216030757838148 -1/8/1992,1,0.1,0.2,0.156814,0.5452379568965064,27.175,149.8261915735305,5.311301547971183,18.11873436582231 -1/9/1992,1,-0.1,0.0,0.15617,0.5284335429186955,27.175,149.6700215735305,4.86433234673493,18.021924755904422 -1/10/1992,1,2.2,0.7,0.163576,0.6953704269964236,17.825,152.78908568472792,11.242545647798732,17.90470287812308 -1/11/1992,1,3.1,7.6,0.166474,1.4220574641741095,4.649999999999999,158.71361107414077,24.708515324172062,18.108736102950555 -1/12/1992,1,1.9,9.2,0.16261,2.3449074269878913,0.0,161.69617881159428,32.44473059457618,18.98198714710015 -1/13/1992,1,0.7,24.2,0.158746,3.2235698548468052,0.0,166.1964602142003,48.011388214675236,20.224583933886954 -1/14/1992,1,-0.3,7.1,0.155526,3.8618848764556453,7.1,166.0409342142003,42.013407746767456,22.220661665942977 -1/15/1992,1,-1.1,0.2,0.15295,3.4385637059282534,7.3,165.8879842142003,36.795164739687685,23.87691881996249 -1/16/1992,1,-1.4,0.0,0.151984,3.0686998103011858,7.3,165.7360002142003,32.255293323528285,25.239138680547626 -1/17/1992,1,1.2,0.0,0.160356,2.876295661853259,2.2,166.31162993185043,32.669619473819445,26.347120573113088 -1/18/1992,1,2.6,0.0,0.164864,2.8559737350367262,0.0,166.44884891944275,30.56398595463059,27.4536591353418 -1/19/1992,1,3.4,1.8,0.16744,2.7050556471771023,0.0,166.5255552186966,28.39002148127476,28.432785250366493 -1/20/1992,1,4.9,0.5,0.17227,2.5229377402323814,0.0,166.42063544806615,25.375468459339505,29.2836306194229 -1/21/1992,1,4.4,0.3,0.17066,2.301988948493902,0.0,166.29076977679492,22.5793632308966,29.96673143000142 -1/22/1992,1,2.9,0.5,0.16583,2.104958370474619,0.0,166.19372213197948,20.318763655695488,30.49636496294622 -1/23/1992,1,-0.7,5.0,0.154238,1.928110431127868,5.0,166.0394841319795,17.920824380455073,30.902375846472072 -1/24/1992,1,3.3,0.3,0.16711800000000002,1.887827876507989,0.0,166.61767445917783,20.389308883797586,31.180369548565384 -1/25/1992,1,3.5,4.6,0.16776200000000002,2.0665225853358304,0.0,167.0643582177393,21.967752970342396,31.576227601783955 -1/26/1992,1,3.7,10.3,0.168406,2.345827836356449,0.0,168.2154515061365,28.33594579580071,32.043090698265395 -1/27/1992,1,1.6,6.4,0.161644,2.7466776841053386,0.0,168.78291798736643,30.566662361116688,32.81902617409012 -1/28/1992,1,-1.1,6.0,0.15295,2.763747581054263,6.0,168.62996798736643,26.83649625417152,33.69097876866415 -1/29/1992,1,-9.2,1.2,0.126868,2.4932420450624417,7.2,168.50309998736643,23.591251741129224,34.358984005999446 -1/30/1992,1,-9.6,0.2,0.12558,2.2561265957586523,7.4,168.3775199873664,20.767889014782423,34.851366912935916 -1/31/1992,1,-10.3,0.5,0.123326,2.048096034533269,7.9,168.25419398736642,18.311563442860706,35.192734025416314 -2/1/1992,2,-8.8,0.0,0.14856999999999998,1.86540412834272,7.9,168.1056239873664,16.174560195288812,35.40445751705102 -2/2/1992,2,-4.1,5.1,0.165396,1.7047909583909675,13.0,167.94022798736643,14.315367369901267,35.50509637647445 -2/3/1992,2,-5.7,2.7,0.159668,1.5634197131982868,15.7,167.78055998736642,12.697869611814102,35.510762817440025 -2/4/1992,2,-0.5,0.0,0.178284,1.4388216982926916,15.7,167.60227598736643,11.290646562278269,35.435441041681926 -2/5/1992,2,2.7,1.6,0.18974,1.6734420303095656,4.224999999999998,169.00108478933493,21.5528137072136,35.291264548962204 -2/6/1992,2,1.5,4.5,0.185444,2.3517198107580133,0.0,169.72450449692872,26.81058421768203,35.66307994334364 -2/7/1992,2,2.0,0.0,0.187234,2.5298974100728198,0.0,169.53727049692873,23.568708269383364,36.29034755536087 -2/8/1992,2,1.4,1.0,0.185086,2.3193189902024196,0.0,169.44965881199906,21.650801879293173,36.74297601772282 -2/9/1992,2,-0.8,0.3,0.17720999999999998,2.1532441548408707,0.3,169.27244881199906,19.07969763498506,37.09065659133302 -2/10/1992,2,-0.8,0.0,0.17720999999999998,1.9618265568474753,0.3,169.09523881199905,16.842836942437003,37.30282834125561 -2/11/1992,2,-1.1,0.0,0.176136,1.793523163750503,0.3,168.91910281199904,14.896768139920193,37.39891362155235 -2/12/1992,2,3.2,0.2,0.19153,1.65878670073727,0.0,168.7801671397658,13.651093953963798,37.395773756117315 -2/13/1992,2,-0.8,7.2,0.17720999999999998,1.549261509470508,7.2,168.6029571397658,12.119951739948505,37.330412978693154 -2/14/1992,2,-4.3,26.9,0.16468,1.4299293735324157,34.1,168.4382771397658,10.787858013755198,37.18980230611672 -2/15/1992,2,-5.9,7.6,0.15895199999999998,1.3244689780604135,41.7,168.2793251397658,9.628936471967023,36.98539916068214 -2/16/1992,2,0.4,2.8,0.181506,1.3508369190236937,40.0,168.60691602357693,12.611577846800182,36.727138001066855 -2/17/1992,2,-1.2,5.7,0.175778,1.4560095568092044,45.7,168.43113802357692,11.21557272671616,36.62317413338553 -2/18/1992,2,-1.8,6.2,0.17362999999999998,1.3463398702441722,51.900000000000006,168.25750802357692,10.001048272243057,36.451489287053626 -2/19/1992,2,-0.5,0.5,0.178284,1.249335011816191,52.400000000000006,168.07922402357693,8.944411996851459,36.22251191492471 -2/20/1992,2,-1.7,0.0,0.17398799999999998,1.1633803984897717,52.400000000000006,167.90523602357692,8.025138437260768,35.94528227646879 -2/21/1992,2,-1.2,0.0,0.175778,1.0870707061315934,52.400000000000006,167.7294580235769,7.225370440416868,35.62763355280245 -2/22/1992,2,-4.8,0.0,0.16289,1.0191826785910685,52.400000000000006,167.5665680235769,6.5295722831626755,35.27634940376724 -2/23/1992,2,-6.5,0.0,0.156804,0.9586514713456803,52.400000000000006,167.4097640235769,5.924227886351527,34.897301029850034 -2/24/1992,2,-6.1,0.1,0.158236,0.9045500702227633,52.50000000000001,167.25152802357692,5.397578261125829,34.495566403570606 -2/25/1992,2,-6.3,0.1,0.15752,0.8560713854427853,52.60000000000001,167.09400802357692,4.939393087179472,34.075533988555485 -2/26/1992,2,-4.4,0.4,0.16432199999999997,0.8125126731972248,53.00000000000001,166.92968602357692,4.540771985846141,33.64099296314335 -2/27/1992,2,-1.0,0.0,0.17649399999999998,0.7892295408728093,53.00000000000001,166.75319202357693,4.17751022697845,33.19521170317279 -2/28/1992,2,-1.7,0.0,0.17398799999999998,0.7701029418737702,53.00000000000001,166.57920402357692,3.8433094088201742,32.74018298045825 -2/29/1992,2,-2.0,1.3,0.17291399999999998,0.7516262355092387,54.300000000000004,166.40629002357693,3.53584465611456,32.2775447912901 -3/1/1992,3,-2.6,0.3,0.57792,0.7337650350741625,54.6,165.82837002357692,3.2529770836253955,31.808786128270025 -3/2/1992,3,-1.0,0.1,0.59856,0.7164873527057788,54.7,165.22981002357693,2.992738916935364,31.335259259885895 -3/3/1992,3,1.9,11.7,0.63597,1.2037649695060013,46.625,167.5687881906474,19.553371636510082,30.858191020534946 -3/4/1992,3,0.7,18.9,0.62049,2.4524386559160147,43.65,169.61502623269402,36.46320528171718,31.21869578194975 -3/5/1992,3,-5.2,3.8,0.54438,3.18700456454661,47.449999999999996,169.07064623269403,31.966488595093946,32.417482130396614 -3/6/1992,3,-7.3,2.8,0.51729,2.863803920437517,50.24999999999999,168.55335623269403,28.054345077731732,33.36745691754338 -3/7/1992,3,-2.1,0.0,0.5843700000000001,2.5807971610769664,50.24999999999999,167.96898623269402,24.650780217626608,34.1028250330791 -3/8/1992,3,3.6,0.0,0.6579,2.7381056516466464,34.94999999999999,169.1007486920512,35.20001632997797,34.65330754329885 -3/9/1992,3,5.2,0.1,0.67854,3.7543825195729705,12.849999999999987,170.70716093595084,50.78256196318122,35.72024220893178 -3/10/1992,3,2.8,2.8,0.64758,4.783755442329929,0.9499999999999886,171.27630868016436,57.90760116375411,37.5449654629122 -3/11/1992,3,-0.6,1.4,0.60372,4.96436237279852,2.3499999999999885,170.67258868016435,50.62311301246607,39.68944621184166 -3/12/1992,3,-5.7,2.0,0.53793,4.444760159013231,4.349999999999989,170.13465868016436,44.28560832084548,41.42681293822813 -3/13/1992,3,-6.8,1.8,0.5237400000000001,3.990190935126458,6.149999999999989,169.61091868016436,38.771979239135575,42.81255709550584 -3/14/1992,3,-5.4,1.4,0.5418,3.592250718409267,7.549999999999988,169.06911868016437,33.97512193804795,43.8949049155525 -3/15/1992,3,-5.4,0.7,0.5418,3.2436270377683263,8.249999999999988,168.52731868016437,29.80185608610172,44.71576291414385 -3/16/1992,3,-6.4,0.5,0.5289,2.937957057355662,8.749999999999988,167.99841868016438,26.171114794908497,45.31154046016606 -3/17/1992,3,-5.0,0.1,0.54696,2.6697041437066997,8.849999999999987,167.45145868016436,23.012369871570392,45.71386539070816 -3/18/1992,3,-4.7,0.1,0.55083,2.4340504787559576,8.949999999999987,166.90062868016437,20.264261788266243,45.95020657647252 -3/19/1992,3,-3.3,0.0,0.56889,2.226803632774189,8.949999999999987,166.33173868016436,17.873407755791632,46.04441553435638 -3/20/1992,3,-1.8,0.0,0.58824,2.04431528244492,8.949999999999987,165.74349868016435,15.79336474753872,46.01719761145884 -3/21/1992,3,-3.3,0.0,0.56889,1.8834104952198287,8.949999999999987,165.17460868016434,13.983727330358686,45.8865218966066 -3/22/1992,3,-2.5,0.0,0.57921,1.7413262063441441,8.949999999999987,164.59539868016435,12.409342777412057,45.66797782519241 -3/23/1992,3,-2.3,0.0,0.58179,1.6156576935122406,8.949999999999987,164.01360868016434,11.03962821634849,45.37508540755916 -3/24/1992,3,-1.2,0.0,0.5959800000000001,1.5043120094686282,8.949999999999987,163.41762868016434,9.847976548223185,45.01956511022541 -3/25/1992,3,-0.2,0.0,0.60888,1.4054674680284256,8.949999999999987,162.80874868016434,8.811239596954172,44.611572635432054 -3/26/1992,3,1.4,0.3,0.62952,1.4714000299429268,2.9999999999999876,163.3005075680546,13.03799956145986,44.15990316257112 -3/27/1992,3,1.1,3.5,0.62565,1.7957230942662208,0.0,163.80305003167888,16.958367154845803,43.92860507739269 -3/28/1992,3,5.6,4.9,0.6837000000000001,2.054661658656679,0.0,163.94048698163988,19.07614247475486,43.89795133358712 -3/29/1992,3,8.0,14.4,0.7146600000000001,2.4552907666627615,0.0,165.61531579094475,28.850255143731864,43.97379943065312 -3/30/1992,3,4.7,22.5,0.6720900000000001,3.4266483762518405,0.0,168.223151263301,44.56329650269048,44.536836199226656 -3/31/1992,3,2.3,10.6,0.64113,4.354359783162525,0.0,168.78860015329278,48.40698906734893,45.87426430037665 -4/1/1992,4,2.8,1.9,1.5503099999999999,4.446031131488874,0.0,167.4412336829965,44.05463695888983,47.37712846773657 -4/2/1992,4,7.1,0.2,1.693672,4.094268362353772,0.0,165.77225718780554,38.74633864942513,48.63231774632633 -4/3/1992,4,4.1,2.1,1.593652,3.7582772675068563,0.0,164.48073419419944,35.75068561860595,49.59698832387106 -4/4/1992,4,1.3,6.3,1.5003,3.6511452814172567,0.0,163.9850525583706,36.64197812401602,50.39258283832393 -4/5/1992,4,0.3,16.4,1.46696,3.9872174646764535,0.0,165.23071496891495,45.80939855734959,51.216830087758254 -4/6/1992,4,1.5,8.2,1.506968,4.508553983611618,0.0,164.95726413158485,47.06415958222424,52.482963413870564 -4/7/1992,4,5.0,0.0,1.623658,4.421117786701353,0.0,163.33360613158484,41.189318836535094,53.786512124704366 -4/8/1992,4,1.4,5.1,1.5036340000000001,4.120221439818828,0.0,162.7131614689926,40.29501805037776,54.77024782403703 -4/9/1992,4,1.3,2.7,1.5003,4.010424303669873,0.0,161.70030964783854,37.512717524982705,55.68959377007518 -4/10/1992,4,2.5,0.0,1.540308,3.74755155906964,0.0,160.16000164783853,32.87956424673495,56.45143777092281 -4/11/1992,4,5.8,0.0,1.65033,3.405267583733352,0.0,158.50967164783853,28.848720894659408,56.9663872278411 -4/12/1992,4,2.3,2.6,1.5336400000000001,3.164687769007104,0.0,157.57252503573258,27.345393790459624,57.26949552801725 -4/13/1992,4,-0.1,3.1,1.453624,2.9946169735935753,3.1,156.1189010357326,24.033992597699875,57.49137530697988 -4/14/1992,4,1.6,5.1,1.510302,2.926568650859495,0.0,156.71153685039832,27.250135745333168,57.54324743072528 -4/15/1992,4,2.7,2.9,1.5469760000000001,3.057905004673788,0.0,155.88899788151883,26.126681067319357,57.754889269377436 -4/16/1992,4,8.5,1.0,1.740348,2.932397147439819,0.0,154.40767629919551,23.714686110891133,57.906125537355855 -4/17/1992,4,12.5,0.0,1.8737080000000002,2.7271673596818813,0.0,152.53396829919552,20.875276916475286,57.93373733215329 -4/18/1992,4,10.7,0.0,1.8136960000000002,2.5087901019704493,0.0,150.72027229919553,18.4049909173335,57.81882643133399 -4/19/1992,4,11.7,0.0,1.8470360000000001,2.316078797780559,0.0,148.87323629919553,16.255842098080148,57.58269944857398 -4/20/1992,4,12.8,0.0,1.8837100000000002,2.1457513349540296,0.0,146.98952629919552,14.386082625329728,57.24383756450651 -4/21/1992,4,14.5,0.0,1.940388,1.9949511866772496,0.0,145.0491382991955,12.759391884036864,56.81826494448286 -4/22/1992,4,14.7,4.6,1.947056,1.9475150181950625,0.0,144.8246519317303,14.221601306577277,56.31986923979505 -4/23/1992,4,15.0,0.0,1.957058,1.964159897837091,0.0,142.8675939317303,12.616293136722232,55.90455192032801 -4/24/1992,4,14.6,0.4,1.943722,1.8394941424793705,0.0,141.08241446507506,11.461132495603579,55.417275538757565 -4/25/1992,4,13.7,1.8,1.913716,1.7652845623507676,0.0,139.9137769190723,11.26960681717789,54.88198665276259 -4/26/1992,4,7.8,1.2,1.7170100000000001,1.7290686487791271,0.0,138.70709942638678,10.737725423630266,54.347827260566234 -4/27/1992,4,5.9,0.0,1.653664,1.6569010444689918,0.0,137.05343542638678,9.585321118558332,53.79775698653643 -4/28/1992,4,4.2,0.0,1.596986,1.5572692951769613,0.0,135.4564494263868,8.582729373145748,53.20106790273361 -4/29/1992,4,0.4,0.1,1.470294,1.4698722188562956,0.0,134.03289364994748,7.763736331076119,52.56618301333623 -4/30/1992,4,1.6,2.6,1.510302,1.4332117000807059,0.0,133.77174358683592,8.348798671147783,51.90304616962331 -5/1/1992,5,5.7,0.0,2.74624,1.424797082470111,0.0,131.02550358683592,7.506954843898572,51.282425179788234 -5/2/1992,5,7.6,0.0,2.86271,1.347726751988429,0.0,128.16279358683593,6.774550714191758,50.63212441838739 -5/3/1992,5,7.4,0.1,2.85045,1.2799154682436802,0.0,125.36557793419917,6.184124773983589,49.95820946572923 -5/4/1992,5,8.8,0.3,2.93627,1.2237781320147485,0.0,122.59610105378849,5.756895433776412,49.26825151511383 -5/5/1992,5,11.4,1.2,3.09565,1.1884866939174983,0.0,120.19487351121829,5.757576569955669,48.57073125650037 -5/6/1992,5,16.4,0.2,3.4021499999999993,1.1621135544005847,0.0,116.9122879035651,5.333027223514615,47.887195459868146 -5/7/1992,5,16.9,0.0,3.4327999999999994,1.1135704299463924,0.0,113.4794879035651,4.883233684457716,47.196102911846516 -5/8/1992,5,11.5,1.1,3.1017799999999998,1.0769405438522632,0.0,111.09122091328571,4.878400295757597,46.496342537832476 -5/9/1992,5,6.8,5.5,2.8136699999999997,1.1064044460357116,0.0,111.93933526357623,6.325923907018588,45.81033570186371 -5/10/1992,5,6.9,2.7,2.8198,1.1769764137141314,0.0,110.90086523936057,6.665723823321823,45.210425183177364 -5/11/1992,5,7.0,1.2,2.8259299999999996,1.175840203772159,0.0,108.87548312590157,6.442131839748989,44.639502870679905 -5/12/1992,5,6.2,1.0,2.77689,1.144990603577659,0.0,106.77982704364538,6.166920782837813,44.068819405253755 -5/13/1992,5,3.7,9.8,2.62364,1.1925564992117224,0.0,110.9717521599136,8.593155964800674,43.49578905629057 -5/14/1992,5,3.9,9.0,2.6359,1.3688665780591567,0.0,114.33545923758929,10.719938611700902,43.055531073404794 -5/15/1992,5,8.3,6.4,2.90562,1.502862102187423,0.0,115.54112503137098,11.858560798398104,42.73041738252174 -5/16/1992,5,8.9,1.0,2.9423999999999997,1.5266123168956076,0.0,113.23218840998139,10.926984515995944,42.468737074791214 -5/17/1992,5,10.7,9.1,3.05274,1.5340912963470557,0.0,116.0984969600527,12.930927978845157,42.165711559095186 -5/18/1992,5,8.6,2.8,2.92401,1.6183667453533244,0.0,114.93651190584946,12.531382395798525,41.968943726855535 -5/19/1992,5,5.9,4.1,2.7585,1.5970974309379518,0.0,114.79362686666556,12.63018772352861,41.75613397210835 -5/20/1992,5,9.2,0.5,2.96079,1.5614275242376465,0.0,112.15234270332333,11.412257482812118,41.55252067884262 -5/21/1992,5,9.2,2.5,2.96079,1.4837523291006733,0.0,110.83712364097187,11.026593072398,41.29208313940637 -5/22/1992,5,10.6,0.0,3.04661,1.423280155414251,0.0,107.79051364097187,9.836635972986262,41.017571130238146 -5/23/1992,5,7.5,0.2,2.8565799999999997,1.3280221353415,0.0,105.07166338525215,8.863643552217772,40.689051506282695 -5/24/1992,5,5.3,5.0,2.72172,1.2886787039644156,0.0,105.90493143241895,9.420915775938948,40.31845265376793 -5/25/1992,5,6.0,4.5,2.76463,1.320724167340991,0.0,106.29613846567739,9.783859691808441,39.98312938948952 -5/26/1992,5,8.4,0.8,2.9117499999999996,1.3090411739798458,0.0,103.94334660876338,8.99649978878735,39.672659786290154 -5/27/1992,5,7.8,6.2,2.87497,1.2881898653610326,0.0,105.5488759592083,9.84280814405302,39.32903158000372 -5/28/1992,5,7.8,0.4,2.87497,1.2970907059070478,0.0,102.96462835784733,8.92528238640903,39.034591355606295 -5/29/1992,5,10.2,0.2,3.02209,1.2186997317968573,0.0,100.17011253051207,8.064411317337107,38.70016364781462 -5/30/1992,5,10.7,0.0,3.05274,1.1440943200638576,0.0,97.28227317527177,7.2595378460832825,38.32938094072518 -5/31/1992,5,1.1,19.5,2.46426,1.2178982006502508,0.0,109.74743233599457,11.330196802059666,37.925770214214836 -6/1/1992,6,4.7,12.5,3.1047300000000004,1.5025074636040945,0.0,115.08272920377179,14.16074435001469,37.73376465003352 -6/2/1992,6,6.3,0.0,3.227386,1.5951801765267897,0.0,111.8553432037718,12.563347584512782,37.68712657453358 -6/3/1992,6,7.9,0.0,3.350042,1.4711067796267936,0.0,108.5053012037718,11.173612398526119,37.56155142226854 -6/4/1992,6,8.8,0.0,3.419036,1.3614969238028274,0.0,105.08626520377179,9.964542786717724,37.36900101374948 -6/5/1992,6,9.6,0.0,3.4803640000000002,1.2645036687254265,0.0,101.63231814257942,8.91265222444442,37.11984813281038 -6/6/1992,6,9.6,0.0,3.4803640000000002,1.1785195099077483,0.0,98.29189448312168,7.997507435266646,36.8230837813764 -6/7/1992,6,10.9,0.0,3.5800220000000005,1.1021452653740358,0.0,94.96875589901313,7.201331468681982,36.486497477512195 -6/8/1992,6,13.3,0.0,3.764006,1.0341630067946197,0.0,91.59296057352044,6.508658377753324,36.116834101396044 -6/9/1992,6,12.9,0.0,3.733342,0.9735125093121436,0.0,88.3636863586421,5.906032788645391,35.719930338255786 -6/10/1992,6,9.9,1.3,3.503362,0.9268826872412911,0.0,86.48645019353677,5.63547934635209,35.30083337092294 -6/11/1992,6,10.5,0.8,3.5493580000000002,0.8946505391794964,0.0,84.23902722632067,5.29482528151501,34.87659067082208 -6/12/1992,6,17.3,0.0,4.070646,0.8556172063529202,0.0,81.00069254672191,4.849997994918058,34.443800121481395 -6/13/1992,6,19.6,0.0,4.246964,0.8138084250356917,0.0,77.75197193834532,4.461998155324613,33.997424018797666 -6/14/1992,6,18.0,1.6,4.124308,0.8008985039458678,0.0,76.09241670099027,4.336233167403634,33.540575446187944 -6/15/1992,6,16.6,27.7,4.016984000000001,0.8955520135732264,0.0,97.10113499908233,7.7940167220179735,33.086575595634365 -6/16/1992,6,17.8,3.5,4.108976,1.0387977592054205,0.0,95.9806308709836,7.876867490269003,32.81454491982258 -6/17/1992,6,16.8,3.9,4.032316000000001,1.0420100014658809,0.0,95.30121805032279,8.020822634454635,32.55209739593958 -6/18/1992,6,16.6,3.6,4.016984000000001,1.0454078104563918,0.0,94.44671496583653,8.06082490462631,32.30209657974353 -6/19/1992,6,15.6,5.7,3.9403240000000004,1.0574432715621966,0.0,95.33129329763675,8.55733694877606,32.05909589337997 -6/20/1992,6,16.6,0.0,4.016984000000001,1.0519339582608815,0.0,91.71485850798793,7.688383145435171,31.84578082295117 -6/21/1992,6,19.6,0.0,4.246964,0.9807566446428946,0.0,88.03642142848544,6.932393336528599,31.593284363763903 -6/22/1992,6,21.1,0.0,4.361954000000001,0.9175208997761275,0.0,84.40991448169473,6.274682202779881,31.308038343315054 -6/23/1992,6,21.4,0.0,4.384952,0.8612205493633039,0.0,80.91446237737576,5.702473516418497,30.995611686587747 -6/24/1992,6,14.4,0.0,3.848332,0.8109796971729859,0.0,77.97380967334657,5.204651959284092,30.660823128676917 -6/25/1992,6,14.6,0.0,3.8636640000000004,0.766035799382871,0.0,75.12873835992923,4.7715472045771605,30.30783926406758 -6/26/1992,6,9.2,0.0,3.4497000000000004,0.7304998996266314,0.0,72.68118326766132,4.389823428210988,29.940259839015088 -6/27/1992,6,11.0,0.0,3.5876880000000004,0.7123780428915301,0.0,70.2186522540133,4.038637553954109,29.560945813645336 -6/28/1992,6,9.1,0.0,3.442034,0.6948995719905361,0.0,67.93614221064291,3.7155465496377804,29.171658775070135 -6/29/1992,6,9.6,0.5,3.4803640000000002,0.6796075347329925,0.0,66.15062233872008,3.470915873066002,28.774002927050624 -6/30/1992,6,10.4,0.0,3.5416920000000003,0.6632386513398799,0.0,63.93808923897444,3.1932426032207215,28.372068662162913 -7/1/1992,7,12.1,0.1,3.685248,0.647693027103834,0.0,61.80375231776397,2.94690795740734,27.96428941908069 -7/2/1992,7,10.7,3.1,3.572352,0.6402169146173756,0.0,62.55753770684906,2.9723311348662294,27.55234902856944 -7/3/1992,7,7.2,10.2,3.290112,0.6515602967801246,0.0,69.92962402312708,3.6187308228432453,27.149918604741362 -7/4/1992,7,6.8,2.6,3.2578560000000003,0.6444189650394851,0.0,70.08531135274146,3.6220609854570407,26.787856773788697 -7/5/1992,7,9.5,0.9,3.475584,0.6316897833149295,0.0,68.58303507083707,3.4341909854404653,26.433202687585776 -7/6/1992,7,11.3,0.1,3.620736,0.6166314224894116,0.0,66.32719035646173,3.1702152942429933,26.076248183106085 -7/7/1992,7,15.1,0.0,3.927168,0.6017626218042289,0.0,63.86729783122039,2.9165980707035537,25.713233984156115 -7/8/1992,7,18.1,0.0,4.169088,0.5873940909115815,0.0,61.35272247018,2.6832702250472695,25.34479920800817 -7/9/1992,7,19.5,1.6,4.2819840000000005,0.5774745929775152,0.0,60.339238654896526,2.6011086091835955,24.97206673510037 -7/10/1992,7,16.2,1.9,4.015872,0.5683833254913209,0.0,59.79957288165344,2.544323629138998,24.602680830857544 -7/11/1992,7,14.8,0.4,3.9029760000000002,0.5559158386558655,0.0,57.964245749091,2.3719656913972873,24.237843395697343 -7/12/1992,7,13.4,1.1,3.79008,0.5452912091431261,0.0,56.90984515806493,2.2619170965353637,23.87168481235326 -7/13/1992,7,14.6,0.0,3.886848,0.5325758512830352,0.0,54.820885692270856,2.080963728812535,23.50734697093296 -7/14/1992,7,13.8,3.5,3.8223360000000004,0.5269337582934278,0.0,56.119530242094136,2.1369597978109747,23.141248217954928 -7/15/1992,7,12.5,4.5,3.7175040000000004,0.5237519828756153,0.0,58.34711371006184,2.268218600196255,22.78527124348638 -7/16/1992,7,12.0,9.3,3.677184,0.5319945983792823,0.0,64.93651779968262,2.7711687802250995,22.442976748626467 -7/17/1992,7,12.0,4.5,3.677184,0.5319130179365283,0.0,66.75566138102927,2.9753168294408163,22.132675652665192 -7/18/1992,7,14.2,1.2,3.854592,0.5225297678500124,0.0,65.40445628567839,2.8584669409444605,21.83878798108393 -7/19/1992,7,18.8,0.0,4.225536,0.5097923989402566,0.0,62.794494206203844,2.6297895856689038,21.544935568509473 -7/20/1992,7,16.0,0.0,3.999744,0.49749271929291633,0.0,60.422580886397455,2.4194064188153916,21.245526336422728 -7/21/1992,7,15.1,1.8,3.927168,0.48992152144589995,0.0,59.83786798260332,2.3696599611066347,20.941586130635045 -7/22/1992,7,15.6,0.0,3.967488,0.47822736304809665,0.0,57.59586190869112,2.180087164218104,20.641237406077675 -7/23/1992,7,17.4,0.0,4.11264,0.4669187460557602,0.0,55.358908036558155,2.0056801910806556,20.337417016167027 -7/24/1992,7,22.2,0.0,4.499712000000001,0.4559758269817805,0.0,53.006474919181656,1.8452257757942032,20.030952685397722 -7/25/1992,7,20.7,0.0,4.378752,0.44538012982150954,0.0,50.81455681487231,1.697607713730667,19.722594920479477 -7/26/1992,7,18.5,0.2,4.201344,0.43543352853523254,0.0,48.98777708276592,1.572435346003472,19.41302340775642 -7/27/1992,7,13.7,0.0,3.8142720000000003,0.42546690968772516,0.0,47.22318452002123,1.446640518323194,19.103384706901466 -7/28/1992,7,14.7,0.0,3.8949119999999997,0.41580025907931206,0.0,45.486191904427265,1.3309092768573385,18.793649038679597 -7/29/1992,7,15.6,0.0,3.967488,0.40641952647624,0.0,43.78191463040222,1.2244365347087516,18.48432152174887 -7/30/1992,7,16.6,0.0,4.048128,0.3973115867189481,0.0,42.1081513429441,1.1264816119320513,18.17585691804933 -7/31/1992,7,18.7,0.0,4.217472,0.38846416969502356,0.0,40.43103405839759,1.0363630829774872,17.868663860284947 -8/1/1992,8,20.1,0.0,3.51634,0.37986579583474117,0.0,39.0884213253642,0.9534540363392884,17.563108737228124 -8/2/1992,8,17.9,8.3,3.374396,0.37865395192127904,0.0,45.904516327804664,1.1154522211756166,17.259519264300526 -8/3/1992,8,18.1,5.1,3.3873,0.3765967403447808,0.0,49.32247570740648,1.239823684777162,16.970101490073297 -8/4/1992,8,18.7,0.0,3.426012,0.3680729465900635,0.0,47.726674464198595,1.140637789994989,16.69269064451069 -8/5/1992,8,19.8,0.8,3.4969840000000003,0.36090048219723586,0.0,46.913799200738616,1.0861035924943763,16.415868721120226 -8/6/1992,8,12.7,14.5,3.0388919999999997,0.3719884433815635,0.0,59.4282782730605,1.6383770951704215,16.14185652632254 -8/7/1992,8,11.8,3.9,2.980824,0.3722278993451939,0.0,61.355696517616515,1.8069711444700562,15.90093825055461 -8/8/1992,8,13.0,0.2,3.058248,0.36383469605423835,0.0,59.767095713872834,1.6789778399632629,15.67326804276702 -8/9/1992,8,14.7,0.0,3.167932,0.355214819861183,0.0,57.979031731825046,1.5446596127662018,15.443751573909843 -8/10/1992,8,17.1,0.0,3.32278,0.34687479577374636,0.0,56.159676107517996,1.4210868437449056,15.212109523069957 -8/11/1992,8,20.2,0.0,3.5227920000000004,0.33880043038327545,0.0,54.29133294277953,1.307399896245313,14.978921674795803 -8/12/1992,8,21.9,0.0,3.6324759999999996,0.33097850185861366,0.0,52.42891001405486,1.2028079045456879,14.744713236112151 -8/13/1992,8,23.0,0.0,3.7034480000000003,0.3233966854978048,0.0,50.59523599447103,1.106583272182033,14.509959366617192 -8/14/1992,8,15.4,5.3,3.213096,0.3244137871493926,0.0,54.080978498209596,1.2970666763837886,14.27508934289395 -8/15/1992,8,15.2,1.5,3.200192,0.3196583287928577,0.0,53.85420209892556,1.285650366525083,14.05444088985526 -8/16/1992,8,15.8,0.0,3.238904,0.3122366419237804,0.0,52.20693993446227,1.1827983372030764,13.837634590384408 -8/17/1992,8,12.1,9.4,3.00018,0.3210264090692419,0.0,59.595070092293504,1.6208657586834823,13.620021815436873 -8/18/1992,8,13.8,0.0,3.109864,0.3133091882809103,0.0,57.844833402733585,1.4911964979888037,13.428664667062309 -8/19/1992,8,16.4,0.0,3.277616,0.3058500473169011,0.0,56.05436072846657,1.3719007781496995,13.234651198620503 -8/20/1992,8,12.8,4.9,3.045344,0.30848098128971163,0.0,59.014083201203874,1.5903305672866688,13.038553213555579 -8/21/1992,8,13.0,3.4,3.058248,0.3087487064213835,0.0,60.45268880543419,1.7200910956135838,12.857298677648801 -8/22/1992,8,14.7,0.0,3.167932,0.301197659416465,0.0,58.64411379974171,1.5824838079644972,12.686157258876504 -8/23/1992,8,19.1,0.0,3.45182,0.2939077191817641,0.0,56.73242313115899,1.4558851033273372,12.5115583040972 -8/24/1992,8,11.9,14.3,2.987276,0.3164209689320914,0.0,68.44673392416273,2.3246180356152975,12.334121393181622 -8/25/1992,8,13.6,0.5,3.0969599999999997,0.30983926570238174,0.0,66.89132839992163,2.1921956120135535,12.203669867098755 -8/26/1992,8,14.1,0.0,3.12922,0.30188872389872323,0.0,64.91458193986306,2.0168199630524692,12.069206250357459 -8/27/1992,8,15.3,0.0,3.206644,0.2942374934503068,0.0,62.948787675154676,1.8554743660082718,11.928663123502933 -8/28/1992,8,16.4,0.0,3.277616,0.2868683640884941,0.0,61.00033216788591,1.70703641672761,11.782863579333288 -8/29/1992,8,15.1,0.0,3.19374,0.2797653676733421,0.0,59.160505925012515,1.570473503389401,11.632558128583003 -8/30/1992,8,14.3,0.0,3.142124,0.2729136815171637,0.0,57.40500828105063,1.444835623118249,11.478430641180813 -8/31/1992,8,13.2,0.0,3.0711519999999997,0.26629953938832585,0.0,55.74007763611375,1.3292487732687892,11.32110380951311 -9/1/1992,9,15.7,0.0,2.47298,0.2599101495819443,0.0,54.43831073468249,1.2229088714072862,11.161144171986287 -9/2/1992,9,19.1,0.0,2.6316240000000004,0.2537336194931796,0.0,53.08538633153915,1.1250761616947034,10.999066732116924 -9/3/1992,9,16.0,0.0,2.486978,0.24775888617396025,0.0,51.83860015788688,1.035070068759127,10.835339205559322 -9/4/1992,9,13.8,2.4,2.384326,0.24598851279195413,0.0,52.93758795900599,1.08602647647441,10.67038592488609 -9/5/1992,9,16.8,7.2,2.524306,0.2528468737311275,0.0,58.45404657504516,1.4207094375628582,10.51127953021209 -9/6/1992,9,13.4,16.4,2.3656620000000004,0.28301687476790904,0.0,72.33602247496904,2.5191695512729764,10.37208941148599 -9/7/1992,9,11.2,10.4,2.26301,0.3133885454612221,0.0,79.9218607647798,3.585880781494125,10.290606100819918 -9/8/1992,9,10.7,1.1,2.23968,0.30933910169580175,0.0,79.16186530170515,3.468578044607909,10.264088017878226 -9/9/1992,9,17.6,0.0,2.561634,0.3003774572261994,0.0,77.24682397900925,3.191091801039276,10.232235159751056 -9/10/1992,9,18.1,0.0,2.5849640000000003,0.291817034640844,0.0,75.36109105710845,2.935804456956134,10.187145046608 -9/11/1992,9,19.1,0.0,2.6316240000000004,0.28363205038246225,0.0,73.48818468358809,2.7009401003996434,10.130192368523648 -9/12/1992,9,11.4,0.0,2.272342,0.2757986572944933,0.0,71.91116807616271,2.4848648923676717,10.062635526173159 -9/13/1992,9,11.0,0.0,2.2536780000000003,0.26829479223470937,0.0,70.3806683363615,2.286075700978258,9.98562606026808 -9/14/1992,9,17.2,0.0,2.5429700000000004,0.2611000358292326,0.0,68.69046219641139,2.1031896448999974,9.900217324111631 -9/15/1992,9,12.2,1.9,2.30967,0.26035104763134587,0.0,68.88700209900236,2.140119947795264,9.807372459874399 -9/16/1992,9,7.6,20.0,2.095034,0.31866386423444476,0.0,85.34967475098149,4.1433081357703765,9.718231008066674 -9/17/1992,9,4.6,0.3,1.955054,0.3105949644394,0.0,84.01989065371264,3.8658109515174277,9.731031794693859 -9/18/1992,9,5.9,2.7,2.015712,0.31533372252393177,0.0,84.6523857771215,4.02465627988049,9.729701706375854 -9/19/1992,9,5.4,0.2,1.992382,0.3068660641123179,0.0,83.22431048467385,3.737975146249023,9.736340486242362 -9/20/1992,9,6.6,0.0,2.0483740000000004,0.29773836271307236,0.0,81.6143896822871,3.4389371345491013,9.728512433829966 -9/21/1992,9,5.3,0.0,1.987716,0.28903244575117165,0.0,80.08236372892307,3.1638221637851736,9.705889041880821 -9/22/1992,9,6.5,0.0,2.043708,0.2807207391051201,0.0,78.53675066431158,2.9107163906823597,9.669962369232463 -9/23/1992,9,8.3,0.7,2.1276960000000003,0.2758846496660001,0.0,77.55511268001986,2.7814223612787172,9.622098941381932 -9/24/1992,9,7.5,0.1,2.0903680000000002,0.26857273432132023,0.0,76.1097381027024,2.5732724236318556,9.568728080618229 -9/25/1992,9,9.4,0.0,2.1790220000000002,0.2611426616959883,0.0,74.54353927618406,2.367410629741307,9.506017140187456 -9/26/1992,9,10.9,1.0,2.249012,0.2579520685506237,0.0,73.82942603266657,2.308890732440276,9.434267328870773 -9/27/1992,9,11.9,1.1,2.295672,0.25516812262568184,0.0,73.18807998422359,2.2649197415791464,9.361026518915372 -9/28/1992,9,9.2,1.0,2.16969,0.2520132973199473,0.0,72.56310443177918,2.209075260254229,9.287051975616023 -9/29/1992,9,11.8,2.6,2.2910060000000003,0.2547879272829964,0.0,73.27374448584374,2.351754443355603,9.211764699116415 -9/30/1992,9,14.9,0.0,2.435652,0.247810765182652,0.0,71.58832242233977,2.163614087887155,9.145117127301868 -10/1/1992,10,14.5,0.0,1.0880319999999999,0.2411236586086892,0.0,70.85274412767717,1.9905249608561826,9.070395489150187 -10/2/1992,10,14.8,0.0,1.09384,0.23470876546783045,0.0,70.12083775656924,1.831282963987688,8.98851382740999 -10/3/1992,10,13.2,0.0,1.0628639999999998,0.22854956378728375,0.0,69.41700440024383,1.684780326868673,8.900307699061177 -10/4/1992,10,12.6,0.0,1.051248,0.2226307482500431,0.0,68.72785068372907,1.549997900719179,8.806540561423386 -10/5/1992,10,9.7,0.0,0.995104,0.2169381349644669,0.0,68.08197893826886,1.425998068661645,8.707909645230878 -10/6/1992,10,9.6,0.0,0.9931679999999999,0.21145857381024827,0.0,67.4434215404205,1.3119182231687132,8.605051355759343 -10/7/1992,10,9.8,0.0,0.99704,0.20617986775550834,0.0,66.80838717444958,1.2069647653152162,8.498546239802593 -10/8/1992,10,10.1,0.0,1.002848,0.201090698588146,0.0,66.17566777260689,1.110407584089999,8.388923553272301 -10/9/1992,10,10.2,0.0,1.004784,0.19618055854911107,0.0,65.54773074203524,1.021574977362799,8.276665461411355 -10/10/1992,10,9.7,0.0,0.995104,0.1914396873962386,0.0,64.9317442555651,0.9398489791737751,8.162210901051267 -10/11/1992,10,8.7,0.0,0.975744,0.1868590144649748,0.0,64.33341806926893,0.864661060839873,8.04595913198893 -10/12/1992,10,8.2,0.0,0.9660639999999999,0.18243010532700338,0.0,63.74648635528583,0.7954881759726832,7.928273002391144 -10/13/1992,10,7.7,0.0,0.956384,0.17814511267968516,0.0,63.170736807581484,0.7318491218948685,7.809481951141955 -10/14/1992,10,5.0,0.0,0.9041119999999999,0.17399673112857555,0.0,62.631371228239,0.6733011921432791,7.689884768213859 -10/15/1992,10,5.6,0.0,0.9157279999999999,0.16997815555228943,0.0,62.08974028752606,0.6194370967718168,7.569752132456745 -10/16/1992,10,5.5,0.0,0.9137919999999999,0.16608304276382618,0.0,61.55392852100591,0.5698821290300714,7.449328944646202 -10/17/1992,10,6.6,0.1,0.9350879999999999,0.16255583261181103,0.0,61.10201602147235,0.5326367722571794,7.328836472204782 -10/18/1992,10,5.0,0.0,0.9041119999999999,0.15887860654176908,0.0,60.580313633057905,0.49002583047660514,7.208891581373545 -10/19/1992,10,5.4,0.0,0.9118559999999999,0.1553090137465524,0.0,60.058635264296115,0.45082376403847674,7.089215041269904 -10/20/1992,10,3.9,0.0,0.882816,0.15184217446039056,0.0,59.55792014342082,0.41475786291539857,6.96997192864643 -10/21/1992,10,4.0,0.0,0.8847519999999999,0.14847352468085045,0.0,59.06029063201529,0.3815772338821667,6.851310383219272 -10/22/1992,10,6.9,0.0,0.940896,0.1451987924001277,0.0,58.5355046162017,0.35105105517159335,6.733363037248995 -10/23/1992,10,8.8,0.0,0.97768,0.14201397570798788,0.0,57.9950476122054,0.3229669707578659,6.616248329262595 -10/24/1992,10,6.7,0.0,0.937024,0.1389153226172218,0.0,57.48184757921098,0.2971296130972366,6.500071711215236 -10/25/1992,10,8.2,0.0,0.9660639999999999,0.1358993124743996,0.0,56.957424653535625,0.27335924404945766,6.384926757645793 -10/26/1992,10,4.7,0.0,0.8983039999999999,0.13296263882967202,0.0,56.474233772470654,0.25149050452550104,6.27089618469535 -10/27/1992,10,3.1,2.8,0.867328,0.13582770108852338,0.0,58.62081213693538,0.42222151213230047,6.158052786227718 -10/28/1992,10,1.3,0.3,0.83248,0.13344302420539333,0.0,58.437628547179,0.41076560277325885,6.056002806109778 -10/29/1992,10,1.5,0.0,0.836352,0.13044555123906684,0.0,57.97607006657942,0.37790435455139815,5.955421030126246 -10/30/1992,10,2.5,2.3,0.855712,0.13253662082003373,0.0,59.64081381131772,0.5144154758335967,5.855207827251291 -10/31/1992,10,1.2,0.9,0.830544,0.13156643229295015,0.0,60.00328758655245,0.5429981134330415,5.763824444497945 -11/1/1992,11,1.9,0.0,0.32634,0.1285007051563447,0.0,59.81836480941585,0.4995582643583981,5.675697861279637 -11/2/1992,11,5.6,0.0,0.350982,0.12553104444173108,0.0,59.620091418939516,0.45959360320972625,5.587161817271965 -11/3/1992,11,5.3,0.0,0.348984,0.1226527486703287,0.0,59.42360017346074,0.4228261149529482,5.498398261087012 -11/4/1992,11,3.9,0.0,0.33966,0.11986143280495978,0.0,59.232988972828785,0.3890000257567124,5.40957160161292 -11/5/1992,11,6.5,0.0,0.356976,0.1171530041282552,0.0,59.03330292625626,0.3578800236961754,5.320830170868497 -11/6/1992,11,6.0,0.0,0.353646,0.11452364002673317,0.0,58.8361465238891,0.32924962180048134,5.232307568635936 -11/7/1992,11,10.6,0.0,0.384282,0.11196976752875813,0.0,58.62262615314122,0.3029096520564428,5.144123898353242 -11/8/1992,11,5.9,0.0,0.35298,0.1094880444565378,0.0,58.427210017722054,0.27867687989192735,5.056386902988999 -11/9/1992,11,6.1,0.0,0.354312,0.1070753420634935,0.0,58.23171033280564,0.25638272950057317,4.969193008923815 -11/10/1992,11,2.8,0.2,0.332334,0.10516823276815387,0.0,58.2343009562286,0.2505222354582171,4.882628285220368 -11/11/1992,11,3.0,0.1,0.333666,0.10308422516433213,0.0,58.14347521074314,0.23780628461848974,4.797501831288872 -11/12/1992,11,0.9,0.7,0.31968,0.1023650868128618,0.0,58.61684806853282,0.26987482116604744,4.713442108894019 -11/13/1992,11,-0.4,0.6,0.311022,0.10010188521967171,0.6,58.44467761504362,0.24828483547276364,4.63266700777444 -11/14/1992,11,-1.3,0.0,0.305028,0.09790121964690007,0.6,58.27632117795266,0.22842204863494256,4.5524279093925895 -11/15/1992,11,-2.8,3.9,0.295038,0.0957604576150541,4.5,58.11394768425448,0.21014828474414715,4.472800453636484 -11/16/1992,11,-1.5,0.2,0.303696,0.09367712983495771,4.7,57.94727497242222,0.19333642196461537,4.3938518588009625 -11/17/1992,11,0.4,0.3,0.31635,0.09599367241433142,3.0,59.62933036090788,0.3226946519955978,4.315641642723174 -11/18/1992,11,-1.8,0.3,0.301698,0.09381564324444833,3.3,59.45943660596194,0.29687907983595,4.245463542468491 -11/19/1992,11,-2.2,2.1,0.299034,0.09170182711569058,5.4,59.291522797613396,0.273128753449074,4.175398225610918 -11/20/1992,11,-3.2,1.4,0.292374,0.08964928757061752,6.800000000000001,59.12781234632971,0.25127845317314806,4.105546698771153 -11/21/1992,11,-6.0,14.2,0.273726,0.08765527905666663,21.0,58.97496675597829,0.2311761769192962,4.035999687454387 -11/22/1992,11,-5.9,0.9,0.274392,0.08571723253399785,21.9,58.82214534623132,0.2126820827657525,3.966838502551264 -11/23/1992,11,-6.0,0.3,0.273726,0.0838327422171053,22.2,58.67008990608549,0.1956675161444923,3.8981358366385264 -11/24/1992,11,-4.5,0.0,0.283716,0.0819995533598476,22.2,58.51289240653128,0.18001411485293292,3.8299564957129806 -11/25/1992,11,-0.5,0.0,0.310356,0.0802155510007683,22.2,58.341395312984,0.1656129856646983,3.7623580715413674 -11/26/1992,11,-1.1,0.0,0.30636,0.07847874959222118,22.2,58.17260251037671,0.15236394681152243,3.6953915593937747 -11/27/1992,11,-1.9,2.0,0.301032,0.07678728344292753,24.2,58.0072250915562,0.14017483106660064,3.6291019255464754 -11/28/1992,11,-4.7,0.2,0.282384,0.0751393979092157,24.4,57.85253331470991,0.12896084458127258,3.563528628588876 -11/29/1992,11,-2.2,0.0,0.299034,0.07353344127536636,24.4,57.689157410968,0.11864397701477077,3.4987060982461617 -11/30/1992,11,-4.0,0.2,0.287046,0.07196785726824723,24.599999999999998,57.5327739764776,0.10915245885358911,3.434664175131977 -12/1/1992,12,-7.9,0.0,0.13685,0.0704411781557994,24.599999999999998,57.458419834267,0.10042026214530198,3.371428514572017 -12/2/1992,12,-7.9,0.0,0.13685,0.06895201838296718,24.599999999999998,57.3841617857797,0.09238664117367781,3.3090209573878417 -12/3/1992,12,-7.5,0.0,0.138138,0.06749906870236888,24.599999999999998,57.309301710789015,0.08499570987978358,3.247459870298769 -12/4/1992,12,-4.6,0.0,0.147476,0.06608109076041768,24.599999999999998,57.22948542427376,0.0781960530894009,3.186760458386783 -12/5/1992,12,-3.7,0.0,0.150374,0.06469691210273781,24.599999999999998,57.14821404226234,0.07194036884224883,3.1269350518735175 -12/6/1992,12,-4.5,0.0,0.147798,0.06334542156560925,24.599999999999998,57.068448325584484,0.06618513933486893,3.0679933692781596 -12/7/1992,12,-4.9,0.0,0.14651,0.06202556502282919,24.599999999999998,56.98948809927245,0.06089032818807942,3.00994275885934 -12/8/1992,12,2.7,0.1,0.17098200000000002,0.08491578557423218,13.124999999999996,67.66648493973565,0.8620005724133677,2.9527884200915575 -12/9/1992,12,0.3,6.8,0.163254,0.10778175254634836,11.849999999999996,74.7953652508046,1.634836631338016,2.9368326803103946 -12/10/1992,12,-0.3,1.3,0.161322,0.10431824819035099,13.149999999999997,74.68141551132976,1.5040497008309748,2.9598378582710874 -12/11/1992,12,1.0,0.2,0.16550800000000002,0.11857621890559006,8.899999999999997,78.42976791638392,1.9686449060881928,2.975843586147214 -12/12/1992,12,-0.4,4.0,0.161,0.1146297786026077,12.899999999999997,78.31051970942823,1.8111533136011375,3.0147589597286792 -12/13/1992,12,-2.8,1.8,0.153272,0.11088826037967464,14.699999999999998,78.19716802393476,1.6662610485130465,3.0450214462141627 -12/14/1992,12,1.5,2.8,0.16711800000000002,0.14764746957577954,8.324999999999998,85.90508937145768,2.8766262727156304,3.0674340697155316 -12/15/1992,12,0.9,24.6,0.165186,0.29815198958831907,4.499999999999997,109.00412036500535,7.838455184972634,3.1499167019570025 -12/16/1992,12,-1.3,19.3,0.158102,0.4298882621197473,23.799999999999997,108.84601836500535,7.062956010926191,3.478841127166494 -12/17/1992,12,-0.7,1.5,0.160034,0.3765441945348726,25.299999999999997,108.68598436500535,6.388271729505785,3.7624121051694734 -12/18/1992,12,-1.9,9.1,0.15617,0.3300840276062177,34.4,108.52981436500535,5.801296404670032,4.006577449541374 -12/19/1992,12,-2.2,4.4,0.155204,0.28961387081107043,38.8,108.37461036500535,5.290627872062928,4.216510720784048 -12/20/1992,12,0.7,4.1,0.164542,0.32128493958921545,35.824999999999996,113.05410434747881,7.077310266221294,4.396711899971513 -12/21/1992,12,-7.0,16.7,0.139748,0.3956411747651034,52.52499999999999,112.91435634747882,6.400759931612526,4.662643175283147 -12/22/1992,12,-16.4,1.2,0.10948000000000001,0.3486913969628754,53.724999999999994,112.80487634747881,5.812161140502898,4.88942830835811 -12/23/1992,12,-14.8,0.1,0.114632,0.30775541877659235,53.824999999999996,112.69024434747881,5.3000801922375205,5.082247799216093 -12/24/1992,12,-14.8,0.1,0.114632,0.27205323968614825,53.925,112.57561234747881,4.854569767246643,5.245606852843647 -12/25/1992,12,-16.5,0.0,0.10915799999999999,0.24165458965898945,53.925,112.46645434747882,4.4662041858669115,5.383423204149106 -12/26/1992,12,-15.6,0.0,0.11205599999999999,0.23324853451711614,53.925,112.35439834747882,4.108907850997558,5.49906494935947 -12/27/1992,12,-11.0,0.0,0.126868,0.22529643754597578,53.925,112.22753034747882,3.780195222917753,5.594529042922159 -12/28/1992,12,-1.4,3.0,0.15778,0.21776635261672206,56.925,112.06975034747882,3.477779605084333,5.671648223209604 -12/29/1992,12,0.1,0.7,0.16261,0.22214364191002678,56.5,112.6483123464886,3.583385237667808,5.732104238999628 -12/30/1992,12,-1.9,0.5,0.15617,0.214834060881692,57.0,112.49214234648859,3.2967144186543833,5.7966314161030255 -12/31/1992,12,-0.6,1.2,0.160356,0.20790000812913467,58.2,112.3317863464886,3.0329772651620326,5.845534508713684 -1/1/1993,1,-1.4,2.2,0.151984,0.20131562615442233,60.400000000000006,112.1798023464886,2.79033908394907,5.8802726817975115 -1/2/1993,1,-0.2,7.6,0.155848,0.19505704236417465,68.0,112.0239543464886,2.5671119572331444,5.902184182359015 -1/3/1993,1,0.2,0.6,0.157136,0.20392931310313106,67.15,112.82258164142105,2.855979705722041,5.912496096573492 -1/4/1993,1,1.1,3.3,0.160034,0.28048779744474295,62.47500000000001,117.87348582914598,5.391563141539349,5.937045159928125 -1/5/1993,1,0.0,2.4,0.156492,0.3235202594387357,62.47500000000001,119.19500529276397,5.856148469521256,6.08788241380653 -1/6/1993,1,-2.2,0.1,0.14940799999999999,0.3346365423106968,62.57500000000001,119.04559729276397,5.338349168483492,6.258932189006463 -1/7/1993,1,-1.8,0.2,0.150696,0.2980667917946039,62.77500000000001,118.89490129276398,4.887863776580638,6.4006710036505075 -1/8/1993,1,-1.1,0.0,0.15295,0.26611244884591717,62.77500000000001,118.74195129276397,4.495941485625155,6.517050772406529 -1/9/1993,1,-3.7,0.0,0.144578,0.2563181216280474,62.77500000000001,118.59737329276398,4.136266166775142,6.611506831239657 -1/10/1993,1,-7.3,0.0,0.13298600000000002,0.24788274626206636,62.77500000000001,118.46438729276397,3.8053648734331307,6.686090002953621 -1/11/1993,1,-13.2,0.1,0.11398799999999999,0.2398807994380785,62.875000000000014,118.35039929276397,3.50093568355848,6.742636446566205 -1/12/1993,1,-17.5,0.3,0.10014200000000001,0.23228243490247016,63.17500000000001,118.25025729276396,3.2208608288738017,6.782830501812806 -1/13/1993,1,-11.8,0.0,0.118496,0.22506009754132172,63.17500000000001,118.13176129276397,2.9631919625638976,6.80821693322024 -1/14/1993,1,-9.3,3.9,0.12654600000000002,0.21818834202044415,67.07500000000002,118.00521529276396,2.726136605558786,6.820212192684029 -1/15/1993,1,-8.0,1.2,0.13073200000000001,0.21164366589558825,68.27500000000002,117.87448329276397,2.5080456771140835,6.8201147791082875 -1/16/1993,1,-14.4,0.1,0.110124,0.20540435603598522,68.37500000000001,117.76435929276397,2.3074020229449568,6.809114767381827 -1/17/1993,1,-15.6,0.0,0.10626,0.19945034729690952,68.37500000000001,117.65809929276396,2.12280986110936,6.788302573181437 -1/18/1993,1,-12.0,0.2,0.117852,0.19376309246208384,68.57500000000002,117.54024729276396,1.9529850722206112,6.758677014773276 -1/19/1993,1,-11.4,0.0,0.119784,0.1883254425550657,68.57500000000002,117.42046329276397,1.7967462664429623,6.721152728088842 -1/20/1993,1,-12.0,0.0,0.117852,0.18312153669081002,68.57500000000002,117.30261129276397,1.6530065651275252,6.676566986849213 -1/21/1993,1,-14.2,0.0,0.11076799999999999,0.17813670070489182,68.57500000000002,117.19184329276398,1.5207660399173233,6.625685975368605 -1/22/1993,1,-14.8,0.0,0.10883599999999999,0.1733573538588601,68.57500000000002,117.08300729276398,1.3991047567239374,6.569210557857099 -1/23/1993,1,-11.0,0.0,0.121072,0.16877092297630375,68.57500000000002,116.96193529276398,1.2871763761860224,6.507781584536154 -1/24/1993,1,-10.1,0.0,0.12397000000000001,0.16436576341582887,68.57500000000002,116.83796529276398,1.1842022660911407,6.441984771654732 -1/25/1993,1,-7.3,0.0,0.13298600000000002,0.16013108633463938,68.57500000000002,116.70497929276398,1.0894660848038493,6.3723551895261945 -1/26/1993,1,-6.3,2.6,0.136206,0.1560568917401035,71.17500000000001,116.56877329276398,1.0023087980195415,6.2993813899758635 -1/27/1993,1,-8.2,0.6,0.130088,0.1521339068668858,71.775,116.43868529276398,0.9221240941779781,6.223509202077323 -1/28/1993,1,-8.4,0.3,0.129444,0.1483535294542057,72.075,116.30924129276397,0.8483541666437399,6.1451452227446755 -1/29/1993,1,-10.8,1.0,0.121716,0.14470777553180658,73.075,116.18752529276397,0.7804858333122406,6.064660026621969 -1/30/1993,1,-13.1,0.0,0.11431,0.1411892313545207,73.075,116.07321529276396,0.7180469666472614,5.982391117755141 -1/31/1993,1,-14.1,0.0,0.11109,0.13779100915411246,73.075,115.96212529276396,0.6606032093154806,5.898645643732402 -2/1/1993,2,-14.6,0.0,0.12780599999999998,0.1345067064035778,73.075,115.83431929276395,0.6077549525702421,5.813702891323528 -2/2/1993,2,-12.2,0.1,0.136398,0.13133036831345007,73.175,115.69792129276395,0.5591345563646227,5.72781658112557 -2/3/1993,2,-12.6,0.4,0.134966,0.12825645330208937,73.575,115.56295529276395,0.5144037918554529,5.64121697732129 -2/4/1993,2,-13.6,0.0,0.131386,0.12527980120256324,73.575,115.43156929276394,0.47325148850701665,5.554112827367637 -2/5/1993,2,-9.0,0.0,0.147854,0.12239560398770635,73.575,115.28371529276394,0.4353913694264553,5.466693145245634 -2/6/1993,2,-4.4,0.0,0.16432199999999997,0.11959937881241106,73.575,115.11939329276395,0.40056005987233884,5.3791288508120445 -2/7/1993,2,-0.1,0.0,0.179716,0.11688694318826497,73.575,114.93967729276395,0.36851525508255173,5.2915742767894205 -2/8/1993,2,-2.1,0.0,0.172556,0.11425439212043362,73.575,114.76712129276395,0.33903403467594756,5.20416855400776 -2/9/1993,2,0.4,0.0,0.181506,0.13009849360984313,71.875,115.67226807411198,0.9252585305538363,5.117036884661402 -2/10/1993,2,-2.1,0.0,0.172556,0.1267563169132032,71.875,115.49971207411198,0.8512378481095294,5.060959073495865 -2/11/1993,2,-0.5,2.1,0.178284,0.12354020029645149,73.975,115.32142807411198,0.7831388202607671,5.002301784431424 -2/12/1993,2,-3.5,1.2,0.16754399999999997,0.12044288523431385,75.175,115.15388407411197,0.7204877146399057,4.9414126897558335 -2/13/1993,2,-5.4,1.3,0.160742,0.11745763735791565,76.475,114.99314207411197,0.6628486974687132,4.878608821692712 -2/14/1993,2,-4.3,0.0,0.16468,0.11457820565278234,76.475,114.82846207411197,0.6098208016712161,4.814179080132293 -2/15/1993,2,-0.1,0.3,0.179716,0.11179878489838974,76.77499999999999,114.64874607411197,0.5610351375375188,4.748386538613208 -2/16/1993,2,-0.1,0.2,0.179716,0.10911398109039193,76.975,114.46903007411197,0.5161523265345174,4.68147056471782 -2/17/1993,2,-2.2,1.7,0.172198,0.10651877960735646,78.675,114.29683207411198,0.474860140411756,4.613648769750189 -2/18/1993,2,-1.9,5.3,0.17327199999999998,0.10400851590287993,83.975,114.12356007411198,0.43687132917881555,4.545118801375773 -2/19/1993,2,0.2,5.7,0.18079,0.17154386112496656,83.125,118.16060298732907,2.7340887096274193,4.476059991807198 -2/20/1993,2,-6.5,6.9,0.156804,0.1659257129347653,90.025,118.00379898732908,2.515361612857226,4.523243227452426 -2/21/1993,2,-7.8,2.4,0.15214999999999998,0.1605949093857842,92.42500000000001,117.85164898732907,2.314132683828648,4.558546443546239 -2/22/1993,2,-7.9,0.2,0.15179199999999998,0.15553170505100558,92.62500000000001,117.69985698732907,2.1290020691223557,4.583082148866746 -2/23/1993,2,-9.4,0.0,0.146422,0.1507178692946876,92.62500000000001,117.55343498732907,1.958681903592567,4.597870609345529 -2/24/1993,2,-9.5,0.0,0.146064,0.1461365663859198,92.62500000000001,117.40737098732907,1.8019873513051616,4.603847292338247 -2/25/1993,2,-7.1,0.0,0.154656,0.14177224517715725,92.62500000000001,117.25271498732907,1.6578283632007487,4.60186971405674 -2/26/1993,2,-6.5,0.0,0.156804,0.1376105375830535,92.62500000000001,117.09591098732908,1.5252020941446887,4.592723737935642 -2/27/1993,2,-8.1,0.0,0.151076,0.13363816515607668,92.62500000000001,116.94483498732907,1.4031859266131135,4.577129367884163 -2/28/1993,2,-8.9,0.0,0.148212,0.12984285311166466,92.62500000000001,116.79662298732907,1.2909310524840645,4.555746076857136 -3/1/1993,3,-6.9,0.0,0.5224500000000001,0.12621325120744412,92.62500000000001,116.27417298732907,1.1876565682853393,4.529177707944196 -3/2/1993,3,-5.5,0.0,0.54051,0.12273886092866697,92.62500000000001,115.73366298732907,1.0926440428225122,4.49797698219958 -3/3/1993,3,-2.5,0.0,0.57921,0.11940996847583563,92.62500000000001,115.15445298732907,1.005232519396711,4.4626496446967145 -3/4/1993,3,-0.9,0.0,0.59985,0.11621758309080156,92.62500000000001,114.55460298732906,0.9248139178449742,4.423658277772616 -3/5/1993,3,2.8,0.0,0.64758,0.24139650077063945,80.72500000000002,121.53225230479805,5.125599486948373,4.381425808109412 -3/6/1993,3,5.3,0.0,0.67983,0.5237961712207969,58.200000000000024,134.07970547352696,14.000488384916181,4.550077266294643 -3/7/1993,3,4.8,0.0,0.6733800000000001,1.2506540558196866,37.800000000000026,143.19866257608447,23.031587792319545,5.159100140214559 -3/8/1993,3,3.7,1.9,0.65919,1.961576223591739,22.075000000000024,149.46722450756124,30.978229447841233,6.207497527026245 -3/9/1993,3,3.4,2.3,0.65532,2.611185004245567,7.625000000000025,154.31885243131816,38.43761169586497,7.632259048877782 -3/10/1993,3,2.0,3.8,0.63726,3.1249352996690534,0.0,156.8399870793229,41.950827527397834,9.401494452693475 -3/11/1993,3,3.0,6.6,0.6501600000000001,3.331307804133938,0.0,157.8290033960305,41.70154363212853,11.311005940009498 -3/12/1993,3,1.2,4.6,0.62694,3.3059596960470534,0.0,158.2930645431719,40.0328418128104,13.169863002815733 -3/13/1993,3,4.0,1.6,0.66306,3.1453355625070345,0.0,158.00103308036643,36.301043839950516,14.908107833399939 -3/14/1993,3,3.9,0.5,0.6617700000000001,2.8662861117311347,0.0,157.45687247582273,32.20779874530065,16.424997868729466 -3/15/1993,3,4.5,0.5,0.66951,2.5803353293159317,0.0,156.90805954828426,28.643587835950033,17.70688784861991 -3/16/1993,3,4.6,7.5,0.6708000000000001,2.488572158102074,0.0,158.09420841103835,30.80647255452241,18.784929483445012 -3/17/1993,3,5.1,2.6,0.67725,2.566904287667411,0.0,158.02577054976467,29.03631898370818,19.949554521502233 -3/18/1993,3,2.8,11.4,0.64758,2.655167879496502,0.0,160.05647664205944,34.22681142353136,21.002379380257597 -3/19/1993,3,4.0,0.0,0.66306,2.814338796607317,0.0,159.39341664205944,30.020825938472285,22.293672363829014 -3/20/1993,3,1.4,0.0,0.62952,2.5153666581872622,0.0,158.76389664205942,26.36161856647089,23.34884021347605 -3/21/1993,3,-1.8,1.1,0.58824,2.2539230596590363,1.1,158.1756566420594,23.178108152829672,24.199944337530074 -3/22/1993,3,-3.0,0.6,0.57276,2.0251560475987573,1.7000000000000002,157.60289664205942,20.408454092961815,24.874850858420956 -3/23/1993,3,-1.5,0.0,0.59211,1.8248438873924067,1.7000000000000002,157.01078664205943,17.998855060876778,25.397776545900626 -3/24/1993,3,3.1,0.0,0.65145,1.6877449571654892,0.0,156.77827625298482,17.18356429203737,25.789763768026454 -3/25/1993,3,3.3,0.0,0.65403,1.5941371767694,0.0,156.12424625298482,15.193200934072514,26.133146707267795 -3/26/1993,3,2.4,11.0,0.64242,1.692799786018924,0.0,158.3021823016687,21.641228763959226,26.370143819826065 -3/27/1993,3,2.4,1.3,0.64242,1.9791587910365114,0.0,157.9610878194466,20.07004350686666,26.924802381627504 -3/28/1993,3,3.9,0.5,0.6617700000000001,1.850396384796791,0.0,157.41715436153086,18.08660130888974,27.389808509338287 -3/29/1993,3,1.5,3.4,0.63081,1.772454144575824,0.0,157.60861313228438,18.556574367980563,27.74634240459601 -3/30/1993,3,0.4,4.9,0.61662,1.8501129666123117,0.0,158.16640074192009,20.11331209050738,28.119244274903117 -3/31/1993,3,0.9,12.8,0.62307,2.1600773601455376,0.0,160.53003706927618,27.55537519138533,28.562524993930424 -4/1/1993,4,-0.1,2.0,1.453624,2.4481499171368455,2.0,159.07641306927619,24.216676416505237,29.369043253621083 -4/2/1993,4,1.1,0.0,1.493632,2.2531681827829564,0.0,158.02864162596188,22.866147925673868,29.992496209373922 -4/3/1993,4,3.1,0.0,1.560312,2.114637930773184,0.0,156.46832962596187,20.137048695336265,30.535953681470136 -4/4/1993,4,5.6,0.0,1.643662,1.9148761465672406,0.0,154.82466762596187,17.76273236494255,30.932087042607545 -4/5/1993,4,7.6,0.0,1.710342,1.7395805713721786,0.0,153.11432562596187,15.697077157500019,31.20158192000252 -4/6/1993,4,7.1,0.0,1.693672,1.5856006544753007,0.0,151.42065362596188,13.899957127025017,31.36240413947747 -4/7/1993,4,7.3,0.0,1.70034,1.4501948156273872,0.0,149.72031362596186,12.336462700511765,31.43015391303917 -4/8/1993,4,7.2,0.0,1.697006,1.3309772909050248,0.0,148.02330762596188,10.976222549445234,31.418373969803977 -4/9/1993,4,11.2,1.8,1.8303660000000002,1.2613006429903844,0.0,146.8119831386286,10.973772105350644,31.33881761788016 -4/10/1993,4,6.1,11.8,1.6603320000000001,1.4519370098529778,0.0,149.35787263129552,17.38446023898813,31.26072987079009 -4/11/1993,4,5.3,5.7,1.6336600000000001,1.831439763233381,0.0,149.60479351996517,19.187399519250018,31.504738285323693 -4/12/1993,4,4.9,2.8,1.620324,1.9171514688691325,0.0,148.90096633521145,18.82004076650123,31.83401349557972 -4/13/1993,4,4.6,0.0,1.610322,1.838776807610607,0.0,147.29064433521145,16.61693546685607,32.138335263993184 -4/14/1993,4,8.8,0.0,1.75035,1.6748820956688695,0.0,145.54029433521146,14.700233856164779,32.32641533205613 -4/15/1993,4,11.8,0.0,1.8503700000000003,1.5307907708186046,0.0,143.68992433521146,13.032703454863357,32.41489871822324 -4/16/1993,4,10.9,0.7,1.820364,1.4168071018312183,0.0,142.14127198240885,12.010240358533714,32.418235916601944 -4/17/1993,4,6.5,3.5,1.673668,1.387819898142623,0.0,141.88000589793302,12.78000719640019,32.370383216196586 -4/18/1993,4,8.9,0.1,1.753684,1.3853847161207034,0.0,140.16693355657316,11.42149460222802,32.36197591169267 -4/19/1993,4,10.6,0.0,1.8103620000000002,1.2786969617009567,0.0,138.35657155657316,10.180200303938378,32.28581112357021 -4/20/1993,4,9.0,0.1,1.7570180000000002,1.1831797530476922,0.0,136.64357317017092,9.156254650828625,32.14910491629573 -4/21/1993,4,9.0,0.2,1.7570180000000002,1.103136602200322,0.0,134.9778247614363,8.318171954955524,31.963935550511245 -4/22/1993,4,9.8,0.0,1.7836900000000002,1.0316291945170912,0.0,133.1941347614363,7.480309600811306,31.740565437248794 -4/23/1993,4,8.6,11.5,1.7436820000000002,1.1392742233810496,0.0,137.06304374182224,12.638778372319884,31.479769608544384 -4/24/1993,4,8.2,2.7,1.7303460000000002,1.399612448181779,0.0,136.55422603020736,12.717708895533171,31.482113134989493 -4/25/1993,4,9.4,1.4,1.7703540000000002,1.3841880889522264,0.0,135.42392817484654,12.06785059447469,31.488356317066362 -4/26/1993,4,7.3,0.1,1.70034,1.3130050165740803,0.0,133.77035644399382,10.795761748045685,31.46198172044877 -4/27/1993,4,10.4,0.0,1.8036940000000001,1.2128130724951183,0.0,131.9666624439938,9.635812720799745,31.37253017344208 -4/28/1993,4,11.9,0.0,1.8537040000000002,1.1216277521731253,0.0,130.11295844399382,8.626657067095778,31.226870206013228 -4/29/1993,4,8.2,0.0,1.7303460000000002,1.0409669159109438,0.0,128.38261244399382,7.748691648373326,31.033665655247752 -4/30/1993,4,9.2,5.2,1.763686,1.0427377823959052,0.0,129.37729946187827,9.426488716200318,30.800426924561464 -5/1/1993,5,7.6,0.0,2.86271,1.0942756477404492,0.0,126.51458946187827,8.444545183094275,30.65574282188025 -5/2/1993,5,4.6,4.3,2.67881,1.0742522905618779,0.0,126.18510287399641,9.540930897173897,30.464855224597358 -5/3/1993,5,3.9,1.1,2.6359,1.1114007831342008,0.0,124.15324125533023,9.040071499207459,30.332604664964105 -5/4/1993,5,6.7,0.2,2.80754,1.0579175526159643,0.0,121.45890163553781,8.195161824102911,30.177956146625196 -5/5/1993,5,9.2,0.0,2.96079,0.9871399171121883,0.0,118.49811163553781,7.373290786969532,29.98415511489784 -5/6/1993,5,12.3,0.0,3.15082,0.9199751599273486,0.0,115.34729163553781,6.658262984663493,29.75313655194836 -5/7/1993,5,12.9,0.0,3.1876,0.8603185525357431,0.0,112.15969163553781,6.036188796657238,29.490986970142565 -5/8/1993,5,10.3,0.3,3.02822,0.810294919137636,0.0,109.32892435885219,5.597531529777416,29.202976670572575 -5/9/1993,5,9.3,11.7,2.96692,0.8807380587176246,0.0,114.29583652456675,8.879520265191797,28.898793713649994 -5/10/1993,5,7.6,2.0,2.86271,1.0362715949384589,0.0,112.71848566774571,8.68332348753791,28.764793852636583 -5/11/1993,5,8.3,0.7,2.90562,1.0043418362322056,0.0,110.27077780670052,8.040079295203173,28.623664149960746 -5/12/1993,5,10.8,0.0,3.0588699999999998,0.9447189309993952,0.0,107.21190780670052,7.23836898682676,28.45319483172169 -5/13/1993,5,6.4,1.0,2.7891500000000002,0.8887890063529513,0.0,105.11531984780508,6.848318977434712,28.246049384428595 -5/14/1993,5,5.8,4.4,2.75237,0.8841743735410673,0.0,105.49170548365443,7.492917925236553,28.023544345611757 -5/15/1993,5,6.4,9.7,2.7891500000000002,0.976898053446836,0.0,109.54212618114575,9.63325900285938,27.83771935496135 -5/16/1993,5,7.6,3.4,2.86271,1.08513249038415,0.0,108.97995211759743,9.723899396035966,27.762627918005094 -5/17/1993,5,9.2,0.8,2.96079,1.065332798546931,0.0,106.56357385360882,8.9588807385399,27.69357032944679 -5/18/1993,5,6.0,0.3,2.76463,1.000056464504513,0.0,104.0080178167445,8.128652279394029,27.587642959784848 -5/19/1993,5,5.8,5.8,2.75237,0.9810548879032321,0.0,105.44413249663255,8.97586065474512,27.442322714558852 -5/20/1993,5,10.6,0.0,3.04661,0.9937133816862023,0.0,102.41035075609457,8.052498769628253,27.342269293004932 -5/21/1993,5,15.3,0.0,3.3347200000000004,0.920561133281235,0.0,99.18521292557834,7.249173929576579,27.198048845626246 -5/22/1993,5,9.7,0.0,2.99144,0.8557980673446287,0.0,96.38318616805552,6.550281318731624,27.01654656519255 -5/23/1993,5,8.1,2.4,2.89336,0.815591422823637,0.0,95.5750782763189,6.51675876301834,26.803729699825276 -5/24/1993,5,9.8,1.4,2.99757,0.8014572225285461,0.0,93.94093924949503,6.241647449934514,26.593493043979688 -5/25/1993,5,12.4,0.0,3.15695,0.766268482051953,0.0,91.14023240122141,5.673733281443027,26.37370555559682 -5/26/1993,5,14.4,0.0,3.27955,0.7181744648889551,0.0,88.31750174514977,5.179647954855433,26.129918108557035 -5/27/1993,5,14.8,1.6,3.3040700000000003,0.6846592718904567,0.0,86.84984315297206,5.061694375503723,25.866302144128664 -5/28/1993,5,13.7,5.5,3.23664,0.6919638696766378,0.0,88.66442866942745,5.677931150034203,25.602060820021276 -5/29/1993,5,14.2,7.2,3.26729,0.7458701984136674,0.0,91.71209864291914,6.599843922983539,25.37391616112256 -5/30/1993,5,15.2,0.0,3.32859,0.7699817232200331,0.0,88.8291826506457,5.9853642129956794,25.196430034049285 -5/31/1993,5,15.1,0.0,3.32246,0.7191266094893329,0.0,86.04203177530843,5.450766865306241,24.991769644018085 -6/1/1993,6,13.0,0.0,3.741008,0.6738978103378657,0.0,83.00223642912198,4.985667172816429,24.764472594403035 -6/2/1993,6,13.0,0.0,3.741008,0.6335836018744462,0.0,80.0698345923174,4.581030440350294,24.518466501155796 -6/3/1993,6,13.6,0.0,3.787004,0.6115794140166719,0.0,77.20625178109402,4.21454800512227,24.257148693150192 -6/4/1993,6,12.9,0.0,3.733342,0.5959761873322408,0.0,74.48420680577121,3.8773841647124887,23.982733119543305 -6/5/1993,6,14.0,1.1,3.8176680000000003,0.5852654898539379,0.0,72.75512544280048,3.710884551539221,23.696947665388063 -6/6/1993,6,10.9,6.2,3.5800220000000005,0.5935835793664728,0.0,75.72895278061502,4.180417352444251,23.408552939657262 -6/7/1993,6,11.4,21.1,3.6183520000000002,0.664339305973794,0.0,91.37550519597022,6.711708366802247,23.149402748486327 -6/8/1993,6,13.8,0.0,3.802336,0.7350060089507853,0.0,88.09436086765947,6.082686279117954,23.022000111856713 -6/9/1993,6,15.1,0.6,3.901994,0.687499398373016,0.0,85.3318578779647,5.651706531520293,22.865694423575476 -6/10/1993,6,12.4,1.3,3.695012,0.6547315137275717,0.0,83.42047413691212,5.3942289972652455,22.69096586167998 -6/11/1993,6,13.9,4.7,3.8100020000000003,0.6484808703289691,0.0,84.31767981907934,5.737742019317131,22.506857994309645 -6/12/1993,6,16.3,0.0,3.9939860000000005,0.6473193263778199,0.0,81.13736408813321,5.235335556805905,22.343607935389308 -6/13/1993,6,9.7,4.6,3.48803,0.6274252531994011,0.0,82.32998350622628,5.5329474756223185,22.158502554521817 -6/14/1993,6,9.5,3.4,3.4726980000000003,0.6415615257928844,0.0,82.46795662280182,5.619151815583953,21.991979877212497 -6/15/1993,6,9.3,7.4,3.4573660000000004,0.6649235651630783,0.0,85.94736123801322,6.360133899164389,21.833097870447446 -6/16/1993,6,13.8,0.1,3.802336,0.682648639763229,0.0,82.94284604885705,5.7951030881691725,21.71444260799672 -6/17/1993,6,16.3,0.0,3.9939860000000005,0.6362105232145788,0.0,79.81438664835379,5.28523968670718,21.569908910245243 -6/18/1993,6,9.4,9.5,3.4650320000000003,0.6378619408544141,0.0,85.24280047186048,6.301483406384703,21.402772716375697 -6/19/1993,6,12.5,2.7,3.702678,0.683672090048101,0.0,84.47781832046307,6.210069702717251,21.28979143236742 -6/20/1993,6,18.8,2.9,4.185636000000001,0.6751587390754334,0.0,83.52931785873591,6.155509072081739,21.17449908885593 -6/21/1993,6,19.6,0.2,4.246964,0.6544409593996012,0.0,80.34497994186758,5.63299381939521,21.0587845606829 -6/22/1993,6,13.8,20.4,3.802336,0.7063802407957442,0.0,94.67594899596156,8.328179287240124,20.919258560439 -6/23/1993,6,13.6,6.7,3.787004,0.8620616982394519,0.0,96.45211253515464,9.026902893520038,20.917282353592228 -6/24/1993,6,12.4,1.7,3.695012,0.8819868968496833,0.0,94.37880222146919,8.50453717165846,20.950281851196383 -6/25/1993,6,14.5,3.6,3.855998,0.8547377057648389,0.0,93.72174045423503,8.462692857560276,20.95650307275538 -6/26/1993,6,19.4,0.0,4.231632,0.8270260795439026,0.0,89.97638285671086,7.606042786077439,20.960507654178286 -6/27/1993,6,12.7,9.1,3.71801,0.8166538124938048,0.0,94.06389970775905,8.713989346065363,20.921599640398593 -6/28/1993,6,13.3,2.1,3.764006,0.8599589299508423,0.0,92.34553546218358,8.299404011656549,20.938867114893892 -6/29/1993,6,13.6,0.0,3.787004,0.8140908447506401,0.0,89.04292981313804,7.463981490141197,20.93505997317884 -6/30/1993,6,15.9,4.3,3.9633220000000002,0.775240234355786,0.0,89.15566839851408,7.591666762809324,20.889557848222324 -7/1/1993,7,15.8,1.1,3.983616,0.765135182531327,0.0,86.68235864837506,7.067494793429796,20.851350029398343 -7/2/1993,7,16.7,4.2,4.056192,0.7409021419609957,0.0,86.77836796083326,7.175781563995619,20.787697768481866 -7/3/1993,7,16.0,6.4,3.999744,0.7604098744843445,0.0,88.70341261638593,7.683537948610779,20.73073289131201 -7/4/1993,7,14.5,5.3,3.8787840000000005,0.7938424815628644,0.0,89.7103673485305,7.971989383799977,20.700295130916306 -7/5/1993,7,16.5,1.5,4.040064,0.7932719559343782,0.0,87.48425175477932,7.482490426487324,20.68488869748798 -7/6/1993,7,18.1,0.0,4.169088,0.746128830352937,0.0,84.03983260113093,6.753266671043972,20.645315444862586 -7/7/1993,7,13.7,15.0,3.8142720000000003,0.7671919335637345,0.0,93.4105641788578,8.720905020706173,20.570072469517534 -7/8/1993,7,15.1,3.0,3.927168,0.8593753765335064,0.0,92.27905139416939,8.497860002498262,20.594716271162493 -7/9/1993,7,14.9,0.5,3.9110400000000003,0.8258881238687013,0.0,89.26267490316499,7.7446941608835,20.607714945864156 -7/10/1993,7,13.7,3.1,3.8142720000000003,0.7834206003017785,0.0,88.52772150006096,7.6009995052594155,20.58279535499105 -7/11/1993,7,15.2,0.2,3.935232,0.754441031259784,0.0,85.39852471613446,6.895575584457642,20.5511894231542 -7/12/1993,7,14.5,0.0,3.8787840000000005,0.6982571902555065,0.0,82.27034989988603,6.242650758478148,20.484944413913997 -7/13/1993,7,12.9,3.6,3.74976,0.66443928094653,0.0,82.36297199677941,6.26863939171434,20.387378063559623 -7/14/1993,7,17.5,0.4,4.120704,0.6486950606626992,0.0,79.49164265231698,5.763394721316642,20.293062471874148 -7/15/1993,7,19.3,0.0,4.265856,0.6059067574622463,0.0,76.28926376140903,5.257653407545479,20.175370958502498 -7/16/1993,7,18.5,0.0,4.201344,0.5646073485084053,0.0,73.26237320924723,4.817658464564566,20.03474620970972 -7/17/1993,7,16.6,1.8,4.048128,0.5372510671483617,0.0,72.0354180135174,4.658412765782889,19.874934208743753 -7/18/1993,7,17.6,2.7,4.128768,0.5325607982595673,0.0,71.60062811758377,4.611789166746894,19.710356162858023 -7/19/1993,7,18.8,0.1,4.225536,0.5185773104488363,0.0,68.83150274528762,4.25475134966907,19.546738497938208 -7/20/1993,7,20.1,0.0,4.330368,0.5048019631601243,0.0,66.01664074811976,3.9143712416955445,19.368541295462897 -7/21/1993,7,21.2,0.0,4.419072000000001,0.49157442690356534,0.0,63.26159033104472,3.6012215423599008,19.176889031638417 -7/22/1993,7,19.6,0.1,4.2900480000000005,0.4791289461448692,0.0,60.78969848877131,3.322023319413213,18.973412328123644 -7/23/1993,7,20.7,2.6,4.378752,0.4732096855231976,0.0,60.66523145396662,3.2669593524186995,18.76004524753183 -7/24/1993,7,18.7,0.3,4.217472,0.46185775875058294,0.0,58.52481339194324,3.0297970848846765,18.548192310202133 -7/25/1993,7,11.5,41.4,3.636864,0.5422538184013082,0.0,94.84617049317775,5.855981734548724,18.328718318242323 -7/26/1993,7,12.9,0.2,3.74976,0.5759271089303514,0.0,91.64139157205787,5.384305381027234,18.25494303860491 -7/27/1993,7,13.6,0.0,3.8062080000000003,0.536731828433856,0.0,88.34734871878845,4.927845681493694,18.159059446884175 -7/28/1993,7,14.8,0.0,3.9029760000000002,0.4996594672020936,0.0,85.09097340749312,4.530725742899514,18.042270542021175 -7/29/1993,7,16.2,0.0,4.015872,0.48320725887054117,0.0,81.86390326338228,4.168267683467553,17.90796141832573 -7/30/1993,7,17.6,0.0,4.128768,0.47020849954635635,0.0,78.67193929937295,3.8348062687901487,17.758215574132592 -7/31/1993,7,19.0,0.0,4.241664,0.45773648454039706,0.0,75.52055642340416,3.528021767286937,17.594791576089445 -8/1/1993,8,20.2,2.3,3.5227920000000004,0.45507017280237927,0.0,74.9977463635657,3.5561412047913055,17.419296832932005 -8/2/1993,8,21.9,0.0,3.6324759999999996,0.4431238563824986,0.0,72.42500565415273,3.271649908408001,17.24871795651293 -8/3/1993,8,15.5,15.1,3.219548,0.487045702656584,0.0,83.47622752742836,4.856639360017419,17.06732609280307 -8/4/1993,8,16.5,4.5,3.284068,0.496470635930614,0.0,84.61892736233712,5.23648017172188,16.968811538947882 -8/5/1993,8,18.9,0.1,3.4389160000000003,0.5006552063729681,0.0,81.95318791876645,4.816867048392458,16.89125931675502 -8/6/1993,8,14.8,24.3,3.174384,0.5880358577491145,0.0,99.82289215592203,8.40501026974412,16.794277482839544 -8/7/1993,8,12.5,14.7,3.0259880000000003,0.8556337567689304,0.0,107.84912793725867,11.377013144944172,16.87864244666996 -8/8/1993,8,12.0,3.5,2.993728,1.004527781400129,0.0,107.2642774049186,11.232623968441501,17.10992025498377 -8/9/1993,8,13.7,0.9,3.103412,0.9735051015140027,0.0,104.7838535199359,10.292894737526812,17.329353048306167 -8/10/1993,8,16.8,0.0,3.303424,0.8970425040101182,0.0,101.51493769662642,9.198318421648326,17.497410724216387 -8/11/1993,8,15.3,16.9,3.206644,0.9530453183479686,0.0,110.7707588352972,12.816060954975429,17.607378430814475 -8/12/1993,8,14.2,19.6,3.135672,1.2922202543090493,0.0,120.72867558741454,17.899884278711287,17.896033909946958 -8/13/1993,8,16.2,2.3,3.264712,1.5226891165422445,0.0,118.8292711201264,16.751091789766953,18.433107445683582 -8/14/1993,8,13.1,6.7,3.0646999999999998,1.4952990554475238,0.0,119.84137203608995,17.440148941133703,18.90199988625826 -8/15/1993,8,13.2,4.3,3.0711519999999997,1.530442783684056,0.0,119.3527832843571,17.13386633051917,19.39596733558978 -8/16/1993,8,11.2,0.0,2.9421120000000003,1.4649870538605876,0.0,116.41067128435711,15.149963707551677,19.864741305403943 -8/17/1993,8,7.9,7.2,2.729196,1.4017953770789242,0.0,118.19550042966468,16.10994328026238,20.224944664673448 -8/18/1993,8,10.3,17.7,2.884044,1.6075925139401819,0.0,126.16805737618627,21.102549707306697,20.6259429353931 -8/19/1993,8,12.0,1.4,2.993728,1.8140107694848306,0.0,123.94330585892695,19.233741762616145,21.268551562050572 -8/20/1993,8,9.5,2.3,2.832428,1.693417109128768,0.0,122.41664423843122,17.971088953971776,21.80486761894037 -8/21/1993,8,11.0,5.0,2.929208,1.6397313765699064,0.0,122.38810247551616,17.977681152870492,22.267324714260152 -8/22/1993,8,13.9,4.6,3.116316,1.6442336514258749,0.0,121.94145747084745,17.81441160766603,22.720862277618473 -8/23/1993,8,15.9,18.0,3.245356,1.8072902774426483,0.0,129.2072600758383,23.23087949367862,23.157165612449404 -8/24/1993,8,14.4,0.0,3.148576,2.00878625496663,0.0,126.05868407583829,20.4543651595004,23.855566274884346 -8/25/1993,8,17.7,0.0,3.361492,1.808405652785214,0.0,122.69719207583829,18.03879768876535,24.401173207361676 -8/26/1993,8,11.9,2.0,2.987276,1.6581871858900112,0.0,120.8656531017745,16.78151696328965,24.81508962765271 -8/27/1993,8,8.8,9.0,2.787264,1.6540532641504289,0.0,123.41113744914773,18.510671410688783,25.15786368326414 -8/28/1993,8,9.0,1.6,2.8001679999999998,1.7046123628372665,0.0,121.52628715310824,17.032466423338718,25.580239980133296 -8/29/1993,8,10.0,0.0,2.864688,1.5783808648500277,0.0,118.66159915310824,15.061745788304684,25.920258501697568 -8/30/1993,8,11.6,0.0,2.96792,1.4331026669115632,0.0,115.69367915310823,13.347218835825075,26.15494062107885 -8/31/1993,8,13.6,0.4,3.0969599999999997,1.30992450755992,0.0,112.84964918161954,12.002650358656515,26.29920275044853 -9/1/1993,9,13.3,1.2,2.360996,1.2171580219357414,0.0,111.27250966913512,11.101949324515598,26.373351213372388 -9/2/1993,9,12.7,1.5,2.333,1.1517806638191765,0.0,109.93625343190429,10.405452149559402,26.40098165533072 -9/3/1993,9,12.9,0.0,2.3423320000000003,1.083524601175512,0.0,107.59392143190429,9.29624337011668,26.39323462970208 -9/4/1993,9,10.7,5.1,2.23968,1.0452855877272371,0.0,108.87314726026827,9.91232590363752,26.330182105613872 -9/5/1993,9,9.4,3.1,2.1790220000000002,1.0737606474579253,0.0,108.80600022635358,9.85534857007933,26.29919475868347 -9/6/1993,9,8.3,9.2,2.1276960000000003,1.1269641413609934,0.0,112.95005258176421,11.745904900558385,26.265978292013767 -9/7/1993,9,10.5,0.3,2.230348,1.1873550482197155,0.0,110.91545105299106,10.566690792258933,26.327953971201413 -9/8/1993,9,10.1,0.0,2.211684,1.0945247579187116,0.0,108.70376705299105,9.436520989265272,26.32972943139033 -9/9/1993,9,12.4,0.0,2.3190020000000002,1.007423465127603,0.0,106.38476505299106,8.453273260660787,26.27496089222579 -9/10/1993,9,13.7,0.0,2.3796600000000003,0.930541601884572,0.0,104.00510505299106,7.597847736774885,26.17212533741431 -9/11/1993,9,13.2,0.0,2.3563300000000003,0.8625727171186641,0.0,101.69071890520075,6.85362753099415,26.02857521750477 -9/12/1993,9,14.1,0.0,2.398324,0.8023797569027424,0.0,99.38750527098037,6.20615595196491,25.85068508970438 -9/13/1993,9,15.4,0.0,2.4589820000000002,0.7489730516547004,0.0,97.0795244750011,5.642855678209472,25.643979185508538 -9/14/1993,9,15.9,0.0,2.4823120000000003,0.7014911648259176,0.0,94.80375085559804,5.1527844400422405,25.41324238570884 -9/15/1993,9,15.7,0.0,2.47298,0.6591842310871501,0.0,92.58968172923221,4.72642246283675,25.162616759996776 -9/16/1993,9,14.7,0.0,2.4263200000000005,0.6283629709330679,0.0,90.4681197632933,4.34830866580981,24.89568554793868 -9/17/1993,9,16.0,2.8,2.486978,0.6296443385935496,0.0,90.56577086296,4.578019772938055,24.615187270270397 -9/18/1993,9,14.0,0.0,2.3936580000000003,0.6133890360033282,0.0,88.5185191682552,4.211778191103011,24.35178451351189 -9/19/1993,9,14.1,0.0,2.398324,0.5977518327303792,0.0,86.5136453466886,3.8748359358147706,24.075337732796804 -9/20/1993,9,14.3,0.3,2.4076560000000002,0.5843683170543015,0.0,84.79084294884301,3.620562051855642,23.787572774931608 -9/21/1993,9,14.5,6.4,2.4169880000000004,0.6037945807234937,0.0,88.12178360051226,4.4645864094326155,23.49284942202576 -9/22/1993,9,15.6,0.6,2.4683140000000003,0.5916376562066826,0.0,86.55129522110268,4.22377403751817,23.246221754056876 -9/23/1993,9,13.7,0.0,2.3796600000000003,0.5764258838525345,0.0,84.60623284329694,3.885872114516716,22.992486020851647 -9/24/1993,9,8.9,8.2,2.155692,0.6051414562884311,0.0,89.6387395076537,5.020095272174068,22.72692990616045 -9/25/1993,9,8.7,4.4,2.14636,0.6229477593421652,0.0,91.33360165104038,5.499169143351427,22.523396071645948 -9/26/1993,9,10.0,2.2,2.207018,0.6431718424665868,0.0,91.16589821342372,5.49185510504678,22.3478866073806 -9/27/1993,9,7.1,1.6,2.071704,0.6353273066680091,0.0,90.64620987252972,5.35747062686545,22.175521630485328 -9/28/1993,9,8.1,0.0,2.118364,0.6115062092888387,0.0,88.83280286780396,4.9044994453729425,21.999884729218895 -9/29/1993,9,10.5,0.5,2.230348,0.5761039676882787,0.0,87.36291784705219,4.609225176052275,21.805112006903165 -9/30/1993,9,7.7,0.1,2.0997000000000003,0.5597741030157803,0.0,85.71159036221783,4.259489416814198,21.599471025567716 -10/1/1993,10,7.7,0.0,0.956384,0.5451710294220133,0.0,84.93745499875594,3.918730263469062,21.380456075897072 -10/2/1993,10,7.4,6.1,0.950576,0.5636803538466055,0.0,89.190045978642,4.690156149851797,21.148783467552583 -10/3/1993,10,8.0,0.0,0.9621919999999999,0.5486546218497921,0.0,88.37960166170669,4.314943657863653,20.960315605694124 -10/4/1993,10,6.3,3.6,0.9292799999999999,0.5553176734131086,0.0,90.50105452716336,4.672684796121337,20.756856476473423 -10/5/1993,10,7.1,1.8,0.9447679999999999,0.551621665846409,0.0,91.12197277236402,4.670486470380288,20.57535358675002 -10/6/1993,10,8.8,17.2,0.97768,0.6451084504044952,0.0,103.87212540217902,7.905367787793817,20.397370838534034 -10/7/1993,10,5.5,20.5,0.9137919999999999,0.9486203880881339,0.0,117.62497814867953,12.971938749179408,20.384691811153044 -10/8/1993,10,7.9,0.0,0.960256,1.163481437060332,0.0,116.66472214867953,11.529086711786084,20.625594912388955 -10/9/1993,10,9.2,0.0,0.985424,1.0569592457615307,0.0,115.67929814867954,10.273805439253893,20.78953734973048 -10/10/1993,10,9.3,0.0,0.98736,0.9633903314211925,0.0,114.69193814867954,9.181710732150886,20.887436874698565 -10/11/1993,10,10.9,0.0,1.018336,0.8811086601929252,0.0,113.67360214867954,8.23158833697127,20.928773673812138 -10/12/1993,10,11.6,0.0,1.031888,0.8086644247872029,0.0,112.64171414867954,7.404981853165006,20.92177761718446 -10/13/1993,10,5.6,0.0,0.9157279999999999,0.7447959421758374,0.0,111.72598614867954,6.685834212253555,20.873591157499025 -10/14/1993,10,3.0,0.0,0.8653919999999999,0.68840520445173,0.0,110.86059414867954,6.060175764660594,20.790411044961722 -10/15/1993,10,5.2,0.0,0.9079839999999999,0.6385366079365815,0.0,109.95261014867954,5.515852915254715,20.677611612295518 -10/16/1993,10,8.6,0.0,0.973808,0.5943584473671307,0.0,108.97880214867953,5.042292036271602,20.539852025812344 -10/17/1993,10,7.2,1.1,0.946704,0.5656895701537478,0.0,108.78067300030335,4.981719219932469,20.381169587109678 -10/18/1993,10,7.9,0.0,0.960256,0.547366475764143,0.0,107.82041700030335,4.577595721341248,20.222632156364106 -10/19/1993,10,10.4,0.0,1.008656,0.5272828278950962,0.0,106.81176100030335,4.211388063633948,20.047059299303886 -10/20/1993,10,11.3,0.0,1.02608,0.5133680608862871,0.0,105.78568100030336,3.8744770185432325,19.856687516499505 -10/21/1993,10,12.0,0.0,1.0396320000000001,0.5000011180537267,0.0,104.74707320816333,3.564518857059774,19.653277617096677 -10/22/1993,10,11.1,0.0,1.022208,0.4871494806070044,0.0,103.73589843991354,3.2793573484949916,19.438438007607733 -10/23/1993,10,8.4,0.0,0.969936,0.4747830051160683,0.0,102.78569367658163,3.017008760615392,19.213637114880328 -10/24/1993,10,5.5,0.0,0.9137919999999999,0.46287373800525466,0.0,101.8986907056107,2.775648059766161,18.98021481061349 -10/25/1993,10,5.4,0.0,0.9118559999999999,0.4513957447973366,0.0,101.02120527250035,2.553596214984868,18.739392917389527 -10/26/1993,10,4.0,0.0,0.8847519999999999,0.44032495292940194,0.0,100.17713393991696,2.3493085177860786,18.49228486979098 -10/27/1993,10,3.0,0.0,0.8653919999999999,0.429639007056585,0.0,99.3584306601499,2.161363836363192,18.23990459828446 -10/28/1993,10,1.4,0.0,0.8344159999999999,0.4193171358463627,0.0,98.57548359925917,1.9884547294541368,17.98317469813693 -10/29/1993,10,0.6,0.0,0.818928,0.4093400293458722,0.0,97.81312432422872,1.8293783510978057,17.7229339406469 -10/30/1993,10,5.3,0.0,0.90992,0.3996897260780765,0.0,96.97260946838679,1.6830280830099813,17.459944179388852 -10/31/1993,10,6.6,0.0,0.9350879999999999,0.390349509090107,0.0,96.11626870492873,1.5483858363691827,17.194896699951574 -11/1/1993,11,6.6,0.1,0.357642,0.38201728786369143,0.0,95.86785475875142,1.4482975569423793,16.928418057771 -11/2/1993,11,6.5,12.8,0.356976,0.4639897340571983,0.0,105.31895104674756,4.358148085598143,16.6622645744627 -11/3/1993,11,9.3,12.6,0.37562400000000007,0.5626704548781563,0.0,113.83045159852006,7.724397371102974,16.54692668725335 -11/4/1993,11,9.7,0.2,0.378288,0.6857992649064559,0.0,113.58138144771169,7.034507863667955,16.602208022063433 -11/5/1993,11,7.6,0.0,0.36430200000000007,0.6315688335212426,0.0,113.2170794477117,6.363521841391121,16.621889254805563 -11/6/1993,11,5.0,2.1,0.346986,0.6022366301645266,0.0,114.23625788774228,6.513599561979676,16.607627561779008 -11/7/1993,11,7.7,6.6,0.36496800000000007,0.6621758352984516,0.0,118.11586292577728,8.265758580887319,16.60115498864241 -11/8/1993,11,6.2,0.3,0.354978,0.7299518116323802,0.0,117.94507868349139,7.5505162076578545,16.682419817913928 -11/9/1993,11,9.9,0.1,0.37962000000000007,0.6740793593525348,0.0,117.62698763979134,6.850920144362375,16.726297231938542 -11/10/1993,11,10.0,8.3,0.380286,0.7150332549997295,0.0,122.37380543567816,9.376696729708431,16.73431729451789 -11/11/1993,11,7.7,6.7,0.36496800000000007,0.8990647684512729,0.0,125.89804304840476,11.212020542119742,16.868465785112953 -11/12/1993,11,6.2,2.3,0.354978,0.9898179712153212,0.0,126.81158978074893,11.029433139300016,17.091697496516684 -11/13/1993,11,3.7,14.9,0.338328,1.1530716619074646,0.0,134.5765919162254,16.635776695714558,17.30133520355135 -11/14/1993,11,8.5,1.4,0.37029600000000007,1.407559530916127,0.0,134.87196332666113,15.450958314835935,17.78709733426605 -11/15/1993,11,4.1,14.6,0.340992,1.5346289110864286,0.0,141.433374084629,21.383430975939383,18.203903303322527 -11/16/1993,11,3.8,2.9,0.338994,1.8205504788919313,0.0,142.28483188789954,20.556633145796713,18.908996786053045 -11/17/1993,11,9.5,2.7,0.37695600000000007,1.7677654836195371,0.0,142.99361818550048,19.742028539242177,19.558648507621818 -11/18/1993,11,10.6,0.7,0.384282,1.6819677215242725,0.0,142.88590917219003,17.84249184245113,20.15457696443149 -11/19/1993,11,7.2,21.6,0.36163800000000007,1.9257697783604906,0.0,151.0816395453683,28.8090995297542,20.643610017265416 -11/20/1993,11,0.9,18.3,0.31968,2.7675268290982906,0.0,156.46444291150698,37.90493322474748,21.67119279340782 -11/21/1993,11,5.5,0.0,0.350316,3.111030730378824,0.0,156.114126911507,33.22079190553031,23.133015598777035 -11/22/1993,11,5.6,1.5,0.350982,2.81199224480119,0.0,156.1479088065479,30.260825062770472,24.331394882078012 -11/23/1993,11,5.3,0.3,0.348984,2.580504771887056,0.0,155.87576414459045,26.79357846656777,25.357808237574975 -11/24/1993,11,5.6,0.4,0.350982,2.335492850460313,0.0,155.62845183687486,23.85024357362957,26.190330996151864 -11/25/1993,11,1.3,1.3,0.322344,2.1447738626036443,0.0,155.64662131846728,21.952698427465332,26.859036554910308 -11/26/1993,11,-0.3,1.2,0.311688,1.982795165233819,1.2,155.33493331846728,19.34234763189484,27.419490745185367 -11/27/1993,11,0.7,0.4,0.318348,1.8277923967894452,0.0,155.44090612630995,18.247021631905834,27.838218311876403 -11/28/1993,11,1.9,0.7,0.32634,1.731734986475785,0.0,155.29938146820768,16.633593477860334,28.19380502723417 -11/29/1993,11,1.5,0.0,0.323676,1.5988536356768215,0.0,154.97570546820768,14.714726325738491,28.461608600582505 -11/30/1993,11,0.5,0.0,0.317016,1.4561579282858548,0.0,154.65868946820768,13.045311903392488,28.62811274485778 -12/1/1993,12,-0.8,0.0,0.159712,1.3307095575507732,0.0,154.49897746820767,11.592921355951464,28.707816085130247 -12/2/1993,12,2.0,0.0,0.16872800000000002,1.2202924318124109,0.0,154.33024946820768,10.329341579677774,28.713305831225213 -12/3/1993,12,2.5,0.0,0.17033800000000002,1.1229780300851706,0.0,154.1599114682077,9.230027174319662,28.6555067935846 -12/4/1993,12,-1.5,1.5,0.15745800000000001,1.0370880282943042,1.5,154.0024534682077,8.273623641658107,28.54389801642889 -12/5/1993,12,-3.2,0.0,0.151984,0.9611617838938463,1.5,153.8504694682077,7.441552568242553,28.386701238183218 -12/6/1993,12,-3.6,0.0,0.150696,0.8939280472798921,1.5,153.6997734682077,6.717650734371022,28.191044841831683 -12/7/1993,12,-3.9,0.0,0.14973,0.8342803505199068,1.5,153.5500434682077,6.087856138902788,27.9631064817136 -12/8/1993,12,-3.5,0.0,0.15101799999999999,0.7812555953509914,1.5,153.3990254682077,5.539934840845427,27.708237159024463 -12/9/1993,12,0.5,0.1,0.16389800000000002,0.7682614937492482,0.0,153.6935918281015,6.2047789516417335,27.431069157886245 -12/10/1993,12,-0.5,0.0,0.16067800000000002,0.7798424126661481,0.0,153.5329138281015,5.6416576879283085,27.192686722310604 -12/11/1993,12,-4.0,0.0,0.14940799999999999,0.7317534674965605,0.0,153.3835058281015,5.151742188497628,26.930915872260808 -12/12/1993,12,-7.1,0.4,0.139426,0.6888502738294789,0.4,153.24407982810152,4.725515703992936,26.649884664240474 -12/13/1993,12,-11.4,2.2,0.12558,0.6574874885533113,2.6,153.1184998281015,4.347474447673501,26.353162756155314 -12/14/1993,12,-11.1,0.1,0.12654600000000002,0.6408597592241063,2.7,152.99195382810152,3.9996764918596206,26.043473223415884 -12/15/1993,12,-8.8,0.0,0.133952,0.6248428228461365,2.7,152.85800182810152,3.679702372510851,25.722587583540545 -12/16/1993,12,-7.2,0.7,0.139104,0.6094022044912051,3.4000000000000004,152.71889782810152,3.3853261827099828,25.392120950495276 -12/17/1993,12,-8.0,0.0,0.136528,0.5945058994552128,3.4000000000000004,152.58236982810152,3.114500088093184,25.05354484062087 -12/18/1993,12,-4.9,0.0,0.14651,0.580124181395634,3.4000000000000004,152.4358598281015,2.865340081045729,24.70819894821311 -12/19/1993,12,-7.2,0.0,0.139104,0.5662294257028848,3.4000000000000004,152.2967558281015,2.636112874562071,24.357301973301134 -12/20/1993,12,-10.1,0.0,0.12976600000000002,0.5527959468891774,3.4000000000000004,152.16698982810152,2.425223844597105,24.001961577563215 -12/21/1993,12,-11.4,0.0,0.12558,0.5397998488757163,3.4000000000000004,152.0414098281015,2.231205937029337,23.643183538241807 -12/22/1993,12,-11.9,0.0,0.12397000000000001,0.5272188871485785,3.4000000000000004,151.9174398281015,2.05270946206699,23.281880164328435 -12/23/1993,12,-9.1,0.0,0.13298600000000002,0.5150323418359531,3.4000000000000004,151.7844538281015,1.888492705101631,22.918878034145212 -12/24/1993,12,-3.1,0.0,0.152306,0.5032209008351528,3.4000000000000004,151.6321478281015,1.7374132886935005,22.554925108717388 -12/25/1993,12,2.1,0.0,0.16905,0.5625849466669444,0.0,152.50248467878652,3.9590333749130013,22.190697270977715 -12/26/1993,12,1.6,0.0,0.16744,0.5481660210336751,0.0,152.33504467878652,3.6423107049199612,21.94483499430381 -12/27/1993,12,1.8,0.0,0.168084,0.5342888520490656,0.0,152.16696067878652,3.350925848526364,21.688053829663733 -12/28/1993,12,-0.4,0.0,0.161,0.5209223343292633,0.0,152.00596067878652,3.0828517806442552,21.421839045496778 -12/29/1993,12,0.0,0.0,0.16228800000000002,0.5080376062181625,0.0,151.84367267878653,2.836223638192715,21.147544853619053 -12/30/1993,12,-2.1,0.1,0.155526,0.495607875183245,0.1,151.68814667878652,2.6093257471372975,20.866405138456305 -12/31/1993,12,0.3,0.0,0.163254,0.48569295917318545,0.0,151.55540260907603,2.47006975707682,20.579543323044042 -1/1/1994,1,-2.2,0.0,0.14940799999999999,0.4740030441840603,0.0,151.40599460907603,2.272464176510675,20.291455944437004 -1/2/1994,1,-3.1,0.0,0.14651,0.4627050119591706,0.0,151.25948460907603,2.090667042389821,19.999250034373798 -1/3/1994,1,-4.1,0.0,0.14329,0.45177837808607535,0.0,151.11619460907602,1.923413678998635,19.703798385805815 -1/4/1994,1,-4.4,0.0,0.142324,0.44120407958115493,0.0,150.97387060907602,1.7695405846787442,19.40589310203963 -1/5/1994,1,-4.2,0.0,0.142968,0.43096436552178885,0.0,150.83090260907602,1.6279773379044447,19.106252269232776 -1/6/1994,1,-3.4,0.0,0.145544,0.42104269634102953,0.0,150.68535860907602,1.4977391508720892,18.805526090743342 -1/7/1994,1,-4.4,0.0,0.142324,0.41142365109351126,0.0,150.54303460907602,1.3779200188023222,18.50430252647208 -1/8/1994,1,-1.1,0.0,0.15295,0.40209284205659923,0.0,150.390084609076,1.2676864172981364,18.203112476882758 -1/9/1994,1,-2.8,3.2,0.147476,0.39303683608162876,3.2,150.242608609076,1.1662715039142855,17.902434548210007 -1/10/1994,1,-5.0,7.4,0.14039200000000002,0.38424308215686476,10.600000000000001,150.102216609076,1.0729697836011427,17.602699432441522 -1/11/1994,1,-6.0,0.0,0.137172,0.3756998446868465,10.600000000000001,149.96504460907602,0.9871322009130513,17.304293932972747 -1/12/1994,1,-1.4,0.0,0.151984,0.36739614203237914,10.600000000000001,149.81306060907602,0.9081616248400072,17.007564664358945 -1/13/1994,1,2.1,0.0,0.163254,0.5400214602195493,1.6750000000000007,152.55148093148637,6.858834372442464,16.71282145231377 -1/14/1994,1,-0.2,2.4,0.155848,0.6201924305806639,4.075000000000001,152.39563293148638,6.210685904024944,16.721506741889616 -1/15/1994,1,-6.5,0.3,0.135562,0.5703904153413597,4.375000000000001,152.26007093148638,5.6467967365017016,16.69761090225307 -1/16/1994,1,-8.2,0.0,0.130088,0.5264462020684413,4.375000000000001,152.12998293148638,5.15621316075648,16.645998521033093 -1/17/1994,1,-4.9,0.0,0.140714,0.4876106057065732,4.375000000000001,151.98926893148638,4.729405449858137,16.570889208650254 -1/18/1994,1,-5.5,0.0,0.138782,0.46005042435548765,4.375000000000001,151.8504869314864,4.351053013869486,16.475941696970153 -1/19/1994,1,-5.7,0.0,0.138138,0.4473685734572823,4.375000000000001,151.7123489314864,4.002968772759927,16.363975513724224 -1/20/1994,1,-4.8,0.0,0.141036,0.4352188269699287,4.375000000000001,151.57131293148637,3.682731270939133,16.236844442087737 -1/21/1994,1,-4.4,0.0,0.142324,0.4235682654137788,4.375000000000001,151.42898893148637,3.3881127692640023,16.09624411679294 -1/22/1994,1,-3.9,0.0,0.143934,0.41238640989009206,4.375000000000001,151.28505493148637,3.1170637477228818,15.94372487292028 -1/23/1994,1,-7.6,0.0,0.13202000000000003,0.40164503069411184,4.375000000000001,151.15303493148636,2.8676986479050512,15.780703562848018 -1/24/1994,1,-3.3,0.0,0.145866,0.3913179711619056,4.375000000000001,151.00716893148635,2.638282756072647,15.60847442398631 -1/25/1994,1,-3.7,0.0,0.144578,0.38138098553380934,4.375000000000001,150.86259093148635,2.4272201355868352,15.428219073310215 -1/26/1994,1,-3.3,0.0,0.145866,0.3718115897146637,4.375000000000001,150.71672493148634,2.233042524739888,15.241015698623352 -1/27/1994,1,-4.1,0.0,0.14329,0.3625889239005785,4.375000000000001,150.57343493148633,2.0543991227606972,15.047847510887879 -1/28/1994,1,-2.0,0.0,0.150052,0.3536936261243584,4.375000000000001,150.42338293148634,1.8900471929398415,14.849610516808156 -1/29/1994,1,-2.8,0.0,0.147476,0.3451077158475193,4.375000000000001,150.27590693148633,1.738843417504654,14.647120666118983 -1/30/1994,1,-0.6,3.1,0.15456,0.3368144867965652,7.475000000000001,150.12134693148633,1.5997359441042818,14.441120423671837 -1/31/1994,1,2.9,0.3,0.16583,0.48697703354894106,0.0,152.45789609003333,6.744377910028958,14.232284812403615 -2/1/1994,2,3.4,3.6,0.192246,0.6386966393080687,0.0,153.33407275264247,8.642686119116036,14.28485801165699 -2/2/1994,2,2.0,0.0,0.187234,0.7101393168123233,0.0,153.14683875264248,7.762636923630951,14.431295157379653 -2/3/1994,2,1.6,0.7,0.185802,0.6600825276977982,0.0,153.16354222593546,7.494488650265948,14.530801100413607 -2/4/1994,2,-3.1,0.4,0.168976,0.6264337765036112,0.4,152.99456622593547,6.7637051257313745,14.61490951091863 -2/5/1994,2,-5.1,2.1,0.161816,0.571738891607894,2.5,152.83275022593548,6.127923459386295,14.660796576986826 -2/6/1994,2,-7.7,2.7,0.15250799999999998,0.5236195116276251,5.2,152.68024222593547,5.574793409666077,14.673976818416405 -2/7/1994,2,-2.6,0.0,0.17076599999999997,0.481231517526216,5.2,152.5094762259355,5.093570266409486,14.65923695253138 -2/8/1994,2,-0.2,0.5,0.179358,0.44384031180978645,5.7,152.33011822593548,4.674906131776253,14.620730726801227 -2/9/1994,2,0.4,0.8,0.181506,0.47290601291699386,4.0,152.8940330491725,6.055492817997119,14.562061418854015 -2/10/1994,2,-0.6,1.4,0.177926,0.5160999000771166,5.4,152.71610704917248,5.511778751657493,14.57359483137679 -2/11/1994,2,0.2,4.3,0.18079,0.5834853796327977,4.550000000000001,154.0493244096718,8.67474015344268,14.557711872332128 -2/12/1994,2,-1.5,4.0,0.174704,0.7179586185281404,8.55,153.87462040967182,7.790523933495132,14.700294642557619 -2/13/1994,2,-2.7,0.0,0.17040799999999998,0.6525801702666041,8.55,153.7042124096718,7.021255822140765,14.795814946381224 -2/14/1994,2,-1.9,0.0,0.17327199999999998,0.595141796836125,8.55,153.5309404096718,6.351992565262465,14.850961438560638 -2/15/1994,2,0.3,0.0,0.181148,0.5719674887118723,7.275,153.7132918185269,6.68123412292327,14.871541838052549 -2/16/1994,2,2.0,0.2,0.187234,0.7311750646315214,0.0,155.64223469425,11.414996811220155,14.90817270743766 -2/17/1994,2,0.1,4.2,0.18043199999999998,1.029117180598005,0.0,156.5612779813449,13.275071938666635,15.180759093849916 -2/18/1994,2,-0.1,1.2,0.179716,1.084855924710656,1.2,156.38156198134487,11.792812586639974,15.54089750890625 -2/19/1994,2,-2.7,0.0,0.17040799999999998,0.9776324416045046,1.2,156.21115398134486,10.503246950376777,15.819720188060122 -2/20/1994,2,-3.9,0.0,0.16611199999999998,0.883671855560028,1.2,156.04504198134487,9.381324846827797,16.02848813181776 -2/21/1994,2,-1.0,0.0,0.17649399999999998,0.8012635130740512,1.2,155.86854798134488,8.405252616740183,16.176984611522794 -2/22/1994,2,3.0,0.0,0.190814,0.7555857014775538,0.0,155.98883976997692,8.44496398793192,16.273707550129348 -2/23/1994,2,5.6,0.2,0.20012199999999997,0.7383289272724394,0.0,155.84029990929847,7.739036530179209,16.370481598523355 -2/24/1994,2,4.6,0.1,0.196542,0.6835674450225631,0.0,155.66971493547553,7.050504755078857,16.430023793061846 -2/25/1994,2,6.4,0.0,0.20298599999999997,0.6294273829605921,0.0,155.46672893547552,6.377439136918606,16.453948554954554 -2/26/1994,2,4.5,0.0,0.196184,0.5780029491335339,0.0,155.27054493547553,5.7918720491191875,16.443741540701396 -2/27/1994,2,5.1,9.4,0.198332,0.7396673353911638,0.0,157.5718240619313,12.182817556277927,16.40446031234333 -2/28/1994,2,2.8,0.2,0.190098,1.029187103568064,0.0,157.4297444666944,10.994532869198682,16.68551198391036 -3/1/1994,3,1.6,0.4,0.6321,0.9476191040756736,0.0,156.89432496750064,10.112063095396591,16.901528387692085 -3/2/1994,3,1.9,0.9,0.63597,0.8950258265667383,0.0,156.48132811707077,9.718021743424911,17.069100974708075 -3/3/1994,3,2.3,0.0,0.64113,0.8476188555223388,0.0,155.84019811707077,8.698178916779671,17.21362004238516 -3/4/1994,3,0.8,0.1,0.62178,0.7740428331195173,0.0,155.24437525690226,7.88495851776683,17.30425658737644 -3/5/1994,3,-4.5,3.9,0.55341,0.7108987308324008,3.9,154.69096525690225,7.103413910457142,17.35241938151725 -3/6/1994,3,-7.6,3.8,0.51342,0.6515856323739838,7.699999999999999,154.17754525690225,6.423470102097713,17.360541689409764 -3/7/1994,3,-7.2,1.4,0.51858,0.599321161984165,9.1,153.65896525690226,5.83191898882501,17.334504360726452 -3/8/1994,3,-6.2,0.2,0.53148,0.5532022395086469,9.299999999999999,153.12748525690228,5.31726952027776,17.279410222953175 -3/9/1994,3,-3.7,0.0,0.5637300000000001,0.5124429203832974,9.299999999999999,152.56375525690228,4.86952448264165,17.199685494508 -3/10/1994,3,0.1,0.0,0.61275,0.485362875855923,8.874999999999998,152.07665059156847,4.7793171893641535,17.09916800874992 -3/11/1994,3,1.1,0.0,0.62565,0.5698795952485012,4.1999999999999975,152.85775290286222,7.665219502921288,16.99615050804313 -3/12/1994,3,2.2,0.0,0.63984,0.7770702594995382,0.0,153.44617004064017,9.883983829763572,17.03948847302833 -3/13/1994,3,2.8,0.0,0.64758,0.8598341273461266,0.0,152.79859004064016,8.842565931894308,17.192897895055943 -3/14/1994,3,4.1,0.9,0.66435,0.8016343216701871,0.0,152.39801705470552,8.5727553466827,17.29116823374954 -3/15/1994,3,-1.1,2.0,0.59727,0.7636713346107271,2.0,151.8007470547055,7.701797151613948,17.373982636408684 -3/16/1994,3,-4.5,12.8,0.55341,0.6981436200630455,14.8,151.2473370547055,6.944063521904134,17.411592841261207 -3/17/1994,3,-5.7,3.1,0.53793,0.6404595172275285,17.900000000000002,150.7094070547055,6.284835264056597,17.41056416053119 -3/18/1994,3,-4.5,0.0,0.55341,0.589612856405175,17.900000000000002,150.1559970547055,5.7113066797292396,17.376594640523397 -3/19/1994,3,2.0,0.8,0.63726,0.7340346574535563,9.400000000000002,152.5085151382997,11.52255872777022,17.31462808169939 -3/20/1994,3,5.4,8.4,0.6811200000000001,1.3673713551466924,0.0,157.1003829104897,22.795138320970104,17.54446345645391 -3/21/1994,3,4.9,2.5,0.67467,1.921774837303233,0.0,157.039273276825,21.961709972908707,18.33333110337334 -3/22/1994,3,4.2,1.9,0.66564,1.8593576457171772,0.0,156.84124937083175,20.782571582423856,19.06474997995131 -3/23/1994,3,3.7,3.5,0.65919,1.8187340562723882,0.0,157.05126978214966,20.95512686539086,19.722583559473478 -3/24/1994,3,5.3,4.9,0.67983,1.8768490959660515,0.0,157.5767338861918,22.169166268847917,20.375888231553553 -3/25/1994,3,6.3,0.0,0.6927300000000001,1.872415128666624,0.0,156.88400388619178,19.530674653897687,21.076828780364878 -3/26/1994,3,2.2,13.6,0.63984,1.9895972538118027,0.0,159.61511742282045,27.464233412262306,21.631825937452465 -3/27/1994,3,0.2,14.2,0.61404,2.6389533127088827,0.0,162.07867314784076,35.25978734364789,22.572401089316532 -3/28/1994,3,-0.4,5.9,0.6063,2.9247536655458566,5.9,161.47237314784076,30.919514988973663,23.883942434712598 -3/29/1994,3,0.3,7.8,0.61533,2.834946434626325,4.625,162.62799123930444,34.44752994894339,24.952239335467027 -3/30/1994,3,1.5,1.0,0.63081,3.0468878981142478,0.0,163.0183663034525,34.81666599143271,26.175571046204855 -3/31/1994,3,1.4,3.6,0.62952,3.050103819973235,0.0,163.02575698584718,33.49708873015174,27.392892924852394 -4/1/1994,4,4.1,0.4,1.593652,2.8932092591455003,0.0,161.50283776172407,29.715234419355152,28.519889502862934 -4/2/1994,4,6.7,0.0,1.680336,2.6138394079883955,0.0,159.82250176172406,26.095753944838982,29.435253433773433 -4/3/1994,4,8.1,0.0,1.727012,2.3527185964490447,0.0,158.09548976172405,22.946805932009916,30.15133606233991 -4/4/1994,4,4.2,0.0,1.596986,2.1239699241798267,0.0,156.49850376172407,20.207221160848626,30.69564963769361 -4/5/1994,4,0.6,4.4,1.476962,2.0221260540031847,0.0,156.13122277495873,21.114101396703667,31.09209770298217 -4/6/1994,4,-0.2,2.6,1.45029,2.0011073326643034,2.6,154.68093277495873,18.61276821513219,31.525960818757707 -4/7/1994,4,0.2,0.1,1.463626,1.8374934352243466,1.75,153.47613431529192,17.127780806831797,31.826080013139162 -4/8/1994,4,2.4,1.6,1.536974,1.77993550491408,0.0,152.89624576696457,17.537583850271023,32.04594745321797 -4/9/1994,4,7.1,0.0,1.693672,1.744053284938968,0.0,151.20257376696458,15.501197949735792,32.28190769666716 -4/10/1994,4,9.7,0.0,1.780356,1.591672752779306,0.0,149.42221776696456,13.729542216270138,32.41132944022061 -4/11/1994,4,9.6,0.7,1.777022,1.471700556280478,0.0,147.87566928770704,12.657728207412559,32.449579962229706 -4/12/1994,4,9.0,0.2,1.7570180000000002,1.3796549197709806,0.0,146.18774103038137,11.386633797774596,32.43347477335574 -4/13/1994,4,7.6,0.0,1.710342,1.277410571366194,0.0,144.47739903038138,10.1498714040639,32.35413696777735 -4/14/1994,4,5.4,4.3,1.636994,1.2604488544878847,0.0,144.47548220817734,11.738810943739654,32.214547798625 -4/15/1994,4,7.4,1.3,1.7036740000000001,1.324441937287936,0.0,143.26615898575872,11.261914743472119,32.15719738983948 -4/16/1994,4,11.7,0.0,1.8470360000000001,1.2623796955625544,0.0,141.41912298575872,10.041365826820744,32.0771491792163 -4/17/1994,4,13.3,0.0,1.9003800000000002,1.1667064291605187,0.0,139.5187429857587,8.979488269334047,31.937674486973012 -4/18/1994,4,13.5,0.0,1.9070480000000003,1.0821019655103261,0.0,137.6116949857587,8.05565479432062,31.747895410700256 -4/19/1994,4,11.5,0.0,1.8403680000000002,1.007154734691845,0.0,135.7713269857587,7.25191967105894,31.515720242202285 -4/20/1994,4,7.8,0.8,1.7170100000000001,0.9534888884816385,0.0,134.4258914825644,6.981095617015592,31.248001820911185 -4/21/1994,4,8.1,1.2,1.727012,0.9333414920633989,0.0,133.2711066725098,6.94482599685815,30.97209656534374 -4/22/1994,4,8.8,1.0,1.75035,0.921683501006428,0.0,132.00811254024555,6.798142749530837,30.699895933879773 -4/23/1994,4,7.1,1.9,1.693672,0.9182338753193975,0.0,131.26197023936135,7.110354492976043,30.42580515267872 -4/24/1994,4,3.5,17.7,1.573648,1.1710272297192175,0.0,138.63271832875262,15.185112319497883,30.172806774273948 -4/25/1994,4,4.3,13.1,1.60032,1.747000379022161,0.0,142.7645247816491,20.822421265066655,30.32860625476336 -4/26/1994,4,6.1,0.7,1.6603320000000001,1.9763093982899527,0.0,141.38235824298403,18.780841039273042,30.763155192921428 -4/27/1994,4,9.9,0.0,1.7870240000000002,1.8147656859092116,0.0,139.59533424298402,16.582831704167546,31.086934141026653 -4/28/1994,4,13.6,0.0,1.9103819999999998,1.6516452335554404,0.0,137.68495224298402,14.670563582625766,31.294337043414497 -4/29/1994,4,10.1,5.6,1.793692,1.6012521771298878,0.0,138.39200294770012,16.10614761216832,31.401978481677496 -4/30/1994,4,7.2,0.2,1.697006,1.6244286040314457,0.0,136.7829687846205,14.367876585666078,31.579246292652364 -5/1/1994,5,7.5,0.6,2.8565799999999997,1.5003307246703284,0.0,134.1994150319709,13.070526382179073,31.666055196082617 -5/2/1994,5,9.2,0.2,2.96079,1.3953237166832189,0.0,131.3344100061711,11.719072978295559,31.68626041126992 -5/3/1994,5,10.3,0.0,3.02822,1.288396230687478,0.0,128.3061900061711,10.439093491117136,31.638488851959302 -5/4/1994,5,9.9,6.4,3.0037,1.2787998082448495,0.0,128.70161272012726,12.326388623315767,31.527673749475973 -5/5/1994,5,7.0,31.9,2.8259299999999996,1.7840935036160512,0.0,142.7096315445047,26.033509277907267,31.513439705652246 -5/6/1994,5,10.1,1.3,3.0159599999999998,2.4121329629634087,0.0,140.21097223097223,23.6753523853118,32.18484637543457 -5/7/1994,5,13.5,0.0,3.22438,2.219997657866057,0.0,136.98659223097224,20.841056575221266,32.72491706719146 -5/8/1994,5,9.6,0.0,2.9853099999999997,2.012058836466512,0.0,134.00128223097224,18.375219220442503,33.112471554608696 -5/9/1994,5,8.3,19.4,2.90562,2.131753421124257,0.0,140.42184300571193,26.303759947045293,33.36898308453865 -5/10/1994,5,11.0,0.0,3.07113,2.4458569603741496,0.0,137.35071300571192,23.127771153929405,34.016791420200136 -5/11/1994,5,13.1,0.0,3.19986,2.21368526780388,0.0,134.15085300571192,20.364660903918583,34.492844149492605 -5/12/1994,5,16.8,0.0,3.42667,2.0099801010221774,0.0,130.72418300571192,17.960754986409164,34.82122031169868 -5/13/1994,5,18.0,0.0,3.5002299999999997,1.8310751275614405,0.0,127.22395300571192,15.869356838175971,35.02283365478517 -5/14/1994,5,10.9,1.0,3.065,1.6875693247792434,0.0,124.69930724164236,14.509486213282651,35.115844823598266 -5/15/1994,5,8.5,4.9,2.91788,1.6352160417815056,0.0,124.53279070181279,15.01538954538548,35.139002237790436 -5/16/1994,5,10.6,0.0,3.04661,1.610215977809913,0.0,121.48618070181278,13.306888904485367,35.1869916703039 -5/17/1994,5,13.7,0.0,3.23664,1.4794311712737782,0.0,118.24954070181279,11.82049334690227,35.14859628212209 -5/18/1994,5,17.5,0.0,3.46958,1.364077524175758,0.0,114.7799607018128,10.527329211804973,35.036649023824765 -5/19/1994,5,15.8,1.0,3.3653700000000004,1.2730070233607191,0.0,112.05370335969312,9.763163756390004,34.862282503938516 -5/20/1994,5,9.5,17.6,2.97918,1.37992832716008,0.0,120.67176787751924,14.740207950233165,34.65319504167925 -5/21/1994,5,8.5,12.7,2.91788,1.7341400375310982,0.0,125.29847515247897,18.222893641743113,34.69714153835732 -5/22/1994,5,11.0,0.0,3.07113,1.8488540739301975,0.0,122.22734515247897,16.09741746831651,34.91434338967733 -5/23/1994,5,14.7,0.0,3.29794,1.6892370172448783,0.0,118.92940515247898,14.248253197435364,35.0209273952996 -5/24/1994,5,16.4,0.0,3.4021499999999993,1.5487554984701388,0.0,115.52725515247897,12.639480281768767,35.03292150726538 -5/25/1994,5,14.2,0.0,3.26729,1.4249541912667731,0.0,112.25996515247897,11.239847845138826,34.9642370912085 -5/26/1994,5,12.8,8.6,3.18147,1.4040723704619489,0.0,114.73262666534366,12.968036112406073,34.82694474164127 -5/27/1994,5,12.1,0.1,3.13856,1.4473303142970388,0.0,111.6580128955316,11.56174518760534,34.778807652428746 -5/28/1994,5,12.5,1.8,3.16308,1.355145256167344,0.0,109.68609715501931,10.911054053728943,34.66131875876044 -5/29/1994,5,12.9,1.9,3.1876,1.3028982870441466,0.0,107.78219142735465,10.352422754408854,34.51364508627168 -5/30/1994,5,15.8,1.1,3.3653700000000004,1.2487169661541802,0.0,105.17439715741023,9.592532066280121,34.340993322266684 -5/31/1994,5,17.1,0.1,3.4450600000000002,1.1773543414222445,0.0,101.82323048187602,8.618391230851048,34.13380005913535 -6/1/1994,6,18.2,1.6,4.139640000000001,1.110378219460817,0.0,99.00681671396934,8.177259517612017,33.8820436194952 -6/2/1994,6,14.0,11.0,3.8176680000000003,1.142501854585756,0.0,103.63257278878832,10.162452141514569,33.6132657229859 -6/3/1994,6,11.9,6.7,3.6566820000000004,1.2632057234705656,0.0,104.85199097939328,10.986688536093299,33.44912301560191 -6/4/1994,6,16.8,2.2,4.032316000000001,1.2857383592411549,0.0,102.41730720591973,10.443814426486641,33.32947498209454 -6/5/1994,6,17.3,0.0,4.070646,1.222280801931173,0.0,98.48015920413913,9.329618551043378,33.18507620377698 -6/6/1994,6,17.3,2.5,4.070646,1.152431092539512,0.0,96.56486359822031,8.989768428075703,32.98785560725361 -6/7/1994,6,18.8,1.4,4.185636000000001,1.1135767031490706,0.0,93.8112134245762,8.40121811383464,32.77758691651232 -6/8/1994,6,10.5,1.5,3.5493580000000002,1.0640883726904413,0.0,91.82976939987066,7.889518177374437,32.54209608387381 -6/9/1994,6,12.4,2.7,3.695012,1.0272173733014158,0.0,90.74853859805363,7.684228767046428,32.28573007106505 -6/10/1994,6,16.0,0.0,3.970988,0.9890593473321546,0.0,87.34537155876373,6.928779027330393,32.02422690799607 -6/11/1994,6,19.7,0.0,4.254630000000001,0.9256887104038964,0.0,83.83585944057445,6.271537753777442,31.730181321202675 -6/12/1994,6,21.0,0.0,4.354288,0.8692521147118133,0.0,80.3884566949726,5.699737845786374,31.409154582467494 -6/13/1994,6,22.0,0.0,4.430948000000001,0.8188742177264923,0.0,77.02461618675015,5.202271925834145,31.06595838310746 -6/14/1994,6,13.5,0.8,3.779338,0.7771851154148974,0.0,74.96244532244307,4.882548762948328,30.704752811737016 -6/15/1994,6,12.6,13.7,3.710344,0.7965644845976599,0.0,84.21906335931965,6.308044752574992,30.33478519364969 -6/16/1994,6,13.3,0.0,3.764006,0.8447170402190658,0.0,81.22538067163565,5.731498934740244,30.043491727405446 -6/17/1994,6,15.4,0.0,3.9249920000000005,0.7945560057256195,0.0,78.2146245158785,5.229904073224012,29.729196839594348 -6/18/1994,6,17.8,0.0,4.108976,0.7497228621016205,0.0,75.17956912835601,4.79351654370489,29.39610810646366 -6/19/1994,6,14.4,2.1,3.848332,0.721669561314226,0.0,74.26696247601592,4.690410862794445,29.04786177151963 -6/20/1994,6,14.3,0.3,3.840666,0.7046514537893189,0.0,71.8343542954212,4.354098406824656,28.70142507922896 -6/21/1994,6,11.1,0.1,3.5953540000000004,0.687435051325975,0.0,69.48331756931101,4.017767378875423,28.345101497985617 -6/22/1994,6,12.0,0.1,3.664348,0.6708049698101844,0.0,67.16773680838159,3.7074404356930333,27.979087836969676 -6/23/1994,6,13.1,0.0,3.7486740000000003,0.6544229180654264,0.0,64.78989236025218,3.4108452008375907,27.604878102014933 -6/24/1994,6,13.8,0.0,3.802336,0.6386057835434478,0.0,62.463393728110226,3.1379775847705833,27.223322800016515 -6/25/1994,6,14.3,0.0,3.840666,0.6233232858047624,0.0,60.19782537853835,2.886939377988937,26.835755223254715 -6/26/1994,6,16.4,0.0,4.001652,0.6085472685862761,0.0,57.92291038824957,2.655984227749822,26.443387087689068 -6/27/1994,6,18.8,9.7,4.185636000000001,0.615302779199576,0.0,64.63161667825794,3.1452136017706804,26.04731855732278 -6/28/1994,6,18.3,0.0,4.147306,0.600480552734168,0.0,62.10024363416087,2.893596513629026,25.68363286626486 -6/29/1994,6,13.5,0.3,3.779338,0.5869228928089082,0.0,60.15825233179285,2.6876697372162646,25.31464003462101 -6/30/1994,6,11.5,4.1,3.6260180000000006,0.5827603209590828,0.0,61.87403738480369,2.7968568847764925,24.942730720789402 -7/1/1994,7,13.9,0.0,3.8304000000000005,0.56886762903208,0.0,59.63584385568147,2.5731083339943734,24.58371895061244 -7/2/1994,7,13.3,0.3,3.782016,0.5561290119855783,0.0,57.782621855502015,2.3905004073193363,24.22069998829991 -7/3/1994,7,17.0,0.0,4.0803840000000005,0.5430940314200112,0.0,55.55601607877861,2.199260374733789,23.855811008899877 -7/4/1994,7,15.4,0.0,3.9513599999999998,0.530472742491824,0.0,53.48290417309306,2.023319544755086,23.48865780745857 -7/5/1994,7,12.9,0.0,3.74976,0.5182446320061835,0.0,51.58897599524721,1.861453981174679,23.120050628547155 -7/6/1994,7,12.6,0.0,3.725568,0.50639057618112,0.0,49.77390150170994,1.7125376626807047,22.750722315034945 -7/7/1994,7,15.6,0.0,3.967488,0.49489273452735316,0.0,47.908972264565584,1.5755346496662483,22.381334751868284 -7/8/1994,7,18.1,0.0,4.169088,0.4837344521170731,0.0,46.02270612649274,1.4494918776929484,22.012484789314232 -7/9/1994,7,15.1,0.0,3.927168,0.47290016957257724,0.0,44.315850910954296,1.3335325274775125,21.644709687412593 -7/10/1994,7,10.0,2.2,3.515904,0.46492008465937246,0.0,44.95959085505791,1.3116747419536017,21.27849212003822 -7/11/1994,7,12.3,1.0,3.701376,0.45576891881846504,0.0,44.34814630191779,1.2466266174587466,20.918506014735133 -7/12/1994,7,15.7,0.0,3.975552,0.44565623914812874,0.0,42.68313202552831,1.1468964880620467,20.562467225313366 -7/13/1994,7,17.2,0.0,4.096512,0.4358255971747166,0.0,41.031871637010404,1.055144769017083,20.208562705210202 -7/14/1994,7,18.7,1.0,4.217472,0.42723022596166726,0.0,40.365446067167376,1.002908405684339,19.857148689556855 -7/15/1994,7,21.7,0.2,4.459392,0.41806905829204144,0.0,38.85932621860818,0.9288678523680903,19.510151136049934 -7/16/1994,7,22.8,0.0,4.548096,0.4089645828443061,0.0,37.1902739366406,0.854558424178643,19.166391505947338 -7/17/1994,7,23.7,0.0,4.620672,0.400101644448077,0.0,35.56741948908781,0.7861937502443517,18.825791597037323 -7/18/1994,7,23.6,0.1,4.612608000000001,0.39153964569001565,0.0,34.115789757185716,0.7255978879279901,18.488585452608795 -7/19/1994,7,20.9,0.8,4.394880000000001,0.3836288039413686,0.0,33.48316012901747,0.6842310394102733,18.15509363795302 -7/20/1994,7,22.0,4.8,4.4835840000000005,0.37828220941699325,0.0,36.769640565530686,0.7252714357901253,17.826203317164474 -7/21/1994,7,21.4,1.1,4.4352,0.37095688924701187,0.0,36.30219371840635,0.6946010931599367,17.505942822610688 -7/22/1994,7,18.3,16.4,4.1852160000000005,0.3748532461662186,0.0,50.871673228090266,1.0347388583296402,17.19055402081647 -7/23/1994,7,15.8,0.0,3.983616,0.3665283901562305,0.0,48.957864450885694,0.951959749663269,16.89847988331662 -7/24/1994,7,15.7,0.0,3.975552,0.3584362545533753,0.0,47.11978213968116,0.8758029696902074,16.608108273133453 -7/25/1994,7,18.0,0.0,4.161024,0.35056688708655565,0.0,45.268176281167754,0.8057387321149908,16.319736256155295 -7/26/1994,7,20.9,0.0,4.394880000000001,0.34291095835913254,0.0,43.38935672715341,0.7412796335457915,16.03362846763794 -7/27/1994,7,20.6,0.0,4.370688,0.3354597154851133,0.0,41.59842896461598,0.6819772628621282,15.750019879962469 -7/28/1994,7,17.0,5.9,4.0803840000000005,0.3340864709130475,0.0,45.699416689367894,0.8234701334306997,15.469118345506326 -7/29/1994,7,17.9,7.9,4.15296,0.33656852720240055,0.0,51.47968660577462,1.0850112499015276,15.200909485267735 -7/30/1994,7,18.9,0.0,4.2336,0.3289691476584313,0.0,49.42147146540057,0.9982103499094055,14.951141858057456 -7/31/1994,7,20.3,0.0,4.346496,0.3215911964253352,0.0,47.392854711802705,0.9183535219166531,14.702029538391779 -8/1/1994,8,17.1,0.0,3.32278,0.31442468967929516,0.0,45.90568850366895,0.8448852401633209,14.453906623719776 -8/2/1994,8,11.8,1.0,2.980824,0.3087168786322129,0.0,45.57154812046002,0.8191807855714003,14.207072753253547 -8/3/1994,8,12.7,6.3,3.0388919999999997,0.30966896971621316,0.0,50.30431723196383,1.013038765562408,13.963890337467046 -8/4/1994,8,16.7,0.0,3.2969720000000002,0.30266515930943894,0.0,48.73805105581025,0.9319956643174153,13.735264468995824 -8/5/1994,8,18.7,0.0,3.426012,0.2958662595917963,0.0,47.16115854684983,0.8574360111720221,13.50715896283178 -8/6/1994,8,20.1,0.0,3.51634,0.2892629855910227,0.0,45.59505534310416,0.7888411302782603,13.279887584133744 -8/7/1994,8,19.9,0.0,3.503436,0.2828466529749797,0.0,44.08651479809497,0.7257338398559995,13.053731888964982 -8/8/1994,8,13.1,14.9,3.0646999999999998,0.29363512614516185,0.0,57.143016612004196,1.2352082427197406,12.828943943178482 -8/9/1994,8,12.9,0.0,3.0517960000000004,0.28677425702808285,0.0,55.496129941643936,1.1363915833021614,12.6341254764509 -8/10/1994,8,10.8,12.9,2.9163040000000002,0.30544680119778783,0.0,66.0238128202699,1.889385009201602,12.438262546086989 -8/11/1994,8,10.6,1.1,2.9034,0.30107346516236627,0.0,65.2052676602118,1.8464711416619894,12.28396654562533 -8/12/1994,8,10.3,14.1,2.884044,0.3339943295888907,0.0,76.18200521461956,3.0460704717657414,12.130610771795922 -8/13/1994,8,12.1,0.8,3.00018,0.328183190139007,0.0,74.71335466253618,2.912571618001373,12.04030207994829 -8/14/1994,8,14.9,0.0,3.1808359999999998,0.31928946904182576,0.0,72.46903576376044,2.679565888561263,11.945124619249393 -8/15/1994,8,14.9,0.0,3.1808359999999998,0.3107600269501402,0.0,70.29213409370041,2.465200617476362,11.840200421292469 -8/16/1994,8,16.3,1.3,3.271164,0.30701879227439555,0.0,69.27245855748905,2.4161887799862276,11.726656443740437 -8/17/1994,8,18.9,0.0,3.4389160000000003,0.2989454654049187,0.0,67.02274502370223,2.2228936775873294,11.61293275386494 -8/18/1994,8,12.3,6.9,3.013084,0.3122880695266832,0.0,71.31229529715775,2.748389795778103,11.491818782667007 -8/19/1994,8,11.6,11.7,2.96792,0.3452368793466569,0.0,79.63375455814847,3.908294713686848,11.399401896802573 -8/20/1994,8,10.7,1.8,2.909852,0.343459393443848,0.0,78.9702933116745,3.8707607184276895,11.366828594550865 -8/21/1994,8,12.4,0.0,3.019536,0.3334935970002289,0.0,76.71839375944897,3.5610998609534747,11.333030058581233 -8/22/1994,8,12.1,3.1,3.00018,0.3369970091049319,0.0,77.2106603705259,3.7102840031928745,11.284424450457282 -8/23/1994,8,12.6,1.6,3.03244,0.3341117447015774,0.0,76.37209895625648,3.6408913823140603,11.244250161607779 -8/24/1994,8,13.8,0.0,3.109864,0.3245167967016946,0.0,74.12914078127773,3.3496200717289355,11.201409727491326 -8/25/1994,8,16.8,0.0,3.303424,0.31534676471027756,0.0,71.81655240885114,3.0816504659906205,11.144862536527947 -8/26/1994,8,19.6,0.0,3.48408,0.3065745090432795,0.0,69.4535850472813,2.835118428711371,11.076047809096918 -8/27/1994,8,20.9,0.0,3.5679559999999997,0.2981749241194448,0.0,67.11335145118197,2.6083089544144613,10.996282774350547 -8/28/1994,8,22.1,0.0,3.6453800000000003,0.29012477847352436,0.0,64.80290033102794,2.399644238061305,10.90677256658426 -8/29/1994,8,14.6,0.3,3.16148,0.283250138015067,0.0,63.1398753552493,2.2359250490651394,10.808619327155641 -8/30/1994,8,9.3,17.3,2.819524,0.32177623795452237,0.0,77.22599385392161,3.5897124697735543,10.704243193065786 -8/31/1994,8,9.6,0.0,2.83888,0.31246894321961305,0.0,75.15558749418962,3.30253547219167,10.669643952693146 -9/1/1994,9,9.9,0.0,2.2023520000000003,0.30357753597746745,0.0,73.59246483455223,3.0383326344163364,10.621377847248867 -9/2/1994,9,10.8,0.0,2.244346,0.295075319150385,0.0,72.03266736471025,2.7952660236630296,10.560866922024706 -9/3/1994,9,13.9,0.0,2.3889920000000004,0.28693759994844686,0.0,70.40753311149508,2.5716447417699873,10.489412884767363 -9/4/1994,9,16.6,0.0,2.5149740000000005,0.27914153215606197,0.0,68.73529668520791,2.3659131624283884,10.408206864160515 -9/5/1994,9,16.2,0.5,2.4963100000000003,0.2732883420680882,0.0,67.56081337603558,2.2307191456037905,10.318338384998725 -9/6/1994,9,12.2,0.7,2.30967,0.26821916540758584,0.0,66.71447310801517,2.1249671305335682,10.22350757457894 -9/7/1994,9,10.8,17.0,2.244346,0.31257973722657845,0.0,80.58629086233962,3.6691340544765887,10.12528577961404 -9/8/1994,9,12.0,1.1,2.300338,0.3085798091484059,0.0,79.76274759989295,3.5485024604498028,10.106236766745589 -9/9/1994,9,14.3,0.2,2.4076560000000002,0.3004900044461785,0.0,78.11846914256732,3.2953087119171727,10.081537154433166 -9/10/1994,9,15.8,0.0,2.4776460000000005,0.2918439573877212,0.0,76.29062975643826,3.031684014963799,10.04467184694036 -9/11/1994,9,16.6,0.0,2.5149740000000005,0.2835817310279957,0.0,74.47866497901765,2.789149293766695,9.995362610749742 -9/12/1994,9,17.9,0.3,2.5756320000000006,0.27685422604202076,0.0,72.92788987054128,2.605198985918638,9.934912823223081 -9/13/1994,9,13.7,1.3,2.3796600000000003,0.2740808533921051,0.0,72.42738981111252,2.5583787690338022,9.86647451605455 -9/14/1994,9,17.7,0.0,2.5663000000000005,0.266552533309036,0.0,70.67207381836289,2.3537084675110984,9.797063964185151 -9/15/1994,9,19.2,0.0,2.63629,0.2593385158688464,0.0,68.91258678949697,2.165411790110211,9.718808108277003 -9/16/1994,9,17.3,0.0,2.5476360000000002,0.2524194161193813,0.0,67.25460032280468,1.9921788469013941,9.632702535616973 -9/17/1994,9,11.7,18.1,2.28634,0.30157711804523957,0.0,82.04246797227529,3.6927989833415173,9.539657427249702 -9/18/1994,9,9.8,3.1,2.1976860000000005,0.3078374908685978,0.0,82.93151862723737,3.90558021037207,9.533504227871784 -9/19/1994,9,11.0,0.9,2.2536780000000003,0.3030961242110261,0.0,81.91514232331312,3.7444620378122346,9.538113153832953 -9/20/1994,9,9.3,0.4,2.1743560000000004,0.29599871063795263,0.0,80.56775253114043,3.5102410261671504,9.534573992646905 -9/21/1994,9,5.8,8.0,2.0110460000000003,0.3249736000327338,0.0,85.78085407081578,4.486190291689578,9.519394564102324 -9/22/1994,9,5.3,1.7,1.987716,0.32416893606700514,0.0,85.5611585821909,4.436753743963667,9.553316187404757 -9/23/1994,9,7.6,0.0,2.095034,0.31413615435049413,0.0,83.86833077683552,4.081813444446573,9.584087550854846 -9/24/1994,9,9.0,0.0,2.1603580000000004,0.304587980507927,0.0,82.15725683840523,3.7552683688908473,9.596496472060078 -9/25/1994,9,11.8,0.0,2.2910060000000003,0.29549200620265575,0.0,80.37972573669282,3.4548468993795796,9.592329961063419 -9/26/1994,9,12.9,0.0,2.3423320000000003,0.28681828855909897,0.0,78.60169189266337,3.178459147429213,9.57322570681113 -9/27/1994,9,12.1,1.1,2.3050040000000003,0.28343091694721667,0.0,77.82763861429085,3.087241131542977,9.540684150046367 -9/28/1994,9,10.3,7.5,2.2210160000000005,0.307878685941951,0.0,82.60901754726052,3.9264678489833065,9.504232523622589 -9/29/1994,9,12.3,0.0,2.314336,0.29857993794392534,0.0,80.80351161436548,3.612350421064642,9.510471265599303 -9/30/1994,9,10.2,0.0,2.2163500000000003,0.28971845884819514,0.0,79.11223894493023,3.3233623873794707,9.50087936134055 -10/1/1994,10,10.0,0.0,1.000912,0.28126539976132764,0.0,78.36444038692807,3.0574933963891127,9.477029893482714 -10/2/1994,10,12.2,0.0,1.043504,0.2731940970489898,0.0,77.59218987222866,2.812893924677984,9.440363965432514 -10/3/1994,10,11.0,0.0,1.020272,0.2654798999682676,0.0,76.84457311195555,2.587862410703745,9.392201382357763 -10/4/1994,10,9.9,0.0,0.998976,0.2581000120403393,0.0,76.11961434088096,2.3808334178474455,9.333750475245795 -10/5/1994,10,12.4,0.0,1.047376,0.25103334506525454,0.0,75.36670228884682,2.1903667444196495,9.266117136633252 -10/6/1994,10,10.9,0.0,1.018336,0.24426038476841375,0.0,74.6419064994237,2.0151374048660777,9.19031313112157 -10/7/1994,10,11.9,0.2,1.037696,0.23855074209553156,0.0,74.08417831159456,1.8801822440227574,9.107263738742443 -10/8/1994,10,6.6,20.6,0.9350879999999999,0.31198868292739945,0.0,91.37285615387648,4.3868710468008265,9.019127576168732 -10/9/1994,10,5.1,4.1,0.906048,0.32821180231143143,0.0,93.82527779533756,4.901667692390782,9.058088576985398 -10/10/1994,10,5.6,4.7,0.9157279999999999,0.3509473669614658,0.0,96.65770946046425,5.564125951354071,9.122010190065229 -10/11/1994,10,6.9,3.5,0.940896,0.3968940604628802,0.0,98.45539622229974,5.927741240618137,9.217776283831627 -10/12/1994,10,5.0,0.5,0.9041119999999999,0.40527703505377743,0.0,97.9889368222022,5.526460553971753,9.329807820185902 -10/13/1994,10,2.6,0.1,0.857648,0.3735059174169094,0.0,97.27039703471269,5.0764065296235446,9.419534691480772 -10/14/1994,10,1.5,0.2,0.836352,0.34128637116677063,0.0,96.65320706794738,4.708891940098225,9.484964324132333 -10/15/1994,10,5.1,0.8,0.906048,0.32636264569712947,0.0,96.4334258568474,4.524948433467918,9.530709634654597 -10/16/1994,10,5.5,3.6,0.9137919999999999,0.34210024432657526,0.0,98.33841362590248,5.025779568462575,9.566342863634901 -10/17/1994,10,4.3,7.4,0.8905599999999999,0.3945036576620685,0.0,103.0543398304462,6.472952651441105,9.626304984785332 -10/18/1994,10,3.8,4.4,0.8808799999999999,0.4885251570152595,0.0,105.36438485142155,7.107633136332356,9.75742651766168 -10/19/1994,10,3.5,3.2,0.875072,0.5313817853620851,0.0,106.74923282682688,7.3715645220988675,9.917659644125065 -10/20/1994,10,2.8,0.0,0.86152,0.526538753678674,0.0,105.88771282682688,6.656761134226016,10.087884677347507 -10/21/1994,10,2.8,0.0,0.86152,0.4747638231248369,0.0,105.02621143524536,6.034882186776633,10.218965040511858 -10/22/1994,10,4.7,0.0,0.8983039999999999,0.4293861313945108,0.0,104.13523527283978,5.4938475024956706,10.316329849040454 -10/23/1994,10,3.2,0.3,0.869264,0.39216465383027255,0.0,103.49424480686109,5.109278872060018,10.384695627184428 -10/24/1994,10,0.4,9.4,0.815056,0.4410678018911629,0.0,109.43771718348957,7.348484837442909,10.43246565824374 -10/25/1994,10,0.8,0.3,0.8228,0.5377533392885717,0.0,108.81812280281802,6.733476189246868,10.59124058695101 -10/26/1994,10,1.8,0.0,0.84216,0.4905443296951733,0.0,107.97596280281802,6.1016242846447755,10.716089584674332 -10/27/1994,10,2.3,0.4,0.8518399999999999,0.4480269269076542,0.0,107.39907817942053,5.676957751038459,10.806849007213085 -10/28/1994,10,5.1,0.1,0.906048,0.41423878539207015,0.0,106.56216010456625,5.213323318257741,10.874559914620747 -10/29/1994,10,4.8,0.1,0.9002399999999999,0.37980283418531524,0.0,105.73161237053036,4.809399020920125,10.91773488224122 -10/30/1994,10,3.8,0.0,0.8808799999999999,0.35153641569024346,0.0,104.85204996893481,4.424647099246515,10.9398501356424 -10/31/1994,10,3.3,0.0,0.8712,0.3409659696970414,0.0,103.98938960503891,4.070675331306794,10.942285487891878 -11/1/1994,11,2.5,0.0,0.330336,0.33089011003805513,0.0,103.66498277715554,3.7450213048022505,10.92697354469938 -11/2/1994,11,3.0,0.0,0.333666,0.3212762907934522,0.0,103.33832794531757,3.44541960041807,10.895685139045504 -11/3/1994,11,2.4,4.9,0.32967,0.3535438129423337,0.0,106.53495600859392,4.55143215388746,10.850042416285497 -11/4/1994,11,0.9,0.3,0.31968,0.3455578508842928,0.0,106.42440734446339,4.278186245706989,10.860613175654159 -11/5/1994,11,0.4,0.0,0.31635,0.3352241448700414,0.0,106.10805734446339,3.9359313460504297,10.857310224426424 -11/6/1994,11,1.0,0.0,0.320346,0.3253709168958002,0.0,105.78771134446339,3.6210568383663952,10.836960587240418 -11/7/1994,11,0.4,0.0,0.31635,0.3159666530871911,0.0,105.47166693532351,3.331372291297084,10.801274217413928 -11/8/1994,11,1.2,0.0,0.321678,0.30698222219240956,0.0,105.1512597686749,3.064862507993317,10.751817347630503 -11/9/1994,11,-0.4,0.0,0.311022,0.2983906877421667,0.0,104.84240760968187,2.8196735073538512,10.690024126077558 -11/10/1994,11,0.4,0.0,0.31635,0.2901671351814403,0.0,104.52918732781085,2.594099626765543,10.6172073189237 -11/11/1994,11,3.5,0.0,0.336996,0.28228851277639905,0.0,104.19652212795512,2.3865716566242994,10.534568153883503 -11/12/1994,11,4.5,0.0,0.343656,0.2747334851955716,0.0,103.85836215054078,2.195645924094355,10.44320537363705 -11/13/1994,11,5.9,5.0,0.35298,0.31027947285820195,0.0,107.08558206232915,3.446566720360713,10.344123562369028 -11/14/1994,11,8.9,4.0,0.37296000000000007,0.33810711231371215,0.0,109.48627265269705,4.3971907923639515,10.309569427139682 -11/15/1994,11,7.2,2.8,0.36163800000000007,0.35495791085898254,0.0,111.02027820518252,4.9497719764893615,10.323237578215085 -11/16/1994,11,6.1,9.3,0.354312,0.44087566541221657,0.0,116.86237322212015,7.653394602608115,10.364261425475252 -11/17/1994,11,8.0,27.2,0.36696600000000007,0.8642147950053407,0.0,133.45562231528882,17.141738211100396,10.539645927096153 -11/18/1994,11,7.8,19.4,0.36563400000000007,1.5913406110311281,0.0,142.51230382248207,25.13449673646411,11.18593991910925 -11/19/1994,11,7.1,6.5,0.36097200000000007,2.037942878795468,0.0,144.75053988916392,26.01130409404191,12.21894595755027 -11/20/1994,11,4.6,0.4,0.344322,2.0162379634278267,0.0,144.55721532219025,23.122337128790125,13.27513224310136 -11/21/1994,11,3.9,0.0,0.33966,1.8067297845945054,0.0,144.21755532219024,20.35993330204741,14.16574645467884 -11/22/1994,11,4.1,0.6,0.340992,1.622312887605229,0.0,144.10628333866794,18.326921956303536,14.900428190687634 -11/23/1994,11,1.8,0.0,0.325674,1.4688590753684805,0.0,143.78060933866794,16.18792210198408,15.51876572468906 -11/24/1994,11,3.7,0.0,0.338328,1.3160616022668779,0.0,143.44228133866795,14.326992228726148,16.017786515294482 -11/25/1994,11,7.8,0.1,0.36563400000000007,1.1841928126157792,0.0,143.11571080262723,12.768919775032458,16.4137803964249 -11/26/1994,11,7.0,0.2,0.36030600000000007,1.07363547138623,0.0,142.8341827705839,11.473682236321547,16.723950777248028 -11/27/1994,11,3.6,0.0,0.337662,0.9762153356544527,0.0,142.4965207705839,10.225603545599746,16.963155873519145 -11/28/1994,11,0.1,2.0,0.314352,0.9206748280986942,0.0,142.9822374501846,10.33970640507106,17.13517293332875 -11/29/1994,11,-1.9,13.8,0.301032,0.8968457533242223,13.8,142.68120545018462,9.239044572411823,17.30945479491573 -11/30/1994,11,-2.6,4.4,0.29637,0.8154006505132998,18.200000000000003,142.38483545018462,8.281468777998285,17.42521792763801 -12/1/1994,12,-5.4,1.9,0.1449,0.7438405141653728,20.1,142.23993545018462,7.448377836858508,17.490787007985166 -12/2/1994,12,-2.9,0.0,0.15295,0.6808943565783002,20.1,142.0869854501846,6.723588718066901,17.51339015966839 -12/3/1994,12,-3.5,0.7,0.15101799999999999,0.6254561372924585,20.8,141.93596745018462,6.093022184718205,17.49930179237837 -12/4/1994,12,-4.4,14.3,0.14812,0.5765633255723897,35.1,141.78784745018461,5.544429300704839,17.45396686576671 -12/5/1994,12,-3.6,11.7,0.150696,0.5333782496533706,46.8,141.6371514501846,5.067153491613209,17.382108993486618 -12/6/1994,12,0.4,4.8,0.163576,0.6105138430787234,45.099999999999994,144.12884303008437,8.496655957803734,17.287824488197543 -12/7/1994,12,1.2,1.8,0.16615200000000002,0.8853005410337673,39.99999999999999,146.6106241394701,11.887657573903502,17.36690079632378 -12/8/1994,12,2.5,0.0,0.17033800000000002,1.2252026619865382,29.374999999999993,150.24968589178238,17.40136233698378,17.61394565909248 -12/9/1994,12,1.0,0.0,0.16550800000000002,1.5373213798175742,25.124999999999993,151.446244267852,18.270618857106296,18.13173486275982 -12/10/1994,12,1.2,0.0,0.16615200000000002,1.6337735056487637,20.02499999999999,152.8493659859928,19.669664687541673,18.68263110835994 -12/11/1994,12,1.2,0.0,0.16615200000000002,1.754758106359329,14.924999999999992,154.17513434512574,20.964187919028298,19.292461720569822 -12/12/1994,12,0.1,0.0,0.16261,1.7674812752376026,14.499999999999991,154.13068644654734,18.789181388133027,19.95482188210984 -12/13/1994,12,2.4,0.0,0.170016,1.8243390360539304,4.299999999999992,156.8015490418966,23.949209212326444,20.495184513874296 -12/14/1994,12,3.6,0.5,0.17388,2.120168473327962,0.0,157.82187482237467,24.685106234245918,21.282741284213134 -12/15/1994,12,2.2,0.0,0.16937200000000002,2.084168419830938,0.0,157.65250282237466,21.71954242379395,22.09134177024117 -12/16/1994,12,1.8,0.0,0.168084,1.8713720195712404,0.0,157.48441882237466,19.139501908700737,22.73549205602604 -12/17/1994,12,1.2,0.6,0.16615200000000002,1.6987367613392117,0.0,157.46291615969884,17.350217323245456,23.237757310340555 -12/18/1994,12,0.5,0.8,0.16389800000000002,1.5751749817047083,0.0,157.49207873303857,15.94512849788384,23.640513030296017 -12/19/1994,12,-1.4,0.0,0.15778,1.4565284625806458,0.0,157.33429873303857,14.11576179315894,23.96495919458429 -12/20/1994,12,-2.7,2.9,0.153594,1.3218434344664063,2.9,157.18070473303857,12.524212760048277,24.19144810035055 -12/21/1994,12,-3.6,0.7,0.150696,1.203574186566593,3.5999999999999996,157.03000873303856,11.139565101242002,24.33382977634595 -12/22/1994,12,-3.0,4.0,0.15262799999999999,1.099608532922139,7.6,156.87738073303856,9.934921638080542,24.40413143588113 -12/23/1994,12,-4.2,0.0,0.14876399999999998,1.00810843443928,7.6,156.72861673303856,8.886881825130072,24.412794889067534 -12/24/1994,12,-4.4,0.0,0.14812,0.9274743685432523,7.6,156.58049673303856,7.9750871878631635,24.368883082542688 -12/25/1994,12,-2.4,0.0,0.15456,0.8563143306020866,7.6,156.42593673303855,7.1818258534409525,24.280259780284993 -12/26/1994,12,-6.0,2.8,0.142968,0.7934168649938833,10.399999999999999,156.28296873303856,6.491688492493628,24.15374587735134 -12/27/1994,12,-9.0,0.5,0.133308,0.7377276019673451,10.899999999999999,156.14966073303856,5.891268988469456,23.995255384428997 -12/28/1994,12,-8.3,1.7,0.135562,0.6883288445458035,12.599999999999998,156.01409873303857,5.368904019968427,23.80991372616389 -12/29/1994,12,-10.1,3.0,0.12976600000000002,0.644421808972378,15.599999999999998,155.88433273303858,4.9144464973725315,23.602160652639036 -12/30/1994,12,-3.0,0.2,0.15262799999999999,0.6053111737391472,15.799999999999997,155.73170473303858,4.519068452714102,23.37583976445488 -12/31/1994,12,3.6,0.0,0.17388,0.9267127903007073,0.49999999999999645,159.54779229404633,15.467575415489252,23.13427639180149 -1/1/1995,1,-1.3,0.7,0.152306,1.4097868818135306,1.1999999999999964,159.39548629404632,13.70029061147565,23.444969634739923 -1/2/1995,1,-0.9,3.9,0.153594,1.2796188109856752,5.099999999999996,159.24189229404632,12.162752831983815,23.661084772618906 -1/3/1995,1,1.0,5.6,0.159712,1.3954963380035221,0.8499999999999961,161.25931919023833,18.4979560676339,23.796000718765722 -1/4/1995,1,0.4,8.5,0.15778,1.8814612365200212,0.0,162.949465536317,23.838795432762808,24.2449785077721 -1/5/1995,1,-1.2,3.7,0.15262799999999999,2.0769777066183455,3.7,162.796837536317,20.983252026503646,24.952018709254798 -1/6/1995,1,-1.6,2.3,0.15134,1.8706732979448253,6.0,162.645497536317,18.498929263058173,25.502140936394884 -1/7/1995,1,-0.2,2.6,0.155848,1.6899144085351248,8.6,162.48964953631702,16.33756845886061,25.917044580819898 -1/8/1995,1,0.2,2.2,0.157136,1.6061447038718673,7.75,162.89121013932888,16.94848795619687,26.21558211214653 -1/9/1995,1,0.2,1.9,0.157136,1.6521385564742272,6.9,163.22474995088297,17.248008710337167,26.538694867713442 -1/10/1995,1,-0.3,5.2,0.155526,1.613784890974179,12.100000000000001,163.06922395088296,15.249267577993335,26.87032140587603 -1/11/1995,1,-0.4,2.0,0.155204,1.4661818298184564,14.100000000000001,162.91401995088296,13.5103627928542,27.095378356658177 -1/12/1995,1,-4.5,0.8,0.14200200000000002,1.3365233871195592,14.900000000000002,162.77201795088297,11.997515629783155,27.228988929167723 -1/13/1995,1,-6.4,0.0,0.135884,1.2225016380679685,14.900000000000002,162.63613395088296,10.681338597911346,27.284284932073525 -1/14/1995,1,-4.5,0.0,0.14200200000000002,1.1221081905676058,14.900000000000002,162.49413195088297,9.53626458018287,27.27266616332762 -1/15/1995,1,-6.2,0.2,0.136528,1.0335952559333206,15.100000000000001,162.35760395088298,8.540050184759096,27.20402606907021 -1/16/1995,1,-5.4,0.1,0.139104,0.9554417801987024,15.200000000000001,162.21849995088297,7.673343660740413,27.08694805692676 -1/17/1995,1,-7.4,0.0,0.132664,0.8863239781588503,15.200000000000001,162.08583595088297,6.919308984844159,26.928876278825246 -1/18/1995,1,-7.2,0.0,0.133308,0.8250896977964595,15.200000000000001,161.95252795088297,6.263298816814418,26.73626420249095 -1/19/1995,1,-5.9,0.1,0.137494,0.7707361171452143,15.3,161.81503395088296,5.6925699706285435,26.514703859281852 -1/20/1995,1,-3.0,0.0,0.14683200000000002,0.722390340377385,15.3,161.66820195088297,5.1960358744468325,26.26903828062764 -1/21/1995,1,-0.7,2.2,0.154238,0.6792925162201525,17.5,161.51396395088298,4.764051210768744,26.00345930873743 -1/22/1995,1,-0.5,0.0,0.154882,0.6459196670792398,17.5,161.359081950883,4.382927113907244,25.721592683101118 -1/23/1995,1,0.1,2.5,0.156814,0.7000044961685682,17.075,161.77694914681504,6.382611748862631,25.42630718513446 -1/24/1995,1,-1.0,5.3,0.153272,0.7542599866659443,22.375,161.62367714681506,5.796372221510489,25.2369116288749 -1/25/1995,1,-0.3,4.4,0.155526,0.7053487662044067,26.775,161.46815114681505,5.286343832714125,25.021992007372926 -1/26/1995,1,-2.4,2.5,0.148764,0.6618131528467683,29.275,161.31938714681505,4.842619134461288,24.785869358861174 -1/27/1995,1,-4.9,0.3,0.140714,0.6243019466792719,29.575,161.17867314681504,4.455209603704385,24.532282928407014 -1/28/1995,1,-0.3,0.0,0.155526,0.6082517400627229,29.575,161.02314714681503,4.098792835408034,24.26439775002409 -1/29/1995,1,2.6,2.8,0.164864,0.925042332015193,18.525,163.63379444608,14.845378109310426,23.98404943679401 -1/30/1995,1,4.8,0.1,0.17194800000000002,1.842457655296784,0.0,166.62062530915375,28.625200092026322,24.246637353523653 -1/31/1995,1,5.0,4.4,0.17259200000000002,2.560414857423846,0.0,167.03560536916865,28.959852020047997,25.192964611054496 -2/1/1995,2,-2.2,3.3,0.172198,2.4903916971223685,3.3,166.86340736916864,25.438571257441755,26.137097919835806 -2/2/1995,2,-4.8,1.2,0.16289,2.237405963177541,4.5,166.70051736916864,22.37505699397433,26.88628452431118 -2/3/1995,2,-6.0,0.1,0.15859399999999998,2.01589307091192,4.6,166.54192336916864,19.70979958475767,27.467311683523672 -2/4/1995,2,-3.1,2.0,0.168976,1.8217898569818802,6.6,166.37294736916866,17.391025638739173,27.903455429091082 -2/5/1995,2,-1.9,0.1,0.17327199999999998,1.651560803156975,6.699999999999999,166.19967536916866,15.373692305703079,28.214937602446216 -2/6/1995,2,-2.7,5.1,0.17040799999999998,1.5021294537776533,11.799999999999999,166.02926736916865,13.618612305961678,28.419323465682446 -2/7/1995,2,-2.2,1.1,0.172198,1.3708187487170214,12.899999999999999,165.85706936916864,12.09169270618666,28.531867611666883 -2/8/1995,2,-3.7,2.3,0.16682799999999998,1.2552991128356625,15.2,165.69024136916863,10.763272654382394,28.56581489474288 -2/9/1995,2,-8.6,4.3,0.149286,1.153543293589843,19.5,165.54095536916864,9.607547209312685,28.53266222956714 -2/10/1995,2,-8.6,0.9,0.149286,1.063787069537524,20.4,165.39166936916865,8.602066072102035,28.442386345441435 -2/11/1995,2,-2.0,1.7,0.17291399999999998,0.984495066529719,22.099999999999998,165.21875536916866,7.72729748272877,28.303641922137707 -2/12/1995,2,-1.4,0.4,0.175062,0.9143310175922873,22.499999999999996,165.04369336916866,6.96624880997403,28.123933957831394 -2/13/1995,2,-0.3,0.3,0.179,0.8521318888224931,22.799999999999997,164.86469336916866,6.3041364646774065,27.90976771917347 -2/14/1995,2,-2.3,2.6,0.17184,0.7968853687224282,25.4,164.69285336916866,5.728098724269344,27.666779188023874 -2/15/1995,2,-3.9,8.0,0.16611199999999998,0.7477102837264343,33.4,164.52674136916866,5.22694589011433,27.399848540476864 -2/16/1995,2,-6.5,6.9,0.156804,0.7038395595211614,40.3,164.36993736916867,4.7909429243994675,27.113198864173043 -2/17/1995,2,-7.5,2.3,0.153224,0.6684396653756164,42.599999999999994,164.21671336916867,4.40766749044751,26.810482033109555 -2/18/1995,2,-6.5,1.4,0.156804,0.651544738075746,43.99999999999999,164.05990936916868,4.0550540912117095,26.49465576696974 -2/19/1995,2,-5.9,0.7,0.15895199999999998,0.6352698000412618,44.699999999999996,163.90095736916868,3.730649763914773,26.16751535619093 -2/20/1995,2,-6.9,0.0,0.15537199999999998,0.6195798842293047,44.699999999999996,163.74558536916868,3.432197782801591,25.83069753726285 -2/21/1995,2,-9.3,0.5,0.14678,0.6044425283184773,45.199999999999996,163.59880536916867,3.157621960177464,25.485693475657673 -2/22/1995,2,-8.3,0.0,0.15036,0.5898275801839659,45.199999999999996,163.44844536916867,2.905012203363267,25.133860704153392 -2/23/1995,2,-6.1,0.0,0.158236,0.5757070188175959,45.199999999999996,163.29020936916868,2.6726112270942055,24.776434100238486 -2/24/1995,2,-6.4,0.0,0.157162,0.5620547894595685,45.199999999999996,163.13304736916868,2.458802328926669,24.414535979588425 -2/25/1995,2,-7.3,0.0,0.15394,0.5488466518072359,45.199999999999996,162.97910736916867,2.2620981426125355,24.049185376442992 -2/26/1995,2,-5.8,0.0,0.15931,0.5360600402570012,45.199999999999996,162.81979736916867,2.0811302912035323,23.681306576044758 -2/27/1995,2,-3.5,0.1,0.16754399999999997,0.5236739352188983,45.3,162.65225336916868,1.9146398679072498,23.31173695908404 -2/28/1995,2,-4.1,2.2,0.165396,0.5116687446201945,47.5,162.4868573691687,1.7614686784746698,22.941234213297722 -3/1/1995,3,-0.3,6.2,0.60759,0.5000261947850109,53.7,161.8792673691687,1.6205511841966962,22.5704829629555 -3/2/1995,3,-3.0,5.2,0.57276,0.4887292299419533,58.900000000000006,161.3065073691687,1.4909070894609604,22.200100862906226 -3/3/1995,3,-6.3,10.8,0.5301899999999999,0.47776191967154547,69.7,160.7763173691687,1.3716345223040836,21.83064420012115 -3/4/1995,3,-7.2,0.6,0.51858,0.4671093736602714,70.3,160.2577373691687,1.261903760519757,21.462613042233933 -3/5/1995,3,-2.6,0.0,0.57792,0.45675766317865013,70.3,159.6798173691687,1.1609514596781765,21.096455969415242 -3/6/1995,3,-2.4,1.6,0.5805,0.4466937487473346,71.89999999999999,159.0993173691687,1.0680753429039225,20.732574423010846 -3/7/1995,3,-5.9,2.9,0.53535,0.4369054134980647,74.8,158.5639673691687,0.9826293154716086,20.371326701695825 -3/8/1995,3,-5.4,0.0,0.5418,0.42738120177572614,74.8,158.0221673691687,0.9040189702338799,20.01303163343549 -3/9/1995,3,-3.2,0.0,0.57018,0.41811036256402456,74.8,157.4519873691687,0.8316974526151695,19.657971949278473 -3/10/1995,3,-5.1,0.0,0.54567,0.4090827973506519,74.8,156.9063173691687,0.7651616564059559,19.30639738292366 -3/11/1995,3,-3.4,0.0,0.5676,0.4002890120785141,74.8,156.3387173691687,0.7039487238934794,18.958527518085486 -3/12/1995,3,-2.0,0.0,0.5856600000000001,0.39172007285782906,74.8,155.75305736916872,0.647632825982001,18.61455440391845 -3/13/1995,3,2.0,0.0,0.63726,0.5719288486330759,66.3,157.33042125272908,6.881198316343078,18.27464495713918 -3/14/1995,3,4.7,0.1,0.6720900000000001,1.1085370466216733,46.324999999999996,161.53304407700594,21.43042971094161,18.253211973813553 -3/15/1995,3,5.9,0.0,0.68757,2.379840397461827,21.249999999999993,165.7209303416232,39.08751758390198,18.95966921988436 -3/16/1995,3,4.1,1.0,0.66435,3.621943198763365,3.8249999999999957,167.7188777971302,50.01234284248767,20.53485171468177 -3/17/1995,3,4.9,2.2,0.67467,4.181289210847826,0.0,167.76755832765477,49.05588774243973,22.624771822512518 -3/18/1995,3,4.3,0.1,0.66693,3.992101099074731,0.0,167.112574113942,43.010176549635304,24.625070773184255 -3/19/1995,3,2.9,0.8,0.6488700000000001,3.5834806326195245,0.0,166.56571633100097,38.36034138112376,26.283078185202335 -3/20/1995,3,4.6,1.0,0.6708000000000001,3.262509353842801,0.0,166.0291263000612,34.482787032517436,27.675433690554474 -3/21/1995,3,6.2,10.1,0.69144,3.22521907316503,0.0,166.75926321262557,38.921947805725786,28.846064368369255 -3/22/1995,3,4.8,16.5,0.6733800000000001,3.759807291125704,0.0,168.2613080898186,48.43016971378838,30.215240471288162 -3/23/1995,3,4.7,5.2,0.6720900000000001,4.228306298711543,0.0,168.17866807177822,46.98829766903626,32.03244414755182 -3/24/1995,3,4.9,10.5,0.67467,4.293409341560828,0.0,168.70497520557433,50.42234183826546,33.7412101480526 -3/25/1995,3,3.4,8.2,0.65532,4.5321636913961765,0.0,168.9340413134384,51.426551291426875,35.58750303700482 -3/26/1995,3,3.4,6.7,0.65532,4.6062016252182305,0.0,168.98223927597428,50.98108166100551,37.44708054083607 -3/27/1995,3,5.7,6.1,0.6849900000000001,4.5923035177991345,0.0,168.93410450480022,50.06018581624885,39.24719301306963 -3/28/1995,3,5.8,2.6,0.68628,4.462500161738443,0.0,168.52082942981713,46.12285673511956,40.96525844362068 -3/29/1995,3,7.6,0.0,0.7095000000000001,4.122796319772683,0.0,167.81132942981714,40.370385359554014,42.45209611150425 -3/30/1995,3,8.6,0.0,0.7224,3.7084227950070976,0.0,167.08892942981714,35.36573526281199,43.62157345725186 -3/31/1995,3,5.0,0.0,0.67596,3.345486028524941,0.0,166.41296942981714,31.011689678646434,44.51742875124743 -4/1/1995,4,5.7,0.0,1.6469960000000001,3.0273478777480896,0.0,164.76597342981714,27.223670020422396,45.1776646601548 -4/2/1995,4,6.6,0.0,1.677002,2.7482321859136007,0.0,163.08897142981715,23.928092917767486,45.63529486797282 -4/3/1995,4,8.5,0.0,1.740348,2.5031127433721405,0.0,161.34862342981714,21.060940838457714,45.91899361650173 -4/4/1995,4,9.6,0.0,1.777022,2.287615813528524,0.0,159.57160142981715,18.56651852945821,46.05366078609458 -4/5/1995,4,10.0,0.0,1.7903580000000001,2.097935330028682,0.0,157.78124342981715,16.396371120628643,46.0609134968456 -4/6/1995,4,9.2,0.0,1.763686,1.930759117938642,0.0,156.01755742981715,14.508342874946921,45.95951378294012 -4/7/1995,4,7.7,1.9,1.713676,1.8255220985114136,0.0,154.7933016729045,14.276338058116476,45.765740651028665 -4/8/1995,4,5.2,1.5,1.630326,1.7943148489112424,0.0,153.5697867438945,13.75710303957134,45.56424274091392 -4/9/1995,4,4.2,1.7,1.596986,1.7540185084060695,0.0,152.45674386612095,13.428236522200606,45.34081303807421 -4/10/1995,4,5.9,0.9,1.653664,1.7067884642247608,0.0,151.0701967722263,12.558948868209175,45.10540860342276 -4/11/1995,4,5.2,2.1,1.630326,1.659526747633119,0.0,150.09451139665612,12.615144890912168,44.83124787476476 -4/12/1995,4,4.9,5.8,1.620324,1.733073769067047,0.0,150.34256607557847,15.150297376171238,44.56538016181507 -4/13/1995,4,2.9,5.4,1.553644,1.915615595744895,0.0,150.51421484656126,17.098965946286214,44.431587427387335 -4/14/1995,4,2.9,0.9,1.553644,1.9714172590472017,0.0,149.24647514616984,15.73369607366043,44.3979039761539 -4/15/1995,4,3.6,0.0,1.5769819999999999,1.8470718852118357,0.0,147.66949314616986,13.931815584084575,44.29663070031384 -4/16/1995,4,5.1,8.5,1.626992,1.8725261542259475,0.0,148.997027447274,17.909653257049435,44.10728886551179 -4/17/1995,4,5.1,11.1,1.626992,2.231011821907045,0.0,151.07437897979057,23.22055480111643,44.12062575105403 -4/18/1995,4,2.6,3.7,1.5436420000000002,2.4952765771776244,0.0,150.68398573676092,22.99213392000092,44.39924097608877 -4/19/1995,4,1.4,5.3,1.5036340000000001,2.515501678179271,0.0,150.8544174095656,23.87259083759614,44.66086285256704 -4/20/1995,4,-0.3,3.8,1.4469560000000001,2.4797346654889765,3.8,149.4074614095656,21.01265402870864,44.96127513739551 -4/21/1995,4,1.4,9.8,1.5036340000000001,2.5387249729883963,0.0,152.38371558683198,27.644620827710128,45.11268233608303 -4/22/1995,4,3.4,7.5,1.570314,2.9374565657916234,0.0,153.0453107139005,29.562410993039308,45.59265973074688 -4/23/1995,4,3.7,3.3,1.580316,3.0069333922123436,0.0,152.42331558302138,28.304476694823325,46.158927085783915 -4/24/1995,4,4.8,1.9,1.61699,2.8908570696756435,0.0,151.37092739557474,26.203792911942966,46.650972378809406 -4/25/1995,4,2.3,2.0,1.5336400000000001,2.739965919436268,0.0,150.45430648554805,24.423780743417087,47.02814257683037 -4/26/1995,4,4.6,6.2,1.610322,2.695424523957623,0.0,150.81750334773835,25.718670384582552,47.30876876246462 -4/27/1995,4,2.0,10.9,1.523638,2.898145773588996,0.0,152.72121804129253,30.091390541032634,47.64852690644445 -4/28/1995,4,2.1,1.8,1.526972,3.0558903079698183,0.0,151.72331371162952,27.693942100361426,48.200125895367194 -4/29/1995,4,3.4,4.0,1.570314,2.9271639256303406,0.0,151.3718823068536,27.118347032090362,48.62082048247792 -4/30/1995,4,5.5,2.6,1.640328,2.86153469271859,0.0,150.5336524705917,25.634363754180484,49.004321424432874 -5/1/1995,5,9.3,0.0,2.96692,2.7006991453661997,0.0,147.56673247059172,22.54539646613702,49.305953183653244 -5/2/1995,5,11.0,0.0,3.07113,2.468451749938768,0.0,144.4956024705917,19.85799492553921,49.44710394328703 -5/3/1995,5,9.5,0.5,2.97918,2.2733186411943365,0.0,141.7064559656971,17.8299220901137,49.451061610698254 -5/4/1995,5,8.2,2.0,2.8994899999999997,2.143263460946282,0.0,139.62261062473613,16.939887559359928,49.35353648298997 -5/5/1995,5,5.3,15.4,2.72172,2.3014249332021874,0.0,143.49338104777166,23.78871175360759,49.21346013129817 -5/6/1995,5,5.8,14.8,2.75237,2.8332832701159893,0.0,146.51485186979167,29.965838403618605,49.41862651635259 -5/7/1995,5,7.8,1.7,2.87497,3.0754409027178777,0.0,144.25105913384593,27.402602147093926,49.928545906206466 -5/8/1995,5,9.7,3.7,2.99144,2.9236843259068177,0.0,142.67497911370492,26.36840388811269,50.30010509543703 -5/9/1995,5,11.5,0.0,3.1017799999999998,2.7826909996440543,0.0,139.57319911370493,23.18401138265804,50.612523187933924 -5/10/1995,5,7.1,2.8,2.83206,2.5912987497254707,0.0,137.94110519240388,22.013623824213532,50.75947329330815 -5/11/1995,5,4.9,1.8,2.6972,2.485957593298652,0.0,136.04335452897226,20.395903390497406,50.84496501865266 -5/12/1995,5,8.4,0.0,2.9117499999999996,2.332890465772942,0.0,133.13160452897225,17.987935949732744,50.84786088780447 -5/13/1995,5,11.2,0.0,3.08339,2.1472929351253622,0.0,130.04821452897224,15.893004276267487,50.730300467535024 -5/14/1995,5,15.9,0.0,3.3715,1.9834695188639095,0.0,126.67671452897224,14.070413720352713,50.5103446719977 -5/15/1995,5,17.0,0.0,3.4389299999999996,1.838636653410349,0.0,123.23778452897224,12.484759936706862,50.203658464575376 -5/16/1995,5,15.0,6.4,3.3163300000000002,1.792262613846764,0.0,123.591757301606,13.834938372301227,49.82382329211921 -5/17/1995,5,13.9,1.1,3.2489,1.8211958746983627,0.0,120.9705176459926,12.752236039515456,49.51909374489188 -5/18/1995,5,10.2,5.2,3.02209,1.7812720106789826,0.0,121.02524849157726,13.461124508793782,49.16632367196982 -5/19/1995,5,5.8,32.3,2.75237,2.1613846978754476,0.0,137.37064334901598,25.15691346521188,48.85605342397011 -5/20/1995,5,4.6,15.3,2.67881,2.913649422014289,0.0,141.56957512446135,30.55227293928896,49.1367780287513 -5/21/1995,5,7.2,0.5,2.8381899999999995,3.0913286077661373,0.0,138.9359679650136,27.11939461662915,49.681656115140726 -5/22/1995,5,9.3,0.0,2.96692,2.8284707847988657,0.0,135.9690479650136,23.837373316467364,50.04399272366937 -5/23/1995,5,11.9,0.0,3.1263,2.5825287400835535,0.0,132.84274796501361,20.98201478532661,50.23498153501935 -5/24/1995,5,11.6,6.1,3.10791,2.4592307822502506,0.0,132.7312778245073,21.60141300374048,50.27938264358529 -5/25/1995,5,10.4,0.1,3.03435,2.4162731753425923,0.0,129.746150059843,19.087507077918524,50.353865640900615 -5/26/1995,5,10.3,1.6,3.02822,2.2454922256996763,0.0,127.54777461215943,17.619786605472655,50.30116368197853 -5/27/1995,5,8.9,3.8,2.9423999999999997,2.1609069356769304,0.0,126.64825527121913,17.32983368770153,50.176129738612595 -5/28/1995,5,6.0,17.9,2.76463,2.3276003396871396,0.0,133.64319128826762,23.460889291251824,50.03909882822542 -5/29/1995,5,7.0,38.4,2.8259299999999996,3.147853981622361,0.0,149.40232528048003,40.46940969117667,50.2113613162235 -5/30/1995,5,9.0,8.3,2.94853,4.035104197847954,0.0,149.18829431847166,41.01738739333207,51.23060457445787 -5/31/1995,5,7.8,1.7,2.87497,3.964448056847427,0.0,146.8772363464,37.06471500427057,52.25686185263531 -6/1/1995,6,7.5,3.0,3.319378,3.703708182922531,0.0,144.62521955367941,34.42244084643599,53.06496036579613 -6/2/1995,6,10.0,0.1,3.5110280000000005,3.459712134333594,0.0,141.15206749022022,30.253147599858487,53.72478320080201 -6/3/1995,6,10.1,0.5,3.5186940000000004,3.158129646349798,0.0,137.83999963472058,26.85711226737652,54.16294491677889 -6/4/1995,6,9.8,2.2,3.495696,2.9327057734527395,0.0,135.3235137257491,24.829977581589034,54.42254163181214 -6/5/1995,6,11.2,5.9,3.60302,2.8389341562199304,0.0,134.48529143588587,24.98078278584572,54.57558967825535 -6/6/1995,6,11.6,1.0,3.633684,2.775215532815924,0.0,131.32792002477208,22.500468434799586,54.73311702398253 -6/7/1995,6,12.9,3.4,3.733342,2.6218758265392026,0.0,129.3107241399022,21.502761423145532,54.76347810524286 -6/8/1995,6,9.3,14.1,3.4573660000000004,2.697039777751521,0.0,133.21976810109416,25.68449247694464,54.74334661429528 -6/9/1995,6,7.5,2.7,3.319378,2.8585355577258813,0.0,131.2175036306521,23.971894925383907,54.9327043058566 -6/10/1995,6,10.5,14.1,3.5493580000000002,2.897796657256686,0.0,134.7988938268255,28.068300388910576,55.03264496600867 -6/11/1995,6,12.6,7.6,3.710344,3.1265668649815477,0.0,134.6866810380664,28.66479012711128,55.335407086134026 -6/12/1995,6,13.1,0.0,3.7486740000000003,3.058434297688507,0.0,130.93800703806642,25.18186741058681,55.66193845076691 -6/13/1995,6,12.8,0.0,3.725676,2.7963009709912745,0.0,127.21233103806642,22.15172464721052,55.807793052280914 -6/14/1995,6,13.8,3.6,3.802336,2.6151668005296904,0.0,125.35562549123131,21.169869989908268,55.79922342359582 -6/15/1995,6,16.8,0.5,4.032316000000001,2.496325856855684,0.0,121.6013394401887,18.883256942262815,55.74173245461932 -6/16/1995,6,17.2,0.0,4.0629800000000005,2.3122420663590013,0.0,117.5383594401887,16.67193353976865,55.57106065264007 -6/17/1995,6,9.1,14.1,3.442034,2.2998207142110223,0.0,122.81576379008489,20.128643829702536,55.293236116575706 -6/18/1995,6,14.0,11.2,3.8176680000000003,2.541629364823009,0.0,125.45947920114958,22.494036720776528,55.19380358572931 -6/19/1995,6,17.0,0.0,4.047648000000001,2.5798937814521645,0.0,121.41183120114958,19.81331194707558,55.21462935005355 -6/20/1995,6,16.6,0.0,4.016984000000001,2.373618086380577,0.0,117.39484720114959,17.481081393955755,55.10100236040626 -6/21/1995,6,17.2,3.8,4.0629800000000005,2.2349537161129867,0.0,115.68594405531509,16.89796395857601,54.87303638289592 -6/22/1995,6,18.9,4.4,4.193302,2.1906749998576616,0.0,114.27512653709206,16.56224416218416,54.6204738531668 -6/23/1995,6,17.3,0.0,4.070646,2.111315312426468,0.0,110.20448053709207,14.652652421100221,54.356176584212676 -6/24/1995,6,17.9,0.0,4.116642000000001,1.9589055627173955,0.0,106.08783853709207,12.991307606357193,54.00168567358343 -6/25/1995,6,21.9,0.0,4.4232819999999995,1.8238678556523746,0.0,101.66455653709207,11.545937617530758,53.57121734042962 -6/26/1995,6,21.8,0.0,4.415616000000001,1.703992650184042,0.0,97.42514164920757,10.28846572725176,53.07708987449757 -6/27/1995,6,15.8,2.7,3.9556560000000003,1.6172427113685408,0.0,95.82283315357081,9.857333257951629,52.5299713633702 -6/28/1995,6,15.1,0.2,3.901994,1.5548095717452153,0.0,92.44458463274901,8.866604562254215,51.97223859900038 -6/29/1995,6,18.0,0.0,4.124308,1.4660760882902075,0.0,88.84396191145782,7.957445969161167,51.37612405513308 -6/30/1995,6,21.2,0.0,4.36962,1.3842961157029345,0.0,85.17775780486093,7.166477993170215,50.74647387248848 -7/1/1995,7,16.3,2.2,4.023936,1.3227880598237576,0.0,83.7470190763975,6.872226475710089,50.08986829469722 -7/2/1995,7,14.1,17.7,3.846528,1.3667756692115107,0.0,95.35949730192826,9.267690012474358,49.43168225258878 -7/3/1995,7,13.0,0.0,3.7578240000000003,1.447204872112513,0.0,91.97537974985421,8.306390310852692,48.90643310816072 -7/4/1995,7,11.2,0.0,3.612672,1.3627937818866926,0.0,88.83743585419207,7.47005957044184,48.34362396154014 -7/5/1995,7,8.3,0.0,3.3788160000000005,1.2872816225272525,0.0,86.00274561278006,6.742451826284401,47.75025446083143 -7/6/1995,7,12.2,0.4,3.693312,1.2217507392404408,0.0,83.3298192050141,6.182690288921342,47.13237196292902 -7/7/1995,7,14.7,0.0,3.8949119999999997,1.1642849117492442,0.0,80.26472984077348,5.622440551361567,46.49885903811651 -7/8/1995,7,9.8,16.0,3.4997760000000007,1.183414125958752,0.0,91.12051859236388,7.626400689740954,45.85000388492226 -7/9/1995,7,9.7,7.1,3.491712,1.2951458010222823,0.0,93.72632101908373,8.36797632336725,45.31432384171086 -7/10/1995,7,10.5,2.9,3.556224,1.3166387744513464,0.0,92.82853522900041,8.173707822069456,44.826436181045004 -7/11/1995,7,14.7,1.9,3.8949119999999997,1.285087469422208,0.0,90.89767659666036,7.771007378272784,44.33859284852758 -7/12/1995,7,18.0,0.0,4.161024,1.2319860886959721,0.0,87.3257867688868,7.004276419097321,43.84037136047067 -7/13/1995,7,20.6,0.0,4.370688,1.1631059905776286,0.0,83.72135038847946,6.33722048461467,43.31377775421612 -7/14/1995,7,20.7,0.0,4.378752,1.1013547433464268,0.0,80.25931402568548,5.756881821614763,42.76436322336253 -7/15/1995,7,19.0,1.7,4.241664,1.0537821139706767,0.0,78.47967837830606,5.516654063013939,42.196920049976015 -7/16/1995,7,14.1,27.4,3.846528,1.137603963060732,0.0,98.9820060077915,9.089832428916369,41.62881435212719 -7/17/1995,7,12.5,5.1,3.7175040000000004,1.319544204689144,0.0,99.30741039963694,9.451266317090543,41.25072968653047 -7/18/1995,7,14.3,0.5,3.8626560000000003,1.3048639194353673,0.0,96.0564746547447,8.594501180258408,40.89827840865439 -7/19/1995,7,15.7,8.4,3.975552,1.2878918380138518,0.0,98.85529618015035,9.71553403370156,40.51003789949423 -7/20/1995,7,14.3,5.7,3.8626560000000003,1.3503136718557167,0.0,99.50111031038128,10.14415644356167,40.18561384318942 -7/21/1995,7,13.4,14.1,3.79008,1.4426820207986832,0.0,106.40222112339194,12.706400361684185,39.88910938850371 -7/22/1995,7,13.6,0.7,3.8062080000000003,1.531637210048887,0.0,103.08460651844649,11.5094749196107,39.726647218817845 -7/23/1995,7,15.3,5.1,3.9432960000000006,1.472720491741526,0.0,102.91602577892002,11.686499511751677,39.50758802042203 -7/24/1995,7,15.7,4.0,3.975552,1.4726950186253744,0.0,101.93505646582005,11.52782727752557,39.30176123560117 -7/25/1995,7,15.9,0.0,3.99168,1.4229150033150044,0.0,98.0924639056776,10.272709731447247,39.09211737476542 -7/26/1995,7,12.8,0.3,3.741696,1.3242817119279158,0.0,94.85145617184011,9.255600502623466,38.82391051384248 -7/27/1995,7,11.2,1.8,3.612672,1.2508094184589642,0.0,93.00042276787131,8.710838225128493,38.5102123286968 -7/28/1995,7,13.6,0.3,3.8062080000000003,1.1921917157441027,0.0,89.89149874344375,7.88796015400307,38.17554999337929 -7/29/1995,7,14.1,0.0,3.846528,1.120207507743871,0.0,86.62612744418394,7.1060253339826716,37.80643700121186 -7/30/1995,7,12.9,1.0,3.74976,1.0582740549975047,0.0,84.37225878052465,6.612019924687864,37.40560952788676 -7/31/1995,7,12.0,6.9,3.677184,1.0429848353468636,0.0,87.13420450743958,7.2040624147067325,36.98809833356342 -8/1/1995,8,12.2,1.5,3.0066319999999997,1.0527034393604273,0.0,85.8768397024606,6.794317629084697,36.60853948762749 -8/2/1995,8,11.2,2.3,2.9421120000000003,1.017767697974377,0.0,85.37100432901568,6.574337497785289,36.21608457932917 -8/3/1995,8,12.9,0.5,3.0517960000000004,0.9832216371436604,0.0,83.32057612640989,6.053172233391958,35.820479762631855 -8/4/1995,8,15.2,0.1,3.200192,0.933095988743492,0.0,80.88547372727909,5.526760049763926,35.40672877904882 -8/5/1995,8,20.0,0.0,3.509888,0.8838900839061555,0.0,78.20439946521759,5.051781243294616,34.97493220595604 -8/6/1995,8,21.0,0.0,3.5744080000000005,0.8388060050947532,0.0,75.56454271685921,4.638549681666316,34.52802262400165 -8/7/1995,8,19.9,0.0,3.503436,0.809411764326089,0.0,73.06444318642401,4.26746570713301,34.06938965560493 -8/8/1995,8,12.7,18.9,3.0388919999999997,0.8606006670483367,0.0,87.50789417164715,6.285772136378236,33.60137514784948 -8/9/1995,8,11.5,0.1,2.961468,0.9075972778753747,0.0,85.14144943852926,5.731198200741159,33.24363625171141 -8/10/1995,8,12.5,0.0,3.0259880000000003,0.8572556518106869,0.0,82.70838678574245,5.229642434644808,32.865323436714235 -8/11/1995,8,13.0,0.0,3.058248,0.8111707710707138,0.0,80.3196554752247,4.793288918140983,32.469499089712194 -8/12/1995,8,13.5,0.0,3.090508,0.7734902452171911,0.0,77.97544414456624,4.409825804689705,32.059773553824996 -8/13/1995,8,15.7,0.0,3.232452,0.7544925796690954,0.0,75.59512607509801,4.057039740314528,31.63906937298298 -8/14/1995,8,15.5,0.0,3.219548,0.736157096283462,0.0,73.29668300242986,3.732476561089366,31.20913997253905 -8/15/1995,8,14.8,0.0,3.174384,0.7184479731089212,0.0,71.0993856393551,3.4338784362022166,30.771581001142735 -8/16/1995,8,15.2,0.6,3.200192,0.7034397799581685,0.0,69.48036816567367,3.229430463318956,30.327843302929992 -8/17/1995,8,14.4,2.9,3.148576,0.6964386461940124,0.0,69.99270398100224,3.2927828997755224,29.88275796003734 -8/18/1995,8,13.8,1.7,3.109864,0.6856317766443256,0.0,69.4452300978863,3.221231257593946,29.449741945825366 -8/19/1995,8,16.5,4.9,3.284068,0.6856299927808606,0.0,71.64853076742341,3.5064606461696473,29.02180866978856 -8/20/1995,8,16.0,0.0,3.251808,0.6691122244083076,0.0,69.44825439063851,3.2259437944760756,28.61669552870127 -8/21/1995,8,16.5,4.8,3.284068,0.6691062896713427,0.0,71.5624869945114,3.499770450477386,28.20565880785105 -8/22/1995,8,12.0,15.0,2.993728,0.7064312294959623,0.0,82.75570562873908,5.003351547053479,27.816534154217898 -8/23/1995,8,12.3,20.8,3.013084,0.7991664269440399,0.0,97.72093938228238,8.076380954054722,27.510371048486213 -8/24/1995,8,10.3,7.2,2.884044,0.9791058288970294,0.0,100.47910360606468,9.050237589663622,27.363982675219226 -8/25/1995,8,9.7,5.0,2.845332,1.0375087744586087,0.0,101.45928598954536,9.4370865650489,27.269214901198023 -8/26/1995,8,9.7,0.8,2.845332,1.032362603108814,0.0,99.31695621174892,8.66981920759463,27.195684931426506 -8/27/1995,8,10.7,0.8,2.909852,0.9714480531088713,0.0,97.1822455473517,7.9917282955195175,27.08526219317771 -8/28/1995,8,12.6,2.6,3.03244,0.9298759060360502,0.0,96.3645912604377,7.830887465942388,26.94314336409013 -8/29/1995,8,13.4,0.0,3.084056,0.8956520335603246,0.0,93.5579636670455,7.056372095369879,26.795824870105445 -8/30/1995,8,11.9,0.8,2.987276,0.8384066504586383,0.0,91.54001513409679,6.5611168713569255,26.61272697747183 -8/31/1995,8,10.8,0.0,2.9163040000000002,0.7912765595400668,0.0,89.01892237467072,5.951671678080524,26.408528281490238 -9/1/1995,9,9.3,0.9,2.1743560000000004,0.7456481248675331,0.0,87.91226265478477,5.600190498940587,26.17794129976446 -9/2/1995,9,11.2,13.3,2.26301,0.7856114686279327,0.0,96.7686564000691,7.680470123552646,25.9343919987162 -9/3/1995,9,10.8,3.3,2.244346,0.888205366096338,0.0,97.22023670622478,7.722910220677182,25.799727664919512 -9/4/1995,9,11.7,0.0,2.28634,0.8649160402466332,0.0,95.12109121570717,6.962431891989149,25.66987862265498 -9/5/1995,9,8.8,0.1,2.1510260000000003,0.8044343585960423,0.0,93.265614485571,6.324023703351935,25.504602644801338 -9/6/1995,9,8.0,3.2,2.1136980000000003,0.772549191839417,0.0,93.8948567326952,6.454459037678733,25.310711777072907 -9/7/1995,9,10.4,8.8,2.2256820000000004,0.8169627596106648,0.0,98.74033116113998,7.839846595280679,25.127220493415386 -9/8/1995,9,14.5,0.3,2.4169880000000004,0.8630309897833426,0.0,96.71052779010056,7.1401763917695495,25.016668413311113 -9/9/1995,9,10.8,6.5,2.244346,0.8516919751098295,0.0,99.59231886930394,8.023875940956156,24.873343864633366 -9/10/1995,9,7.8,19.4,2.104366,1.0204299722562225,0.0,111.99755427210877,12.239825317354814,24.777070784388506 -9/11/1995,9,8.2,7.5,2.1230300000000004,1.2697755557370078,0.0,114.8195430589442,13.447129239263257,24.893520634568475 -9/12/1995,9,8.3,1.9,2.1276960000000003,1.3090789217170151,0.0,113.90560529453501,12.628744202568233,25.068006683840267 -9/13/1995,9,7.8,0.8,2.104366,1.2373211514543416,0.0,112.31767121343294,11.51407553733642,25.198083760291873 -9/14/1995,9,11.7,17.0,2.28634,1.3203306235629504,0.0,121.20106594901324,16.091010981902407,25.269825861952857 -9/15/1995,9,12.2,1.6,2.30967,1.5193969991498588,0.0,119.83518043064966,14.898895072618668,25.568979893808923 -9/16/1995,9,14.3,0.0,2.4076560000000002,1.413661816017554,0.0,117.42752443064965,13.20553871317824,25.802545049563676 -9/17/1995,9,15.0,0.0,2.4403180000000004,1.2876819177574905,0.0,114.98720643064965,11.732318680465069,25.946771084231315 -9/18/1995,9,13.1,0.2,2.3516640000000004,1.1790980065411734,0.0,112.76305832977023,10.523101352884034,26.01445159656994 -9/19/1995,9,8.3,4.9,2.1276960000000003,1.1359050716089776,0.0,113.83917212947532,11.094788377304027,26.020317632282744 -9/20/1995,9,7.9,0.0,2.109032,1.1292114094828825,0.0,111.73014012947532,9.895965888254505,26.05465069850229 -9/21/1995,9,8.4,0.0,2.132362,1.037455123675067,0.0,109.59777812947532,8.85299032278142,26.02835597894497 -9/22/1995,9,9.9,0.0,2.2023520000000003,0.9565263310737688,0.0,107.39542612947531,7.945601580819834,25.95043837550514 -9/23/1995,9,12.5,0.0,2.323668,0.88503947404111,0.0,105.07175812947531,7.156173375313255,25.82870968703603 -9/24/1995,9,12.3,0.0,2.314336,0.8217886771025582,0.0,102.77530565594299,6.469370836522532,25.669944162060975 -9/25/1995,9,12.8,0.0,2.337666,0.7657243970722825,0.0,100.50640077662005,5.8718526277746035,25.480013820645883 -9/26/1995,9,9.7,0.0,2.19302,0.7159331084860812,0.0,98.42487705359481,5.352011786163906,25.264006175621695 -9/27/1995,9,8.6,1.8,2.141694,0.6851989056246793,0.0,97.78152748300637,5.35239278293783,25.026326641417455 -9/28/1995,9,6.4,3.9,2.0390420000000002,0.6959623047504812,0.0,98.83289677936015,5.865809021628992,24.793419747735996 -9/29/1995,9,7.7,3.3,2.0997000000000003,0.7271484488576425,0.0,99.33518101715674,6.18470538996461,24.590841803862727 -9/30/1995,9,12.0,6.1,2.300338,0.7696513847982425,0.0,101.70973556281209,7.19169701847793,24.408260237283702 -10/1/1995,10,13.0,0.6,1.0589920000000002,0.8015761999075062,0.0,101.12956786803706,6.663258377145708,24.279679883461924 -10/2/1995,10,10.5,4.4,1.010592,0.7888011882659003,0.0,103.38516704700051,7.219776177187181,24.12724920464997 -10/3/1995,10,11.0,0.3,1.020272,0.7958842489412503,0.0,102.60434892039946,6.609385983118819,24.00569302941633 -10/4/1995,10,11.5,0.0,1.029952,0.7439002426750211,0.0,101.60635520636355,5.9936658053133725,23.856048467983946 -10/5/1995,10,11.5,0.0,1.029952,0.6934951835621463,0.0,100.6180685999087,5.457989250622635,23.678610788889937 -10/6/1995,10,12.8,0.0,1.05512,0.6487167426852479,0.0,99.61547971955044,4.991950648041693,23.47793803564327 -10/7/1995,10,12.0,0.0,1.0396320000000001,0.6088519804626227,0.0,98.6374511954991,4.586497063796273,23.25797680733249 -10/8/1995,10,11.0,0.0,1.020272,0.5870301614482901,0.0,97.6870589997664,4.21957729869257,23.02214212437565 -10/9/1995,10,8.7,0.1,0.975744,0.5726550780457947,0.0,96.86219653952406,3.906717170311315,22.772678146822766 -10/10/1995,10,6.2,0.0,0.927344,0.5580766027486298,0.0,96.0139145791147,3.5941797966864097,22.512560442401877 -10/11/1995,10,5.0,0.0,0.9041119999999999,0.5440397268563081,0.0,95.19412675837664,3.306645412951497,22.24201822338816 -10/12/1995,10,6.6,0.0,0.9350879999999999,0.5305136159888209,0.0,94.35349132913652,3.0421137799153772,21.962510129567974 -10/13/1995,10,6.8,0.0,0.9389599999999999,0.5174696526451121,0.0,93.51682918711738,2.798744677522147,21.67536561597238 -10/14/1995,10,9.3,0.0,0.98736,0.504881263850192,0.0,92.64484149738094,2.574845103320375,21.38179553752904 -10/15/1995,10,8.7,0.0,0.975744,0.4927237624905319,0.0,91.79114758651097,2.368857495054745,21.082901881944476 -10/16/1995,10,6.7,0.0,0.937024,0.4809742012446775,0.0,90.9788847828836,2.1793488954503655,20.779686719058326 -10/17/1995,10,6.3,3.1,0.9292799999999999,0.4890504995496737,0.0,92.63248785019414,2.6529763653560057,20.473060429449678 -10/18/1995,10,4.6,0.0,0.8963679999999999,0.4771471084663954,0.0,91.84834583612951,2.440738256127525,20.196248039128484 -10/19/1995,10,1.8,0.0,0.84216,0.46565157569216553,0.0,91.11786134345452,2.245479195637323,19.914359991152292 -10/20/1995,10,2.6,0.0,0.857648,0.45454216082181237,0.0,90.37985915679393,2.065840859986337,19.628346751111113 -10/21/1995,10,1.8,0.0,0.84216,0.4437986449173871,0.0,89.66105377207879,1.90057359118743,19.339071859088207 -10/22/1995,10,1.7,0.0,0.840224,0.43340221314608934,0.0,88.94960444499795,1.7485277038924356,19.047319101465813 -10/23/1995,10,4.1,0.0,0.8866879999999999,0.4233353467200537,0.0,88.20476974043541,1.6086454875810408,18.75379910463112 -10/24/1995,10,2.8,0.0,0.86152,0.4135817233955878,0.0,87.4871366001315,1.4799538485745576,18.459155396917552 -10/25/1995,10,5.5,0.0,0.9137919999999999,0.4041261258488163,0.0,86.73215458551155,1.3615575406885931,18.163969981407927 -10/26/1995,10,6.6,0.0,0.9350879999999999,0.3949543572992892,0.0,85.96624470764719,1.2526329374335057,17.8687684588142 -10/27/1995,10,9.1,0.0,0.983488,0.3860531638033565,0.0,85.1678050997991,1.1524223024388254,17.57402473650959 -10/28/1995,10,9.9,0.0,0.998976,0.37741016268533834,0.0,84.36432419256161,1.0602285182437194,17.280165356901335 -10/29/1995,10,6.2,0.0,0.927344,0.36901377661703655,0.0,83.62549380391276,0.9754102367842218,16.987573475675493 -10/30/1995,10,4.6,6.1,0.8963679999999999,0.39223176146394767,0.0,87.97164382045878,1.9433303701307916,16.696592518001196 -10/31/1995,10,6.8,0.0,0.9389599999999999,0.38283246193856413,0.0,87.19157153146399,1.7878639405203283,16.459827186147713 -11/1/1995,11,11.3,0.0,0.388944,0.37374552154737656,0.0,86.87130863036158,1.644834825278702,16.220023839450775 -11/2/1995,11,6.7,2.7,0.358308,0.3801438017627449,0.0,88.77105366425235,2.019549989474367,15.977865103925694 -11/3/1995,11,4.7,1.4,0.344988,0.37921182900213984,0.0,89.60562082063893,2.1342040991907307,15.759285301320897 -11/4/1995,11,0.9,6.9,0.31968,0.4116690843785793,0.0,94.84347455978939,3.3550962791166308,15.550809800254017 -11/5/1995,11,1.5,0.0,0.323676,0.40075162566771433,0.0,94.55356468660386,3.0866885767873002,15.407548418204767 -11/6/1995,11,2.8,0.0,0.332334,0.3902672422929302,0.0,94.25680989987653,2.8397534906443163,15.253731878680036 -11/7/1995,11,10.1,0.0,0.380952,0.38019009465455617,0.0,93.91770969924401,2.612573211392771,15.09064491563865 -11/8/1995,11,8.5,17.6,0.37029600000000007,0.4894222618197257,0.0,107.22507972713886,6.367768275393845,14.919460677895515 -11/9/1995,11,5.8,0.0,0.352314,0.5471813633196176,0.0,106.87276572713886,5.7834583995926465,14.939459878107296 -11/10/1995,11,4.9,1.8,0.34632,0.51900155730804,0.0,107.77716235752071,5.824392177263734,14.929843600524784 -11/11/1995,11,2.2,14.9,0.328338,0.6446240857729468,0.0,117.71104054633314,9.948505005407018,14.922466337377475 -11/12/1995,11,-0.8,2.7,0.308358,0.8233150761294796,2.7,117.40268254633314,8.898699354704107,15.121442260900276 -11/13/1995,11,-2.1,4.7,0.2997,0.746274988561332,7.4,117.10298254633314,7.985368438592573,15.263948383417477 -11/14/1995,11,-4.7,5.1,0.282384,0.67865029493047,12.5,116.82059854633314,7.19077054157554,15.357937837678755 -11/15/1995,11,-4.8,1.3,0.281718,0.6192289903739776,13.8,116.53888054633315,6.49947037117072,15.410317608003957 -11/16/1995,11,-6.8,1.3,0.268398,0.5669563907341402,15.100000000000001,116.27048254633314,5.898039222918527,15.427084774402415 -11/17/1995,11,-1.5,0.0,0.303696,0.5209146856653057,15.100000000000001,115.96678654633314,5.374794123939118,15.413445040060294 -11/18/1995,11,1.2,0.2,0.321678,0.5390902846903214,10.000000000000002,118.98560404801867,6.879075386141486,15.373915845456043 -11/19/1995,11,3.6,5.6,0.337662,0.7793098760709245,0.0,128.12129494040275,12.354942693559009,15.410391297853996 -11/20/1995,11,4.2,4.7,0.341658,1.0843041574615144,0.0,130.28332339539685,13.188613688402224,15.719930606574867 -11/21/1995,11,3.5,17.3,0.336996,1.3410143250798288,0.0,138.8377750682252,20.126146236081595,16.06496267886348 -11/22/1995,11,-2.6,5.1,0.29637,1.6304041433076153,5.1,138.5414050682252,17.75324722539099,16.74997073709029 -11/23/1995,11,-7.5,9.4,0.263736,1.4608797875246151,14.5,138.2776690682252,15.68882508609016,17.302633683618033 -11/24/1995,11,-3.5,1.1,0.290376,1.3125450343364649,15.6,137.9872930682252,13.89277782489844,17.74102226425018 -11/25/1995,11,-0.1,2.6,0.31302,1.1826622066789734,18.2,137.6742730682252,12.330216707661643,18.080840710210097 -11/26/1995,11,1.2,0.7,0.321678,1.1651299862171332,13.1,139.9432350636818,14.18014854020905,18.33573473138898 -11/27/1995,11,2.0,5.5,0.327006,1.4579779245625573,4.6,145.5661266844413,20.6303316092224,18.67802746377165 -11/28/1995,11,-1.1,21.1,0.30636,1.7204929053609712,25.700000000000003,145.25976668444127,18.191888500023484,19.335983494957336 -11/29/1995,11,0.7,5.0,0.318348,1.6955537392034663,22.725,147.91079003942488,21.07607164003683,19.858858250059363 -11/30/1995,11,-1.2,12.5,0.305694,1.7780037451480029,35.225,147.6050960394249,18.579682326832042,20.515484667060015 -12/1/1995,12,-1.3,2.3,0.158102,1.5984020068731266,37.525,147.44699403942488,16.407823624343877,21.034159090060417 -12/2/1995,12,-1.8,2.3,0.156492,1.441117719602097,39.824999999999996,147.2905020394249,14.518306553179173,21.4338670894764 -12/3/1995,12,0.8,12.6,0.164864,1.6145409452755022,36.425,152.74994753703655,23.250117203654227,21.731105075345834 -12/4/1995,12,0.2,8.3,0.162932,2.176221568866888,35.574999999999996,155.27358643742426,26.93453106679146,22.45898883402163 -12/5/1995,12,5.4,9.0,0.17967600000000003,2.984305356284467,12.624999999999993,163.5888494411569,47.131603024375956,23.35653561068077 -12/6/1995,12,2.8,17.0,0.171304,4.574932849836599,0.7249999999999943,168.33444015156127,65.23109992080273,25.24598504968595 -12/7/1995,12,1.2,0.8,0.16615200000000002,5.3285495283595505,0.0,168.33977423516743,58.34807084749222,28.002620344732367 -12/8/1995,12,-0.8,0.6,0.159712,4.811292621098405,0.6,168.1800622351674,51.00632163731822,30.35997148021233 -12/9/1995,12,-0.5,0.0,0.16067800000000002,4.291447839249397,0.6,168.01938423516742,44.618999824466854,32.303088132473995 -12/10/1995,12,1.8,13.8,0.168084,4.2188077966136825,0.0,169.52672081014083,51.78660927231275,33.887976361047855 -12/11/1995,12,-1.0,9.6,0.15906800000000001,4.420756911571851,9.6,169.36765281014084,45.2978500669121,35.79954729744254 -12/12/1995,12,0.1,3.1,0.16261,4.053158214590279,9.174999999999999,169.55611456342476,42.82655780492961,37.34844885483929 -12/13/1995,12,4.8,15.0,0.177744,4.452489941987808,0.0,171.72911264099528,59.32686321271824,38.742807767988985 -12/14/1995,12,1.2,11.1,0.16615200000000002,5.407016987128134,0.0,172.33790060182946,62.18293103423065,40.934294773265115 -12/15/1995,12,-2.2,0.9,0.155204,5.3604211602951795,0.9,172.18269660182946,54.34264999978066,43.22475542951135 -12/16/1995,12,0.6,0.0,0.16422,4.826099699151012,0.0,172.07610401017945,48.36397809145919,45.077392820910156 -12/17/1995,12,3.6,1.1,0.17388,4.407026689327755,0.0,171.9741547039657,43.348230245783256,46.59404386906491 -12/18/1995,12,7.6,9.4,0.18675999999999998,4.282389591343715,0.0,172.4143020519606,46.72955296583654,47.82957450397278 -12/19/1995,12,8.9,0.1,0.190946,4.3069299864958985,0.0,172.22946296689275,40.992104165345616,49.20946066218515 -12/20/1995,12,4.6,0.0,0.1771,3.888801660126976,0.0,172.05236296689276,35.90663062385068,50.27487665720873 -12/21/1995,12,0.9,0.8,0.165186,3.5400171347298195,0.0,171.93973259523807,32.229713014404794,51.06471065525709 -12/22/1995,12,-1.1,3.9,0.158746,3.249584202253649,3.9,171.78098659523806,28.283350322532172,51.654902092872184 -12/23/1995,12,-0.8,0.7,0.159712,2.956887390887525,4.6,171.62127459523805,24.85001478060299,52.03597156714135 -12/24/1995,12,1.2,5.6,0.16615200000000002,2.983863114147314,0.0,172.18122486700958,31.336910587353046,52.23775287482867 -12/25/1995,12,1.9,6.5,0.168406,3.386251158077351,0.0,172.4291390188166,33.590292059190105,52.75984334669975 -12/26/1995,12,-0.4,11.1,0.161,3.3877094473588727,11.1,172.2681390188166,29.467054091495395,53.384161082725264 -12/27/1995,12,0.2,2.1,0.162932,3.164974360373167,10.25,172.29087592890136,28.644168149516222,53.78983056564553 -12/28/1995,12,-2.5,5.1,0.154238,3.0265510434143534,15.35,172.13663792890137,25.16392629007911,54.14624236180843 -12/29/1995,12,-5.4,2.0,0.1449,2.765210067256545,17.35,171.99173792890136,22.13611587236883,54.32151382907622 -12/30/1995,12,-0.5,0.1,0.16067800000000002,2.535201204809531,17.450000000000003,171.83105992890137,19.501920808960882,54.341889346113135 -12/31/1995,12,1.2,9.7,0.16615200000000002,2.746082930072494,12.350000000000003,172.6789477783083,30.99613125438904,54.23014759963892 -1/1/1996,1,4.9,4.1,0.17227,3.6815531188326687,0.0,173.45549423942998,42.71131773019682,54.695351210365594 -1/2/1996,1,2.3,9.6,0.16389800000000002,4.403141747595976,0.0,173.74942067694215,46.54452198775906,55.73701007266812 -1/3/1996,1,0.8,9.9,0.15906800000000001,4.7287966854454915,0.0,174.02489791810976,50.20268888818281,56.949495970602705 -1/4/1996,1,-2.0,4.8,0.150052,4.7506424343027085,4.8,173.87484591810977,43.91983933271905,58.32064049559979 -1/5/1996,1,-6.5,0.6,0.135562,4.293109166266395,5.3999999999999995,173.73928391810978,38.45376021946557,59.350219652323744 -1/6/1996,1,-7.0,0.0,0.133952,3.8918542181063414,5.3999999999999995,173.60533191810978,33.69827139093505,60.085903270250554 -1/7/1996,1,-3.4,0.0,0.145544,3.539625428338003,5.3999999999999995,173.45978791810978,29.560996110113493,60.569098774392295 -1/8/1996,1,-3.4,0.0,0.145544,3.2301121360678393,5.3999999999999995,173.31424391810978,25.961566615798738,60.835766604410125 -1/9/1996,1,-7.7,0.0,0.131698,2.957822811524521,5.3999999999999995,173.18254591810978,22.8300629557449,60.91712960311186 -1/10/1996,1,-7.7,0.0,0.131698,2.7179785941089243,5.3999999999999995,173.05084791810978,20.105654771498063,60.84029015883687 -1/11/1996,1,-8.8,1.3,0.12815600000000002,2.5064206699957032,6.699999999999999,172.9226919181098,17.735419651203316,60.62876709423504 -1/12/1996,1,-11.1,13.9,0.12075,2.3195296901547824,20.6,172.8019419181098,15.673315096546887,60.3029627349105 -1/13/1996,1,-10.5,1.6,0.122682,2.1541556635480106,22.200000000000003,172.6792599181098,13.879284133995792,59.88056923503964 -1/14/1996,1,-11.7,1.6,0.11881800000000001,2.0075569637378523,23.800000000000004,172.5604419181098,12.318477196576339,59.376922057038634 -1/15/1996,1,-13.8,0.4,0.11205599999999999,1.877347264173993,24.200000000000003,172.4483859181098,10.960575161021415,58.80530747572668 -1/16/1996,1,-16.2,0.0,0.104328,1.761449371438994,24.200000000000003,172.3440579181098,9.779200390088631,58.177230084263215 -1/17/1996,1,-14.7,0.0,0.109158,1.6580550597273924,24.200000000000003,172.2348999181098,8.751404339377109,57.50264550208238 -1/18/1996,1,-15.1,0.0,0.10787,1.5655901264067897,24.200000000000003,172.1270299181098,7.857221775258085,56.790162809009594 -1/19/1996,1,-14.2,0.0,0.11076799999999999,1.4826839899289865,24.200000000000003,172.0162619181098,7.079282944474534,56.04722064159231 -1/20/1996,1,-7.2,0.0,0.133308,1.408143239594196,24.200000000000003,171.8829539181098,6.402476161692844,55.28024037598419 -1/21/1996,1,-0.8,1.3,0.153916,1.3409286234358084,25.500000000000004,171.72903791810978,5.813654260672774,54.494759376549155 -1/22/1996,1,1.2,0.7,0.160356,1.4419871542847242,20.400000000000006,171.97361101789346,10.696450107001645,53.69554690205181 -1/23/1996,1,1.8,15.5,0.16228800000000002,2.289111424691378,12.750000000000005,173.35540961251561,31.15532499846929,53.15645846936086 -1/24/1996,1,0.8,7.0,0.15906800000000001,3.504465121997808,9.350000000000005,173.70574232530387,37.23923203588004,53.65109554989711 -1/25/1996,1,-0.5,0.0,0.154882,3.6865112627443346,9.350000000000005,173.5508603253039,32.64163187121564,54.44003524069316 -1/26/1996,1,0.8,0.0,0.15906800000000001,3.444760672383574,5.950000000000005,173.5497535121285,31.883758541133023,54.983316129440084 -1/27/1996,1,2.5,1.8,0.164542,3.5214106994472916,0.0,173.74538085249816,35.37220059041606,55.47783773390793 -1/28/1996,1,2.8,0.9,0.16550800000000002,3.6041807512299693,0.0,173.6194239816883,31.877763384471844,56.136891008750574 -1/29/1996,1,4.5,0.1,0.17098200000000002,3.3247268997062345,0.0,173.45299934862348,28.0725967775553,56.60804135779915 -1/30/1996,1,6.5,0.0,0.17742200000000002,3.0377198221623773,0.0,173.27557734862347,24.666659196473113,56.87951036952093 -1/31/1996,1,5.2,0.0,0.17323600000000003,2.7804428272906874,0.0,173.10234134862347,21.703493500931607,56.97525312195417 -2/1/1996,2,5.9,1.4,0.201196,2.5936652227507513,0.0,172.9742815940027,20.452403100431262,56.920922734561664 -2/2/1996,2,4.3,0.0,0.195468,2.456335364640659,0.0,172.77881359400268,18.0370906973752,56.805124434891994 -2/3/1996,2,4.7,2.1,0.19690000000000002,2.327292081538467,0.0,172.70034859910413,17.91733390161496,56.57087648106292 -2/4/1996,2,2.2,3.9,0.18795,2.364304314751343,0.0,172.73627553550426,19.50770355800489,56.335325646522406 -2/5/1996,2,6.1,1.8,0.201912,2.4229463796310364,0.0,172.63686178093695,18.912703850031594,56.1840043114922 -2/6/1996,2,8.0,0.7,0.20871399999999998,2.342958364120861,0.0,172.46890068833102,17.356799442133422,56.00595941776393 -2/7/1996,2,4.0,9.3,0.194394,2.461887736522049,0.0,172.8359501901514,24.08247201283571,55.75368020151533 -2/8/1996,2,6.2,2.2,0.20226999999999998,2.775661889623045,0.0,172.75614134069437,23.272789500624107,55.84273019812681 -2/9/1996,2,6.6,28.4,0.20370199999999997,3.4563559170533606,0.0,174.16239485162916,47.280871354608195,55.889515069195475 -2/10/1996,2,4.7,3.9,0.19690000000000002,4.617084971502707,0.0,174.11581836142304,45.127534568715255,57.135768335541975 -2/11/1996,2,4.1,1.6,0.194752,4.4091198408378975,0.0,173.9837041543121,41.04181728189321,58.2494296972669 -2/12/1996,2,1.2,0.0,0.18437,4.0698179345003975,0.0,173.7993341543121,35.949881035247095,59.13653196741622 -2/13/1996,2,1.3,1.3,0.184728,3.7319301872691577,0.0,173.67082839130381,32.76367426367328,59.75129537983025 -2/14/1996,2,-0.8,4.0,0.17720999999999998,3.461009675173883,4.0,173.4936183913038,28.747896609395752,60.194453185417316 -2/15/1996,2,-1.0,0.6,0.17649399999999998,3.160079111018592,4.6,173.31712439130382,25.254170050174306,60.427958952178756 -2/16/1996,2,1.7,0.0,0.18616,3.0264620478774127,0.0,173.35854633976146,26.58704599519399,60.482108275643895 -2/17/1996,2,3.9,0.1,0.19403600000000001,3.0019687472361594,0.0,173.16940437962538,23.469335975954852,60.60181840989072 -2/18/1996,2,5.6,0.1,0.20012199999999997,2.763932313347238,0.0,172.97442008738335,20.75668459132275,60.563248840490644 -2/19/1996,2,5.7,0.0,0.20048000000000002,2.5511850592646006,0.0,172.77394008738335,18.301815594450794,60.389818093246966 -2/20/1996,2,4.7,0.0,0.19690000000000002,2.3585154169597966,0.0,172.57704008738335,16.16607956717219,60.09711251110457 -2/21/1996,2,5.7,0.0,0.20048000000000002,2.1881131398466254,0.0,172.37656008738335,14.307989223439806,59.70347423924109 -2/22/1996,2,5.6,1.9,0.20012199999999997,2.090630595420773,0.0,172.29338704723543,14.474501664540583,59.22480421562826 -2/23/1996,2,2.5,0.1,0.189024,2.043407393449942,0.0,172.11062463098378,12.930054864401951,58.76403321454273 -2/24/1996,2,3.1,0.4,0.191172,1.9237078706240123,0.0,171.945432978531,11.866667384482502,58.23525529347197 -2/25/1996,2,6.2,0.0,0.20226999999999998,1.8201360590956517,0.0,171.743162978531,10.567500624499777,57.66388355682666 -2/26/1996,2,5.9,0.3,0.201196,1.71714469587162,0.0,171.5628576449015,9.716334876944297,57.038980916915115 -2/27/1996,2,6.4,1.3,0.20298599999999997,1.6670932028951488,0.0,171.45337971452793,9.90320327331511,56.38401804242403 -2/28/1996,2,5.0,0.1,0.197974,1.6352487647858052,0.0,171.26273775513798,8.951954807174108,55.75149784524131 -2/29/1996,2,2.4,3.3,0.188666,1.6382318126351614,0.0,171.32401378062772,11.08175865675174,55.084065628695186 -3/1/1996,3,1.1,1.8,0.62565,1.747808293114231,0.0,170.83329663541952,11.549697176582214,54.53647224895887 -3/2/1996,3,1.3,0.0,0.62823,1.7232015083940826,0.0,170.2050666354195,10.291736543626527,54.02322766280881 -3/3/1996,3,1.8,0.7,0.63468,1.6352820944729505,0.0,169.63275514314307,9.834942285231502,53.457349936733955 -3/4/1996,3,2.8,2.5,0.64758,1.6376221588696303,0.0,169.22587347919986,11.05920145209461,52.87995005226085 -3/5/1996,3,1.6,0.0,0.6321,1.6529164529808071,0.0,168.59377347919985,9.865005263322312,52.37531112382037 -3/6/1996,3,2.2,0.0,0.63984,1.5509530038290293,0.0,167.95393347919986,8.82605457909041,51.82105516451008 -3/7/1996,3,4.0,0.0,0.66306,1.4599864892722683,0.0,167.29087347919986,7.922167483808657,51.225936790174394 -3/8/1996,3,4.4,0.0,0.66822,1.3786324740890654,0.0,166.62265347919987,7.135785710913531,50.59752642856134 -3/9/1996,3,4.1,0.4,0.66435,1.3160834244814972,0.0,166.0117092068578,6.798227840836832,49.942365185535785 -3/10/1996,3,2.5,0.5,0.64371,1.2797042941636978,0.0,165.43848020690191,6.587477221483936,49.28342927386691 -3/11/1996,3,-0.6,6.3,0.60372,1.2376547075442028,6.3,164.8347602069019,5.974605182691024,48.62713454946376 -3/12/1996,3,-1.9,7.7,0.5869500000000001,1.1775388967549678,14.0,164.2478102069019,5.441406508941191,47.95332211760904 -3/13/1996,3,-3.1,1.5,0.57147,1.123222555344503,15.5,163.6763402069019,4.977523662778836,47.26632600070392 -3/14/1996,3,-0.7,0.0,0.60243,1.073992064014045,15.5,163.0739102069019,4.573945586617588,46.56987566382878 -3/15/1996,3,-0.9,4.3,0.59985,1.043584406788307,19.8,162.4740602069019,4.208029939688181,45.86717542988308 -3/16/1996,3,1.1,0.0,0.62565,1.1338795830920045,15.125,162.70563392719475,7.689163824220259,45.16023341826983 -3/17/1996,3,1.8,0.0,0.63468,1.42982656517022,7.475,163.45273861636977,13.201287837896603,44.641486941115446 -3/18/1996,3,0.5,6.4,0.61791,1.8684207204727477,5.35,164.29905247886788,18.789396556471942,44.408721594187966 -3/19/1996,3,-0.4,0.3,0.6063,2.082878417750071,5.6499999999999995,163.69275247886787,16.59027500413059,44.460016990127805 -3/20/1996,3,2.1,0.0,0.6385500000000001,2.05520373500345,0.0,164.00846250625196,19.372779226209513,44.40033040053178 -3/21/1996,3,2.6,0.0,0.645,2.1276927541911763,0.0,163.36346250625195,17.09781792680228,44.48096275383162 -3/22/1996,3,3.8,0.0,0.6604800000000001,1.9538736321315553,0.0,162.70298250625194,15.118601596317982,44.446234395095104 -3/23/1996,3,0.1,1.3,0.61275,1.8325497609551082,0.0,162.3250863817477,14.461829513300906,44.313239787009095 -3/24/1996,3,-2.8,11.3,0.5753400000000001,1.747351555300878,11.3,161.74974638174768,12.825291676571787,44.15006646693396 -3/25/1996,3,-1.6,4.5,0.59082,1.6179762910155904,15.8,161.15892638174768,11.401503758617455,43.90832972142387 -3/26/1996,3,5.1,3.6,0.67725,1.9697553007954784,0.0,164.33863976620887,25.705844885536017,43.600238314926266 -3/27/1996,3,1.5,20.7,0.63081,3.1212045737722365,0.0,167.0440210287137,39.97139378791149,44.013525792904545 -3/28/1996,3,-2.2,13.0,0.58308,3.7082645665889054,13.0,166.4609410287137,35.01861259548299,45.131824966442025 -3/29/1996,3,-2.0,12.6,0.5856600000000001,3.3483238004540024,25.6,165.87528102871372,30.709692958070203,45.98011909688733 -3/30/1996,3,1.1,0.4,0.62565,3.163268754659518,20.925,165.97342791893658,31.31213598329819,46.59600136285309 -3/31/1996,3,3.9,0.0,0.6617700000000001,3.5181775181713957,4.350000000000001,167.6558176806971,41.7158985437089,47.229688134760934 -4/1/1996,4,6.2,0.0,1.663666,4.0205336361013435,0.0,166.5177859826947,40.36069743102916,48.37088929925116 -4/2/1996,4,5.4,0.0,1.636994,3.823684202197671,0.0,164.88079198269472,35.35730676499537,49.4215063848176 -4/3/1996,4,5.4,5.3,1.636994,3.5929253647386084,0.0,164.0634483821934,35.48470648604732,50.20094159537101 -4/4/1996,4,7.2,0.2,1.697006,3.4886275301244747,0.0,162.3993355561616,31.28230146889298,50.97115808776596 -4/5/1996,4,8.4,0.0,1.737014,3.1747051417718617,0.0,160.6623215561616,27.459102277936893,51.515849999455284 -4/6/1996,4,8.7,1.3,1.7470160000000001,2.9216329587837215,0.0,159.18128845064618,25.166936087320543,51.85848811336302 -4/7/1996,4,8.6,3.2,1.7436820000000002,2.795316459853337,0.0,158.14712910067922,24.629211745935795,52.07966515546179 -4/8/1996,4,9.1,3.8,1.7603520000000001,2.7708532860322688,0.0,157.2742896548936,24.583401664749747,52.26953243964934 -4/9/1996,4,7.2,2.8,1.697006,2.7472174871519845,0.0,156.25897088880524,23.749372214420678,52.453311874093835 -4/10/1996,4,5.7,2.7,1.6469960000000001,2.683320649011784,0.0,155.30017027054822,22.917258444803,52.591714247332995 -4/11/1996,4,7.5,2.2,1.707008,2.6099944906345485,0.0,154.1774534274645,21.797223690062296,52.685742884626485 -4/12/1996,4,8.2,0.1,1.7303460000000002,2.4791774981830637,0.0,152.47490772277848,19.27928431504024,52.72188921143707 -4/13/1996,4,9.9,2.2,1.7870240000000002,2.3300112715038885,0.0,151.34040298044116,18.563958096422315,52.63141564296035 -4/14/1996,4,7.4,4.3,1.7036740000000001,2.3158219186909323,0.0,150.96472888528285,19.366143639045713,52.50698523492226 -4/15/1996,4,6.8,3.7,1.68367,2.3623438714753604,0.0,150.4386493419342,19.634454509318417,52.4251527121761 -4/16/1996,4,7.2,1.7,1.697006,2.339912149998556,0.0,149.2830528695524,18.484065895488822,52.358372383398496 -4/17/1996,4,8.1,2.8,1.727012,2.2713705170648817,0.0,148.48204294261632,18.198635256011368,52.23540823050497 -4/18/1996,4,9.2,6.6,1.763686,2.321587271627145,0.0,148.9565738735906,20.438095741755593,52.10063182869544 -4/19/1996,4,7.7,6.0,1.713676,2.4806076241661845,0.0,149.2477959191107,22.01974524980728,52.08052397920931 -4/20/1996,4,2.0,13.0,1.523638,2.7431819218965514,0.0,152.02828148098044,28.09655480546259,52.13990076211549 -4/21/1996,4,4.1,0.3,1.593652,2.958278542458745,0.0,150.52505908030992,24.89707308142298,52.5019304871463 -4/22/1996,4,10.7,0.0,1.8136960000000002,2.712407172125779,0.0,148.71136308030992,21.903953580837992,52.69674553147453 -4/23/1996,4,11.9,0.0,1.8537040000000002,2.48545603349951,0.0,146.85765908030993,19.299939615329055,52.738008299886936 -4/24/1996,4,7.0,7.8,1.6903380000000001,2.43619391876071,0.0,147.94403402227474,22.057734523371483,52.648245114655644 -4/25/1996,4,9.5,5.6,1.7736880000000002,2.60644605871292,0.0,148.10087526515048,23.10319979245746,52.69816693853111 -4/26/1996,4,11.1,0.3,1.8270320000000002,2.583857842485113,0.0,146.37677438210272,20.540352702485745,52.79936358938336 -4/27/1996,4,9.2,0.2,1.763686,2.386168118135849,0.0,144.68527510135988,18.241420131905414,52.770393952719985 -4/28/1996,4,7.7,0.1,1.713676,2.206383754744245,0.0,143.00941439799234,16.175720218125242,52.627057080260855 -4/29/1996,4,12.1,0.0,1.8603720000000001,2.042443347590569,0.0,141.14904239799233,14.31637658976896,52.3833019495619 -4/30/1996,4,13.9,0.0,1.9203840000000003,1.8943103532826,0.0,139.22865839799232,12.698747633098996,52.05145474005911 -5/1/1996,5,14.9,0.0,3.3102,1.7630869554170912,0.0,135.9184583979923,11.291410440796128,51.645363026912875 -5/2/1996,5,15.3,0.0,3.3347200000000004,1.646621860312874,0.0,132.5837383979923,10.067027083492631,51.177026288414424 -5/3/1996,5,15.0,1.5,3.3163300000000002,1.5658328540282247,0.0,130.00773004339163,9.761491917239264,50.65683711682077 -5/4/1996,5,12.1,4.5,3.13856,1.5745801911879864,0.0,129.1928314807532,10.912336530636573,50.131774970346314 -5/5/1996,5,4.8,15.7,2.69107,1.8121778804421844,0.0,134.72012999704262,17.218864265364388,49.67475629747121 -5/6/1996,5,5.9,4.7,2.7585,2.1391479482273956,0.0,134.19018699913042,17.695354908779198,49.54220438479001 -5/7/1996,5,5.5,2.5,2.73398,2.1382183891641424,0.0,132.653729673951,16.94093609581731,49.43612804253317 -5/8/1996,5,5.8,0.4,2.75237,2.0449842516222523,0.0,130.09852737391475,15.184946703397314,49.29445228647337 -5/9/1996,5,6.6,1.2,2.8014099999999997,1.9181749527496694,0.0,127.91580747048613,14.035713535384275,49.067810575913775 -5/10/1996,5,8.6,0.4,2.92401,1.8132740974356092,0.0,125.20558091816709,12.640787328103379,48.78824004116471 -5/11/1996,5,13.4,1.2,3.2182500000000003,1.710596133497686,0.0,122.65610006169752,11.772215831919512,48.44451460674659 -5/12/1996,5,15.2,0.0,3.32859,1.6209553269332275,0.0,119.32751006169751,10.485327773769974,48.06423510620763 -5/13/1996,5,16.5,0.0,3.4082800000000004,1.5142827794393345,0.0,115.9192300616975,9.365735163179878,47.627216792771975 -5/14/1996,5,17.4,0.0,3.4634499999999995,1.4193966302194991,0.0,112.45578006169751,8.391689591966493,47.14295921507553 -5/15/1996,5,16.8,0.0,3.42667,1.334806268156097,0.0,109.02911006169751,7.544269945010848,46.619684510372345 -5/16/1996,5,16.0,0.2,3.3776300000000004,1.2611329737315191,0.0,105.78751524276802,6.870979671088926,46.06450431741544 -5/17/1996,5,13.0,1.0,3.19373,1.205359573680507,0.0,103.29895105388881,6.5191775277876305,45.48676321462158 -5/18/1996,5,9.6,7.7,2.9853099999999997,1.2230505813445478,0.0,105.91747485421506,8.084398947359857,44.90298682671853 -5/19/1996,5,9.7,2.1,2.99144,1.2860342203832549,0.0,104.3985841962775,7.904377742140634,44.40914703755215 -5/20/1996,5,12.2,7.7,3.14469,1.310367912200193,0.0,106.7743156115917,9.344178847166614,43.91618298390814 -5/21/1996,5,17.0,1.4,3.4389299999999996,1.3577872594546072,0.0,104.30908948314298,8.799231725483676,43.50506826658831 -5/22/1996,5,9.3,10.5,2.96692,1.3857184451553515,0.0,108.86002013392059,10.925276304351767,43.074928487530734 -5/23/1996,5,10.8,0.3,3.0588699999999998,1.453280338737503,0.0,106.00555222337461,9.844088295332018,42.759693732997704 -5/24/1996,5,9.5,0.1,2.97918,1.361772315448021,0.0,103.09643519966903,8.837793840644434,42.396704273104355 -5/25/1996,5,8.1,1.1,2.89336,1.2854281682465118,0.0,101.07094515584191,8.240842620693341,41.99065987967449 -5/26/1996,5,7.4,11.2,2.85045,1.3121194364581936,0.0,106.55260126872044,10.410650972040443,41.56288881311566 -5/27/1996,5,6.7,2.3,2.80754,1.4020067391202093,0.0,105.34813032075962,9.997697293635996,41.25216358545537 -5/28/1996,5,6.4,0.1,2.7891500000000002,1.3440549438739473,0.0,102.64375066398918,8.97099918745287,40.92700517842807 -5/29/1996,5,7.9,0.1,2.8811,1.2584709439014818,0.0,99.92322249007836,8.076022794806509,40.55701503423215 -5/30/1996,5,10.6,0.0,3.04661,1.181383852150532,0.0,97.04828539620266,7.269639831481662,40.14967587328783 -5/31/1996,5,11.4,0.0,3.09565,1.1112278781236777,0.0,94.21111923616154,6.568086653389045,39.71016434739616 -6/1/1996,6,13.2,0.0,3.7563400000000002,1.04852370218526,0.0,90.86907564723376,5.95773538844847,39.24436539311768 -6/2/1996,6,14.1,0.0,3.8253340000000002,0.9923359601544837,0.0,87.58638073154827,5.426729787950169,38.75736485467775 -6/3/1996,6,16.6,0.0,4.016984000000001,0.941850217802642,0.0,84.2637526267552,4.9647549155166475,38.253554046981705 -6/4/1996,6,15.9,0.5,3.9633220000000002,0.8989756483495036,0.0,81.52259282892177,4.650116277910437,37.7367207118179 -6/5/1996,6,14.0,10.0,3.8176680000000003,0.9210849610990822,0.0,86.96838294915322,5.893170628984697,37.214492111477064 -6/6/1996,6,15.7,6.0,3.9479900000000003,0.9814146679181468,0.0,88.5977920045607,6.49863068183256,36.76486080069676 -6/7/1996,6,16.0,0.0,3.970988,0.9854406972629468,0.0,85.27528025768558,5.897308693194327,36.35449511877445 -6/8/1996,6,18.0,5.2,4.124308,0.9590412376656763,0.0,86.22037356041288,6.3076796661595464,35.92227065105868 -6/9/1996,6,19.6,0.0,4.246964,0.9542036070216512,0.0,82.76230554098116,5.7311813095588064,35.519209221345484 -6/10/1996,6,20.7,0.0,4.33129,0.9018555797053556,0.0,79.37702320679855,5.229627739316163,35.095384102396515 -6/11/1996,6,15.7,4.5,3.9479900000000003,0.8753575537294154,0.0,80.23491561797314,5.475900353910646,34.65495780731439 -6/12/1996,6,18.5,6.4,4.162638,0.8951045289663891,0.0,82.4851224333213,6.003214596452804,34.235653668863634 -6/13/1996,6,16.1,2.4,3.978654,0.9096253363865952,0.0,81.3874147655615,5.864752668592495,33.851101325309 -6/14/1996,6,18.0,1.4,4.124308,0.8862158813426697,0.0,79.39222876470475,5.571063642279864,33.46731693223245 -6/15/1996,6,18.2,14.2,4.139640000000001,0.9139442727147011,0.0,88.33345824529188,7.245353836222402,33.076523775701794 -6/16/1996,6,20.5,2.7,4.315958000000001,0.986518322335622,0.0,86.90652940454576,7.073513689484141,32.77726099199888 -6/17/1996,6,17.0,19.3,4.047648000000001,1.0602843359100345,0.0,99.26195456081001,10.02002741010551,32.475391456633105 -6/18/1996,6,9.2,8.8,3.4497000000000004,1.2405888117200599,0.0,102.57078313864037,11.218324708488995,32.326884998005724 -6/19/1996,6,10.6,2.2,3.557024,1.2806315064336724,0.0,100.71569972585216,10.613000011327381,32.24126353347006 -6/20/1996,6,11.9,3.3,3.6566820000000004,1.240274527637149,0.0,99.66175227151014,10.352758726781317,32.12708826336703 -6/21/1996,6,15.7,0.4,3.9479900000000003,1.1948011171283013,0.0,96.24239253158471,9.353983070015342,32.00218443443875 -6/22/1996,6,15.7,0.0,3.9479900000000003,1.1122399096131825,0.0,92.65410276587717,8.381465270913349,31.829839899250747 -6/23/1996,6,12.4,0.5,3.695012,1.0371535599034094,0.0,89.81186410648783,7.644465635383795,31.6123163648114 -6/24/1996,6,12.2,4.1,3.67968,0.997736381784145,0.0,89.95951035685758,7.72557445430894,31.36229331928436 -6/25/1996,6,11.2,1.1,3.60302,0.9808652903873984,0.0,87.77462386609245,7.188668138655637,31.121326175614115 -6/26/1996,6,12.7,3.8,3.71801,0.9499325448596234,0.0,87.76257306340972,7.227749224871639,30.858333059034617 -6/27/1996,6,12.3,13.4,3.6873460000000007,1.0031006108672238,0.0,95.53270733942017,9.10540241472306,30.602553859097505 -6/28/1996,6,7.8,1.8,3.3423760000000002,1.0783016936484202,0.0,93.89525146099503,8.587203828641107,30.445772902651708 -6/29/1996,6,9.9,1.4,3.503362,1.0320702738219936,0.0,91.87357774518144,8.029524322310788,30.26621763603073 -6/30/1996,6,13.5,0.2,3.779338,0.9773825128287247,0.0,88.75172485874288,7.271963557489071,30.062369499425657 -7/1/1996,7,16.3,0.0,4.023936,0.9136958324711504,0.0,85.37906208868725,6.570108295015492,29.8247202873116 -7/2/1996,7,19.4,0.0,4.27392,0.8549248671770019,0.0,81.93300220539248,5.959494216663478,29.556731296316144 -7/3/1996,7,19.9,3.0,4.31424,0.8173020597974998,0.0,81.1045632178296,5.918530711328867,29.263571381222995 -7/4/1996,7,16.7,0.0,4.056192,0.7936897169154264,0.0,77.99779505759109,5.392621718856115,28.97422648916498 -7/5/1996,7,12.9,15.2,3.74976,0.813852111062382,0.0,88.22304484701226,7.147785473769548,28.664373045324485 -7/6/1996,7,10.1,4.1,3.523968,0.900638114298499,0.0,88.58978648608276,7.259311448263074,28.448474858106472 -7/7/1996,7,11.2,2.2,3.612672,0.8940473306909295,0.0,87.33537257998523,6.991077987020864,28.242470933357495 -7/8/1996,7,13.9,0.2,3.8304000000000005,0.8575088337827241,0.0,84.3381799508311,6.36371420502844,28.027175414041388 -7/9/1996,7,16.7,0.0,4.056192,0.803780003322904,0.0,81.10754579452625,5.779931358374744,27.784817616011985 -7/10/1996,7,14.2,0.0,3.854592,0.7540201330045276,0.0,78.15508099936886,5.272040281786027,27.518117831610482 -7/11/1996,7,15.6,11.2,3.967488,0.7587789377314232,0.0,84.78861458192388,6.468325795359012,27.231357489067573 -7/12/1996,7,19.0,0.0,4.241664,0.7962475256079042,0.0,81.39221441116156,5.870943441962339,27.010146629054173 -7/13/1996,7,15.3,0.2,3.9432960000000006,0.7468190134566369,0.0,78.52902492910701,5.383400799569864,26.763490868571203 -7/14/1996,7,12.7,0.6,3.733632,0.7060920629074717,0.0,76.27138013772566,5.01580670351377,26.497391091178272 -7/15/1996,7,12.5,0.1,3.7175040000000004,0.6702869027490166,0.0,73.67989232326559,4.621063182757336,26.218233604530397 -7/16/1996,7,10.3,10.8,3.540096,0.6872971519133309,0.0,80.64139348052686,5.626623669392591,25.924922091577656 -7/17/1996,7,8.7,19.6,3.411072,0.7983171809014141,0.0,94.55796300067263,8.224363358915666,25.68775483321573 -7/18/1996,7,10.2,6.9,3.532032,0.9487581977842816,0.0,96.72475909565247,8.977855724951812,25.5852179044972 -7/19/1996,7,10.4,5.0,3.54816,0.9936748299018809,0.0,97.27681171838175,9.261130566706447,25.522406332654846 -7/20/1996,7,12.2,3.1,3.693312,1.0008278467776388,0.0,96.2255665215668,9.059034125185828,25.475014734337073 -7/21/1996,7,13.2,6.5,3.7739520000000004,1.0080668904911239,0.0,97.74605553296492,9.674862043788,25.418466145909623 -7/22/1996,7,14.4,5.8,3.8707200000000004,1.0509883727619496,0.0,98.5380448243239,10.0956157356311,25.39383992518083 -7/23/1996,7,15.9,0.1,3.99168,1.0406526799499458,0.0,94.89829283037149,9.051900496640513,25.39074391345877 -7/24/1996,7,12.6,0.1,3.725568,0.9600575214563059,0.0,91.63636981395341,8.141733847461591,25.33552406002162 -7/25/1996,7,13.1,1.8,3.7658880000000003,0.8995888920599979,0.0,89.7947353821911,7.709473142101102,25.235900271194268 -7/26/1996,7,14.6,0.0,3.886848,0.8528290245714025,0.0,86.49868771356519,6.950741633627959,25.116655922875438 -7/27/1996,7,12.2,3.0,3.693312,0.8087007432597946,0.0,85.92481708590341,6.847548795213669,24.96185988609933 -7/28/1996,7,12.4,0.1,3.7094400000000003,0.781551725654413,0.0,82.9965034798332,6.219142777698966,24.805000128138026 -7/29/1996,7,13.3,0.0,3.782016,0.7294789106720956,0.0,80.03216214349563,5.654154216598101,24.619857264460215 -7/30/1996,7,12.0,0.0,3.677184,0.6822894924831339,0.0,77.25292910808655,5.1626141684403475,24.410167830000916 -7/31/1996,7,14.1,0.0,3.846528,0.6402818418547687,0.0,74.44666265331017,4.734974326543102,24.180095181822914 -8/1/1996,8,11.3,8.2,2.948564,0.641446639475923,0.0,79.50377168688706,5.426059986188356,23.93324199451361 -8/2/1996,8,16.4,13.1,3.277616,0.7110855637534452,0.0,88.14822945952862,6.958832045512407,23.725880153932756 -8/3/1996,8,14.5,25.9,3.1550279999999997,0.9161436198942535,0.0,106.39564284679082,11.323864485201291,23.599304153129722 -8/4/1996,8,13.3,3.9,3.077604,1.1347512836327474,0.0,106.04037316604466,11.2729277828713,23.69351129432719 -8/5/1996,8,11.9,3.6,2.987276,1.12969750270048,0.0,105.57453219030167,11.129512146841027,23.783287457584212 -8/6/1996,8,15.2,0.0,3.200192,1.0880428206900938,0.0,102.38387421203039,9.926175567751693,23.86409731577458 -8/7/1996,8,12.2,4.0,3.0066319999999997,1.029955830970048,0.0,102.37324861733889,9.98281898751766,23.883124147846672 -8/8/1996,8,12.2,4.2,3.0066319999999997,1.0363428065560012,0.0,102.5080299911346,10.086993496493522,23.90460261426562 -8/9/1996,8,16.5,0.0,3.284068,1.0100424098192566,0.0,99.32885026654375,9.019184341949364,23.930860236804985 -8/10/1996,8,18.9,0.0,3.4389160000000003,0.9282289734056737,0.0,96.10301617037582,8.090190377495945,23.903202249166355 -8/11/1996,8,21.5,0.0,3.6066680000000004,0.8560614421885979,0.0,92.82969788606968,7.281965628421473,23.829647723057825 -8/12/1996,8,23.1,0.0,3.7099,0.7923056453232289,0.0,89.57737097901963,6.578810096726682,23.717153050017743 -8/13/1996,8,19.3,0.0,3.4647240000000004,0.735887458237975,0.0,86.64639669355441,5.967064784152213,23.571750493853724 -8/14/1996,8,11.1,0.0,2.93566,0.6858720045376687,0.0,84.24424010731019,5.434846362212426,23.39866872318426 -8/15/1996,8,7.9,10.8,2.729196,0.6979719061270997,0.0,90.98872780643944,6.856027822661814,23.202437666831198 -8/16/1996,8,9.9,1.3,2.858236,0.7553265445050343,0.0,89.5609137171536,6.480044909313008,23.081190304627665 -8/17/1996,8,13.9,0.6,3.116316,0.7194338726183451,0.0,87.40428927111687,6.002008409089318,22.94356874400076 -8/18/1996,8,13.8,5.5,3.109864,0.7076424197284454,0.0,89.29104125417781,6.5115347827491785,22.78479778957521 -8/19/1996,8,13.9,27.3,3.116316,0.876247083950392,0.0,108.50253790717368,11.369225778483655,22.654678572921167 -8/20/1996,8,14.6,11.9,3.16148,1.197289557808916,0.0,113.47820623188797,13.89757810256649,22.770046290386926 -8/21/1996,8,13.5,6.1,3.090508,1.3458968535664986,0.0,114.34450907965335,14.477582101467458,23.009524269707512 -8/22/1996,8,12.2,3.7,3.0066319999999997,1.3707155266216091,0.0,113.71446804924666,14.162405458683383,23.273212889386734 -8/23/1996,8,9.7,0.0,2.845332,1.311881433496469,0.0,110.86913604924666,12.564792749054543,23.51586890453317 -8/24/1996,8,7.7,0.1,2.7162919999999997,1.1944595104705957,0.0,108.21957874959199,11.208134991332122,23.673791163895235 -8/25/1996,8,8.9,2.1,2.793716,1.111757623914772,0.0,106.86589244056802,10.654547751482907,23.760722090183936 -8/26/1996,8,10.6,0.0,2.9034,1.0509807846069372,0.0,103.96249244056801,9.51295654379013,23.8182350359544 -8/27/1996,8,10.4,0.0,2.890496,0.9640913562309252,0.0,101.12461191786056,8.519772193097413,23.81751816242482 -8/28/1996,8,13.6,0.0,3.0969599999999997,0.887502792071337,0.0,98.16702500573348,7.655701807994751,23.76715640883119 -8/29/1996,8,12.4,3.2,3.019536,0.8438884490701275,0.0,97.76796319699717,7.703713041643464,23.6745983710543 -8/30/1996,8,12.2,0.8,3.0066319999999997,0.8277244036438206,0.0,95.59391431038907,7.143763681577987,23.58629205571539 -8/31/1996,8,12.7,1.7,3.0388919999999997,0.7888552866252116,0.0,94.15134587126153,6.857733819090419,23.471754398679984 -9/1/1996,9,15.2,1.1,2.44965,0.7600590661401695,0.0,92.82404345353369,6.458941838414348,23.345206001660905 -9/2/1996,9,13.5,2.1,2.370328,0.7331602198565985,0.0,92.38603558343439,6.322938282163766,23.201248973548406 -9/3/1996,9,16.5,5.6,2.510308,0.742453818302081,0.0,94.5823361606022,6.957982867672673,23.053370908185627 -9/4/1996,9,13.5,1.8,2.370328,0.7644776766119152,0.0,93.85292386015425,6.70914935200569,22.940202633405548 -9/5/1996,9,15.5,0.2,2.4636480000000005,0.7320576290470371,0.0,91.82435700718598,6.125434682666604,22.816856048337723 -9/6/1996,9,17.2,0.0,2.5429700000000004,0.6832863925810146,0.0,89.619176299484,5.572628173919947,22.666790661504297 -9/7/1996,9,18.5,0.0,2.6036280000000005,0.6377237291747121,0.0,87.41561603175076,5.091686511310353,22.492086256970207 -9/8/1996,9,17.1,0.1,2.5383040000000006,0.5977897967287507,0.0,85.4011348713833,4.692296467176883,22.29682885739632 -9/9/1996,9,16.4,0.0,2.5056420000000004,0.5712175245662268,0.0,83.38031448814218,4.316912749802732,22.085507103607238 -9/10/1996,9,17.6,0.0,2.561634,0.55633964387506,0.0,81.36322270871524,3.9715597298185137,21.85964259902523 -9/11/1996,9,18.6,0.0,2.6082940000000003,0.5420356032137039,0.0,79.35907495527482,3.6538349514330326,21.621027733535648 -9/12/1996,9,12.7,6.7,2.333,0.5587461724913869,0.0,83.29480054981467,4.37733979875517,21.371298926436587 -9/13/1996,9,10.9,4.9,2.249012,0.5690415173491863,0.0,85.59328636863579,4.859557286409133,21.162739937845615 -9/14/1996,9,12.3,0.0,2.314336,0.5537730411730752,0.0,83.72255613914062,4.470792703496403,20.98246300340916 -9/15/1996,9,7.7,5.7,2.0997000000000003,0.5685219608077234,0.0,86.7823820679446,5.093163107913583,20.786353378515795 -9/16/1996,9,8.3,0.6,2.1276960000000003,0.5672676340582103,0.0,85.52638306407884,4.786792977856937,20.625284466341157 -9/17/1996,9,9.7,0.0,2.19302,0.5411578547069951,0.0,83.75510089780076,4.403849539628381,20.45211842590718 -9/18/1996,9,9.3,0.0,2.1743560000000004,0.5268116179811525,0.0,82.03526516101978,4.051541576458111,20.263268534370457 -9/19/1996,9,9.7,0.0,2.19302,0.513034152360363,0.0,80.33628530264392,3.7274182503414623,20.060580242505953 -9/20/1996,9,11.4,0.0,2.272342,0.4997915347128825,0.0,78.61231216809693,3.4292247903141453,19.845739550172908 -9/21/1996,9,11.7,0.0,2.28634,0.48705232418637356,0.0,76.91494250332777,3.1548868070890137,19.62028599868516 -9/22/1996,9,10.4,0.0,2.2256820000000004,0.47478736825697493,0.0,75.29828178880616,2.9024958625218926,19.385624619065908 -9/23/1996,9,9.8,0.0,2.1976860000000005,0.46296962420181786,0.0,73.73550929176854,2.6702961935201412,19.143036919810683 -9/24/1996,9,10.9,0.0,2.249012,0.45157399476296545,0.0,72.16943085921307,2.45667249803853,18.893690991090477 -9/25/1996,9,11.8,0.0,2.2910060000000003,0.44057717686927533,0.0,70.60799352693388,2.2601386981954477,18.638650796170595 -9/26/1996,9,12.9,0.0,2.3423320000000003,0.4299575223733335,0.0,69.04611457052695,2.079327602339812,18.378884715156957 -9/27/1996,9,13.7,0.0,2.3796600000000003,0.419694909843995,0.0,67.49444513055245,1.9129813941526272,18.115273400970807 -9/28/1996,9,12.2,0.0,2.30967,0.40977062653179297,0.0,66.02225800160086,1.759942882620417,17.848617002659022 -9/29/1996,9,12.2,0.0,2.30967,0.40016725969506073,0.0,64.58218218104597,1.6191474520107838,17.579641806736863 -9/30/1996,9,13.5,0.6,2.370328,0.3925502006780031,0.0,63.680468546152596,1.5456691271316605,17.309006343202665 -10/1/1996,10,13.5,2.9,1.068672,0.39132624158564633,0.0,65.6756678031588,1.6841349377247476,17.040109672695195 -10/2/1996,10,15.4,1.6,1.1054559999999998,0.3868171568088169,0.0,66.43454431114935,1.7048957428755427,16.78351422612753 -10/3/1996,10,16.7,0.0,1.1306239999999999,0.37771689707834016,0.0,65.7251998005511,1.5685040834454993,16.53308872874876 -10/4/1996,10,15.7,0.0,1.1112639999999998,0.368907755870017,0.0,65.03544582537724,1.4430237567698592,16.28085215834606 -10/5/1996,10,15.3,0.0,1.10352,0.36037518174720073,0.0,64.35768668686349,1.3275818562282704,16.027386303017632 -10/6/1996,10,13.4,0.0,1.0667360000000001,0.35210561262727413,0.0,63.70934726609101,1.2213753077300087,15.773217669768693 -10/7/1996,10,14.1,0.1,1.080288,0.3443578471317947,0.0,63.15033734278825,1.132713516553276,15.518822081759819 -10/8/1996,10,13.0,0.0,1.0589920000000002,0.33656451937591614,0.0,62.51877910269651,1.0420964352290139,15.265081315952287 -10/9/1996,10,13.4,1.4,1.0667360000000001,0.3326350197805915,0.0,63.167782574678974,1.0799109850899236,15.01188451139469 -10/10/1996,10,12.2,1.4,1.043504,0.32884316870675884,0.0,63.82112983199432,1.1176773766110975,14.765642370421293 -10/11/1996,10,11.8,1.9,1.03576,0.3265509472736856,0.0,64.92423915169397,1.2008893145605712,14.526213391843424 -10/12/1996,10,11.7,1.9,1.033824,0.32445081332570247,0.0,66.0106517035553,1.284538051033694,14.295733589734583 -10/13/1996,10,11.1,0.0,1.022208,0.3169341666183615,0.0,65.37341857241366,1.1817750069509985,14.074045820491577 -10/14/1996,10,11.5,0.0,1.029952,0.3096500632804335,0.0,64.7375560433222,1.0872330063949187,13.851653654429295 -10/15/1996,10,10.2,0.0,1.004784,0.30258727560970894,0.0,64.12326517061058,1.0002543658833252,13.628982231660457 -10/16/1996,10,9.4,0.5,0.989296,0.2971133746758084,0.0,63.97824732112999,0.9661689523126697,13.406415305321413 -10/17/1996,10,8.7,0.0,0.975744,0.2903981720204421,0.0,63.38870731778587,0.8888754361276562,13.18659544683062 -10/18/1996,10,7.4,0.0,0.950576,0.2838791082311311,0.0,62.81966601221111,0.8177654012374437,12.96730730970039 -10/19/1996,10,8.4,4.2,0.969936,0.2885774693863929,0.0,66.07657574620903,1.1200160238342607,12.748849433568255 -10/20/1996,10,7.5,11.9,0.9525119999999999,0.3171037175517025,0.0,76.2090703098073,2.2035417543310154,12.549873246088604 -10/21/1996,10,8.2,2.4,0.9660639999999999,0.31892390170582774,0.0,77.5829573116654,2.358094810938669,12.409052868883382 -10/22/1996,10,13.7,0.2,1.072544,0.3115215062195701,0.0,76.96837917409385,2.1981991726172376,12.278776552052648 -10/23/1996,10,12.4,0.4,1.047376,0.3052256909052293,0.0,76.55063270646318,2.078782377079338,12.143110979642456 -10/24/1996,10,11.3,6.6,1.02608,0.3250404980213077,0.0,81.48944124907935,2.831891348107873,12.004187878903574 -10/25/1996,10,7.3,1.6,0.9486399999999999,0.324019074142073,0.0,82.10123597995916,2.8635033455818357,11.905698688730896 -10/26/1996,10,3.6,12.2,0.8770079999999999,0.3753499351153956,0.0,91.617851089342,4.637824582356276,11.810759882235368 -10/27/1996,10,2.8,1.3,0.86152,0.37241980816287007,0.0,91.89621143884943,4.5430363296233525,11.806435913708475 -10/28/1996,10,1.2,1.1,0.830544,0.3683993404401935,0.0,92.04001524559033,4.415005340062801,11.797459011915473 -10/29/1996,10,-0.5,5.0,0.7976319999999999,0.35749934935933936,5.0,91.34671029290007,4.0618049128577765,11.782260098680304 -10/30/1996,10,-2.0,0.3,0.768592,0.3470999184418664,5.3,90.68367931020633,3.7368605198291545,11.749705142349587 -10/31/1996,10,-3.9,0.0,0.731808,0.33716843165716576,5.3,90.05696250986028,3.4379116782428225,11.701554065494053 -11/1/1996,11,-2.1,0.0,0.2997,0.3276747336814282,5.3,89.80207468604118,3.1628787439833967,11.639418568096312 -11/2/1996,11,-1.8,0.0,0.301698,0.3185909360126129,5.3,89.5462138273328,2.9098484444647252,11.564774133933557 -11/3/1996,11,-1.6,1.5,0.30303,0.30989123853678885,6.8,89.28995554821205,2.6770605689075473,11.478971073478123 -11/4/1996,11,0.0,15.0,0.313686,0.39156057549640055,6.8,101.02515144948612,5.463189396244059,11.383244680453938 -11/5/1996,11,6.2,0.0,0.354978,0.4626698499719558,0.0,105.66843695746206,6.8145198342203885,11.428739256657062 -11/6/1996,11,6.2,0.0,0.354978,0.5132077686488704,0.0,105.31420170942839,6.1721322557717375,11.540890463234941 -11/7/1996,11,7.2,0.0,0.36163800000000007,0.4658778499994058,0.0,104.95453018919235,5.613255062521411,11.61867926675883 -11/8/1996,11,7.6,0.0,0.36430200000000007,0.4243130789488739,0.0,104.59344656224945,5.127031904393628,11.666968434549725 -11/9/1996,11,4.2,0.0,0.341658,0.3877717411459234,0.0,104.25597193985296,4.7040177568224575,11.689980661078412 -11/10/1996,11,0.6,1.2,0.317682,0.37402249753940425,0.0,104.79772658463837,4.673161960848165,11.691381935697965 -11/11/1996,11,-1.4,0.0,0.304362,0.3628035180199376,0.0,104.49650413059405,4.299309003980312,11.691212395026414 -11/12/1996,11,-3.1,0.0,0.29304,0.3521080004563546,0.0,104.20732049124727,3.9553642836618867,11.6723535973249 -11/13/1996,11,-2.0,0.0,0.300366,0.341901549020298,0.0,103.91172755492964,3.6389351409689357,11.636674739561496 -11/14/1996,11,0.5,1.2,0.317016,0.34243609860857405,0.0,104.45784319796924,3.6906112857399926,11.585888001818713 -11/15/1996,11,0.5,8.8,0.317016,0.4089836121136148,0.0,110.40015733953216,5.940319866407602,11.538700806069338 -11/16/1996,11,-0.1,5.1,0.31302,0.4479621974989852,5.1,110.08713733953216,5.411578283774615,11.604942783268331 -11/17/1996,11,-0.4,0.3,0.311022,0.4084945642310821,5.3999999999999995,109.77611533953217,4.951573106883916,11.643422841791695 -11/18/1996,11,-1.9,3.6,0.301032,0.37378237423986715,9.0,109.47508333953216,4.551368602989007,11.658133040300058 -11/19/1996,11,-1.6,0.6,0.30303,0.35866854963536676,9.6,109.17205333953216,4.187259114749887,11.652538809643506 -11/20/1996,11,-0.3,0.2,0.311688,0.3481453713508595,9.799999999999999,108.86036533953215,3.8522783855698957,11.62885098918813 -11/21/1996,11,0.0,0.6,0.313686,0.3438365585924128,9.799999999999999,108.95548209363126,3.7352933606251844,11.588887888682862 -11/22/1996,11,-0.9,0.0,0.307692,0.3339715927320644,9.799999999999999,108.64779009363126,3.4364698917751695,11.543874798940465 -11/23/1996,11,-1.8,0.1,0.301698,0.32454298496400297,9.899999999999999,108.34609209363126,3.1615523004331556,11.484820797550414 -11/24/1996,11,-3.0,0.4,0.293706,0.3155228834243764,10.299999999999999,108.05238609363126,2.9086281163985035,11.413201996621064 -11/25/1996,11,-3.8,0.2,0.288378,0.3068855232627701,10.499999999999998,107.76400809363126,2.675937867086623,11.330369362508568 -11/26/1996,11,0.2,0.2,0.315018,0.30840896130158124,9.649999999999999,108.17226013370673,2.7885927976442226,11.237558868612728 -11/27/1996,11,2.9,0.4,0.333,0.3946654553276771,0.0,114.7340752173653,5.720690290174114,11.152237331122684 -11/28/1996,11,-2.4,9.9,0.297702,0.42345407306242877,9.9,114.4363732173653,5.22050055245148,11.215227099008935 -11/29/1996,11,-0.4,2.5,0.311022,0.3861240437345842,12.4,114.1253512173653,4.785335480632788,11.251947584651331 -11/30/1996,11,4.7,7.1,0.344988,0.5656992355033603,0.0,126.33701428076209,11.34585757878538,11.266175406989944 -12/1/1996,12,2.9,8.9,0.171626,0.9801119233454062,0.0,131.04124607929373,14.138538295011633,11.608144777789414 -12/2/1996,12,-1.3,2.2,0.158102,1.0814059401900695,2.2,130.88314407929371,12.544028316660121,12.082908796984208 -12/3/1996,12,-2.3,7.6,0.154882,0.9677745956353858,9.8,130.72826207929373,11.156804635494305,12.468452036877531 -12/4/1996,12,-2.5,1.3,0.154238,0.8683762973194105,11.100000000000001,130.57402407929374,9.949920032880046,12.776923227914697 -12/5/1996,12,-3.1,0.5,0.152306,0.7813715298021796,11.600000000000001,130.42171807929373,8.89993042860564,13.018880765000405 -12/6/1996,12,-3.3,0.0,0.151662,0.7051596990395026,11.600000000000001,130.27005607929374,7.9864394728869055,13.203499671130679 -12/7/1996,12,-2.6,0.0,0.153916,0.6383480769137417,11.600000000000001,130.11614007929373,7.191702341411608,13.338751651352412 -12/8/1996,12,0.0,0.4,0.16228800000000002,0.585539731485905,11.600000000000001,130.16002045940832,6.694112656913525,13.431561735395944 -12/9/1996,12,2.7,9.5,0.17098200000000002,0.8483427724297997,0.125,140.7919359071414,16.239480563781648,13.497636133533701 -12/10/1996,12,0.2,23.3,0.162932,1.690291570304859,0.0,150.3917055531403,28.03414644449115,14.03965743905211 -12/11/1996,12,3.1,8.5,0.17227,2.374076133781031,0.0,152.93073031629555,30.421912643552044,15.160571612495627 -12/12/1996,12,0.2,8.7,0.162932,2.5913615185467354,0.0,155.30513664549693,32.87322567068888,16.378455812423315 -12/13/1996,12,-1.7,10.2,0.156814,2.6193484331336094,10.2,155.14832264549693,28.843206333499325,17.694547979709295 -12/14/1996,12,-3.5,3.5,0.15101799999999999,2.3344293487151004,13.7,154.99730464549694,25.337089510144413,18.782817336790075 -12/15/1996,12,-5.4,0.0,0.1449,2.0854378210332194,13.7,154.85240464549693,22.28676787382564,19.674015465561492 -12/16/1996,12,-0.2,0.0,0.161644,1.8677255061969618,13.7,154.69076064549694,19.632988050228306,20.394873549941543 -12/17/1996,12,3.1,0.1,0.17227,1.967037934949592,0.5249999999999986,158.13382282222577,26.983867426969805,20.96862548145413 -12/18/1996,12,3.0,1.0,0.17194800000000002,2.2903041211929116,0.0,158.31827871765782,24.888060766031685,21.89844634317354 -12/19/1996,12,3.0,0.5,0.17194800000000002,2.123409954159309,0.0,158.262133358589,22.28031022551639,22.704880454611654 -12/20/1996,12,-1.8,7.0,0.156492,1.926632575297702,7.0,158.10564135858903,19.62736989619926,23.36479835679524 -12/21/1996,12,-2.4,5.1,0.15456,1.7350252667901493,12.1,157.95108135858902,17.319311809693353,23.8788708844693 -12/22/1996,12,1.4,6.4,0.166796,1.8502907773776067,6.15,160.69625310810065,24.749333524921585,24.26725905726458 -12/23/1996,12,3.4,7.2,0.17323600000000003,2.4663318276853716,0.0,163.24918592838293,32.3992513463995,25.01938055236537 -12/24/1996,12,-2.1,29.1,0.155526,2.7521671376337626,29.1,163.09365992838292,28.430848671367563,26.138955508638034 -12/25/1996,12,-5.7,2.0,0.143934,2.4681469605317448,31.1,162.94972592838292,24.978338344089778,27.03771883203365 -12/26/1996,12,-2.3,0.0,0.154882,2.2195741754371814,31.1,162.79484392838293,21.974654359358105,27.745881372597466 -12/27/1996,12,-0.3,0.1,0.161322,2.00187012600942,31.200000000000003,162.63352192838292,19.361449292641552,28.289696463113422 -12/28/1996,12,1.8,0.1,0.168084,2.0013570167670585,23.550000000000004,163.8718970741372,23.43150173884388,28.69197499848323 -12/29/1996,12,1.9,13.5,0.168406,2.6720533220423395,15.475000000000005,167.301263473897,38.60613411303435,29.289710585455758 -12/30/1996,12,1.6,4.9,0.16744,3.6214716160464895,8.675000000000004,168.59864519201005,44.066014960226816,30.63422307939836 -12/31/1996,12,3.6,3.8,0.17388,4.0951176062989845,0.0,169.78669584170044,49.69400236570695,32.22483936582174 -1/1/1997,1,-0.7,7.8,0.154238,4.226819433966112,7.8,169.63245784170044,43.477282058165045,34.06504269679065 -1/2/1997,1,-4.6,3.2,0.14168,3.783578283541622,11.0,169.49077784170044,38.06873539060359,35.557605945763086 -1/3/1997,1,-4.1,1.0,0.14329,3.3958335751524937,12.0,169.34748784170043,33.36329978982513,36.74989059637801 -1/4/1997,1,-5.2,2.7,0.139748,3.0564132694845263,14.7,169.20773984170043,29.269570817147862,37.683057773941705 -1/5/1997,1,-6.9,2.2,0.134274,2.759076842371358,16.9,169.07346584170043,25.708026610918637,38.39287515932027 -1/6/1997,1,-8.9,1.5,0.127834,2.4983942048245042,18.4,168.94563184170042,22.609483151499216,38.910418986679794 -1/7/1997,1,-9.7,0.6,0.125258,2.2696403631195134,19.0,168.82037384170042,19.913750341804317,39.262684764521154 -1/8/1997,1,-11.7,0.2,0.11881800000000001,2.0687037727377273,19.2,168.7015558417004,17.568462797369754,39.47311858632095 -1/9/1997,1,-13.7,0.0,0.11237799999999999,1.8920066059690988,19.2,168.5891778417004,15.528062633711688,39.562079354463016 -1/10/1997,1,-8.4,0.0,0.129444,1.7364353844066462,19.2,168.4597338417004,13.752914491329168,39.54724089905934 -1/11/1997,1,-2.1,1.0,0.14973,1.599280628903042,20.2,168.3100038417004,12.208535607456376,39.44394180564461 -1/12/1997,1,-0.5,1.3,0.154882,1.4781843547255211,21.5,168.1551218417004,10.864925978487047,39.26548974990454 -1/13/1997,1,0.8,0.7,0.15906800000000001,1.4799899658590325,18.1,168.46620138104868,13.325838061935475,39.0234262538308 -1/14/1997,1,0.7,0.7,0.158746,1.654118756117885,15.125000000000002,168.71470581546282,15.104728679469734,38.90924963185096 -1/15/1997,1,-0.7,0.0,0.154238,1.691000873971395,15.125000000000002,168.56046781546283,13.384613951138668,38.886301073187425 -1/16/1997,1,-2.3,0.0,0.14908600000000002,1.5579302366672647,15.125000000000002,168.41138181546282,11.888114137490641,38.77780574928061 -1/17/1997,1,-1.5,0.0,0.151662,1.4404235926864284,15.125000000000002,168.25971981546283,10.586159299616858,38.59665534116953 -1/18/1997,1,-2.1,0.0,0.14973,1.3364923266873827,15.125000000000002,168.10998981546282,9.453458590666667,38.354030199326985 -1/19/1997,1,0.3,0.0,0.15745800000000001,1.2782481616717303,13.850000000000001,168.09944806797878,9.596092721364048,38.059622524873774 -1/20/1997,1,2.1,0.4,0.163254,1.4971107232162248,4.925000000000001,169.01191497092776,16.841379764637743,37.7782347104445 -1/21/1997,1,0.6,2.9,0.158424,1.949219409957633,2.375000000000001,169.42046997828274,19.778521387879863,37.864739004467495 -1/22/1997,1,-0.8,3.0,0.153916,2.0308778834931003,5.375000000000001,169.26655397828273,17.45081360745548,38.09637029377213 -1/23/1997,1,0.8,1.0,0.15906800000000001,1.974638414372765,1.9750000000000005,169.5512583956156,19.3819354211534,38.206983568269465 -1/24/1997,1,2.7,6.9,0.165186,2.2473531563639355,0.0,170.2496038137847,25.11725239823436,38.411940667961744 -1/25/1997,1,3.9,4.4,0.16905,2.573532228780053,0.0,170.47011942098024,26.105943979268336,38.89956447451423 -1/26/1997,1,4.7,26.9,0.171626,3.2767957214873777,0.0,172.6054608548032,47.548703828140475,39.42687038398736 -1/27/1997,1,4.2,6.0,0.170016,4.372024954336665,0.0,172.78717053277379,47.25914665251162,41.01576816771463 -1/28/1997,1,7.1,0.0,0.17935399999999999,4.211394262995853,0.0,172.6078165327738,41.358957587685104,42.55841013698593 -1/29/1997,1,5.3,0.0,0.17355800000000002,3.7867254686954457,0.0,172.43425853277378,36.22579310128604,43.77518981363046 -1/30/1997,1,3.9,0.0,0.16905,3.41480736845631,0.0,172.26520853277378,31.759939998118853,44.71097567242215 -1/31/1997,1,4.6,0.1,0.171304,3.0916425688142324,0.0,172.10020214011396,27.96835019102323,45.40475315887965 -2/1/1997,2,5.7,0.9,0.20048000000000002,2.835340695555346,0.0,171.9582976763335,25.417389129970687,45.89507560525322 -2/2/1997,2,6.6,0.6,0.20370199999999997,2.6398250829429926,0.0,171.79473237102385,22.916491848384148,46.248043549646695 -2/3/1997,2,4.9,0.3,0.197616,2.4455073647735763,0.0,171.61781004802108,20.46015423109698,46.46890727107297 -2/4/1997,2,0.1,0.1,0.18043199999999998,2.2548597820524163,0.0,171.44450110396076,18.13671112511468,46.56253683720636 -2/5/1997,2,0.3,0.0,0.181148,2.0747711497555863,0.0,171.26335310396075,16.022438678849767,46.53812165671797 -2/6/1997,2,0.3,0.0,0.181148,1.9112822066109891,0.0,171.08220510396075,14.183021650599297,46.4084811575261 -2/7/1997,2,-2.1,0.0,0.172556,1.7669221999487172,0.0,170.90964910396076,12.582728836021388,46.18946261690554 -2/8/1997,2,-4.2,1.4,0.165038,1.6392468605485977,1.4,170.74461110396075,11.190474087338607,45.8948098063685 -2/9/1997,2,-6.4,0.9,0.157162,1.5261288243386293,2.3,170.58744910396075,9.97921245598459,45.53643731460806 -2/10/1997,2,-4.6,0.0,0.163606,1.4257164517227299,2.3,170.42384310396076,8.925414836706592,45.12466919111513 -2/11/1997,2,-5.4,0.0,0.160742,1.3363980000559348,2.3,170.26310110396076,8.008610907934735,44.668446549128156 -2/12/1997,2,-8.1,0.0,0.151076,1.25677045336468,2.3,170.11202510396078,7.210991489903219,44.17550816354233 -2/13/1997,2,-7.4,0.0,0.153582,1.1856124038769678,2.3,169.95844310396078,6.5170625962157995,43.65254757476664 -2/14/1997,2,-3.2,0.0,0.168618,1.1218604586336642,2.3,169.78982510396077,5.913344458707745,43.1053497530821 -2/15/1997,2,1.4,0.0,0.185086,1.1270812095240854,0.0,169.82165588405047,7.471192898986044,42.53890998095584 -2/16/1997,2,0.7,0.0,0.18258,1.1735966081385587,0.0,169.63907588405047,6.743437822117858,42.06169142628603 -2/17/1997,2,1.4,0.0,0.185086,1.108133208040493,0.0,169.45398988405046,6.110290905242537,41.557629488866205 -2/18/1997,2,3.7,0.2,0.19332,1.0548468718443027,0.0,169.2803730484396,5.739749923171854,41.03199144435101 -2/19/1997,2,2.7,12.9,0.18974,1.3586017136221833,0.0,170.38946764056115,16.838247841037965,40.498339111622585 -2/20/1997,2,6.5,8.9,0.20334400000000002,2.0996318924649553,0.0,170.95843906279032,23.02046019947389,40.53028472144203 -2/21/1997,2,5.1,5.3,0.198332,2.479420520937141,0.0,171.18195842887567,25.149449007456962,40.87070203698688 -2/22/1997,2,4.2,0.0,0.19511,2.5038932783998744,0.0,170.98684842887567,22.12352063648756,41.310760446619994 -2/23/1997,2,0.3,8.5,0.181148,2.5140143892079925,0.0,171.47919898284067,27.31746439977918,41.59072126951197 -2/24/1997,2,4.1,0.0,0.194752,2.6851596421054094,0.0,171.28444698284068,24.009694027807885,42.12478006411069 -2/25/1997,2,6.7,0.0,0.20406000000000002,2.4405980988005576,0.0,171.08038698284068,21.13193380419286,42.482769164218865 -2/26/1997,2,4.4,0.0,0.195826,2.2257393719219594,0.0,170.88456098284067,18.628282409647788,42.68971047114413 -2/27/1997,2,6.2,3.2,0.20226999999999998,2.125033112677241,0.0,170.93998386087495,19.39241281835929,42.76733038220364 -2/28/1997,2,1.7,12.1,0.18616,2.4312221128808518,0.0,171.7197435577363,28.248979455111222,42.88160441547753 -3/1/1997,3,2.6,4.2,0.645,2.8994691206982237,0.0,171.36846495221,28.726390731473067,43.436421299923545 -3/2/1997,3,4.3,1.3,0.66693,2.866062038197605,0.0,170.79825310812566,26.438741780465897,44.00401241049873 -3/3/1997,3,4.7,0.0,0.6720900000000001,2.664710634519696,0.0,170.12616310812567,23.245205349005328,44.445869251312054 -3/4/1997,3,9.5,0.0,0.7340099999999999,2.427149369734027,0.0,169.39215310812565,20.466828653634632,44.71921213373608 -3/5/1997,3,5.8,0.7,0.68628,2.23720898420245,0.0,168.77537520192587,18.680138834861896,44.84816932374309 -3/6/1997,3,7.0,0.2,0.70176,2.0884259618982552,0.0,168.09501056909124,16.67382541916447,44.88521287901133 -3/7/1997,3,8.0,1.4,0.7146600000000001,1.9662597373463848,0.0,167.5419297324185,15.988148951345831,44.82119989238933 -3/8/1997,3,7.6,0.1,0.7095000000000001,1.877620087202731,0.0,166.84465356031396,14.240965759775431,44.72418334210884 -3/9/1997,3,3.9,0.0,0.6617700000000001,1.738377453584019,0.0,166.18288356031397,12.633140211004626,44.54174796325543 -3/10/1997,3,4.5,6.7,0.66951,1.7839236847165205,0.0,166.44386308137206,17.003842462515934,44.28257001454055 -3/11/1997,3,2.6,11.7,0.645,2.2461097417948546,0.0,167.3865258930427,25.149180130718225,44.247110737375536 -3/12/1997,3,0.3,4.4,0.61533,2.6856623084143942,0.0,167.31745756359408,25.977025043173484,44.619627529163935 -3/13/1997,3,-0.5,13.2,0.6050099999999999,2.6411783304002885,13.2,166.71244756359408,22.84351178756093,45.02608623073933 -3/14/1997,3,2.6,0.0,0.645,2.6951549541333817,2.1499999999999986,167.5306507239293,29.704152094842772,45.267740095502596 -3/15/1997,3,2.2,0.2,0.63984,3.0031152442003375,0.0,167.1783969967257,28.148526049716835,45.84759289833468 -3/16/1997,3,2.8,3.4,0.64758,2.9217450181281426,0.0,166.96162236713855,27.7019122928408,46.33806734285383 -3/17/1997,3,1.0,3.5,0.62436,2.8992651066199855,0.0,166.79004406973772,27.391381992172327,46.796401610638796 -3/18/1997,3,-0.2,7.7,0.60888,2.7928900231650067,7.7,166.18116406973772,24.074002333189924,47.230042678034636 -3/19/1997,3,0.9,6.1,0.62307,2.802011949910143,3.875,166.93667628534703,29.73429981426593,47.48914194113344 -3/20/1997,3,3.8,7.0,0.6604800000000001,3.2710512516293466,0.0,167.6863778219061,35.57715930185229,48.026074093024064 -3/21/1997,3,6.0,0.1,0.68886,3.4507536579054383,0.0,167.00956370492756,31.283582709589997,48.844410576256195 -3/22/1997,3,2.9,0.0,0.6488700000000001,3.13311967420401,0.0,166.36069370492757,27.4602169573433,49.43170150021057 -3/23/1997,3,1.8,4.9,0.63468,2.976752376386363,0.0,166.39590371922534,28.36399873859091,49.81607831807352 -3/24/1997,3,5.7,0.1,0.6849900000000001,2.929655589351608,0.0,165.7245420001584,25.00655062164101,50.237956688641596 -3/25/1997,3,5.1,0.0,0.67725,2.676474004025897,0.0,165.04729200015842,21.999199040827683,50.483525085950816 -3/26/1997,3,6.5,7.0,0.6953100000000001,2.627365187648495,0.0,165.42048700295692,25.314298162721567,50.57381453627318 -3/27/1997,3,1.9,7.8,0.63597,2.906120769601912,0.0,165.93996312478612,28.9114932797386,50.8280531536838 -3/28/1997,3,1.2,10.0,0.62694,3.2465607155087737,0.0,166.73136506382863,33.97815721433008,51.257066754597055 -3/29/1997,3,0.9,0.6,0.62307,3.4037800959242555,0.0,166.1876061868518,30.325185653443967,51.93083328022162 -3/30/1997,3,0.1,0.1,0.61275,3.1223046816016287,0.0,165.58873833922664,26.712529366121423,52.408475897289385 -3/31/1997,3,0.9,0.1,0.62307,2.8531088519840715,0.0,164.98027799691872,23.568790890833558,52.69593284764967 -4/1/1997,4,2.8,0.0,1.5503099999999999,2.6137990614972004,0.0,163.42996799691872,20.748348075025195,52.82045373523835 -4/2/1997,4,2.2,0.4,1.5303060000000002,2.4087191987312195,0.0,161.9684730323819,18.62575178980875,52.80146206428485 -4/3/1997,4,2.8,7.8,1.5503099999999999,2.4244576143445142,0.0,161.8948798693727,22.771187220142828,52.67672041248959 -4/4/1997,4,5.1,4.8,1.626992,2.66854018028815,0.0,161.18079035169464,23.94153039920232,52.76174536524694 -4/5/1997,4,0.5,6.6,1.473628,2.802512899235694,0.0,161.01763914174947,26.362154657251182,52.903586977902116 -4/6/1997,4,-0.1,7.3,1.453624,2.833237428840947,7.3,159.56401514174948,23.178574551808527,53.16362297120663 -4/7/1997,4,3.3,0.3,1.56698,2.7713308570602484,0.0,159.6486768457441,26.35721815607879,53.25927923937292 -4/8/1997,4,9.1,0.0,1.7603520000000001,2.839828392925384,0.0,157.88832484574408,23.174279795788546,53.511954562389406 -4/9/1997,4,6.4,0.0,1.670334,2.599376281678129,0.0,156.21799084574408,20.405123422336036,53.600429460931046 -4/10/1997,4,7.0,0.9,1.6903380000000001,2.4077140828320918,0.0,154.75746452788627,18.666145695290187,53.548677042829226 -4/11/1997,4,7.7,0.2,1.713676,2.2568892801800344,0.0,153.09810929342933,16.628725989359403,53.41101078673715 -4/12/1997,4,10.3,0.0,1.8003600000000002,2.092735585199658,0.0,151.29774929342932,14.71049161074268,53.17422687047038 -4/13/1997,4,7.7,0.0,1.713676,1.9401987498494802,0.0,149.58407329342933,13.041627701346131,52.8462669135981 -4/14/1997,4,7.4,0.0,1.7036740000000001,1.8051013272803096,0.0,147.88039929342932,11.589716100171135,52.441422960393446 -4/15/1997,4,9.4,0.2,1.7703540000000002,1.6891516042807875,0.0,146.17912519563328,10.457473104944938,51.97208030619414 -4/16/1997,4,11.1,0.0,1.8270320000000002,1.5887289503926598,0.0,144.35209319563327,9.341501601302097,51.4555123553175 -4/17/1997,4,6.0,0.0,1.656998,1.4925628156246147,0.0,142.6950951956333,8.370606393132825,50.89347718827626 -4/18/1997,4,3.7,0.5,1.580316,1.4157198900883912,0.0,141.31381305271208,7.8268937049467535,50.29413796416737 -4/19/1997,4,10.4,0.0,1.8036940000000001,1.3530236087490752,0.0,139.51011905271207,7.052897523303676,49.679599890131364 -4/20/1997,4,4.1,0.1,1.593652,1.2830160587571249,0.0,137.95938365725087,6.436604240735417,49.038652768493925 -4/21/1997,4,0.3,6.5,1.46696,1.329651525989731,0.0,139.37819883169922,9.457570514991458,48.37970992516082 -4/22/1997,4,2.0,2.6,1.523638,1.4856521714728044,0.0,138.9736884905722,9.952458689169601,47.884994252407175 -4/23/1997,4,-0.3,7.1,1.4469560000000001,1.4696854522821567,7.1,137.5267324905722,8.902139059577554,47.42491730181751 -4/24/1997,4,0.3,1.6,1.46696,1.4272935920134553,5.824999999999999,137.34792944375874,9.575204028645903,46.92152590876003 -4/25/1997,4,1.5,0.5,1.506968,1.5261270723817928,0.0,138.68556364504218,12.0543253036385,46.46185559201712 -4/26/1997,4,2.0,0.0,1.523638,1.603845850514064,0.0,137.16192564504217,10.730763014165495,46.135334745358705 -4/27/1997,4,5.5,0.1,1.640328,1.497044922165454,0.0,135.56674655290004,9.634114914466108,45.7491662011598 -4/28/1997,4,8.1,0.0,1.727012,1.403278917448069,0.0,133.83973455290004,8.625179975585514,45.31588862285991 -4/29/1997,4,10.9,0.0,1.820364,1.3169977931256973,0.0,132.01937055290003,7.7474065787593975,44.840829849181986 -4/30/1997,4,8.7,0.0,1.7470160000000001,1.2400103122663164,0.0,130.27235455290003,6.983743723520676,44.331383581136315 -5/1/1997,5,3.6,1.7,2.61751,1.1959300730039528,0.0,128.52873409522545,7.1454674971375525,43.79394309568962 -5/2/1997,5,1.1,4.0,2.46426,1.2295778895584513,0.0,128.18127206677113,8.343258750963981,43.27533760863271 -5/3/1997,5,3.7,5.7,2.62364,1.3352632308546042,0.0,128.59108659923513,10.168680580874671,42.82699379400825 -5/4/1997,5,9.6,0.0,2.9853099999999997,1.387219351147999,0.0,125.60577659923513,9.090252105360964,42.47888794717182 -5/5/1997,5,7.3,0.0,2.8443199999999997,1.2972496410878982,0.0,122.76145659923513,8.15201933166404,42.08382279349643 -5/6/1997,5,9.5,1.6,2.97918,1.2374558772506274,0.0,120.7060345983418,8.011998819441041,41.649747304209704 -5/7/1997,5,9.4,0.2,2.9730499999999997,1.2003024098575732,0.0,117.85174280780318,7.29518076345233,41.21735229909756 -5/8/1997,5,12.1,0.7,3.13856,1.1421874449761893,0.0,115.1443860394131,6.859104032593606,40.757764291288225 -5/9/1997,5,14.8,0.0,3.3040700000000003,1.0914941010222163,0.0,111.84031603941311,6.2109205083564385,40.285564207092136 -5/10/1997,5,15.5,0.0,3.3469800000000003,1.0322640296532872,0.0,108.49333603941311,5.647000842270101,39.790398948368114 -5/11/1997,5,16.4,0.1,3.4021499999999993,0.9800290133491373,0.0,105.15957173867652,5.188005033511567,39.27694101151426 -5/12/1997,5,15.7,0.0,3.3592400000000002,0.9336282319094213,0.0,101.8235037457836,4.7570643791550635,38.750802442959554 -5/13/1997,5,17.4,0.4,3.4634499999999995,0.8988359833382348,0.0,98.78412022691172,4.485439702569084,38.21363961305811 -5/14/1997,5,10.4,8.6,3.03435,0.9427075317612139,0.0,102.37217338508754,6.307825188090191,37.67363880592541 -5/15/1997,5,10.9,14.1,3.065,1.1052103184852955,0.0,109.62004147698289,9.62026377655193,37.23555728921141 -5/16/1997,5,10.5,4.5,3.04048,1.279072455998198,0.0,109.62195494506621,10.070736017516866,36.97185933225477 -5/17/1997,5,8.6,4.8,2.92401,1.3115525122345328,0.0,109.94310086600657,10.559884414299303,36.73595894648552 -5/18/1997,5,9.2,0.0,2.96079,1.2979968836935925,0.0,106.98231086600657,9.430599440440393,36.529233988270775 -5/19/1997,5,8.8,0.0,2.93627,1.2068772030280615,0.0,104.04604086600658,8.448121513183143,36.27017928052738 -5/20/1997,5,9.5,3.5,2.97918,1.1561360794033317,0.0,103.61589348285665,8.596212277755162,35.96718177057598 -5/21/1997,5,13.4,0.6,3.2182500000000003,1.1366372586637632,0.0,100.89650803303876,7.892455659832015,35.677648749052224 -5/22/1997,5,4.8,7.0,2.69107,1.1275728881870806,0.0,103.46642038960877,8.975857801807468,35.35871855706279 -5/23/1997,5,9.5,6.8,2.97918,1.2065638104170056,0.0,105.43245065813682,9.975472626879796,35.100337076011904 -5/24/1997,5,8.3,3.0,2.90562,1.247482804076908,0.0,104.65264387667588,9.8089031138735,34.897103965835655 -5/25/1997,5,9.0,13.4,2.94853,1.3208230908188514,0.0,111.24628755914657,12.6695264760308,34.68960704221262 -5/26/1997,5,15.0,0.1,3.3163300000000002,1.4215477444927083,0.0,107.99642572036768,11.299519872925675,34.62929122516991 -5/27/1997,5,20.9,0.0,3.678,1.3137320902159,0.0,104.31842572036769,10.074082289445338,34.5016813943128 -5/28/1997,5,9.2,0.9,2.96079,1.224533623233243,0.0,102.0421143915472,9.26741570476667,34.3153518808988 -5/29/1997,5,9.3,1.6,2.96692,1.1640425572744009,0.0,100.34504421324289,8.744115315522807,34.092415628519156 -5/30/1997,5,6.9,6.4,2.8198,1.1567122555642955,0.0,102.3887497836426,9.535034271788561,33.84777308172492 -5/31/1997,5,8.1,9.3,2.89336,1.2393534593587066,0.0,106.3250265066804,11.105011969856053,33.64756933367985 -6/1/1997,6,10.5,0.1,3.5493580000000002,1.2803982661729172,0.0,102.84551902811738,9.93500989233778,33.529868545499056 -6/2/1997,6,13.5,0.0,3.779338,1.1869796861910245,0.0,99.17484211629674,8.886958606333868,33.356021669205965 -6/3/1997,6,14.8,0.2,3.8789960000000003,1.1043034978360495,0.0,95.69063908656642,8.026352806552849,33.13324916613854 -6/4/1997,6,15.9,1.6,3.9633220000000002,1.0433456855803729,0.0,93.33249226198983,7.6030002929954055,32.87190182314341 -6/5/1997,6,17.2,0.0,4.0629800000000005,0.9942855983235566,0.0,89.75134154510798,6.858110254906002,32.59461380133031 -6/6/1997,6,16.1,0.0,3.978654,0.9314197311593269,0.0,86.37907283187906,6.210055921768221,32.285627038049 -6/7/1997,6,8.9,21.9,3.426702,0.9969645143113948,0.0,101.4315660622625,9.698445745181829,31.950417293376436 -6/8/1997,6,6.5,4.2,3.242718,1.1717899905973104,0.0,101.39182590494349,9.814702621428632,31.796331234768 -6/9/1997,6,7.0,7.0,3.281048,1.200352235331879,0.0,103.3626367642697,10.66981031458554,31.651139741144068 -6/10/1997,6,7.0,1.4,3.281048,1.218658942930054,0.0,101.164925928766,9.921209265325594,31.551607462050466 -6/11/1997,6,7.2,3.6,3.29638,1.1761105443344722,0.0,100.65001177820703,9.840578851555932,31.416635776075736 -6/12/1997,6,8.3,0.2,3.380706,1.1398698847455702,0.0,97.58359423401326,8.857810070171103,31.280332003132017 -6/13/1997,6,8.7,0.7,3.4113700000000002,1.0650120309997404,0.0,94.96731255105878,8.122307005320883,31.097615866577932 -6/14/1997,6,6.6,12.6,3.250384,1.0869412983417963,0.0,101.73910453078166,10.223012336183459,30.88177889951242 -6/15/1997,6,8.3,13.4,3.380706,1.266554150934938,0.0,108.2485213316233,12.779921845304608,30.77529393833134 -6/16/1997,6,13.2,0.0,3.7563400000000002,1.3523327354642796,0.0,104.4921813316233,11.36203200541501,30.798784151829945 -6/17/1997,6,14.1,0.0,3.8253340000000002,1.2434738369933642,0.0,100.71734429335694,10.128467844711059,30.750910069064098 -6/18/1997,6,12.6,2.4,3.710344,1.16654004992234,0.0,98.95117005913683,9.69234508294732,30.64231525991837 -6/19/1997,6,12.5,1.8,3.702678,1.125424711755537,0.0,96.83277269935851,9.134191114360789,30.51408620886737 -6/20/1997,6,12.7,0.0,3.71801,1.0661272246110172,0.0,93.43278009170962,8.190246269493887,30.36051404040806 -6/21/1997,6,16.7,0.4,4.02465,0.993009244885102,0.0,90.1925960147645,7.458020331630524,30.16281607307459 -6/22/1997,6,20.6,0.0,4.323624000000001,0.9300095626009754,0.0,86.50991707669915,6.7319776885185565,29.932460768194627 -6/23/1997,6,22.7,0.2,4.48461,0.8706308578191619,0.0,83.00894619493009,6.1374588216033645,29.670410437256663 -6/24/1997,6,22.9,0.1,4.499942,0.819048654626627,0.0,79.5645150580738,5.599940338487494,29.3838751695917 -6/25/1997,6,17.8,2.0,4.108976,0.7806366117287219,0.0,78.17200298047061,5.420523371395409,29.076194683124243 -6/26/1997,6,12.5,20.6,3.702678,0.8420575850368073,0.0,93.02398546077288,7.973915910213542,28.765696958031526 -6/27/1997,6,12.8,11.6,3.725676,1.019043031760924,0.0,98.79627729176437,9.735521998753853,28.589078814381573 -6/28/1997,6,15.4,0.0,3.9249920000000005,1.0747596908658008,0.0,95.13422612546012,8.713404138915852,28.504073338031635 -6/29/1997,6,18.2,0.0,4.139640000000001,0.9942882965358322,0.0,91.41506994604752,7.824161600856791,28.369662078216795 -6/30/1997,6,20.3,0.0,4.300626,0.9230932361591078,0.0,87.70233005935576,7.050520592745408,28.1934769166953 -7/1/1997,7,20.5,0.0,4.362624,0.8599922852678988,0.0,84.08903050346883,6.3774529156885045,27.982133407998663 -7/2/1997,7,15.4,6.4,3.9513599999999998,0.8373086795271469,0.0,86.239447551718,6.90362553434198,27.741363385623114 -7/3/1997,7,14.5,17.2,3.8787840000000005,0.9349193947611524,0.0,97.10999801071193,9.42012567171661,27.53171739462775 -7/4/1997,7,15.8,0.0,3.983616,1.0297183502240546,0.0,93.45668852128479,8.43900933439345,27.452089330321026 -7/5/1997,7,16.4,0.0,4.032,0.9525135705560273,0.0,89.89811483049415,7.585438120922302,27.32499801043428 -7/6/1997,7,15.4,0.1,3.9513599999999998,0.8848219475890623,0.0,86.62317971745527,6.863154747250432,27.157769956271707 -7/7/1997,7,14.5,2.8,3.8787840000000005,0.8408926131932979,0.0,85.72860903547013,6.735980998020016,26.957772294508793 -7/8/1997,7,10.8,6.3,3.580416,0.8458767732389877,0.0,87.98472533220952,7.2489801789198225,26.755415898519615 -7/9/1997,7,12.2,0.2,3.693312,0.8482668204956763,0.0,85.07728389126707,6.588755991992693,26.582756589495215 -7/10/1997,7,15.7,0.0,3.975552,0.7928201161367429,0.0,81.88312801131151,5.975717713033642,26.380539257304946 -7/11/1997,7,19.1,0.0,4.249728,0.7415914051180708,0.0,78.5968779231327,5.442374410339268,26.15171435781053 -7/12/1997,7,21.0,0.0,4.402944000000001,0.6959856684502439,0.0,75.32879168202976,4.978365736995164,25.900798791171283 -7/13/1997,7,20.2,0.0,4.338432,0.6552926546292843,0.0,72.24248664515515,4.574678191185793,25.631701102197617 -7/14/1997,7,14.9,3.3,3.9110400000000003,0.6452531991081731,0.0,72.47301323769908,4.609905977130469,25.347800989712955 -7/15/1997,7,16.5,1.8,4.040064,0.6352746717923948,0.0,71.2874390017521,4.46159554722968,25.07134026877522 -7/16/1997,7,18.3,0.0,4.1852160000000005,0.6189999019187632,0.0,68.46986104057393,4.104667903451306,24.7929932407612 -7/17/1997,7,21.4,0.0,4.4352,0.6033361695576269,0.0,65.60200262441421,3.7762944711752016,24.502366771118542 -7/18/1997,7,21.8,0.0,4.467456,0.5882484105895341,0.0,62.83428083542134,3.474190913481185,24.20113415925493 -7/19/1997,7,19.5,5.0,4.2819840000000005,0.5868424075116122,0.0,64.85544177779813,3.63419956922448,23.89082102174389 -7/20/1997,7,19.0,0.2,4.241664,0.5727643239102355,0.0,62.438639224904904,3.362334410494357,23.594714579770237 -7/21/1997,7,20.7,5.1,4.378752,0.5718228006860248,0.0,64.51656224091298,3.5334686837344584,23.29093700869955 -7/22/1997,7,17.2,3.6,4.096512,0.5676251194577655,0.0,65.28512483614436,3.586309513450663,23.001791702712282 -7/23/1997,7,16.8,0.0,4.064256,0.5534035694578496,0.0,62.779359793873624,3.2994047523746097,22.721071344330568 -7/24/1997,7,15.0,0.0,3.919104,0.539695974266793,0.0,60.45582744817895,3.035452372184641,22.43162015506269 -7/25/1997,7,16.3,3.7,4.023936,0.5353532040698508,0.0,61.562456071008945,3.0885998886145796,22.134760370570667 -7/26/1997,7,17.6,0.0,4.128768,0.522175260077562,0.0,59.16206794533714,2.841511897525413,21.84649515758998 -7/27/1997,7,17.8,0.0,4.144896,0.5094585453579904,0.0,56.84626268725464,2.6141909457233803,21.551640849314452 -7/28/1997,7,18.3,2.3,4.1852160000000005,0.5019542489030291,0.0,56.74025288358905,2.564263243691414,21.251317579614334 -7/29/1997,7,18.8,0.0,4.225536,0.4898637533300154,0.0,54.476035476763954,2.3591221841961008,20.95450439020662 -7/30/1997,7,20.0,0.0,4.322304,0.4781791805160582,0.0,52.25238842751135,2.170392409460413,20.65337041161229 -7/31/1997,7,20.0,0.1,4.322304,0.46704963883940304,0.0,50.213829480352445,2.002439545411388,20.348822623853067 -8/1/1997,8,19.2,3.3,3.458272,0.46122653494283433,0.0,51.70322969836558,2.012905732330095,20.041968148646575 -8/2/1997,8,17.2,6.4,3.329232,0.4610270873008673,0.0,56.123141959597156,2.206386861835475,19.74177407229015 -8/3/1997,8,14.2,0.5,3.135672,0.45104897371664815,0.0,54.92760851113346,2.063460501264191,19.45725793393612 -8/4/1997,8,10.6,20.4,2.9034,0.4794564494125665,0.0,72.51890654352627,3.2010244468718105,19.171285800320607 -8/5/1997,8,10.8,2.9,2.9163040000000002,0.477978998433704,0.0,73.06592197330782,3.300692410018276,18.947911306657787 -8/6/1997,8,13.4,0.0,3.084056,0.46577886453701534,0.0,70.93787026816747,3.036637017216814,18.733987701025544 -8/7/1997,8,17.4,0.0,3.342136,0.45403397763250153,0.0,68.69890521021514,2.7937060558394693,18.511139797865873 -8/8/1997,8,18.6,0.0,3.41956,0.44271833323517995,0.0,66.48037628113173,2.570209571372312,18.28060230470053 -8/9/1997,8,14.0,7.9,3.1227679999999998,0.45550867387763927,0.0,71.6297956785171,3.1546219711378876,18.043500737175133 -8/10/1997,8,12.8,10.3,3.045344,0.48069745661087765,0.0,78.64233640810956,4.129674006370238,17.840361820988527 -8/11/1997,8,14.0,0.1,3.1227679999999998,0.46822501444501846,0.0,76.40827896972704,3.8141416249091034,17.69003828488727 -8/12/1997,8,10.5,4.6,2.896948,0.4749493558001134,0.0,78.2798893404401,4.147015459713793,17.52694460043498 -8/13/1997,8,12.2,0.1,3.0066319999999997,0.4625731951593237,0.0,76.14253526970433,3.8299355177028094,17.38375648141197 -8/14/1997,8,15.4,9.9,3.213096,0.4911148382358953,0.0,82.37018602022827,4.885442522750594,17.227578127668874 -8/15/1997,8,20.2,0.0,3.5227920000000004,0.4781331498063808,0.0,79.62986084929078,4.493834994793017,17.127298691253028 -8/16/1997,8,12.9,6.8,3.0517960000000004,0.4953965050720735,0.0,83.09563452121299,5.17358719095737,17.00944446716762 -8/17/1997,8,14.4,3.2,3.148576,0.5122905304121812,0.0,83.28427383700428,5.285082403895666,16.927934937372136 -8/18/1997,8,16.1,0.0,3.25826,0.5030723781128498,0.0,80.72159730407239,4.84152169138923,16.85363035881948 -8/19/1997,8,12.9,7.8,3.0517960000000004,0.505724325005018,0.0,84.96431066417485,5.685054942692232,16.758633836212553 -8/20/1997,8,13.3,0.1,3.077604,0.5311259251438563,0.0,82.57709540401169,5.207296662559547,16.707713906622914 -8/21/1997,8,15.2,0.0,3.200192,0.4927587652531502,0.0,80.08146257659499,4.773848096426806,16.63392446161843 -8/22/1997,8,17.0,0.0,3.316328,0.46255697500552795,0.0,77.57342218917678,4.391940248712662,16.539938377207402 -8/23/1997,8,14.2,21.0,3.135672,0.5403347590554843,0.0,93.25819349457264,7.058667553783557,16.428736622098885 -8/24/1997,8,15.0,6.6,3.187288,0.6738962924875753,0.0,95.58896320783671,7.846700315049194,16.453095267346086 -8/25/1997,8,14.9,6.1,3.1808359999999998,0.7342293690236942,0.0,97.38545708081719,8.502232857206733,16.516368377751622 -8/26/1997,8,14.9,0.9,3.1808359999999998,0.7496703107876541,0.0,95.13934497431103,7.861187162205965,16.611152653056926 -8/27/1997,8,13.9,0.0,3.116316,0.6954811222059958,0.0,92.33941804095599,7.08273283111919,16.671988958106088 -8/28/1997,8,14.5,0.0,3.1550279999999997,0.6366546848581689,0.0,89.58813416690819,6.405477563073695,16.692685820499925 -8/29/1997,8,15.5,0.0,3.219548,0.5848439621947804,0.0,86.86423863210037,5.816265479874113,16.679105982243613 -8/30/1997,8,14.1,3.6,3.12922,0.5593977506783525,0.0,87.22232035080057,5.9785911317599325,16.636337136592445 -8/31/1997,8,14.6,0.0,3.16148,0.5508265841359027,0.0,84.61818755882165,5.444874284631142,16.60253995044859 -9/1/1997,9,17.2,0.0,2.5429700000000004,0.5090145903738534,0.0,82.58606448377719,4.980540627629094,16.542732865671177 -9/2/1997,9,16.6,0.0,2.5149740000000005,0.47204224655735827,0.0,80.62457798893327,4.576570346037312,16.46090523973921 -9/3/1997,9,9.9,2.4,2.2023520000000003,0.4648533281233086,0.0,80.97005280640226,4.588100502612757,16.360515652246292 -9/4/1997,9,11.2,6.4,2.26301,0.48240335491070924,0.0,84.62236273159596,5.238304920802304,16.262710364332005 -9/5/1997,9,8.7,0.9,2.14636,0.4911877973977428,0.0,83.64841282461124,4.959504109863935,16.19937140308548 -9/6/1997,9,8.7,6.8,2.14636,0.4986923895282248,0.0,87.58615199374049,5.725000014156291,16.123359180516967 -9/7/1997,9,9.5,0.0,2.1836880000000005,0.5212203410295826,0.0,85.77993016849818,5.224250012315973,16.08714199761444 -9/8/1997,9,8.2,5.3,2.1230300000000004,0.5108454144244278,0.0,88.39533630839951,5.753356021435671,16.02661165827795 -9/9/1997,9,8.6,1.2,2.141694,0.5285426453763985,0.0,87.57307298607543,5.483329992697715,15.993747226184174 -9/10/1997,9,7.0,7.5,2.067038,0.543044349444471,0.0,91.93035396725372,6.447235806122593,15.948038781295377 -9/11/1997,9,7.5,4.4,2.0903680000000002,0.6017425416562387,0.0,93.57309245430596,6.795065181019905,15.951439795975599 -9/12/1997,9,7.8,0.0,2.104366,0.6003527454577563,0.0,91.71350198990235,6.1552067074873165,15.97216425910708 -9/13/1997,9,8.5,0.3,2.1370280000000004,0.5533429668850304,0.0,90.09867450941401,5.662433510822617,15.960481309299304 -9/14/1997,9,9.0,9.6,2.1603580000000004,0.5720433053244748,0.0,95.89918140766002,7.131125420341831,15.92439335865445 -9/15/1997,9,9.8,10.9,2.1976860000000005,0.7030897960364093,0.0,102.23028522024143,9.026142992311623,15.962461762498455 -9/16/1997,9,10.0,0.4,2.207018,0.7758838547956624,0.0,100.38957903689271,8.206210388093329,16.094519676864067 -9/17/1997,9,9.4,0.1,2.1790220000000002,0.712746677367426,0.0,98.39740325336231,7.409245396937682,16.182939802731454 -9/18/1997,9,11.6,1.0,2.281674,0.6597825346798201,0.0,97.02587348642622,6.940846643415394,16.229743276523706 -9/19/1997,9,9.3,5.1,2.1743560000000004,0.6542490124976206,0.0,98.89347542362793,7.5220955154523645,16.252190743164 -9/20/1997,9,14.6,8.2,2.421654,0.7248569944081686,0.0,102.7466455638325,8.872906151802791,16.303251704073336 -9/21/1997,9,8.7,6.5,2.14636,0.8216967039474772,0.0,105.35577025067383,9.771158560189914,16.420831977582008 -9/22/1997,9,9.5,0.0,2.1836880000000005,0.8390096317512497,0.0,103.18309925976672,8.744407947365225,16.580973266039862 -9/23/1997,9,15.4,0.0,2.4589820000000002,0.7629859287562402,0.0,100.78697702174632,7.851134914207746,16.686574198087325 -9/24/1997,9,17.3,0.0,2.5476360000000002,0.6961843561679288,0.0,98.3621160245627,7.073987375360739,16.745399459835966 -9/25/1997,9,17.8,0.0,2.5709660000000003,0.6374192560530978,0.0,95.97392397633146,6.397869016563842,16.764190839407284 -9/26/1997,9,16.3,0.0,2.5009760000000005,0.585658841629455,0.0,93.70715203855991,5.809646044410543,16.748800473447332 -9/27/1997,9,16.3,0.7,2.5009760000000005,0.5447103291433865,0.0,92.03708047151346,5.454729719962702,16.704306766198915 -9/28/1997,9,15.2,0.4,2.44965,0.5143464649029528,0.0,90.22198967124721,5.075027885578542,16.64295711687307 -9/29/1997,9,15.0,0.1,2.4403180000000004,0.48190649146472375,0.0,88.22225717643711,4.679270326983533,16.563849368814534 -9/30/1997,9,12.6,2.1,2.3283340000000003,0.4707285657189305,0.0,87.97407273221754,4.713261592106071,16.46653589778742 -10/1/1997,10,12.8,0.0,1.05512,0.457543385130867,0.0,87.0974724524818,4.336200664737586,16.372868259436974 -10/2/1997,10,11.2,0.8,1.024144,0.4494516012295117,0.0,86.90415069428992,4.140239422660316,16.262220927485114 -10/3/1997,10,8.1,2.4,0.964128,0.45066376106761274,0.0,88.06244265817375,4.259466382208137,16.14398848006843 -10/4/1997,10,6.5,10.9,0.933152,0.5015558327653694,0.0,96.07596472945059,6.029139739127334,16.03408202957747 -10/5/1997,10,7.6,5.2,0.954448,0.5799839687934714,0.0,99.17450008519566,6.724327810608628,16.014857375942288 -10/6/1997,10,12.6,0.2,1.051248,0.5976778308893058,0.0,98.33872339357796,6.1448635993265635,16.030776618953873 -10/7/1997,10,11.5,0.0,1.029952,0.551777205239574,0.0,97.38221980649078,5.589531331414111,16.017404266541124 -10/8/1997,10,11.6,0.0,1.031888,0.5086989892762339,0.0,96.4332393170047,5.106392258330277,15.976532747781006 -10/9/1997,10,12.3,0.0,1.0454400000000001,0.470647884973772,0.0,95.48116484621833,4.68606126474734,15.912321705741899 -10/10/1997,10,12.0,0.0,1.0396320000000001,0.44590285760431514,0.0,94.54372718098645,4.311176363567553,15.828378334864427 -10/11/1997,10,12.3,0.0,1.0454400000000001,0.43353585936137473,0.0,93.61030764992506,3.9662822544821483,15.727369586345516 -10/12/1997,10,12.8,0.0,1.05512,0.4216921163705616,0.0,92.67754622006777,3.6489796741235767,15.611136307342713 -10/13/1997,10,13.3,0.0,1.0648,0.41033909030385146,0.0,91.74560693198458,3.3570613001936906,15.481362564902037 -10/14/1997,10,13.6,0.3,1.0706079999999998,0.40136534716897065,0.0,91.05405051679205,3.152452653223235,15.33958837861368 -10/15/1997,10,15.2,3.2,1.101584,0.4109213938919888,0.0,92.63662915360719,3.5704336339312466,15.19041924370257 -10/16/1997,10,13.1,0.1,1.060928,0.400500874156929,0.0,91.78668018830454,3.3066074448809117,15.06513254052508 -10/17/1997,10,3.1,9.3,0.867328,0.4493874846673668,0.0,98.3501397530285,5.026809314273142,14.929160261958625 -10/18/1997,10,5.1,0.2,0.906048,0.4454896567061797,0.0,97.65840266782966,4.667028018128678,14.88191752243311 -10/19/1997,10,9.9,0.0,0.998976,0.42516258475816915,0.0,96.73708431422216,4.293665776678384,14.81763057289088 -10/20/1997,10,10.2,0.0,1.004784,0.41322440044166303,0.0,95.81915179438477,3.9501725145441124,14.735961250266982 -10/21/1997,10,12.4,0.0,1.047376,0.40179977442119447,0.0,94.87138826685813,3.6341587133805833,14.638750650988849 -10/22/1997,10,11.9,0.0,1.037696,0.39085645196206614,0.0,93.941671956357,3.3434260163101364,14.527683573638102 -10/23/1997,10,11.7,0.0,1.033824,0.3803645821097767,0.0,93.0245017318919,3.0759519350053255,14.404301202980847 -10/24/1997,10,10.8,0.3,1.0164,0.3722786613579233,0.0,92.36552193817347,2.895946861483111,14.270012775671496 -10/25/1997,10,10.2,0.0,1.004784,0.36251633064157834,0.0,91.48907091734878,2.6642711125644625,14.129409863232222 -10/26/1997,10,11.4,0.0,1.028016,0.3531345871386952,0.0,90.60086401652558,2.4511294235593057,13.980035221595802 -10/27/1997,10,9.1,1.3,0.983488,0.3521835649442739,0.0,90.7902930967975,2.5241248392478948,13.822990988341852 -10/28/1997,10,3.3,0.1,0.8712,0.3437446163019556,0.0,90.12252376199592,2.342995603040245,13.67273741053741 -10/29/1997,10,2.5,1.1,0.855712,0.34174151925604923,0.0,90.26935789888616,2.3804290135491923,13.516432442478674 -10/30/1997,10,1.9,0.0,0.844096,0.3330023456600889,0.0,89.54978094237451,2.189994692465257,13.36512524430656 -10/31/1997,10,3.7,6.1,0.878944,0.3614446831467587,0.0,93.67799021794067,3.243274455529496,13.207322474043691 -11/1/1997,11,5.4,2.7,0.34965,0.36975625833304143,0.0,95.46416146781898,3.58831544620852,13.105339747339292 -11/2/1997,11,3.9,7.0,0.33966,0.40864127357413593,0.0,100.51958434112109,4.939609969335911,13.022648724702933 -11/3/1997,11,3.3,0.3,0.335664,0.4022708773034873,0.0,100.42167639974245,4.620228462105944,13.00917624867567 -11/4/1997,11,4.5,0.5,0.343656,0.39107271191825504,0.0,100.46395654689708,4.382420966070198,12.980004146807454 -11/5/1997,11,1.6,0.0,0.324342,0.3797453209070338,0.0,100.15623456564924,4.031827288784582,12.939525112174815 -11/6/1997,11,1.7,0.0,0.325008,0.3689249526578654,0.0,99.84882520231264,3.709281105681815,12.882325974370548 -11/7/1997,11,1.2,0.0,0.321678,0.3585790287201627,0.0,99.54549938879455,3.41253861722727,12.81014351016723 -11/8/1997,11,4.0,0.0,0.340326,0.34867741725197765,0.0,99.2255643465338,3.1395355278490884,12.724567570825249 -11/9/1997,11,2.3,0.2,0.329004,0.3407300517535768,0.0,99.06600660975232,2.93963306125176,12.627052995801199 -11/10/1997,11,2.5,0.0,0.330336,0.33156374426950386,0.0,98.75695883980767,2.7044624163516193,12.521493588947763 -11/11/1997,11,7.0,0.1,0.36030600000000007,0.32352929882188053,0.0,98.49557739562621,2.513452068738425,12.40628683798639 -11/12/1997,11,5.4,0.2,0.34965,0.3165593077947126,0.0,98.31996531078454,2.362754456714697,12.283833704663584 -11/13/1997,11,7.3,0.0,0.36230400000000007,0.30833791807344657,0.0,97.98356228205701,2.1737341001775214,12.156294753406048 -11/14/1997,11,8.0,0.2,0.36696600000000007,0.3019251308411154,0.0,97.79423107563194,2.049600652472643,12.021855563346804 -11/15/1997,11,1.1,13.0,0.321012,0.39084916472292386,0.0,107.27768799271767,5.105706500961794,11.8838984847035 -11/16/1997,11,0.8,23.8,0.319014,0.6102067166634498,0.0,123.43109615474745,12.013042493806992,11.90150584005752 -11/17/1997,11,2.3,0.0,0.329004,0.9232800907376465,0.0,123.10209215474745,10.694846969612083,12.26412784794672 -11/18/1997,11,0.6,0.0,0.317682,0.8287546071768472,0.0,122.78441015474745,9.548016863562513,12.55358763946839 -11/19/1997,11,-0.9,0.1,0.307692,0.7460074179142502,0.1,122.47671815474745,8.550274671299386,12.779916729857147 -11/20/1997,11,-0.3,0.0,0.311688,0.6735175450623828,0.1,122.16503015474744,7.682238964030467,12.951832128824973 -11/21/1997,11,0.8,0.1,0.319014,0.612468583080569,0.0,121.9624478471191,7.010616206334856,13.076907434449998 -11/22/1997,11,0.4,0.0,0.31635,0.5606308952236374,0.0,121.6460978471191,6.342736099511325,13.16590009607774 -11/23/1997,11,-1.9,0.0,0.301032,0.5108815951554468,0.0,121.34506584711909,5.761680406574852,13.219718899131752 -11/24/1997,11,-0.4,0.0,0.311022,0.46713704976990345,0.0,121.0340438471191,5.256161953720121,13.24340854147786 -11/25/1997,11,3.3,0.4,0.335664,0.4335315869143179,0.0,120.93485675146809,4.979883995387523,13.24134846833431 -11/26/1997,11,-2.0,1.7,0.300366,0.40728448602373046,1.7,120.63449075146809,4.575999075987145,13.225515698737 -11/27/1997,11,-2.8,1.7,0.295038,0.39009368126847754,3.4,120.33945275146809,4.209919149908173,13.18980533856162 -11/28/1997,11,2.3,2.0,0.329004,0.44426103506857473,0.0,123.23254332662165,6.051031042761961,13.136505189285796 -11/29/1997,11,0.3,3.4,0.315684,0.5313151967924356,0.0,124.86685260377209,6.957903730052465,13.176326637638178 -11/30/1997,11,-0.9,0.0,0.307692,0.5585153796847533,0.0,124.55916060377209,6.296876245145644,13.260695291388037 -12/1/1997,12,-0.8,0.0,0.159712,0.5092037862119347,0.0,124.39944860377209,5.72178233327671,13.310325197817559 -12/2/1997,12,-1.1,0.0,0.158746,0.4658367917728585,0.0,124.24070260377209,5.221450629950738,13.330207810525042 -12/3/1997,12,-0.4,0.0,0.161,0.4276509166554926,0.0,124.07970260377209,4.786162048057141,13.324676185812077 -12/4/1997,12,0.1,0.0,0.16261,0.3980478878163509,0.0,123.91709260377209,4.40326908421257,13.297490764498693 -12/5/1997,12,1.0,0.3,0.16550800000000002,0.3904528608433396,0.0,123.92196640208256,4.180625759165087,13.251704403419348 -12/6/1997,12,-4.2,12.3,0.14876399999999998,0.3792993030191407,12.3,123.77320240208256,3.8461756984318805,13.195701603309216 -12/7/1997,12,-9.5,1.4,0.131698,0.3686363764000124,13.700000000000001,123.64150440208256,3.53848164255733,13.124096356164625 -12/8/1997,12,-11.6,0.0,0.124936,0.3584328635579663,13.700000000000001,123.51656840208256,3.2554031111527437,13.038538511169198 -12/9/1997,12,-11.6,0.0,0.124936,0.34865988379788476,13.700000000000001,123.39163240208255,2.9949708622605242,12.940537896503452 -12/10/1997,12,-9.8,0.0,0.13073200000000001,0.3392907094321186,13.700000000000001,123.26090040208256,2.755373193279682,12.831475681686408 -12/11/1997,12,-10.8,0.0,0.12751200000000001,0.33030059668885253,13.700000000000001,123.13338840208256,2.5349433378173076,12.712614827716664 -12/12/1997,12,-4.3,0.0,0.14844200000000002,0.3216666300848216,13.700000000000001,122.98494640208256,2.332147870791923,12.585109698053195 -12/13/1997,12,-0.4,0.0,0.161,0.3133675791864916,13.700000000000001,122.82394640208256,2.145576041128569,12.450014897631727 -12/14/1997,12,-2.6,0.0,0.153916,0.30538376676985896,13.700000000000001,122.67003040208256,1.9739299578382838,12.308293401735522 -12/15/1997,12,0.0,0.0,0.16228800000000002,0.29769694746819114,13.700000000000001,122.50774240208256,1.816015561211221,12.160824031592727 -12/16/1997,12,-4.4,4.7,0.14812,0.29029019606985834,18.400000000000002,122.35962240208255,1.6707343163143233,12.008408329021433 -12/17/1997,12,-4.7,0.1,0.147154,0.28314780469540973,18.500000000000004,122.21246840208255,1.5370755710091775,11.851776878256722 -12/18/1997,12,-2.3,0.4,0.154882,0.27625518814469424,18.900000000000002,122.05758640208255,1.4141095253284433,11.691595119242047 -12/19/1997,12,-7.2,8.9,0.139104,0.2695987967615376,27.800000000000004,121.91848240208255,1.300980763302168,11.528468693123628 -12/20/1997,12,-7.5,0.9,0.138138,0.26316603621566514,28.700000000000003,121.78034440208255,1.1969023022379945,11.362948357426264 -12/21/1997,12,3.1,0.6,0.17227,0.42834315759376473,15.525000000000002,129.66980893727577,6.814415582865731,11.195534505389638 -12/22/1997,12,7.3,1.9,0.185794,0.7599053571005827,0.0,138.5331336254092,14.547922868959786,11.31234459442513 -12/23/1997,12,4.9,24.9,0.17806600000000003,1.5266004446420838,0.0,149.2741130455908,26.881147475813407,11.813493845984619 -12/24/1997,12,1.5,3.2,0.16711800000000002,2.132128265541051,0.0,150.16558451977286,25.771508829775623,12.921281342855597 -12/25/1997,12,0.8,0.8,0.164864,2.0203323322974667,0.0,150.257824279713,23.20760892196468,13.951431157487265 -12/26/1997,12,-1.1,0.6,0.158746,1.8265596985702273,0.6,150.09907827971298,20.434119762109273,14.832782980435754 -12/27/1997,12,0.1,0.2,0.16261,1.64270907161196,0.17499999999999993,150.13777189515318,18.44488057759488,15.557833308932501 -12/28/1997,12,-1.7,3.6,0.156814,1.490838825387642,3.775,149.98095789515318,16.29054610250754,16.168920671633597 -12/29/1997,12,-3.8,1.8,0.150052,1.33671694966735,5.575,149.8309058951532,14.41627510918156,16.660069563326303 -12/30/1997,12,-3.3,0.1,0.151662,1.2018371743590939,5.675,149.6792438951532,12.785659344987959,17.047681927518852 -12/31/1997,12,-4.7,5.6,0.147154,1.083713901277941,11.274999999999999,149.5320898951532,11.367023630139524,17.34601125621787 -1/1/1998,1,-4.4,2.9,0.142324,0.9801843425056276,14.174999999999999,149.3897658951532,10.132810558221387,17.56744221260049 -1/2/1998,1,-4.2,0.3,0.142968,0.8893665614058386,14.475,149.2467978951532,9.059045185652607,17.72273389625955 -1/3/1998,1,-3.4,5.5,0.145544,0.8096229681805032,19.975,149.1012538951532,8.124869311517768,17.82123147761699 -1/4/1998,1,1.0,5.8,0.159712,0.9407409615596962,15.725000000000001,152.28446187247377,14.019216323699903,17.871050313640538 -1/5/1998,1,0.0,10.4,0.156492,1.4137764464549396,15.725000000000001,155.2340604807964,19.734127593296332,18.21459012355272 -1/6/1998,1,-2.4,22.4,0.148764,1.6423122038647806,38.125,155.0852964807964,17.41219100616781,18.837004700746483 -1/7/1998,1,-6.5,10.4,0.135562,1.4754902187101693,48.525,154.9497344807964,15.392106175365996,19.330874157039943 -1/8/1998,1,-7.0,2.6,0.133952,1.3294215195987011,51.125,154.8157824807964,13.634632372568417,19.713861982667442 -1/9/1998,1,-12.0,15.0,0.117852,1.201426850785307,66.125,154.6979304807964,12.105630164134523,20.001316361642516 -1/10/1998,1,-6.5,0.4,0.135562,1.089174886342965,66.525,154.5623684807964,10.775398242797033,20.20657154261639 -1/11/1998,1,-12.9,15.0,0.114954,0.9906370067549325,81.525,154.4474144807964,9.61809647123342,20.341210023903916 -1/12/1998,1,-17.1,0.2,0.10143,0.9040479544006135,81.72500000000001,154.3459844807964,8.611243929973076,20.415290646987508 -1/13/1998,1,1.1,10.0,0.160034,1.1465479164834211,77.05000000000001,158.23840672074502,18.357825979127966,20.43754703054641 -1/14/1998,1,4.6,5.0,0.171304,2.14502129577893,57.500000000000014,163.7753696877632,35.05654163482314,20.946687388891878 -1/15/1998,1,3.6,0.3,0.168084,3.266637787164386,42.20000000000002,166.22667387785518,43.72330303220417,22.280580722855195 -1/16/1998,1,3.7,0.0,0.168406,3.978056463494233,26.475000000000016,168.23375395974418,51.83228755612862,24.0211342600083 -1/17/1998,1,0.4,4.5,0.15778,4.395740971896792,24.775000000000016,168.78089496564039,50.83266916793568,26.132325952614565 -1/18/1998,1,0.5,4.3,0.158102,4.367340825990671,22.650000000000016,169.30967814992087,50.206036991823545,28.15131289195906 -1/19/1998,1,-1.8,1.6,0.150696,4.186456184751993,24.250000000000018,169.15898214992086,43.922752182886484,30.098588483711055 -1/20/1998,1,-3.9,0.0,0.143934,3.7401815275812846,24.250000000000018,169.01504814992086,38.45629439911124,31.692754323181155 -1/21/1998,1,-3.5,0.0,0.14522200000000002,3.3499632829058275,24.250000000000018,168.86982614992087,33.700476127226786,32.98171395667309 -1/22/1998,1,-2.9,0.0,0.147154,3.008553302959978,24.250000000000018,168.72267214992087,29.562914230687305,34.00710348390096 -1/23/1998,1,-3.8,0.0,0.144256,2.7096449154704496,24.250000000000018,168.57841614992086,25.963235380697952,34.80510712575731 -1/24/1998,1,-2.2,9.2,0.14940799999999999,2.447750547516655,33.45000000000002,168.42900814992086,22.83151478120722,35.407166752277064 -1/25/1998,1,0.2,3.0,0.157136,2.3207426830916464,32.600000000000016,168.70029131272287,23.52849869684827,35.84059915629188 -1/26/1998,1,0.7,16.9,0.158746,2.8122365532694666,29.625000000000014,170.68625997008473,38.443579208896125,36.30021210800846 -1/27/1998,1,0.9,2.6,0.15939,3.616034217179191,25.800000000000015,171.06036654154028,39.5809173402841,37.49638682629309 -1/28/1998,1,0.4,0.8,0.15778,3.6195500712365556,24.100000000000016,171.0983477913634,36.98313683622405,38.725504956781435 -1/29/1998,1,-2.0,0.3,0.150052,3.3742247472257905,24.400000000000016,170.94829579136342,32.418829047514926,39.80015169945701 -1/30/1998,1,0.8,0.0,0.15906800000000001,3.1372479546139793,21.000000000000014,171.06028573332273,31.576823329378698,40.62509011784362 -1/31/1998,1,2.4,0.0,0.16422,3.276668354926714,10.800000000000015,171.69478206926001,37.11661996062218,41.39142948195568 -2/1/1998,2,1.0,0.2,0.18365399999999998,3.56088986225022,6.550000000000015,171.82374655459608,36.67234088040524,42.41943189034768 -2/2/1998,2,-0.4,2.6,0.178642,3.422663346930058,9.150000000000015,171.6451045545961,32.14843656595255,43.40466029656099 -2/3/1998,2,-2.8,2.6,0.17004999999999998,3.093180801047537,11.750000000000014,171.47505455459608,28.21263981237872,44.1439889189274 -2/4/1998,2,-2.5,0.1,0.171124,2.804221712345376,11.850000000000014,171.3039305545961,24.788496636769484,44.67174113116779 -2/5/1998,2,-0.4,1.4,0.178642,2.550564216865816,13.250000000000014,171.1252885545961,21.80949207398945,45.017731140382914 -2/6/1998,2,-0.3,3.8,0.179,2.3276643692560914,17.050000000000015,170.9462885545961,19.21775810437082,45.20785112127472 -2/7/1998,2,-0.3,0.0,0.179,2.1315680318239747,17.050000000000015,170.7672885545961,16.962949550802612,45.26458200406777 -2/8/1998,2,-0.1,1.0,0.179716,1.9588342176466096,18.050000000000015,170.58757255459608,15.001266109198273,45.20743784152654 -2/9/1998,2,-0.9,4.4,0.17685199999999998,1.806468398713107,22.450000000000017,170.41072055459608,13.294601515002498,45.05335239015592 -2/10/1998,2,-3.8,0.0,0.16646999999999998,1.6718644836537488,22.450000000000017,170.24425055459608,11.809803318052174,44.81701541810293 -2/11/1998,2,1.3,0.0,0.184728,1.703818061462848,16.92500000000002,170.54906510638915,15.553486334912318,44.511165275643485 -2/12/1998,2,2.2,1.9,0.18795,2.144289247474031,7.575000000000017,171.31472805139984,24.071420166363026,44.39861628687623 -2/13/1998,2,2.7,5.2,0.18974,2.8443997669104366,0.0,172.08414162269742,33.00148197343827,44.71421496945686 -2/14/1998,2,3.8,1.5,0.19367800000000002,3.226679870947556,0.0,171.9883970428937,30.35685589669501,45.47000476873964 -2/15/1998,2,-2.0,1.9,0.17291399999999998,2.995530683102482,1.9,171.8154830428937,26.65396463012466,46.0784474681996 -2/16/1998,2,-4.6,0.4,0.163606,2.7219632433593235,2.3,171.65187704289372,23.43244922820845,46.48957675034184 -2/17/1998,2,-3.3,0.2,0.16826,2.481642539801572,2.5,171.4836170428937,20.629730828541355,46.73140767674543 -2/18/1998,2,-2.1,0.0,0.172556,2.2702928373447486,2.5,171.31106104289373,18.19136582083098,46.82826606463758 -2/19/1998,2,2.4,3.3,0.188666,2.2451212148676003,0.0,171.55813186907255,21.43425143794413,46.80126903438638 -2/20/1998,2,3.4,13.8,0.192246,2.7178870643539232,0.0,172.35933902192397,31.69784559815999,46.93695622559586 -2/21/1998,2,3.6,3.8,0.192962,3.2346311849199774,0.0,172.4011121125852,31.38589057973797,47.583109380991935 -2/22/1998,2,3.0,1.8,0.190814,3.1669792588031993,0.0,172.32052640465324,29.23899651230403,48.200741722359 -2/23/1998,2,1.4,0.7,0.185086,2.982558523825558,0.0,172.17902857236385,26.337838797993875,48.69867671352702 -2/24/1998,2,-3.6,10.8,0.16718599999999997,2.7489464349104575,10.8,172.01184257236386,23.157419754254672,49.04159511915617 -2/25/1998,2,-4.4,0.1,0.16432199999999997,2.510457327388496,10.9,171.84752057236386,20.390455186201564,49.21863420448578 -2/26/1998,2,-3.4,0.0,0.167902,2.300594325264062,10.9,171.67961857236386,17.98319601199536,49.253784279706146 -2/27/1998,2,-2.2,0.0,0.172198,2.1156835844070825,10.9,171.50742057236386,15.888880530435962,49.16786839471179 -2/28/1998,2,-1.5,0.0,0.174704,1.9525279094329637,10.9,171.33271657236386,14.066826061479288,48.97895505333935 -3/1/1998,3,-2.7,0.0,0.57663,1.8083448083855043,10.9,170.75608657236387,12.48163867348698,48.70271725534652 -3/2/1998,3,-1.1,0.0,0.59727,1.680712599930638,10.9,170.15881657236386,11.102525645933673,48.35274484391394 -3/3/1998,3,-1.0,0.3,0.59856,1.5675235262421996,11.200000000000001,169.56025657236387,9.902697311962296,47.94081622933234 -3/4/1998,3,-2.9,2.4,0.5740500000000001,1.4669429608472069,13.600000000000001,168.98620657236387,8.858846661407197,47.47713477034381 -3/5/1998,3,-0.6,0.7,0.60372,1.3773739190932335,14.3,168.38248657236386,7.950696595424261,46.970534408007296 -3/6/1998,3,-0.8,4.7,0.60114,1.2974261819041535,19.0,167.78134657236387,7.1606060380191074,46.42865854961836 -3/7/1998,3,-2.1,8.8,0.5843700000000001,1.225889433103793,27.8,167.19697657236387,6.473227253076624,45.85811568052695 -3/8/1998,3,-1.8,0.0,0.58824,1.161709888550536,27.8,166.60873657236385,5.875207710176664,45.26461472957024 -3/9/1998,3,-0.6,0.0,0.60372,1.1039699631541975,27.8,166.00501657236384,5.354930707853697,44.65308282048767 -3/10/1998,3,-0.2,0.0,0.60888,1.051870580857078,27.8,165.39613657236384,4.902289715832716,44.027767699470594 -3/11/1998,3,-1.4,7.0,0.5934,1.0047157840003262,34.8,164.80273657236384,4.508492052774464,43.39232683127282 -3/12/1998,3,-5.4,11.3,0.5418,0.979432478602297,46.099999999999994,164.26093657236385,4.1478126885525075,42.749904897286086 -3/13/1998,3,-3.4,0.0,0.5676,0.9565255788794089,46.099999999999994,163.69333657236385,3.8159876734683067,42.10229743376799 -3/14/1998,3,0.9,0.1,0.62307,1.032205643222932,42.27499999999999,163.73315437036766,6.772820861587043,41.45105086876604 -3/15/1998,3,1.9,0.7,0.63597,1.317345245863999,34.19999999999999,164.57501235677356,13.433026163174851,40.96067089447007 -3/16/1998,3,-0.6,6.6,0.60372,1.6023204667123945,40.79999999999999,163.97129235677355,11.930232761962122,40.81310878473941 -3/17/1998,3,2.6,0.4,0.645,1.7701901424998283,29.74999999999999,165.22205021105165,20.177044648628925,40.59335824714273 -3/18/1998,3,2.9,8.2,0.6488700000000001,2.6381438904150625,17.42499999999999,167.66288266565917,35.23282638969967,40.79034331463132 -3/19/1998,3,1.6,4.9,0.6321,3.588363952809151,10.62499999999999,168.44353902577473,41.183302598923134,41.73617776782368 -3/20/1998,3,4.7,0.4,0.6720900000000001,4.051071212137077,0.0,168.9962991087494,45.87312317808841,42.960619342413366 -3/21/1998,3,3.8,2.5,0.6604800000000001,4.209833883158495,0.0,168.59638754153022,42.39254873215612,44.395063114469515 -3/22/1998,3,1.0,4.6,0.62436,4.025344029759136,0.0,168.47435135932034,41.222693579185716,45.62678928878793 -3/23/1998,3,4.8,2.3,0.6733800000000001,3.8977203856820433,0.0,168.05561667043432,38.15259810277759,46.77538818197146 -3/24/1998,3,7.8,0.6,0.71208,3.638081707998355,0.0,167.41307714018225,33.966719879668574,47.74751032347091 -3/25/1998,3,9.2,0.0,0.7301400000000001,3.3184903050624768,0.0,166.68293714018225,29.794546295311658,48.49089611098492 -3/26/1998,3,8.3,0.0,0.7185300000000001,3.011386083143833,0.0,165.96440714018226,26.16475527692114,49.010805503530804 -3/27/1998,3,7.4,0.0,0.7069200000000001,2.7417194197198236,0.0,165.25748714018226,23.00683709092139,49.33882715730625 -3/28/1998,3,10.3,0.0,0.7443299999999999,2.5046731519932415,0.0,164.51315714018227,20.259448269101608,49.50239246870619 -3/29/1998,3,10.9,0.0,0.75207,2.296055353934375,0.0,163.76108714018227,17.8692199941184,49.52531703278715 -3/30/1998,3,11.7,0.0,0.76239,2.1122180753891566,0.0,162.99869714018226,15.789721394883006,49.42827169183733 -3/31/1998,3,10.0,0.0,0.7404600000000001,1.9499866447054917,0.0,162.25823714018225,13.980557613548216,49.229192327744734 -4/1/1998,4,8.2,0.0,1.7303460000000002,1.8065981616283642,0.0,160.52789114018225,12.406585123786948,48.94363636186725 -4/2/1998,4,7.6,0.0,1.710342,1.679647985736572,0.0,158.81754914018225,11.037229057694645,48.585092890819254 -4/3/1998,4,0.2,4.1,1.463626,1.6622576486457756,0.0,158.28010755226688,13.019704868109711,48.1652524858876 -4/4/1998,4,1.6,3.0,1.510302,1.7807795419357546,0.0,157.46592728956358,13.874521497958742,47.85293267957533 -4/5/1998,4,6.1,3.5,1.6603320000000001,1.851112467648526,0.0,156.6501159683559,14.969813024431788,47.58960010088176 -4/6/1998,4,0.8,11.0,1.48363,2.0980698497181316,0.0,157.92194918311728,21.511774116494262,47.386298750085714 -4/7/1998,4,3.8,4.2,1.58365,2.447383365158915,0.0,157.32999500726635,22.16704765720091,47.51416148090871 -4/8/1998,4,-0.7,1.0,1.4336200000000001,2.4041619393960008,1.0,155.89637500726636,19.528831461764792,47.67223063415059 -4/9/1998,4,0.2,0.1,1.463626,2.2249737217842807,0.1499999999999999,154.67874581883754,17.937586560164174,47.69522759455581 -4/10/1998,4,2.8,0.0,1.5503099999999999,2.084893250672582,0.0,153.16930695114988,15.958329175030501,47.63820237067291 -4/11/1998,4,1.0,0.0,1.4902980000000001,1.9279009458600407,0.0,151.67900895114988,14.127246382276535,47.48335478201097 -4/12/1998,4,0.0,0.0,1.456958,1.783689449800936,0.0,150.2220509511499,12.534204352580586,47.240050005484576 -4/13/1998,4,1.9,0.1,1.520304,1.658134796067929,0.0,148.73382493860095,11.216179799294045,46.92195922300392 -4/14/1998,4,7.2,0.8,1.697006,1.5641671697834807,0.0,147.30600872236653,10.532386641620255,46.54432902850854 -4/15/1998,4,9.1,0.0,1.7603520000000001,1.4881208590276889,0.0,145.54565672236652,9.406676378209621,46.14006178001938 -4/16/1998,4,11.8,0.0,1.8503700000000003,1.3934049596483415,0.0,143.69528672236652,8.42730844904237,45.687594363329474 -4/17/1998,4,13.0,0.0,1.890378,1.3090273309424243,0.0,141.80490872236652,7.575258350666862,45.195207898515 -4/18/1998,4,13.2,0.0,1.8970459999999998,1.233683493647309,0.0,139.90786272236653,6.833974765080169,44.67006665807804 -4/19/1998,4,14.8,0.0,1.9503899999999998,1.1662377608860108,0.0,137.95747272236653,6.189058045619748,44.11836406317049 -4/20/1998,4,16.0,0.0,1.990398,1.1057013109554241,0.0,135.96707472236653,5.627980499689182,43.545449684188064 -4/21/1998,4,17.4,0.0,2.037074,1.051213110336122,0.0,133.93000072236654,5.139843034729587,42.95593971548876 -4/22/1998,4,17.5,0.0,2.040408,1.0020233164012309,0.0,131.88959272236653,4.71516344021474,42.353813072915464 -4/23/1998,4,16.9,0.6,2.020404,0.9739927866889425,0.0,130.1690428533779,4.638096233986156,41.74249498346789 -4/24/1998,4,8.5,8.9,1.740348,1.080308714822491,0.0,133.0118194915607,8.583923897084473,41.139549895497844 -4/25/1998,4,5.2,25.3,1.630326,1.6192809641430324,0.0,143.77081836735863,20.62218891466555,40.74595509244211 -4/26/1998,4,4.9,22.5,1.620324,2.5659354195635378,0.0,150.86586321966,31.969435503457646,40.962145436326544 -4/27/1998,4,9.2,0.6,1.763686,3.0438559800860654,0.0,149.29052881241066,28.46855729525751,41.7413743027729 -4/28/1998,4,9.8,5.6,1.7836900000000002,2.889314812416454,0.0,149.35840185848562,28.759581800799065,42.329974681480316 -4/29/1998,4,5.7,3.9,1.6469960000000001,2.8892355162268366,0.0,148.99809733754515,27.877644687635666,42.921354277890664 -4/30/1998,4,7.4,3.0,1.7036740000000001,2.8143957433094715,0.0,148.29556353600833,26.495910679779843,43.456809426714635 -5/1/1998,5,6.9,2.3,2.8198,2.7038591674242816,0.0,146.26023056102005,24.810475266396757,43.91246877216933 -5/2/1998,5,8.7,3.3,2.9301399999999997,2.600526291883063,0.0,144.52511519737493,23.933588845410323,44.27474316004578 -5/3/1998,5,9.4,12.9,2.9730499999999997,2.7168989103886387,0.0,146.4510903816881,29.066697111193825,44.58592773911538 -5/4/1998,5,14.9,1.4,3.3102,2.9056043547223056,0.0,143.6451295896014,26.427287278825307,45.14754403989276 -5/5/1998,5,11.0,1.9,3.07113,2.7210900770251563,0.0,141.31235410140718,24.396885420772243,45.56595752303617 -5/6/1998,5,7.4,15.2,2.85045,2.8061691302193172,0.0,144.7195208738649,30.411173543614133,45.87448264361406 -5/7/1998,5,4.3,10.0,2.66042,3.194304232766533,0.0,145.83717111589664,32.92315074091255,46.477551667922484 -5/8/1998,5,5.9,0.4,2.7585,3.220742461816196,0.0,143.22525354921137,29.14005871127919,47.19415817160966 -5/9/1998,5,10.7,0.0,3.05274,2.935509026803175,0.0,140.17251354921137,25.595351078812893,47.707277943741424 -5/10/1998,5,10.0,1.0,3.00983,2.6895859248994802,0.0,137.58545991502226,23.088679072756353,48.03289993880724 -5/11/1998,5,11.6,0.1,3.10791,2.487044493660041,0.0,134.52229997002544,20.385900738294836,48.22667589366892 -5/12/1998,5,5.6,10.0,2.74011,2.43800863539091,0.0,136.54192860494322,23.219495007398756,48.28143741271028 -5/13/1998,5,7.8,10.8,2.87497,2.676179741517882,0.0,138.60577516633268,26.305644095047473,48.476783414826016 -5/14/1998,5,9.3,0.0,2.96692,2.74211511465875,0.0,135.6388551663327,23.1294103626913,48.822529951281865 -5/15/1998,5,11.5,0.0,3.1017799999999998,2.5040041260086237,0.0,132.5370751663327,20.36608701554143,49.00254987039079 -5/16/1998,5,11.5,0.0,3.1017799999999998,2.2944802863579037,0.0,129.4352951663327,17.961995703521044,49.040803223760044 -5/17/1998,5,4.9,1.9,2.6972,2.1371571723153164,0.0,127.72867648672782,16.779854941668212,48.958086944460895 -5/18/1998,5,4.1,1.2,2.64816,2.0338122497751225,0.0,125.72378549802549,15.39870478795367,48.81791795265509 -5/19/1998,5,6.4,0.0,2.7891500000000002,1.9078763310232678,0.0,122.93463549802549,13.640373165519692,48.61149483299967 -5/20/1998,5,7.5,0.0,2.8565799999999997,1.768263069788362,0.0,120.07805549802549,12.110624654002132,48.32128359461566 -5/21/1998,5,6.9,0.6,2.8198,1.6518540006353308,0.0,117.61749945278217,11.020499494225172,47.96038915542346 -5/22/1998,5,4.8,2.5,2.69107,1.582174452784418,0.0,116.4709189750036,10.786845037754478,47.55220634702625 -5/23/1998,5,7.2,9.2,2.8381899999999995,1.630581635845644,0.0,119.39647434056829,13.064309817281709,47.14050447197345 -5/24/1998,5,10.0,0.0,3.00983,1.6950171745630995,0.0,116.3866443405683,11.609449541035087,46.85090987339807 -5/25/1998,5,12.2,0.8,3.14469,1.5861203006084403,0.0,113.74365742470053,10.642018016568295,46.49436415298186 -5/26/1998,5,11.4,32.4,3.09565,1.8389793003530421,0.0,131.6018349621278,20.94822813698715,46.09657777075064 -5/27/1998,5,14.2,3.9,3.26729,2.340635110069198,0.0,130.29358508210194,20.409418359204686,46.222057622184984 -5/28/1998,5,15.8,2.6,3.3653700000000004,2.281241894517086,0.0,128.26426809451596,19.263640960094044,46.31808738770152 -5/29/1998,5,13.7,21.2,3.23664,2.4548494873360074,0.0,136.29485287738905,26.93564285240872,46.35490768795219 -5/30/1998,5,9.0,7.8,2.94853,2.8755522025386995,0.0,136.93122461291824,27.892607546066397,46.77459167681358 -5/31/1998,5,10.7,1.4,3.05274,2.8540535426665476,0.0,134.5136011462755,25.274952031720506,47.23373022058063 -6/1/1998,6,9.8,0.0,3.495696,2.6382849139690316,0.0,131.0179051462755,22.23270826759684,47.55280321775505 -6/2/1998,6,10.7,1.7,3.56469,2.4350996655667965,0.0,128.3159513107061,20.423220028378616,47.71338256677979 -6/3/1998,6,13.1,0.7,3.7486740000000003,2.2834659515995908,0.0,124.9389976739489,18.33998106144659,47.780275916863125 -6/4/1998,6,11.7,2.1,3.64135,2.142061221561608,0.0,122.47263854883026,17.12429264857717,47.74166945159819 -6/5/1998,6,13.6,0.0,3.787004,2.0198246844566246,0.0,118.68563454883027,15.141634604262139,47.64305069499509 -6/6/1998,6,15.6,0.0,3.9403240000000004,1.8650288216105149,0.0,114.74531054883026,13.416722105708061,47.4472714113083 -6/7/1998,6,13.5,0.5,3.779338,1.733610264584462,0.0,111.28565686307267,12.096363917723606,47.169162088367536 -6/8/1998,6,12.6,2.0,3.710344,1.6410860742850886,0.0,108.90411821985285,11.438531251639363,46.83059704248637 -6/9/1998,6,8.7,2.3,3.4113700000000002,1.5856039179459862,0.0,107.05913300612423,10.928637402654859,46.46591166421861 -6/10/1998,6,9.3,2.7,3.4573660000000004,1.5419539762524854,0.0,105.47446154315386,10.578720003280097,46.08302530106698 -6/11/1998,6,8.2,0.0,3.37304,1.4826516081538084,0.0,102.11465818340771,9.446986402853684,45.690300795209644 -6/12/1998,6,7.9,2.4,3.350042,1.407438853425408,0.0,100.62601313564565,9.120421709792033,45.248844099448135 -6/13/1998,6,12.0,0.5,3.664348,1.3578401161640783,0.0,97.51138468851471,8.3107088205167,44.79988830294877 -6/14/1998,6,15.3,0.0,3.917326,1.2826384607996335,0.0,93.90401966314573,7.473816673849528,44.319425977915635 -6/15/1998,6,14.9,0.0,3.8866620000000003,1.2086970147209453,0.0,90.45729962469072,6.745720506249089,43.806728292049804 -6/16/1998,6,13.7,16.2,3.79467,1.242734407769139,0.0,100.0749258794343,9.453026247541976,43.26787975152126 -6/17/1998,6,13.3,5.3,3.764006,1.3822602649069444,0.0,100.43174143434466,9.853516105082898,42.87517346886793 -6/18/1998,6,16.2,0.8,3.9863200000000005,1.3701928994885444,0.0,97.23995533964127,9.027005937983505,42.510345804744716 -6/19/1998,6,16.2,1.9,3.9863200000000005,1.3069213881718165,0.0,95.0148919478156,8.561376918722038,42.111489185549 -6/20/1998,6,13.7,4.4,3.79467,1.2798265372499884,0.0,94.99146894573256,8.710370878613471,41.697328247774124 -6/21/1998,6,10.0,5.6,3.5110280000000005,1.291506853387412,0.0,96.14631946448702,9.117010164058394,41.29890022674932 -6/22/1998,6,13.1,2.9,3.7486740000000003,1.2968909845529544,0.0,94.95238533230865,8.865500724722988,40.92877273041725 -6/23/1998,6,15.6,0.0,3.9403240000000004,1.2495390513923206,0.0,91.41906620130342,7.956485630509001,40.55347231204506 -6/24/1998,6,11.6,6.2,3.633684,1.211420114063197,0.0,93.17122785515652,8.476376319705164,40.14022714732961 -6/25/1998,6,16.4,0.5,4.001652,1.2073978784565105,0.0,90.0396994596474,7.728474468796224,39.76124142036828 -6/26/1998,6,16.2,0.0,3.9863200000000005,1.1389907133834072,0.0,86.65007763747361,6.967272787852716,39.35244031540073 -6/27/1998,6,17.5,4.0,4.085978000000001,1.0946574344050706,0.0,86.5609148825848,7.050623068090924,38.91375514848535 -6/28/1998,6,21.4,0.0,4.384952,1.0701176394601233,0.0,82.97638889489738,6.377542069239104,38.48801119892019 -6/29/1998,6,19.6,0.0,4.246964,1.0098785130371708,0.0,79.64842840300363,5.791961600238021,38.03712807840375 -6/30/1998,6,20.8,0.0,4.3389560000000005,0.9558929497150649,0.0,76.38474886471123,5.282506592207079,37.56598359684757 -7/1/1998,7,21.3,0.0,4.427136,0.9073795367573781,0.0,73.19119261246907,4.839280735220158,37.07878925452097 -7/2/1998,7,21.7,0.0,4.459392,0.8651476984159077,0.0,70.10885982555337,4.452138276402546,36.57917750619156 -7/3/1998,7,13.8,5.1,3.8223360000000004,0.8616188437699766,0.0,72.10026364718489,4.673827545740641,36.07020086988786 -7/4/1998,7,15.5,1.0,3.959424,0.8442778446606345,0.0,70.28328606055966,4.420936002169723,35.582488229777134 -7/5/1998,7,18.6,0.0,4.209408,0.823855538965686,0.0,67.48933926096,4.067261121996145,35.09188526529008 -7/6/1998,7,16.3,1.1,4.023936,0.8075436498705074,0.0,65.91070275000482,3.855847918294185,34.59341061608409 -7/7/1998,7,18.7,0.0,4.217472,0.788308098538462,0.0,63.28555832325566,3.54738008483065,34.09433479967712 -7/8/1998,7,20.4,0.3,4.35456,0.7705057008501004,0.0,60.95631681880959,3.290311956386604,33.589817107925114 -7/9/1998,7,19.1,0.1,4.249728,0.7527080190429827,0.0,58.60177520518317,3.035243059042127,33.082536363585945 -7/10/1998,7,21.4,0.1,4.4352,0.7354487120182331,0.0,56.23980639050224,2.7998585410968806,32.572647789266334 -7/11/1998,7,14.8,4.1,3.9029760000000002,0.7268020752439175,0.0,57.99013504331282,2.8526106677733485,32.06118776053585 -7/12/1998,7,12.5,4.5,3.7175040000000004,0.7197766425411973,0.0,60.127839110278344,2.9508250588973732,31.562594538713803 -7/13/1998,7,15.1,0.0,3.927168,0.7030204496432554,0.0,57.89786342170498,2.7147590541855835,31.078883900884396 -7/14/1998,7,15.9,1.0,3.99168,0.688956259970017,0.0,56.643050365184706,2.5698458819499046,30.593044175575987 -7/15/1998,7,12.2,7.0,3.693312,0.6875357806772461,0.0,61.18692686333846,2.844742298466891,30.109675586161963 -7/16/1998,7,11.1,2.5,3.6046080000000003,0.6776808382691744,0.0,61.39834002280412,2.822881816064436,29.649719189362067 -7/17/1998,7,9.5,0.4,3.475584,0.6628644033120394,0.0,59.7499046048004,2.6302341794826165,29.197868896378047 -7/18/1998,7,11.4,7.3,3.6288,0.6645450218143945,0.0,64.43423395939546,2.987885242196737,28.745423227424617 -7/19/1998,7,11.0,5.2,3.596544,0.6633593783711415,0.0,66.9625456904789,3.2320399290474064,28.31990902498596 -7/20/1998,7,11.4,6.8,3.6288,0.6682567281650674,0.0,70.77609874814534,3.6651490448765087,27.915112840938612 -7/21/1998,7,9.0,7.9,3.4352640000000005,0.6794174354194142,0.0,75.46472813755612,4.287202489738035,27.540068036363664 -7/22/1998,7,12.5,0.0,3.7175040000000004,0.6623993247192356,0.0,72.81537098664218,3.9442262905589915,27.203626800123292 -7/23/1998,7,12.4,0.0,3.7094400000000003,0.6459959571924037,0.0,70.26457063011475,3.628688187314272,26.856765578648773 -7/24/1998,7,11.4,2.3,3.6288,0.6380320642543135,0.0,69.89467127993113,3.6003590241827768,26.501064676441512 -7/25/1998,7,13.7,1.5,3.8142720000000003,0.6274533724930408,0.0,68.70824861581411,3.481071527020143,26.15106133412182 -7/26/1998,7,10.7,0.0,3.572352,0.6121194478215637,0.0,66.39027666983998,3.202585804858532,25.80209368379039 -7/27/1998,7,12.3,0.0,3.701376,0.5973149902212457,0.0,64.06961016026301,2.9463789404698493,25.44618110035751 -7/28/1998,7,13.8,0.0,3.8223360000000004,0.583011587264445,0.0,61.75687451552282,2.7106686252322616,25.084576425373854 -7/29/1998,7,14.7,0.0,3.8949119999999997,0.5691828206189702,0.0,59.485294653090065,2.4938151352136804,24.71841832812799 -7/30/1998,7,16.6,0.0,4.048128,0.5558041120984198,0.0,57.2111980729274,2.2943099243965857,24.348740718326113 -7/31/1998,7,17.6,0.0,4.128768,0.5428525819169342,0.0,54.98047030028443,2.110765130444859,23.97648140017942 -8/1/1998,8,18.5,2.1,3.4131080000000003,0.5343388835059356,0.0,55.17390899460773,2.076302764399135,23.602490028698075 -8/2/1998,8,14.7,1.3,3.167932,0.524507728052457,0.0,54.73937147064544,1.9940873575191898,23.23425536634407 -8/3/1998,8,12.2,22.1,3.0066319999999997,0.5544179678366778,0.0,73.8852507594808,3.234415843293831,22.869274626893144 -8/4/1998,8,13.3,19.3,3.077604,0.6149543364516201,0.0,88.56409592012255,5.449404597374023,22.57360992651997 -8/5/1998,8,16.9,0.0,3.309876,0.6263968490173286,0.0,85.7957875288891,4.9844819997154,22.394607957858273 -8/6/1998,8,15.5,6.7,3.219548,0.6236467862630091,0.0,88.66706668201084,5.800129610116719,22.195939898686877 -8/7/1998,8,14.4,0.6,3.148576,0.6495770221237431,0.0,86.51255076060254,5.407666333117588,22.042027581218974 -8/8/1998,8,13.9,2.4,3.116316,0.626130535137747,0.0,85.9208175303078,5.393860385228601,21.871570346250476 -8/9/1998,8,14.6,7.0,3.16148,0.6467284009032438,0.0,89.0764098721341,6.215291415669192,21.703831958586896 -8/10/1998,8,13.2,0.3,3.0711519999999997,0.6701891496187308,0.0,86.73323712040528,5.7104727010432965,21.580519890198616 -8/11/1998,8,13.7,11.5,3.103412,0.6915133969985532,0.0,93.54284393755394,7.360036646581739,21.43443312744681 -8/12/1998,8,13.8,13.4,3.109864,0.8410776468048412,0.0,101.20563689882817,9.636696284373835,21.37374629722696 -8/13/1998,8,13.8,0.1,3.109864,0.9265251611371546,0.0,98.30649876054389,8.65427410694802,21.42810618550111 -8/14/1998,8,12.7,4.5,3.0388919999999997,0.8848927309617749,0.0,98.85683189597322,8.901129009053474,21.432257767138488 -8/15/1998,8,11.5,23.4,2.961468,1.0485109095542935,0.0,113.54684296519045,13.932702595221732,21.448669062248392 -8/16/1998,8,13.4,2.1,3.084056,1.2805763348228885,0.0,111.82391859481629,13.103819628217058,21.71633081076451 -8/17/1998,8,11.9,0.2,2.987276,1.2017861230807696,0.0,108.96875773300798,11.711707938357167,21.937195175960074 -8/18/1998,8,9.3,10.2,2.819524,1.1944856210960708,0.0,113.09126994634411,13.690649693034599,22.084036669358728 -8/19/1998,8,9.6,10.6,2.83888,1.3630349125441006,0.0,117.1579331966207,15.848821982663498,22.326888420623284 -8/20/1998,8,13.8,0.0,3.109864,1.423356187907572,0.0,114.0480691966207,14.031975124917244,22.672791751343993 -8/21/1998,8,16.8,0.1,3.303424,1.2911235088769426,0.0,110.80909491597133,12.486868639327357,22.920934672562975 -8/22/1998,8,15.5,0.0,3.219548,1.1757928916743734,0.0,107.58954691597133,11.107075716214801,23.08685941107808 -8/23/1998,8,12.9,0.0,3.0517960000000004,1.0726629821772917,0.0,104.53775091597133,9.906655873106878,23.18047600866726 -8/24/1998,8,13.7,0.0,3.103412,0.9819454975864186,0.0,101.47397047734978,8.862290609602983,23.212199282149257 -8/25/1998,8,15.9,0.0,3.245356,0.9020467119305154,0.0,98.36395858829047,7.953692830354595,23.19106982698642 -8/26/1998,8,14.3,0.0,3.142124,0.8315796858292732,0.0,95.4451583709397,7.163212762408498,23.124933071964424 -8/27/1998,8,15.3,0.0,3.206644,0.769337392192198,0.0,92.55481325412768,6.475495103295393,23.02059504864556 -8/28/1998,8,15.8,0.7,3.238904,0.7188396210866036,0.0,90.2714556202498,6.029523595502851,22.88395790283742 -8/29/1998,8,16.6,2.8,3.29052,0.6944457307616153,0.0,89.69165059866006,6.063815083178549,22.727754924555814 -8/30/1998,8,12.5,24.2,3.0259880000000003,0.8235432384686383,0.0,106.43675485808278,10.410822423507943,22.576390580223624 -8/31/1998,8,9.9,9.5,2.858236,1.095115016457507,0.0,110.20724045032739,12.172193916207293,22.64540388979455 -9/1/1998,9,12.7,1.3,2.333,1.1589232538696577,0.0,108.74783422732399,11.259714930103748,22.801105507809027 -9/2/1998,9,15.0,0.1,2.4403180000000004,1.0797843545923984,0.0,106.37572737637923,10.071240840135008,22.908069144158034 -9/3/1998,9,14.6,2.2,2.421654,1.0092167853166967,0.0,105.49004133248623,9.669511574810462,22.95346980328162 -9/4/1998,9,9.4,19.5,2.1790220000000002,1.1323490699251648,0.0,117.04802576958272,14.427199048850381,22.977875985956512 -9/5/1998,9,9.9,8.2,2.2023520000000003,1.4194643473683162,0.0,119.94714272367591,15.893694218406637,23.2396784186799 -9/6/1998,9,11.0,0.0,2.2536780000000003,1.4447065212452777,0.0,117.69346472367592,14.071013970013773,23.569569561226636 -9/7/1998,9,12.4,0.0,2.3190020000000002,1.310643740488104,0.0,115.37446272367592,12.485282153911982,23.801728868502792 -9/8/1998,9,14.2,0.0,2.4029900000000004,1.1929341398892683,0.0,112.97147272367592,11.105695473903424,23.949958398828336 -9/9/1998,9,15.0,0.0,2.4403180000000004,1.0894733056549895,0.0,110.53115472367591,9.90545506229598,24.02624400454694 -9/10/1998,9,13.7,0.0,2.3796600000000003,0.9984299677921401,0.0,108.15149472367591,8.861245904197501,24.0409918775708 -9/11/1998,9,11.4,0.0,2.272342,0.918210500014015,0.0,105.87915272367592,7.9527839366518265,24.00323433522926 -9/12/1998,9,10.8,6.8,2.244346,0.9083285716478926,0.0,108.405018727076,9.192439930271863,23.920808845357268 -9/13/1998,9,11.0,0.6,2.2536780000000003,0.947069666146668,0.0,106.56201758861917,8.43024587779335,23.902014664963716 -9/14/1998,9,11.8,2.2,2.2910060000000003,0.9022594862074695,0.0,105.80424353540873,8.244581966890662,23.84548666555411 -9/15/1998,9,12.2,12.5,2.30967,0.9785972847243695,0.0,112.270994838836,11.14173552560284,23.78080603058756 -9/16/1998,9,11.9,22.4,2.295672,1.3191785525743707,0.0,124.70059132714016,17.611541418970326,23.86227668625595 -9/17/1998,9,10.3,5.0,2.2210160000000005,1.65513164609877,0.0,125.28703600562211,17.758080356022223,24.265608223479347 -9/18/1998,9,9.6,1.5,2.1883540000000004,1.628510543409101,0.0,123.9336277796357,16.358084135725743,24.668200076810873 -9/19/1998,9,8.3,5.5,2.1276960000000003,1.5798223762855772,0.0,124.9288528491147,16.85211212860237,24.992740282060943 -9/20/1998,9,9.9,0.0,2.2023520000000003,1.5529605546436374,0.0,122.7265008491147,14.904837551884063,25.335491082849842 -9/21/1998,9,11.0,5.1,2.2536780000000003,1.474165979015232,0.0,123.41874356441092,15.364787954842924,25.574023138787048 -9/22/1998,9,9.9,40.0,2.2023520000000003,1.963267104926868,0.0,144.09685489480253,30.730402190321755,25.830782073753454 -9/23/1998,9,10.1,2.1,2.211684,2.6782053112754483,0.0,142.69173843626677,28.272382364115696,26.85068654179447 -9/24/1998,9,8.6,7.8,2.141694,2.6107235049990587,0.0,143.65523215271455,29.535284940332883,27.727291929164366 -9/25/1998,9,8.5,6.0,2.1370280000000004,2.6944992054462817,0.0,143.84924366154806,29.608158389256104,28.64951033759772 -9/26/1998,9,9.6,1.7,2.1883540000000004,2.6394096462070964,0.0,142.3180486022635,27.045438857937338,29.556928050308574 -9/27/1998,9,14.2,0.0,2.4029900000000004,2.428324125733017,0.0,139.9150586022635,23.773031806405488,30.31806143219927 -9/28/1998,9,8.6,0.1,2.141694,2.192663962193482,0.0,137.81589107397974,20.98351119985655,30.900351793875554 -9/29/1998,9,7.2,11.1,2.0763700000000003,2.1719878677401008,0.0,140.68261243827308,24.656063379581866,31.331520317990872 -9/30/1998,9,7.8,3.0,2.104366,2.3312807726136335,0.0,139.83173017776474,23.440791400744573,31.93769308061015 -10/1/1998,10,9.2,9.2,0.985424,2.3554738181836608,0.0,142.76613895088823,25.917155745524283,32.47097878903518 -10/2/1998,10,8.9,16.1,0.9796159999999999,2.689522457692362,0.0,148.1840707693099,32.49387768018447,33.117417000530686 -10/3/1998,10,9.3,8.9,0.98736,3.093807271867768,0.0,150.2426131188051,34.36727123226529,34.079762544529295 -10/4/1998,10,11.7,0.7,1.033824,3.095753169040005,0.0,149.4331820801525,30.61863301072338,35.11653085525197 -10/5/1998,10,12.2,0.0,1.043504,2.812785609889711,0.0,148.3896780801525,26.881710719329337,35.9451318886831 -10/6/1998,10,11.6,0.0,1.031888,2.5409094814784807,0.0,147.35779008015248,23.63058832581652,36.570314786875905 -10/7/1998,10,9.7,0.0,0.995104,2.3025015297432216,0.0,146.36268608015249,20.802111843460374,37.02043790742921 -10/8/1998,10,11.6,0.0,1.031888,2.0932484061164076,0.0,145.33079808015248,18.341337303810526,37.32013474145365 -10/9/1998,10,10.2,1.8,1.004784,1.9433296205844854,0.0,144.99491829587907,17.33155923858857,37.490798911815105 -10/10/1998,10,12.1,0.4,1.041568,1.8423876238478742,0.0,144.10335869984175,15.57194813360937,37.607560895508236 -10/11/1998,10,12.1,2.4,1.041568,1.7458613541984604,0.0,143.98342538166787,15.269460194414034,37.63400708427854 -10/12/1998,10,14.0,0.1,1.0783519999999998,1.680551264209266,0.0,142.94359523606505,13.589408514743036,37.64479995231366 -10/13/1998,10,13.7,1.9,1.072544,1.5838371940811025,0.0,142.62269395176284,13.21464269212866,37.57137437900454 -10/14/1998,10,12.8,7.8,1.05512,1.6597371563063157,0.0,144.6780983879393,16.429714705975503,37.480679026030884 -10/15/1998,10,9.0,6.2,0.981552,1.8808073791044952,0.0,146.04154417582,18.392354006317973,37.55255118080904 -10/16/1998,10,7.3,0.1,0.9486399999999999,1.9197923939378925,0.0,145.12934094558935,16.308411215727286,37.72111785750876 -10/17/1998,10,5.8,0.0,0.9196,1.7605174147397453,0.0,144.20974094558935,14.43181775768274,37.78211606114495 -10/18/1998,10,7.6,0.0,0.954448,1.6170276239157801,0.0,143.25529294558933,12.799181449183983,37.74806462780619 -10/19/1998,10,7.5,0.0,0.9525119999999999,1.4904839564370864,0.0,142.30278094558932,11.378787860790066,37.63306240770926 -10/20/1998,10,5.1,0.0,0.906048,1.3787175672580156,0.0,141.39673294558932,10.143045438887357,37.44934055259458 -10/21/1998,10,6.1,0.0,0.9254079999999999,1.279840878169069,0.0,140.47132494558932,9.067949531832001,37.207506013487055 -10/22/1998,10,8.9,0.1,0.9796159999999999,1.193951385117614,0.0,139.53369700062197,8.190628037661192,36.91675336980891 -10/23/1998,10,8.6,0.0,0.973808,1.1188707877519324,0.0,138.55988900062198,7.369346392765236,36.58794970429579 -10/24/1998,10,7.1,0.0,0.9447679999999999,1.0491054210863973,0.0,137.61512100062197,6.654831361705756,36.224658029848136 -10/25/1998,10,5.5,0.0,0.9137919999999999,0.9868957953725372,0.0,136.70132900062197,6.033203284684008,35.83290643733646 -10/26/1998,10,6.0,0.1,0.923472,0.9329225160206991,0.0,135.82343778062972,5.546806077667331,35.41790847282393 -10/27/1998,10,6.1,0.0,0.9254079999999999,0.8856547546555003,0.0,134.8980297806297,5.069221287570579,34.986890607250814 -10/28/1998,10,7.3,0.0,0.9486399999999999,0.8403850171738075,0.0,133.9493897806297,4.653722520186403,34.540613859484324 -10/29/1998,10,10.5,1.2,1.010592,0.8287691732269167,0.0,133.51624186383992,4.903980635361248,34.08248770830396 -10/30/1998,10,13.0,2.6,1.0589920000000002,0.8500779645625668,0.0,133.7186065807247,5.848606435879523,33.64603698590594 -10/31/1998,10,13.1,0.0,1.060928,0.8741948811300677,0.0,132.6576785807247,5.331787599215185,33.2655465679818 -11/1/1998,11,13.7,0.2,0.404928,0.8299332339769518,0.0,132.35132733589074,4.983578456151139,32.86682501658292 -11/2/1998,11,11.6,0.0,0.390942,0.7922286692942782,0.0,131.96038533589075,4.5792132568514905,32.45866743905882 -11/3/1998,11,8.2,4.0,0.36829799999999996,0.8272603016691593,0.0,133.5885899786356,6.216373553558497,32.03845475312022 -11/4/1998,11,5.4,3.8,0.34965,0.9298102415482734,0.0,135.0799690650437,7.610715905187795,31.70850433573574 -11/5/1998,11,1.9,19.2,0.32634,1.2768656980230073,0.0,143.79403517329013,17.024416729266978,31.454870044280415 -11/6/1998,11,3.6,0.7,0.337662,1.7057735213437235,0.0,143.727355218312,15.483760509440387,31.676993479858158 -11/7/1998,11,3.9,0.0,0.33966,1.5784720074830738,0.0,143.387695218312,13.714371643213138,31.81764163573301 -11/8/1998,11,3.6,0.0,0.337662,1.4448088297520998,0.0,143.050033218312,12.17500332959543,31.867007385179004 -11/9/1998,11,3.0,0.0,0.333666,1.327091101461316,0.0,142.716367218312,10.835752896748025,31.838417403955194 -11/10/1998,11,2.7,0.0,0.331668,1.2232745294567944,0.0,142.384699218312,9.670605020170782,31.74343670071349 -11/11/1998,11,3.1,0.0,0.334332,1.131580006389152,0.0,142.050367218312,8.656926367548582,31.592098217707765 -11/12/1998,11,1.5,0.0,0.323676,1.0504591480050678,0.0,141.726691218312,7.775025939767266,31.39310257173104 -11/13/1998,11,0.8,0.0,0.319014,0.9785643103619845,0.0,141.407677218312,7.00777256759752,31.15399181728478 -11/14/1998,11,-0.7,0.1,0.309024,0.9147225045805505,0.1,141.098653218312,6.340262133809843,30.88130060931896 -11/15/1998,11,-4.4,0.0,0.284382,0.8579127024593904,0.1,140.814271218312,5.759528056414563,30.580687703823074 -11/16/1998,11,-4.5,0.0,0.283716,0.807246092144495,0.1,140.530555218312,5.25428940908067,30.25705035256734 -11/17/1998,11,-4.1,1.8,0.28638,0.7619489003504395,1.9000000000000001,140.244175218312,4.814731785900182,29.914623815970025 -11/18/1998,11,-3.7,0.1,0.289044,0.7240279558697577,2.0,139.955131218312,4.429553243028168,29.55706792894563 -11/19/1998,11,-4.3,2.4,0.285048,0.7060037541579399,4.4,139.67008321831202,4.075188983585914,29.187404232518126 -11/20/1998,11,-1.0,0.0,0.307026,0.6886235278879124,4.4,139.363057218312,3.7491738648990407,28.807415597047058 -11/21/1998,11,-1.1,0.0,0.30636,0.671851718238235,4.4,139.056697218312,3.4492399557071174,28.41872597835107 -11/22/1998,11,-2.4,0.0,0.297702,0.6556552919089045,4.4,138.758995218312,3.173300759250548,28.022813456569402 -11/23/1998,11,2.8,0.0,0.332334,0.7144037289096268,0.0,140.34665510343532,5.399442813387198,27.62102222540054 -11/24/1998,11,6.4,0.2,0.35631,0.7249475380170662,0.0,140.07456305386654,5.0567972972156205,27.33857392156189 -11/25/1998,11,4.1,3.3,0.340992,0.7465714638869702,0.0,141.1318596068988,6.544625095545349,27.04464230799143 -11/26/1998,11,5.2,0.0,0.348318,0.7984705841031785,0.0,140.78354160689878,5.937323833124455,26.83098071660887 -11/27/1998,11,4.7,0.0,0.344988,0.7474598895794292,0.0,140.43855360689878,5.408971734818276,26.591227293932914 -11/28/1998,11,2.9,0.0,0.333,0.7020247757155742,0.0,140.10555360689878,4.949305409291901,26.32985133479517 -11/29/1998,11,2.6,0.1,0.331002,0.663191260796214,0.0,139.81689402097132,4.607053292011393,26.05071957856386 -11/30/1998,11,2.1,0.0,0.327672,0.6423558278913775,0.0,139.4892220209713,4.2384890286504815,25.760057851593153 -12/1/1998,12,1.2,0.0,0.16615200000000002,0.6261179201106295,0.0,139.3230700209713,3.899409906358443,25.456781145993812 -12/2/1998,12,-3.1,0.0,0.152306,0.6104760337833302,0.0,139.1707640209713,3.587457113849767,25.142616018391855 -12/3/1998,12,-2.5,0.0,0.154238,0.5953965474165838,0.0,139.0165260209713,3.3004605447417856,24.819136553716508 -12/4/1998,12,-0.7,0.0,0.160034,0.5808482480324586,0.0,138.8564920209713,3.036423701162443,24.487776849879268 -12/5/1998,12,-1.7,0.0,0.156814,0.5668021441108795,0.0,138.6996780209713,2.7935098050694473,24.149842497939805 -12/6/1998,12,-2.4,0.0,0.15456,0.5532312933846064,0.0,138.5451180209713,2.5700290206638914,23.806521138234483 -12/7/1998,12,-0.4,0.1,0.161,0.5401106443003831,0.1,138.3841180209713,2.36442669901078,23.458892166502988 -12/8/1998,12,-4.6,0.0,0.147476,0.527416890055167,0.1,138.2366420209713,2.1752725630899175,23.10793565812347 -12/9/1998,12,-5.1,0.0,0.145866,0.5151283342035916,0.1,138.09077602097128,2.0012507580427243,22.754540573115495 -12/10/1998,12,-5.0,0.0,0.146188,0.5032247669130857,0.1,137.94458802097128,1.8411506973993064,22.399512299555322 -12/11/1998,12,-7.6,0.1,0.137816,0.4916873510169045,0.2,137.8067720209713,1.693858641607362,22.04357958843418 -12/12/1998,12,-8.5,0.0,0.134918,0.48049851708328056,0.2,137.6718540209713,1.5583499502787732,21.687400928745866 -12/13/1998,12,-8.7,0.0,0.134274,0.46964186678139186,0.2,137.5375800209713,1.4336819542564714,21.331570407684886 -12/14/1998,12,-3.9,0.0,0.14973,0.45910208388235885,0.2,137.38785002097129,1.3189873979159539,20.976623097244012 -12/15/1998,12,-2.5,0.0,0.154238,0.44886485228637896,0.2,137.2336120209713,1.2134684060826775,20.62304000519493 -12/16/1998,12,-0.2,0.1,0.161644,0.43891678051578525,0.30000000000000004,137.0719680209713,1.1163909335960633,20.271252625395167 -12/17/1998,12,-0.8,0.7,0.159712,0.4292453321585927,1.0,136.91225602097128,1.0270796589083782,19.921647119567066 -12/18/1998,12,-1.1,0.1,0.158746,0.41983876178829405,1.1,136.75351002097128,0.9449132861957079,19.574568160121142 -12/19/1998,12,0.5,1.5,0.16389800000000002,0.4531711336170394,0.0,137.77344276452234,2.2854894797489775,19.230322461228504 -12/20/1998,12,-0.4,3.1,0.161,0.4422793193608995,3.1,137.61244276452234,2.1026503213690595,18.959990485991383 -12/21/1998,12,2.9,3.0,0.171626,0.5329056161002911,0.0,140.16901665173216,5.306238408449698,18.685923192340006 -12/22/1998,12,1.9,4.0,0.168406,0.6084228512169702,0.0,141.69185147321102,7.1686865938723825,18.57751664891569 -12/23/1998,12,3.3,5.5,0.172914,0.7783157153001796,0.0,143.76274905341532,9.736445756464686,18.564400645630997 -12/24/1998,12,-0.3,9.8,0.161322,0.8783472204777949,9.8,143.6014270534153,8.714207808124277,18.679934920541612 -12/25/1998,12,-1.1,2.4,0.158746,0.8017971464489975,12.200000000000001,143.4426810534153,7.824860793068121,18.742046612536996 -12/26/1998,12,-4.4,3.2,0.14812,0.7344458807512773,15.400000000000002,143.2945610534153,7.051128889969265,18.75844871993966 -12/27/1998,12,-5.6,5.0,0.144256,0.6751126323274477,20.400000000000002,143.15030505341528,6.37798213427326,18.735836190039333 -12/28/1998,12,-5.9,5.8,0.14329,0.6227698118772392,26.200000000000003,143.00701505341527,5.7923444568177365,18.680018572952207 -12/29/1998,12,-6.9,3.2,0.14007,0.5765231216505107,29.400000000000002,142.86694505341526,5.282839677431431,18.596035424334048 -12/30/1998,12,-7.8,0.4,0.137172,0.5355942334469107,29.8,142.72977305341527,4.8395705193653455,18.48825669971894 -12/31/1998,12,-6.8,0.0,0.14039200000000002,0.5007815481683401,29.8,142.58938105341528,4.452404877816117,18.36047009169283 -1/1/1999,1,-5.4,0.7,0.139104,0.48720399330272035,30.5,142.45027705341528,4.096212487590828,18.215880933749776 -1/2/1999,1,-1.7,7.1,0.151018,0.47418294344659323,37.6,142.29925905341528,3.7685154885835614,18.05637393945432 -1/3/1999,1,-1.0,9.8,0.153272,0.46168447218679454,47.400000000000006,142.1459870534153,3.4670342494968764,17.883672235094412 -1/4/1999,1,-3.0,1.0,0.14683200000000002,0.4496771553434612,48.400000000000006,141.9991550534153,3.1896715095371264,17.699350502867368 -1/5/1999,1,-4.8,0.0,0.141036,0.43813187502896217,48.400000000000006,141.8581190534153,2.9344977887741566,17.504847068286875 -1/6/1999,1,-6.3,0.0,0.136206,0.42702163929736364,48.400000000000006,141.7219130534153,2.699737965672224,17.301475016359845 -1/7/1999,1,-6.0,0.0,0.137172,0.4163214161388786,48.400000000000006,141.5847410534153,2.483758928418446,17.090432414316258 -1/8/1999,1,-2.0,0.0,0.150052,0.4060079806733662,48.400000000000006,141.43468905341533,2.2850582141449705,16.872811712450854 -1/9/1999,1,-5.1,2.5,0.14007,0.39605977448858287,50.900000000000006,141.29461905341532,2.1022535570133725,16.649608388909083 -1/10/1999,1,-4.3,0.0,0.142646,0.38645677615320045,50.900000000000006,141.1519730534153,1.9340732724523026,16.42172889898157 -1/11/1999,1,-1.8,0.0,0.150696,0.37718038201217463,50.900000000000006,141.0012770534153,1.7793474106561185,16.189997984624554 -1/12/1999,1,0.4,0.0,0.15778,0.3980623603366515,49.2,141.54852825697378,2.631968414245138,15.955165395464869 -1/13/1999,1,2.2,0.5,0.163576,0.5625260887358161,39.85,145.41726724573064,8.239095952348652,15.767660508267827 -1/14/1999,1,0.2,0.0,0.157136,0.7241317144995636,39.0,145.57525555868284,7.946389165591101,15.864262095719903 -1/15/1999,1,0.4,0.3,0.15778,0.7252635399642886,37.3,146.15572895131268,8.41860518143441,15.944296312085061 -1/16/1999,1,0.3,0.5,0.15745800000000001,0.7592973107957103,36.025,146.64294949830438,8.698007960856273,16.04634064491508 -1/17/1999,1,-1.9,1.0,0.150374,0.7489296904223542,37.025,146.49257549830438,7.810766925944957,16.16031423005959 -1/18/1999,1,1.7,1.6,0.161966,0.8522648377774691,29.799999999999997,149.50535786903953,12.689118854836943,16.227646291755647 -1/19/1999,1,0.2,7.7,0.157136,1.2324708963742856,28.949999999999996,152.15578969077464,17.02546558197303,16.53754930866238 -1/20/1999,1,-1.6,1.7,0.15134,1.4006043628199034,30.649999999999995,152.00444969077463,15.055655056316537,17.058071601587788 -1/21/1999,1,-1.5,0.0,0.151662,1.2589342082331256,30.649999999999995,151.85278769077465,13.341919898995387,17.469692922371856 -1/22/1999,1,1.6,0.0,0.161644,1.2769945949398769,23.849999999999994,153.7537573758132,16.58835662708746,17.787395058874186 -1/23/1999,1,3.0,0.7,0.16615200000000002,1.680848139657462,11.099999999999994,157.389342023977,24.323633617402244,18.261064989051075 -1/24/1999,1,2.6,0.4,0.164864,2.2573925802149466,0.049999999999993605,159.99719287304924,30.082346398067713,19.112025370140163 -1/25/1999,1,2.1,0.0,0.163254,2.45893112622173,0.0,159.84455481718382,26.454525422184332,20.233902182640747 -1/26/1999,1,2.0,0.1,0.162932,2.202391141860846,0.0,159.70303118282794,23.33752875165622,21.15195041009715 -1/27/1999,1,1.7,0.0,0.161966,1.9777066947905986,0.0,159.54106518282794,20.54715001394091,21.895787839478018 -1/28/1999,1,2.8,0.0,0.16550800000000002,1.7771477077286133,0.0,159.37555718282795,18.11952051212859,22.485229583385504 -1/29/1999,1,1.5,3.1,0.161322,1.6741177845439716,0.0,159.89466007534455,18.427057953035256,22.94150101732422 -1/30/1999,1,1.1,9.3,0.160034,1.8536168049521533,0.0,161.72021884755856,23.589447646926683,23.404023894629496 -1/31/1999,1,2.5,0.3,0.164542,2.048540125107029,0.0,161.61334874108377,21.008647559301004,24.11541579908324 -2/1/1999,2,1.9,2.9,0.186876,1.9263999416625588,0.0,161.98760390180308,20.85989221587254,24.683539861066624 -2/2/1999,2,1.5,0.7,0.185444,1.8729290208068397,0.0,161.9345282455977,18.959237884014478,25.232863674638917 -2/3/1999,2,-5.0,6.0,0.16217399999999998,1.7201263688804391,6.0,161.7723542455977,16.738036959092597,25.676168295346862 -2/4/1999,2,-4.7,0.0,0.163248,1.5575605481348376,6.0,161.6091062455977,14.805592154410558,25.999546777394553 -2/5/1999,2,-6.5,1.0,0.156804,1.414907271941987,7.0,161.4523022455977,13.124365174337186,26.21983544956719 -2/6/1999,2,-8.2,0.0,0.150718,1.2896023297529138,7.0,161.3015842455977,11.661697701673353,26.351656999292704 -2/7/1999,2,-6.2,0.0,0.157878,1.1794143699851525,7.0,161.14370624559768,10.389177000455817,26.40770874439052 -2/8/1999,2,-5.6,8.5,0.160026,1.0824016381251975,15.5,160.9836802455977,9.282083990396561,26.3990134195255 -2/9/1999,2,-7.8,1.9,0.15214999999999998,0.9968743386822747,17.4,160.8315302455977,8.31891307164501,26.335137350654815 -2/10/1999,2,-7.9,0.1,0.15179199999999998,0.9213618898966647,17.5,160.6797382455977,7.4809543723311585,26.22438025722397 -2/11/1999,2,-6.5,5.8,0.156804,0.8545844351483222,23.3,160.5229342455977,6.751930303928107,26.07394037069605 -2/12/1999,2,-1.9,5.9,0.17327199999999998,0.7954280576984997,29.200000000000003,160.3496622455977,6.117679364417454,25.890058078478535 -2/13/1999,2,-3.2,6.9,0.168618,0.742923217334765,36.1,160.1810442455977,5.5658810470431845,25.678140885129835 -2/14/1999,2,-8.0,1.6,0.15143399999999999,0.6962259900755743,37.7,160.0296102455977,5.085816510927572,25.4428721197794 -2/15/1999,2,-11.9,1.4,0.137472,0.6546017465401919,39.1,159.8921382455977,4.668160364506987,25.188305502930188 -2/16/1999,2,-10.5,4.0,0.142484,0.6272001742823315,43.1,159.7496542455977,4.294707535346428,24.917947411096936 -2/17/1999,2,-6.7,0.5,0.156088,0.6112204047684079,43.6,159.59356624559769,3.951130932518714,24.63432383964232 -2/18/1999,2,-5.8,3.4,0.15931,0.5958350919270247,47.0,159.43425624559768,3.6350404579172166,24.33919390947541 -2/19/1999,2,1.3,3.5,0.184728,0.7925158750459613,41.475,161.224344334804,10.394421132077536,24.03416205418176 -2/20/1999,2,3.3,4.4,0.191888,1.4795633748033978,27.450000000000003,164.68149202619537,24.062610693516035,24.073199869702 -2/21/1999,2,1.7,0.0,0.18616,2.2735763428766855,20.225,165.63002066084735,27.268282668706956,24.79486640698376 -2/22/1999,2,1.9,0.0,0.186876,2.5591482919047452,12.150000000000002,166.6188341084954,30.866216474126965,25.662383212279433 -2/23/1999,2,2.5,0.0,0.189024,2.9227504343701693,1.5250000000000021,167.84889566668534,36.30302277430056,26.692446371740193 -2/24/1999,2,0.6,0.0,0.182222,3.1262707202959876,0.0,167.84731648297512,33.17148699735171,27.973748583020416 -2/25/1999,2,0.9,10.5,0.183296,3.147292873884097,0.0,168.90799534427242,38.35871882639865,29.072847961227595 -2/26/1999,2,1.0,5.4,0.18365399999999998,3.436027080217342,0.0,169.2931067222076,38.44682000103166,30.409326943322974 -2/27/1999,2,0.6,0.6,0.182222,3.340268164513269,0.0,169.17120024405435,34.23191787905079,31.723481404508096 -2/28/1999,2,0.4,0.7,0.181506,3.0437231121102397,0.0,169.06112730715216,30.653835491676354,32.800607670370475 -3/1/1999,3,-0.6,0.0,0.60372,2.7701076267475084,0.0,168.45740730715215,26.91233687775843,33.67728729154688 -3/2/1999,3,0.7,0.0,0.62049,2.498821004189494,0.0,167.83691730715216,23.65723308364984,34.34935838960387 -3/3/1999,3,-1.0,0.0,0.59856,2.2610250951856385,0.0,167.23835730715217,20.82529278277536,34.845232875994284 -3/4/1999,3,-1.6,0.0,0.59082,2.0524016379214682,0.0,166.64753730715216,18.361504721014562,35.189592857613164 -3/5/1999,3,-1.0,0.0,0.59856,1.8691930339994407,0.0,166.04897730715217,16.21800910728267,35.40387623651163 -3/6/1999,3,-2.5,0.0,0.57921,1.7081294764071215,0.0,165.46976730715218,14.35316792333592,35.50669916714553 -3/7/1999,3,-1.9,0.1,0.5869500000000001,1.5663655505652518,0.1,164.88281730715218,12.73075609330225,35.51422357996941 -3/8/1999,3,-0.1,0.0,0.61017,1.441425076961004,0.1,164.27264730715217,11.319257801172958,35.440476913035134 -3/9/1999,3,2.1,0.0,0.6385500000000001,1.3336672438768187,0.0,163.65029331012232,10.175058284050303,35.29763026483308 -3/10/1999,3,3.4,0.0,0.65532,1.2401355468910067,0.0,162.99497331012233,9.095800707123763,35.10043057373894 -3/11/1999,3,4.4,0.0,0.66822,1.1530596737645253,0.0,162.32675331012234,8.156846615197674,34.85321199762035 -3/12/1999,3,4.8,6.6,0.6733800000000001,1.2371705848901258,0.0,162.87504811995478,12.718281745389515,34.56399008842783 -3/13/1999,3,6.2,5.0,0.69144,1.545045860597229,0.0,163.0767037101377,15.415309528305944,34.50862437392875 -3/14/1999,3,6.1,14.5,0.69015,1.9870355337441912,0.0,164.94184933071108,25.59952366905282,34.58921736286547 -3/15/1999,3,6.2,5.7,0.69144,2.5601574387345534,0.0,165.12772587943047,27.337769043356545,35.1774091990608 -3/16/1999,3,5.6,0.0,0.6837000000000001,2.561024213544381,0.0,164.44402587943048,24.027359067720194,35.840749467247406 -3/17/1999,3,4.6,2.7,0.6708000000000001,2.3868408497691402,0.0,164.204966676435,23.41556159191204,36.32530243128847 -3/18/1999,3,6.0,1.9,0.68886,2.328842768106007,0.0,163.82537195255716,22.205773308841298,36.7695744622583 -3/19/1999,3,3.2,0.2,0.65274,2.20154990735671,0.0,163.2060944263977,19.729060304851377,37.144471638455194 -3/20/1999,3,3.8,0.0,0.6604800000000001,2.0129471936177628,0.0,162.5456144263977,17.4077824652207,37.38803522092866 -3/21/1999,3,0.7,0.2,0.62049,1.8436554107956327,0.0,161.9616280131672,15.55176715797251,37.51066363977112 -3/22/1999,3,-0.2,0.2,0.60888,1.6980552552191943,0.2,161.3527480131672,13.773537427436084,37.53803872487432 -3/23/1999,3,1.6,2.2,0.6321,1.619338959326442,0.0,161.19235919104776,14.154766383988836,37.47595482174864 -3/24/1999,3,-0.9,3.8,0.59985,1.5896662027118125,3.8,160.59250919104775,12.558146754070288,37.43417404451311 -3/25/1999,3,-1.5,5.5,0.59211,1.465747926011276,9.3,160.00039919104776,11.169087676041151,37.313397901326354 -3/26/1999,3,-0.6,2.9,0.60372,1.3562842586887693,12.200000000000001,159.39667919104775,9.960606278155803,37.12558432710188 -3/27/1999,3,-2.7,0.8,0.57663,1.2594291968570093,13.000000000000002,158.82004919104776,8.909227461995549,36.881102954467636 -3/28/1999,3,-2.9,1.5,0.5740500000000001,1.1735760552274224,14.500000000000002,158.24599919104776,7.994527891936127,36.58894226847806 -3/29/1999,3,-1.6,0.1,0.59082,1.0973263689304453,14.600000000000001,157.65517919104775,7.198739265984432,36.2568898177053 -3/30/1999,3,-0.2,0.1,0.60888,1.0294628378344235,14.700000000000001,157.04629919104775,6.506403161406455,35.891688984650415 -3/31/1999,3,3.2,4.9,0.65274,1.387376657712958,1.0999999999999996,160.94519686206868,19.852433079402687,35.49917536302773 -4/1/1999,4,2.8,6.0,1.5503099999999999,2.160332978193416,0.0,160.8241685068645,23.185835134284513,35.78181350973731 -4/2/1999,4,-0.1,7.5,1.453624,2.252756433644187,7.5,159.37054450686452,20.41517656682753,36.225468996256794 -4/3/1999,4,0.5,0.0,1.473628,2.09758801935508,5.375,158.36345938266305,19.663160737341435,36.521718444673034 -4/4/1999,4,2.5,0.0,1.540308,2.1196471334081237,0.0,158.06525941454612,21.483341809603964,36.774442112646646 -4/5/1999,4,6.1,0.0,1.6603320000000001,2.14094971892834,0.0,156.4049274145461,18.93400737435545,37.11312036087391 -4/6/1999,4,8.6,0.0,1.7436820000000002,1.9510341276359338,0.0,154.6612454145461,16.71608641568924,37.3175583223742 -4/7/1999,4,8.8,0.0,1.75035,1.7840394057681745,0.0,152.9108954145461,14.786495181649641,37.407011476711176 -4/8/1999,4,9.6,0.0,1.777022,1.6370212034487264,0.0,151.13387341454612,13.107750808035188,37.39819600625943 -4/9/1999,4,9.5,0.0,1.7736880000000002,1.5074172290221979,0.0,149.36018541454612,11.647243202990614,37.30561962653601 -4/10/1999,4,10.1,0.0,1.793692,1.3929975956306822,0.0,147.56649341454613,10.376601586601835,37.14186939415482 -4/11/1999,4,9.2,0.0,1.763686,1.291821622452436,0.0,145.80280741454612,9.271143380343597,36.91786208560181 -4/12/1999,4,6.4,1.3,1.670334,1.2268947847038036,0.0,144.6093223078289,9.13254584761616,36.64306201290695 -4/13/1999,4,0.1,6.4,1.460292,1.3053756933601064,0.0,145.57411720596477,12.163727989290194,36.36682806502962 -4/14/1999,4,-1.7,4.2,1.40028,1.4144182580488547,4.2,144.17383720596476,10.825943350682468,36.24767790319354 -4/15/1999,4,2.9,0.9,1.553644,1.4032938649718751,0.0,144.5750550149093,12.807208906149192,36.06402151266379 -4/16/1999,4,3.3,10.1,1.56698,1.6461781419750132,0.0,146.8386578928193,17.6551888704398,35.98310152771798 -4/17/1999,4,0.8,3.7,1.48363,1.901752357218176,0.0,146.67291104735278,17.985631162749122,36.14619894068561 -4/18/1999,4,-1.7,6.6,1.40028,1.8589626618853952,6.6,145.27263104735277,15.890999111591736,36.32255652000935 -4/19/1999,4,-1.4,5.5,1.410282,1.700923139295906,12.1,143.86234904735278,14.068669227084811,36.39065534518875 -4/20/1999,4,-0.6,0.3,1.436954,1.5617562421739382,12.4,142.42539504735277,12.483242227563787,36.36627569963921 -4/21/1999,4,6.2,3.1,1.663666,1.7176988792426897,0.0,146.97316572119965,20.392484064133594,36.26311229702462 -4/22/1999,4,5.8,8.7,1.65033,2.215220279573347,0.0,148.40957714763417,23.598219709361697,36.55747425429081 -4/23/1999,4,2.4,13.4,1.536974,2.5651218763232384,0.0,151.42701510272246,29.619539192056394,37.00623575467308 -4/24/1999,4,7.2,17.3,1.697006,3.1319898143684815,0.0,155.05680504041112,37.98570315940043,37.74708799918244 -4/25/1999,4,12.4,0.2,1.8703740000000002,3.43673590690325,0.0,153.2400887560944,33.43740403299508,38.89143139716881 -4/26/1999,4,15.0,0.0,1.957058,3.104100906328429,0.0,151.2830307560944,29.33404150870572,39.78547297087518 -4/27/1999,4,10.0,0.0,1.7903580000000001,2.805254870550365,0.0,149.4926727560944,25.764116112573976,40.45646558689297 -4/28/1999,4,10.0,6.3,1.7903580000000001,2.670077743415624,0.0,149.77189256832548,26.888703205708307,40.935542080783804 -4/29/1999,4,7.0,1.5,1.6903380000000001,2.6696107430092706,0.0,148.56988453279888,24.648341824492817,41.46126639945354 -4/30/1999,4,6.3,1.4,1.667,2.5046283818576587,0.0,147.37637100746645,22.614070912641193,41.86445816268911 -5/1/1999,5,10.7,0.1,3.05274,2.3298413556809416,0.0,144.35869406321314,19.982678638251144,42.15787254506739 -5/2/1999,5,13.4,2.3,3.2182500000000003,2.173444019567884,0.0,142.0177709073665,19.05110357112515,42.31384902607861 -5/3/1999,5,12.7,0.0,3.17534,2.06199652624489,0.0,138.8424309073665,16.817960106878882,42.420127224113294 -5/4/1999,5,9.6,6.1,2.9853099999999997,1.9951957362567003,0.0,138.51407029324255,18.31817590710857,42.41262268497497 -5/5/1999,5,13.2,15.8,3.20599,2.273481182332951,0.0,142.23949978426356,25.048893548163473,42.480279026630896 -5/6/1999,5,9.3,0.0,2.96692,2.5276881614853695,0.0,139.27257978426357,22.036037386902223,42.88311812350645 -5/7/1999,5,6.6,14.0,2.8014099999999997,2.542084656113004,0.0,142.51143450552635,27.37458780534214,43.12725763038143 -5/8/1999,5,7.7,0.6,2.8688399999999996,2.7304820075461094,0.0,139.88252656556787,24.41945933060614,43.633441868040904 -5/9/1999,5,8.0,3.2,2.8872299999999997,2.556905219217434,0.0,138.3571484250979,23.326577758097308,43.98174599721039 -5/10/1999,5,10.1,8.4,3.0159599999999998,2.565398322665435,0.0,139.0387898927376,25.24002118190495,44.26843996517105 -5/11/1999,5,14.2,0.0,3.26729,2.577472056442224,0.0,135.7714998927376,22.202318428257307,44.645072224962874 -5/12/1999,5,17.6,0.0,3.4757100000000003,2.3506471664279105,0.0,132.29578989273762,19.559517032583855,44.86228670187648 -5/13/1999,5,20.4,0.0,3.64735,2.151144582568994,0.0,128.64843989273763,17.260279818347954,44.943016819468134 -5/14/1999,5,21.5,0.0,3.7147799999999997,1.9754557036562024,0.0,124.93365989273762,15.259943441962719,44.90717047399617 -5/15/1999,5,17.2,0.1,3.4511899999999995,1.8218484896049985,0.0,121.53842626142603,13.563694425819158,44.772024236614385 -5/16/1999,5,9.1,1.2,2.95466,1.7019591253314628,0.0,119.28837925932056,12.539301152568123,44.554768473173056 -5/17/1999,5,10.1,2.8,3.0159599999999998,1.637045832818296,0.0,117.9661775299505,12.258933732104328,44.290638161337995 -5/18/1999,5,8.5,0.0,2.91788,1.5770652987074685,0.0,115.0482975299505,10.908772346930766,44.017772084716455 -5/19/1999,5,2.8,4.2,2.56847,1.5133416985573556,0.0,115.15576027166547,11.258199200114793,43.68285526036867 -5/20/1999,5,5.7,1.1,2.74624,1.499997237565291,0.0,113.10948306722499,10.438170508540349,43.37210811516704 -5/21/1999,5,9.7,0.0,2.99144,1.4186812652657348,0.0,110.11804306722499,9.324708342430103,43.02657447829071 -5/22/1999,5,12.8,0.0,3.18147,1.326060872975859,0.0,106.93657306722498,8.35599625791419,42.6322784058464 -5/23/1999,5,14.9,0.0,3.3102,1.2436449682397734,0.0,103.62637306722499,7.513216744385346,42.19743265062518 -5/24/1999,5,17.7,0.1,3.4818399999999996,1.1709951481720586,0.0,100.29058299266578,6.808380475205085,41.72914483483194 -5/25/1999,5,15.0,0.1,3.3163300000000002,1.1074108140418586,0.0,97.22333772167997,6.1930723681231035,41.23498096189556 -5/26/1999,5,8.6,11.4,2.92401,1.133051656702117,0.0,103.15347427417626,8.416644635822857,40.7199349610638 -5/27/1999,5,14.0,8.8,3.25503,1.2849661896028322,0.0,106.31165890440747,10.036886264633866,40.326368493633666 -5/28/1999,5,16.0,0.0,3.3776300000000004,1.3280457534784909,0.0,102.93402890440747,8.975591050231463,40.02168543699268 -5/29/1999,5,14.3,0.2,3.27342,1.241924402492237,0.0,99.8961114248619,8.108140812179183,39.670031280764405 -5/30/1999,5,9.3,5.6,2.96692,1.210220915626521,0.0,101.23894531786736,8.75577070341334,39.28203769575807 -5/31/1999,5,8.9,5.8,2.9423999999999997,1.2555551102240896,0.0,102.66737735428487,9.419428850438369,38.93418547701358 -6/1/1999,6,11.1,3.3,3.5953540000000004,1.2806438312106434,0.0,101.56508216684661,9.354764149627345,38.626473209995225 -6/2/1999,6,9.1,5.7,3.442034,1.2884309563403207,0.0,102.42047402050854,9.92530365978066,38.32168195327669 -6/3/1999,6,7.7,0.1,3.3347100000000003,1.2809792335952639,0.0,99.26741521935979,8.906126022074242,38.05151349720019 -6/4/1999,6,4.9,17.8,3.1200620000000003,1.3332778792919788,0.0,109.57579188751916,12.558526254035623,37.7357895283599 -6/5/1999,6,4.4,3.1,3.081732,1.5017841492876545,0.0,108.5908832093307,12.172594519199453,37.60900005049449 -6/6/1999,6,5.1,22.8,3.1353940000000002,1.6561474306699435,0.0,121.03218946766489,18.056956973369317,37.46544977544457 -6/7/1999,6,6.5,10.6,3.242718,2.020315378697374,0.0,124.05626545260203,20.286258581894163,37.61898862860414 -6/8/1999,6,13.1,12.9,3.7486740000000003,2.232856841715722,0.0,127.61928718823401,23.480849230615952,37.880921785126766 -6/9/1999,6,14.9,0.0,3.8866620000000003,2.3166445426689743,0.0,123.73262518823401,20.671838830635878,38.29734581095503 -6/10/1999,6,16.3,0.0,3.9939860000000005,2.108231751736745,0.0,119.738639188234,18.227999782653214,38.564990836267725 -6/11/1999,6,15.6,0.0,3.9403240000000004,1.9250576036334102,0.0,115.798315188234,16.101859810908294,38.70509100867503 -6/12/1999,6,16.1,0.0,3.978654,1.7638781751910602,0.0,111.819661188234,14.252118035490216,38.736082179046946 -6/13/1999,6,14.9,0.0,3.8866620000000003,1.6218705112456158,0.0,107.93299918823399,12.642842690876488,38.673966437240516 -6/14/1999,6,15.9,2.0,3.9633220000000002,1.5153170731374512,0.0,105.34503853820199,11.86741179109454,38.53262924303953 -6/15/1999,6,16.2,0.4,3.9863200000000005,1.4375620431314733,0.0,101.66123205135402,10.68615028740257,38.35534724773347 -6/16/1999,6,15.5,2.6,3.9326580000000004,1.3606359126832719,0.0,99.78016265290078,10.245914732338827,38.12254781714893 -6/17/1999,6,15.2,6.3,3.90966,1.3500466827082067,0.0,100.7600988026738,10.79343647142692,37.87239259742289 -6/18/1999,6,14.1,0.0,3.8253340000000002,1.3382778468565042,0.0,97.12008528115875,9.633789730141421,37.65461656904578 -6/19/1999,6,9.8,16.9,3.495696,1.3681586018524117,0.0,106.69530865734065,12.743494695396727,37.38321372417194 -6/20/1999,6,11.3,8.7,3.6106860000000003,1.5583750829211662,0.0,109.14010089359702,13.974862148738778,37.27272418445833 -6/21/1999,6,13.1,0.1,3.7486740000000003,1.572774034873453,0.0,105.4593679205867,12.43368904241306,37.22601280820611 -6/22/1999,6,15.1,0.8,3.901994,1.4591704684708695,0.0,102.13663609054066,11.297415875565456,37.10317700416264 -6/23/1999,6,18.0,0.0,4.124308,1.3620580332876844,0.0,98.15851780438233,10.072251811741946,36.925984257857664 -6/24/1999,6,10.5,1.0,3.5493580000000002,1.2716210587042465,0.0,95.61844187394682,9.256230828379895,36.69107716328761 -6/25/1999,6,8.2,5.1,3.37304,1.2325515215910887,0.0,96.47439360996502,9.494621231442565,36.42006716144085 -6/26/1999,6,10.0,12.8,3.5110280000000005,1.301800403626539,0.0,103.00466881876365,11.574713481957588,36.16639687978416 -6/27/1999,6,13.3,0.6,3.764006,1.3701137961221326,0.0,99.77532563185429,10.481400989950867,36.02180461628635 -6/28/1999,6,11.2,4.4,3.60302,1.312222381402277,0.0,99.63789745144408,10.504785347852346,35.82543857345817 -6/29/1999,6,12.5,0.4,3.702678,1.279008288038642,0.0,96.45031331941144,9.486187975279742,35.63416906938162 -6/30/1999,6,14.4,0.0,3.848332,1.1936198066539476,0.0,92.94504533228218,8.496483538493376,35.39579508675797 -7/1/1999,7,16.0,0.0,3.999744,1.1126414645182954,0.0,89.43426634089938,7.635440678489236,35.112703361947474 -7/2/1999,7,17.3,0.0,4.104576,1.0407064622056907,0.0,85.96755802849535,6.886333390285635,34.79222132863299 -7/3/1999,7,18.6,0.0,4.209408,0.9766688424322292,0.0,82.55011987092038,6.234610049548504,34.44069357157461 -7/4/1999,7,18.6,0.1,4.209408,0.9200300215898201,0.0,79.35190084059286,5.684243835332797,34.063610202620545 -7/5/1999,7,18.5,0.0,4.201344,0.8697069596755214,0.0,76.20349558527867,5.188792136739533,33.666550190334775 -7/6/1999,7,18.4,0.0,4.193280000000001,0.8237252574731796,0.0,73.18581125278422,4.757749158963394,33.25265879336506 -7/7/1999,7,10.5,8.4,3.556224,0.819409409957454,0.0,78.0750734036649,5.429984948284518,32.82549307544593 -7/8/1999,7,9.4,0.2,3.4675200000000004,0.8267119748112195,0.0,75.68921072159205,4.996769272332293,32.44048246135124 -7/9/1999,7,7.5,5.6,3.3143040000000004,0.8076783796949256,0.0,78.16054255807101,5.350323018783147,32.041511275740824 -7/10/1999,7,8.0,6.2,3.3546240000000003,0.8315379971116854,0.0,80.97741293306625,5.805263404974158,31.668197201165167 -7/11/1999,7,9.2,3.2,3.451392,0.8473495202254303,0.0,81.02929004910553,5.802814047630368,31.32509642739057 -7/12/1999,7,11.7,1.5,3.6529920000000002,0.8323387124814183,0.0,79.49511388681948,5.530776869180483,30.988735201224276 -7/13/1999,7,14.5,0.0,3.8787840000000005,0.7976071065578111,0.0,76.58318286573748,5.055275876187021,30.645499340658816 -7/14/1999,7,16.3,0.0,4.023936,0.7542185571309321,0.0,73.6729380217671,4.641590012282707,30.28535314765499 -7/15/1999,7,17.7,0.0,4.136832,0.7263423960453231,0.0,70.79473830940084,4.27026281130009,29.911725585316024 -7/16/1999,7,20.6,0.0,4.370688,0.7083993378753768,0.0,67.87263317018053,3.9286417863960827,29.52700421417471 -7/17/1999,7,21.9,0.0,4.47552,0.6910884376887523,0.0,65.00394559622826,3.6143504434843963,29.13289621921102 -7/18/1999,7,18.9,0.4,4.2336,0.6755135389813476,0.0,62.767070522641106,3.363147421377575,28.730955817001018 -7/19/1999,7,18.6,0.0,4.209408,0.6593127502646187,0.0,60.2719132009434,3.0940956276673695,28.324494071729877 -7/20/1999,7,19.3,0.0,4.265856,0.6436512187571923,0.0,57.84381515051632,2.84656797745398,27.912708971678647 -7/21/1999,7,18.3,0.0,4.1852160000000005,0.6285009400000854,0.0,55.557585471897156,2.6188425392576615,27.496783191117775 -7/22/1999,7,19.6,0.0,4.2900480000000005,0.6138358471686775,0.0,53.30671467731276,2.4093351361170487,27.0777896542583 -7/23/1999,7,21.8,0.0,4.467456,0.5996316621164104,0.0,51.05772608230427,2.2165883252276846,26.656700617978988 -7/24/1999,7,21.8,0.0,4.467456,0.5858657582139,0.0,48.903621400722,2.0392612592094697,26.234396021880794 -7/25/1999,7,19.9,13.5,4.31424,0.5922001024940028,0.0,59.75505562299318,2.532222640197656,25.811671164403652 -7/26/1999,7,20.3,45.4,4.346496,0.6843396128696847,0.0,99.16863037591519,5.863287846905847,25.422048873125462 -7/27/1999,7,19.1,14.1,4.249728,0.8224062152660978,0.0,105.67966845738202,8.953545905354684,25.206772288008246 -7/28/1999,7,21.1,1.3,4.411008000000001,0.9597673922798406,0.0,102.19104659796604,8.419460475393004,25.150314137515814 -7/29/1999,7,19.2,0.0,4.257792,0.9058915597481105,0.0,98.08198794581335,7.5684306135919135,25.06828087853515 -7/30/1999,7,13.5,9.3,3.798144,0.9082558618202033,0.0,101.54435585383195,9.147586510257561,24.945336791644042 -7/31/1999,7,16.0,3.6,3.999744,0.9872373004036152,0.0,100.33459895931519,9.176059575475215,24.903809381324038 -8/1/1999,8,18.6,0.0,3.41956,0.9593938571430902,0.0,97.09444237023864,8.226671830663436,24.86453617247132 -8/2/1999,8,17.8,0.2,3.367944,0.8868876240196998,0.0,94.15753986624108,7.449415055847558,24.778579040555062 -8/3/1999,8,16.5,11.8,3.284068,0.9040288581251299,0.0,100.36354828652108,9.398284702734175,24.655478212536337 -8/4/1999,8,18.5,24.6,3.4131080000000003,1.1659482944641624,0.0,115.25229972498778,14.896280055300243,24.63228288342232 -8/5/1999,8,18.9,1.0,3.4389160000000003,1.4060325484561165,0.0,112.44899666907476,13.567650704024219,24.884451228518884 -8/6/1999,8,18.7,2.1,3.426012,1.3192718048589618,0.0,110.40079495241727,12.769545829158547,25.06514473914972 -8/7/1999,8,18.6,0.3,3.41956,1.2425780616709419,0.0,107.18242690723449,11.451812916550715,25.202319135824652 -8/8/1999,8,16.6,0.3,3.29052,1.143470384898165,0.0,104.09973510823642,10.298749036397181,25.270863398935695 -8/9/1999,8,17.5,0.0,3.348588,1.0531474733253623,0.0,100.8077611372607,9.203411661665548,25.28038358277684 -8/10/1999,8,17.6,0.0,3.3550400000000002,0.9688835573368398,0.0,97.61374781281123,8.250468145649027,25.234946494204582 -8/11/1999,8,16.0,0.0,3.251808,0.8945210453159498,0.0,94.61609774153271,7.421407286714654,25.14277097160294 -8/12/1999,8,14.0,0.1,3.1227679999999998,0.8294813963741754,0.0,91.90288532335275,6.723043790277013,25.010985916506613 -8/13/1999,8,17.8,10.8,3.367944,0.8417183447654835,0.0,97.4681048867643,8.404259583260874,24.84691838769033 -8/14/1999,8,17.6,8.0,3.3550400000000002,0.9577557007639541,0.0,100.41381635098186,9.521295387297302,24.770192999099567 -8/15/1999,8,17.4,4.6,3.342136,1.0197657415005255,0.0,100.63208536651958,9.739463132200386,24.75085390848244 -8/16/1999,8,14.0,1.3,3.1227679999999998,1.0101662798931301,0.0,98.61997897941173,9.061230784821817,24.74280998692281 -8/17/1999,8,12.5,6.7,3.0259880000000003,0.998165819343317,0.0,100.8090492710431,9.819465785790577,24.701015326425445 -8/18/1999,8,13.7,28.6,3.103412,1.2332687500839423,0.0,118.84644794006488,16.39453648702281,24.697968309186464 -8/19/1999,8,14.2,1.5,3.135672,1.5295284287939295,0.0,116.623293047251,15.094229636523721,25.023735767353873 -8/20/1999,8,15.6,0.3,3.226,1.4214072233758364,0.0,113.58489646859361,13.487876362433028,25.27797253383298 -8/21/1999,8,12.7,4.1,3.0388919999999997,1.3424791960942146,0.0,113.20231557234354,13.421641331566802,25.44680690127797 -8/22/1999,8,11.9,0.1,2.987276,1.2984189772111145,0.0,110.28010572960133,11.955261801205317,25.60895282983075 -8/23/1999,8,9.0,3.8,2.8001679999999998,1.2249418302745188,0.0,110.03158206503778,11.89293343161217,25.6945368632944 -8/24/1999,8,9.4,2.0,2.825976,1.2039697412367856,0.0,108.55205102707389,11.243907123466489,25.77529279760912 -8/25/1999,8,9.3,2.9,2.819524,1.163445412214438,0.0,107.71454588833946,10.943680336150281,25.82198229783026 -8/26/1999,8,8.7,3.1,2.780812,1.1425813418759283,0.0,107.07014272429717,10.728093056493027,25.852726668681168 -8/27/1999,8,8.7,31.3,2.780812,1.3854424101786154,0.0,125.9963976304021,19.169874053044005,25.872076788132194 -8/28/1999,8,7.4,3.9,2.6969360000000004,1.801462073462957,0.0,125.44722566620635,18.67352639034405,26.313128955021753 -8/29/1999,8,8.6,9.8,2.77436,1.850013838683129,0.0,128.1147781172338,20.847555508571865,26.72054269543852 -8/30/1999,8,10.1,0.2,2.87114,1.8976776359354863,0.0,125.3501891374338,18.474322272257538,27.228509616958345 -8/31/1999,8,11.6,0.0,2.96792,1.7218540356834398,0.0,122.3822691374338,16.31616037686406,27.607655538232056 -9/1/1999,9,14.7,0.0,2.4263200000000005,1.5628910136055674,0.0,119.95594913743379,14.438559527871735,27.871310446310616 -9/2/1999,9,13.8,0.0,2.384326,1.4232956243465988,0.0,117.57162313743379,12.80504678924841,28.03581221377799 -9/3/1999,9,13.9,0.0,2.3889920000000004,1.3005760268411009,0.0,115.18263113743379,11.383890706646117,28.11534830896485 -9/4/1999,9,14.0,0.8,2.3936580000000003,1.2012966716638256,0.0,113.29787742657716,10.438580625638751,28.12223587811786 -9/5/1999,9,13.6,0.1,2.374994,1.1208654849639608,0.0,110.98788024270706,9.360068328175808,28.08172019183744 -9/6/1999,9,13.8,0.0,2.384326,1.0358679838623686,0.0,108.60355424270706,8.386759445512954,27.988089204409484 -9/7/1999,9,13.5,0.0,2.370328,0.9589907016554746,0.0,106.23322624270706,7.539980717596269,27.847665392596944 -9/8/1999,9,13.9,0.0,2.3889920000000004,0.8909517550215725,0.0,103.84423424270706,6.803283224308754,27.66771112062482 -9/9/1999,9,13.7,0.0,2.3796600000000003,0.8306252745584515,0.0,101.51054862123195,6.162356405148616,27.45452105942776 -9/10/1999,9,13.5,2.8,2.370328,0.7997438955746057,0.0,101.28116702855573,6.361836871574742,27.213548458496632 -9/11/1999,9,14.2,3.2,2.4029900000000004,0.8135078048187274,0.0,101.32211209608697,6.6389524860627205,26.987369332905438 -9/12/1999,9,15.6,0.0,2.4683140000000003,0.8046206756003823,0.0,98.96027634392586,6.019388662874567,26.779569570550464 -9/13/1999,9,16.3,0.0,2.5009760000000005,0.7527794294904182,0.0,96.62297087514196,5.480368136700873,26.54494761228318 -9/14/1999,9,13.5,0.0,2.370328,0.7066223565403877,0.0,94.46008360241996,5.0114202789297595,26.28806706687256 -9/15/1999,9,12.4,2.3,2.3190020000000002,0.6811848270977061,0.0,94.16629098949853,5.128542612052873,26.012876739481598 -9/16/1999,9,12.9,0.6,2.3423320000000003,0.6731475785789318,0.0,92.54730713397663,4.841317375679869,25.749046335294608 -9/17/1999,9,12.4,0.2,2.3190020000000002,0.6444485321726726,0.0,90.67699325858484,4.497530220840614,25.47613127737271 -9/18/1999,9,11.3,4.5,2.2676760000000002,0.6559602691589155,0.0,92.30181872151303,5.0710188633856585,25.191485162867284 -9/19/1999,9,9.2,32.1,2.16969,0.8567701252637079,0.0,115.56933566622192,11.596501801294684,24.941206402779223 -9/20/1999,9,10.1,0.0,2.211684,1.146742934374293,0.0,113.35765166622191,10.332456567126375,25.022207364788372 -9/21/1999,9,10.2,0.0,2.2163500000000003,1.0508726656752956,0.0,111.1413016662219,9.232737213399945,25.038386045848924 -9/22/1999,9,10.6,0.0,2.235014,0.9664014056517747,0.0,108.9062876662219,8.275981375657953,24.999255185601942 -9/23/1999,9,12.7,0.0,2.333,0.8918685657010262,0.0,106.5732876662219,7.443603796822419,24.9130691506728 -9/24/1999,9,12.8,0.0,2.337666,0.8260030080881954,0.0,104.2356216662219,6.719435303235505,24.786987957500465 -9/25/1999,9,11.8,0.0,2.2910060000000003,0.7676984258464665,0.0,101.9804093265199,6.089408713814889,24.627219963512232 -9/26/1999,9,10.6,0.1,2.235014,0.7168119385043406,0.0,99.90058098069991,5.568619427164716,24.439145999932734 -9/27/1999,9,11.2,0.0,2.26301,0.6721528194330813,0.0,97.76557282350723,5.088198901633303,24.228794051292315 -9/28/1999,9,8.5,0.0,2.1370280000000004,0.630989498721257,0.0,95.79250863841068,4.670233044420974,23.998628115348133 -9/29/1999,9,10.8,0.0,2.244346,0.6039417761312632,0.0,93.76217967823897,4.296614400867296,23.752167205262218 -9/30/1999,9,11.4,1.3,2.272342,0.5971758106320177,0.0,92.75842207672348,4.244557300267032,23.49195458120034 -10/1/1999,10,8.3,1.7,0.968,0.5929933788866348,0.0,93.23857420019559,4.276883726494706,23.234343354589683 -10/2/1999,10,5.8,0.0,0.9196,0.5777120043277064,0.0,92.4288453038456,3.9347330283751294,22.983500673822626 -10/3/1999,10,9.9,0.0,0.998976,0.5630099778184522,0.0,91.55686307543637,3.6199543861051193,22.72056731176493 -10/4/1999,10,8.9,0.0,0.9796159999999999,0.548853814753199,0.0,90.7098466623803,3.33035803521671,22.447153684834888 -10/5/1999,10,10.1,0.1,1.002848,0.5358351759569906,0.0,89.93000724228922,3.0846868566336694,22.164728512899025 -10/6/1999,10,9.5,0.0,0.991232,0.5226507229525438,0.0,89.08817608789515,2.837911908102976,21.875668285472727 -10/7/1999,10,10.1,0.0,1.002848,0.5099273789670107,0.0,88.24445241981135,2.610878955454738,21.580050515168423 -10/8/1999,10,10.9,0.0,1.018336,0.4976401282233066,0.0,87.39581229610391,2.402008639018359,21.278993452637792 -10/9/1999,10,10.0,0.1,1.000912,0.4863362909382457,0.0,86.65069522254574,2.2288670209175536,20.973514015535955 -10/10/1999,10,10.3,0.0,1.00672,0.47482647150274676,0.0,85.82688761187012,2.0505576592441495,20.665487086271114 -10/11/1999,10,9.6,0.0,0.9931679999999999,0.4636894959452965,0.0,85.02189641047522,1.8865130465046176,20.3547052275079 -10/12/1999,10,9.3,0.0,0.98736,0.4529064955891869,0.0,84.22911881448083,1.7355920027842482,20.041936775282974 -10/13/1999,10,10.1,0.0,1.002848,0.4424598920751758,0.0,83.43141361715469,1.5967446425615082,19.727877639916528 -10/14/1999,10,9.2,0.0,0.985424,0.43233329851962304,0.0,82.65499169504429,1.4690050711565876,19.41315731924627 -10/15/1999,10,8.6,0.0,0.973808,0.42251142849230533,0.0,81.89486238960876,1.3514846654640607,19.098344426419175 -10/16/1999,10,8.4,0.0,0.969936,0.41298001219008795,0.0,81.14471813380814,1.243365892226936,18.783951771163995 -10/17/1999,10,7.9,0.1,0.960256,0.4042049770851879,0.0,80.49288771617047,1.1598718826048864,18.470441030352063 -10/18/1999,10,9.6,0.0,0.9931679999999999,0.3951929800374002,0.0,79.73792539388042,1.0670821319964956,18.159025803875267 -10/19/1999,10,9.9,0.0,0.998976,0.38643545473105506,0.0,78.98567047124111,0.981715561436776,17.849199394397587 -10/20/1999,10,10.2,0.0,1.004784,0.3779213731872845,0.0,78.23618007631453,0.9031783165218339,17.541301184581474 -10/21/1999,10,10.1,0.1,1.002848,0.3700802641990802,0.0,77.58056991594702,0.8455860888253804,17.23563407671594 -10/22/1999,10,10.3,0.0,1.00672,0.36200219004403833,0.0,76.84299402260693,0.77793920171935,16.93320069962289 -10/23/1999,10,9.5,0.0,0.991232,0.3541397948817821,0.0,76.12366986875844,0.715704065581802,16.6334336457164 -10/24/1999,10,8.8,0.0,0.97768,0.3464844357316811,0.0,75.42082172863861,0.6584477403352579,16.336550176081165 -10/25/1999,10,4.7,8.3,0.8983039999999999,0.3725237760344121,0.0,81.96447278700367,1.7222981614295325,16.042741559576307 -10/26/1999,10,7.8,1.9,0.95832,0.3730190164844181,0.0,82.81189716046511,1.8952994585097656,15.808001636456256 -10/27/1999,10,7.4,0.0,0.950576,0.3640423965879219,0.0,82.06849361003347,1.7436755018289845,15.58660657665262 -10/28/1999,10,6.9,0.0,0.940896,0.3553666082547003,0.0,81.33926594581867,1.6041814616826657,15.362058220211017 -10/29/1999,10,7.3,0.0,0.9486399999999999,0.34697593092026013,0.0,80.61056936212954,1.4758469447480524,15.135026128890928 -10/30/1999,10,3.9,0.0,0.882816,0.3388557347460565,0.0,79.93851061813108,1.3577791891682083,14.906117953550512 -10/31/1999,10,3.3,0.0,0.8712,0.33099239669980074,0.0,79.2808240523504,1.2491568540347515,14.67588455393791 -11/1/1999,11,5.4,0.0,0.34965,0.32337322328257695,0.0,79.01903785790424,1.1492243057119715,14.44482470556089 -11/2/1999,11,6.2,0.0,0.354978,0.31598637937235585,0.0,78.75414013365527,1.0572863612550136,14.213389426735272 -11/3/1999,11,4.6,0.0,0.344322,0.3088208226959047,0.0,78.49805567771891,0.9727034523546124,13.981985956263317 -11/4/1999,11,8.5,0.0,0.37029600000000007,0.30186624348010294,0.0,78.22354896296552,0.8948871761662434,13.750981409755783 -11/5/1999,11,1.3,6.5,0.322344,0.3236931358925508,0.0,83.53275461648295,1.7759671028390398,13.52070614036898 -11/6/1999,11,-1.0,0.2,0.307026,0.31579849949242855,0.2,83.29055301558692,1.6338897346119166,13.339090372703552 -11/7/1999,11,1.5,0.0,0.323676,0.30919456660025096,0.0,83.20198555041645,1.537150185354982,13.154003051980077 -11/8/1999,11,5.6,9.7,0.350982,0.35108624799803156,0.0,90.98269526753407,3.0576879331289044,12.967780500208223 -11/9/1999,11,6.0,5.6,0.353646,0.37673791429947945,0.0,95.10818453363434,3.98372428540898,12.861309286860504 -11/10/1999,11,6.0,22.7,0.353646,0.5240119753004939,0.0,112.2240204650116,8.931552966420636,12.803269315393743 -11/11/1999,11,9.3,0.2,0.37562400000000007,0.7054255232327429,0.0,111.97993943367845,8.0824081121191,12.993781577406901 -11/12/1999,11,8.3,0.3,0.36896400000000007,0.6447016287366694,0.0,111.80881395450807,7.377356536713999,13.138026351464719 -11/13/1999,11,6.8,5.1,0.358974,0.642019941674561,0.0,114.81932541433461,8.39231472711462,13.244133651271124 -11/14/1999,11,4.5,2.7,0.343656,0.6996929246627737,0.0,116.20048809309054,8.5199951338338,13.398866714601432 -11/15/1999,11,3.0,0.7,0.333666,0.6911153061938073,0.0,116.30679230078944,7.9159255587365145,13.556889137001093 -11/16/1999,11,4.1,6.7,0.340992,0.7146642051667832,0.0,120.1715897173569,9.624565819533316,13.681547632197898 -11/17/1999,11,1.6,0.1,0.324342,0.7752233432071327,0.0,119.90704821968905,8.657071760661825,13.889144970530607 -11/18/1999,11,-0.5,2.0,0.310356,0.7034924741694266,2.0,119.59669221968905,7.775152431775788,14.044215659153087 -11/19/1999,11,3.0,0.4,0.333666,0.6671551738573942,0.0,120.70904973808638,7.961859097247617,14.152088967558814 -11/20/1999,11,5.5,2.9,0.350316,0.6903875335890058,0.0,122.08065862385098,8.34839252884082,14.26714014307002 -11/21/1999,11,5.6,0.5,0.350982,0.6933594662777081,0.0,122.02109477385403,7.715183350088462,14.399216966650659 -11/22/1999,11,6.9,0.2,0.35964000000000007,0.6433704021178821,0.0,121.77811766453041,7.039046623900586,14.496991794822069 -11/23/1999,11,4.4,0.0,0.34299,0.5906565338812477,0.0,121.43512766453041,6.3674705627935095,14.559004290120656 -11/24/1999,11,2.6,0.0,0.331002,0.5400934644777444,0.0,121.10412566453041,5.7831993896303535,14.586197732457919 -11/25/1999,11,-1.3,9.0,0.305028,0.49557914849667545,9.0,120.79909766453042,5.274883468978407,14.583633747290277 -11/26/1999,11,-3.3,6.5,0.291708,0.4563377369051246,15.5,120.50738966453042,4.8326486180112145,14.55570524579339 -11/27/1999,11,-4.7,14.8,0.282384,0.42350557329267124,30.3,120.22500566453043,4.446036728570317,14.506223571778083 -11/28/1999,11,0.0,0.0,0.313686,0.4114786324439615,30.3,119.91131966453042,4.090353790284692,14.438400936771037 -11/29/1999,11,-6.8,4.7,0.268398,0.3999767767628545,35.0,119.64292166453042,3.7631254870619166,14.354150607549851 -11/30/1999,11,-6.2,0.0,0.272394,0.3889667408379479,35.0,119.37052766453041,3.462075448096963,14.25522386975195 -12/1/1999,12,-6.5,0.0,0.141358,0.37841774566271136,35.0,119.22916966453042,3.185109412249206,14.143223164761759 -12/2/1999,12,-6.8,0.0,0.14039200000000002,0.36830130321965776,35.0,119.08877766453041,2.9303006592692693,14.019614172078985 -12/3/1999,12,-1.7,0.0,0.156814,0.3585910366278492,35.0,118.93196366453041,2.6958766065277278,13.885736921600868 -12/4/1999,12,-1.2,9.0,0.158424,0.34926251461007,44.0,118.77353966453042,2.4802064780055093,13.742816013495236 -12/5/1999,12,-9.4,10.3,0.13202000000000003,0.3402930991354642,54.3,118.64151966453042,2.281789959765068,13.591970017125607 -12/6/1999,12,-8.5,0.1,0.134918,0.3316618051849428,54.4,118.50660166453042,2.0992467629838627,13.434220114771348 -12/7/1999,12,-7.7,0.2,0.137494,0.32334917167085686,54.6,118.36910766453042,1.9313070219451536,13.270498050625113 -12/8/1999,12,-9.8,0.2,0.13073200000000001,0.31533714261988366,54.800000000000004,118.23837566453042,1.7768024601895414,13.10165344070987 -12/9/1999,12,-8.4,1.2,0.13524,0.30760895779933434,56.00000000000001,118.10313566453043,1.634658263374378,12.92846049490515 -12/10/1999,12,-6.9,0.0,0.14007,0.30014905203264813,56.00000000000001,117.96306566453043,1.5038856023044276,12.751624198175763 -12/11/1999,12,-7.0,0.0,0.139748,0.2929429625101516,56.00000000000001,117.82331766453044,1.3835747541200734,12.57178599432747 -12/12/1999,12,-7.6,0.0,0.137816,0.28597724345665254,56.00000000000001,117.68550166453043,1.2728887737904675,12.389529012146925 -12/13/1999,12,-5.5,0.0,0.144578,0.2792393875684871,56.00000000000001,117.54092366453044,1.17105767188723,12.20538287059351 -12/14/1999,12,-5.1,0.0,0.145866,0.2727177536796076,56.00000000000001,117.39505766453044,1.0773730581362515,12.019828096776001 -12/15/1999,12,-0.9,4.6,0.15939,0.2664015001595064,60.60000000000001,117.23566766453044,0.9911832134853514,11.833300187747293 -12/16/1999,12,-1.8,8.4,0.156492,0.260280523585528,69.00000000000001,117.07917566453044,0.9118885564065233,11.646193344666614 -12/17/1999,12,-2.0,2.0,0.155848,0.2543454022686922,71.00000000000001,116.92332766453043,0.8389374718940015,11.458863905593608 -12/18/1999,12,-2.0,8.1,0.155848,0.2485873442458032,79.10000000000001,116.76747966453043,0.7718224741424814,11.271633501076437 -12/19/1999,12,-8.3,8.1,0.135562,0.24299813938157314,87.2,116.63191766453043,0.710076676211083,11.084791954762032 -12/20/1999,12,-9.7,1.5,0.131054,0.2375701152529728,88.7,116.50086366453043,0.6532705421141963,10.898599949477346 -12/21/1999,12,-9.6,0.0,0.13137600000000002,0.23229609651422198,88.7,116.36948766453042,0.6010088987450606,10.713291477593508 -12/22/1999,12,-5.3,0.0,0.14522200000000002,0.22716936746494149,88.7,116.22426566453042,0.5529281868454557,10.52907609297889 -12/23/1999,12,0.5,0.9,0.16389800000000002,0.2559108556221268,86.575,117.96112706266507,1.6329345337631695,10.346140980461586 -12/24/1999,12,-1.1,0.3,0.158746,0.2494862908826737,86.875,117.80238106266508,1.502299771062116,10.220864887540511 -12/25/1999,12,-1.7,0.1,0.156814,0.24329472524817053,86.975,117.64556706266508,1.3821157893771467,10.091562578342806 -12/26/1999,12,-5.8,0.0,0.14361200000000002,0.23732313811170538,86.975,117.50195506266508,1.271546526226975,9.958837116244807 -12/27/1999,12,-6.0,0.0,0.142968,0.23155943812848967,86.975,117.35898706266508,1.1698228041288168,9.823237700231259 -12/28/1999,12,-6.9,0.0,0.14007,0.22599239112261685,86.975,117.21891706266508,1.0762369797985116,9.685264086433074 -12/29/1999,12,-8.4,0.0,0.13524,0.22061155371632568,86.975,117.08367706266509,0.9901380214146307,9.545370653694338 -12/30/1999,12,-6.9,0.0,0.14007,0.21540721222486747,86.975,116.9436070626651,0.9109269797014603,9.403970141691183 -12/31/1999,12,-7.0,0.0,0.139748,0.21037032639660896,86.975,116.8038590626651,0.8380528213253434,9.261437087842433 -1/1/2000,1,-7.4,0.0,0.132664,0.20549247761161651,86.975,116.67119506266509,0.7710085956193159,9.118110987151852 -1/2/2000,1,-6.6,0.0,0.13524,0.20076582118288872,86.975,116.5359550626651,0.7093279079697706,8.97429919718978 -1/3/2000,1,-2.6,0.0,0.14812,0.19618304243285511,86.975,116.38783506266509,0.652581675332189,8.830279608644473 -1/4/2000,1,-2.1,0.0,0.14973,0.19173731624393228,86.975,116.23810506266508,0.6003751413056139,8.686303100238193 -1/5/2000,1,-1.4,13.3,0.151984,0.18742226980600912,100.27499999999999,116.08612106266509,0.5523451300011648,8.542595795298709 -1/6/2000,1,-8.2,5.1,0.130088,0.183231948305888,105.37499999999999,115.95603306266509,0.5081575196010717,8.399361135892793 -1/7/2000,1,-8.1,0.0,0.13041,0.17916078332408938,105.37499999999999,115.82562306266509,0.467504918032986,8.25678178915499 -1/8/2000,1,-6.8,0.0,0.13459600000000002,0.1752035637231812,105.37499999999999,115.69102706266509,0.4301045245903471,8.11502139927354 -1/9/2000,1,-0.5,1.6,0.154882,0.17135540882904532,106.97499999999998,115.53614506266508,0.39569616262311935,7.974226197517586 -1/10/2000,1,1.8,11.3,0.16228800000000002,0.37596670760652096,99.32499999999997,127.37869159985992,7.309205932418438,7.834526481698391 -1/11/2000,1,1.2,2.9,0.160356,0.5915320446264666,94.22499999999998,131.5306506600027,10.29019410106126,8.043296248685344 -1/12/2000,1,1.4,0.0,0.161,0.8035509310979947,88.27499999999998,134.3622053456047,12.153414182321256,8.3969400287647 -1/13/2000,1,-0.4,0.0,0.155204,0.8654132580207571,88.27499999999998,134.2070013456047,10.816970338619493,8.836671937305468 -1/14/2000,1,-0.1,0.0,0.15617,0.7709921830787501,88.27499999999998,134.0508313456047,9.654264194598959,9.200787015490333 -1/15/2000,1,1.0,0.0,0.159712,0.7547485412790773,84.02499999999998,135.93230779987513,10.85152139503066,9.499484484910473 -1/16/2000,1,1.5,8.5,0.161322,1.0262947117705488,77.64999999999998,142.65773525622714,17.672574157324657,9.852070864963796 -1/17/2000,1,0.3,1.7,0.15745800000000001,1.3731504650777577,76.37499999999997,143.68563030306927,17.408286470030323,10.538658155530753 -1/18/2000,1,-2.8,0.0,0.147476,1.3125415866877408,76.37499999999997,143.53815430306926,15.388709228926382,11.198299315921654 -1/19/2000,1,-3.3,0.0,0.145866,1.1697611481422885,76.37499999999997,143.39228830306925,13.631677029165951,11.74376879104954 -1/20/2000,1,-4.2,0.0,0.142968,1.044985167253266,76.37499999999997,143.24932030306925,12.103059015374377,12.190477266686846 -1/21/2000,1,-5.8,0.0,0.137816,0.9358842045124267,76.37499999999997,143.11150430306927,10.773161343375708,12.55182067212183 -1/22/2000,1,-3.5,0.0,0.14522200000000002,0.840431424747855,76.37499999999997,142.96628230306928,9.616150368736866,12.839442325848179 -1/23/2000,1,-1.4,1.8,0.151984,0.7568632630162366,78.17499999999997,142.81429830306928,8.609550820801072,13.06346099776806 -1/24/2000,1,2.0,0.1,0.162932,0.839248774843138,69.67499999999997,146.0645806029652,12.920594914200977,13.232669318852752 -1/25/2000,1,3.1,4.4,0.166474,1.3546045619057945,56.49999999999997,152.29772742391907,22.659796754401018,13.614045678185745 -1/26/2000,1,3.3,0.1,0.16711800000000002,2.074963207386642,42.47499999999997,156.347190012923,29.86594258732498,14.474754602342081 -1/27/2000,1,1.8,1.1,0.16228800000000002,2.546026078027143,34.824999999999974,158.40651153497362,32.755260528922136,15.678556639661489 -1/28/2000,1,-1.4,3.7,0.151984,2.5965352969172617,38.52499999999998,158.25452753497362,28.740576660162258,17.002748533314367 -1/29/2000,1,-2.1,0.0,0.14973,2.3129573317514716,38.52499999999998,158.1047975349736,25.247801694341163,18.099722395656194 -1/30/2000,1,0.0,2.2,0.156492,2.1157185639648945,38.52499999999998,158.46318905576263,23.894203953287796,19.00011803246013 -1/31/2000,1,-3.7,3.3,0.144578,1.9784504382347077,41.824999999999974,158.31861105576263,21.031457439360384,19.814825869475314 -2/1/2000,2,-7.0,0.9,0.15501399999999999,1.7737009556164018,42.72499999999997,158.16359705576264,18.540867972243532,20.47010222405383 -2/2/2000,2,-2.5,0.0,0.171124,1.5945199242514314,42.72499999999997,157.99247305576264,16.374055135851872,20.98774357818493 -2/3/2000,2,3.3,23.0,0.191888,2.286977004576311,28.699999999999974,166.51316574010573,42.80134728384804,21.386691463413825 -2/4/2000,2,2.7,10.3,0.18974,4.048126129219838,17.224999999999973,169.25982237503095,56.31927550202258,23.09902499833795 -2/5/2000,2,0.9,18.4,0.183296,5.158209354625007,13.399999999999974,171.31994892664284,69.22284713514773,25.453008273472317 -2/6/2000,2,-1.0,5.2,0.17649399999999998,5.599765476279948,18.599999999999973,171.14345492664285,60.467377007578534,28.40509046476026 -2/7/2000,2,-0.8,0.4,0.17720999999999998,4.982579540393606,18.99999999999997,170.96624492664284,52.850117996593326,30.860357505843982 -2/8/2000,2,1.0,7.4,0.18365399999999998,4.765128310264657,14.749999999999972,171.7087174062172,56.94697617746185,32.88565625555677 -2/9/2000,2,2.5,22.5,0.189024,5.723089687821144,4.124999999999972,173.84089467521983,80.5911680053892,35.075291939318724 -2/10/2000,2,-1.3,24.3,0.17542,6.664859775226154,28.424999999999972,173.66547467521983,70.35781616468861,38.40334450080181 -2/11/2000,2,-3.1,6.0,0.168976,5.941098178513207,34.42499999999997,173.49649867521984,61.45480006327909,41.153168419020204 -2/12/2000,2,-2.6,1.9,0.17076599999999997,5.308572185891614,36.32499999999997,173.32573267521985,53.7091760550528,43.40284505380376 -2/13/2000,2,-2.9,8.1,0.16969199999999998,4.755478236899124,44.42499999999997,173.15604067521986,46.970483167895935,45.22024695548033 -2/14/2000,2,-6.0,5.4,0.15859399999999998,4.2715460925721915,49.82499999999997,172.99744667521986,41.10782035606947,46.66436617476552 -2/15/2000,2,-8.0,0.2,0.15143399999999999,3.8478395264783605,50.02499999999997,172.84601267521987,36.00730370978044,47.786469869073684 -2/16/2000,2,-9.4,0.3,0.146422,3.476582925457916,50.32499999999997,172.69959067521987,31.569854227508984,48.63110565718123 -2/17/2000,2,-3.7,1.6,0.16682799999999998,3.1510104318216947,51.92499999999997,172.53276267521986,27.709273177932815,49.236976255413055 -2/18/2000,2,-2.6,3.2,0.17076599999999997,2.8652346966247157,55.12499999999997,172.36199667521987,24.350567664801552,49.637700389201434 -2/19/2000,2,-0.9,12.6,0.17685199999999998,2.614132694584548,67.72499999999997,172.18514467521987,21.428493868377352,49.862474764657485 -2/20/2000,2,1.6,3.1,0.185802,2.6712386259461196,60.92499999999997,172.6329345649886,28.152697775719588,49.93664996278321 -2/21/2000,2,1.8,9.1,0.186518,3.3863562733850925,53.27499999999997,173.42241871143656,40.510344918428075,50.34555185231352 -2/22/2000,2,3.7,22.2,0.19332,4.956930597479023,37.54999999999997,175.05392577934074,71.58767301112822,51.364158061188654 -2/23/2000,2,0.6,19.6,0.182222,6.936551379750992,34.99999999999997,175.46839402621714,84.07808527280517,53.91625855052129 -2/24/2000,2,-0.5,5.2,0.178284,7.302984042123497,40.199999999999974,175.29011002621715,73.39143418734051,57.041837643151126 -2/25/2000,2,-2.0,8.7,0.17291399999999998,6.540304593649716,48.89999999999998,175.11719602621716,64.09404774298625,59.57057259965513 -2/26/2000,2,-3.5,4.1,0.16754399999999997,5.873039303937481,52.99999999999998,174.94965202621717,56.005321536398036,61.583863534811336 -2/27/2000,2,-4.5,0.3,0.163964,5.288859015738591,53.299999999999976,174.78568802621717,48.968129736666285,63.152452340935014 -2/28/2000,2,-6.0,4.0,0.15859399999999998,4.777035868579297,57.299999999999976,174.62709402621718,42.845772870899665,64.33780978094964 -2/29/2000,2,-6.4,0.8,0.157162,4.328235160052977,58.09999999999997,174.46993202621718,37.519322397682714,65.19334222887564 -3/1/2000,3,-3.9,0.7,0.56115,3.9343342645473003,58.799999999999976,173.90878202621718,32.885310485983965,65.76544150418226 -3/2/2000,3,-7.0,5.6,0.5211600000000001,3.588265091951336,64.39999999999998,173.38762202621717,28.85372012280605,66.09439819839781 -3/3/2000,3,-6.2,0.0,0.53148,3.2838770261569437,64.39999999999998,172.85614202621719,25.34623650684126,66.21519624057017 -3/4/2000,3,-6.8,0.0,0.5237400000000001,3.0158176809926367,64.39999999999998,172.33240202621718,22.2947257609519,66.15820414110082 -3/5/2000,3,-4.1,2.0,0.55857,2.7794291573349676,66.39999999999998,171.77383202621718,19.63991141202815,65.9497763463264 -3/6/2000,3,-4.1,0.9,0.55857,2.570657786255368,67.29999999999998,171.21526202621718,17.33022292846449,65.61277639000129 -3/7/2000,3,-3.1,3.4,0.57147,2.3859756050286376,70.69999999999999,170.64379202621717,15.320793947764106,65.16703200862449 -3/8/2000,3,-4.1,0.8,0.55857,2.2223120407416523,71.49999999999999,170.08522202621717,13.57259073455477,64.6297310658402 -3/9/2000,3,-2.6,0.1,0.57792,2.076994474524641,71.59999999999998,169.50730202621716,12.051653939062652,64.01576598125114 -3/10/2000,3,-2.0,0.0,0.5856600000000001,1.9476965319342527,71.59999999999998,168.92164202621717,10.728438926984506,63.338033358579246 -3/11/2000,3,-2.6,0.0,0.57792,1.8323930950986584,71.59999999999998,168.34372202621716,9.57724186647652,62.607694637756886 -3/12/2000,3,0.8,0.0,0.62178,1.819863005063385,68.19999999999997,168.10388061761682,11.593761832434918,61.83440283832557 -3/13/2000,3,-0.2,0.0,0.60888,1.8696383329119133,68.19999999999997,167.49500061761682,10.330072794218378,61.17740287318081 -3/14/2000,3,-3.3,0.4,0.56889,1.7593307087485808,68.59999999999998,166.9261106176168,9.230663330969989,60.47035845542811 -3/15/2000,3,-1.8,0.0,0.58824,1.6607081685441774,68.59999999999998,166.3378706176168,8.274177097943891,59.72248445286805 -3/16/2000,3,0.8,0.1,0.62178,1.6629207424318566,65.19999999999997,166.19555752081118,10.462567172016813,58.94174361870789 -3/17/2000,3,2.3,3.8,0.64113,2.0764814729490384,55.424999999999976,167.43761521881558,21.03774574165021,58.28603710493457 -3/18/2000,3,-0.1,13.2,0.61017,2.5282215239379484,68.62499999999997,166.82744521881557,18.54633879523568,58.17220364991839 -3/19/2000,3,1.5,7.0,0.63081,2.682585331038794,62.24999999999997,167.94888793922482,28.001562031445808,57.9360765166818 -3/20/2000,3,4.6,2.0,0.6708000000000001,3.6289900090841076,42.699999999999974,169.8041720481357,43.62877485844692,58.177433087920456 -3/21/2000,3,4.5,0.1,0.66951,4.790320720281676,23.574999999999974,170.9443457090631,55.61585046592142,59.19532316908439 -3/22/2000,3,4.5,5.4,0.66951,5.889072497206882,4.449999999999974,172.23126597005356,71.19785964436117,60.79220922899877 -3/23/2000,3,6.2,2.3,0.69144,6.6343467764058754,0.0,171.96784273881175,68.507621121836,63.13625802663685 -3/24/2000,3,4.4,0.8,0.66822,6.305610699365753,0.0,171.35304095380795,60.59171216100115,65.29891392219591 -3/25/2000,3,4.2,0.0,0.66564,5.715284720488229,0.0,170.68740095380795,52.958289580070996,67.02252125180205 -3/26/2000,3,-2.0,0.1,0.5856600000000001,5.160530543158794,0.1,170.10174095380796,46.31721193466177,68.32998530576955 -3/27/2000,3,-2.8,3.4,0.5753400000000001,4.674129752155506,3.5,169.52640095380795,40.539474383155735,69.27924619638725 -3/28/2000,3,-1.6,7.1,0.59082,4.247271700390497,10.6,168.93558095380794,35.512842713345485,69.92063499161728 -3/29/2000,3,3.1,3.6,0.65145,4.253566642837726,0.0,169.77489682703822,43.848907287380264,70.2978644274522 -3/30/2000,3,4.3,0.9,0.66693,4.546842428035413,0.0,169.19301571369382,39.20700045336523,71.08435250327216 -3/31/2000,3,0.4,8.4,0.61662,4.406270721359197,0.0,169.43130646900707,41.89867963911452,71.62301547587498 -4/1/2000,4,-1.8,3.0,1.396946,4.398004303502879,3.0,168.03436046900705,36.69535128602963,72.2854891483132 -4/2/2000,4,-2.3,5.6,1.380276,4.0098121714598225,8.6,166.65408446900705,32.168455618845776,72.67454692964843 -4/3/2000,4,-2.0,3.2,1.390278,3.6684140480341183,11.8,165.26380646900705,28.230056388395823,72.82947877199776 -4/4/2000,4,-1.9,5.4,1.393612,3.367800131476474,17.200000000000003,163.87019446900706,24.803649057904366,72.7843920159776 -4/5/2000,4,-0.3,2.4,1.4469560000000001,3.1027404258775872,19.6,162.42323846900706,21.8226746803768,72.56888662855326 -4/6/2000,4,0.4,4.7,1.470294,3.0253623985161693,17.900000000000002,162.13031104435794,24.45186039657695,72.20864263000104 -4/7/2000,4,0.6,2.7,1.476962,3.1923145238724935,15.350000000000001,161.63729265274495,25.782674936634947,71.98706279722987 -4/8/2000,4,1.0,9.9,1.4902980000000001,3.5050768866814908,11.100000000000001,162.8809540447039,34.09046780291344,71.83645528811702 -4/9/2000,4,-0.2,0.9,1.45029,3.8001745912517197,12.000000000000002,161.43066404470392,29.902206988534694,72.10424957250035 -4/10/2000,4,0.7,2.7,1.480296,3.619451716004897,9.025000000000002,161.0605925257751,30.82319559895402,72.15727493047709 -4/11/2000,4,2.6,1.0,1.5436420000000002,3.7951677319257264,0.0,161.52155843880774,35.08007225805734,72.25528921181525 -4/12/2000,4,3.5,10.7,1.573648,4.143225415827942,0.0,162.02980456613633,39.3812687371813,72.56418704048181 -4/13/2000,4,2.6,8.4,1.5436420000000002,4.426831408809566,0.0,162.0704117934882,41.32095457399586,73.08196673653123 -4/14/2000,4,4.7,0.1,1.613656,4.384492776251237,0.0,160.47556810815007,36.27391816471453,73.68637513050041 -4/15/2000,4,9.2,0.0,1.763686,4.004777043057299,0.0,158.71188210815006,31.801808803301643,74.02634353612613 -4/16/2000,4,12.6,0.0,1.8770419999999999,3.666640792042629,0.0,156.83484010815008,27.91107365887243,74.13590710556869 -4/17/2000,4,13.2,0.0,1.8970459999999998,3.3688125583682105,0.0,154.9377941081501,24.526134083219013,74.04874264640094 -4/18/2000,4,8.1,0.8,1.727012,3.1236547093334286,0.0,153.42646825322396,22.16555050732668,73.79407449763387 -4/19/2000,4,3.9,10.9,1.586984,3.15253224487057,0.0,154.959502899822,27.307510294776172,73.42647053304752 -4/20/2000,4,5.7,2.6,1.6469960000000001,3.365362227254172,0.0,154.0128615305154,25.900679325761857,73.32331663712539 -4/21/2000,4,10.2,0.2,1.7970260000000002,3.2022055044033935,0.0,152.27179812053217,22.92112842339605,73.15188427067096 -4/22/2000,4,12.2,0.1,1.8637059999999999,2.9669045343251454,0.0,150.43797208132685,20.255001767559875,72.83490300642734 -4/23/2000,4,9.4,3.8,1.7703540000000002,2.830722627278687,0.0,149.87785501219872,20.45511460690524,72.3909550346768 -4/24/2000,4,9.0,0.8,1.7570180000000002,2.775970700442737,0.0,148.3803821598428,18.579904560363484,71.96589166432852 -4/25/2000,4,4.3,2.6,1.60032,2.658312562281063,0.0,147.6645473579695,18.12353176938954,71.45556905906014 -4/26/2000,4,2.9,4.9,1.553644,2.6575549793968682,0.0,147.81435247732432,19.207523520014103,70.93263426634842 -4/27/2000,4,2.4,2.4,1.536974,2.682066477860773,0.0,147.1079857157491,18.52343822398751,70.47435775702215 -4/28/2000,4,1.0,0.8,1.4902980000000001,2.588777751386078,0.0,145.90041263978222,16.87616633083604,69.99104251308108 -4/29/2000,4,0.2,5.7,1.463626,2.5452283008929393,0.0,146.5219051888125,18.540646158797067,69.43502997936126 -4/30/2000,4,1.2,8.5,1.496966,2.717557294291475,0.0,148.08020959372115,21.818591753244803,68.97336168771389 -5/1/2000,5,3.0,0.1,2.58073,2.7998663559295514,0.0,145.5338115045483,19.291342914495818,68.68482404162185 -5/2/2000,5,6.1,7.8,2.77076,2.744915697539078,0.0,145.64553125069293,21.944488589466758,68.2756947065142 -5/3/2000,5,8.5,3.1,2.91788,2.852666485001623,0.0,143.86972463382435,21.29313168970467,68.00740524185726 -5/4/2000,5,10.2,0.1,3.02209,2.74029151957307,0.0,140.8862705152764,18.829888688590998,67.71191372150534 -5/5/2000,5,11.0,0.6,3.07113,2.5532577086963464,0.0,138.0646477864605,16.97599588789004,67.29916988150478 -5/6/2000,5,12.3,0.2,3.15082,2.39506020529684,0.0,135.0024213643597,15.124022844565129,66.8019862782692 -5/7/2000,5,12.1,0.0,3.13856,2.2391860923700477,0.0,131.86386136435968,13.401399874771663,66.22214769493206 -5/8/2000,5,11.9,0.2,3.1263,2.098007107929005,0.0,128.8375586055783,12.002720649832721,65.567774734772 -5/9/2000,5,10.0,0.0,3.00983,1.974343146903634,0.0,125.8277286055783,10.685866965354467,64.8565552725682 -5/10/2000,5,5.6,23.3,2.74011,2.17194133400426,0.0,135.95203501780853,19.97578784762819,64.09371751538455 -5/11/2000,5,6.7,12.3,2.80754,2.7584050111436724,0.0,138.8368315248085,24.230098920436582,63.81063255745828 -5/12/2000,5,8.5,4.1,2.91788,2.952052892204814,0.0,137.7049892810428,23.637648304545536,63.745924852330944 -5/13/2000,5,12.4,0.1,3.15695,2.8373486956636826,0.0,134.5926764717916,20.863616834205793,63.6528887705116 -5/14/2000,5,12.1,0.1,3.13856,2.621560489660375,0.0,131.50164941042223,18.447313707128394,63.42301183681166 -5/15/2000,5,9.4,7.5,2.9730499999999997,2.540962146605964,0.0,132.30265848426035,20.018603851363586,63.07691728543185 -5/16/2000,5,9.0,3.0,2.94853,2.5889008769083155,0.0,130.84233044513638,19.171483389810273,62.81630913229139 -5/17/2000,5,9.4,6.4,2.9730499999999997,2.5673900677574943,0.0,131.12714579812936,20.064825196141978,62.51855711913607 -5/18/2000,5,12.0,0.0,3.13243,2.5361667421576137,0.0,127.99471579812936,17.699897920643522,62.27142723656045 -5/19/2000,5,10.6,0.0,3.04661,2.3489871035182004,0.0,124.94810579812936,15.642411190959866,61.91099358786141 -5/20/2000,5,9.6,3.1,2.9853099999999997,2.2242620852378483,0.0,123.69707219503739,15.218121339227059,61.45489427565217 -5/21/2000,5,5.3,3.6,2.72172,2.18810616799862,0.0,123.02641603032302,15.03220172984191,60.986702457100485 -5/22/2000,5,6.1,4.8,2.77076,2.179298046642675,0.0,123.01662519323322,15.360546342052263,60.518578494450566 -5/23/2000,5,10.2,0.0,3.02209,2.1342672614634606,0.0,119.99453519323322,13.607175317585469,60.07623424166417 -5/24/2000,5,13.9,0.0,3.2489,1.9904124081224575,0.0,116.74563519323321,12.081742526299358,59.55506832271016 -5/25/2000,5,10.2,2.8,3.02209,1.8941353684439577,0.0,115.47192250852792,11.806238682585715,58.96805408257092 -5/26/2000,5,9.7,0.7,2.99144,1.8375263018488912,0.0,112.9242678617565,10.771142300620994,58.37900493504878 -5/27/2000,5,10.0,0.5,3.00983,1.7436984485401363,0.0,110.2407751805798,9.78805648271698,57.74998195137886 -5/28/2000,5,12.8,0.0,3.18147,1.6503638010645048,0.0,107.0593051805798,8.759109139963773,57.08438513648713 -5/29/2000,5,9.0,5.9,2.94853,1.6122209375747794,0.0,108.20295270696565,9.671747425382636,56.38065289075558 -5/30/2000,5,10.5,5.9,3.04048,1.6701635111097795,0.0,109.20893977516668,10.51145319188186,55.7366272042096 -5/31/2000,5,13.1,0.0,3.19986,1.6666759342965993,0.0,106.00907977516668,9.388464276937217,55.147467319719496 -6/1/2000,6,11.0,0.1,3.5876880000000004,1.5694441361643174,0.0,102.49145241030148,8.441403285800575,54.513941187171966 -6/2/2000,6,10.9,0.0,3.5800220000000005,1.483110440603795,0.0,99.02633148820466,7.587520858646501,53.84573252771855 -6/3/2000,6,10.2,0.0,3.5263600000000004,1.4041792157449289,0.0,95.72854610425202,6.844643147022456,53.14819392009651 -6/4/2000,6,11.9,0.0,3.6566820000000004,1.333231587469323,0.0,92.42276792476775,6.198339537909537,52.4274621990457 -6/5/2000,6,15.0,4.2,3.8943280000000002,1.2966051038201967,0.0,92.31273023269937,6.5470509428504835,51.688829931960264 -6/6/2000,6,16.6,0.3,4.016984000000001,1.2836303702085763,0.0,89.04591677350669,6.004323515226024,50.98240588046358 -6/7/2000,6,16.8,0.7,4.032316000000001,1.2301669807964837,0.0,86.21591132389622,5.606377542095676,50.26297393861561 -6/8/2000,6,15.7,0.1,3.9479900000000003,1.1817636323027498,0.0,83.0830265216441,5.13946961530015,49.53803333694808 -6/9/2000,6,15.2,4.5,3.90966,1.1538003704830786,0.0,83.75554965967791,5.474732223286291,48.80424615097412 -6/10/2000,6,16.0,0.5,3.970988,1.1450515044045344,0.0,81.02857965377571,5.092564548594691,48.101897839118955 -6/11/2000,6,17.1,3.3,4.055314,1.1150012903409547,0.0,80.69998175671739,5.199443357196468,47.39448810976631 -6/12/2000,6,16.9,0.0,4.039982,1.0936140497912674,0.0,77.62106520465896,4.767015720760928,46.706570515430805 -6/13/2000,6,17.0,0.0,4.047648000000001,1.0517854317162063,0.0,74.6539979713649,4.385654463100053,46.010789891160236 -6/14/2000,6,17.4,2.8,4.078312,1.0382728471902105,0.0,74.21100680255866,4.40252369534566,45.30985681649204 -6/15/2000,6,17.5,7.1,4.085978000000001,1.0415699620415553,0.0,77.52793992521373,4.9698081580988545,44.623785864929474 -6/16/2000,6,17.0,13.8,4.047648000000001,1.0810208053589465,0.0,86.38385262758139,6.547812878109571,43.97980055553583 -6/17/2000,6,12.6,26.1,3.710344,1.2755442277902946,0.0,104.62703756833102,10.770056003940141,43.4275951883306 -6/18/2000,6,13.7,14.9,3.79467,1.5751220538933093,0.0,111.4521313652386,13.938944400036078,43.09754608476099 -6/19/2000,6,15.5,0.0,3.9326580000000004,1.683209516504097,0.0,107.5194733652386,12.370381628031389,42.93254238306758 -6/20/2000,6,18.4,4.2,4.154972000000001,1.5980380932408638,0.0,106.26454006485463,12.305693316771281,42.6924106168078 -6/21/2000,6,18.8,0.0,4.185636000000001,1.5493452028124988,0.0,102.07890406485463,10.949453185591015,42.45384707031021 -6/22/2000,6,16.9,7.2,4.039982,1.4992784425035919,0.0,103.41181875441596,11.742030915345667,42.15224278818356 -6/23/2000,6,16.3,7.0,3.9939860000000005,1.5546119548942352,0.0,104.53422500363652,12.436147318773621,41.89629947818717 -6/24/2000,6,16.9,0.6,4.039982,1.5490139724570404,0.0,100.9721512386509,11.236766314237242,41.6801808545621 -6/25/2000,6,19.3,0.0,4.223966000000001,1.4470912275771086,0.0,96.94435887129875,10.0194866933864,41.40841555318272 -6/26/2000,6,18.6,0.0,4.170304000000001,1.3479123689024728,0.0,93.1263642771122,8.960453423246168,41.08122157678839 -6/27/2000,6,13.6,10.4,3.787004,1.3287387764247516,0.0,97.89947091898954,10.335456964471488,40.707619816414926 -6/28/2000,6,12.0,8.3,3.664348,1.4203709693693927,0.0,100.75054073016678,11.296443859320473,40.410240268310204 -6/29/2000,6,9.5,4.3,3.4726980000000003,1.461071005549782,0.0,100.60407719293974,11.21372198218526,40.16685765591003 -6/30/2000,6,11.2,0.0,3.60302,1.4156533748823201,0.0,97.1809163448171,9.999438124501177,39.92420660190109 -7/1/2000,7,10.2,6.5,3.532032,1.3648683877167314,0.0,98.85297304306977,10.529419798996997,39.62569437608813 -7/2/2000,7,8.9,4.7,3.4272000000000005,1.3881073538778672,0.0,99.15951516229092,10.598111145256437,39.35965147851621 -7/3/2000,7,9.4,2.2,3.4675200000000004,1.3692580130506538,0.0,97.5494120539953,10.026839188788587,39.10236400620871 -7/4/2000,7,14.0,0.0,3.838464,1.3032806359772908,0.0,94.01329054686123,8.96685009424607,38.821658685523964 -7/5/2000,7,17.5,0.0,4.120704,1.2160536525026417,0.0,90.35476809516973,8.04465958199408,38.493568016525785 -7/6/2000,7,19.5,0.0,4.2819840000000005,1.138522186895649,0.0,86.7009984161894,7.24235383633485,38.12592963529497 -7/7/2000,7,18.8,0.0,4.225536,1.0694587016331984,0.0,83.24119871797852,6.54434783761132,37.72552873440581 -7/8/2000,7,16.8,5.4,4.064256,1.0352732990871298,0.0,84.53028876483953,6.853039872486621,37.29823555159826 -7/9/2000,7,17.6,7.5,4.128768,1.0627881398232377,0.0,87.41541452506345,7.524589650503138,36.89492283419062 -7/10/2000,7,17.7,0.0,4.136832,1.067091349603928,0.0,84.00033393104563,6.78989299593773,36.53325386003196 -7/11/2000,7,18.2,0.0,4.177152,1.0033575256434255,0.0,80.68668615617798,6.150706906465825,36.142083432628205 -7/12/2000,7,19.6,0.0,4.2900480000000005,0.9464093377680278,0.0,77.41773010205635,5.594615008625267,35.72677710929893 -7/13/2000,7,20.5,0.0,4.362624,0.895394648507267,0.0,74.22815179089615,5.110815057503982,35.291972317544214 -7/14/2000,7,8.9,11.3,3.4272000000000005,0.8934975735101485,0.0,81.661505978432,6.154111605119298,34.84167362406853 -7/15/2000,7,7.9,6.0,3.34656,0.9503714988335052,0.0,84.10774311496075,6.570500131355937,34.45254573184312 -7/16/2000,7,7.8,9.9,3.338496,0.9972791944803281,0.0,89.63537270337429,7.680459714568344,34.092019823774045 -7/17/2000,7,10.6,2.0,3.564288,1.0362825943008667,0.0,88.21453476337089,7.329185343730325,33.79420241302698 -7/18/2000,7,14.9,0.0,3.9110400000000003,0.9912515572969367,0.0,84.95633687838709,6.6198912490453825,33.48477763195295 -7/19/2000,7,11.9,1.4,3.66912,0.9379741305233781,0.0,83.16344541167598,6.251934507859526,33.14607664176616 -7/20/2000,7,13.1,9.4,3.7658880000000003,0.9432206446807182,0.0,88.01486164342262,7.2736294200421865,32.795751834323816 -7/21/2000,7,16.3,0.2,4.023936,0.9685587946807381,0.0,84.83152613467416,6.610231943527992,32.50351826863945 -7/22/2000,7,19.6,0.0,4.2900480000000005,0.9105228409113414,0.0,81.39464522966891,5.994401790869354,32.18395950044306 -7/23/2000,7,19.3,0.0,4.265856,0.8567789842847112,0.0,78.11560248983649,5.458629558056338,31.84000039997767 -7/24/2000,7,12.4,10.6,3.7094400000000003,0.8551859337075846,0.0,84.43057645455694,6.541060613571636,31.47613186988093 -7/25/2000,7,13.8,4.0,3.8223360000000004,0.9060976245747426,0.0,84.68137737855207,6.635711621097433,31.173662263161894 -7/26/2000,7,16.6,0.6,4.048128,0.8896009264242007,0.0,81.93808633187753,6.122528446341953,30.881974598953526 -7/27/2000,7,20.2,0.0,4.338432,0.8411386453524538,0.0,78.58099108434726,5.5700997483174985,30.570461529291556 -7/28/2000,7,17.1,0.4,4.088448,0.7942184582002334,0.0,75.88769558316864,5.14874416873088,30.2375572861216 -7/29/2000,7,17.4,0.1,4.11264,0.7538387571442031,0.0,73.02666030231674,4.73655605769816,29.890243348835714 -7/30/2000,7,18.7,0.0,4.217472,0.7213142728873474,0.0,70.11809580067795,4.357631573082307,29.52926628474391 -7/31/2000,7,19.0,1.1,4.241664,0.7071421360986545,0.0,68.28468138648282,4.133696178153053,29.156562537703145 -8/1/2000,8,18.5,0.0,3.4131080000000003,0.689692336434159,0.0,66.08368986398159,3.8030004839008087,28.780116095856734 -8/2/2000,8,18.0,0.5,3.3808480000000003,0.6743351950108344,0.0,64.42447123362477,3.5480639682713866,28.39466379813464 -8/3/2000,8,18.0,2.0,3.3808480000000003,0.6635832724107884,0.0,64.18175711885378,3.4499932666359348,28.004173720585516 -8/4/2000,8,20.0,0.3,3.509888,0.6483802146922574,0.0,62.3267333281241,3.2016138834048435,27.616589909505603 -8/5/2000,8,22.1,1.5,3.6453800000000003,0.6367184037139761,0.0,61.55216400031021,3.074387586808716,27.224338805485733 -8/6/2000,8,19.1,17.5,3.45182,0.6653339453111472,0.0,75.58536223163512,4.288750571227271,26.833571408716455 -8/7/2000,8,16.7,15.7,3.2969720000000002,0.7122810792974142,0.0,86.8091228724881,6.068477637178149,26.511337509103488 -8/8/2000,8,13.3,0.0,3.077604,0.7513068410048637,0.0,84.2860885558495,5.52307554434499,26.284534640780326 -8/9/2000,8,14.8,1.0,3.174384,0.7100510361765389,0.0,82.58468162546895,5.223243481855001,26.03499772518197 -8/10/2000,8,13.3,0.1,3.077604,0.677302511723411,0.0,80.26777768707723,4.804371291174648,25.77545994477108 -8/11/2000,8,14.4,4.4,3.148576,0.6631597316531127,0.0,81.59587326020167,5.105211514814164,25.500169310434387 -8/12/2000,8,17.8,0.4,3.367944,0.6591622991538975,0.0,79.33589068737088,4.749773113795371,25.245426499966406 -8/13/2000,8,18.5,0.1,3.4131080000000003,0.6311083992841342,0.0,76.86353920514077,4.384942225699908,24.97800662565685 -8/14/2000,8,16.5,6.8,3.284068,0.6436701859721002,0.0,80.32329968918818,4.990543796117535,24.69769360442871 -8/15/2000,8,16.9,0.5,3.309876,0.6349903948574448,0.0,78.23459037242829,4.66326222028826,24.453266922146014 -8/16/2000,8,11.2,5.2,2.9421120000000003,0.6355250177018035,0.0,80.49848350023674,5.0525907935817775,24.197364694717507 -8/17/2000,8,12.4,0.5,3.019536,0.6299797809459853,0.0,78.6246169871785,4.717643415228382,23.966046940502245 -8/18/2000,8,16.7,0.2,3.2969720000000002,0.6055491426137106,0.0,76.3469076866202,4.369899305487941,23.72260817245362 -8/19/2000,8,12.6,14.3,3.03244,0.649330908206669,0.0,86.48088994960108,5.999929624036342,23.46665097427894 -8/20/2000,8,11.4,2.9,2.955016,0.7024883287239115,0.0,86.42943382327032,6.001518626739695,23.29731443599518 -8/21/2000,8,10.7,5.6,2.909852,0.7142774035588424,0.0,88.61675874308895,6.5024196883204155,23.13144407861226 -8/22/2000,8,10.3,1.5,2.884044,0.7273600789077861,0.0,87.40843208383976,6.195345695421484,22.993936181456036 -8/23/2000,8,10.4,8.1,2.890496,0.7383793340894695,0.0,91.58136262555674,7.174518482214523,22.843824742597988 -8/24/2000,8,12.7,9.2,3.0388919999999997,0.8232918563964196,0.0,96.20002423187817,8.43841496161861,22.745674171856752 -8/25/2000,8,13.9,0.0,3.116316,0.8602220073091872,0.0,93.36888177542157,7.584921016608192,22.712681436500546 -8/26/2000,8,15.8,0.0,3.238904,0.7937709665359023,0.0,90.51296672529465,6.842381284449127,22.637673858600944 -8/27/2000,8,17.2,0.0,3.329232,0.7350510046596062,0.0,87.66719597039064,6.196371717470741,22.52703944565138 -8/28/2000,8,16.0,0.7,3.251808,0.6870984443693609,0.0,85.54089050396695,5.768450454786202,22.386317242611888 -8/29/2000,8,15.1,1.8,3.19374,0.6570897133134666,0.0,84.43538622589439,5.587564072139244,22.22701342049896 -8/30/2000,8,16.0,10.6,3.251808,0.6860314857010261,0.0,90.58324001860638,6.963875166004834,22.061851355695943 -8/31/2000,8,14.7,0.2,3.167932,0.7343734285405237,0.0,88.03186448480226,6.343450283421225,21.968808086882266 -9/1/2000,9,13.8,0.7,2.384326,0.6875363056553199,0.0,86.61422859223335,5.89772342326483,21.846604439315684 -9/2/2000,9,14.5,0.0,2.4169880000000004,0.6467129229443058,0.0,84.63721894886112,5.374519378240402,21.70455852169261 -9/3/2000,9,14.0,2.0,2.3936580000000003,0.6141727445301856,0.0,84.37121787004169,5.272096973824996,21.539193320170778 -9/4/2000,9,14.3,0.4,2.4076560000000002,0.5945528571570178,0.0,82.78280849953634,4.900257413886522,21.372014302458613 -9/5/2000,9,14.0,9.0,2.3936580000000003,0.6057137250890205,0.0,88.40457846681555,6.01363722175397,21.189586887103765 -9/6/2000,9,15.1,0.5,2.4449840000000003,0.6457031809545853,0.0,86.76563525244929,5.573059321929968,21.06647701044939 -9/7/2000,9,16.6,0.0,2.5149740000000005,0.6063908231256085,0.0,84.70488053761886,5.092061610079073,20.9238004363369 -9/8/2000,9,17.2,1.6,2.5429700000000004,0.574991715461703,0.0,83.98793295388346,4.956336159848899,20.759927508114117 -9/9/2000,9,17.6,0.0,2.561634,0.5528330970833868,0.0,81.95614199492238,4.5555124590685425,20.59254576594428 -9/10/2000,9,10.7,2.3,2.23968,0.5451852658267443,0.0,82.14656341396756,4.567195211838929,20.40847047357882 -9/11/2000,9,10.9,2.3,2.249012,0.5419732238967588,0.0,82.32366081596011,4.580000246759169,20.22866082469919 -9/12/2000,9,9.2,3.0,2.16969,0.5423432146400762,0.0,83.14106412651657,4.709382074307094,20.053087620543167 -9/13/2000,9,12.9,3.0,2.3423320000000003,0.5429516783081016,0.0,83.79452051126223,4.840059295704951,19.88749497184766 -9/14/2000,9,16.3,0.0,2.5009760000000005,0.5282205973053757,0.0,81.8154093135082,4.452854552048556,19.731748037195953 -9/15/2000,9,8.7,4.8,2.14636,0.5375476022629697,0.0,84.17524435969753,4.878416206062682,19.55975580405446 -9/16/2000,9,8.7,4.9,2.14636,0.5488989826673526,0.0,86.51580692892091,5.340951413289611,19.412481498276506 -9/17/2000,9,10.6,0.0,2.235014,0.5560769913308485,0.0,84.68972288219851,4.890127729561961,19.291279438975458 -9/18/2000,9,11.9,0.0,2.295672,0.5189429249531462,0.0,82.85366824523163,4.4979111247189065,19.149960236674048 -9/19/2000,9,14.0,0.0,2.3936580000000003,0.5039794788057721,0.0,80.98074968989549,4.138078234741394,18.991856588176514 -9/20/2000,9,14.9,0.1,2.435652,0.4910664117820954,0.0,79.20215375549502,3.8229314806364796,18.818923368150053 -9/21/2000,9,12.6,0.0,2.3283340000000003,0.47818673836194436,0.0,77.46063833891039,3.517096962185561,18.633691474818875 -9/22/2000,9,8.6,0.0,2.141694,0.46580932602495695,0.0,75.89394663651531,3.235729205210716,18.436872493431775 -9/23/2000,9,8.0,0.1,2.1136980000000003,0.4543140943328563,0.0,74.46535643418515,2.990522141879425,18.229921503823675 -9/24/2000,9,10.2,0.0,2.2163500000000003,0.4428353947326956,0.0,72.90674568026216,2.751280370529071,18.014849180841175 -9/25/2000,9,11.9,0.0,2.295672,0.4317776625416185,0.0,71.3261434074385,2.5311779408867454,17.792116215750806 -9/26/2000,9,12.0,0.0,2.300338,0.4211171669380767,0.0,69.77666528794109,2.328683705615806,17.562832788480126 -9/27/2000,9,9.9,0.0,2.2023520000000003,0.4108318766348225,0.0,68.32541608263153,2.142389009166542,17.328010317991314 -9/28/2000,9,10.5,0.0,2.230348,0.4009013278947929,0.0,66.88628627708744,1.9709978884332187,17.088569562089816 -9/29/2000,9,10.1,0.0,2.211684,0.3913065030261505,0.0,65.48925795355873,1.8133180573585612,16.845348065269683 -9/30/2000,9,7.2,7.3,2.0763700000000003,0.40317094406336285,0.0,70.80038828096608,2.372960130890617,16.599107006832217 -10/1/2000,10,8.6,8.7,0.973808,0.42347206393735964,0.0,77.84051522315885,3.191886882418586,16.385772873240104 -10/2/2000,10,4.5,14.3,0.8944319999999999,0.47460425654740673,0.0,89.41117359019688,5.0083740449827365,16.21765175989623 -10/3/2000,10,5.2,11.0,0.9079839999999999,0.5340338480592809,0.0,97.43725082968616,6.808026575706506,16.143717426947443 -10/4/2000,10,10.0,3.6,1.000912,0.6316431788087407,0.0,99.23215511040297,7.050565395984633,16.16124440719382 -10/5/2000,10,13.2,0.0,1.0628639999999998,0.6241639824114142,0.0,98.23611879621595,6.3774918945066315,16.190547788849177 -10/6/2000,10,12.0,0.0,1.0396320000000001,0.5728443617279051,0.0,97.27163288955481,5.79191794822077,16.185611427797525 -10/7/2000,10,12.0,0.0,1.0396320000000001,0.5275998577926528,0.0,96.31661634177661,5.28246861495207,16.151495096652614 -10/8/2000,10,11.3,0.0,1.02608,0.48765263410719584,0.0,95.38330296283648,4.839247695008301,16.092588625467165 -10/9/2000,10,13.5,0.0,1.068672,0.45381722113639383,0.0,94.42066753792477,4.452107879407637,16.012699237708237 -10/10/2000,10,14.3,0.0,1.08416,0.44117919041013987,0.0,93.4539368653597,4.095939249055026,15.915050646924454 -10/11/2000,10,11.4,0.0,1.028016,0.42907885520269307,0.0,92.5466543801337,3.768264109130624,15.801546596438717 -10/12/2000,10,11.5,0.0,1.029952,0.4174826668113347,0.0,91.64648805874238,3.4668029804001743,15.673928869966474 -10/13/2000,10,9.1,0.1,0.983488,0.4069975110846838,0.0,90.87402666692347,3.210723408431358,15.533790441587152 -10/14/2000,10,6.1,0.0,0.9254079999999999,0.39628898213624497,0.0,90.07984826226028,2.953865535756849,15.383650803176977 -10/15/2000,10,4.9,0.0,0.9021759999999999,0.38600011006491464,0.0,89.31237373977608,2.7175562928963015,15.22367106390128 -10/16/2000,10,2.9,0.0,0.863456,0.3761060628292993,0.0,88.58409623500837,2.5001517894645975,15.05507545726807 -10/17/2000,10,4.1,0.0,0.8866879999999999,0.3665838201411416,0.0,87.8423221758675,2.3001396463074295,14.878981537595937 -10/18/2000,10,7.1,0.0,0.9447679999999999,0.35741203202127286,0.0,87.05857852644404,2.116128474602835,14.69640888915939 -10/19/2000,10,2.1,10.4,0.8479679999999999,0.40737371063181127,0.0,94.80131863841481,3.9069322643228137,14.508287135106343 -10/20/2000,10,1.7,3.9,0.840224,0.42303997355162826,0.0,97.05110584983544,4.492353781307371,14.413468005620356 -10/21/2000,10,2.4,1.3,0.853776,0.4204738909862197,0.0,97.25230993108325,4.449252143158444,14.349816334573317 -10/22/2000,10,1.4,6.8,0.8344159999999999,0.4583798351429239,0.0,101.62346503419688,5.755806094737615,14.285282615039772 -10/23/2000,10,0.8,3.0,0.8228,0.5119677824687168,0.0,103.02053096536295,6.064337746077297,14.287367267475858 -10/24/2000,10,6.0,0.5,0.923472,0.5155968643619732,0.0,102.48211622547794,5.659441362316806,14.304836809430206 -10/25/2000,10,6.5,0.0,0.933152,0.4805227304994578,0.0,101.57899608457666,5.167213985215621,14.301712141357443 -10/26/2000,10,6.1,0.1,0.9254079999999999,0.44332320659796043,0.0,100.76418170561575,4.766057846045261,14.274038597791074 -10/27/2000,10,6.4,0.2,0.9312159999999999,0.41767484716570136,0.0,100.02489521281808,4.437921093431703,14.226860718137516 -10/28/2000,10,9.2,0.0,0.985424,0.40577101334764204,0.0,99.09405252379932,4.082887405957166,14.164219558446351 -10/29/2000,10,7.9,0.0,0.960256,0.3943892831559234,0.0,98.19542509438867,3.7562564134805925,14.085079537575282 -10/30/2000,10,9.1,0.0,0.983488,0.38349649236202044,0.0,97.28340297487568,3.455755900402145,13.991190767497805 -10/31/2000,10,10.6,0.0,1.012528,0.37306195779445833,0.0,96.35317189122902,3.179295428369974,13.884154747167957 -11/1/2000,11,13.2,0.0,0.401598,0.3630572822958732,0.0,95.98774322822804,2.924951794100376,13.765436423643095 -11/2/2000,11,13.0,0.0,0.400266,0.3534561752146754,0.0,95.62490792715155,2.690955650572346,13.636375284875252 -11/3/2000,11,5.5,0.0,0.350316,0.344234287189924,0.0,95.3085519422105,2.4756791985265583,13.498195561706364 -11/4/2000,11,5.0,0.0,0.346986,0.33536905808730433,0.0,94.99623979560346,2.277624862644434,13.352015610398565 -11/5/2000,11,2.2,1.4,0.328338,0.336556880084348,0.0,95.77777047797547,2.419324975263056,13.198856541322815 -11/6/2000,11,2.1,0.0,0.327672,0.3278902825024506,0.0,95.48139033246541,2.2257789772420113,13.055845659259512 -11/7/2000,11,2.8,6.2,0.332334,0.36310387848363945,0.0,99.92998941997938,3.499450819497034,12.906017694936422 -11/8/2000,11,4.2,1.0,0.341658,0.3608601898033979,0.0,100.34696329630367,3.480093072104901,12.822869882012544 -11/9/2000,11,2.4,6.4,0.32967,0.40138580074446517,0.0,104.75032093204636,4.885915266163814,12.740417137977538 -11/10/2000,11,5.0,1.1,0.346986,0.3998277481285191,0.0,105.18685265310721,4.814463121660162,12.729904558526178 -11/11/2000,11,7.8,0.0,0.36563400000000007,0.3871997746265937,0.0,104.82364659320574,4.429306071927349,12.716029623438663 -11/12/2000,11,4.9,3.4,0.34632,0.40565403662454314,0.0,106.8894240917807,5.066351664440599,12.683174334566258 -11/13/2000,11,1.6,15.0,0.324342,0.5403820781740617,0.0,116.98604382884093,9.230264211003085,12.682828431096963 -11/14/2000,11,1.2,4.4,0.321678,0.7738585521026564,0.0,119.403807689347,9.93438800306662,12.890685073025177 -11/15/2000,11,-0.4,4.5,0.311022,0.7824037424677297,4.5,119.09278568934701,8.886417562667958,13.129590771718004 -11/16/2000,11,2.3,1.5,0.329004,0.7771295920477366,0.0,122.40238772800154,10.336077240866594,13.311319834417041 -11/17/2000,11,8.3,5.2,0.36896400000000007,0.887099713113153,0.0,125.05071409174272,11.41859683581276,13.561897299772031 -11/18/2000,11,6.7,5.7,0.358308,0.9854725443085608,0.0,127.87638805201388,12.693697286885943,13.861589195567229 -11/19/2000,11,3.7,7.7,0.338328,1.1216384045409236,0.0,131.65598686905057,14.869089822554095,14.219042276000181 -11/20/2000,11,2.9,4.0,0.333,1.2486846625489396,0.0,133.33033324837004,15.172261766302574,14.678115921607883 -11/21/2000,11,1.7,2.8,0.325008,1.264384547008178,0.0,134.36842215627888,14.880270828774405,15.143166691490853 -11/22/2000,11,0.2,1.3,0.315018,1.2282620725096498,0.0,134.67400000768149,13.868739769631143,15.584316899099756 -11/23/2000,11,1.8,0.0,0.325674,1.1385374474609165,0.0,134.3483260076815,12.309303599579096,15.966067549599318 -11/24/2000,11,3.3,0.0,0.335664,1.0257872314996948,0.0,134.01266200768148,10.952594131633813,16.262211378586283 -11/25/2000,11,2.9,0.0,0.333,0.9269893505692581,0.0,133.6796620076815,9.772256894521416,16.484596857596248 -11/26/2000,11,2.4,0.0,0.32967,0.8403441049764875,0.0,133.3499920076815,8.745363498233631,16.643517765170394 -11/27/2000,11,4.5,0.1,0.343656,0.7658255464316415,0.0,133.0550002569985,7.90330199414622,16.747915584778667 -11/28/2000,11,8.0,0.0,0.36696600000000007,0.7014087292103355,0.0,132.68803425699852,7.119372734907211,16.808122372790404 -11/29/2000,11,6.4,10.3,0.35631,0.7989310265153045,0.0,137.4056179187563,11.663460617611493,16.827928562079954 -11/30/2000,11,4.9,0.9,0.34632,1.007756916162493,0.0,137.46357449449366,10.886434161584662,17.074543021718927 -12/1/2000,12,2.5,5.7,0.17033800000000002,1.0320909539077947,0.0,139.85054193369612,12.8573922813762,17.27737386936378 -12/2/2000,12,3.7,2.6,0.17420200000000002,1.1385272621189204,0.0,140.7836469541866,12.922124264306802,17.57469600604532 -12/3/2000,12,4.4,8.5,0.17645600000000003,1.2532693728499786,0.0,144.15037260907206,16.44256645506145,17.869308299139753 -12/4/2000,12,3.2,1.8,0.17259200000000002,1.4150540442206243,0.0,144.6681563466638,15.65815707831171,18.33405045591003 -12/5/2000,12,-1.0,4.1,0.15906800000000001,1.3303962996736693,4.1,144.50908834666382,13.866096658131188,18.750277300707417 -12/6/2000,12,-0.1,0.2,0.161966,1.20038648743578,4.3,144.3471223466638,12.307004092574132,19.06857658759983 -12/7/2000,12,-0.5,1.2,0.16067800000000002,1.0864191166544224,5.5,144.18644434666382,10.950593560539495,19.30255526047654 -12/8/2000,12,-0.8,0.0,0.159712,0.9864258466229353,5.5,144.0267323466638,9.770516397669361,19.464033833293986 -12/9/2000,12,-3.5,0.0,0.15101799999999999,0.8986068773928698,5.5,143.8757143466638,8.743849265972344,19.563278976511572 -12/10/2000,12,-1.9,0.0,0.15617,0.8213960463460945,5.5,143.7195443466638,7.850648861395939,19.60920586027996 -12/11/2000,12,0.4,0.0,0.163576,0.7846494458229505,3.8,144.21533555506926,8.114197301009012,19.60955418614416 -12/12/2000,12,0.0,0.0,0.16228800000000002,0.7737568739562204,3.8,144.05304755506927,7.30285165187784,19.623072967471728 -12/13/2000,12,-1.2,0.0,0.158424,0.7114670925222274,3.8,143.89462355506927,6.596980937133721,19.595754090716188 -12/14/2000,12,-1.2,0.8,0.158424,0.6565090104310471,4.6,143.73619955506928,5.982873415306337,19.53368805575855 -12/15/2000,12,-1.7,0.3,0.156814,0.6079448262129862,4.8999999999999995,143.57938555506928,5.448599871316513,19.442157965408697 -12/16/2000,12,-3.7,0.0,0.150374,0.5649583462005137,4.8999999999999995,143.42901155506928,4.983781888045366,19.32574479966635 -12/17/2000,12,-0.8,0.1,0.159712,0.5268391816417581,4.999999999999999,143.26929955506927,4.579390242599468,19.188418998075292 -12/18/2000,12,-1.6,0.0,0.157136,0.5070635733006206,4.999999999999999,143.11216355506926,4.21303902319151,19.03362013024376 -12/19/2000,12,-2.2,0.0,0.155204,0.49355187061605493,4.999999999999999,142.95695955506926,3.8759959013361893,18.86359967879846 -12/20/2000,12,-1.3,0.3,0.158102,0.4805800364826649,5.299999999999999,142.79885755506925,3.5659162292292943,18.6801274802893 -12/21/2000,12,-5.8,5.1,0.14361200000000002,0.4681157027696281,10.399999999999999,142.65524555506926,3.280642930890951,18.48482074214498 -12/22/2000,12,-7.1,1.4,0.139426,0.4561288743695228,11.799999999999999,142.51581955506927,3.018191496419675,18.279156473846626 -12/23/2000,12,-7.5,0.7,0.138138,0.44459174368499654,12.499999999999998,142.37768155506927,2.776736176706101,18.064482919190677 -12/24/2000,12,-7.9,0.9,0.13685,0.43347851986993174,13.399999999999999,142.24083155506926,2.554597282569613,17.842030069642167 -12/25/2000,12,-10.0,0.7,0.130088,0.4227652716464774,14.099999999999998,142.11074355506926,2.3502294999640436,17.612919332377803 -12/26/2000,12,-8.6,0.0,0.13459600000000002,0.41242978261357666,14.099999999999998,141.97614755506928,2.1622111399669204,17.37817242072845 -12/27/2000,12,-6.4,0.0,0.14168,0.40245141804933154,14.099999999999998,141.83446755506927,1.989234248769567,17.138719529312226 -12/28/2000,12,-5.7,0.0,0.143934,0.3928110022893293,14.099999999999998,141.69053355506927,1.8300955088680015,16.895406851164463 -12/29/2000,12,-4.2,0.0,0.14876399999999998,0.38349070583644834,14.099999999999998,141.54176955506927,1.6836878681585614,16.649003489584572 -12/30/2000,12,-8.4,1.7,0.13524,0.37447394142519247,15.799999999999997,141.40652955506926,1.5489928387058765,16.400207813200808 diff --git a/data/hymod/sample.csv b/data/hymod/sample.csv deleted file mode 100644 index 0973fd1..0000000 --- a/data/hymod/sample.csv +++ /dev/null @@ -1,7671 +0,0 @@ -isodate,precip,tmax,tmin,wind,pet,q,er1,er2,ct_prev,dummy,qs -1986-01-01,0.10954838331913544,6.900245599317008,-6.68907708810832,0.8026599424742448,4.982696391794236,104.47856153878693,0.0,3.18157716564238e-5,0.0,0.0012761644758461246,0.10446262219902079 -1986-01-02,0.03502562171574218,9.163251394656289,-4.446106044192908,1.2767873071785174,5.613827288024375,68.01639681274938,0.0,2.188156550700371e-5,0.10029363650124704,0.001576377715509433,0.06800358909991984 -1986-01-03,0.0019403867972669442,9.040750314094268,-4.941508659760968,0.7835431406266791,5.602994063795532,44.269381430959996,0.0,1.269885026045645e-6,0.12243859155756914,0.001448930864238048,0.0442673336941151 -1986-01-04,0.5081659331916811,9.646989868217537,-4.389903950996598,0.7409197953356284,5.777585446922278,29.462207057121475,0.0,0.0009890076709786477,0.11256284342023373,0.007231069869281958,0.02896654469851422 -1986-01-05,0.17520296500808874,6.911336150739608,-4.6430936108868135,1.1395713956235138,4.858279276159632,19.306865170011974,0.0,0.0006025710390034078,0.5598488022426792,0.008562855286879344,0.018947609513487666 -1986-01-06,0.1051111037332626,6.529528217684558,-7.449335236911527,0.6962347844182458,4.89367900370032,12.638603516747716,0.0,0.00040600403997148593,0.6744116732622174,0.009080912433153041,0.012395823368539538 -1986-01-07,0.010798220781611387,7.117327266829626,-7.736318724586486,0.5280578628752274,5.0880019585868235,8.122618684056953,0.0,4.131647873937064e-5,0.7147383329641331,0.008452009493566016,0.008075389453469476 -1986-01-08,0.00945273787466943,7.417943106214548,-7.416057159247432,0.6249911551139525,5.1745944729451665,5.283001769837348,0.0,3.3523042067211406e-5,0.6628531483863681,0.007831908266953987,0.00526180336928858 -1986-01-09,0.0,6.91579344948349,-6.792777620403372,0.5342917080462583,4.991022837733088,3.427443779888972,0.0,0.0,0.6132407097285111,0.007143838961259141,0.003425186688648509 -1986-01-10,0.010610574131831498,6.230152825561772,-7.2638971887134005,0.6448669292352432,4.791102157273504,2.250660868523175,0.0,3.192636363233067e-5,0.5612831939521419,0.00666217509262928,0.0022344968110409396 -1986-01-11,0.00043269258155900943,7.613824758881904,-7.5222884720989045,0.6209689784453004,5.238975621905999,1.4572037164700957,0.0,1.2075962762276432e-6,0.5253847770196134,0.006125417419711963,0.0014547362770101788 -1986-01-12,0.00573881733794544,8.372136864306789,-6.623949246058457,0.7467702591487685,5.456195230127198,0.956770681237066,0.0,1.4683683694377732e-5,0.4790640116218992,0.005647624632724167,0.0009492007514903451 -1986-01-13,0.07327944339020251,8.528414313124763,-6.065185691058187,1.102056440489939,5.484930871384365,0.7398654737086412,0.0,0.0001854014394464254,0.4399136178311979,0.005978351611758365,0.0006461151848408516 -1986-01-14,0.004569174907362828,9.382720846019133,-7.7497622413371134,0.8828790702397541,5.8125994492842965,0.43882178093628516,0.0,1.1345320859635147e-5,0.46542160764577006,0.005475074323298214,0.0004223181106208557 -1986-01-15,0.04656633534608714,10.292839919933776,-6.191923457161111,0.8091834833172474,6.0788082924505655,0.3485715079585013,0.0,0.0001104778595814801,0.4236324519995328,0.005477497438262899,0.00029173112725268706 -1986-01-16,0.9419987953392812,9.528441241169736,-2.397246698627322,1.3837684574727889,5.564199304717476,3.117514780104742,0.0,0.004471617691082619,0.42169610436282123,0.01588612204182459,0.00087077310430439 -1986-01-17,0.010742724325688336,9.848961539106764,-5.145087409138839,1.2445946471987812,5.883788742803395,0.8729978275000488,0.0,7.089617712007293e-5,1.2346516898908604,0.01450800150295542,0.0005776273548685411 -1986-01-18,0.0,9.790556705635142,-5.488598590413544,1.0417430742093992,5.879293389672065,0.4001691027394695,0.0,2.220446049250313e-15,1.1208152180412687,0.013056738236703391,0.00037600825953407955 -1986-01-19,0.0,10.803604935178734,-6.620186179485471,0.9553115420684538,6.258650305914114,0.24637033403870406,0.0,0.0,1.008817458642651,0.011752040188330537,0.0002447637045684877 -1986-01-20,0.00390548024337783,10.850292939251295,-5.745260256670657,0.7909976520476468,6.248457646616963,0.1716790418151323,0.0,1.8758938536473594e-5,0.9015376685388319,0.010547799486989567,0.00016218599329438367 -1986-01-21,0.0,11.241046205931433,-4.580975996573534,1.2526886349603183,6.332967827368749,0.10666867986978246,0.0,4.440892098500626e-16,0.8093370584916991,0.009428228621357393,0.00010557545889302654 -1986-01-22,0.02942885310259766,11.528268336466367,-4.760644197175044,1.232856072277918,6.440789295205525,0.14409323385925032,0.0,0.00011524521486703035,0.7222904118510001,0.008757020347331522,8.62724481519603e-5 -1986-01-23,0.0053759733560928905,11.901936647621168,-4.63900186989293,1.570521078932357,6.564920181000418,0.07538958283595146,0.0,1.9197297745167374e-5,0.6695047303268427,0.007861903146166797,5.9082381121596855e-5 -1986-01-24,0.00019961359223597544,11.688408296166436,-5.250582937061844,1.4202604376137924,6.5141196090718,0.04050485640971703,0.0,6.358538386986071e-7,0.5996614544112285,0.006987975196302325,3.855667137853664e-5 -1986-01-25,0.04600245053016935,11.068142791886027,-5.203677859011216,0.9797623412448278,6.29601615781999,0.11406897013656905,0.0,0.00013595700916066433,0.5335322818520245,0.006751187151987479,4.5800044015648204e-5 -1986-01-26,0.4299323167451769,11.686763152450139,-3.265723992996448,1.1427408448218643,6.405963371850359,1.1309905473013664,0.0,0.0016735942654459435,0.5176016875512575,0.01103812944839798,0.0002846431266563637 -1986-01-27,0.7536781846142268,11.561087188195751,-4.249899498956771,1.4863282794904509,6.419615473098718,3.4831921332807876,0.0,0.0048989045887427585,0.8444153745748088,0.018616707682251158,0.0009312198914491224 -1986-01-28,0.04015476243597765,11.442172403499606,-4.884215177778039,1.3787649835467095,6.40724004027798,1.0995102946700865,0.0,0.0003087091081103721,1.4235317498248226,0.017050956610475773,0.0006531859042092841 -1986-01-29,0.06778990915638193,12.355589925658903,-3.0663167794507458,1.6258589086122444,6.628896851958752,0.7809675351381657,0.0,0.00048289943675904057,1.3041660798537116,0.01598235813757726,0.0004987218969309383 -1986-01-30,0.06860308783840519,12.132445396419367,-0.8969835048879573,1.7000344922824409,6.355450382554204,0.6540010056404393,0.0,0.00045698689035567064,1.2172965322628577,0.01497985972003489,0.00039422752001003967 -1986-01-31,0.56697902189213,11.295292615602719,-1.7842699849592658,1.498252297930898,6.1314508970534325,3.1070136845309255,0.0,0.004319229601255747,1.1469473326359405,0.019966081302115524,0.0009142901007825286 -1986-02-01,0.5093457265901428,10.127351492359898,-4.160905437972292,1.4328360532918525,5.903201724207113,4.022888876066697,0.0,0.004860321763916153,1.5350614469766588,0.023815959031274956,0.0013352156731408808 -1986-02-02,0.3847706190371161,9.730993180203551,-4.462317741632583,1.401754420520792,5.783020032845075,3.8946923149031747,0.0,0.004170141242267278,1.8388252540339445,0.025903386027931127,0.001504128256917514 -1986-02-03,0.021994866716660653,9.848096457553032,-4.709636518076816,1.4817891856478922,5.836291978499739,1.3984941617494595,0.0,0.0002365132756191636,2.0044478141216855,0.02360668485714256,0.0010151294414039273 -1986-02-04,0.17976594693031567,10.762395486407096,-4.375177975200724,1.7385285677682134,6.131830420415577,1.8940245939253773,0.0,0.0018359896006407972,1.8249845739651378,0.02335398588446264,0.0009403580946933043 -1986-02-05,0.04266035110334192,11.48946587375257,-4.268683033496294,1.4767594141173015,6.3783399788574595,0.9909042689925758,0.0,0.00041323122344953667,1.7953736007853436,0.021411850761559163,0.0006750494811714325 -1986-02-06,0.28566765323005,12.012203765901448,-3.8821164056249056,1.6817792761482633,6.539635733476637,2.243954538134822,0.0,0.002712884586038966,1.6384372379521077,0.02241451891421506,0.0008525022400699615 -1986-02-07,0.17741670231273468,11.515270672261494,-4.068346465645976,1.1692008127139752,6.372011301249278,1.8260403732064634,0.0,0.0017012836770753659,1.709835952793518,0.02198521532149513,0.0008139844632555036 -1986-02-08,0.1820947638480905,11.463836167763196,-2.728743343523199,1.710864609457373,6.260700490736328,1.7655563110928105,0.0,0.0017217257823322896,1.6824898837726714,0.02172114838582047,0.0007920238133975056 -1986-02-09,0.0,11.234756808163702,-5.535420335354377,1.0657232736606963,6.337197872259872,0.6238346734667631,0.0,0.0,1.6658243452497419,0.019405725470309276,0.0005155702774025464 -1986-02-10,0.4180671080367081,10.889579278494459,-5.5029445985739995,0.8041837266232326,6.215666356086742,2.81146132373943,0.0,0.0037774111763352325,1.48616969806917,0.022183069178406793,0.0009107786733606587 -1986-02-11,1.0915759369595377,12.730362184812755,-3.615296122607176,1.4416744855343515,6.768793012156762,9.374537353054071,0.0,0.013106780529360096,1.7026895119937822,0.03255130011047426,0.0025885750693336873 -1986-02-12,0.01428372684122696,12.56194745763455,-2.799404495938609,1.598274230384636,6.654239357150064,2.5857481234014053,0.0,0.00018917890506557622,2.471515596825967,0.028957878654447235,0.0017138459901082262 -1986-02-13,0.0008594874069876149,12.703292615295114,-3.0664570367810087,1.5379428504364534,6.720748837063116,1.1929726748091256,0.0,1.01137948724919e-5,2.203746680289418,0.02568216882077873,0.001117173163477427 -1986-02-14,0.01933031102689451,12.837265196025331,-3.1009974252518835,1.525240806890709,6.7686598025579325,0.8646459359893334,0.0,0.00020229318209950137,1.9521338124146546,0.02296622189678408,0.0007580293476985141 -1986-02-15,0.8627837794351416,12.831468224292436,-1.4155145454462488,1.6349542295376638,6.633812848434115,7.051737740976317,0.0,0.010020983883410883,1.7442112568198505,0.030369726628313123,0.0020192843123126203 -1986-02-16,1.3683831166465412,11.545581478830252,-3.903465230396773,1.586697742621695,6.3508395350615245,16.23435859843309,0.0,0.021948242816324237,2.3120107728580974,0.04287409632713906,0.004656403386959162 -1986-02-17,0.015272360739658562,11.286687667938207,-4.994059048896963,1.3816825795211591,6.3133779103707734,4.524761344898821,0.0,0.00026905087423758495,3.2806399202084613,0.038395145971234564,0.0030720667241913445 -1986-02-18,0.002542973856777073,11.088944872070108,-6.912794745197278,1.5381827054740917,6.300536540819181,2.14266406873437,0.0,4.003135334776668e-5,2.9403705065462438,0.03428294900745465,0.002005866415235303 -1986-02-19,0.22434573502721253,11.008447184720394,-7.504184908429872,1.3110501685081686,6.278605677105614,3.462100265496271,0.0,0.003285651613637336,2.6263736455184237,0.03320895018103789,0.0018060137570799649 -1986-02-20,0.3752201167803466,12.761238864736711,-5.3677292986948775,0.7864815670791365,6.8280854049414605,4.949126407710398,0.0,0.005483781436791402,2.5452320566786852,0.03402128999310398,0.0020106168078252123 -1986-02-21,1.112177232360383,13.318861762275212,-4.517551868381676,1.4676616809396217,6.991342782172288,13.844018697097026,0.0,0.01867943007833439,2.580069855100205,0.04301217805594457,0.004153036220002113 -1986-02-22,0.011921981170888815,14.564944285250688,-1.2232129596587484,1.98377748247606,7.246941703741839,3.948195816114622,0.0,0.00020799309609852157,3.2507954465702213,0.038008448412035496,0.0027351014080425253 -1986-02-23,0.08162575358068176,14.731704931016436,-1.6119788636673935,1.6935348850762155,7.336440460440527,2.705027942697876,0.0,0.0012664178310016344,2.858802858206486,0.03425400197091593,0.001973253290189503 -1986-02-24,0.034357532662557436,14.698723598003989,-1.7194602150924119,1.6655655910239977,7.328451071988116,1.6750004073735938,0.0,0.00047554343377138875,2.5722106750480793,0.03036475436483392,0.001356903661913215 -1986-02-25,0.3265262662346816,13.834567912872606,-1.4765471291209704,1.5059010982838923,6.9831894733586735,3.702253033108939,0.0,0.00426380635723278,2.280776735974946,0.030373314223119802,0.001532508015723276 -1986-02-26,0.09784089019152288,13.937180578892514,-0.5344354158525246,1.7769164362483438,6.933554569510254,2.0481560937616083,0.0,0.0012257924519163549,2.2967593214033544,0.02789547076188758,0.0011842356995623701 -1986-02-27,0.03737304146747186,14.071437401569176,-0.9328375203910672,1.6815610971916584,7.018476976118409,1.138806959863678,0.0,0.000424925931569925,2.111562360090236,0.025033642097363966,0.0008355830317687958 -1986-02-28,1.0177967955413276,12.959581805982914,-0.7639524118453216,1.5333442147754008,6.579097714258138,9.103725674834733,0.0,0.013055318332053645,1.891978752501581,0.03389691453757324,0.0025317903610713693 -1986-03-01,3.717773372855819,9.252476567749694,-3.676805987766925,0.7453177369337277,5.4986174424347904,60.47351376465093,0.0,0.08888726687758997,2.583001843161344,0.07339976417130985,0.015182476027728565 -1986-03-02,2.2551917654981257,1.9299846923364312,-5.3297973830858965,0.29372441047416376,3.220504553672872,69.66827381841483,0.0,0.08353756012184066,5.704101706749391,0.09272037865247061,0.022602905930731772 -1986-03-03,1.437286655628402,1.7460422503583868,-7.951755529064869,0.4873834840927576,3.3960890876523466,62.073669051766494,0.0,0.06446724186035846,7.515458857599252,0.10429342213100659,0.024529519359882443 -1986-03-04,0.023025851224762632,4.522860917596788,-8.67258245870229,0.4892588731605949,4.2363296570735915,20.798056268867448,0.0,0.0010588090710100737,8.424828703304092,0.09841178439117558,0.016128783538520073 -1986-03-05,0.16797624853247767,9.765532022964981,-6.990680492681202,0.534316826769358,5.821829160597002,15.598080444693815,0.0,0.007230677821014331,7.827587987530434,0.09314290848714803,0.011600057546429308 -1986-03-06,0.3525365985973332,10.929710618421392,-3.7951026214381742,1.0894918783255492,6.074338080363005,17.208571913115534,0.0,0.014103763163518579,7.19032980279123,0.08786928529527613,0.009698598553880002 -1986-03-07,0.9756737886691776,10.666433738842523,-2.757265797187733,1.139761567923368,5.901722408907585,32.2126986457272,0.0,0.03834274769326218,6.751318882760165,0.09001423164479518,0.012151581590869567 -1986-03-08,0.7909650435571216,11.226431141335015,-2.2530995548717785,1.021190091476641,6.055360849324584,30.777916611179684,0.0,0.03150179414121124,6.938724156485002,0.09004564437695489,0.012706722019340234 -1986-03-09,0.2961675504986309,13.206101696495814,-2.2241936826520092,1.6066201192717502,6.766993785765673,17.694080077246248,0.0,0.011358060760642885,6.92065968604201,0.08407114982940314,0.010000911359937048 -1986-03-10,0.007207516403577937,14.087112905824952,-2.7474913182499834,1.4697144609145236,7.1185987989033865,7.483712435395856,0.0,0.0002488045170228794,6.374078396043281,0.07433765926018482,0.006548007415743691 -1986-03-11,0.07765281389856575,15.474120594052561,-1.179221805369995,1.6220219660029846,7.521782178824523,5.881618202461002,0.0,0.0023638266186505746,5.599180970514064,0.0661312690470811,0.004622372594351664 -1986-03-12,0.2068688262506345,16.074051919394492,0.2060401313399533,1.8986678479568184,7.630178983463987,6.8258853290021575,0.0,0.005625525057295938,4.943065652224129,0.059993248966702314,0.003865516602197127 -1986-03-13,0.19890037370810104,16.388428279759204,0.339405739078786,1.511823885921146,7.735476896774743,6.0516593726973475,0.0,0.004895864061534694,4.475589664251353,0.054454643221543954,0.00326173725778825 -1986-03-14,0.15167888101201538,15.85295680513129,0.15943907431937784,1.69447385741525,7.54049890592505,4.6318188814221095,0.0,0.0033658381517916447,4.054701781677469,0.04900148601894279,0.00263573623466682 -1986-03-15,0.2280442471002003,16.510155360534597,1.016300623656292,1.8009070677338317,7.707809976335641,4.9541015846089556,0.0,0.0046223543848967485,3.6633218430611936,0.04533177958737393,0.002419562149428681 -1986-03-16,0.5480830193530369,15.835749947215124,1.4549230271534503,1.907903940284147,7.38864245974859,8.873921447191565,0.0,0.010737385941749333,3.378242838295825,0.045739037202681465,0.0032099468708507977 -1986-03-17,0.08866448436471804,15.898733393217855,-1.851161484995385,1.968828085772724,7.700900961392487,3.812787837964459,0.0,0.0016513552983730834,3.4299593839781886,0.04098958513666295,0.002340967784756307 -1986-03-18,0.07540729040009918,16.192490802842862,-1.9517353993309456,1.8704049581723303,7.811786094049999,2.4848968601321144,0.0,0.0012488304943068934,3.055487320033994,0.036472801865220755,0.0017140128938843112 -1986-03-19,0.05683839571643525,16.573657455942673,1.3548309808396728,2.1474838215640077,7.679304268903047,1.7431467048643459,0.0,0.0008333819425928798,2.7132581135353284,0.03226974833096383,0.0012426365474655352 -1986-03-20,0.030542687346321037,16.482068228232087,2.3677919579687767,1.959363481942728,7.518327196397184,1.1216946388225306,0.0,0.0003952707798815479,2.4071628711044157,0.028397618860378636,0.0008690838039794279 -1986-03-21,0.07274061483625904,16.532096161033422,1.156971156726064,1.6335801588908705,7.675214560562338,1.1410737374909197,0.0,0.0008393190636166725,2.1252597191002165,0.02560521533116666,0.0006935314359885151 -1986-03-22,0.0,16.784239757162243,0.9612681033003888,1.6932696233515403,7.789903286192387,0.502168549150424,0.0,0.0,1.910568846070603,0.022256833155727018,0.0004514563688510319 -1986-03-23,0.00023972577887412417,17.494162451917223,1.892170594422533,1.9231916344534723,7.968587240480703,0.29914602557672143,0.0,2.1172577419309544e-6,1.6571670819141047,0.019307666858410392,0.00029419926144174107 -1986-03-24,0.005787708852028226,17.69185771165013,2.0220093119722824,1.8739876348148672,8.028763491557106,0.2207861778795553,0.0,4.424690300846874e-5,1.4326775266211624,0.016757145816590623,0.0001982471364674163 -1986-03-25,0.021651471435235988,18.060858299283034,2.8083854283953444,1.783301476122518,8.081825240774968,0.22595327792041195,0.0,0.0001443751391691471,1.2420512229841654,0.014721280568340187,0.00015103281598987634 -1986-03-26,1.0798014014617126,16.884132186664008,1.2847279045007576,1.8436906052372255,7.777800252035939,6.234849321006961,0.0,0.009380679724751317,1.0900825328466577,0.025277678316863565,0.0015266623317596905 -1986-03-27,0.33871092302012434,16.202080687514268,-0.9570280101062788,1.7291699952480872,7.709250840906175,3.9609332947559137,0.0,0.003708230954115155,1.8823588117171206,0.025873958227127368,0.0015584183686013196 -1986-03-28,0.17456887439541702,17.93428815037578,1.2808494060987194,1.7239799549518549,8.182996988658685,2.498540674696197,0.0,0.001878251581911794,1.9293184380445276,0.024508862367211635,0.0013004486626959572 -1986-03-29,0.05652591483156887,18.54656116307963,3.3983626810096985,2.2900741055870357,8.188247589824472,1.3368509377843028,0.0,0.0005542714176807115,1.8106412484867358,0.021751232944731008,0.0009309269698161515 -1986-03-30,0.06951996693316309,18.8085902509965,2.8304503077083742,1.9960637366613063,8.359922315023981,1.0450635689373273,0.0,0.0006081782862400464,1.6068938879114,0.019529086085519582,0.000698593832365049 -1986-03-31,0.99649306199001,19.77016181943443,4.249883637056644,1.8753338358194802,8.57693366818284,7.2169362624774145,0.0,0.010292817993055592,1.4379409629735582,0.0283595077108448,0.002021985344246816 -1986-04-01,1.1459208295388057,18.797367798194035,4.951804822610374,2.0460603124914605,8.059408055447276,12.529208002496468,0.0,0.01624652188059117,2.0785184013963325,0.037562533342518495,0.003789990388894406 -1986-04-02,0.5640864050731167,19.414725829129072,5.158977229695445,1.818138417750456,8.286633315413576,9.49760626707726,0.0,0.009249014695458024,2.7806070987231943,0.0389634141811436,0.003875404734942247 -1986-04-03,0.6374204691364609,19.685742940588053,5.314288286627061,1.5596008689224774,8.374191642253455,10.248994932024448,0.0,0.01089033872041778,2.871208852391623,0.04087315543491097,0.0041809212895132205 -1986-04-04,2.7963569974676625,18.86387906288261,5.203959528375846,1.5503991864851248,8.03392109571764,46.68669012609068,0.0,0.06626405818287173,3.006499187265315,0.06759934466423714,0.012811265020856083 -1986-04-05,3.1124382674331965,18.00787669330241,5.18432758577597,1.1006091431316027,7.665329279741702,84.47856337554207,0.0,0.11059117399513241,5.0015899026437305,0.094522933090681,0.02517867138228135 -1986-04-06,5.1682874820045885,15.427525038246053,3.7277914441596263,0.7939204841753167,6.814991860220339,201.06455504293433,0.0,0.27242149338557287,7.0385663526514906,0.14220158028487348,0.057870328471225356 -1986-04-07,2.366429137070874,14.357753962083757,2.6778328935563698,0.962883635710506,6.541766095512063,155.79983673027888,0.0,0.15585736946981577,10.751602514009937,0.15281618476619008,0.06140245088241529 -1986-04-08,3.2519077056250523,15.228894258934073,1.5860478781726255,1.1404654432041452,7.036362637649101,206.2005962927483,0.0,0.23871046503316995,11.612632388430265,0.17316182533302873,0.07631730433490594 -1986-04-09,0.6874597397879287,16.664193507662446,2.43488238295063,1.1854478814859908,7.494766816689015,97.588701470488,0.0,0.05095516056790883,13.021009407438381,0.15969438173230452,0.057437654156089736 -1986-04-10,0.045241196695600915,18.28175544578696,2.7186415749592765,1.0969789395924667,8.10587976394123,43.40750749609583,0.0,0.0029771672274793368,11.904304368224674,0.13920411320020032,0.0378425309773786 -1986-04-11,0.5892387720137364,18.861291598745858,4.698616748748859,1.2188594419248997,8.077547497841401,47.40897439141155,0.0,0.0341413014827765,10.257746667580388,0.12636003443066993,0.02983222658103021 -1986-04-12,1.6034233562533158,19.222636399272886,5.38833638614916,1.4368300068379989,8.120473829390694,79.56874383073156,0.0,0.08899618562054079,9.321226660069142,0.12726477415251128,0.03297036137406959 -1986-04-13,2.6659777438921872,18.12196591656673,6.056182810331937,1.2446692272603053,7.524817387383659,129.2960941407811,0.0,0.15693366340772785,9.379513167360628,0.1403218115075833,0.045357624252553415 -1986-04-14,3.2490517209944016,18.044630401911125,6.6460923835179875,1.1003704068871651,7.372255330411546,180.68860884023238,0.0,0.21684164486218016,10.461351730028593,0.1597169150615608,0.06254302537075897 -1986-04-15,5.04575055204046,17.005687655672983,6.732438930022725,0.8406116307542185,6.884360481888417,319.5240032255901,0.0,0.40643652467295777,11.935307884752579,0.19781783064905412,0.10259853508518553 -1986-04-16,2.737590125612816,17.612586190659822,6.745586345459015,1.558918117848845,7.150406698918634,254.55665859923488,0.0,0.2497949068000258,14.907013580917921,0.20554768366649315,0.10482178894230783 -1986-04-17,4.108367285947728,18.36057217386032,6.7921073743039955,1.339883465998345,7.471084396160685,348.4679237615158,0.0,0.4039189062398103,15.4022233136929,0.22728516726261452,0.1297366784696305 -1986-04-18,6.911482346747526,16.58749909582571,5.334917222444059,1.089269966264744,6.972645657930242,632.9449264547185,0.0,0.8018732302621778,16.905538864866056,0.2774521674335445,0.2065495252881327 -1986-04-19,0.5367877809131878,16.929348880185838,3.4029953958685373,1.2803323023724178,7.429218242155337,225.0343255306198,0.0,0.06457691268739385,20.804210813675432,0.24860818079036717,0.14428682207400306 -1986-04-20,0.3644942264485101,16.797195925492467,2.996629836616288,1.0151348489952021,7.427732493763133,126.5278391489088,0.0,0.03849676076434588,18.49052416646787,0.2196481950296578,0.09978564022124256 -1986-04-21,1.7506260338298316,16.145446323772,2.2764433208142387,0.8258396714593359,7.257666228178823,178.58342106650514,0.0,0.16971661456919285,16.35717468570542,0.21094361517551746,0.09079762361839899 -1986-04-22,0.2044071395929117,18.19352228985436,3.1526593823916795,0.8092640178352478,7.962789781248279,81.01455485009106,0.0,0.01815748636908812,15.768925194962161,0.1860785040237352,0.06186973102405756 -1986-04-23,3.0886500247893527,17.607801883954387,4.393632258598736,1.5291519492821293,7.5453387744823965,214.19806109337136,0.0,0.26344758357426956,13.725875279575352,0.19587783243806003,0.08038807347958297 -1986-04-24,1.2153468773580631,18.41115817256436,5.544248607046192,1.6797741462083509,7.693903199169791,134.99510761476677,0.0,0.10295477012025533,14.566220299076468,0.1838445698013969,0.06800524227782143 -1986-04-25,1.2665838293466336,17.62917113450389,7.084955031404312,1.7067384107011787,7.049838861003946,117.12574485892243,0.0,0.10057171716606272,13.636777401110582,0.17361406528114143,0.05958174614187681 -1986-04-26,1.4752657198119263,18.572138730937127,7.0956575350354925,1.7957736030413505,7.4671696400429255,118.97037997149187,0.0,0.11299625322974238,13.051283308081615,0.16922445831107585,0.05599026522270108 -1986-04-27,2.1651724515613715,18.346936521959087,7.475371686142094,1.6804033369439495,7.282152578783329,151.09134414042927,0.0,0.16472373031587928,12.617197466135645,0.17220459842684072,0.061528652490475996 -1986-04-28,11.654700636053928,19.72106124519786,8.202056906984671,1.7712760016249085,7.748132307492132,858.2402619774699,0.0,1.237035106114595,12.885831349765446,0.2858805779673956,0.22840913031516585 -1986-04-29,3.254928690075125,17.78702169003129,7.617453164732862,1.3676552213098219,6.987837838457814,498.77018326598943,0.0,0.4249002489557756,21.086405473004383,0.28356005823589076,0.21338094848021177 -1986-04-30,0.6461378579528434,15.427557026365392,7.23164128829752,0.9643317820721558,5.987799625444017,221.218661591624,0.0,0.079734518691704,21.249881332946075,0.2550737948589083,0.1510417269297463 -1986-05-01,0.5386328707581073,16.246645508427125,6.0509327209339006,1.1435047167007866,6.633602718579854,144.78214465147988,0.0,0.060582149929509055,19.529878705038637,0.23378456879212536,0.1075455925654572 -1986-05-02,0.168473068243322,19.013020634850164,6.373955805866475,1.0050003928092943,7.775946281114814,85.04272962971542,0.0,0.016872238494811925,17.68267496695803,0.20795378521679217,0.07257617367847075 -1986-05-03,0.3810761518449343,19.566504080942675,7.94272708735322,1.0500712463138275,7.71268937437745,70.2010138798702,0.0,0.03318223294472061,15.384061592722821,0.1836531780467086,0.052296163145177946 -1986-05-04,9.288096347489562,17.902299915915737,9.398045872473306,0.9769685179522459,6.571936904355267,662.8582980881007,0.0,0.9595000415448496,13.617489544873727,0.26683456321869964,0.1801404001248551 -1986-05-05,9.175177719098333,18.00498728755873,8.43517132138051,0.9280931039395229,6.872776156653741,1034.4534883030362,0.0,1.3186086409634115,20.18161212375788,0.3419867202712919,0.3180405790240715 -1986-05-06,3.0319527308514465,17.160726058743624,6.900000403887192,0.6119450154362213,6.840262244173656,602.3480308708624,0.0,0.48149000618618754,25.620091576189015,0.333776912056239,0.28034343543968177 -1986-05-07,4.044790402982615,15.540524520349484,6.235057198410533,0.2108567160336842,6.261544967811105,634.843275910105,0.0,0.640252746582215,25.03197228545548,0.33872459356605683,0.2799783393290866 -1986-05-08,4.979155471301596,15.5126493007039,6.161355603269861,0.33731128969068924,6.262840591260597,761.1564068970429,0.0,0.8254352121633213,25.704306871480554,0.3574415564285291,0.3079374449707092 -1986-05-09,11.892037791177748,15.311612693822989,6.50497425742466,0.4542283385029775,6.089976767874964,1796.2126950281972,0.0,2.364867307467593,27.10088452811351,0.4542411377112024,0.5605387869133676 -1986-05-10,7.027296898676393,16.996093862610017,6.595496801636636,0.4338340015986232,6.819620050462462,1575.943383922616,0.0,1.637969893657444,34.39527790902603,0.48254494375942775,0.6142895186849879 -1986-05-11,1.1816007919114118,20.113509221485728,8.598015046869369,1.529087653769247,7.792945911046116,677.5928111945079,0.0,0.2631183324984765,35.900544858546134,0.4319818835610296,0.4399372581765755 -1986-05-12,1.0014672616492106,19.610451091862064,9.725184022456878,1.3819951138138094,7.287056538773049,435.0885423905744,0.0,0.19199581669945687,31.567366464579546,0.37940485620924935,0.3156126774320295 -1986-05-13,3.524056010864017,20.057072349930962,10.352494367027315,1.2573580912773763,7.336283684766137,625.6507065311768,0.0,0.6236116701043048,28.120534648350358,0.36863805040678704,0.3004031084825085 -1986-05-14,4.5449990214577936,19.609046381889968,9.963095331922442,1.242671229217551,7.218123923285527,752.1935886001482,0.0,0.7952679282613664,27.31022117292236,0.3710917418461166,0.3166395950958107 -1986-05-15,0.8858165485293644,19.781458868981712,10.19848136987978,1.2246313278158356,7.236404983323925,350.2520204380392,0.0,0.14566573829601925,27.557417844622996,0.3313444179724862,0.22829725489424754 -1986-05-16,0.18877601343293332,21.294149579878148,10.309335885201717,1.7554987519302023,7.936051936038959,178.47883056752562,0.0,0.027059206447050566,24.647445888986184,0.2893251652447012,0.1527309468872542 -1986-05-17,0.16123066493073485,21.321251417157605,9.563742193782582,1.3849069912267986,8.119240110889137,114.7225815978554,0.0,0.019656830680166493,21.253090394378813,0.24946233784794544,0.10241371092677896 -1986-05-18,1.0395674667477508,21.326930376819615,11.106223272922255,1.679231795913164,7.743119076573841,140.27536350770154,0.0,0.11066436858251127,18.290461441171672,0.2251817458364671,0.08351679730929772 -1986-05-19,3.1668457789857216,21.002425268816246,10.544046584892934,1.6828015786758668,7.727412646075496,274.015735034556,0.0,0.32626358631183283,16.657475874669316,0.23093992157274057,0.10404396060482632 -1986-05-20,0.963491797296138,23.133445989141574,11.389759521109724,1.8106995981146012,8.548102157452558,149.4286797535935,0.0,0.09533235390433437,17.084652693890476,0.21024866051644495,0.0822434874962795 -1986-05-21,5.398280470370572,23.517577874926086,12.022030392791958,1.502531438199317,8.576541456445392,419.0050148609098,0.0,0.5487096404904639,15.306695676469092,0.24119895000972327,0.1370857936641029 -1986-05-22,3.0455472778104937,22.81664097988729,12.626925687250981,1.617977297276601,8.06074289229834,336.2580074244026,0.0,0.32862316032474403,17.523574423292327,0.23961633772205443,0.13927413948998013 -1986-05-23,6.26802741137411,22.753774249551824,11.771529319956873,1.9212785556703624,8.257075696669409,596.5396566757105,0.0,0.741411444017352,17.598050744475287,0.27802364761089166,0.2035517640054572 -1986-05-24,4.794857229856156,21.125313255740725,10.917530006817955,1.503887031206171,7.675973963511611,585.7333689818863,0.0,0.6254821881074086,20.297301368451954,0.29230665442293463,0.22774153470352063 -1986-05-25,3.4078466927468303,21.66273931998278,11.248709264805242,1.4299303190645936,7.849858023305184,486.6225447600189,0.0,0.4572087543786876,21.58613103425107,0.2911629137635339,0.2178658223520748 -1986-05-26,0.2665271950006557,22.412081331495237,10.68911235290506,1.5817222023926396,8.348703521396043,192.82683242161752,0.0,0.03286507718296161,21.42479507797549,0.2526892143926934,0.14682460416819693 -1986-05-27,0.6574367485379444,23.438537259722022,10.364686790474677,1.2603838682447897,8.903637888943287,145.3198896629358,0.0,0.06980202488835485,18.435689047791307,0.22242198502513635,0.10620430601840361 -1986-05-28,1.1267792336231521,24.579576577055587,12.093576860081143,2.1845883888472555,9.0579174381387,142.16733385784875,0.0,0.10515824974489996,16.063887148951654,0.20025962126391433,0.0851459086221023 -1986-05-29,0.3191388789601627,23.58840079588509,12.377714489158215,2.2638840600269483,8.49611434235962,78.80173461846536,0.0,0.0259416748576774,14.432214730004253,0.17184327943538547,0.059375987883798505 -1986-05-30,1.8410572889112105,23.969731208946875,12.41228393428479,2.2415228802651592,8.673860210571666,130.5069885423933,0.0,0.13755702059274433,12.545674925692747,0.1675956871248651,0.05959606592989699 -1986-05-31,2.9483425004774313,24.851805559158468,11.678289844132168,2.206917805506704,9.276604496615656,193.09886392479035,0.0,0.22377040422626404,12.193157205578036,0.17638821724653655,0.07286658766637819 -1986-06-01,2.4888990344790374,24.85958368346271,12.911706209112642,1.5970934669376335,8.983820435960764,186.75606029727672,0.0,0.19245170186580918,12.668346998297782,0.17657165128890226,0.07673633850268717 -1986-06-02,1.2242590652283594,25.29627166087675,13.290646471176698,1.97727738275729,9.102920179516522,121.46503119090517,0.0,0.09079075374298795,12.758965697632503,0.16289509858077306,0.06377598324926444 -1986-06-03,2.8373667066827086,24.40121183526425,13.024124948250707,1.5862292383148595,8.720176647047444,182.99742546924037,0.0,0.20709912487130966,11.748982250692059,0.16992108699102382,0.07304906882173821 -1986-06-04,3.894814591054396,24.26121439231253,12.648700014744373,1.7789765404666469,8.745317319764853,262.51684837135167,0.0,0.30996857201044836,12.34927926019351,0.18923269232446985,0.094748804692128 -1986-06-05,2.1273316657648547,24.0609547858359,12.220695833623381,1.7417894626571655,8.751778115469618,195.26364441874674,0.0,0.1755092364278088,13.733711577581195,0.18477041215707074,0.08840089267149168 -1986-06-06,0.5013577386689053,24.126829692342444,13.200225907989754,1.5793855910473116,8.52737400169468,94.01419151084153,0.0,0.03802668380840679,13.4107902988997,0.1620671028666491,0.06333495065799029 -1986-06-07,2.1060110215056045,23.06844089900406,13.235405892878589,1.69577275796417,7.9738878934436945,142.44321730193255,0.0,0.15021916519312795,11.829315580255177,0.16233711744219062,0.06410116319551024 -1986-06-08,2.5112710025067653,23.016762280057602,14.345508055906805,1.426448936275384,7.59639437105039,171.08078588224265,0.0,0.1843315352116388,11.983494560324115,0.1688542024679193,0.06979404381632567 -1986-06-09,1.1806817878490663,22.143209645219606,13.621214387831174,1.5993780437327698,7.3640793634687585,113.00604906729885,0.0,0.08602431434394697,12.55700018012594,0.1600346913101295,0.05853111488408576 -1986-06-10,3.1933489313896284,21.582348743839766,12.291803595537298,1.5432537113698686,7.483618304065184,200.95770276974693,0.0,0.24033267594861973,11.960876532654906,0.17653646370880113,0.07469520512927622 -1986-06-11,11.914667062952011,23.912734846402945,13.05159889699384,0.7802165125203016,8.449562656965945,908.0739724471183,0.0,1.2936343610890706,13.154334089618326,0.2920368858630848,0.24559800995495457 -1986-06-12,9.130892155812461,23.37051900424849,13.635564397090384,0.9742399511233124,8.002448956719533,1132.0514363186712,0.0,1.371664943493034,21.218358873633694,0.35354822096722177,0.3687290123666158 -1986-06-13,6.083553374052548,22.94975476383481,13.669452010482395,1.335936023212669,7.7701644660050695,1002.5813640511213,0.0,1.0365635573365095,25.844708779274423,0.37194263120139437,0.3978573713480547 -1986-06-14,7.544506947085672,20.77540118054622,13.86341345088378,1.3704264902698486,6.5206746522366315,1237.7146991597278,0.0,1.3962292029780734,27.29581088248524,0.4058661076883307,0.4715829718332739 -1986-06-15,2.537028977822722,20.532366621589603,13.178743615619481,1.213406028057244,6.6357322583325935,707.746310639729,0.0,0.48178955849723737,30.532115334793566,0.38523313571363504,0.38033792793059723 -1986-06-16,5.028457627066176,22.22710086823801,13.52306802288165,1.2850830858789069,7.430465620337929,898.3499034289077,0.0,0.9433578307412578,28.94092373356988,0.3957202876524874,0.3912222809765581 -1986-06-17,7.339412859670569,22.215435655955048,14.133116766638002,1.1730665709331127,7.21905386214679,1258.6913855862288,0.0,1.4492578122701278,29.212453305713808,0.42580448668289467,0.47533822899696204 -1986-06-18,10.791327750087794,21.486678338116608,13.687677314340295,0.994192800875634,6.97459752895949,1991.8250180250743,0.0,2.4400335102155157,31.51959003021032,0.4928935377746545,0.6809539942620116 -1986-06-19,12.480685284030224,20.259849508190765,13.569405196272474,0.7540892100300848,6.336235149965789,2792.106835119361,0.0,3.368599058603289,36.51928357392941,0.5708164527807473,0.9561880157730489 -1986-06-20,3.3769017186895205,19.662479197817152,13.026004930039091,1.0400930539768736,6.206104987725402,1450.4301901959057,0.0,0.9510303261313204,42.65005562489356,0.5361828820608943,0.7672418739753193 -1986-06-21,2.8660658501578453,20.64315534194741,11.408460461224479,1.0111964602034695,7.2516712667064676,1059.6651175598315,0.0,0.7489601418373226,40.2857845977168,0.502689833844249,0.6134786454304613 -1986-06-22,8.505619408485888,22.048363930797034,13.061658848016545,0.7944725777998146,7.4761791585416795,1881.3261572637962,0.0,2.1940522103843527,36.990252638856845,0.529996098028384,0.7334226260263468 -1986-06-23,4.378300481161179,22.730137451649732,13.617777383200414,0.8705776672128358,7.659246654129821,1338.3355838297027,0.0,1.1174426933703812,38.71999820509301,0.5020659920884113,0.6475708165139641 -1986-06-24,7.027610845189298,22.9047550511907,14.61420646683352,1.3949186145279808,7.423899890559545,1641.5567917109986,0.0,1.7529973518952575,36.61095212739899,0.5083597051391954,0.6884579092450774 -1986-06-25,10.679963697309047,22.97194602031453,14.153322538070155,1.7367885088596449,7.614797757042441,2428.061352945375,0.0,2.8665559527051823,37.24763057807547,0.5583240151416095,0.8846292322826186 -1986-06-26,2.4546750879673254,22.018490205566486,13.873436973830747,1.4354495511525476,7.1935444032210665,1170.187160606964,0.0,0.6427372672952472,40.56110782162418,0.5011047391727292,0.6737182966232985 -1986-06-27,3.2142084843865897,23.810296748230034,14.583363567479196,1.982639525742189,7.92378402273539,987.8978484832745,0.0,0.7634147966311824,36.92576152364084,0.46760346646599654,0.5548001269106654 -1986-06-28,1.8651832736995404,23.253962159983377,14.373594292712333,2.144509119227288,7.692616373900603,666.8740701462073,0.0,0.39450977043064217,33.986451243523916,0.4176472622020652,0.4212187475788253 -1986-06-29,0.7550451266469441,23.308467640649447,14.468274025993116,1.7466144095862055,7.690457034882867,391.6791821112122,0.0,0.13922992055144656,30.615515337331715,0.3654457842146861,0.29539341961379945 -1986-06-30,0.022396579777290124,24.42434971687491,14.396550274844046,1.6709359172227816,8.306986917111827,204.66090816901118,0.0,0.003519713110101772,26.8749067442297,0.3133353679730643,0.1928231609949276 -1986-07-01,0.07231819173261833,25.437263934724328,15.124910015234466,1.4646460935551897,8.620870970216306,132.67783574819256,0.0,0.009498014415653344,22.808429879597092,0.2665452194246599,0.1269650281262767 -1986-07-02,4.783927535303568,25.528004175956248,15.572091630741358,1.4047458670701436,8.530228061488526,471.8020085636876,0.0,0.5947764273733069,19.322184018455662,0.28081987413791204,0.17321176354062423 -1986-07-03,9.035900217792289,22.924744387094673,15.291725051081212,1.3287962167850291,7.18821594255189,1000.4538992836538,0.0,1.3060142228279616,20.38072955079204,0.34268381488042937,0.3116126760375882 -1986-07-04,7.238549797080122,20.053357861212312,13.462903245485668,0.7388414543428546,6.253990649461308,1094.5243651178478,0.0,1.2449466825209647,25.502117009465202,0.3814065952238397,0.39240673007931404 -1986-07-05,0.3301924892449996,19.74845765194161,12.50418127386811,0.5873890408722152,6.437057169430371,370.63541448371393,0.0,0.0565985586150603,28.8902856985884,0.3403987818050789,0.2640563048342153 -1986-07-06,2.1587121863657432,21.413793529465835,13.7219481196401,0.9111156939389552,6.914890220355562,402.1105069776806,0.0,0.338277258342234,25.735642843584678,0.32495034511060944,0.2233959536890169 -1986-07-07,4.386093104800506,22.488168337381534,13.81451083021767,1.0535989479431098,7.464306598095767,609.5676439469295,0.0,0.6795118000780755,24.342379648079227,0.33466725169037187,0.24888597610232893 -1986-07-08,8.052907262330226,22.99177957725145,14.42877844139781,1.3447405896059297,7.532128757488707,1096.6128058678628,0.0,1.3679774345320261,24.771386072036464,0.38238078763828254,0.3703078460799649 -1986-07-09,9.615190058569363,21.149321811515428,15.065346339698289,0.7593267904637898,6.244346014072248,1569.4796332470894,0.0,1.9072895799387393,28.18823636737907,0.4403843161200816,0.5314660179015438 -1986-07-10,11.267234025648046,22.106163355491013,15.122092889049675,0.7106710851560523,6.785141964308762,2233.7620808733673,0.0,2.7108254351637253,33.261707514183044,0.5187320124534882,0.7587226177638376 -1986-07-11,5.641258473655075,24.38944450524891,15.394959732725624,0.5986795347269892,7.970823094214916,1612.9182095387189,0.0,1.4586311836920167,38.52374614873124,0.5144923938354851,0.7159909099996696 -1986-07-12,7.796288908293072,23.37452583510495,15.183454713495117,0.7742787699853969,7.483326643695214,1871.9656869119588,0.0,2.003176966035597,37.217057246884934,0.5243749981673054,0.7710897164686502 -1986-07-13,12.749585319481561,22.410080987935324,15.297854019599287,0.8187508371082295,6.893778514085171,3000.0845440183043,0.0,3.6350599656393854,38.32085705508228,0.5949360670554105,1.0554347440232246 -1986-07-14,13.838089884473655,21.744839310524345,15.43078032033138,0.7691802635672551,6.44888999450774,3937.1942701322055,0.0,4.63815487143056,43.796404902394826,0.6714028322633642,1.393266010682119 -1986-07-15,5.134778650047673,21.48592818383596,14.15032664984651,0.7002389394885314,6.804700323582142,2355.1747923029243,0.0,1.779306638642348,49.55438825493757,0.6370917571137783,1.1778764105437591 -1986-07-16,4.780145899425865,20.937541685282017,13.593316466338608,0.8630632423282274,6.703808947028721,1894.847508996117,0.0,1.5354882203560836,46.80142871049725,0.6008904114415352,1.000542948097642 -1986-07-17,4.279084421431063,20.60705492031082,13.307737331688184,0.8592392869792161,6.625388619705749,1586.3651995319956,0.0,1.280725961967197,44.404846615012964,0.5671348261914523,0.8463158813238082 -1986-07-18,6.8967050605989195,20.12791293049061,12.678285733548613,0.8659050030997388,6.587389148931131,1945.8770634185037,0.0,2.0102725807618294,42.110305657311685,0.5708984856801935,0.8570055596912493 -1986-07-19,5.076348376183973,20.185773117458226,11.691821417086024,0.8112638836867038,6.939476950952586,1630.8786358856717,0.0,1.4545725532884015,42.413131392482754,0.5532202778441149,0.7793504994598177 -1986-07-20,8.42804829975749,20.099212414989733,12.585080693942158,0.5553637484502518,6.605994068078525,2183.9305676579083,0.0,2.4230270887639573,40.832321279555345,0.5738499448324518,0.8762622148579864 -1986-07-21,8.995180294658525,20.028867368325432,12.890015538884855,0.6685633865617823,6.462077432708119,2505.2160844313876,0.0,2.7357890265558567,42.603779532701786,0.6010929374508289,0.9869698121330693 -1986-07-22,10.728321045638767,20.73152866491148,13.154671254542732,0.9167517306755232,6.752499702947783,3117.173336833953,0.0,3.528076796368561,44.66766442208558,0.6453257146885653,1.1796727719727496 -1986-07-23,5.414295186155453,21.28151138755669,13.066444169542143,1.0215872982743115,7.079128456517598,2149.9705130727675,0.0,1.7825582794532941,47.42320192383459,0.6155210580146763,1.0393323613755177 -1986-07-24,16.460627111500365,20.707199720096863,12.537593862213257,0.8596590185178599,6.949484495041526,4648.157818755684,0.0,5.896014286711896,45.02662672733637,0.716284866001763,1.5743117944851783 -1986-07-25,17.817679627870728,19.61169127175252,11.896853708021442,0.8448169738882402,6.584273121500387,6411.197466246093,0.0,7.70816627933505,51.93035331283446,0.8125173480631858,2.1984851728601646 -1986-07-26,12.314485830838011,20.60916387856032,11.91525079015753,0.7697077817130618,7.096867115630772,5707.963614498332,0.0,5.821349222593563,58.488692834594666,0.8248090811763567,2.3174969355547215 -1986-07-27,10.16581989990407,22.037472821638207,12.970235030678356,0.7619423325127197,7.5134498499880475,4932.045345806294,0.0,4.668316079983269,58.41982189253454,0.7989762783959653,2.2194016700140744 -1986-07-28,7.298334047213037,23.163332710240546,13.258676149673267,0.8384612634945582,8.0118376518364,3750.0129896515596,0.0,3.0710120890716412,56.291783280016205,0.7407818015121899,1.9123331333399287 -1986-07-29,16.475164892194528,21.612218317745413,13.512946086783959,0.692631147345549,7.116155850052745,6040.192060728246,0.0,7.033302759518072,52.10064045533688,0.7988616904743652,2.315763236928992 -1986-07-30,5.5249589656268165,21.357526219677574,11.853521935017335,0.4745874465587334,7.501793395142949,3437.225685462114,0.0,2.306378500947944,56.87052563151294,0.7268651392518078,1.858633224829345 -1986-07-31,7.337684972891156,22.385998057134966,12.47270897716834,0.5362719193825681,7.847044387146947,3188.1305536074483,0.0,2.7738509262111206,51.89840031048994,0.6900602768971924,1.632242654690681 -1986-08-01,7.550553356517589,21.722263706906467,12.280801783570347,0.6775698257480733,7.566991929566828,2979.7480205034503,0.0,2.669634867985443,49.118477819833245,0.660155835045017,1.4690045994583207 -1986-08-02,5.4838548891259125,19.887893477910612,10.784039693854806,0.2075469309422772,7.076753030240724,2307.076780659968,0.0,1.810607299958936,47.49755789068228,0.6171975781035625,1.231944660207567 -1986-08-03,8.636928416684727,20.186869068655785,11.069065974792085,0.15382694227252108,7.146560023143729,2746.58578163545,0.0,2.7965251976262966,45.144075408205104,0.6265122722690182,1.2277503462701047 -1986-08-04,2.4286617956388485,20.518295475702157,11.025813717134282,0.17157702460171567,7.32543946534486,1449.9361082266005,0.0,0.7341854807357211,45.70605923000927,0.5607369015090313,0.9109983565801886 -1986-08-05,1.0421089519500244,23.235311816156052,11.6184461294612,0.3886936567730853,8.505739989710584,825.5310774318132,0.0,0.2707140142382274,40.998423896480965,0.4897437364321036,0.6342373210854104 -1986-08-06,5.89362571629745,24.640091961484195,12.487549948021677,0.3451252469629253,8.98313104235878,1332.9999077500659,0.0,1.3782026968977306,35.073237630914164,0.47723621386772214,0.6227104074017734 -1986-08-07,9.258991792603398,22.838089401840065,12.583206037254186,0.20181180242631028,8.06089794455436,1922.3951312129102,0.0,2.1976668678122895,33.84566922355022,0.5021401089229574,0.7399824541689092 -1986-08-08,1.9000730462198907,23.268392369551393,12.739891414644035,0.06652494762169317,8.237859479030247,898.4854607030812,0.0,0.4333173273472999,36.28684817819676,0.44485177080675814,0.5476727628917869 -1986-08-09,1.8385541200357975,23.93123096660339,13.084903664547126,0.0867998439905386,8.481725795986865,630.5134681366369,0.0,0.3652982747398026,32.162012386152625,0.39608357347855094,0.41213128683383843 -1986-08-10,0.8625920239812753,24.86220299476555,13.108593034348438,0.17919438913609576,8.948417492784394,388.4845190423484,0.0,0.14760526928193973,28.579768295164524,0.3429835583688828,0.2907531803511211 -1986-08-11,4.1055224699837884,24.41363405647862,12.971537590230506,0.5937768798590884,8.761761692808838,616.8405953854154,0.0,0.6386726181446774,24.582229013656377,0.33419287648153373,0.2865139961108705 -1986-08-12,6.532405352022817,24.65025723501889,13.080224393189894,1.0985081087512178,8.855398459693511,907.712634385661,0.0,1.0461294954568316,24.062055707991938,0.3564047517589284,0.34579581526593384 -1986-08-13,15.704687030587687,23.098453478836642,13.978231805474325,1.531119106599948,7.794885425115858,2359.0963260629037,0.0,3.169392660488798,25.574111159654127,0.48087004353633617,0.7076836767298137 -1986-08-14,9.052517040477099,22.37926988918245,14.469739573886066,0.8186792800823051,7.239002384383461,2099.5151509057055,0.0,2.219894626484045,35.01629300337866,0.5133717921417834,0.7986805633820353 -1986-08-15,10.51456521276206,20.686001320542285,14.53433384776164,0.2555150712450057,6.24291777110565,2529.286837917183,0.0,2.8566727841684685,37.75630513833773,0.5623229489456756,0.954874141249148 -1986-08-16,5.040149056611977,22.465296508041973,14.12736805758743,0.5824969061934517,7.411752552486911,1733.7581539707737,0.0,1.432257173597737,42.13260685889407,0.5495306594507583,0.8396605000119088 -1986-08-17,4.118360417729198,22.11594601677295,13.156518046774313,0.7545907265782463,7.545450804414485,1356.1257644082184,0.0,1.091453318737683,40.13939797612846,0.5155729124571761,0.7127694130745659 -1986-08-18,6.495898673131684,21.07798578551004,12.377592484521475,0.6476410809387101,7.247824304476513,1617.6563205973694,0.0,1.658008253423553,37.6517135278152,0.5142897839044439,0.7164356377737701 -1986-08-19,1.1374131654596138,21.676829409823394,12.176065301227482,0.5693622393904266,7.620511466001886,743.5106507288474,0.0,0.268859310375299,37.81366895196303,0.45375372769501426,0.5073037295278972 -1986-08-20,2.91487255452928,23.11453172916989,12.54235891763872,0.7522722253488331,8.250905800243498,753.328035773727,0.0,0.6119229764968157,33.234696061225264,0.4211179926790361,0.4234051976408798 -1986-08-21,5.171645211499507,22.528365980249195,13.65808078871407,1.2826567366754127,7.617019159728133,984.1264463681861,0.0,1.0276530886974315,30.488493133937823,0.4154164614883563,0.43209224769793286 -1986-08-22,8.890612748461795,20.50615289265814,13.747464799418713,0.9365294616211838,6.472589328454782,1574.866274373126,0.0,1.8846375808022344,30.50637121008418,0.45894818216449046,0.5682356579857527 -1986-08-23,6.968287852505722,20.210217412879764,13.88403520553144,0.7957738001067275,6.2504724490865735,1546.0476168400978,0.0,1.625804890423919,34.45646302841328,0.4825702935386916,0.6174475185465846 -1986-08-24,11.77876049398182,20.343023445189303,13.812514959752415,0.5638905752245839,6.358976155803446,2550.481093826651,0.0,3.131270665624987,36.35233758534429,0.5606946966379601,0.878711531048461 -1986-08-25,6.8734671351583465,20.29985307774401,13.441597510682325,0.3490609608990872,6.48078424830369,2062.477369983854,0.0,1.9916121863284424,41.90599906873967,0.5682477461926869,0.8752522843475165 -1986-08-26,2.3156198228642024,22.102625410728436,13.633058447159526,0.4021670615655656,7.412433863624857,1115.6472405594964,0.0,0.6366127838956102,42.327896073840925,0.5200667261174919,0.6666818011606755 -1986-08-27,1.2818643090020103,22.89839866695861,13.708709796453256,0.9921800416998826,7.8190156209098856,680.7670927900207,0.0,0.3061901811643466,38.0800458219488,0.4585395958261736,0.4806004968825872 -1986-08-28,3.8271652447046174,23.82888747292861,13.753214277698733,1.1231622913599657,8.301654213302475,870.4246761712708,0.0,0.8210299538928583,33.42723841029273,0.4339885726550478,0.43786227464691163 -1986-08-29,11.971157796715133,23.23573903045186,14.27906031032676,1.1289902852265012,7.823573090694005,2127.341170241401,0.0,2.7448829439821587,31.356901652037127,0.5047425493698562,0.7029767391237184 -1986-08-30,6.936154100985722,22.183842139770192,12.769409958414366,1.0283644632623818,7.743666762524962,1751.0138907243213,0.0,1.730463860473745,36.662710841310805,0.5078972499711275,0.7210935038337521 -1986-08-31,5.959451281977014,22.143617656383174,13.440298741550007,0.830423647317296,7.51563351246284,1547.48364627812,0.0,1.4775129600961598,36.948867489956434,0.499852854747314,0.6943711547939648 -1986-09-01,9.377840087235759,22.84873923024022,13.830626823424925,0.9925481849648122,7.7718533514407415,2127.7553518010527,0.0,2.420970044343944,36.573248391925574,0.5352990611713084,0.8206314401084421 -1986-09-02,9.237940871982225,19.879932262546006,13.601416672925627,0.7931254242499834,6.200908354698188,2341.0542242746683,0.0,2.5400375088587595,38.82842947752477,0.5599406624213467,0.9209507320481681 -1986-09-03,7.624944176059503,18.991969918819624,12.263339674393034,0.386344259025974,6.2155729673040945,2220.4482656895175,0.0,2.2385461386000456,42.001606978360954,0.57811571219207,0.9403473610975899 -1986-09-04,10.248081539044684,20.037875477682928,11.849122872923452,0.4607843753895611,6.925149026721279,2863.557810586271,0.0,3.229233677438401,43.288385183348254,0.6236635806336176,1.1038204679941186 -1986-09-05,1.816623305706076,21.793015408281985,12.075791331360671,0.4443567036483967,7.769293211454975,1272.8116482500757,0.0,0.545253853866664,45.749138662335184,0.5541089138059766,0.8015581992849599 -1986-09-06,8.436520018366197,21.400968170384164,12.43688622689482,0.3673822497733597,7.462637709374394,2122.404653881407,0.0,2.378646789602948,40.12787490492493,0.5657423114270669,0.8839608275132712 -1986-09-07,3.3920682344934616,20.40874619801168,13.019149494755546,0.7854695605211411,6.739114805730525,1316.1671425835823,0.0,0.9175302801791969,41.215953107835865,0.5196532385971109,0.7151244922100275 -1986-09-08,8.224370998668535,19.388660028284352,12.742549936520298,0.6088209938995559,6.274327577001155,1976.983715464523,0.0,2.2156705494768065,38.629153866111864,0.5458118339037277,0.8028810064154878 -1986-09-09,8.757873542426193,18.27491501786043,11.478696272271195,0.5586595038734768,6.125288807710285,2312.323989623981,0.0,2.53557707504115,40.917976121051275,0.5786900064359883,0.908716867042566 -1986-09-10,3.591450693404868,18.90073385042746,11.07327297749833,0.498884266194816,6.599273244697094,1425.8466720822269,0.0,1.036397121674208,43.41837188016671,0.5476325963611194,0.7493387430246207 -1986-09-11,3.7565234461297514,19.73757247860829,12.17156724685956,0.7030562210894892,6.68316696400657,1218.3338775770899,0.0,1.0079296698943985,40.75021972814263,0.5184734165282034,0.6412564849830349 -1986-09-12,2.2836228216499235,19.42929032022336,12.322023895926366,1.1121072657609417,6.465737360003199,848.8276756605641,0.0,0.5626197639936761,38.59284574824325,0.4761831759303227,0.5030950032120745 -1986-09-13,3.887210005805596,19.61389475879572,11.926334232048669,0.8898151632231254,6.707084352820155,951.9860660149625,0.0,0.8985925612139423,35.71759199787171,0.4613691216489536,0.4643151938079064 -1986-09-14,3.95755590749247,19.564149929140548,12.413537255388439,0.9270666753147688,6.514322737826845,931.9797486744496,0.0,0.8798823596037555,34.45719141280392,0.4475057905323204,0.4362224559394307 -1986-09-15,6.946572257432822,20.706781241155365,12.52601171136491,0.7811084389565855,7.10110642189856,1369.0678020560333,0.0,1.5765283370266259,33.59013571268262,0.4722251950401312,0.5240100454270264 -1986-09-16,4.931233028603329,20.94746811831132,12.3577788277073,0.7893584006906803,7.288116773444225,1175.5601038886925,0.0,1.130967949792434,34.94053878650686,0.4644791391512792,0.5133124890313956 -1986-09-17,7.697035446781582,20.234599701746408,11.446287092341509,0.5222835139542101,7.202130062770967,1585.9774628582643,0.0,1.8046804066486093,34.2445347455357,0.4885908885091929,0.608931556785463 -1986-09-18,13.633533713253126,18.745130170080973,9.808120476580637,0.22477658249417293,6.9290687760410785,2917.496143484454,0.0,3.690616513219009,36.029675719672724,0.5785427563104482,0.9583367085982941 -1986-09-19,4.392993419595733,17.04702615757024,8.886375112619538,0.1144131184654817,6.354455103115569,1665.425584234208,0.0,1.2538909073607556,42.618629985281885,0.5476535748262518,0.8147555696099954 -1986-09-20,0.004642572148520347,19.5030812597615,8.519774678948277,0.18478605962561545,7.62659785995143,620.9285384996712,0.0,0.0011869983429743944,40.97666685686413,0.4774045009373354,0.5305483203373542 -1986-09-21,1.054801944667495,19.78765375473369,8.386934334608286,0.4309479455940064,7.793135761274376,500.366889294316,0.0,0.2269094736115982,34.9033182370294,0.4188877480775344,0.3799123402164684 -1986-09-22,3.0952587496580173,19.151508794419254,8.83656005803889,0.418597293614389,7.3953042011037295,650.200949217491,0.0,0.5959490479184368,30.63687999359828,0.39295657182863264,0.33804712398856734 -1986-09-23,0.507032240460963,18.193837692629376,8.015790694196994,0.5593999388026981,7.144711206337835,312.94623196033814,0.0,0.0876969620102318,29.035063466647113,0.3441454080945095,0.233405947498345 -1986-09-24,0.6803537845028881,19.039707078632794,7.890344108674171,0.3079261995999501,7.569384051862831,226.97343458750262,0.0,0.10289483245206588,25.632420987663846,0.30652600620637166,0.16760356002852697 -1986-09-25,0.6098955836401777,18.696005188564566,7.339964808773358,0.5567270971600673,7.53434883623457,168.29289638138488,0.0,0.08060427751517796,22.670809695936228,0.2712044500363623,0.1213752322146125 -1986-09-26,0.5122046834208115,19.614126852130454,7.615390925298947,0.252693600312263,7.899172674022066,122.9708996750099,0.0,0.05938023114178692,20.107048244024543,0.24020033255840512,0.08805108894000811 -1986-09-27,0.09802759346095666,19.690968321318408,8.249045544116576,0.3059613978553047,7.8054831999622705,67.55969740495269,0.0,0.009806464450603264,17.699583795988737,0.20733011955058886,0.058810299580405546 -1986-09-28,2.3445822564778034,19.52776078594641,9.424563305431267,0.6511451682485163,7.455860957051646,180.94517464128074,0.0,0.21707170012720667,15.329061007085967,0.20588597483937063,0.0713351140461133 -1986-09-29,1.0544166728656066,19.352220163736952,10.403742715870454,0.6769523877237026,7.108376040491218,120.22784487185669,0.0,0.09359241512392202,15.332142436544036,0.19089231609982588,0.06068663431924278 -1986-09-30,7.716328769388161,16.464919671202704,8.666230284300596,0.5100785382807588,6.170033798087659,563.9514075426317,0.0,0.7930205370340211,14.324196833118227,0.25675719668956987,0.16025323857516346 -1986-10-01,3.1610098281008927,14.792577761737721,9.001198590372464,0.6364549503438987,5.202980905728859,400.4494529019975,0.0,0.382172820837118,19.585672234034003,0.2649834412115167,0.16250878414913897 -1986-10-02,0.8511171199831217,15.005316841537061,9.4639343173324,0.5317187753256714,5.150353156430052,198.26533994919836,0.0,0.10215560146088898,20.602036635484275,0.24991471245938637,0.12134028001594563 -1986-10-03,0.3187582930450629,16.664657288907314,8.892652002650117,0.6631148081210794,6.213643951536648,110.04406073908048,0.0,0.035501449906698734,19.45991600121153,0.23040816074966414,0.08439243950168894 -1986-10-04,0.6621690060507849,16.337849011113363,6.817832417052177,0.5840678513927027,6.61083185507664,101.26390523946147,0.0,0.06687864021521117,17.5771478190977,0.21247568873881503,0.06511877262915379 -1986-10-05,5.624180697795834,17.241573308090654,6.6484016565239274,0.332554139840105,7.0648063441711795,439.87353289280196,0.0,0.6022317373748791,16.091058308433965,0.2529678281378884,0.1340879390696231 -1986-10-06,10.125409196491766,17.088665208699286,8.621107768407201,0.4579967600570902,6.513409711504212,1041.6497803146785,0.0,1.406994655420121,18.952286387658063,0.33873546116931047,0.3015206677536173 -1986-10-07,12.276412054950852,15.978726428459456,8.687564257059602,0.3909090145969409,5.944681402505589,1801.8765446987536,0.0,2.3287747965039234,25.57127721171566,0.4408999482381741,0.5508661485515444 -1986-10-08,13.98185713721704,15.582851035894285,9.493493314824887,0.4732612451499901,5.472892699066612,2809.5363303755616,0.0,3.5352405150732675,33.51377731105568,0.5532919756933703,0.8968805658544118 -1986-10-09,33.15222605979151,15.07158781044218,9.009733933715257,0.4069050634064468,5.374138056136839,9865.364001541051,0.0,13.87770072697365,42.20531803838489,0.8778643540995295,2.6969120433024414 -1986-10-10,18.308741542059934,13.936797705183865,7.410821127085168,0.40796505274613576,5.323798470412121,9709.030285998462,0.0,10.917736726608716,64.30414523727875,0.9623841827748301,3.4179496876003235 -1986-10-11,0.20266132665588535,13.681646957953124,4.748096175143324,0.5836184609735238,5.913213322887559,2989.872616548461,0.0,0.10492898570720391,68.45587893929141,0.799825496243062,2.240901591162384 -1986-10-12,0.8253849031763447,14.777840925062204,5.3234777311011365,0.4930028636636158,6.275019994460037,1740.0565746414313,0.0,0.34032802232649106,58.737803273827076,0.6938708040828945,1.5105415824723472 -1986-10-13,1.7972109290438691,16.44945877880511,5.9272637900880065,0.4290909187520907,6.894372775225216,1414.2619127149749,0.0,0.6236231287374903,51.292501438443296,0.6184591949559267,1.078247408751397 -1986-10-14,0.5541412899737569,16.906805775846742,6.594182022782388,0.8072173314389465,6.961793425597283,845.6576388967717,0.0,0.16203694552602632,45.42401832605413,0.5356144215823262,0.7265609041662948 -1986-10-15,0.10008124991371746,16.449021519521953,5.872873014374787,1.2523308429961733,6.913557550335289,501.3069517403029,0.0,0.02456948436504179,39.5693014736166,0.462121443299022,0.4766980672046641 -1986-10-16,0.0697553176269227,16.553948400096427,4.179521444776231,1.25945389476865,7.277406652635439,322.1130753309477,0.0,0.014494880766379767,34.356772126763936,0.4010457299336438,0.3125150966678785 -1986-10-17,0.0,16.441720012405657,3.2246220210962315,1.2722822378570748,7.382919311349758,204.44070016066868,0.0,0.0,29.693766708060057,0.34591227253893564,0.20343263972124556 -1986-10-18,0.0,17.240635801437627,3.960964549366833,0.7631119965689033,7.610347210972471,132.50032491239742,0.0,3.552713678800501e-15,25.632638603392323,0.29860288045106553,0.1324250871244645 -1986-10-19,0.0011141280256359134,16.861072417347643,4.323259908033194,0.7661257557729846,7.396727129160147,86.29935126393103,0.0,0.00014096405269213314,22.074537541257822,0.25716639157897786,0.08622397159838908 -1986-10-20,0.0,17.035677300835335,4.219842243166596,0.9049598969872118,7.491955846434087,56.13620148909484,0.0,0.0,19.132652637515335,0.222882445956058,0.05612775298388618 -1986-10-21,0.007956069662069968,17.207129921116632,4.146265741417991,0.6467515497111517,7.580581846167121,37.02068472872768,0.0,0.0007401567246212472,16.574056937301524,0.19316922163842595,0.036649228983637906 -1986-10-22,1.366305736878908,16.08391291838749,2.6551937820492144,0.7381877590964365,7.337927573218203,98.80193637074227,0.0,0.11466000910716301,14.35608063266524,0.18315515348034175,0.041315605791680754 -1986-10-23,2.7553859491022403,15.442193022266347,3.1815192522324165,0.5864736812874866,7.000603297588515,184.86049313984978,0.0,0.23162901581749784,13.684220167135694,0.1915102778041718,0.06216345700656717 -1986-10-24,2.237407915423077,13.984844199162435,5.430780682963502,0.7372416781331437,5.936157789353898,181.22453834259804,0.0,0.1941225505539741,14.401403700545297,0.19383088696741768,0.07002351488619452 -1986-10-25,0.4481576779974567,15.123741082761905,5.4848026432966535,1.0207188435163013,6.441585658895201,82.60180120227093,0.0,0.03779681042152133,14.886743931731958,0.17864121844611333,0.05133713983748857 -1986-10-26,1.8302813313163364,15.5114747202636,2.8751653290688104,1.2936104817890026,7.087833340072819,133.1399090111736,0.0,0.14786311187865397,13.590472417579315,0.1796413377254657,0.05593240832581555 -1986-10-27,0.10402693612194178,14.5403202066035,0.6506765369991936,1.6077325048010995,6.995021160652101,50.32182525041393,0.0,0.00781845193483996,13.491142070217439,0.15837451182160905,0.03759984380449892 -1986-10-28,0.2333787439088095,15.195115673143905,0.3102370682259222,0.7578841889953079,7.290105774733792,35.73880554263059,0.0,0.015512178565781215,11.925149944698962,0.14163862506081265,0.026837689469176813 -1986-10-29,0.1897883223700876,14.328122214267282,1.428701273533488,0.5562489302864927,6.823613155574597,25.738449554864303,0.0,0.011159975900617819,10.608674665421464,0.12579478072819394,0.019169345668101703 -1986-10-30,0.0,13.802095135448509,1.004182264429813,0.852044305515068,6.674517962134636,13.199813023148863,0.0,3.552713678800501e-15,9.514588666543322,0.1108385143681969,0.01247834307068835 -1986-10-31,0.04961568811330352,14.647321065905338,0.7340080687602637,0.8347534997077495,7.042467619873339,9.667968551689787,0.0,0.0022816038692720017,8.411896958489589,0.09857089191412229,0.008470222751690912 -1986-11-01,0.0009709707007842887,14.653505726142376,1.1607734887618941,1.2153200369057535,6.997822598463782,5.675135168315468,0.0,3.918988837532211e-5,7.429913129276784,0.08656476732199041,0.005519684150331372 -1986-11-02,0.3455283745932985,15.25366664102772,1.6095313905694193,1.2373276708392542,7.184322130806095,11.807617227773791,0.0,0.012555426808991632,6.533110272538108,0.08013148179538672,0.005504804167314352 -1986-11-03,0.2910647926042209,15.32447653887247,1.4405162245112362,0.8543718186151877,7.237398608594037,10.660268449717188,0.0,0.009717283752241457,6.026719259223262,0.07359790558954873,0.005062968789991129 -1986-11-04,0.25106838285619143,14.683576576011696,2.050535657071895,0.9475889871320408,6.903163663503899,8.924723773477735,0.0,0.007667956964440836,5.530696978867059,0.06735365085958316,0.004463314447858536 -1986-11-05,0.4386168142200286,14.814376730374454,3.012058559315324,1.3767124805168454,6.815090023571689,11.610822031821554,0.0,0.01257331508960452,5.0955966766451395,0.06446983921447648,0.004819880895364034 -1986-11-06,0.0307247468008994,13.76418808965213,1.6487785107755777,1.6138012584372432,6.596316265311543,4.4339664857893855,0.0,0.0008111297555045416,4.886197824747334,0.05727881805444932,0.0032610224164212344 -1986-11-07,0.01467891478956145,14.899428474153428,1.1815729422493713,1.1674315770646702,7.114487479283547,2.453668864139678,0.0,0.00034471674104801474,4.3605135180789425,0.05096802881656282,0.0021752605412961312 -1986-11-08,3.888042739917002,14.538119417640926,1.069040199718945,0.7437461551178703,6.988509369270624,80.88844186294521,0.0,0.12161447318187246,3.841982324617631,0.09004955697083399,0.01993359250458399 -1986-11-09,6.073781239703704,11.098827349380631,2.7355999924620424,0.6579491103419317,5.318806658447415,233.97381695821497,0.0,0.32750295459109857,6.7966162817848215,0.1499314148625383,0.06284299481705383 -1986-11-10,9.942365476396313,11.871382563450224,4.13313273100846,1.2495860626175543,5.343392723681846,668.346801146159,0.0,0.9305721999179877,11.669377311170743,0.2517621672815613,0.18260120060895993 -1986-11-11,1.492990295899455,11.038787804602721,0.6837766636924628,1.0866081665088376,5.670994434516901,286.87823516998765,0.0,0.17227572434038585,19.527895305713074,0.2448790812133996,0.14509632336737135 -1986-11-12,0.2549535849016004,11.235845120598604,0.2579109446652579,0.6889690981549307,5.813588091536874,126.62834142049445,0.0,0.02743748092640258,18.875056264482645,0.22285165926411513,0.09862864878469788 -1986-11-13,0.022143944664578655,12.958023279056313,-1.1693329361837117,0.7967614933034208,6.639386680999639,68.23397655173397,0.0,0.002135989517350126,17.141106170217114,0.19994024031250116,0.06452785077092929 -1986-11-14,0.07110048166532079,12.23506858315449,-1.3890616500395778,0.5974737550275702,6.393298044779881,46.2516145404531,0.0,0.0060235443900292784,15.139920189595152,0.17719808940925671,0.0429217716609475 -1986-11-15,0.1096701576917994,13.84133647084704,-0.560324528939696,0.6843031363839147,6.920940761355818,33.69756408969711,0.0,0.008246356508265176,13.494227915497031,0.1584761995387897,0.02919568562825002 -1986-11-16,0.17878746719164204,14.08809243067962,-0.2430354743854908,1.0153387773620963,6.986750630222159,27.273151456625218,0.0,0.011881473780921387,11.950371978434202,0.14129649326990484,0.020814149052666202 -1986-11-17,0.6553400867956671,13.361398624888134,0.713136786512927,1.1622542185737692,6.597082575526486,40.11330995940388,0.0,0.039550409618123394,10.64721875745071,0.13166715606535245,0.019571166903326217 -1986-11-18,0.5211600387141394,12.726903337874322,-0.5558768491918913,1.0071363348223643,6.504279235721937,34.253154669281344,0.0,0.02933574973077835,10.001358004257556,0.12258020900017003,0.017206711077188897 -1986-11-19,0.00012374813022270894,12.939560884656913,-1.1012129275692015,0.7643207945555208,6.643538858522031,13.086948863626002,0.0,6.313099397645149e-6,9.330704181428965,0.1086978262312366,0.011201721458474853 -1986-11-20,0.007659683853285315,13.725307628489986,-0.2949065657526924,0.9359406317688383,6.864331723938241,7.660180555635149,0.0,0.00034459700030343727,8.254975482049383,0.09625410395043293,0.007344264172520791 -1986-11-21,0.029826897097270037,13.502095666897798,0.041114410453904335,1.09674888430856,6.744274021882645,5.581763592324367,0.0,0.0011815658522297198,7.281209056036669,0.08516861757642759,0.004960681651944739 -1986-11-22,0.011276129188902684,13.577862772349865,0.15268572209874862,1.2192206136473824,6.763691624040986,3.557631992871452,0.0,0.00039473467751609606,6.459934657848528,0.07538522314903831,0.003289274789370601 -1986-11-23,0.0005586551930094187,13.663082123462665,0.4429681659138549,1.3264989305420145,6.765592590127879,2.1807435856771376,0.0,1.7250807660087585e-5,5.717367635021416,0.06660996891045545,0.0021437899822743128 -1986-11-24,0.2528844146964371,13.208287086530206,-0.6365828246552163,0.9240515206738608,6.712482307599217,6.011285697000662,0.0,0.007061064310802223,5.052940558637405,0.06180926765756399,0.0024706578734125105 -1986-11-25,0.16155709281737834,12.411734258764625,-0.3217091058985972,1.0034045100623272,6.3754583972818955,4.731153299438212,0.0,0.004153246400568411,4.6942457553505745,0.056566814669385845,0.0022406752742779932 -1986-11-26,0.0,12.481308576138332,-0.33773631033547996,1.0291190543433841,6.406404733161338,1.7310810739696691,0.0,4.440892098500626e-15,4.3247634262869274,0.05038056504209398,0.0014585742918177588 -1986-11-27,0.0,12.578401457782045,-1.0418349882597764,1.124646449606867,6.521973025984233,0.9700885224173303,0.0,0.0,3.8501466991634583,0.04485160159739543,0.0009494633109816455 -1986-11-28,0.012921633711452236,12.99189213064026,-0.5729989921606907,0.9014415596327712,6.6328853771389715,0.7744178715533683,0.0,0.00023734804824700542,3.420516454826611,0.03999722849259002,0.0006541957373166624 -1986-11-29,0.04135569175997508,12.690208772660734,-0.7757188705181151,0.9611730377674894,6.541482267208409,0.8829678774547923,0.0,0.0006785660315904163,3.0442035440867206,0.03594467545390649,0.0005291723804301913 -1986-11-30,0.12640642026914065,11.872386990811078,-0.8492720038520291,1.2063801525348958,6.240956364807149,1.623445028393389,0.0,0.0018959804723790719,2.740874629395445,0.033401882410158505,0.0006331573844371702 -1986-12-01,0.03838755783850181,11.310425578295838,-2.3297399301315544,1.2341931308787777,6.181256761968737,0.8711878340927601,0.0,0.0005295957585494115,2.5618473776228687,0.030290976032233335,0.000492794476728195 -1986-12-02,6.131748044270577e-5,12.27008189197327,-2.5459634017823287,0.7252518389229344,6.551701969225385,0.36068641745871816,0.0,7.617524133845827e-7,2.326076649701646,0.027097931979395713,0.0003209020310678102 -1986-12-03,0.02637526298704888,11.960592340290821,-2.5541233257519482,0.6081032241505934,6.441282433904301,0.4030705902745013,0.0,0.0002926983603246773,2.06636679272073,0.024379027674221784,0.0002534597891663808 -1986-12-04,0.01729142422163463,11.63505396685323,-1.9325180093663483,0.7676706536903081,6.270429699069219,0.29490613111148356,0.0,0.00017259959520596682,1.863102318743681,0.02190531364013746,0.00019127124828835756 -1986-12-05,0.12379929595504448,11.321017997723644,-1.0807622203312248,1.0041454810794568,6.067913583103022,0.8866169077487878,0.0,0.0011492884904926864,1.6796291653114703,0.021008720231804223,0.00029950474378506796 -1986-12-06,0.0946678417416055,12.477401827677266,-1.4456720962336678,0.8468654506204817,6.542173144672533,0.8110477070017448,0.0,0.0008397485845094421,1.6171317627077137,0.019941306104004214,0.00032282763891897066 -1986-12-07,0.2383863457210728,13.539120400211722,-1.354021755789868,0.8750890118170053,6.9354899985887295,1.625344027542977,0.0,0.0020838684893744186,1.5211971867337728,0.02049795650439757,0.0005274453821377345 -1986-12-08,0.3529799994018479,12.845517943348856,-1.6132408863512893,0.7730651469166808,6.699104234370288,2.5926861028662693,0.0,0.003252011604176097,1.5518642172547172,0.022190145099963598,0.0008385089619240616 -1986-12-09,0.9169095546158832,11.222854349457279,-0.6383029562709998,0.6462242108642121,5.985170738528348,7.60577051977733,0.0,0.010503942854984682,1.687560719137439,0.03034031485502211,0.0021452103967148192 -1986-12-10,0.8277812458907243,10.589525847095949,0.4524511843570169,0.9252238403353948,5.589278051671435,9.981481779047888,0.0,0.012186167565650274,2.3385675365498786,0.03688581895834789,0.003251955179181032 -1986-12-11,1.8488759878383847,10.791069440221245,-0.9475700759271944,1.3496682112075382,5.861449784866098,27.431965195363478,0.0,0.03759691494109352,2.864023557595477,0.05490208797142027,0.007841555691615928 -1986-12-12,0.4632793894646399,9.088052295688074,-2.2168329149199315,1.3791187929676392,5.377122466527012,14.619907444108788,0.0,0.011139922608856712,4.239159702888397,0.05478023077719665,0.006800701987283012 -1986-12-13,0.001517508379085409,10.02633790484949,-4.170182710286544,1.2119771434020603,5.882955323266303,5.267780579420544,0.0,3.482337205987858e-5,4.268772997816074,0.04974599241390463,0.004432239733563015 -1986-12-14,0.04864672247366268,11.509364791342852,-2.6723738542033084,1.3992963391619293,6.3039694775226,3.607252715465228,0.0,0.0010090255733168768,3.83995642930115,0.04529959322632436,0.0030388188009626196 -1986-12-15,0.03567226296076876,11.546366248839805,-1.4270973478991442,1.790149067188369,6.204642812554199,2.4762667688010422,0.0,0.0006668383811213666,3.469128720890883,0.04082855789365859,0.002079664209545453 -1986-12-16,0.0909918022582554,12.080390547811199,-1.3888156448818132,1.470478120926498,6.402402255203799,2.409034593591778,0.0,0.0015489360751234915,3.133036953713668,0.03755775158718439,0.001589612055772133 -1986-12-17,0.004634495041001534,11.258562978395943,-3.384425926168677,1.2751417633866116,6.270351848491711,1.1744361380824977,0.0,7.125571048248111e-5,2.871405018321403,0.03350391258071413,0.0010456124711090674 -1986-12-18,0.024754199376677426,12.472572090795119,-3.514997001731709,1.0084379877131435,6.7163064230169995,0.9149744155618038,0.0,0.00034145089138780046,2.5682243782500973,0.03020644437770803,0.0007326355173087961 -1986-12-19,0.039498079941015576,12.767141892241824,-2.320971350014712,1.3918883568452831,6.743664405465651,0.8165901956701375,0.0,0.0004884750253668219,2.2959449335387854,0.027206329467076115,0.0005512888266595509 -1986-12-20,0.14914176014684855,11.504887369982553,-2.9365880537665223,1.253496778213917,6.32942406238569,1.5024307456084616,0.0,0.0017047915832166805,2.0669905304776184,0.025816440347015465,0.0006184428186874027 -1986-12-21,1.4536061241086717,10.030736893381668,-2.7866537858279603,1.4237993600151386,5.784911078637783,14.2361165879388,0.0,0.0210215130440059,1.9771010856469675,0.03996541560421705,0.0036034131159210308 -1986-12-22,0.4296782726207937,9.511640719817148,-2.9835083197136165,1.2506566827422927,5.616978240636634,8.544991337863232,0.0,0.007611632339375118,3.0914598528281245,0.041018874529209146,0.003504636046916344 -1986-12-23,0.18247811680011175,10.083312974450255,-3.970441161850154,1.4253106219677605,5.898958688845025,4.9083563998684,0.0,0.0032007986559532686,3.1829696636074742,0.03920518744817608,0.002768722228807613 -1986-12-24,0.0005587351017539732,9.954275743981533,-5.202345554946454,0.8833522660656854,5.926787297098947,2.0340194096705697,0.0,9.051608901080536e-6,3.026154625421119,0.035259160858774945,0.00180368628218189 -1986-12-25,0.09701309456390887,9.75799269644917,-4.959249713578775,1.187777542598652,5.847565467512471,2.130031861963915,0.0,0.001436686735299883,2.720392095722799,0.03282086242600301,0.0013928717757947253 -1986-12-26,0.04922949124044965,8.801308966436704,-5.498898441789984,0.7526297198169691,5.551077976197095,1.43129818301905,0.0,0.0006738107552273567,2.53622240400297,0.030118763625262487,0.001009291702630532 -1986-12-27,0.0,8.206658132733919,-6.142953521639906,0.6278164774921297,5.3839846079097535,0.7025770785835898,0.0,0.0,2.3406341791513663,0.027266803031519182,0.0006570014617024527 -1986-12-28,0.1567492025700067,9.650274027754564,-3.813998027137008,0.9416920434669386,5.7379838944880515,1.6360410115584196,0.0,0.0018445072432463905,2.125797176672124,0.026590119501573597,0.0007085305488389077 -1986-12-29,0.8566322972957873,8.968794953281938,-3.1437993161124083,1.335181989913646,5.441142481721428,8.007565249816912,0.0,0.011387842201908138,2.0593066741771633,0.03396871424645716,0.0021951872920280063 -1986-12-30,1.189703715987574,9.193817117856117,-3.0155828083539307,1.1313146182023457,5.509644206405513,15.587309164292375,0.0,0.02064985426431032,2.645067234263967,0.044672484535541984,0.004573209121422327 -1986-12-31,3.072187981925869,7.0981478824828,-2.80196583119186,1.4559848460621565,4.737949257713744,58.421821648274964,0.0,0.08296273537465648,3.473224103709731,0.0762496180261108,0.015609246250735445 -1987-01-01,0.2480133525826141,7.923158004538723,-4.038974861532699,1.2630133873327265,5.154357009543395,20.44390343740536,0.0,0.008228779344239767,6.010840943400518,0.07291141384315972,0.01141383889200928 -1987-01-02,0.02384003324657179,8.897209730782349,-4.113121352673743,0.99115464705865,5.498002341515258,8.765336287722189,0.0,0.0007358370039727176,5.703262146880755,0.06671686181372181,0.007541914722505213 -1987-01-03,0.034087789591959926,9.017609516502656,-6.170691220477496,1.3722071872869581,5.655427109816737,5.637796888354674,0.0,0.0009561548553233198,5.1856364172739315,0.06080625203852538,0.00505502071617592 -1987-01-04,0.0,9.462557039129578,-7.051357792066549,0.6695353704023017,5.830154635339873,3.3531021208627387,0.0,0.0,4.712792065189377,0.05490083589936123,0.003290580900256864 -1987-01-05,0.005305442632989793,10.52060687412392,-5.131702590397934,0.8739662039439122,6.12052378172593,2.22577282218159,0.0,0.00012101661379401718,4.241589139626682,0.04947344574455682,0.0021604400759704877 -1987-01-06,0.0,10.910907636267863,-5.910029637266298,0.8294428700004026,6.284613340589412,1.413662694076088,0.0,1.3322676295501878e-15,3.8016833628120947,0.04428703654989108,0.0014063449487734198 -1987-01-07,0.035749090706589215,11.221207657738146,-6.057043650124606,0.5547440232541944,6.394798172480174,1.3429348614949328,0.0,0.0006535159372325627,3.392932224484158,0.03994181530453948,0.0010149719191493345 -1987-01-08,0.32432159832033136,9.621728288751964,-4.201561440175096,0.8459587947785674,5.755423720635242,4.34825333401404,0.0,0.005586828918590747,3.0539282698391967,0.039354323100485054,0.0015113762517035747 -1987-01-09,0.0007435870132409241,9.365379774707346,-5.2392474777259235,0.9655560931366955,5.728842337280196,1.3187168252654744,0.0,1.2126129415116643e-5,3.045934958172609,0.03549174173900916,0.0009856812875156545 -1987-01-10,2.540761641376141e-5,9.456085261070964,-6.4025338392759545,1.0985372833065743,5.808099159271462,0.6677766132045936,0.0,3.7348649848131953e-7,2.748611519646339,0.03201975873393708,0.0006416890599890167 -1987-01-11,0.0,10.624459177747234,-6.350362003845283,0.578727550950927,6.198226159289611,0.419404746019936,0.0,0.0,2.4762141071753225,0.028846217373745486,0.0004177094186670304 -1987-01-12,1.1798682726200944,11.039652310476512,-4.947502352585909,0.8542315926157862,6.288850726793886,11.835627114611821,0.0,0.017701582656608927,2.2144959231470547,0.0395420441039533,0.002967236660795554 -1987-01-13,0.0017644510158007114,10.400505996416207,-2.3363981495131045,1.1513695330148976,5.878152470639704,2.9769167765540647,0.0,2.862240357339222e-5,3.0295336782835514,0.03531257031006248,0.0019358897898322266 -1987-01-14,0.025601437651283882,11.498174385102649,-2.159159161227383,1.4823979331226782,6.263819036222554,1.5861215033027158,0.0,0.00037512020578957597,2.7270247353547923,0.03206623074519642,0.0013172908592716476 -1987-01-15,0.0,11.250834077172739,-3.4034450099022115,1.5299456218079104,6.272237120515024,0.8844757519866308,0.0,1.3322676295501878e-15,2.458416155237378,0.028638883287035566,0.0008574944367156597 -1987-01-16,0.02663589391407299,11.843446202370314,-3.5083484721811766,1.0698262493260002,6.490932561105339,0.7653541979650087,0.0,0.00031409432803979065,2.1954902075630662,0.025886264184240323,0.0006060140775632572 -1987-01-17,0.008503084419488355,13.393017942253412,-2.17580368467252,1.5903096670086958,6.964408790375186,0.47151862369436903,0.0,8.984297331507407e-5,1.9763330029732156,0.023121996220874703,0.0004081666017524296 -1987-01-18,0.0,13.219824725888515,-2.5408875995030624,1.4792024211738513,6.925522573491057,0.2723212258138706,0.0,8.881784197001252e-16,1.7494217171985462,0.020379578238582163,0.0002656972739106845 -1987-01-19,0.0,13.16090321980208,-2.8424459143179077,1.3433383185336067,6.923090142883979,0.1734494201515416,0.0,9.325873406851315e-15,1.5432036771338535,0.017977277729568586,0.00017295643754540178 -1987-01-20,0.0,13.056727808757394,-1.6831410548841408,1.877421372497864,6.79562473503986,0.11261763225410579,0.0,0.0,1.361447944435655,0.01585994653468359,0.00011258651188949193 -1987-01-21,0.0,13.867866991797635,-1.9595473669745664,1.917369925655696,7.120667854630579,0.07329030871274211,0.0,2.886579864025407e-15,1.20411850369605,0.014027165098815964,7.328852767443997e-5 -1987-01-22,0.00021396874735760357,14.393085249378526,-1.9946137212251431,1.5456488805891553,7.318891892668963,0.04849441953878337,0.0,1.2046429368773324e-6,1.058371915763016,0.012331808644850286,4.789081163836052e-5 -1987-01-23,0.00927101910869058,14.447823642743712,-1.749592481769077,1.4228704720219072,7.320176769878339,0.06124126941160543,0.0,4.591897781716994e-5,0.9269343608029399,0.010906158646437585,3.816651023342451e-5 -1987-01-24,0.02230842703081405,13.702844693933013,-2.148756376018458,1.81144687441724,7.068506065032451,0.09187540673595052,0.0,9.852552482937649e-5,0.8197869108852452,0.009809840391650922,3.9846570990109406e-5 -1987-01-25,2.114795754727928,11.700057910980435,-2.1708085014777185,1.4901681187374227,6.326763478254343,13.28712289676854,0.0,0.02029115244738655,0.7410011702231634,0.03326810013467889,0.0031155659623801134 -1987-01-26,1.7079082083804489,9.732724201475326,-2.881976642186188,0.8005857083820647,5.674025227871165,23.548859836502377,0.0,0.031141732741743366,2.547416283522383,0.049571648482883444,0.006769875870740513 -1987-01-27,1.206302842642731,8.808583724377666,-3.3285659742985967,0.9434154167766662,5.384532101281418,25.14255141460382,0.0,0.028838145391895553,3.8417264156032713,0.05880612216465388,0.008797904664044873 -1987-01-28,0.3317687773690487,9.666582324923576,-3.4694364453725504,1.1049611927715686,5.698032103880289,13.083641658654402,0.0,0.008478755904486046,4.581432568062582,0.057235468290329446,0.007018038276282016 -1987-01-29,0.019718196789996284,10.349381661919015,-3.7624456050085215,0.7370226029861064,5.9593550777995405,5.506324692248529,0.0,0.0004711084980864866,4.432830466244934,0.05186917650978055,0.004640146298490608 -1987-01-30,0.8721181260005938,10.52866171053648,-3.750184080310852,0.544109501241867,6.020058863798016,16.679542832175244,0.0,0.020795769892945404,3.997816411517765,0.05673143927986635,0.006186980331599726 -1987-01-31,0.2356414869129762,11.000761142670024,-3.8986641940432345,0.9910270384503193,6.194666540474207,8.951817814083253,0.0,0.005684136625073777,4.36697870701747,0.05361740821126334,0.004892927179633695 -1987-02-01,0.05809482257804835,12.226323745898936,-3.3893389339339937,0.9606426139655136,6.597507573752575,4.452832722691241,0.0,0.0012930598567718887,4.113838411648579,0.048600196806298866,0.0033819530916851955 -1987-02-02,1.0333782374435978,11.710736614878936,-0.5862045295858805,1.1137387525112104,6.154117503309542,17.608001643097417,0.0,0.02342133047807926,3.700630779365595,0.05514799901690425,0.00576773607504442 -1987-02-03,2.880282493740791,10.399734825154356,0.3180190561361965,1.061741815999525,5.522048852170261,62.79947560725416,0.0,0.08829460960575153,4.234393070662606,0.08288115202952634,0.01719868377322579 -1987-02-04,1.6845797747006583,8.259936059547147,0.1842765647451472,1.1400636043779424,4.698105433196334,59.91498412066491,0.0,0.06657918849929767,6.436588566773701,0.09460611125189866,0.02133319980895237 -1987-02-05,1.9293593554173631,9.123398098973603,-1.7800720338884344,1.0490998886563785,5.320819289905021,76.03595227085414,0.0,0.08861105463679597,7.460623468199403,0.10938694068533858,0.027379252517963207 -1987-02-06,2.0379909669897955,11.384444350018606,-4.589841418191913,1.0369242243680212,6.35584842304373,92.79582974592508,0.0,0.10640584966618682,8.52217767366164,0.12301881296489751,0.03402446908940266 -1987-02-07,0.13068421114157452,13.767635928234716,-4.1361588112107235,0.9898742159801392,7.176514928251283,33.152954990892994,0.0,0.0067597414204550454,9.39116757276174,0.1109231247666153,0.023177600718793864 -1987-02-08,0.027521606683924317,13.72977597265049,-1.5017461576066418,1.4052262335983037,6.996789076375934,16.800555822614303,0.0,0.0012521159148250818,8.335586937449111,0.09742455076289128,0.015278181866003649 -1987-02-09,0.1837672461352463,13.111039284893081,-0.33902316444193314,1.707406166986895,6.64724533326346,14.933631510084874,0.0,0.007429270225512652,7.350365136468781,0.08776753989140533,0.011076594463252454 -1987-02-10,0.5741508838869697,11.372492183161842,-1.2690918326480043,1.8678940243961848,6.086558236300252,21.80024368015356,0.0,0.021660201304900872,6.669138288427744,0.08437941346026491,0.010508428026347171 -1987-02-11,0.9678957326691332,10.962548845780043,-3.2767419016443693,1.5643244011450457,6.115695390092575,32.019504998245395,0.0,0.03656912129871903,6.482262441174427,0.08678929722948305,0.012408681695445555 -1987-02-12,0.025158664405042497,14.319260674441473,-3.3781711272256145,1.2972665174954083,7.327873711724958,10.892043059380924,0.0,0.0009099910189151461,6.663223625614505,0.07791512408298917,0.008216028151449626 -1987-02-13,0.0195806335100346,15.314943098453016,-1.7336337908915331,1.5527176679900263,7.597263707354053,5.975649905485114,0.0,0.0006193051347822727,5.843929685238988,0.06830592424851994,0.005442546528918278 -1987-02-14,0.022724279601417832,15.780449022905767,-0.6771876687675695,1.796393651074908,7.6922973398805174,4.002498991412082,0.0,0.0006257417125699744,5.097662955065595,0.05964904358672179,0.0036381204103411472 -1987-02-15,0.059295298906689824,16.411229970982035,-0.5112587172436122,1.604980215252901,7.919460894372545,3.340310301931369,0.0,0.0014268715434019238,4.444513123526298,0.052466317991947856,0.0025855076668579485 -1987-02-16,0.07198419707619615,15.519094629969599,0.6424743169594721,1.8868658273388204,7.459898660797784,2.7606715544247495,0.0,0.0015183102445840008,3.892729346446317,0.046186227745687286,0.0019142291367108607 -1987-02-17,0.05055044462045273,15.012158763125573,1.2614356926152053,1.7765978341004198,7.184492984467647,1.9574654013307253,0.0,0.0009441217644714089,3.4586192714444497,0.04087945066529169,0.0013898296852015602 -1987-02-18,0.3130740699930001,14.843876360845936,1.007456498539619,1.7153086060112792,7.14506273797386,4.510404877776226,0.0,0.005424715809795477,3.0782243615083495,0.03950633002649464,0.0017307069234083344 -1987-02-19,0.6684775301687684,13.55993846143958,-1.347277673457529,1.6430287672350008,6.8888418279507215,9.194085529580596,0.0,0.011860877171127049,2.9772311373290425,0.04247003698074962,0.0029326026317024008 -1987-02-20,0.2413742804060425,14.697172993086795,-1.1177238995821912,1.5704832025842617,7.295017620661247,5.440864245845436,0.0,0.004315892957151984,3.2162536600825193,0.04027902388563816,0.0025661449415075987 -1987-02-21,1.4477020538413046,14.654074753778568,-0.7131796970752732,1.5828351309313298,7.2405746540163936,21.00912745429461,0.0,0.029136771864987532,3.0265422794347026,0.052121916375057024,0.006106943696548323 -1987-02-22,0.08114249407080265,15.073567882529133,-1.1557612365808867,1.590597802419678,7.433980217418663,6.815050377030266,0.0,0.0017251718906136082,3.9191766764239238,0.046601009186594496,0.004238016226081699 -1987-02-23,0.04377759105252392,14.713652204823392,-2.7940154532224826,1.502260053936871,7.406155786337266,3.529357929574159,0.0,0.0008246058419600216,3.491406944082544,0.04118250568935529,0.0028843077976004015 -1987-02-24,0.004562644001379893,15.361499487085089,-2.6050581043003813,1.4574162543195082,7.631070759677095,1.990878341842236,0.0,7.548180355747888e-5,3.087637825253844,0.0360220413254509,0.001889042033441343 -1987-02-25,0.09893590134510699,16.373231649921053,-1.2773834336957033,1.7833044458865963,7.925770275195737,2.185345611324512,0.0,0.0014490734370449232,2.689294564776149,0.03248099664757253,0.0014503204164713936 -1987-02-26,0.006254561109772475,15.838531783892995,0.3896837930115522,2.02572217113246,7.576895880131884,1.0814647772507315,0.0,8.067064793045031e-5,2.4111920284493484,0.028161615592841274,0.0009563737239428686 -1987-02-27,0.11442597636450852,16.33344449292585,0.694988282277421,1.525885250538218,7.737126553676894,1.4965686761939525,0.0,0.0013207898500091075,2.1052008447646893,0.02585714926078288,0.000823664111163173 -1987-02-28,0.4214487372158024,13.398447518354285,1.1343063322974587,1.4514111468822646,6.523569585906314,3.7549682345852555,0.0,0.004808878240591896,1.9270126509562362,0.027357984715762798,0.0012683893769286786 -1987-03-01,2.093747998869689,13.466462270282692,0.2370186631499847,1.0585887228203097,6.659996233039636,24.074141171516573,0.0,0.03515267907015884,2.0873083529958483,0.048706474948312393,0.006178176562360433 -1987-03-02,10.629516437298744,10.815533679083355,-2.1153494209380668,1.0346593695982749,5.9132106826766355,349.4260085249423,0.0,0.5255901621001051,3.7042445283668677,0.16697860794863129,0.08405056919114177 -1987-03-03,1.2630104976271177,10.571991408721695,-3.2493395129959963,0.9967940250161756,5.920263886296945,147.02831077521577,0.0,0.09440844007602323,12.840833823582933,0.16430023474795002,0.0690880498462035 -1987-03-04,0.0014524906307543672,12.090079789532284,-2.1548901826608984,1.305969624658095,6.3728130402906435,52.877977487218686,0.0,0.00010151277534309442,12.634136044185228,0.14719604918828663,0.04498853013121063 -1987-03-05,0.7090323849056067,11.746739826327019,0.0594566226330611,1.7785247737592906,6.006434075576981,59.42161103595421,0.0,0.04524397982849859,11.224814419916639,0.13902123327678262,0.036174482964108516 -1987-03-06,0.0477531403380845,15.3080196655128,-0.38677878924504666,1.9668832035160195,7.413891366832748,28.042870875092976,0.0,0.0028081449092383845,10.680267999668928,0.12497418090707467,0.02397546975555807 -1987-03-07,0.08782879487794609,15.956442987607035,0.2515310949780971,2.146388327813078,7.60109658256253,18.919539583687218,0.0,0.00450844533325373,9.34291199022397,0.10986174333398861,0.016293381368183976 -1987-03-08,0.06230592106774972,15.520305872961499,1.0993684459486852,2.10955501069746,7.337674652436577,12.715223705098222,0.0,0.0027888156450360108,8.186875924095558,0.09609738187485725,0.011030863862363845 -1987-03-09,0.3978809203388868,14.754889029804456,-0.23934662514796634,1.6322348760270984,7.176719718572678,17.81220461270195,0.0,0.015993994268734935,7.202030607426795,0.08853382238470586,0.0096158958274507 -1987-03-10,0.7197100664523933,15.775837681530724,0.17010044436152846,1.7009137592720984,7.526448090617479,25.0985813244363,0.0,0.027397595612038805,6.657888869690196,0.08594403124980446,0.010431184907973855 -1987-03-11,0.3258708296024654,15.054799382638658,1.1491909335407269,1.6879709917348538,7.13628379515521,16.041147161675024,0.0,0.011617868822259125,6.41924917107526,0.07857607998748543,0.008559203266157974 -1987-03-12,1.4332646416066177,13.831663481688974,1.248004876117108,1.6379913399543553,6.6375828992594235,40.01533299499294,0.0,0.05150002406095733,5.915595902057636,0.08560924844003051,0.013413278507066532 -1987-03-13,0.3795154978297562,14.219069083889535,0.1363012285853058,1.6003522697492465,6.917612554269289,20.774358795261982,0.0,0.013770779035590375,6.5067730952458795,0.08022059848483824,0.010828218425281361 -1987-03-14,0.0795834686679231,15.092347800370842,0.029956755398467608,1.6415388081914888,7.259920198129691,9.797983054377212,0.0,0.0026272707243237825,6.064992894442715,0.07158015331802578,0.0074487020485417025 -1987-03-15,0.02029790135922794,13.840292638728066,-0.34138592411711155,1.7839254526636037,6.815159971114848,5.463182101411534,0.0,0.0005899045541384387,5.377031280634467,0.06287522971874686,0.004938576627519841 -1987-03-16,0.16978603656464933,14.747655433200721,-0.6885921154726339,1.7275883982770384,7.187254435078187,6.162669751608844,0.0,0.004434847006996839,4.765555753304159,0.05749338947377456,0.0038900522433814055 -1987-03-17,0.11395782170953228,15.153640216505014,1.3941195965219515,1.8064321158522783,7.121687947593494,4.547843151412577,0.0,0.002686108859385916,4.326871788610239,0.051732657482182615,0.0029412409332031813 -1987-03-18,0.0232839551987645,14.648501133347976,0.2071146619401492,1.4574274037076629,7.055218317177948,2.409806560250868,0.0,0.0004888203095203825,3.898984638551953,0.04569177282598263,0.001989039722565445 -1987-03-19,0.02464273487617884,14.6109789385241,-0.7714974700817192,1.5636480672391566,7.130719436487839,1.6351045997916118,0.0,0.00045720090383326653,3.448766655106827,0.04046286708452406,0.0013643869662738433 -1987-03-20,0.06674476101834242,16.352936296698587,-0.25081221415992977,1.8907844053100964,7.7429526821255825,1.637495476818228,0.0,0.001101854475693942,3.0500816525990815,0.03630891689975902,0.0010559254102680768 -1987-03-21,0.13043689825083513,15.361068073074465,-0.4940778969881344,1.677671452939839,7.381346707318032,2.015856934193256,0.0,0.0019324140093895659,2.7047397997071534,0.03302788845491524,0.0009815963937047987 -1987-03-22,0.09136203574506943,16.528265124384234,-0.5873005940289966,2.0034970404383623,7.827775426206948,1.5610800976780166,0.0,0.001232222108181219,2.4780591057070027,0.029932016200154843,0.0008265971366249923 -1987-03-23,0.0945872649692267,17.684721727100392,0.9623830809732112,2.026283447636816,8.138823337486407,1.3687264876693712,0.0,0.0011484160867562543,2.2264423546339045,0.02703842318964435,0.000712939200418739 -1987-03-24,0.0760306829343474,18.547797166468502,1.9974987962539743,1.8920268812697645,8.375264577409583,1.0766465449009766,0.0,0.0008264144549572916,1.9990975993989826,0.024173839143044714,0.0005899237205611513 -1987-03-25,0.0019337756167534016,20.0639870988193,2.1858912871611516,1.6812151304252865,8.96376440880659,0.44946138148059195,0.0,1.8351878783467003e-5,1.77912031185935,0.020748073929818697,0.0003868069603240444 -1987-03-26,0.17457172923153114,19.964280698156248,4.8096773963107005,2.020750955049001,8.607834025237938,1.227058345685437,0.0,0.0014851028267736655,1.5093428013583146,0.01961646387824414,0.0004779219957619986 -1987-03-27,1.2203785372690743,19.2675694441835,4.812806946173224,2.0935467830410848,8.3052583429622,9.108943116109794,0.0,0.013335350088240716,1.4372715612404723,0.030959823798279707,0.002341608808435046 -1987-03-28,0.8532530453046142,17.561433220743496,3.224152933520993,1.6057762628189949,7.810186568729027,10.375810770914585,0.0,0.012355729665169402,2.2811972915733607,0.036514223670235345,0.0034056196490460143 -1987-03-29,0.20150166900993235,19.6462954795357,4.205156373810866,1.6523711868558528,8.540938320826141,4.9773101836478135,0.0,0.003036590823611268,2.7164214651561016,0.033991828398090375,0.0026792641392795508 -1987-03-30,1.0025156948155118,20.48525058310603,4.856377125187471,1.8013040656246229,8.8028778007037,12.474564421775629,0.0,0.016066040337294973,2.4926250497190425,0.04071602264785092,0.004190367011170956 -1987-03-31,1.826905913754768,18.228160147005138,5.2129524377855265,1.8759795577354912,7.778038392234757,28.55740802689885,0.0,0.03808702812965081,2.9693891019699286,0.055873588722112365,0.008527044662192127 -1987-04-01,0.8002327093819506,19.77403824220311,4.498001713684391,1.8637881576118425,8.54009233468958,20.648540196662324,0.0,0.019618417365073304,4.156671207843373,0.0577445736548856,0.008537899166972599 -1987-04-02,1.2401988392360008,19.443870859423967,4.5388668830096215,1.4482158996127228,8.390017598721993,28.036953690962346,0.0,0.03240112422444663,4.230938517000817,0.06373504496332,0.010491320895262267 -1987-04-03,0.8913203527593393,19.734732136378298,5.484424344824669,2.077824948370556,8.36897360040934,24.903986994078362,0.0,0.024640248701402245,4.682916436319131,0.06493608353354796,0.010581198681234569 -1987-04-04,0.4529524238414953,19.705406353099654,6.098229747425617,2.3483745246571,8.251659243173593,16.438534062949273,0.0,0.012200796973460826,4.772968121708,0.060878435187821975,0.008745614604410635 -1987-04-05,0.7941255634170585,20.40385327018083,6.380829090244693,1.7791804177739128,8.505615810225546,20.16355337833573,0.0,0.020884605725365102,4.485865120915552,0.06150831568654247,0.008872973809584057 -1987-04-06,0.5928894829410939,18.736076304790775,4.198344509116809,1.0353828664682307,8.12102248909847,17.07127924022371,0.0,0.015341405703278466,4.509213222597668,0.059436041205271115,0.008111844574265904 -1987-04-07,0.8966532309641532,18.839304656058527,3.356116148364232,0.9560942290758162,8.270261066270706,21.533099903108212,0.0,0.023368322132322983,4.391214251704793,0.06160007505273003,0.008838601821581166 -1987-04-08,1.449616040972045,18.358701750626253,4.757623424793375,1.3917783132053212,7.870206841974175,34.057466553246265,0.0,0.041138229274486626,4.537240326892144,0.06974282218664998,0.01201741750584912 -1987-04-09,1.3668370787708886,18.197371619545137,6.303121592426716,1.7345748674344226,7.528921450188995,38.592587580177906,0.0,0.043282493027410274,5.1766172263560595,0.07622681120905932,0.014413172945154039 -1987-04-10,2.4165397272819646,18.923733507249203,6.508177858642394,2.013016931526016,7.806789763805928,71.18804371649782,0.0,0.09047672851761135,5.695004153483612,0.09449399280264739,0.023158716680492998 -1987-04-11,0.9082851895347102,16.409236347116526,5.726097624491173,1.8313196378627457,6.846529785772936,44.61122983782169,0.0,0.03686531909908841,7.016640191237056,0.09232001366199684,0.02068852553650781 -1987-04-12,2.2858743901439937,15.795182923871426,5.310437097111924,1.415983539732164,6.657822141168834,82.1371943094546,0.0,0.10120665217441838,6.986888604072572,0.1080214090580074,0.028877465663764874 -1987-04-13,0.38866706336944457,17.068267431007293,5.017730011832377,1.2483774535801324,7.2568702942013035,36.47712120119065,0.0,0.017784041522831973,8.201483426923089,0.10006943567526504,0.021505755948342354 -1987-04-14,0.2705024507087237,17.256081386973946,5.670222658215499,1.1592815105769736,7.215069439575108,22.84037983710487,0.0,0.011242918915499,7.5107143394718765,0.09064590590586416,0.01571113684623101 -1987-04-15,4.793336319679557,17.942089512228453,4.26758781011628,1.363232137522938,7.7380613897232635,168.6801612855288,0.0,0.24139395519806595,6.811120441135879,0.1351840623380358,0.04698300740940545 -1987-04-16,2.733873122740925,17.202832500339895,2.016928065373187,1.2048319611377825,7.728318142258282,156.830270861058,0.0,0.17173833570520447,10.037200407919567,0.14877435763491362,0.05673342829109517 -1987-04-17,1.3777723476162544,18.214269185030577,2.5506797713238205,1.3275179700157957,8.065570717393406,106.19703519413711,0.0,0.08912515195331694,11.042806714374665,0.14469133444146645,0.050501416360201806 -1987-04-18,1.1769278200021895,18.82709056027032,4.064745338379828,1.6762562716476412,8.12095894913879,86.52269800099879,0.0,0.07292876415015903,10.668509864238635,0.13799132689561652,0.04397853018856048 -1987-04-19,0.5948526757373751,18.91323888987769,3.425649661157428,1.9922944390409447,8.234776159529803,55.62837556026075,0.0,0.034164617445347156,10.165755481570706,0.12535379758961626,0.033830023875290355 -1987-04-20,2.048062500224266,19.177156045920466,3.632248239722228,1.6458617673487346,8.312339934567634,99.526081479024,0.0,0.11506652528941475,9.218032996916962,0.1312423827657732,0.03954233386292074 -1987-04-21,7.9643417104946685,18.846486441869523,4.929665147653172,1.4229008297511223,7.990733931313193,426.4233486884326,0.0,0.6028805513638353,9.633689150053202,0.20500514155147864,0.11753767104005176 -1987-04-22,2.2569069144608607,19.428291137809374,5.993956438381892,1.64751209431861,8.064186187799244,246.12068021628502,0.0,0.20530503825735114,15.101225026616905,0.20221048160720775,0.10777222458353873 -1987-04-23,0.9805190176048104,20.194372490457045,6.92420548588168,2.0007876447010147,8.23303394038864,139.77651312852595,0.0,0.08416608164925887,14.874713505970902,0.1847027212069597,0.08297018220996061 -1987-04-24,0.3459478349233052,20.46237133003341,7.271946333845586,1.8048450371375824,8.284320430871551,77.20770053614487,0.0,0.026363233984540824,13.550038049385067,0.16187882472671705,0.05802388085331347 -1987-04-25,0.1343034644615832,20.142403455496726,7.8396237508318425,1.7996330701719243,8.027660465868712,45.52686002029669,0.0,0.008849498925220967,11.874592203607158,0.13989550170800905,0.03911828625643807 -1987-04-26,0.20672665899021495,20.615195086965603,8.416340915852249,1.2762013932875331,8.121259366497087,33.85275746969457,0.0,0.011831720288108999,10.324741541891468,0.1226844722784757,0.027265719995107515 -1987-04-27,3.1478459790122613,18.822406113212377,7.983686578732352,0.8847589075422005,7.38760373630788,138.42524651928616,0.0,0.1836063788128146,9.043377626850077,0.14201949870473907,0.04570548578437523 -1987-04-28,4.495049371507624,15.165691029774544,6.493633213688092,0.9813225293393254,6.059894309868006,249.67758694198443,0.0,0.32027442470391687,10.616372884334208,0.17603783532100095,0.07851863560219176 -1987-04-29,9.63008799663906,16.70385260389012,6.135925281789375,1.394738069838787,6.8239105791466,722.3101252347695,0.0,0.9977704899144637,13.494846408854405,0.26938982484653146,0.20303723836450172 -1987-04-30,0.4930271073215845,17.088452087198675,6.5312141486322375,1.93498869933138,6.907885373732717,229.16287831062115,0.0,0.057616679826868356,20.26831383935385,0.24185556175568618,0.1409406900889921 -1987-05-01,0.3536051081277846,18.939315618692998,7.413593498476673,1.9898009549113538,7.547029375516362,123.61286718044275,0.0,0.03668357225798208,18.18608630884348,0.2159748493098506,0.09733138083122053 -1987-05-02,0.18580326329384075,20.509188123557887,8.45496553523725,2.0385220275206457,8.039327924621233,77.01184064478903,0.0,0.016801099646411938,16.04696689770258,0.18910077900182104,0.06591636996684458 -1987-05-03,2.1373490410355527,20.404070302822625,9.345584477581417,2.1256228822174865,7.789874252093113,160.8865929149476,0.0,0.17880650263400044,13.925244698388063,0.18711833893965088,0.07013439027954413 -1987-05-04,5.613395147515797,18.80323874873691,9.073066777445028,1.9294999766117225,7.094048275634266,399.2136880836232,0.0,0.5252191158939228,13.850725805626046,0.2267438273516994,0.1256265611126973 -1987-05-05,1.270502109116337,16.57802109591856,7.898725598948671,1.5042578081660205,6.338057147632338,195.4884984749765,0.0,0.12620391047990265,16.99571631189635,0.21278907411197429,0.10099339659294959 -1987-05-06,0.7733285647708812,16.972015309799122,7.1908916109252345,1.3512558480089512,6.689925268720626,122.49662787909054,0.0,0.0719966068211424,16.202785301673657,0.19776022975312219,0.07670450147308246 -1987-05-07,0.6104296781186549,19.07454026151361,7.621213890906726,1.6483838703817821,7.542400226196848,88.8221887000592,0.0,0.052041442691202366,14.960883279952434,0.18139525054863753,0.05785510379548801 -1987-05-08,0.5735451254799364,20.845504459418322,7.994938833184495,1.7717038839068635,8.260333809246179,69.73350570329963,0.0,0.043913497806549184,13.497786550207415,0.16392148444625937,0.04434743214779095 -1987-05-09,0.4277475174431761,21.585319988517092,8.231197532599309,1.5712639822313457,8.544138457966486,50.56840870196487,0.0,0.028927648655631466,12.029304726951313,0.1451162223156115,0.03327275584937819 -1987-05-10,0.16693642686258406,22.397934998173653,10.006799905362056,2.0964744822771038,8.551961365676485,29.947175226643022,0.0,0.00979327710170344,10.595975520875944,0.12538063518792722,0.02315017135137653 -1987-05-11,0.26437299145642856,22.29130959593002,10.382864782250726,2.173925030104962,8.413090295369843,24.554545794044152,0.0,0.013430919339285863,9.160850987409486,0.10979747627750451,0.017114729373518402 -1987-05-12,1.4452698823150638,22.238013030878605,9.260969662280347,1.878638943959258,8.627374625637545,57.17235359864544,0.0,0.06919142514814203,8.04984413578983,0.11061164790277118,0.021676301060461887 -1987-05-13,1.5694483772482657,23.348578451652088,9.990828679958293,1.7879742948765072,8.98907705927192,67.76852927287399,0.0,0.07589971259778472,8.07413064870127,0.11234116469870235,0.025667105699256832 -1987-05-14,2.1057333727653926,22.54769169356317,9.432856788903813,1.7476424648524829,8.727561945477882,90.53669711258455,0.0,0.10579767237852344,8.13955383329285,0.11935065750010476,0.032817338004791016 -1987-05-15,0.5490586450121571,22.340734392239142,10.63431148046372,1.7032260585463004,8.363341387564638,45.418956970454914,0.0,0.026881288451718,8.691248913098534,0.10764332520727861,0.02545561790517364 -1987-05-16,0.07003889246767242,22.367168149166947,9.972216148216503,1.5997210152509909,8.52237003258042,20.601724491210003,0.0,0.0030242526997862895,7.900503530011722,0.09285142130450741,0.01703089799247949 -1987-05-17,1.5784177798358792,22.774848980032555,10.277201125394663,1.3140404663595318,8.643740937074943,53.92924004285474,0.0,0.06508255726535483,6.79682046372821,0.09756585354662571,0.02099609493680157 -1987-05-18,4.77791780077648,21.719318083749105,10.502664810587152,1.6572077759779864,8.086433032085493,180.01107498453067,0.0,0.2488249420957107,7.123120936408929,0.13863904150753198,0.05155474426506059 -1987-05-19,6.125284665804636,21.5043039913835,9.97665319083753,1.958382988520988,8.104913456453232,343.23773304622136,0.0,0.45151476275057245,10.220353581209382,0.19041561576589078,0.10230950821415095 -1987-05-20,3.981932610115319,22.381321295462126,10.076063337978876,2.010082452989965,8.492319716026392,326.9500002212591,0.0,0.3567238266859136,14.002469361141175,0.2095061033278212,0.12091515372677065 -1987-05-21,1.455354945627272,24.641181508945557,10.503827519885807,1.9523634296054184,9.458358359964802,186.66758103647584,0.0,0.1303840516210426,15.270827511684773,0.19484869809862138,0.09856298006202792 -1987-05-22,0.6399052390995076,25.14211425899136,11.719433164511525,1.892425727853044,9.436186758703604,106.59168637923989,0.0,0.05072851894801522,13.928476997925213,0.1697117868666085,0.07188403397292457 -1987-05-23,3.847059164193305,25.311255904993377,12.237980547578685,2.2008413752341784,9.397405142141475,247.1832609929309,0.0,0.30119062695222976,12.152110916240042,0.18637949626503314,0.09265384995215989 -1987-05-24,2.2335742175185374,24.746800263792505,12.119946828461044,2.3351142596971557,9.146022293910784,195.5644867352339,0.0,0.17988625963443283,13.345715020440732,0.18148816880753188,0.08770364204278593 -1987-05-25,3.3809719414219237,23.163777105076328,11.2222598756411,2.2294641036910594,8.586781166427878,250.61780886740647,0.0,0.2781894215608669,13.067049182728644,0.19160830694742972,0.09944939797078835 -1987-05-26,0.5324958878728928,23.86256902183657,10.871536109393976,2.0498120107476576,8.997539368844187,109.27598467106975,0.0,0.04211432895966494,13.95034988107284,0.16871534494163962,0.07114941268836758 -1987-05-27,1.1503805343726314,23.914375064388928,10.869766772017462,1.6235956904397806,9.019374660018624,103.15815494690638,0.0,0.08128311944784605,12.192175610609793,0.15543174306466218,0.05869147935374531 -1987-05-28,1.0973649517575141,25.035037577878555,11.586649154158971,1.169085149044219,9.393824501337082,89.77215249984246,0.0,0.07130540232168925,11.233863344913898,0.14365045853681493,0.049062695444396225 -1987-05-29,8.637558908749055,23.07835665996009,12.150800782412038,1.2522682944777843,8.301764286839004,497.0456941949137,0.0,0.705073587409176,10.307564040401918,0.22069785208797768,0.1392953783888059 -1987-05-30,3.6546005591446513,24.1261912628195,12.045181799421457,1.549434803562998,8.842199813876222,373.9755707178205,0.0,0.37055052283442125,16.141944197348227,0.23061633953224334,0.14709653562233824 -1987-05-31,8.696765278808254,22.018876610850633,11.812517371812598,1.4230584021043624,7.859827188270411,802.9223995481287,0.0,1.0447700930862176,16.670410837145795,0.29551042225246704,0.2548346120154234 -1987-06-01,3.934091064915775,23.76358684713938,12.920227528975529,0.9580811319467116,8.431648924771688,579.8508873352097,0.0,0.5380859043757824,21.735416457755342,0.29903237839180075,0.24781688317731781 -1987-06-02,11.796048672350626,21.794992288171567,12.466548924173512,1.061985300327441,7.556205596134541,1448.2187867111836,0.0,1.9148735324388326,21.72668767687152,0.3905171757524256,0.4528849269316056 -1987-06-03,9.829811457004203,20.82696538247821,12.540549543253126,1.5328690542426149,7.028523740868168,1712.6463865609178,0.0,1.996256995511617,28.75941364835071,0.4495383385660722,0.5987664197328589 -1987-06-04,4.576473919434828,22.45378307018945,13.053011849497135,1.7191628428224617,7.716278480148203,1162.3198005093645,0.0,0.9919959946007415,33.36461100719932,0.44198794442613865,0.5408148419706756 -1987-06-05,0.9005704987876578,20.775902252318424,13.5324899878316,1.0192384121416946,6.657306821672246,534.74331471949,0.0,0.17706111073703157,32.3310003076003,0.3871252943654318,0.3790052136251976 -1987-06-06,8.991577587668178,19.841664857624604,11.874999094045824,0.7519403726777191,6.72117058169073,1450.048307868213,0.0,1.818615147186538,29.066934966306608,0.4433558967587482,0.5236256030401462 -1987-06-07,13.51100250841306,19.658299028224,10.453061395468783,0.32399396868244146,7.050698893785368,2638.2138769212916,0.0,3.3536240555036905,33.13854915190252,0.5434356842091751,0.8514944620772126 -1987-06-08,5.1847791962590515,20.737494516752964,12.230883641048957,0.8491533692373571,7.070829501010353,1666.0913086382643,0.0,1.3916342883896613,40.04145895865008,0.5268550457866046,0.7661797533288055 -1987-06-09,6.305222002021397,20.644748152110484,13.388861358761623,1.489271950480228,6.630254638184033,1680.9057652493218,0.0,1.6623029285364215,38.85364545055574,0.5260702227301253,0.7518571867236418 -1987-06-10,6.382057011032393,21.88129771082769,13.982907281709016,2.182562960532934,7.097830737316122,1703.9644241523656,0.0,1.7005690484782425,39.18268460978189,0.5307983819185536,0.7483604510835722 -1987-06-11,5.985249024928282,22.25096961986176,14.249308155930645,1.9979633739054607,7.206102218090289,1627.2567464382078,0.0,1.5822005091214875,39.108536333404906,0.5253120604079499,0.7280608817754542 -1987-06-12,8.414604509689967,21.801063539778575,14.418549382573493,1.7822342785054393,6.8933152668074555,2058.710161237472,0.0,2.2730730105435715,38.62694556884484,0.5480022003070156,0.8200423607053368 -1987-06-13,1.3227140618225637,22.076799713689407,13.534926023953387,1.2943501555351735,7.350629076541934,895.4108401542898,0.0,0.34008783262863784,40.5068283772791,0.4872858410531648,0.585592431398866 -1987-06-14,4.082400367872263,21.887171036075223,13.395419033978168,0.7035798610587503,7.293770740223909,1031.9308055340794,0.0,0.9496347536674632,35.81870469781743,0.464820851655074,0.5257890700160426 -1987-06-15,10.624351868585498,21.928080243438934,14.329307948869324,0.8382122396907654,6.993240459219072,2104.0530857265867,0.0,2.6092570426992747,34.26466881703362,0.5229266906443022,0.7395619033036506 -1987-06-16,5.223969310705111,22.092376041157237,13.850316178336177,1.0807190396609645,7.250098790370586,1517.1395985045951,0.0,1.347097207312852,38.64287854175966,0.5110190693876157,0.6865354898656981 -1987-06-17,1.6773097548919365,23.42475038243696,14.644429756372386,1.2428888639847906,7.704265752148511,796.2985635059325,0.0,0.3969425254576959,37.580734133765624,0.45732962444514347,0.5073427001919895 -1987-06-18,1.3369038174281125,23.29008699346417,14.31267474469986,1.378405716504355,7.739747440721895,539.7443862738511,0.0,0.27503580731565713,33.42650154639235,0.4049701295500271,0.3721345174336096 -1987-06-19,0.5753212230091078,25.48866128616531,15.327261678011794,1.7406195760093783,8.594526031931,327.1105819283511,0.0,0.10211581419538529,29.679715145038482,0.352450683967242,0.257790721775729 -1987-06-20,1.7330210872602383,24.941348254047647,14.97061085454586,2.146473685370011,8.411671725654534,348.7689454416979,0.0,0.2658483579710744,25.440113464306307,0.31654861497201886,0.2082889835404533 -1987-06-21,0.4706943284483626,24.447277214824386,15.110249163311355,1.895879181696732,8.100754467248803,192.66337485458166,0.0,0.06293687828949762,22.9869362948819,0.27326551047134634,0.14516940817672966 -1987-06-22,1.0466339070362898,24.06361859593051,14.934503805731987,2.120146229922987,7.949516385820629,179.39676066512595,0.0,0.12250000073949452,20.02027128705274,0.24541517829974677,0.11315089654269067 -1987-06-23,2.3180132480157343,24.367718822291003,15.355106202347866,2.1350548597628105,7.974516480474315,246.0972791947197,0.0,0.25254547350263534,18.060691198611156,0.2373981056643305,0.11210969470422677 -1987-06-24,1.9415534568082495,24.767604994313405,15.831564827464785,2.014203827504785,8.032176697334892,220.36692129050766,0.0,0.20232617972775802,17.46808807222999,0.22610917895617688,0.10378529188656282 -1987-06-25,2.181369377155165,23.545093872940914,15.830859116849108,1.5029974883794586,7.342451043494864,222.75494939594236,0.0,0.217823188047217,16.626126621213807,0.21909459131693232,0.10072614535019314 -1987-06-26,2.653460325771434,24.504023890247076,15.752286326110767,1.0913755719241618,7.911845865675436,251.805929447782,0.0,0.2642524390366714,16.344690969815726,0.22131559641139306,0.10580432408855142 -1987-06-27,8.612612321617965,24.64611335167017,16.005201706976255,0.8469909762058729,7.901991360588527,747.4029133776895,0.0,1.0136420830835409,16.317550224631034,0.2904195101255797,0.22321562366978528 -1987-06-28,10.047287437812118,23.957010333011688,15.523873441815528,0.7711662233203446,7.686134950859859,1216.517892095347,0.0,1.5479063843820509,21.34754860559646,0.365728578274812,0.38099449382379924 -1987-06-29,8.279272764975879,21.405609052196347,14.7039640289239,0.9104774815609732,6.543810074318592,1342.3781501152475,0.0,1.5307590401316027,26.89775340208721,0.4097885317899894,0.4810901862105757 -1987-06-30,5.074204438753107,22.124353101408204,14.505999954677394,1.1703345798255842,7.027422695484672,1073.9913980477832,0.0,1.0176994426392802,30.805493642878545,0.4179741837218381,0.46812687440666656 -1987-07-01,3.616052887745952,21.391004573603894,14.050454696297786,1.2135434968439918,6.784363031894225,837.3722000962724,0.0,0.7138156718210391,31.082872901878996,0.4042189861783692,0.4134175743736908 -1987-07-02,2.0280322503953934,21.67977259161853,14.117277736572225,1.2438453321996332,6.920492710076487,562.1974739550602,0.0,0.37758407235372227,30.240703387066798,0.3759089167115615,0.32660816328489123 -1987-07-03,0.8738803305435706,21.041665121448567,14.095065982116767,1.310819174526542,6.571292062283829,333.85661950112114,0.0,0.146704338858061,28.084594704331792,0.3373466225103984,0.23494446654125373 -1987-07-04,10.459370242927816,22.428956069131736,14.13763390660566,1.0749443009168935,7.324321235122615,1410.31682681231,0.0,1.9088398286839006,25.4374615991777,0.41817378042780406,0.44358686817366216 -1987-07-05,6.314521792633303,19.640596756475087,13.464291156216571,1.0895288511824015,6.018318139238292,1248.2226444745077,0.0,1.2980850495921805,30.898852591517244,0.43351060943607433,0.48640682776246086 -1987-07-06,11.123113178078704,19.39811733312989,13.664055162717354,1.3246119563449743,5.795352327389955,2126.14473582325,0.0,2.641600608396825,32.91340852184649,0.5129956548017367,0.7188507002447574 -1987-07-07,5.3539091956625215,20.870602313561896,14.449547951635251,1.6342173812297904,6.334554583453195,1539.4657452523443,0.0,1.3960175334186333,38.95616839024425,0.516182395612245,0.6805023124411903 -1987-07-08,4.3112530810228185,22.07607538977565,14.857207746743741,1.5087983653358608,6.869600198880321,1254.4000045830205,0.0,1.0994603057238725,38.72705836829203,0.5013671814034271,0.6103840954551888 -1987-07-09,5.179246415468825,22.563735613782665,15.217352715748104,1.4432929703510928,7.0113396132007555,1303.630103242967,0.0,1.278979372527445,37.21117158716373,0.49381966152464657,0.5920748616754091 -1987-07-10,9.325574986971317,21.23000714978268,15.285169161139205,1.3133180240538718,6.198711191079535,2035.6160837958284,0.0,2.404356786729549,36.555766640122236,0.534486557579615,0.7515117473177491 -1987-07-11,6.0502451395468375,21.32217569917404,14.764791537422305,1.1502710009820063,6.4720079100019055,1712.8745922302846,0.0,1.6504421030644485,40.16982102028494,0.5384324689904555,0.7405030183108975 -1987-07-12,2.541151778657712,22.55277539373739,15.03101467730866,1.2850282231412176,7.076868294202271,1019.6651862664434,0.0,0.6594026070948598,40.20857851113859,0.4980054063318299,0.5824364494381542 -1987-07-13,5.997373364565719,23.09549277853271,15.261675872327864,1.128725096682318,7.299120292661044,1393.0619799269136,0.0,1.481164266218209,36.80104343370945,0.49857257118348003,0.6046678945611207 -1987-07-14,8.895098214364614,21.81075127669897,14.908973110619435,0.9786108037880396,6.700111034954236,1976.0643330946389,0.0,2.2856046937721626,36.65980482939075,0.53068376915883,0.7416274593989332 -1987-07-15,6.6596442338326165,21.916329663315498,15.448466274396315,0.9168965891150744,6.544611181618562,1795.11426599003,0.0,1.7955298268603466,39.45105096913266,0.5371583714126235,0.756160560738583 -1987-07-16,6.249547794276168,22.68130188185293,14.798751226655678,0.8138191059591605,7.2372191186709385,1720.176143289711,0.0,1.7039958860425273,40.05209414083051,0.5393827715265701,0.7516835319519029 -1987-07-17,11.445026853209278,24.04691991712243,15.582534606871054,1.0360073675255832,7.721090154425105,2764.134625053813,0.0,3.3176593299176957,39.58865061344164,0.5945077807766478,0.9944732943055817 -1987-07-18,5.077082387569967,24.344569030853812,14.844931924840006,1.1755440017344476,8.132886955237128,1812.0788813761044,0.0,1.475869718220907,42.933678066744086,0.559292844803226,0.8720783416901665 -1987-07-19,4.569534203529287,23.03172324023444,15.474054698321204,1.2738014350149187,7.188830486385204,1465.129800053871,0.0,1.219242553429936,40.146017747071355,0.5209058973601545,0.7533297031565326 -1987-07-20,8.203334734563457,23.291343687974123,15.432186540130232,1.1464092095644929,7.353469164295505,1999.6231476835214,0.0,2.190472540216364,38.33110529570266,0.542094711676537,0.8239140339414426 -1987-07-21,15.27109956650574,21.629195851837498,13.990635401963461,0.9724880157572862,6.947913454574476,3727.8425101468792,0.0,4.6819922356831185,39.674009462826305,0.6400733095298689,1.249231796200758 -1987-07-22,11.374730985992146,19.55729089050454,13.292806037083535,0.4400305038124516,6.048367962167451,3701.5832966141325,0.0,3.9902662568665566,46.84674858872666,0.6782408075161291,1.420768170485467 -1987-07-23,2.271621651390644,19.045764424442282,12.372836824466225,0.11106732033703552,6.112977154895235,1685.627541935769,0.0,0.7772329378417933,50.50285729444206,0.6147869390802476,1.0431984995829557 -1987-07-24,2.7289487285815226,19.652672373390285,11.693820433969364,0.335594641813806,6.670125092083407,1288.779413211601,0.0,0.834866619994878,45.998464895721966,0.5676413688921551,0.8061939691191965 -1987-07-25,6.932437690809048,20.14543188820042,12.447156044225974,1.0217546706551544,6.6834473054800485,1898.3493158110791,0.0,2.0213060288757374,42.103282641997666,0.5712329332506237,0.8325680860462957 -1987-07-26,7.441701108354619,19.820177070556745,13.194907343341178,1.0120381979116324,6.239899951229922,2100.1867763627783,0.0,2.1996941042263147,42.34403776299429,0.5799701412870512,0.8768986163476106 -1987-07-27,3.1107680906459114,21.871154181560488,14.180791184290365,1.406991253579073,7.021844084943803,1289.8554591420113,0.0,0.8911539027377904,43.39665120819452,0.541779938454769,0.7065111315464406 -1987-07-28,7.680531021777036,22.27109705001212,14.663498390687694,1.4306489908005808,7.071575603307405,1914.5079653080425,0.0,2.13159628754297,39.95088978113609,0.5548737947658793,0.7844725650589199 -1987-07-29,11.693796526606612,20.97493490239629,14.639139385934156,1.1232611118273086,6.337455113398954,2937.5562766522744,0.0,3.5187159182999537,40.82603699262928,0.6118204923147774,1.0464312495256722 -1987-07-30,18.441632470560087,20.958384969225378,14.327319877774006,1.1102156604109166,6.455114079783923,5383.828370036293,0.0,6.8713461676165934,45.5515531661768,0.7454772743466407,1.7274415242834897 -1987-07-31,3.0512163743276663,21.09247704397223,14.488136026428847,1.213226568964737,6.470517614322423,2300.517847394717,0.0,1.16511981677148,54.48224741224232,0.6702258895314525,1.3018899467540486 -1987-08-01,4.083678440740912,22.490351174287113,14.710789650367785,1.6512135403357358,7.184408618121046,1856.3147785469507,0.0,1.3922023590538553,49.448519908794566,0.6236138569805127,1.0594525424162695 -1987-08-02,7.421980730708357,22.301533473414807,14.924186909107515,1.4346585622169998,7.000461080353902,2335.386814586479,0.0,2.3845747646400444,45.46802773735991,0.6161327797738432,1.0527405456298733 -1987-08-03,7.056437934439565,22.139453863020712,14.126048432948235,1.2892216007586392,7.201799018593746,2291.810523333759,0.0,2.2373195342999352,45.15159230132423,0.6081881952259187,1.0259495669929575 -1987-08-04,4.220753814816174,21.699311170685387,14.742025819016176,1.001786699652757,6.728798979707476,1633.07986435451,0.0,1.2619462886875432,44.395724540049194,0.5663490481322684,0.8599949134281982 -1987-08-05,3.6591647738122814,22.64428306657021,14.612193634439794,0.7899307103726902,7.313847296019458,1306.5707312873712,0.0,1.0146690732938266,41.9559252831399,0.5313849071019185,0.7143146248032437 -1987-08-06,3.1289245570776347,22.74409215819596,14.599042799217393,0.7601691935294068,7.376085595079422,1045.844234847393,0.0,0.7893943727476471,38.95970455046252,0.4903040252783332,0.5851822027834589 -1987-08-07,17.652268267605912,22.33082042744194,14.419782288905196,0.4545767230854149,7.212542130392914,3740.13105084826,0.0,5.0646129228860275,36.01221924594268,0.625154936150628,1.1520882465223319 -1987-08-08,5.166109263037417,19.531686490215503,13.099977633152294,0.24562172275645103,6.135034311135051,2101.5720747312657,0.0,1.6134980093439326,45.5427945660432,0.5907243878465018,0.9956342081605928 -1987-08-09,6.486925278768243,19.42217346052395,12.816103508393825,0.2826607517889925,6.1838100453947655,2066.901873217626,0.0,1.9935482097111183,44.26781137118426,0.5912583091701431,0.9516582399422079 -1987-08-10,9.406511389347141,17.050830832992116,12.295579859431658,0.5144702704031614,5.024548258066485,2707.7628366552317,0.0,3.0064266245788467,44.25645426638185,0.6251372075376826,1.0772576532265332 -1987-08-11,6.745545558670938,17.814287508980588,12.501819045249446,0.4919552024887303,5.39192360412583,2380.502835963195,0.0,2.2891790789381448,47.92011912402677,0.636817972140618,1.049805433516693 -1987-08-12,3.812652369178226,18.27312880129729,12.62510103098468,0.5190849917816222,5.610670579842845,1652.8096319476092,0.0,1.259237370135447,48.355687787944035,0.607725832689191,0.8751114884415278 -1987-08-13,2.2208601458709327,20.407405845462264,12.693230181787104,0.6004816030726553,6.7766873178744955,1094.9784150468004,0.0,0.6752955697296232,46.02701987005828,0.5620551271107608,0.6724801752399583 -1987-08-14,2.195174367723589,22.04691624027197,11.744370007197578,0.5791315903994844,7.913127145634687,868.8243462156994,0.0,0.5902099885177998,41.607441776692504,0.5102708134887053,0.527621177324832 -1987-08-15,13.863303165787555,21.93690184723045,11.621675367814296,0.29735087325435083,7.894391221608915,2907.7129827542262,0.0,3.8677152679236126,36.97285025949281,0.5922067594645548,0.9323733748072885 -1987-08-16,6.265824082373063,21.809707131256665,12.454356056744398,0.2615066070421513,7.597708777198864,2032.931665451029,0.0,1.8351460866421458,42.604786700221965,0.5693095188083562,0.8863593474066557 -1987-08-17,10.706922999858332,20.785452161393,13.170223514629464,0.07670149498234002,6.827183342956178,2805.6037491583365,0.0,3.221861752350268,41.333509724042784,0.6062357977153479,1.0675543240192467 -1987-08-18,7.583173146914224,18.049562687254042,12.269586291766267,0.5257285892724562,5.63915552428414,2452.0714006950116,0.0,2.3894840746086077,44.64945950812025,0.6084747967488428,1.0587619396366934 -1987-08-19,5.742735728374914,19.303123925697122,12.10810752613282,0.8015158887150686,6.398497357922852,2039.5535010435615,0.0,1.8319763209766755,46.05082660791082,0.6033599248884954,0.9681497191991376 -1987-08-20,2.8168226101850187,21.985835551610688,12.786411653848601,0.8402181298056653,7.601063656899277,1295.1557776371887,0.0,0.8373844137810997,44.89277453387617,0.5557844961966265,0.7577241116808504 -1987-08-21,9.766755349334977,21.44090595543012,13.591772188724676,0.5668396450297496,7.050019815415216,2397.713526575815,0.0,2.827323629312877,40.39862067891055,0.5843926570619421,0.9237445737486545 -1987-08-22,9.310685842441252,21.61398556294852,12.8853958952069,0.1859343631707072,7.381492320953485,2642.7000781107345,0.0,2.867315853505218,42.90728720763788,0.6083040222790868,1.0379054985238911 -1987-08-23,15.854875089403324,22.022235933638097,12.988728703589112,0.4431459552757001,7.567377069406738,4460.011620770793,0.0,5.518763500063409,44.21755117802925,0.6998030829633614,1.515940968509898 -1987-08-24,5.979482493882892,19.97372535166504,13.041233050275036,1.3565459464437062,6.444637657964676,2707.4924215912765,0.0,2.123120764627566,50.08610521947007,0.6531261273731472,1.3100828221486331 -1987-08-25,0.6574232248769359,21.05172117769096,13.315827407102695,1.3762638656247852,6.945119381527062,1137.4202833899728,0.0,0.20803631746689144,48.30733654486599,0.5704062907477925,0.8844789459414444 -1987-08-26,0.5917044115306824,21.45915795532992,13.914541579740876,1.171746410113388,6.960483752232836,701.7662920696645,0.0,0.1573705979920179,42.03393908347962,0.49655987920829237,0.5997162216476495 -1987-08-27,0.450631598178681,22.889087453877316,13.200179760497768,1.2921438788566622,7.971008516436359,467.81700658316095,0.0,0.10205124378139602,36.7928521238954,0.43386136283183485,0.4059258830795545 -1987-08-28,3.4311069440761948,24.237123849521517,13.336344097666336,1.3013041547006634,8.633862862577045,719.6323743741822,0.0,0.686823745415559,31.577126500206838,0.40782221088166776,0.36881773292449865 -1987-08-29,6.884527260519213,22.52469710079081,13.203225078697288,1.133678840029041,7.7862470064758655,1164.2194672643147,0.0,1.3529103475998658,29.305251150534716,0.42158640956285837,0.4460835964099929 -1987-08-30,1.5872640396917197,21.04810424306914,14.075516651435102,0.926461270479658,6.680270211139009,567.6239689861047,0.0,0.2995310152190582,30.833455091955255,0.3776794214905189,0.3359874773157527 -1987-08-31,19.45313120416418,21.450734633175763,14.345180703881324,0.8908568585942803,6.811042700153875,3235.277830417499,0.0,4.581587137481854,28.357857520052775,0.5569656394396787,0.916326380919014 -1987-09-01,19.29438524277178,20.735049529647263,14.17729420464049,1.1546581583776518,6.465396963626122,5117.771383256645,0.0,6.511737326372746,41.215919629904505,0.7049040721684433,1.5879936112369177 -1987-09-02,4.140487056510164,20.68433922181871,14.040634943665669,0.8371603626065992,6.493528377948715,2411.367785622854,0.0,1.4992083635085685,51.796018971145095,0.6516224131531951,1.2619858260799894 -1987-09-03,4.0204894927669335,20.887683143124896,13.599275545658836,0.8859287196623177,6.781651593620661,1804.0544179541794,0.0,1.3243455804555486,48.148027400579096,0.6077278915465062,1.023144638374239 -1987-09-04,11.60929956967303,21.022128486923343,13.689087869631065,0.465335440987507,6.827579921206768,3283.7026176217464,0.0,3.876305442713477,44.80031010271148,0.6571337502127109,1.25624383936056 -1987-09-05,13.293075149604258,20.92557782138663,13.386858694457045,0.1092418344255526,6.886900104007548,4276.1018391424695,0.0,4.939966561981665,48.142135809235995,0.7156786016949794,1.5699385822124097 -1987-09-06,7.034074183157138,19.833245023381764,11.313931165137024,0.2843223049362944,6.993238869831947,3059.7386823855613,0.0,2.653645365573823,51.971034270679695,0.6873695532582205,1.426012938614322 -1987-09-07,7.857443400051474,21.095243567041113,10.965046596231602,0.3605185804535737,7.734115495422174,2967.201166397414,0.0,2.849997843633198,49.97483555632929,0.6737068838921408,1.3622216745996076 -1987-09-08,10.61767565740162,20.47541291000681,11.4304896457509,0.3739391594477513,7.295226513599984,3558.2250358453853,0.0,3.816003914957051,48.193803315641304,0.685113900939319,1.4677852548986443 -1987-09-09,2.3881771337940467,19.27703420287326,11.998021807322054,0.7091885389177525,6.486698218828845,1710.851154813827,0.0,0.7967171526746899,49.46107843748014,0.6040087133587931,1.076771171277879 -1987-09-10,2.388609052948636,21.905496091846327,13.43633813662924,0.9214889455065741,7.426368000087948,1225.6630062073114,0.0,0.7050481203476173,44.84698827376619,0.5502627193330394,0.8082814161216966 -1987-09-11,4.73397611513405,22.28148558481649,13.711066032444847,1.1257127087429362,7.543194418620844,1399.6086874019352,0.0,1.2672691304738226,40.176925635244736,0.5231815902301649,0.7191136589093896 -1987-09-12,4.568139468806151,21.722021739278947,14.136910374348748,0.6341956645140618,7.086930759583709,1296.8381987768707,0.0,1.1508188638797199,38.1857351027015,0.49805368440712117,0.6433383664621517 -1987-09-13,4.182121446696903,20.58395832460048,13.430300593595732,0.3805680147057856,6.7084001352362534,1147.4911348537748,0.0,1.004309489821913,36.79626204733748,0.4773704157763794,0.5717039959622976 -1987-09-14,1.2729959783228024,19.79847169862295,12.425381139157665,0.1694111090054172,6.6389830611695,619.6790519189273,0.0,0.2812816428463043,35.61457297435198,0.429715196805695,0.4149817167272616 -1987-09-15,2.6426206600880957,19.006498751992122,12.31677483045359,0.27811465405418,6.243308924667593,639.5941454765983,0.0,0.5331737307525732,32.20182046369731,0.4059141412734971,0.3513171704300618 -1987-09-16,0.3355340942900584,20.719085553133997,12.770859631576615,0.22697506484834684,7.029497022304779,301.43907446212904,0.0,0.06162339502701375,30.715767574146554,0.3617266354593341,0.23807403828652912 -1987-09-17,3.199209807931524,20.793417756803557,12.567387640455983,0.15416154402890378,7.141903489133636,512.7739280620073,0.0,0.5384423269521719,26.982922541847227,0.3516014015274447,0.23696080802939118 -1987-09-18,5.930288375270544,20.39025970802688,11.725078137806653,0.487169505774238,7.201715716192116,852.609931339659,0.0,1.0205767291394334,26.17928039996846,0.37405473055977334,0.30964823266674507 -1987-09-19,6.575969652035626,19.82658973197454,11.147610055399928,0.4420905740966294,7.0899844231554,1058.1062197616004,0.0,1.2168473509210767,27.782638765813743,0.4002545192714673,0.38684943143156375 -1987-09-20,9.888433506917323,19.191002561410325,11.666507436843355,0.5713037217808105,6.593771329552401,1685.3704450870168,0.0,2.079205580307317,29.75586838461536,0.4618292685918262,0.5684105632494485 -1987-09-21,9.951657282975667,19.27575021557728,12.295066873742947,0.9169891361603676,6.422854017316586,2091.377987538982,0.0,2.4416660680669473,34.5756334024067,0.5187127811171743,0.7417882905110179 -1987-09-22,10.34875728621433,20.563421603348093,13.331027491159197,1.057645335602774,6.767652157210144,2523.284026969232,0.0,2.8918704886085393,38.83398636319532,0.5729456553199505,0.9231993160169415 -1987-09-23,5.948183461817135,20.049107172111558,13.397012039632024,0.9581932412390768,6.452303986176767,1906.3715151721192,0.0,1.7238877491180604,42.38329680434357,0.5630290134090777,0.8634467408285799 -1987-09-24,5.09537336323171,20.138584671888804,12.611413581266625,0.959763131157808,6.798312610215067,1618.4328845134503,0.0,1.443086496729693,41.98397193231408,0.548442488989011,0.7817944838523121 -1987-09-25,21.014536711363608,19.976773444332093,11.904185191526075,0.11913152530262505,6.9548163933506615,5272.231984890107,0.0,7.150410962369474,40.62506996371101,0.7180596733655082,1.5976671653304355 -1987-09-26,7.52819072107761,16.971899766162664,11.447706771980016,0.5923216789759383,5.461319133932861,3331.8021801646814,0.0,2.8627013314159937,52.039031858777584,0.6939178021438853,1.475894802124284 -1987-09-27,1.3308411998933751,16.14314855604583,10.61467590607577,0.6486308266092857,5.324716865672361,1466.9806985510997,0.0,0.471107271875046,52.313903362549226,0.6249249441408288,1.0324711908484017 -1987-09-28,2.9607188440923053,16.062061321546555,11.005639937588622,0.5799118468345155,5.120612247223183,1333.2208775616,0.0,0.94742363259585,47.57453652897377,0.588701500934463,0.8163494632683717 -1987-09-29,6.39594920867542,17.83277979386054,10.546056663860336,0.5639557219717356,6.279326636131325,1902.4204319970836,0.0,2.009957606721743,45.15141335457072,0.6004918642672884,0.8374508705081539 -1987-09-30,9.39838372166489,17.665185518081152,9.182101075312907,0.7428962362364409,6.616917110733482,2657.115695907386,0.0,3.0477716597486744,44.813638547379696,0.6315333452433438,1.0092094158582827 -1987-10-01,2.527823051450274,17.748257802809086,6.993917488755463,0.6706682136166362,7.203327204479445,1355.3348684540078,0.0,0.7842852070168549,46.6252662444537,0.5726002021845273,0.776366905745862 -1987-10-02,0.6404192429081267,17.243400544535188,7.1331365918413905,0.4919729419038704,6.946057280149258,676.1432910754047,0.0,0.16997803528207422,41.938564125970274,0.49601632033865045,0.5312600333209013 -1987-10-03,0.46159208465917895,17.684208952304388,6.446634953394757,0.7995681227960021,7.2973702818422925,428.3463477729821,0.0,0.10446141673826598,36.76573884421628,0.4336731937302816,0.36173110635740346 -1987-10-04,0.44112023774453,18.0268988797662,7.58216106595361,1.1236619847334846,7.213596932077082,298.17592871306897,0.0,0.08512460342042383,32.031799237510334,0.3782875201417357,0.24843142727702303 -1987-10-05,2.715402436341306,18.17581895193664,8.104653287626729,0.7217641142570776,7.165342595193834,475.8289475816079,0.0,0.4724692217630797,28.083382126795666,0.35878498219560584,0.23365760159173282 -1987-10-06,6.516072720820836,18.753433487059077,7.963507240188456,0.2980077926705453,7.473344052799135,935.4084626862908,0.0,1.156504623971684,26.690924079383922,0.38683902383573476,0.32819503055170623 -1987-10-07,20.53966649394404,15.507408510484815,7.538489438652087,0.30117917976729336,6.047739715892724,3517.3600964434186,0.0,4.9513749409973045,28.545436427703677,0.5718082069670839,0.9675595202108065 -1987-10-08,1.81269571232983,16.722594943208946,7.836730979463932,0.4666290344241276,6.554877409435671,1251.7643438836628,0.0,0.5043020163424461,43.000914133201896,0.522048205428022,0.7066232043057925 -1987-10-09,1.7880274356079853,16.641096540751963,8.880088329705053,0.9542731133953896,6.2275681747371285,800.5322191903474,0.0,0.44209373814272235,38.95994251307855,0.4746862540168209,0.5272937973114938 -1987-10-10,0.7088404024925546,16.980431566721908,8.2471953942389,1.0431521508363852,6.578270965972254,474.5611341968091,0.0,0.15610139127232203,35.79364874837728,0.4252292779035627,0.36701222211871387 -1987-10-11,2.6986700005351727,17.990320187977613,7.058528407348003,1.1581744726590093,7.342548510075889,602.6964815705555,0.0,0.5396485026354183,31.91536392328955,0.4032300534334017,0.32107716367588185 -1987-10-12,0.8460017578139614,18.57068402024293,6.527418190406332,1.4150875287747573,7.717572984772026,340.22161601161343,0.0,0.15166730693714148,29.809873058271272,0.3571201804257039,0.2320997309597947 -1987-10-13,0.0736272224366677,19.33230706663456,6.834428105901795,1.3869523773550236,8.00498885233111,169.7260499105538,0.0,0.011289240783260823,26.259830515770616,0.3067669487535491,0.15280496985053182 -1987-10-14,0.12536323379090006,20.460307141227702,7.552136723152424,1.4048424091522622,8.383323632925496,111.56246132052011,0.0,0.016228789290970685,22.48152725033018,0.2633549639991785,0.10193992645348425 -1987-10-15,0.05285746362884052,21.16190565421956,8.054552600942912,1.6422780458608248,8.612670823747832,71.16352939086096,0.0,0.005757046307224671,19.189730691639813,0.224163120285882,0.06723469629270115 -1987-10-16,0.0074431518053424284,20.613863536751186,7.853205043467745,1.861821697328224,8.404637546215614,44.62347771112923,0.0,0.000679715289721149,16.28708510160359,0.18982021895378523,0.043870123949987565 -1987-10-17,0.0701133126350107,20.693701884649304,7.283578313773883,1.5485973934357926,8.554954057281185,32.167482524177515,0.0,0.0054188425078918745,13.873337802090198,0.1624317625160348,0.029382487618973586 -1987-10-18,0.25890170995394063,21.042777030384254,7.807508303393145,1.3836158849283866,8.620678794845238,30.62584272873782,0.0,0.017114255019702374,11.849039454069779,0.14104931465896864,0.021732516615421096 -1987-10-19,0.7329055887300604,21.27675822238461,10.296075282080537,1.9358276055524049,8.188578795389,43.17421526933883,0.0,0.042877980988311304,10.28465214392434,0.12834708612757176,0.020675652922094927 -1987-10-20,4.448151469817568,19.71582265808713,9.039233851061617,2.0545173278946365,7.740126462861998,203.05330199813554,0.0,0.2863044212068635,9.445877260750558,0.16185602521109305,0.05705295594615807 -1987-10-21,0.22803714388300844,17.37613558158035,7.110766686354776,1.1733361224822063,7.090290955457967,63.90882821834276,0.0,0.015258363780030537,12.004920214725797,0.142505668660745,0.039462104126438115 -1987-10-22,0.32013214411481594,17.348540388949015,7.00792443396898,0.9696457949899028,7.1048162983443195,40.36994267463578,0.0,0.01913919368828121,10.715840918425451,0.128561612249266,0.028602200046129997 -1987-10-23,0.14333081276935455,17.888169484119736,7.289306082802128,0.5184274308798655,7.295605761544594,24.873875186494363,0.0,0.007644296521380656,9.66910529819582,0.11430823538348027,0.019782644999748758 -1987-10-24,0.0929957120872518,16.06644196206632,5.528204968288187,0.6046265287673269,6.849715204584975,16.270306786269387,0.0,0.004369653805188528,8.568779457164693,0.10090381467851882,0.013542916454426837 -1987-10-25,0.0,16.57991566606339,4.39699979340791,0.5671659859453051,7.289382476039177,9.109482941164122,0.0,1.7763568394002505e-15,7.634028089366031,0.08893125722247563,0.008815802094758782 -1987-10-26,0.33799981966729226,16.688541555385235,5.315749621505779,0.6827828440899173,7.174728250960653,13.95042579248461,0.0,0.012536705893230027,6.6728772679804615,0.08167197007111625,0.007647571495607971 -1987-10-27,1.4421188013034525,15.096844715187284,4.084927441864062,0.6647698886614478,6.717757030682378,40.770055358811476,0.0,0.05367491330075569,6.143439476372652,0.08836661674166235,0.013151008087116505 -1987-10-28,0.09079267600037097,14.46420907489277,3.3550899789541764,0.9704882920140404,6.583135395822609,13.899898595508592,0.0,0.0033216740319901017,6.7053254499923804,0.07917017360977276,0.0090664621091626 -1987-10-29,0.14759133130683594,15.980890036454726,3.145129305624885,1.2855094964686684,7.25330270330742,9.518033539766774,0.0,0.004867412166337848,6.024862163204399,0.07190490301951885,0.006642976117025784 -1987-10-30,0.12570980815283345,16.413834425263378,4.493272471329153,1.5676494251232636,7.22132919651674,7.058787176576476,0.0,0.0037071112520704053,5.4020725649957475,0.06439492104844581,0.0048887276848841804 -1987-10-31,11.978179918012856,16.24886491926107,4.68797564112685,1.4995465426547618,7.119108035624043,471.168040002697,0.0,0.7160269613250989,4.842022918031642,0.19594397183711565,0.11220801454465924 -1987-11-01,1.1496126905775317,15.947832420699212,2.174351341408648,1.4452113918052318,7.387623298397785,178.6419148984934,0.0,0.09805153515224885,14.697283511010635,0.1846056087014403,0.08797193841551847 -1987-11-02,3.4657665720965154,13.194263477517689,2.1219832170011337,0.6881595427659585,6.281060050761415,262.4975285375809,0.0,0.3005550685380234,13.777997717890003,0.20087817592558552,0.1030295464552331 -1987-11-03,1.335965996751856,14.582529606325345,3.548095720086585,0.7126276808928024,6.620361224779125,163.2735258109576,0.0,0.1195997915757161,15.319486952542112,0.19402474723059446,0.08527822744607312 -1987-11-04,1.9658135630492872,14.344758734728913,3.8700451708981256,0.9520603537683424,6.463714969774942,176.49075467363096,0.0,0.17245427861272344,14.70065668652502,0.19415309131757694,0.08177082954378241 -1987-11-05,1.4665909230518266,13.492967755365267,3.338710698479667,1.1139587837001703,6.203682702441028,146.8005943439828,0.0,0.12697245287222314,14.756315235098638,0.18898587004889764,0.07256239849373128 -1987-11-06,0.7579950841088556,15.088595923616774,3.3273787707832527,0.6154286414037623,6.881770591284854,96.3229559128514,0.0,0.06262864323530115,14.440403834850779,0.1770510545428239,0.05677084712031153 -1987-11-07,5.5607952859977114,13.3977115239887,2.324980375827174,1.0404805144374067,6.347553814009205,369.75663426212515,0.0,0.5029422792696217,13.352803796623268,0.22033062039191795,0.11353554513504066 -1987-11-08,0.5552925687031431,12.678553238590462,1.9466035019413293,0.7455792655690121,6.11850792689387,138.1589145824421,0.0,0.053214159568087505,16.76939399289543,0.20182086558660253,0.08200894562920005 -1987-11-09,0.3815628279870768,13.755041514027607,1.9518054574956607,0.9651698223066584,6.558033292867476,80.5298626822964,0.0,0.03335278899522892,15.44062653722638,0.1843177907899692,0.05846242402310307 -1987-11-10,5.1439769862144455,14.460076309505546,2.8110863393729373,1.1285479599765031,6.716932970828716,352.7846256031076,0.0,0.478236649134681,13.987263584593292,0.2228659963352132,0.1108748850350189 -1987-11-11,0.6720958271783104,14.831425209965241,3.3117121557585203,0.8473996916469912,6.792967090816161,142.48649792197756,0.0,0.06490839405334015,16.835491871650735,0.2039515399685823,0.08205760091219444 -1987-11-12,0.020424671797147145,15.697666107873786,4.038702130816258,0.982429686253826,7.039815048136029,60.480376650883805,0.0,0.001757910348009109,15.393978214643047,0.17956735447887565,0.05368330930635567 -1987-11-13,2.1841388367793733,17.01537754155745,4.635268459555401,1.3341238606998065,7.508711802006036,151.458579117,0.0,0.17754586405823636,13.498610399795247,0.18269340772483625,0.061979291897082636 -1987-11-14,4.12896010710337,14.382936789412264,6.197118500672658,1.1663025906831799,5.994257389103805,287.1099299397298,0.0,0.3619303021923246,13.602962184473531,0.20656488604722054,0.09545484123465058 -1987-11-15,8.96338081496404,14.62303663776861,6.490791224606207,1.1031100853712987,6.034104827657251,762.2503165281112,0.0,1.0383798315734314,15.840049877583853,0.2889431698570033,0.2202452844112341 -1987-11-16,12.935055835990667,14.142870440550773,4.890655520708989,1.408091416195869,6.202892598823151,1628.646060874941,0.0,2.178909285236351,22.074566361015854,0.4078383889103867,0.4751404559134585 -1987-11-17,1.0822943072991629,15.516113419014248,3.2800253184285,0.9177494036098388,7.105457608918804,572.8740855774294,0.0,0.20275296665584874,30.884714696411994,0.37239400576770965,0.34016623960263986 -1987-11-18,0.0,14.850944897386482,2.7583744475914367,0.5690163982079772,6.912531574722379,243.25060885584554,0.0,0.0,27.71837362245275,0.3229002808937448,0.22143223416805724 -1987-11-19,0.0,14.562768045099135,2.721190056227445,1.048052071195212,6.801475593195985,145.6945424943889,0.0,0.0,24.192341692535557,0.281824396856728,0.14414197712839935 -1987-11-20,0.0,14.665009206775249,1.7561478354082345,0.9516723747186266,6.98842757686643,93.92529113892994,0.0,0.0,21.202453716735683,0.24699422679059624,0.09382965243766296 -1987-11-21,0.14859813475979514,15.073895397819605,1.3690284750882318,0.9037801858726208,7.206633325342133,71.30109269010116,0.0,0.015640192896357014,18.538203014884616,0.2176885780678714,0.0634601441613224 -1987-11-22,0.0151261183029661,15.42093460420136,1.3553025420488778,0.8246853837689915,7.350582631279339,43.11947834592488,0.0,0.0013815443777858514,16.28561995968534,0.18989265239921657,0.04151993176305579 -1987-11-23,0.08032334639793888,16.029300284606474,1.6948216856966383,1.0091717598029315,7.5577696494967075,31.32873522877138,0.0,0.0063544346272046,14.180306104921515,0.16612667533360115,0.02799508068580376 -1987-11-24,0.0021930405091050253,15.93893656620854,1.8755177361776352,1.3910706629046925,7.501549065370387,18.700623763722227,0.0,0.00014986572592641132,12.365089746097903,0.14407046892726058,0.018246301028376207 -1987-11-25,0.005348879210059159,16.02653568232369,1.8367905897653296,1.2746424357765187,7.544912479083978,12.121610861504472,0.0,0.000315851274177042,10.744365680194095,0.12522689455154365,0.011925577415828894 -1987-11-26,0.0,16.454710057427278,1.9736951466998305,1.120599970782473,7.705366071274057,7.783847049227281,0.0,0.0,9.337296266435642,0.10877317797527364,0.007762990395566065 -1987-11-27,0.0,15.72949628734935,1.2775697524017198,1.0584374744920646,7.497831640683332,5.054906778650255,0.0,8.881784197001252e-16,8.089235728999773,0.09423411794240077,0.005053341886965051 -1987-11-28,0.0,15.571855349361913,1.060202280300233,1.136518800762578,7.462387026909901,3.2895873160193716,0.0,0.0,7.040485274547775,0.08201688539684904,0.003289488061345561 -1987-11-29,0.07299380278426522,15.406650976343341,1.4472988831267233,1.2354184854334271,7.352631262782677,3.732892251398433,0.0,0.002436396704984814,6.1344799064043345,0.07231286480365183,0.0025122795127566224 -1987-11-30,0.016569370033128347,14.98585483735726,2.1859236062826555,1.2266906839016851,7.085712604238011,2.0938230285662836,0.0,0.00048547341602327154,5.422065588128779,0.06335641403745616,0.0017092963850635396 -1987-12-01,0.20451794827115533,13.483662557777144,1.315900939920738,1.2700439289424819,6.600127752848311,4.662318254876124,0.0,0.0053739990570796925,4.776731436057886,0.05802818185908095,0.0019309423552536598 -1987-12-02,0.003863463427981629,13.396634034182188,1.6394582334937275,1.6867589317245106,6.5203409758878434,1.6314904594047566,0.0,9.180833063773342e-5,4.417143596282223,0.051501738192074084,0.0012709318935860555 -1987-12-03,0.09730388488162772,14.199294633315294,1.742732334345324,1.6376321141548644,6.833665712760465,2.2138462448656844,0.0,0.002077245905311609,3.927091121707892,0.04688147637213902,0.0011436083047682984 -1987-12-04,0.978925516914744,14.761089751781487,2.1743188706055743,1.3161233560872694,7.003788135536209,14.754092471952307,0.0,0.021258534009381047,3.5536815598280644,0.052801802811247286,0.003981361108025902 -1987-12-05,0.4311414534353475,12.056292048566668,0.930788819043419,1.2113686701518032,6.091594402009775,10.19691892695538,0.0,0.009740234793438995,3.9885811340141393,0.051486774960124215,0.00407477359529183 -1987-12-06,0.06582470018406154,8.65355559462295,-0.9328925260496946,0.6194932765543535,5.043092136371494,4.2347866847867826,0.0,0.001410794324818318,3.9583781133020035,0.04687923745264335,0.0028673003735261013 -1987-12-07,1.5926835498580492,8.853432510079315,-2.6138087795372718,0.965076455160206,5.3285462677829445,27.03248608448809,0.0,0.03832268826472229,3.6767249067363528,0.06138503990003019,0.007701673202144329 -1987-12-08,0.07932388716772715,10.538817188233429,-2.7276215173522727,1.0731236643499298,5.948190638123935,8.592401248294891,0.0,0.002061685820354431,4.787127967340487,0.056690868381387344,0.005327349398997323 -1987-12-09,0.016534289095948368,12.650203083792164,-1.6454089986623368,0.9906394623994148,6.630530124912642,4.0138213002375345,0.0,0.000389213798875937,4.36985187339373,0.05109842818588217,0.0035271176239858658 -1987-12-10,0.06684872193749622,13.619355919809758,-1.0602032258055958,0.9911057017213984,6.9447686980451815,3.2582328400680343,0.0,0.0014073792606854318,3.888111603728406,0.04607260936286245,0.0025102820820722444 -1987-12-11,0.03800967258564529,13.146287696977028,-0.6522757670870766,0.7755295245150345,6.725620272567025,2.1851230421219587,0.0,0.0007140320668811845,3.4849384753633292,0.04103996006552715,0.001742797582613892 -1987-12-12,0.2328131762254681,10.894127354977329,2.6951472207652016,1.0386345973978204,5.303620665723379,3.8172220324988477,0.0,0.004033424468146529,3.117898716968969,0.039033524341777585,0.0017486277750838873 -1987-12-13,0.3961152135439503,11.08848448296085,2.0465976979068663,1.110008843328072,5.519335642662401,5.873903566929987,0.0,0.006885660369818636,3.0469795374213478,0.040109722070053186,0.002186718007931437 -1987-12-14,1.634409791569286,7.957594391910899,-4.446007888407211,1.0140459159928967,5.189004758853499,24.404240956543532,0.0,0.03453964570911516,3.118228829535338,0.055365021290356156,0.006682621954253304 -1987-12-15,0.5507167859217071,5.951053532157951,-5.935858156914343,0.5574581698121264,4.626572676683936,15.29960379377187,0.0,0.013645934354931,4.329603541601251,0.056852426699816265,0.0064278679033207935 -1987-12-16,0.7034298126872441,5.195092247990333,-6.125593296320202,0.44312846192851096,4.395961990354731,17.1205352533339,0.0,0.018351492807408776,4.492824469726341,0.06053284331327226,0.006978525778314827 -1987-12-17,0.044618319004526584,7.508475509507779,-5.537772949956884,0.6781431529497515,5.114912552848949,6.435674994315576,0.0,0.0011595177231757611,4.8038879074889085,0.05648181396839347,0.004719245993659898 -1987-12-18,0.03053856041586413,8.067469473092395,-5.063548282705574,0.8634980099047518,5.2734927328433985,3.7020683060304576,0.0,0.0007288905406153297,4.422986495099641,0.05188055082093366,0.003182991689881043 -1987-12-19,0.0037004288175595,6.5164226057095345,-7.201634126082665,0.6016956295331551,4.875741555155454,2.177604934731943,0.0,8.05489319244423e-5,4.050980052584928,0.04723428164337565,0.0020842427543226977 -1987-12-20,0.0,7.423225823649478,-6.447497681921006,0.5737678579926864,5.136771789954613,1.365332244467423,0.0,1.7763568394002505e-15,3.7161514508052167,0.043290647700076734,0.0013567440736548934 -1987-12-21,0.05805787196842645,6.459245144402133,-5.758910844175531,0.727519886047379,4.785413615822145,1.578707174677711,0.0,0.0010637886745031438,3.389576838117261,0.04016260951919386,0.001045154165818946 -1987-12-22,0.0,8.865721258599676,-5.704297141111968,0.5870296926761764,5.580711726913654,0.7420826686490819,0.0,4.440892098500626e-16,3.165558914521077,0.036876617532010325,0.0006803462397024081 -1987-12-23,0.0,9.47523148589108,-5.870049605487843,0.7069359746757354,5.79348631241308,0.44763746332063753,0.0,0.0,2.86377256265892,0.033361010912607014,0.0004428734257730016 -1987-12-24,0.0,8.23146394508197,-7.149671165300957,0.75492795363666,5.427484286565225,0.2885961683890753,0.0,0.0,2.580570631728547,0.030061900211068804,0.0002882897851272127 -1987-12-25,0.5381961399344173,7.914556697027688,-8.365445312075936,0.5547082063958164,5.351007947494888,5.094524853886928,0.0,0.007511394535339777,2.3416550242155116,0.03354831573101165,0.001331383882907701 -1987-12-26,0.5616360966592836,8.335337644627913,-7.382917297394843,0.5514519825369519,5.468244827806681,6.990786447071727,0.0,0.008707892494498881,2.6167840106574887,0.03702644171805112,0.002192573605059193 -1987-12-27,0.0,9.689352546165493,-6.4655948045096565,0.6594497764404369,5.8885862757588345,1.9659394100032361,0.0,0.0,2.8814995871120637,0.03356751874215347,0.0014272623659340967 -1987-12-28,0.016875807600525247,9.775438130607972,-6.790356498717626,0.9079554421259745,5.926697052188045,1.1234573182352505,0.0,0.00023457057096935852,2.5918579558497807,0.030389981622614436,0.0009647975535884595 -1987-12-29,0.05345119762656413,10.547295483717056,-6.198900923939676,0.9560121443352516,6.169734320984782,1.0866254959449053,0.0,0.0006771498239650439,2.34499314652546,0.027940252302803455,0.0007311439260054374 -1987-12-30,0.04312651282425042,10.901231236833013,-5.286087645945014,0.8727215224870971,6.258504831427715,0.8424083991399006,0.0,0.0004990281441166408,2.146158658776147,0.025503689592150196,0.0005519247390547337 -1987-12-31,0.010821138978969035,11.292051874407392,-3.868127034410678,0.9845713229531006,6.322679478056096,0.465282414509455,0.0,0.00011321039502349903,1.9558091743233905,0.022909911282280093,0.00037651501973987955 -1988-01-01,0.0,11.98761970012572,-3.9466349675380776,0.7426837971043513,6.57517696628141,0.2540928572403442,0.0,0.0,1.7548653121080164,0.02044299243269332,0.0002450935816447338 -1988-01-02,0.051247890121825214,12.264163224790499,-3.0613807694097708,0.90124994493478,6.620082453157317,0.44275649949152907,0.0,0.0004325276097849953,1.5584620123587154,0.01875203021462177,0.00022540312049034906 -1988-01-03,0.005322355466989696,12.446305844432178,-2.620279501705106,1.1189182919928429,6.655205146001376,0.19835099793588276,0.0,4.056046755110225e-5,1.4283861019037116,0.01670173257314553,0.00015290276786929013 -1988-01-04,0.04812973616071687,11.998640072355355,-1.5187214846209431,0.7429172054192805,6.394419880025308,0.3206361160379727,0.0,0.00033189659940253274,1.2714224653314037,0.015371889502586973,0.00015006867575725622 -1988-01-05,0.21830510930715388,11.873318116663704,-0.6080948756460879,1.1019604551978128,6.2490735303370375,1.0928454040419133,0.0,0.001493450640777244,1.1760778532673735,0.01624361719130783,0.0003250875772111092 -1988-01-06,0.047525304450096485,12.274894910461212,-1.313816343842521,1.4104987254507364,6.477839884815772,0.5095934484633738,0.0,0.0003212425689500323,1.2461903121246798,0.015070910785697618,0.0002605306604263806 -1988-01-07,0.002037723470011387,10.100670441167386,-2.9979335958961504,0.8801070726201127,5.832659526115713,0.2031677128312231,0.0,1.2492402169249957e-5,1.1512249643227332,0.013434729284798504,0.0001714953677746857 -1988-01-08,0.2346865382433471,9.61962967945393,-4.6543711013598745,1.2525851253794806,5.783640381009707,1.0574184884263014,0.0,0.001443827065493647,1.0389273886320631,0.014836739714235244,0.0003314794242433541 -1988-01-09,0.17891887805798745,9.62906707280156,-4.24900227812734,0.9354576766774179,5.760796241341791,1.069669062029899,0.0,0.0011786800589760338,1.1483710705043018,0.01546202901569384,0.00039524897704514727 -1988-01-10,0.5359496404632709,10.105430218438439,-4.7572967355231395,1.1462914049310948,5.956556916000585,3.064440340320564,0.0,0.00418262741365627,1.1972671062145523,0.020190801306562686,0.0008941553202437196 -1988-01-11,2.9083177812396634,9.525670966741256,-4.861639961605516,0.8147496142008273,5.762103013358431,31.480492945996822,0.0,0.04691924643111989,1.557487364278943,0.052023605552982945,0.007726201486429482 -1988-01-12,0.05110755495703189,10.283734348817527,-3.373367994862359,1.287453938621684,5.926598908252804,8.49605044976325,0.0,0.001111787893821152,4.024781822252895,0.04748135091616013,0.0051986801672613174 -1988-01-13,0.036141545587959456,11.559268563102323,-2.3515374739997617,1.3462462130628123,6.303959530711548,4.125954732302962,0.0,0.0007135375442590686,3.662306924859203,0.04308441996795461,0.0034927430829872685 -1988-01-14,0.1063061355864212,10.724694279666476,-3.366591080151828,1.4347572334453405,6.08209353738702,3.581233678951366,0.0,0.0019099499302708128,3.2996775206216444,0.03967740294900353,0.002564429680310972 -1988-01-15,0.060141269773063735,10.436887728986141,-2.776500920315027,1.2688764626307778,5.930264432603247,2.4326644263665194,0.0,0.0009923641499166164,3.0519177942322293,0.036253380505385985,0.0018204252955193107 -1988-01-16,0.05494891454813993,11.248840917544014,-1.5322090665458268,1.2744237364657798,6.108812758448993,1.793706796315003,0.0,0.0008301875087069407,2.796848449436473,0.033221507958055604,0.0013114196197971442 -1988-01-17,0.2835797002731648,9.672857977576832,-5.250795114293884,1.3720989028848245,5.828916812961832,3.5776264130332294,0.0,0.004088453691845295,2.5544514576866635,0.03306114098080108,0.0014762000082988401 -1988-01-18,0.17445667726598274,8.895796683069973,-5.720177389929421,0.7770105813390408,5.5879675669364905,2.8123695934955038,0.0,0.0024650007171722055,2.555677929548711,0.031804219231106184,0.0013362695981788677 -1988-01-19,0.09457146884192197,8.771630044828488,-4.205103513771742,1.3247808356575823,5.453235187100105,1.8623935895059498,0.0,0.0012721209424731428,2.469805844484285,0.029873259018337282,0.0010635479100358446 -1988-01-20,0.002927888379926745,10.78892886498826,-5.424903104371622,1.7634508565294957,6.215474947755961,0.8021016814451462,0.0,3.6392343010781345e-5,2.3258448987017815,0.027128625846838294,0.0006978609745221235 -1988-01-21,7.198273651067793e-5,11.57257972948818,-4.933741116503751,1.6926311582222815,6.465218134586092,0.4633810484643596,0.0,7.998016410488068e-7,2.082043139587373,0.024255231097213406,0.0004543964765632672 -1988-01-22,0.03667445956220762,11.92629066598295,-5.042678897563056,1.5809175814027654,6.591861931084403,0.5354736948012595,0.0,0.00036595690963804606,1.8527989579870718,0.02201108569998194,0.00035151309531257524 -1988-01-23,0.0008912278733875172,11.270216141262765,-4.473234890785825,1.4621939270611566,6.335083987819678,0.2552875718930321,0.0,7.969492434028373e-6,1.677399458697861,0.01955094990408237,0.00023003197688788513 -1988-01-24,0.0013426514664910446,11.262111566969864,-3.5728451380294084,1.5248660849918798,6.2776208690111694,0.15884093514617195,0.0,1.0713191763826692e-5,1.4973464501302751,0.017458713071317928,0.00015137124716108852 -1988-01-25,0.0956107866539505,11.533379854232145,-3.4988575057597484,1.659272960037509,6.36815657010604,0.5603777293186588,0.0,0.0007058205211861596,1.338643227096281,0.016708087935498064,0.0002060071687562984 -1988-01-26,0.06625687543374925,11.235020390371089,-4.7417475621407625,1.2081301867160186,6.33176226038282,0.4773938045242997,0.0,0.00046275956637764626,1.2789054289918222,0.01567022985774513,0.0002045629647635651 -1988-01-27,0.03601883382525324,11.49549604544108,-4.865557861732777,1.2638726252398702,6.426656341671883,0.31571898196389714,0.0,0.00023353146579070672,1.2003270392218235,0.01440259212630518,0.00016871949118434524 -1988-01-28,0.030548197561607964,11.602016310587786,-5.0754344377491485,1.336130965642937,6.47094100192391,0.24418375600526124,0.0,0.00018145437963477604,1.1012681491398064,0.013184893935262553,0.00013745756883539175 -1988-01-29,0.039566879495597146,12.241678577764064,-4.280903030215056,1.4918927693886428,6.658313019450525,0.24238757667061897,0.0,0.00021614050514942584,1.0073385412425895,0.012195739152304257,0.00012238900171772073 -1988-01-30,0.11779476681807215,12.42934356461778,-4.724471741437611,1.4019431319079887,6.742577656552262,0.4971194397578269,0.0,0.000618482927531458,0.9284573943876093,0.01218812912115973,0.0001738426502825966 -1988-01-31,0.146235203380311,12.298130633009414,-5.321852154825473,1.4693044409236586,6.7166761605454885,0.6578231393669774,0.0,0.0007772848311685399,0.9263806237491263,0.01249524797481693,0.00023151649295594402 -1988-02-01,0.004254943994770991,13.241595089228849,-4.626694800963722,1.177769980547503,7.02207154019555,0.21269706132861235,0.0,2.1545313085394834e-5,0.9501879770860417,0.011118613649986927,0.0001539869478412186 -1988-02-02,0.0003067458170819483,14.218818409678807,-3.2997781544460065,1.371167071887188,7.313119631158353,0.10604461569944616,0.0,1.3707614249726559e-6,0.8405835805048909,0.009795802822653889,0.00010044698433503496 -1988-02-03,0.01567088674068367,13.983807935543226,-4.5657164203373775,1.438585808800975,7.280127707446311,0.10628235559499238,0.0,6.197571161730558e-5,0.7364486235358408,0.008761682934284126,7.482298344299113e-5 -1988-02-04,0.0015111857561421055,13.42856564805691,-4.704387422417836,1.285830920054411,7.08467398459325,0.055787249311238345,0.0,5.297463579509443e-6,0.6591441948810041,0.007696187766546945,4.951286262956865e-5 -1988-02-05,0.0005886249054974982,15.122870759681652,-3.0306939847961525,1.5620434754506785,7.6248019192698475,0.03400418670950307,0.0,1.817793187980669e-6,0.5811958633217689,0.0067773952839728195,3.2507332334089046e-5 -1988-02-06,0.0,15.55578770120913,-3.1207320399168976,1.7342121655216542,7.786790827303535,0.021307813011055703,0.0,1.7763568394002505e-15,0.5064914245592597,0.005900282083216467,2.1160745505142747e-5 -1988-02-07,0.00035399845485500285,14.903486040632865,-3.501403505011012,1.4704053199413551,7.561082649678712,0.014325165343535172,0.0,8.263489906173245e-7,0.43956198669105073,0.00512472330116069,1.3900474610127306e-5 -1988-02-08,0.012838999882320724,14.68947016132799,-2.225555052673801,1.7313549587184307,7.409691155052269,0.026453606296448353,0.0,2.6569253544151544e-5,0.38347751150092807,0.004616818958844676,1.3094117003517721e-5 -1988-02-09,0.06303418189732936,15.842016951906636,-1.060389352158537,1.7696386561905582,7.761252817388574,0.09268092607174697,0.0,0.0001264632256457593,0.3464945348964004,0.0047707322041302645,2.777954906756217e-5 -1988-02-10,0.05045658024034351,15.310998232162635,-1.5854235936372536,1.817606636704899,7.594375139837873,0.09215908235313042,0.0,0.00010198481799157666,0.35560182052446,0.004730305372607125,3.3611875945733415e-5 -1988-02-11,0.0955888245320879,15.493078233172815,-0.7824252673848324,1.7203752587515917,7.599470251392253,0.16145286628174377,0.0,0.00020372536605541003,0.35373841475318724,0.005234358038268901,5.289994806056409e-5 -1988-02-12,0.06367776064231398,15.637423265082907,-0.4098446805582357,1.9085036826472377,7.620549332956689,0.14019649815303062,0.0,0.00014305594213223638,0.39138746924353374,0.005301201742806808,5.621776041775386e-5 -1988-02-13,0.020104658655837646,16.130097705305882,0.1196058250742346,1.8842982348567607,7.761785980473305,0.07415740042764196,0.0,4.3354791151847816e-5,0.3962220359104727,0.004849924041363371,4.319652722217923e-5 -1988-02-14,0.043117190336651824,15.085695293367742,-0.18649391457408573,1.7446786183886347,7.380258789236187,0.08859896349474666,0.0,8.766070920227659e-5,0.3615000093553208,0.004713516356138117,4.1466546955907356e-5 -1988-02-15,0.208376979631176,14.499354055220827,-0.2759932944247864,1.9780557232098783,7.159099267446603,0.3633969131036869,0.0,0.0005068188144227437,0.35395275944105586,0.0065507606317221755,0.00010416342477450138 -1988-02-16,0.17231834348587802,13.497351933584984,0.018835889785881355,1.4518180370269436,6.737814466647341,0.4444481382871166,0.0,0.0005309424663209328,0.4940016647137401,0.007762176841374879,0.0001486493278567739 -1988-02-17,1.7160176690690419,12.565410908660581,0.937867340736453,1.2679100299857875,6.25376402776891,8.77978115900634,0.0,0.013241306111952289,0.590100994968268,0.02686472065549935,0.0021129481927604304 -1988-02-18,7.439575845966556,9.903172441122294,-1.9325075506410905,1.2941449719441975,5.596137093526935,154.30725071130328,0.0,0.23292845944498541,2.0602987324107644,0.11066710520593463,0.036842228923295986 -1988-02-19,0.006347263480128136,10.625009484790269,-3.1415203611672164,0.9625163174555986,5.965242919389684,37.74571287704387,0.0,0.00029696801637322905,8.576323794651904,0.09998230535591632,0.024027777211851196 -1988-02-20,0.3438208323050961,12.865972002201342,-1.670590373555621,1.1824290060396871,6.654927902976275,26.31767095546868,0.0,0.014715562587939712,7.695654256359453,0.09365444018206201,0.01788161545361015 -1988-02-21,0.7045607055688029,13.64545771127683,0.5002761123369776,1.6109123850909508,6.724348024162461,31.23163133246323,0.0,0.028579159739049786,7.114157724645469,0.09108277461489403,0.015991690489141 -1988-02-22,1.2120006180781902,13.849839705048373,1.0522484146159288,1.6543917117565548,6.732605554824461,44.47261891187932,0.0,0.0494989422805201,6.909980821225083,0.09461558329094852,0.017946784099656495 -1988-02-23,1.7704717827129692,14.122877733459283,1.4346029325119565,1.6449098381622476,6.787596556975106,65.44527500104174,0.0,0.07770256804897668,7.17607826717815,0.10422124917891053,0.023513876820754693 -1988-02-24,3.549171430280123,13.011249976770875,1.6332132958792251,1.7297314067372669,6.309872542420093,142.79624914583815,0.0,0.1879103156320996,7.893805079998705,0.13330292677910005,0.043918550176477764 -1988-02-25,2.3493249666352,12.88835960619873,0.25203443420559424,1.7380747895038402,6.44745911589676,135.83785559244984,0.0,0.1469378945783384,10.182245713118057,0.14598431162116934,0.050962377128179165 -1988-02-26,0.4133953210593289,12.820279532925296,-0.8509056653741075,1.9621396149453807,6.541954679524844,59.39651099824481,0.0,0.02577207765163353,11.116518306793477,0.13431568532211902,0.03709829182718727 -1988-02-27,0.07377839096801574,14.082517928086052,0.6988545479973807,1.8917218906575568,6.8520389137923665,29.066732582939782,0.0,0.004147743840879778,10.212741775032448,0.11983099355909486,0.02478079963338867 -1988-02-28,0.0852157069825996,14.61836493568526,1.0228887437558023,1.8763906184728527,7.020404332330563,19.30092046888226,0.0,0.004237778587875982,9.060175561203286,0.1065376147101344,0.016776400257655272 -1988-02-29,0.2918994867298625,15.404578537542598,0.7340636678525662,1.997080986411428,7.359754308717935,19.687169800790784,0.0,0.012999739872370186,8.031860230982673,0.09696616358343112,0.012900050515177017 -1988-03-01,0.8711391322517497,15.078142149100053,1.591619383626746,1.8194470899709256,7.125317829594788,32.99459309965182,0.0,0.036467554350534614,7.263763341326252,0.09476610458969341,0.013950050461126505 -1988-03-02,1.0002822288778552,15.524736921869467,1.5658639941396066,1.9210663534950683,7.303615720019595,38.3662383195511,0.0,0.04150120188037354,7.132358310204634,0.09473975458467822,0.015399998273478703 -1988-03-03,1.1391038036915566,13.777253515750056,0.4278153930957361,2.09206862380532,6.747739343739225,43.648549000417624,0.0,0.04753096576439586,7.105376079056887,0.09604260719704998,0.017261966779671404 -1988-03-04,3.8274131117003503,13.948571862038284,0.07421979998624229,1.8357127070563832,6.850343786490152,139.89706434370925,0.0,0.1924323231377052,7.281843454418973,0.12941531543592727,0.040537393024990626 -1988-03-05,1.00356019660632,14.128864550251922,0.4566478885584739,1.803882449949955,6.873725215155337,74.75901962954231,0.0,0.056616279091016075,9.782128186175951,0.12564596523122476,0.03500860247493783 -1988-03-06,0.5995647178370649,14.027069323638,0.4603066676081437,1.678694860207398,6.830119194900045,47.95516083508373,0.0,0.03215701529552595,9.493997600493048,0.11758316531123045,0.027685335435089165 -1988-03-07,0.4302999780923735,12.66319492057069,-0.007514213117310822,1.5006115515181733,6.355891185959705,34.186735043173556,0.0,0.021416073401896885,8.89469402531677,0.1086298649425181,0.02128276570849971 -1988-03-08,0.17380231544506394,13.812875489121824,0.026722099069881933,1.2002215699457,6.788719500656466,20.446663050728993,0.0,0.007940200104433831,8.296242179053634,0.09867028216405622,0.015063092951212567 -1988-03-09,0.3600299807677953,13.785238199937513,2.187809715989739,1.5045238135268606,6.491680357960392,20.158607433029093,0.0,0.014981124365147591,7.47448159521773,0.09126675406748366,0.012086463043768226 -1988-03-10,0.3668430303953084,15.0375904300296,1.5554624508836747,1.8872681974972465,7.079552782200131,18.06243631833543,0.0,0.014211199922528395,6.955328055261797,0.08529833432923906,0.010031584505291333 -1988-03-11,0.8414379490210979,16.47552122661407,1.4363179564483899,1.6272153123384765,7.6618742996299,27.831683008474215,0.0,0.03123996707397203,6.427480854376957,0.08467798130514417,0.01128683651758314 -1988-03-12,0.2485339421368798,16.772664507009154,2.3689369379119736,2.005784325118303,7.666285503425337,14.880757389973759,0.0,0.008654489786891928,6.308013751261828,0.07637934031514572,0.008664974012817862 -1988-03-13,0.7667398846485296,16.41120251934509,2.454932827659166,2.109562287252925,7.5040746865614025,22.738040424421733,0.0,0.02518379851354502,5.690898200801307,0.07522711036742939,0.009475096187723573 -1988-03-14,2.619042582228474,15.749582861149598,2.4147939186434573,1.847382135573124,7.2364922763415,72.01646445554843,0.0,0.0984916262601696,5.623254872092854,0.09601718338388746,0.021164647384879377 -1988-03-15,0.2526101683221327,15.44925981802907,0.3991454613573485,1.9300110119017388,7.352506994337436,26.179772369946903,0.0,0.010064031273641971,7.210423246236647,0.08693928506427258,0.015309588144563215 -1988-03-16,0.19325791868055253,16.460743902731437,0.2467055206862105,1.763066542452478,7.754517387752176,15.519820282811258,0.0,0.006922242263225353,6.515719540649677,0.07815504385772251,0.011019835977013646 -1988-03-17,0.1061269111868134,16.714569277882394,1.7159552608769837,1.8283054268416608,7.699477410653128,9.84604322565638,0.0,0.0033636650957161868,5.812685904390079,0.06895016088386782,0.007685562990353116 -1988-03-18,0.18376210504461327,18.080134440569786,1.9499735403743743,1.8045250613225112,8.216286334627817,8.616874354416712,0.0,0.005179145728373025,5.1352549117853385,0.06196294603020148,0.005791541732939933 -1988-03-19,0.7146239924970205,17.962180041862464,3.9355139864319413,1.907722709649076,7.9144875908515395,16.47516706150976,0.0,0.018962703168411976,4.568827777594924,0.06154863499167591,0.006657373155484165 -1988-03-20,0.2524112597686709,17.60101615000448,3.415403106517348,1.9403269507456904,7.83266462050003,9.621672920810298,0.0,0.006374139177238669,4.565658155210515,0.05612724572707717,0.005304193881363449 -1988-03-21,0.5354827581135874,15.838036335119623,-0.19678104884591088,1.8132794087432755,7.532548839109988,12.25912437488193,0.0,0.012782494766083174,4.171002539997721,0.05482736633405491,0.005399104581157849 -1988-03-22,0.11299615495422788,14.839376473899481,-1.4679645151943368,1.3356240981799798,7.255556897236901,5.937952224042119,0.0,0.002522648663654148,4.098749463824723,0.049063984124057734,0.003898673850069195 -1988-03-23,0.02266220665005117,13.934647006572124,-2.322089084262453,1.5619795769727165,6.980016584354673,3.037381805681954,0.0,0.00044981101243327104,3.688504838382726,0.04323258274843378,0.002606343810339681 -1988-03-24,0.10248612146498738,15.144619519060527,-1.6638006286217448,1.6415080872263403,7.373990960192599,2.928513200173078,0.0,0.0018227551303261619,3.2681505339360815,0.039265634327770804,0.0019741487181794215 -1988-03-25,0.013401309245650332,15.83976798850364,-1.3498106949228672,1.5818191063476277,7.605980834818718,1.5320887687054427,0.0,0.0002117592641005788,2.9459430936195803,0.03447435812657025,0.0013173215067837363 -1988-03-26,0.015851018649949342,16.748697722632045,0.41418555297067017,1.9906033486477301,7.805445880350891,1.0211061434726532,0.0,0.00021885391586909733,2.5751390578689652,0.030183279686480782,0.0008908381285837805 -1988-03-27,0.050327638124056856,18.11340319709548,3.456637918126418,2.2202035707092844,8.006588198546947,0.9927999273852267,0.0,0.0006103752208884983,2.2461000588717086,0.026751827452511718,0.0006728323966534384 -1988-03-28,0.003518666660170465,17.121773293169223,3.6557708524219032,2.100373654057708,7.563606929772671,0.498794626965061,0.0,3.7258676908112544e-5,1.9830969786716075,0.023142726865688877,0.0004436554510733607 -1988-03-29,0.001326050903325685,17.42882416770565,3.1309069846041613,1.6668117803973783,7.759043642136148,0.30175502930195036,0.0,1.2238297376368891e-5,1.7307306028965812,0.020177287010188578,0.00029066230841215136 -1988-03-30,0.0,18.288685216510288,3.1590567002565053,1.7477655221446469,8.102939364444378,0.19026375595373066,0.0,3.3306690738754696e-15,1.5033372754763472,0.017512861149116543,0.0001892075016483223 -1988-03-31,0.009767058949390384,18.640286191731924,3.992126043664453,1.9920128591412969,8.13372504067163,0.16742801262877707,0.0,6.764132871510745e-5,1.2961385084612287,0.01521291545749359,0.0001334645823698527 -1988-04-01,0.002934118577245261,17.976550860144815,3.361520812755811,2.0039625850472707,7.9392409047333325,0.10229706600674064,0.0,1.758893380090663e-5,1.125317755160944,0.013143370239221049,8.955734529656789e-5 -1988-04-02,0.0874872355685693,17.438050406400468,0.8985746607290404,1.5103248880902485,7.995844158766515,0.3695767681571718,0.0,0.00047448041019115816,0.9760229939346318,0.012389173929085926,0.00013054427445338907 -1988-04-03,0.052507602308286425,18.72977447990169,1.3154475461268544,1.5003840636679138,8.459494485337014,0.2849924214878132,0.0,0.00026390433836863403,0.9190157494445718,0.011317589099878476,0.0001251615212135304 -1988-04-04,0.6988651463132345,19.181625901929905,4.351722907399723,1.8883535520305532,8.291031824178805,2.9689935293400795,0.0,0.004393521410023915,0.8319054539569507,0.017832440804201505,0.0007504528070516734 -1988-04-05,0.1984485443694264,19.9635488854578,4.868462260106759,1.8637783706240745,8.543501773408384,1.7208443916952365,0.0,0.0014943584591833592,1.3148823632518098,0.017629280195583234,0.0007160476573929638 -1988-04-06,0.0909369498084679,20.153322616572048,3.99795030099634,1.5916809736221307,8.733759639865857,0.9959670885603894,0.0,0.00064818749981356,1.2934159064336341,0.016126773245257877,0.0005648094931203155 -1988-04-07,0.03944690082349467,20.938835149199477,4.478227227499602,1.1464433674635732,8.997354639420298,0.5775602855725385,0.0,0.00025157501851358344,1.178764677991276,0.014191339879648174,0.0004059704470137911 -1988-04-08,0.703999746729302,20.570753860461554,6.870231559653824,1.426849673059462,8.475742489953799,3.6713569389156118,0.0,0.005188021652244634,1.0319105633156174,0.020222179495618334,0.0010542206186073583 -1988-04-09,0.9062200514004621,19.53011820710637,7.900620344103667,1.674137456488355,7.803066532801438,7.1108096045988844,0.0,0.009372040725896147,1.485520387461599,0.02786215634628382,0.0021132797262389596 -1988-04-10,1.0539446777643424,20.96167204580075,7.559627366898724,1.4729045246404406,8.516619235357194,11.514679431648844,0.0,0.014653045791180208,2.07362111165537,0.03643402335479192,0.0036067884660030106 -1988-04-11,1.5587710304583908,19.80443369590589,7.724380820907168,1.0119380076424422,7.955897584738808,22.087806865859175,0.0,0.028850423037427797,2.6727818902067932,0.049294725776866354,0.006740752881576391 -1988-04-12,3.1603931203119933,20.464179993112214,6.986635271499424,0.9803690296123796,8.38825923943136,64.44134127270877,0.0,0.0892635864338387,3.65516100389482,0.07939658982625983,0.017979613019075042 -1988-04-13,6.669265088016405,16.919549708271056,6.617084493991943,0.7730924497865624,6.874679925647675,235.5302614951455,0.0,0.3345035994803114,5.830551911428934,0.14561440275023432,0.0626369976126028 -1988-04-14,6.828845340298831,14.187808381970587,5.631885330298897,0.4958927555815075,5.867774656676153,418.8262096753351,0.0,0.548398682332194,10.995391094132518,0.20764028329325596,0.12427554228153151 -1988-04-15,2.278568439254147,13.08636866384403,4.012668213632948,0.8305081561430387,5.742783227409385,257.36649003574627,0.0,0.21911644686651455,15.961848323732221,0.21248850226971175,0.11426125307585405 -1988-04-16,0.9804983435002934,14.800378982175095,3.633448721376397,0.599892748654624,6.528493493649896,150.31594169839127,0.0,0.09288268717042802,16.372389033617782,0.20214938598887114,0.08852146673347396 -1988-04-17,1.9846668403368328,15.483441994830887,5.211224384131426,0.291834529376128,6.519791972907866,182.8812329548018,0.0,0.18174628241657498,15.339955826937212,0.20182012126099313,0.08529687073577696 -1988-04-18,4.069778732130326,15.844877143246427,5.817596850641916,1.093769816379672,6.548644470411873,326.2812124687056,0.0,0.397590680427653,15.31780862262232,0.2258522627615727,0.1160633085227561 -1988-04-19,0.0530425173671025,16.560229889281093,4.404277048010943,1.568657144013763,7.118442024328404,102.79682167025884,0.0,0.005113711279192551,17.1170475637087,0.2000199212864091,0.07633039695895585 -1988-04-20,0.4616640044071724,18.031086147197705,5.956228825374698,1.4269120041647902,7.469635664487356,77.4678659859798,0.0,0.03926485671811458,15.000883084966334,0.1801282018381875,0.055666155379224105 -1988-04-21,1.074931929966455,18.887486252060484,7.7137390767763785,1.1577220557731531,7.496570422956907,93.14362751347785,0.0,0.08341288745168973,13.42389781216573,0.16890154740438162,0.04893689519982971 -1988-04-22,0.5903531073071262,18.17911344060953,5.327657180369245,1.261734402953606,7.635525141589423,64.37969806664296,0.0,0.04210027150561313,12.585817627879935,0.1534934657222995,0.03826600701705625 -1988-04-23,2.048367050995322,16.57393904058457,3.975362169940541,0.4637040695617393,7.177835468712826,119.73156630750215,0.0,0.1408262945863501,11.412359424140996,0.15680834738206306,0.04635225581663855 -1988-04-24,5.1815229150696265,15.147660722204597,4.4667141487379345,0.7785244065957153,6.49546178536594,309.17951178037566,0.0,0.41427319496972004,11.764895246516632,0.19741429490244577,0.09325235389394555 -1988-04-25,0.8144743929211485,16.69225032437094,6.331835995641862,0.7428719049501367,6.788659599471981,131.15588855279063,0.0,0.07008218870364924,14.993000444333797,0.18414637650442203,0.07137394806531425 -1988-04-26,3.539393100373733,17.670361847453844,7.807711082135189,0.5926273032251275,6.897151489220933,255.2452516957603,0.0,0.3104823676961175,13.91026065890651,0.20327664880763643,0.09373661279372071 -1988-04-27,7.942606744935841,16.347265467569954,5.5137488590144565,0.7866468749225307,6.7969764302306634,647.3583873396789,0.0,0.8693365755002578,15.311339751926093,0.27089272833967953,0.19338746547188101 -1988-04-28,2.547352822357466,16.620752154046375,4.687250174091509,0.9820014522471388,7.061340551380286,384.0463694618939,0.0,0.3158378046108745,20.391334644784543,0.26722017414738036,0.17397712237520135 -1988-04-29,0.4068137767078914,16.698210218537778,4.322255988775762,0.9329495490542437,7.151000369362249,166.11522569935477,0.0,0.04678650270142176,20.00937315544058,0.2378347512362666,0.12037486594591089 -1988-04-30,0.36396136605331136,18.51218217329828,5.284140752547413,1.0589668315381942,7.751532933808568,106.85799371067463,0.0,0.03691777390154044,17.798381511100775,0.21157899437400718,0.08397965656785754 -1988-05-01,2.19984258759564,19.0358243087333,6.7886516287384815,1.111633821164036,7.709355250274036,192.36521726655084,0.0,0.2070284801802682,15.65766764121826,0.2080279004636885,0.08618995388166469 -1988-05-02,0.4382984164216833,18.590925896871774,6.926417216108477,1.0169099555788892,7.482332583858261,93.3224347960897,0.0,0.03830748886960478,15.410463587353693,0.18462734403333775,0.06193849013878325 -1988-05-03,0.4551927944423733,18.466023377308478,8.09180082930847,1.2776520488568874,7.172917300167443,66.58699921520628,0.0,0.035373201301455215,13.753258253229456,0.1655188322680629,0.04570513843103984 -1988-05-04,0.4217768713747752,20.669788286755427,9.3548815908421,1.5579731685039355,7.904968198571256,51.2785269054805,0.0,0.0294575505305133,12.415752035649879,0.14954851776375702,0.03423724421616838 -1988-05-05,10.907992092192616,20.339977301478555,9.641260052823394,1.6875635172425778,7.677867947661188,686.0299365953744,0.0,1.0131776090608131,11.06044250277403,0.2559173852741685,0.17655809529407115 -1988-05-06,11.879494501309932,17.216282870076967,9.809796146552566,1.2528885284663818,6.097427622278357,1295.1829249659386,0.0,1.716554833133415,18.930660603571354,0.3589174413064167,0.37630185348892836 -1988-05-07,8.620967555816026,20.195971831583122,10.159631656114927,1.5156557485921767,7.471664141757128,1412.5034652377747,0.0,1.627920959911016,27.304673998460117,0.41850939406369314,0.4928298355476664 -1988-05-08,0.19524584903138986,20.29362940251698,10.406200911505538,1.390296379364531,7.451218081143682,446.66168782556315,0.0,0.03590933294316201,30.824537307565883,0.3613594661417941,0.3262767863616093 -1988-05-09,5.9928413272718455,19.00743673070457,11.04475617111979,1.4124780893903173,6.618352828018014,910.8398267794978,0.0,1.0540594336319824,26.716352382371582,0.3810399549595644,0.3728869731026597 -1988-05-10,6.717319335159953,18.376220557492193,9.323496521495066,1.3193133785552436,6.800846592873691,1144.3443086200045,0.0,1.285593903688678,28.642628740488277,0.4119194481441841,0.4384825574731732 -1988-05-11,5.823162413027169,18.36939635393585,9.728336989482592,0.977914125180496,6.683167035993418,1137.3446323135793,0.0,1.1826833229246416,30.792658483430266,0.4265495159876172,0.465512543706131 -1988-05-12,12.150220613553884,17.685624654941012,7.946091688601288,1.5848581042301768,6.817519775766088,2236.5956305911036,0.0,2.845623781752167,31.940117850915463,0.5136225836621667,0.7363150454943638 -1988-05-13,6.2828119092826595,16.50080864267452,5.415156391699407,0.8402864096391797,6.829027323472504,1709.137224475379,0.0,1.6212761265886568,38.13111263806138,0.5173921423843606,0.7261697288869913 -1988-05-14,0.4706682324281978,19.37541230808672,6.316164129061158,0.6279712991888134,7.895170124471918,653.0622038141119,0.0,0.112093843842198,38.3904667050316,0.4527059039636797,0.48977030719420556 -1988-05-15,8.017826612959812,17.50003808430954,8.51704217835425,0.5939946633737643,6.580033000385085,1518.8279744831677,0.0,1.8146273306638498,32.960221315468495,0.4773665066643249,0.5951212690173374 -1988-05-16,9.627501212527696,16.840771623687512,9.421195033600817,0.8026964750369336,6.001328134352413,2082.5141918448244,0.0,2.4322165321222666,35.71442864552462,0.5282027757779397,0.7577368731189658 -1988-05-17,6.490343965188237,17.312083966314365,10.153245348587346,1.0225934759232131,6.007127054392114,1797.1962880005374,0.0,1.7676036007907063,39.88942494828697,0.540292897914366,0.762394851459945 -1988-05-18,8.580215097697971,19.00238243027934,11.136172105803153,1.5034804714684489,6.56117546901582,2222.013380139805,0.0,2.4673375546194247,40.763035335574294,0.5748154506513983,0.8719718079421133 -1988-05-19,9.688296174685034,19.731394835651574,11.921308221921173,1.6301053902384333,6.685646175616887,2668.483035457106,0.0,2.983716530543232,42.71561027005486,0.6104700204065835,1.0219275839479491 -1988-05-20,2.565920430579067,20.610685154719548,12.14195558722714,1.4693174576507873,7.072945670733162,1349.1541402966525,0.0,0.764293793035816,45.091116482236444,0.5551722050981573,0.781601847310361 -1988-05-21,4.708120263288818,19.5595163505596,11.656749477123348,1.3923856218672035,6.67638039814814,1406.133587701428,0.0,1.2842191098677338,40.84568861363585,0.5306710228562587,0.7043273983144923 -1988-05-22,2.7535040642218114,20.982217248023108,12.421081914411138,1.515662678910625,7.173671507409837,995.4588026923474,0.0,0.7013627785244445,39.4710982143134,0.49188802063485565,0.5652768770444286 -1988-05-23,1.7575536293073235,19.33996835079491,11.300042982355347,1.6678507329893812,6.671021274662069,675.9108573642494,0.0,0.399910303092198,36.28707564151026,0.44319416591218963,0.42886093038741374 -1988-05-24,0.7337471088862743,19.986373256204406,11.436220786065235,1.5045568523972812,6.958207902692359,402.60775717888663,0.0,0.14805894938680886,33.162690885284746,0.39487054683285233,0.3017124715093478 -1988-05-25,1.844597668162992,19.748268163696736,11.701418406181912,1.2945748508476014,6.750650846218851,424.14345194533576,0.0,0.3323995804463513,29.447299732602282,0.36452941280150225,0.2470133850652275 -1988-05-26,0.7843254414412499,20.827236246460327,11.86411260218194,1.3363121375884617,7.25406547259482,264.24364761716026,0.0,0.12763768927998176,27.348279436522937,0.3277257944892202,0.18022882780857483 -1988-05-27,3.850611760906396,20.889287537196857,10.701962318998078,1.117681451460432,7.6064584646048425,512.0805220809988,0.0,0.5906118084667251,24.37365666007834,0.32879361268779855,0.20724986898356434 -1988-05-28,3.1869278409183748,20.985712862023167,10.859203612356117,1.2123950955054927,7.609846694212671,483.2920753665789,0.0,0.4798399350357476,24.2712173378826,0.31986879576058985,0.2079726426578414 -1988-05-29,1.9330359218141953,20.695977064906145,11.129718872888308,1.2985069274107313,7.391863602857152,345.67555049694465,0.0,0.275204731435988,23.621631975638202,0.29769457453123005,0.17728440156438763 -1988-05-30,1.3085411396759452,19.693732675006125,10.058081631615062,1.032963357534422,7.188195302592191,245.5203844923287,0.0,0.17119607407273185,22.108918001100218,0.27279753990505995,0.14147094437619126 -1988-05-31,1.5743948417528937,21.150795596416827,9.826213206817814,0.6226831333586331,7.936424800220564,227.66423578044072,0.0,0.19022323148967035,20.368837249422942,0.2556237931729824,0.12105523278047353 -1988-06-01,2.05354114416615,21.008000070232253,10.166902285741909,0.21420989350039188,7.785937382611494,241.87400437278066,0.0,0.23143512708015734,18.80812063264208,0.24302423148611846,0.11404068398926122 -1988-06-02,0.15849129336991902,22.17002633051995,10.372546606126852,1.3033532547981583,8.286083857764359,99.09477990557383,0.0,0.016120381656032745,17.94732230675905,0.2109204665801779,0.07668969161532786 -1988-06-03,0.17443980310746568,20.757856166636365,10.8992406460819,1.5910779350538438,7.474138290895173,61.8399362002525,0.0,0.015139134827778095,15.43870875468848,0.18188260695296757,0.05222654175116411 -1988-06-04,2.104516143350296,18.181143236225537,10.777479083887126,0.4276223337165952,6.215488478241371,146.8841302386074,0.0,0.17124581885405954,13.552489533283273,0.18239351268592108,0.06007172973502132 -1988-06-05,5.989049024949597,18.786312217604426,11.510468739318659,0.9996597671542988,6.28767242628085,421.5968116189582,0.0,0.5701988358513832,13.936425917052919,0.23211828887760544,0.12592506888363866 -1988-06-06,0.41017189228055606,18.816033506216183,12.24925559699548,1.079211334390879,6.0415745470841165,142.8393093580672,0.0,0.04137043581594291,17.68029581782225,0.210741697354122,0.08827056137557647 -1988-06-07,0.09578526030589016,21.743582091081954,12.421230494807364,1.8064248537647567,7.531255399304412,68.138437206598,0.0,0.008690303212628175,16.142966091188836,0.18917045582046446,0.058783213783436476 -1988-06-08,0.2703360965375921,22.526784544569022,13.098056213024865,1.9336979485726615,7.730793973379901,53.08175647306589,0.0,0.021370559555851154,14.07521753624735,0.1671159845341837,0.041519092757563575 -1988-06-09,2.372072761126333,22.606128867739812,13.45044625668134,1.8932802896001482,7.6624770069745,145.1453964198457,0.0,0.17882565627069624,12.394856320167635,0.172024723139795,0.054255825912471 -1988-06-10,2.581803112814724,23.67884719005132,13.89633336361685,1.7454320403461911,8.086534275031624,177.70284583702733,0.0,0.20193341041570934,12.77413257776168,0.1788862512429991,0.06606533750489721 -1988-06-11,0.6689369059288826,23.71638672847207,13.95911108453726,1.781524675315715,8.08548362142619,88.25897371747577,0.0,0.05011020264329602,13.165981862345818,0.1611674341816141,0.05063544826576989 -1988-06-12,1.7021607739519664,24.829685405492395,14.094959942139369,1.4755439918242053,8.62366374310381,115.10083609337967,0.0,0.11982698921898893,11.870758189946182,0.15811531389564012,0.05120672624488338 -1988-06-13,6.8470444591940725,23.566902129560194,14.177115895087491,1.3809395628083403,7.936087175826956,413.7900472192212,0.0,0.5713273348373908,11.520030660121847,0.2139639863436844,0.12032619890844369 -1988-06-14,6.753555448106126,22.335429317598976,13.791677882332833,1.0846049434042035,7.401895282047435,591.1611769100042,0.0,0.7334725788094785,15.772730551340002,0.2624159763407628,0.1900087357328382 -1988-06-15,4.504494008470784,22.054663420105406,13.788866857699492,0.972749414560338,7.250467757519496,535.6490766723596,0.0,0.5615405886111997,19.51658553098968,0.2798293087578498,0.20918960669997622 -1988-06-16,9.939605695210524,21.10677760245776,13.513551695523686,0.892970138720713,6.829143726241302,1149.7883406455799,0.0,1.49650477949627,20.860480975056127,0.35880015086183614,0.3640375623092483 -1988-06-17,3.811256980168243,21.01110280300815,13.645873833146085,1.0059823500924787,6.728315098702196,748.9378940101107,0.0,0.6466642323202954,26.881835030958676,0.3575537355432128,0.33543552571649493 -1988-06-18,8.941904185159872,20.243964027165703,13.025383757477222,0.9654755609192516,6.528496387789279,1354.042194122119,0.0,1.6705766772116721,26.846892575126095,0.4169152448895699,0.47272273998904946 -1988-06-19,6.820743651388421,19.58091931967697,13.225266814036011,0.9568240640752326,6.083848466867441,1345.6648452983125,0.0,1.4354558267261357,31.339236016748984,0.4445379199218261,0.5262896410993375 -1988-06-20,2.01667956300179,20.048014774039192,11.975819308346438,1.2209763681769723,6.777106094032478,710.0762998001917,0.0,0.4233288336898573,33.68326750162152,0.41588020610707954,0.40704788942824544 -1988-06-21,8.605644781402104,19.16961344127672,11.278414202213064,1.2128244056215816,6.543797261342654,1505.8769194362956,0.0,1.851404431251913,31.097548656042957,0.46251531521838474,0.5468727198709844 -1988-06-22,0.4376667408369088,20.452318438788325,11.596165970168427,1.3731750936939464,7.099585946212232,526.1009903283338,0.0,0.09245317018918309,34.663124664881316,0.40890044844904677,0.3700657985725971 -1988-06-23,0.6186815274848659,21.614424836805497,12.100781781969042,1.4683968402263343,7.538976794639245,328.3815498065191,0.0,0.11280295278079577,30.37717566122402,0.3610807448193585,0.25807135775569284 -1988-06-24,0.7052645325487159,21.95049764449884,13.706975126801035,1.5328533466239207,7.213723123030566,248.2327374711759,0.0,0.11135431887449165,26.646372108178458,0.31862804342316714,0.18494766460997827 -1988-06-25,0.9450486644230859,22.057855686188734,12.583933122612974,1.4873600374198013,7.622535210794658,213.77867034454732,0.0,0.13220760679394294,23.727691111104434,0.2874207091819673,0.14052279833309272 -1988-06-26,7.429607957760745,22.386721901733203,12.879650561965914,1.5739051893438671,7.70323255564096,803.0415547708509,0.0,1.076711846969837,21.254043943175613,0.3341451191194086,0.2554190219040194 -1988-06-27,7.159578741965816,23.871200940563103,13.472519196548117,0.8853711305282626,8.29203461240679,1004.8495582871242,0.0,1.1871490565850698,24.608906114811287,0.3700813339031068,0.3470267599580186 -1988-06-28,12.506298046830675,24.190242066369933,13.964397998850524,0.9226910769674632,8.313842060288696,1928.3090992327816,0.0,2.493208871692307,26.85875190200058,0.45857617257809136,0.6055259928910576 -1988-06-29,6.153220029868116,24.716897373345443,14.391447957408413,0.9977294960479482,8.461929219970783,1429.897644274475,0.0,1.3555191252961762,33.064670049735284,0.4568618597631623,0.6005667733032448 -1988-06-30,11.873728910340835,23.294118549869054,14.676606750577495,1.2113994369122996,7.612527757844044,2340.6838196901426,0.0,2.8466797981616256,32.836735216932496,0.5208466276640351,0.8243897955119636 -1988-07-01,4.9883157255375865,21.63176984551582,14.774407971393574,1.0641499488375934,6.646186017294887,1529.2185106668471,0.0,1.2562769860650151,37.96311615393819,0.5003550932525466,0.7279257404275203 -1988-07-02,6.468068364694807,20.59585875505233,14.185864922300006,0.9564912700967538,6.280704619391759,1627.4232867533212,0.0,1.6341876818993404,37.32268049168299,0.5101325676199827,0.7226746606218192 -1988-07-03,5.511827074081803,20.197833573584187,13.668133611151907,1.0280994304914337,6.256594433814112,1495.7248762802365,0.0,1.4145316019367042,38.3345527598135,0.5107806308329068,0.6858105713572127 -1988-07-04,8.936321805622985,19.637420355162273,13.101703728555078,1.4438611628502254,6.157992178424608,2114.9948834948996,0.0,2.4168211441935092,38.40199183050626,0.5514592947748039,0.8144271712997206 -1988-07-05,9.418523422468162,21.232140316413304,13.520807206454153,1.7362243834550968,6.8861762495889804,2500.5672824622893,0.0,2.7912799202340253,41.431896200610176,0.5923729510073559,0.9551674133426158 -1988-07-06,4.83733655471693,20.555444766088428,14.374044328756172,1.4614994143587372,6.1809814382211545,1727.9955225496549,0.0,1.4283573760992665,43.625753352005354,0.5645621765911785,0.8392576045808582 -1988-07-07,2.5472790924979125,22.82806005277809,14.784582691346381,1.6725859978011428,7.319267046032264,1101.6771286574408,0.0,0.7030964047907378,42.352200423867565,0.5230485289394279,0.6533740698137128 -1988-07-08,7.793237737990903,22.518672071341033,14.684460386766348,1.0509448749369952,7.183362647970156,1826.081220000765,0.0,2.070784548626871,38.369619347567195,0.5377660220190618,0.7406233497025746 -1988-07-09,4.831481624442117,22.10232789680693,14.164019637036668,0.9008255747171876,7.138291416896216,1436.0892568065603,0.0,1.270971657735541,39.523348733417585,0.5167037350974257,0.6756352020719912 -1988-07-10,4.782787232516184,22.867272207708602,13.483114688676318,0.564983319027304,7.770774317728199,1310.1210183475923,0.0,1.2048924361552968,38.07737513499317,0.49929186524889774,0.6232694347460427 -1988-07-11,10.971502023468297,22.589460655092193,12.971064320855632,0.06795944451433124,7.78138559950998,2363.0556761796543,0.0,2.8796708267331397,36.32562990356169,0.5509795557534256,0.844191532556347 -1988-07-12,5.754890215437299,22.016237943976755,12.659842389484727,0.2011065095832809,7.579932771270872,1735.701784280398,0.0,1.5512490614649215,39.90155641796997,0.5318666832095663,0.7857295966078337 -1988-07-13,5.267110452074666,21.415971689952396,13.700053032056976,0.6784488381815071,6.92717881903854,1505.5787201675569,0.0,1.3637488197594134,38.7594128778194,0.5128791805621039,0.7191239423112319 -1988-07-14,1.2661363291739554,21.90788809059391,14.12910704571182,0.8681567666893554,7.04665798230568,751.9479540768687,0.0,0.30147714947044535,37.98512698476081,0.45725063534165444,0.5140202372908471 -1988-07-15,2.326514542588441,23.32693001713933,14.175570959340543,1.0604078075042995,7.8003576424516075,681.7737244487332,0.0,0.49457800241496086,33.906738143203626,0.4220928554213277,0.4099098226997265 -1988-07-16,4.1057174513824855,23.58027118589725,14.388358240271266,1.1245377490398591,7.8684395887943905,827.1702545458974,0.0,0.8111435828290361,30.859970643157677,0.4073265863702943,0.39034062217160764 -1988-07-17,7.0294768963561625,21.660381265751482,14.565244563667363,0.8945275316208635,6.750102930483978,1222.7738317430685,0.0,1.4072786493286111,29.76473087958413,0.42862760232404334,0.4683723628448591 -1988-07-18,2.497980757953837,22.882693513052626,14.759643066313044,0.983647323869132,7.366039063311064,716.9349715129964,0.0,0.500028717479204,32.04573553495942,0.40241090065472995,0.38102515377639623 -1988-07-19,2.266711745825346,23.793040440290824,14.816513461696012,0.9618084619403812,7.84678856844181,555.3973906137588,0.0,0.4161093957124842,29.735733613994636,0.3728068153176943,0.31138826952847426 -1988-07-20,15.120046156405607,23.96400115383133,14.673685311455436,0.5847812822880937,7.987067751278494,2322.445689870532,0.0,3.203894492624233,27.312893704575202,0.4943150123771819,0.690539395241008 -1988-07-21,7.172440074262607,22.659295377104222,14.367201471599838,0.9782769381740136,7.383268416366311,1780.5047008649617,0.0,1.7499197716857218,35.80346955141927,0.5006402424187009,0.7159598274217734 -1988-07-22,5.24793142513666,20.90988105589892,14.637504356682527,1.3305982775871985,6.291789991399062,1417.41164097174,0.0,1.27881417385115,36.73712327452784,0.48909745357062817,0.660774547187339 -1988-07-23,5.256283001472861,21.56263770915797,14.484455097924005,1.2313096541801023,6.7319423825512565,1351.382909798023,0.0,1.283293742143238,36.79565270335255,0.4898765719867036,0.6255336039111746 -1988-07-24,14.320962226806726,22.268175854539685,14.87480684060032,1.2657826371587173,6.986809750037915,3080.3747496002948,0.0,3.9685508672682754,36.49823431197327,0.5920092232205951,1.0114634722563232 -1988-07-25,4.719742782508829,21.61231466807104,14.820516222062885,1.0046611658019011,6.6325284259756385,1800.513082283278,0.0,1.3865665884120215,43.499230429390394,0.561718382420464,0.8695404282261635 -1988-07-26,6.202960799652499,22.49322378597765,15.055676864530087,0.9584171982046932,7.049729266699209,1821.743512133529,0.0,1.7713434614577581,41.719972061895824,0.5582697128272828,0.8357431601024504 -1988-07-27,3.555286580018328,24.19416240765181,14.88614974809549,0.7767054222491335,8.053447026144092,1281.4741190717832,0.0,0.9603250828353067,41.08447045114846,0.5200229378795995,0.6902531978598329 -1988-07-28,7.8039097204913475,24.071745873919202,14.131315596873481,0.8975220784024455,8.226696131926202,1835.4925493458913,0.0,2.0238333736624554,37.52907304538909,0.5280985482134067,0.7574809187524613 -1988-07-29,6.9726174159339855,21.362173073237933,12.408672733942842,0.6130061546154189,7.34052346255145,1795.9883474783478,0.0,1.8073952905317974,37.934887129386354,0.5231420150919346,0.768287109795359 -1988-07-30,3.1937649111261828,20.357150141599494,11.647757609825833,0.3890568490261554,7.057237145618606,1131.7860775908932,0.0,0.792146533681207,38.357833999614066,0.48404798718038916,0.6207348109658164 -1988-07-31,3.225619417064855,21.57084308608416,12.408528032612445,0.5123932405191781,7.451751953609269,942.2923285419256,0.0,0.740276447724987,35.82073163750878,0.4548635462935191,0.5167872125320702 -1988-08-01,1.020989950952091,20.63261946568964,13.336549916467225,1.3313827689741848,6.650481107235224,519.9659644988403,0.0,0.20899262912304772,33.43722525775969,0.4014148709279709,0.3682264015517741 -1988-08-02,3.748200339008324,22.28975072287649,14.124369603455515,1.0065065760531382,7.284803876715126,723.6858025826365,0.0,0.7168618411754717,30.12128528757754,0.3945565700035282,0.3488508861520735 -1988-08-03,4.000465573076794,23.199463877240802,14.759991135549624,1.114061840103005,7.567144762001075,755.8520865489882,0.0,0.7440074108788464,29.21972431366648,0.38699271435910987,0.3403716502797745 -1988-08-04,10.704882770568386,22.952128484029995,15.383320862789846,0.9433750294822112,7.204932322513112,1697.1731033870058,0.0,2.18777715554754,28.499100169984157,0.4566998510115986,0.5546873384129242 -1988-08-05,13.429778776695954,21.608567903468014,15.161532563707805,0.6232016915788894,6.510792641622272,2706.603268292911,0.0,3.3908693759750435,33.750153969839594,0.5496142646718625,0.8773853421631347 -1988-08-06,11.311082097171777,21.704037782779537,14.19079634261534,0.5471140646141991,6.945728544451462,2998.221414914615,0.0,3.398981906172878,40.972920967784994,0.6090732272346812,1.0886818283658328 -1988-08-07,11.815639397023409,20.82107245956994,14.32063598725214,0.5312523475757019,6.39461860714728,3500.770470352046,0.0,3.9481292598997495,44.722656087233624,0.6586328527706986,1.3098417070033728 -1988-08-08,14.838693435459065,21.463402228354052,13.524777134679693,0.6525448289345178,7.053657604522951,4828.532843999565,0.0,5.710907133436793,48.74370722780803,0.7406919076030132,1.722215365910728 -1988-08-09,11.218518614997992,20.953479753804725,13.421740096725399,1.0257580703526588,6.813136141094896,4487.724861597696,0.0,4.617968472994059,53.36587858453343,0.7523644886649926,1.8242351794698695 -1988-08-10,4.8036886059615025,21.953442731712023,13.990676544923241,1.3753146618621692,7.164896549700698,2705.391977010401,0.0,1.8726273433130114,54.43433579961841,0.6900828663575703,1.4726265397687994 -1988-08-11,3.4386747322341535,21.415046550868887,14.47580205770558,1.0331909050951025,6.685945332655592,1858.7869773183709,0.0,1.1774601662272546,49.9454977319387,0.6218894556641088,1.137896368645537 -1988-08-12,8.039202330906138,21.979095392026085,15.046160323899054,1.2159564647197214,6.791382144224446,2538.6279982536425,0.0,2.6326810263742733,45.883356856233,0.6281612963732063,1.1415816332209945 -1988-08-13,15.530574665803346,21.082046904860075,14.498386954309455,0.9885776719615637,6.488812821491921,4599.497167337264,0.0,5.6605827102590744,46.20265291095524,0.7191502934669268,1.6050233292399179 -1988-08-14,13.496528762336922,20.434694168491237,13.549750035893927,0.608023838004453,6.489266110530332,5062.2055873775125,0.0,5.628658903599344,52.71289918180414,0.7712949963146326,1.90184122042025 -1988-08-15,2.411351208154355,22.242387690764485,13.963638673137307,0.7022188204638801,7.345849231823672,2211.3938866470676,0.0,0.9503310280164543,56.088522918617734,0.6814839155094667,1.3827111860314423 -1988-08-16,3.3263220684119155,22.823412810894073,14.665263683133409,1.3265854680739335,7.4252902720996214,1710.2287711445128,0.0,1.1146658026872522,49.16181152622179,0.6114512096614091,1.0698043298859763 -1988-08-17,3.999437711956897,22.19483089781857,15.236740059355904,0.957716066908514,6.8548055194320545,1545.5926717552773,0.0,1.1918483246496367,44.386297390916305,0.5636610455135919,0.877868852329022 -1988-08-18,13.032857059323426,22.223420807222126,15.245737499852,1.0173882443808568,6.870751381103806,3313.7611950421124,0.0,4.0838990813266705,41.6466429722489,0.6369791445852472,1.193285328827307 -1988-08-19,9.449640715772231,22.34569808433675,14.000847607298294,0.9320770528602544,7.401365672937489,3123.9931255325564,0.0,3.2218420372213554,46.72085482711425,0.6543482325401289,1.2673457104833392 -1988-08-20,5.788502572165606,20.769075134000047,13.962232070376047,1.2451541676020408,6.537253966638569,2277.6097393759846,0.0,1.9090879059800807,47.300597593783316,0.6184520632226095,1.1156693285546369 -1988-08-21,2.4677975466580517,20.190230063021463,13.039886590662439,1.232160357097075,6.559940573974047,1341.4744199046659,0.0,0.7483789824624378,45.80363545383876,0.562329503430106,0.8402000521710487 -1988-08-22,3.4319206740545143,19.774343423969306,12.711527877236259,0.818354518928712,6.45194956066605,1217.3775341614346,0.0,0.9452665721021676,41.832063629195936,0.5272947628518294,0.6908615444069247 -1988-08-23,6.256136990021428,20.39097486634294,12.938437429480205,0.8282852058037853,6.712613795318345,1603.1555473801527,0.0,1.6756975128246587,39.42680114525162,0.5321752912653733,0.7048680960048496 -1988-08-24,10.52150530809049,19.937385561078106,12.362625997028893,0.8823131706313542,6.669328094991336,2524.6561204260347,0.0,3.0067180933263984,39.54638995617831,0.5832570721788404,0.9166532490827052 -1988-08-25,7.660196114376192,20.99169183846181,12.752238598852394,0.9969684521438632,7.106913836672376,2297.535296027405,0.0,2.324766346931505,43.204589816271984,0.5925403087612015,0.9506782021019934 -1988-08-26,9.370274659331805,20.0340318717343,13.905924920490534,1.140070571009813,6.149209753949782,2680.00841660997,0.0,2.927452312851557,43.415322116261166,0.6149164542675893,1.0645946890213502 -1988-08-27,4.464528080919549,20.811577919832203,13.411185046325727,1.1954954553195365,6.78808300027634,1786.7047093490637,0.0,1.3970258980551113,45.96906119727883,0.5875171597809273,0.9057189375795628 -1988-08-28,8.936389346829928,21.44751556293468,13.544412212374242,1.2532619468604798,7.095454614902146,2496.0525962341267,0.0,2.7732270166555555,43.385251217254016,0.609511678610142,1.0118452412158414 -1988-08-29,6.272555995040407,21.876066302922148,13.798221902080352,1.2046487434935655,7.246247829871409,2093.3501334276843,0.0,1.9390680231152695,44.59699077144677,0.5925957692745288,0.9539154473079579 -1988-08-30,9.551736085061977,22.61640117743478,13.871471747580946,1.206401412757722,7.629246248718071,2693.443868027656,0.0,2.9807078779183573,43.27923091526146,0.6154449866594686,1.074810930015673 -1988-08-31,6.0786047948958775,21.712605123739877,13.923820254950837,1.1561052238197589,7.118515140839164,2101.3339983375354,0.0,1.8665018312335881,44.44379525073202,0.5885517450758652,0.9838538766087237 -1988-09-01,7.249391914220445,21.822558525670786,14.173116331134946,1.0790264659402855,7.093616172870529,2188.813592856268,0.0,2.1831744810125207,43.127744794247675,0.5868595255751343,0.9728631988960397 -1988-09-02,4.003118788061619,21.078291434632828,14.172364849368947,1.072613365983083,6.673240690497585,1520.139311334952,0.0,1.1495996979938772,43.035285550910714,0.5479655545715127,0.8083317547484561 -1988-09-03,2.786882623670372,21.63700628910456,13.931561030481866,1.1204660467192156,7.084141529448958,1084.2568533621818,0.0,0.7363651367840442,40.70602262753095,0.506662891329308,0.6383084510063988 -1988-09-04,5.855596294234215,21.746914619036584,12.814795696488485,0.7753295784664294,7.523119832491099,1424.1112858974207,0.0,1.4696979859190238,37.41097102689478,0.5040262077275666,0.6392920310332431 -1988-09-05,17.51635842851534,20.508211491545783,12.646961185448172,0.4993974000832405,6.919812803605862,3859.4616720314602,0.0,5.1349223416629926,36.86053980666624,0.633454038589332,1.1980168492274914 -1988-09-06,8.00983574197284,19.6952900466902,13.307852804264307,0.7296852049118521,6.2269472613581085,2821.6675684232273,0.0,2.659274397919429,46.4258901338316,0.6341393407625465,1.1847664740938346 -1988-09-07,10.331835880853683,19.39486875319892,13.167743535036998,0.7711160096560935,6.112017866754739,3307.6299759931735,0.0,3.6107637857587296,47.235279542067225,0.6706179083049293,1.3210194181199322 -1988-09-08,4.29571494282452,19.918088151788766,13.447256418811287,0.6803325616455831,6.307166111820745,2053.217303468095,0.0,1.485588684955931,49.90100525903107,0.6313550865236626,1.0861243768873456 -1988-09-09,5.526967871338037,20.208891637166683,12.719139888457894,0.8382814565792484,6.746148624742224,1986.1510813119905,0.0,1.8001529773744878,46.9524179633159,0.6113493041819198,0.9811158056311197 -1988-09-10,9.588504090476127,20.798165954914992,13.267808354269619,1.028612524387147,6.880419756590322,2801.9146612502423,0.0,3.1398349155479988,45.08879884585584,0.6369535499136433,1.1167465270998158 -1988-09-11,8.919392705578732,20.9235015174542,12.823614798475942,0.9287183653147216,7.107036829845748,2889.744324749886,0.0,3.0189469978333836,46.708445650114534,0.6480266438148884,1.186628780805738 -1988-09-12,2.67354806947979,19.941062419960183,11.549673421675203,1.1397108103156457,7.002226558910087,1513.5417992177333,0.0,0.844088048799688,47.208567791565905,0.5810928679473043,0.9009644397339583 -1988-09-13,2.3026639324279627,19.751481729164666,10.770275698239749,0.8534166691035802,7.143417564140931,1068.0213773645232,0.0,0.6400727908175567,42.72483340556504,0.5245398498634467,0.6839460430138373 -1988-09-14,10.689856272144011,19.34010845403422,9.9184562170617,0.24428599205748885,7.180660916096267,2436.641980547061,0.0,2.984446318916211,38.62689578832484,0.574506762553821,0.8996427692514042 -1988-09-15,0.91803212793919,20.004302575378986,9.596019466578262,0.3328815547636896,7.591255185954112,922.406994966766,0.0,0.245730239587031,42.09284575775856,0.501047598966213,0.6230412186757754 -1988-09-16,0.3134645696531145,21.55712652923473,10.1040743483769,0.8804068899056106,8.219430756670766,479.3643504685219,0.0,0.0703873795030468,36.59531002482612,0.42996222817154833,0.41628806876937474 -1988-09-17,1.3858332533697135,21.714111952773024,10.69999410241996,0.6052020945917327,8.155187383863264,449.09005960104787,0.0,0.2633784365612888,31.131236177017346,0.3788018372192025,0.3110872250356884 -1988-09-18,2.333976337533848,20.63340921394529,11.600622578963998,0.3559453869947729,7.3699322731210035,476.2458536661506,0.0,0.39499326992946493,27.558244852554704,0.34822413285456816,0.2626467229059455 -1988-09-19,1.7055777462119002,20.15652955883742,11.159387381735034,0.4866384696006091,7.259937119082013,368.55892959870084,0.0,0.2655520777852649,25.807883295152504,0.3205131880977053,0.21140489900899073 -1988-09-20,0.3861682328982933,20.407851538665486,11.319767142801435,0.35384124505298903,7.345610239756579,189.88933612660725,0.0,0.05361977130935813,23.842828987327824,0.28225140892997613,0.1457790555211431 -1988-09-21,1.413365736218867,20.404459680005623,11.48563242996526,0.4481147452543258,7.298620242030133,214.00198767782828,0.0,0.17556716525190819,20.997345352972125,0.26106960690747755,0.12162800805863218 -1988-09-22,0.5381890545613747,20.255477672837426,11.610432832755336,0.27811341064380085,7.187276147488392,129.07018262492437,0.0,0.060298139276624974,19.45895254397079,0.23295315689112386,0.08835539920761183 -1988-09-23,0.2157730170028188,20.785027971349546,10.921876007448292,0.49348584093425496,7.663271385219542,75.73556912833916,0.0,0.021304073190042794,17.42367873300205,0.20548766686204367,0.06075907204460202 -1988-09-24,1.8369401165078134,21.853142792547022,10.992472309318346,0.8112229308411756,8.182235480843284,149.74406006224567,0.0,0.1662992005114159,15.238229308228258,0.1989141599234881,0.06487281020900519 -1988-09-25,4.9264191775287,22.209634990444183,12.782923148686635,1.103788036794055,7.8666380676225005,360.83476857397443,0.0,0.47277923423832924,14.598869977692534,0.22745639548077612,0.11421677311456753 -1988-09-26,8.008479743010865,21.29868766559308,13.12095558818242,1.1486060034248124,7.271756278446017,723.3440794596986,0.0,0.9503535229764406,16.781377032531847,0.2887850429166026,0.21905511437443792 -1988-09-27,1.124741193864235,20.813662945726765,13.133894517876925,1.243620008098548,7.003456586508214,292.8303931086658,0.0,0.1422896231994848,21.509812891348286,0.26367722621717976,0.16426028101707355 -1988-09-28,3.469938126821442,20.693611322643946,13.103925347974286,0.7782499937517916,6.951308478372424,398.40097183800816,0.0,0.42683200428839907,19.770514079413452,0.27073552899265857,0.1719172008699171 -1988-09-29,1.979648913994169,20.783870878220423,12.10015781831303,1.198363182414606,7.34187962262271,295.03217713223717,0.0,0.24102063331473,20.31534328059758,0.2597215601540943,0.14860896963206482 -1988-09-30,0.0,20.979372335686463,11.725627687948927,1.1746510263047123,7.563652092945579,112.6844271689636,0.0,0.0,19.34239862882414,0.22532584470781913,0.09673745460890149 -1988-10-01,0.09562832435206377,22.326044823114046,11.698035789159519,1.1223949012912295,8.267251637876923,70.06237574943898,0.0,0.00900997686867984,16.72947980410711,0.1960011151717189,0.06434343837096114 -1988-10-02,0.41907880693459626,22.365841046372637,11.945152040119064,1.2352323871768824,8.224796087998804,64.70431177819607,0.0,0.034015139713316545,14.361763894996486,0.17218680739744907,0.047063861758440816 -1988-10-03,1.3816647649544098,21.46319786499309,11.809303366048688,1.1677928135307543,7.803411703847936,99.38187822657399,0.0,0.10214706055088385,12.640680174767546,0.16335082214771524,0.04618976097123196 -1988-10-04,8.208371260142979,21.313909951556408,11.8874027917524,1.2196959966666283,7.70753661218924,523.7496583667718,0.0,0.7464220234373755,12.099585963886755,0.23657394843345425,0.14372114329257885 -1988-10-05,14.705210226219785,21.346682038032323,12.303798505860364,1.479954872780894,7.602840399415115,1526.2818944814148,0.0,2.1262298968234266,17.504272396170997,0.3752186592140992,0.41730562157138285 -1988-10-06,11.795990704906245,20.34325902820328,11.947238208488207,1.296286278334115,7.186236173095411,1956.3799875541968,0.0,2.385050277702913,27.629858529389203,0.4592844430784436,0.6348054849536177 -1988-10-07,19.538140842497018,19.403329563242586,11.241340852810847,0.8569244405424122,6.917684021730266,4113.826776706992,0.0,5.438214550339396,33.94921300936591,0.6230914489528183,1.2412770378464766 -1988-10-08,6.34164023334783,19.881825215060477,11.051135498965364,1.3373553894698875,7.2310575333723275,2455.267841363845,0.0,2.0214823758908462,45.717843705579035,0.6064577314682791,1.1158135663217164 -1988-10-09,1.990798530239705,19.244927516647454,10.796895715107825,1.2940119075856864,6.982029630175326,1244.1823241138566,0.0,0.5748594143738444,44.24687799752397,0.5386376178505331,0.8138730265651432 -1988-10-10,0.18598605500328566,20.49824164481973,10.418672178982485,1.1769194839033217,7.732709069793198,603.8333253089744,0.0,0.04598881344531455,39.7649428610748,0.4654012657697242,0.5367955644927119 -1988-10-11,0.2126822517240881,21.305558972961254,10.506062574418095,1.12214387436853,8.116522974729719,383.9133462255662,0.0,0.043733657671568615,33.975508340389915,0.3982692670142903,0.356087778542736 -1988-10-12,4.333520752974348,20.33798167989696,10.782444408555405,1.0026339885596671,7.560913934702614,759.5260777217592,0.0,0.8033376796996663,28.96316667451312,0.38788385890209176,0.35411643699491185 -1988-10-13,2.051715159436644,20.39478841029588,11.08583371637402,0.974999327953616,7.507396375067685,511.87788124401,0.0,0.3590504237971155,28.567047087018373,0.35668784412338284,0.2851838882179508 -1988-10-14,4.762113935574293,18.94614250534305,11.101496413723435,0.9649979530349287,6.748400396226023,736.7313376414273,0.0,0.8062036279043294,26.34625681632833,0.36239145163262493,0.30839771982859027 -1988-10-15,6.325518293762772,18.920636721275336,11.039306926945263,1.106171183031968,6.759053981959202,993.9812575449893,0.0,1.1398794490196158,27.192095961665903,0.3904575068285846,0.37431590625134015 -1988-10-16,0.906369299598638,19.18567277820673,10.351392087151735,0.5908047511462446,7.113988004524697,417.5417797774744,0.0,0.1592668944587715,29.24883342347515,0.35128768961397394,0.26791279962294773 -1988-10-17,2.0730471405136157,17.97452261881675,10.2914528617863,0.5586899902241812,6.508593910513649,404.6564610383729,0.0,0.33016139336838535,26.17173656003435,0.32903260180107813,0.22467059020482694 -1988-10-18,1.793181620043571,18.531001805986236,10.354421590160891,1.1308612089760086,6.78340262032094,341.9326879995511,0.0,0.2686225518672656,24.852297096377903,0.310401781838723,0.18715174653731434 -1988-10-19,1.0519245672676665,17.90414909598921,9.36706802068041,1.0088340856180913,6.761696802652533,233.59090652191028,0.0,0.1448755194660738,23.33177746683993,0.2840536152404315,0.14388642892093687 -1988-10-20,1.2051492162779025,17.95478610644608,8.393818351039336,0.8188881998384501,7.054714063487681,202.55160937380018,0.0,0.15183138710611366,21.385571273604068,0.26316659451715274,0.11678187422851016 -1988-10-21,0.6232108738387833,18.269641010862202,7.5082720819111195,1.0056180981019578,7.419754042732963,131.90614795438532,0.0,0.07095093564922939,19.711945200970515,0.23689079662506654,0.08682283947195822 -1988-10-22,0.06700490319618742,18.033296495165203,5.430696635132653,0.7085235529577728,7.731111402259947,65.71558984180552,0.0,0.00666928650715666,17.631351987491012,0.20617387185846542,0.057533085217606625 -1988-10-23,0.012654545547199691,18.469858443393854,5.584279029129782,0.4253878419836084,7.899974647658498,38.90727232657759,0.0,0.0010794171583919931,15.26751686287047,0.17800364866595067,0.03761569163004646 -1988-10-24,0.017494655517395326,17.972942284592797,5.828169230466916,0.6218012915912379,7.6412625643193035,25.435105949870447,0.0,0.0012759173811193805,13.151429904304814,0.1534090526866508,0.024680324583814105 -1988-10-25,0.0,18.05967829010962,6.004845627817774,0.6023754096256306,7.650923247768231,16.147812378029272,0.0,0.0,11.404802114001278,0.13285822091544197,0.016065731328807543 -1988-10-26,0.1140626745586503,17.907321352355314,6.138489790735184,0.7178008316740012,7.561420100154529,14.522139096984805,0.0,0.006211828944272663,9.88261415486453,0.11645451497955171,0.011403878728615516 -1988-10-27,0.4706579671913573,17.809505524499222,5.60138672806959,0.5957053254895132,7.623446302049225,22.754803295598236,0.0,0.022917196525526096,8.68302915653888,0.10663425580899583,0.01091287079242981 -1988-10-28,0.03605490574033792,16.510520742297665,4.687496640383789,0.397976655705331,7.224846093729836,9.481241628219633,0.0,0.0015621218856561245,7.943721054086332,0.09295898576134347,0.0073416221149655205 -1988-10-29,0.01771872310234272,15.812087674720251,4.4112970534930565,0.16145081167058425,6.976688886326165,5.412984810112429,0.0,0.0006719528958702252,6.983060774829055,0.08155433998934551,0.004881365695631851 -1988-10-30,0.3631188535801248,16.17416164331665,3.5560893871606583,0.6015509224821343,7.278762904171214,11.369350974124753,0.0,0.012459398058234983,6.158464521532558,0.07597202968611695,0.005074667058355145 -1988-10-31,0.1383680077829242,15.803490965265498,3.5829020998036514,0.8981007980160475,7.122468296969727,6.84866221502226,0.0,0.004315031495799676,5.704046132588228,0.06806016805745391,0.0039603970360133885 -1988-11-01,0.0,15.962899191738925,4.226816822249882,0.7845271320372832,7.085553045232681,2.8843154373826745,0.0,3.552713678800501e-15,5.12695386924656,0.05972554043242939,0.0025780323317845643 -1988-11-02,0.0012520295968196536,15.674140452890995,4.06147015451316,0.5360074803786772,6.994481365343902,1.7209098526503996,0.0,3.0333322421377366e-5,4.503488785782855,0.05247717973832912,0.001682796576919221 -1988-11-03,0.19447489877093332,14.883164178897655,4.672222001455741,0.6639554561155555,6.540789841495398,3.8703833893631145,0.0,0.00424299650407628,3.9648145662302023,0.04845290545760445,0.0017414803788620965 -1988-11-04,0.14118931026658652,15.744109695700221,4.2910415012265934,0.729297825597662,6.991042391695552,3.242780770598622,0.0,0.0028516475597758217,3.6934643713130697,0.04467111843493278,0.0015678273448848747 -1988-11-05,0.1008587777311062,14.412215771410489,3.544900088558069,0.6600523259044662,6.558887208725727,2.415017869261935,0.0,0.001852321653858971,3.3760337629928334,0.04050344343175,0.0013026252494307234 -1988-11-06,0.04001504887719176,13.266670013924985,1.3112417236436755,0.4612472675154104,6.448589611925304,1.4042412614529776,0.0,0.0006657024252219035,3.087082380303134,0.03642856727519225,0.0009493108425281569 -1988-11-07,0.05030969330684408,12.330631875665867,-0.1175849809855437,0.5404292671701876,6.273138903867654,1.159363354161604,0.0,0.0007556221649707012,2.7826932050461055,0.03300256516168619,0.0007330113781556956 -1988-11-08,0.026145098761377127,14.334269294398375,0.003993019765207375,0.5623293504438822,7.033288827449603,0.7566504676396018,0.0,0.0003553050744142458,2.529691507865568,0.029773765569342536,0.0005312564020785097 -1988-11-09,0.01336486175228864,14.120171876391998,1.1299009099700201,0.5876954447371217,6.821952670566585,0.47520507525078065,0.0,0.00016098939034166204,2.249279063039648,0.026358269385835322,0.00037033596164740576 -1988-11-10,0.04555570456018513,13.871093675669794,1.0502027900420436,0.5138390625566682,6.736731728020686,0.5733421381486529,0.0,0.0004915590130767714,1.9995888404296351,0.023824548908980586,0.0003159184266911061 -1988-11-11,0.000766480709302663,12.939999658504215,-0.9770703098785656,0.8427669992472727,6.610938488375757,0.2398288269054176,0.0,7.400486295138561e-6,1.8104679499105392,0.02109965448830748,0.00020677488097426837 -1988-11-12,0.0,12.237817353527445,-1.6171675384247834,0.5486581587736521,6.413009506103593,0.13728335402598343,0.0,0.0,1.6073926197448112,0.018725035440091742,0.00013460072909484292 -1988-11-13,0.0,12.747069080917061,-0.5895088056846147,0.6252918708669652,6.504089524556849,0.08779643883226557,0.0,0.0,1.4319917032144724,0.016681733549868683,8.761874840647529e-5 -1988-11-14,0.012746190366653195,13.845090791320352,0.5350519336306004,0.919151840633426,6.803083564272639,0.11377323694771004,0.0,8.683776288925457e-5,1.2735796355047584,0.014984824728616349,7.02580193691013e-5 -1988-11-15,2.20968220782778,13.944421045456385,1.6741055240405198,1.3644981893888737,6.6967967964885196,17.3434312792857,0.0,0.026471595085324928,1.1375411797164765,0.03899288561348545,0.004076426080067687 -1988-11-16,10.90782624206064,12.725786685815265,1.1192661123771444,1.123255118670467,6.290375195575492,332.51500250844833,0.0,0.5026008497031516,2.964192010084455,0.16159961804369538,0.07918196598026163 -1988-11-17,6.819482500953449,12.827747347262488,2.2034290207351153,0.6647276064995699,6.16536321222354,473.66794582408755,0.0,0.6013824199975941,12.33759393840634,0.22316696670693204,0.14311309585361093 -1988-11-18,8.310989048391093,9.627577722443187,2.2118145510471936,0.2452409744236424,4.828268846714849,788.5641433433331,0.0,1.007674707012967,17.045500467344713,0.2953859305972469,0.24659325941490834 -1988-11-19,1.2420895599109654,8.927561827307272,1.6659229866446728,0.2445613356000076,4.654291094980645,332.9287111705302,0.0,0.17011214407676056,23.115179034079805,0.28374568356467844,0.1864227089659828 -1988-11-20,0.0,10.159413895481707,1.5792271994039495,0.5718655564675931,5.186775872261699,135.91112802176963,0.0,1.0658141036401503e-14,22.28907961627761,0.25965268262093,0.12135242166953501 -1988-11-21,0.0,12.89266548030708,1.3690781132126533,0.6834801785943085,6.333870123955633,80.05680524970714,0.0,3.552713678800501e-15,20.19748792293397,0.23528705588918664,0.07899472294304936 -1988-11-22,0.02012966182624544,13.015245931385564,1.3286187551546482,0.6861299131260425,6.391543186283465,52.81667603193414,0.0,0.0020336510502290267,17.903001686661444,0.20879234206707553,0.05173150529908476 -1988-11-23,0.51200759165501,14.024065786322213,1.5415039946473528,0.7331985068528164,6.769808440148342,64.04057577542848,0.0,0.04629761629086637,15.883715564793967,0.19099907104163558,0.04072427459512845 -1988-11-24,0.005335768720258143,12.993025010847282,3.530030625902341,1.1357312208831332,6.006964882136417,29.48420613472255,0.0,0.0004287406097973007,14.42981839961695,0.16815977009289412,0.026574870812067858 -1988-11-25,0.0,14.089687685336461,2.241245508333587,1.1846665585318945,6.6992838786638265,17.531700917612504,0.0,1.7763568394002505e-15,12.907475743594151,0.1503633510394592,0.017298991879728276 -1988-11-26,0.01259301847986002,13.869550584610758,2.497259555847084,0.9916698580130796,6.570202763166268,11.792488924926014,0.0,0.0007904669846644195,11.391665824383434,0.1328518921746058,0.011381190936918495 -1988-11-27,0.34936482134361996,13.074704940231545,2.621246079329345,1.030705696750803,6.220070172470294,20.31360097657397,0.0,0.01968338331420022,10.09630324087436,0.12168495876976139,0.010405706272428747 -1988-11-28,0.03063624046120011,11.775772698258386,2.7313090667597457,1.0706714405880364,5.653566143507293,8.93970068590995,0.0,0.0015627352689543926,9.314323069428692,0.10886244724184685,0.0070115752458458245 -1988-11-29,0.05109752922447418,10.72363397039951,2.367809098009843,0.9251831556097024,5.2823271555710525,6.281237324239961,0.0,0.0023544505413235356,8.42756735741269,0.09877070389445206,0.004922705817776086 -1988-11-30,0.05287384268541881,11.537348203407669,1.0553163401985917,0.7807641855932865,5.857656452398014,4.805297512229165,0.0,0.002222131318776549,7.702707520753782,0.09034727054549353,0.0035428024406062935 -1988-12-01,0.0,13.026740305765019,0.45215418115609496,0.7185020304661571,6.535822366900785,2.4463984097700315,0.0,0.0,6.970229945591377,0.08119845839376083,0.0023061978771199885 -1988-12-02,0.0,12.998258400962253,-0.15815590061130474,1.1434084314888129,6.600349887407138,1.511895236237429,0.0,6.217248937900877e-15,6.184528762674129,0.07204557171584192,0.0015012264267058345 -1988-12-03,0.0026045706295789394,13.91163289600378,0.03566354956188875,0.8519166265973556,6.935461261481702,1.0282552531527624,0.0,7.706975738216429e-5,5.481967129392569,0.06389154597023304,0.0009889628552417601 -1988-12-04,0.5403016223472499,13.216171704383754,0.8417866873545835,0.869964800475527,6.566002021664146,10.352483339984616,0.0,0.01485519360126486,4.83112946932351,0.06257353450553586,0.002905691016253349 -1988-12-05,0.6712770621033981,13.210516929254027,-0.2794721740335047,1.187344628941386,6.701906805121133,14.810217757435076,0.0,0.018456557981382682,4.765676352536699,0.06333682519422447,0.004701751891992992 -1988-12-06,0.029308522517836607,13.051636191253106,-0.2472509682931921,1.701909591245273,6.638712398215038,4.695110197323306,0.0,0.000761573334631279,4.8110358248863365,0.05638673360450052,0.0031765802901243 -1988-12-07,0.033057926988642385,12.385823237029927,-0.5946686751024103,1.2424803979443415,6.423161158657108,2.6986935865845094,0.0,0.0007651260296472687,4.289193103937918,0.05035129733762371,0.0021843062106725424 -1988-12-08,0.4245990604166785,12.096337159467538,-0.5075558148428001,0.5283385952275419,6.303872153289183,7.522234850615224,0.0,0.009256755130676808,3.8466740064251916,0.04975743858001593,0.0028313583976862294 -1988-12-09,0.7064381921080144,11.142044050946287,-1.0871159040220246,0.8357447881692553,6.009085980962921,12.707163864363636,0.0,0.01580279665749018,3.8100814019732145,0.05261439453322014,0.004249290485864414 -1988-12-10,0.3394462189682239,10.401868574640382,-2.4736552240231218,0.8081933072640246,5.880004975185699,8.754320617122936,0.0,0.007699908577114778,4.051333797247255,0.05114961360612334,0.00393851321979705 -1988-12-11,0.002554489668446266,10.179883749072994,-2.817541287427127,0.9747656929846772,5.8322849270346495,3.119183857719246,0.0,5.417095160762048e-5,3.9483893575926747,0.04602582010953999,0.0025720353236059848 -1988-12-12,0.0,10.485776698198288,-3.224291680591687,0.9042092312038431,5.97726615417561,1.7165886217092876,0.0,0.0,3.5565376178724115,0.04143125464222497,0.0016742741100072866 -1988-12-13,0.07747768258195503,11.378752412593697,-1.9253777472705729,0.97103773377725,6.190493749523267,1.9687604004158246,0.0,0.0013412185258801501,3.193049658194772,0.03809942860976664,0.0012940940888632774 -1988-12-14,0.0,11.679902133926973,-2.691914087678664,0.8962994000452317,6.368882593743482,0.9203429489207201,0.0,1.3322676295501878e-15,2.924606263137436,0.034069682324569195,0.0008423944294280198 -1988-12-15,0.8502509732066326,10.946774989762538,-2.602735687557034,0.7889333191860363,6.095815025183439,9.569031576754723,0.0,0.01379963729022693,2.606640580989851,0.04027044548404082,0.0026495578178762653 -1988-12-16,1.4166584652703829,10.436096978429335,-1.3002634443277712,1.230454441707438,5.77654721031311,21.425497757745703,0.0,0.028932114456667213,3.0966777277439923,0.05257731006669674,0.006130079444877357 -1988-12-17,0.010824998932395758,10.200214320303012,-4.4240632581974175,0.9957871014992924,5.964925678695245,5.884895829913322,0.0,0.0002367540090205799,4.066448526850171,0.047497475309639776,0.004026442900276626 -1988-12-18,0.1069264275246636,10.44171276128504,-3.8874893196826803,1.0857269552426574,6.0164049725628,4.160164363393339,0.0,0.002130753242904973,3.660876738815403,0.04389235520579189,0.0029454637437088664 -1988-12-19,0.005361957764722933,11.674667497416296,-4.432086515069103,1.0959959017759402,6.483766603204065,2.1140585659242332,0.0,9.720267697111741e-5,3.379998048944178,0.039437151399362096,0.0019321590038840488 -1988-12-20,0.004163405127709824,12.262893173530244,-4.59645086947977,0.817602180767352,6.7000423206584,1.317336360952098,0.0,6.71303059084083e-5,3.010239809384398,0.03511575599459131,0.0012679662808331425 -1988-12-21,0.0649567029736548,11.91504249364404,-4.220682923969252,0.9792841785800364,6.559721202879086,1.4434563916467464,0.0,0.0009385289152569753,2.669573470805522,0.03185542460941774,0.0009682913464643956 -1988-12-22,0.10298118434509818,10.965115867691441,-3.872692044895112,0.911066757168716,6.203614074470279,1.5765717144784688,0.0,0.0013646462627600053,2.428472455788365,0.029489720522652262,0.0008380997100202055 -1988-12-23,0.020632027838199986,11.96133966444672,-3.2009276305175933,1.1122841053019727,6.516756198627006,0.7925916292423566,0.0,0.00025052330067579925,2.2636281602984876,0.026610084214546602,0.0005837093939977947 -1988-12-24,0.03098082503261068,12.91163815809751,-2.8274299077872604,1.1976384644637872,6.838323283382276,0.6218284758830948,0.0,0.0003382311716033648,2.030551335636807,0.02401545353340755,0.00043146807365249297 -1988-12-25,0.005601407502680495,13.631955464158109,-2.8380175016390448,0.9340593363068632,7.104562313370251,0.33760422743397334,0.0,5.44834871068333e-5,1.8214005685396897,0.02128333571417187,0.00028916135273452975 -1988-12-26,0.04044038646715915,13.251682423116135,-2.110013896868193,1.4358100715351871,6.913285613498643,0.4219305257781689,0.0,0.0003504463772523031,1.6060334700072882,0.019180305380873997,0.00024159108806100986 -1988-12-27,0.07147483795405674,11.62754793958127,-2.4707044717988267,1.500411183739776,6.342044124464029,0.5481186321973799,0.0,0.000566674086959984,1.4527817048057299,0.017756556445742543,0.00024354894465485473 -1988-12-28,0.1678665700210373,10.955363224683085,-4.325959602004572,1.1375529010907286,6.230235535675796,1.0361329159240726,0.0,0.0012906735137034608,1.359800386659621,0.017796285458274556,0.0003550630255058535 -1988-12-29,0.9851906620749356,10.264017353959481,-4.567174052027054,0.961470805719103,6.002486461492584,6.687323362557317,0.0,0.009764506209003487,1.3657460434273048,0.027386820486292134,0.0017179196611578622 -1988-12-30,0.04639072852761472,10.684780039807542,-4.8221552565850585,0.7358469228234109,6.162525874015116,2.035670877761032,0.0,0.0005282839318273558,2.110375405966858,0.02512486483284355,0.0011987239900485597 -1988-12-31,0.016021059753941122,11.354585952482307,-3.9783313318673073,1.0504932571944148,6.351670901050458,0.963250373190066,0.0,0.00016564176398008168,1.9303013452526403,0.022673337903827636,0.0008055343830543548 -1989-01-01,0.0937129379993186,10.937331055428617,-4.407594034051263,0.9991106064914624,6.228997577792866,1.1209851288507477,0.0,0.0008906419145863487,1.7357941323822934,0.021312518366690535,0.0006599784120319352 -1989-01-02,0.058623665029716665,10.61597599325336,-4.712444212974006,1.0118451355628155,6.133158893727087,0.8221023619728287,0.0,0.0005201246498828804,1.6354895695035743,0.019735271872282547,0.0005088115888947219 -1989-01-03,0.022726464443700405,10.358011784163553,-4.694101366262039,1.0140893384725524,6.042524219413262,0.4863242160898154,0.0,0.00018506237644232842,1.5172753343464793,0.017939978015283676,0.00035939091093045575 -1989-01-04,1.3047329306213604,8.554113007534571,-4.584432063556367,0.9293936763658418,5.413519032986886,9.499650015796508,0.0,0.014163541297475657,1.3816845707806789,0.03129494455973178,0.002390554989488096 -1989-01-05,0.003996061301806321,9.046225684610278,-4.371701814216198,1.1065635292838691,5.568089446865146,2.412643793775473,0.0,5.209922992635129e-5,2.438276021817512,0.028450815780164677,0.0015640718194805563 -1989-01-06,0.04294750623052673,10.269155011891923,-4.571106969171198,1.6253416790266315,6.0043825069783345,1.4189369231484448,0.0,0.0005117670220054493,2.210386769408749,0.02624981827801197,0.0010960613324436366 -1989-01-07,0.0018123182679250051,11.39686424282759,-4.604883212880987,1.8210490602817184,6.3997915239664325,0.7602640146026404,0.0,1.95679057423783e-5,2.022742944359835,0.023584697713211845,0.0007164639152604133 -1989-01-08,0.009725014674416952,12.892572571074206,-5.091294329249077,1.7778253105353103,6.945735400876327,0.5313271953974451,0.0,9.37856960063297e-5,1.8038645813565237,0.021127090570350154,0.00048066459272574333 -1989-01-09,0.1872322071950016,12.312825512664226,-3.800348789527024,1.7961040403075086,6.681859536759182,1.4220793093868116,0.0,0.001689239070189641,1.5991509375292379,0.020810153837744035,0.0005701016618728022 -1989-01-10,0.051546349846596604,10.614398953830273,-3.674813644145928,1.310557600474903,6.0674937372328435,0.7582018022841106,0.0,0.0004419154714809109,1.5831947929446641,0.019043627212250204,0.0004383975459673511 -1989-01-11,0.06092884453058457,10.277388508045599,-4.128218698885116,1.0800916381789352,5.978435939164376,0.635840682529835,0.0,0.0004856371194951331,1.4659512826591692,0.01778711942757271,0.0003593216234081144 -1989-01-12,0.052173206930730534,9.34928905256015,-5.903472136389822,1.4416220680830676,5.752811658169245,0.5181825352197931,0.0,0.00038828457660496085,1.3715809547945437,0.016585771770257583,0.0002930235515647637 -1989-01-13,0.012441045744708222,9.013450976030944,-6.968949345922758,1.3061010725714222,5.676842822087065,0.271428451961353,0.0,8.54710051244028e-5,1.2844419921552093,0.015107809099052065,0.00020375878313884713 -1989-01-14,0.056836903848711165,7.896116339444393,-5.505999392799916,0.9359872285639526,5.245537612893398,0.37659656149215287,0.0,0.000362975644771904,1.1716990012214212,0.014311611288544784,0.00018790579524733918 -1989-01-15,0.0012570862190850766,8.666724749346743,-4.1376797626995625,1.1486036385043472,5.415207135733971,0.14876446293411041,0.0,7.487555371751657e-6,1.1189746130279499,0.013049940637928971,0.00012345793205122325 -1989-01-16,0.17132639404766398,9.11411719778289,-3.7872305769457695,1.3854629672488203,5.542965469902955,0.7390380097952165,0.0,0.0010050955123186989,1.0171259711648375,0.013844665195114524,0.00023340595107809717 -1989-01-17,0.08370189272984056,10.711811909335744,-3.2258266372407234,1.92330581759485,6.06431067936699,0.5356776960913308,0.0,0.0004979791662507588,1.0764690285893754,0.01351520552689556,0.00022776098868542558 -1989-01-18,0.0,9.105015751479804,-6.7089950089149095,1.4092984068854566,5.6956118263209365,0.18165172665982088,0.0,4.440892098500626e-16,1.0405820262810945,0.012122075889292927,0.00014826169886781145 -1989-01-19,0.0,10.450007724109517,-6.662436943609156,1.2845102087362843,6.140765067950865,0.09903038104258616,0.0,7.882583474838611e-15,0.9398688879015541,0.0109488360334703,9.65113976642987e-5 -1989-01-20,0.004611087797154938,11.806428209802963,-5.127725447725966,1.3804628741194094,6.555899045456972,0.07649964297284455,0.0,2.0688929032313362e-5,0.8418195695759024,0.009860343927301904,6.597457892255563e-5 -1989-01-21,0.0,11.132070447539675,-6.296787822811423,1.2712147481714284,6.359764363152264,0.04415550186865986,0.0,0.0,0.7521822862863923,0.008762414232285076,4.294635007337436e-5 -1989-01-22,0.13886851461226465,10.453219111981245,-5.801413283805842,0.8124150463587455,6.11269716715705,0.38493592726967896,0.0,0.0005463220933406843,0.6709516905794197,0.00943385695320915,0.00011114166484291615 -1989-01-23,0.7507401851556564,9.743058293752693,-2.604044626159336,1.122094593538918,5.655545522519041,2.9771422836129147,0.0,0.004398143076898786,0.7257502442083806,0.017200113573488437,0.0007420302565443587 -1989-01-24,0.6879635316307617,10.456591763597734,-1.947121167989876,1.43877599332966,5.848970271266293,4.7609940791914775,0.0,0.0061544746066706235,1.334441519109669,0.02355964920091972,0.0014201364993379362 -1989-01-25,0.09218988843026522,11.708536201287561,-2.212007431862467,1.291519270339362,6.333487329102476,1.900850604220651,0.0,0.0009178783912520277,1.8209138267747695,0.02228636266444516,0.001064202659364726 -1989-01-26,0.02077235590518215,13.55320453412242,-2.330232871445285,1.2949046029654274,7.02261181844789,0.8990083423712472,0.0,0.00019012644285024832,1.7067773940029882,0.0201247846320756,0.000721695473347213 -1989-01-27,0.12014159496948296,13.829419110287544,-1.708328657111044,1.5754436914028265,7.077231243793739,1.1479227678705357,0.0,0.0010120899644597836,1.521067530868914,0.019118974834415325,0.0006238954819635384 -1989-01-28,0.3680460706236027,11.357504988845513,-1.2445837317398345,1.6683362479085682,6.10388898959308,2.5512949633258857,0.0,0.0031920932443956773,1.4435626173692742,0.021104014333243753,0.0008921699883168546 -1989-01-29,0.5089943811531572,11.669354347045596,-0.9434173167563432,1.5275860964142036,6.186701059793288,4.100492291078878,0.0,0.005097540400060607,1.623354235919286,0.02484041729123474,0.0013569365613098463 -1989-01-30,0.31343618332533674,13.014058746438938,-0.514054710185934,1.3017594897874325,6.650779752963327,3.449033332041857,0.0,0.00345270624313998,1.9075833650038916,0.025873373589461887,0.001409027457085706 -1989-01-31,0.5687748827063915,13.960096243945385,-0.1741496715816576,1.7381256564637015,6.977882879005572,5.612496138125214,0.0,0.006844626714406998,1.9693037177579242,0.029566896823862425,0.00195940618191075 -1989-02-01,0.3623573386499877,13.647302703259118,-0.5782256907629401,1.645516439689708,6.896717205115431,4.746284695251304,0.0,0.00467941128195043,2.2360602466136275,0.0302698051331997,0.001987990828064081 -1989-02-02,0.03084235993850563,12.985909777409693,-1.5658477758594336,1.598863288242115,6.736948053836158,1.84556945851873,0.0,0.0003801838056853128,2.2927679469774747,0.027068486449111452,0.0013519771942995132 -1989-02-03,1.1461611345462,12.13530593105503,-1.4508853847788,1.3752680656164449,6.405738756633249,11.453193891385947,0.0,0.016116395298013453,2.056791455930914,0.03731222853265263,0.0033340328791290215 -1989-02-04,0.17214544389427874,12.997876895780845,-0.6645684229416154,1.7639653029256932,6.650381100975037,4.8765832928267026,0.0,0.002707029094328822,2.852469977958389,0.035234721294061154,0.0025824838748057122 -1989-02-05,0.2453621351200901,13.456027545893214,0.3876994987075167,1.7710141771187735,6.706897601243216,4.3143419829847796,0.0,0.0036799241698959595,2.681170985554135,0.034092128909940546,0.002241398443443639 -1989-02-06,1.3936480681828085,13.402993660088079,-0.4893234284620364,1.879448873956796,6.782717205242167,17.730518169716355,0.0,0.024555970012571482,2.5914853520432666,0.046424105480261685,0.005198054236048337 -1989-02-07,0.027660487767966657,12.910776810993669,-1.8852634290955137,2.02349075292046,6.725067619719894,5.168061357548359,0.0,0.0005244797510292713,3.522528184689642,0.041357293727860275,0.0034635487892522906 -1989-02-08,0.02792250862219001,13.542057294740223,-2.362531749594501,1.9621088422945328,6.992970182538922,2.704345941342376,0.0,0.000471911064384576,3.1420132179508298,0.036927604428292245,0.002326462906015189 -1989-02-09,0.0,13.30149903052972,-3.4238170314127903,1.6384697341733983,6.969006278136153,1.5512707202996843,0.0,0.0,2.7913315178212135,0.03251712179974131,0.0015144180080593054 -1989-02-10,0.0,12.710024820078493,-3.380596660183463,1.1948149173813416,6.750560307730969,0.9884911218722499,0.0,0.0,2.4593950232319006,0.028650286436249672,0.000985814945600229 -1989-02-11,0.019299810636485358,12.072302935597053,-2.2025296901119003,1.44476786574412,6.432272721174697,0.7890094631394704,0.0,0.00022521638875318967,2.1763203409050123,0.025577487818204136,0.000676011718549899 -1989-02-12,0.36654050581790537,11.231470957925696,-1.2007235877534534,1.7241086726896506,6.021681584546815,3.185891758692401,0.0,0.004183319966786392,1.9549678342282266,0.027043999958599844,0.001077024120559479 -1989-02-13,0.03594402454298051,10.859715411790523,-2.00214751899244,1.8453123918575465,5.965003290779614,1.2080347465488979,0.0,0.00040306522494160113,2.0832164646703677,0.024686784533116672,0.000762464717253899 -1989-02-14,0.15739269928983216,11.083560535843679,-1.3233886716210437,2.1548629511059367,5.975078648982426,1.6259123704173783,0.0,0.0016646144375648542,1.9037922010196555,0.024011408185390676,0.0007497908342426358 -1989-02-15,0.32497029392364396,10.857044575842156,-0.2693882395730211,1.9877182161216151,5.759176871535442,2.868630710626854,0.0,0.0034917429410848966,1.851384921097536,0.025353064354600493,0.0010197480385579596 -1989-02-16,0.4243494573188618,11.422551921036467,-1.6812426462643568,1.9484465551167025,6.132900957843671,4.092445427126398,0.0,0.004926848843748666,1.9627717759100245,0.02780834572893758,0.0014139935648060213 -1989-02-17,0.0004626496768018533,11.168681614019585,-3.3286442297188388,1.7471769720494532,6.177619500429407,1.2257665571098644,0.0,5.278939977128468e-6,2.1375315715102436,0.024906184755778306,0.000921247149587469 -1989-02-18,0.006480785534421021,13.052812545691195,-3.9911162856230384,1.6393131114780048,6.883631612872077,0.6663516673283528,0.0,6.623580452771657e-5,1.9129613748664294,0.022360201258369752,0.000609773975493712 -1989-02-19,0.6287926289481659,14.153802116342346,-1.6899400160587206,2.0461087608522956,7.139249729427403,4.804934398962207,0.0,0.006739584877902938,1.6944582594869981,0.027064299467220134,0.0014231355589371605 -1989-02-20,0.7503693464180718,12.497771564660844,-3.0898206300015736,2.1076116362221566,6.6280879462835856,7.6441282849947925,0.0,0.00968453946953729,2.0405549781785157,0.03251237827443926,0.002401008563595395 -1989-02-21,0.7664753084095044,11.860577402642136,-3.5093862808919423,2.088249991652518,6.424186136359372,9.812440214263948,0.0,0.011722259185524386,2.4752582744219866,0.03776400082979863,0.003347830859201919 -1989-02-22,0.6307315529418827,12.581177146367375,-1.8598632441429896,1.9878902226573327,6.559788371032332,9.969368424419118,0.0,0.010814960454561762,2.885952568093459,0.04096698839419143,0.0038260180378530476 -1989-02-23,0.05665215849637426,11.49319301851026,-4.001145536131088,1.982885130079676,6.318139843857282,3.7975932667678793,0.0,0.0009558303412838601,3.122319634932567,0.03703286848763764,0.002636097209555047 -1989-02-24,0.004264812163129715,10.899519979098372,-6.814464039868421,1.1017547703932258,6.218474127030624,1.8656653777610364,0.0,6.474960338168512e-5,2.8358862015362964,0.03308583586453033,0.0017258344704999364 -1989-02-25,2.2469165207020008,12.8492583174341,-4.627273730276786,1.137331361228052,6.817243948132612,29.979541593314103,0.0,0.04415553329749011,2.538716562701296,0.05574938443118451,0.007846769371922068 -1989-02-26,0.1462855540906545,13.86863145719619,-1.985623131855692,1.4150387064561707,7.032150438155916,9.878061287608691,0.0,0.0033806638273197465,4.226157726089113,0.05093600304955701,0.005622634072574612 -1989-02-27,0.000261278326942472,15.179077717681713,-2.0074585125823536,1.480329276554509,7.516638728014742,4.0573729379284185,0.0,5.393250253527774e-6,3.845729842682751,0.0448031919262003,0.0036608917194692224 -1989-02-28,0.0,15.344386529281252,-1.4201373583624208,2.0082167699070297,7.534573589490262,2.411229604453992,0.0,0.0,3.351466970500001,0.03904232048102385,0.0023830684474636485 -1989-03-01,0.13462694100646602,16.563521360911576,-2.32350403292734,1.9892161765243164,8.044250350452188,2.9591498544683383,0.0,0.0021525350462839044,2.9200239214742076,0.03558461383637447,0.001879020814869786 -1989-03-02,0.024520190021061844,16.657181305109223,0.29372059871943096,2.1027152291316007,7.890808076550424,1.5748123368197786,0.0,0.0003470545859864671,2.6351502127915496,0.0309833589751929,0.0012759984241898297 -1989-03-03,0.0,16.452286852072106,0.7879295355834506,1.8170833010111411,7.758905534200601,0.8603847613089661,0.0,0.0,2.3017114537790975,0.026813379640701074,0.0008306150022216422 -1989-03-04,0.0,16.600679782266525,-0.9687162889252322,1.6356912285862184,7.962925945244616,0.5428648747882144,0.0,0.0,1.9973631076224037,0.023267927522834464,0.0005406913275411846 -1989-03-05,0.02583711911796647,16.274652354005013,-0.4495204183430188,1.8659547145611008,7.794218137618889,0.5085987835621284,0.0,0.00023956758035546116,1.7265142896935486,0.0204137071617883,0.0003884423449323825 -1989-03-06,0.0,16.36861450639467,1.2571545820349328,1.8583378603463625,7.664247044963158,0.26676022100048147,0.0,0.0,1.5198925904325402,0.017705719356544303,0.00025285770976076914 -1989-03-07,0.08690258550244746,13.109052419463652,0.35474335115338324,1.4423267021091768,6.487113570927657,0.5783020383030163,0.0,0.0006316549466436477,1.321739604172858,0.01640972753020734,0.00026077728168690965 -1989-03-08,0.14956973927865713,11.496157262083015,0.9995496233637796,1.3266143305238516,5.765783624593896,0.8972246492800555,0.0,0.0010574246679281307,1.2532284240651665,0.016341648581215278,0.0003307622806717054 -1989-03-09,0.3750832715497085,12.650670751914149,0.6846265492386945,1.4837359394827236,6.260210215715087,2.1752821053142757,0.0,0.0029021047900247843,1.2652341576041655,0.019108587171927392,0.0006571990254140251 -1989-03-10,0.1779266274439233,14.364744552980234,0.17251358964503188,1.822263207139604,6.981349699581898,1.5636361728798716,0.0,0.0014735391765265948,1.4655725562419124,0.019145652457434374,0.0006521737851307923 -1989-03-11,0.20611866468760892,16.505139937982374,1.323498882859873,1.8082862911936803,7.690372396192218,1.636100386663241,0.0,0.0017034668085486593,1.448255837790826,0.01927234255623926,0.0006839124685452821 -1989-03-12,0.4823554534115701,15.326007791477409,1.891660979216776,1.7086685768895873,7.147599943862819,3.371281279964165,0.0,0.00431660422645791,1.4378851759710596,0.022369502881257636,0.0011024616349892564 -1989-03-13,0.006535329309709237,13.96857096968869,0.6161091621793445,1.2585804653571164,6.766777146461784,1.0145600335052616,0.0,5.885871480137972e-5,1.686537041672994,0.019723146516825735,0.000726612817518282 -1989-03-14,0.012337336294200123,15.274535585094487,0.2531904428056768,1.3419459562135208,7.307970744767684,0.5608215628200334,0.0,9.88536726392146e-5,1.4980952774068508,0.017595517034234457,0.0004880427254078223 -1989-03-15,0.051986638733595616,15.384027453616293,0.6414262519234549,1.5210679530331173,7.306196596673991,0.5688031188414028,0.0,0.00037327119199033476,1.3226664221478368,0.016013777198331264,0.0003745289294773243 -1989-03-16,0.10017324241990612,15.844373545533285,0.7896195448254044,1.6390715304476795,7.465926114039495,0.7027125235406408,0.0,0.0006685449579576647,1.203862518544526,0.015191133478690852,0.0003455965763667475 -1989-03-17,0.19276302569111828,15.239333370036546,-0.27793473574327765,1.5477531700661022,7.332842260528175,1.093022596948572,0.0,0.001266852810141078,1.1385061286755584,0.015508384068463965,0.0004178641834955047 -1989-03-18,0.1850000114944961,15.853409103419617,-1.0725577709137115,1.5454846579116424,7.626736572796724,1.1576206989694915,0.0,0.0012384657156297163,1.1652828648906655,0.015729881053252102,0.0004605846446622821 -1989-03-19,0.15933308974247756,16.73921476895189,0.06922020080499591,1.3134183235506889,7.868921869603198,1.0726676960700663,0.0,0.0010641332548759208,1.1751735861794832,0.015546099002025362,0.0004618489644900944 -1989-03-20,2.0378932590225314,16.455447296201147,1.528585927155644,1.4357805792161902,7.608775941536384,15.832103042076444,0.0,0.02367201126138907,1.1559569786838013,0.037206192287290156,0.0039050553856528883 -1989-03-21,3.2544919564382773,14.51567152897543,1.3915913613300273,1.0715586863826705,6.854029785841662,54.32417597558467,0.0,0.07715851607105684,2.7788120004658556,0.07028390514310766,0.014290531438373107 -1989-03-22,1.4466397664800623,14.06234861592645,2.0587967098123445,1.201091841874384,6.578292914025089,44.77429339714618,0.0,0.04728698512110219,5.321910701456437,0.07884902906315563,0.016502606357737763 -1989-03-23,0.6532719374601177,15.2232599439969,3.7603435641149434,1.7058477435780244,6.780259498011964,28.451138894024282,0.0,0.022370908484666607,6.001042164555151,0.0775182527648534,0.014148722414359532 -1989-03-24,0.11327996086241668,17.57534344058398,3.287809976774795,1.8000042072647886,7.825750647733659,13.115002104969964,0.0,0.003632683706967149,5.876876625442717,0.0697812674964689,0.009763283061126522 -1989-03-25,0.08958504959360869,18.885684456977827,3.3012571292477215,1.414425961460646,8.359927034286931,8.331109663375447,0.0,0.0025256891209374244,5.1840329763977495,0.061434078532643835,0.006740011878677718 -1989-03-26,0.270095174092564,18.783378155027314,4.2312758120066745,1.2773645932024285,8.189191460397117,8.97468458152237,0.0,0.006761854328956152,4.516941086934003,0.05576573050021688,0.005417023165633719 -1989-03-27,0.27918595134037083,19.02569888094596,3.998717747970528,1.2251361884036531,8.318222198562694,8.101522749152766,0.0,0.006383955325669599,4.114980083338496,0.05118905842809709,0.004498278988031038 -1989-03-28,2.0078063519518894,18.575197140618673,4.397888376362896,1.566164574106875,8.067796264135477,37.034608536101516,0.0,0.05159574438717618,3.768163876662953,0.06728614148352777,0.010784382499171982 -1989-03-29,2.9379251248132188,18.951059830483068,6.710648298329356,1.7220216623783695,7.835930302820923,77.02549758896005,0.0,0.10253643693058256,4.975114905471968,0.09218155737798425,0.022632813414965546 -1989-03-30,7.782432939683733,16.879153729263813,5.0489207374205165,1.4657675899707396,7.2297498823404025,321.2332357986739,0.0,0.4597302738092601,6.841509298612216,0.17035902325433094,0.08473362348635816 -1989-03-31,1.4383535456456509,15.23117480264049,3.4381557125160818,1.367484292725022,6.8054518050352035,152.5795162766196,0.0,0.10759047563871094,12.762019318116192,0.16542472689632734,0.07153984573896345 -1989-04-01,1.0087370030396514,17.520526271695605,4.4629056524907025,1.9693537862838708,7.593862593481531,102.36257391196429,0.0,0.0726593775814337,12.50003422761714,0.15736803624636447,0.05763254082326849 -1989-04-02,0.7386317318101391,16.341876991457823,5.428560588056931,2.089559172372204,6.912623522090658,74.51812818731091,0.0,0.04924905977144223,11.708544199642231,0.1450011699584046,0.04501497224373386 -1989-04-03,0.0,17.590535648109597,5.103606531444427,1.8469687304687123,7.508832595243349,32.523034460646706,0.0,0.0,10.941081617387244,0.12745619117688733,0.029302631226975285 -1989-04-04,0.21993897846777866,18.658713561430577,4.479080843884717,2.1126953837358444,8.057741134337745,26.882414105904633,0.0,0.01157925703734175,9.50961446424923,0.11334270842929862,0.020837748647192678 -1989-04-05,0.0032200144496015125,18.938994968047734,4.16533844847002,1.8595348560916387,8.215256211625663,14.347437320613052,0.0,0.00014686993330869855,8.368402563208754,0.09752373348747355,0.013586758112163883 -1989-04-06,0.0004045044141703832,19.38201239725832,4.5859962086395125,1.4086248565405866,8.337513344797054,8.915885116322595,0.0,1.576753093500882e-5,7.181885598719514,0.08366881561491166,0.00884674179290301 -1989-04-07,0.10060490026534376,18.666530481721086,4.876747185344343,1.6712053428034266,7.986926687193761,7.967887453603897,0.0,0.0033740668329756,6.149590229963663,0.07281054042640024,0.006272564630084379 -1989-04-08,0.4496231207126629,19.1980843149962,3.525325788435207,1.5810974625061085,8.391821521441212,13.184806750592765,0.0,0.013632779639485781,5.391232321606841,0.06804201028075456,0.0061589368582224135 -1989-04-09,1.1387371783229676,20.59642874500549,4.974198094894019,1.7118373008335817,8.78214598415948,27.173753432729047,0.0,0.034226779439272326,4.998418401529557,0.07149370621867089,0.009220711220009234 -1989-04-10,0.1757261327557544,19.70105895684716,7.903294404185805,1.9976697542513089,7.88096297578425,11.329421191175054,0.0,0.005021082113525449,5.210235812257946,0.06274280910620222,0.006766783558074978 -1989-04-11,0.7044893966017423,18.735202571664782,6.115864974099897,2.211315548427612,7.791151329747417,17.274848557559853,0.0,0.019014943588657296,4.657148875819022,0.0624594547932975,0.007300164123001451 -1989-04-12,0.2907458350745513,17.783018034803078,5.09319515005553,1.710787916519489,7.553255113907043,10.785494354020162,0.0,0.007497876867017306,4.644411495191771,0.0574912406443278,0.005893726254073909 -1989-04-13,0.03215325296101278,19.222645177690453,5.915113244744087,1.741614815817021,8.029403167017051,4.845403997170309,0.0,0.0007452629522127704,4.29578141998595,0.05041750791800931,0.00395001608037056 -1989-04-14,0.11785665757077413,18.382476336626933,3.415221516334873,1.9597416580023037,8.042495967573826,4.220238321235806,0.0,0.0023981283681578924,3.73283639872359,0.04485796628795919,0.002936425288712235 -1989-04-15,0.08148876830519136,18.733766104316658,3.943477084706468,1.5291057618763049,8.112658602834756,3.0153522128433097,0.0,0.0014679899272663777,3.320970118403745,0.03963634177143023,0.0021349980037256786 -1989-04-16,1.0405062995090646,18.928704829027765,4.777887193286982,1.5809785171864887,8.070886908203878,14.061109689853472,0.0,0.019249944643634942,2.930830741372286,0.046263387004264245,0.004320871803287392 -1989-04-17,0.604453591169624,19.21133475463861,4.871582021133643,1.9350612013108135,8.171489196391658,11.828374499529257,0.0,0.012080950450808592,3.4229313993134878,0.04691630765958247,0.004652187638686575 -1989-04-18,0.05455255536723483,20.33619251486783,5.229946344283409,2.000274961314417,8.590604572469415,4.482730469826442,0.0,0.0010211234476729392,3.464241493179624,0.040991567620787275,0.0031838366297368263 -1989-04-19,0.2368898042763445,21.354704280939075,5.999967756173133,1.9894115060745168,8.909203481704976,4.77721195403431,0.0,0.003958358785268706,3.0022010486624744,0.037733214816293895,0.0026752466067764837 -1989-04-20,0.9354744595047764,21.181361181638717,6.8541430467216005,1.6802360858457444,8.694144808536242,12.500215142148837,0.0,0.016105237724399535,2.746277217655151,0.042889913633784055,0.004193720167577708 -1989-04-21,1.6062507277966764,21.33966050368217,6.281364027771867,1.8717211909757645,8.850219670362474,25.869104183830924,0.0,0.03396363885151965,3.1345170252611063,0.05522673371695854,0.007901380477772741 -1989-04-22,1.1737013559661298,18.351489241081914,3.3090966681291634,1.7492257680572738,8.0071600900287,26.201014856254595,0.0,0.029107316029109764,4.021672698783775,0.06052258925710994,0.009575446188428868 -1989-04-23,2.968996281668569,20.14084755976145,5.078656451250378,1.4311542980645582,8.505746976596196,70.64815286743818,0.0,0.09578218798755334,4.481454474297664,0.0867927056130658,0.020817418515865858 -1989-04-24,5.263959404388906,19.352971030110247,6.344776860825224,1.5502148099518631,7.9623529055760285,188.20569910518637,0.0,0.258642170370762,6.356900149069223,0.1353751437638045,0.05293325234574781 -1989-04-25,3.2751543807882677,18.920334657456827,5.4881690693473875,1.5504725686872385,7.916602109499246,187.2473060910955,0.0,0.21025749285717632,10.006044165646951,0.15471696859500103,0.06647186879571972 -1989-04-26,1.1206426236945797,17.431062638106877,6.281730081591303,1.5504237904374245,7.125120137499877,105.126388708609,0.0,0.07420646967196642,11.437701647954464,0.14629620583478517,0.054569093653814266 -1989-04-27,3.3482432129726494,16.80829876471217,5.732717231233367,1.140961228628065,6.9575045194273315,194.1444092407668,0.0,0.23467351902027112,10.99181362617256,0.16705195061089292,0.07125442527937616 -1989-04-28,2.8416922256668413,16.921218338974622,6.306973819686393,0.9412447251132836,6.887915261392704,204.93694844681605,0.0,0.22127036823590585,12.584115613884086,0.17970021445880074,0.080074964247911 -1989-04-29,7.279365654052468,16.453501776258967,6.36119697855049,0.8026200580832263,6.665721770072317,526.2814365680763,0.0,0.704546260185408,13.549656580871744,0.24264400292775684,0.15940261444333673 -1989-04-30,1.389592053340861,14.28886123302587,4.019528238711437,1.1462869545606829,6.201996086461284,243.52863548352,0.0,0.149776841408789,18.33462101760849,0.2297737243810931,0.12656934680904203 -1989-05-01,0.8863458477123946,17.104210420816983,3.889981584731968,1.8172573298070973,7.381982975925943,153.01682534883858,0.0,0.08988492317268959,17.53322735266852,0.21457555343463872,0.09607700341932023 -1989-05-02,1.5188759685176059,18.889076689680053,6.617971304214856,1.6460276610903832,7.677005028395559,162.0016780521701,0.0,0.1429301105687315,15.99763717783797,0.2040555153876554,0.08430483442027284 -1989-05-03,0.18912806384467798,20.21854625244781,7.562357850723699,1.4755269364789472,8.08256511665977,74.12747194744887,0.0,0.01607597358948601,15.128684781160551,0.17844214591015845,0.05732628934668252 -1989-05-04,0.056236391269510064,21.58245350447971,8.74469022060894,1.3400348194858356,8.46313331018146,41.59776099066177,0.0,0.004102254182010809,13.134603409694092,0.15366435040421522,0.03794134883012377 -1989-05-05,3.5772856278001783,21.73570016741509,10.63893228828088,1.4205589648409505,8.108726002807707,193.68284445972216,0.0,0.2581419431879177,11.234740864158894,0.17255007743257167,0.06400395917725578 -1989-05-06,2.304592698201956,22.09890895244108,10.582131221991483,1.7740147027850832,8.29393825646716,172.51274227482753,0.0,0.1773456031177978,12.697224873807041,0.17476101498229885,0.0686670572058961 -1989-05-07,5.68359349115026,22.309968604386253,10.06098869330238,2.0883027475095703,8.510570146006565,381.36315747762274,0.0,0.49784823813348744,12.810127827533828,0.21543932879729,0.12050377576260392 -1989-05-08,0.09674515294475376,23.479965988567194,10.58166794693756,2.167295146051594,8.946183819827368,113.75091384888316,0.0,0.008519532852950526,15.69302915455043,0.1839401773201104,0.07973951907829616 -1989-05-09,1.6329268784822453,22.7858826781737,9.287233745074044,2.1223885240903786,8.88657698890339,138.41277137418817,0.0,0.12817083128269924,13.297288160538073,0.1739268939646061,0.07142258166870316 -1989-05-10,2.756534138508941,21.03878985551577,9.021459107013255,1.7716485302639629,8.131629159765536,193.9876127442313,0.0,0.2141226846377733,12.594748138205901,0.1788320421229591,0.07909608573482516 -1989-05-11,3.94314669716492,21.918024512732984,10.007238301319383,1.6809992785470282,8.321623575286662,281.97244643509504,0.0,0.33291973446510426,13.149897895525877,0.19912239352450023,0.10217978202963626 -1989-05-12,2.378282132417874,18.870762158026718,10.2800018404424,1.1595298261701212,6.773849467181927,223.83332803699332,0.0,0.20974086185905128,14.572130839645935,0.19746083173909024,0.09845038033147985 -1989-05-13,17.839986742538983,17.13948686395016,10.231553162582246,0.7691414153922916,5.904673034067485,1689.6476434666044,0.0,2.467407168235967,14.913318935873962,0.3815538295216316,0.43978576232913275 -1989-05-14,11.553116083185444,15.84421649509712,8.775361004720986,1.1422942018871618,5.7095524875620525,2028.2672846555715,0.0,2.4459738554009256,29.113214773415233,0.47373521388273887,0.6587155147372576 -1989-05-15,0.41574510223845823,15.13499673718415,6.822488870907466,1.361365191400991,5.915200384665116,641.9395754239634,0.0,0.09210875809405411,36.12645205116322,0.42569184924147396,0.4428177595897645 -1989-05-16,0.922328797076775,17.784703321621627,7.156125974613287,1.1876481880438672,7.032379347863038,424.0677094142221,0.0,0.18187209060350396,32.403954008034916,0.3882286250084363,0.3159462616144582 -1989-05-17,0.0037276145421128773,20.980377400717487,8.414817832973627,1.041932165257634,8.205522844116539,217.7876928398061,0.0,0.0006355733052726179,28.916906090993873,0.33690579665100595,0.20576294226164785 -1989-05-18,0.042142560022520134,22.313428340686198,10.5896409963771,0.9979457071142854,8.350238127736043,138.77776106744915,0.0,0.005993459157754719,24.544839874305723,0.2864216942347297,0.134854597251048 -1989-05-19,3.3208921932405167,22.554118989116144,11.581461209553698,0.8820591590767577,8.220326369860574,368.76209555865256,0.0,0.42949858978738487,20.860342125534896,0.28169500347470655,0.15318150984055298 -1989-05-20,0.5890813812835914,21.12720214378588,11.497280995896313,0.6997100296329061,7.531081350675348,170.4727596573338,0.0,0.07013797068998417,20.577372306861168,0.246574850837933,0.11039350554770236 -1989-05-21,0.0005264528391622958,19.992214021938988,10.75276812198032,0.7970034636508777,7.1707888904194474,77.88901675145338,0.0,5.442384141029046e-5,18.302551123477393,0.21321845830901406,0.07186927045064129 -1989-05-22,0.030629584028380542,21.137937907479472,10.715616854225797,0.8875156438202217,7.740274323438559,49.014818277117826,0.0,0.002740764970695843,15.965635345332897,0.18634565322250882,0.047200839163244905 -1989-05-23,0.3188982311640743,21.225729831575364,11.315324772306983,0.6687559182620479,7.6218518432457225,47.08433748304798,0.0,0.024756467011745553,13.807889868791117,0.1645675142320381,0.03449506568095345 -1989-05-24,5.364650206192073,20.86496753348716,12.200355088642562,0.8501783266500186,7.1789008448746605,315.6407283318311,0.0,0.44658988373884423,12.233944524252042,0.20501171025389836,0.09045457367695313 -1989-05-25,0.5885628851815307,21.097477311408447,12.020730502202694,1.0956529599075648,7.350657262155034,118.54064464394244,0.0,0.05150421958022677,15.35353431513034,0.18571463586327738,0.06672395439187326 -1989-05-26,1.545406410054165,22.47833988606967,12.834968576296664,1.040335435990466,7.815884632541385,130.79889041288118,0.0,0.12609383134204166,13.870525546691198,0.17958516711239342,0.06263380686529149 -1989-05-27,7.764787327190577,22.183124291658316,13.14454486648375,0.8402901919582646,7.565747867901655,538.9460471941236,0.0,0.7508594129284312,13.290139048902738,0.24527563318255205,0.15510110240217964 -1989-05-28,29.5808019289038,20.49715286119202,13.10074856309838,1.282875778961959,6.674871939486333,4022.337035431171,0.0,5.935273099502254,18.194171932277676,0.5565460906757829,1.0046965379730213 -1989-05-29,18.057080667844765,20.377866850569198,12.514495351783266,0.982800380667482,6.809940953752889,4926.101997163282,0.0,6.0075469423925725,41.3135564626895,0.6916277147935247,1.5687479958119674 -1989-05-30,6.355958392042509,20.568806067690954,12.882558175871804,0.6048962806257328,6.785579053253544,2892.625468425656,0.0,2.290417203712429,50.48138538470715,0.6621165628527521,1.3699310692811761 -1989-05-31,8.06421953298582,19.225133574460248,12.180526200706662,0.4726313795005159,6.301755830690597,2900.393581014675,0.0,2.8276566012632394,48.52833454576425,0.6592649286508112,1.3223132293178332 -1989-06-01,4.778614916407236,19.251664654903024,12.012659386651881,0.5288984300598891,6.372699401585697,2095.5736112168147,0.0,1.6206961659591954,48.89491677589374,0.6252602947080735,1.1075386970679464 -1989-06-02,4.943284913369466,17.83298076115694,10.387937453941543,1.0262615622917863,6.1667689436822615,1858.5118928426705,0.0,1.5769288348162913,46.45541368459891,0.5987600297520019,0.9610663482433115 -1989-06-03,4.6361599569000544,18.654747693757347,10.387903689039828,0.9935237992291036,6.579989629190163,1646.0147257878627,0.0,1.4096089713580282,44.80687438993798,0.5759778656674426,0.8402428123627963 -1989-06-04,5.415129705532883,20.653256855265926,11.386651678690571,1.0683078620084123,7.287496996690675,1665.0757526605123,0.0,1.5748644772030067,42.77943263533875,0.5614340123048492,0.7867549612638546 -1989-06-05,3.5178842783813287,20.396712268908708,12.970022061246574,1.465588386053366,6.65020407996084,1230.6416641319377,0.0,0.9496563315611417,41.082496928782334,0.5195642361965854,0.6567397078723252 -1989-06-06,4.061883766862559,20.912776649090187,12.876256533786485,1.8437725422288715,6.958391959402834,1163.684222476875,0.0,1.031168852098256,38.69935631625934,0.4981394876292568,0.5845173740521031 -1989-06-07,2.9813952113275612,21.2145332837127,12.856264627075193,1.6134541112561966,7.123331490255291,905.6778294918705,0.0,0.7051594587821222,36.90744439893687,0.46467796740594547,0.4878642829776211 -1989-06-08,2.22755963845509,21.360339953495284,12.648952187805262,1.500741492893909,7.264054514147417,677.1252462413493,0.0,0.4802619284033147,34.38286679747909,0.42648667417583,0.3907036920147545 -1989-06-09,11.676881585281386,21.822111433829864,11.736408227672912,0.8384752428811805,7.763630039528857,2036.379543665765,0.0,2.6800076437086062,31.538009526767137,0.5034242148886328,0.6624004954264349 -1989-06-10,1.9609901252845163,21.396322922275655,12.758681731075583,1.1576839810163155,7.2450389495633765,884.518600232563,0.0,0.45237736535698625,36.620142867720816,0.4494440709374482,0.500072726459792 -1989-06-11,5.0951729147145945,22.614020292859106,13.854641431667535,1.5940208145651371,7.536270994535753,1087.693750234458,0.0,1.1079689590946122,33.20072856706432,0.44612131699996055,0.49422848334425423 -1989-06-12,5.153679452115496,22.06969574988908,14.334600165231711,1.954139282627944,7.0741487489787644,1110.896831263482,0.0,1.1054062948821883,32.753232776880395,0.44158985564154446,0.49003395227137253 -1989-06-13,1.5953242776179215,21.172617492501875,13.58487730984818,1.6012240657767405,6.844835543226342,598.7273435108268,0.0,0.32221834231547875,32.758677607383575,0.4002008562834874,0.3680515740207879 -1989-06-14,11.543287713619769,21.306587943506273,14.030273838105789,1.8927248067738536,6.756807864442459,1902.2461383132948,0.0,2.508515329343467,29.908176591291795,0.4828814868369825,0.6215427929764392 -1989-06-15,4.667329059213809,21.179077080508613,14.212527916717072,1.9768921896708795,6.615324714686986,1271.1308845458595,0.0,1.1010483707142056,35.97437295951203,0.47344830460096804,0.5722460257360111 -1989-06-16,3.5788697608019766,21.80907454938629,14.345412364430619,1.982150475798167,6.919676854620673,980.1940222557843,0.0,0.8151311926697473,35.40291213232151,0.4541113592910163,0.4966210330531371 -1989-06-17,0.3081479587953959,22.7008567919379,14.149197370103257,2.0321327876763355,7.47746077436606,417.3885483212859,0.0,0.06303383328978018,33.77412277367165,0.39703537238186765,0.33287478363425055 -1989-06-18,0.9519774177537662,23.13330361009264,14.522687111139383,2.081790271537705,7.585496432635314,333.841398011409,0.0,0.16760973690576642,29.277644329508846,0.35215462084672655,0.2422068975417667 -1989-06-19,0.6438906629804217,23.61688881231452,14.264625479604854,1.8928998680026383,7.928622927014626,232.41873209439765,0.0,0.09872842638655066,25.974748401554454,0.31008911807095224,0.17269816798914261 -1989-06-20,1.0840496706389413,23.119454676291365,14.080142057897975,1.564276293869896,7.721463365542616,213.96299615359587,0.0,0.14547996550953113,22.75768117979533,0.27774001799161335,0.13456986444375174 -1989-06-21,2.036284819929609,24.38010506581271,14.177095228958864,1.6128415864162342,8.355378670636485,260.2818518460107,0.0,0.2506736152321949,20.505420850289084,0.2625956050625475,0.12576741804204503 -1989-06-22,4.489458514335516,24.473319484786405,14.46920499888716,1.2984500935747405,8.31556765761991,455.81547788511324,0.0,0.5491365612532304,19.146352114679758,0.27534118686812936,0.16548283181761111 -1989-06-23,13.241898889579618,22.86899477841043,13.843450663852297,0.8669183777718525,7.661294426474156,1493.5218510336927,0.0,2.070842469475723,20.07950365640448,0.3881717732946743,0.42303790396018975 -1989-06-24,7.763024551278093,21.687550903637174,14.49407111548258,0.7139444255245119,6.788803517174212,1382.9211634417304,0.0,1.5076887371200804,28.5261362025174,0.42274414655075776,0.5049456757223822 -1989-06-25,5.56485115735687,22.80289363850435,14.420021932644982,0.684311397521702,7.434249148358028,1180.8346571684938,0.0,1.1561536511967603,31.59041429166873,0.43283367969517916,0.5047373754814386 -1989-06-26,8.854560405756683,22.307343115376106,14.094414315259018,0.4677232660658132,7.27496798892373,1684.7031451260602,0.0,1.9620746675073057,31.876466451439157,0.47448887847538146,0.627315162266025 -1989-06-27,11.82213460263943,19.641957101722372,13.710958157751216,0.4353117678329664,5.92005833268597,2500.6775766872934,0.0,3.0200855223728666,34.968431444996156,0.545078406321803,0.8682053227534304 -1989-06-28,5.873912027230578,19.462248410973142,13.837983862137785,0.8580756650004301,5.7602006324357875,1824.1110316794245,0.0,1.6450644640023917,41.19003874186371,0.5482631531815383,0.8156462263314423 -1989-06-29,6.260763613705686,19.835561137981703,13.543608873505125,1.0586429091745408,6.099208964619184,1804.4491898683348,0.0,1.7818265781125877,41.56931013771796,0.5571879670816192,0.8022567770722643 -1989-06-30,9.328837098313477,20.173821619699787,13.436217022833073,1.2808325809586592,6.332389803877058,2460.7456015404787,0.0,2.7966205714993233,41.89964385406466,0.5967771094579469,0.9480582517606385 -1989-07-01,7.993169089057747,20.53774187158648,13.654388929395829,1.398152879944815,6.454154915967972,2435.6214999589006,0.0,2.5224143143536777,44.49657653725926,0.6114699887387978,1.0012162056660976 -1989-07-02,10.080941115794783,20.820373446556246,14.107126933676549,1.5567384950709908,6.440936075987019,2999.6111420306943,0.0,3.3501636310156577,45.403996576235414,0.646361947860313,1.161856596879887 -1989-07-03,13.995676235679069,19.935414843677925,14.084246299887052,1.436162297273614,5.935712723451934,4366.197818842028,0.0,5.209997077390183,47.84527906945245,0.7204052485456581,1.5496130586383332 -1989-07-04,7.16608405126246,21.30193065788267,14.217007023180175,0.9865506677724096,6.672247563189625,3164.5812590529827,0.0,2.8134684433978174,53.519753651921846,0.7069489107671697,1.4371174027018718 -1989-07-05,6.60674787393433,22.40442134145057,14.070670018577523,0.855511886327831,7.333791993501163,2730.342951372818,0.0,2.460509563171227,51.6702701866677,0.6788877932641523,1.3101448142740908 -1989-07-06,9.046872346050156,22.017829576690048,14.328416286229267,0.9915970157485038,7.032113054093064,3133.9567657534685,0.0,3.251806149107969,49.00531061950101,0.6762686166726409,1.347978221802248 -1989-07-07,4.338257697360127,22.611034936702875,14.853015700543486,0.9658206323623696,7.173356814824091,2040.9363416126048,0.0,1.4740814071828714,49.19008726459505,0.6235689676248449,1.1019211379849838 -1989-07-08,7.381228547611172,22.598800223003092,15.505708784743906,1.0171892185653528,6.919447583458029,2366.8019029995407,0.0,2.3707348490367357,45.47678878324577,0.6157601046907972,1.0782782737160674 -1989-07-09,6.265585999960605,23.092742754346013,14.902915088547838,1.0385188969253314,7.424541658449538,2133.0296048671476,0.0,1.968671302333446,45.21148607218134,0.5996730276489913,1.0016677656976642 -1989-07-10,3.2656601447107216,22.49538405990994,13.35918140774558,1.1688594515324056,7.614082277743003,1392.963004379796,0.0,0.9424355176760595,43.5845477673776,0.5457731936512161,0.7955383670712115 -1989-07-11,23.002829093408014,20.66449565366829,12.83337276627262,0.6044321093592987,6.817265181170221,5711.235207421549,0.0,7.851767252093435,39.69446190648159,0.7303809794504735,1.7134056434571112 -1989-07-12,2.9783415570231444,19.044116929326922,12.960831645009895,0.7201251303037575,5.879143191528826,2291.3303180283224,0.0,1.0956836377574337,53.01788211033885,0.6523180832129997,1.2821805640001067 -1989-07-13,3.997719498935428,20.731606489395173,13.111625484113866,0.8287052286014691,6.759435150324305,1810.5323855178858,0.0,1.3423428974894769,48.900675599096886,0.6162304783332185,1.0390308209969137 -1989-07-14,5.569291982182535,21.76485892658459,13.728338227131493,1.3482518667811751,7.107335533136967,1899.936457577087,0.0,1.7428737247242845,45.41319545093784,0.5939114515536164,0.9417385017520656 -1989-07-15,3.978907165258304,22.446469614909173,14.174171454637179,1.4047942110890503,7.325959062014876,1476.5907911974057,0.0,1.1573172832265448,43.50968782771303,0.5532099708064633,0.7892461561305887 -1989-07-16,6.012559244197742,22.669675119568144,14.407669248747757,1.2652307145303998,7.36853722343089,1669.2633336981824,0.0,1.653514190173591,40.474321653655124,0.5415406799925545,0.7655341155765681 -1989-07-17,6.171727336651293,22.087950399745043,14.712637663991194,1.0270411412222085,6.936259173032114,1684.553461550813,0.0,1.6603322564179015,39.62176221733068,0.5334631404242214,0.7511368429495001 -1989-07-18,3.841842765145136,22.525615615516404,14.511568744782961,0.7136603138652556,7.254968533615934,1242.0812505687272,0.0,0.9935850245903501,39.43969983011056,0.5042006595293872,0.6402427793651738 -1989-07-19,9.16207276360562,23.48707222689388,14.95037545911463,0.9143065589250972,7.6332347387033055,2046.1694630713446,0.0,2.3939329342784443,37.09448484331111,0.5388575696357691,0.7812796123163819 -1989-07-20,3.154484728952549,23.54658903409873,14.878005171757493,1.033674625356818,7.6918015777359905,1176.1568328701283,0.0,0.8018011663540703,39.19798186150655,0.4933775532747888,0.6306623799098813 -1989-07-21,2.2730694532127202,24.27483868343395,14.981191148736825,1.0100170059391649,8.055037900493723,805.3693353645397,0.0,0.5163421495643163,35.975481178009765,0.4455697116585547,0.4891522882851147 -1989-07-22,3.3889853162822736,24.00289245261962,15.098892251586205,0.8126243537002414,7.869461470054265,807.2828068361355,0.0,0.6959375196581488,32.34276727993062,0.41625071901033056,0.42438191783676316 -1989-07-23,17.778210446394606,24.44571536303212,14.7242122312499,0.5406642399660129,8.231763360851042,3155.096446171461,0.0,4.341189344281343,30.398638374506316,0.5612276617933775,0.937262891793786 -1989-07-24,8.651761129672309,23.193486831975235,15.195906590853347,0.6968590068015632,7.389749314653194,2466.1401935142817,0.0,2.4507487809464976,40.18529156155733,0.5689185897706089,0.9832767975470432 -1989-07-25,3.181664880578824,21.562329565752922,15.691158242891586,1.0348110826032482,6.235615765892418,1366.9965973269025,0.0,0.865123442612147,41.504766054358356,0.520566657249399,0.771794805635584 -1989-07-26,24.065272867764055,21.46770892148055,13.451414423772425,1.3021271925585798,7.0542359043492,5930.953720168272,0.0,8.214488279734919,39.129783757114495,0.7361796118780985,1.7531793357771455 -1989-07-27,7.720401087398276,19.454403266892797,12.207264119981813,1.0331123413482544,6.3988319583232816,3594.6917679216194,0.0,3.0192990417023147,53.077382292222765,0.708253002084309,1.6009702307923939 -1989-07-28,0.8413947351150313,17.958302686344798,11.105253641737056,0.6030266053549415,5.9834092026320445,1446.6798853304606,0.0,0.2944349606094363,52.10433357238428,0.6167818781678797,1.0869884470295181 -1989-07-29,2.3264943466998367,19.03759880072343,11.112534942351338,0.3902410201648969,6.544048550274323,1206.4644433420267,0.0,0.7132172090331372,46.27799129989899,0.5662093412028256,0.8161762468568189 -1989-07-30,8.27661727913419,18.8437150787236,11.488006351347366,0.4138446087703336,6.323540306022587,2182.0537246277618,0.0,2.4601020882917446,42.122552113023644,0.5871161914188506,0.9058792619833358 -1989-07-31,5.980497229639606,19.886439337569715,12.298370183746636,0.8695971216668485,6.60481373806927,1913.8199327998127,0.0,1.803458441893926,43.82151871320256,0.5801597581465714,0.8642880131530936 -1989-08-01,2.4090313953180438,21.837469461149944,13.518523084907551,1.1993876473647065,7.24099957846924,1120.5608786983717,0.0,0.6768042168500283,43.05024275032636,0.5295697572589191,0.6656643153415652 -1989-08-02,3.0153430265949863,22.352174369720068,13.990178556481636,1.1161690774980002,7.362602836388009,976.5361783578551,0.0,0.7580092695524838,38.89620919801028,0.4882411995145176,0.5487342922808209 -1989-08-03,11.409417788259466,21.558991259634613,13.264261162866228,0.7892048570656045,7.180078328825542,2348.2081509061377,0.0,2.975037340926887,35.87688724193545,0.5508534297376331,0.8101936185805763 -1989-08-04,8.57586238525036,19.987007484787394,13.411123026194424,0.4909042917308016,6.265421493137232,2300.251693626812,0.0,2.44420140039076,40.444145603422584,0.5710498950823892,0.8995637375282648 -1989-08-05,3.785828772448691,21.411131661267152,13.701236942665671,0.6008743651466251,6.954774678927738,1443.0675690793078,0.0,1.0749011099374455,42.73527794427307,0.5419393876035102,0.7492432869330785 -1989-08-06,3.6599056288501366,21.65992442527288,13.853066039188544,0.7947893265138751,7.040147461398231,1189.1416126795827,0.0,0.9602164908609616,40.0227035437,0.5088728135391939,0.633929311188308 -1989-08-07,16.236284829643132,21.230377936973344,13.890204662273518,0.6582577987559832,6.7909175300947595,3589.993220227637,0.0,4.770089700581757,37.6048217962683,0.6272124291972968,1.1389748114483647 -1989-08-08,11.160568497271935,20.623286326981187,13.809605196466448,0.6942498410073786,6.481280305822039,3527.4092112297735,0.0,3.8341573325326372,46.13783176797767,0.6674875587009329,1.325226165592625 -1989-08-09,8.499467284244215,20.9581083868048,13.735940197479124,0.2942127890819746,6.699804094228363,3100.561913277421,0.0,3.05222048495526,49.2490424710681,0.6727310294309925,1.3274056068787567 -1989-08-10,3.6309827012972784,21.408131790426204,13.253934067787444,0.3908069101796372,7.1181425247610814,1861.4773965698603,0.0,1.2274225725002816,49.34694924908483,0.6171570287980824,1.0509718811581685 -1989-08-11,0.2985124522082751,21.85486201190029,12.925832496863274,0.6178667124186021,7.463794577034094,826.4831549130834,0.0,0.08620355853076606,45.09755705332996,0.5288334660059743,0.697259064210654 -1989-08-12,17.157975643282832,22.71517310398182,13.540275934372124,1.0720184839554228,7.727100926665721,3897.639946077473,0.0,5.2541875472453725,38.649593395122054,0.6501203845488612,1.2539105528075656 -1989-08-13,17.943215006441267,20.321782739217067,14.006255663138536,1.2035352061141908,6.241199628302172,5581.7306575029725,0.0,6.827304700348623,46.65329955670099,0.7525056477447758,1.8557948351849711 -1989-08-14,15.214037096712598,19.943124173619395,13.773057590171351,0.9111190859227326,6.117168976808194,6133.040643052519,0.0,6.896952150840793,55.23322772257174,0.8206629259054651,2.2581980676773767 -1989-08-15,3.2251012096827267,20.606509858283733,13.856643106664135,0.7057896802203906,6.469496588624872,2817.78740290861,0.0,1.401768440545439,59.70576855713441,0.7331020138978418,1.6834207598806707 -1989-08-16,3.295780254610834,21.12915736053187,13.812962761756387,0.9969295050416492,6.78406328265025,2018.0049047562254,0.0,1.2368071435785537,53.65633533001544,0.6634535766872154,1.2841499526333757 -1989-08-17,4.809526575853433,22.777992692467908,14.053030989957733,0.9465551388738472,7.609811624538003,1974.5456740783616,0.0,1.6203684503807887,48.620635954548106,0.622425208789665,1.0826462980822764 -1989-08-18,1.8632917867100065,20.870067916005823,12.916381008530793,0.8659948987603321,6.963031424873305,1162.3460057401599,0.0,0.5473409154148772,44.934325997851346,0.5451605542813166,0.7880925958108158 -1989-08-19,12.904079695554225,20.452448293345952,11.798611563793099,0.33690673458682635,7.1051865725173835,3091.598414266353,0.0,3.887009699697858,40.242599402023345,0.6191228187817088,1.1048658883555984 -1989-08-20,2.8861495505673047,18.74364285198055,11.480965963758047,0.037242580585208164,6.317267728919527,1514.0185965697756,0.0,0.8670747876725229,45.24580482830026,0.5607046719477035,0.8512407101769776 -1989-08-21,2.50201340882203,21.020864724327847,11.56217327455168,0.3552777559534803,7.47077533411922,1067.6767798504484,0.0,0.6822523047066791,41.94619888996494,0.5177915714678609,0.6580006861870955 -1989-08-22,1.2640130286910571,22.52872281150742,12.27883044761175,0.4885515883486938,8.03409295662507,668.8193477486869,0.0,0.2998996338005535,37.87060606863197,0.4558918092134847,0.47399167028199185 -1989-08-23,2.466321414757441,20.93887932238511,12.572591001679013,0.36354057122162814,7.127899668887422,663.2714892341897,0.0,0.5112291113632597,33.082706927349236,0.41412210519695714,0.38638848424065836 -1989-08-24,5.972431379259295,21.16383883707292,13.015847092334928,0.3833412185859093,7.105412618039715,1075.6587212916847,0.0,1.213817019228725,30.736915748542366,0.4276390332436918,0.4363423156476825 -1989-08-25,5.4426486605546796,21.35103821917295,13.504032820917894,0.30751099033540064,7.043557129153663,1097.4367079414972,0.0,1.133726214885593,31.729717395219872,0.4330328901827028,0.45666490393610193 -1989-08-26,5.069618092805171,21.1023260382883,13.23117920732043,0.8229403793557426,7.005315559644661,1064.1422296316293,0.0,1.0647215367548304,32.16230832842848,0.43372672810403373,0.4593869721118057 -1989-08-27,7.336678035688268,21.845868083660736,13.201604559936259,0.9611336814107736,7.4196317626241886,1414.2856930660803,0.0,1.6043694504217987,32.23913188116479,0.46103138347185996,0.5433282775288759 -1989-08-28,6.050482522169687,22.363327292392306,13.876386541926479,1.2815518246736337,7.479333597544415,1344.7816591644075,0.0,1.3669040316596002,33.900230551307345,0.46539875134959774,0.5618125040759765 -1989-08-29,8.071227755587723,22.61133117387491,14.288975110548884,1.363439220414685,7.478066818580782,1693.021889894481,0.0,1.8989879273581298,34.16603953145119,0.49203555940675725,0.6548625002938876 -1989-08-30,7.362502386357947,21.746088021635856,14.179957946852449,1.1424855851879938,7.037747350141242,1728.8124566844804,0.0,1.8152036376779757,36.0528446084081,0.5057593901668771,0.7026762786487294 -1989-08-31,4.560667461716728,22.12422209027957,14.008531924076369,1.001237144673676,7.313436607529762,1304.261697268328,0.0,1.1215398628204651,37.38535283189168,0.48864272917547735,0.6281802440249431 -1989-09-01,4.362890376863721,22.667730535425086,14.121881610804154,0.8210508373951101,7.57715716594788,1151.1886453364875,0.0,1.0233816612753408,35.944545986301776,0.46955433608954944,0.5647407905407789 -1989-09-02,11.66910844912815,23.46336146184023,14.154714974272105,1.0518061089871018,8.002535304543068,2342.0090112491803,0.0,2.92299695461298,34.38659837221703,0.5365177940067168,0.8126891790433589 -1989-09-03,11.75348262883607,21.93761037216463,13.968488502028006,1.1357553633457385,7.234862014614729,2885.0294527487695,0.0,3.3394985423893306,38.70845061723522,0.5878473478111655,1.0375104460220492 -1989-09-04,9.487020299859592,20.418718630543093,13.54887235256092,0.9300624794077934,6.538537373376273,2798.4959353184236,0.0,2.933068171224347,42.96327559433415,0.6110104260762372,1.1219734960971084 -1989-09-05,8.058423797353912,19.291087983499047,13.565338278942358,0.8491540325160067,5.8769360772768255,2613.7879101342455,0.0,2.598548920554565,45.28311637218755,0.621392818303666,1.1260194742288123 -1989-09-06,7.6223790464357375,20.051278570279106,13.552004915248427,0.8003462694089468,6.332894733849912,2555.11866874714,0.0,2.5369600235338137,46.71984341668566,0.6330500893284212,1.1192753964190965 -1989-09-07,3.2747398869176347,22.16081765971801,13.460012216565694,0.7357393776967719,7.54491950913465,1566.11043807728,0.0,1.037633390701222,47.042342129701744,0.5861599290861383,0.8865906896203917 -1989-09-08,5.421536340148312,22.76589646451568,13.597190545680958,0.6771143174262563,7.829939316781634,1672.7927706022583,0.0,1.5665056217160442,42.54023071764473,0.5587221049137199,0.8156524917766441 -1989-09-09,4.297130256205324,22.09505883402819,13.406431164150245,0.6143095898785956,7.534901871866378,1378.489584189687,0.0,1.1500289184175996,40.38840995547384,0.5205562809266706,0.7060603284672676 -1989-09-10,1.6327854147657193,22.090216687887988,13.045843667645162,0.5169951889754049,7.652159919109107,789.2717545358041,0.0,0.3912766614268919,38.00937249784327,0.4618042926893393,0.5191897409547742 -1989-09-11,1.1668313452895869,21.404542025292272,12.746616117250936,0.5826057182017944,7.386603274073933,524.531902579609,0.0,0.24225094184550455,33.78169815491622,0.40712670036667187,0.37485440406684745 -1989-09-12,8.167435535183012,20.671549820267177,12.938157657774308,0.5328177116360211,6.930630057461848,1360.7751284677483,0.0,1.6848015353221957,30.06238020390551,0.44535146285308835,0.5005485218962998 -1989-09-13,1.4779187222578305,21.18648758319777,12.889858648305552,0.63934319416152,7.230908701551707,621.8872377686771,0.0,0.3017487767849698,33.13300412435996,0.40319381149086625,0.37177927091682095 -1989-09-14,4.852148101029075,21.586831427368804,13.336680842612465,0.3504070281995151,7.302291921692442,880.1543994366234,0.0,0.9384154516289502,29.878868671050707,0.4045928243908835,0.38489844728479294 -1989-09-15,6.645036106809906,19.669321577414397,12.61028075102123,0.15436340418637784,6.504975823595735,1175.0959214281957,0.0,1.3291584536270076,29.93410810741775,0.42612225747831367,0.45293480892538507 -1989-09-16,3.754738410858806,19.585705562755088,11.88264791111765,0.0798746773908377,6.717745092234783,877.7479268969367,0.0,0.7676994514967035,32.0310009587611,0.41687962835887726,0.4117328552429133 -1989-09-17,1.8373265322113688,17.972898716285208,11.955855034770394,0.14677936427141872,5.804168276664297,549.3816731219845,0.0,0.35301800326962285,31.210147521430166,0.3849806918724019,0.3217709433846291 -1989-09-18,0.6669827014878654,18.029291453338715,11.69822547648874,0.31933343248493723,5.938744776264519,310.5138569951561,0.0,0.11748282245491148,29.431683473188823,0.35062907711358543,0.2273462561792291 -1989-09-19,0.36907822415176944,20.07536520372013,10.679192762752402,1.0087122899598495,7.3527743821072225,194.63030317968443,0.0,0.058170913854939166,26.771784459423237,0.31617266956550366,0.1568491084809101 -1989-09-20,3.188384691527189,21.690666930075633,11.232053389720152,1.193458540678072,8.015355473585284,409.13390965323504,0.0,0.4638583730891406,23.47932618827787,0.31066077148577864,0.1727306875074081 -1989-09-21,12.965003386358724,21.4340079252478,12.118689194801094,1.2818922323940942,7.638470995428356,1605.5787009608787,0.0,2.2440522331728587,22.75723601408964,0.41613989672232743,0.45412966268284827 -1989-09-22,4.976013952225781,20.838095534450073,12.790204241400735,1.0045400483464568,7.111669847377516,1072.8171690597264,0.0,0.9872904189240899,30.543869077944436,0.41378258205107554,0.4459466176473544 -1989-09-23,7.333123467556222,21.054196584381103,12.238841268994735,1.1533018375200093,7.411251767589966,1353.8854556142446,0.0,1.524910471622368,30.723060895587984,0.4433287749123005,0.5224804351145681 -1989-09-24,10.358729373721474,20.167744308784425,12.72273009372608,1.440480340265596,6.7750057719601555,2008.0039190399418,0.0,2.410054607218253,32.64343053971622,0.5009460404934851,0.7070766239069146 -1989-09-25,7.860706839067335,20.0215838598769,12.255524909248349,1.4795934271664355,6.861541611531228,1929.5014554316374,0.0,2.024172829999751,37.258984350583944,0.5256138457985119,0.7684838656501646 -1989-09-26,3.9556892935560812,18.936538360093447,11.735370171152713,0.8012068182309492,6.454774703794385,1288.7011794371456,0.0,1.0100330018779902,38.94817223263766,0.499800930853042,0.654039323358126 -1989-09-27,2.6843194887588195,18.40598011470763,11.50152613204196,0.6737133198164911,6.251132703883076,913.7967290613332,0.0,0.642453947659102,37.44041716876017,0.4674260082491067,0.523571964039143 -1989-09-28,4.165663797359701,19.712673863681086,12.092858648707221,0.7077280034842771,6.761207434004827,1005.7037928680727,0.0,0.9528850560054449,35.24365482876915,0.4590918726883824,0.48591156727388546 -1989-09-29,2.6590268797641605,19.884725799161128,11.55997726259019,0.8271839415814304,7.033324198249631,750.3298299649382,0.0,0.5748990715801816,34.25168281298668,0.4299847707558994,0.40384246897447384 -1989-09-30,3.627755645199416,20.881797011109768,11.676866483483375,0.9599307850256116,7.523095071868741,782.8274300612776,0.0,0.7380472897558672,31.948940379131095,0.41444441495738693,0.37526106960405403 -1989-10-01,11.233877284432348,20.746930722488607,11.952535284188965,0.4192906699090437,7.372938238267888,1907.3736405588131,0.0,2.4759617740280877,30.498890882031954,0.4861584863157072,0.6212790760505991 -1989-10-02,14.945520469648619,19.57129522635326,11.896704604679835,0.5319504211867845,6.767350804375934,3222.318277221672,0.0,4.0884663562931305,35.721087345656464,0.5902316679302891,1.0269528792746676 -1989-10-03,2.936930318529268,20.087201933068567,11.370977030369199,0.5980202225570497,7.215184153581628,1468.2534706905028,0.0,0.8439607802342026,43.59582492259181,0.5420750850239927,0.7970035540853939 -1989-10-04,0.9089780790641792,19.477486275189932,11.055730508929763,0.32161711038225604,6.998554678417937,735.3633695019809,0.0,0.22743844762105658,39.797236232568366,0.47419982912345304,0.5534427180978287 -1989-10-05,4.860837489173613,18.600573117617927,11.185730400023985,0.3707589309710818,6.496526712259586,1110.9752957521293,0.0,1.1213440812441933,35.16107621319664,0.4662281904567612,0.5310063994464211 -1989-10-06,0.6359185557077212,17.676036513185288,10.924599443130848,0.3713118637053929,6.090277139626508,500.9705080485995,0.0,0.1361515564294209,34.969246769987315,0.41477606303792247,0.3663912945462999 -1989-10-07,7.1790408575063385,17.79554441837647,10.858688237023046,0.4046504537002408,6.182139915325361,1248.9243325114742,0.0,1.5268518745097648,31.47380435397639,0.45027946971680183,0.4709892661455494 -1989-10-08,7.0828744761643945,16.34160058304788,10.390710227013827,0.563947298366054,5.557967259720167,1463.395751356874,0.0,1.6338380246906743,34.03548434334867,0.4790010335222434,0.5553678514031085 -1989-10-09,7.171956454870634,15.572674915790005,8.469303743132105,0.4917579034093596,5.813691087225734,1635.3152354600998,0.0,1.794314759654955,36.636719820233694,0.5103414099071004,0.6347292982028993 -1989-10-10,4.106365785917548,15.498059169579728,7.656052296746008,0.17582141618165886,6.021090492521844,1207.3820635815957,0.0,1.0445827845307338,38.745522006731505,0.4991954720555935,0.5722321012208813 -1989-10-11,0.03822597238580161,16.26099444522067,7.740816714404522,0.38270388555117296,6.37033648887858,447.4010671817624,0.0,0.008865706214342906,37.75412320244453,0.44025527364644,0.37384613772856345 -1989-10-12,0.0011614858923053206,17.835647883985327,8.203495849445964,0.8139934260664775,7.008930569035768,249.24282176091077,0.0,0.00023141791682731007,33.16245959699862,0.3863337261045122,0.24339150168935145 -1989-10-13,0.10278966583615974,19.22049326185761,8.714402605757769,0.7976237502267541,7.5495457709449925,170.2376359817879,0.0,0.017475471513969068,28.793136273947734,0.33661796791291776,0.16109732689901052 -1989-10-14,2.955898359959594,17.78732041655139,9.171206812919072,0.7786537534768821,6.735720076389948,402.638628398273,0.0,0.45424268848135085,24.868453070490435,0.3241348505852041,0.1740319479991081 -1989-10-15,10.218299448365546,17.70882677030615,10.032188203805227,1.1928919927377506,6.441182712761777,1304.7219982163936,0.0,1.7833968912843758,24.3728236329258,0.40296315763387514,0.38483514112733913 -1989-10-16,19.128507569042576,18.27087069550979,10.440737508233603,1.3212393774193285,6.608783691437043,3469.8902854845182,0.0,4.766766133996807,30.3696169065193,0.5766196283582014,0.9763201520536906 -1989-10-17,1.9972740990691005,18.341539043295093,9.582655987969028,1.4213866242302742,6.908167846330793,1281.9648059728218,0.0,0.5539078339818087,42.796632150656556,0.5218186718808142,0.7198791824387254 -1989-10-18,4.477626237994173,15.912130406666828,9.116380275640342,0.6639015961331428,5.810932606178162,1268.416956155883,0.0,1.1417072013707141,38.637751440268936,0.5022649507788517,0.6424493010782883 -1989-10-19,1.3658627813774349,14.250061299788914,8.108436317444959,0.4127266779117672,5.283953106180475,702.1921618768217,0.0,0.3274187938505524,38.15384555696803,0.46037783807610816,0.4680586481441936 -1989-10-20,0.9924223373954384,13.011087291308028,6.854863318771866,0.22784739796750014,5.06562210763668,470.8843267172999,0.0,0.21715731993492615,35.454612451025035,0.4245832721365729,0.3377495911693273 -1989-10-21,0.422794672719136,13.523074108534301,3.136651368076584,0.1983805954373868,6.202932902331672,289.20221649889544,0.0,0.08410232859765981,32.9048651174729,0.3882446659520821,0.23266493157716173 -1989-10-22,0.06488813205149738,13.819400490690231,2.0247128672149453,0.3291593714143154,6.510622865707425,164.79850988480055,0.0,0.011298197705671226,29.429920603823984,0.3435945469039651,0.15317425271176463 -1989-10-23,0.10178645885644894,11.023577233044353,1.9020931837713952,0.5107072334439641,5.40372635785802,110.87125860997072,0.0,0.015401698683266962,25.9337465312065,0.30329632720225147,0.10205437547637704 -1989-10-24,0.04869413706060502,13.171763954253993,2.164632174127394,0.7932329602397797,6.234454335371396,71.70961846582087,0.0,0.006590044645013254,23.455820026559657,0.2738116719646264,0.06743603353015476 -1989-10-25,0.2126175599144992,14.977176070415675,4.499756699508223,1.0574384594268162,6.58071010538184,60.95959388252178,0.0,0.025420265078402948,20.84596318564151,0.24531820411193145,0.047768299221487835 -1989-10-26,0.7894492784370419,15.358844721392545,5.296949748801741,0.8537759798326121,6.590588934345594,87.97471146594432,0.0,0.08476224299198365,18.566672514209944,0.22548571027257072,0.04400122135516558 -1989-10-27,2.6702878997989803,15.62551055479476,5.942773242881378,0.5490308303406539,6.5737165581701715,215.1632770216362,0.0,0.27782239844704115,17.07509106347568,0.23002029269243413,0.0709452914258771 -1989-10-28,1.4004669111523416,15.55406894068523,4.307983809713882,0.6135871906815529,6.876879489781731,156.26245729828318,0.0,0.1432522006500203,17.42144401489015,0.21926251546205866,0.06799431407605686 -1989-10-29,2.7949861700812386,13.855463075306506,2.674622116703869,0.5970205776134274,6.448471813959362,238.28940999858654,0.0,0.2823579339711566,16.51220421068528,0.22491569246214865,0.08725426939797057 -1989-10-30,0.4601708260751365,14.199480118838537,2.6730208321451108,0.5952708395643571,6.593946677079946,103.18036302948327,0.0,0.04482587016456696,17.080978721887092,0.2043425127817794,0.06362382936403548 -1989-10-31,0.5910794018276898,14.839604489361305,2.9222753757285207,0.5614398464786868,6.8221146668991555,79.41814832625153,0.0,0.05218840415542292,15.484901418048258,0.1872742893607428,0.04936257809804892 -1989-11-01,2.1290908758659013,12.513351413883221,3.279719004303322,0.7535764354380132,5.786554946577182,153.487573012957,0.0,0.1807007250883066,14.135509180245416,0.18947157572364215,0.059647073152832505 -1989-11-02,0.7681766575465737,12.805305449213881,1.9106773698730763,0.9577530138319168,6.157014737021071,91.49795672502874,0.0,0.06419959362015926,14.596820324472734,0.1789918091516999,0.048602777747123654 -1989-11-03,0.3014377905640026,12.625228446052079,2.1356056488647037,1.07722887676322,6.050031182671429,51.33219135611039,0.0,0.023184883144573953,13.69379856251954,0.16303502547221743,0.035168364947458335 -1989-11-04,0.1164289880628624,13.264271179071786,1.7157647201090631,1.0404412851124285,6.378982359591289,29.862298462150296,0.0,0.008089209756917418,12.505512242276396,0.14703706733354294,0.024124654353492314 -1989-11-05,0.04065594673810345,13.52094275597207,1.7893951154129932,0.985237042176328,6.474636231239059,17.940328196618562,0.0,0.0025132863545736933,11.211388215296877,0.1310786942278186,0.016086701101154517 -1989-11-06,0.13313664365043407,13.344969815253961,0.5597985337820811,1.0447934367435845,6.575853776382498,15.451177225411033,0.0,0.0073319187766743565,9.980790921169653,0.11782040664081396,0.01158807928869153 -1989-11-07,0.0013256924372817016,12.677154292686255,-1.9264063517804668,0.7216406390059438,6.583482908904441,8.024934073497475,0.0,6.484423469060993e-5,8.95714260038219,0.1043600886375939,0.007553168469874822 -1989-11-08,0.00028466173301620515,11.178509711706042,-3.2863915449769867,0.5332863062310036,6.151105945242579,4.96225191509721,0.0,1.2292398036000383e-5,7.935892992169217,0.09245109502355182,0.004918629374164667 -1989-11-09,0.0,11.869844440711901,-1.90319972959892,0.7338216859401648,6.2915806088885144,3.2049610890169786,0.0,3.552713678800501e-15,7.091965418925205,0.08261659421477396,0.003201796547001153 -1989-11-10,0.0411375806669229,12.437891534547267,0.4800957193002877,0.9682485064001228,6.2450563406442186,3.0068857459205702,0.0,0.001412113728572903,6.3221038338577475,0.07412745307972762,0.0022992342437230767 -1989-11-11,0.0,13.220596104634776,0.6228036052432655,1.2608126410965341,6.5353855671712555,1.5786066121634732,0.0,7.105427357601002e-15,5.678896524841113,0.06615529857611624,0.0014966934286553496 -1989-11-12,0.05009078471070389,13.382913451362985,0.803532292935428,1.067789756733157,6.579022593113139,1.8739224682460534,0.0,0.0013674993474412436,5.040945717487746,0.059307127430758756,0.0011824990549194501 -1989-11-13,0.017749274134036458,14.007738478056948,0.8593921612895761,1.0293902554489485,6.821297467282778,1.1317077857648417,0.0,0.00043204623987400104,4.516177874279175,0.05281718075221089,0.0008355367298548104 -1989-11-14,0.2236539260122549,13.420749272087647,1.3134977354145398,0.9998044280047168,6.531433866166767,3.805417904100143,0.0,0.004944971294573636,4.003899360746393,0.0492481327505408,0.0012968400716294045 -1989-11-15,0.6960282293986989,12.944888170505244,2.4335140021536477,0.9391420239189381,6.166441544696968,11.154350642718393,0.0,0.01534019429535205,3.754678135169823,0.05184771498031291,0.003179953134390414 -1989-11-16,1.0102630741359049,12.24527394367728,1.1832513444103725,0.96018534096834,6.08664925850351,18.905057907337742,0.0,0.024375000706954753,3.980389825251775,0.05813772644113982,0.005781453977578897 -1989-11-17,2.644638104727931,11.06607468299593,-1.942030276518499,0.8751858835720007,6.023525713818834,59.317867307684644,0.0,0.08277121074045901,4.469374895138712,0.08287343360138398,0.016366594409671538 -1989-11-18,2.4568043711182965,10.427736118764848,-1.3463061342543547,0.7276823453739829,5.727696142437057,81.903937955427,0.0,0.10154674683920151,6.37454733953432,0.10287926654294252,0.02611587606782452 -1989-11-19,0.6826439270703083,9.232439379556428,-0.3621341733135939,0.9167405141417504,5.148222994413278,43.42205953858656,0.0,0.030852347845589212,7.95429041059175,0.10061443581353696,0.02169793360934231 -1989-11-20,0.12310157298186893,9.691319734589259,-2.1068734794879407,0.8247654169633717,5.546137087052111,19.861421363226633,0.0,0.00531011819802947,7.8661769299686215,0.0930696839532966,0.01493287891781941 -1989-11-21,1.4622513717909125,9.367544319322183,-3.2098316895021344,0.6065307607324558,5.539429629961273,51.54447198772941,0.0,0.06329418294746647,7.222707316069522,0.1011738869696551,0.019358076716881854 -1989-11-22,1.450663788839846,9.454904374564462,-3.5758326243043723,0.5852643858419044,5.603009541094633,60.630920912616396,0.0,0.06785157790243312,7.851053422739009,0.10835870608151563,0.022932603207198386 -1989-11-23,0.18026400129436568,8.516141069856559,-3.9858707123022943,0.5362258613370835,5.311791567657652,24.597236368584685,0.0,0.008340357402121662,8.396823128307467,0.09991725637016227,0.01619798948052367 -1989-11-24,0.2038785349023332,9.234155906675921,-2.953265826164466,0.480056503619022,5.475433714156847,17.066530728310234,0.0,0.008750953378151238,7.787539049551474,0.09309460280415284,0.011876591774310422 -1989-11-25,1.1044222922226876,9.633488661344966,-1.9821855960817696,0.6773360900012592,5.5224569962956425,38.85054805887018,0.0,0.04677199309911395,7.2343903176054205,0.09714151958225656,0.014852829948370167 -1989-11-26,0.06059166542958722,10.943596633971266,-2.054188933134541,0.8779661815088694,6.011224328760447,14.052737297641983,0.0,0.002493260591589226,7.541350266438574,0.08855747521744232,0.010048129970915864 -1989-11-27,0.14390317596062965,9.5951219192245,-3.5229813774028598,0.40598979011413294,5.658613908774312,10.406400351996883,0.0,0.005371330186962148,6.812340021309046,0.08103552224810584,0.007358724719562881 -1989-11-28,1.5002526400621945,8.168686798674676,-2.2916310263367152,0.41434770127941023,5.031095392068204,42.48917946659068,0.0,0.05719476985480165,6.2771806553253,0.09060183075383343,0.013498932570235227 -1989-11-29,1.1695578834140958,7.474371533831516,-1.71448693589465,0.5264302650342851,4.70372646657038,44.055113038875575,0.0,0.04887096959887671,7.100743135628862,0.09634340594794567,0.01622849773636971 -1989-11-30,0.5225845143486011,7.316385820605388,-3.2862972189251582,0.6748353309772429,4.8429603944573865,28.248768962917588,0.0,0.022338395897557706,7.596543456036254,0.09458234231051334,0.013965340063264534 -1989-12-01,0.7262265636080081,5.60545484189717,-6.250736003459058,0.40238803037207904,4.51854513034341,30.7519077732115,0.0,0.030815279930634043,7.438431981184748,0.09511274266754063,0.013782861607916783 -1989-12-02,0.013092529870097468,5.141971270765381,-7.648113246574532,0.3929813279087529,4.4447027864186115,11.224349656521916,0.0,0.0005358733276095255,7.525832971492215,0.08782337647887935,0.009053589742741655 -1989-12-03,0.0,6.517956200562241,-7.62828742069723,0.6072924847503934,4.873070836316176,6.069780810961505,0.0,0.0,6.95968992492031,0.08107567429099671,0.00589346140380691 -1989-12-04,0.05418886986388885,7.1990882976409925,-7.2259802335216285,0.580097751275281,5.076968589364152,5.07470628296019,0.0,0.0018777556155327446,6.374443234489219,0.07488921033147108,0.004122282413384114 -1989-12-05,9.684620194963583e-5,7.227051078870517,-7.103835507207582,0.7059521055440848,5.083202527674195,2.795016613568606,0.0,3.069816258222723e-6,5.866267982091287,0.06833917735154088,0.002683879528714756 -1989-12-06,0.0,8.041540412069928,-6.293736253695525,0.6200647628025879,5.316686546649394,1.7557008889737227,0.0,0.0,5.353328293919009,0.06236264917154687,0.001747079430855457 -1989-12-07,0.0,9.077214114255527,-6.089913543365258,0.37706585577255375,5.651810142771693,1.137822924562021,0.0,0.0,4.864348544092214,0.05666636623947296,0.0011372665967536522 -1989-12-08,0.3005238947738187,9.165210749347107,-4.926411463931268,0.5989071898078305,5.625908834625318,5.538234036733163,0.0,0.007344614903793456,4.392666519766721,0.05467248994419439,0.0018586332226596307 -1989-12-09,0.005793303747299414,9.610446756704818,-4.988044819267056,0.7225248983137582,5.782801366615717,1.7221724909137341,0.0,0.0001321144634664458,4.24038820364542,0.04946513890527492,0.001229999250954588 -1989-12-10,0.4526969378174885,10.012821482985158,-4.462120911748982,0.6132105522582268,5.892615408890462,7.2770500140174,0.0,0.009851978170455078,3.8255791614737924,0.04983901916536425,0.002300780920260064 -1989-12-11,0.03852672712680668,9.671234004499043,-4.087934469547089,0.5330767805261625,5.750977014479771,2.5940340329372162,0.0,0.0007994117974575374,3.846421388875957,0.04525701453489222,0.0016194224981075551 -1989-12-12,0.5941662311838165,9.005129082503938,-3.6359223723663394,0.32084991458208256,5.484932327010256,9.05951436715769,0.0,0.01211584841966662,3.5025948697153737,0.0477244923621121,0.0028989848404315424 -1989-12-13,2.6061352338650847,8.239040268432401,-3.1564295654873185,0.3953635484085253,5.172380942143048,48.61697028683443,0.0,0.07044851365044114,3.711986481930965,0.07360183914610523,0.012613929804620035 -1989-12-14,0.43632397727401095,6.700801548556349,-5.727549946477541,0.6749791048077658,4.857077771224772,21.554804090212915,0.0,0.014088136698668596,5.755221254021887,0.07212730882349876,0.010356202381845822 -1989-12-15,0.07615436439533006,6.397685721583282,-6.778233042563571,0.4354622503041277,4.816844166571307,9.411937234940703,0.0,0.002349112874855272,5.673673803626324,0.06698160418189315,0.007099088147264567 -1989-12-16,2.7607162719861935,6.003483473707298,-6.2189789253158265,0.4242359008683478,4.661894851397179,69.8738417728415,0.0,0.0995522900652408,5.273444083271278,0.09359252713718443,0.019779479556225422 -1989-12-17,0.3848796418853485,6.071408792112617,-5.528325523482574,0.6743405764405607,4.639757619456898,29.0203902599371,0.0,0.01585164904372449,7.3858761734338305,0.09052404263324995,0.015289159295870169 -1989-12-18,0.023801899136538938,8.052306206706417,-4.7114674286333,0.5418980306322392,5.244602598994124,11.922616186942236,0.0,0.0009247473294011523,7.147153489698468,0.08353677386957893,0.010093330553142495 -1989-12-19,0.06780822576117712,8.14482821080709,-4.613304832496714,0.6335480819878845,5.269935297600734,8.296292615376151,0.0,0.002407486528108238,6.521681022195298,0.07676308711662341,0.006936859192805303 -1989-12-20,0.11934373020716185,8.45530960313806,-5.6436785399098,0.7707094800168288,5.4388171123383,7.215990453555289,0.0,0.0039041861733186967,5.990923234130022,0.07118047205778512,0.005110039322822504 -1989-12-21,0.46126422103786996,8.823898544734224,-5.7528025010043295,0.7149486971141295,5.568293627061657,12.95383192524155,0.0,0.014373593411590335,5.538205883911748,0.06988976368125144,0.005514987362588392 -1989-12-22,0.04896015126817455,7.349894568857932,-6.732697986736683,0.8879195932056041,5.126440864926244,5.382248980279193,0.0,0.0014395435600644893,5.424600986339722,0.06376328037482741,0.0038091893417623196 -1989-12-23,0.0652155269345417,7.5627065300957765,-6.181475317382013,0.8935799812477557,5.171897396779146,3.7818436972436813,0.0,0.0017653790172965783,4.991312655602146,0.05890512887688515,0.0027484082645804118 -1989-12-24,0.10579967423687944,9.256675147923024,-4.435057689668184,1.219098689458065,5.642826846788927,3.6355961326410506,0.0,0.0026535965350480695,4.607569631436412,0.05490756036007232,0.00219313387859191 -1989-12-25,0.0071445562737377346,9.966478370118068,-5.236782509471269,1.346005948756988,5.933177481230016,1.6969741285762152,0.0,0.00016361144812488976,4.257230710625503,0.04967708388210467,0.001452539337648891 -1989-12-26,0.21042938329693173,8.798323058582039,-4.665652004778579,0.9198080274043728,5.50128390582128,3.872464592885139,0.0,0.0044469978130707855,3.8309796164426912,0.047079677869893644,0.0016226559511543486 -1989-12-27,0.2615101535771479,9.105040083811518,-3.91204047974941,1.7554504172373977,5.55396499444587,4.791573432545889,0.0,0.005320828731411376,3.6607567237557106,0.04569175283087698,0.00186644753732105 -1989-12-28,0.004092757009313385,7.5946181911878785,-5.779765607754077,1.1018818790376304,5.163784361505662,1.5944885317359618,0.0,7.793943472650302e-5,3.549415898186284,0.04139596927835471,0.0012268370540833204 -1989-12-29,0.08529357841910777,7.284289423849064,-6.012571615712544,0.8708742620620249,5.07430979961832,1.8080353861791267,0.0,0.0014998743370293471,3.239717028064552,0.03873412175736628,0.0010269912860380226 -1989-12-30,0.5108014102576424,7.95068337000265,-6.61864417535846,0.9654394577149532,5.3204621121815885,6.6428555985679045,0.0,0.009009345332682717,3.036648141780033,0.04132538482999183,0.0020403289788680765 -1989-12-31,0.0055795447811619655,9.008184956504014,-6.120310953926983,1.1592517371640545,5.650160374413573,1.9205359531023445,0.0,9.6457841909375e-5,3.224701703750062,0.03763058889110357,0.001342845401165185 -1990-01-01,0.00499929400788631,8.121400400863497,-8.205002899286022,1.0069770076725486,5.416530533334105,0.9715362435535445,0.0,7.813960812582451e-5,2.918444691675813,0.03405614257936625,0.0008860271521034216 -1990-01-02,0.0002932482626530973,8.615396294190951,-8.181874419695019,0.7100459441533421,5.574122836383044,0.5870624579449197,0.0,4.1598106265215815e-6,2.6530974540083636,0.030910204716706143,0.0005773954253631586 -1990-01-03,0.004262080864545981,9.389054848019157,-6.451704386746428,0.9136760665585176,5.789207682385883,0.4123712766671254,0.0,5.471637614777938e-5,2.4010546364500027,0.02802031079594637,0.00038418866090955233 -1990-01-04,0.18330101405797405,9.0233831085726,-5.553662470239796,0.8946232101962881,5.6301315660307445,1.6980084735043701,0.0,0.002211538867913365,2.1678986931614808,0.02738988427818414,0.000586828224668369 -1990-01-05,0.030436664035404487,9.323825629204245,-5.909960570933692,0.8339235498588033,5.747195538516697,0.737700247274117,0.0,0.00034777724636128604,2.1255267066303025,0.02511551317789689,0.00043495181673823747 -1990-01-06,0.0018320232194836605,9.994327335588874,-7.1286286982898535,0.9503285910251824,6.007323745813667,0.32564095457468106,0.0,1.9014410683906293e-5,1.944831717003445,0.02267731422793448,0.0002860284148841069 -1990-01-07,0.14840504829162454,8.872566633597804,-7.182477399577558,0.9947970621850836,5.638941405770452,1.1311666117089243,0.0,0.0014415207088400162,1.7475077314694973,0.022086099908798874,0.00040568387798648923 -1990-01-08,0.002936407866487277,9.864375828944086,-4.903904111296553,1.221650250146104,5.882231732975897,0.36544901213173614,0.0,2.6847639694270627e-5,1.7138600022016657,0.019999515505460072,0.00026816908718547196 -1990-01-09,0.003175531218117477,10.19389999631965,-6.5293324614980435,1.0901932319132819,6.059074310576053,0.19967916033300043,0.0,2.616206196198647e-5,1.5449097252516484,0.018034144822863495,0.00017854903223152752 -1990-01-10,0.005729296187537082,9.450120096907336,-6.415575232349738,0.9386049756294288,5.806538251868764,0.14600799945784498,0.0,4.244547183955994e-5,1.3884981708667845,0.016241805773804185,0.00012268997830467337 -1990-01-11,0.010365784080270087,9.75515515387506,-6.370157419728322,0.6904540019373081,5.906436454878811,0.12794947809313495,0.0,6.96105846221557e-5,1.2565407684584067,0.014758603345670083,9.046464930002588e-5 -1990-01-12,0.0,10.227410647748801,-5.818909089164461,0.8843245070239553,6.046045536974391,0.06312489302764343,0.0,0.0,1.1396811557114082,0.013276513633917799,5.888823485579974e-5 -1990-01-13,0.0,10.81935883739108,-3.951435715375789,1.2667439409571677,6.156689719873846,0.03865782521238206,0.0,0.0,1.0225638446791203,0.01191217627614394,3.833347314408741e-5 -1990-01-14,0.002636125536165562,12.111545351630411,-3.799790141288919,1.4517439343791028,6.606429522906661,0.03336871124680171,0.0,1.285051870715797e-5,0.9155897140888587,0.010696709178443444,2.6909970654999193e-5 -1990-01-15,0.0,10.914624540905821,-5.5912446699453495,0.8128791373908033,6.269995815289268,0.018263648933667942,0.0,0.0,0.8151777232875517,0.00949626841073592,1.7517126127783692e-5 -1990-01-16,0.0010370725037359627,11.55203091134215,-5.392014075280633,1.1237182099646896,6.481643440984412,0.014084160026602429,0.0,4.016428350898937e-6,0.7283732754369254,0.008497136572474065,1.2014386354616447e-5 -1990-01-17,0.00011148991717645576,12.10338562569917,-3.325570314004823,1.6479372928931846,6.571810059956846,0.008308612134036688,0.0,3.8447188265369487e-7,0.6491340814113765,0.007563271215205547,7.879342364560737e-6 -1990-01-18,0.0356561711510734,12.216681467729847,-3.180192100459444,1.402940983455279,6.602182941024586,0.07873139733209326,0.0,0.0001126084045839984,0.5768119904677383,0.0071348392989765115,2.2275374690716983e-5 -1990-01-19,0.034604208340195966,12.738346409616685,-2.3205444743235377,1.0442287375355892,6.730225584976526,0.08839550525555682,0.0,0.00010311644512696339,0.5438279389416,0.006738342782275275,3.0201224071278206e-5 -1990-01-20,0.3228935250733133,14.093138372924374,0.4582214476095233,1.3982092185048176,6.978110093206519,0.7812060761994892,0.0,0.001155847857905845,0.5123547253137591,0.009730076459014449,0.00019565448889982941 -1990-01-21,0.050988111009867006,13.822240859957779,2.7290173391963632,1.5768585498104402,6.543946577676345,0.3297221095348821,0.0,0.0002063941313513798,0.7362596785261596,0.009170903597614063,0.0001587884320323458 -1990-01-22,0.08711905845393883,12.637710508461454,-0.5579510851859931,1.0661568738587672,6.523919231586478,0.3453215040714951,0.0,0.00034409518739772493,0.6997614423475897,0.009166624932597352,0.00015575738173088057 -1990-01-23,0.11362154280110953,11.148739038620127,-1.50813267743671,0.8776900501315584,6.061206487030832,0.42098478459625205,0.0,0.00045675723705490556,0.6997026058456317,0.009474675521473096,0.0001709387718393504 -1990-01-24,0.0,11.240947834041588,-2.3828483440768693,1.0227962318217727,6.178338197415927,0.13938386651563592,0.0,3.219646771412954e-15,0.7296008001036268,0.00849935521119205,0.0001112731063456309 -1990-01-25,0.2348527442369929,11.414456037520086,-1.3439039396521328,0.8350529809269654,6.140523270019695,0.7027504325778247,0.0,0.0009616003380319704,0.6530602384204419,0.01034358492364958,0.00021885141939946464 -1990-01-26,1.3764442967907808,11.109987175925703,-0.6055790182552563,1.1202445616852457,5.938702016352425,7.305635405687991,0.0,0.010879795873424358,0.7952990592008291,0.025299339320210876,0.001799071634898475 -1990-01-27,0.6967109440752937,11.861661443631599,-0.13870941866323128,1.262210909920285,6.167769794844041,7.397750970718723,0.0,0.008559167452089733,1.9519752671025006,0.030855400581508496,0.002474370765487257 -1990-01-28,0.08260037645105281,13.459250894234774,0.10804096455642233,1.4565892172879895,6.757452240850656,2.8511846461988823,0.0,0.001064026556954839,2.3699949384725865,0.028571074439447862,0.0017727128348647616 -1990-01-29,0.459286082003693,13.220531067068185,-0.08118203124715517,1.6592437779523292,6.684411302310267,5.103303372179159,0.0,0.005887722926675998,2.170019973556764,0.030629634893454792,0.00205044553179227 -1990-01-30,0.2347448404917545,11.813573651527912,-0.6518589570602695,1.3077274336194988,6.20658832446957,3.6884053700205164,0.0,0.00306889723646811,2.329513551346154,0.029871873663536205,0.0018020286107448271 -1990-01-31,0.2681360676827836,12.516131443240715,-1.3033743979699848,1.340433824266975,6.540251491613904,3.648912863748684,0.0,0.003476549769660553,2.292810265900018,0.029833290427900613,0.0017023919910901994 -1990-02-01,0.07149329187459365,13.14859881480987,-0.7179692578090299,1.7425497438309414,6.71982368301344,1.9016849453650964,0.0,0.0008823698715860889,2.275288422663636,0.027338417655459975,0.0012425310218075834 -1990-02-02,0.08583951766931014,12.30549064388692,-1.8897278078433069,1.6239636117811471,6.51178333941852,1.5112962785640676,0.0,0.000971666636348234,2.0779714312149773,0.025206932149501437,0.0009567798958693325 -1990-02-03,0.04895341817331341,11.593295887608619,-2.43139839118583,1.3633108452791785,6.294202612728203,1.0165121877489112,0.0,0.0005087306593095295,1.9237339975184486,0.022980472423044716,0.0007002805018170766 -1990-02-04,0.05759816628150916,11.295750720502243,-1.9738025582490135,1.32001417034074,6.142308743165609,0.8491044072439251,0.0,0.0005496856639962758,1.761223230871222,0.02118803751026866,0.0005395474562446385 -1990-02-05,1.0833411644956028,11.158458570734844,-1.5728986231561175,1.4910838961145232,6.049750743340699,8.585615864509988,0.0,0.012552463315437912,1.6286250428840763,0.0315925696819348,0.002262518010215829 -1990-02-06,1.2364832024493024,11.114426033944119,-1.262926052305983,1.3564090462363283,5.998108639269496,15.394854071583804,0.0,0.020193390403337563,2.432028827543233,0.042735680710614926,0.004547534888331852 -1990-02-07,0.014916269811872006,12.188104034669905,-3.6102542659592896,1.2367715161451571,6.584318497345105,4.360053870577864,0.0,0.00026369446718866804,3.2921678401251664,0.038525290213019966,0.0030003828563020213 -1990-02-08,0.6409938459267145,12.38779806178978,-3.2298688957897816,1.3590429132348731,6.630140032846272,9.365160063539085,0.0,0.011179031674408813,2.9350325820534633,0.04165828608150773,0.0036552809395980213 -1990-02-09,0.0943990035208982,12.507247111569976,-0.7703575628133433,1.3622991986069952,6.463160679223122,4.097855957637016,0.0,0.0016270228434869805,3.1706514063028823,0.03803562607332527,0.002627154357094376 -1990-02-10,0.011318744306827298,13.061205257126552,-2.6769132483330744,0.9804975528307058,6.832952961010244,1.9701252637759556,0.0,0.00017625510121174054,2.9045176572487073,0.03396751937638304,0.0017369914531562645 -1990-02-11,0.8474944738751905,12.82766540354148,-2.277055659012297,1.0452976172958937,6.715679274524558,10.040323104601653,0.0,0.013607086814191427,2.575753862685184,0.03987852478289011,0.0032025797797752336 -1990-02-12,1.9394976187463877,10.638424211834575,-1.1656886191996394,1.1683404542286366,5.795846832478327,30.097956684666514,0.0,0.04167231161079066,3.0303399843777545,0.057895242336483035,0.00842995397526859 -1990-02-13,0.02021135930457875,11.942317895839787,-1.7442700908932582,1.2024361155042893,6.338808208689128,8.284018507737004,0.0,0.00048762802349335,4.475527156418125,0.05237230904398323,0.0055617524002760195 -1990-02-14,0.008048961939469822,13.750955450541024,-0.9492170739098358,1.6075563479875998,6.9399862248546444,3.952453165521903,0.0,0.00017338945888880491,4.007345963267038,0.046776631519182446,0.0036468405167822283 -1990-02-15,0.2418716416411604,12.543085589589348,-1.0142831460584405,1.4284213534126182,6.4868017357164005,5.499831856169967,0.0,0.004747692077626403,3.5384473724066163,0.044038156355436876,0.003096828030492563 -1990-02-16,3.185841433143345,9.210943537758851,-2.7573294248219056,1.0231976022745173,5.436162429015872,57.86236026563783,0.0,0.08506574005544287,3.360826154914807,0.07626424377906539,0.014968405080389751 -1990-02-17,0.0544238396471512,10.10969659382762,-4.601898842335603,1.135045949130355,5.888994010190347,15.84424704426409,0.0,0.0017533834058042833,5.9333368889739795,0.06975335737700505,0.010010706718228563 -1990-02-18,0.4524614685997399,10.314029225332652,-4.376567420508186,0.8460526642880826,5.943704681705833,15.94798065533182,0.0,0.013697020985437902,5.381044718221029,0.06795639643135543,0.008602073358872543 -1990-02-19,0.7010342454494839,10.394266350105458,-2.406775292140949,1.1657833205022128,5.819551992607336,20.24054003248719,0.0,0.021146702920395666,5.237178810259527,0.06917616054291682,0.008819443375032768 -1990-02-20,0.218336860118196,10.195795475884626,-1.9426834218440383,1.1523802152488694,5.6989133780068855,11.227377493795446,0.0,0.006424148856928463,5.34367782292695,0.0647937042754779,0.00671921468950554 -1990-02-21,3.3129610646323764,7.334150860911409,-0.6794254587128392,0.989613958897856,4.4596370844846005,83.13698488811455,0.0,0.11984902680569576,5.017206604579647,0.09704081187872152,0.022622677797846564 -1990-02-22,1.1418538351818444,8.50501577274568,-0.6148691912753842,0.8726643252399225,4.8943527747381,55.266459072897774,0.0,0.0513642974091888,7.686575717233386,0.10284522537846005,0.02254727305609702 -1990-02-23,0.8840513184785895,8.90308752978864,-2.0415049954181157,0.7683120620136302,5.232407490191446,45.0258741876175,0.0,0.04107265491065959,8.078949069124928,0.10441288447254216,0.020931133506360635 -1990-02-24,1.1755867799651123,9.611278183829562,-2.6657008961703292,1.0060123527234657,5.550075478563018,52.88396906697386,0.0,0.05604568492463202,8.149358174361433,0.1086292935539235,0.02215896763139591 -1990-02-25,0.604049670728246,10.030042709907256,-1.3965772148599955,1.1319564690853072,5.564152458149954,36.6677297582215,0.0,0.02876680686121158,8.426280719709442,0.10519723340743493,0.018804617767751594 -1990-02-26,2.11217740933776,9.567312392869233,-0.28706648697557857,1.3136707556038694,5.24018800432021,83.6703475975435,0.0,0.10638642526443665,8.158571342206022,0.11964726726160281,0.02843982722272869 -1990-02-27,0.06714172942278247,11.45372580523258,0.21078926822581653,1.3073241614123308,5.891656388019097,27.075571167391836,0.0,0.0034390664901428752,9.333560692624134,0.10951181674737999,0.019036639527916996 -1990-02-28,6.045602679319309e-5,12.622595142547233,0.881232995793383,1.2807530957346351,6.25201137905303,13.07872199046183,0.0,2.7808685741093347e-6,8.43893430212853,0.09830857376357377,0.012392381038937805 -1990-03-01,0.2652538591939285,14.480923879568955,2.1213659950913204,1.5716236623848927,6.815796782531902,15.327169996572005,0.0,0.011042568104591255,7.5253683429356215,0.09075547258541052,0.009748251738124221 -1990-03-02,2.054929253952107,13.853646954270394,2.9411403321593954,1.4406979016424863,6.424717987857322,64.69854676840094,0.0,0.08834186852762915,6.872937014471269,0.10400359577809178,0.01979700825465752 -1990-03-03,1.1703728722268143,11.887938387014255,1.4779591286257776,1.2601673090360417,5.861357859846717,53.5713336174822,0.0,0.054360291613033684,7.933370830597253,0.10605244877879064,0.021164079366738 -1990-03-04,0.4002960881780189,12.006716186834788,-0.09639975776346836,1.1033754872774617,6.129002227270837,29.267357042747456,0.0,0.018276258744375717,8.177893717902306,0.09993010180436739,0.016559651341545342 -1990-03-05,0.003779989254068493,11.196958429295263,-1.5063230913149075,0.9021951709218514,5.982616898114713,12.21147668635361,0.0,0.00015759884067353264,7.667374052972483,0.0893637494303662,0.010803551471403241 -1990-03-06,0.002829131439669835,10.830212638922069,-1.5966631317126063,0.8921454683807388,5.8543467212486275,7.2096232129255755,0.0,0.00010552350673514446,6.877999082728032,0.08015698876851168,0.007048671753743496 -1990-03-07,2.4564374460905567,9.369621880211174,-0.7043859776025299,0.5267744412609704,5.201466606089893,69.24038873015326,0.0,0.09894929144714126,6.186079544966189,0.10067946994482584,0.01965484540602403 -1990-03-08,2.6665579865421285,7.626654448845396,-1.8526857460345345,0.5636618940088791,4.713502944841472,106.10243180496177,0.0,0.13404931534868725,7.863291044941723,0.12266561005154653,0.033205369128491466 -1990-03-09,2.272517346896189,9.10987446198687,-0.7386351166044222,0.7195133342595681,5.103232402969361,117.96409955209393,0.0,0.13491118347816133,9.664700535511024,0.13906050404764123,0.042157355352129375 -1990-03-10,0.16575378906548252,11.412841010209672,-0.416744622837198,0.9132146632469484,5.923628018634918,42.41760511295953,0.0,0.009983605354876274,10.871220489358171,0.12857327573625063,0.028962608339719607 -1990-03-11,0.02172593645288125,12.840698256272445,-0.17244928738449994,0.8454647837976313,6.43230489516479,20.846822353672433,0.0,0.0011792098796215185,9.896466431047125,0.1155402241504441,0.01903284891098138 -1990-03-12,1.1899977233198702,12.314658398832815,0.7914572153378691,0.9113711991673336,6.104397386202135,52.52540471690928,0.0,0.061203914945057836,8.809075933599894,0.11648243639667534,0.021708690301341853 -1990-03-13,1.6655158372088843,11.520671165755045,0.3837848925895769,0.916166624780312,5.849870920661414,75.90510200991832,0.0,0.08911311401647537,8.937497682814385,0.12351792679359695,0.02770012513783963 -1990-03-14,0.7075129027496619,11.243123888939706,-0.8825574386374851,0.5628906554683556,5.902341835185618,48.47886525970227,0.0,0.038276520160977934,9.52227796181949,0.11917013561639657,0.02385964520512081 -1990-03-15,0.13295100129607804,11.271592058917166,-1.4880165922304722,0.5821702259386212,5.975273644065102,22.55698496052961,0.0,0.00671852315705998,9.178880321658877,0.10847652862943336,0.016554502027337468 -1990-03-16,0.7646628366590722,12.81865216622664,-2.578690070248298,0.5589102265492433,6.626142325076888,35.15259383884832,0.0,0.03641573292457778,8.34591069520311,0.10613201166169646,0.01632103605867188 -1990-03-17,2.691079146881387,11.61367973841641,-2.693890310539027,0.386774886496868,6.19985701861403,103.26044018693698,0.0,0.13850901506167945,8.063486012088859,0.12528340075150068,0.031714271096004124 -1990-03-18,0.008902146955015726,13.412027529884664,-1.1865837775954582,0.6708768634412204,6.723745738546474,29.149034383366466,0.0,0.00046753789706737575,9.592529290534841,0.11185017383690084,0.020715689464434202 -1990-03-19,1.7144815142616154,14.756976694562391,0.4929893621976867,1.2320610940965515,7.062483606723418,71.32774304737296,0.0,0.08753881633473504,8.48022915511108,0.11876147509983699,0.026814018185206585 -1990-03-20,1.0067916441651823,14.310179315189865,1.125734829532571,1.2398883177052804,6.810860143448407,56.55541822663925,0.0,0.05201804327384263,8.94243848194567,0.1159017930184543,0.025375181120827178 -1990-03-21,0.2999522020075906,15.828734899353973,1.348372812216896,1.4040007189276018,7.376976082020913,29.473479291571813,0.0,0.014610067468099952,8.77129204385037,0.10567385211485254,0.018742648879914826 -1990-03-22,0.7510168067110725,14.585908083519756,2.8235602877544013,1.6554378774466207,6.6740682549747445,35.45442724319744,0.0,0.03390457225137977,7.9110648802031855,0.10090738540170077,0.017363055507403764 -1990-03-23,0.2731744142192268,16.933215346855803,3.989890096344753,1.9275394860008308,7.460801694954598,20.918413327376022,0.0,0.011584464720196419,7.660575836127452,0.09242281741604834,0.01306643896045717 -1990-03-24,0.0518738970165167,17.342144827235803,4.361530520398085,1.9281060791089544,7.570287038455746,10.609142520101562,0.0,0.0019512940867656633,6.910639612172522,0.08110856713550188,0.008802750991433347 -1990-03-25,0.11198016536648986,17.5589537533853,4.888879271290652,1.8761635088653248,7.571866510155695,8.322217376842257,0.0,0.0036998717387831115,6.053803253665499,0.07182720115738339,0.006293537295858462 -1990-03-26,1.5197582287920677,15.833717688236606,3.3874605299931746,1.5924598415318556,7.083366274388521,37.19883831180993,0.0,0.05032472845722791,5.362527140747495,0.08017396364175959,0.011759480328615702 -1990-03-27,1.609641302403636,14.921995383586461,2.377894995545624,1.2913890842855411,6.857892057207578,49.62434491209741,0.0,0.05975218940700233,6.041855375131293,0.0891347544443323,0.016753022543310677 -1990-03-28,1.8919921003202165,13.548013751315588,2.29576987000965,1.1243055298764577,6.312659903588454,66.28468683779445,0.0,0.07912286249847633,6.744981048655511,0.10061488793905689,0.02295305496604308 -1990-03-29,0.3144317872743792,14.830356643481569,2.948481308421397,1.3372665359248963,6.726901425873642,28.58311932227702,0.0,0.013426105572383051,7.692360647032601,0.09327370939258078,0.01698568290401262 -1990-03-30,0.05840189159635808,15.375325639348025,2.6285774993248245,1.4335885612329724,6.99266788642701,13.678513680016406,0.0,0.0022513392696389065,7.075378060457556,0.08310370520752587,0.011399680905825526 -1990-03-31,0.005341509714575577,16.250257489010128,2.8923324896438736,1.5463706249229965,7.306086995764462,7.753644637302771,0.0,0.00018138413524014865,6.273203378616594,0.07314079590888797,0.007448274898833524 -1990-04-01,0.003925117312940306,17.146014898124946,3.930468900664608,1.4794018307712131,7.519320920470065,4.950295967245912,0.0,0.00011631133577326598,5.489018670076438,0.06398907511820426,0.004866187009337122 -1990-04-02,0.1764192399016361,16.570015827604745,3.6188118882999682,1.1350899554387082,7.322825343771909,6.199836668806973,0.0,0.004628638200463109,4.78350508908999,0.05777975940643936,0.00387243757630223 -1990-04-03,0.1051690351918258,15.853793717212977,3.9727806213162404,0.8975155405222618,6.964091330006063,4.411340730285144,0.0,0.002482162500679508,4.336870686492211,0.05174675446004849,0.002898720766850132 -1990-04-04,3.2009256632066547,15.014230431102884,3.7882717284889633,0.7338230212015471,6.640392956491415,64.29423265677067,0.0,0.09528091033710862,3.912021640522839,0.08286101896311118,0.01639485714495322 -1990-04-05,9.07217076260248,12.686107998016034,2.7232092700745003,0.9557743822507564,5.862047338788619,369.95362562295344,0.0,0.541509094994959,6.298054529829996,0.179052715427227,0.09312504076703487 -1990-04-06,2.0380046511340724,12.389195268001995,1.0333227823046056,1.1650356724814277,6.0111412095388115,202.28937776343665,0.0,0.1681350827107786,13.778119018110356,0.1842471295398218,0.0862210748327709 -1990-04-07,2.2114655774086263,16.01660290955863,1.5450877114848602,0.9830989087983044,7.3544698939095765,191.27914751073587,0.0,0.18821187854760524,14.134074012840474,0.19041446648139312,0.08478390625281114 -1990-04-08,2.894106029990505,16.145787739694878,5.040177163921553,1.187658537304202,6.87785219656854,232.67914479413588,0.0,0.25359605700358223,14.21786838567495,0.19934291314224706,0.09380408413214843 -1990-04-09,1.178950306234005,15.707067687308012,3.9154097226715807,1.640213457319771,6.887942630306167,143.906239372054,0.0,0.10292442070638619,15.023057352400253,0.18874241668269526,0.07673381351353317 -1990-04-10,0.2821478711172701,14.729106444231167,3.301345084528297,1.1730063105585062,6.5814936581172665,71.85264829315541,0.0,0.02256444996995649,14.2268141353421,0.16901958142188572,0.05338587695633299 -1990-04-11,0.013249936340938594,16.339243020310803,2.4695192731052367,1.2588493619330705,7.351604546929874,37.2123599009053,0.0,0.0009412600266460389,12.827012057650315,0.1495803563759802,0.03489501750646822 -1990-04-12,0.07835530132100922,17.918978169553107,3.5557900808989644,0.9055469482054024,7.843261825351164,26.06713889343224,0.0,0.004841130673504793,11.18658145481049,0.13122888421774798,0.02345214999303274 -1990-04-13,1.0526500615363552,17.339972324376607,6.0617837006878625,1.2603932046911193,7.180593818529914,54.22401876169001,0.0,0.05918733179563129,9.724387349236746,0.1255451872660449,0.02427839302350653 -1990-04-14,0.8442438481396493,18.191147106316148,6.6496417339610066,1.6912751989736028,7.436809462696321,49.01827578586715,0.0,0.04555495214790417,9.429027510387629,0.11967665392456689,0.022740507213001693 -1990-04-15,0.5293027270087849,19.165014928542,5.656943811684866,1.8483908687048145,8.038357921432016,35.114003727029484,0.0,0.02663967580972204,8.944442648399402,0.11036271768691266,0.018859285576724467 -1990-04-16,0.2401784234308033,19.955719140490253,5.408272991389097,1.8899710443507085,8.411903922436784,21.113293471341635,0.0,0.010823752221081895,8.152454685928975,0.09776849195276174,0.013924584696920289 -1990-04-17,1.2676695900563741,19.385820020695924,6.02982646785895,1.7732707100599299,8.062313055863248,44.98224635939152,0.0,0.05381811749385257,7.171394728281108,0.09830938409258745,0.0172588536154777 -1990-04-18,1.3265155040523986,18.830079182791785,6.477775467263975,1.732171239221651,7.735380246112605,51.78212856566093,0.0,0.05720455606453001,7.26178828587139,0.10004792286661629,0.019944941270418626 -1990-04-19,0.27006518329718016,18.03848033213345,6.618243464190055,1.784929247970532,7.354155335947188,23.806602439377496,0.0,0.011115188733344994,7.4381820534966945,0.08979586002632602,0.014675671042025861 -1990-04-20,0.4356061086075905,17.442798955086964,7.0746963710658335,1.703443936779699,6.987100085410227,21.18987969888997,0.0,0.01641057078085162,6.728962507530848,0.08346237229299955,0.012051923923448657 -1990-04-21,1.1389188759675877,17.82171273982413,6.51816344792143,1.7094624062397674,7.269890288700018,36.57880463077309,0.0,0.042425544002672844,6.300894965749447,0.08666879276573602,0.014305151852648312 -1990-04-22,0.0005565432262936271,19.870095764806003,5.8069252300058265,1.6646725866469765,8.285210179468528,11.863111674846268,0.0,1.9608087042833396e-5,6.506086685453229,0.0757979870981365,0.009314967134855794 -1990-04-23,0.10680826565421196,19.631766674706462,5.555094881645021,1.1349996686704722,8.218361151601918,8.38124305550394,0.0,0.0032477785783035923,5.578528659891349,0.06623032488266874,0.006558128068698365 -1990-04-24,0.4280764927031779,18.822855453294032,5.7137835229604015,1.132235672791336,7.841759583747783,12.151317021455682,0.0,0.011758570014041847,4.882551605546957,0.06186522081000228,0.006059449132461966 -1990-04-25,0.4022760006510142,18.706677667105343,5.049905339109908,0.9555004227659274,7.895796155693449,11.428751310069568,0.0,0.01038965525531066,4.595710681944307,0.05822316004882605,0.005526395088147614 -1990-04-26,0.8663418716376199,18.567458156000907,5.087645489820831,1.0566503976763315,7.826851140220387,18.738872492617933,0.0,0.02217400520448165,4.321055554709413,0.06042966693825548,0.00697374332656311 -1990-04-27,0.9404608237680456,18.399796980138664,6.775605174001251,1.4350463171202978,7.450695868494164,22.294835054292506,0.0,0.025134543471462045,4.490608083623995,0.06326827466996933,0.008366684691021472 -1990-04-28,0.743009073189818,18.67963316779552,7.557132973619423,1.3056663414417675,7.411493455544765,20.368605625212172,0.0,0.02045461597772613,4.736118970885831,0.06382813106508185,0.008560835954438765 -1990-04-29,3.3243060182560624,20.697535680606045,8.334114201312325,1.4830161068701029,8.162899349779051,82.67430703058606,0.0,0.11602873934787361,4.781625845164922,0.09442861660122837,0.023239791483284457 -1990-04-30,0.3824012846457992,20.31556078574979,8.154488867556116,1.4975652305412028,8.021304465146068,31.65418340529126,0.0,0.014844758718461526,6.962057684532938,0.08555797307816738,0.01738834579910428 -1990-05-01,2.61178385934191,19.6086412867132,7.20804243690602,1.494260848344711,7.886826433854939,83.52219793386298,0.0,0.10840585751485632,6.327956763375461,0.10414192396390774,0.027825389128737152 -1990-05-02,3.803309201373303,19.823134358342923,7.506206681644773,1.6029470186323065,7.920690759975613,155.36727189818077,0.0,0.2003304533658805,7.718068801155729,0.1342162510677074,0.048616291498198926 -1990-05-03,1.3321059017074226,18.092443475208732,5.127353247523128,1.6198282780684683,7.591902250019844,94.39266518096161,0.0,0.07751232925351625,9.929158253369165,0.13118610090266627,0.04344931800338765 -1990-05-04,3.3682300895000297,17.8989517421371,3.9595250498051353,0.2861476415919984,7.6859721168783155,172.5776103865168,0.0,0.21258236278988862,9.77036636198863,0.15305575076377223,0.060652269075874586 -1990-05-05,1.9594537266566276,16.576662132185422,4.118618622963012,0.7310627106984706,7.115483532641752,139.56631497819214,0.0,0.1337128894196744,11.368446930591313,0.15526101655774094,0.05984153924100316 -1990-05-06,1.9379632664748043,19.55591922601637,6.73156001035792,0.7197342344471838,7.932604605089026,136.15891928909969,0.0,0.1354332921387189,11.663951256151233,0.1584530925180598,0.05957574895196112 -1990-05-07,1.3466311681335523,19.711951394496232,7.942757663605039,0.9500826090347412,7.763392189097743,107.4943399783552,0.0,0.09214959661944144,11.70838553420128,0.15208210328912608,0.05281214990131834 -1990-05-08,7.095317473209708,19.78323231420336,8.569484411016841,1.0951280200445763,7.657946873358922,423.9666666274777,0.0,0.5872077216619234,11.278927814572855,0.21404751395044339,0.12378927774584333 -1990-05-09,12.587860330400026,18.3645500253198,9.22576132093278,1.250265797352695,6.82759879521026,1162.9183692647541,0.0,1.604011133081542,15.869047956744897,0.3315037095770821,0.32481539247986163 -1990-05-10,1.1164629830653436,18.147432158620397,7.372013732638108,0.9873537857213808,7.167496876240325,414.88106558182403,0.0,0.16494709265362006,24.870749125534115,0.3027334216577156,0.23655518576951684 -1990-05-11,0.3281127809676277,18.284615189297224,6.538234300630929,0.3813811778562167,7.394772387045469,198.92363417740705,0.0,0.042892341076213036,22.582908851929467,0.2668978859146535,0.16051730041148293 -1990-05-12,0.0,20.78667927218286,8.236426146372013,0.2507299757930482,8.171257742849171,108.18700108850439,0.0,0.0,19.84884935218602,0.23122565264965034,0.10448921825475604 -1990-05-13,2.1687070181957493,20.299526505820953,9.9928839456955,0.5840017418915978,7.547009728421941,212.4563708381484,0.0,0.22069849647497275,16.94953113914146,0.22271452702394998,0.1016221765158585 -1990-05-14,18.245929743256816,16.166065119981578,8.25921129577656,1.3015351351145488,6.019020708323419,1867.7197409510184,0.0,2.738219990091242,16.54305993561777,0.4052681694938554,0.48308570536457107 -1990-05-15,15.880735387821026,16.1263844260779,7.258900661613794,1.3256569194721108,6.261025852413346,2964.048160467461,0.0,3.811350901916743,30.813492100863233,0.543956127353708,0.8948005683437251 -1990-05-16,6.10319459843512,16.15570460518023,6.571317300859767,0.7371593315678806,6.433811544344631,1923.7676376932077,0.0,1.695999288678518,40.79662278334236,0.546351110375906,0.840714060741609 -1990-05-17,0.053945833463405236,16.608784244295446,6.4999402873024,0.42284816745834375,6.6479459714335105,672.4580311581185,0.0,0.013735104040637637,40.81047018889528,0.47604277191393346,0.5493567124782021 -1990-05-18,0.04745706200402655,18.652359515494272,8.867920134824194,0.8771651731284534,7.028970998867238,373.8409566518171,0.0,0.010262194400065039,35.56560776575177,0.4148680868871239,0.35916797075668105 -1990-05-19,0.07774382659623129,19.004310632714848,10.881952065516513,1.2301880389510282,6.641558611700966,244.34380161540543,0.0,0.014284448200322972,30.856507626618647,0.3603630797223137,0.2359764863279122 -1990-05-20,8.835933044750202,20.368473284009465,12.087281318195252,1.1378227437709847,6.96653781792703,1240.8534271077895,0.0,1.6629589978558954,27.103333639254977,0.4186681175976438,0.4068196757054866 -1990-05-21,12.37779198136149,18.852588713894868,12.1114688357285,1.0317411071566718,6.145280409531428,2216.822186860269,0.0,2.8403712086412547,31.173998929019866,0.5073488693794215,0.6973089651393394 -1990-05-22,7.765934637717412,18.616459834362555,11.810406347086143,0.9479490647257904,6.12262487159805,1968.772585927118,0.0,2.055356766549406,38.24632638897859,0.5360116799219962,0.7668737938864899 -1990-05-23,2.873599136834929,17.859584366726448,11.693886945324223,0.6170161732927616,5.748236295353109,1123.0986023760563,0.0,0.7523827283716389,40.348373590940206,0.5035067109159412,0.6137601819534678 -1990-05-24,2.408036240576735,17.831991875791932,10.289779993781297,0.2919567074199702,6.215600983561574,838.0504189582474,0.0,0.5891090890385233,38.29764948623086,0.47419367146821767,0.4892295933259125 -1990-05-25,4.342479943112581,14.489881468829033,9.376570808195284,0.2696108471987327,4.774329159906046,1018.1525046682236,0.0,1.012639930983143,35.76686954789464,0.4672467581799474,0.47265486049376504 -1990-05-26,3.104271783327865,16.966408227541415,10.445415639253905,0.5575766097437664,5.711035391198843,841.7861968057069,0.0,0.7232827935362187,36.36317256358464,0.4597689979708337,0.41780658963817224 -1990-05-27,5.5185679434659365,18.283522979528502,11.050271898074877,0.8965680604469081,6.196174522667853,1157.051006792795,0.0,1.2834398328921965,35.08733307458865,0.47303124718878065,0.4673951275153718 -1990-05-28,7.572135853670582,18.75247871793329,10.491443674350892,0.920696894636984,6.610376603857244,1592.598713871987,0.0,1.8528304634201058,35.69674918672449,0.5040532075873795,0.5863730700096232 -1990-05-29,7.201934780365537,20.120176631485855,11.015313227787775,1.010004034045333,7.139871155258855,1707.5164037125533,0.0,1.8559123743494617,37.61865323138195,0.5221294963385886,0.6642913850775627 -1990-05-30,16.164797086979565,19.16336304724498,11.690355357860215,0.7728199266772221,6.439089462345795,3721.194876504687,0.0,4.856391089176196,38.45970803317047,0.6363384911115672,1.1718797558603167 -1990-05-31,3.765038674123477,19.089007938831415,11.781096077540958,0.6900864641141501,6.36714435604497,1840.0948860654362,0.0,1.204318081010452,47.15368919685342,0.5931686958347485,0.9462138617125724 -1990-06-01,3.9046131545201055,19.378745509784146,12.291392257150747,0.505837368593689,6.343864314500792,1463.511957876701,0.0,1.1563902723444732,44.20613065309916,0.5604575831571676,0.7920182540216094 -1990-06-02,5.217224115053724,18.204732570138628,11.58922059355288,0.4718113457807046,5.956351738503053,1554.191849425477,0.0,1.476813335031415,41.903355300569096,0.548922838562786,0.7404333054514656 -1990-06-03,19.009257780062462,17.680989138161486,10.884543818245492,0.3846925308909567,5.922143084199603,4771.7916582714715,0.0,6.427129383331483,41.435618783668005,0.7041418766794593,1.4606126768569914 -1990-06-04,7.486611644740714,18.14639678960794,12.259404870664287,0.6078753765019345,5.668183184431382,3207.5655144084603,0.0,2.8733674393072324,52.43463833066187,0.6980419815428431,1.3883028441838563 -1990-06-05,7.266491203994312,19.610496732400318,13.169933661273706,1.108039739974115,6.140325666030544,2912.0794706360653,0.0,2.7745583413839716,52.33880296427501,0.6943613103655596,1.3261873968289348 -1990-06-06,1.8911494843117869,18.9491153515207,12.389229612477436,1.2702084193254801,6.064669545361857,1470.3375588990314,0.0,0.6603724616747233,51.493459795156454,0.6218945442664742,0.9638371273748677 -1990-06-07,1.4259849714233606,19.112887885393,11.602802307558372,1.1388364054231968,6.4270687332592,963.2824645933919,0.0,0.4350727694524603,46.55240049138236,0.5589156980775789,0.6936589259725487 -1990-06-08,2.962134178555924,19.612446820068282,10.054762684499023,0.7494795428073125,7.134106465247225,1008.2251946765297,0.0,0.8077159710354738,41.71468338724918,0.5204546680095047,0.5745260476633335 -1990-06-09,2.2413251896158664,20.69787590051084,9.577052915516493,1.168835115541868,7.765236264251667,780.8370282526914,0.0,0.5477410094261708,38.346289840650094,0.47281822781492444,0.45739111466358584 -1990-06-10,0.8249949374756136,19.753046850245767,11.634387195580445,0.9643493303742192,6.745331268832857,447.1234726458398,0.0,0.174296995811291,34.47341090082828,0.41120252275757985,0.3242794107322769 -1990-06-11,3.6478758785248955,19.586876255775717,13.066733358548708,0.888669578913728,6.157828295119104,689.5371688971785,0.0,0.7128090695997633,30.776813713044625,0.4010243201929305,0.31962636629392327 -1990-06-12,5.18604450559737,19.955348197024797,12.685675001373422,1.2210421863720804,6.499589239239617,921.832819902461,0.0,1.0278962654693702,30.40817581503269,0.41464856114123827,0.3645741333520693 -1990-06-13,0.3760184278504172,21.26350161275348,12.863596277126454,1.4656015600606758,7.137320691098308,346.12800133760913,0.0,0.07032351930702657,31.191951372723885,0.3677454692938333,0.24802842051841364 -1990-06-14,3.0283031011422255,22.548197769959675,13.173024868502578,1.4125659092481484,7.711205930826872,507.11515574939415,0.0,0.5155298907062198,27.360717963437494,0.35401151494293254,0.23995188610686963 -1990-06-15,11.519562152538125,23.2324669499917,13.895861876720474,1.2539792657948334,7.845731135737125,1618.428538399215,0.0,2.1916577675044735,26.03931209980947,0.43753544891652674,0.48990967216326553 -1990-06-16,9.812377904862874,21.683469516673163,13.983932742758748,1.1486467342927644,6.980459161072429,1893.3761753974236,0.0,2.2120165113290184,31.924209244321453,0.4862029748780529,0.655720362373176 -1990-06-17,4.223168192426455,21.234872482839748,14.05827892187609,1.3060004179710782,6.702760301429884,1212.637502094851,0.0,0.991249840970843,36.03579745102654,0.46898968503088817,0.57777556888128 -1990-06-18,3.7924346886794127,21.618660842537235,14.082688647428323,1.3821049463504107,6.907026656898501,1003.3482870015664,0.0,0.8560384600237172,35.01266585620066,0.452053141238487,0.5064492415221094 -1990-06-19,11.884603080958895,20.869493653532974,13.376061893931858,1.1529026823767419,6.745908673414021,2291.9440498898284,0.0,2.920013206784054,33.6346876736928,0.5302689101086031,0.7742898006497152 -1990-06-20,9.54331367244216,20.81036396326564,12.9274699199767,0.5822407470656047,6.867774915914985,2426.284904797023,0.0,2.6769753483312755,39.381048472812566,0.5699356857811247,0.9116353118339663 -1990-06-21,8.569026140254993,21.088854740008053,13.457528758501866,0.4625753328429798,6.835242816824157,2430.4923975873544,0.0,2.554079833721106,42.07525711680892,0.5899716019457155,0.9823281267644026 -1990-06-22,8.351737803868986,19.64201106359367,12.872339598113408,0.5717407771907751,6.250588310745348,2485.665968798206,0.0,2.57976786378363,43.50955594403385,0.6041489499638619,1.0322572087832214 -1990-06-23,11.42811759888506,18.408235246077357,11.793109085854313,0.9518513192887468,5.968376882339725,3339.9818426701236,0.0,3.8364170887406175,45.10187315308578,0.6585361082638065,1.2561021032505562 -1990-06-24,5.956958697539557,19.3863094941971,11.533591397433725,1.1165740044384436,6.573127477156186,2404.222690585187,0.0,2.0692100109856586,49.23215561732717,0.6429158058578238,1.132731224636168 -1990-06-25,1.8173303071703528,20.680158194673652,12.204169685534284,0.9783328991366214,7.0300597612382605,1248.3600696232006,0.0,0.5710357669665753,47.4589705480688,0.5740355334078014,0.8243034201941373 -1990-06-26,3.3739559187609145,22.261074970696193,13.278754147536802,1.0012848507486902,7.517026130349877,1193.1177414758447,0.0,0.938384144373893,42.205715454385434,0.5309723034222955,0.6794656328372313 -1990-06-27,8.242989869046122,22.777638577106714,14.142873634272725,1.3645255821078377,7.512691456603169,1956.1386899847232,0.0,2.2291417446521127,38.752329539910896,0.547463644315387,0.7817199534030352 -1990-06-28,6.863408146744822,20.942977158280733,13.898458625824153,1.2054063461261502,6.59079664230071,1870.7091129629755,0.0,1.880057740497021,39.90368961739398,0.5448050167125705,0.7951295135540268 -1990-06-29,3.1226584386772034,20.997395616894533,12.592587689377645,1.4373812119877083,7.070822925330137,1176.186974290025,0.0,0.825548637916282,40.556469490213175,0.5088322594081722,0.643293918032462 -1990-06-30,4.7791420702055145,21.544903865367196,12.40846042363776,1.2680067138872022,7.410585386758975,1250.458004352899,0.0,1.1859847942061261,37.5762389385486,0.4934115042741845,0.5993378110708956 -1990-07-01,14.948274887713671,20.748569813771667,12.208739332672893,0.9833274487441672,7.061733055718237,3171.50532301679,0.0,4.145869450988583,36.20431102612117,0.595892983657571,1.0214106161847287 -1990-07-02,7.832426537176497,21.67717014801686,12.789861931517372,1.1107824719735957,7.362461596090463,2487.94083463247,0.0,2.4140897891461126,43.692742693066045,0.6002333269678624,1.0324711381245713 -1990-07-03,11.91440895874476,20.25596344792707,13.518363529004974,1.3885582264000271,6.347037392685758,3365.8510781784657,0.0,3.880315715839247,43.68599207494655,0.6477070175950359,1.2629255756789395 -1990-07-04,6.93835475327574,21.83622351795421,14.002410228435688,1.3646168967965893,7.047564389320422,2606.149071400088,0.0,2.368096418551816,48.04454923822099,0.6405135952430775,1.1826828554278996 -1990-07-05,6.944939441600133,22.385096691532286,13.94381624488454,1.4105529243720578,7.365984138846277,2423.696301361323,0.0,2.2936611994386444,46.76627571117944,0.6256992815021519,1.1191147542249948 -1990-07-06,4.301043146219601,21.421372704063106,13.677151978388427,0.9763408186379612,6.934742143935282,1737.6829983053017,0.0,1.3232216814438997,45.41524133719703,0.5791610447044698,0.9299711553093446 -1990-07-07,5.023251914687809,22.061369853657546,13.507337828809467,0.8806093389917374,7.336987478739238,1639.042865414426,0.0,1.4480032562590326,42.656269692828346,0.5554341365640341,0.8258474003045055 -1990-07-08,4.584837006547671,22.18850822347704,13.384177633525127,0.7694530793921519,7.4442528005361925,1438.4428686462263,0.0,1.2403225456535392,40.61895505965857,0.5265935640544565,0.7264452733954757 -1990-07-09,6.237067719464627,22.56166831401977,13.152812461758845,1.0434986203618015,7.711275283112318,1614.1281643749799,0.0,1.6263291676714298,38.50996615813293,0.5212726404890567,0.7205143712823717 -1990-07-10,4.182401585962517,22.769599553180793,14.881725396362038,1.6548001725737913,7.252707987204008,1247.981073795905,0.0,1.038862677051264,37.908148917123206,0.49032640823520596,0.6272031810313728 -1990-07-11,2.7885194992732347,22.447264536519693,15.25280981089034,1.8593604307275584,6.931653980529081,895.2052439354462,0.0,0.6414193253871612,36.11260635219193,0.45317177102866046,0.5059453601579348 -1990-07-12,10.573541089082106,21.986038115658406,14.639059050922985,1.3568373687480029,6.90254100396007,2037.6775432474758,0.0,2.5502940934600176,33.697470318257274,0.515727301088855,0.7176666007702627 -1990-07-13,9.609217957516007,21.18183197421321,14.33887120097916,0.9170781644157202,6.560268328672036,2323.2589266743676,0.0,2.6099786114398906,38.208975037373435,0.5570495643140406,0.864575027081059 -1990-07-14,3.0132966513351502,21.785117125877523,14.906613971570652,0.8663111699965101,6.686214950381211,1259.0064272416698,0.0,0.8162402957594179,41.45659361923351,0.5180441051580715,0.6870823507956716 -1990-07-15,8.813133976006517,21.51022976250494,14.88424923149542,1.1789298012978506,6.536034403839538,2068.286225668413,0.0,2.3899717380680823,38.559479172318156,0.5518588608631062,0.8111668212167521 -1990-07-16,7.264498124829617,20.971805157863347,13.905901740287126,1.1852261571036828,6.608077016034401,2023.5626645442499,0.0,2.0703539476894077,41.10965756022195,0.5635261531379381,0.8432734492527227 -1990-07-17,12.323486298818358,19.6745859960591,13.8105861254013,1.0033676024795997,5.9016685940277585,3193.1519806153974,0.0,3.847147081056823,41.87126564283958,0.6313321576253315,1.1347163578751793 -1990-07-18,5.589722190394333,19.27114956515571,13.894010640130404,1.0057428258179664,5.625934616066325,2175.9120721895565,0.0,1.843328694337842,47.39725175080238,0.6172623618675346,1.019321042165427 -1990-07-19,2.96464151032854,20.910294308647085,14.107783715839519,1.1676941812526498,6.499242752332357,1393.8340533260368,0.0,0.9269508345530322,46.69587764183092,0.5785114163614675,0.8046720485899684 -1990-07-20,17.346418631548623,20.327220487204897,14.415636845016818,1.0879906221221312,6.036009079020014,4491.016514355425,0.0,5.9763246481789025,43.0376219991537,0.7034331792598059,1.4337873988395493 -1990-07-21,12.544465222135901,19.58301199821068,13.49573958862864,0.5228520654944274,5.981105466852806,4622.309158785443,0.0,5.109213649279585,52.24145198823049,0.754712060315142,1.7112814641821084 -1990-07-22,3.4125402115028702,21.88023009695476,13.314950352473266,0.7443517280934441,7.314689979275691,2319.3016086307566,0.0,1.3500926887757938,55.740320433694244,0.689090766224852,1.319535359482624 -1990-07-23,10.290024221890306,22.476141584618066,14.215846921767413,0.7150267087706655,7.336470029608649,3460.05056104169,0.0,3.8242152779690386,49.69850764426545,0.6988257700045754,1.4412487713377793 -1990-07-24,10.986275800392155,21.190694307197667,14.774164376834367,0.97332372773298,6.40222401554618,3899.8056953926766,0.0,4.182455124390065,50.30732770502767,0.7140289707639256,1.575025790751915 -1990-07-25,20.368252607432307,20.75139019093107,13.591860181505275,1.0269590900301966,6.610810211402756,7319.768554954173,0.0,9.237338365181547,52.48521053000792,0.8486935067541636,2.431788991110796 -1990-07-26,24.95621160744903,19.180373976124493,13.058710439033776,0.8091130406762901,5.930221954324313,11942.307447921909,0.0,15.007523576435656,60.55126963514222,0.9961042479557333,3.86809750693724 -1990-07-27,4.1956222940389045,20.17262354098333,12.781703452836918,0.6524829515089122,6.586184630347585,4909.92222834454,0.0,2.26393774614393,68.10752241845908,0.8422826697975928,2.8626676430059064 -1990-07-28,5.501185425033707,21.174342295648998,13.153436831093318,1.2293792563083952,7.000170747834952,3691.2598546759536,0.0,2.489965229173169,60.22794312525407,0.7656998336510235,2.242596080142476 -1990-07-29,14.518270243819218,20.89834798901547,13.831254547412676,0.35764688942399103,6.610085344465106,5857.219919349084,0.0,6.488088240304757,55.01427061430917,0.8100070112395973,2.4477319280382215 -1990-07-30,7.026876769732414,20.312397346335406,13.558918677289741,0.2054755893526299,6.384441419686763,4002.6050477746135,0.0,3.0935690936775835,58.29858700700112,0.7609974124143749,2.0644000369731192 -1990-07-31,4.635404504879415,19.523416730990228,12.985941816542141,0.4777819345220297,6.1599099354370255,2764.634193728792,0.0,1.8546702667888413,55.58136007148163,0.7014845265116575,1.6262283440778278 -1990-08-01,5.482381270397885,20.28955530945942,12.216694312268915,0.6384043972416663,6.84661620223467,2506.114048880102,0.0,2.02706285827927,51.95230490231391,0.6690751972255018,1.3672484848499766 -1990-08-02,6.47908466188314,21.64680265596704,12.065060889578419,0.5675092433280887,7.593142843838812,2485.6023062466093,0.0,2.2483095440224092,48.92713912694744,0.64544498419572,1.2323528448856738 -1990-08-03,1.276494677788142,23.278948078823518,12.6149130607793,0.7057943956893111,8.264974303580809,1195.767112257192,0.0,0.38805335595436796,46.492562999747726,0.5564771711429485,0.8612906375194138 -1990-08-04,5.309130686693144,23.464228792836124,12.234921285833256,0.5339722237382089,8.460513487993301,1520.8507022755164,0.0,1.419054475453243,39.832941371500354,0.5258745677599576,0.7767317316750768 -1990-08-05,0.053687993118556813,22.912702910671502,12.364625322937362,0.4703337584329904,8.15375112947214,598.4323078543493,0.0,0.012387348318311946,37.58114529409779,0.43842032023075383,0.5075020077064923 -1990-08-06,0.2810836221625847,23.708705958464016,13.035584055862827,1.0579436102164688,8.374225604206432,372.5868216061877,0.0,0.05358570512624666,31.770689969511572,0.3733814558120703,0.3385191696394759 -1990-08-07,1.3870895520960551,22.444018211183867,12.990364343195765,0.8496036575451191,7.741015355763437,371.3877297702578,0.0,0.22571198675190862,27.044528365405448,0.33120909389821873,0.2547280534175989 -1990-08-08,2.723873812363759,22.581708718951997,13.031143478904415,0.8237368666045007,7.802625487085581,445.6339751333704,0.0,0.407895722696757,24.37700477909619,0.31570688197092506,0.2279241401029387 -1990-08-09,5.5379541686998985,23.684157602848305,13.517217790069655,0.926214514682817,8.232741101945983,720.944264015748,0.0,0.8387117777402802,23.22481179891325,0.3350667444175065,0.27607416106312327 -1990-08-10,10.0068703349816,23.620324392644786,13.650975492460274,1.2624285665440291,8.162910972303996,1367.6179984770847,0.0,1.7410854834471419,24.399223930181957,0.4008076972336768,0.4448172889463913 -1990-08-11,6.008012222731978,21.924954905908926,13.835064787517481,1.100486120143924,7.20327961222036,1148.5720130318803,0.0,1.1544665525711189,29.11355599382424,0.4091424842245595,0.46533973603550566 -1990-08-12,1.7468748049758889,20.072889557597414,13.824849870837786,0.8557477862959042,6.167353506425301,589.9544401042494,0.0,0.3245898881021747,30.32706731668554,0.3736397041731536,0.35233790275982146 -1990-08-13,5.473684900943924,20.71926005245119,13.602767180461653,1.0084751325398955,6.624589136631584,916.126555053213,0.0,1.013789788938423,28.36394322935263,0.39418545174671754,0.3837198867050209 -1990-08-14,7.440986258280043,21.6052524586719,13.984166199605616,1.3748916933958586,6.982240521945838,1285.2136498869313,0.0,1.4922472990724795,29.606532204529653,0.4315785002756195,0.4770003073799007 -1990-08-15,3.774062792483096,21.83831637237083,13.640701529731945,0.971195779420346,7.2329986540966456,907.1380981845102,0.0,0.7737140964603801,32.09966348156638,0.41790461620781316,0.4283141822073027 -1990-08-16,5.152369009881632,23.797488443535887,14.165674957935467,0.9199061934679804,8.11732971647488,1009.7949205480247,0.0,1.0396106974181194,30.94045088015333,0.42045690845653416,0.4371084885036059 -1990-08-17,2.209482185294705,23.198645060261068,14.262074215897089,0.5475717878245352,7.768495404071267,621.2161336943947,0.0,0.4170998175319709,30.53136744847299,0.3814087250371636,0.34804669087248574 -1990-08-18,4.357549020859757,22.13650494167687,13.460731840015324,0.2429017906327026,7.462024648890019,764.6255334569141,0.0,0.7791305272812075,27.97586246238547,0.3766623465142923,0.34519617028932575 -1990-08-19,1.6022419279590716,22.180068744581362,12.826528867293026,0.5146656233983063,7.686839040821509,448.4647108424151,0.0,0.2700152526734927,27.817513894399887,0.34272023128983586,0.2658202937419116 -1990-08-20,1.8690648010525728,24.16374048876599,13.242551804028347,0.935149479960106,8.591873666007254,378.56144528500454,0.0,0.2850935221263733,25.237537256487347,0.31577355647463445,0.2164462180483535 -1990-08-21,5.041608501535903,23.593774182452613,13.832280780707565,1.0424377301483678,8.128488041310584,644.2760239106651,0.0,0.743055452999835,22.84360407140497,0.3248438416780252,0.25403748471348137 -1990-08-22,3.842960654110088,23.300543582057163,14.606744284645586,1.1031587254715276,7.724905081627012,584.2498429936489,0.0,0.5731607803964791,23.721023273855902,0.32110174551082854,0.252638658797367 -1990-08-23,5.494969054377774,23.005534854809824,15.034684409108,1.1571065052785925,7.4133146752310894,754.2049112198431,0.0,0.8466737270782412,23.653769817999077,0.3395630673642691,0.29337447555788676 -1990-08-24,11.853985626614213,22.537235008859682,14.980102735107453,1.1071255682455678,7.170243166382797,1678.471828529307,0.0,2.1976273863798124,25.15438868447301,0.4311224974177788,0.5255942296959892 -1990-08-25,7.87745910442784,20.61548839221706,13.542954599454898,0.7784417624750425,6.620824907465788,1597.8316836062204,0.0,1.7210253111270477,31.936476109181445,0.4638053819126707,0.6041886686023127 -1990-08-26,5.635391872234644,21.30217834969147,13.172063169517877,0.6470165026382908,7.133951530246321,1350.5557683750603,0.0,1.297118946492331,34.6988894249854,0.4698670613909996,0.5908039480878826 -1990-08-27,2.441602745020441,21.905469063450607,12.875992610894516,0.4051813861555105,7.554596787213563,817.3901458145854,0.0,0.5345873223177917,34.746549062198476,0.4332167834963918,0.4659844195994763 -1990-08-28,2.7709629071451696,23.113462854885643,13.170672374424989,0.2975513744250075,8.10046447828478,701.9139778850544,0.0,0.5529782450644207,31.82032084757528,0.4029650293705108,0.38753306274514443 -1990-08-29,9.635118692196333,23.056322472888827,12.604967331407629,0.19925199138599367,8.236948206122904,1585.0287207478518,0.0,1.9868144563532049,29.305990944710647,0.45363755505070347,0.5547876616053843 -1990-08-30,5.833592065106813,22.058621853045373,12.549075536634911,0.1796803307331997,7.744567716523407,1306.3207641977317,0.0,1.2664203301599093,32.77671809835546,0.4497839652135178,0.5539718965387734 -1990-08-31,1.6820886044771286,22.970389238256235,12.847867525229418,0.8596418741351236,8.131953207919496,666.193043079181,0.0,0.3414732293753908,32.863177698750995,0.4024289572251794,0.4126040116591452 -1990-09-01,20.963164787695426,22.391933031845326,13.048370041476044,0.6068545603309455,7.775234653338781,3690.0033349398755,0.0,5.1976177616448815,29.24795460841079,0.5849255363185836,1.0599999068316341 -1990-09-02,5.317948435819017,21.22022672995888,13.071121389940524,0.6177498520206449,7.147339282612177,1987.1218906705187,0.0,1.5211952419868853,42.229254879732615,0.5538927180730114,0.9216345672725588 -1990-09-03,10.456828504671156,20.992406852774398,12.752039956795453,0.390760878854568,7.134555087136739,2724.188315899558,0.0,3.0809348992775423,40.68707449659718,0.5957918336065294,1.069058638950669 -1990-09-04,2.9157817874851526,20.20024809567333,12.688518371310707,0.40258765390366974,6.731152921421708,1430.3474165064456,0.0,0.8380134237006951,43.61206942996226,0.542017956469363,0.8235068517723715 -1990-09-05,4.150009336754047,20.738041142127333,13.466105828329912,1.2374672458143054,6.753467151440162,1319.6867788191034,0.0,1.1032499149654322,40.23051238587246,0.5170030220979092,0.7040503533366439 -1990-09-06,3.664988099706685,22.221789052828527,14.054597915736515,1.1324789522923462,7.373365362752417,1126.2700037956524,0.0,0.9174235721795103,38.427336243008234,0.49034707226558266,0.5979949814440001 -1990-09-07,8.984348478352189,21.811826601388265,14.112130757149206,0.4942168361747185,7.127810957138722,1929.337472881737,0.0,2.268075402072064,36.01744422460534,0.5242404082733203,0.7346146129683685 -1990-09-08,10.659226078820176,20.75692613163282,13.703560009563516,0.4098357998982511,6.685993496860153,2556.927741509668,0.0,2.973945199745131,38.619284730317354,0.574061277874063,0.9310266763441809 -1990-09-09,1.8801431059522715,21.825703535688614,13.733454646063015,0.6054384504471682,7.277609070690601,1126.5851547210932,0.0,0.5168088260311949,42.54100115973168,0.5174762472135863,0.6847463865281163 -1990-09-10,2.0371719395358183,22.11879895830965,13.852875105186305,0.8696749264312069,7.401859073146859,810.6279962096636,0.0,0.49128526073939005,38.013137148523455,0.46655897746973535,0.5205431531610217 -1990-09-11,5.045486186496926,22.744956392631394,13.71135272943413,0.8199063077065322,7.794512321005189,1112.7724955222102,0.0,1.136191181290175,34.3069678394184,0.45842943860650015,0.5118510192675005 -1990-09-12,4.647325966296472,21.17918132250155,13.641660277015,0.7294549899117537,6.962034434704496,1061.8918962754267,0.0,1.0109443618556577,33.437577148618814,0.44366332892113625,0.4871221701267395 -1990-09-13,13.967352301839409,19.893103511720067,13.442160624111759,0.2686067832574219,6.308261943459584,2651.4790835675917,0.0,3.475699229514028,32.9884007570633,0.5470027231329073,0.8463201915483568 -1990-09-14,8.799084170616954,18.771190994285792,12.789328774371441,0.16266778995707912,5.921429609954461,2425.0009204542484,0.0,2.5528168623214818,40.97242325004308,0.579804354524539,0.939618747215895 -1990-09-15,3.694990476971956,19.040266109683255,12.154135518870955,0.17181758530499516,6.322098260236176,1478.56153290107,0.0,1.0761257867209402,43.69984864024292,0.552117778348509,0.775503690786475 -1990-09-16,6.020941633249023,16.566214575643027,10.818682194367291,0.08767858706517621,5.449434500169926,1687.7576478694723,0.0,1.6962490961719672,41.32671447286535,0.5515681282230982,0.7630954372863206 -1990-09-17,1.3461732554013568,15.18767258313015,7.923406159937468,0.046732271669255684,5.71389751520887,837.6269673948842,0.0,0.3626389906174654,42.100661059446004,0.5061261961215602,0.5519564077062583 -1990-09-18,0.0,16.942989291617373,6.819135242271315,0.5391019472457275,6.824054144300261,388.27917544471734,0.0,7.105427357601002e-15,38.51958939103012,0.44872712965381845,0.35929767946561303 -1990-09-19,0.0,20.039205105424763,7.218600904041475,0.654999338486252,8.136140789139848,236.01797681077065,0.0,0.0,33.45439867105949,0.38972108808238737,0.2338859023411792 -1990-09-20,1.2645595732961032,20.964570653122216,8.586081347024901,0.7046308722967671,8.290939063555339,293.55578405557975,0.0,0.21610799706189976,28.3449247408935,0.34493043972919524,0.18515436486175194 -1990-09-21,5.800716654772869,19.95122795677586,10.125363098385359,1.082451510201312,7.450654879231325,755.8187092741745,0.0,0.953305635075437,25.07191521633903,0.3596452533216518,0.2656816552131062 -1990-09-22,2.2983906129201497,20.5056822721069,11.016371497141858,0.7216821592376599,7.487372529510444,473.5713069352978,0.0,0.3740754161461073,26.592434068797854,0.33655854171119237,0.22990477875923035 -1990-09-23,11.371079300937636,19.45617474695947,10.409170672307251,0.4657843798901347,7.1344447192277505,1527.4906830426075,0.0,2.0693465855365663,24.89680159884022,0.42249625066287977,0.46474579315953174 -1990-09-24,5.6939330451253625,18.920483912092873,10.015457921700179,0.3001844000781233,6.981777072011074,1192.413210830453,0.0,1.175519324348997,31.338289710563938,0.43140031564643033,0.48151785115034135 -1990-09-25,5.9053822041081405,17.903669490321775,10.162494613128963,0.5969768391655678,6.425547647570043,1210.632500566787,0.0,1.25467472979964,32.08707895240068,0.44258644271048087,0.5044882524432585 -1990-09-26,7.265689315972231,17.33950787656374,10.71147027167588,0.5244605230932529,5.947681409374807,1479.615901679792,0.0,1.641908542355245,33.29406735664767,0.47249369681495756,0.578402972569216 -1990-09-27,6.021456674900281,17.245268168852615,10.645342079710431,0.5876342803635447,5.923549463033718,1421.8290377075068,0.0,1.4452222643151158,35.849665818945866,0.487770220531537,0.5965695899387438 -1990-09-28,3.976214111824549,16.722585557844948,10.019193695568203,0.4915071167578927,5.865202262379171,1105.4715781666414,0.0,0.9576347765865401,36.994634229660775,0.47728263635223966,0.5341528059712997 -1990-09-29,6.336503336209277,15.931613831137454,9.255634947511048,0.4375041892517759,5.710584574408409,1421.3699940113515,0.0,1.5478758428981871,36.267542340468204,0.49630827925147836,0.5833953350624153 -1990-09-30,3.4253985133107063,16.597921641330515,9.685837368301582,0.3661907531267484,5.918973903642959,1021.8871741460578,0.0,0.8382916672760983,37.79755222543068,0.48021945854811443,0.5074052338111956 -1990-10-01,6.347398216493075,15.90861092632223,9.506384996796095,0.3890259826678028,5.619819636284289,1404.5815143179673,0.0,1.5590180688334163,36.44198381441258,0.4984673222622712,0.5676804912227043 -1990-10-02,2.9985859964801795,16.549936303414324,9.375984344145019,0.536114231019144,6.002236163025762,943.841478771789,0.0,0.7342793058831196,38.032108800749036,0.4779798070316386,0.48133819049227067 -1990-10-03,1.1197310429032346,17.359966096666195,8.31656000442125,0.4858850293198088,6.715704889472609,527.5159421804759,0.0,0.25159109830452486,36.211441917321224,0.43488288307020767,0.35163700053987196 -1990-10-04,0.3800428676283684,17.757219245530578,8.930316682292721,0.3182321577455515,6.748274000956317,295.9408211020271,0.0,0.07454737159942199,32.52552177226068,0.38332754330797725,0.2402500990125999 -1990-10-05,2.074234956828212,18.345915154681023,9.78619275996133,0.3276032282455017,6.80348753821832,400.8019398317193,0.0,0.36543594517864797,28.732168635203386,0.35887373872236755,0.21203454387178336 -1990-10-06,4.292135781925353,17.59207037123608,9.54919575234586,0.3873244629206458,6.496187350066283,640.2454718743427,0.0,0.7357115056660746,26.90174771227457,0.36338761716830503,0.25004746770091685 -1990-10-07,19.712546835032747,18.270852668949455,10.165456101091912,0.8706664814751021,6.659922374573903,3163.4445358471075,0.0,4.525567403977014,27.410109644202947,0.5489470349472192,0.8518536418452164 -1990-10-08,6.511077348389816,17.36993434464195,10.54388744044621,0.7638724214848707,6.0654728418809265,2008.967043663168,0.0,1.8194622006095473,40.78801838414594,0.5510024327576133,0.8315566823322645 -1990-10-09,3.0231489417830684,17.396147804434325,10.674088718380917,0.8421554354943159,6.0374740953633665,1202.7722709958637,0.0,0.819687909087305,41.48491541624812,0.5184888074242437,0.6661139102865171 -1990-10-10,1.2002412666317606,17.008138156286737,10.279926962819127,0.7132563645626432,5.969546270367739,683.8613318487862,0.0,0.2958283258887884,39.15017013878093,0.47005496622759624,0.4786530810749582 -1990-10-11,0.7538480746860635,16.53967895829023,8.114808151796996,0.6782658978402718,6.403974701561382,441.0406537408577,0.0,0.1653767558588889,35.65283794039144,0.4241132362526634,0.3367617132438958 -1990-10-12,0.19446328337437607,16.687725866752135,6.057384690080722,0.4831645070283442,6.969659560598264,254.74036097524353,0.0,0.03725641689445852,31.952465220020116,0.3744899460915298,0.2248888873754031 -1990-10-13,0.3229343783472988,16.974073471071566,5.509843799705847,0.4950668556187714,7.209684584139052,184.24036649441845,0.0,0.05334292251966527,27.95157756294221,0.3293789156727601,0.15451434388215904 -1990-10-14,3.3067446551000854,17.35437537737465,7.099544236435231,0.6894318993588712,7.054194359967687,433.40905587239786,0.0,0.504419064983554,24.517378376518526,0.3241321898934974,0.17738683002387656 -1990-10-15,2.447651333135099,18.051416637407453,8.022927693497659,0.7760396062608603,7.168319347926806,381.29205144522007,0.0,0.3617477637355795,24.21163745560346,0.31056265982857506,0.17055193022425608 -1990-10-16,1.0196215174961227,16.562968488214267,6.546388419757262,0.7414382936415307,6.82361711172914,225.21039067856174,0.0,0.1392014242454489,23.157979662293627,0.2816526798660066,0.13221676387283188 -1990-10-17,0.004911255337070535,16.561688507476852,4.122568797414993,0.6554205068298993,7.2942578264680895,96.29413363158889,0.0,0.0005941712343578371,21.180067152237008,0.24679065127372624,0.08615737044132127 -1990-10-18,0.0,16.61936779917882,4.806598910808313,0.7320892182332417,7.206074492469297,56.85458759274298,0.0,3.552713678800501e-15,18.407687736575845,0.2144370958305425,0.05608439876088994 -1990-10-19,0.0,17.495354015361414,4.629599767888546,0.959992293372534,7.616955317880297,36.557529882558015,0.0,0.0,16.044631592771665,0.18690909209572093,0.03650830762659759 -1990-10-20,0.019987714251645014,17.5295352064026,5.0228472235991655,0.7335419300631779,7.569859024939098,24.776078139472183,0.0,0.0015431157883921548,13.8840596099958,0.16197273504253104,0.02400015454939564 -1990-10-21,11.243422264424037,16.927662613672126,6.259405129277191,0.7869624498309434,7.07172729679212,749.1518051203623,0.0,1.122748353777025,12.054871926667417,0.2714093489437146,0.18657799561505295 -1990-10-22,4.732390643966924,16.29173924671169,5.557402401555579,0.9180515717177966,6.936091040629554,589.588837285997,0.0,0.6169269459912856,20.315041061453606,0.2917856164113391,0.2153897472513358 -1990-10-23,0.0930827337958606,17.082054264627494,4.314745633204497,0.7332378669947863,7.509122754844665,188.6542056634328,0.0,0.011692040093656625,21.881666843860643,0.2559909505457883,0.14198888797104484 -1990-10-24,0.02404490047076113,16.467583898704,3.0962737277743457,0.6033326217693822,7.441744607372519,97.88260916428194,0.0,0.0025893495198997495,19.002142910816527,0.2216422028320353,0.09282235930778877 -1990-10-25,0.7426323355595227,14.493588549459446,4.0289134783979765,0.7697348777257431,6.462738579054299,106.80153276223561,0.0,0.07038568845756188,16.49958910803806,0.20086020281002148,0.07114025412054913 -1990-10-26,0.8670721327644431,13.543048386656928,4.429998808881703,0.8658754184292555,5.9730381482930115,100.14702177224757,0.0,0.07612586316565007,15.262828557610133,0.18790241933571575,0.05790024910041667 -1990-10-27,11.099276294992633,12.528761331918593,1.8146174425297767,0.7725041869394074,6.041063516843021,867.5383376360296,0.0,1.2630873656770287,14.42363950645952,0.29732468411640645,0.2300140516266577 -1990-10-28,2.2617629772191368,11.380765368447314,1.5783652816691889,0.4679201527306467,5.621237128105875,426.6383092760165,0.0,0.3111969666375618,22.704251044089155,0.29083715553020484,0.1971126723727572 -1990-10-29,0.05722604904716564,12.5670984800355,1.835699833708824,0.460166816964998,6.059734686671493,156.85080326267564,0.0,0.007368178675970706,22.403942894374538,0.2616574067375222,0.12943299947118359 -1990-10-30,0.04288868772148715,12.817917701631062,1.7897604276700765,0.5298314158869225,6.171451490972343,89.62951246132641,0.0,0.004882236287742335,20.000225795282343,0.23348870986084688,0.08499819190392319 -1990-10-31,0.04706748450320341,12.959308878031766,1.7040292227129608,0.8019288720011848,6.244934681266521,58.851090553106495,0.0,0.004736898472729727,17.825250913874132,0.20820040561051578,0.056051090784208744 -1990-11-01,0.0014240989092222356,14.047345423408485,2.1556902858931686,0.9077255898349632,6.619201308480277,36.874387162287285,0.0,0.00012662861327683355,15.885349259004336,0.1850701505664898,0.036505906776284874 -1990-11-02,0.2328019207625188,14.521982204856045,2.8327693003037338,0.9536913895296928,6.71205640307363,35.75646912664408,0.0,0.01831207253630382,14.026908698698456,0.16611597156471344,0.02655191309816351 -1990-11-03,3.000837528352258,14.375828949215474,3.191680909883877,1.08165412247659,6.595269348733696,171.80253384557315,0.0,0.23490786301283384,12.575281646135814,0.1814512397149652,0.053052239879920575 -1990-11-04,3.9615538871197775,14.287696341994549,3.398518215991564,1.1806096000556698,6.525619954295925,276.21754927879215,0.0,0.3489861879004974,13.760891591786628,0.20645448759762314,0.08767281732105114 -1990-11-05,4.498708537958788,14.171866632645322,4.416973493470295,0.9366555817921032,6.284241307403708,375.4135279691091,0.0,0.454716066523539,15.665155663582798,0.23489536230607183,0.1263081220158537 -1990-11-06,0.6852733949077845,15.597227551875017,6.226003993350144,1.136970622715053,6.530367437278181,156.3162534728807,0.0,0.07055788928443651,17.891261961146203,0.21640405624821898,0.09296413193243387 -1990-11-07,0.07660134052678147,15.950091291336882,5.439589758525833,1.1895039254369446,6.867165798614887,71.36488269605479,0.0,0.007068292617833705,16.412675919216277,0.19208891298705014,0.06159153254342268 -1990-11-08,0.6895419920113245,12.827610232110088,3.1615367547104567,0.9141088834087711,5.964421188259767,78.19654383379786,0.0,0.05700789976102849,14.483329489706426,0.17675367718698853,0.048773487789226876 -1990-11-09,15.681097789252384,9.28418238004542,-2.8912193303788323,0.22318493929932404,5.4514987124502925,1294.7094889763036,0.0,1.9281858401131426,13.574866407693898,0.3408121697789341,0.3253440270771472 -1990-11-10,0.015557966394478075,7.387307184335198,-2.628056359098729,0.3280606388864538,4.754276907277752,325.4349345755315,0.0,0.0023860761162448965,26.29460495875418,0.3064955799574411,0.21214698579569763 -1990-11-11,0.003059641880899409,12.191422424188488,-0.34458372302771123,0.4397824233176631,6.2560836055133215,147.1612842861313,0.0,0.00042438855283716097,24.01148625590619,0.27975319625715517,0.1381623362712477 -1990-11-12,0.09119753478005728,13.635875602300072,0.9549912350905032,0.3512020828943711,6.659169723981087,97.79031810930422,0.0,0.011116262907865118,21.284028238421485,0.2490069042414199,0.0916298025289398 -1990-11-13,0.38712705407725695,14.394744011935966,1.2468063846450588,0.5326571009060057,6.925862857601618,87.54842487236621,0.0,0.04167176184607785,18.813233026114233,0.22367119180949505,0.06599183619570642 -1990-11-14,0.2507100507378713,13.298235017908164,0.13256951362316235,0.4330037044116172,6.634567288122408,61.026038217355016,0.0,0.023880248535127546,16.82468587474245,0.19891679850376476,0.046593704364951215 -1990-11-15,0.0008974281279094178,13.362727271571574,-1.0741963763878328,0.4916501076173008,6.788713735500676,31.954475725888166,0.0,7.544425062559052e-5,15.064424408797716,0.17550079666136964,0.030341799139159412 -1990-11-16,0.0,14.844130324299874,0.5666904764457705,0.5595859363267546,7.194484089476793,19.87454617304904,0.0,1.7763568394002505e-15,13.261201774772186,0.15448401974760795,0.01975108517503351 -1990-11-17,0.006376457193051854,14.948163415397,1.4092475437293217,0.7800544011350666,7.1390780365595425,13.13101687973245,0.0,0.00040730135404937196,11.587613951818788,0.13506213642768672,0.01291904579608312 -1990-11-18,0.0,14.972483559020116,1.657319448242376,0.9494553683491912,7.120028976631929,8.433772617429803,0.0,0.0,10.148869202652493,0.11822745305791803,0.008409691618097695 -1990-11-19,0.0,15.116489954408012,1.0246586165910536,0.7537250154157923,7.259290648366376,5.476161945750371,0.0,0.0,8.892265810934878,0.1035888745581689,0.005474313987875549 -1990-11-20,0.7264274947838084,15.017442162501428,1.6568472476242853,0.4810290131702328,7.1442481195599585,24.58876200445554,0.0,0.032185247491891666,7.773594995109188,0.09901950550830069,0.008464200510536058 -1990-11-21,0.3421204503399484,15.43292178079565,3.8517089392254618,0.8223691982597993,6.986523018570643,16.632862012154074,0.0,0.014169588225047658,7.448689035998851,0.09075765431961315,0.0076673258468331115 -1990-11-22,0.12102840320891535,14.477371905479533,4.319282378816965,0.9571427029794772,6.487629655197564,8.919628181608736,0.0,0.004535233504668959,6.850176904284197,0.0812098206993684,0.005681625061202273 -1990-11-23,0.12002926256448315,14.032605089912876,4.055410741366167,0.9720692303175812,6.348345543041639,6.68610430121647,0.0,0.004059523100998275,6.191173525018373,0.07352123831815065,0.0043165932411552525 -1990-11-24,0.004090443277478073,14.315255981029518,3.3756168188135227,0.8418719303038967,6.600867796521152,3.151393156036325,0.0,0.00012418809957068754,5.621344330338888,0.06553250538043039,0.0028288087928765716 -1990-11-25,0.0233457290862461,13.564918661801448,2.051433563753452,0.6104071982908831,6.510629463915088,2.2791141302495275,0.0,0.0006287710566269498,4.987256992624277,0.05837012836051537,0.0019371612522361891 -1990-11-26,0.2398033509066252,11.584919915966244,0.2301626298342215,0.7926769668551885,5.987934846568024,5.151531592711079,0.0,0.005897019097156231,4.4508133601792235,0.05464250804194512,0.002158909201711629 -1990-11-27,0.2424400964312378,10.459929616398323,-0.3123137568025329,0.8074096411292728,5.629246603886273,5.437035252710079,0.0,0.00564366001770758,4.208983406186427,0.05185606915291559,0.002264679031994915 -1990-11-28,0.7573109154881709,11.314690828472841,1.1137411699265292,1.0590625683605193,5.753086469056571,13.5347657587937,0.0,0.01792053826330331,4.0219600608934485,0.0556752701930132,0.004202866297208976 -1990-11-29,0.04324073723413584,11.818190486941695,-0.3330345366718779,0.9565212600654536,6.157806020224452,4.459628984405243,0.0,0.0010063587652292955,4.307648937535592,0.05068491814335107,0.0028891014135200657 -1990-11-30,1.584811048257791,9.604247642709764,-1.970476631508891,0.3751803427437081,5.520220555652643,28.12597323259976,0.0,0.03996151045624896,3.891880452687134,0.06379974698771725,0.007965399543200314 -1990-12-01,2.1550402904332637,3.84294182871427,-2.657382647112605,0.5171175099908067,3.520992504076449,53.45326178181928,0.0,0.07032592801539383,4.957152805457411,0.08285223295256366,0.015893262180761227 -1990-12-02,0.9184819746640038,3.923097059715796,-3.3696513516450906,0.6124202302278071,3.666518914641503,37.848920553145604,0.0,0.03558314599882295,6.679676827826246,0.08851340432225115,0.0157638263377289 -1990-12-03,0.030646298771435206,6.037848486492442,-4.233611142749922,0.5402196458836436,4.503291087159565,13.426418520563974,0.0,0.0011860026252029608,7.116360842042065,0.0832577929986813,0.010442096466302233 -1990-12-04,0.0011531329097060345,6.045883685820359,-5.829658399027244,0.4117422026382335,4.6379947952023945,7.073197059866843,0.0,4.117263487851751e-5,6.591257880534216,0.07679712370583505,0.0068035831629246046 -1990-12-05,0.0,6.547826923626916,-6.4479279661555875,0.3656405218909682,4.837467745373629,4.447962601922774,0.0,0.0,6.065275862330933,0.07065635618888833,0.0044288128706552595 -1990-12-06,0.027017031187327716,7.668947939843246,-4.984153464227974,0.4263018948360233,5.120327722086925,3.4151415345805125,0.0,0.0008128676569696784,5.560182108650933,0.06508708614136291,0.0030067201337047387 -1990-12-07,0.037921461060882934,9.0455727031391,-5.72276921925882,0.5816047073610392,5.625504525499468,2.6873050071035425,0.0,0.0010453196705022885,5.095377201342619,0.05979945297580205,0.002116398853338356 -1990-12-08,0.009753304575392092,8.082978661952009,-5.852388755815062,0.5492456776512529,5.312614206573608,1.6011192721745302,0.0,0.00024366169750651007,4.63750546789509,0.054137417420519376,0.0014147772757904906 -1990-12-09,0.0,8.837528012012902,-5.143007904932843,0.5003134680168045,5.528536493138516,0.9399992360473468,0.0,4.440892098500626e-15,4.223877526203653,0.04920531262942285,0.0009209535120083235 -1990-12-10,0.019980945891873783,10.386767610743151,-3.561010241716036,0.6102970400143339,5.9635457668181155,0.8694817127999093,0.0,0.0004111406445958671,3.8238832214074354,0.044778414355918374,0.0006620996883447009 -1990-12-11,0.012402451720442948,10.979366580481312,-3.31383680865707,0.8142590617564477,6.157879861936391,0.6051036038113752,0.0,0.00022988565806768106,3.4516272974458833,0.04035360062121559,0.00046599926592500086 -1990-12-12,0.09439477967670984,10.487663821697543,-4.0178723614872,0.8079836909446578,6.033361836824664,1.3575551830813584,0.0,0.001590551004703955,3.099394166602792,0.03720547828367618,0.0005455285075256419 -1990-12-13,0.014845341520846168,10.219310540542033,-4.62754571042944,0.8171544897287579,5.977825334522131,0.5975278803486157,0.0,0.00022811312324545578,2.864614083973829,0.033543752240976436,0.0003898470114452881 -1990-12-14,0.005698578844107227,10.957052811810373,-4.517407950232874,0.7597412960740968,6.22976293794877,0.3257022894070596,0.0,7.88465562379546e-5,2.5856415961425725,0.030187358096531877,0.00026577763461376765 -1990-12-15,3.6056192140363694,11.353333323990226,-2.626785762858629,0.9677874082155398,6.244661212385549,52.34188486563131,0.0,0.0798508202169752,2.315983330588209,0.06898265933797573,0.012331475747614621 -1990-12-16,0.16357391423688072,11.337423046783538,-2.1988996039418147,0.9184206251560134,6.203003056355706,15.75277109549457,0.0,0.004736003948404011,5.285527599461539,0.06347834232115575,0.00874833769756798 -1990-12-17,0.04348614546120698,11.41382846903285,-2.2267621050902844,0.8383242814814161,6.234695928365183,7.075091526068679,0.0,0.0011453093607742687,4.868389798733752,0.05722002826352817,0.005869146938860429 -1990-12-18,0.9152502490508282,10.912430683708722,-1.5584594042827749,0.9377003062394555,5.984591712183677,19.52814130933004,0.0,0.02387585543998305,4.386471848059619,0.061761471928166174,0.007455990511505434 -1990-12-19,0.7815938504306936,10.967432978601623,-2.08666634152796,1.1080480965633883,6.059414819293552,20.413947653785154,0.0,0.021688123582105368,4.756787446429142,0.06451839133173702,0.008155836601340474 -1990-12-20,0.08189413656872913,11.0392554851574,-4.033739275322772,0.99501958460768,6.237539939475661,8.116255467474419,0.0,0.0022073079982363186,4.961662508305362,0.058754019247874184,0.005645161554025534 -1990-12-21,0.020535701558526718,11.9012990821322,-3.5180720838381205,0.6735389693165694,6.513680387185459,4.232470332774877,0.0,0.0004986228637681479,4.503639462116916,0.05270357673438546,0.003750657546147112 -1990-12-22,0.5298436959971806,11.485117082582667,-1.7810744750708007,0.9033871149930628,6.224004579994439,10.45718185837019,0.0,0.01220083345100087,4.019117273383414,0.05299231458507553,0.004299258915146396 -1990-12-23,0.24704961509382065,9.9498975260306,-2.6830950064893924,0.9189442629659312,5.747557147811391,7.140549298555704,0.0,0.005558396775285052,4.063659114071835,0.050216837338941195,0.0036449635107679078 -1990-12-24,0.1302985340788078,10.581708392490787,-3.0431389579581154,1.2236013048419052,6.007383945676894,4.55572847041558,0.0,0.002764360353040868,3.8862440293942693,0.046790000727769045,0.002793614633345641 -1990-12-25,0.012910957493890849,11.16600939532058,-2.3367520265509065,0.9125775554797364,6.159910046580991,2.170538560511261,0.0,0.0002499637772215603,3.6034952155776505,0.0421286827653109,0.0018565725041696153 -1990-12-26,0.2217679153220625,11.37236674858265,-2.204881833758804,1.13830092456897,6.2244105171939585,3.8349547880805495,0.0,0.003976614541403828,3.235460070092785,0.04027436467989231,0.0018140397510065197 -1990-12-27,0.004903159137808084,11.734202834333859,-2.548233203990269,1.063993043636235,6.387101617956014,1.4665365082336366,0.0,8.11659842049851e-5,3.0893867818798,0.03604638225642266,0.0011932133381818192 -1990-12-28,0.0814292712946169,11.722958924185136,-2.575265304827998,1.2705483973477545,6.385558327812039,1.5953253918417194,0.0,0.0012184666642704317,2.7567728732140893,0.03306313285829771,0.0009622553519411655 -1990-12-29,0.10957971652831597,12.85181995502808,-2.2810103682713074,1.2974082957839876,6.778547024106658,1.6871528696694704,0.0,0.0015133243766497217,2.528889182448365,0.03073637581387039,0.0008568090005105622 -1990-12-30,0.03830031246425047,12.994637754953509,-2.474569152547157,1.4801089307232067,6.846211037194579,0.9654412708983497,0.0,0.00048125665427577874,2.3333916833672532,0.027628605562452647,0.0006310208244359542 -1990-12-31,0.01614725413581651,12.628213814686953,-2.4882710712462512,1.3907978492562836,6.712124454841208,0.5641938323567366,0.0,0.00018122571124611075,2.0949059587716783,0.02459234025467161,0.0004383591904792774 -1991-01-01,0.08631326811500367,12.290553348890484,-0.9593281217089948,1.4049706344386932,6.447849863678041,0.8737167669421553,0.0,0.0008805832271865932,1.8696594212174877,0.022785757180729824,0.00041943303514792025 -1991-01-02,0.325265853894184,11.614447753531346,-0.5607276238357856,1.0625362238863507,6.144327487482766,2.4826297812316707,0.0,0.003302775181769191,1.7411936943344837,0.02407285426148149,0.0007759275052232364 -1991-01-03,3.5211758970658065,9.167730379854977,-0.4141506315389757,1.2537852909982463,5.182070828163958,45.28703530365999,0.0,0.06825281024493934,1.8501654123952476,0.06257248860359632,0.01089759098289731 -1991-01-04,0.29032266693954795,8.864162467791527,-5.134026075199132,1.1520373893694125,5.553986934933797,16.216335343856752,0.0,0.007881854923359188,4.893099282006847,0.06038335531886404,0.00829394839231662 -1991-01-05,0.0995577761462322,7.963745060662662,-6.626096032495243,1.0639998558541361,5.3250979332938515,7.8216742820033724,0.0,0.002539700413488291,4.689079045916003,0.05578437595232906,0.005785677494288938 -1991-01-06,0.002496932920733541,8.37848089105672,-7.587879884836229,0.8612714257096513,5.487951180750055,4.006661999722103,0.0,5.842758437617484e-5,4.3511910927154025,0.05071751703580811,0.0037751005848007425 -1991-01-07,0.0009976143185562946,8.78049724893707,-7.3222367280682406,1.0701996182886997,5.61220140264609,2.489382910059506,0.0,2.112910355736011e-5,3.9442875957000556,0.04595990081788279,0.0024606302691306385 -1991-01-08,0.01558348851193327,9.290287770382713,-6.464193597296612,0.922209980043061,5.755757296779162,1.7992750640348851,0.0,0.00029867311294775115,3.5662954717895814,0.041726464119521064,0.0016472320492688412 -1991-01-09,0.01650054143311009,10.778221668016398,-4.471471807907611,1.454033543227353,6.175325925988441,1.2766916657585656,0.0,0.0002861587076572539,3.2293316979379947,0.03781174740273811,0.001115842534776735 -1991-01-10,0.0,9.545661264441863,-5.4937776874070785,1.2405777391733832,5.8021850516151225,0.744304939839574,0.0,0.0,2.9033846147097706,0.033822464492395565,0.0007263610455405199 -1991-01-11,0.002994289693537437,8.961166628091087,-5.458713801845257,1.1333545518261017,5.6022022302232735,0.5015621902244826,0.0,4.1894600418261336e-5,2.615806173215275,0.030507251853801147,0.00047920597349239034 -1991-01-12,0.028785259818864106,9.07925102862968,-5.225660314663468,1.094759124031322,5.629379499473262,0.5538114956824002,0.0,0.00036640248984227616,2.368521849031588,0.027927004281713852,0.00036773075793564445 -1991-01-13,0.004800705246248805,9.51728328998975,-3.724847415778198,0.8496308150788949,5.6817776668808,0.29713940329122757,0.0,5.5599010813024013e-5,2.1672129587315303,0.025302488225188158,0.0002478412108203874 -1991-01-14,0.06008709962412179,8.731995470073818,-2.9554442635950395,0.583514308611992,5.335150488284335,0.5833015429041006,0.0,0.0006384832506551308,1.9617216018031323,0.023552702135288876,0.00025855148681115745 -1991-01-15,0.8510741080532703,8.493996641885555,-4.002576825155825,0.8493879684702149,5.344701640481002,6.926147885732607,0.0,0.010287671299715195,1.838063714509582,0.03132663445896296,0.0017347547991892747 -1991-01-16,0.009705067255771487,8.17011023357272,-5.007426614749677,1.0404268566862858,5.305751184772977,1.8117497897312198,0.0,0.00012697427981446692,2.443898884450955,0.028582824374888332,0.0011485775506653191 -1991-01-17,0.0011968353647843395,8.681963748337449,-5.279971537980926,1.1828383324958085,5.49427529904116,0.8105891247373493,0.0,1.4263824790768488e-5,2.2316056851813477,0.026010637235966725,0.0007498418803794096 -1991-01-18,0.006928674052556429,9.415133520041843,-5.11996693311658,1.282211543525116,5.733377710213563,0.541436046328462,0.0,7.494173490813112e-5,2.0237234054122375,0.023655721500395424,0.0004995228077983916 -1991-01-19,0.061451622629022776,9.013853764825145,-5.045044096867455,1.5000124330890336,5.591597231045209,0.7286176845991872,0.0,0.0006105330639563783,1.832331318202984,0.022061288727672695,0.0004181285485810976 -1991-01-20,0.009953374945563859,8.732716095119757,-6.167891061836714,1.1941946213375274,5.551292536879696,0.36750060812051666,0.0,9.116983828310644e-5,1.7134616673931156,0.02007661808905301,0.00028606398779781287 -1991-01-21,0.07264713531443515,9.346982462290171,-5.5034997720498025,0.975844091044446,5.726530857735467,0.5980444734398815,0.0,0.0006181170528252455,1.5605665545521807,0.019025833420120198,0.0002803316636673724 -1991-01-22,0.04133623481460751,10.22795880997582,-6.2546684227139675,1.4561803538165687,6.051657154201605,0.4339029486536333,0.0,0.0003290982938878792,1.4740543514158269,0.017653274056497286,0.00023259281441026362 -1991-01-23,0.0010758510947448182,9.47838533269995,-6.43554705113137,1.0048632296690023,5.8053077139815885,0.17838646279658116,0.0,7.789505055622774e-6,1.3593774576692448,0.015848359702709165,0.0001525930575364011 -1991-01-24,0.007296151301029166,9.783584691316252,-6.414982909571883,1.1347811928238998,5.905067209659475,0.13262987542965485,0.0,4.775171785003328e-5,1.2261415048843316,0.014368713369407723,0.00010660181305221544 -1991-01-25,0.015897814843821242,10.152125222482779,-7.165549434127271,1.1463286771818677,6.044393400741033,0.1340468895398201,0.0,9.451847567254132e-5,1.109612056604852,0.01311142776952366,8.378460423640582e-5 -1991-01-26,0.021054389292352663,10.380395335627174,-5.699675345927923,0.7198859849615106,6.078671068953521,0.13488406978507733,0.0,0.00011425913019853795,1.0098844088028558,0.012009738811643364,7.193747998264968e-5 -1991-01-27,0.12981903962878402,12.126009133775346,-4.747948042715719,1.0260326286051988,6.642235719862845,0.5000690223419619,0.0,0.0006830072854251135,0.9244526901306552,0.0122815516636915,0.00015082586754997546 -1991-01-28,0.03181414203750181,12.896633573585325,-3.1279777776103117,0.9786448492851304,6.831185037189832,0.24344378626431157,0.0,0.0001609018563787784,0.935276104650298,0.01126594642811727,0.00012268023556548111 -1991-01-29,0.012043286354975374,12.214119860905294,-3.4858297614129223,1.2514580250956333,6.604801364367647,0.1282845152007834,0.0,5.5110773863392346e-5,0.8548539921489746,0.010098766202797819,8.825049684374935e-5 -1991-01-30,0.3050403817184093,10.64968096305631,-2.847352819884829,1.126064422956039,5.9943352481475065,1.0385652229384648,0.0,0.0014955957483226978,0.76964540221371,0.012519361569724335,0.0002851734725058867 -1991-01-31,1.9453822371327705,10.443267549590765,-3.085306171493112,1.0250596357661887,5.938183876028018,13.415948747715642,0.0,0.02011970541787833,0.9652090956293546,0.033906417877075476,0.0032491569019054943 -1991-02-01,2.2000702049735152,10.254262176286328,-2.7791064250681825,1.1249480509637897,5.842655775429239,31.948327413469645,0.0,0.04387215284720858,2.6155418576252902,0.0560986192360468,0.008795231818731895 -1991-02-02,0.5911171382638328,10.300468663634556,-1.4499125325046285,1.1247749155339155,5.723022493972979,17.978281402840885,0.0,0.014723141873933865,4.332970153003503,0.05736228218698952,0.00796709839058292 -1991-02-03,0.4149707717087491,10.247552103932565,-3.2954109918199115,0.9635422225350104,5.879816790724779,13.023039130329828,0.0,0.010379879468671915,4.4405298495794545,0.056563293930914894,0.006766696587737636 -1991-02-04,1.5734451718839484,9.595132420389447,-3.17017154250198,1.3064873683774818,5.635958764431044,33.63765423639647,0.0,0.04370731336732803,4.36571967372093,0.06918724825061978,0.011059885583889255 -1991-02-05,0.013401579272191724,10.707549527766249,-4.859033692781964,1.551774555231331,6.136293088259487,10.039520916612249,0.0,0.00038821417760877275,5.363261502105786,0.0626344836423469,0.007258577044044683 -1991-02-06,0.0764415979414871,11.664128561630493,-5.316107431506175,1.1901155852849599,6.483889034738722,6.250136364081358,0.0,0.0019957065428185677,4.809929460565227,0.05692291361802004,0.005028868305889719 -1991-02-07,0.005105428623474875,12.52772986316334,-4.6623308255118205,1.3575654433494482,6.757447073700925,3.4817303511306474,0.0,0.0001192703922905632,4.342871594514589,0.05065098772438709,0.003291717589508912 -1991-02-08,0.06025921551380607,12.429155956324804,-4.186183023502766,1.499281194696085,6.698834312222336,2.978202193901115,0.0,0.0012533379165623332,3.844673325273714,0.0454898195495151,0.002333592653163117 -1991-02-09,0.08908005108215794,11.815179190419832,-4.960280614176081,1.5613445635247332,6.51553965789608,2.6854168596478982,0.0,0.0016724137760165125,3.4573257329037905,0.041313225639063776,0.0017737088420039593 -1991-02-10,0.02401630997619121,13.203243685617519,-4.490393349387762,1.0809246157087955,6.981693258906449,1.5230593645527526,0.0,0.0004068539872437299,3.151358814416652,0.036990969729151425,0.0012165506217635125 -1991-02-11,0.10645164927726032,13.738648532721632,-3.4002631947678195,1.6533135068437579,7.120713235642682,1.8836225742219852,0.0,0.0016230406914821832,2.796727159686741,0.03382006699483587,0.0010390491990387436 -1991-02-12,0.291236801789776,13.782545825484338,-0.9299745256110732,1.813546258802088,6.955793395860147,3.515451675789929,0.0,0.004198401686761388,2.550337328814279,0.03310241421268699,0.001315640872261711 -1991-02-13,0.016719944127453357,14.069701931594269,-1.005933618188922,1.713395020355888,7.0689775023559855,1.2539950254764067,0.0,0.00022450419318086404,2.504261672474521,0.0293677285405143,0.0008906044526909542 -1991-02-14,0.00010254301705589432,13.963038859893748,-2.9923859336716916,1.6487835017749273,7.171385965602822,0.6128250259173945,0.0,1.213800767978961e-6,2.217097353479859,0.025828877232411153,0.0005799264593907077 -1991-02-15,0.0,13.954019159614301,-3.499346499870513,1.8355116831199836,7.192333375347185,0.3798164830362511,0.0,1.5543122344752192e-15,1.946264147800698,0.022672659246832816,0.000377504868519996 -1991-02-16,0.0,14.196268977724705,-3.0372874447626144,1.5607006079942598,7.253136570031114,0.24587944907519163,0.0,1.3322676295501878e-15,1.7078969764057763,0.019895843130286917,0.00024573792667789983 -1991-02-17,0.0,15.549780559654085,-2.7339934612701366,1.7242096200888877,7.732268633090644,0.15997178795341954,0.0,0.0,1.4970765675984068,0.01743992814229889,0.00015996384058475894 -1991-02-18,0.0,16.66765548449584,-0.3903549762443518,2.0602056696238584,7.9990628280350355,0.10412936257474585,0.0,7.327471962526033e-15,1.30017744640225,0.015146186727020838,0.0001041289419212863 -1991-02-19,0.0045590147237831976,15.917610329905354,-1.5941717457290967,1.621615965628984,7.796051310503476,0.08561798340486698,0.0,2.73016794813093e-5,1.123359399068573,0.013139485656682302,7.194013115404008e-5 -1991-02-20,0.9769597603233456,16.127077692309932,-1.2751702289236335,1.2402882453706705,7.8503635545624615,5.035508962052363,0.0,0.007634243976510469,0.978478281747273,0.022779528902209977,0.0012092560688545932 -1991-02-21,0.009325799640452341,15.1131474017674,-0.6062395689018202,1.5317764885850074,7.406728936016627,1.2852307314249924,0.0,8.443534292813977e-5,1.6940459269996047,0.019843127035166476,0.0008000253940971915 -1991-02-22,2.1865943407222908,12.644703951147655,-0.3673355759502075,0.6879565080494875,6.435950208448948,20.28321072959092,0.0,0.03019249929838752,1.4886623027982382,0.04281425089053864,0.005118032976598809 -1991-02-23,0.5600368745174019,10.149634093950862,-0.1457370513125332,0.8334306082943017,5.4504021112839895,12.050963265266484,0.0,0.010662997721984202,3.2707220188753663,0.0446257467902361,0.0049551978458273966 -1991-02-24,0.0288956219862137,12.680181072691884,0.04056360404841537,1.1851930089566145,6.395865090409704,4.332313026103365,0.0,0.0005403092937707431,3.473473570976788,0.04080022917669578,0.003307870975198015 -1991-02-25,0.09210481189850356,14.691433999881964,0.8287311590977797,1.6621697178046773,7.082806377050722,3.261014188006956,0.0,0.00156137767694281,3.119427981592501,0.03741218208696458,0.0023910113521683762 -1991-02-26,0.05527421979022898,16.29177697931414,1.4008511774836585,1.8000221855838323,7.649005987730065,2.203650295722945,0.0,0.00084295472107912,2.822998401678033,0.033529926777812025,0.00168478832182229 -1991-02-27,0.20802083462267745,17.265003092248392,2.767739888066516,2.033085736739024,7.874732488011147,3.0464097375334576,0.0,0.002898493900651944,2.5025544965645654,0.0315763669162407,0.0015380565277291242 -1991-02-28,0.143815910363487,15.330799119299055,3.3324090934497517,1.7836344436378115,6.984126897301549,2.3873430629928816,0.0,0.0018580638892197743,2.3464633790794474,0.02901006722175225,0.0012841201868533704 -1991-03-01,1.3116082667924036,14.787447059708619,2.2604151433901016,1.6258133762214897,6.920388000192247,14.020683219735488,0.0,0.019998013123017744,2.19371827344866,0.040834680269670916,0.003880894812820457 -1991-03-02,0.20633404983342024,14.605251684370261,-0.47428461091174295,1.6066086038636709,7.168439521816245,6.00096378176365,0.0,0.003529476301443235,3.090663387327282,0.038407787306207135,0.0030636950282674482 -1991-03-03,0.029417277154385617,14.118387283629449,-1.5050706777364755,1.5009998104646496,7.070256595347383,2.5881446107839436,0.0,0.0004577278807590783,2.893221744875779,0.03404676529795082,0.002064017301508364 -1991-03-04,0.046723508873638735,15.602575029216274,-0.3958629213173096,1.6610213149650401,7.535518510785133,1.814818619997318,0.0,0.0006476841497041683,2.56993023261889,0.030482244003132843,0.0014421977343761175 -1991-03-05,0.1698131067436787,15.203632770206072,0.10088974685713938,1.8717656461088623,7.331774574292747,2.381256969233165,0.0,0.002145397913927566,2.2803610242135957,0.02854286928594631,0.0012654714677365654 -1991-03-06,0.848155280364405,15.088961374892175,1.8440391721656,1.8186686979967368,7.081923821332883,8.55672757446009,0.0,0.011642381387663159,2.1439069031697837,0.034855498113790455,0.0025964870052974237 -1991-03-07,0.2252341354223272,14.388217880545616,0.2387201272598949,1.6715398262475811,6.994700188591004,4.533591907237435,0.0,0.003303997010447063,2.630318758209208,0.033265257335072206,0.0021932733597200146 -1991-03-08,0.08797268835727842,15.677242099855585,0.6495669218807388,1.6886304704150188,7.448435844335537,2.4579981677755534,0.0,0.0012030633938450996,2.514675185585776,0.030319085131422473,0.0016109020476696744 -1991-03-09,0.09309896105027833,16.862669940927645,0.9997949542470226,1.7380008281124844,7.874650964582964,1.8896511385579537,0.0,0.0011528057901068617,2.2720283409747575,0.027552131325437063,0.0012241532323613914 -1991-03-10,0.12176121696384808,17.00092408518611,0.900334794661516,1.7095329929997325,7.934843479597139,1.7653626852432929,0.0,0.0013702213215181641,2.047684427894726,0.025272572541597683,0.001005502657285726 -1991-03-11,0.012488919176071242,16.842715719398925,0.9222748781976112,1.5440460206989566,7.865890255143096,0.8214826205041388,0.0,0.00012537726976839803,1.8761792112926996,0.022001704650861303,0.0006736255127649383 -1991-03-12,0.04588085215087175,16.983430199452034,1.1098521754549646,1.2053483223899333,7.898235881155645,0.7171948206415977,0.0,0.00040556288525880196,1.6357423890319773,0.0195897719083903,0.0005002514889949746 -1991-03-13,0.14109170247869934,17.789051333174605,1.5841907322866648,1.3863522369405188,8.165899702599662,1.0994484975043204,0.0,0.0011470428690052992,1.4556093728372053,0.01860048618816574,0.0005002944293681682 -1991-03-14,0.3601515819681044,18.06959690357188,3.465452465398483,1.4465990963891708,8.052422933872426,2.3430731471376487,0.0,0.0029835307893703034,1.374877001284034,0.02021190797561725,0.0007799547974956062 -1991-03-15,0.14308165298994438,18.418367459211744,3.48180639575127,1.1818414514626052,8.190961431308574,1.4672291358744742,0.0,0.0011958870803894517,1.4972576407482703,0.019108841879527536,0.0006898053898960714 -1991-03-16,0.4869484233606424,14.97643604627906,2.503974514270677,0.9858515588208612,6.905640863809371,3.338109561881159,0.0,0.004295462107649806,1.411730411935076,0.022118322582511788,0.001103078449904279 -1991-03-17,0.3172297274000607,15.605997494862844,2.3135655095435346,1.1206447095977006,7.183902244999555,3.0000763138571864,0.0,0.003102406963936599,1.6754287034380688,0.023213121224461827,0.0011904395177285082 -1991-03-18,0.2748643853827483,18.240334257906675,3.1637832558376897,1.4525262079973806,8.144299352443946,2.780813792714766,0.0,0.002765132846998364,1.7488679363249322,0.02357511100881598,0.0011959525001215999 -1991-03-19,0.10028611548959593,18.76898795251905,4.110217320691798,1.9243930063702732,8.233728640636977,1.580357920895221,0.0,0.0009587793767397712,1.7430443863434326,0.021473551981410346,0.0009244971917858504 -1991-03-20,0.02853383713821217,18.741505452092394,4.196988584454593,1.5735815940187303,8.20514653871781,0.8295873929050579,0.0,0.00024313788454238816,1.5849681644099454,0.018796205600623443,0.0006388255552359254 -1991-03-21,0.022348059227085902,18.65877946196825,2.8972918832531835,1.5683712145999609,8.33497016995345,0.5438772347124095,0.0,0.00016653008869079583,1.3882582919173592,0.016432608681127107,0.00044120207777802455 -1991-03-22,0.1581536634719309,19.354027082605988,3.440359194365157,1.6345222436945015,8.551581325955251,1.0075490934798812,0.0,0.0010857580294487412,1.2106673857002999,0.01594583821155206,0.00045252451581648424 -1991-03-23,0.2114471773461622,19.1903847547908,5.3120406773135445,1.7654247813241537,8.214807171061526,1.2961554161672075,0.0,0.0014355467186702442,1.1697846006994874,0.01609041479796754,0.0005131553861207536 -1991-03-24,0.7542937524756886,19.35200369352216,5.797241140599157,1.8500518216563693,8.201042958748856,4.53213515371156,0.0,0.006291465011051822,1.1882905025903385,0.022629790988620092,0.0012920085286113327 -1991-03-25,1.068684567959695,17.488046719220172,4.070921038626154,1.9912521394772131,7.672580863345826,9.434416272792818,0.0,0.012585829927929337,1.6713273682649965,0.03191928342947548,0.002757415362326592 -1991-03-26,0.7208252177818205,17.74037085032232,3.3784635836022714,1.4764844519255418,7.87236652360792,9.4583228813898,0.0,0.010569878641387365,2.3813598566898246,0.036138355214314286,0.0034043679723127 -1991-03-27,0.1886500713425104,17.412911234442507,2.3565742581396516,1.6946539799919875,7.864049953913295,4.7194109694221895,0.0,0.0028045851623280382,2.685201640894298,0.03347842617925289,0.002643123067249045 -1991-03-28,0.05455164727462878,18.240945570734638,3.0237705836475666,1.191592086791162,8.114650401617954,2.413299106659988,0.0,0.000733315872046815,2.4881791890553138,0.02962109222104756,0.001832207064650143 -1991-03-29,2.5311295815210806,17.44271148965384,3.5700464593869334,1.242346886397599,7.708994137601675,31.90259654256228,0.0,0.046921410393665486,2.1909101087467118,0.05500856446872439,0.008337158578871452 -1991-03-30,2.1480722059898087,16.119360394857402,3.160082173322853,0.8630883845838384,7.21849872810289,47.28750050527672,0.0,0.05990739291732039,4.098013213070694,0.07276266507452075,0.014548883960587303 -1991-03-31,5.997967955668097,13.93790848759018,3.4758074836593806,0.5076037805819571,6.261634290826917,194.27947820602913,0.0,0.2772644361505714,5.470100867399099,0.13359523522973277,0.051688246039555685 -1991-04-01,12.725198609156694,9.711544704450873,1.728479588973991,0.3390730659317201,4.850489175315169,825.9189660015134,0.0,1.1877618513940789,10.214106791717846,0.26722737265687896,0.2145009072790913 -1991-04-02,6.080300573010836,10.742143231789699,2.528892815400846,0.8234149390855215,5.108406482207922,759.7386417898704,0.0,0.8418783860783012,20.920589738517226,0.3145420862251192,0.2678184302859083 -1991-04-03,0.7864590839538925,12.498991188594921,3.1005972424536283,1.1498755198424757,5.721540487334492,302.57472393187135,0.0,0.11329641067947005,24.460961951393465,0.294115356665537,0.19158826288220082 -1991-04-04,0.8211163384369492,16.18710774260307,4.208639588547455,1.2763879996617984,7.060230366408117,206.43633573617913,0.0,0.1087403861852444,22.607929149121205,0.2729325129984093,0.1412722846857252 -1991-04-05,0.20426662672401386,17.801624978845197,5.063915471673344,1.2822780371125788,7.597183062487439,114.64827549127017,0.0,0.023896064469895117,20.43252370222011,0.24040463140895207,0.09560014636058856 -1991-04-06,1.982364378227584,18.568711174006943,5.207160245064014,1.3534220821892509,7.89749743873224,202.06124653013893,0.0,0.21111193448671006,17.825136851229594,0.2307439750221882,0.09437611281596271 -1991-04-07,1.1591525949595676,19.74729126416347,6.692729860780443,1.5982762507760166,8.151709002489891,148.85151544886372,0.0,0.11485856431569186,17.0106173485714,0.2116655146674406,0.07892332696670097 -1991-04-08,0.5350166301932753,19.55110024361432,6.495699635655616,1.6358808585271456,8.095547906613245,89.89684555013926,0.0,0.047310704107563994,15.535763439518496,0.18721370414345176,0.05857913007137426 -1991-04-09,0.06667588022699407,19.666396706524388,6.462260614884349,1.8494022288942524,8.147568583092697,44.791709010298135,0.0,0.005112896290889582,13.771525582252725,0.16120567534595248,0.03891077444948468 -1991-04-10,0.22663898873197524,20.22352844087752,6.317572505074687,2.0076860966015846,8.412242820845366,35.655163398877406,0.0,0.014972960775634758,11.85856313596757,0.14078442025047846,0.027608939831010468 -1991-04-11,0.2646236799145925,19.023654543641968,5.422020384380275,1.7965667559665193,8.03445941213285,28.78613501526299,0.0,0.015165593009667744,10.309212921293694,0.12317803544898571,0.02028130778396174 -1991-04-12,0.02477582916778891,19.43400336140462,4.691476725218943,1.394518628550529,8.315200820534516,14.956512419430098,0.0,0.0012328133032364803,9.095489323119095,0.10624491247615539,0.013389892183427695 -1991-04-13,0.583877596577955,19.691324705995267,4.833470284723648,1.4544455806020324,8.398609803158527,25.675926009641465,0.0,0.025741773960354264,7.8058625462193865,0.09773479085152288,0.012635755850278525 -1991-04-14,0.23079845448281636,20.652926532554986,6.067272408629488,1.7457612191871588,8.620194958220488,15.692781440395317,0.0,0.009130221114725084,7.170854384911026,0.08622424293257538,0.009615494221745038 -1991-04-15,0.1959583241528159,20.6585586817161,7.422039938370728,1.8947807388548603,8.386290409143419,11.338534601980328,0.0,0.006787412080575206,6.300829383371684,0.07568317695116837,0.007292718568544231 -1991-04-16,0.6170698607968812,20.549533242107415,7.338426821776941,1.766107313300557,8.348116375937034,17.969258047036924,0.0,0.01956370709408839,5.558826378114108,0.07194500866023455,0.007726080446352326 -1991-04-17,0.2766673238321075,21.603460036324453,7.112013694540639,1.803779291464076,8.852209416556537,11.489895242619129,0.0,0.008101684617145055,5.2890238532939415,0.0648365329416759,0.006262916412402249 -1991-04-18,0.001761435738440559,21.85987458994214,7.531728691879313,1.6389475606023105,8.88969031490022,4.665699504094916,0.0,4.4756733089895825e-5,4.71958323948944,0.0550004680141968,0.004083679101198132 -1991-04-19,4.976844760913559,20.149336389889072,7.0782888736868035,1.4423060578891351,8.20343175249188,117.08830976107852,0.0,0.1751011312042623,4.002042031907794,0.10459795033452607,0.029320017123553227 -1991-04-20,5.019305957924039,17.655815464089997,5.2805818890515575,1.3879711801401289,7.432743326570448,213.0254985339883,0.0,0.28133173131688416,7.702660343813743,0.14820229167501864,0.061922865259837666 -1991-04-21,2.017035351193821,16.22304346542818,4.532964808947203,0.8649890373677709,6.951100057315448,145.24820263882856,0.0,0.13446275658789597,11.06608547748238,0.1524094973279506,0.06078281599274942 -1991-04-22,2.5717019535583514,16.724431669678154,5.1941969332840285,0.9148337047236884,7.0419325665235375,167.46111955528693,0.0,0.1818372812154294,11.488404474429027,0.1637907179126671,0.06725416873158364 -1991-04-23,2.240169662026601,16.754442653256305,5.21416161718348,0.7452766957633902,7.047245506853781,164.12565459612858,0.0,0.16703175828930528,12.319097406487188,0.16960560132655253,0.06921235562630647 -1991-04-24,0.7853830836941823,18.094063108028045,6.736210467911952,0.9278239909237964,7.334847242528377,92.97306438239957,0.0,0.05721177752103179,12.752451130915407,0.1577066003269917,0.053765328838307244 -1991-04-25,1.051431211977944,17.61159344270534,6.752497474835925,0.8897180046538669,7.112808082853243,85.87718036501003,0.0,0.07157662143317234,11.79479355424391,0.1496498186342783,0.04589730010431198 -1991-04-26,1.6230958573779657,19.066453538152558,7.7448842575033625,0.9757122155830564,7.555029938107275,104.90711408212891,0.0,0.10803061533278546,11.245225939326838,0.14990723407455805,0.04632624229497327 -1991-04-27,0.3938313310953797,18.406979186348632,6.933639740552606,1.1833660517700157,7.422315197142436,52.85810991624984,0.0,0.024640293479877173,11.165271806299883,0.13465572334017842,0.03390805508932496 -1991-04-28,2.419814220924151,20.304449963894022,8.365130521180319,1.0925325581916632,7.980920786058723,122.10241113382467,0.0,0.15016443749726927,10.061573053533383,0.1453997089353513,0.044937304144224505 -1991-04-29,2.3249240296632583,19.79046472599684,9.581704277805287,1.0985155631875592,7.45664956729801,137.83942327067842,0.0,0.152674658810096,10.738826300444448,0.1521838441379758,0.05249904518215891 -1991-04-30,5.136183114662983,18.97909754980634,8.267580116545101,1.4448385163882174,7.38434256532768,303.5021596594271,0.0,0.3976887746424138,11.356286187420164,0.19212609811855455,0.09472840187847632 -1991-05-01,3.6234091376329514,18.62275642198881,7.695047347477495,1.2130036943349651,7.344468447461303,299.6618674958408,0.0,0.32790525281492977,14.33605532512122,0.2092155982422823,0.11159215621107069 -1991-05-02,0.8980104722753527,19.748344938673327,9.14093202141626,1.2995077418368102,7.532704370826017,146.26241041561028,0.0,0.08078968581180523,15.61330182346756,0.19234560623358657,0.08494267201759091 -1991-05-03,2.207333819007439,20.099951770906838,9.947902505549255,1.6872128267038038,7.497849356836759,185.75762723333023,0.0,0.19011484624674235,14.30923978715024,0.19240689693678353,0.08424148104943517 -1991-05-04,1.814685502357544,20.28393524081956,8.845698680525759,1.797550769149588,7.843410182307464,167.1534821026759,0.0,0.1543457025528161,14.323885717979207,0.18800342513780277,0.07833865814697735 -1991-05-05,5.418217378022466,20.653604363970672,9.300430329574162,1.8244229855034035,7.909801432899438,390.97590383202464,0.0,0.5053919858849083,13.900570894084245,0.22505080004178277,0.12794818044750964 -1991-05-06,5.341051586119292,18.617873183416556,9.941213383946039,1.2695791135357364,6.764405501221644,494.532260486476,0.0,0.5835166583985263,16.59090795480452,0.25549247559669364,0.1721372833287497 -1991-05-07,5.404414285446566,18.2576941589957,8.619170557180556,0.806340140327008,6.939206196804163,592.5747055392917,0.0,0.680237940276796,19.25705163576783,0.2872893764142499,0.21562955642768833 -1991-05-08,8.815342531432934,17.526765894793552,7.380166905901325,0.6763029539651072,6.891969446176513,1053.9387100405625,0.0,1.3338778919708734,21.547387221988,0.3537052389732862,0.34346732082249976 -1991-05-09,9.698883333644023,17.137422619440418,7.634667605764933,0.9838666102771608,6.651723050283537,1488.267972628105,0.0,1.81262143652258,26.471947667826537,0.42136568507303035,0.4995794741140151 -1991-05-10,2.8302958221981878,18.502047883045822,9.18790977664503,1.0692115091169927,6.900446197740145,802.8229322884604,0.0,0.5607504251840143,31.582589342151685,0.4008868066101738,0.4105852935066953 -1991-05-11,0.7123007436416782,20.6678685460865,9.024123269231387,1.111934070706189,7.95568967546191,391.86773190337567,0.0,0.12791797505805858,29.92278026732193,0.35687794667829587,0.28674912997459434 -1991-05-12,0.8715841713499086,20.348396603220664,9.405897335433592,1.08664884191136,7.7162667584498825,285.3519552468612,0.0,0.13504361009538335,26.109216032149543,0.3143080500722777,0.2072225910149679 -1991-05-13,0.8125861983286374,20.731562261198746,8.919390452438767,1.0158867620909942,8.00078577443698,215.63795652005513,0.0,0.1104438734215617,23.16568443462771,0.27933061398869724,0.15170887858375687 -1991-05-14,2.887698565781554,19.854795496039234,8.287069902289376,1.0698153413615763,7.731051595974915,342.99639749668563,0.0,0.3630796035945303,20.501329431068843,0.27246633633284445,0.1540395829939983 -1991-05-15,4.523784075862632,20.433800576030194,8.33531003687788,0.739019508058683,7.98076855645543,501.5086853503429,0.0,0.5811554040047922,20.117106296517374,0.2870496852047777,0.18876202422678562 -1991-05-16,4.879271051562124,19.67058834504708,8.890186863775972,0.6554240095182835,7.505911260210529,590.3484044907901,0.0,0.6614692252845336,21.068580941236547,0.3022749029646207,0.223593667265255 -1991-05-17,4.3482308370615295,19.797402008325253,8.027122734335986,1.150806089109116,7.74969650589941,590.7020842248917,0.0,0.6185658990541798,22.390791115727346,0.31149149719180114,0.2397347645748176 -1991-05-18,2.103614527218673,20.38258916336052,8.78276104938397,1.2499381737583126,7.8527787030787355,385.55026038382124,0.0,0.29159165048751357,22.9452717499076,0.29180256118662656,0.2004552006190454 -1991-05-19,2.9485350104261845,21.09956968092883,9.36611362003926,1.5595048839250594,8.053184178014785,404.5824334282632,0.0,0.38915060622692765,21.469862688860186,0.2844577962427017,0.18974084285458637 -1991-05-20,1.1600093739533697,22.12474190139784,10.043157875352584,1.367516428717595,8.378990248094814,240.41583461309196,0.0,0.14211637866948612,20.849366161908563,0.25639431950902686,0.1451516889894108 -1991-05-21,3.8851262728704037,23.345172690661222,10.632740845874523,1.941218239364056,8.821076977752991,403.09310956681054,0.0,0.4569844315100178,18.69073070648363,0.26299344468556773,0.1640695580443038 -1991-05-22,4.7756213870938655,21.321817772826492,11.833412060916435,2.0280102409520606,7.52786199629009,515.3691927204951,0.0,0.5837078189780502,18.987765017864916,0.2768273582592974,0.1956797094617271 -1991-05-23,3.0078222211296404,20.378231958375515,11.485954250492314,1.966011365467439,7.148019749568141,411.3588364109883,0.0,0.3796879885764146,20.52133640225438,0.27409876323082344,0.18519139923251327 -1991-05-24,3.853342185250279,20.59727528219541,9.85939745275475,1.6046018467077834,7.688149904742575,469.12868844967636,0.0,0.49568648934648474,20.48175822869352,0.28348743928016273,0.1960264875899312 -1991-05-25,0.0748717256283874,23.005420710157924,10.632295896030149,1.674053700141546,8.647123707826808,164.0838076291115,0.0,0.008962496614674964,20.938503030611912,0.24479158495140835,0.12896870268697236 -1991-05-26,0.4272159932850746,23.299173290567232,11.652117135809885,1.6170820149040528,8.54572659371939,115.09921386770625,0.0,0.043303989771548645,17.755119582508637,0.21181189577343595,0.09054623608452414 -1991-05-27,0.8319927724062735,23.130955186388878,11.996444761151155,1.7060088393575612,8.373544694262963,109.80995702755443,0.0,0.07373447912318354,15.420143131580845,0.18932637679253508,0.07016850772988448 -1991-05-28,1.3231464035280105,21.934477197076998,12.122922791118727,1.3410796251308907,7.738839886291658,119.9957660035633,0.0,0.10690759332135791,13.84640995629548,0.1767150582620316,0.06195466102103193 -1991-05-29,7.232538501860183,21.371615814581077,11.870055897381752,1.1416567448166404,7.523945971684169,490.7828034786605,0.0,0.6795364585881982,13.099719344013563,0.23685703422074472,0.14379903693866775 -1991-05-30,2.680865623956117,21.213288896746505,12.669065455209177,1.6290502224930976,7.198935492220875,321.2607645416029,0.0,0.2873939326619892,17.591251585421233,0.23615643653480817,0.13736638635608683 -1991-05-31,0.6855657473851804,22.268994189893533,13.14602912008754,2.0594858208149227,7.6004608705632934,154.64037552307795,0.0,0.06961877099449199,17.656741602446488,0.21367545860275305,0.10001954764644154 -1991-06-01,1.9225605496926719,21.511268362768725,13.093773437683664,1.4690375573036671,7.2152147616019695,189.30226689293187,0.0,0.18166366776038356,15.860331292083307,0.2071586467887591,0.09276900169846017 -1991-06-02,3.869073881331828,19.113536479700468,12.164479647550902,0.9014629230082656,6.243201148651214,319.5065176805497,0.0,0.379907790231921,15.501625861507508,0.2256555335196371,0.11823483333103034 -1991-06-03,10.442050494080569,18.704655986423866,10.618752521885275,0.7722739139318074,6.535845315248329,979.607152181562,0.0,1.3467495759119288,17.207304395916598,0.32209625940242664,0.2820278376695279 -1991-06-04,2.8929069495392343,18.50207910864904,9.074689419952275,0.9350232691113785,6.8654369842167515,546.8132741104696,0.0,0.4337693404757377,24.32225624384654,0.31703822018601374,0.2496346570939739 -1991-06-05,2.9728052274054653,20.201118061373037,9.538321482383711,0.6642841783438768,7.549333717462179,478.75818567801406,0.0,0.43621403584020424,23.78292238244953,0.3116861067829929,0.22892046000303548 -1991-06-06,4.363820197020284,19.73512497425014,11.09372304182065,0.8283718468805861,6.907690298514219,594.4461670146214,0.0,0.6395582013750589,23.056200146126574,0.31942466724463064,0.2463986444315015 -1991-06-07,7.110381633844822,21.262146721762747,11.802495121004824,1.2496304129093043,7.46869866249812,948.5526925337084,0.0,1.146514326495053,23.938263783657174,0.36169569193484763,0.33496768023579865 -1991-06-08,3.1722710721298046,22.5975969039503,12.951976581494336,1.3700182905191336,7.812779851408309,632.6849056846758,0.0,0.5283440078716222,26.730780126409815,0.3483502951185799,0.2984963966766312 -1991-06-09,0.9365111145114658,21.920446459248282,12.607302018945827,1.4079593148784688,7.564916106290919,323.08067760234417,0.0,0.14206704164966177,25.575612333028698,0.3088482832688951,0.21593893072641768 -1991-06-10,5.173201743888481,22.001266902358047,13.115771937126295,1.1645803617610349,7.449594822004477,650.9902126300726,0.0,0.7646007890472228,22.842061170925074,0.32635884008640953,0.25698786020777586 -1991-06-11,9.252775747862414,21.980166644157528,13.742600106816333,1.4404773377853484,7.232709856310236,1239.6706395526871,0.0,1.5724823264187489,24.17424039776852,0.389402100205505,0.40672068274572337 -1991-06-12,9.764825615393804,21.779149516365,14.405606733415356,1.7386355151759008,6.885782005010773,1658.7053482785896,0.0,1.988926129994681,28.878711103210076,0.45017103207878534,0.5675994339148895 -1991-06-13,3.876791429881272,20.41601783053485,14.170202044619492,1.4424926760207009,6.19502214472316,1037.400866937624,0.0,0.8347474287236052,33.51409046346978,0.4355784517042499,0.4965831818935305 -1991-06-14,2.0597410513012178,21.7193851428334,14.332217751533108,1.411858719701673,6.876679110414678,656.7035970510146,0.0,0.42199174117130545,32.9422618411934,0.40774962917287033,0.3875067886002845 -1991-06-15,1.578363596150498,21.34102653612472,13.329833223834312,1.2024155382873782,7.021973582828003,472.83541580512576,0.0,0.29356943122218015,30.43873326959865,0.3729774954392802,0.29694898930872715 -1991-06-16,10.535165701997117,20.04573668052273,13.07704020353043,0.7932830912782536,6.403792296189648,1581.9220162610402,0.0,2.0963249232650956,27.81010243034903,0.4466964050463253,0.5124962736143843 -1991-06-17,1.6615088815530763,18.322178473317834,13.151405625931787,0.8407155658573057,5.382939196658938,682.5772223261442,0.0,0.34585220845524933,33.610962506439996,0.4109004039751342,0.3862720947443796 -1991-06-18,2.28781690323548,18.287662854031282,12.732890914028616,1.1410046052557794,5.540705838121499,575.0019052816428,0.0,0.4500876722969802,31.65325333954695,0.39539048230272666,0.31997747605701954 -1991-06-19,5.605223898443262,20.738671273230068,13.390148206432311,1.5607643591596514,6.6691985405244045,966.9360641072027,0.0,1.1180713221356289,30.379618931562213,0.4191990488328599,0.3785331738221029 -1991-06-20,6.909293998361116,22.879366265667528,14.13875103571527,1.4885823302452323,7.573888808077478,1267.0414025617938,0.0,1.4598270821854005,31.41229490754402,0.44642055809465003,0.4686875441098645 -1991-06-21,15.006522739038475,22.99918925170238,14.535407865012749,1.2052546319246344,7.505052786627097,2855.935574262098,0.0,3.767344581921156,32.74752784573714,0.5563023486755957,0.878727429764158 -1991-06-22,12.05759896994231,20.38002273783444,13.02559435125711,0.8220606075495259,6.600204378655409,3160.0749332254595,0.0,3.61681419894885,40.52337201497146,0.6125327023855922,1.1227236488861967 -1991-06-23,4.403801045183724,21.769679280274854,13.854681009731722,0.9181842257151216,7.066532764022402,1842.0474458765534,0.0,1.353426381152798,45.32447486419854,0.5793007366959756,0.9369194878547077 -1991-06-24,20.02321511408105,20.670934432235576,13.378595152143106,1.0279401117441926,6.632268175121304,5317.985862056214,0.0,7.060502125026506,42.537053110202834,0.7287847569110643,1.6849563033691688 -1991-06-25,13.859252079262586,19.50974655027273,13.678238084965004,0.9207850359832256,5.857006151882908,5348.22127690103,0.0,5.8701948118143115,53.158109036862385,0.7807068706089332,1.9906512399184173 -1991-06-26,7.091870530461531,20.80338776487635,14.304391831216686,1.0338091725151508,6.355201032082427,3675.7256489762794,0.0,3.072893530432001,57.60723718063866,0.7537007884389815,1.7637138318591612 -1991-06-27,5.38517976178008,21.734010988600602,14.975854293923488,1.105226787859032,6.627063182964475,2760.5461792635238,0.0,2.1521344382859624,55.15234767112977,0.7052211965591378,1.4757890712924056 -1991-06-28,4.160864068651668,21.711288836110338,15.078096961405365,1.2143866664309746,6.5723430856218075,2080.9759300143114,0.0,1.5000600990812512,51.61280837547464,0.6497255121814209,1.189075633512958 -1991-06-29,4.603647544338382,22.17615670185872,14.751069031852715,1.2201158433522106,6.966500896225636,1864.2011504959607,0.0,1.5193849097407748,47.92802327874355,0.6119583888879665,1.005381148954782 -1991-06-30,9.542199775795387,22.78418326554811,15.003908762699568,1.1448833177293891,7.215540121888248,2779.880577567516,0.0,3.107385129010167,44.899992783710275,0.6342146732482117,1.1276011657574678 -1991-07-01,8.762902072318115,21.898909225381455,14.926747368951302,0.9349776780747832,6.740763337198518,2827.60183588301,0.0,2.9178381079865776,46.154434611803154,0.6397497805165224,1.1782993182622574 -1991-07-02,12.375535285657131,22.824231825421567,14.662663209204789,0.9024093158508012,7.359537620954588,3839.1932141761763,0.0,4.421818999328794,47.054441761595214,0.692318984636318,1.4403047414605117 -1991-07-03,10.824510175336046,21.83985393212787,15.002410886245148,1.2100855943949824,6.676648993601647,3864.408634228327,0.0,4.066403688802547,49.85511333153681,0.7068765195886025,1.55674072619721 -1991-07-04,7.9432887669905075,21.452233050334524,14.264988866702875,1.4728530649015676,6.738991700722139,3234.9515352342646,0.0,3.0080979023629,51.659905597135996,0.6943368490693531,1.4713923896337768 -1991-07-05,1.6350847651471336,20.118245857815374,14.261384019315214,1.336505024492495,5.969352819976772,1516.571959991695,0.0,0.5583885571400198,50.749096383757006,0.6102402340687256,1.0428301970019047 -1991-07-06,4.4968086906996465,21.21244035033268,13.855011290788902,1.1445350275714878,6.756372362890085,1642.1077806719984,0.0,1.4024809497381998,45.828328314398995,0.5862537642468147,0.8923818884112209 -1991-07-07,1.9006265930766055,20.49539301255772,14.12157126072033,1.1879220674453908,6.248636605691794,1014.7201537141019,0.0,0.5343115607540447,43.32843173397855,0.5268878988821911,0.6622554958149206 -1991-07-08,2.6591961584805626,20.105483900586766,14.295608100056455,0.9101164337513352,5.9476831767355955,911.809328243414,0.0,0.678495537503303,39.5760813621593,0.49201237997574454,0.5344081706377493 -1991-07-09,2.152014476324984,19.326749845254756,14.113049093149804,0.7101469044010755,5.557156702719261,722.1562349924384,0.0,0.5084113982533065,37.28717688414254,0.45943986981261514,0.4252877479502089 -1991-07-10,4.9701235580782654,20.51323430335244,13.381728787978112,0.5741987658326053,6.542574259810368,1060.2464034738853,0.0,1.1491733711336476,35.17846820396969,0.4677039040613961,0.451820957666399 -1991-07-11,2.9443346844761513,21.35191685913802,14.233077576597154,1.0753391788246678,6.696171491781536,791.9035644885721,0.0,0.6561872213800313,35.04160763445243,0.44251050266744546,0.39402840604007106 -1991-07-12,4.8132443284074045,22.855921618872884,14.174749128565145,0.8979046783825101,7.545286013948956,978.0513436587272,0.0,1.0381828597705978,33.09491277536129,0.44160435758957683,0.41457265027520857 -1991-07-13,4.307104366592407,22.018439240447766,13.512908011740954,0.6144140326262514,7.31501620201156,921.8710852152932,0.0,0.9008945295046207,32.42502343085598,0.4279044126172462,0.40704181127539074 -1991-07-14,10.477033657092877,22.640218964020747,13.790239399706063,0.9466960336548256,7.556697749231393,1865.920925724582,0.0,2.3633226627338626,31.60511317816361,0.4902285111962397,0.6248158764930452 -1991-07-15,12.526525333144852,21.747704698628734,14.272368994153778,1.3241791492088577,6.906216243213426,2716.813974545606,0.0,3.3198038076229164,35.86243038542996,0.5636985635054073,0.9122149417922535 -1991-07-16,11.806031668572338,20.051054382211298,14.468475974682882,1.03930949330051,5.843807436211876,3170.538131599569,0.0,3.6330859953885266,41.60055356573041,0.622150549257446,1.1470000666915197 -1991-07-17,11.201955773361249,19.221188076531003,13.595629750351346,0.9693562203429441,5.724514829471311,3531.7502689466824,0.0,3.9170603188789457,46.809567756275406,0.675794961780164,1.3430734339502135 -1991-07-18,5.351177936749166,21.44659812402556,14.024162045401546,0.912114201212592,6.831479769802787,2369.9871640389097,0.0,1.9154327338817358,50.72526539909423,0.6532525880233709,1.165930611107533 -1991-07-19,4.598883801675472,22.62177092084482,14.138716925761438,0.7291811192428065,7.436864241180649,1878.7678326576959,0.0,1.5155986063900873,47.874213627461614,0.6112760485163665,0.9897383065654212 -1991-07-20,2.433027435090399,24.10829276243701,14.758183580697748,1.0444448051335036,8.036132794884608,1205.1789813384291,0.0,0.709121965386704,44.36235124183087,0.5451344701937082,0.7522474148278677 -1991-07-21,5.008638166298729,23.65922021587586,15.08111844954164,1.0202306381975652,7.685423998294662,1394.8085593941576,0.0,1.3112791492588283,39.26924164571447,0.5158073133517922,0.6893393331768306 -1991-07-22,9.084848998703633,22.738858786105823,14.707344692079868,1.1202140467166648,7.308324404518958,2097.952194379134,0.0,2.4026280236561828,37.54950185260722,0.5432586050787652,0.8145631171184055 -1991-07-23,9.342871297922112,21.855800667810012,14.588528308090279,0.4359199013917468,6.857798590899469,2402.7628846096613,0.0,2.643795388493711,39.79604396389861,0.5724350842865865,0.932799208962698 -1991-07-24,3.2476150972199798,22.312795700546236,14.690785073000908,0.7534867076213732,7.079029975841156,1361.5905632361,0.0,0.9030148277657681,42.260270188255696,0.5301360441168669,0.7447057910657111 -1991-07-25,9.381229830023171,23.642603306235234,15.316662204826011,1.0268138353045555,7.5994980838611275,2250.1863775655115,0.0,2.6031162827944936,39.078314196027584,0.5645208694827439,0.8811313782093131 -1991-07-26,10.960585258107683,24.18258827516581,14.942379445795034,1.090007611855032,8.025329486786573,2872.2335533634077,0.0,3.280249959354469,41.00241238894641,0.6053337315116988,1.0730416288606068 -1991-07-27,7.982276365276422,23.075387553986527,15.250519248598366,1.044000034954493,7.307771428036849,2496.6796169246004,0.0,2.4431076678129697,43.35520422022703,0.598046881365667,1.0704989014216093 -1991-07-28,4.291462849932112,22.608130639331932,15.702547132741856,1.1182910116678721,6.865221827769719,1674.7927387169884,0.0,1.2564781981100337,43.59178835320306,0.5578074483805131,0.8881618387530433 -1991-07-29,6.022836931119416,22.13571048987212,15.672088972604977,1.3797801756782473,6.598248253069379,1768.246542470919,0.0,1.6919848074446566,41.22461933517687,0.5504008679478936,0.835781295725342 -1991-07-30,5.189830270252778,21.49978908760475,15.2168631062041,1.3848137824033222,6.4102194673920065,1582.4563959428356,0.0,1.4295875340078803,40.94826351938078,0.5374775463920715,0.7617301628740165 -1991-07-31,11.559500426271924,21.014976117049454,14.970209734822555,0.9720693850426996,6.225517694274485,2816.1059121144117,0.0,3.4127040805546542,40.195658557646404,0.6029125518414472,1.015485146206744 -1991-08-01,21.68884603207767,20.109823857392076,14.074745488365364,0.7821128018985674,6.065633142879744,6307.5702859452385,0.0,8.330140153510882,45.040474852217066,0.7773513969785704,1.9294200003285118 -1991-08-02,13.285830204390027,19.74913479279089,14.228922470117517,1.2207699770384828,5.785514051941774,5769.698272789992,0.0,6.145969236904836,57.08579015057449,0.8197817191250953,2.1917763470284095 -1991-08-03,5.836254503523501,20.858059733349304,14.440931197372253,1.2198414314565016,6.358027430210356,3552.177397996868,0.0,2.649315224994285,60.17705036481391,0.7690102953026134,1.8301407692630132 -1991-08-04,6.058982629874049,21.40006161275434,14.612486187597446,0.6945757380854765,6.606665843374125,3008.591337962047,0.0,2.5007577870032494,56.13109190022563,0.7244722510813447,1.5721129404649543 -1991-08-05,9.541567108698503,21.68055338506548,15.141710172695177,0.8533376099664993,6.5597307278342125,3666.213571095062,0.0,3.8025497091003277,52.909584945652284,0.7275136274284562,1.6023660024893764 -1991-08-06,6.258869934693514,22.7204327825307,15.171835351649516,0.939619482720994,7.154337872159793,2849.1294017941104,0.0,2.4086386849055614,53.17061376105733,0.6923132374254397,1.4098157785569894 -1991-08-07,6.4932407419013405,22.150868569222606,15.030305035469992,0.9923697696508228,6.88344279887147,2592.0084249470233,0.0,2.3219061649318196,50.10506438725418,0.6593319244932314,1.2712683251884898 -1991-08-08,4.7504921451632605,22.399460138319508,14.600913030681244,1.065751251382075,7.188090672614712,2008.275879721896,0.0,1.5830755564096854,48.22676122695192,0.6171491238208286,1.068582570024208 -1991-08-09,7.833556038298171,21.827871597193546,14.408705324964876,1.5400666199682052,6.939575888546212,2432.5398372783693,0.0,2.50128401965899,45.023146568358186,0.6157447890442355,1.076454472691628 -1991-08-10,5.752978784715455,20.931506084005534,14.750783795572085,1.3590408294244924,6.2871873713093365,2025.5959611764754,0.0,1.7941015391524529,45.18917805881401,0.5934416274981037,0.9738997316191528 -1991-08-11,14.367386070788124,20.796151616044945,14.862531989656055,1.2713968421146522,6.160296946093586,3959.7924089732583,0.0,4.913987406435433,44.306611945484285,0.6835123408996354,1.3821901280287745 -1991-08-12,17.254005480509942,20.51846357143303,14.59902519874091,1.061899378327505,6.108342160908129,5893.684516799187,0.0,7.194995509287818,50.728676185339516,0.7919522012659256,1.9952851670013945 -1991-08-13,4.20782107936545,19.861016471152197,14.412402412175426,0.6263628358033132,5.79251203144604,2897.5781201268696,0.0,1.774011015211256,57.948251712756445,0.7240761538610154,1.568956249508638 -1991-08-14,16.45767018997023,19.25484279019971,13.214972234724769,0.40894585934241295,5.943459478312098,5959.103274423198,0.0,7.349736202605165,53.9569170732722,0.8202822545079085,2.140422690589504 -1991-08-15,12.548468152370779,18.558203615650235,12.631807218876656,0.16314988457012258,5.778832055894488,5858.234381724309,0.0,6.166891484924262,59.957155199899304,0.8446414088256444,2.3323149026032257 -1991-08-16,1.3460554846836037,21.241573366752988,12.892415564591413,0.5357659391447639,7.164148860487763,2301.2874724300223,0.0,0.59984110244821,61.687789716107886,0.7343016079652418,1.6095620519806542 -1991-08-17,8.119998014459359,22.63992944015341,13.548483211540324,0.5871755465895967,7.699071557842655,3183.666789697541,0.0,3.170851176873068,52.81209354335753,0.7098176014023093,1.5305581804838615 -1991-08-18,4.2850380368434084,23.033548482406548,13.657530109176994,0.1965232449688796,7.87650181334679,2169.194594701381,0.0,1.5068891685421288,50.56450921701643,0.6389600795632417,1.2257675761584281 -1991-08-19,2.1457597612507104,22.749354298131145,13.310633142485125,0.09451755144566602,7.8369632040931325,1322.412151246974,0.0,0.646946715282164,45.750096768640816,0.5579542919004766,0.8964242756256717 -1991-08-20,2.525375738619948,22.119671778271805,13.829652149820287,0.4591968653620968,7.336280842849,1058.223859904237,0.0,0.6574737956755055,40.32927289473869,0.49922763398012676,0.6836401696184171 -1991-08-21,0.5255171150472859,22.82681339015284,13.664721686862507,1.0464213417466337,7.7741942748917685,564.081071611624,0.0,0.11870862062024634,36.67578950511899,0.4333700281583502,0.4630927604829478 -1991-08-22,3.8252017947530255,24.116334836532012,13.885506741267907,1.2909367193270131,8.39077396804232,816.8995259496953,0.0,0.7736744785112761,31.678855959180073,0.41359822830031834,0.419254990414071 -1991-08-23,4.242949799167693,23.60109806912615,14.482540217806658,1.053390976944424,7.933762081596743,848.5394470157529,0.0,0.8113520582072979,29.867655320433663,0.3973654488029897,0.39645563058687083 -1991-08-24,6.034362487023988,22.747833784211263,14.569515973919316,0.5834692324215622,7.438714136116795,1063.7821656191131,0.0,1.1559697033579264,29.014035146601664,0.4082900964869796,0.43408744635445307 -1991-08-25,12.464864122911749,20.61485570595184,14.30998224940942,0.4847597596239544,6.319869241014815,2162.267731817512,0.0,2.768901486604083,30.11229056285974,0.49599501741890023,0.7041766812578121 -1991-08-26,15.914182146655715,19.5286078515235,13.170407688751006,0.4793299046425874,6.149006345457851,3637.12863296762,0.0,4.611880673111106,37.27502379349913,0.6196182276971368,1.1606128861129088 -1991-08-27,7.391197390588081,17.815786366805007,12.02371396726807,0.2126091793407714,5.625727452910551,2620.5121315322413,0.0,2.425979553664666,46.30095919269923,0.6254772620746666,1.1248956656343119 -1991-08-28,2.2560018792011935,20.023068828196283,10.781219851946085,0.2269394023598468,7.214367940766735,1358.057232170843,0.0,0.7097333221068287,47.28428416155557,0.5771107820395024,0.840321591277935 -1991-08-29,0.7356445252477969,20.454514686126497,10.708398718447391,0.4575645618292176,7.452078503058097,729.2507139648487,0.0,0.19723133611023946,42.24084304141034,0.5006469750396735,0.577041245390984 -1991-08-30,1.3729711032876788,22.004458323865148,11.258922067946909,0.9534057794541492,8.074858811163706,596.4044484441455,0.0,0.3144009598286426,36.681190208564615,0.4433052077348276,0.4234989205305515 -1991-08-31,3.7695635735886257,22.05812819152226,12.476645372703038,1.017007749525228,7.769463466438951,801.0352870713584,0.0,0.7745698280945406,32.16950187438164,0.4186657733341208,0.39361759171642 -1991-09-01,3.0177438399897403,22.015449352974077,13.337713068187783,0.8346768189598182,7.483890441955036,681.6600331760876,0.0,0.5802196418897756,30.63688185688098,0.39205359733266293,0.344573564132825 -1991-09-02,7.67955987796453,20.9332387750535,12.339119065146456,1.041203717245106,7.232886759181511,1247.7871099949907,0.0,1.509784170108472,28.91483564063184,0.4262999248455169,0.45418813894665566 -1991-09-03,10.65560959019326,21.043294043972388,12.233826865249279,0.8950098687845783,7.327093597295948,1957.8048908837516,0.0,2.4060454157718514,31.545850556050095,0.49161843046627995,0.6620110902147852 -1991-09-04,12.048932846883206,20.423658562366896,11.898951129019933,0.3698210701141014,7.111385820680783,2665.6666742878015,0.0,3.1966777417456758,36.14459807189284,0.5614219969359491,0.9176795153022743 -1991-09-05,4.298573895297016,21.150080138873445,12.448778665386426,0.2823490629766382,7.323380584698774,1564.1857521369502,0.0,1.1790194753543783,41.24726331036743,0.530578158284759,0.7768893660779612 -1991-09-06,2.4755151389566747,21.83242440034049,12.74321965808512,0.7850182589655422,7.5943831962063815,992.3485783965247,0.0,0.6172483616562316,38.89474155894777,0.48193547321185165,0.5997036450714779 -1991-09-07,13.36553261812257,21.789204610545355,12.284008115561775,0.6164848502583814,7.714614671335707,2734.049432107681,0.0,3.5233354858953145,35.24801929812479,0.5663149571042505,0.9268587641634748 -1991-09-08,16.12849292885981,20.92120749746589,13.797724265068975,0.8449178270704358,6.743930055389427,4198.584388642905,0.0,5.185940638140803,41.01698524833821,0.6657061199390742,1.392977566181162 -1991-09-09,8.253371084102032,20.348467968725814,12.503534776783619,0.6019616194286221,6.892933510084991,3132.71729470814,0.0,2.922603147912877,48.819919237624305,0.6648651803108544,1.3517724299690712 -1991-09-10,8.840153660142336,19.884617701245997,13.099304605994652,0.343919643393386,6.426303039947848,3122.239113651194,0.0,3.1359181316478857,48.58932314658954,0.6690145116397922,1.3574301804717817 -1991-09-11,3.740415040110476,19.881870683194162,11.508234615258932,0.3597252804061773,6.976765406291195,1908.8108814855675,0.0,1.26852911399576,49.418136907491906,0.6192611294438076,1.0767755456140828 -1991-09-12,3.776076316965288,19.624792509886586,10.332199274023663,0.2532805294647677,7.1962818994263875,1542.5166306473293,0.0,1.1527589117663344,45.3916470985051,0.5727706797667619,0.8764548455489276 -1991-09-13,0.8315554089464119,20.36906840024422,10.81532311998999,0.5916113299439731,7.437354432424215,788.6806268646021,0.0,0.22143856373860626,41.957190009408095,0.4984599061571856,0.6042482036736427 -1991-09-14,2.2279755078087784,20.94702861446187,11.411600115753489,0.7815307037232969,7.565001764785054,748.0713653600367,0.0,0.5148236525420056,36.539041514874505,0.4516094939963268,0.47172668741749163 -1991-09-15,8.35685166467193,20.418672719698826,11.997084741369292,0.3769793179628728,7.119345744695213,1587.0217417332651,0.0,1.911575358931609,33.12292387251238,0.4832112935196485,0.598137490091394 -1991-09-16,5.4414719805464165,20.719656216205852,11.615463747376227,0.41882305216387056,7.397574771281708,1344.523893632853,0.0,1.288788330669468,35.71191706351052,0.47940911191454216,0.5855964559570289 -1991-09-17,6.077559281429466,20.845234151970388,11.886116931413989,0.6142503644898624,7.3853166707753815,1400.114290766785,0.0,1.432000988490679,35.22315020756094,0.4811252953276944,0.5992390749708244 -1991-09-18,5.134027779271556,20.633488505954602,12.831478338745132,0.6946083527774984,6.969813450226535,1261.231384116587,0.0,1.1967351642289943,35.35446926171583,0.47166357036583983,0.5722970814645489 -1991-09-19,10.223608597716916,19.932585879120168,12.20727605443079,0.6425477416928431,6.806239865486103,2115.4790053803863,0.0,2.5514094938778324,35.001050578783946,0.5268366517574852,0.7610282890011777 -1991-09-20,1.0124201707853664,20.840958252412946,12.509499638889539,0.8796511305255724,7.198612716348855,811.3860294529338,0.0,0.24832546754993023,39.08350628551571,0.46709038891614796,0.5332048687096107 -1991-09-21,2.14673464213264,20.241400759520054,12.368241863088508,0.8574512900233563,6.926578066336931,676.3827048211007,0.0,0.4639820735346243,34.498698079067736,0.42689447369175637,0.4177394339157895 -1991-09-22,2.033652665811386,20.722508673863253,12.299052329313085,0.5970955014570392,7.211948689717215,562.2250860236325,0.0,0.4003318953634909,31.798396871447107,0.3941204649158336,0.33288518282190355 -1991-09-23,5.850653319529552,19.415437476482502,12.114697133082954,0.5440906794565098,6.571995992044415,977.5759082757661,0.0,1.1258604061244588,29.23373675592142,0.40870938405896157,0.3881214873677816 -1991-09-24,7.689056727079443,18.443339957243012,11.729280799347752,0.5288147553966238,6.178520020040592,1370.200923954363,0.0,1.607830385790951,30.70774199046039,0.4472967014655994,0.49746477497599334 -1991-09-25,4.355372140021827,18.00880427657899,11.19004116725627,0.5834885092872147,6.137875769892156,1045.8913108535723,0.0,0.9546811468049183,33.81837069109593,0.44469825144967384,0.46919049558918896 -1991-09-26,5.6156442011552725,19.11187737391653,11.030761686512651,0.5862719946873562,6.783173554530408,1184.8514313042879,0.0,1.2499451934559138,33.656141444186446,0.45748970660413757,0.4957435815817855 -1991-09-27,6.357327890331392,19.42205953120204,9.976274963749155,0.790390351021098,7.254779690408658,1349.4004734522714,0.0,1.4534068705309213,34.11929059414694,0.4715251932270643,0.5440084386032918 -1991-09-28,4.391687131717855,20.47356382543137,9.852549846663306,0.4986125868731409,7.807229781468709,1093.170326855161,0.0,0.9932618149932857,34.77265702147629,0.45623808598358323,0.5053627097349295 -1991-09-29,1.7277090413883218,20.40360825813799,10.142464547870311,0.9142883180381476,7.703933983403687,625.9874035589648,0.0,0.35595388089142577,33.273594833671034,0.4077414860931475,0.38316660879485226 -1991-09-30,0.09176117889109826,21.13121668003909,10.279005342416555,1.3137135648104041,8.030921946505824,285.5862319500124,0.0,0.016274234909613564,29.900826527699028,0.34939333480025636,0.25190144617600435 -1991-10-01,0.8269777169220371,21.991526940057888,10.613822863770306,1.5646972776168933,8.374638136348421,248.4311507419271,0.0,0.12492318986490814,25.531535162487973,0.30705882418038294,0.18299740321608932 -1991-10-02,0.7659630614140877,21.882795195445805,10.537052424729747,1.1069740339673129,8.345028942715437,191.85665375390022,0.0,0.099953884298284,22.327120584636468,0.26901878506941895,0.13434216409987823 -1991-10-03,2.2817457560148693,22.431424774949942,10.541539809496877,1.2458847601426837,8.617339487113773,270.21605979713024,0.0,0.27002931214606285,19.612596017827972,0.2550542540862078,0.12856638661326886 -1991-10-04,3.9032750260341857,20.494262031529416,10.837696452617095,0.6806927203951072,7.58459282892541,396.93112787848173,0.0,0.4547926723134901,18.501489982666953,0.26100033909665493,0.15293957799053357 -1991-10-05,0.8179329207772739,19.521546015462093,10.007142832949086,0.6570237564872895,7.330043998885912,187.10517618154142,0.0,0.09174283843006492,19.339450558042873,0.2348198662753288,0.11352567956217016 -1991-10-06,0.9077934379186874,18.566291940581003,9.64925050954818,0.7473365139366185,6.957231764425979,141.43316349092623,0.0,0.09199629289873412,17.510854228702737,0.21456477159314305,0.08790767632562133 -1991-10-07,0.2703965540387768,18.943427222714,9.61836723728391,0.8635252881896844,7.157445699292866,79.2149403040228,0.0,0.024659999487587014,16.13514446121362,0.19111344244771372,0.06097861484666432 -1991-10-08,0.0,19.032163694037177,9.960324118003227,0.9901310110075286,7.111176780125993,41.57053156237901,0.0,1.7763568394002505e-15,14.326511472846198,0.16689415626688364,0.03969421227028096 -1991-10-09,0.22490084788174688,20.022444987457146,10.014476415329089,1.1304442386564406,7.594318790740351,36.2554177352629,0.0,0.015732831481018977,12.533769621131752,0.1486298703664935,0.028234622571091567 -1991-10-10,0.9527133129065573,19.901415731234067,10.263003345778687,1.234770262606613,7.471658647588821,58.86809068185436,0.0,0.060569827165731116,11.061923077118262,0.13996237723098884,0.027602063239050786 -1991-10-11,2.328485090391531,19.96921894079261,10.77479701036485,1.377519194576549,7.366183954590642,118.89487838696303,0.0,0.1490130630836819,10.445799588639712,0.14881176533873602,0.04065708606780885 -1991-10-12,7.290639129001652,19.764362568402387,10.002289977864947,1.6330276027164412,7.482741768552023,428.0216892884788,0.0,0.6010492558577107,11.126164033631232,0.21454328437083622,0.11798448053789228 -1991-10-13,1.8398671381994445,19.36057583436113,10.243596557318556,1.5865663096583142,7.217533342124114,226.35123879842078,0.0,0.17451668090107453,15.96246580287162,0.20738512242938548,0.10337509432853996 -1991-10-14,2.9447156992715158,19.43243343348869,9.771225133714793,1.3419661676395471,7.388513213454293,263.86962154552214,0.0,0.2812399606754319,15.517706576314175,0.2150747161419504,0.11011526649578406 -1991-10-15,1.2567850687914914,20.46466510024787,9.805990793112553,1.4664132490059665,7.892937020500829,165.7338346932427,0.0,0.11754307994473923,16.032395904352025,0.20140724952667075,0.08957753343440351 -1991-10-16,0.9119406587952696,21.167964435722325,10.061900438609172,1.2796419432067194,8.178963343761685,117.44041720524312,0.0,0.0780598744488501,14.868249031715676,0.18382852302326658,0.07019653317025655 -1991-10-17,18.81993976543844,20.12916948572262,9.429852199348527,1.2337729297536255,7.831625918420477,1680.5660542651651,0.0,2.494795102678843,13.501365938090732,0.3765213223790384,0.4255640533736727 -1991-10-18,0.5459170784688103,18.683809299979696,8.400973587209482,0.8156586356006544,7.390414756436795,480.42379290812994,0.0,0.08927118111189625,27.587942962352965,0.3277404162864729,0.2906150533462356 -1991-10-19,2.7741019807377945,18.4667397213015,7.307346922907572,0.9466761425635412,7.542329695900743,476.37478963533175,0.0,0.41458334263142893,24.305081000721145,0.3154541428074045,0.25230317929747703 -1991-10-20,1.5652137277485745,17.321113729479148,7.466900849055055,0.8498621465769621,6.97767670257373,331.9031542564504,0.0,0.2181400556528994,23.333937448242196,0.2900582486640064,0.19745255748798005 -1991-10-21,3.2035335301452466,15.898471720622663,7.604449844050173,0.6193901337432595,6.26885896818703,424.48559015653797,0.0,0.4307333973966041,21.73515022341051,0.2905187764198574,0.19411785755074643 -1991-10-22,1.832011956027048,14.763979473240276,6.387940860954,0.4788154529206443,6.052621661492672,310.82890784877156,0.0,0.24245633241541031,22.087882975164145,0.27865057659710696,0.16327916009780935 -1991-10-23,0.2741786713076477,13.707112627342761,5.000239072080369,0.3087151987763759,5.908521176572303,144.28601274972516,0.0,0.033583561035650966,21.288654388101783,0.25119240207182547,0.11140065239439345 -1991-10-24,0.6104348708696035,13.697322794354806,4.672728354507673,0.4036625019019667,5.981358423764849,119.97335145441859,0.0,0.06780764351444524,19.26593929060865,0.23154629803718527,0.08284130431259608 -1991-10-25,0.8397495299115699,14.554606833813635,4.443268846381216,0.5246740382848599,6.408492915928729,114.34157162649024,0.0,0.08611579682112402,17.745400143122513,0.21650440720713407,0.06703819780451792 -1991-10-26,0.7720554042245275,15.261061332928715,4.652438441306583,0.3429720101773932,6.677981108211874,96.6785939729535,0.0,0.0730613363325111,16.46034741451526,0.2007458224799287,0.05476338375330916 -1991-10-27,0.4334801845137715,14.210225673551495,5.046756870690997,0.33567612322129764,6.136469963069467,64.6660672255931,0.0,0.037312245693910395,15.188749564057904,0.1819883966754193,0.041329729557982024 -1991-10-28,0.29071749040886496,12.66074813385119,3.3410566307439047,0.5999411901513821,5.82452415351673,44.28084812648375,0.0,0.022747725991916656,13.927359916857043,0.1656309728380419,0.03036738877506039 -1991-10-29,0.04882271875218951,13.509940933710096,3.359929061054265,0.4838866716339174,6.184070037720695,23.533218348624484,0.0,0.003454344285934323,12.759816020816814,0.14921196687828442,0.020293717773197197 -1991-10-30,0.3969064766464081,13.728513056445685,3.528474652295423,0.6787612001838896,6.248402812307516,30.127465926234088,0.0,0.025415850365621218,11.420021433663294,0.13765920733708947,0.017080195147310306 -1991-10-31,13.639801190870864,12.794792801156989,4.358881934538572,1.0612655103546482,5.67436327309842,885.7458196990833,0.0,1.3365879243015932,10.526255645106874,0.2815181960788116,0.21463366090609864 -1991-11-01,17.12697823978159,11.747364498539842,3.562988783777929,0.955888368248444,5.396698000247548,2232.212823908931,0.0,3.0843465140404405,21.670185121247,0.451960678421943,0.6093537466954907 -1991-11-02,7.1692064354341305,12.031266205582154,2.974170978354731,0.4055067029984327,5.646114440752549,1687.3366591465378,0.0,1.6927506250653792,34.737772378187906,0.4881879223738295,0.6544069388222352 -1991-11-03,2.327299168809178,9.349878518007817,2.478090932589501,0.4945034403840186,4.611626834548593,898.0863343619253,0.0,0.5506707818657492,37.24894873726037,0.4610364857496112,0.5098359215410438 -1991-11-04,1.473733541700789,8.855954733787136,2.365660318698739,0.5668891936688795,4.426780070897683,588.4782721937167,0.0,0.3309170945131903,36.0137774796378,0.4367041156048339,0.3822662388499033 -1991-11-05,0.9320583325299052,11.040981624039569,4.434546875699615,0.7571280544296678,4.874478775059798,399.07650112133575,0.0,0.19600533660345554,34.28093071516249,0.41020747499405763,0.27868206302553383 -1991-11-06,0.13300555631785133,12.351858928537645,0.3386197575157603,0.7869152356555132,6.217895397699773,211.06696250377888,0.0,0.025440245799583205,31.9373038530919,0.3735973855356155,0.18528257821956443 -1991-11-07,0.0,11.306960808253967,-0.336336193428472,0.6153646602585,5.906356234414671,123.06928896023993,0.0,0.0,28.330843045295815,0.3300351348851297,0.12061025013976014 -1991-11-08,0.1468362385540375,12.195936914801354,1.2357732936583186,0.6560753055666426,6.036295217088354,92.78696371552113,0.0,0.02158266796064734,25.238171969843556,0.2957181540529461,0.08179788419288891 -1991-11-09,0.05726816458851861,12.964274616905932,1.6968978297549715,0.7446867470567289,6.2768502632577805,59.36854256225479,0.0,0.007438557318928542,22.585190071853262,0.26376930422604555,0.054379208349214433 -1991-11-10,0.08817878328112344,12.335069635024311,2.106785954704305,0.7188154593984907,5.95720857028111,42.51753523702248,0.0,0.010088832765671907,20.07193831396832,0.23485171107873246,0.0369344826415293 -1991-11-11,0.2714438099609141,12.113178696073634,2.556761925528053,0.8467481119583963,5.787241122555712,42.82540112220508,0.0,0.02779640717817966,18.005349547148857,0.21291226495580565,0.0282750259028712 -1991-11-12,0.0902312835533607,13.227507641128645,2.5683631887480107,0.938477536185731,6.2518711586936755,25.49910960350789,0.0,0.008317684451559518,16.390417434890157,0.19198839632444667,0.0196722032698737 -1991-11-13,0.058260982149883365,12.73879604889045,0.7417813944161142,0.7091415234551741,6.336786379690472,16.52975859030855,0.0,0.004767188046913749,14.654384329145937,0.17139235398209757,0.013531554540039965 -1991-11-14,0.11690011976227573,11.054962364231162,0.07902772906246865,0.7231245105619233,5.7739868875884115,14.68535554152606,0.0,0.008503657749004592,13.06917326899755,0.15360882493001468,0.010103213537708816 -1991-11-15,0.224366761127738,11.163995124252603,0.10105025081226787,0.8726406718018793,5.815714359875674,16.768579094446054,0.0,0.014809639203194447,11.849468255581407,0.14065200114057524,0.00883170351068464 -1991-11-16,0.017775532155509963,10.316625687595637,-1.1452336674846295,0.7895641645324223,5.657705147014207,7.340350152588203,0.0,0.0010604964088496288,10.845175509732117,0.12654602288495043,0.005910500140150008 -1991-11-17,0.0,10.491541990455444,-0.7283397580055226,0.6990516526658784,5.67414626328776,3.9777963571366715,0.0,0.0,9.791186304638723,0.11406068953085526,0.003847457797731068 -1991-11-18,0.00770082243917891,10.641918594009175,-0.3624764776045619,0.7869866859112706,5.685796694781582,2.756093587992712,0.0,0.0003710993765838593,8.825296818647901,0.102898440517825,0.0025610195580719063 -1991-11-19,0.2388998623951903,12.100854266308401,0.5765333844159322,0.8260711603778993,6.125278428668877,8.55539442392734,0.0,0.0105107871836147,7.962169680383799,0.09553690613533707,0.0032675259869529337 -1991-11-20,0.26024614453916833,10.778053098099836,0.6084964975679267,0.7701219965993391,5.60247666177726,9.629838586020735,0.0,0.010549535951074496,7.331712659419206,0.08844117853820074,0.0037333285386262588 -1991-11-21,0.6490322092084908,9.919118557032666,-1.2236152756429783,0.770128609112114,5.530811343981961,19.61478266433936,0.0,0.025297281215737266,6.85692018917816,0.08743926215969883,0.0062821061892292945 -1991-11-22,0.023867390101638117,9.549061375916516,-2.7633775162148386,0.5635716465023913,5.565434578583086,6.181570860978717,0.0,0.00087979670830933,6.788684194201124,0.07936161226979788,0.004223317916107083 -1991-11-23,0.01106910736438592,9.970381564067726,-2.146346897689176,0.5654530178401248,5.658506876932719,3.1577483649193914,0.0,0.0003690538529213961,6.158697609789758,0.07187360388288405,0.0028053753685133857 -1991-11-24,0.03426261432532058,9.650067072955457,-1.9262447471260304,0.4711785208450099,5.5202478489699915,2.53389692899339,0.0,0.0010331635727959879,5.568747896069648,0.06527127790036065,0.001983481928947243 -1991-11-25,0.5095423613120268,10.137919899613888,-0.6783664335556813,0.5823193078388469,5.551839539210164,10.91558447843978,0.0,0.014637767111387867,5.071310138195369,0.06501315207966502,0.003519969795755158 -1991-11-26,0.373348785908164,9.910810710817,-0.9214607407916668,0.6599906500729131,5.499998057470604,10.02938639563493,0.0,0.010538483151175115,5.0482595044930045,0.06315806488907129,0.0038959746412318987 -1991-11-27,0.11484922797337202,9.93379150196717,-0.7657981920816859,0.7091934640484214,5.490095767601226,5.220568524260063,0.0,0.0030729511973966728,4.909250234368109,0.05852735624842276,0.0030039985965616503 -1991-11-28,0.13416094600114853,10.815734774450073,-1.3265641684068892,1.0557822524397906,5.892572007015088,4.3627884943839925,0.0,0.003333607903515945,4.550651988717483,0.05457489797777812,0.0024630529484940713 -1991-11-29,0.05412273666985803,9.9878650954425,-2.2493943073691125,0.897916825295365,5.687843326573364,2.619070416346754,0.0,0.0012328393872396357,4.211433400701785,0.049690840223383256,0.0017910497151903237 -1991-11-30,0.006434443639621219,9.550949618174581,-2.082846188139624,0.9421990876410103,5.513081981069754,1.3403201903853228,0.0,0.00013307371677230909,3.849944204990302,0.044924199588195546,0.0011861516245036047 -1991-12-01,0.006241106550963031,10.289650925704112,-1.9164142819507757,0.8086437979402863,5.767618102335393,0.8627931221565515,0.0,0.00011696246971896595,3.4925479148248186,0.04075852260231637,0.0007899382223045499 -1991-12-02,0.14041471971403532,9.896994384318011,-4.211281584470365,0.5016203160246308,5.823651514304397,2.1060145132836445,0.0,0.0024247996555497864,3.153783381583007,0.03837517693919919,0.0008834242242858681 -1991-12-03,0.6043491809824358,8.27866739839617,-5.3802233187316935,0.6466031595012193,5.344954680469589,7.629363606516379,0.0,0.010582529388413975,2.966382718799132,0.04159660841362514,0.0021864140821535607 -1991-12-04,1.0421647380756571,7.229782934330449,-5.535779532477899,0.7596559507672778,5.007058966088471,15.804400666261541,0.0,0.021058406136217123,3.2443522846473773,0.04993502034231575,0.004629706232091917 -1991-12-05,0.2871618672838416,8.928629446310389,-3.83804420677456,0.5402998588420114,5.464911763910739,8.376270790954123,0.0,0.00626571820775873,3.9187814717288108,0.04899639149427788,0.003967769320294793 -1991-12-06,0.3454103504132355,9.056755496279553,-3.5798610121066785,0.6471394264228812,5.490171987571862,7.871909714379333,0.0,0.007391185454661053,3.81224423284631,0.04843386019251142,0.003708248516404398 -1991-12-07,0.029485340593682026,8.280929792261599,-3.9999017902376592,0.3507779317851312,5.256198133885632,3.267719623261063,0.0,0.000598313225594567,3.766727093944305,0.04422330394059296,0.0025049975238633673 -1991-12-08,0.09246778800059333,7.745893658199298,-3.510334344148516,0.4755207073712952,5.027745824170479,2.8343683518814755,0.0,0.001735590566555728,3.4547830556071477,0.04132307001135507,0.0018949049564592176 -1991-12-09,0.059209695722301475,8.463972670457531,-3.474355971500507,0.6315361050897903,5.2771932328583855,2.0170519332327945,0.0,0.001037827623236648,3.242261952403384,0.03845990883386419,0.0013915186533900675 -1991-12-10,0.43794147502364383,9.153909875871848,-2.839424708562164,0.6241794660475034,5.463318915032664,5.912540748944274,0.0,0.007559796550784925,3.0037300326386944,0.04009314224944157,0.002056903946275313 -1991-12-11,0.3696709236908218,8.99435515683132,-2.5143973298628075,0.9181857026560658,5.37419994185545,6.058856225290315,0.0,0.006546130458998434,3.1202338765920774,0.040655027443275364,0.002335692861663771 -1991-12-12,0.6457387634246428,9.42827147375615,-3.500898561458138,0.5502601723226167,5.6226610092587865,9.831771917889714,0.0,0.012089496016179702,3.1692352838280224,0.04444186402272859,0.0033612306396696187 -1991-12-13,0.0052680756659305925,9.042155522978176,-3.4644354794150343,0.7122954433185016,5.484630071039693,2.984338386506218,0.0,9.743929541108226e-5,3.4479417335241025,0.04022755564811628,0.0022028397407633923 -1991-12-14,0.036006704406104664,9.392286691687122,-4.671619613493772,0.4658175660378585,5.696202379578231,1.8921693078187785,0.0,0.0006068757837890543,3.1294281331847476,0.03687517211980224,0.0015263509411116833 -1991-12-15,0.896992939900239,9.739359538418766,-3.911835195222888,0.5002112080498817,5.767184583545664,11.41232863844864,0.0,0.015888956214153094,2.8574205825358767,0.043736374922224645,0.003412911032305532 -1991-12-16,0.13027740032232898,8.917517497463152,-4.889602862100553,0.592743661227458,5.549102845745131,4.719584417289425,0.0,0.0024086159702040866,3.3839898341010155,0.04093883330195796,0.002588392038702046 -1991-12-17,0.04483989941755778,8.489038927347512,-5.611235954989692,0.4834935762733879,5.44590586877536,2.3984810331668185,0.0,0.0007693005783928064,3.1808391497017334,0.03757697638471762,0.001802058940560795 -1991-12-18,0.0,9.368696470486318,-4.250066462462184,0.6597285550748276,5.664736653052026,1.233041928890218,0.0,0.0,2.9255378685350926,0.03408053489653762,0.0011730556735348712 -1991-12-19,0.010651171810879234,9.570706739178641,-2.905883693662996,0.6426114693574212,5.628750246669834,0.866507421399375,0.0,0.00015078495103956237,2.6426086268566413,0.030908679778377697,0.0007865633461677509 -1991-12-20,0.056707045888865486,10.358919101132061,-2.3971657854865858,0.7779654039246867,5.866941872796142,1.0013208188798968,0.0,0.0007352179732938377,2.3984651670649715,0.028601093556338303,0.0006239635675473509 -1991-12-21,0.03330412183071752,9.929074433718457,-1.4660001518173698,0.9838034715645032,5.609697003091144,0.7080891398684966,0.0,0.00039584216891009466,2.2095509752781717,0.026127742944982456,0.0004664437741033639 -1991-12-22,0.05767095462800679,9.353598264417693,-1.6924392143588018,0.9514278773474364,5.4232699379178095,0.7434970067975148,0.0,0.0006330927971838554,2.02841983539929,0.0243015449335033,0.0004000307050147542 -1991-12-23,0.08827109957343994,8.615413114357086,-1.5723847253145429,1.2071393897191849,5.134489699623524,0.8950311230344824,0.0,0.0009122412865467805,1.8933431903437774,0.023084464462194074,0.000399303399765417 -1991-12-24,0.1439723647248594,9.342370955985878,-2.1357362623399183,1.0463764303868348,5.471419994625266,1.2589066622804368,0.0,0.0014437109530433812,1.8083098310743688,0.022742765430392713,0.0004797540662559565 -1991-12-25,0.5078452140831428,9.697682283275554,-1.408182915124296,1.2593506332253834,5.518624502577137,3.983532129129494,0.0,0.0054852025897774714,1.770357767906201,0.026539521865072233,0.001147500474840804 -1991-12-26,5.782336074073238,7.565114320705148,1.081786393815892,1.0893190939940265,4.251199611800064,102.09369127761937,0.0,0.15464419693414921,2.0639034899753472,0.09140337718583333,0.024293832389162176 -1991-12-27,1.0593014460588714,7.734613373171629,-3.3744098490066627,1.0988947885655207,5.026044499382836,54.16093484901968,0.0,0.044932835384370984,7.269101944399709,0.09702025922607237,0.022655831046732664 -1991-12-28,0.7055554379646016,7.011264238198037,-4.527560178099079,0.7607709494298664,4.882105192459731,38.003160214419914,0.0,0.03054763442579822,7.603400300531938,0.09679370725131363,0.01939920980309087 -1991-12-29,0.20626410583058635,4.975362183482477,-4.409715108161716,1.0341489166056073,4.181424011479507,20.29354028761511,0.0,0.008646058668788925,7.606355714350983,0.09101172993819533,0.01394446397785649 -1991-12-30,0.06807112352630912,4.320641984217846,-5.181584288199363,1.1322369543625264,4.041634456105175,11.488840097667545,0.0,0.0026910241723971384,7.247424776057498,0.08522057293214394,0.009486938844013882 -1991-12-31,0.05453952997444751,6.092603316431662,-5.222286361802032,1.0460727454038037,4.6302418544460915,7.699517733257862,0.0,0.002019893203572168,6.8046385520168595,0.07990477939084885,0.0064831098810697475 -1992-01-01,0.08462521568224321,7.110297009985372,-5.2774604964719325,0.9464278854131744,4.972744120956959,6.25340050028428,0.0,0.0029099823928305513,6.311230070795231,0.0745073826007751,0.00466328763433744 -1992-01-02,0.0999506589981446,5.526645139007488,-6.747871568583803,0.7896302610096523,4.546142480734597,5.295346007960267,0.0,0.003185589085997878,5.847874500176275,0.06928813503865151,0.0035206340738803414 -1992-01-03,0.11147409616271,5.834612094926009,-6.3387201493816425,0.6566544759081714,4.6217910004622675,4.66695529501129,0.0,0.0033321887176266662,5.4824483123377545,0.06516540766805563,0.0027991422703440992 -1992-01-04,0.036727550471931034,6.306429872091112,-8.140110384063712,1.2092911537021318,4.844055755797292,2.698894583309184,0.0,0.0010231635542118783,5.14938408543408,0.06041468835039778,0.0019779018244368463 -1992-01-05,0.14672110671717084,7.237082068140353,-7.046954426024419,0.7810852766393193,5.105306152394489,3.8545015590492424,0.0,0.0038143753816897996,4.75465413695905,0.057097702213909765,0.0018683161272276926 -1992-01-06,0.15385626132488914,8.04965071980501,-5.589235294254217,1.1347885646668376,5.304946594099087,3.9026061805740624,0.0,0.0037651441959730414,4.471963155417132,0.053887663445730136,0.0017894848135639736 -1992-01-07,0.057843753443099936,6.590213125744149,-4.3472628454434785,0.6494721095576922,4.723261078013298,2.2604635580043393,0.0,0.0013161645492293858,4.205022293581536,0.049659502492659595,0.001365276003912898 -1992-01-08,1.2523846901084792,6.493136106999488,-3.870769839217561,0.8232056492431024,4.643585815008098,20.984483480290702,0.0,0.03061820033321294,3.9178888649122707,0.060230185434161525,0.005550803828162847 -1992-01-09,0.025365324462103985,7.969313400720272,-5.352438981809561,0.9256249494576436,5.263579548768807,5.821766004615492,0.0,0.0006514690600958849,4.757931553184493,0.05572216921627547,0.003712508192782334 -1992-01-10,0.00930767262883533,7.505741270613985,-5.278258591353293,0.8318966483141712,5.1033194630892735,2.734353737557976,0.0,0.0002179799245730328,4.351386829655636,0.05079913774374136,0.0024498590093084923 -1992-01-11,0.024335907201002517,8.247003528724289,-4.743889104312449,1.1735661317653705,5.31746692474753,1.95988625216339,0.0,0.0005216100391320713,3.9793375098659713,0.046640083887553446,0.0016741659057902512 -1992-01-12,0.6506675496094209,8.597889642418675,-4.29931719004995,0.8917434324877249,5.40550902128861,10.170070568121004,0.0,0.013851193408967677,3.6391980068526575,0.04997402849263679,0.003198852136435714 -1992-01-13,0.0,8.436715015180207,-4.4423798595797255,0.5359971365879491,5.3599414025313585,2.888100227863465,0.0,0.0,3.892585227480045,0.04534598171149573,0.0020823023947692375 -1992-01-14,0.07458048900159198,6.051124018365698,-3.5865097312319527,0.5524553794724794,4.456966148300334,2.3510636042269684,0.0,0.001428884021337895,3.5354967622579774,0.04205495511235852,0.0015730496916630731 -1992-01-15,0.09223406802608404,6.592099191711763,-3.461893437124448,0.7219688324081427,4.63122244809887,2.2025602031207248,0.0,0.0016711852548134815,3.334852916590553,0.039923242433084975,0.0012784440590847491 -1992-01-16,0.17026704093118009,6.563525261121742,-3.577662007604152,0.7206236521114961,4.633279991991858,2.866696046124827,0.0,0.002955872321859593,3.1557345452331544,0.03874566599952162,0.0012822822231367127 -1992-01-17,0.09107104733372673,7.101519195169348,-3.7013671350890345,1.016987734892571,4.832668645822284,2.0041224436601066,0.0,0.0015156036430857833,3.0626046298841927,0.03673818586515349,0.0010654785043819777 -1992-01-18,0.044302855820265226,6.598932468267603,-5.807741408718023,1.0338686135022683,4.831758343488136,1.246710794377764,0.0,0.0006911451519149917,2.8933010432173867,0.03422109598037383,0.0007988134883980307 -1992-01-19,0.16178906950021718,7.168472233496687,-5.049526174784514,0.7016118579403391,4.968975309862586,2.1370488855633596,0.0,0.0024022962254582614,2.6952479792059227,0.033282546736572,0.0008857751257048858 -1992-01-20,0.9560066208018838,6.641960271145008,-3.951418218190701,0.690337512701644,4.696103012078418,11.06133759667573,0.0,0.01583126352781039,2.6146882552385087,0.04159617711211416,0.0029871417197602605 -1992-01-21,0.7699441332165374,7.418414874497819,-4.796907324679464,0.6799842427620862,5.032761486606932,12.772764835042464,0.0,0.01515352345707377,3.2839078408742037,0.04722463009428661,0.004251836670365444 -1992-01-22,0.9190011552295588,6.321214113706327,-5.430738629879461,0.8101920130973344,4.71187191347806,17.150256520344236,0.0,0.020561765023081713,3.7045035541774842,0.053860698672874706,0.005898578315896538 -1992-01-23,0.5132255114693013,5.985896488634124,-7.200397488160872,0.9129769404055071,4.7022333906352864,13.231812491114384,0.0,0.012440979630533255,4.249891496865203,0.05548708740527067,0.005734020187444783 -1992-01-24,0.0013145791509586707,6.922361820055717,-7.631862300813072,0.8082304656603287,5.011565740568621,4.571040604079183,0.0,3.0955006336539845e-5,4.3788677099519555,0.05102615726239651,0.0037372910000849093 -1992-01-25,0.07524222285267966,8.324311137905008,-5.942312812985606,0.7253997923018439,5.400203317071609,3.5633901129372787,0.0,0.0016332351170871146,4.003981951375234,0.04752019904298384,0.0026814849624268553 -1992-01-26,0.08678107828010836,10.722166676425019,-3.5061808048811787,0.8964962401079467,6.077859016434181,2.983570720989705,0.0,0.0017439569843573366,3.702025811407725,0.04413703435837084,0.002011063894760231 -1992-01-27,0.31935291756266315,10.718879668229578,-3.2785173254301614,1.046544979903561,6.058408492389068,5.394065387680981,0.0,0.006086860398994198,3.394840114604553,0.043267833449250497,0.002235922491264894 -1992-01-28,0.01735747059484445,12.360516423351786,-2.554372729689549,1.2819763521111167,6.595853771817686,2.0196107605989053,0.0,0.0003104555746235721,3.3292917303906053,0.03898619672893366,0.001502751900994013 -1992-01-29,0.030872269513807036,12.293896244965667,-2.6774006976934834,1.3873983653517754,6.578945128541648,1.3461912182325675,0.0,0.0004932035998492547,2.9694506496822304,0.034951730089805066,0.0010533183922878766 -1992-01-30,0.01204552474818536,12.7696249899207,-2.9522314474653135,0.9414210923564252,6.76991092840739,0.8297427995888508,0.0,0.00017191453404212173,2.663313199633588,0.03116611729681861,0.0007118372948836309 -1992-01-31,0.6093391996634071,12.31570416716295,-2.9390349902497017,1.1642580093572008,6.601971645699744,6.160682017974481,0.0,0.008702500745133901,2.366382003850395,0.034665136763210064,0.0017884569214530533 -1992-02-01,0.5161651898847335,10.85739679505146,-1.7216449224755193,1.517127631837662,5.961199063075873,6.899223170983278,0.0,0.00800510061270665,2.6403263985474354,0.03677098932377043,0.0023830962245055994 -1992-02-02,0.23377555539691386,10.194754777785676,-2.305211288686377,1.4550076767126268,5.775127036956113,4.467146170423439,0.0,0.0036931410354230643,2.835078543007831,0.03575007191598444,0.0021136189173445743 -1992-02-03,0.3766023008420804,10.252198755866855,-1.7414016133286592,1.4447545336855083,5.735948219685059,5.518305089883041,0.0,0.005954650201597633,2.7661770516575457,0.03661125106154018,0.002282550035211487 -1992-02-04,0.041961493350855535,10.031049092648145,-4.889467169890651,1.3077155754594287,5.907105425648788,2.268987345069165,0.0,0.0006411083231935358,2.8348551248074325,0.03351296532530487,0.0015834510062486867 -1992-02-05,0.006485429252890506,10.169749505859137,-4.888996246154863,1.0867083733706604,5.952696650045495,1.154448862898667,0.0,8.978572462967592e-5,2.5867403973298337,0.030209324660599595,0.0010444233858329201 -1992-02-06,0.026273576347960147,9.68255156453608,-5.538046163517923,1.6271285547552647,5.816278391221078,0.9045175872472898,0.0,0.0003287945038316295,2.329913891261029,0.02744798830884439,0.0007299343567051965 -1992-02-07,0.4175184213631779,10.257668962785596,-4.789146255941371,1.3848426620330885,5.973538287021726,3.8909708153333926,0.0,0.005198684775187645,2.122560418585851,0.02959019825923039,0.0012667295155050706 -1992-02-08,0.20974871641637374,10.590307519517236,-1.8343198775485487,1.6137305447135304,5.860552736459958,2.874117054385531,0.0,0.0026735427624308417,2.281295080524663,0.029018973216355146,0.0012316677596259239 -1992-02-09,0.02342354808413324,10.843088336013592,-3.5753284785262305,1.4766867835897832,6.099229086197561,1.1643296725655243,0.0,0.0002818805511116372,2.242082946149747,0.026391616381206386,0.0008446783012063451 -1992-02-10,1.1969133241913328,9.40247539307886,-4.27878288443965,1.2701086448822745,5.6419949293658975,11.56812173774523,0.0,0.016821124485982164,2.0300026671537936,0.03759138592395003,0.003111110572471976 -1992-02-11,0.15177076506574586,9.253654854620624,-5.332310597251527,1.3128684760217035,5.651392191593643,4.590496702259667,0.0,0.0024302597342105436,2.9158567414350367,0.035735782950992265,0.00239522970678121 -1992-02-12,0.030574410071542088,9.298104232034493,-6.575772044314525,1.2972762008784693,5.714519683261855,2.0732793020215334,0.0,0.0004557422129573413,2.771549495083805,0.03264284580321902,0.0016285754478342252 -1992-02-13,0.058014833236180674,10.526849765805741,-4.991941626586988,1.2515759140162543,6.062510840047768,1.620396688639747,0.0,0.0007931206187634099,2.5288347501066504,0.030135045745059593,0.0011808904043209697 -1992-02-14,0.07822300229461315,10.65663932209118,-2.284055133443468,1.5177072786909092,5.915578383953094,1.4614349553360448,0.0,0.0009853905810096042,2.3193472607196646,0.027930069849505638,0.0009187444243104895 -1992-02-15,0.5239420218110397,10.28846067851413,-2.1183185686404618,1.410889289372946,5.763204097282828,5.07989313417804,0.0,0.006767579592234285,2.155759071987261,0.031216702959723636,0.0016285234083233317 -1992-02-16,0.00101444671518969,10.841259551069424,-0.8346025915969426,1.5445319724878446,5.822990409600552,1.4658138836513441,0.0,1.3097305987644185e-5,2.4162073696489537,0.028158997137343694,0.0010620864565389296 -1992-02-17,0.0923581867806995,11.124170212597814,-0.9023863784184082,1.405707624189663,5.935122081169582,1.4389164755733634,0.0,0.0010963534443419881,2.1772302124402234,0.026439167809903123,0.0008583043732655796 -1992-02-18,1.5242065542668952,8.361964355712646,-1.8761962836495107,1.266105262051325,5.027403903124342,15.551600886621092,0.0,0.022850662471640915,2.0400019127424933,0.04152061483971567,0.004038066736492746 -1992-02-19,0.04213458011298939,9.993073415003007,-4.245563595141565,1.4235404801749014,5.82221976712992,4.442431903956438,0.0,0.0007401249188119935,3.257769080377498,0.038441642839807694,0.00274128660893409 -1992-02-20,0.3838618309455909,11.096500927748881,-2.6571193789854224,1.0845690145588085,6.091990679142119,6.178301569800164,0.0,0.006503319117052597,2.971596452698237,0.039088816576098945,0.002774675149814416 -1992-02-21,0.07518189953148065,10.99840686051025,-1.0548569466665545,1.0614880131630056,5.895087499992358,2.993507349554392,0.0,0.0012249836356730964,3.006121879307443,0.035895102261703477,0.0019927049677788754 -1992-02-22,0.051739996554704834,11.054166487109663,-0.3141443111568796,0.9779894932436012,5.822559349742912,1.9035702422304877,0.0,0.0007740613863432694,2.771081832012985,0.03288396259364821,0.001415019558023114 -1992-02-23,0.4741362905197222,11.527127028278244,-0.5349446420470455,0.7638104301406033,6.027394113047676,5.57786315164119,0.0,0.007048517409218802,2.5422984797615844,0.0351394222434651,0.001994352128315851 -1992-02-24,2.1132267965091205,8.782031965674031,-0.3940891163174206,0.7943860402985635,4.960916652166657,29.591094932044147,0.0,0.042678886135556926,2.705984011627178,0.05614054218436799,0.007796720402198023 -1992-02-25,2.695863693036905,5.943707410508655,-1.8350480547096972,0.5883337758969227,4.1212546356662525,62.36414011490555,0.0,0.08385978293718521,4.409012729616578,0.08276699866444573,0.01784418933279843 -1992-02-26,6.267609670300282,4.555510829815763,-4.764648293617922,0.813162044952504,4.018646670979724,235.12993818293853,0.0,0.33441432792365955,6.599262628697754,0.14989034840792242,0.062535250244458 -1992-02-27,0.03274368806685227,5.467273280485934,-7.4550191060122595,1.0429831940848544,4.491896539243492,61.9046951165398,0.0,0.0021638503682170074,11.958873306434143,0.13969421686263928,0.04103698693709206 -1992-02-28,0.021850600635722545,8.680488194736537,-5.490256900340724,1.2205180052643716,5.425801223122172,29.22881855051452,0.0,0.0013292447017393579,11.048524063878908,0.1289623676143542,0.026915546900180127 -1992-02-29,0.1481096599473517,10.126665008228038,-3.731787496352858,1.375784513595364,5.8060303152028885,23.06032792975515,0.0,0.00819754426948549,10.022152038563352,0.11847666114695392,0.01876895321710608 -1992-03-01,0.3063328983963709,11.893369976001678,-2.1857216023513857,1.621853370030676,6.310482485788061,22.874836685513216,0.0,0.015567394368278364,9.142634695253125,0.11007407330976476,0.014588072170264433 -1992-03-02,0.23413527747654025,12.690055825667956,-1.7077814894146108,1.4506200894249244,6.557660155833957,17.550593251336622,0.0,0.010890298058177622,8.413611533447558,0.10074039380447192,0.011154358103111743 -1992-03-03,0.42024715273488095,13.567707058571436,-0.5460543211104273,1.3932231953121952,6.773363168692523,19.726615530262496,0.0,0.018005165459335115,7.665325495289904,0.09419144552980288,0.010002515298367019 -1992-03-04,0.4362505529935576,13.956455875510585,-0.2739118278079836,1.4750271620032704,6.890107514216877,18.993891107003744,0.0,0.017428250739341677,7.138316658942718,0.08823857826930993,0.009164875980319481 -1992-03-05,1.2439379222574392,14.366871032003806,0.5397864851931172,1.3638826783576352,6.9567800904665695,39.248876894913735,0.0,0.049273595458999786,6.673144033466939,0.09222864307202402,0.013468536332113357 -1992-03-06,0.9122263575567642,14.483861171895814,1.1416854468807134,1.516913991679432,6.927265266830342,35.73047746583713,0.0,0.03677264632908006,6.964944558361883,0.0917637064873756,0.014366562769918044 -1992-03-07,0.17300891379871308,14.203476235436066,0.3771974279308136,1.5674743189338896,6.904252864745944,16.01459745382045,0.0,0.006588485252540743,6.9339410923596105,0.08279115450797715,0.010355151344906612 -1992-03-08,0.07116202617916069,14.75744850214268,0.08768366792432954,1.7949580951544917,7.14532890570767,8.885709209827679,0.0,0.0024244212494796274,6.260483168181171,0.07375937851282802,0.0071098707841687455 -1992-03-09,0.0190991062529066,14.334597101752346,0.4764586511200306,1.4232005593248085,6.936361488746818,5.184332456966743,0.0,0.000573449948713927,5.5528162150029035,0.06490904000558946,0.0047155079427258296 -1992-03-10,0.2663038274621347,14.851686093346279,0.4812982003166431,1.4834164442722149,7.132590155062985,7.841710872377316,0.0,0.0072337464342441815,4.90783312135376,0.06027519135545573,0.004171018799216546 -1992-03-11,0.06921659455771069,14.775823566157902,-1.3375019925510598,1.6326414849883522,7.267765707213574,4.251137641720227,0.0,0.0017038363216192037,4.540689214091914,0.0537022806886803,0.0029745714508231822 -1992-03-12,0.16168173244895315,14.209623497458251,-1.4828010069043893,1.6285560887089026,7.0642052037586085,4.4034006399728,0.0,0.0035754555167661073,4.035669870235769,0.04889630358466812,0.0024807221315803554 -1992-03-13,0.14516328139324178,15.530921397141984,1.0524838954939308,1.8270550700965935,7.322833747114783,3.7462696627702257,0.0,0.002930470554153547,3.689650128166282,0.04467297915772512,0.002061040946873212 -1992-03-14,0.16073654676489785,16.389727142656355,1.9603257588928134,1.7044656099720674,7.553642835238705,3.461381568162003,0.0,0.002959277641101432,3.3544362955388247,0.040949383020456476,0.0017922345251939799 -1992-03-15,1.4292524419166406,16.162963020543128,2.38824366011872,1.6040780645213286,7.403603415755638,20.273188089854447,0.0,0.028963812313118176,3.061330792998506,0.05231225351390342,0.005576828742447015 -1992-03-16,2.4318847290306937,15.437309909187794,0.5228009340619473,1.8223690497495724,7.33101240142263,49.32651803884428,0.0,0.06735858901018155,3.9209417602531493,0.074006126254007,0.013886593652819568 -1992-03-17,0.28437710624554835,15.10633639325648,0.9066340331041992,1.6313788442149977,7.156406076982108,18.788378871256132,0.0,0.008743222821238628,5.551087802884216,0.0679792142197431,0.010370804634586964 -1992-03-18,1.0932720277093106,14.961497591060722,1.9220698885361298,1.6802210900864183,6.969456733164519,29.412230544636078,0.0,0.0334392552092484,5.117470224566707,0.07235094111705379,0.011842526986670102 -1992-03-19,0.3008941632194755,15.162858913818894,0.9131652840694856,1.6425927177408493,7.169469189866137,15.667361320327737,0.0,0.009123500421664543,5.465780131083406,0.06717785014431044,0.009098116188490555 -1992-03-20,0.17358871566225156,16.079384359775624,1.4545181685376487,1.651863752370559,7.463812889162485,9.748480580811156,0.0,0.004812103673196316,5.055975504532766,0.06092088152982422,0.006655159899783895 -1992-03-21,0.477877409312605,16.191160727422112,2.5892466304568007,1.833311472444069,7.362624592384849,12.727425043538455,0.0,0.012346592974535608,4.5595618002666685,0.05868275526962093,0.006212147476489232 -1992-03-22,1.1914543000524154,17.36705288193732,3.134327196291067,1.7426029940968453,7.765226615829712,25.73990016740931,0.0,0.03207829080626934,4.40109169947188,0.06514937343563336,0.008928209698012807 -1992-03-23,1.5310393932940882,17.813311625088254,4.188815442070815,1.8025784773411595,7.796164473624144,38.03552628509158,0.0,0.046392903038342315,4.846484240437856,0.07429383126109679,0.012875849728680082 -1992-03-24,0.7739621529323579,16.89483049469373,4.3365757852473665,1.8937463561513623,7.380408484506978,27.36421684792097,0.0,0.024714208871281063,5.521670100595623,0.07333985214129674,0.012144676407397982 -1992-03-25,0.06400096062249856,17.79985916027691,5.0779080409022175,1.9515878596660199,7.63905421992177,10.80352809904835,0.0,0.0019094959218067392,5.495887278280873,0.06476893264132517,0.008196362504140462 -1992-03-26,0.3159730508657714,18.554124221121906,3.901800458994792,1.6851257372279982,8.134219964410244,11.117952544946323,0.0,0.008491685810833871,4.830269588029022,0.059950241535832664,0.006628431371918268 -1992-03-27,0.2955714264015487,18.726769461934346,3.5057705156024404,1.4777953933096442,8.253796666639964,9.577209954641255,0.0,0.007276554317623141,4.427962859865441,0.055025975499924745,0.005422760176856823 -1992-03-28,0.11637673615716712,18.3189411800094,4.5587434328284235,1.1459738445999799,7.930598420798139,5.670948294488123,0.0,0.002571640705972461,4.055275424697733,0.048596922491870524,0.003921532293249324 -1992-03-29,1.7388293579478609,17.895374178719077,5.9104369200449876,1.6203004104447642,7.514387697326451,30.079664187888607,0.0,0.04185619753983949,3.605306476990551,0.06225556324986298,0.008925957619981668 -1992-03-30,0.7775358534707635,18.769016468094836,5.258699821786544,1.8582893904605415,8.003333940687204,22.05599293744337,0.0,0.021131503208903224,4.654626075482123,0.06328100763092251,0.009027962425837362 -1992-03-31,0.9486191409348752,18.99623086763709,5.831290621192768,1.7024151661529217,8.00161026085327,24.528340558976208,0.0,0.02638748034082017,4.68562152111339,0.06563508801702042,0.009894662924109433 -1992-04-01,0.9304661648143772,18.106713354225615,5.299402875488305,1.408634879938786,7.70197968022945,25.536179276603733,0.0,0.026724798997193377,4.859705241014784,0.06745157558056336,0.010510205962138372 -1992-04-02,0.0480073393554215,16.91335811599163,1.038484355508852,1.6928890242049155,7.777665133654308,9.369593883050097,0.0,0.0013057950477651167,5.02364350126941,0.05908129760204319,0.007040476687956238 -1992-04-03,0.1653649195676235,15.874468324592149,0.8248615510473115,1.4634937636515737,7.3913179689848105,7.387879491454669,0.0,0.003982385257157717,4.394876637602444,0.053123725793232296,0.005189396407878191 -1992-04-04,0.00865239561808968,17.174250403016153,2.1681077523665016,1.4963063057775492,7.7490557164785425,3.744037499046369,0.0,0.00018523887396311098,3.9826222371710185,0.04649564644758688,0.003406258514957105 -1992-04-05,0.22353639806242664,16.61288136188288,2.658363593603949,1.369120755665696,7.458530875647182,5.045249704851717,0.0,0.004283971347125326,3.4620357750371396,0.04293441982411347,0.0028696121229814593 -1992-04-06,0.19376644011905755,17.182614669127155,3.4380762761852357,1.2399805054926605,7.579784289437217,4.3649340418376275,0.0,0.003438880786534676,3.21551836372443,0.039715859083308824,0.0023916030219735263 -1992-04-07,0.331864150971585,16.70672459915958,4.491153057167397,1.301834152231338,7.214888309739479,5.413346943737698,0.0,0.005568702189405139,2.96770629221719,0.03843776108390862,0.0024047383356790557 -1992-04-08,0.003782163889047796,17.295215014618154,5.031420694812169,1.238819450197331,7.368463448519929,1.943255292835555,0.0,5.8580628332594205e-5,2.8928616466513923,0.03374393868892045,0.0015742913998894178 -1992-04-09,0.0,18.968713971525354,6.0327899799858535,1.5402645326404942,7.912515288555934,1.054176910039329,0.0,0.0,2.5323658212666036,0.029500346815093836,0.0010247897096322162 -1992-04-10,0.0076209255385027,20.1845541078192,6.5256040548205885,1.705444054976117,8.355008532124899,0.7273400768204294,0.0,8.928152025623574e-5,2.190707616746736,0.02560903873615611,0.0006806843662521671 -1992-04-11,0.2767624089967524,20.788057790432305,6.869176561697084,1.5418443080196929,8.557353980357034,2.4006313772301597,0.0,0.0029884981860555104,1.8854138826216187,0.025187889499397976,0.0008981365276077864 -1992-04-12,0.6510133502035684,20.094456092908235,7.09542032938802,1.4566713832540927,8.203911074263019,5.690539937634959,0.0,0.007550145456833857,1.846987081347218,0.029100013298293568,0.0017342658497231322 -1992-04-13,0.5042571913008699,20.571857810043703,8.008362599078957,1.139628845572982,8.239137396160121,5.804931756425395,0.0,0.006467165970420408,2.1486075336372656,0.03090407743698748,0.0021136471148854486 -1992-04-14,1.649346073746894,19.8991720639182,8.046842991312971,0.9540863590861044,7.9189215856467055,19.701014178738436,0.0,0.027424851961581176,2.2800826179475857,0.045775183117970124,0.0055517237836540684 -1992-04-15,1.8795764721388784,18.10558224069026,7.546405289203488,0.4878165750719735,7.200501506698105,33.86907979177435,0.0,0.04383194772879717,3.3970662200279613,0.0614693138451833,0.010287972814886064 -1992-04-16,8.099277330437125,17.065796914147572,5.883725207062667,0.8927276792754616,7.078884579163635,260.2885480219987,0.0,0.3841152257641509,4.624337404881116,0.14822149480985675,0.06518420435160882 -1992-04-17,3.9441075842215976,16.875825355048942,4.760641084836248,1.0200938829075583,7.199000603074874,252.26596034943137,0.0,0.2867974572837215,11.145975347055488,0.17578924664152457,0.08610100305108435 -1992-04-18,0.12333278222500453,17.912534952750896,3.3941684151375173,1.4235952997269437,7.830906412322591,80.32573144346038,0.0,0.009049159399074677,13.174300310052194,0.1549084199240371,0.0574255744391341 -1992-04-19,0.4962664884419404,18.49783404268567,4.339395269255356,1.3977881068547413,7.936769053766072,60.24923867905298,0.0,0.0320670018152292,11.471638219155299,0.13941798477896272,0.042264024703971385 -1992-04-20,0.4227384935431247,18.886621288559123,5.7033449319435405,1.6339066140281795,7.883886743655568,45.45108105954652,0.0,0.024415943274557705,10.308595037328097,0.12501276801738104,0.031229581728766657 -1992-04-21,0.3228768531506779,20.666993027443255,6.33002693011986,1.5194352340944206,8.54567854277973,32.762663211586464,0.0,0.01663410308680985,9.258334693011689,0.1116146257965209,0.022861777842497065 -1992-04-22,0.5282344542058031,21.366321724691087,7.190816429967383,1.419470176857071,8.70441855449041,31.81078871805226,0.0,0.024255705731938804,8.160544350158576,0.10121838873981563,0.01857523239452687 -1992-04-23,2.2531889211304463,20.712820099958,8.090323695254039,1.3659026359152036,8.240775705191773,81.85319656526043,0.0,0.1045118609679907,7.37964578550353,0.11221600065508773,0.02800507801915586 -1992-04-24,3.4455964622382798,20.266775153876267,8.259895564251773,1.0554065587700387,7.998467269409516,147.5193199978727,0.0,0.18846269376201974,8.255081138813445,0.13630496996282382,0.0469262188006381 -1992-04-25,3.2850282756915385,19.723236956153052,7.027247482311933,0.999836176796714,7.992681230899499,180.53108707734643,0.0,0.2121358574670973,10.06707412205105,0.15554295044427707,0.06284758104901388 -1992-04-26,2.184336006965065,19.40259555251966,6.7223360265242995,1.1298674301775085,7.903369734840677,153.31545669014136,0.0,0.15189622799113067,11.480680055727506,0.15918818272536572,0.06403926607236421 -1992-04-27,3.4206627119569357,19.767990840521676,7.083603628821797,1.371360440998674,7.993482446913822,218.66904324635965,0.0,0.2558991105933006,11.769332377732168,0.17695315562317593,0.08065097230437368 -1992-04-28,0.8694221116763761,20.550841164473763,7.56524047221808,1.2330073074649854,8.247264890964653,110.57839056243392,0.0,0.06504693312965348,13.049501243997915,0.16214603073410877,0.062404348869422914 -1992-04-29,0.26145750199636064,20.91840470913622,6.089912395684812,1.2733906721760355,8.655348133132858,56.93259703415417,0.0,0.017366406696431747,11.903062149958306,0.14170841572652362,0.043266590079755696 -1992-04-30,0.37919786836381386,20.76240741313795,6.7504735974877095,1.6022313581524716,8.477100030654883,43.83892588302703,0.0,0.02188979756294851,10.32510067345689,0.1246978287039395,0.03149756166496645 -1992-05-01,0.5035464284065421,20.51647482472345,7.651889182580424,1.7468440816696684,8.202794934911214,38.74093064832901,0.0,0.025820032415601935,9.125091663822117,0.11216711293935315,0.02443491362820337 -1992-05-02,0.8369307055904038,20.767578763409613,8.857899799602691,1.933320392690696,8.068756663913518,43.3852908453782,0.0,0.03961319360291182,8.257821504454123,0.10594770397724804,0.021937674255245784 -1992-05-03,1.3360497463366623,20.563329097390653,8.606632944618061,1.7838804557727954,8.024195084268438,57.10298737270056,0.0,0.061848596193900374,7.82281396645556,0.10669455956580903,0.02369775731755668 -1992-05-04,1.275665803248592,21.177222578732078,9.316298897095843,1.928910254587641,8.151277049390004,57.92363555012372,0.0,0.05928049102685473,7.884791900246008,0.10671312847798803,0.02445245671740475 -1992-05-05,0.6400377708183075,20.293287671317845,9.053299585525107,1.9068048800833548,7.79353405704185,38.28429695489174,0.0,0.028534020625875844,7.866053747644317,0.09909020558098813,0.020262126225519615 -1992-05-06,0.9848436189926532,21.245545398337207,8.866189616924117,1.5759415322698789,8.271366496722194,42.6058190678633,0.0,0.0420622616398435,7.3586920987111055,0.09719654059036158,0.019594292565346217 -1992-05-07,0.5044318633647508,20.791195609274432,9.058658565789113,1.8763282062148388,8.016459578603726,28.58849604346212,0.0,0.020280154353474633,7.149806610917571,0.08916669451960316,0.015842916623473362 -1992-05-08,1.238061561798828,21.206774694559428,7.917902174713803,1.814232192774616,8.433097827523818,43.35654259924587,0.0,0.04848005772923969,6.594656912749447,0.09124586565008784,0.017694799080758224 -1992-05-09,0.5501767869994436,24.021974372590837,8.354429242002965,1.6914783244875893,9.612352604858355,28.013651458803537,0.0,0.020788147661403356,6.691736702952228,0.08436338769239347,0.014683785126821123 -1992-05-10,0.7136870916522636,23.16219399115107,10.276465381450073,1.6519104613321842,8.849493374925396,27.136057421981064,0.0,0.024719837425261626,6.041790989497942,0.07869674461015198,0.013322414409117186 -1992-05-11,1.4605984305315565,21.909578090344173,9.354129494434423,1.4274658237733624,8.456320110790386,43.56741409875697,0.0,0.051058318763441024,5.725787876199392,0.08371653361273397,0.016446648933433967 -1992-05-12,0.8057289668320093,23.082592436554748,10.101306539708164,1.3940624577199106,8.841512285774623,32.43119385309695,0.0,0.02854386170289569,6.1384067074095805,0.08089447780444736,0.015052220080477114 -1992-05-13,1.631233387442171,23.536088476026354,9.72099286431253,1.6373493616676933,9.126733546578178,50.39080011991441,0.0,0.059243347879015085,5.88614306296507,0.08757234462898936,0.018818962723348844 -1992-05-14,3.050479651556502,24.519449801574197,10.361077934945703,1.4760002709214004,9.453168908989236,101.05030844971586,0.0,0.1304563584383973,6.333520212901895,0.10931724326300324,0.0321141680208946 -1992-05-15,9.586855160933403,21.16507353342809,10.966942190255448,1.4997251886546192,7.7067390940991585,467.64247893293697,0.0,0.6718632898068009,7.84627553267406,0.20308416628252013,0.12320592519751714 -1992-05-16,4.034457552521291,20.182063327147286,10.547235955487373,1.7186116629332315,7.332658643917447,372.7070438743002,0.0,0.38719510635229604,15.048143227229902,0.22229937570989453,0.13915744152697548 -1992-05-17,1.8885162411371628,20.70365825592566,11.215679091824443,1.5334259098296628,7.4040594323439235,237.88481998159594,0.0,0.1864462692771074,16.58490505032957,0.21520284722806388,0.11897415286706013 -1992-05-18,2.4876858204564205,19.418129628743085,10.690849728286684,1.1829891367547762,6.907850001813924,248.21433663095203,0.0,0.24190470470682657,16.036788129688574,0.21579757612710104,0.11428014663512649 -1992-05-19,11.724251401279096,18.267538776223432,10.107065408944553,1.2352073589487986,6.500862832928915,1062.204003301675,0.0,1.489200450029431,16.243265874201636,0.3258026357231228,0.3011437724848566 -1992-05-20,1.8188416625221857,17.986809859619196,9.39134552515118,1.342365766420323,6.565389547641972,459.82788201592206,0.0,0.269850907826122,24.615848922075394,0.3079462428557334,0.23711922930305154 -1992-05-21,0.05583125842614678,19.643622792752424,9.574813866038133,1.3831752491527676,7.310665099988857,181.6344598366206,0.0,0.007486212942162784,23.25410953847104,0.2715450240138812,0.155493360185355 -1992-05-22,0.04193261702351271,21.119491570730176,10.182108132479364,1.2276475620049574,7.861386893451794,106.44996608836207,0.0,0.004831158141137229,20.22531337019797,0.23609969009564657,0.10195448448950684 -1992-05-23,1.83318475786152,20.25346985195495,10.429601646234698,0.9380764984075216,7.378869126618164,190.79404235672382,0.0,0.18983446757164968,17.41423640990478,0.22421942160840222,0.0952726796182025 -1992-05-24,4.614330881180363,17.88446747069339,9.242803042433868,0.7777768291983886,6.5470299484095476,397.87244528210994,0.0,0.49722585763683647,16.71108251160169,0.24842662374413957,0.1377280188638381 -1992-05-25,0.4428559414532785,20.808549916632334,9.922060321853074,0.8342756397963238,7.7677255301265715,150.53358849138243,0.0,0.04774363312112656,18.812485193063957,0.22431168385738473,0.09692414051378433 -1992-05-26,3.239392537018244,21.55068235212652,11.795488584987595,1.4878747611788643,7.640366443067945,285.70200646012955,0.0,0.33303967980902494,16.585357222721687,0.23094490871870182,0.11380327122270578 -1992-05-27,14.547577256810467,20.99941247947561,11.022042358692307,1.3658255885843529,7.575865309385107,1439.3587596096265,0.0,2.0598469382485334,17.11560112550977,0.36885458479274386,0.387722706888021 -1992-05-28,2.888114437844369,20.098040534131936,11.0336531680109,1.4427581807597143,7.123577947259292,691.5014012471944,0.0,0.48699191466717595,27.18679263390138,0.35035229965489756,0.3265409724639824 -1992-05-29,0.18786577351112416,22.197118901770505,11.83095853546104,1.5657048709907555,7.946041389909342,268.86007725016213,0.0,0.028678236974571003,26.09803247761148,0.3062129129378847,0.21692951088587112 -1992-05-30,0.3175809075137169,24.055435559287986,12.02677222183067,1.9638146752615,8.809307004054881,172.618767649469,0.0,0.04127938574145229,22.469492891117085,0.2654539775870618,0.14749631219134904 -1992-05-31,0.6612353272353259,24.30289983679021,12.539749443226619,1.9895028367735577,8.801276759177894,146.50047521458617,0.0,0.07315677395148634,19.167694140810013,0.23099359948982187,0.10715236647513082 -1992-06-01,0.15346528642668014,23.54704022567403,11.584889708695805,1.8307275528085167,8.663256110849595,83.64949447680291,0.0,0.014469517288158845,16.711711261285537,0.19646788512034585,0.07195435217663772 -1992-06-02,1.0002870651880154,23.79470233760813,12.043206200591015,1.2029510883934615,8.66984811298032,101.85192537387283,0.0,0.08240818005565864,14.27836089344753,0.17798590150771995,0.059386764226299286 -1992-06-03,0.2474093209375243,24.593540337698194,12.5287674855921,1.1210064022637285,8.940097906522357,55.225018656453585,0.0,0.0179116131177319,12.944220311192682,0.15367355140240613,0.04138530003543426 -1992-06-04,1.2409437188622163,24.13561638589236,13.007278542970235,0.928999374942992,8.58624721035002,80.85996690755373,0.0,0.0803775398804063,11.12585822723982,0.14406486746101888,0.039178553062882815 -1992-06-05,3.9310143544719267,22.736904862863245,12.411973542003956,1.131552856796168,8.041687253810593,207.45577317831103,0.0,0.2712367186941904,10.510614543767117,0.1682351963113473,0.06680319400164354 -1992-06-06,2.7874468175644225,23.234361200284788,11.767776116249294,1.0292453097057546,8.454912257912385,199.11141692106233,0.0,0.21358901053838508,12.398829595016618,0.17690983555327924,0.07600782170929177 -1992-06-07,11.041994056031273,22.507810259489737,11.513916216153074,0.2735250834075277,8.16185296375607,816.7737932836585,0.0,1.1537185257179043,12.923677439682207,0.2791838425723741,0.2251482087702535 -1992-06-08,0.03460537910806254,21.797028795925463,11.7769128236467,0.43766258980259465,7.74007106646379,217.1427587359887,0.0,0.004027921034002888,20.42162180667617,0.23830119307452693,0.1471742124247619 -1992-06-09,0.15133095895313345,22.930560263229623,12.897754695711038,1.3339389349157094,7.995569004302746,111.12507799170493,0.0,0.015089665259511081,17.618912696109458,0.20701130397932235,0.09810111955305442 -1992-06-10,3.4301217007306217,22.45123712723764,12.808433102866775,1.312821544081466,7.774530843660055,278.72131129952805,0.0,0.3270291423232141,15.246168634233161,0.21756613419511664,0.11365423613451278 -1992-06-11,3.432516229283411,22.065969334625105,13.238467838365128,1.5347518779775415,7.441752997208199,318.1721282161093,0.0,0.34463335571538734,16.089042660919723,0.22741294041957524,0.12645908558522087 -1992-06-12,5.519967414065872,21.54426517912617,12.648597602996306,1.4747446783407974,7.351851233356361,507.06384363438804,0.0,0.6173515558356764,16.925096828102614,0.2614697978745634,0.1763198155321756 -1992-06-13,1.7340621224682995,22.795406252399765,13.395529085609374,1.6099208883922012,7.772210952168771,283.34797007243384,0.0,0.20073194469590772,19.467096842071278,0.246979143804361,0.14534031683494816 -1992-06-14,4.093131164423412,23.16428232441769,12.825633923370821,1.6418075277047348,8.126790340688261,417.9591029779086,0.0,0.47277035921233423,18.241300369526886,0.26018100174798436,0.16659598660142816 -1992-06-15,1.4196627940615099,23.862727155136987,13.56837060490135,1.254283263798876,8.27119376396246,241.11403006562958,0.0,0.1594559106082809,19.063527807120757,0.2386152986033891,0.13272567526814102 -1992-06-16,1.7973135481718667,24.063600457291628,14.09177835901377,1.2961295335809229,8.219988116800813,219.5330890353292,0.0,0.18630112387460218,17.44890653804733,0.22420542982179095,0.11476527479383616 -1992-06-17,5.430533991708753,22.30279525333864,14.279098595650115,1.0674887383221685,7.215048620584161,471.29812306457507,0.0,0.5892539402557055,16.42364986321217,0.25458644152705057,0.16442941726330432 -1992-06-18,9.775364881182547,23.431062251989974,14.629447628104673,1.3610110342846036,7.710405137198986,1024.7437364331997,0.0,1.3511503376394742,19.01367246927486,0.3353727882357847,0.31276842164862906 -1992-06-19,9.854062155710027,21.230859669235336,14.417345673302055,1.003030355692365,6.560885281798153,1413.9899382242024,0.0,1.7287808199730126,24.69394580667131,0.4024608956975712,0.4668299611689163 -1992-06-20,5.061420183805325,21.553949290809893,14.228180185770034,0.8260591605898571,6.814982926387048,1060.800032155499,0.0,0.9956719985027718,30.255623988297373,0.41141964672383413,0.45549013435809277 -1992-06-21,5.410859424682895,22.986629539721637,14.150983988948074,1.2052442737958349,7.625646501708045,1074.0396402256833,0.0,1.0893947530311738,30.746867207994633,0.4212130280513075,0.4623791140015013 -1992-06-22,6.140224109497406,22.44627449702171,14.163649253907158,1.5556473722081314,7.328807249480701,1191.7010546411886,0.0,1.2591620247262822,30.914828713329676,0.4316662704673019,0.49271309102254623 -1992-06-23,8.32887640469008,21.36275885708639,14.69234826584358,1.4976634907748132,6.525801977470019,1593.795996258761,0.0,1.8290588948089965,31.86585383008876,0.4682413860221971,0.599234301814601 -1992-06-24,2.5101908037663527,21.92520824154913,13.74336206989092,1.5491816444817117,7.18780590338505,865.6239344414449,0.0,0.5564422374162135,35.09350104051525,0.4380575435105887,0.4747999173311878 -1992-06-25,0.3483137939535312,18.90830299847823,13.163592700164552,1.0771183339296997,5.718490048500827,394.3634001684081,0.0,0.06804154736967555,32.42373805390632,0.38177220970015635,0.31943276133837323 -1992-06-26,1.7202817561411197,20.0318847075175,13.131212552747467,1.1797974245088834,6.368110018210873,415.4144241647215,0.0,0.30691438573632035,29.242788329914028,0.3606987972779627,0.25466796350775955 -1992-06-27,2.9011539716722394,21.355600709048566,13.511101594545375,0.8592792528971899,6.957458289165056,504.93757172783205,0.0,0.491177507496551,27.28374661441473,0.35163364960569343,0.24056590643761103 -1992-06-28,1.9228473467166216,22.51722488023628,14.048799545978193,1.1095879428039856,7.40281593824106,386.8402683829235,0.0,0.3066967600041819,26.283466561985907,0.3285844547791059,0.20329621097688205 -1992-06-29,10.703354246981588,22.74745694500373,14.625262684665019,1.0646185329190594,7.330658825192503,1383.663386238643,0.0,1.8847970357335537,24.360278899170655,0.4084675798899167,0.41932447086296526 -1992-06-30,13.56638698126641,21.399239113308234,14.324131249036435,1.2082769130236466,6.686999617886332,2393.7200682988546,0.0,3.076788933231933,30.195342077336537,0.5097945066290814,0.7414470901845424 -1992-07-01,7.6285635362292945,21.570416801371284,14.500251628242587,1.481157109726003,6.717078664249829,1975.256239077697,0.0,1.9986472123768744,37.96731957092756,0.5311611591443904,0.786970771416803 -1992-07-02,3.2817747721468047,22.06392422463666,14.680611422382643,1.488583247740897,6.928688425086104,1192.8775868505275,0.0,0.8424831941662285,39.4701178867418,0.4980305964673266,0.640561496722046 -1992-07-03,1.0717297671866612,22.878552121628672,15.047360257274747,1.806280616717268,7.252264893965168,636.4893269681821,0.0,0.24613121726214704,36.92395301347214,0.4426239724500367,0.4544525418535756 -1992-07-04,0.7039962133938542,22.669828230184393,14.68420684904953,1.7897361963440377,7.2665253547572535,405.79944326557484,0.0,0.1397574336441747,32.70627257048242,0.3892070047829356,0.3171073793595495 -1992-07-05,1.0729314408557054,23.144522334349645,14.913518403605645,1.549580680888509,7.448651783592656,337.5653342939428,0.0,0.18623244027901098,28.84370320160802,0.34850853304113405,0.23477864012517236 -1992-07-06,3.944100248496759,23.11110044484972,14.499193638588322,1.3830229972559342,7.5729497372863035,584.0209950793947,0.0,0.6424418083402577,25.785599484508097,0.34633086794449863,0.2506511161159762 -1992-07-07,6.847079025135434,19.727495250531035,13.136276473196919,1.1341816669646745,6.195883907436055,966.4262475293563,0.0,1.17125150798495,25.560089134468583,0.3775215618433891,0.3415024407557413 -1992-07-08,13.653056250061807,19.29614127068685,12.584264722258375,0.6017677481801079,6.162823669948991,2219.1283836371185,0.0,2.9482622831584937,28.636231925343704,0.49264156752594607,0.671218525046692 -1992-07-09,2.648415392711194,18.435604987086503,11.646525472850636,0.5340323865555635,6.033334436372799,1023.6217420313709,0.0,0.6280277062685835,37.158547787535156,0.4637241624456862,0.5325582085480906 -1992-07-10,0.8840303186628395,19.731614121282426,12.232862667337685,0.9222566038290048,6.522985537157849,521.4796603468027,0.0,0.19110248088637705,35.137132454501014,0.4196221515735772,0.37576853936459675 -1992-07-11,8.627423967639087,19.507264696043347,13.345123173378889,1.3199410675138346,5.9912976483952525,1490.1032090580115,0.0,1.8840031716683097,31.541699938062504,0.4679430896299079,0.5314749729123969 -1992-07-12,6.784545072395478,20.648104666079703,13.609125374487078,0.9344712679119591,6.535363391911031,1520.6159994859468,0.0,1.6292194330264067,35.48033217466383,0.49235719674260825,0.5940379548696464 -1992-07-13,14.4253504043975,20.70183284173007,12.857594396139936,0.8584880621366051,6.830799228038712,3130.0442304671396,0.0,4.0418585817853785,36.83583196068557,0.5971580587694711,1.0021234675219604 -1992-07-14,21.244175115871048,19.58258755944525,12.513593534422677,0.8435741847477083,6.3479432519379655,6058.719384153521,0.0,7.905231226339932,44.01490858947881,0.7602241295375551,1.8560235142429902 -1992-07-15,4.600824795346074,18.715029595942426,12.120280775692404,0.9634639525489976,6.017797645524058,2887.3416809046366,0.0,1.8401203572476232,55.58303647115853,0.7011012252350496,1.4883695828063825 -1992-07-16,3.0792186236293833,20.377888058592607,12.049762960378914,0.6741525324242331,6.925515305945621,1836.3785755204221,0.0,1.10862715421916,52.10600525253277,0.6428704848816504,1.1376635068047405 -1992-07-17,5.145443971948325,20.541832329366496,12.119563629158312,0.6479222931110538,6.989406583074372,1907.8397050607718,0.0,1.672233878929113,47.06213119708594,0.6081828940067061,0.9951877844053927 -1992-07-18,2.4404745604220968,20.959450791780952,12.560897393501818,1.0235968343805093,7.068388519851861,1218.3807165164962,0.0,0.7163279800908602,44.61577645667205,0.5481734562852657,0.7568919909680245 -1992-07-19,2.732238512244981,22.05382262045372,13.813879965681574,1.1480117574096798,7.240188538502415,1008.5811275411189,0.0,0.7141036588686283,40.35862056918137,0.5019793257305157,0.6014339435770298 -1992-07-20,2.79438685829485,22.6440164185606,13.58278702449443,1.1268192422087038,7.631814425379349,867.6890034179281,0.0,0.6598628136063955,36.94939166891702,0.46298810402859064,0.4919790912728435 -1992-07-21,8.001692592189817,23.530960183664927,14.110741864678454,1.4907335702306503,7.936159128177576,1579.5546524451054,0.0,1.8638952142503182,33.880668062053815,0.4879011374893104,0.6040608467408022 -1992-07-22,15.690536019217577,21.33107682994713,14.460037311015055,1.0491020819480517,6.607765008834739,3313.301418024415,0.0,4.299722573177503,35.39721006791247,0.595137643588155,1.0479115011193663 -1992-07-23,3.7948804789140262,21.658550678039198,14.645075434381313,0.6860448382530043,6.725094054286264,1671.036435286604,0.0,1.118964859997798,44.100507567653985,0.5579488343870302,0.8525200655780929 -1992-07-24,9.538184116375934,22.76626929354841,14.638577821223958,1.3414191919017513,7.351939458647401,2485.9783258724215,0.0,2.8263655529081326,41.3658744150773,0.5929978079638641,0.9853064030398232 -1992-07-25,14.143935581948831,20.44134519010544,13.906862094443285,1.0915639073248171,6.317401078590394,3873.535559551833,0.0,4.687218159949339,43.200823956349105,0.6680276128358987,1.3550863672135742 -1992-07-26,13.50702082257748,21.82684428722694,14.146957955883925,1.2916833366796507,7.009406730023756,4566.263715527837,0.0,5.2035896428087725,49.47922461199596,0.733747102924952,1.6744209307555247 -1992-07-27,14.55510133987378,22.237074475215067,13.796335927237404,0.8757536907592997,7.35619191911077,5459.423409998488,0.0,6.193355497129851,52.981073914420456,0.7867507039603532,2.032999195840142 -1992-07-28,9.247505700193404,20.256818445127507,13.259954162043499,0.2968555100683635,6.463736781693888,4280.687446623595,0.0,3.939356693172403,55.79540720770922,0.7577058861453745,1.9232121774331767 -1992-07-29,5.7917970702970845,21.669238017564787,13.06487727229143,0.1258534442880667,7.29590126981025,3033.3881560657032,0.0,2.332454894662538,55.259106880654876,0.7112016853186144,1.6070714511620223 -1992-07-30,14.343926767306266,21.16720429026316,12.88649161519866,0.3970935969761596,7.089907643919372,5004.13624090715,0.0,5.821965621373915,51.1599869985068,0.7630762339348625,1.9326082549944013 -1992-07-31,6.862067747999919,20.71414806905032,13.122678958582958,1.210176617348552,6.7690553008155625,3413.202413957554,0.0,2.764334881802216,54.725621127044384,0.7174548661556222,1.678947964161743 -1992-08-01,3.8610580184090617,21.078996935141387,13.390270467913993,0.8771863114158791,6.876169054391206,2200.2427635720733,0.0,1.4086297802624594,52.238695457047186,0.653524135363456,1.3074009075800428 -1992-08-02,1.1909268261965722,21.8426105487937,12.616130950209662,0.7731011396803812,7.533422388762879,1191.7465211592773,0.0,0.37488829892701014,47.84174520797612,0.571197422635947,0.9081388246572001 -1992-08-03,4.1842313394763915,22.763678088953647,12.920967964036546,0.7036471792778767,7.91934434077644,1374.4933780618658,0.0,1.1548253516049423,41.524724091515864,0.5324783751407209,0.7669949121244333 -1992-08-04,15.387736247649164,21.713673335616132,12.726665154969988,0.5135543435530551,7.437367822220183,3558.9847568853825,0.0,4.577997981026433,38.50376570951801,0.6277995006770257,1.1963454615377647 -1992-08-05,3.1137535583127147,21.125132291702414,12.187834578811733,0.4749338763205305,7.2995942989968405,1666.4701482902885,0.0,0.9443203356783827,45.48051667749499,0.5660903385853261,0.9225513885963245 -1992-08-06,1.6200649159268714,21.675962953965172,12.925893080446455,1.1763754029725844,7.360101871514667,956.6045895826046,0.0,0.42933393394769226,41.39457325236522,0.5010914037118481,0.6659100279731122 -1992-08-07,1.6395529637518174,22.91562330285147,13.35490746942624,1.2874702247117646,7.878869389551587,711.070433361642,0.0,0.37830392126122026,36.787989101023754,0.4476548406404748,0.49107849106315304 -1992-08-08,0.8584607138333479,23.29996670346011,13.916090385183002,1.334333332806219,7.9109391472120025,455.15945091330724,0.0,0.1703441758579548,32.61585776732398,0.3899531403796669,0.3456064342295508 -1992-08-09,7.107084654495145,24.48413799637165,14.326840611670216,0.9673480959024848,8.413588082836348,1126.9727422890212,0.0,1.3628438319701974,28.500070787590598,0.41479924654610095,0.4324866516314807 -1992-08-10,13.028481587120506,23.257399215534807,14.251073679246838,0.7475481276578252,7.786558186771369,2258.938752562003,0.0,2.9046713069018963,29.936895130854325,0.5005175411771505,0.7238075999726103 -1992-08-11,0.257549960120239,23.85797884287858,13.919515562867884,0.8131070248285456,8.212564075936566,683.2977499486464,0.0,0.0574160858322893,36.39837369224976,0.4270166859350737,0.47990717588986365 -1992-08-12,3.949710102180703,25.18777629782173,14.21775817300847,0.8384497444707988,8.822850293648616,838.7037696818203,0.0,0.7800627039959527,30.928996519671614,0.40631331112023755,0.4311730862685324 -1992-08-13,6.369504027150287,23.71160161237401,14.216858536248198,0.6153770281935749,8.04948322737225,1130.7768703481527,0.0,1.230371045861367,29.0785306602944,0.412945597516419,0.4680155817958431 -1992-08-14,7.620844148297461,21.761176897409356,12.9601682360742,0.39246931176009225,7.414580841539452,1396.3043033006638,0.0,1.5564086815150482,30.045579687883162,0.4387883287320135,0.5416423613071499 -1992-08-15,1.9493364606350376,23.062773744392175,12.549990816423449,0.5801406099107168,8.209476282083564,703.4512971409691,0.0,0.39014090531672285,32.316376337916054,0.39917234821865655,0.4119884363319118 -1992-08-16,1.829954566876075,23.7143175348108,12.713047826083073,0.6517256984305843,8.497407656617293,509.6655070131096,0.0,0.3237915222173229,28.96845021702987,0.3587805580247635,0.31748715116379167 -1992-08-17,0.6398574036589985,23.67741254445533,13.334623657995955,1.011558059295471,8.309346960455338,291.65953347876837,0.0,0.09796327927929982,25.941321765126794,0.3096527356545672,0.22158556997470885 -1992-08-18,3.989785431697201,22.843314677759924,14.204992605367801,1.5167650741398877,7.600719364389146,521.8285185374041,0.0,0.5668796881493785,22.543781608158508,0.3090980865970547,0.23055759845841545 -1992-08-19,3.1780070085688,23.158235549209795,14.66639539910885,1.2434533840184896,7.619655071550286,477.0336250988837,0.0,0.44934025013006895,22.843100310269325,0.30312827790202834,0.21850085148974444 -1992-08-20,3.48322249301366,22.000222787384995,14.142453503060212,1.0838102047938545,7.164749470893955,488.3968021953251,0.0,0.48607465765867675,22.399706449595108,0.301518593397965,0.21624583209690051 -1992-08-21,9.825094241799883,21.564754275273646,13.186096071400911,0.9252945964200124,7.257959424272288,1203.1873056253924,0.0,1.57986592603479,22.494849072388217,0.37650545146587044,0.3813237994389212 -1992-08-22,13.827919069702704,20.42763745690932,12.750725351328043,0.2863558729936966,6.795010774785413,2253.1879702348083,0.0,2.9253853948132953,27.92745521655708,0.4864218323017057,0.6936570137391025 -1992-08-23,5.020191872437718,19.269399571125028,13.071334780094835,0.29220320671052924,6.033833125302241,1411.759486823346,0.0,1.1991220589718425,36.199068159423355,0.4801764643124288,0.6341221619453171 -1992-08-24,3.2184240005204154,19.603043814508272,12.131475884511046,0.29138126726580704,6.568579338496963,986.4018927778492,0.0,0.7508742704322566,36.34816536859142,0.46092397033513743,0.527115423881032 -1992-08-25,2.655976062994244,21.147497342328247,12.152971096074307,0.2540071548609367,7.37793323350039,771.4353608234488,0.0,0.5794396504725392,34.528674712419146,0.433175998846873,0.43135561325793637 -1992-08-26,6.127364066428782,21.49029666190177,12.681247139890607,0.2990717948885193,7.397152649700101,1167.6029388323145,0.0,1.300332885597931,31.940095561228024,0.44346012410788677,0.47878712192003414 -1992-08-27,4.256542444583161,20.39560523278412,13.22797758383492,0.3344830380908798,6.623148870279791,975.6746050007691,0.0,0.8966741213199043,32.66287744442831,0.43008623864350015,0.4481997947425936 -1992-08-28,2.6704247086256774,22.83892772535063,13.287111479328766,0.319104632941611,7.925856089239354,702.3576452031666,0.0,0.5397486959029432,32.239895694140095,0.40668159025797157,0.37394171354323086 -1992-08-29,7.730013261236667,22.690194518044887,13.432864636155555,0.3614665424619904,7.806102107061641,1299.5716651498103,0.0,1.5621034890285053,29.681757873091133,0.4358217972147378,0.4812718131187404 -1992-08-30,10.577398500760216,21.72915893710908,12.72549440587538,0.2962068051234698,7.5229453701146305,1979.0169822559862,0.0,2.4070812095843213,31.830546575173873,0.4940238400586903,0.67979900407766 -1992-08-31,7.3053952599937,20.663036208840122,11.476777948149493,0.20353499592059435,7.351327426525269,1768.5507549390945,0.0,1.8052106920869218,36.15691990390937,0.5063065375289115,0.717387197006163 -1992-09-01,2.7623761946359933,24.24500893669584,11.448833675123955,0.4585277268704981,9.136042851261825,1011.6579684164166,0.0,0.6563099851171001,37.163387372691226,0.4651081064995907,0.5669182388295426 -1992-09-02,0.6208448154042376,25.43298102594011,12.57651775126103,0.5009183457176876,9.459682289900394,496.8574748316516,0.0,0.12392481331011607,32.90502595486987,0.39055368963494647,0.38790651186499375 -1992-09-03,0.50833086301956,23.750503208199554,12.39152148588184,1.03666405098073,8.670486484999744,317.46203709167116,0.0,0.08307093664228415,27.5905831224536,0.32733331840829666,0.26515768491300457 -1992-09-04,3.42783638678761,23.92045871554802,13.340745731861716,0.9130557937774904,8.502641206881444,507.77762103415427,0.0,0.5045183736235641,23.624162038008016,0.31513746113256613,0.24942556600543775 -1992-09-05,0.3816470409875507,21.713552724753047,12.827107476615698,0.6029022260825253,7.505455262492859,225.0847520102632,0.0,0.05057520713683633,22.84191093307303,0.2705387226291658,0.17006514289244679 -1992-09-06,2.696564675825861,22.225702665992827,12.634559615514743,0.8367120532506868,7.836953899490537,331.63975339243467,0.0,0.33021935573039185,20.070312137195042,0.26521869638277934,0.1609851901390196 -1992-09-07,3.749345453162814,23.113814372263032,13.398343576489424,0.8387901260342363,8.076719621253735,424.3178027364375,0.0,0.45923723961166374,19.54562167113395,0.27137059086875714,0.17471944643192674 -1992-09-08,17.813619978493396,20.983275859424836,13.518392573880913,0.786947345650928,6.885938994074426,2126.62651626717,0.0,3.038262969667546,19.89331274270631,0.4392602298085167,0.5763545686266668 -1992-09-09,10.638015109697964,21.698605384410726,13.541487718542138,0.9799988276016566,7.27782189776016,2181.670049980364,0.0,2.492326286524488,32.72378975899275,0.5051356606586145,0.7546732312972767 -1992-09-10,7.377239623544344,21.107179397345025,13.643275404283454,1.4933000617576544,6.917295845525129,1877.3025678376139,0.0,1.8794451554250342,37.14170064518219,0.5186155044183147,0.7774300935323042 -1992-09-11,4.327320196993993,22.778820778596568,13.893056564702315,1.370492080575325,7.7577792192647586,1341.2739535389499,0.0,1.093231776294905,38.40201343999747,0.49776779913994756,0.6725311397213505 -1992-09-12,7.780126255499176,21.84069622444792,13.92819622129315,1.4031483021465585,7.233067114406093,1778.1679117384542,0.0,1.9407371439694634,36.229651615750804,0.5126841073094839,0.7332920633054708 -1992-09-13,12.176279891641233,21.08139753360466,13.271067549368448,0.9448393779714752,7.047450506152398,2806.5493012751535,0.0,3.384857698428707,37.71273392880951,0.5811732245028447,0.9927332569303126 -1992-09-14,13.441553117134312,20.447330815721482,13.0635560475154,0.8470753636458493,6.773595169137284,3695.4741934157714,0.0,4.353434114399832,42.68601033498126,0.6538481027576927,1.3090973481709516 -1992-09-15,18.270612456484734,18.39623106603913,12.403178003482704,0.7477583804159474,5.866277153348964,5834.0954382229165,0.0,7.215740534471308,47.98070899166316,0.771783027264633,1.9508639392211073 -1992-09-16,9.357861349692561,18.338261313665253,12.27497163997061,0.7832127582163924,5.887290372222505,4395.021437694139,0.0,4.111874579048317,57.01741566132297,0.7732270256251962,1.8960143824298037 -1992-09-17,7.837193517232666,18.392682726765226,12.445322164971076,0.8357374974333377,5.85381249277278,3716.945508995341,0.0,3.384032380812857,57.08041110008381,0.756246129423003,1.749485171931981 -1992-09-18,2.468552404043109,19.79167379087228,12.069065716595135,0.8698251804570376,6.777009358535542,1990.5813031384464,0.0,0.9719308201336645,56.02011903291202,0.6813534117599347,1.2868234466393282 -1992-09-19,1.197563433157759,21.13512242179125,11.516460871632972,0.4179418330213777,7.65633956156105,1169.967291373335,0.0,0.3972085020263927,49.83502553952938,0.5944951005591342,0.8981424453794596 -1992-09-20,4.805934711779008,21.64764086761828,12.149999081382052,0.36390835862141296,7.7401797282654154,1523.8805176097367,0.0,1.3942428065708494,42.99774109790279,0.556880448937894,0.7969425834315825 -1992-09-21,1.3473696110215552,21.742509390512637,11.436915268073328,0.5717930550153424,7.995431852826536,827.0678733322719,0.0,0.3449075883158623,40.34530178158971,0.48569138605519296,0.5712894410878987 -1992-09-22,0.21884883931494756,21.783965196825548,11.790819528792415,1.0263679436437725,7.9231019796271935,428.889371764672,0.0,0.04688432989928501,35.196228869791454,0.41256167103834374,0.37902140738495466 -1992-09-23,0.7307983500554022,21.1569938558062,10.961323156979669,0.789705063014954,7.8390021890393715,337.73307412895804,0.0,0.13216260149368664,30.101268097460174,0.3591726936090135,0.26684883069187315 -1992-09-24,2.8755735243064597,21.67709658417531,11.261857806609092,0.8255803559981599,8.023615615738313,487.8879032549679,0.0,0.46870582964243734,26.33930033605211,0.34033349518543476,0.2450734335505952 -1992-09-25,1.5640375463007186,18.8227867064663,11.1142009039415,0.4858158848500938,6.604256982821273,339.8505098659696,0.0,0.23348122799769055,24.886190745692954,0.3081272466242438,0.19508225292652875 -1992-09-26,1.8330918834489704,18.307788996143454,10.254991370249318,0.5591866743962105,6.612406579763366,309.93221194837906,0.0,0.25604723793590445,23.248974120216964,0.29218908253039527,0.16597635230222116 -1992-09-27,2.3429691737814107,17.47850157443635,8.462914299117541,0.5041048947222849,6.714613066055321,328.81370059265544,0.0,0.3134127334692227,22.05788043895143,0.284253372918503,0.15576452311764005 -1992-09-28,1.5618515549669736,17.5273165929449,7.481757732936442,0.3105167581054201,6.9844997389050185,250.69831908410754,0.0,0.19885674492501249,21.42109893987816,0.26773580844372197,0.13167426070474028 -1992-09-29,4.0358240247849455,16.166683107556313,7.857776432401183,0.6128685549881441,6.252614057957982,432.75502703830307,0.0,0.5113279047005452,20.079157803975136,0.2809232068344256,0.16357098226917466 -1992-09-30,2.413158363327791,18.500842583585907,9.29036761113254,1.193109575584103,7.003100343916081,341.5658338583012,0.0,0.31296764509518393,21.3735663629261,0.2770992338968952,0.1541309689983649 -1992-10-01,0.8105550968718566,19.99211531613567,9.934952566979174,1.4505188498161812,7.568924972332685,184.85591878195768,0.0,0.09800228333006211,20.76506396002767,0.25134135028348076,0.1152543120685058 -1992-10-02,4.400527596875076,20.587764484856745,10.122786810479617,1.4074619672650992,7.817776356307329,424.04644881162955,0.0,0.5232049898040039,18.637882770090087,0.26838187839464367,0.15469082910949505 -1992-10-03,10.258207662064882,20.4867604530296,9.995521925769651,1.1321505893690418,7.805231813333123,1101.1272110112216,0.0,1.4841830594073908,19.783657925913396,0.34996738874580224,0.3266852556304302 -1992-10-04,8.352439808071589,18.618692300686366,10.22218258128969,0.9978756992255956,6.81324955118951,1267.1242675343894,0.0,1.478767257555278,25.696146406790113,0.39664297056404507,0.4378209077189166 -1992-10-05,1.1218350348064399,17.67300399874934,9.426076855417824,0.583164940679947,6.573654383469038,508.92738604033326,0.0,0.2010896425363229,29.66804673606129,0.3586812706949372,0.31561970207758927 -1992-10-06,1.1890500949092346,17.579690638873004,7.941219064052586,0.8855454817904465,6.931857689151255,349.9251059279279,0.0,0.1925022419415794,27.01746143213866,0.32858675689899564,0.2347649020611632 -1992-10-07,0.06788552254197207,18.817934278055276,7.847250295069494,0.9431160063318256,7.5383086396522705,171.66369028893254,0.0,0.009684806063942022,24.601821334357464,0.28738537773394385,0.15429557208645545 -1992-10-08,0.0,18.9751075976052,6.677725501465356,0.7381938806729514,7.8559763761100205,101.9464959264045,0.0,0.0,21.288783539166346,0.24799991075647612,0.10043916553639443 -1992-10-09,0.07952102230785373,19.469160607760717,7.096142794003142,0.9448164659278634,8.002195529306913,70.86155515407069,0.0,0.008230880353656586,18.28412842347633,0.21392407956702011,0.06663444925048838 -1992-10-10,0.1034458546384858,19.214499288298626,8.858992489021771,0.9748333873728416,7.502792479576027,49.83390636971893,0.0,0.009145571480314613,15.748393991960866,0.18466319881781917,0.044768443006620876 -1992-10-11,0.5408420969261318,18.422953661548604,9.58655449164578,0.7693274602193613,6.92776579128724,57.24755377638768,0.0,0.04215480707110264,13.750216950121038,0.1664811595158911,0.03556084440201971 -1992-10-12,10.70697307141343,15.446085036033313,7.972379577401867,0.6597111932115945,5.91485120739623,733.42259806935,0.0,1.083478289903983,12.548807908150712,0.2709140988207873,0.18812401400282522 -1992-10-13,20.464349039108495,13.520642015120574,4.777172877738933,0.17649055402619154,5.845946755373457,2666.4217065559324,0.0,3.797805252509672,20.761216607162716,0.48024992044993425,0.700731845237191 -1992-10-14,6.534237488955376,8.313899862164773,3.191819007325353,0.06100817582777701,3.912838332410407,1734.5958298863454,0.0,1.6124207358712033,36.50191351024112,0.5013420136226773,0.7016583738742469 -1992-10-15,0.24729645010553625,9.126555319743144,2.7512567090740947,0.27310792073334506,4.402390425610002,607.4551233318765,0.0,0.061041916284294895,39.67609640339726,0.4650804892890628,0.46604115696347787 -1992-10-16,2.6187361409319374,10.368931423352423,3.2530160992835917,0.2569861716662321,4.824735676132962,712.2892686805561,0.0,0.6078018655828226,36.48380488964845,0.4555181214602704,0.3959177022253094 -1992-10-17,0.13516795097347764,10.28101337348705,3.3977957973114976,0.601115573405941,4.753420018143205,312.81536845174884,0.0,0.02914279751536139,35.43190085664857,0.4143322644026058,0.2621612374593962 -1992-10-18,0.16659863335712144,13.292102623757124,4.16328372108603,0.8105053023702372,5.897079267266323,196.23825149174263,0.0,0.03233762320800038,32.3340745514867,0.37861083206270857,0.1755785248588879 -1992-10-19,0.04655630812476705,14.515510107505882,5.167060220328325,1.0224078105391143,6.2216725659961885,121.66291063940388,0.0,0.007938551890646045,28.897154810030674,0.3371746328792285,0.11550212929253728 -1992-10-20,0.2027264995610084,16.374365794387018,5.013425344256512,0.9973330976506004,7.074339982517898,95.61547355015468,0.0,0.030317744998458296,25.609542394658877,0.30069545168757783,0.07980278212366679 -1992-10-21,2.832375583246584,13.820478734381714,4.259000865729685,0.6343528897647704,6.116661399676806,309.0157465965092,0.0,0.3907573803434583,22.476410788656086,0.29483022127775216,0.1114464441735747 -1992-10-22,10.507179988073943,12.445521786930788,6.097980172614218,0.6652644616078736,5.029654732016948,1214.0297010274412,0.0,1.7124763465867616,22.481385609349314,0.38429444825223186,0.33329621902965306 -1992-10-23,7.245312291732623,13.242711052153744,6.985918172067276,0.5206722823554681,5.151883158073318,1272.144148355127,0.0,1.460540740047505,29.855483229730524,0.43219914192792974,0.43934907762909237 -1992-10-24,4.168288261616799,11.611879450317971,3.9225629888858586,0.7599442659331493,5.233994257992827,965.864427826556,0.0,0.8991602981713855,33.423046432648995,0.437913591081579,0.42290603865072846 -1992-10-25,0.3175317998173336,11.671651391517312,3.4290148825299527,0.5805008788526365,5.376056364051997,376.95184919172675,0.0,0.065015434494614,33.79745984034955,0.39741654879687993,0.2851915149402735 -1992-10-26,1.5438930286331518,12.374697244805976,3.2569824518759263,0.5063275685775156,5.716607060183793,382.7205078687251,0.0,0.28905932120635414,30.637413377416028,0.37489042537559375,0.22965982409701416 -1992-10-27,0.007036475252038583,13.931882947581801,0.0637124111862397,0.4315146001521862,6.8288486230611065,167.61680783776634,0.0,0.0011909062981475937,28.72559848770724,0.33471573861901105,0.14967908455234913 -1992-10-28,0.0176708078780773,13.250372249609187,0.3934684535337163,0.267670145755702,6.532076332206939,100.51442152021126,0.0,0.0025751987722567697,25.107228371032537,0.29268806001393977,0.09782616118260358 -1992-10-29,0.8689882337778357,13.05866130020849,0.8923391952760312,0.4185204163182198,6.397315792177235,137.48559350456756,0.0,0.1126140061079447,22.131490991985135,0.26794000628787307,0.08082737915554951 -1992-10-30,0.28311949116398816,10.878687360884365,0.3694281620878467,0.4626059971015606,5.624405253201893,80.73478752926012,0.0,0.033021826207982996,20.33634398918413,0.24020278535712883,0.05764288580877225 -1992-10-31,0.29720554207005256,11.319304694056175,1.1332902038711268,0.6496990882842769,5.682614768809676,60.46106797921794,0.0,0.03140875929245346,18.534635418147506,0.21937819363524758,0.042305257043787126 -1992-11-01,0.006193784673183847,13.183759699505432,2.0321583714379217,0.7551868306035064,6.291097589577345,29.925456953756907,0.0,0.0005889495070414393,16.919638826188937,0.19717448717773162,0.027628410251310586 -1992-11-02,0.7897899508641675,13.815738676706063,0.5299815198973072,0.8020191609554517,6.7526804376422245,62.65797435267115,0.0,0.06810073078559209,15.035919356916374,0.18435879573705313,0.028354138839584528 -1992-11-03,1.6174472695215607,12.394618857773,0.2822702870644375,0.5755403942534073,6.235378407702517,109.2618776450491,0.0,0.13293850394560258,13.93620837571936,0.18118955481228774,0.038699062841022536 -1992-11-04,0.3307182046242256,12.704998037081811,1.323847484689499,0.8406320602129858,6.216686921638663,50.02626725511738,0.0,0.025746611828789623,13.839535410836323,0.1650738580513776,0.029111573054290057 -1992-11-05,0.09644449148918903,14.503152885138984,2.6929058238566443,1.2435018087828964,6.740355986852025,25.47352697719854,0.0,0.006758846662544268,12.61974015507258,0.14813493930774796,0.019979400065939203 -1992-11-06,0.0017838090872634462,14.677555240547939,2.4191014572762044,1.3691591744642757,6.8575738968782565,13.624250076886504,0.0,0.00011010619596424592,11.214554347809964,0.13066274344926226,0.013022415706036792 -1992-11-07,0.08071044658995627,12.86763153134226,-0.5789918659448612,0.8536945209233735,6.5301631624438325,11.387292591990875,0.0,0.004384180932064247,9.874607654658128,0.11597271380582308,0.009144536884670465 -1992-11-08,3.4131311664106256,12.143616286735414,-1.8213527499695539,0.2696635269129265,6.3847077018115055,135.1782021053879,0.0,0.1974245638075498,8.825054017994011,0.1425665692908083,0.03601347007395681 -1992-11-09,1.1195580906578393,5.409894595695648,-4.781564204579395,0.3642234868977784,4.305013466625847,80.9590651596607,0.0,0.07048669446553046,10.870810666218242,0.13967967573965723,0.034175716903974286 -1992-11-10,0.2211969848081735,8.144205435381553,-5.041185616946612,0.5750200045013981,5.233678296533002,36.12401075846838,0.0,0.013630258970198983,11.086502033055277,0.1317270356068942,0.024322193731231588 -1992-11-11,0.0019302479493497427,8.792583993658416,-4.873401675421909,0.40295821932958653,5.443134264143274,17.06666343026446,0.0,0.00010879535828149157,10.274091875421247,0.11970869847208178,0.01584917067643791 -1992-11-12,0.0,9.552369050176916,-4.191428252632377,0.3645898888431656,5.660386705017673,10.407977493664035,0.0,0.0,9.302128822635032,0.10836350107156333,0.010317065199339285 -1992-11-13,0.0855643564315023,10.283741803996099,-4.541874127767062,0.4218917717224061,5.936338269492389,9.290188016862682,0.0,0.003931857929541774,8.387951685975207,0.09871072334613644,0.007314607997068382 -1992-11-14,0.048026276727824585,11.007462175821194,-4.749669497581945,0.4606354308133727,6.199170148456284,6.29036827248771,0.0,0.0019908438960232477,7.602272316950665,0.08912079757878717,0.005064601413043809 -1992-11-15,0.5405912380640497,11.050842589536245,-4.062406263534314,0.5211503218963239,6.179919056318866,17.036536841403006,0.0,0.020829027654578502,6.830781765044255,0.0858715033463647,0.006468344647302709 -1992-11-16,0.0432139646895478,10.975749388459663,-2.17832503163636,0.7442934915150352,6.012991717628834,6.43891914895599,0.0,0.001546434883440917,6.584767599837631,0.07721149653639049,0.0044460559093882305 -1992-11-17,0.061347749034423776,12.72071147358994,-0.6483942975718213,0.9366577128525508,6.5118974562445535,4.371353341949276,0.0,0.0019802572299413568,5.9411242614849495,0.06992473384814844,0.003195696849606377 -1992-11-18,0.060908404063586725,13.179804519735494,0.5906611264625424,1.0767473204681235,6.546960417018017,3.358576260841576,0.0,0.0017612123741940836,5.33002936835921,0.06280077412572178,0.0023484190533686433 -1992-11-19,0.08688165929588701,13.521198541028072,0.704289587540389,0.5869994011747378,6.669583354477136,3.116065307607765,0.0,0.0022587663151092674,4.784713013081583,0.056750778726676256,0.0018726409678484716 -1992-11-20,2.7912009491177887,13.142503773822892,2.125472698426073,0.8094940730769591,6.315533965039092,57.606463191691034,0.0,0.08610434492518682,4.314265469586614,0.08277387171887392,0.014329659773931313 -1992-11-21,1.8011334895916582,12.762664004697733,2.6819879495946943,1.1438885702913668,6.064610587506868,60.52721221663227,0.0,0.07071470074342767,6.33118150466763,0.09473596220795777,0.02009529286184506 -1992-11-22,0.2269484534295218,13.078892926041114,3.239249034318868,1.0478091270394227,6.09660165720628,23.521060360863213,0.0,0.009111986753871537,7.278922185190356,0.08743830971378637,0.014468525767222606 -1992-11-23,0.5630898316603987,13.50206606610017,4.460498859647176,0.9133274458741171,6.031563799275681,24.24838164887772,0.0,0.021370244139115924,6.715403343407117,0.08478951625100932,0.012672265622487577 -1992-11-24,0.4666430665514485,12.220001500853465,0.8773889959053349,0.7456279669638278,6.144310743115663,20.709102206682665,0.0,0.017080669121964265,6.520591161812659,0.08139654677219525,0.010849833527053826 -1992-11-25,5.860137957628722,7.882449127367809,-2.6189360734914433,0.4246279366028943,4.9628439832650235,200.3422976581071,0.0,0.29420337535727725,6.246663401266336,0.14103603670113382,0.051859541792647235 -1992-11-26,2.8201427258283838,3.5895586925770147,-3.6583619083630663,0.35581991853047124,3.5862889651512173,177.87495182031466,0.0,0.19436616866033152,11.054781267245971,0.1616334679576565,0.06335324482156461 -1992-11-27,0.014356075224313291,5.526528754538472,-4.211844086978557,0.4236511664898057,4.3204059243566695,54.51091343669134,0.0,0.0010341167917058743,12.998118125078852,0.15158651195165956,0.041397444334680046 -1992-11-28,0.0,6.9254878975072325,-5.274463090258212,0.4098935536047787,4.881454290758786,27.962836782851898,0.0,0.0,12.025017435823298,0.14008330938415037,0.02694779058199298 -1992-11-29,0.0,7.85028989681186,-5.289505744665867,0.4361954729922143,5.191460817271368,17.60725306196219,0.0,0.0,10.997435149414551,0.12811267166051254,0.017541745122720075 -1992-11-30,0.011592271714942851,8.62448599514604,-4.3299123996751865,0.2166156366523934,5.390669081601886,11.837951752981231,0.0,0.0006357371707897217,10.001167697947247,0.11664187267129678,0.011515651988747171 -1992-12-01,0.16359684398939867,7.823675757291607,-3.812153907502135,0.3885811078639068,5.074331367044208,12.879600821705395,0.0,0.008184227280259693,9.073638391591993,0.10760753473049167,0.008742317716485083 -1992-12-02,0.9920501556652253,5.906549405185184,-3.668165296399772,0.4893529806072289,4.398338367090976,37.7281276633705,0.0,0.04831165453189867,8.423347363105293,0.10968300467219994,0.013047001045873871 -1992-12-03,0.4277173756140251,6.94675927394088,-3.2403205768792485,0.6423821465481887,4.714246360257816,24.92292814834819,0.0,0.02080521081684994,8.695732124844096,0.10628200797580344,0.011660885170106544 -1992-12-04,0.1597230400913277,8.471504705215725,-4.261708784449989,0.6743990800832668,5.33960709137135,13.825771663281905,0.0,0.007362783757504376,8.376744240468888,0.09944406263794506,0.008711780780221928 -1992-12-05,0.18289258103141934,9.090098073214675,-5.384092127065997,0.7887606990887943,5.622493957159339,11.29903793051007,0.0,0.007797681622449287,7.74664164409876,0.09237370357750913,0.006858272054914757 -1992-12-06,0.12118092718851907,7.988713225016147,-6.289062517800004,0.8115032605924426,5.300618384233801,8.058385796171383,0.0,0.004748464385676263,7.158369529718025,0.08480183286840744,0.005187436619844298 -1992-12-07,0.0128206324968887,9.029276262668876,-5.9008803289330105,0.7050682370878336,5.629471761076571,3.989924757360078,0.0,0.00045973439809055515,6.613221504476604,0.07718890351883513,0.0034467787836757065 -1992-12-08,0.0005576499872150932,9.063801395499274,-5.555641712840249,0.6022212825398391,5.626639312236123,2.3057822089080084,0.0,1.8036123661481366e-5,5.9831050198642375,0.0697056177676805,0.0022464372558417406 -1992-12-09,0.0,9.19207470342318,-5.573806175576661,0.6459668869581313,5.672056364182004,1.4669338837001507,0.0,0.0,5.404334506520351,0.0629568370052428,0.0014623250710019485 -1992-12-10,0.0053088417982792525,9.879618876620556,-4.703116026086307,0.8339575199978464,5.862108679939091,1.0433569256246014,0.0,0.00013953602910706919,4.877679148490637,0.05688350316440942,0.0009731513137147288 -1992-12-11,0.006297084521729797,10.142355003828474,-5.123719758830108,0.823054917708983,5.976007572570722,0.738798852113647,0.0,0.00014881294310394467,4.391880983068886,0.05123579589443636,0.0006561347360894534 -1992-12-12,0.00608103535288914,10.477307191069237,-4.351781074538462,1.1078334874465967,6.0516613442922385,0.5206356556058618,0.0,0.00012899456666478487,3.9478075088658664,0.046060123834849365,0.00044675420324857585 -1992-12-13,0.0,11.015164605922392,-3.988732356216321,1.1271388688296116,6.219933494902711,0.29900397191696604,0.0,6.217248937900877e-15,3.544355811034945,0.04128934484249469,0.00029081598886821684 -1992-12-14,0.0,11.160796957573883,-4.75429975605188,0.7031080218878559,6.314088270765033,0.18993014358347884,0.0,1.3322676295501878e-15,3.167433210034926,0.03689845180541118,0.00018930754040193525 -1992-12-15,0.4316407732913174,10.62499487281652,-5.143122078170581,0.6992117478889731,6.1476643740932415,4.714507755862403,0.0,0.00702826452960309,2.8258216990304774,0.03794723174023169,0.001193387413195857 -1992-12-16,0.027016900732752102,9.978810809290906,-4.268911862366415,0.7885825822130542,5.877233338314171,1.461082515342592,0.0,0.00042342773485960425,2.915315885869429,0.034276184317940085,0.0008413122446319332 -1992-12-17,0.10356267709900124,10.878983522929218,-2.4410853914606157,0.7150381294249393,6.058952609194354,1.5800005376197377,0.0,0.0014945590784709584,2.6471012743499025,0.0320433721929373,0.0007752234281143942 -1992-12-18,0.013216209740451549,10.415769828267976,-3.9543503426970585,1.045632744060596,6.011724774114343,0.7093136293286058,0.0,0.00017462914048403146,2.4662732402579386,0.028884372899462735,0.0005312238826031559 -1992-12-19,0.012971148445654557,9.314236534051844,-4.957188385321287,0.9949145643437244,5.692129857095603,0.4638266398231603,0.0,0.00015456052193069114,2.225302957368574,0.026074377498799872,0.00036933590280934387 -1992-12-20,0.0,9.54694803618202,-5.274069009976731,0.8297963356390504,5.789254235943976,0.25061012791775206,0.0,3.1086244689504383e-15,2.021136520927567,0.023544871687690594,0.00024042031394192414 -1992-12-21,0.019182190209062883,9.782338099808854,-5.4121102600174185,0.7017630883162737,5.876772883286003,0.279639395426517,0.0,0.0001873228751020535,1.821827060465838,0.021446510977446924,0.00018502499964096752 -1992-12-22,0.017466849060335462,9.39276955536026,-5.430048592715067,0.5529985549450875,5.7459339764437125,0.23263577299199512,0.0,0.00015503903886770684,1.6568011725673508,0.019504088581772844,0.00014404956262115888 -1992-12-23,4.002051030499252,7.295278311325,-5.2162273082716135,0.4393013022985054,5.028154012989739,49.38630789861355,0.0,0.07544194165088713,1.5105387831725217,0.0642179380194494,0.011580919600754537 -1992-12-24,6.074070153516887,3.7755373821303255,-5.370348659301038,0.4151233821741496,3.8801820411983696,186.5411309200094,0.0,0.2673176397992165,5.03615298358626,0.12942657533329469,0.04824169404900308 -1992-12-25,0.07668149118335725,7.828675600180412,-5.623380609958133,0.7154415109074042,5.23210697611088,50.10278209231754,0.0,0.004374525615325295,10.357137060730347,0.12154691999960049,0.03206916161524973 -1992-12-26,0.07921531880034427,8.297054239239483,-5.196957544578848,1.1124267199975664,5.36467347303728,25.04352799541862,0.0,0.004126955676447941,9.482772215820606,0.11139067908120569,0.021503906929402947 -1992-12-27,0.03752879013385188,9.05498738740073,-4.623444672844592,1.0227374626954808,5.5873728670478435,15.497338064412231,0.0,0.0017790064393247984,8.67059144299531,0.10144370328626419,0.014268912738726953 -1992-12-28,0.02710946504627009,8.780865322229065,-4.006195369828127,0.9474044753564964,5.448831657385884,10.174847012362948,0.0,0.0011619040806179967,7.864718408098519,0.09193445011287948,0.009465308614874837 -1992-12-29,0.006626598075939075,8.463327044374548,-6.205678731131583,0.9688006779335859,5.472430890558068,6.4063284985491755,0.0,0.00025717256808849634,7.1480611195992285,0.0833472665175767,0.006200629361431578 -1992-12-30,0.0519328463256817,9.865367181131797,-6.3481465136446396,0.6096659678756634,5.944913475731152,5.251992194534311,0.0,0.0018292433444851638,6.478829792509844,0.07607896189198428,0.004314847606974208 -1992-12-31,0.00908829001228962,10.606585195787623,-5.113128704081331,0.8369446908687546,6.14953133536783,3.104567663583761,0.0,0.00028808061144903335,5.861799579611652,0.06839186771988903,0.0028526275231559343 -1993-01-01,0.049105395797632026,11.500514455825643,-3.705300746381554,0.9236903689987872,6.3869528928929,2.7943433446914545,0.0,0.001396739340571676,5.249932279527512,0.06173020023234742,0.0020696006424478605 -1993-01-02,0.03420404922790174,11.285924004930415,-3.2314082299601594,1.4709926686474426,6.278025072748659,1.9995528733067502,0.0,0.0008718031422506323,4.717823797388915,0.05535790618121007,0.0014799576543931985 -1993-01-03,0.033624217462682154,10.169113580427714,-2.67106149532983,1.1748902738657232,5.8289777159877145,1.5228886299720754,0.0,0.0007693424521626191,4.240403503485066,0.04978952843480571,0.0010805266286918452 -1993-01-04,0.05460683957158797,10.665527793416416,-2.618057529024349,1.4862609222886525,6.004270015773441,1.494206100465611,0.0,0.0011357024344906888,3.847260159247124,0.04545410806166583,0.0008762995236943314 -1993-01-05,0.1163233674071296,9.678127238187717,-3.0779438107705963,1.123500016624029,5.688606214083185,2.09023893697142,0.0,0.0022199968792633723,3.5009366269067534,0.04213862920454793,0.0009084571243073424 -1993-01-06,0.10846397961267773,9.924232646507193,-2.092780852035929,1.2614280756642555,5.68225426590389,1.9856884412874019,0.0,0.0019291836615643598,3.2653485425773074,0.03930263102505869,0.0008851096023760987 -1993-01-07,0.4824915475269359,11.06777000819286,-0.25654653047753223,1.5603905264987807,5.894234718314393,6.249588027736234,0.0,0.008497856177736574,3.046153185452272,0.041106321423211835,0.0018700888912706426 -1993-01-08,2.138731844260264,10.778029981839023,0.9468307709884444,1.4728371494063717,5.59972587616075,33.58368025767017,0.0,0.04877766370513559,3.1730372375258926,0.0618785124954848,0.00864445985630435 -1993-01-09,1.576963620716603,10.164800644288123,0.14041764776034946,1.344605198514789,5.4844897558331605,39.581996054974084,0.0,0.047588191468970864,4.800848928335283,0.074297196928911,0.012873142239302514 -1993-01-10,0.3537539908975482,8.978955462670003,-2.083276547235832,1.219563910755348,5.333079886739787,18.795172174016617,0.0,0.011380642638843419,5.77526958798268,0.07139897391460613,0.01011268152593598 -1993-01-11,0.6221431197134981,8.940940272053048,-2.277530237893591,1.0756136695825744,5.340787669568047,20.37774798387004,0.0,0.0197589266033944,5.5663163757029945,0.07209136209026702,0.009591468847587917 -1993-01-12,1.9430440498099368,9.12604799274482,-0.969070553414424,1.2058006819862606,5.244866442117675,52.77654622106781,0.0,0.06937809730428746,5.619385782906478,0.0880971860212369,0.0168074356447713 -1993-01-13,0.8928613666688137,8.394667960975884,-2.5960601671456107,1.3783620698867791,5.177061027561824,38.25202449194012,0.0,0.035506465540585674,6.876948033586792,0.0905130175387032,0.016347234564094187 -1993-01-14,0.1888837593553398,7.962965471749455,-4.102810208296517,1.341219506509982,5.169744814050687,17.8176101400406,0.0,0.0073485812390418626,7.074223243097886,0.08461027776008251,0.011760211434039339 -1993-01-15,0.04543747496190987,7.569565294999929,-6.213699270055085,1.1963290609081263,5.174113919107919,9.32811134491224,0.0,0.0016338152637182038,6.614696111513982,0.07758604581767053,0.007904117423565771 -1993-01-16,0.0127568169616781,7.858312868275822,-5.073332168903264,1.2785553566393797,5.204801099441037,5.5578821550304855,0.0,0.0004188580240496436,6.066019531475261,0.07081362770904348,0.005208986271093975 -1993-01-17,0.04462494793559682,7.79781726862702,-3.88956813966575,1.1419377808230309,5.092104194162,4.299508156613317,0.0,0.00133841617843658,5.534158330445662,0.06498904705489113,0.00359459887546231 -1993-01-18,0.0006893826505589763,7.715973092160272,-3.9812824602022188,1.3748623806118858,5.071062695053143,2.4324010293951694,0.0,1.891400975331033e-5,5.09041616065026,0.05930793171284441,0.002342794859176831 -1993-01-19,0.0,8.085934004583603,-5.160497482224077,1.5290940648974896,5.28450453075697,1.5322938710224305,0.0,2.6645352591003757e-15,4.647838890481601,0.05414417540247363,0.0015250493419661415 -1993-01-20,0.048503077613404964,7.953333448686191,-4.621067801390118,1.2582981751532152,5.202141861048988,1.7170901091189152,0.0,0.001108108702408482,4.226641966839929,0.04980254449695701,0.001161461364121897 -1993-01-21,0.003616185808429461,9.613213275556056,-3.895049054615495,1.3709964073327765,5.721196089839485,0.86975943197851,0.0,7.562876632758375e-5,3.8941219090832297,0.04540600912714723,0.0007675723562820114 -1993-01-22,0.003193934479842133,10.06642005088225,-4.244286881237462,1.5041341447745766,5.9023089722770905,0.5483524839926728,0.0,6.0237955159261024e-5,3.51609807126141,0.04099736848486872,0.000508825646595708 -1993-01-23,0.0,9.003996856784385,-5.190499676223052,1.1920073950122234,5.592067967994436,0.33537300650767427,0.0,1.3322676295501878e-15,3.164150056341344,0.03686020528834222,0.00033122158112861884 -1993-01-24,0.0022391845098636764,8.737040271611804,-5.0452566055749966,1.0139957531911323,5.492047185509729,0.23832488952592,0.0,3.429804319839743e-5,2.861885764881645,0.033365115979393616,0.00022083206565584934 -1993-01-25,0.02259695122989076,8.847844741229856,-4.220471200251529,1.0897930322394556,5.47397973140424,0.3514692812753158,0.0,0.0003148994198143955,2.5956141201801595,0.030500385841996165,0.00019169938425091183 -1993-01-26,0.614022805065256,7.542593374406343,-4.000262195205316,0.5646697262292653,5.004615998331672,5.892768122200032,0.0,0.008801427108394821,2.373712382874675,0.0348050915455032,0.0014649345883397966 -1993-01-27,0.0757523818215123,3.799605343506801,-4.2603809390424265,0.5546064473808681,3.753343536939201,2.1987092069771466,0.0,0.0011223946643950794,2.732398598557066,0.03271305714783315,0.0011245047336608284 -1993-01-28,0.0,3.564812432410993,-5.820387691449615,0.7252611548529346,3.84230099152357,0.8365879323641208,0.0,4.440892098500626e-16,2.6282173826653312,0.030616952591512203,0.000731999729890785 -1993-01-29,0.0,6.019804927577872,-7.911577319760924,0.3723924418751157,4.731105953523103,0.4840609765297617,0.0,0.0,2.4559040238229457,0.028609618657356672,0.0004764974201715961 -1993-01-30,5.6243521528138e-6,8.379092047817593,-5.989084038320356,0.6444451894687887,5.413511213517269,0.31069182858467886,0.0,6.780354669115385e-8,2.257749829236246,0.026301322006949974,0.00031018774924459363 -1993-01-31,0.0144814835882662,10.049087534344851,-6.193419828502789,0.5819709313993897,5.976128199700113,0.30576825051839307,0.0,0.00015892764972660553,2.049432800550422,0.024043203658571027,0.0002261167284128648 -1993-02-01,0.018341953452824297,10.482734411091409,-5.882824473358977,0.6738698231418652,6.1100618367663015,0.27544787942477156,0.0,0.00018222190246619183,1.853798201484968,0.021809164929222122,0.00017493733929056026 -1993-02-02,0.0,8.53726295303023,-5.763545142122525,0.6425974376217631,5.4505012429175395,0.12515627172626134,0.0,0.0,1.677370085259651,0.0195402255222642,0.00011387598582320808 -1993-02-03,0.0039427588267755284,10.05366914986809,-4.917114986087232,0.4816710838531901,5.918233462232841,0.0958951718262889,0.0,3.2002586488389696e-5,1.521766658109119,0.017773481445959312,7.900078116056181e-5 -1993-02-04,0.6142606808151038,11.276053451484682,-5.513054780680869,0.4811783904549952,6.361664172552999,3.644713886565355,0.0,0.005497678001480932,1.3720917632281893,0.023139660748926726,0.0008885284873768401 -1993-02-05,0.6837724507941847,10.998499534736075,-5.154816981283872,1.1981702959822584,6.250138648744375,5.934998367383235,0.0,0.007711554700759793,1.771135392860554,0.02859801383304352,0.0017525884089664935 -1993-02-06,0.07651544847768896,13.286208056747586,-3.386218482849015,1.3099109269904148,6.968879227277817,2.20826669663251,0.0,0.000911635328261079,2.193283730312759,0.02644162324914113,0.001279662628725209 -1993-02-07,0.20928904100207604,15.066582592942018,-1.2450687194596817,1.3295195702934643,7.484542967185916,2.4578152305399223,0.0,0.0023510590284885613,2.0002282882649225,0.025739380527073592,0.001190983695992271 -1993-02-08,0.15441249606198346,15.487295285844095,-0.5659238874168848,0.8130833903365421,7.587537250837173,1.99701785344249,0.0,0.0016517183093007481,1.9277444829951338,0.0242557186998088,0.0010267729229690523 -1993-02-09,0.2624645736309091,15.754967048380447,0.0792496650019579,1.0634114451817778,7.630468632131079,2.5533001933404424,0.0,0.002722068204562833,1.8130566361022846,0.024178416481149576,0.0010828560112665579 -1993-02-10,0.009599866139548715,15.920653441298773,0.9757625934475668,1.1914495683584123,7.601486869763511,0.9313991210403685,0.0,9.26734688387297e-5,1.8057660994147333,0.021147784072280344,0.0007189992737802436 -1993-02-11,0.0019558584635830955,15.80629082194104,1.155752441766992,1.1674875625075876,7.532778209891668,0.49687605378995775,0.0,1.647957029954567e-5,1.580464002872608,0.01843411971701688,0.00047054399229273764 -1993-02-12,0.01258222162883478,15.022023372785053,1.8974817242111424,1.3011510421939136,7.121131473455593,0.3691397537014129,0.0,9.284861640630748e-5,1.3796220004230362,0.016218236339734685,0.0003204395968977637 -1993-02-13,0.16079777095390882,15.025763349695675,1.087943657501955,1.56295815789393,7.222975474441706,0.9432636045877272,0.0,0.0011161670257096301,1.2236054135401697,0.01612735953530943,0.0003785440355070802 -1993-02-14,0.7599994291828427,12.400584228589064,-1.337651745452113,1.4193352184324135,6.468058610931484,4.529472692532083,0.0,0.0064567544387958975,1.2143556195010117,0.022999899218025865,0.0012295506232586565 -1993-02-15,2.2635327051731693,14.079369088178213,-1.3152794942802477,0.9156253795455002,7.093562876168492,24.04469543897034,0.0,0.03500143116797583,1.7568687387197506,0.04683495407129759,0.006129864631678784 -1993-02-16,5.381304993539062,13.203665123482448,0.31001179239995524,1.1666805743068702,6.5896720306063665,124.5548256071921,0.0,0.1814078304501825,3.532299767500551,0.10383745887543977,0.03161227586103724 -1993-02-17,3.09726646751864,13.514178332487404,-0.4185141518451205,1.440289293062071,6.788828447858968,135.803985257361,0.0,0.16003861055916335,7.895320587729457,0.12805619464676457,0.04494634848618884 -1993-02-18,0.5520196089457933,12.93599734322851,0.1598495078959566,1.5075817914504963,6.498145596246365,59.05830297717164,0.0,0.03015055302113756,9.69156603320017,0.11933083543288257,0.033848827491989454 -1993-02-19,0.17898657899126544,12.87851502354202,0.1993295591441323,1.5593912917020343,6.468179195036457,30.41403417984696,0.0,0.008973713008941536,9.08535322943749,0.107923284648042,0.023400376174961636 -1993-02-20,0.17818040696844026,12.270714312022948,0.33951256581956823,1.7894390925488224,6.211418243575885,21.209326953527583,0.0,0.008070703131229456,8.224450904594667,0.09788496423731427,0.016461428850913413 -1993-02-21,0.20056705620538254,13.020855078617833,0.5959106871728785,1.7017343654111732,6.468019844162407,16.646865703337628,0.0,0.008283876181518518,7.498921510996145,0.08969382745723858,0.011976959019553726 -1993-02-22,0.6100376887893588,11.791022825742765,-0.8065023436632756,1.6702682703832514,6.161606570740953,23.765804574874643,0.0,0.023650149472595805,6.838908122014526,0.08677517402112354,0.011397522041022897 -1993-02-23,0.5348938484308131,11.293371941087456,-3.385889848441384,1.61290165956424,6.208999743495525,21.949582319308796,0.0,0.020082628489707877,6.656248724312081,0.08377194089067104,0.01047712802958298 -1993-02-24,0.4600625826844893,12.369554788462413,-3.487076827532978,1.5764466201636524,6.5946712616453365,18.92184787593199,0.0,0.016576341812276407,6.420536155556092,0.08015431552936947,0.0093441108423083 -1993-02-25,0.9045077017986421,14.178815900678677,-2.5649486411885407,1.6706260205795254,7.189278259171652,28.103431850387853,0.0,0.03208951288654849,6.098217199120155,0.08157700261665687,0.010968679374386989 -1993-02-26,0.013918499868359023,14.93987141264561,-0.3925831812272736,1.9259708884487785,7.303487822544281,9.383660836893782,0.0,0.00046231011982955476,6.1345615827020525,0.07162562900600303,0.007210488290158945 -1993-02-27,0.08722014574795635,14.944037039037328,-0.4696863673042483,1.8579934048077973,7.308553511739517,6.535256880762878,0.0,0.0025502812664691815,5.375840699937913,0.06364095908508396,0.005082006981584364 -1993-02-28,0.016502972295920848,15.126091891315186,-0.05211111489216903,1.5518868076589716,7.335679827278755,3.745429008762542,0.0,0.00042519896464704443,4.777272528386714,0.05584423807817203,0.003372890514434316 -1993-03-01,0.5241613138170251,15.93837905811098,0.3534351604973111,1.6240574707917912,7.6081153329817655,10.432404751618627,0.0,0.012552633282405523,4.190788353796427,0.054925970506401335,0.004106917053955283 -1993-03-02,0.108678672293555,14.685839055478857,0.44524065544483016,1.7382573424564536,7.1062740608564745,4.988746625254656,0.0,0.0024257290693704553,4.100010626716881,0.0490283800685963,0.0030427630626696585 -1993-03-03,0.0,15.659243371606946,-0.6145412107369204,1.3776549354509475,7.579802489033229,2.1777441469129313,0.0,8.881784197001252e-16,3.6965746684629073,0.04306259144383928,0.0019806957439341376 -1993-03-04,0.0021470036605579232,16.26688095503354,0.024779622364113792,1.6656291486515291,7.754823825437389,1.3280004814836872,0.0,3.7012660472458304e-5,3.217449198729237,0.037506115339825834,0.0012949755609390913 -1993-03-05,0.003006625967721129,15.861465347528851,-0.2549004698307129,1.4565372319235277,7.6187552116401465,0.8753827477525093,0.0,4.494384791072425e-5,2.793164351677311,0.03257349822924507,0.0008498115911113178 -1993-03-06,0.02638237885498473,16.339469347024632,-0.19999036712730112,1.040156558704392,7.794298750928289,0.7812271301156155,0.0,0.0003447598889737523,2.4326840161897647,0.028646458140427336,0.0006056821908372749 -1993-03-07,0.2844215582062989,16.828298047991115,0.6195407466277737,1.2081317519159258,7.90686718484327,2.6711349318131448,0.0,0.003454484581068118,2.132306934548028,0.02815325025138455,0.0009202669490840816 -1993-03-08,0.950670778045576,16.02739967304009,0.03376656850081907,1.078434506656508,7.6447857226205915,9.320277705508062,0.0,0.013041358799230518,2.0909939397825292,0.035433334045822676,0.002584790066005659 -1993-03-09,0.6407882411669379,15.888712140383673,1.486091015225788,0.8881087557502583,7.435009095159931,9.09731728826598,0.0,0.010168772276122118,2.644680464008466,0.03827348538622053,0.0032309226482169426 -1993-03-10,0.6815692018822113,16.99809936502405,1.7738968510002209,0.9098223186794766,7.8414437543007125,10.40513797512906,0.0,0.011714898509985305,2.86817130017954,0.041352072846264486,0.0038869451507398834 -1993-03-11,0.4965169931824161,17.423186323503547,2.3117750922659344,1.3453827095510424,7.946319530912291,9.032793529910549,0.0,0.008838507631894699,3.073956359389021,0.04159359651372392,0.003876011963259477 -1993-03-12,0.2355738890099989,13.683217791660905,1.4823528285697458,1.7316230786926152,6.546924198898002,5.7315701315674294,0.0,0.00404169535267887,3.085493913632131,0.03868819076281082,0.003138509440162527 -1993-03-13,0.07294853065832017,15.670305531340961,1.555905927003342,1.9275896647149056,7.323365524808107,3.0821504865104825,0.0,0.0011658467936941225,2.9495499814862667,0.03521006072960392,0.00222053953277522 -1993-03-14,0.0066188003271443795,15.933664419889498,1.976163090163627,1.8729569704238644,7.372644619283032,1.595136603934774,0.0,9.36992443992023e-5,2.6446018599116523,0.03088492519665568,0.0014597339646395412 -1993-03-15,0.20954403423675533,16.741541420391318,3.959413516551849,1.9443802386755773,7.4192115462674115,2.73382864250887,0.0,0.002712018277001904,2.317815690058542,0.029442029175674088,0.0013631630502882659 -1993-03-16,0.04003733202840471,16.8074016658636,3.5289500804212275,1.915094148693116,7.508643472258142,1.356547984758247,0.0,0.00047618023449397945,2.2076207234611256,0.02618369415739319,0.0009598605522961358 -1993-03-17,0.03808921788065599,17.04685749511405,3.4191901133489617,1.8775540140208664,7.620023942009309,0.9273373726708721,0.0,0.00040214795343239407,1.9600727335718848,0.023277233512451857,0.0006860570728642164 -1993-03-18,0.030029162635025468,17.029273687332527,3.33112685539578,2.004390297298989,7.620934409772089,0.6562396235842637,0.0,0.0002807626428470919,1.738864170558372,0.02060640937809389,0.000489341169778828 -1993-03-19,0.11598959055698632,15.929550993504089,3.1472050634221063,2.263213652442824,7.188765826297411,0.9817216362525962,0.0,0.0009872383951550212,1.5394448345846066,0.019284689937450045,0.00046885973243862566 -1993-03-20,0.7329071329177851,15.201761269838315,3.1839683844004543,2.0754627559366545,6.878384979362266,5.008759353298768,0.0,0.007110428273001346,1.4529277941783239,0.025463496580295977,0.001387873394980471 -1993-03-21,2.7006353788447197,14.665556206804347,2.6589257175347174,1.773971172953506,6.7361269940205615,32.339835633503526,0.0,0.047484616179243044,1.9296566644278692,0.053939766515799265,0.008133674644585214 -1993-03-22,2.3023764264970805,14.448467680417805,2.733284648033225,1.8331611187361252,6.632061278291158,50.64507172583381,0.0,0.06515730591374824,4.095617902609344,0.07453230099877128,0.015215802292785225 -1993-03-23,1.0925845445151905,15.505660606802552,2.4424134043328385,1.5247205168317997,7.100778696982013,37.890872037374955,0.0,0.03672753614523727,5.667293661424708,0.07874800308404054,0.015497082096921036 -1993-03-24,4.143144125826447,16.33444502498658,3.9339374205470095,1.8080464343555,7.213866068752849,130.5050692255666,0.0,0.18060611631180556,5.932633953459541,0.11737599097044671,0.03758782135055055 -1993-03-25,0.6447687050689029,18.25568493552364,4.1491486622143965,1.8987426319688296,7.983654484072573,56.148603625719936,0.0,0.0321799755225608,8.812096519785584,0.11016607536476346,0.02936778173357901 -1993-03-26,0.9857706795519268,19.107268521277145,5.4881664030767485,2.0990748852592795,8.135977596690683,52.15149703353902,0.0,0.046456493784994723,8.146928579758546,0.1063897614021879,0.026190733094539856 -1993-03-27,0.41646048697954097,17.460499805921028,4.249141318941133,1.9343563235312835,7.624608343778003,31.866004221576087,0.0,0.018256155416241704,7.844724681450202,0.09623721246186005,0.0198287056369281 -1993-03-28,0.0660814113736388,17.554373417430924,3.4163070533149935,1.421709348559206,7.781195586962623,15.87476340193494,0.0,0.002584130863043682,7.171597752671921,0.08431406066321412,0.013301027519247912 -1993-03-29,0.000329574338296235,18.239841123084194,3.2921092964591163,1.4089675999950748,8.07551359161656,8.911319161007134,0.0,1.1174054933294321e-5,6.2661232879630395,0.07299993199476404,0.00866004518167277 -1993-03-30,0.0,19.05474648450962,3.3017607397981785,1.7985604963825896,8.40485897080423,5.65556580587764,0.0,0.0,5.395691695002451,0.06285615410425971,0.005637282391145436 -1993-03-31,0.2718418084756211,19.09550850644049,3.8317577860295065,2.101230119960897,8.349853769298791,8.214603448962032,0.0,0.006955731985869074,4.617113010350757,0.056953012675935395,0.0047287188349188995 -1993-04-01,0.0819261441721905,20.030521520382756,3.3984607513500382,2.041657135724573,8.785601360569968,4.69824890720269,0.0,0.0018623425087499895,4.188975731493276,0.04975311445419389,0.0033617428707361846 -1993-04-02,0.13475056410533814,20.55389855233306,4.1116333563928205,1.9662123550079764,8.913046811938278,4.0728036987908425,0.0,0.0026717230264388103,3.6285267154778205,0.04383963169015549,0.0025951459065662826 -1993-04-03,0.13925722648162464,19.725852480225345,4.397219210743107,2.067055996464172,8.523413075093353,3.4429950301019145,0.0,0.0024314900997789435,3.1897523024172614,0.038780706495299924,0.0020595483009496463 -1993-04-04,0.2197502198396003,19.53272300329705,4.444872063777174,1.6682781577467571,8.430626436001411,3.7638458074244565,0.0,0.003474210405202016,2.8443154966594943,0.03569429050963568,0.0018696690031902983 -1993-04-05,0.04279813211343767,19.60776585344614,4.605143368906446,1.8270497689137783,8.435007432342932,1.8255303305109,0.0,0.0006050799808370658,2.6230752748515505,0.03105561977268663,0.0013091990124477694 -1993-04-06,0.04112461735753139,19.075799423279616,3.7166312578189338,1.6305766365132672,8.327055573772606,1.2340115717898648,0.0,0.0005057634960700316,2.2823551321597133,0.02706696554383401,0.0009292369885746074 -1993-04-07,0.2799538834956664,18.996167942383767,4.559836962554517,1.2988041987291838,8.173778032198856,2.720751274145162,0.0,0.003188312229789436,1.9937592479182897,0.02648721814654564,0.0010903572427398392 -1993-04-08,2.6980226247228054,16.427831709087368,4.3059587112279765,1.0193346788537538,7.128439157950922,32.13539386080974,0.0,0.04781942773156267,1.957026158904871,0.05422816577484511,0.00799098561768383 -1993-04-09,5.115401283963638,14.92309013819924,5.300543222884891,1.1424034465292086,6.2899807555492915,128.40635149934414,0.0,0.1843337725695946,4.086224105258653,0.1071927041365847,0.03326929606230768 -1993-04-10,4.846127530081832,15.644761536846072,3.51807484267128,1.1043493593062206,6.922922101967338,217.34313946937078,0.0,0.28286136355983516,8.1973189609402,0.15194731816306525,0.06472656933881248 -1993-04-11,1.7015256554158955,17.789872026466924,3.991666025957592,1.0626402443170284,7.733264823770205,134.98851504305776,0.0,0.11574342148361927,11.460160589580374,0.15332473122095702,0.05975760026726335 -1993-04-12,2.6649562351995364,17.178825559503018,5.964615927509373,1.2299739659349007,7.132977492162299,169.37931866652215,0.0,0.18744150970552198,11.377457684916244,0.1635846121779199,0.0674401280572506 -1993-04-13,0.8328252475401248,16.892920452307493,7.024667325404272,0.9599789230971384,6.775497793182547,93.59572651224485,0.0,0.05850899689104572,12.281328629285557,0.152771011322276,0.05280921279820753 -1993-04-14,2.073197104115396,15.746524023535112,5.285009109473328,0.7458168676846457,6.634083141909623,132.97627834233015,0.0,0.1443991025265401,11.555704192643926,0.15876747016036832,0.05636321203880311 -1993-04-15,0.5976177157636999,17.002716895233426,4.762999669390201,1.0658607514432694,7.264638128662794,72.00121229414478,0.0,0.040747241109446275,12.040544137475338,0.1472260266051781,0.042894171376459136 -1993-04-16,0.22310554143607,19.556755112832306,5.549392589219717,1.4541691644400094,8.219367235186045,39.886911840096985,0.0,0.013677739851944898,11.030591780273868,0.13109795241845693,0.030004727491130874 -1993-04-17,1.1078667337243082,20.233360404400067,7.059008139837723,1.4323752103869658,8.25359066985686,61.01459456644368,0.0,0.06194304002518325,9.641291670850931,0.1252204157244334,0.02896341029112938 -1993-04-18,1.1687836601928137,19.637346052861048,6.907574378981428,1.183559158793146,8.012173164542473,63.45337867653929,0.0,0.06265787645205201,9.204767763814692,0.12084484877440395,0.02839440614197029 -1993-04-19,0.3824744002313002,19.988298236551334,6.5507165490850365,0.9698700345510056,8.22649143484086,34.847970763532494,0.0,0.019055993387602554,8.927991893743497,0.10846062696625772,0.021384980365166152 -1993-04-20,0.4754135698942532,20.07552321490132,5.497054796068256,0.9939355618663264,8.4306134466978,29.228831601026954,0.0,0.021284834311366296,7.982249013954651,0.09852604129042933,0.017161547584364684 -1993-04-21,5.604668833801619,19.55011030407412,5.652673623165523,0.6157189485767747,8.177026694144176,213.89785265776555,0.0,0.30828403542505445,7.224026787445505,0.1494456159666448,0.05811215949963085 -1993-04-22,2.789478238586601,16.402139952612927,4.451329711112722,0.8005096598079099,7.036449564792022,180.57902184166602,0.0,0.19099566149252123,10.992102031923592,0.1605460768052687,0.0669101955676176 -1993-04-23,2.001353189850086,19.05887414311864,5.325347904544056,1.1931905227000938,8.010388323101092,150.7593881464873,0.0,0.1450277100894919,12.077766016821853,0.16401220390825388,0.06563800386325841 -1993-04-24,3.48407395017438,20.000997573865682,7.484186891061668,0.9771418570838168,8.038270511601693,227.12106947552002,0.0,0.26794836645921327,12.097361429826265,0.18151316990887487,0.08352635267252238 -1993-04-25,0.4057862318733552,19.86797610596605,6.521901802198597,0.982301685652436,8.151744354597476,90.59246607105666,0.0,0.03057087619956006,13.37103608179116,0.16049064983026373,0.05902659737036511 -1993-04-26,0.4746474380575417,20.274157306184343,7.626626978917433,1.5148099382643594,8.124587821712183,62.05214654622951,0.0,0.031551082906198125,11.805304101098528,0.14305311903809295,0.04322765910865301 -1993-04-27,0.4738869402852248,21.080094804721533,7.748808346915412,1.4964695959202792,8.458714743827343,48.5111975206676,0.0,0.028052640383511074,10.53579227752308,0.12825530676520797,0.032410603294470944 -1993-04-28,0.5423730134049669,21.734817059324108,7.6839012494490575,1.2824624282096964,8.758877835534676,41.61157783170304,0.0,0.028675117770359915,9.387596727235223,0.11567742257149703,0.025463989738949592 -1993-04-29,0.3803606721801792,23.232553795421968,9.316146476884118,1.6235911906131053,9.131686742268283,30.041973740945863,0.0,0.01786068865930235,8.419634802283161,0.10251398762682724,0.019295414213477267 -1993-04-30,2.1715515807662342,22.105407666684798,10.620835846471945,1.736099517626577,8.312831177898682,79.43939850167732,0.0,0.1005828314959949,7.408886774611208,0.11160561864750713,0.02787562975482984 -1993-05-01,0.7683708904597598,21.471546029327623,10.333056363339752,1.4287045140185928,8.072033731608595,47.561674562691934,0.0,0.035963831520475886,8.198437716155048,0.10445724764497069,0.023621749451638127 -1993-05-02,0.34048932600104664,20.222018261593433,9.625768904222005,1.1550074895775213,7.64063987056002,27.45735433313794,0.0,0.014602185619560837,7.712678192489747,0.09381394771656724,0.017600047146684072 -1993-05-03,5.692710444469942,20.503841080273297,9.901853478602234,1.3579290576684695,7.703966187647565,213.03208551385893,0.0,0.3069836168644473,6.989368899972466,0.1477376356353064,0.058199594168532584 -1993-05-04,1.508866969972656,20.351471643389907,10.022818316129444,1.259191214414763,7.596592231192992,119.4975249759446,0.0,0.09755789928784586,10.971663725691448,0.1453897303725116,0.052739831793673496 -1993-05-05,7.3195764980470015,20.111604679343408,8.876368791097018,1.3619717614052151,7.752651513582609,427.42360259154265,0.0,0.5909729215968076,10.821578440245224,0.21133216923544593,0.12431550936938698 -1993-05-06,3.0824466533445865,22.448386928543574,9.187946506743916,1.4970721384243355,8.763511754616033,310.3357412516621,0.0,0.2979099839793342,15.63920717157465,0.2180945881314281,0.12628474979897464 -1993-05-07,2.7598912923417367,21.739285670740376,9.631621656585702,1.6765136712551043,8.336843925959135,276.40714870991667,0.0,0.26673331844245185,15.800952122963032,0.21622125576559664,0.12281952486938924 -1993-05-08,1.3028945903435931,23.04129347497287,9.258873698212168,1.5274667377915758,9.013875118895955,175.49882207151052,0.0,0.1202796424425634,15.806283432641365,0.19931033706132972,0.09826409060248847 -1993-05-09,0.9608167746958026,22.72188918756544,10.302246812381982,1.764078685550797,8.64379810858337,124.23393718582737,0.0,0.07960579055014227,14.377688277498567,0.17868319611045852,0.07608646218243953 -1993-05-10,0.4706456306363708,20.74408502589053,10.255989340237866,1.9690038969568395,7.705380098403308,77.32644887744439,0.0,0.034534729814110265,13.001519664524654,0.15694160188860015,0.0547871336062458 -1993-05-11,0.17342033216162636,20.43498380112178,10.332198805049524,2.1476163486942212,7.532610402935177,45.394289468263096,0.0,0.011223404867617887,11.650789961985952,0.13774404217692734,0.03737277817470901 -1993-05-12,0.12219913808040805,20.80708388070036,9.866292808323767,2.1938329665381198,7.824170471875305,29.682727220196504,0.0,0.006925465215572024,10.268529996289075,0.12104495746680215,0.025382426458813983 -1993-05-13,0.5569792863982005,21.638575784073357,10.155401919197537,1.851537837901996,8.147661310296865,35.392774693939465,0.0,0.028176973218346224,8.976543553014755,0.11105908465927428,0.02081312707620928 -1993-05-14,1.4676315299846896,21.456860327298305,9.57258433023654,1.608928074227989,8.191102715838959,61.909254830021624,0.0,0.07147571280185772,8.185673257442105,0.11245446323330209,0.024431600680847335 -1993-05-15,1.908224301933408,21.040266883546213,9.02737259418548,1.7160015104181912,8.112913511202038,83.10525801185572,0.0,0.09632944063436111,8.280837882788113,0.11869567407899315,0.03057140415110499 -1993-05-16,1.3622712717368983,19.887621832428547,9.610794364281226,1.3682027863002808,7.435605000475794,71.73297814382319,0.0,0.07029000171095734,8.752147004525744,0.11782612309679355,0.030603238387707676 -1993-05-17,1.4739161393233593,20.04808295337893,9.651409156710391,1.519665424944071,7.498788452761658,74.73280627149312,0.0,0.07697241387829501,8.80691214173779,0.11976468695428631,0.031641456950009354 -1993-05-18,1.939700398058852,21.468785700569804,10.298274229474886,1.9071124245770108,8.015654457388797,94.20565823178762,0.0,0.1053199296707652,8.939955937013885,0.12674062823717483,0.03663361648966368 -1993-05-19,1.0584142899610036,20.73876123846832,10.762420323780049,1.9957690936385089,7.542139018493774,67.78285538981864,0.0,0.05734547619687724,9.360840626800943,0.12137726351306236,0.03257845845959482 -1993-05-20,2.5947674050027487,19.963368013404807,10.488159213218363,1.2660962657483992,7.232408990967635,121.30171856627625,0.0,0.1473758738860802,9.051989812666918,0.13567683401310626,0.04364719922458784 -1993-05-21,2.176552694834621,20.690926805853046,11.220345722140177,1.4537251321506126,7.387551126279537,125.42053936493241,0.0,0.1349739163237551,10.17594759601036,0.1438982628628325,0.04896404798115564 -1993-05-22,2.3192968599140977,19.610150478110207,9.22491810522886,1.6215617121271768,7.380736347583164,139.9995475207735,0.0,0.1524979265675599,10.756103080714905,0.15231955421104382,0.05509335606828277 -1993-05-23,1.995878707846892,21.586294751680576,9.921808720208613,1.000849224590996,8.14354908160178,134.57965206121233,0.0,0.1365840400053,11.383665271256238,0.1558626262827725,0.05666012323359583 -1993-05-24,3.836420111355413,19.981289694695366,10.073651359001076,1.151519967567612,7.340039669810471,231.67896685930648,0.0,0.2849584493314823,11.468938057228184,0.17829705736456902,0.08027221074702695 -1993-05-25,5.4864787107529915,20.82076124779785,10.478369929774097,0.9869696079059852,7.638713101557502,392.1689159249174,0.0,0.4940354699841718,13.323147681299861,0.21911940896057583,0.1274776349996309 -1993-05-26,2.049459921243296,21.934716352535165,11.268142713580898,0.6955216376053037,7.97544457510797,243.07217441818136,0.0,0.19918588627355094,16.24798015710122,0.21315278527554166,0.11331094265631547 -1993-05-27,28.45201269592434,22.09661914788176,12.008718785035652,0.8217014700213205,7.855114423088286,3422.947200167999,0.0,5.105734571699664,15.700780218859869,0.5143501357120964,0.8511836126429684 -1993-05-28,6.94120090609379,21.548356083857254,12.357987861848958,1.182668036650515,7.473612809094126,2004.447019006896,0.0,1.7653148497231177,37.30471491836528,0.5154349545438658,0.822875790731988 -1993-05-29,5.118255501129696,19.170557997458605,12.442041651665347,0.9601114106540254,6.18168902767855,1498.129864495335,0.0,1.2815363239694486,37.7029349614754,0.498837868949838,0.7307863018213304 -1993-05-30,3.6369729893849043,18.672068899026037,12.437586116236696,1.787946325053643,5.9040002522470285,1139.169935849465,0.0,0.8874932575375314,37.59549784535455,0.48033036121916517,0.6108414947588595 -1993-05-31,2.1633471778295417,20.54359283564833,12.370735946441586,1.5366562350833664,6.940488549741472,780.8651209624828,0.0,0.49817067653732616,36.46198840786069,0.449959001206756,0.4734829484213239 -1993-06-01,1.113630573512634,24.29012525418805,13.717243232806403,1.8553325570818169,8.478275276071047,490.7432350288463,0.0,0.22848514671723352,33.45895202396953,0.40274717355373274,0.3430053846790651 -1993-06-02,6.828872712966208,22.412360738460027,13.10964272843625,1.621284087567797,7.681922552772542,1106.9825179943377,0.0,1.3286443064948967,29.049765858556988,0.4179618411466102,0.42558610764673693 -1993-06-03,0.2823780603672237,20.933301395140905,12.045888955089374,1.1763427215335438,7.237960316878337,389.0365206189355,0.0,0.051675304619566376,30.64508221364354,0.360283967083799,0.2849048820487522 -1993-06-04,2.037248730894501,20.719139457590998,11.997955818288489,1.3974736750140868,7.140558076614474,411.39243750118084,0.0,0.33205050616130594,26.759170249981086,0.33545877923107,0.23601928256637814 -1993-06-05,1.9714726027038287,21.344716588226376,12.248608283215695,1.1662279004944858,7.383965654449258,368.3964490369172,0.0,0.2983254205732939,24.998561507106373,0.3141826323719559,0.1990619124314718 -1993-06-06,3.984808546540655,20.49724096942553,11.72722236003935,0.9858250210817228,7.105107571586646,531.110188569568,0.0,0.585842931393223,23.318612525802216,0.31806636470468236,0.2187831899339374 -1993-06-07,0.13049947540435386,21.25409922687314,11.779168528917033,1.1774208464232008,7.471312562674383,189.54172211541103,0.0,0.017929468522188075,23.74025237513387,0.2780780929888344,0.14514760028820134 -1993-06-08,2.31918156303016,22.93533369079329,12.349585327804169,1.6384917622685606,8.154227708083642,287.31533025492934,0.0,0.28943923840661556,20.637045108833718,0.2674244940042553,0.13855566572868827 -1993-06-09,3.577737619229147,22.57467022206076,12.644864781061022,1.6202229645724868,7.888410303380138,392.69398580246695,0.0,0.4369808683912204,19.576081730136668,0.2697263148807962,0.15673001892099248 -1993-06-10,0.8503632332097445,21.286359762521588,12.16571249146518,1.437868483499346,7.369827440959433,192.78731893664843,0.0,0.09813639946827724,19.85226416319661,0.24117158865782745,0.11696659257610546 -1993-06-11,4.189661149940254,19.67144038475684,11.31449387812212,1.2253653586854154,6.801108488091456,396.1706935887282,0.0,0.47806687122375724,17.965050765693913,0.2580873899067258,0.1489324978720665 -1993-06-12,2.497807737292281,18.675068552792855,11.037763346599293,1.306173263592504,6.376047225388589,317.661326688147,0.0,0.29454983031249826,19.436057872789632,0.2555146800115318,0.1417976192810719 -1993-06-13,0.5715652886656949,18.75603338909756,11.131481149008057,0.8589504167380506,6.386488067866424,153.32449747855384,0.0,0.06392827912562937,19.410959039653097,0.23278287559244137,0.10203761056106982 -1993-06-14,2.0773177582538014,20.65720655189296,12.169464960421916,1.1597163738760083,7.039395534836684,215.42691109833927,0.0,0.22018900120357499,17.695372128058008,0.23033844644994822,0.09994871695108325 -1993-06-15,5.469660753163684,22.08219438340756,13.286717365123222,1.3437210390383447,7.430758778189736,485.06940561604563,0.0,0.6228174225878895,17.28183723597829,0.26503954349964265,0.15989507049791327 -1993-06-16,4.7420029744708225,22.21113792444303,14.362901680948292,1.6396666037294134,7.137199072418354,533.1844773311423,0.0,0.6000241676881979,19.69765740614083,0.2847054920803437,0.1954467193993809 -1993-06-17,3.8629373378751235,22.49834951246516,14.255893585835784,1.4553377413164317,7.33132635002776,502.03485354575037,0.0,0.5161158379539788,21.269023020946282,0.29277031797783376,0.20581288914289053 -1993-06-18,4.048295970020911,23.045878471851612,14.679233058824986,1.74155775168437,7.484316636745286,530.1226834504268,0.0,0.5562079387484271,21.775675131258126,0.30083177447469167,0.2186653930548797 -1993-06-19,2.7996020025176143,23.72222524015428,14.886781568951598,2.0881162403819133,7.782732496369942,427.12057341724017,0.0,0.38274006829284835,22.29551348755414,0.29234110020947524,0.20061872314914755 -1993-06-20,0.5449046564092874,23.949767904608677,14.686398169548054,1.477043303158292,7.970819460950748,199.8978910279693,0.0,0.06805451664909223,21.54048965979757,0.25727988681758973,0.14095566520637545 -1993-06-21,0.6310493578625115,22.29982173563685,13.960563195006275,1.1500517486042123,7.31984555342657,142.5207063131847,0.0,0.06878718812510642,18.91496144777267,0.22769778867470528,0.10222937870519377 -1993-06-22,5.610963950279127,22.393613980977012,13.38548903744803,0.8390138982920442,7.55590980312463,483.3401411102233,0.0,0.6312702007594941,16.988322227102188,0.2632663789755506,0.16266673445664948 -1993-06-23,4.800364946981376,23.20249365039436,13.171931915409695,0.4176936478037584,8.038837365941907,536.6709860022438,0.0,0.6028821950546019,19.516916682646002,0.2832798625103519,0.19768611925594243 -1993-06-24,7.468949211069227,22.786756666780853,13.844966116692044,1.0866256362378448,7.6164163663204905,859.1487337948025,0.0,1.0603089045707152,20.770512258054243,0.3289706014093755,0.2901320668508934 -1993-06-25,5.168969205834118,22.097764128287,14.692839809946301,1.6157447785672467,6.945686087807539,783.6232638638376,0.0,0.8119083242386207,24.27895624624197,0.34304838839862695,0.31248737584553105 -1993-06-26,5.841962815933477,24.036666904301267,15.200435435624287,1.3754981762116998,7.843130953001636,897.9110938426488,0.0,0.9835015556451863,25.659090032135293,0.3669659321155377,0.3531672356973718 -1993-06-27,5.6475033086382815,24.110372226641356,15.65741852942829,0.9068917350665906,7.725017293272897,939.9167236758533,0.0,0.9935326557255912,26.896303816543995,0.3791133132559074,0.38117529568228437 -1993-06-28,25.44956458281064,24.152476169114127,15.629781006970179,0.9605537898069706,7.757855199444163,4550.050548521123,0.0,6.490045752587321,27.837285546625754,0.6207557163743627,1.2363325442944837 -1993-06-29,17.960412453278316,20.523748703187252,15.017017094719922,0.8457895011584928,5.884754231151764,5433.970216890394,0.0,6.50285419513051,44.665509274547645,0.7295495757645855,1.7949499953442296 -1993-06-30,8.447003394917115,18.905015451137942,14.340951481809409,0.9149007888569792,5.184419725705036,3813.623591246731,0.0,3.426967658192286,54.202612646994176,0.729825598477099,1.6902345362211784 -1993-07-01,6.353256389392938,19.465030689021606,14.257667306493671,1.108510999589256,5.57592993000353,3009.3385986320463,0.0,2.5706987984186673,55.16653429102278,0.716663898171123,1.491690110560943 -1993-07-02,2.0522252188925725,21.45275232690676,14.428380424035252,1.3631081719566107,6.677584219505642,1633.7723206734931,0.0,0.7597836511991067,53.73863961317463,0.6499257918576733,1.086708437574562 -1993-07-03,2.8513824986166036,21.977736382629587,14.265265500379293,1.3855177058994812,7.03235690449427,1363.148609348611,0.0,0.9170669020367677,47.82233532975064,0.5903144947673251,0.8470331010546728 -1993-07-04,3.8199052142794327,21.882333797374745,13.954329284465775,1.0599338164337049,7.089611027941137,1329.520467347839,0.0,1.1033204938370131,43.33594879585673,0.5493337636997336,0.7193755825615523 -1993-07-05,10.043895592677222,20.435513453463585,13.395065824605751,1.3880820661745048,6.493428200243132,2444.60528261666,0.0,2.9207095689005538,40.42068178922423,0.5878781502028899,0.913000872547826 -1993-07-06,9.671805509901331,20.830035154938358,12.844574793545945,0.958752652414852,6.900096634817682,2766.2515658029392,0.0,3.0574862184628895,43.705208842258386,0.6218060685068681,1.059868101411583 -1993-07-07,11.68848857991428,21.17925383588861,12.888418951751227,0.9558513213418692,7.070883773369538,3489.231974811437,0.0,3.993193327909582,45.64830793485089,0.6679348490045673,1.2979469950787346 -1993-07-08,5.3301584314500605,22.18152437026482,13.720814382632025,0.9721140461795283,7.331337938166652,2271.13918233892,0.0,1.8064766135936967,48.58792542590205,0.6281091618120301,1.1199652414429098 -1993-07-09,6.189313706129397,22.620387698098906,14.516422417394338,1.4098550288239862,7.299331910805168,2135.352176838314,0.0,1.96359893468955,45.615535804449465,0.6034914128249592,1.0280316794934488 -1993-07-10,7.241110014013853,22.38759590610109,15.004683907808928,1.3466270232298467,6.99190461990583,2249.5424755439385,0.0,2.2306270292322425,43.97346693735794,0.5966151372624767,1.0088462236911915 -1993-07-11,6.5199017277032185,23.985599648167163,15.440238123985093,1.1274419471242854,7.732315962975343,2089.080451455145,0.0,1.9802643822293833,43.81350221775684,0.5863500685033773,0.9582359821143442 -1993-07-12,12.066167765307704,23.679514341767543,15.3815557048154,0.9222090760126868,7.583091599617649,3233.8624266580964,0.0,3.803512128832999,42.36835849534067,0.6341253660583978,1.2029074974421146 -1993-07-13,8.582896877619271,23.02906367807152,15.146050191929426,0.9329910548947696,7.303979733050509,2856.116729248403,0.0,2.8211680997860586,45.74809287880321,0.6329192359025427,1.2126007639551803 -1993-07-14,3.3908358817598,22.640582784377905,15.325841904827964,1.1112590112757392,7.0165538466341575,1653.829139522342,0.0,1.0458753459480916,45.97041844036034,0.5750251837636415,0.948596077037283 -1993-07-15,2.6120609696137973,22.60659712971682,15.659810862875107,1.0925148664352475,6.866398547175927,1162.468217582404,0.0,0.7203295422342788,42.28784570475501,0.5230535050408811,0.7271722762322843 -1993-07-16,6.4813152007582,23.62825741381056,15.243825698789925,1.262526684688417,7.606236072800694,1636.8386969826417,0.0,1.7085953719128035,38.761756975496084,0.5270511507347145,0.7335138608587546 -1993-07-17,4.60759872227264,24.00910382629969,15.437346952112806,1.5844826632043951,7.751006090014887,1343.750002313836,0.0,1.168908148305717,38.40109818847506,0.5010221920850739,0.6554665819051166 -1993-07-18,4.85189774227368,23.827923891403536,15.82382434325742,1.4855022229045565,7.511443888615016,1263.5887857747457,0.0,1.1653041875774566,36.462705280202954,0.48128714558364427,0.6041127152669045 -1993-07-19,10.373301437151012,23.47178374308412,15.505613607350625,1.3679492654567875,7.427527416075994,2175.102942167362,0.0,2.61541608728845,35.26718710936879,0.5316807823046765,0.7914847206757322 -1993-07-20,2.4244119932070274,22.154588775293714,14.254649882930947,1.4038289813313594,7.1429571486940695,1066.9166200318205,0.0,0.603781752639311,38.88042575254395,0.4811733867231618,0.6071540447704781 -1993-07-21,0.7794555928323895,20.303353106892732,13.784000740646515,1.2785050502598887,6.280640006019209,553.6801724617071,0.0,0.1704824145816929,35.547853038999754,0.42318854349486845,0.42118721302985873 -1993-07-22,7.054988752562744,22.59857599883896,14.310387817546866,0.992829544996662,7.369583697143688,1281.8083439927273,0.0,1.5220296741873174,31.96839085764936,0.45459594452373614,0.5059245824336358 -1993-07-23,9.686276799607818,23.691560412295562,14.798074699743312,1.0978656797573196,7.801761480507585,1913.5306967531246,0.0,2.288451936389194,33.478451272577615,0.5028398494463128,0.6777837388898277 -1993-07-24,5.316332584056003,22.70591169585463,15.254263121398392,0.8816393493419673,7.0916920925337275,1423.1139151043494,0.0,1.2893998379339529,36.54800706490011,0.4876912049821372,0.6375355315658142 -1993-07-25,5.766621095287812,23.44760039249713,15.44974982013682,1.1288537761878423,7.442075816452399,1406.7022097824174,0.0,1.3872508341807421,36.053651982119696,0.487177859266949,0.6262350999763752 -1993-07-26,11.268456181939282,23.90826917493741,15.682237752781054,1.120491814152438,7.619288835600073,2402.2047930524886,0.0,2.920213052001433,35.73840437807197,0.547598090909116,0.8522951939547162 -1993-07-27,13.767604910927489,23.844232239158263,15.68695999372617,0.8377286013835039,7.583025827205522,3441.2898785505563,0.0,4.149223520769247,39.81605611533863,0.6242133623121823,1.186584690118242 -1993-07-28,10.71133411713735,21.974690574264823,15.649388020858488,0.6568746389163376,6.509412093250505,3352.083091662226,0.0,3.5599117849043314,45.083075508837226,0.6499670863060414,1.3144600229386396 -1993-07-29,5.100704511315531,22.777149378764488,15.899298913160822,0.9601565133724458,6.886934941684332,2190.9951943115984,0.0,1.6983177536321286,48.016110310730454,0.6187749201968501,1.1142456622279617 -1993-07-30,6.644326480144299,22.185421639551173,15.623481632167046,1.123485178808084,6.64995149844469,2220.550307313978,0.0,2.111810051897633,45.45367291604984,0.6069064104614896,1.0468758343343456 -1993-07-31,8.346811917846408,22.459466921473318,15.750138762847545,1.1619414613316716,6.762619566952231,2559.1336707127048,0.0,2.673516528230314,44.88017809892092,0.6200583866010344,1.088549351762214 -1993-08-01,12.660662723013926,21.99064143498536,15.214992207918382,0.8751057081852859,6.705261561438183,3737.6809423937616,0.0,4.384238210249903,45.67465281433447,0.6795669193872503,1.376159501206291 -1993-08-02,10.541205806058784,20.91017094962606,14.889109812948131,1.1213681930927657,6.20043442373228,3736.7278672040175,0.0,3.9403114558538874,49.8012994568228,0.7029493203538317,1.4957857844149713 -1993-08-03,6.128829409555162,21.48404712945443,14.876865711619528,0.966408150619593,6.548121869224973,2716.9270824303408,0.0,2.2874319695794254,52.00008938028356,0.6771625370575293,1.3219815528886207 -1993-08-04,5.725378424719738,22.42875014057444,15.373734447588811,1.1413646827801869,6.9039181583912015,2327.1953655356583,0.0,2.013048083942879,49.82747972166901,0.6471531751555912,1.1670641669546746 -1993-08-05,4.746890157364634,23.220957722807828,15.817423964356516,0.9897471981564424,7.1935820352923985,1898.6860915956386,0.0,1.547296973766139,47.377677576643755,0.6072159136040604,0.9953027428517479 -1993-08-06,10.206168241615599,22.88802756655787,15.751244580526869,1.1712073325896997,7.0271563087186975,2905.945365789077,0.0,3.304335140624742,44.337581508477705,0.6353977457406385,1.1510291458428996 -1993-08-07,16.22583897379801,21.26879236214462,15.256659605788613,0.8738210389439611,6.268047790939524,4870.669214551598,0.0,6.004111024990575,46.440933436570695,0.7300254585507626,1.663480476720079 -1993-08-08,3.5622321130925925,21.073580024335023,15.012303066680353,0.8751553555680277,6.25725058842031,2323.9799117499706,0.0,1.3434669462033795,53.72236140217188,0.667326719413998,1.2874102961037674 -1993-08-09,3.2784989262764936,21.66643250457911,15.295120215310831,1.2429971856697557,6.495771828141088,1667.3780213902107,0.0,1.1076226059617467,49.502113279594134,0.6148583874060409,1.0066954989356212 -1993-08-10,1.6065410567921132,21.894238557506608,15.295329289442606,1.4159069509772266,6.633769315552281,1040.1566680260576,0.0,0.47884117969584405,45.597045460670024,0.549889815084034,0.7282220985570995 -1993-08-11,1.6868742960863516,23.148211406444545,15.557632379047408,1.6941460522546827,7.26548187908149,795.2304071249312,0.0,0.4408265683570607,40.8791309022206,0.49586513344074346,0.5411607170015393 -1993-08-12,7.6159458015868875,23.467735774583012,15.655664328623073,1.2887036715967541,7.414741293646136,1628.1613587102995,0.0,1.9101823858957,36.495368201300714,0.5138669344794047,0.6431236792283755 -1993-08-13,12.15293988242187,23.0156484287292,15.510787698546672,1.0540816748099526,7.212010771304233,2733.3877635145864,0.0,3.370550860330697,37.64266061120072,0.5800850225079197,0.9318594493575524 -1993-08-14,5.825829912642049,22.56767315197675,15.32968062483975,0.8621574826961568,7.025086695892272,1913.8638985211867,0.0,1.6886102387731148,42.44920719890995,0.5623714888830746,0.863712558509075 -1993-08-15,3.4312169548906573,22.060327524536422,15.527052538550873,0.9612255353211356,6.648671576898077,1285.568841728298,0.0,0.9334025289891903,41.395035964618295,0.5221954886775451,0.7043606051159764 -1993-08-16,16.679404980808314,22.482685752251644,14.820974465315931,0.8556936607864843,7.174819544873252,3856.947941409546,0.0,5.106355211527614,38.88919946773564,0.647336608911778,1.2360236651524719 -1993-08-17,5.6257755017655935,21.225331815136702,14.83258927001966,0.7384534746902051,6.444293770420492,2308.207168819228,0.0,1.8411319217190307,47.08596756948683,0.6140561086282157,1.084932846675784 -1993-08-18,9.342583113185157,21.838899929816538,14.872903613591324,0.998528567916192,6.7911021282783155,2854.582745714735,0.0,3.0897653697478873,45.59545897870839,0.6399909844946763,1.1767027134030092 -1993-08-19,3.0675377022833996,20.113706255282697,15.217481135074713,1.186048395653455,5.587048235054778,1587.6549395913564,0.0,0.9686027578927221,47.01507368541722,0.5834285050505712,0.913462240271504 -1993-08-20,9.169389801676935,21.347403862926647,15.092792445730534,1.2766980868184499,6.416049246566257,2575.5249913053335,0.0,2.924253367541475,44.29495602437527,0.6228234210339264,1.0398817603390365 -1993-08-21,22.40002935825488,21.161417789890425,14.893000315871616,1.3850543771784338,6.391396032497344,6697.169238382862,0.0,8.948119129464853,46.238425378453805,0.7995915134300229,2.0393974778627575 -1993-08-22,9.732936876270973,20.69624551674676,14.380957324572249,1.0442155866176042,6.330439868129179,4734.289629398374,0.0,4.400021992481971,57.99759494369,0.7890148263256169,1.9975202554514664 -1993-08-23,14.135579778282066,18.86535681294189,13.983934454234689,1.1031881033106328,5.3924630834734675,5951.818277571158,0.0,6.667261630689952,57.43336013560194,0.8337296811217367,2.315480880308734 -1993-08-24,1.680755793973588,19.757028609079796,13.880703093515926,0.9290487257961462,5.987296374185185,2407.3535289470406,0.0,0.7517213754487451,61.670252398863674,0.7379963420292103,1.6217299099287348 -1993-08-25,5.601986953212439,20.82540829335921,13.594479607844935,0.7950125648942866,6.7196439034738775,2578.286105330447,0.0,2.216219316942606,54.628367640844395,0.7016428410141998,1.3931220808492388 -1993-08-26,15.750468265903914,21.23024129695337,13.711952905917027,0.7645916629960994,6.9060839607957245,5303.578378131475,0.0,6.525516427092613,51.25886778463994,0.7806133840297553,1.9004632741342342 -1993-08-27,6.5245565019438025,20.74694527077399,14.003114682845904,0.574068947492078,6.525886566298453,3392.635761917904,0.0,2.7046082041128763,56.07143009590572,0.7292008517734291,1.6489288234268114 -1993-08-28,3.4086351164902866,20.733906656852614,12.822220482414231,0.40155417095549456,6.951650278196263,2090.0649721304967,0.0,1.2704968427881327,53.325875627354954,0.660918627661378,1.2668270775191104 -1993-08-29,8.39372114434439,20.278987417455415,11.212149973095356,0.14030056070488764,7.22303007209799,2829.90427222708,0.0,2.9353811061979513,48.25523693007382,0.6599219970016765,1.2716000238382952 -1993-08-30,2.768279019713209,19.22045165029336,10.853790430800021,0.05389091805133611,6.795223010588816,1586.3760008578556,0.0,0.8906144674601291,47.8759685120867,0.5899711857705843,0.9633610598667254 -1993-08-31,2.008710926123581,19.02366473530211,11.174048665946597,0.23718470352081875,6.597452562750456,1064.0553855385356,0.0,0.5690604726777666,43.549654358621595,0.5307241019216161,0.7137506355908558 -1993-09-01,16.07055092002729,18.370604639390976,11.516080041118846,0.12098257315867457,6.138950256940068,3745.88481053124,0.0,4.9650039617468416,39.54463008328403,0.6478791942316202,1.220613317725907 -1993-09-02,13.467528782662905,18.213868273680948,10.7176932333317,0.09892071316102358,6.329334503500986,4374.554332677087,0.0,5.035061365925779,48.29289029353229,0.7194670560203723,1.5612243759807294 -1993-09-03,15.242313060642743,19.12745289013119,10.848081352548355,0.4013233992660129,6.762736353740985,5601.039738185605,0.0,6.537001597255326,52.941458272944374,0.7942947597104342,2.011638754282473 -1993-09-04,5.414436024952071,20.57153150227913,11.414808458609569,1.0254041786987456,7.333800705991127,3195.999065736835,0.0,2.270781051431218,57.11853135823305,0.7284667206013046,1.655242242913866 -1993-09-05,5.724750726631646,20.70849582362884,12.821155590689564,1.0205665460096407,6.96546667275471,2636.1716489517094,0.0,2.1372832221822033,52.2181550869157,0.6749956118579313,1.4029178480077078 -1993-09-06,7.185840027630031,19.44615162761119,13.18141499340476,0.3662749448339152,6.129914934593179,2703.9897715209113,0.0,2.5329520708238773,49.18418678074158,0.6566726366537974,1.2989129535167783 -1993-09-07,4.013589041313316,20.306530648762056,13.146978733386344,0.561509847539334,6.635849511538937,1883.650829604981,0.0,1.3484428849643697,48.91485888285593,0.6165805734049369,1.050851633356968 -1993-09-08,1.62234379282651,20.545235934703147,12.332232324129116,0.6069147408399375,7.051691294589367,1089.966454819994,0.0,0.4832805573658847,45.568506746293586,0.5497414495615789,0.757641627559425 -1993-09-09,1.701504765492417,20.64041081664081,11.31854018824006,0.4989809005019509,7.4157953918556165,815.2162002520422,0.0,0.4396359849487519,40.48411305864794,0.4914338781427294,0.5601301637520125 -1993-09-10,7.266227991293143,19.95435805582391,11.60832720332292,0.3906967183286545,6.979462545216659,1561.5344139435447,0.0,1.7892314320591405,36.0603301248619,0.5047250598618512,0.6370553279918599 -1993-09-11,3.7731315528240734,19.904281323610505,11.859313989396744,0.6617723056372256,6.876600894622336,1119.0178318551993,0.0,0.9160584949535369,37.360121093820624,0.4791745365217301,0.554176515537056 -1993-09-12,7.431609064877003,20.985625496305197,12.589927889735096,1.1635195475234308,7.217748134335951,1604.3523350388984,0.0,1.809915265666648,35.61328100473709,0.5014438178746521,0.636329202050476 -1993-09-13,7.371379150260061,21.062668408846694,13.197406907352836,0.8439430430432993,7.058985810393278,1742.8057316067375,0.0,1.8660256916064952,36.92990765808376,0.5160799890070447,0.6983503810524497 -1993-09-14,1.6039434642748165,22.51190167956314,13.797956620286524,0.8372073378306405,7.652267818061662,822.8988216830223,0.0,0.3852734567632825,38.100759117127474,0.4625328957234438,0.5132568509610198 -1993-09-15,2.062205549705628,22.69214693473083,13.365948318198221,0.9967865913805372,7.893164259390667,649.7639560903416,0.0,0.43539177833602327,33.83316629317118,0.41815677242554994,0.40040091711530523 -1993-09-16,2.7604688733823672,22.128653975825948,12.885636829873473,0.5937077984260605,7.747717603493957,631.8475568622326,0.0,0.5260744797045143,30.518244592847168,0.38767447442600333,0.3407447893323061 -1993-09-17,12.02220528924418,21.154000487099523,12.684886102535538,0.12013148712681455,7.296897611831221,1893.0085614517104,0.0,2.508360464872048,28.437476282558563,0.4713278896646364,0.603743779159561 -1993-09-18,3.630509718629352,20.69697650461563,12.839153976058336,0.4329683193996676,7.001905855412941,1070.0440687125893,0.0,0.8098897771681242,34.72634682879641,0.4468314022339413,0.5163265071968997 -1993-09-19,4.288944374155636,19.397967643374397,12.803532512621114,0.2179956551389794,6.294092101151906,995.3995011288758,0.0,0.9199102131761583,33.188610020416334,0.4365881276459627,0.4761742084542098 -1993-09-20,2.6345701102099115,20.781980773763927,13.018703621244256,0.1782523938844736,6.994190109713547,723.8041272616666,0.0,0.5451576114803425,32.94686439765573,0.414499615081512,0.3929753293735898 -1993-09-21,1.4261862271314594,20.549445186689624,11.245281149619279,0.3717342792459322,7.439830555186481,467.2441649906113,0.0,0.26853820728275535,30.852813719387,0.3760284889607344,0.29669737870443985 -1993-09-22,2.2951418285138665,20.843026014321435,10.543346153413845,0.3307317698579841,7.784759342198749,467.22717024491317,0.0,0.39157098950004254,27.784869064613876,0.3504117557175196,0.2527585165150021 -1993-09-23,0.07880010264668574,20.36758349657275,10.776408509068961,0.22025123591487328,7.489354818788935,196.34081585267307,0.0,0.011818969407628444,25.739357955528344,0.30076405645931686,0.16633352729269105 -1993-09-24,1.2770711161785335,21.377725382269606,11.230781072829874,0.5986750636247586,7.876856034009297,220.80182759705036,0.0,0.16838936737414012,22.288223786619564,0.2745197264133028,0.13391507735860217 -1993-09-25,7.228827096184663,20.88232915244167,12.388163153927545,0.6121362660862992,7.281009274304674,746.9009269692338,0.0,0.9947003122634825,20.205260090402188,0.3195885364441706,0.2386302384126494 -1993-09-26,1.3260450576289189,21.038747456234805,12.208086636852059,1.0131020351461943,7.425585611199777,336.23035306423054,0.0,0.18742686000609665,23.76464927631794,0.2922895967347747,0.18387557784274935 -1993-09-27,0.9196292545586658,19.584837783768123,12.421652575680374,0.8821310610229166,6.571196634591269,211.3866760662414,0.0,0.1168305339198682,21.69785910898008,0.2634784221171566,0.13748353372805094 -1993-09-28,2.1365522455252393,20.342453516221255,11.482276048445629,1.1318624873874532,7.292843938972691,264.6854786847078,0.0,0.2560810838942498,19.930753352661437,0.2570691655029383,0.12848744679097243 -1993-09-29,4.131765863524528,20.327491905109905,11.22661871256089,0.7983071828637891,7.36588164410188,426.55695363751573,0.0,0.5012931123969402,19.166405217249142,0.27140791479188686,0.15996857082126176 -1993-09-30,10.159358878965227,18.830813955742034,10.516111855343237,0.41894896447069213,6.813137797785017,1109.8320886243496,0.0,1.4932051740309742,20.192193310104813,0.35357502791841794,0.3314945676643556 -1993-10-01,1.5258935572671866,16.77380798248665,10.238944365254676,0.32704428694049503,5.826414154917021,463.8568939001903,0.0,0.24361840218672404,26.506197102258167,0.32655487191599153,0.252881883966112 -1993-10-02,4.972506759030847,17.02127654233006,11.0123518585011,0.6765287517465236,5.681470994552578,709.3344708180796,0.0,0.8017679288954129,25.016508326989783,0.3493517161901196,0.28669523255299684 -1993-10-03,1.827828235459872,15.929369688226526,9.298786116388023,0.8118687047939718,5.708368185557426,428.9059057948525,0.0,0.2973572805857285,26.817496147559194,0.3336986294923466,0.2319021604878563 -1993-10-04,1.5852374195103591,16.541919470187313,7.8197091502516685,0.6147896759253175,6.457643839550367,331.4426218977674,0.0,0.2442453953234951,25.618186353062423,0.3169014638838701,0.18814737670487214 -1993-10-05,0.056378412075101664,18.174285034979032,8.138955785002425,0.4273933559893005,7.156370573521424,143.31448933434288,0.0,0.007816167899665799,23.97414529173496,0.27993932687661927,0.12366522633765406 -1993-10-06,0.047783646379918034,18.524638689581145,8.055716779812299,0.6116716975911387,7.345202853995966,85.87448178256895,0.0,0.005707273595801789,20.909161879860953,0.24413422263767315,0.0813692667976042 -1993-10-07,0.0878140438455976,18.822567664253878,9.000959743696868,1.057273465432106,7.261016640287888,59.31690379763676,0.0,0.009042916908982013,18.192614987975098,0.21295461810398764,0.0543444860183867 -1993-10-08,0.0492122999520331,19.42062088773653,9.177872860204312,1.0502836440131165,7.51008522624552,38.80148895627474,0.0,0.004392053804900563,15.916899615256598,0.18599439102825815,0.03604446128189936 -1993-10-09,0.05774982767982144,20.57441690480364,9.438495177380627,1.1260119755691913,8.00792602542154,26.66889157261261,0.0,0.004452201802970054,13.846572341359273,0.1619759367982197,0.02414116370086974 -1993-10-10,0.25174772411081986,21.023715616604303,10.217098615234583,1.175533252212711,8.04099688440163,26.95737155327795,0.0,0.0167806321515111,11.94874284490543,0.14212745254958534,0.01826986207673028 -1993-10-11,0.1705455458748236,19.904688524884246,10.400747311260565,1.4186942823849895,7.439636144151487,19.3544190945526,0.0,0.00989964834515819,10.485730539886543,0.1241383996132584,0.01340018923460821 -1993-10-12,0.06580725368501365,19.62792955416097,9.565268408347134,1.2904316820323216,7.530422377439476,11.561335289264056,0.0,0.003349064022857992,9.275943365873436,0.10882506817251773,0.009232837855402534 -1993-10-13,0.12168152826093875,20.448053743319736,9.844540004984752,1.0416563668441432,7.865918329160691,9.795578558936178,0.0,0.005422040762941782,8.1213283155988,0.09602548223955598,0.006835729305423736 -1993-10-14,0.4977349592835762,19.133002318322692,9.623628480266184,0.7462900791936938,7.279659509288224,17.797368328790707,0.0,0.019923399736205993,7.121576568265083,0.08875981924385015,0.0074833704329897175 -1993-10-15,0.17385976812656562,19.112339996580086,9.106299628424232,1.038497682885304,7.409241002835879,10.205888863167223,0.0,0.006358335672513815,6.661326449724801,0.07962529042170975,0.005839472970090989 -1993-10-16,0.04236073978037001,18.638495745712248,9.014777290617033,0.8287833776032257,7.206129300231643,5.155838008812098,0.0,0.001370102238097845,5.962310101236228,0.0699503487343197,0.00400984075431008 -1993-10-17,0.43903916136792576,19.04862269044412,9.05506794274479,0.519653052764672,7.399867411486034,11.205384658738122,0.0,0.01298333726078249,5.260413436218481,0.06639476290234031,0.004587122766869063 -1993-10-18,0.5605514256195842,18.396884857642792,9.269000699156644,0.5776540731433065,7.027565284290351,14.12375243568939,0.0,0.015884224739971198,4.974635566823393,0.06448117984857019,0.005404609197756412 -1993-10-19,0.4077453822412323,16.43586761046683,8.406530572501866,0.7464551063448428,6.300597259698726,11.77685542346076,0.0,0.011142376437687285,4.866886828687915,0.061445893100329184,0.005214737987955081 -1993-10-20,4.2305312530071815,15.896330222560318,8.035408710813712,0.9828896758975642,6.14376252672109,106.35116254801822,0.0,0.15650204019823466,4.703940573910371,0.10408054606104422,0.02722429693255901 -1993-10-21,6.128900850036932,15.311290866259306,6.244765553155947,0.9267010579211904,6.3384002106469115,270.39121167698175,0.0,0.3728075082100011,7.982624045977916,0.1643897082428843,0.0744871883005981 -1993-10-22,2.8356801103093554,14.221878357172086,5.519747241759823,0.47945375718135796,6.016007293992504,214.51857921934467,0.0,0.21998238201295184,12.537630581413016,0.17908865823941889,0.08198322610524397 -1993-10-23,3.625173989173116,14.870665107417391,5.9833720552084735,0.9526508862455428,6.205386092624353,273.78792631313684,0.0,0.3152647166734601,13.739262697848993,0.20228392762767494,0.1013709374421803 -1993-10-24,0.7762656729507817,14.070192567720945,5.1992428874761485,1.0258210762771072,6.029047432633291,130.31201551549344,0.0,0.06880092306581886,15.449166316806856,0.18901529427654373,0.0764636727605348 -1993-10-25,0.5164202047825976,14.72565305582438,5.197713726744619,1.0294627439677349,6.326319677778836,82.98283808912282,0.0,0.042460132233104186,14.492545830544005,0.17484428973877097,0.05623943956244457 -1993-10-26,0.380611785162168,15.813426002401338,6.4910202672173005,0.9627932023299268,6.529696349854921,58.133903023053875,0.0,0.028563571788968067,13.333654041299365,0.1597619091196902,0.04095845767058134 -1993-10-27,1.3866619344286488,15.879870225360355,6.406877056269982,0.6506170473854963,6.583843569810863,92.88862292407035,0.0,0.09851395189813106,12.140593021196397,0.1575833591244491,0.041662235400422125 -1993-10-28,2.027319572584358,15.710907432700882,5.894846385299593,0.4474062117106565,6.626788792332536,128.1637872850955,0.0,0.14571427687838412,11.963090280531809,0.16297880001626439,0.04930730838467157 -1993-10-29,48.7426807003553,14.292268432332685,6.067213960006226,0.2490114042971304,5.93709798404468,7450.953079288976,0.0,11.343155648636646,12.359974756676056,0.711804555316592,1.7592597581030542 -1993-10-30,8.039350905881513,11.513544590683393,3.71012849367026,0.3007673475867077,5.25501715137927,3858.759024110622,0.0,3.1457710337603118,52.936396131519786,0.7103261581745197,1.6241855290842502 -1993-10-31,0.805095545512771,10.148366306668104,0.9895688628498402,0.5085679816113147,5.238261515745337,1482.1515854897796,0.0,0.2933165651028634,53.7215790583195,0.6351988318505564,1.101930222860777 -1993-11-01,0.3346515348391685,11.596754944619153,0.9019768457804412,0.3086235187793082,5.828391825332783,820.7408235522826,0.0,0.10573817739314334,48.4118416355364,0.5678636326825893,0.7334049839200018 -1993-11-02,0.08003500523139719,12.667945092745795,0.272203804957663,0.30058096371433835,6.335711372016849,500.11565209234067,0.0,0.021680491632497315,42.92907863663093,0.501027046720335,0.48071334963050827 -1993-11-03,0.5836784138530233,12.722842528797187,0.5844735074872018,0.40608668495169226,6.320315544375583,403.6380093437604,0.0,0.13599368286082258,37.62763156358425,0.4451358832625708,0.3336288443064266 -1993-11-04,0.2617130699549431,12.232781623538955,-0.5442420551934223,0.5439086177482793,6.2730696372734736,259.88566316358776,0.0,0.0530968029798618,33.55677572839368,0.3939624914913187,0.22526146973046732 -1993-11-05,0.5527208925421605,12.036812533931792,-0.20245130054974575,0.7147186436521156,6.161726885306638,214.70833717746206,0.0,0.09854815946540763,29.810810075633718,0.35371457258257194,0.16164004261730083 -1993-11-06,0.5525395176616733,14.03619190117325,1.1278770282194903,0.6979022881053913,6.775526371950327,168.57144319309225,0.0,0.0878040873682927,26.87930813802598,0.3195624474258801,0.11858954007678231 -1993-11-07,0.7367133858761867,14.322553817453851,1.2504500786161057,0.8073331838547414,6.876750071841902,150.6308356099358,0.0,0.10391573935075082,24.014235925935434,0.28833179731356856,0.09301892332522693 -1993-11-08,0.0010941825581434802,13.717738454869306,1.1806084419160732,0.8445898172293651,6.649073557192649,67.08898990140015,0.0,0.0001355664898122274,21.652404054125043,0.25224858998558036,0.060571589196098355 -1993-11-09,0.09012214875867272,14.343804546806414,1.3708631699119052,0.8852128582378118,6.876358226009516,46.30153443289549,0.0,0.009754667675813095,19.05962096801989,0.2230815384652316,0.040914549959462546 -1993-11-10,0.08428856420711882,14.192498790597227,-1.2287821211723688,0.8440774057531896,7.098721839402586,32.43964418282532,0.0,0.007972939794862563,16.797517594508495,0.19666160882640776,0.02784744690625458 -1993-11-11,0.036186086457976566,13.422522996824204,-1.4337852153710389,0.4078716504595602,6.830858681427662,20.582237462615435,0.0,0.0029803317317406847,14.756770591171964,0.17232792701035207,0.018581178639999068 -1993-11-12,0.9870093552217858,13.287649136387458,-0.3430878020862113,0.6763638619710493,6.677607151967997,60.6260298407468,0.0,0.07396685518654689,13.01196503959456,0.16307857112687799,0.023358020379693048 -1993-11-13,0.4885874495971077,12.757679773039275,-0.0427771371653034,0.8220395943018459,6.443423150963714,41.75191878130609,0.0,0.034046671384083294,12.355052794699965,0.14961971070417912,0.0203890821234565 -1993-11-14,0.32356084190277457,13.244796324194047,1.1881264696942626,0.9968724206549896,6.478757633280467,29.036675052514656,0.0,0.02060080744882853,11.392943911860115,0.13648934557323275,0.016409111441408813 -1993-11-15,0.04851851029545606,13.092742535803952,0.20788499238666366,1.1595637608224416,6.548968400098881,13.861705276049172,0.0,0.0027731199770774095,10.390193547419901,0.12160392602814427,0.011103808803403956 -1993-11-16,0.07931038562473149,13.526417711097984,0.5770871528990936,0.5336335687734443,6.676100228637056,10.122829179320249,0.0,0.004027038558667831,9.24857343245836,0.10866352932639063,0.007841233763234883 -1993-11-17,0.983317800185448,12.269140190423563,2.2724545470741497,0.5650246831204485,5.920097271475684,35.98635237055447,0.0,0.04688767456518572,8.24712492914348,0.10752840663276242,0.012243615757136256 -1993-11-18,0.9887086498402128,13.186364330952015,2.9671556089724733,0.9250524400124572,6.18071387650128,41.642528605959505,0.0,0.047353520491210443,8.281994428040436,0.10799741242773808,0.015180291447302955 -1993-11-19,0.07197799353129533,14.146855554650777,3.3612553368405353,1.2511498702027009,6.518646260750732,14.968659407433499,0.0,0.0032597014225380916,8.276194973013137,0.09725056139885571,0.010377993955027396 -1993-11-20,0.0005953770033614338,13.696486336295907,0.44165967246033183,0.8754565600628077,6.770677252624288,7.185836409628164,0.0,2.3951004504033785e-5,7.406171232789911,0.08628381489451274,0.006759233193266327 -1993-11-21,1.6388938220758773,12.36686839386806,-0.4604897758391458,0.6766068019771306,6.364347177610193,47.22921833016446,0.0,0.06551649898225453,6.5409356578472435,0.09528947378754574,0.014375797957695878 -1993-11-22,0.0024409282998182555,12.989551006088991,0.6544899804625917,0.8491184000662856,6.4719056710602745,13.222792798044091,0.0,9.647952167304158e-5,7.279021353912096,0.08482410433846309,0.00937265924040437 -1993-11-23,0.7439912260246472,13.316864035868047,0.4813503138949309,0.5824149094711369,6.625167543923743,24.42217171834246,0.0,0.027588117194710438,6.468019847774672,0.0840150447951329,0.010301859047427185 -1993-11-24,0.24619305365959315,11.826090755969444,-0.1950333923721249,1.0693371066607429,6.13263210572966,13.995378584769552,0.0,0.00867956698051936,6.387444303006817,0.07727738268452132,0.008027618346877827 -1993-11-25,0.011708109133737382,12.119853250557663,-1.5141693102065457,0.6325570006828872,6.391728825374929,6.099102028393472,0.0,0.00037577198387967435,5.932532774223851,0.06924638065277666,0.005282819081508964 -1993-11-26,0.4371619891302317,11.58139642603613,-0.6914428028936341,0.4233287324409121,6.103841716635595,11.99870076778118,0.0,0.012998298440961398,5.290686139423968,0.06672555160771372,0.005418049888595069 -1993-11-27,0.018819688286165943,12.195945838805597,0.19504848238389344,0.661961378239676,6.232974342902214,4.625793367663051,0.0,0.0005210220550239848,5.126738630744091,0.05994226967285506,0.0036062291339678523 -1993-11-28,0.3605874784958008,13.3615494577423,0.8679384264100095,0.7997628449126205,6.605605074703593,8.492082775036232,0.0,0.00927039142994951,4.594980306546011,0.057729008619821005,0.0037590397183848083 -1993-11-29,0.3442384130881964,13.620246927321384,1.5895486126602467,0.8179782534331344,6.611877892790526,8.514944171498747,0.0,0.008456470931818727,4.393941989549484,0.05519659283680441,0.003734580807009494 -1993-11-30,1.6675022919948894,13.849824483817253,1.291564823619347,0.8228041546429707,6.748466061709103,32.51983844354053,0.0,0.045245024025065916,4.200978686613385,0.06836382906958344,0.009320259884024903 -1993-12-01,0.19754449799104665,14.567520950688275,2.483620547975548,1.1625300666909568,6.871184028564926,12.410662731901677,0.0,0.00563162927722724,5.187447293748399,0.06273150747757733,0.006924549884732813 -1993-12-02,0.04767274519703426,13.62803672888294,1.083774438670978,1.1154784127537634,6.691926057876801,5.83962218342211,0.0,0.0012251130573242217,4.749510088004764,0.055883931194460966,0.004694098082456515 -1993-12-03,0.1455866197388391,13.639308482378011,0.3980415462192337,0.8180477241484372,6.785259981335038,5.373392932014392,0.0,0.003380487130347082,4.246634706461888,0.05116640389134825,0.0035703663339587436 -1993-12-04,0.10061920009646927,13.60463442217532,0.3206723060512729,0.7999448400275063,6.782889006360227,3.9156240464638286,0.0,0.002124059987846122,3.8816497539971304,0.04639073638973042,0.002647560187673647 -1993-12-05,0.3445257731515738,14.140585576535045,0.040442259358580895,0.6330916939515037,7.026288247145212,6.320179998043872,0.0,0.006824194569209963,3.5199878409794927,0.045018966427013696,0.0027625216825387143 -1993-12-06,0.0315120727776094,12.95573257382351,0.9124858256642244,0.4599632242837222,6.4546248545521525,2.581441658352067,0.0,0.0005768991317064778,3.399960937562395,0.03997433666239918,0.001886113192037197 -1993-12-07,0.0003299096550867075,12.817364744042854,0.745678664499688,0.593729927549365,6.424128536024946,1.2959704343144904,0.0,5.3921059640471124e-6,3.0529069900475387,0.035568142127593,0.0012285920684857725 -1993-12-08,0.0401548183141005,13.822159727177533,0.07808124555490213,0.9397958768506424,6.903527835615475,1.1887983510113922,0.0,0.0005880478215212134,2.7183029545085913,0.03213416493370594,0.0008892946607023621 -1993-12-09,0.0007486468157970642,12.829610661878002,-1.7485133689825652,0.6856966128778896,6.706688850302059,0.6196608916642617,0.0,9.734936511522152e-6,2.433535863427965,0.02835776596561542,0.0005803713151644314 -1993-12-10,1.0271805498707005,12.579111171512894,-1.7309264314445938,0.7362383454547756,6.613198751722945,9.959429816633596,0.0,0.014662642388224345,2.1559365804572663,0.03708115885515077,0.002610398360757488 -1993-12-11,0.5855163071555191,12.194766402088606,0.2508729560738304,1.197757864380222,6.251026445255299,8.93238445946784,0.0,0.009770326125029816,2.823553192421862,0.03971335093441992,0.0031869231318374415 -1993-12-12,0.01304317203087806,13.11963432126743,0.41777447226891934,1.2124469744134856,6.594289785526676,2.846041345451033,0.0,0.00021305993477132093,3.0448466460989723,0.0356223454761585,0.0021069786960018467 -1993-12-13,0.02582420758926453,12.270837349250758,0.4708835393266338,0.99225281963378,6.254287342294041,1.6778253642619658,0.0,0.0003765244294156207,2.713564677842658,0.03191202530969052,0.0014288755098008745 -1993-12-14,0.24657046324063436,13.075089843349732,0.6803383570773919,1.2568791313709309,6.545737062278323,3.168865764550931,0.0,0.0033874843531273013,2.447048468387258,0.031378836344814046,0.001445925335157767 -1993-12-15,1.5424652712975295,11.861229649639704,-0.3210678316052413,1.1041299785211272,6.199336473684365,18.21672025517583,0.0,0.026141610182737418,2.3928125248113945,0.045843321223189654,0.004921675770059049 -1993-12-16,2.6718356347365826,10.42940139190888,-0.7165248523965565,0.6651115791123943,5.70098259510469,50.37495748702587,0.0,0.06986522170080267,3.517757298521074,0.07210456587351466,0.013841791717140249 -1993-12-17,0.07278474081367342,8.114413308184862,-1.828723434237625,0.8814699502155496,4.978212754513228,14.622770068849963,0.0,0.0022078217679690204,5.582092714594598,0.0658754926837392,0.009346529323552372 -1993-12-18,0.0,8.170296466972328,-2.685071984626986,0.7750593622028019,5.103001380961085,6.5325314632220834,0.0,2.6645352591003757e-15,5.170808398423949,0.06023641599759499,0.006084151302754792 -1993-12-19,0.017823812100263566,9.299440805117882,-2.579868345691489,0.9019621080790116,5.499482551252255,4.287174398206146,0.0,0.0004534861193238836,4.717675524323528,0.05516536023112014,0.00402954650391348 -1993-12-20,0.14000744347454636,10.020603699870962,-1.8728688391791657,0.6721016954546163,5.689284374684023,4.794506707469377,0.0,0.0032810172807315463,4.288820728301684,0.05159284885092514,0.0031226287361982644 -1993-12-21,0.6710339577530303,9.685916407013123,-1.721195405679484,0.8108764425733129,5.5491799692412975,12.435231295310393,0.0,0.015629644851671398,3.997018102602719,0.05437964514247412,0.0044125288661552 -1993-12-22,0.11643530362767232,8.614014229437169,-3.219486249962741,0.9027132837101572,5.319151022177897,5.544321607214161,0.0,0.0026798771517063946,4.2238388619623555,0.05056125465058472,0.00328039978867361 -1993-12-23,0.005654211868326946,8.898446446049869,-4.208002484834823,0.4995213410833447,5.502419035632869,2.4400190697137196,0.0,0.00011983805519634634,3.94468862731121,0.046018818772412276,0.0021536331978849166 -1993-12-24,0.0,8.251285356896764,-5.9114487464127565,0.4022817381128233,5.3867005700385455,1.4254157139592396,0.0,1.7763568394002505e-15,3.5782778779013733,0.04168451394833261,0.0014019139910630505 -1993-12-25,0.0,8.966945840807934,-6.876628579569032,0.2891957407043345,5.6604426709662565,0.9141515679227525,0.0,0.0,3.248649990641106,0.037844572296758416,0.0009125801182244659 -1993-12-26,0.005449043455941689,9.226454283610442,-7.662398990125184,0.4031913334184484,5.763055819613285,0.6500894671606412,0.0,8.564718106166078e-5,2.9344554343659386,0.03424789616518134,0.0006070878142647415 -1993-12-27,0.0,9.023664408135877,-6.982767212908349,0.4686080325178896,5.68287271749307,0.4001582653538405,0.0,0.0,2.650644592414565,0.03087821439663574,0.00039518563395907625 -1993-12-28,0.008232966975203962,10.218445055990143,-5.924079515509125,0.6473665268145331,6.049012185116035,0.3265194593660679,0.0,0.00010545452375025112,2.3936569680239206,0.027980391102703048,0.00027330428308318134 -1993-12-29,0.003084595644728611,10.87491209585358,-4.981950270738767,1.0197523040126464,6.235798983784017,0.20723559580719478,0.0,3.549369387654882e-5,2.1541799075715855,0.02513067049094107,0.00018331268222014654 -1993-12-30,0.007731268535467186,11.636089164731867,-4.081609765437642,0.7618869940237294,6.457236279247959,0.1739036956885593,0.0,7.966840433831952e-5,1.928055465277991,0.022550604469535954,0.0001314586319159605 -1993-12-31,0.09094063105670468,11.564431257653544,-3.673953188922534,0.887633603106902,6.407706654875965,0.650445904477489,0.0,0.0008573433641421019,1.7229254839198078,0.021130311828798206,0.00021611658338284846 -1994-01-01,0.07915275014544483,11.802739598097045,-2.792643325167485,1.1703240749739698,6.432620563632098,0.6469765443909116,0.0,0.0006983518980814979,1.6159990704665632,0.019747370696734438,0.0002470161314056269 -1994-01-02,0.008927441557892699,12.634505081730595,-2.717609267746219,1.1314787464508598,6.731427877284879,0.25219462133820264,0.0,7.199850392512752e-5,1.509569669331041,0.01768946296492661,0.0001717587276297065 -1994-01-03,0.042176086906458084,12.795284493977775,-2.2988717924800413,1.0295712595282471,6.759597412892277,0.3196920379847227,0.0,0.00030667273137680723,1.3446104965990489,0.016155124519675206,0.00015850231279685204 -1994-01-04,0.00385709564987219,12.540581687231775,-3.3372762563417084,1.2376415113149095,6.7382868316858096,0.13798612345662345,0.0,2.5233700495731672e-5,1.2273685770651526,0.01434294526000735,0.00010701975969518739 -1994-01-05,0.6857490702242669,11.562174966541198,-2.6827216519519044,1.0239646675823646,6.336101994160409,3.4915310572307687,0.0,0.005233798630808972,1.0901887344683971,0.020688472700309102,0.0008665879930862786 -1994-01-06,0.6056358855377075,11.839519877323893,-1.930933815054636,1.1493128191638504,6.373610341816557,4.85003303772469,0.0,0.006095895415379582,1.5843896051895527,0.025512313808609317,0.0014922981843597848 -1994-01-07,0.4161039872483376,9.715314906189066,-3.0708906291987983,1.0313730664454974,5.700837281650679,4.48285178781971,0.0,0.004798193420878449,1.952177374672659,0.027588873987190364,0.001702011811132049 -1994-01-08,0.008554118738724614,10.62911286574945,-3.6841346482930764,0.9762727300365118,6.074234734018752,1.4789167080321795,0.0,9.78168903136619e-5,2.1381061473504817,0.025007138309953606,0.001122823761072431 -1994-01-09,0.01083955226724264,11.40717465642302,-4.643172311201688,1.2399461165447303,6.404489870761464,0.832790618299507,0.0,0.00011158129748544549,1.9244895561821393,0.022545273443963638,0.0007478953966528485 -1994-01-10,0.02844796132097271,11.83731646925609,-4.335590075065869,1.0819939698929169,6.540344734105958,0.6674595734459993,0.0,0.00026363056198230525,1.7242557831415495,0.02041781163350907,0.0005269863997633701 -1994-01-11,0.00870380577482128,13.007591143906012,-2.579234910474914,1.4835220961880229,6.856117655260079,0.40626025322144,0.0,7.24268821426597e-5,1.5575820102048312,0.018246169015127257,0.0003540714406399538 -1994-01-12,0.007023515158642214,13.66306992934947,-1.5238564591586867,1.4633199001038164,7.01845646615946,0.2697895727260244,0.0,5.1873440826822985e-5,1.3835850971314627,0.016199648566610304,0.00023838236418126903 -1994-01-13,2.855666805521511e-7,14.335854851211344,-1.2768801788506263,1.512813462891357,7.252483736389245,0.15858785922487695,0.0,1.8611106265214136e-9,1.2246307131861862,0.01426612177448154,0.00015517599849247633 -1994-01-14,0.03378789443434281,14.014028156471975,-1.4343162820243371,1.5478912032557466,7.142296307786635,0.22931331692521076,0.0,0.0001960087136238936,1.0736513557359983,0.012900917269659003,0.00013085750399539545 -1994-01-15,0.6341432581901874,13.740650080930596,-0.6247357154235234,1.7138536908883524,6.963154981545041,2.9415129919867797,0.0,0.00435504218637639,0.9730185450085581,0.018722346583646743,0.0007483015938848813 -1994-01-16,0.426222975914141,12.834148544800188,1.4078234586594849,1.8452439330598296,6.352788961508654,3.1588490097678243,0.0,0.0037018887620823837,1.4167491480561918,0.02146937712201539,0.0010507764187705116 -1994-01-17,0.22108445613500094,12.015002081870508,-1.8241071413132424,1.691619067552382,6.422202791443853,2.268826246825567,0.0,0.0020674385708234766,1.6436380498836376,0.021722754342793422,0.0009988041264129884 -1994-01-18,0.0016218090103997265,11.624510280029519,-2.1363511265653305,1.416617323726429,6.304731077645332,0.7972948455605026,0.0,1.4361583212290372e-5,1.6608226267247224,0.019366351813451498,0.0006523613057059255 -1994-01-19,1.6083430255315152e-5,11.914137500748014,-1.5124278336294184,1.543527341611143,6.35277823222857,0.43596579525783524,0.0,1.2713224732434226e-7,1.4840738644395226,0.017288642817432722,0.000424675906795945 -1994-01-20,0.007314873705507194,12.161875266294253,-3.0815574620305015,1.3900146441001633,6.573346087533391,0.3109426627994373,0.0,5.168911700269285e-5,1.3237121710574713,0.015505563655545585,0.00028431448721370534 -1994-01-21,0.0007485470660679581,12.344472610508006,-3.1142904570254513,1.6332873601705564,6.640548403309226,0.19119314343119867,0.0,4.710485155919671e-6,1.182252989398862,0.013781166731688489,0.00018579260934731412 -1994-01-22,0.0,11.684793531289394,-3.766916753781927,1.0983070450499008,6.443397318176679,0.1214491619814322,0.0,0.0,1.0494689731970728,0.012225602802326985,0.00012094225643246216 -1994-01-23,0.005505024189384733,8.938810723818591,-3.4009224706813628,1.0800067570395089,5.442047799049079,0.0966856835245232,0.0,2.7434792361146973e-5,0.9345616233755663,0.010951139799619428,8.290507707744011e-5 -1994-01-24,0.006428737700336483,10.564097981426645,-2.8323431297788817,1.0681125654337589,5.971352545864057,0.0746774030654533,0.0,2.9263786294651643e-5,0.8531527948362667,0.01001354271674559,5.8423152410506395e-5 -1994-01-25,0.062275274371813766,10.754887986409383,-2.4411221670207444,1.0212179445635197,6.0047329279321335,0.2135808417365038,0.0,0.0002659456459215004,0.7723981841145116,0.009723380522639007,7.852487968712232e-5 -1994-01-26,0.4620829840334459,12.148453572069887,-0.9973923643138168,1.0451312798735424,6.3790085538061465,1.6407780635894098,0.0,0.0024096291787376045,0.7495484042733751,0.014114685116555215,0.00041801764546379956 -1994-01-27,1.0060124131837398,12.90953450121501,-0.3209694537186861,1.3184245588504848,6.594641347503656,5.957627328730746,0.0,0.008487611318347854,1.0802427859417292,0.024303460188153676,0.0015644740494554171 -1994-01-28,0.050208973372108334,14.06521187936612,0.6103964646879975,1.7368891198990102,6.936535145506328,1.849856700201467,0.0,0.0005025879215561635,1.8518839540628171,0.02215809444379639,0.0010949255116079516 -1994-01-29,0.035958321677534565,14.88090638959967,0.511569968982577,1.6071387231751582,7.2686559350929345,0.9928492685928803,0.0,0.00032493097435606216,1.6774395543358431,0.019959924885322642,0.0007622205875469886 -1994-01-30,0.17362524939852464,14.447414521735524,2.2551257797593114,1.9081815983174,6.865532654448277,1.4795522751306758,0.0,0.0014692657603689874,1.501443381415272,0.019513415136591765,0.0007198871953255706 -1994-01-31,0.2957615609952633,12.41109249879526,0.4704535191413819,1.693355480483354,6.29613767983094,2.23090345906004,0.0,0.0025645963227787227,1.4793595761846439,0.020678959076859987,0.0008591104058960298 -1994-02-01,0.8235087231198299,12.306807780506576,-1.2137925614820606,1.003148518667487,6.450672780464077,6.445572540196026,0.0,0.008772859293164403,1.5848683934565635,0.02805596237474233,0.0018950379232170135 -1994-02-02,4.6375910851151305,10.372183537459476,-0.8819671789737092,1.3590147706739402,5.681473151915446,74.55944306741152,0.0,0.11145006205476449,2.1435130759673795,0.07899527108652662,0.018203498999661 -1994-02-03,3.880331985605597,10.560303767335826,-1.3623194231419968,1.067101584004569,5.808044189246606,129.59032519207017,0.0,0.17028097554453936,6.116780195362591,0.11645958653021646,0.03777741633948078 -1994-02-04,0.33745390719527113,10.562100377347232,-2.4881526714121907,1.2284262351606627,5.922114842463256,45.99758966147631,0.0,0.01688257420380279,8.987122319894096,0.10862499813132478,0.02716194382402403 -1994-02-05,0.0150774023226815,12.212861173290072,-2.9848566287571354,1.3017293221051358,6.557511440097703,19.904243244967752,0.0,0.0006879920284691317,8.365880580010149,0.09763248462968353,0.017785905767989857 -1994-02-06,0.025195529910165018,13.01315012420458,-2.8106588420328493,1.198038186068414,6.834344255978224,12.40954600236633,0.0,0.0010185795146696285,7.429550159481058,0.08684273867879465,0.011732882495780392 -1994-02-07,0.001260058896007468,13.252099641750815,-4.7974600792838125,1.2547791723860515,7.018191843598628,7.736827424837934,0.0,4.487752800222096e-5,6.575021249475597,0.07660922356531723,0.007644388325881266 -1994-02-08,0.004354955021813357,13.596992051660775,-3.9013590394038866,1.1323203531515598,7.102308524613723,5.072815470800438,0.0,0.0001360537641432527,5.781221005703772,0.06739804175729551,0.004996853709384605 -1994-02-09,1.539366953510645,12.904763076890314,-1.0292832003103285,1.5269755517336625,6.640386469482184,35.0434244139342,0.0,0.0486523108764203,5.079179761917115,0.077101586933977,0.010660749974964665 -1994-02-10,0.2347549683844234,12.543987660143864,-2.019738993833277,1.7484098439397326,6.593076053177827,14.718066452776638,0.0,0.007586598257384336,5.86127591809577,0.07101463139189829,0.008094818838514543 -1994-02-11,0.05248636431668149,11.937987030405841,-3.3228698429880423,1.4576194693001268,6.467201446282302,6.931843699639187,0.0,0.0015379185418848626,5.404442738586007,0.0635695284342808,0.0055035174247679425 -1994-02-12,0.11944402785240466,12.62395901307319,-2.356001045232301,1.570760189387448,6.644327639357687,5.783372031956434,0.0,0.0031590682689214833,4.850643989085803,0.057898159487828296,0.004063545990463577 -1994-02-13,0.14339564689872167,12.270853117345068,-3.23933930681508,1.7082136358506028,6.576022025080858,5.092960464242955,0.0,0.0034514619692642967,4.403499001935832,0.0529682433500954,0.0031707135257426195 -1994-02-14,0.015758719090891174,12.547180867052546,-2.7214690409220816,1.3571157080943366,6.638019025773293,2.5024163735864553,0.0,0.00034212407387985977,4.0344198345447815,0.047181837233748,0.002116078926104884 -1994-02-15,0.1752804978316265,13.287185861761198,-3.109534034800602,1.4670422696641745,6.92928647102259,3.6725956735227503,0.0,0.0034579083540436095,3.58996526164246,0.043862563147764516,0.0019039855551110038 -1994-02-16,0.0864856010605858,13.08499987107728,-3.615519494748016,1.5018856883730238,6.88209869122725,2.460468939627695,0.0,0.0015582427236652402,3.318976660424334,0.03967132905358479,0.0014766705833578967 -1994-02-17,0.0077866047512029895,13.895563515842873,-1.7877595286109975,1.8930414183930868,7.056599750803422,1.149178557882565,0.0,0.00012540348569059327,3.0049376587158774,0.03509619735195844,0.0009803376795068334 -1994-02-18,0.06515775764702471,13.400863814672016,-2.0427341604770533,1.8389310064090931,6.889418789030423,1.2638772341169522,0.0,0.0009345076756547416,2.649765653820829,0.03162701910684472,0.0007804463524107819 -1994-02-19,0.017540984199103847,13.33918208726162,-3.7556985804665666,1.7778796852455423,6.971364226395008,0.7104956627899568,0.0,0.00022532258684156842,2.3958163657219336,0.028113978720427178,0.0005423425869352487 -1994-02-20,0.05888712332271645,14.728757341756294,-3.595988747946522,1.4150928503632543,7.461909834087047,0.8130541751666167,0.0,0.0006776813028457895,2.1265350628338417,0.02545868842787215,0.0004562265236086599 -1994-02-21,0.01859379752058167,15.64718095881841,-1.51610096048222,1.9487781669448492,7.681377423789537,0.4617534561644384,0.0,0.00019010226001038577,1.9075802808257007,0.022438623543354498,0.00032592790165377687 -1994-02-22,0.6115253612347499,15.033481794776275,0.4037934269922994,2.27118726069092,7.2746940898421295,4.446181814992915,0.0,0.006459787323073063,1.6742499640563357,0.026627734536293884,0.001195761794513869 -1994-02-23,0.14257089706352705,13.61365293890407,-1.682313697705779,2.0173575394228416,6.9242716706627245,2.1847227759148913,0.0,0.0015776775535797927,2.0023924302789884,0.02498737012277822,0.0010186094416874503 -1994-02-24,0.057310767827708366,13.819355248863321,-2.199051862430934,1.3796581309412017,7.036183340601235,1.1670675271359152,0.0,0.000587082086937675,1.8919243152464391,0.02270726863075197,0.0007524587924831566 -1994-02-25,0.37158296865448615,13.849264319732358,-1.4214072642440896,1.5476175298508836,6.98411597426802,2.994517235429005,0.0,0.003768408347621599,1.715682109645855,0.02431522459661705,0.0010636111492491984 -1994-02-26,0.007820685035522029,13.458607160201645,-1.408593274688506,1.5142738639859354,6.8336800679210326,0.9643205275447362,0.0,7.685216603237587e-5,1.8389406012220457,0.021513518296514496,0.0007040627460380896 -1994-02-27,0.03238609405470478,14.350967145164795,0.064652108330468,1.6057104735671364,7.02794065639076,0.6656502321519864,0.0,0.00028443947251505924,1.6319040404198994,0.01938785295379767,0.0005016218683824343 -1994-02-28,0.8544052508315674,14.037549140373965,1.2202389948664352,1.652011429624117,6.765518436486484,5.97833466252389,0.0,0.008624317289430472,1.465248207149248,0.02702239183872696,0.0016397119728056363 -1994-03-01,0.22779389539253594,13.743631368734956,0.7682259725686347,1.8110814647246625,6.703885356986225,3.2895074293204623,0.0,0.002633843931686336,2.052162753161233,0.026559950892906248,0.0014684170757089646 -1994-03-02,0.05840873187155904,13.387785755967537,-0.969755356787952,1.0529266154635757,6.75379857252031,1.564424976770573,0.0,0.0006384972436800362,2.019462120151563,0.02420578822257105,0.0010530911384327294 -1994-03-03,0.1233803109166438,12.97737459676586,-0.8544413684594322,1.188626955051233,6.584856520326398,1.5537815235204229,0.0,0.0012505990423714447,1.8388163700881492,0.022858262468617226,0.0008759350148992921 -1994-03-04,0.01564517537571682,14.266715309261091,-0.8489338045811022,1.6810601693545228,7.06675950900187,0.7418293763339752,0.0,0.00014594998368895953,1.7421554080770003,0.02047718635599535,0.0005924155668617615 -1994-03-05,0.008539541791139547,14.57546475035603,-1.1635213939228928,1.8616858894078,7.2063461364844805,0.44601615908325126,0.0,7.054348207154865e-5,1.54636732940568,0.01811361201460848,0.00039637597776621497 -1994-03-06,0.043924894892017806,15.356175020385244,-0.5678368270076596,1.8107909773580568,7.448187813705942,0.47493448999334614,0.0,0.00032421427245834383,1.3642783905604632,0.016404614593252025,0.00030738854439248006 -1994-03-07,0.06661756767741782,16.26489814182601,0.062024621500688965,1.8610326477927732,7.738387915593259,0.5118514843552863,0.0,0.0004478696617648409,1.229831602291251,0.015102754831482865,0.00026829026743503307 -1994-03-08,0.1962741323616257,16.854447493206404,0.6979803972049452,1.9627683717181101,7.905400076428349,1.037300903984054,0.0,0.001278531634091945,1.125882658687275,0.015402231207008475,0.00036931968325304513 -1994-03-09,0.02259704967811209,16.310546096180552,-0.6436081364267131,1.522937456152662,7.806688095032808,0.4074363228134359,0.0,0.00013895507932808193,1.1444449258874942,0.013595248655558723,0.00026156771935730537 -1994-03-10,0.07431617448622183,16.431174527978634,0.07506235662708685,1.811815882767978,7.7890273207379455,0.45514178876677763,0.0,0.00041478014664439455,1.0121932329286247,0.012657098775945622,0.00023342469641370327 -1994-03-11,0.160393826279157,15.761347610108484,1.3973726899134362,2.052870209656636,7.386615158175388,0.7470102542842026,0.0,0.0008725662201611861,0.9426992101897093,0.012850286823437812,0.0002848096036791128 -1994-03-12,0.1328993196295342,16.539554883745595,0.4749856769347421,1.7022513092433689,7.785975890848028,0.7140081785442939,0.0,0.000728788699577293,0.9646228728578382,0.012785390263814901,0.0002963665117113614 -1994-03-13,0.3865112212145409,16.693363366907427,0.9598015880183716,1.6856255173091788,7.794513079570383,1.7781708173650652,0.0,0.002355826913665149,0.9523074935817049,0.015596331334654124,0.0005516301196869532 -1994-03-14,0.10494956360307038,16.292122153893747,1.7331695199545842,1.6458562097707303,7.546066780082097,0.9421097511593706,0.0,0.0006779408000450043,1.1613833171630163,0.014751920458029083,0.00046231178319806345 -1994-03-15,0.16377799336483012,16.947430382797414,3.3614095495715426,1.6875834613750895,7.595686524154046,1.0260940957570988,0.0,0.0010333819789752896,1.103878871812623,0.014767343979775064,0.00045829091446274964 -1994-03-16,1.130609149410116,16.865150236778426,3.6849703089751435,1.2177889481819135,7.509395726188287,6.933850726931812,0.0,0.01006020534817087,1.103963620182871,0.026031259438490845,0.0018301407274034546 -1994-03-17,1.5623314546006577,17.09608324464679,3.207567636582759,1.2005389925243026,7.67032416681082,16.68231464084433,0.0,0.022812941594885672,1.948642024524691,0.040900463283377334,0.004664942965998527 -1994-03-18,0.14697868613418788,17.875657463197072,2.8557353061222512,1.4518923470058211,8.033056674387053,6.011339897262449,0.0,0.0024587681932496663,3.0506850487275554,0.037250616946523124,0.0034110423988832532 -1994-03-19,0.05632707525766353,18.360900857056887,4.5930447410379776,1.2260635324404776,7.989795016980737,3.0166103046967727,0.0,0.0008397057902048352,2.758982745523564,0.032796452790318335,0.002348285894053031 -1994-03-20,0.6212432686156218,18.716973257019593,4.7601161618272565,1.383919515117907,8.111628505619755,7.5466918278126505,0.0,0.009110741019719426,2.4315126194813215,0.03556253866814392,0.002915868659089829 -1994-03-21,4.5339467951210235,16.725085449738945,4.807875869379044,1.4186172239319716,7.244644876067031,80.64226461806156,0.0,0.11972520481914106,2.630009928579562,0.08345524416049256,0.02012802456265773 -1994-03-22,6.4425770469698564,15.493512955931008,3.940264454084339,0.6812884838594302,6.867071464942408,238.86977445916597,0.0,0.3349118320661679,6.268607613274753,0.14807669285331068,0.06409767199407167 -1994-03-23,0.9889290534480584,10.98802864633726,3.004189539017359,0.4694975661187668,5.141099062283892,103.27197748703742,0.0,0.06365695829602314,11.182079964680554,0.1417840124476347,0.05141728417027654 -1994-03-24,0.20595966696280046,9.784994113029343,2.677747260089523,0.9339892215891972,4.698308004825292,46.972324603487635,0.0,0.012669202123659767,11.075341629576812,0.1314195200308895,0.03539930856553705 -1994-03-25,0.6668833349926073,10.960354135317607,2.5195685480659087,0.7619104934015393,5.225437495424517,49.741956698542374,0.0,0.039158591345736404,10.355367382904728,0.12840175622740568,0.029005760123480228 -1994-03-26,1.1044570988841025,11.562757824194241,4.136886332687843,0.7979337455181371,5.119882763174213,63.108397276751255,0.0,0.0641023903547262,10.017147899153672,0.12955916630500694,0.028641922473600145 -1994-03-27,1.348882399267502,10.10477007137323,2.824497204711752,0.6688459452756762,4.792848211539699,74.85443367996419,0.0,0.08007869495307296,10.127581773926622,0.13369303537310012,0.03083770965390838 -1994-03-28,1.3719716183602473,10.228388284805787,2.202185574288132,0.8845698761718582,4.977746305322815,80.26705620350968,0.0,0.08457687319720586,10.515061888368093,0.13847589005751668,0.03295197799469335 -1994-03-29,3.5712687917975043,13.578666121491034,2.4708039389796097,0.9660167716890348,6.293388818649294,189.86630419247396,0.0,0.24972409708433796,10.851690328937174,0.16801770604721794,0.05947437183930872 -1994-03-30,5.014937633457617,14.915612223978886,2.971853351582402,1.0968390013578473,6.7541285070209325,334.31700432436,0.0,0.4297189469534537,12.824213001951366,0.2078140236342507,0.10414607860193358 -1994-03-31,0.6182211583679031,15.993615152152762,4.0020151581356105,0.8054727336655672,7.030224971610907,130.0556315328916,0.0,0.055406303903074106,15.69551597094802,0.19004398934920969,0.07623063058020786 -1994-04-01,5.508399427256769,16.7061388365485,5.478977316757433,1.0298532073743782,7.06617098976563,399.6794862146908,0.0,0.5278907361936085,14.28341580779935,0.2305612438104949,0.13000172068310148 -1994-04-02,1.2269866548559634,16.56413992680087,4.037688108966536,1.080718020356929,7.255057303597042,196.5466931551242,0.0,0.12388504582598259,17.288994308064563,0.21569863857767044,0.10348833844107665 -1994-04-03,0.3243920796894164,17.365749428967835,3.607048515736397,1.124198499565505,7.649200705484746,96.28147134171455,0.0,0.02961143531344579,16.122177648004023,0.19159139916163834,0.071874822843814 -1994-04-04,0.06347870820442943,16.18015156473501,1.9066049655871256,1.2608875796290762,7.389180931990865,52.50053946829308,0.0,0.0050334167732561524,14.21988511981963,0.16639151542573102,0.047553543616087136 -1994-04-05,0.30131861093329354,17.969555599161023,2.7530293448566066,1.3204811701623,7.999213551306536,45.11557247263201,0.0,0.020958830524481498,12.426785735350572,0.14827379573709187,0.03414641344569624 -1994-04-06,0.06745605065341588,18.725265757134697,4.191383874035827,1.5152220830541956,8.117481870474823,26.13747114773055,0.0,0.004072783642254288,10.945820477120542,0.12829721299008942,0.02284785174770844 -1994-04-07,0.06432607396382209,19.18117170698156,5.183578792055165,1.586070194658123,8.158649927637683,17.386042973108598,0.0,0.0033387460773921795,9.455802052195317,0.11090304532121424,0.01538125105167045 -1994-04-08,0.00506004539313148,20.359330948344727,6.904446899674169,1.7288520124125588,8.380714867797366,10.37765656808828,0.0,0.00022526710859177047,8.172411959810717,0.09526201080362677,0.010046771760949326 -1994-04-09,0.09867801823593382,21.53382892973901,8.024330876091511,1.8533440535389458,8.699105850834407,9.032024151454385,0.0,0.003769607458358984,6.9925967007565974,0.08260854802832338,0.007113954641335159 -1994-04-10,0.2640122397450148,21.59632173222004,8.62630126734247,2.02763209893057,8.60553643705329,10.597566182744186,0.0,0.008796011161784356,6.027821377756005,0.07329560060414576,0.0059701727568243655 -1994-04-11,0.7250993891082318,20.69008173286128,8.20505197053444,1.9358936055278475,8.268012490376515,19.053948958296743,0.0,0.0224116458295629,5.360255203229746,0.07089025979548425,0.007298806027109669 -1994-04-12,6.7842519360183084,20.488294372078787,7.909825248530805,1.6719913875723422,8.230159278854,214.59274481104524,0.0,0.31917359354671415,5.220044432777989,0.13984192298628406,0.053350074388106836 -1994-04-13,3.45768715876377,18.505245663573195,6.304755151448747,1.4549321354902658,7.6466855961472895,203.07710705687586,0.0,0.22921258894722563,10.278564075790106,0.16001802423471378,0.06962939375440252 -1994-04-14,3.609972408000976,18.005668814947665,5.14107475771283,1.2783984016543262,7.63145140301791,239.4616364150928,0.0,0.2746355676694723,11.89184713877907,0.18058569937035465,0.08714278506934715 -1994-04-15,2.1300892904956577,18.760876439088864,6.439958268976912,1.5921206264203216,7.72515049825845,185.97157949471404,0.0,0.17175370029936587,13.413765565024043,0.18107538224945746,0.0828778955246065 -1994-04-16,2.1520898016647654,19.218694180742677,7.15480053565036,1.4793916304492924,7.787127096992485,178.74756036132322,0.0,0.17380026672248983,13.424340879248149,0.18145486855385207,0.08041327285224649 -1994-04-17,3.8120851039723527,17.080724804044777,7.560479363856863,1.44422431324057,6.72044539936663,276.7546465058075,0.0,0.3267905671293261,13.435344282965623,0.20092087182294402,0.10210395266338629 -1994-04-18,1.1364630825830484,18.071732563097935,6.484452837262466,1.5465081276947812,7.3995518628939925,151.6988842195448,0.0,0.10018790454136228,15.188977776856001,0.19018032987898742,0.0817199628213898 -1994-04-19,2.8051339694171995,17.654352764266342,5.499360744826532,1.5085205474501977,7.397796631816521,220.28004982184578,0.0,0.2445564726920848,14.187578155582123,0.1979535882243907,0.09043319071214742 -1994-04-20,0.8942987542527117,17.002847651053795,5.500924900852462,1.2021107009530636,7.1127246672231985,123.21252085639503,0.0,0.07595060619131178,14.763487037334322,0.18240260049680906,0.07043235859014636 -1994-04-21,0.4702200668924617,18.175915622668537,5.800388317184215,1.3509687799102557,7.560665283845723,75.15348060195362,0.0,0.036388702689747865,13.690280096113,0.16496023693563938,0.05138887266923664 -1994-04-22,0.5913938992403325,18.470009267270218,7.036358105657346,1.473600130168022,7.449775756677083,62.83864072541777,0.0,0.04112341090380989,12.278098741843726,0.14992087361864145,0.03971338764909849 -1994-04-23,2.327892745056608,19.36015507724131,8.067846218350496,1.4966976905511322,7.6322118703468,132.252224964538,0.0,0.15893771442506033,11.189888663215152,0.15747299871358578,0.05005216380821608 -1994-04-24,1.1142147929957034,18.82139689019007,7.804700812796741,1.4748195862066196,7.438521953935695,91.31017123334753,0.0,0.07549017244998346,11.707260506019557,0.1493615041024868,0.04407610014493413 -1994-04-25,0.85442067810923,18.96689241816282,6.489574993114128,1.5434479107189671,7.763280647029891,69.40635316831295,0.0,0.05451559875697998,11.150880531421473,0.13985362870032822,0.03699227487697798 -1994-04-26,0.5623872062269959,19.571048826742366,7.184200585885245,1.0872778649338974,7.89537591781599,49.13419815405817,0.0,0.03292395477294563,10.37684277753137,0.12743462089909902,0.029093390801502726 -1994-04-27,7.670084617537763,19.387634023861285,6.647381375380631,0.970641988810398,7.910503740816394,390.2648551652208,0.0,0.5650921960760913,9.434666860468827,0.19925877081013574,0.10498206487464061 -1994-04-28,0.2955875018185869,19.10477019738709,6.055110691433575,1.0394445267993488,7.888133517085928,117.27059767591189,0.0,0.02448160208209499,14.705693700115518,0.17475476663417405,0.07206607565539694 -1994-04-29,0.6871921211783438,20.048960822381343,6.421144639147335,1.327814950932546,8.230485959962111,83.87151802896005,0.0,0.05051627726051544,12.9162031056024,0.15847034171867985,0.054603477626386954 -1994-04-30,0.12777621578653836,21.009530305532934,7.987343936248887,1.6012275403064191,8.368689776402661,44.132513612712295,0.0,0.008243990076540586,11.638969803105988,0.1370746222869313,0.03679956684738181 -1994-05-01,0.0904144804269038,21.60260097170838,9.202020222265906,1.893157051614124,8.390726778436806,27.943582747279606,0.0,0.005002680600683748,10.047959069527314,0.11810518581198948,0.02471652046310784 -1994-05-02,0.05605058052834929,22.413924692016586,9.689375403980844,2.016236516514718,8.661432406272962,18.167251052672157,0.0,0.0026566097461304325,8.66006133834789,0.10153680101298132,0.016493801224460817 -1994-05-03,0.4364577865822287,22.110634794190307,10.558609105413275,1.6893003766451682,8.317512890018868,22.737420759068918,0.0,0.0180955687082342,7.409229253255789,0.09139694065296805,0.013492007046693469 -1994-05-04,6.062719053731196,20.357943091214906,10.638674745588695,1.0217780114948978,7.438599899869391,221.5187745483164,0.0,0.32402902353395024,6.7183921474285775,0.14889128969838475,0.05812086811530934 -1994-05-05,2.0107984872720044,20.64141710841297,11.154315840305548,0.7058448167559569,7.433728164360736,144.6295084358039,0.0,0.1345881822465449,11.115948964571327,0.15291771794244224,0.05832699245494599 -1994-05-06,6.457738370630553,18.80546203667243,10.926798515360034,0.6453013989727405,6.563706286751804,391.78275750400036,0.0,0.5274413326176095,11.41598876836421,0.20821681648466267,0.11827886540114842 -1994-05-07,1.9560906490824823,19.46539246409325,9.916556726663217,0.7028146284655207,7.183783797957261,228.58357803371354,0.0,0.18415858546775143,15.785851509574586,0.20668161071291605,0.1050348474467319 -1994-05-08,8.714678698560808,19.05426419767744,10.185809690889416,1.0325146314800795,6.904709782303948,723.8590554003583,0.0,0.9833856301255572,15.476059207307088,0.28180571382818764,0.21810773860567914 -1994-05-09,0.963485742230482,18.588276020062512,9.954575945405054,0.9335033683843976,6.736276801864033,277.9161277686489,0.0,0.11928549517024944,21.15617590458212,0.2576790780121666,0.16014086559020907 -1994-05-10,1.4190081189500758,19.942030238278587,10.89984806317058,1.3390673429026234,7.137556515533715,221.82919462045209,0.0,0.16257481720280742,19.431263390021265,0.24289154257968823,0.1289985944845561 -1994-05-11,12.151864200752051,19.511761548615898,11.496375666694934,1.3484002776784356,6.733813356467555,1210.1849142708447,0.0,1.7083156363532943,18.177991185366686,0.35332227485783446,0.34408831433261017 -1994-05-12,1.5889298348205685,20.807038706547907,9.917905872801537,1.5007033466323785,7.81175090886515,489.95109266462066,0.0,0.2542745697084925,26.53165760232292,0.32758579944227106,0.2627023800677797 -1994-05-13,0.01744536703647086,23.21712797995123,10.236113178511658,1.2124664689242532,8.876040963901172,195.0375915267493,0.0,0.002428021254610547,24.078928731581296,0.28070643938004364,0.1713766045169725 -1994-05-14,0.9649255116644092,23.854336927480773,11.614488630009436,1.5326090379482455,8.866597009204055,187.73896476128948,0.0,0.11390234332944404,20.223710476679578,0.24683325961265987,0.12890142926972123 -1994-05-15,6.978310466447872,21.497956415217782,11.472002567158682,1.330001520092034,7.739240691376804,646.1604168176476,0.0,0.8504091532077203,17.818888529611424,0.28887057481322403,0.21339612859613083 -1994-05-16,3.3272563272808338,20.952172716132342,11.297114594528894,1.0393235643664074,7.511714823717705,476.0009159891699,0.0,0.43972284715066046,21.307788770006947,0.2869815917085687,0.2058651495187988 -1994-05-17,9.102782790286694,21.825717201487574,10.344827400686293,0.3756566415019182,8.178296270364385,1058.1120042829934,0.0,1.3696979930046727,21.27104770165026,0.3538345550592072,0.3425652903978801 -1994-05-18,4.909551328474946,18.79754399567633,10.13002133739402,0.3858932759166252,6.763128446380365,836.9337995722545,0.0,0.8148186169535405,25.76789346474959,0.35737145605146836,0.3470620750721605 -1994-05-19,1.2571019950441722,19.64131042817753,10.317020416847289,0.5161291076349486,7.123845611682153,411.491147797029,0.0,0.20212497347128378,26.81385895727713,0.32700768450280465,0.25669761211928044 -1994-05-20,6.0627078627835544,20.30274934868756,10.657860927137234,0.6483838441557709,7.353119403155951,819.407737474779,0.0,0.9744099635328851,24.387506896994207,0.35472438004957674,0.31546639242301705 -1994-05-21,11.222584232174409,19.18950421512672,10.705720480003087,0.8640644316263264,6.783289039587653,1662.8032119630252,0.0,2.142769599164758,26.289895375237148,0.43699498272302406,0.5316221207479368 -1994-05-22,8.338474624578875,20.3173051982738,11.305523955713124,1.420142883102064,7.172844143433841,1701.0909804388923,0.0,1.8772433879503154,32.6317948644425,0.4772758931130529,0.6318990523425612 -1994-05-23,6.292933336251632,20.72177869909325,11.549801481645288,1.0318469472514933,7.303405146962925,1502.6775201844073,0.0,1.4888330480601262,35.246267794556886,0.48390356144037494,0.6380334096344422 -1994-05-24,7.764008943465744,21.223804406668858,11.607100965117604,1.2442687577972635,7.537222165336481,1752.3843752220878,0.0,1.900742409632568,35.61606592292663,0.5053484937587865,0.704745873274804 -1994-05-25,0.4567234268009056,23.296493453938872,12.368535543861706,1.3084458444117106,8.364408050890747,644.1338136806316,0.0,0.10393160287733816,36.94176041839271,0.4356670092949203,0.4745815623457505 -1994-05-26,6.121996188474867,22.933803607146,12.68293197875293,1.0465287802812382,8.092792552044711,1158.221444457789,0.0,1.27713501641135,31.430756933127608,0.4374641418887802,0.5033929648752231 -1994-05-27,16.622771327901432,21.386086483117214,12.182287805706293,0.5458110147342475,7.4452144244496195,3115.2249009031443,0.0,4.152182793330887,31.746187355735756,0.5634656115910435,0.9599163303565398 -1994-05-28,3.150172736978348,21.085172371361683,12.413409724106188,0.7821557741937597,7.217096628185596,1423.9266614193123,0.0,0.8457084459635738,41.07501265474192,0.5151934590417997,0.7536320193827224 -1994-05-29,1.1582057201808416,21.305381583539734,13.026661818884842,1.105036515841929,7.134353330360296,737.9875670483622,0.0,0.27462525340323274,37.90354725653337,0.455042968255761,0.5323947757305733 -1994-05-30,4.804538433629649,21.66045874297616,12.889097932262244,0.935532956223316,7.364035551577005,1057.5067552109397,0.0,1.056270085880037,33.683324776063664,0.4483575411272737,0.5073967010986667 -1994-05-31,4.293904183452838,22.24834682388279,13.233455808642399,0.9786502863649194,7.56241246720485,991.7648101247357,0.0,0.9164393833058071,33.03681439841222,0.4348775898700408,0.46983283926347563 -1994-06-01,2.9245569211581177,22.447753017385416,12.860508892230936,0.5968015326192321,7.777378976896662,747.5932384291506,0.0,0.587483991674354,31.9333815669277,0.40607137642673125,0.3952922127388847 -1994-06-02,3.915034823772268,21.57249024175143,13.110729244943421,0.8262793007105697,7.24007455781206,779.6453245289026,0.0,0.7406665377403612,29.734097141918127,0.3919895990849503,0.37009407385602056 -1994-06-03,1.4359790371416192,20.06737787486842,13.249959610312555,0.5807186458886652,6.3705163897818915,452.1092799325889,0.0,0.253080377683224,29.061734730747798,0.35527771132616376,0.27944907386940326 -1994-06-04,7.063230494057387,21.647935940558767,13.53653774132647,0.958142442057083,7.135113988481208,1033.4235583312138,0.0,1.2756702435002198,26.87920769061338,0.3954064178993099,0.376147852789548 -1994-06-05,6.880696732150213,21.511278723586788,13.709305640286706,1.10068126697219,6.999377007976153,1205.6089111127844,0.0,1.3553842413966848,29.375210592724624,0.4223567666241642,0.451231846803435 -1994-06-06,7.374180677233424,20.28489147152023,13.463117472879214,1.1512600917179254,6.407176596114205,1404.1897097140693,0.0,1.57067877739013,31.419582002818764,0.45192106279162264,0.5328897715690332 -1994-06-07,5.670971466036987,20.01640911121831,12.74724481734004,0.9729396641060982,6.518410649805873,1278.659351423128,0.0,1.2770468824881283,33.991188665220804,0.46203730499042767,0.5413354489019504 -1994-06-08,16.54754300929151,20.497519214896947,12.606987615253752,1.00688709812566,6.823490051805431,3370.3119392496023,0.0,4.49506616050682,34.647407725225094,0.5963865051276429,1.0368241621645613 -1994-06-09,13.203413987470743,20.49268662348636,13.02219068659967,1.0203971357144643,6.677475596399883,3821.076413668958,0.0,4.40755257458277,43.968620690515735,0.666015485188311,1.3460387902504836 -1994-06-10,7.078929510986179,20.88827567923926,13.944374666955024,1.3414687126236864,6.559089612809549,2769.2184738277765,0.0,2.475085493293734,48.91860147656186,0.6523333126078062,1.2530763189516203 -1994-06-11,7.131122351365524,20.98299829489473,13.643602149420307,1.3575327625209204,6.722103638294465,2577.409851046851,0.0,2.444863775743163,48.12203919697574,0.6436619127528779,1.1879604164154456 -1994-06-12,5.394777680266707,22.861282168954574,14.449415066204637,1.858544605143286,7.469996353834772,2085.0936804469634,0.0,1.7719952932080227,47.34340263313482,0.6143640845950699,1.0431188576875923 -1994-06-13,3.111166807037377,23.128627574573677,14.924490724484794,1.945292423365554,7.450818970515942,1394.3139108101213,0.0,0.9196790421084615,44.537369070990934,0.555073173800071,0.8190560701730746 -1994-06-14,2.8344807918578367,23.205818333095888,15.099575439807827,1.7996148551917024,7.430188306203246,1081.6964622191297,0.0,0.744744836993783,40.48844219178857,0.5046827130299587,0.6465654094536523 -1994-06-15,2.8683157055590227,23.1549199470297,15.339144574298606,1.4490448242797984,7.313154897521689,912.18878650747,0.0,0.6788178874405331,36.983529114009684,0.4642470031484474,0.5242437443905802 -1994-06-16,5.680979553476959,24.106599437636262,15.124046053207946,1.5982013208093782,7.916626540662988,1225.9310187111307,0.0,1.2884303398575412,34.20913286977254,0.46469279481523007,0.537440591122201 -1994-06-17,14.60585239001008,23.665924524266085,14.979154389395301,1.570071083337376,7.723018386689303,2883.2265942555596,0.0,3.7586940314930875,33.78753090768259,0.5637501418036258,0.922165257880368 -1994-06-18,14.461056028432827,21.72986652433763,14.631535753205645,1.0891483624403957,6.765524528044278,3778.485705935861,0.0,4.522320090010835,40.833132497117504,0.6441398492525251,1.2888762821925979 -1994-06-19,3.3059285515627312,20.363749498516157,13.730250773967395,0.8424780178709158,6.333270254233309,1808.2410492646109,0.0,1.0558577809627554,47.3275000587102,0.5898451526617297,0.9997678276600827 -1994-06-20,7.028223792967129,21.266405496970005,13.053903246776596,0.817073778464845,7.068772857133056,2144.8178514761835,0.0,2.1606145979299534,44.00518430422972,0.5945046428049339,0.9797873576025877 -1994-06-21,6.932049718028875,20.221435732729272,12.474505650001614,0.5099900406719045,6.705148074150558,2144.0508648471346,0.0,2.1046175932883706,43.58959770006555,0.5885429774748047,0.9582546394874601 -1994-06-22,13.068043783089495,21.807842048525046,12.90509957651088,0.5040050596540011,7.3993854489710555,3568.9514855488856,0.0,4.306217941699424,43.53995731833742,0.6594448760037571,1.2794640289014891 -1994-06-23,11.935268639558533,20.046804008271423,13.13576495861593,0.7598005136231537,6.3767952589632335,3903.9195472513306,0.0,4.303422386221097,47.64208611692984,0.6940358351398137,1.4881305799489344 -1994-06-24,5.999625285247244,19.762996067274564,11.560447059756346,0.9918614368387358,6.758699717526497,2668.9111551501724,0.0,2.1901033937069583,51.177257901424866,0.6660719670309267,1.3021786610826986 -1994-06-25,10.048908550685304,20.17529553066037,11.775090340909422,0.7052284426926906,6.903119966902218,3374.832054953449,0.0,3.6427050342852567,48.82741828441266,0.6858693346151234,1.4023127604270536 -1994-06-26,7.9796479129904005,22.38039590247956,13.381074483447133,1.2616224549827573,7.547578393239142,3029.3811487204516,0.0,2.899563977562379,49.98443893186906,0.675242356528216,1.3543411486298673 -1994-06-27,3.439539122431815,20.88603964868676,14.20006500314532,1.4167923179942268,6.44355948660116,1808.301786068549,0.0,1.1350936485178496,48.513009671369595,0.6052120094476172,1.0544472102337024 -1994-06-28,14.34609184130996,22.272238306875085,14.106426004845432,1.109856089382817,7.250826848077792,4026.141214273836,0.0,4.990164441015079,44.97621404632602,0.6910646885452906,1.4462218297389609 -1994-06-29,3.3299690546299487,21.44421592328828,12.903509190054722,0.9654574542456515,7.205818822790738,1979.884942637058,0.0,1.1374711095244763,49.90542467998902,0.6201562842227277,1.1146192188037487 -1994-06-30,2.8622125177317304,21.7437765894519,12.500500281466898,0.8142381068307515,7.4849616936284775,1375.24199953769,0.0,0.8587603152518599,45.20958591058977,0.5600038958634594,0.856323668638025 -1994-07-01,1.788972528266367,18.430963672523745,12.04962364873856,0.8777580955488288,5.8838656238074964,918.9211086122799,0.0,0.4671033329571339,40.79823210180345,0.49611209246381804,0.6285498439424401 -1994-07-02,1.3865922601402034,19.846590132238703,11.766604313187615,0.8194433034578098,6.7341693760855454,654.295833358691,0.0,0.3272722676880293,37.64075109770982,0.4546421194993357,0.45898844405039446 -1994-07-03,4.926925786046676,23.421318619182692,12.768513496253615,0.9685718711635204,8.258755203362352,1035.2497667984953,0.0,1.0947153997225056,33.94909258795051,0.4528792859197803,0.4654664962502921 -1994-07-04,6.723930139114847,24.30358666205705,13.576874837307615,1.4489200693469408,8.482512065466675,1333.5978783623718,0.0,1.4779764150975314,32.707922229962676,0.4593543755331316,0.5280405551969802 -1994-07-05,3.45916413640243,22.27086112720352,13.303436888981366,1.3794102251034528,7.5124253320331125,909.3689413467423,0.0,0.7269985981125568,32.994385829597206,0.42465916954307437,0.45442585990193685 -1994-07-06,8.929077882722689,22.154412404332,12.589431410531105,1.4557358428840623,7.668302847208124,1612.4142817581317,0.0,1.9402911325726198,31.23768274180092,0.46791555900467735,0.591247865267173 -1994-07-07,5.5077499617521255,21.848862043599738,12.949143410496724,0.9344804978732876,7.402727367509757,1314.6486099581355,0.0,1.2453663404274842,34.20158364702387,0.46258684405606115,0.574499994529674 -1994-07-08,6.900609774144479,22.790596835149604,13.66587647387442,0.7900799740409846,7.672596714318534,1491.5599085218437,0.0,1.5865763429438697,34.023607103361755,0.4767394113772672,0.6155521813431438 -1994-07-09,10.526969992642472,20.58094683556873,13.50333242679446,0.8292228579933799,6.535191781096187,2213.727669794484,0.0,2.6251140727475306,34.820817078939186,0.528271008348856,0.8004079369891001 -1994-07-10,13.006741746500118,20.459443813439172,12.876058099745213,0.7962222933177371,6.692359092638676,3187.3363343708584,0.0,3.8370400324523075,39.4237629864517,0.6107798724510037,1.1052739766110913 -1994-07-11,6.884825053241646,20.584044240170428,12.762697828608124,0.8134980404387827,6.798107503114832,2375.2358916978283,0.0,2.175232269970576,45.10563288205145,0.6056536252726594,1.05069265829297 -1994-07-12,1.5405277651885552,21.82655448404085,13.356161918284005,0.8483279679671277,7.263491855068177,1120.0022197582166,0.0,0.4468845301798705,44.63918224450101,0.5379623471718307,0.7519963094539254 -1994-07-13,6.661842893814873,23.526872789595927,13.928851208545066,0.9253759153961598,7.980840774566388,1700.1689825764881,0.0,1.796926759571969,39.46555671757235,0.537352966457956,0.7631228984303963 -1994-07-14,14.359171296556346,23.79687964733622,14.091073075105818,0.9147984996373985,8.073776148480517,3375.311459704897,0.0,4.242825932219992,38.78503912176574,0.6190940603402545,1.1427900667438153 -1994-07-15,10.01014054587722,24.41294319859781,14.543195556941653,0.4653190841131433,8.26088337102617,3103.347991076997,0.0,3.222564983435248,44.222181412018,0.6317698228708268,1.2345857473853163 -1994-07-16,8.6738054537845,22.576641363718466,14.274807160151596,0.6133028356001988,7.363318444830477,2832.0148711146157,0.0,2.789011206039806,44.86022694355672,0.6236352223953713,1.2283254536699089 -1994-07-17,11.781748301764647,22.60971827618627,14.581713626356681,0.62725119650494,7.275738281912182,3584.7346635797157,0.0,3.99188724929083,45.278348400367825,0.6647114835777455,1.4074059441391924 -1994-07-18,5.720291306231537,22.475590941211838,13.816809215208107,0.6673504084687456,7.463833997585899,2419.33672670525,0.0,1.9260052090552184,48.13465956346966,0.6273737052616636,1.209417867142909 -1994-07-19,2.574240755800376,23.41069955779933,13.533116569599107,0.672161738876533,8.04522126786628,1423.1994322074706,0.0,0.7738009975073381,45.42336847699241,0.5591396419789495,0.9050968219558843 -1994-07-20,4.843903141688171,23.96874210984637,14.01480766242354,1.1951400056372286,8.193247661391684,1493.276949046003,0.0,1.3002626275701958,40.216963798831934,0.5249285831338788,0.7871596851229583 -1994-07-21,3.6536107348319553,23.983529457918404,14.632511952328134,1.5413907722269138,8.010782137248626,1177.140151971345,0.0,0.8958761227680205,37.746610635850786,0.4822845413566422,0.6488143328090213 -1994-07-22,3.5106454418031845,23.407525452493445,14.807945901096215,1.2354989702377046,7.642007535237659,994.6162234344545,0.0,0.787181753694945,34.94661734182269,0.44800106688721797,0.542207687271569 -1994-07-23,10.842518881706527,22.89673107107643,14.40272549192142,1.0257882218428735,7.502046794006306,2072.3429008171174,0.0,2.555418149278056,32.8108475587765,0.5085321555147664,0.7420518845868636 -1994-07-24,12.732866761406553,22.806881363551913,14.913792848847725,1.4006446232935137,7.274964397332704,2932.159870402615,0.0,3.5164026416623155,37.19455105828084,0.5816206050854815,1.018465149768669 -1994-07-25,5.809038799462652,21.811070896832746,15.300581390317788,1.182289323972359,6.553562669406987,1979.6086944025035,0.0,1.6854171346800264,42.49376278141117,0.5626949261476484,0.9196026017394998 -1994-07-26,12.291513840828214,22.084183128014782,14.933781880105538,0.7640106332367392,6.860654096320985,3217.9228125134755,0.0,3.834746118418648,41.864057639319384,0.6308757317830523,1.1825148189151773 -1994-07-27,7.6798707015920975,21.056959740051774,14.499993126757778,0.511117391384954,6.4390026589492315,2654.3188544942013,0.0,2.5312440343826488,46.313880631263686,0.6289906366571079,1.1551808667392334 -1994-07-28,2.8497722996617503,21.700882574457832,13.650886990530493,0.6196831578614951,7.115546343723043,1496.857296502762,0.0,0.8884240645193122,46.643337002107366,0.5765612049799588,0.8872441390894739 -1994-07-29,2.252783094849204,22.2879585865143,13.347260647470279,0.6215679660206748,7.530589309780952,1045.436994731826,0.0,0.618272129015911,42.298735514409294,0.5189950200223725,0.671695299332073 -1994-07-30,8.542230717091327,22.75535354307348,13.530678838766933,0.6411013261054669,7.721001886743952,1956.9940804530788,0.0,2.2642381470698023,37.90385707179596,0.5410654678995607,0.7820057772374296 -1994-07-31,6.876213222378055,23.115731082197442,13.49286303490025,0.5250433795410153,7.923256385299643,1852.1356364786316,0.0,1.8502665516857988,39.272432810886066,0.5376004728840359,0.7907794228404168 -1994-08-01,5.06457894039786,22.65811273930493,13.889198916567093,0.4650964067102391,7.559069432019292,1488.80662067284,0.0,1.3109783000556323,38.85312601361543,0.5116115201785293,0.7143760506530488 -1994-08-02,12.01959152043785,22.529446224845337,14.044436431697196,0.4548247465333898,7.440429507309613,2706.2907187417964,0.0,3.3008382526898288,37.362806614158885,0.5752714948596983,0.967626619929128 -1994-08-03,9.052956681612898,22.569504318026482,13.555553749309196,0.6534158579277335,7.623255372594148,2593.633217084886,0.0,2.7031890653025172,41.89467235851605,0.5935053748825334,1.0414799200134897 -1994-08-04,5.359143273379341,22.572404795790952,13.785714687807353,0.7709738216224649,7.553154042142637,1872.4436415830908,0.0,1.5652723197767484,42.963583599685,0.562927042307595,0.9162903125291295 -1994-08-05,1.7133521812145556,23.763112150309578,13.986597837344322,0.7737239914276213,8.12369999970268,993.4133399518137,0.0,0.44866504901938487,40.93621884009806,0.4968386186851947,0.6647778095684985 -1994-08-06,2.6490391657678978,24.108535030481494,14.31891684763666,0.708487768140275,8.206733686359843,860.7182975682271,0.0,0.6033118701198981,35.868489238688234,0.4487031205560004,0.5246022543094254 -1994-08-07,6.0805694528401455,23.32584668772201,13.781662338312838,0.6527108757087293,7.961192882536507,1235.7192302986393,0.0,1.311480226577797,32.45372669532143,0.4488984534144931,0.541183649994159 -1994-08-08,11.797448542780302,23.189335774585928,13.557062724036346,0.8531428290294566,7.96066141336631,2265.7317749971044,0.0,2.808286959313577,32.64424688554037,0.5177156543403708,0.7798882963598153 -1994-08-09,3.390499735378858,22.6503006880932,14.220776420984913,1.9000126340534669,7.462356561822088,1212.6315998982109,0.0,0.8205520869770928,37.44866975555441,0.47574866692062123,0.6326118032826492 -1994-08-10,1.0979745764674376,22.10230238180822,14.624849416976971,1.557042484940674,7.016707192603303,626.8083050389382,0.0,0.23644277988524598,34.91330605277292,0.41950703128938616,0.44780245734404217 -1994-08-11,3.2667540993561035,23.606585961574016,15.278426467247904,1.97316011162316,7.62864511797168,730.1314839053789,0.0,0.6435718689091141,31.201226372144546,0.4015286296260993,0.3894916774218296 -1994-08-12,3.691922104772265,23.220764336073646,15.298191726931565,1.3850636223956048,7.406596442010667,742.8719157171741,0.0,0.6898726544664426,29.504607446169164,0.38671708747058753,0.35858407889293675 -1994-08-13,10.886240408517857,21.25400611177339,13.688650098102073,0.982261110386762,6.890939248010965,1738.2659076031603,0.0,2.237825422612545,28.577485591460462,0.4597256817472391,0.5741633614701354 -1994-08-14,4.384213571854275,21.665443976074627,13.211187307484064,0.4102019493283683,7.280375366242354,1142.727597009254,0.0,0.9734405322419697,34.20081611580475,0.449489464791192,0.521974064124938 -1994-08-15,2.924117615403933,23.028607686698532,13.769827957578599,0.6532753377788468,7.829594483078664,806.781346479839,0.0,0.6128016261474443,33.17836302344835,0.42056944963767445,0.4330886833472599 -1994-08-16,9.3763894332548,23.269637026338092,13.861026279676592,0.9912900666437008,7.931933364289473,1641.3681896961384,0.0,2.0189589067237605,30.7320582819017,0.4672362531019992,0.5893366969359681 -1994-08-17,10.901718247312116,22.140136059207283,14.77783797143087,0.9430906868793084,6.9987403155115215,2243.8777617548226,0.0,2.663724991793762,33.95453768452827,0.5225450034521648,0.7892219715843555 -1994-08-18,20.853406932388502,21.45626278383184,14.699891089190714,0.8755008995520848,6.636748607073191,5065.315085746004,0.0,6.716906054670723,38.61104641220549,0.6927206101518488,1.5364945844693019 -1994-08-19,11.494190025172966,21.585710394350933,14.234578705447486,0.3270998157841549,6.893078226809992,4312.373943857054,0.0,4.454771984982667,50.767324236398714,0.7253044755716227,1.678490603457784 -1994-08-20,2.4050463603136607,20.792572212503423,13.679890972439358,0.33422742041087905,6.655132271042467,1949.5609750653746,0.0,0.8690340434468653,52.58948195162392,0.6406490107038355,1.2249417649822472 -1994-08-21,9.577287568756198,21.732770927628657,13.232705450262802,0.3823638440458402,7.329548319627195,3033.386426845342,0.0,3.312163386812543,47.211421396094885,0.6615500002312517,1.3017053223431008 -1994-08-22,15.662251436147224,19.584499209605372,13.27366731812578,0.3878332375663412,6.129520711586964,4938.670975974972,0.0,5.9608280479513684,47.86218768387696,0.740016694877725,1.7549731131759994 -1994-08-23,8.972906573550024,19.006364875046504,12.334987401585042,0.16665237620571038,6.165201426136672,3918.57066407153,0.0,3.6973151672385605,54.56876467079487,0.7402174374558916,1.7053758668878027 -1994-08-24,2.3772972670345567,20.88629744375234,12.245593454389718,0.13244993253371254,7.207221311376567,1941.0131538906876,0.0,0.9013285113842784,54.53347078010028,0.6629719058773728,1.2473601176913187 -1994-08-25,3.0241812627260556,21.054929579602216,12.454816244215774,0.5414184244203113,7.2330120995852685,1524.01578736729,0.0,0.9819212493901075,48.09791720825193,0.5955378255954025,0.961484826647213 -1994-08-26,4.915619780762981,21.157535168547266,13.233309794951527,0.5373633757126901,7.034658923690092,1633.8558571899773,0.0,1.4478638268636672,43.49507077165701,0.5639517596001486,0.8463400890176966 -1994-08-27,1.632981060646556,21.994155750063104,12.493248378995865,0.5932901805591039,7.716924296118294,923.2130604519735,0.0,0.43411640955279895,41.49663931814196,0.5024308685943405,0.6170282564399866 -1994-08-28,4.023866942425721,22.25901040373488,12.741727049166508,0.6066775053983674,7.783742544137319,1059.3139214857615,0.0,0.9578158521841988,36.58912826374415,0.47311388967590273,0.5474980077410221 -1994-08-29,12.946414607632905,23.65613699880477,13.27052785980374,0.8106592001801143,8.356800752248807,2580.449646718306,0.0,3.315901442185263,34.48003752807691,0.5524860486045837,0.861290450387732 -1994-08-30,8.223837556795965,21.09443839022011,13.913823776911034,0.3639829814988831,6.768133005278245,2240.158267687401,0.0,2.2697785876852326,39.4786144973046,0.5557012607374786,0.90626692353414 -1994-08-31,7.805671435437835,21.650539362791754,13.158013390389414,0.4617914340529936,7.343196104980253,2203.38481404677,0.0,2.24518400014645,41.16664485589363,0.5704943191067704,0.9317996043742652 -1994-09-01,4.112049545976944,22.748682481873637,13.065304023494306,0.6533225893771593,7.956996560559433,1491.3262878928472,0.0,1.1380232684179035,41.65826893014804,0.5331932130594149,0.7798386022843867 -1994-09-02,3.825729450806608,22.58594485638197,13.764192210056635,0.5829201301159667,7.655526758111166,1213.2492315348977,0.0,0.9626375574880184,38.519958421676876,0.49329858580114705,0.6542140666621148 -1994-09-03,2.408861336652472,21.8860322764175,12.640590396610868,0.5413454990760752,7.642381144660339,845.9725948461091,0.0,0.5487855497957606,35.9991182014434,0.44742695045305236,0.509423316396966 -1994-09-04,4.948917837704979,23.497598253354454,13.087391164375866,0.6783658319136153,8.351735231307673,1059.552421062659,0.0,1.0584500791270735,32.76981921372105,0.4393977422613669,0.4927752969075646 -1994-09-05,12.094007785982583,22.29488502692962,13.596400197538747,0.7539664886276902,7.564765569017403,2219.745778161689,0.0,2.8087536346541278,31.700240304024767,0.5101733313219693,0.7484477919077424 -1994-09-06,2.623982305807308,23.569814131507734,13.857565712723472,0.7383142190541447,8.16937376720923,1062.5868495960294,0.0,0.6238974320407831,37.257265889079385,0.46458953255795477,0.5822019362321529 -1994-09-07,2.507916112828012,23.490569717865164,14.180948803935669,0.7206322372121783,8.029140230733374,773.7409356632852,0.0,0.529168656713813,33.59096498319342,0.42052751740142563,0.4595598422888302 -1994-09-08,4.390589672783206,23.308038606635126,14.410044683619486,0.8894352414154195,7.858718723010775,897.7152193423905,0.0,0.8637570265911902,30.59538692457153,0.40756293368803276,0.4306716254343896 -1994-09-09,5.615719586954032,22.55600810914055,14.427374446857472,0.9202651086294932,7.439937455434504,1049.9462149521225,0.0,1.0974387719174565,29.78784295515186,0.41242752714124326,0.44744825187028914 -1994-09-10,11.800499843181427,21.15796641485575,13.715877832556762,0.8666508981551588,6.915591253837667,2068.9633631695997,0.0,2.617686925168613,30.408930145196113,0.4917112737297,0.6898492868482266 -1994-09-11,5.723358311575879,21.703440771687287,14.001612967304116,0.5466048821568837,7.122027274704756,1516.720692089392,0.0,1.3940471661465423,36.482264014803384,0.49166691704609594,0.6613237378614413 -1994-09-12,5.908461664694457,21.590665566921626,14.046831633375927,0.6341814313399782,7.0457203184928225,1461.3461817887016,0.0,1.4358178033514832,36.31288322443189,0.49185007425425525,0.6491151427559856 -1994-09-13,2.2999927883362017,22.77316572478391,13.77767187089644,0.8532379291357484,7.79669524358124,858.7548702770043,0.0,0.529536807057259,36.38736529518467,0.4506815213027773,0.5031732511435434 -1994-09-14,4.194329466014551,22.398238404035997,14.166042182491667,0.9301303965159922,7.464048675003756,946.0807795184056,0.0,0.8893218079396235,32.88890967616274,0.43199462199901556,0.4629545203925482 -1994-09-15,5.565404317323466,21.468851945466106,14.190897660452446,0.6519805459051025,6.933978716332366,1116.3324112553387,0.0,1.1642972802414988,31.795759144937243,0.4352322521083609,0.4786430947723631 -1994-09-16,1.7789370587910298,21.522632411270838,13.873388921474989,0.4790056705739864,7.086267714347156,615.8129766685493,0.0,0.3559897111322705,32.398003992862876,0.3981382174864944,0.36577885095960677 -1994-09-17,5.534767679448458,21.05619574680503,13.007194488137205,0.988551077512658,7.136612366670598,965.2302411527252,0.0,1.0730906319869904,29.604467370533452,0.4093482908693996,0.4014987416527473 -1994-09-18,11.322003267288633,21.19777526877988,13.253415352752556,1.54352894467208,7.133539452052877,1952.0395822306011,0.0,2.489845400011415,30.385472070452106,0.48586384199022553,0.6404725545398425 -1994-09-19,13.028654827564983,21.97372196694713,13.599989528731925,1.8096764075993783,7.445333293742776,2840.543280114953,0.0,3.48148172245733,35.889985590326596,0.5698690315322888,0.9470245543075069 -1994-09-20,1.386807684787462,22.126266465794373,13.79227970076828,1.4527951708731388,7.467860809538319,1069.9770474661332,0.0,0.3675802123742913,41.51738556682988,0.4998047952295714,0.6724379922267575 -1994-09-21,2.8768347652158712,23.21337191963537,13.2789723131669,1.3122691923584349,8.22353246691797,915.03432474216,0.0,0.673046238675663,36.60893110976039,0.459982431364826,0.5402067609765594 -1994-09-22,8.03810856160454,23.164743157288736,13.213953929135695,1.3668054253510036,8.222040564253579,1592.3834680773368,0.0,1.8354404037993586,33.229315922169775,0.48073754755864345,0.6311221277687782 -1994-09-23,8.103880963721068,23.048355160698534,13.024373999204087,1.4387195344171824,8.221865790663854,1786.38508042032,0.0,1.9378708677436585,34.67426110896845,0.4983363843611281,0.7059003098495751 -1994-09-24,5.635785638354256,22.987822025700304,12.929792623312046,1.4809060056089396,8.222733232178724,1459.8302667838004,0.0,1.3463497883029723,35.89262412638959,0.4837778493339948,0.6645095690362541 -1994-09-25,1.2566574980674932,22.912459276780588,12.615833062765825,1.3444964120731524,8.279190596471375,696.942139288696,0.0,0.27106672273324106,34.88458165901532,0.42102096012649776,0.4738384104461849 -1994-09-26,7.747869035179358,21.51155404985966,12.620335283398335,0.9988395855128872,7.546789102680577,1381.4965878206906,0.0,1.6084300328084726,30.46273178780653,0.44512762209347523,0.5533537683215384 -1994-09-27,5.9751859557945775,20.935551561575465,11.989678023241872,0.6885551503137932,7.443288602167316,1301.665287583653,0.0,1.295875264832203,32.674933397578066,0.45024771531586144,0.5575234483399844 -1994-09-28,4.296505230878614,21.117401247303928,11.666704837265074,0.42911035811925696,7.63912430258827,1045.9794852443868,0.0,0.919391438668681,33.114401337588134,0.43581172560796944,0.5029124897996037 -1994-09-29,1.467880849775772,20.018357594162108,11.153696804078713,0.8253493010002675,7.228303884362804,574.8325411309855,0.0,0.2875854776750706,31.94641132873731,0.3892538746056772,0.3711615313941714 -1994-09-30,0.209888359487588,20.8159104349603,10.941942913856185,0.9430799713464496,7.700152244276489,286.2338604343743,0.0,0.03586598682928832,28.87068026338454,0.3387689301247075,0.24706983868179808 -1994-10-01,4.524297977522771,20.39864565323797,10.41138042343858,0.9472356039137344,7.639716370162548,635.289234329848,0.0,0.720705115798868,24.944865594614047,0.3432957981141706,0.27056885341955184 -1994-10-02,4.869463617435076,19.5962236739424,10.320878850480737,0.8376790173287492,7.267674040526378,736.0102021329619,0.0,0.7926819516545889,25.304409000868343,0.3515051812495229,0.29682514411929095 -1994-10-03,4.255076744122062,18.93549254335003,10.099279857695107,0.8535486106420482,7.002139438499572,703.8614994425068,0.0,0.7063491568486073,26.102883864290007,0.3536496816637571,0.30077131193197304 -1994-10-04,5.150410533225637,17.116488161657628,9.358238587119095,0.5886811356952817,6.304985332773102,815.821437409441,0.0,0.8806824830569422,26.406631996064917,0.36761817398369045,0.3298849060164656 -1994-10-05,3.8748789278257054,16.77819217282696,7.668832887319512,0.8789842259629481,6.61270094341491,715.2990303437358,0.0,0.6828562717053228,27.834658744621894,0.3693946391266689,0.3187145242992309 -1994-10-06,2.4386871989116807,17.087229103237938,8.056899341883508,1.0746979165956512,6.664318179796018,523.8100025749745,0.0,0.4172607851210026,27.786973372034957,0.35210847582528626,0.2710022943851289 -1994-10-07,0.9464507505702092,17.707583140587627,8.81040740543232,1.0832967841379666,6.76860586286625,301.3711622632216,0.0,0.14915758331671303,26.48056729040885,0.31950618568530126,0.1991212020734908 -1994-10-08,2.3333213504709813,17.748177993701038,8.93568627504349,0.9522286387047414,6.758287966893022,363.12675469133603,0.0,0.34102750448952035,24.013515938342742,0.30692281145703587,0.1815450193464031 -1994-10-09,2.0713652935202145,18.30684837937656,8.546917524294308,0.9492525951645412,7.135914796736261,327.3874328019336,0.0,0.2887558186306922,23.085863708753678,0.29306468056128643,0.16214461409996705 -1994-10-10,4.18059873376296,17.49549413278965,8.559708310219705,0.8693520015931756,6.7446495027741475,502.1477719865986,0.0,0.5790623360955474,21.885773939891383,0.3036555886304281,0.19371931803063225 -1994-10-11,4.446869990634175,18.368730020081752,8.47251637412969,1.2050800901483718,7.192579707260714,583.7645926311981,0.0,0.6470436389414633,22.849866207656802,0.31798849044919764,0.22462412391157174 -1994-10-12,1.951188081729999,19.082126773762663,8.447520454573299,1.586710203329026,7.542712729508957,368.53525589873493,0.0,0.27876815383984166,23.691258886787057,0.29871714126221643,0.18866631694369596 -1994-10-13,0.008753864720172377,20.046438215930475,8.178162673396539,1.859640906648584,8.060645953032914,142.77464708453945,0.0,0.0011099420988705082,22.11409241698267,0.25771617685189685,0.12298191009496648 -1994-10-14,0.004535708228303599,20.74665858511976,8.570455051349283,2.0045519468903805,8.309156860034609,81.88117638250257,0.0,0.0004856690345501364,18.911245433310423,0.22035603990054656,0.08012939360725534 -1994-10-15,0.10067417839013214,20.06031668593975,9.087913745212198,1.7903741210940571,7.871796010716125,58.241833430136175,0.0,0.009118435571426428,16.114728279422426,0.18889845702171737,0.05354888567748955 -1994-10-16,0.20061257387585224,19.25882567317167,7.88843883165372,1.3837589921304556,7.770160871989218,45.63780448911322,0.0,0.015680565775292143,13.958152150179716,0.1649400202471703,0.03724540556372597 -1994-10-17,7.897284857500558,18.733062920069486,6.356989483807252,1.137296239014668,7.845277284159889,493.3378428303561,0.0,0.7166317261741417,12.224764685788992,0.2344082498557179,0.13336277546226794 -1994-10-18,0.0,17.95367768871483,5.365985065530567,1.0309869646539125,7.685702231649051,128.44998843610153,0.0,3.552713678800501e-15,17.296538780674496,0.2014929630014538,0.08681289877549024 -1994-10-19,0.4186342265841497,18.074733395516084,5.467192582541999,0.5376659474871666,7.725219766522376,82.84622916159877,0.0,0.035395936494627134,14.93763022653739,0.17889008110400095,0.06190067112535329 -1994-10-20,2.2347461466252247,15.683165696847118,5.313303605269334,0.6800891332613198,6.708492701285502,159.42834753476214,0.0,0.17891124962474114,13.263468155517284,0.18054370071191936,0.06753630834832651 -1994-10-21,1.707720773554515,14.419881443774205,3.6009373755206524,0.5298629209203514,6.49565336797178,144.69812717255368,0.0,0.13805975766834266,13.661672695997835,0.17904302525401175,0.06498460016384203 -1994-10-22,1.0576382158288395,14.958223188399408,3.5371115035411465,0.2832100642670972,6.736861706883428,105.43542152240984,0.0,0.0831444520101754,13.60626338556502,0.1708245227726071,0.05496189152619477 -1994-10-23,0.865793863781496,15.183056009229071,2.5337728382047806,0.5468262700015544,6.991756920680055,83.16373281795647,0.0,0.06413077765941988,12.923276215237939,0.16063332800205302,0.045542466465091254 -1994-10-24,0.005012513069105443,14.915545214324407,1.4974883229699494,0.5809209354729269,7.028945065300542,33.99920172108161,0.0,0.00033477870106258037,12.095063935695089,0.14095769605244288,0.02969698017570947 -1994-10-25,0.1495206419245392,15.777759827661912,1.4767536037086395,0.7194497962878251,7.378043754894683,25.398885649458837,0.0,0.008778605591466287,10.612923598768079,0.12537518671758918,0.020668010722291817 -1994-10-26,0.3038064398589799,16.26625303419141,3.3731386950012188,1.035551108341021,7.325628272684885,24.334128016855516,0.0,0.015843146753591553,9.379451185677915,0.11280339351222299,0.015866256724739132 -1994-10-27,0.0036158470528882174,16.751577721311993,3.1573101527029825,1.2911478321740717,7.563053592911372,11.396463668541703,0.0,0.00016661075804338,8.451371707395108,0.09849487900952794,0.01035355636296029 -1994-10-28,0.22917046949727776,16.988333098910932,3.5448149816356693,1.1199548914672888,7.609754716743351,12.892299035841898,0.0,0.009291098933890074,7.348249932210643,0.08827181599787425,0.008154385643462094 -1994-10-29,0.06328406165056093,17.056300008093842,4.730199180901919,1.1787969553994004,7.453387935244534,7.333453393198174,0.0,0.0022671079671376243,6.5817342406596175,0.07740996299371494,0.005653322477320531 -1994-10-30,0.3384210298607848,16.709814996452234,4.94808837533433,1.0609234869315691,7.268364326101922,10.976457090968186,0.0,0.01090389748769427,5.791800477508796,0.07141292897022994,0.0053403267002865296 -1994-10-31,0.4370942567554803,16.399076044559482,4.5354240691101335,1.1827191639477042,7.211426523556969,12.725845128188706,0.0,0.013171431547852608,5.363608930472603,0.06757426370138689,0.005481846718747861 -1994-11-01,0.2683500473954937,16.52911879786566,5.588627800443058,0.6462008643461676,7.0738687816120605,9.311705222216634,0.0,0.007546422537652531,5.081573113467536,0.06232298167751448,0.004717478880333003 -1994-11-02,0.02147009778166452,15.927609708101851,4.465198547769568,0.8290561447601271,7.027943629753654,3.9263243025754933,0.0,0.0005444025583552919,4.7000486187812855,0.055002495477883766,0.0031537503614545606 -1994-11-03,0.0019024689629385289,15.476970653098945,1.3954371414315423,0.84489509650732,7.303663107870045,2.150009406703163,0.0,4.245514476284131e-5,4.1525978758914155,0.04839711545124646,0.0020594076820118603 -1994-11-04,0.06030520292211916,15.712071686004418,1.8267659707870805,0.7620995555690296,7.34850731337633,2.1223907421896437,0.0,0.001185622111538276,3.6350278845753827,0.04304812786643238,0.0015211060902805545 -1994-11-05,0.00032765599432457314,15.373099134361494,2.071150089099969,0.544062441773127,7.183360900373642,1.0631234561279252,0.0,5.670892979616079e-6,3.2309666866118247,0.037642390750975335,0.0009910320500175688 -1994-11-06,0.012281710893963923,15.384015000497165,1.7236801447903525,0.463927406692972,7.236966088487198,0.7727156295586083,0.0,0.00018665864208024761,2.834806066982205,0.03316664446938114,0.0006735368217844586 -1994-11-07,0.058272679137148,14.686947713635972,1.5569888021553333,0.7291866544605184,6.982311826803902,0.9632287116307641,0.0,0.000786208666933734,2.4954676342136524,0.02974934517235523,0.0005581526988029765 -1994-11-08,0.024622591930677232,15.020186125461972,0.7457610644101393,0.7609092495975067,7.216714502558328,0.6040602120996651,0.0,0.00029739199690354337,2.249654010512561,0.02649378220243539,0.00040861349858792426 -1994-11-09,0.0964185422002807,14.23582440051056,0.7788438167082171,0.5003324372505713,6.907930376628957,0.9733517389382906,0.0,0.0010509561736450623,1.9945725199199704,0.02435862978475839,0.0004260117857596374 -1994-11-10,3.8682488363738425,13.906377466276512,1.583316928140876,0.6243847037554778,6.675758445813548,51.64007136653827,0.0,0.07853038661515122,1.84493294016509,0.06655469853927898,0.012234725126613057 -1994-11-11,0.5229270102595969,14.070228740858234,1.3201567145969602,0.6482827828739071,6.780477486940628,22.323880492653153,0.0,0.015002029192944022,5.057561895428289,0.06500891645790559,0.010248511592096759 -1994-11-12,0.013197859522015591,13.642158778823353,1.3981472944684443,0.8300550409596477,6.602049899902755,8.122525603772644,0.0,0.0003509744356765699,4.930290486367521,0.057588291334296375,0.006724740409120573 -1994-11-13,0.08271219929349792,13.735571507731411,1.0626275828843286,0.7857022517606526,6.687696917468203,5.773322892279806,0.0,0.0019681402444716584,4.383549783189963,0.05202892739423826,0.00467716837072096 -1994-11-14,0.26248776107874106,13.722569187645608,0.9334267056704028,0.7853632707059675,6.7024066139917595,6.92914076162842,0.0,0.005760663351752182,3.9544429388195477,0.049124386807588,0.003921762878915359 -1994-11-15,0.06297136727138307,13.572672015529035,0.1611315413484311,0.7422770138795103,6.740662522779252,3.727151190703386,0.0,0.0012719727981126278,3.732925946532343,0.044219632997449104,0.0027465599604437094 -1994-11-16,0.0012117609043080279,12.557354808497484,-0.7192328612008407,0.5258392549888983,6.451829712182426,1.9022794703731256,0.0,2.1810277949401054e-5,3.3581941519726928,0.039134803783199126,0.0017912023829476024 -1994-11-17,0.06569538078090517,12.6922187866919,-0.30150977811784235,0.4056260473408543,6.459914109573268,1.868822764578068,0.0,0.0010626547560609045,2.989017168152076,0.03558533244176773,0.0013277934497939704 -1994-11-18,1.5459425640968367,12.329116745693607,0.878668211827246,0.4118549440215559,6.1700752339089515,19.829096047408143,0.0,0.028936045101094487,2.7177505708466416,0.04966913750678257,0.005270271462861799 -1994-11-19,1.5647165478872072,11.10454793426434,-0.3085098991158813,0.6715001223040205,5.858093599204532,30.39147627434859,0.0,0.03869511101100387,3.813087545722477,0.0626477756621147,0.009322601306512511 -1994-11-20,0.0009750169435958144,12.258783568611314,-0.6200051806740279,0.4286720237138886,6.338575398946532,8.459297816433331,0.0,2.5396371980963514e-5,4.83660880525579,0.056354575355384566,0.006072442261088117 -1994-11-21,0.1649821103306066,13.865631703483023,-0.20153575170302251,0.6548387960665125,6.911418199337593,6.682319706490324,0.0,0.0038980414369462757,4.311617400820081,0.05214935260229198,0.0045464089009826835 -1994-11-22,2.0558443015025465,14.006982017698407,0.4018701416099473,0.6563017563347116,6.902490038047976,39.19609779241003,0.0,0.055106911855089535,3.946445994784311,0.06992261700040257,0.011350339927197283 -1994-11-23,0.8009712521997945,13.867586962484086,0.1263887644581475,0.8661896222713615,6.8820878907770355,26.68117184411725,0.0,0.024612708912436165,5.289616868277881,0.07095122685399177,0.011136186357419607 -1994-11-24,0.2371270759318566,13.421896575571859,1.5005600236800691,0.9332210969075576,6.532713870573035,13.512148405570118,0.0,0.0070227747537938146,5.369400320880866,0.0653122472453746,0.008318455120303584 -1994-11-25,2.0842327548610946,12.683099935414306,0.4921009724107186,0.6878762598928496,6.380131768162035,50.26267896045938,0.0,0.06783635532458998,4.977080507975487,0.08225951735500475,0.015744010547684102 -1994-11-26,7.4762818605744625,10.360787702533097,1.2768041601618034,0.8510242821297087,5.335775473664119,282.9496066444231,0.0,0.4113672876626202,6.284077505188241,0.16029886763646545,0.07288535749546138 -1994-11-27,1.8223068394255373,11.740034269114414,1.69149601429351,1.1334766795439948,5.827142295007808,159.9570688288846,0.0,0.13524140017279418,12.468769200159459,0.16648135746744885,0.06803744318955987 -1994-11-28,1.5412629917445269,12.799303972345822,2.1840594071875667,0.7800425642970824,6.180945243577089,129.9740553482441,0.0,0.11630989499190103,12.824349130792362,0.16734965235551508,0.06199907749307033 -1994-11-29,1.1844855637832523,12.484095243049095,1.2714907209518576,0.5878495308967635,6.200425926532123,105.31501259614606,0.0,0.08799900441393649,12.80180290292671,0.16293078865577257,0.053757633905940835 -1994-11-30,0.36535463477748775,12.321175451966507,1.2338102031658873,0.8734981648621304,6.142706085549417,57.35622429385232,0.0,0.02555231043064976,12.460724680283402,0.14941513777142504,0.03888440980646739 -1994-12-01,2.152102292860403,10.814164132385033,-0.8065906846331721,0.8057095688022935,5.8367938635128915,124.5634117607754,0.0,0.1490071633921377,11.444762369323348,0.15839426506384122,0.04800046509771576 -1994-12-02,0.4368080130808418,11.315795778062535,-1.7837207114491909,0.8029615415785608,6.134392406002134,59.61924447228638,0.0,0.029986933877192923,12.201990526111645,0.1472334435653508,0.035812000430832644 -1994-12-03,0.012999815568302936,12.520220592357413,-0.8092240761833269,0.3342046174761231,6.488753230402057,26.25475178635882,0.0,0.0008077208330692972,11.280227367189777,0.13155844852872642,0.023434916545593 -1994-12-04,0.01698485598293551,12.276305621795494,0.6797766756263082,0.7122927659450655,6.213429417968772,16.089012357172372,0.0,0.0009330089871117733,10.014401207277169,0.11685885404750017,0.015397093631555664 -1994-12-05,2.0778601502970058,10.52486396575922,-0.3691470314172505,0.8232945581869906,5.676617200935405,84.38228085384,0.0,0.1137240506895476,8.94732082563542,0.12843589174904596,0.027338951032018943 -1994-12-06,2.849534197695364,9.864467459919666,-2.3375152075451435,0.5296438296007809,5.664178276810415,140.84295185141912,0.0,0.1782548739937062,9.933280077074583,0.14891112935256498,0.04493831008207268 -1994-12-07,0.010764616594774484,11.704596311162822,-2.65921088418269,0.9132647133723176,6.3635997421682085,40.54706418046006,0.0,0.0006831361624534404,11.51314334664658,0.13424572339663213,0.02935674533542973 -1994-12-08,0.045771318420805264,13.045632168211904,-0.6210637817346897,1.3795792678156744,6.678842323981497,21.66393917576657,0.0,0.0025774936916469274,10.243196902668412,0.1198595117429742,0.019502322937711813 -1994-12-09,0.0,12.843077153935848,-0.3650609221222499,1.5327539554583638,6.574816275694138,12.900863891953437,0.0,1.7763568394002505e-15,9.093218756154322,0.1059298402779333,0.012695095623272588 -1994-12-10,0.0,13.593444863711875,-0.6553540989203207,1.6458341373020056,6.89595249023079,8.278718296843017,0.0,1.7763568394002505e-15,8.056245356171967,0.09384980244113851,0.008263910581256431 -1994-12-11,0.0009859590374030592,13.34725247170109,-0.8825390376130078,1.5269117209709338,6.825744453429691,5.405134495033347,0.0,3.7960584525318416e-5,7.095465724840393,0.08266885616322328,0.005385197444379101 -1994-12-12,0.0,12.457033224387011,-2.761318691742813,1.3011528590824692,6.6536973955446665,3.5077642149869184,0.0,0.0,6.260846128086551,0.07293461733822937,0.003505510432010909 -1994-12-13,0.0,13.089456244183896,-2.7644624726850484,1.2257317348053405,6.887046095676608,2.2820952336145552,0.0,0.0,5.543736153953184,0.06458077179038657,0.002281922532248797 -1994-12-14,0.014226110529163854,14.300724146586544,-0.551125640387279,1.1090011659394328,7.1643800823213235,1.7304354935790993,0.0,0.0003750460464159878,4.88774841556101,0.05710468344817826,0.0015425306191857704 -1994-12-15,0.17759708468861665,15.234620093663327,0.14665180230297634,1.419605733412126,7.461318636507988,3.7633623272685663,0.0,0.004190554978683897,4.2995889580818725,0.052156185298443875,0.0016421888359279524 -1994-12-16,0.32722181658749977,12.573544639908045,-0.7821982523636228,1.2083892986467208,6.526841586507519,5.984913380537133,0.0,0.007150665948451429,3.904842681643834,0.0493006853090546,0.002157782275394968 -1994-12-17,0.6451356859324985,12.673060953317403,-0.6986244369824676,1.0530998901283224,6.55711502842242,11.078044607047945,0.0,0.014144325117230738,3.759011773465599,0.05130533526632213,0.0035582972960410955 -1994-12-18,0.28259794441214225,10.914171231113023,-0.4963320252364619,0.8018827822137773,5.859983040508573,7.186163552737375,0.0,0.00614814122940377,3.9093649327335154,0.04883352858156283,0.0032524296272487983 -1994-12-19,0.4836701115662315,9.45537127503977,-0.4483637303151491,0.468768019106374,5.292825305224717,9.348619706691824,0.0,0.010423837862321705,3.771253815850797,0.04956698217789947,0.0037043621270611772 -1994-12-20,0.9336670342219612,8.94844604893326,-0.6904515762917149,0.6850671962744603,5.134642203183717,17.265630543888324,0.0,0.021764863787414712,3.869119687056855,0.055949212695418166,0.005725387679528152 -1994-12-21,0.5218453468289501,8.837711193111637,-1.1969734553250577,0.8235431249577086,5.165959332055023,13.55131522940332,0.0,0.013032206257458823,4.379706041035139,0.05709975417440772,0.005711304211156917 -1994-12-22,0.008198951576420713,8.833446226262524,-2.71654353179195,0.7611644567915885,5.347646246924544,4.702993240049977,0.0,0.00019716233920986925,4.467028092697107,0.052133364292653445,0.0037478114889517074 -1994-12-23,0.007707332096518437,10.058845019047775,-3.315618676741141,0.8559021647635343,5.841592019859316,2.625903196569108,0.0,0.00016844188549149878,4.065015907361719,0.047444467555567124,0.002465296897593632 -1994-12-24,0.04459768992989786,11.356463366906409,-2.3360674720786765,1.1175038246828033,6.229154621945422,2.19590536704284,0.0,0.0008822554193430449,3.665386163148814,0.043218799363465996,0.0017391288323659272 -1994-12-25,0.016894325923936467,11.239995514077457,-2.2710502824768133,1.3145954127860455,6.18117242066553,1.3808180961584542,0.0,0.0003008152314523081,3.3146992504699075,0.038810808898612964,0.0011778946936899706 -1994-12-26,1.0991543185752932,11.467721770421925,-2.2390607744450786,1.099899149873546,6.2625783971777595,14.376632142300345,0.0,0.02080114250251963,2.979690023684645,0.0475157742577918,0.003934035321876154 -1994-12-27,0.4548018684438798,12.463990502185895,-1.6523734406977262,0.9948946969460668,6.5803474306032514,9.938962051988748,0.0,0.009445080341457968,3.641524169580626,0.04771942417426112,0.003999025107245542 -1994-12-28,0.0964878467982384,13.426142469253538,-0.4486313644495573,1.4610498446537823,6.828658348635572,4.489547007529951,0.0,0.0019063726693797495,3.634854539985772,0.043467611816420774,0.0028934507920311088 -1994-12-29,0.10169087681668318,13.307798057045215,-0.5702090609240694,1.6016266739759866,6.796065872536625,3.2335386117173304,0.0,0.0018234807761670913,3.295542929666748,0.039575473125401835,0.002161152359531511 -1994-12-30,0.05027550242999114,11.739206132215203,-1.4175127462755073,1.6230425155011865,6.286631518722658,2.0564709689265386,0.0,0.0008148469003607245,3.0026744029459485,0.03556479883804925,0.0015308810900524742 -1994-12-31,0.6347044404070358,10.524917359125904,-1.4962152808156852,1.4920279775500305,5.840175901705923,7.8060409046628445,0.0,0.010338041801689513,2.725209230516092,0.03914071882056581,0.0025706512244474647 -1995-01-01,1.0474167331588553,8.460528029762369,-2.653107678651652,1.1739104778621698,5.210186642227633,15.296381856863663,0.0,0.01992977632475479,3.024555474481369,0.04743571854351109,0.004707975990750655 -1995-01-02,0.4053193488313216,7.2747115115887695,-3.845056347100985,1.4503656522218131,4.912392245927563,9.826910987802952,0.0,0.008510907682781177,3.7086867015527623,0.047925384344755705,0.00436058251983267 -1995-01-03,0.0,7.286979777009775,-5.597023157987173,1.2692445034143351,5.052037509081509,3.424367601891809,0.0,0.0,3.767891184135911,0.04389338055350489,0.002838534273032636 -1995-01-04,0.0,8.286476010750892,-5.673681457729073,0.4564967194515182,5.388866686369387,1.8917616432602042,0.0,4.440892098500626e-16,3.442183605576467,0.04009910784333137,0.001847752400633481 -1995-01-05,0.008320187467240166,7.39807151275733,-4.170897273609457,0.921923363176032,4.984437758421808,1.2966643137446774,0.0,0.0001394137491471624,3.125075003810396,0.036501931938571215,0.0012240277712900493 -1995-01-06,0.06861301067933925,8.710857534339715,-3.870065361062746,1.1428958263406022,5.413697018269539,1.5007459988076044,0.0,0.0010650006016601765,2.866590303623131,0.034193130793965076,0.0009589466244588717 -1995-01-07,0.0,9.996167743229831,-4.010283983873343,1.2097735461912424,5.873654656426474,0.6866313162922437,0.0,5.329070518200751e-15,2.6639031861908395,0.03103266803496707,0.0006242291820321874 -1995-01-08,0.03872221672013388,11.54463866265779,-3.89928978470586,1.0495446094265757,6.413461175268191,0.7376816503963362,0.0,0.0004998517357101065,2.3969569993263313,0.028374013343675585,0.000482453669707982 -1995-01-09,0.0461827093621251,13.186632284932386,-1.231178971874903,1.789007115782935,6.813893493427065,0.696455591698433,0.0,0.0005405265923542693,2.1693388902886914,0.02580932621075275,0.0003963578224400063 -1995-01-10,0.00047324439471721437,12.794920639765847,-0.5173050741670556,1.851574183524048,6.591280370728728,0.2948457837861183,0.0,4.944195853534019e-6,1.9582784337744383,0.022818130518652963,0.0002587631404491559 -1995-01-11,0.0007281545198221635,12.926679742899172,-1.2209346072404887,1.3851726619178342,6.713197834438785,0.17570393476022886,0.0,6.750892186654987e-6,1.738884409602553,0.020265308248330654,0.00016947056562986517 -1995-01-12,0.02347266861677936,12.09118067677835,-0.9054570414533679,1.55963947647802,6.362975699547331,0.23772205374513317,0.0,0.00019414671101040254,1.5408389594039222,0.018223171062391463,0.0001398790779522653 -1995-01-13,0.1727381858910249,10.286350264327409,0.51433015057626,1.6265862254266985,5.471429917184773,0.9926624961384014,0.0,0.001362880443861736,1.3949606054890973,0.018262629221628624,0.00029857338658206015 -1995-01-14,0.0002327864620298352,10.511782182299294,-2.407625484961709,1.5497393363746563,5.924841530231085,0.27542658796103975,0.0,1.7625803397840287e-6,1.4217504538394037,0.016565141734996937,0.00019462562061074837 -1995-01-15,0.0,10.75471287025512,-3.0242466464338036,0.9317689991088948,6.0656609386232665,0.13295119469580413,0.0,2.4424906541753444e-15,1.2786858219290653,0.0148958238567537,0.0001266921316138004 -1995-01-16,0.002984608048989697,12.80535881662905,-2.136000989373237,1.2168808978469872,6.743796516112035,0.09478593744153263,0.0,1.8234575315241846e-5,1.1468133711747348,0.013394367776385712,8.524710661806033e-5 -1995-01-17,0.03182652538986491,12.930920188159506,-1.7760515234893175,1.6441872421985675,6.759884645507422,0.17090003597175166,0.0,0.00017501200153408059,1.018006584030711,0.012229844742725593,8.214002244695637e-5 -1995-01-18,0.11060926127124696,11.622561746904204,-1.789151076231319,1.514503675823348,6.271894077824975,0.4420004722902451,0.0,0.000579097922980637,0.9292416224124666,0.01211355857318761,0.00014164550770930318 -1995-01-19,0.01809162167416701,10.690046062147957,-2.4782306092373383,1.5011885494929549,5.991878225173917,0.18552674550443518,0.0,9.023462559022005e-5,0.9290287312595205,0.011033310690160487,0.0001059441229449843 -1995-01-20,0.05638302388210276,11.207281274362328,-1.2168228916260213,2.11565394242176,6.05529570689085,0.24892723933556538,0.0,0.0002634292737356339,0.8507078533188066,0.010566994407170734,0.00010907564318026595 -1995-01-21,0.11929143884134773,11.150316514318199,-1.4663942616899606,2.2802853500527505,6.059868255764608,0.44867323162599065,0.0,0.0005538704810726797,0.8137851660565485,0.010869710536438456,0.00015533808012182065 -1995-01-22,0.008947406136010751,10.550759689217706,-4.318287749564909,1.6826790989033078,6.075947847698691,0.1605998656530484,0.0,4.0019521452385257e-5,0.8370194562095127,0.009854941029328608,0.00010721135261145186 -1995-01-23,0.0,9.928251013534645,-5.584474841362604,1.346720418880711,5.924622059855018,0.07466788307970416,0.0,0.0,0.7586646741614447,0.008837929660939992,6.978955161648242e-5 -1995-01-24,0.43551216076909416,10.154680634100773,-5.180627283670195,1.262640176839091,5.98227483844277,1.4072165734213071,0.0,0.0020840974577815974,0.6823374857340309,0.013022191336668048,0.00036276434391641755 -1995-01-25,0.512828600830154,10.466375986152688,-3.9341613509846862,1.43893463677333,6.018320759870083,2.6048805522071556,0.0,0.003440993197531994,1.004193080078604,0.017672275204867995,0.0007600845854283882 -1995-01-26,0.3893890553147436,10.59938471290849,-3.973949100621922,1.4849462479793798,6.066260234161593,2.8128806418220256,0.0,0.003228754949694934,1.3616999954949105,0.020399001545977596,0.0009864049800128278 -1995-01-27,0.06854977419077518,11.203398104665478,-4.164404012045236,1.1504516868302603,6.288858512968968,1.2282219277043953,0.0,0.0005860655017284055,1.5702714762074725,0.019091157702686542,0.0007313404114267446 -1995-01-28,0.2748333457409766,11.235890729084566,-3.8192408953004207,1.171265590260734,6.278056896769814,2.0569461819213526,0.0,0.0023442784301195285,1.4634378354135107,0.02024968204518408,0.000833019257405007 -1995-01-29,0.1247389126589108,11.975862894875533,-1.996322948701128,1.4479782099551943,6.406661322513349,1.3830152541732776,0.0,0.0010733656128926183,1.552519307729203,0.019538922372269413,0.0007056921558547224 -1995-01-30,0.6631467321957198,11.397781105663693,-2.2282007716416707,1.5259535352842684,6.212633892054276,4.750357805078622,0.0,0.006456929426490676,1.4943836135861397,0.025133767376792217,0.0014425353181049055 -1995-01-31,1.444714787659466,9.49846138803757,-3.0920184821966785,1.5066107149015782,5.601715144938427,14.700618635871805,0.0,0.020484554663059207,1.9291439691316754,0.039303169626850536,0.004058098754811079 -1995-02-01,1.0869784437639247,8.07108953885732,-3.4195165039942217,1.1005506220186323,5.126363875815879,17.547444828149363,0.0,0.02095430001210352,3.050835007186949,0.048202724438192464,0.0058322332894760595 -1995-02-02,0.2548042406636457,8.038674134956432,-2.853706423531721,1.2813125057333763,5.055729179690165,8.592032762541749,0.0,0.005337299453416433,3.7745253630119193,0.046938961086317586,0.004609192445177699 -1995-02-03,0.8964967178218722,10.273155353947525,-2.595567725818317,0.8902839230092341,5.829298586598465,16.400479743472197,0.0,0.01988622719530586,3.6805334160818766,0.05331930134239514,0.006028339515707049 -1995-02-04,1.7174959254721862,9.511145500371617,-1.4130260596371502,1.2179062632101156,5.421280921075224,35.20439162498291,0.0,0.04607180552714474,4.119627772368921,0.06799853798484316,0.010939278694305247 -1995-02-05,0.873239552207896,9.5538620906216,-1.3392314316188003,1.1475271728360907,5.426192950705483,27.536542991559728,0.0,0.027022475353793984,5.292787546027782,0.07183003985507867,0.011235527354403347 -1995-02-06,2.441038472504812,9.60197362362264,-2.40014425903012,1.2890816498670488,5.562160416117663,67.97638925871738,0.0,0.09013842151629081,5.589998221173683,0.09355613859523723,0.021038706511560958 -1995-02-07,0.9703656768313396,8.949960808422038,-4.361160393836667,1.5479083893616146,5.498100056057989,45.74963208389693,0.0,0.04085991562350877,7.258149526685116,0.09585662949581096,0.019916734889269472 -1995-02-08,0.046148463470457216,12.151278179968172,-3.7882614492633615,1.199415173181682,6.5791533705199265,16.96991459409048,0.0,0.0018723853441917765,7.445300461382938,0.08727030651527279,0.013249956655420765 -1995-02-09,0.3918393111069817,11.722765567700622,-1.8388137533692983,1.263117658006672,6.27622773143812,18.429107381404478,0.0,0.014521258582114782,6.64024028455787,0.0819189649304693,0.010836175173637084 -1995-02-10,0.9300126979202112,11.011458462685852,-1.98913666423125,1.3550809665825487,6.026377065646932,30.094789180033775,0.0,0.03394861668043547,6.270698137587993,0.08388340467193997,0.012223019143864864 -1995-02-11,0.6695524855302445,11.569814939421525,-1.6990827520062457,1.3098568887576822,6.201625247809887,26.08087098800052,0.0,0.024628962244305996,6.45170693802014,0.08295784952977958,0.011706734321431586 -1995-02-12,0.053496235858051085,12.283437569872312,-0.034568092660819616,1.4549899452775712,6.285331486513951,10.413177203374394,0.0,0.0018491392583761604,6.359187381287196,0.0747034212563474,0.007902092595809554 -1995-02-13,0.0010163716346048056,13.433476192772147,-0.5407830737085774,1.6029376009464693,6.78193699796448,5.39191593374668,0.0,3.139228402740824e-5,5.718492601408556,0.06662840609356457,0.005148670820515437 -1995-02-14,0.065808643455584,13.718425385097468,-1.4418510976161452,1.7221768664040384,6.971288586071543,4.5475765288112004,0.0,0.0018036885958090249,5.05273256952967,0.0596275386843168,0.0036261809508878347 -1995-02-15,0.20248299486193885,14.939875273166518,-1.0117850472270276,1.7367232089624576,7.394537989522231,5.745409831721254,0.0,0.005019811460205997,4.506132679828098,0.05485218377843497,0.0031248138200605895 -1995-02-16,1.3750763790613882,14.185727162660813,0.1503721470743494,2.181477023032202,6.99036210056173,25.547492716090538,0.0,0.03553613620584417,4.111722993297301,0.06391749684429969,0.007445008636537979 -1995-02-17,0.026308018411292603,11.277783058543424,-2.9585072587617978,1.9582528847987333,6.189286734063572,7.378435323864889,0.0,0.0006858207942149787,4.827922863609821,0.056548502328363115,0.004950777054399824 -1995-02-18,0.04509676605811668,11.563674435951373,-2.8513985789453646,1.7407648754803708,6.281017880461014,4.11383580504174,0.0,0.0010574549525028051,4.338845130583101,0.05106995414408602,0.0033837363139923773 -1995-02-19,0.05490560830153153,11.51547990832378,-1.9295858599080549,1.5109919154625564,6.182859408939061,3.036018959564979,0.0,0.0011613371575184966,3.9121641671670893,0.04621367625214052,0.002379484043247645 -1995-02-20,0.1149337681371432,12.298879611896865,-0.8959464467114444,1.6743032569752214,6.36848746802069,3.073300376892119,0.0,0.0022219299700141637,3.5472599879078675,0.04266207709807228,0.001887253938488121 -1995-02-21,0.029485903121044217,12.932633348123794,-0.573205259137615,1.5578883589825008,6.571217152843242,1.7011985832224419,0.0,0.0005178197752611705,3.2633306590328224,0.03835908294380561,0.0013073593234573253 -1995-02-22,0.04296730230214678,13.328465309510186,-0.4488518757014202,1.5048361364259415,6.705809230563779,1.3336657177767293,0.0,0.0006770764332792306,2.9231195745851277,0.0345529033826986,0.0009541243629707834 -1995-02-23,0.5930451664393077,13.736365745569847,-0.0033357731753323933,1.9344313872128944,6.811331589416444,6.723206705734501,0.0,0.009276443764583142,2.6265328035391313,0.037505902944581136,0.0020335657187479134 -1995-02-24,1.168225203488002,12.986928931711724,-1.288426796392336,1.7150770536028257,6.653337708717839,15.892985520665704,0.0,0.021474029939921202,2.8449768673101676,0.04675108625039951,0.00459349399543335 -1995-02-25,0.2631860954280011,12.574209537560707,-1.905952830512764,1.6792812310086216,6.551775637085978,7.678618715086174,0.0,0.005206643157916413,3.556181610050494,0.0444930471655275,0.003782937034352209 -1995-02-26,0.0,12.704970386730409,-2.404988505137716,1.3348965192389015,6.636226009240833,2.8633055777626324,0.0,5.773159728050814e-15,3.3912597472640953,0.03950587938132888,0.0024625142113235527 -1995-02-27,0.04240068032713272,12.648970429857345,-3.0644671740445326,1.3666752980488477,6.658669184354785,2.0815573215291265,0.0,0.0006872241972960408,3.0066535691861627,0.035519417085517625,0.0017076210496745168 -1995-02-28,0.04714030419513147,12.742049786243351,-2.0303121444417256,1.785084355117966,6.613954653916028,1.6022116789681844,0.0,0.0006871861924815162,2.7023828524388795,0.03203008270592812,0.0012162152946251427 -1995-03-01,0.010377272207237116,13.335944420372858,-2.546738019376737,1.8727191948845496,6.8660107743288945,0.9232717309052173,0.0,0.00013552701992287225,2.439233851414756,0.028536310631777643,0.000812334985580293 -1995-03-02,0.0,13.43627999489413,-2.8567084959213656,1.2292995376115579,6.9191700079104335,0.539932068491884,0.0,8.881784197001252e-16,2.162851175416307,0.025195751438590097,0.0005287918958685837 -1995-03-03,0.07624707933335988,13.581114983260616,-2.685552473607223,1.130521623540674,6.957294490519638,0.8620632413957566,0.0,0.0007914666916191554,1.9078787887566275,0.023113722646982273,0.0004647311669774152 -1995-03-04,0.9737212601149052,13.949582808738072,-0.08169013387031064,1.129417058898983,6.871083173699633,7.94283729261055,0.0,0.011625447957565704,1.7490363787000536,0.03171828254983824,0.00207266433941067 -1995-03-05,0.0013038269688410466,13.999059368674386,2.3085028433468904,1.704725325304299,6.57768459883731,2.037961757573311,0.0,1.67457703832731e-5,2.4035746579483988,0.02801520568530333,0.0013517568606553313 -1995-03-06,0.1983492471224948,16.560228839115616,2.0422798777082343,2.0169440479369296,7.650086720771659,2.478924453047148,0.0,0.0023662408334579332,2.135197822709867,0.027184243007579774,0.0012402253066343871 -1995-03-07,0.32293454899291296,16.680299649639668,1.7949850460577284,2.0644640959996896,7.723954601789255,3.415210885402327,0.0,0.0037767987427725913,2.029290067352713,0.02740182377540136,0.0013824017865469362 -1995-03-08,0.6793916464939634,17.353226573365188,2.6406117608567934,1.8400155736158053,7.89040215447827,6.777689029902215,0.0,0.00864590473393434,2.04255966899379,0.03170888942914537,0.0022163453102075036 -1995-03-09,0.04122974181193405,16.717307140366266,1.7436151715755062,1.6239420213071598,7.736406524033244,2.3036492641317174,0.0,0.0005233136070219441,2.3555744083381964,0.027921145153475525,0.001522418856197083 -1995-03-10,0.2293591342642577,17.10323798767671,1.8713153591257043,1.720417025176345,7.872651556684631,2.8172342434291675,0.0,0.002688128913954313,2.080728538736024,0.026910956921972623,0.0014003304600653055 -1995-03-11,0.6730142990987201,17.3357528755882,2.5999893897544406,1.7570691180630646,7.875403293728894,6.559406227535096,0.0,0.008399573625081369,2.000151345900906,0.031140569407243156,0.0021905084836947733 -1995-03-12,0.209683750145904,16.336533069079163,1.0410211709470407,1.9822319942135829,7.6497394466441735,3.6955333098890057,0.0,0.002709688403005006,2.3140805047796085,0.029400144392487965,0.001838508158056013 -1995-03-13,0.3010173856763605,16.137392944740366,0.6954758203822411,1.463513655484309,7.602987385271304,3.8553195297272755,0.0,0.003770338175142829,2.19457114233716,0.029071916255506,0.0017708720866660287 -1995-03-14,0.26956546684123817,16.1026601716399,-0.1329789752009804,1.856380415932724,7.663286315931235,3.555448259978236,0.0,0.003320951089464508,2.1720800974440517,0.028443517260047717,0.0016584183605819465 -1995-03-15,0.1382459306077485,15.916137270003073,-0.5313235047060832,1.8073988289131435,7.62132849055205,2.3466472821193785,0.0,0.0016175674055877443,2.122663013199187,0.026338058032347088,0.0013258509405925786 -1995-03-16,0.17843413167703667,16.462211209670233,1.4190389667323309,1.6167680602884928,7.641258528655011,2.2520066980731515,0.0,0.001958072889834822,1.9672809915524305,0.024996128035719937,0.0011612121710476802 -1995-03-17,0.4234350963340761,16.772840913154575,2.609675232285388,1.0025489464582735,7.618165621785143,3.945327726541387,0.0,0.004695885781593356,1.8663961772269164,0.026674983586814745,0.0014709125280560223 -1995-03-18,0.4465473311010418,15.347561601710645,1.5045940148730177,1.1166868646185792,7.180826654293124,4.6901015694240895,0.0,0.005282725096652119,1.9925499131205677,0.028413831057113245,0.001761867859535072 -1995-03-19,0.35050637044203353,15.336862952499533,2.0548801856586145,1.4035619978448055,7.102086786607747,4.306688301432793,0.0,0.004334895829721408,2.140494453761773,0.029018472613068988,0.0018069450974354806 -1995-03-20,0.17469355805135253,16.45111105806223,1.6707288272504943,1.3280502993712502,7.590822864946218,2.8400706021355258,0.0,0.0021237989310044225,2.1893471865661684,0.027539473667492462,0.0014996160937344276 -1995-03-21,0.4516925334534537,16.874792664173953,2.087864233204995,1.4606062402935207,7.706861839753903,4.719309720368499,0.0,0.005509263619803195,2.058171411707802,0.029238215197488125,0.0018150463684844386 -1995-03-22,0.32138604828741496,17.26222359170599,1.6117197169844235,1.6324498494418251,7.911214564919851,4.136645171198857,0.0,0.004017971641883611,2.1800525062283143,0.029140065102423517,0.0017933054179124813 -1995-03-23,0.20880075065391385,19.313290132905177,3.1231982404933305,1.6778091208775514,8.5676621683198,3.077940859082193,0.0,0.002529176004896938,2.164033247311697,0.02764190911391303,0.001552461951488519 -1995-03-24,0.4385819051050557,19.251240656768545,3.85675553934888,1.4536063972734374,8.446214130391224,4.612218843634224,0.0,0.005258811519571749,2.0263490837683484,0.028714776686832474,0.001811311505985509 -1995-03-25,0.9545821090242732,17.90696899636399,3.523197884787882,0.7493470710999455,7.926261153148874,10.121543216496532,0.0,0.013202968439884666,2.1100183703221953,0.035700520134648334,0.003189425648672424 -1995-03-26,1.7586941235166609,16.173057019263574,4.724953295060663,1.5767645776538681,7.001190271110536,24.611372717936298,0.0,0.03328739022184002,2.649889611403685,0.05135701487176247,0.007144663103846547 -1995-03-27,2.406518246459292,17.611858378303143,6.033328490968176,1.9211109048942572,7.37897258270902,49.72131158933153,0.0,0.06594555719552808,3.879803710656935,0.07323139349334332,0.014692025165644164 -1995-03-28,4.21472026794856,15.594264205589926,5.259092667781376,1.4036688243691202,6.639089710686055,127.27719384277192,0.0,0.17410651175388114,5.487933679780092,0.11302934752992015,0.03607410631459788 -1995-03-29,0.0,16.053360587994106,2.5740479282667463,1.3885219030868152,7.2787395038903,33.8856373542928,0.0,1.7763568394002505e-15,8.583540181094945,0.09999243004983516,0.023482547727806703 -1995-03-30,0.011590748400860105,16.803665298903102,2.815059819256036,1.5792727909418072,7.546062057361371,16.39381583357689,0.0,0.00047279946710226776,7.5017134399613745,0.08752490553403681,0.015358025594501973 -1995-03-31,0.20892204319497565,17.648741635448722,3.9850467892541857,1.5890298973042347,7.725499501000558,14.984604455473075,0.0,0.007514041899086221,6.5344457127847,0.07855566752343175,0.011141476717467028 -1995-04-01,0.018373015365013345,17.994814546337714,4.475678402929941,1.5200865207230707,7.792254887012134,8.07316055244447,0.0,0.0005812347515942173,5.84576559913546,0.06831324346852148,0.007341079271066084 -1995-04-02,0.017461103146451717,18.349834261006208,4.906090639605052,1.4903601059988114,7.8709412152291005,5.159077063881943,0.0,0.00047873663560288326,5.0785932016914765,0.05936558143328524,0.004851592299794177 -1995-04-03,0.5831651795632801,17.88581240087139,5.06690197128611,1.7449238521084065,7.641740263836886,12.826855470040433,0.0,0.014751012639707572,4.407842127153262,0.058141855046504584,0.005404218150630431 -1995-04-04,2.8116564162053423,17.462517249970887,4.91680667601954,1.780916208881433,7.481418759416973,61.367043351762184,0.0,0.08724204764280419,4.33674358230566,0.08327401884756748,0.016801782581618106 -1995-04-05,0.9044678984737786,17.019226983119175,5.12628652315627,1.5348234352893646,7.2505311482958525,37.442756773756706,0.0,0.032727589623802844,6.225910772678363,0.08306408258848116,0.015920429775539306 -1995-04-06,1.0989921843417114,16.250718222720607,3.406733456083712,1.4667225426922208,7.205959302491951,39.07177241408085,0.0,0.04043660958853379,6.238581659331437,0.0854777660288641,0.0165205226958814 -1995-04-07,0.8201032002435806,15.702458871226984,3.102032971070497,1.4651532279817536,7.023004695944863,33.122323655433924,0.0,0.03038801325458107,6.424998348281486,0.08440052641571386,0.01538110774480814 -1995-04-08,1.29738365271361,15.413382409124575,3.525484078882936,1.1990975637436985,6.834382122156556,44.221979792221155,0.0,0.04937626549351459,6.367058383825458,0.0892855591097013,0.017530644077382335 -1995-04-09,1.5582283310688374,15.4855995546452,1.8810045944858984,1.2405898418262375,7.096286424400327,56.125970243088254,0.0,0.06383778944603824,6.759466603517414,0.09689551296728348,0.021131871860797888 -1995-04-10,0.23066966413181494,16.697331651297056,1.8729736225632547,1.111150630080155,7.571495404140976,23.75506954654911,0.0,0.0092860949573364,7.296293386094629,0.08768402202451768,0.01516980052237288 -1995-04-11,1.0907723683301036,19.02068178507085,4.4685205118353934,1.3730923568985318,8.178078260560154,38.11933921604804,0.0,0.04195217346514468,6.54299437601572,0.08892821272998179,0.01626266532099616 -1995-04-12,1.1423369724775474,19.40735429782345,6.930585216297624,2.045405086480048,7.932954340623077,41.94148290073433,0.0,0.04418078680105153,6.5558370399519825,0.08967851378440518,0.017313408243527572 -1995-04-13,1.904578825804439,18.919080173115333,5.581249019784937,1.831376089820324,7.9541761605985295,65.39465242914697,0.0,0.07863778115355924,6.643458094373989,0.09957884110415112,0.0232439789179782 -1995-04-14,0.6898379752078886,17.4811539726231,3.438000847966756,1.6305358283460474,7.67102284750319,38.808274680100105,0.0,0.028942099422740175,7.371164195153474,0.09390521610497161,0.019537600001842625 -1995-04-15,0.7054973525079591,18.52384014473304,4.279922577631232,1.5100543955185934,7.97868693082609,33.14391297832783,0.0,0.02813882508631771,6.991925529998395,0.08966976362949043,0.01700261114290796 -1995-04-16,0.5659049198875529,18.893471145121037,4.57494795214325,1.632545383411684,8.085967426164752,26.72437480888764,0.0,0.021234434044269945,6.6367507765698805,0.08390606098487374,0.014301157006809057 -1995-04-17,0.26077576845165384,19.790733938412934,4.494812114853879,1.599753498772099,8.468181965302817,16.510932634642693,0.0,0.008931175120590273,6.198131077786709,0.07524189057136857,0.010669284407716377 -1995-04-18,0.17286116675600804,19.965753751299324,4.71642550203044,1.4708114680204618,8.506456474767608,10.98316622555024,0.0,0.005229593656673748,5.517422542446986,0.06628795156215082,0.007741485583078244 -1995-04-19,0.6073214897281334,20.013819360422705,6.2971455967778365,1.7306580435578294,8.280979428851792,16.430050601514992,0.0,0.01690125450967006,4.858689412481908,0.06367532524571383,0.007612808942880432 -1995-04-20,1.130599971061447,21.11532899942977,7.838829389383387,2.093607848406513,8.490093248268892,26.888467680692543,0.0,0.03203391134786626,4.6887503028526085,0.06779148963284895,0.009833217053393382 -1995-04-21,0.9063031502540756,20.211385368038197,7.3330102736027625,2.1495854334844724,8.174664641445109,25.661025136668396,0.0,0.026520768100189662,4.970254848959664,0.06845792088960916,0.010439140870079655 -1995-04-22,0.5111633765660174,21.107723892081054,6.952025314375505,1.9629336732958016,8.635646204420855,18.03838827751611,0.0,0.014629008268977839,5.050780374966394,0.06479287797139173,0.009022872687312484 -1995-04-23,0.8144737799646871,21.640147417399074,7.8752790557308785,1.8843999512430911,8.705534261736663,21.604443790256088,0.0,0.022585839009446218,4.737050632767456,0.06467149973069262,0.009312493689920686 -1995-04-24,3.7156599182473378,20.758542562503703,7.437627778906361,1.6251512664886687,8.38590681780754,93.99704823349339,0.0,0.13249286737604882,4.721550063693252,0.09828778232938216,0.02623599205489447 -1995-04-25,4.369287256760834,19.41196235424211,6.94101445619236,1.487635791540921,7.875260210144853,171.6514455457386,0.0,0.2246949611049187,7.213124933138294,0.13492725801618008,0.05129152494030196 -1995-04-26,1.4090059369593664,20.124005327782115,7.3272864128849005,1.4012809050488635,8.114517240285585,101.1030384356596,0.0,0.08278964774568531,9.990627649238549,0.13279801106683234,0.04599431893948108 -1995-04-27,1.2808828926681053,19.809108438972782,7.78672721815567,1.3216804918203462,7.879003977503965,83.67233592407072,0.0,0.07330399072828842,9.786412875550633,0.12892650055763838,0.04110175539092121 -1995-04-28,2.287547166144945,19.7235657344317,7.5281468879243985,1.4570667398171937,7.888114854636808,119.22602393926266,0.0,0.1343760350600327,9.547730685073782,0.13787297172148716,0.04721604742651081 -1995-04-29,0.21181767227428808,19.803437941412238,6.585913103101301,1.3133996897342062,8.095096290924438,46.7122177642999,0.0,0.011981896907514417,10.204963511617697,0.12134844620042176,0.03255984853088501 -1995-04-30,1.6971088425006602,21.581067191713338,7.788926289622253,1.3408376851589734,8.662289180769767,82.01006169510488,0.0,0.0910764086178506,8.950069051533498,0.12403241184123556,0.03506265974727294 -1995-05-01,1.4836249607427143,20.12480065406616,8.615181253082888,1.2230390437722802,7.832342663198648,80.13227227780514,0.0,0.07949765951192744,9.04249206677098,0.12262213473273186,0.034928836614976935 -1995-05-02,5.780462234206145,19.858101732520982,8.813389444960949,1.0862879431349133,7.660449569444846,277.6673630501157,0.0,0.3825560763131479,9.091489936596501,0.17324817100742934,0.08098684502793557 -1995-05-03,2.6100657865065693,19.91389837194637,8.489831120154577,1.0264845979901762,7.754520942434879,209.69292730715054,0.0,0.2057453436763681,12.864895291651926,0.18027281640036505,0.0840463977430673 -1995-05-04,3.2834550882010585,19.535484735302845,8.48191967199558,0.3459631702333459,7.5779087530463,247.910498628284,0.0,0.2748247927407781,13.357302699959675,0.19385355855544595,0.0965563893792728 -1995-05-05,2.8917543011430284,14.738004399676536,8.029024350681931,0.4972898994632332,5.413814146856801,247.45963973391903,0.0,0.2566136423045977,14.407325979757577,0.20152256975789917,0.10192688928106193 -1995-05-06,0.8676399971451328,16.58400414335535,7.291508986689122,0.2927656980035633,6.489325316071769,133.5368437075247,0.0,0.07808281811682927,15.633440805734462,0.1922264162708374,0.07823887691909867 -1995-05-07,3.3913350690852777,16.712068028207227,6.8549549124609666,0.18833114115095012,6.645687197676758,259.16096073537597,0.0,0.30994214863769187,14.603405166511365,0.20962653710596627,0.09812310249367945 -1995-05-08,0.5799004289388502,18.536947506914476,6.962023159035611,1.0025146141906471,7.433116354696578,116.56888793825662,0.0,0.052492173680584675,15.865842610433047,0.1915817688025533,0.0718662368373454 -1995-05-09,2.1095693633778496,20.390674680003922,7.564567659419468,0.8585793767997598,8.135270323412772,169.30977029288874,0.0,0.18074038502813616,14.281639743507363,0.19094648542128279,0.07430193613188157 -1995-05-10,19.652324181709982,19.338902773495207,8.73483942005849,0.7295296547240722,7.407430133003271,1838.8660169425966,0.0,2.724349156310751,14.032454101456405,0.3924048545426696,0.4631894735716283 -1995-05-11,2.7650457874030385,18.55023832648016,8.982033933313295,0.8248966952805861,6.973297786523308,785.877210210514,0.0,0.49830960546923375,28.987690628906478,0.369897875237029,0.37738957625568575 -1995-05-12,0.7583303090875129,21.486641330028096,10.114820437751435,1.0684833032167438,8.088510775245467,368.2492738633408,0.0,0.12466256917969876,27.61341239647048,0.33051158822856896,0.2646445946064252 -1995-05-13,2.6697719077853157,20.652443858554573,11.421479820168646,0.9546017584419512,7.335433666859825,440.81188144065976,0.0,0.3953936751447009,24.14785396670244,0.3124071796463936,0.2324757209092551 -1995-05-14,3.9259511998498726,19.161270816655986,11.338475643466131,0.893203674259579,6.592810413129038,549.8290268928137,0.0,0.5737720879990742,23.21240097765864,0.3161434238700275,0.2386960445769407 -1995-05-15,9.79959934331728,18.12707201477401,11.249684121791383,1.0009507539551108,6.073952610686565,1276.4736592046197,0.0,1.6624462861542604,23.850997575882605,0.39200666480122043,0.40851191237560003 -1995-05-16,4.676484357923036,19.520759298807526,11.47197758998754,1.1767435517898521,6.731444885432848,952.1482989254899,0.0,0.8987635526432447,29.790211726270453,0.4015136673838008,0.4027720830497661 -1995-05-17,1.991565291157556,19.629848307705892,11.99907041380773,1.7135619397142985,6.614158870888701,562.5422330001397,0.0,0.3683334024664189,30.07668467869408,0.3735733944594847,0.31826989762237795 -1995-05-18,1.5287809960114829,20.349029461740283,12.121622270138982,1.9417736285670324,6.9509836723412475,402.94288964521485,0.0,0.2600663547219555,28.09454428655935,0.34509167763727083,0.24677768908424322 -1995-05-19,0.27075790760371915,22.821662653124946,12.526254126128599,2.4852668204698714,8.101028590123416,204.37477239707775,0.0,0.040894668170206205,25.80644039778798,0.30378169990868914,0.16686749440053217 -1995-05-20,0.0028817480713090164,22.63232399681136,10.938048012619026,1.9147979839004188,8.41419359344811,112.52138823349587,0.0,0.00036726156519749234,22.22114245712779,0.25889483113956124,0.10867881708129626 -1995-05-21,0.6668531009627918,21.36182018078261,11.221134952834914,1.5027955099576664,7.7204988613539,118.40917709682735,0.0,0.07252639225034074,18.85674057356295,0.22743664427890975,0.08178801665424812 -1995-05-22,0.17184552919478815,22.998621004838753,12.22733483983763,2.221890745044224,8.262196392024599,68.13487330591917,0.0,0.016333781393187335,16.83044800081215,0.19806520510388212,0.055727214318094645 -1995-05-23,1.903593463938976,23.59511244494316,12.728571434493597,2.313046239081374,8.42410040169991,145.03203157782556,0.0,0.16453521116714942,14.513202470296855,0.19124455463166395,0.061328713889618046 -1995-05-24,2.544078951455199,24.24228170485104,12.622331245814399,2.1175848038664964,8.773523304809078,191.03755252290927,0.0,0.21657512477197205,13.970952431139077,0.1923889310767152,0.07289887246229027 -1995-05-25,3.74250023929831,24.905895046441003,12.199442055349719,1.9869610798470536,9.201692114350143,277.30966506478507,0.0,0.3314980790780857,13.952585586553518,0.2061357661684076,0.09792921942372136 -1995-05-26,2.7162734580848285,24.8340323935243,12.363402420955927,1.9290873814083358,9.124229922208118,244.72995481082305,0.0,0.24605879333545078,14.806745349303224,0.20413130193283296,0.10121340543665484 -1995-05-27,3.3998381976206464,25.035951479642293,12.378323624308926,1.563310830961883,9.216584854825385,285.85868976373,0.0,0.3125176438919035,14.688063084818154,0.21071180020990682,0.11347059795552396 -1995-05-28,2.0276472682010565,24.295834438463782,12.826033289582885,1.5268348416083344,8.735397292707406,212.9834289906738,0.0,0.1833789066598137,15.127262565512265,0.19984308168520645,0.10178617371164492 -1995-05-29,5.785450546139437,23.926965232546948,13.374537583237267,1.5831880658007076,8.396716250275764,448.61515627115296,0.0,0.5667720094260744,14.499653982031573,0.23630773000330854,0.15255742638644476 -1995-05-30,3.8505829430761134,24.02796997414414,12.801573318757484,1.2486880978737551,8.601880320306067,406.3164150556715,0.0,0.41824653557744984,17.23694127651043,0.24565537598290046,0.16299192809680538 -1995-05-31,4.15085975747381,24.759610311321488,13.421966877253821,1.0721584798477817,8.803006436498924,439.85798172462665,0.0,0.46980924702551974,17.83392517148372,0.2561078555921704,0.17763548283277766 -1995-06-01,3.9651330291573923,24.842175751174146,13.333688663314836,0.7392286261821253,8.86569839241177,447.26419698453986,0.0,0.4628286692896455,18.504368857188744,0.2617544798792447,0.1861048526357876 -1995-06-02,4.786069448007542,23.52958819461051,13.942045075148853,0.9099396875744366,8.012416080625753,530.4135295521385,0.0,0.5819963779141943,18.881711010317442,0.27571361372855197,0.20976305839717155 -1995-06-03,6.300786586960014,23.903128030306807,14.412787575939946,1.190167730402309,8.061484696129343,727.4611642126831,0.0,0.8495099203602576,20.234558630847744,0.30911880116595464,0.26589632717630984 -1995-06-04,6.6109027257071205,24.878299605630197,14.310814270042682,1.2877466383255136,8.60476991202283,877.4927367618918,0.0,0.9986765963029356,22.6240605670837,0.34056752346803626,0.325149276911131 -1995-06-05,9.569998304963192,24.120197330429026,14.776428042833231,1.1002075992875875,8.057407159535764,1360.1730124239898,0.0,1.6633896682246707,24.59470436923747,0.3979956486774019,0.4649325471798622 -1995-06-06,13.242310695242436,22.21557296305099,14.409842077986962,0.8884891702483009,7.1380710645487735,2280.137343003204,0.0,2.8722196052688727,28.98100265752056,0.49187300552251284,0.7399871020410654 -1995-06-07,13.512190073139159,21.864964397814603,13.646010025244193,0.5915078516769666,7.209732009575893,3060.7363314538306,0.0,3.6811199395262193,36.31465433318141,0.5804489929314306,1.0422017153132583 -1995-06-08,8.002982042769338,20.75121111672411,13.033995035437655,0.4321321515799884,6.814993057481356,2468.3192969146226,0.0,2.3926985820535673,42.47664082683475,0.5880534199453192,1.042748039187507 -1995-06-09,9.450295420648237,21.35897287390252,13.26404136828238,0.6968897908837763,7.062396682396664,2764.690755866386,0.0,2.954139742869712,43.395876069981874,0.615622108674553,1.1285913811502737 -1995-06-10,6.986758880754433,20.849834760899803,13.811887136858115,0.8430561078302063,6.5873323728798985,2359.734885766442,0.0,2.2072851765178036,45.05118930625761,0.6062068545432016,1.0707517212632782 -1995-06-11,6.498179580287904,20.73344725002625,13.921273984394135,0.9458232496618424,6.478757900263029,2165.8331564117043,0.0,2.0311045988282723,44.89646545931309,0.598712808542227,1.0062747255054278 -1995-06-12,9.774748358061762,20.47885354365256,13.87334919300584,1.0332509495277218,6.35092995938746,2846.8523839781988,0.0,3.1584027654957776,44.48319771452418,0.6320683264534679,1.135951030922625 -1995-06-13,5.464653335118282,21.04649232395466,13.985513005379545,1.0995347261735298,6.628731550325206,2094.204933268337,0.0,1.778466792519236,46.95408093393499,0.6106427545179368,1.0102485735452464 -1995-06-14,2.6205115370914647,20.294070160607475,13.899997610170445,1.4227271899617344,6.231909952904849,1286.8119877571344,0.0,0.7826594470726866,45.162795412505325,0.5566431655123756,0.7767958025911217 -1995-06-15,3.3350952014051867,21.855835842407565,12.65107093440557,1.8314701311993813,7.509352214124554,1157.570647931411,0.0,0.9148254553501101,41.735651507271925,0.5250436757419992,0.6449532482037876 -1995-06-16,3.548466500908156,22.02195913862643,12.269232145034875,1.6693651590334269,7.704531581043134,1054.7762765452992,0.0,0.8845151757662117,38.345086640273365,0.48803152238221104,0.5545147540630396 -1995-06-17,5.145738066547546,22.708909784506307,12.737828495008175,0.8344182791275374,7.917817798488011,1206.096678559982,0.0,1.208534392725758,35.59012293049956,0.47454519293080777,0.5449802574430567 -1995-06-18,2.6550327068097452,20.818851667857775,13.509959127452252,1.0498699373533698,6.671226252242514,806.8395182397403,0.0,0.5782610977085589,34.47766576720735,0.4325707897194388,0.442805328190785 -1995-06-19,5.899721030234798,20.70449169081833,13.637098377701696,1.0906789035278883,6.5603413157174035,1154.420635579445,0.0,1.26590350966955,32.38798503395985,0.44602584593531425,0.48099796710099174 -1995-06-20,5.269698874901845,21.466021366074035,14.03242890504774,1.5293308096253495,6.838525124589444,1146.301481320645,0.0,1.1585406559568376,33.4487586571325,0.4510438088163747,0.4895119994487081 -1995-06-21,4.711274682446984,21.174556949034226,13.783841750383056,1.3022959208504243,6.766134222627994,1065.7111506043243,0.0,1.0317787347426197,33.61171122003041,0.4464368321586241,0.4757528592129091 -1995-06-22,5.356522691044732,22.214812694710137,13.433363645911086,1.659475782071187,7.446553667829479,1142.5197699352943,0.0,1.1747709184283126,33.33015215161,0.45067356200940023,0.48856897796150284 -1995-06-23,5.5867732109009465,23.789631502123882,14.59715249516818,1.978453859369324,7.910845103692857,1189.6962853437535,0.0,1.2224213338692307,33.1423994611698,0.4511686329411482,0.5041671485906697 -1995-06-24,5.8766422683314765,24.124427585427426,15.102057422777671,1.9091308176001405,7.925490012614926,1240.3996910704852,0.0,1.2793420265663507,32.840524241804815,0.45102876928558544,0.5229878408979526 -1995-06-25,2.806915663738019,23.626625742401423,14.779249031491688,1.3838103816169445,7.761507752330601,799.3769301079491,0.0,0.5800302311542125,32.8200546191458,0.41503007602212694,0.42875867536567286 -1995-06-26,5.07713081163637,22.164338548186766,13.916456965564224,1.0023773118029442,7.257933519515326,974.387794479801,0.0,1.0035083794921933,30.383223610248383,0.41308911407931037,0.4319007214216209 -1995-06-27,4.672479525346533,22.35328197027081,14.079918707335208,0.8816720127009711,7.304377152735272,945.4052316283112,0.0,0.9231776913297249,30.576380361315636,0.410625345975126,0.42171451174514935 -1995-06-28,2.9684877321631413,21.132279155705763,13.76014973949982,0.7381998821446107,6.747191002422231,701.6945304577737,0.0,0.5647928147205343,30.368106575231764,0.38834874702674227,0.36051437618218274 -1995-06-29,7.594060044349142,21.280088714285327,14.197812943112535,0.7020500251136401,6.6678197924765845,1252.0634149686578,0.0,1.5004828450718186,29.10146411183987,0.42747800498578215,0.4631485942290833 -1995-06-30,7.604985356510099,21.12804363287141,13.197866945320596,0.9114558030658436,6.941052852681262,1474.7176353370169,0.0,1.6584546648645286,32.01847610981705,0.46158649175201333,0.5540121896204865 -1995-07-01,8.094287286486743,20.549506967527197,13.470289630138641,0.9009398197472009,6.529174581951058,1713.3307200428635,0.0,1.9129019068080133,34.29759691526447,0.4938367417514199,0.6519034711179624 -1995-07-02,9.96447716322848,20.726353313027087,13.959247933832405,0.8524574563196889,6.444541631683638,2257.0324088504176,0.0,2.623576746069638,36.94790246961139,0.5464974520932071,0.8238368374245435 -1995-07-03,12.553049281553752,18.25573927991812,12.76469273186908,0.836964233300519,5.502431843537439,3193.665086379069,0.0,3.8211114671883006,40.811108500519744,0.6216562981722621,1.1180997302651312 -1995-07-04,6.225326587023589,18.586885351040817,12.815266407303705,0.88644049166007,5.673576033918118,2305.31078682466,0.0,2.056681384714694,47.14492027367436,0.6217272318145096,1.040990497501417 -1995-07-05,9.703529359992492,18.992320329472186,13.158147488638376,0.9611923590727888,5.767997478942597,2996.813562185851,0.0,3.3402010215354903,46.96404870590564,0.6601389072923378,1.1862308370038714 -1995-07-06,12.16462030707952,18.004147959615427,13.174494827199654,1.0616608644074856,5.172811624621276,3992.595673598364,0.0,4.6174013688979265,49.57843803480595,0.7192648152229328,1.475248092448007 -1995-07-07,13.074938462147069,18.8118335489718,12.510348676970684,1.0771658615998052,5.921541883080242,4939.939983727671,0.0,5.658149991467406,54.451413347456516,0.7866362674824717,1.8218540944989954 -1995-07-08,18.385323669143773,19.079950463105593,12.059608270680414,1.2278084120274342,6.23335783243056,7597.254917248153,0.0,9.278903236047697,57.89102547509661,0.888567810640729,2.5987914815391813 -1995-07-09,3.387977597766173,19.7300866090319,12.162512778712996,1.1330465873677713,6.545074031148176,3309.224548272625,0.0,1.6113913955012498,63.35735573332997,0.7775379311396432,1.9370492560263612 -1995-07-10,2.6519780999147904,22.227149107811364,12.93223259725442,1.6997892549286833,7.605215013184754,2087.68553129599,0.0,1.0563321073914813,56.40131525104255,0.6879308746772537,1.4217701927020003 -1995-07-11,3.964689991408872,21.678804566936716,14.226776066741472,1.6691424585785677,6.881937262223089,1874.373918746983,0.0,1.3434577738345124,49.272059642670825,0.6201720795331849,1.1300668649626855 -1995-07-12,2.5497574591404795,22.85543471312861,14.318391053054269,1.7161580467944562,7.49713648393776,1321.1944039127354,0.0,0.7689232448924552,45.55523415869958,0.5603905740418148,0.8527003391399327 -1995-07-13,8.294297141561678,22.44407390471682,14.338122938782776,1.1512735472323534,7.266700859268533,2160.0044488233266,0.0,2.3788410714107755,40.81358884735146,0.5720736142712725,0.9172815391536153 -1995-07-14,10.607035891038347,21.882387053196503,14.069224983242307,1.0923038586545015,7.053060005124842,2849.845593214261,0.0,3.2313932783151564,41.841053482632894,0.6109847216064793,1.0891345331390816 -1995-07-15,10.17377935938716,20.507961512430686,13.830215792688572,0.9110556537045954,6.374106378233539,3080.962193254135,0.0,3.3274596093517257,44.74244157020345,0.6397367827318665,1.2156302732028765 -1995-07-16,18.87138362987154,19.688760896027308,13.50192484915672,0.9553001452141784,6.035363398254241,5844.0606818179,0.0,7.41609259948773,47.46169634089503,0.7727354586835401,1.9205278280311535 -1995-07-17,16.013435110529326,19.312787408573172,13.119560983962964,0.7035849401808276,5.972648269700302,6678.904666175371,0.0,7.627570284931,56.83373290619517,0.8486201728610911,2.411583607767689 -1995-07-18,5.649074940791973,21.14258192846483,12.476636108753734,0.5866443369485101,7.1892778151600485,3776.0898096092515,0.0,2.647756452872674,61.59860280073068,0.7833899033167097,1.9729876189800697 -1995-07-19,2.241027823848315,22.28856118278718,12.679016410497356,0.5349699935947432,7.719139125691312,2046.376583228227,0.0,0.8758443317585307,55.83321325382035,0.6765255787403198,1.4176824477300725 -1995-07-20,1.2029472352272996,22.365410153654814,13.244864160341578,1.0929492512322083,7.5898123260160775,1238.8663034983354,0.0,0.38430413462620616,48.395030516311195,0.5777828513993574,0.9813606241460368 -1995-07-21,1.7990044826217197,22.672512280751253,13.67122006042162,1.4639858264806154,7.61891441327947,982.9551728984145,0.0,0.4853081656068181,41.922671408642266,0.5093279143549244,0.712714979948695 -1995-07-22,1.7758500836804405,21.85068447426096,13.636343250132013,1.2267690188717426,7.192803248977199,765.4437446293866,0.0,0.41534935243646665,37.15279335328629,0.45349233226392627,0.5271870291280621 -1995-07-23,1.57210837384251,22.821986140978225,13.7676696784851,1.2556334226149162,7.670117428842564,582.4256080044828,0.0,0.3258477751976008,33.52911293597736,0.4089054565406855,0.39278911563310603 -1995-07-24,10.052700336801216,22.964922763314863,13.584809493770535,1.1385201668874627,7.804043851825148,1672.8569714258063,0.0,2.1374008899817625,30.005976915268533,0.4666564609132574,0.5811381141056821 -1995-07-25,11.356136759692307,22.242596446893305,14.13077986310812,1.058096910301705,7.24098351681239,2332.3513339916167,0.0,2.7990714845751743,34.01024931573219,0.5284876741477588,0.8044935824692244 -1995-07-26,6.5733973868235935,22.312669988081325,14.737448939244413,1.2203866088344109,7.064643110392827,1831.157387531744,0.0,1.7381558378430526,38.82012130247768,0.5288037507243115,0.7883474147466367 -1995-07-27,4.775031608662012,23.489088577645077,14.691966809525926,1.1510499954528808,7.7333014752126585,1434.5196696297596,0.0,1.2359361749504245,38.996814623982345,0.5099123648549759,0.7013666555580542 -1995-07-28,21.08252164122047,23.889018344353985,14.950248424837735,1.1175754210159312,7.8666198779861665,4811.455196146454,0.0,6.5435439922646985,37.09809131214116,0.6777647390535582,1.4529079678899068 -1995-07-29,12.667391098693422,21.865747179906784,14.314443614003565,0.6082285435152206,6.9737128369207095,4393.880130913284,0.0,4.688076323825726,48.30198761711181,0.7102519715407655,1.6596036767851026 -1995-07-30,10.188408593301595,22.278845188557266,14.277359935257616,0.4951027922287292,7.217928959740046,3965.4484935398445,0.0,3.95488138161371,51.5058080864176,0.7186958429358996,1.6825131072762034 -1995-07-31,6.850297777166013,22.84539415199332,14.379253702953765,0.5274901590387893,7.49520787518439,3022.258444483396,0.0,2.563704387411711,51.74240235814408,0.6825652756440631,1.485598820822011 -1995-08-01,3.1897994464895514,21.595008066040826,13.564147024800436,0.8022355194084839,7.094780677012341,1830.0155247635619,0.0,1.0640640504161918,49.05441895086885,0.608609762800665,1.1290744801024604 -1995-08-02,0.7912544552640319,21.435719855674353,13.974246758598476,0.8818013409230757,6.864728419499288,957.3582226066255,0.0,0.22651208288539304,44.53570229653855,0.5280283492304176,0.7694642308854011 -1995-08-03,3.423566206634028,21.86234203827221,14.254225082139625,1.0417921156523828,7.0027731338365236,1088.9718452741959,0.0,0.8716028100662001,39.1170908453497,0.49556984470268867,0.633599453342832 -1995-08-04,16.014570479058673,22.49173707054851,14.532396668829811,0.9814166888601468,7.255300194051589,3451.37228205241,0.0,4.572512752501172,36.687708841881864,0.6139458623462497,1.108676080382295 -1995-08-05,12.262116509299808,21.77403965573439,13.624150447997355,0.4781246527040892,7.179374131458171,3684.22709808335,0.0,4.1229647572080665,44.73374162802607,0.663963147802249,1.349478312613019 -1995-08-06,10.351083691133413,21.1843496396698,13.923069102788546,0.7378094368298411,6.750971181518369,3560.2848997443984,0.0,3.707572059149898,48.19630655834999,0.6820374461595492,1.4429795732935455 -1995-08-07,9.391658773889516,21.984129219987405,14.524641339467234,1.1729689940885901,6.980267528177816,3440.1206769745568,0.0,3.468767813298859,49.9122690953208,0.6908505970768392,1.4674830251967448 -1995-08-08,12.435450291744068,21.97249371316284,15.045515078513782,1.4560085711227633,6.776167053443303,4318.218119758246,0.0,4.812693521143821,50.221264018234194,0.7299082884928952,1.6880661633020195 -1995-08-09,16.7500580095121,21.248854773552914,15.1085993241689,1.3186029098692635,6.323809178477405,6191.443723188807,0.0,7.342924669808529,53.04143679470612,0.813023649339288,2.2169204898092794 -1995-08-10,10.400454345214508,20.273791181038707,14.134410162406814,0.9470015487819098,6.15412565046508,5059.053736706527,0.0,4.8487296784415665,58.92064731549394,0.8075438877833372,2.1814017665078294 -1995-08-11,20.170869441984,19.617017055249924,13.203691406231165,0.8495440890730203,6.149406657835117,8721.208610235584,0.0,10.693672786607369,58.84804778071555,0.9205168713961311,3.0482596814708214 -1995-08-12,3.545504489753902,19.053892802569674,12.699681389579029,0.9249716208577788,6.027646179176286,3779.3396526731976,0.0,1.761852688298283,65.08626059219182,0.7995135834824919,2.2525418837409013 -1995-08-13,7.138059959499237,19.43720466165259,13.075945389735015,0.7314875259793753,6.101188481554477,3685.792505660725,0.0,3.165563505489671,58.54382591322184,0.7651494884516894,1.9483027048258026 -1995-08-14,18.515231317063687,18.951184386977605,12.855329709485623,1.0142767424649026,5.912757817902237,7333.780009400169,0.0,8.987128700362298,56.249943342993845,0.8709636513178011,2.6366766003893667 -1995-08-15,7.25974495983792,18.281797330614715,12.284519368260007,0.9389888849026068,5.7590023971714555,4597.068961202544,0.0,3.58912385625555,62.970630200003974,0.8181363082578776,2.262849671612962 -1995-08-16,10.902625001154103,19.4281628904481,12.452685860602498,0.8950513824717178,6.336745292774562,5162.60500628137,0.0,5.266330674308147,60.11776754111114,0.8273394757369681,2.2748854259513362 -1995-08-17,12.836807903986845,18.728344514386997,12.543011690296895,0.8208931404333538,5.915469046325041,5921.455862789321,0.0,6.301474155069393,59.75815705941734,0.8456821780902355,2.440336023269028 -1995-08-18,2.1643655019588937,19.59205086073092,12.60982341221995,0.7447390273814084,6.374969970448228,2612.60511641599,0.0,0.9702494433864248,61.52218533741698,0.7419051866207047,1.7362788664213065 -1995-08-19,8.658328844315854,21.6548456150099,12.876462298500774,0.6532377704052513,7.396626867043618,3525.8824623302294,0.0,3.5355046161897974,54.3590148146331,0.7341093761781712,1.6685687440863946 -1995-08-20,11.26348089090068,20.572686404142875,11.933137525583932,0.3991245178389614,7.128898294048351,4264.063746692936,0.0,4.541266374426144,52.49375191994585,0.7427285837201476,1.7776347224409599 -1995-08-21,11.736626057761418,20.709375192024233,11.852209248983874,0.3313072563366013,7.227046796446021,4615.801845971802,0.0,4.866470821508804,53.39441663486113,0.7587325384529298,1.898148729500642 -1995-08-22,7.0245597052038224,21.41020512661913,12.706446072716556,0.8431219662969058,7.33074132950048,3370.8354857880972,0.0,2.8038257747444764,54.2655653197485,0.7139884488222222,1.6625295045049213 -1995-08-23,7.967724024123839,21.309595500737206,13.698321162696102,0.5768372592731854,6.945877461460187,3221.95711056386,0.0,2.991115482882222,51.29553880921217,0.6903768769486232,1.537670087995527 -1995-08-24,8.425614188573084,21.337667376867945,13.952621267167942,0.5375151982296414,6.872240547756089,3212.446721310914,0.0,3.0983101583159876,50.23189215718354,0.6833202241068362,1.4727144491418513 -1995-08-25,7.095307638244409,20.984915792395753,13.483441581017495,0.16509589312946718,6.848935169103473,2812.3219191903486,0.0,2.5406246843708002,49.85184027161154,0.6633957066404164,1.3455155291734333 -1995-08-26,1.4473310548615008,21.25049637106549,12.964911495779731,0.17447643126351392,7.175237227128013,1342.1945430418475,0.0,0.46565478352881273,48.54133110111402,0.5823340601265293,0.9467701900839383 -1995-08-27,2.5633140592343797,22.312684226382732,13.884948043541696,0.5443191206582222,7.445387593597092,1121.707260794524,0.0,0.7134737625790639,42.64103325677801,0.5266000323386644,0.7249398159107069 -1995-08-28,0.8923703786651536,21.678684007548803,13.961493614324018,0.3239457404541372,7.072571173423205,656.4021095476427,0.0,0.21469292634732318,38.509432139412965,0.45900431511975065,0.5045919176407115 -1995-08-29,7.523790680273072,22.701273775519272,14.11734199364372,0.9290003618350808,7.586119888057233,1485.2457458326126,0.0,1.7465732550547752,34.01361475064767,0.48388264275279025,0.5944072024409117 -1995-08-30,12.180613905396635,22.86819711389961,14.261757575137851,1.2751485990478202,7.632338631298521,2558.7619046164154,0.0,3.167765824336941,35.39182142068443,0.5541866539077195,0.8692702952084654 -1995-08-31,3.1425448779098324,23.68466827286447,14.227011482353806,0.8602519694767954,8.090761302769799,1295.6980640754327,0.0,0.8239110094674991,40.259425522346746,0.5056035618999182,0.6913067291490627 -1995-09-01,1.119040051333835,24.13280139133971,14.113086088112615,1.0903613572141475,8.369633584880573,678.2612998714577,0.0,0.2537750950170352,36.50206082428588,0.43826034693570054,0.4886491964473748 -1995-09-02,11.94555499056437,22.7703147306659,14.196750113057696,0.9118191949178794,7.611781006700174,2140.2062538283362,0.0,2.759679882249726,31.60826401115462,0.5073724952700137,0.7382896906740899 -1995-09-03,17.397300925689116,21.3145673537222,13.881341459050114,0.6927968297199767,6.9179713645624865,3982.803373632849,0.0,5.113978702881788,37.021837133114964,0.6339461039283157,1.2592706943628447 -1995-09-04,8.140299507655554,21.208480458497704,13.772150554774372,0.8368104137936118,6.90184174802147,2898.9346818619556,0.0,2.70975631048349,46.46155551950653,0.6360746328676566,1.2323264652938093 -1995-09-05,1.1868142719624792,22.25281600544416,13.7087212127868,1.075761537372797,7.504698585335465,1219.284268143881,0.0,0.36163825199978916,46.624774118513706,0.5569726251454848,0.8572513758425545 -1995-09-06,1.0307481994443164,23.319003877165066,14.284711693828745,1.527761167816562,7.898113083208143,765.3555422056459,0.0,0.2643718401173756,40.570094973541735,0.4846216494856947,0.5982848730316723 -1995-09-07,10.920415781815624,23.546727743287548,14.268897453982301,1.1501281776028418,8.031183813853378,2217.21405511804,0.0,2.7706531334939903,35.198184280694534,0.5372504576728865,0.8113282028613631 -1995-09-08,23.09058214084088,20.539715325277427,14.020428013212998,0.4479698517995545,6.437023843914846,5717.997139617872,0.0,7.696594920681335,38.733393133333315,0.7202074426844489,1.7000568046453561 -1995-09-09,6.925683260453058,20.103619942755614,13.438563621110367,0.467226486685194,6.417535918455858,3307.478283953288,0.0,2.6665541096308036,52.85021439032798,0.696348725398448,1.5126793328428148 -1995-09-10,4.240638767245848,21.988658258469812,13.538271987691074,0.6886886419869999,7.437488078634931,2166.0450169358246,0.0,1.5177075331610013,51.28245245354684,0.6468064106315528,1.2157765424808142 -1995-09-11,3.5297455514299925,21.9840223140813,13.219086396889546,0.4932727376745002,7.544198689146696,1621.2309086148075,0.0,1.1137981329881752,46.75663562500001,0.5858022850895658,0.9610056073331602 -1995-09-12,1.4576553953031386,21.55398380418921,13.292107167426472,0.5436715739602791,7.291500994534266,957.8529575547949,0.0,0.3979947654667235,42.516471989473025,0.5122688032857634,0.6861700656537025 -1995-09-13,3.8060253203782097,21.495943989530787,13.213083156342494,0.7628289682521424,7.290510623130803,1084.2107011873634,0.0,0.932239310491481,37.63412483022181,0.4827496846015759,0.588611669564011 -1995-09-14,5.6797554256008205,21.439284871341947,12.474393673043606,0.6173431625602083,7.503037247291071,1316.8454063213617,0.0,1.3432569862847394,35.544225844366245,0.48023146353898355,0.5876892519797927 -1995-09-15,2.7191252004117725,21.101073520384425,12.496967106217781,0.43268938408044105,7.32116566912834,861.2074481741105,0.0,0.6068601649131988,35.19911003007474,0.4417217609405957,0.47496150678194937 -1995-09-16,1.308729515963538,21.198540590043663,12.452658688214537,0.741521775631175,7.39100344653242,521.5039536119687,0.0,0.26152135492637263,32.5925354020959,0.3949267772271983,0.3489981074170578 -1995-09-17,0.4739647552784035,21.112307595433272,12.468736329140048,0.6947293641403256,7.344296881770684,299.285438887279,0.0,0.0823826522062539,29.1799626058814,0.3454481711280832,0.2397253408391265 -1995-09-18,2.3267049226403085,21.05106891118948,12.248294255391555,0.7989686016169831,7.385588227220229,400.0621995899789,0.0,0.36412436812392635,25.619759855762528,0.325557388389619,0.21149324398222635 -1995-09-19,19.14214622968884,19.5694728968402,11.563187105313105,0.2375446504027737,6.8258850611894255,2712.955431606505,0.0,3.90921626567075,24.14830619432485,0.5043044530003844,0.7329080882074757 -1995-09-20,7.311377260027203,16.19484193038061,10.728246263010648,0.15453675049543353,5.287495750064259,1932.467491678838,0.0,1.8782722188355079,37.45760800017319,0.5215283592301707,0.7630834114192441 -1995-09-21,5.227972711239234,15.483317822395911,10.773010809804578,0.07511463689760746,4.858555835737396,1540.1102744753296,0.0,1.4034896653160107,40.026123144710546,0.5271795691375631,0.7104334709441165 -1995-09-22,4.1910530445874885,14.664418781171381,8.920549261572928,0.05028405761414629,5.136420500323062,1294.2573455458016,0.0,1.1341041201177733,40.82726170099375,0.5244328788806077,0.6351429054041031 -1995-09-23,0.636271871731933,14.459502794008404,7.98327776268225,0.15861286699511173,5.351869255993891,591.4917080670584,0.0,0.16131149443589032,40.37526896604236,0.47775667637568947,0.4380102377534396 -1995-09-24,0.16484839367972626,16.020552786770914,8.214912140763685,0.3430915699435967,6.060517032851026,324.2050221828587,0.0,0.03705966250593917,36.706377450976824,0.4295248106653808,0.2907669593881969 -1995-09-25,0.8988413070156791,17.4632135007651,9.434360341923439,0.484811269500529,6.423739793833376,308.98189365642963,0.0,0.17831205334362776,32.588416710698304,0.3901038772174659,0.21642626880627702 -1995-09-26,0.5739547513921283,16.9949855650689,9.331652168883418,0.6529202726328568,6.222092946109523,217.3812349702836,0.0,0.10091536879550012,29.430947730951463,0.34953679359780704,0.15624918466093662 -1995-09-27,1.0016821692816889,18.66086735632572,9.549119332208068,0.7680686437721419,6.995076792088094,211.8442169816771,0.0,0.15838824658896922,26.53360422628,0.3207674386932453,0.12582782588523433 -1995-09-28,0.8640433084604192,19.132345267367413,9.833789797007851,0.6530109683235927,7.154331010725502,171.36941564533126,0.0,0.12211354690398812,23.993711536703646,0.2895760094448523,0.10050159221982996 -1995-09-29,2.9843957604803104,20.00327361607684,10.45087442628028,1.10239709036953,7.42278582964382,332.61698622500364,0.0,0.3970458875067986,21.620447918875204,0.2866297656430661,0.12587791481664248 -1995-09-30,2.6328443681905767,19.94883636984235,10.866773568390013,0.8137775355116987,7.281613821284946,328.85190348176184,0.0,0.3418103576320042,21.284627730796807,0.2786223522427554,0.13398628273257984 -1995-10-01,5.064420442357738,19.769932667009254,10.200477460123226,0.8215117519429713,7.383661864329885,552.8339480433573,0.0,0.6796369217265568,20.75827604886692,0.3008169261307667,0.19070353418360295 -1995-10-02,7.2917788274241175,19.738373359430394,10.352660813191552,0.7389542358865987,7.3301936761205955,886.6673919022975,0.0,1.1044155453688447,22.341282207017652,0.34520509255319104,0.29230261979083827 -1995-10-03,5.273764108001238,19.865052328385964,10.657775938168982,0.6281668958627833,7.312206746335037,829.8240726057173,0.0,0.8761467419329456,25.60967985192013,0.3597712068339747,0.3236815518693472 -1995-10-04,11.3345573179108,19.163296225617103,10.424865801966053,0.9920679093136514,7.027046763325921,1703.0868670129666,0.0,2.1988769168203675,26.679826997817997,0.44284183266829835,0.5455129714108137 -1995-10-05,9.672685939562358,18.18005860682276,10.338161288649623,1.2197736326567985,6.5514209181703755,1951.917425599217,0.0,2.242665492127861,32.882582304056214,0.4957400551900479,0.6965822569264588 -1995-10-06,2.2192689554581584,16.736109676827454,9.925053100471256,0.749809468890236,5.93231337742619,934.159145622546,0.0,0.5212818366733849,37.06742670851112,0.4576633982235864,0.5328151703241015 -1995-10-07,1.9447393185637365,16.010118285186874,8.991842946532298,0.7467692722511337,5.864859648742862,663.8285019566124,0.0,0.422606363396155,34.76530315670004,0.4276471335707129,0.41118569547856076 -1995-10-08,3.188474333238419,16.859943768919244,7.476564299203168,0.5804296986850702,6.710932326357616,724.9629127142383,0.0,0.6578959736965877,32.584283924949375,0.4167284072019351,0.36783694299638026 -1995-10-09,0.7329937983911711,16.86029221561827,7.659939374325707,0.5209846493339885,6.6694579830595755,369.8547209187069,0.0,0.13803421380724912,31.203641985566016,0.37204017832733416,0.2604623097596905 -1995-10-10,1.5086672406609327,17.428222345410784,8.831442501924823,0.4648683394836302,6.637411560220925,347.26951381997725,0.0,0.2550884493852077,27.948859910559655,0.3431602416910692,0.20838970671709361 -1995-10-11,0.3602996359787929,17.853117606470462,8.800844867321489,0.7468366170853328,6.858425152511091,186.91977822587413,0.0,0.05458517720287248,25.833202536026793,0.3051365611898803,0.1439633043622012 -1995-10-12,1.1711973253695789,18.135539061845613,6.407867904519796,0.8035542887257218,7.546184381178869,201.67301892873397,0.0,0.15859201193668615,22.905903961681116,0.2804819241774786,0.11786132153150829 -1995-10-13,0.0,18.946823433157665,6.149408514680441,0.9558698593920516,7.959958145656891,86.24113134613447,0.0,3.552713678800501e-15,20.78078495712871,0.2420820713093339,0.07672218083490044 -1995-10-14,1.7352099165062589,19.875051571984372,6.666891271054361,0.8104122093338918,8.284147043376642,170.46203362191932,0.0,0.18337364408506773,17.81428435933092,0.22773836874343625,0.07786388003697559 -1995-10-15,0.49596121116873493,20.20323039371109,7.873197220507993,0.9735701845760936,8.20646018474053,92.1420945504922,0.0,0.04710880962732811,16.65754923729786,0.19982677979479246,0.057858738496964025 -1995-10-16,0.8933387952957441,20.037330771222877,8.384624759567577,1.0926404574109372,8.0258293852539,90.41631981826254,0.0,0.07531098568659744,14.657957398649224,0.18116206880258903,0.049130529526481136 -1995-10-17,2.4316457105497102,19.59131116657958,9.119194072972931,1.2578324153024745,7.647130699874093,165.49921776298584,0.0,0.19729822748135373,13.348757796927494,0.1838310138461195,0.0620232353701155 -1995-10-18,2.066328099606344,18.5431356533182,8.17020645440673,1.2105484519647505,7.378736285857711,162.61901238496426,0.0,0.1690735379241426,13.648728745635433,0.18306976948601764,0.06611815497408528 -1995-10-19,2.4134649400995745,17.003278065345796,7.9922226827079905,1.0185869587279688,6.691575717312086,184.53299211486097,0.0,0.20019978390294746,13.66662954489798,0.18732221077349817,0.07352318594743912 -1995-10-20,1.9901986305394777,18.04937137897846,7.919206837034997,1.3187500188215426,7.213009373330323,170.40613602045755,0.0,0.16857098569219153,14.17601670962946,0.18832546041232703,0.07352756130082265 -1995-10-21,0.3964933033868835,19.20797677068265,8.511344318854071,1.3925756005165848,7.627052717544136,79.20157343576541,0.0,0.031554909604834314,14.103211536870914,0.16891174170489934,0.05266768775347458 -1995-10-22,0.22226416271183866,19.149290356462906,9.547546803518186,1.193450859706197,7.341897079572212,47.10205714508793,0.0,0.015572014824495078,12.553475384270538,0.14882871356508157,0.03665525864563323 -1995-10-23,4.855801550283061,18.50684468202823,8.616341769001894,0.8140524638248149,7.273213790645771,263.8248404838426,0.0,0.3656583164723042,11.1328317101912,0.18625674944839596,0.07953773106489337 -1995-10-24,1.3328497737227305,17.000999854019483,7.629974273658714,0.8450203958836345,6.8021561880538925,143.87938066695156,0.0,0.10840247330828734,13.932473412534126,0.17783067693348886,0.06828120262021399 -1995-10-25,0.041002768397650095,15.529060472552256,5.328568577538795,0.9077270174752274,6.655934552886132,54.37621784040982,0.0,0.0030601864994447767,13.43255554364053,0.1569578295918215,0.04491381229133034 -1995-10-26,0.0,16.499820151029095,4.943115588953346,0.6141595632909526,7.162026880350357,30.005094390504,0.0,3.552713678800501e-15,11.898873805985424,0.13861382152521584,0.029236780852478897 -1995-10-27,0.026520447665509445,17.238834432658255,4.158998793256389,0.8277611478217831,7.617566152059436,20.073831746807873,0.0,0.001517088665449657,10.409731946761166,0.12157527261659722,0.019262769367241014 -1995-10-28,0.1049654427336076,18.08516154768157,5.528894404254499,0.6818220012634628,7.758001766890485,16.041168614059362,0.0,0.005221561986663639,9.05305317867465,0.10668471482350995,0.013334217457526313 -1995-10-29,0.0,19.373507804524703,6.571488156597548,0.9828463469527696,8.14635118741228,8.989753271954266,0.0,8.881784197001252e-16,7.926176631511423,0.09233458988572507,0.008679948856629262 -1995-10-30,0.09636651365615856,19.216622368507505,7.336589777524263,0.8085297755329546,7.929359364368265,8.014832157801912,0.0,0.0035832560854046624,6.810446719291432,0.0804596966393753,0.006195842421833579 -1995-10-31,1.6803473186030018,17.905925308340876,7.6835191780621885,0.9500604359640372,7.245218769025906,44.7252408789275,0.0,0.06197087184227601,5.962866079135329,0.0890382598444155,0.013469182933921617 -1995-11-01,0.3366855033336489,15.747693982890999,8.00257194172565,0.9978029125623312,6.120205822471727,20.552068283056222,0.0,0.012512538114340943,6.68669735292602,0.08181765380612112,0.010673023811641667 -1995-11-02,0.4658338641895228,15.744941865317251,7.034984201946883,0.8863378015518645,6.387480556624604,18.68734909396053,0.0,0.016433973648023015,6.2818238259219985,0.07860564235078116,0.009449952133141329 -1995-11-03,0.4289306855979708,14.336822409564991,6.8874031876326685,0.579269547037185,5.752802922726842,16.60576268565362,0.0,0.01443117417928369,6.004705930775915,0.07494750950729057,0.008348834148714917 -1995-11-04,0.2634720419964133,13.73612005563612,4.938328741187737,0.6615492863654793,5.974363001390369,11.863860003542452,0.0,0.008440763858544309,5.796043286178124,0.07058924986719234,0.006719929626872528 -1995-11-05,0.006144219178968407,13.561075646807813,2.7684553189994325,0.5394260369444834,6.334459872087782,5.0513177209466305,0.0,0.00018033439611481704,5.436526671085321,0.06340342991318097,0.004401816926255804 -1995-11-06,8.715133559102019e-5,15.324765223432607,2.800976115554105,0.4317547771610893,7.063210172558833,2.919549371970565,0.0,2.2763966091153987e-6,4.850382620997363,0.05650468794764508,0.0028657225486095066 -1995-11-07,0.06146654444036548,15.96689855973891,4.1557174834699095,0.5438120829502948,7.117832238307463,2.7957753403160854,0.0,0.00141859069559791,4.262892599880676,0.050375855430984655,0.0020814520801605996 -1995-11-08,0.00391632851958145,14.522245899962435,3.2015422314902993,0.7489878385551125,6.671793819418463,1.4895807359971707,0.0,7.984528769788054e-5,3.797163499266634,0.04428000577557365,0.0013670851005280497 -1995-11-09,0.7328267763901855,15.107365660890482,4.690505644018767,0.5775157794306741,6.65210714248577,10.491127026547618,0.0,0.014680713105683862,3.3672461910757487,0.04776307336470808,0.003125263593169778 -1995-11-10,1.2670498989556658,16.021596212610646,8.10321471315332,0.6928082708383126,6.255773448711863,21.8696851721509,0.0,0.029059237435818064,3.6331444664662023,0.05708394578197673,0.006459097897961331 -1995-11-11,0.0,15.75157306473208,6.732248048755228,1.3728261498608298,6.496177188199906,5.955752413748153,0.0,9.769962616701378e-15,4.37428611952886,0.05095747087994162,0.0042045691539731095 -1995-11-12,0.3104490578537361,14.760922960357435,3.529900089617481,1.2954990139230782,6.728915718796877,7.2745957380491655,0.0,0.006740583113962528,3.887455847515469,0.0489027491862273,0.0037633302609406845 -1995-11-13,16.819485865975413,10.692773039100512,1.5137116547071372,0.635236378847457,5.398943168165142,743.8788702493842,0.0,1.1343677014124545,3.714203804622345,0.2392035785624242,0.1751739914619194 -1995-11-14,1.7886939209377832,8.223538597446105,-1.0833385453269593,0.5424728042477548,4.862512336984267,308.6853582623812,0.0,0.1972158818347527,18.540776911988658,0.2368245674073668,0.14405906670620325 -1995-11-15,0.0,10.982286400875195,-0.5064663640004134,0.7335844243667621,5.826773911252601,110.29394359394773,0.0,0.0,18.552476224687062,0.21612378366144114,0.09377568164960313 -1995-11-16,0.6562506598624601,11.612556864373436,0.6786405290828037,0.8862944634003512,5.910929016615034,103.08965342848609,0.0,0.06251260121553448,16.622921790797687,0.20129065701784501,0.0705620283186996 -1995-11-17,0.0,12.927583156387069,0.7577539385179589,0.9252662934664948,6.420408419147405,49.633951487399926,0.0,0.0,15.463698867113386,0.18014161926883476,0.04593256402014245 -1995-11-18,1.7330124398815088,12.785275668288305,1.12991177865477,0.7488189522754349,6.3152632326681974,122.1107606722004,0.0,0.14072131990914838,13.709684334282166,0.17989695910928902,0.0513268401520936 -1995-11-19,3.773215104058164,10.678944055406904,2.5285242409377204,0.9338746125037716,5.207756529045107,256.74828449979657,0.0,0.32936213777040324,13.719703755653443,0.20378065792709166,0.08356161165735215 -1995-11-20,1.2819179313295317,8.355229450919019,0.6263869827306467,1.075276669120614,4.634133402518598,151.70870271924852,0.0,0.11875976277078859,15.871372229446427,0.19982421359238275,0.07247761009045198 -1995-11-21,0.6267552753107105,10.38034096450112,0.976123488181468,1.0889231941421509,5.386293911792196,92.39272129497948,0.0,0.056349151464367364,15.739113977139645,0.19065129327811192,0.05575950846696816 -1995-11-22,0.050976351790020066,11.332804820692713,0.4409334984744114,0.7146534320726465,5.850550752891682,42.94693550503106,0.0,0.004214454130524833,14.802707091657917,0.1730353527059389,0.03693853221580085 -1995-11-23,0.9242027747170176,11.51168196345715,-0.07593637826964274,0.5475558218500972,5.99382572755837,70.80071540066729,0.0,0.07075199637367713,13.320508469238794,0.16594123899815605,0.034818285015164104 -1995-11-24,0.06485269907734688,9.002654768800241,-0.40827304863079816,0.8499621554963398,5.077266814669204,29.800908088751957,0.0,0.004584580403917807,12.741330352108692,0.14918335977169703,0.023363137179107842 -1995-11-25,1.5720753889762702,11.067607722088416,1.487383441814445,0.9777895922659556,5.583931471846477,86.4829306766527,0.0,0.1082118121861737,11.665451663518061,0.1542082252663831,0.031685151234037916 -1995-11-26,1.0994652497613064,10.053404955895846,1.1178817741017912,1.078449342158828,5.239754490196013,76.5361096154622,0.0,0.07591743075696766,11.939498525478347,0.15189509756004532,0.03218509459777927 -1995-11-27,0.16985801877080833,9.746331456500078,-1.8266300632597097,0.9754637426765947,5.5505611526206735,33.141469651914285,0.0,0.01117546636280034,11.839628784122612,0.13990238802838031,0.0226526137304858 -1995-11-28,0.0016759465697393735,10.167121103184703,-2.373276567188166,0.8026368391059993,5.763230296151256,15.830343980637172,0.0,9.98910532306282e-5,10.843114780232586,0.12633446751297822,0.014760996754226836 -1995-11-29,0.0116360275732894,10.593963556654524,-2.126988731562529,0.8546281628047799,5.896645351115757,10.094464811879494,0.0,0.0006219060592573735,9.754982716939203,0.11377449409335642,0.00970340950497621 -1995-11-30,0.10747507450934717,10.759870141400453,-2.1192330783619178,0.7577678327826841,5.958571690167716,9.736986982815901,0.0,0.0051732231146850854,8.765553447995904,0.10336477317609759,0.007104163169745744 -1995-12-01,0.20502859215137972,10.783003025723724,-1.4255937425145804,0.9313911889956102,5.897315625859378,10.803216686751112,0.0,0.008994402413402353,7.956298340472304,0.09507393164204991,0.005994006967873926 -1995-12-02,9.536958764417808e-5,10.695622341073141,-1.6781909559533184,0.9687851388634968,5.894065566062044,4.449318372793796,0.0,3.7951313844427134e-6,7.328392391782315,0.08537191932343016,0.003902394682576472 -1995-12-03,0.2314071633952729,10.957437743756866,-1.1088933979112432,0.9836398583992428,5.930628660429523,8.06889160016425,0.0,0.008398935037487676,6.582639203477723,0.07937902547442445,0.003819137461136212 -1995-12-04,1.0202010671696824,10.847881823533296,-0.17851325662775622,0.9241340439497602,5.773432195497315,26.90356536644526,0.0,0.03662844982220026,6.117217471226848,0.08314609227424521,0.008063301578298807 -1995-12-05,2.56297862375546,9.916033186421991,-2.6467946606678083,0.8555719820911173,5.71136365036846,77.59334415608068,0.0,0.1074350796812471,6.426216058762908,0.10471803026864931,0.02160740835178768 -1995-12-06,0.991344850884862,6.712287199644833,-3.4580660677646744,0.7357220409468481,4.658854754233863,50.81686690151233,0.0,0.04646572630036527,8.09860911679862,0.10589180770327175,0.021140500547398005 -1995-12-07,0.05876497460690185,7.495978744733812,-3.9314359699341592,0.8660819876799137,4.979188301235934,18.70206933412944,0.0,0.002685025762708869,8.354782252414939,0.0980121272597862,0.01417030709057824 -1995-12-08,0.010552398580958876,8.112050044213369,-5.100744239213558,0.7103931568648649,5.279803748319086,9.907802770333639,0.0,0.00044136078268305207,7.6877745203107555,0.08968029504113627,0.009291407610835654 -1995-12-09,0.011322438473445556,8.784522345982346,-4.808079453747854,0.9754384170296856,5.4904044296295,6.3819708786132425,0.0,0.00042997350973434344,6.99562790905622,0.08162622620806001,0.0061137394772703205 -1995-12-10,0.0013330262880100864,9.36197784606761,-4.414406288680771,1.062903028048036,5.664413024012929,4.0382140634186365,0.0,4.576664259332581e-5,6.343142239607149,0.07390884015725606,0.003986725701384296 -1995-12-11,0.008108410330411094,9.645794817104477,-4.005173529058195,1.0663940158111571,5.7362930245980595,2.76387853903049,0.0,0.00025091273009058765,5.725507693699458,0.06679274461573975,0.0026333762253355915 -1995-12-12,2.141541713219781e-5,9.858058026448584,-3.4815109179243158,1.172601524111282,5.772975693985221,1.729487547026699,0.0,5.96633813587608e-7,5.168067791266399,0.06020473925534653,0.001714295000322956 -1995-12-13,0.04492945167979557,10.285830966402552,-3.3498480436498195,1.3093941069062343,5.915758380255241,1.8561069233560596,0.0,0.001131264953844642,4.655823127316561,0.05476058403875446,0.001288177274530299 -1995-12-14,0.07026713611964548,10.124692254185225,-2.3124473673588843,1.1530055828278016,5.767362100059252,1.9549520256492166,0.0,0.0016084421799707621,4.223876382155262,0.05002386385057772,0.001083451944498591 -1995-12-15,0.06493319258119615,10.524813362238849,-2.658238175623342,1.1137314827883034,5.946383806154013,1.6922366678636378,0.0,0.0013602733624366314,3.8698726455772037,0.04583782323269173,0.0009123980081180996 -1995-12-16,0.09359202537763793,10.509528346420426,-2.524544926199155,1.0014058032734665,5.929894462077625,1.8544877946800498,0.0,0.0017973706641352533,3.5343511410679067,0.04226308092488103,0.0008676044564084147 -1995-12-17,0.06571226484445332,10.722267821880495,-2.864299925599165,0.8888304157882551,6.037683849736629,1.4328927212883582,0.0,0.0011592827678488932,3.260026834814933,0.03874260820950359,0.0007412876509814864 -1995-12-18,0.05447310420226786,10.079599848296548,-2.2284948627960035,0.7576588630890969,5.746639811759244,1.1315343330794063,0.0,0.0008775889156881697,2.9826059286902082,0.0353799139219015,0.0006161692971371849 -1995-12-19,0.12510759551116005,10.996543796893404,-1.5406815245965984,1.0940708104239192,6.015018753898336,1.6824599102448141,0.0,0.0018748190574038592,2.739036020227052,0.03336533342969124,0.0006865661503147988 -1995-12-20,1.3094580497520198,10.279567217295924,-0.972260724117704,0.8336047826449954,5.680365514987571,15.337817885587887,0.0,0.0226219467827955,2.5700828934750026,0.045194024633972714,0.0038914478826481366 -1995-12-21,0.13974773194714188,9.798949755802052,-0.20084645592169026,0.8802206442620749,5.390410117262859,5.602661953712398,0.0,0.002677040222621524,3.502408223403463,0.04242865029024992,0.002940768594854151 -1995-12-22,0.2836874649324886,9.260193888374907,-0.7425314722702985,0.8224828825340481,5.262977096723733,5.596735995250945,0.0,0.00524351901421799,3.3063581937760746,0.04182160062520242,0.0027127053705509113 -1995-12-23,0.07208159042726238,9.099030551976462,-1.3905420849554102,0.7145472547394972,5.2912832672057775,2.9217708255437946,0.0,0.0012755804767364959,3.266913180305715,0.03889702780032802,0.0019600696705673816 -1995-12-24,0.1379352687533114,8.191490449731782,-3.796117169768972,0.7214464762001124,5.224320861246248,2.8730331590448746,0.0,0.0022939266801876856,3.0370370226925525,0.03698627699813103,0.0016251974570664239 -1995-12-25,0.027886542339433745,6.016573328466581,-5.224558254618013,0.5044019170140183,4.603680106459836,1.481476262829947,0.0,0.00043354980819185207,2.8915965101208965,0.03401000038979019,0.0011239415233159113 -1995-12-26,0.12702827001398767,6.518082747724385,-6.118464733637508,0.6656001872300029,4.828828224189062,1.9895071265132163,0.0,0.0018706396976252704,2.6899951709255405,0.03281641530464177,0.0010164656349953413 -1995-12-27,0.0075195168804418205,5.343698448686326,-7.416597164036393,0.464379047064104,4.519465493482602,0.8407627112363192,0.0,0.00010404529447159694,2.5848276828470174,0.03019908925277119,0.0006775137876217897 -1995-12-28,0.07012726025963947,3.7165830804607225,-7.931288718184189,0.4038358290458452,4.042375618896825,1.049724923904418,0.0,0.000909482510311338,2.3924665230698943,0.028687549825079987,0.0005795117804009912 -1995-12-29,0.0038638860289379796,3.5026256641990083,-8.56110872153049,0.4788686870565866,4.003506419680665,0.46192918871238253,0.0,4.734929453079637e-5,2.2928084275094607,0.02675467706957091,0.00038444456156181187 -1995-12-30,0.0,3.6640877688121343,-8.886991198277661,0.4414485542003131,4.061749225589221,0.2571344100656567,0.0,0.0,2.13991513380683,0.024928562086892647,0.0002502553406823461 -1995-12-31,0.014453906295585397,4.394758424455561,-8.477902297465848,0.4461006263819699,4.267917614253461,0.2640804622318862,0.0,0.00015414960417380573,1.9917926968986275,0.023371414230046315,0.00018637601924147122 -1996-01-01,0.043539809642070784,5.962950833725791,-8.533182107608932,0.7481624784526613,4.746556358119183,0.4157867649421963,0.0,0.00043703587692973944,1.8603802190502858,0.022179378936071508,0.0001878671973638193 -1996-01-02,0.2594940511479073,5.19355134059929,-9.610936732521257,0.5832117317368976,4.528555420319157,1.847706918355758,0.0,0.0026014020110429192,1.7500155327519524,0.023409425745467654,0.0005183946019244975 -1996-01-03,0.1533537709053585,4.916370097406151,-8.732538764684104,0.7098872858870408,4.432048405476439,1.5222402167991262,0.0,0.0015796457980810086,1.8544860121588262,0.0233899736965769,0.0005779749298716333 -1996-01-04,0.10715732544635537,6.06690601235767,-6.08856194929006,1.056783925747509,4.681823681879389,1.1926642319179255,0.0,0.0010915179550703424,1.856245238099953,0.02287231018356197,0.0005424342479715509 -1996-01-05,0.041292613991574974,7.144556132181264,-7.113778423445043,1.0306865497681157,5.078000859566751,0.6870826317290005,0.0,0.0004023683286268967,1.8068299490512745,0.02152937624916095,0.0004143657231641388 -1996-01-06,0.0001822095974716553,7.385746600897808,-6.711692214635174,0.8448599535053737,5.140250109062631,0.29952548447626637,0.0,1.6396651355943097e-6,1.68832342307199,0.019669947108224093,0.00026998227383022135 -1996-01-07,0.02284923107564094,8.321628005967286,-6.126669648972977,0.6312610504166678,5.421764129789004,0.3014136135822238,0.0,0.0001889445015388104,1.5407775776330275,0.018215193381188773,0.00020451536269710976 -1996-01-08,0.18118080934054312,7.854057202581577,-6.1781290597497955,0.8361935196098342,5.269450276795996,1.0961946554529014,0.0,0.0014572647762251811,1.4193798694530275,0.018645447954828247,0.0003550199789697144 -1996-01-09,0.22698832558718876,7.781719149200795,-5.5553694624163645,0.7803030235458229,5.212790828493889,1.5572033352385184,0.0,0.0018993049617439806,1.4570399098729259,0.019617788462978042,0.0005202985588671254 -1996-01-10,0.3192568226711632,8.303285191896686,-4.957522590004395,1.1893595745983732,5.3512733773121335,2.338719263196903,0.0,0.00288294338208428,1.5346151564015023,0.021596353052211862,0.0007776606268873877 -1996-01-11,0.285949650970085,8.870338854871946,-2.8271548404335003,1.4962373633607562,5.373587061874165,2.5030413138851118,0.0,0.00278710663048104,1.6849508916561606,0.02295965656196153,0.0009305986759416658 -1996-01-12,0.15506169329225322,8.704623159343042,-3.058888102413437,1.2245643481379171,5.336775587613404,1.7899973439791987,0.0,0.0015447209322838051,1.790515188463608,0.022664653062849975,0.0008409825817093001 -1996-01-13,0.16390526964528854,9.65381981265159,-3.1861193326307964,1.514610829250965,5.686101023492628,1.707050168961492,0.0,0.001617561995708866,1.768739637540056,0.022514004317068292,0.0007937378442941146 -1996-01-14,0.03644082779436107,9.739059652843373,-3.762072428589437,1.5537138771329497,5.761967469925796,0.8420960867732521,0.0,0.0003426316765915288,1.7454967430811157,0.020758365913096946,0.0005688567653505053 -1996-01-15,0.047909367548190286,9.823828833591245,-4.5070005661123655,1.2449229371863513,5.84136279940461,0.6699306441299179,0.0,0.0004164149067973147,1.6071469121135775,0.019280284798702824,0.0004337043391533979 -1996-01-16,0.1148125518351618,10.883163976462724,-3.338073776091908,1.421910317758546,6.135020289899767,0.9269906796862046,0.0,0.0009467839706010922,1.4905267152930757,0.018701115272707586,0.00042648298686864686 -1996-01-17,0.10451313751495743,10.954491544410924,-1.5757804636007886,1.4192155819984769,6.002581570118691,0.8763631934854227,0.0,0.0008294464167556831,1.4377533305298567,0.017966359878390556,0.0004039158499564789 -1996-01-18,0.010263215691888369,10.009021078003425,-4.763474850151927,1.381174355536769,5.917699388321431,0.36502046934943705,0.0,7.595441678775669e-5,1.3847631678031287,0.01625111260928541,0.00027449541629282365 -1996-01-19,0.029403570757367686,8.853424573124204,-4.9042047090800445,1.3719153337522518,5.528623048501535,0.3168518135678751,0.0,0.0001986519155850186,1.2546241077726765,0.014958052868471508,0.00020893130351688663 -1996-01-20,0.04989571420523239,9.120841850226109,-3.472912770610024,1.4440709230696032,5.515801369368357,0.35421604314269106,0.0,0.00031548998117199994,1.163323369835945,0.01413318069661992,0.00018404246912521365 -1996-01-21,0.023642735487038317,8.993481298003926,-4.274481066440818,1.289047524582967,5.532965251937213,0.23033338690683744,0.0,0.00013977169407630025,1.0994552376741236,0.013083330787892183,0.00014108530264826186 -1996-01-22,0.0005784537800524151,9.02478314355835,-5.455662374722552,1.1801378342248992,5.614275504172843,0.10346344877146939,0.0,3.1310307380375164e-6,1.0174804744773862,0.011859697050711117,9.231664669878242e-5 -1996-01-23,0.002548942458985789,10.103641280090915,-5.034662306818811,1.2875173058110807,5.958944595458276,0.06915943182227198,0.0,1.2497616525049965e-5,0.9209377582281584,0.010757994646986426,6.199674485936574e-5 -1996-01-24,0.038684378400325695,10.38939989506012,-4.59369574328121,1.5887207503677143,6.032922768170251,0.15522853678663542,0.0,0.0001746443502961409,0.8300019023139593,0.01011960686697621,6.694914937683066e-5 -1996-01-25,0.02644630708304698,9.813215802745349,-4.823615275203777,1.2095640446225162,5.845343015952997,0.12656720962489085,0.0,0.00011143870738274803,0.7796692767330152,0.009390700623076403,6.054893909617024e-5 -1996-01-26,0.2998085676768557,10.846552777087254,-4.827176930666033,1.320965104448935,6.200820811319196,0.958697742363552,0.0,0.0013961416439701724,0.7260903309019289,0.011951027395465203,0.0002519977037811675 -1996-01-27,0.02313472225847952,11.872348805619275,-3.50460173099332,1.5054681297141281,6.48676724496099,0.32023970099226284,0.0,0.00011431435933079853,0.9178059390873256,0.010961321468255073,0.00018144471122188705 -1996-01-28,0.2423037803314357,13.011624255963062,-1.9920601995480396,1.7233840625838568,6.792248298902432,0.9376732673124688,0.0,0.0012348139728693697,0.8372498997724304,0.012576069263423412,0.0003061306481455891 -1996-01-29,0.09488432737312884,12.429937851620554,-0.9294245469990102,1.417278796712425,6.473634236342524,0.602226740733146,0.0,0.000505800430523437,0.9549459494291498,0.012229811744640773,0.00027629225144316694 -1996-01-30,0.14512495481274473,11.529497779093274,-2.5960640262800387,1.244186244725509,6.292132831018871,0.7224290813883734,0.0,0.0007771193484888417,0.9343440232439612,0.012575082541937049,0.00029818117099759256 -1996-01-31,1.3434152824723709,10.306160031803604,-2.907352555023289,0.9782216818831352,5.874210758617438,7.893708564728961,0.0,0.011713542242434594,0.9640423964143844,0.02688031927166984,0.001977661776149037 -1996-02-01,0.012418566469189523,9.690473503905565,-2.4268598250056477,0.9297899184742088,5.605926693600149,2.0605504729816357,0.0,0.0001380191732408935,2.0764128427350945,0.024333471290876416,0.0013083803242264927 -1996-02-02,0.06653936789927177,9.904862669443443,-1.8610896832464503,1.0916912319196497,5.622870829180396,1.3581082646276215,0.0,0.0006823406784221414,1.889332438682224,0.022784581965001893,0.0009555905455751768 -1996-02-03,0.0655644811675201,8.437808707420299,-3.9299035455005975,1.1575040981853066,5.296148996537383,1.0769739972894175,0.0,0.0006296949621943243,1.7685687796813905,0.02136641035262396,0.0007179248927719183 -1996-02-04,1.3381508588048652,7.265740479959095,-5.510482542108266,0.4933650256387172,5.011847992486074,11.42417237791606,0.0,0.01671177669812085,1.6687396092135662,0.03502823758582268,0.0030119502449153816 -1996-02-05,0.1014047320712035,6.3968031026463885,-5.524382524151224,0.5893959152908916,4.725249818491359,3.9251497420111585,0.0,0.0015188741168643688,2.7495332262115153,0.03321149646364677,0.002191909070109745 -1996-02-06,0.2039243853589361,8.19553052811957,-3.7466271567234655,0.8754346850345966,5.191397265414351,3.52968508595473,0.0,0.0029693829957784246,2.620964318030066,0.032908040285559874,0.001878962212153228 -1996-02-07,0.18113608329212316,8.88364554169275,-4.496057893993678,0.9962781147747779,5.484647562243991,3.0930680526627965,0.0,0.0025810928945897427,2.5745686761457884,0.032102094192205805,0.0016161256120839928 -1996-02-08,0.020553714890231584,10.266002234094227,-4.843653754156377,0.716162627620939,5.97712647627898,1.3956877254134166,0.0,0.0002754756249291057,2.497776342638289,0.029336839673032872,0.0010939670490074346 -1996-02-09,0.18916795449708146,10.180233730521953,-4.442228418259639,0.928436109675132,5.923046444791637,2.2957485715410506,0.0,0.0023807005187672647,2.261621887812652,0.02855004190622218,0.0010746179560712833 -1996-02-10,0.00023860364179877446,10.098297898849733,-4.591085045316579,0.7910496599278309,5.901227115645986,0.8414664750639622,0.0,2.806692300839404e-6,2.203266653968836,0.025669343963852558,0.0006999531427240049 -1996-02-11,0.5597381252844628,11.71660469967435,-3.322961358534265,1.290218871965542,6.387982700701084,4.882721728524605,0.0,0.0067602254684643315,1.9819119305701662,0.029608501860450772,0.0014849807932157163 -1996-02-12,0.0591075217330822,12.089530867042155,-3.1277222932024937,1.325984064926383,6.506047772370744,1.8325233954835967,0.0,0.0007241849324529648,2.2647531574015765,0.027071403115898632,0.001076920556498526 -1996-02-13,0.00041323560906333213,11.807650503151002,-3.716869025385531,1.4645672386665691,6.440386715588971,0.7763059095512872,0.0,4.5565710262357516e-6,2.0661523769562065,0.024074089839172596,0.0007017184722664874 -1996-02-14,0.0,12.83623816873964,-3.091188630753644,1.4397017134132366,6.76766919686061,0.462240288613761,0.0,0.0,1.8398442348702453,0.021432939332310275,0.00045678574467728677 -1996-02-15,0.033831484472083805,14.371930076776815,-2.4833101124871346,1.5443729841180145,7.288086820901389,0.4913984852519533,0.0,0.00029653234594569783,1.62786175588565,0.01935760089603951,0.00034249748114115186 -1996-02-16,0.004057516541728562,13.931766775265105,-1.7191545542704696,1.739998955543902,7.067824916103041,0.26074458783925186,0.0,3.149870770399743e-5,1.455611023836057,0.017004149959143327,0.00022774590641363402 -1996-02-17,2.6656926140338933e-5,13.521635086173784,-2.289305647920155,1.2602416074073093,6.955232147812866,0.1515262599511837,0.0,1.822155607452139e-7,1.2841940889622092,0.014960301972444103,0.00014827962602863363 -1996-02-18,0.0199270087243952,14.86725452754081,-1.7185658753030568,1.2474089562724942,7.411890037274833,0.1758744214988073,0.0,0.00012110822233176582,1.1323596354559944,0.013423359037723882,0.00011496358336098642 -1996-02-19,1.6650466879477932,12.774851754764853,1.9056925950143506,1.1826496778522424,6.185901083508245,10.756154238594325,0.0,0.016340181787122043,1.0071296761385111,0.031129044954577016,0.0025628699569698217 -1996-02-20,4.570997641369641,8.565004034321197,1.2047524631610638,1.0746963502279785,4.591158446519169,77.85332571632205,0.0,0.11517238676573438,2.3901712183346624,0.08109290287964623,0.01920500519196937 -1996-02-21,2.429289534709293,5.53837389178062,-0.3762589953582173,1.0866154163877084,3.6959973524851404,85.03566778862711,0.0,0.10069751875394539,6.409606373124462,0.10296715133092063,0.02783424056032825 -1996-02-22,3.964813094692824,5.952357813885689,-1.0078990732294308,1.0451192798741762,3.986152035103506,170.226780262246,0.0,0.22310994925218042,8.271928360757533,0.1425497508262324,0.052090568130001236 -1996-02-23,3.0565838721835696,6.904377942600927,-1.0899404429456727,1.116966901361151,4.361622467789155,190.09587257935735,0.0,0.21854139965300767,11.381814653143635,0.16819756465464075,0.06718466816367331 -1996-02-24,0.4654926427742732,9.280193970254698,-0.7405063145561277,1.2579198437160184,5.202079712125488,80.32364121747707,0.0,0.03503180185742766,13.327440323914693,0.16067832802732662,0.0490681706460938 -1996-02-25,0.0677643152183633,11.305642343802367,-0.1985706125923602,1.6635640217865753,5.8952233132714,38.09293886023238,0.0,0.004708348750795691,12.530472939557468,0.1467609320713525,0.03265798853943685 -1996-02-26,0.06416323432197242,13.224690144437359,0.16753099055104986,1.3574123155652351,6.584586253407348,24.36986178610149,0.0,0.004002144291103529,11.29676766519471,0.13234715097774727,0.021868201204949752 -1996-02-27,0.20235542753724248,13.159348751926085,0.5098851915671484,1.5495511467457614,6.514396491979778,21.863895600662318,0.0,0.011269121574770807,10.05526297837215,0.11949430762727052,0.015951061415316405 -1996-02-28,0.057120181393494875,12.733668385602716,-1.0841134649155373,1.4759892152281051,6.526225184573093,12.917019539711259,0.0,0.0028472311656312713,9.094863554886983,0.10661441249879695,0.010816924288056856 -1996-02-29,0.015322642807293188,13.083281138191744,-3.1135194780131346,1.0048019697290227,6.811095763731312,7.700896699573516,0.0,0.00067773326285199,8.115833208931347,0.0947224589826022,0.007144504217377412 -1996-03-01,0.08655465611561983,12.268017426807205,-3.471206885077528,0.7410250569125301,6.53803380087621,6.9209092856050605,0.0,0.0033904175427259264,7.173151434261488,0.0845706594376069,0.005166977610688681 -1996-03-02,0.10571763376493637,11.387704798364847,-2.2998548963016625,0.694178675137657,6.133834572801738,5.992299028203356,0.0,0.003717013662497326,6.440474037786872,0.07625869967407302,0.00392942981746245 -1996-03-03,0.012176197002302243,13.505999829923706,-1.6414830109843692,0.8403443751604811,6.850031335317601,3.0407603952422138,0.0,0.0003855651216464768,5.854353055802525,0.06834109278574714,0.0026165821136175946 -1996-03-04,0.2265086401852661,14.58671999132334,0.028348381043325373,0.9482277343697666,7.100930756222612,5.963606076806217,0.0,0.006460497850658636,5.175499298701712,0.06292973406794326,0.0026869782140757446 -1996-03-05,0.7129213348886652,14.82694077960366,0.7831099998419768,1.1484160409154889,7.108735216660243,14.92729152830419,0.0,0.019595208055388946,4.743213824681547,0.06356027953214237,0.004732756432105727 -1996-03-06,0.7682211732761559,13.80925341457224,-0.3547438738219129,1.127595653142533,6.83492485680556,18.244597880830284,0.0,0.021428420768122125,4.789918725928089,0.06474856566786436,0.00634359561768372 -1996-03-07,0.092078345850911,14.810433335353498,-1.0784365988889228,1.2680330545451703,7.276168460647858,7.066194269687553,0.0,0.002455998055343231,4.905392074438623,0.05821714594259371,0.004503344584036709 -1996-03-08,0.12033120235582508,14.976917294523153,-0.07152511584023996,1.5335212373531282,7.245609220944959,5.049851106372426,0.0,0.002869126998529828,4.373634484487044,0.05235165678815205,0.0033683326376066297 -1996-03-09,0.2692758569431963,14.700666524364765,0.012471395257937744,1.5335687547936043,7.127202501299344,6.222647162187288,0.0,0.00588763457662983,3.9360369851725494,0.048989046632422456,0.0030891055766467898 -1996-03-10,0.2065724633505442,16.311461010881374,1.7578104360074958,1.5320165382650666,7.563548090274438,5.114757147915373,0.0,0.004207386454655959,3.6921085104370426,0.04541699302773572,0.0026514992850770187 -1996-03-11,0.30983392345309113,15.863995778237816,2.1088073760796826,1.7561203774490168,7.335848825058633,5.849073075146515,0.0,0.005896338179743665,3.39419257444139,0.04314940021008949,0.0026238060074683387 -1996-03-12,0.19473985882198575,15.876776748261038,2.818953712744212,1.884263980482665,7.239875714698108,4.345047173449849,0.0,0.003481816241878377,3.2393585130262554,0.040004920345987696,0.0022381323510153165 -1996-03-13,1.1196411424240924,15.679781109516744,3.2542927790846257,2.364168512814565,7.089418030396867,15.686040914736886,0.0,0.021430385125980722,3.009203321060027,0.04809824180830247,0.004720011690728731 -1996-03-14,0.3394486854754293,15.43719579854072,3.860755286446065,1.948339830542675,6.884684960026465,8.851762201181442,0.0,0.006917601433268583,3.627734811224538,0.046215001027469886,0.00412581278074171 -1996-03-15,0.1711640937956653,17.32133143521716,4.506453124648894,2.363790107655483,7.573086796670354,5.333818614414617,0.0,0.003290997955502223,3.4997685686061457,0.04276387943884992,0.0031868132630748784 -1996-03-16,0.12200856450463132,17.978847192812946,4.983601429052606,2.36741568679842,7.772435160948285,3.6929740651738574,0.0,0.0021284740213009523,3.195581514173231,0.03864767763385785,0.002398557267323758 -1996-03-17,0.42545293496523134,18.750775367799513,4.785158049555677,2.139863287379911,8.13163779744295,6.29967791252206,0.0,0.0070383032456757255,2.877077978881246,0.038472248562141306,0.002633033693506902 -1996-03-18,0.27843777903336986,19.081304714358406,4.929602678947215,1.878778991531921,8.246627611287868,5.0368005207260556,0.0,0.004445428748063085,2.843794772835512,0.03637189474917123,0.0023908633802562666 -1996-03-19,0.1234031979053303,19.12968215003455,5.5194051822395345,2.237706894900556,8.169191943337228,3.029479091448004,0.0,0.0018111284843514153,2.682605263573744,0.03268809825363924,0.0018321107571674451 -1996-03-20,0.3685053250962626,18.49167030870379,4.253531824232756,1.891607946131565,8.086765195752777,4.66426739506642,0.0,0.005119973733901995,2.4149081051846966,0.032424881442290526,0.001972209631096175 -1996-03-21,0.23101882058857226,17.784674029583524,3.7247265557761073,1.934606519514789,7.861214340304478,3.61851413429304,0.0,0.0031048228678031142,2.3993933231650737,0.030642520071825604,0.001756570924572282 -1996-03-22,0.3313594539833077,18.355128526709755,3.768763228789816,1.8469257447856973,8.088457288071739,4.172898944014297,0.0,0.0043258172043180165,2.2777420925381673,0.030394266046318584,0.0018021146868961728 -1996-03-23,2.225522422059819,16.963146600000695,3.06569123695238,1.435068258488612,7.604136024502244,27.642311420823525,0.0,0.04011141374663696,2.2492049442184574,0.05212754338240739,0.007280647262998712 -1996-03-24,3.7407717513423187,15.823112956169382,3.5719106091847257,1.5322611822592942,7.054075474719895,83.19681823479935,0.0,0.11651018398555024,3.8917703783103956,0.08891394679815702,0.022479755872401908 -1996-03-25,1.345946375896899,14.791530356354674,1.9919349389040832,1.2180531950154887,6.863794857923326,56.79307001031415,0.0,0.053916936329327925,6.702519565327032,0.09375917752547336,0.022842914585203992 -1996-03-26,5.4237889256544145,13.93071960004726,2.4615150651997846,0.8740212340311699,6.444975125665295,208.9599649672393,0.0,0.2915101229130075,7.093097452443454,0.1458132494515833,0.05925638641514655 -1996-03-27,12.176111091023571,10.826380214184406,0.8543011225040139,0.8777606357233847,5.4618089476579135,827.2441509227697,0.0,1.1809935169397665,11.104094180255164,0.27119862527831673,0.2183968320530153 -1996-03-28,0.9186680604275896,12.084723581667127,0.14348625842099064,1.137672145949015,6.042438568693718,285.5170507966088,0.0,0.112562112949669,20.97253390738833,0.2550176774723756,0.15930531757070138 -1996-03-29,0.02010037769366847,13.71302949402212,3.3190761121866905,1.4821567759039258,6.199946088017427,117.05433943606069,0.0,0.0022257735009451156,19.504213258837087,0.22744503134868588,0.10403918128504872 -1996-03-30,0.07323563547301706,16.423564048017322,5.026777170924358,1.931493368546771,7.0329812194976205,73.38666182866109,0.0,0.007170494223077278,17.357670157206794,0.20305824769349018,0.06881643084885859 -1996-03-31,0.006101593113142206,17.507663912197376,5.175707635289238,1.7610984491053334,7.46953938142775,45.61404352783532,0.0,0.0005198269555769797,15.253247356845193,0.17776108112656333,0.04487541344364849 -1996-04-01,0.026496689556059258,16.453249142439375,4.330085881947254,1.6194193136993982,7.160364099519523,30.550238383364448,0.0,0.001948113886192579,13.248725438549755,0.15464734736889346,0.029508414125672434 -1996-04-02,0.1301187316300951,16.507682220028958,2.115355257988877,1.4959402259619738,7.498407418651603,24.795623707858713,0.0,0.008372644136795476,11.60770237349639,0.136737666630474,0.02048344945765699 -1996-04-03,0.6405095977048223,15.749996323184213,1.5898396119338063,1.3157114404958563,7.25737904134741,37.99750515177447,0.0,0.036998098796415135,10.200855855680611,0.12629456539738093,0.018967269982448274 -1996-04-04,2.271883690290713,14.741422129629795,2.9074106333355227,1.3224204028649231,6.669342766983277,100.99280739887756,0.0,0.13235611298265448,9.470624588035875,0.13679226902394503,0.03249997477020323 -1996-04-05,0.6650245492566443,16.32511352626653,2.8593147318775203,1.590797273063832,7.315167175463055,54.5541416720985,0.0,0.039117349177349214,10.37421154584656,0.12859962436878966,0.02711215036200662 -1996-04-06,0.3564413683243413,17.54436717499307,3.4326806792067,1.7065618589135951,7.729036009042062,33.030383753644735,0.0,0.01914967654692329,9.631641625794165,0.11635440261828439,0.020564556763401555 -1996-04-07,0.09237672987171056,18.022809870551328,4.099259331740005,1.8414766720564824,7.828120416774194,17.57283656311058,0.0,0.004380797074971771,8.646616236665114,0.1018033497224179,0.014053600990153821 -1996-04-08,0.04058843031942402,18.861872701091066,5.2656251767142725,1.8926109185758355,7.999632776105718,10.59300253979325,0.0,0.001670809161859875,7.5542391472076345,0.0884745978074467,0.009402639102783062 -1996-04-09,0.3213193819536159,19.103518022131922,5.285413545656652,1.8003601115621135,8.095203961208137,13.871411309533508,0.0,0.011676836018206849,6.545830866695053,0.07999764973338976,0.007898646915325833 -1996-04-10,0.0820072267658769,19.63817174741591,4.821629717316167,1.8909299606827152,8.387580600313793,7.5508511974476855,0.0,0.0026373412531099927,5.909144753576503,0.06979286316288875,0.005543222072199331 -1996-04-11,0.21819803905879906,19.009538120894245,4.386583958035699,1.6864820325604424,8.180279775758754,7.838618131627523,0.0,0.006160600421656864,5.127150321630657,0.06226968835369972,0.004546419461141144 -1996-04-12,1.8202808963445107,19.23468827731315,4.580164655627363,1.5453986343910406,8.242455776878433,38.66489901285634,0.0,0.054087558908000544,4.594693410027577,0.07473010623450888,0.011195135256462404 -1996-04-13,0.2921953884772656,19.831566447233087,5.437375398777387,1.643055407752147,8.364012727654922,16.27720475259981,0.0,0.008915554143192395,5.5048548222383955,0.0675317089989348,0.008645031706688415 -1996-04-14,4.310283110841892,18.65729340282317,5.407494347923014,1.725095189921462,7.861376872115163,115.23982367727098,0.0,0.1666294755060198,4.963786093301733,0.10803662551904869,0.03099930855593751 -1996-04-15,0.4176396534989131,19.593601335174966,5.307558279585011,1.282196990109015,8.272698607929792,42.111512119329895,0.0,0.018694756703190762,8.009667253779511,0.09817241821626065,0.02302564578456276 -1996-04-16,1.3771156961681477,21.517765258056507,6.377307647032874,1.5585757839091798,8.932846414055305,55.53982349003354,0.0,0.059268808790297056,7.221137258715493,0.10016382390049197,0.02401316490557239 -1996-04-17,1.1343472580758278,21.72383801055871,8.071188342273024,1.6610727532033196,8.731474216605715,50.78874039790949,0.0,0.04835471750765885,7.26920339723674,0.09789567396938521,0.02299416181037247 -1996-04-18,3.0236145236567884,21.569064237180424,8.591377555190446,1.4944165594980028,8.555651630000769,111.22854592001461,0.0,0.1426435736756133,7.134403320226444,0.11833402853249093,0.03668770995147115 -1996-04-19,1.8449223103995416,20.961730256239367,7.6678134735149746,0.9224027697149316,8.452939449748108,95.51069742737016,0.0,0.09662635095128858,8.64777904001839,0.12223286472477814,0.038594764231097284 -1996-04-20,1.647575154462715,18.396978406117,8.115036227798889,1.0989734743528412,7.184851457043013,88.98876108395925,0.0,0.08818575551199781,8.949975519122113,0.12345428833221105,0.038550961588638015 -1996-04-21,12.363605096130724,14.739656342674188,6.015999701872917,0.4091401535034744,6.001379029266357,730.5335684499872,0.0,1.0713293067674527,9.271863634821798,0.2520385584540012,0.18822057759864963 -1996-04-22,7.333739265127945,14.394205519255712,7.25923903403483,0.9420823869692544,5.51090719727884,818.3813621580307,0.0,0.9694509065055881,19.29432552340418,0.3101989213721053,0.2701359716790957 -1996-04-23,2.5172780878846432,16.84220125428297,8.1226605390772,1.005723951983325,6.441039074262462,477.3481064248584,0.0,0.36808355837824047,23.931732628208575,0.30811306268958655,0.23189198056398155 -1996-04-24,1.5284828308282683,17.78362198234025,8.17230412895741,1.2293167800741103,6.86932937660346,315.9396445423844,0.0,0.21276669120635594,23.326123295463237,0.2895393290024045,0.18334765232213668 -1996-04-25,0.7674766475013993,18.501866956698446,8.338797943077575,1.5117224886188552,7.161423217431305,197.2386399556472,0.0,0.09736320588148117,21.745254942915537,0.262258076655071,0.13417569074564883 -1996-04-26,8.052415444685646,17.061254553844194,7.822690385783428,1.4801361055395572,6.610433800301688,811.659473089333,0.0,1.0984938837545464,19.60171065722604,0.3221518407900068,0.25460399006101286 -1996-04-27,1.2525439975046562,15.196384060301476,6.4173224111771265,0.8882381401779142,6.092308432574225,348.14508703515514,0.0,0.1809308005617576,24.28889337301782,0.29754044785265094,0.19328461838405397 -1996-04-28,0.6131035460767164,17.329827225580388,7.256967020942056,1.1126885550128611,6.861316877436336,194.2638862568613,0.0,0.08113473991828124,22.696852204011247,0.27154519820842693,0.1381731649316106 -1996-04-29,0.0,18.70142165009721,7.232842293433998,1.2761903214757,7.481278708149701,95.77802267401981,0.0,0.0,20.412998827185707,0.23779761197254148,0.08994423623172672 -1996-04-30,0.11991895143338745,20.67710126277822,8.300538619039742,1.437615461941663,8.151967784319593,66.81384460267539,0.0,0.011987210715890553,17.67585618155204,0.2073087284063543,0.060374700324031874 -1996-05-01,3.6141839393309683,20.50753992837837,10.485089142987164,1.5117282097615798,7.560870600371181,266.0396678216027,0.0,0.3459851187686249,15.218842877229635,0.21939200805854256,0.09198243780497507 -1996-05-02,1.1216670891413174,19.25576648650753,10.034385359731779,1.124696727139862,7.063437279175515,149.37621098398853,0.0,0.10620349417481423,16.293926112434395,0.20287986637732522,0.07604729474861818 -1996-05-03,2.497339784507559,19.902265126823085,10.145955257319311,1.6028187849810906,7.346626990087834,208.04482184781034,0.0,0.23088982066257513,15.230596226268874,0.2065184485755375,0.0846596007458259 -1996-05-04,3.960885500142096,21.152645404281113,10.299269989930618,2.026321288024949,7.91044850802598,322.4820042160625,0.0,0.3879135953066406,15.413005927678297,0.22569271448815081,0.1141749965435735 -1996-05-05,1.7156179513064087,21.95400384310481,10.985565865020638,2.239744920220455,8.124730093624173,208.308197622766,0.0,0.16902622500537223,16.63753512608854,0.21380180398377657,0.10005929627440374 -1996-05-06,1.5566903479149543,21.095684693662538,10.990378380159841,2.058464195299949,7.697670257380296,170.74601565693843,0.0,0.14390078265672646,15.699801652780547,0.20102644513571463,0.08704491906611958 -1996-05-07,3.681270084615226,20.22413131481668,10.734855701357572,1.4427381185802646,7.331640993120565,291.9913791956679,0.0,0.3461302918895739,14.89969549241888,0.21645566532234384,0.10936560145807268 -1996-05-08,6.391779947349397,18.836955891023152,10.787040341724527,1.2946502769974149,6.614183600381885,550.4746829863685,0.0,0.7018837552439425,16.15310947194268,0.26263269358311125,0.17806403689718533 -1996-05-09,1.3010446049401745,19.029593475827056,9.560526954367623,1.511132014474729,7.0565562306196865,257.4659060106388,0.0,0.15193443889829528,19.85009719683024,0.24639647773139242,0.13904558183119722 -1996-05-10,0.2342034762732769,19.850712692666548,8.91901598368332,1.1177612840036026,7.599710249188958,118.64601196581893,0.0,0.024611622100196545,18.468122311975684,0.21786942959381095,0.09425962167733534 -1996-05-11,1.788378111706731,19.404707818858228,8.781231767191537,1.1487459983828527,7.420499186482718,175.7496736348569,0.0,0.1715651637172384,16.16903976827591,0.2091917569390081,0.08748191418524222 -1996-05-12,4.4085954713320845,16.93241979273996,8.421213246038443,1.488935976416164,6.344188355887306,356.0247555123297,0.0,0.44234216755271305,15.587440280913494,0.23294027453080116,0.12429974413132278 -1996-05-13,7.334158575251325,17.396707756089857,6.997612048863572,1.515561226387086,6.8991841212893705,693.676103233913,0.0,0.8975520797230407,17.7222787044197,0.29189052525248194,0.21757885484568878 -1996-05-14,6.919697070913231,18.117377117713442,7.030216249709553,1.3610154016253633,7.21009297298107,862.2354614980569,0.0,1.020299700788109,21.90609312770189,0.3358009340265665,0.296989310436978 -1996-05-15,3.3137003942579355,19.17904912462154,9.010418362670816,1.1585016781670714,7.247639296361124,593.4936087368478,0.0,0.5156385830770773,24.98714327440374,0.32968566246392117,0.27183967430118366 -1996-05-16,0.5894509841746395,20.793463410190547,9.79218657890944,1.1710057666149605,7.818428601417099,267.06974385811577,0.0,0.08476791646100035,24.5203176981242,0.2925117999752899,0.18986201904688968 -1996-05-17,1.1285273874175217,20.63278142292997,10.674006518553943,1.0744822032289576,7.516713589481377,224.52178742121532,0.0,0.14297166219115942,21.536779188591716,0.2640354719083482,0.14536079854643494 -1996-05-18,0.8944005103849642,21.063232750670124,10.444928319650439,1.1697634882803507,7.7818283916691,170.02491136835707,0.0,0.10189589756141482,19.589114981932237,0.238619083365084,0.11013820358865732 -1996-05-19,0.10312315249813744,21.641993136887503,10.300341873561916,0.9849230731967188,8.091330380805513,84.98938631536342,0.0,0.010272779241424473,17.626984830316022,0.20654375057884508,0.07325897643797002 -1996-05-20,2.174100765454292,21.440561851305894,10.782903444216194,1.167838523662004,7.873118090155874,178.31110976748496,0.0,0.19828129211855927,15.182132467028294,0.20218836293794276,0.07787940638613158 -1996-05-21,0.8435325244505658,21.49644380174665,10.526556027595037,1.4174572446185096,7.960948463772658,109.53580245045165,0.0,0.07234857978139209,14.931474111208683,0.18376814394438207,0.06171197328881133 -1996-05-22,0.5729337263279533,23.233520495668945,11.262027343302345,1.3721783016495324,8.61728673667777,74.04538278965533,0.0,0.044064424173052785,13.557262317167217,0.16460721446630575,0.04688105368398496 -1996-05-23,3.147557348097936,23.41546973867509,12.097903161556154,1.664131307897594,8.497158621453504,188.28949258677142,0.0,0.2370216520969608,11.991244939228316,0.17635679414512323,0.06660741054634566 -1996-05-24,3.4139733431669264,22.816001394752394,11.856234558597519,1.3107385276159915,8.259878672619234,238.49698567353266,0.0,0.2773352076970692,12.872396617412143,0.1897251803673855,0.08558667610958376 -1996-05-25,6.297289858814534,22.399073669323773,12.430839419172521,0.6148423397114342,7.8922751526370485,467.646598096606,0.0,0.6043188285252485,13.90781437065409,0.23537578070229837,0.1477293727037642 -1996-05-26,18.859934669625325,21.190276809660823,12.362932880946849,0.661512603037595,7.289763734941878,2071.242651978885,0.0,2.9677872326338743,17.350340473984264,0.4218251826160604,0.5480543270750489 -1996-05-27,9.258946570365321,19.318752784716086,11.832487182225153,0.7423595380457249,6.477861319613262,1850.9520909925188,0.0,2.0195462182719552,31.18494633846809,0.4711439624336532,0.6642633544769582 -1996-05-28,4.949251422405238,18.14231211068545,11.759847519868641,0.8558363022005487,5.8674126219797325,1314.1339445919468,0.0,1.1498345404646475,35.341481305124674,0.46935975004665453,0.6074835184597797 -1996-05-29,2.989339687316676,19.874485019981147,11.643156014026214,1.3015138316141706,6.825415936014151,916.537227466427,0.0,0.6804391111011339,35.68006253930159,0.45047234773016753,0.4990501254548014 -1996-05-30,5.146339656468348,21.276006214669028,11.775882521815165,1.6035821441657228,7.497885558529212,1110.8588640269975,0.0,1.1339504941555054,33.57987776816782,0.45113420630992757,0.49751889068555455 -1996-05-31,5.64283172823267,21.401015848998078,12.04298186068539,1.1877027866342036,7.48182881283142,1200.2332799589315,0.0,1.2356461330431845,33.1379220497285,0.451769517892325,0.5120067921698093 -1996-06-01,4.5333916525427975,20.766067653005887,12.130960637167142,1.3553150449830844,7.127982200041726,1048.1522770291067,0.0,0.9764971492535581,33.19484910974251,0.4395084540566473,0.48197847396401955 -1996-06-02,2.4385540103486814,21.630126912129775,12.339210480474696,1.515724908924675,7.507292211563766,700.6012901946402,0.0,0.49651400856588124,32.57044657889094,0.4078311476008758,0.3893469262735667 -1996-06-03,2.057470846418521,20.325441689533704,11.591973583768876,1.260725047160094,7.061943276105153,535.4876221139917,0.0,0.38039912493658035,30.03477244358174,0.3738529003901389,0.31136793603414825 -1996-06-04,2.1919057087440432,21.28687908252705,11.845227964661202,1.644316960012426,7.472764379557074,471.6945715216009,0.0,0.3741585662262441,27.850466442804912,0.3499732898683388,0.2596570611465913 -1996-06-05,5.511336093780774,20.653590517921568,11.673036493094516,1.3869522721762713,7.200715438860758,799.9614280744976,0.0,0.9297658222050815,25.878723878265877,0.36567294027796043,0.31059512460911665 -1996-06-06,4.934827617033147,20.81076517883361,12.06373971091644,1.5970460151546424,7.161983296069981,823.2471064782541,0.0,0.8654294840295087,27.17301529838405,0.3740346254616591,0.33395725191850695 -1996-06-07,1.9317278735100376,19.956884592735086,11.379994818875355,1.2878742051796923,6.931042798697003,485.79444761756304,0.0,0.32748850023766307,27.804638393729235,0.3464085285535301,0.26725543709468325 -1996-06-08,3.322014296628029,19.440949679642546,10.929847885330636,0.9314194256260784,6.8031598921759855,547.9745860305939,0.0,0.5370984786598951,25.914052208550714,0.3405803751452233,0.2557519063728409 -1996-06-09,2.904209663419775,19.37324530110344,10.726917436377397,1.0562002752148976,6.827316998872208,499.032714091024,0.0,0.4587313934054693,25.55363362548966,0.33151460171442426,0.23633110210681843 -1996-06-10,6.263832856196089,19.57410370059616,10.61153725187776,0.4951551882369416,6.958581184603394,856.3318692780203,0.0,1.0307966684573842,24.87169943890578,0.3627078652161924,0.31079446044570824 -1996-06-11,7.600141823769956,18.76978514140029,10.081256674423292,0.2218810458559227,6.7109807514993856,1177.335206587864,0.0,1.3976545660088462,27.095248584869708,0.4041778013841687,0.41512614137071124 -1996-06-12,9.411087598380293,19.653749617848856,10.320804484918314,0.1932179572670441,7.075239207081591,1661.1385356805981,0.0,1.9978343956732463,30.285023976453118,0.46243281631503275,0.574427407472879 -1996-06-13,8.849622268361735,19.435459229281875,10.995625474342027,0.3904516940918335,6.773751440664749,1877.1852168080416,0.0,2.1137667135656457,34.25793053662349,0.5021737963044297,0.6957774525911065 -1996-06-14,2.3356374168132756,21.284696976986538,11.734128883254359,1.042984761043526,7.486747799659738,947.0509405790199,0.0,0.5544128710055656,37.3481074575236,0.4622887526293905,0.5373359699431408 -1996-06-15,2.4987608892791533,20.65503877844165,12.408845626826114,0.986085018182237,6.960106467604957,740.3778341904658,0.0,0.5333003007226855,33.93955689506531,0.4244817249425335,0.43098331077144175 -1996-06-16,1.5838239130763871,22.966381229799968,13.171872100408835,1.0701697688899463,7.923779230024872,515.2638077736923,0.0,0.307166958180368,31.600385315157283,0.38657356405477594,0.3273205861986748 -1996-06-17,13.107851761914288,22.93997535258054,14.3025380184464,1.2253460880968514,7.554419816404626,2042.2529465834334,0.0,2.7688843819399818,28.251116148696983,0.4818039664850297,0.6346738689010345 -1996-06-18,4.913077856144861,22.88714452154291,14.359481243128249,1.1021001294481163,7.5056060374160465,1318.8260456090673,0.0,1.138225419081623,35.270047927352365,0.468106202023688,0.5864544938257655 -1996-06-19,2.2158838215835464,23.082760646213075,14.274954020960758,1.1479380762462386,7.638499344908179,771.8345323302001,0.0,0.476953070592796,34.33833467342063,0.4258318897298893,0.45437746305420756 -1996-06-20,4.565181797282797,23.387098695970877,14.684971559311027,1.1888358214150414,7.6659193398575,931.0563390395495,0.0,0.9211080844938913,31.23576848611581,0.4170568252030606,0.43603068592644223 -1996-06-21,10.596360705019595,22.23355160258416,14.56513059421643,1.5468109422042124,7.071020781649128,1853.8991486285656,0.0,2.317830596380322,30.591136838531977,0.47980645283424034,0.6367594322657918 -1996-06-22,7.961592284111098,21.572977745117765,14.08617771792892,1.5988130817727921,6.876084341526781,1826.1241525133973,0.0,1.9485681056740694,35.50651932938164,0.5063740622410821,0.7111987426269881 -1996-06-23,2.1564526824643595,20.744460181826934,13.463594811149006,1.376800727640655,6.642131906063662,922.310141911733,0.0,0.5138702286263497,37.5638685929883,0.4627148429316297,0.5412012887248797 -1996-06-24,1.9924778766030264,21.65108491084746,13.526045126488745,1.3380427615898232,7.113418102765175,673.0790137146452,0.0,0.4310310423534254,34.60362896121209,0.42631986055545273,0.4179274462373284 -1996-06-25,9.70601101808312,22.03185097134029,13.983402475705766,1.1616483120629841,7.1630928184606235,1713.3631636883542,0.0,2.1636499676454424,31.62891295414008,0.4815238708861663,0.6014987956744248 -1996-06-26,5.7798431077655925,20.752962910853594,14.134863175653038,1.1265600170928634,6.392786503939437,1413.8552150997007,0.0,1.369614358210085,35.55706348175535,0.48154696703499045,0.6000914646308263 -1996-06-27,7.299679142485522,21.23524009264613,13.958194288231836,1.2991230353667629,6.732162497799083,1658.4149931897289,0.0,1.8040884090785516,36.16515455342043,0.5063358767211111,0.6653304509133302 -1996-06-28,3.057901335190721,20.959765826730088,13.776142722343307,1.1249586708633408,6.645255904565363,1028.9054360294972,0.0,0.7415328126103877,37.68125851405353,0.4745836223248117,0.546008178256666 -1996-06-29,5.0922516799803415,21.5789601145824,14.08515468137198,1.3055049593815777,6.8765070167447755,1184.4475294032213,0.0,1.190206979456475,35.46202625344249,0.4724298732136967,0.5366522569845279 -1996-06-30,8.572935936503974,21.13369733471496,14.528807653894908,1.823826830860028,6.455453791585959,1790.0553990280598,0.0,2.0938659451754518,35.12789539632322,0.5090850893657666,0.6681574190775854 -1996-07-01,3.7213838509369737,21.79846620978391,14.817499340914722,1.841646093698228,6.72535494753327,1165.2602534586943,0.0,0.9235395695986028,38.111245274385034,0.4873217988572249,0.5755616191667879 -1996-07-02,2.629142312359809,22.164819193285666,14.485106557066384,1.3872286043544688,7.057153347926153,834.5982164768512,0.0,0.607176582469938,36.31943415021825,0.453724538512988,0.4671151670668154 -1996-07-03,5.967531387027142,21.986302221146246,14.722081581501756,1.1664470356128775,6.869141647899291,1216.4095737446846,0.0,1.3354175964756028,33.645262127304385,0.4614622173359575,0.5074070762814785 -1996-07-04,14.204815137146316,20.365625041180135,14.219918914909485,0.8781990610509546,6.132770075423602,2823.3259622225196,0.0,3.693137226589549,34.34249074350391,0.5655432356535705,0.8926328592894684 -1996-07-05,3.401247925039337,20.364465516082827,14.330666270507267,1.310600666152207,6.086277955802889,1424.2193418069103,0.0,0.9533625992803336,42.46877206952833,0.5343546682280759,0.7262255772380285 -1996-07-06,3.9697200910786403,21.72442066384137,14.608923076735852,1.1239458982199324,6.763572482492201,1233.1483159816282,0.0,1.0534772730366324,40.26088539466213,0.5152565994664701,0.6331461958192475 -1996-07-07,8.134080650804679,21.866480511837683,14.317580126978955,0.6749074316400141,6.9523152368261085,1894.4923593954275,0.0,2.1674423396317852,38.29380378288862,0.5408534111394703,0.7421735310299351 -1996-07-08,3.824382449123795,22.220639691383347,14.439862907768877,0.7622716733565379,7.105465436661948,1269.4973860044176,0.0,1.0036132756081875,39.94820403357765,0.509920988266819,0.6359350339441099 -1996-07-09,4.800250403541301,22.365025541098014,13.314647678657716,0.9176157890054092,7.5596863452031515,1261.7469189820808,0.0,1.193333498106976,37.62448976888106,0.49421949155857875,0.5956664721268414 -1996-07-10,11.648093690278888,21.244485782652273,12.812462295809949,0.5721745976962275,7.13122048608541,2468.67417813294,0.0,3.071664727696106,36.141059558268594,0.5567112709358423,0.8554572089415219 -1996-07-11,2.4227495207642917,20.405819945907968,12.98156329307294,0.5938621528816015,6.627696606924073,1158.9902494958574,0.0,0.64034114821429,40.89927558020417,0.5046722533048367,0.6543638359858539 -1996-07-12,13.312977648830845,19.56269822410748,13.610550692584086,1.1450927282180772,5.91643259624869,2930.4265998698797,0.0,3.7553800257541567,37.64881371460538,0.5936703563578652,0.9977721885631681 -1996-07-13,8.768869164539321,20.043581886035764,13.750830941165106,1.2732718208875269,6.138885265568279,2707.605237867619,0.0,2.8113451534896647,44.700414768808265,0.6228809466396665,1.0775716305483583 -1996-07-14,10.987345073913211,20.76506661379477,14.221078159463493,1.3725039859686778,6.368406594312774,3367.2735226652735,0.0,3.805141013126317,46.54171910978235,0.6701746371375233,1.2808374174940373 -1996-07-15,2.8971809213621382,21.421311306603847,14.33868965139345,1.3204366084634098,6.6987126880500325,1705.4345480589568,0.0,0.9755695038367476,49.565959064548785,0.6111600510462947,0.9823098282920628 -1996-07-16,3.5453828978908652,20.941417688379506,14.256150171699678,1.0623333220332258,6.457593929718226,1413.7162503762734,0.0,1.0712384886818191,45.12540402286519,0.5669817061453214,0.8025494147606682 -1996-07-17,6.200949844984912,20.94332867737955,14.277748481671985,1.0327512852052758,6.451075129144718,1764.217847865102,0.0,1.7973910544017784,42.26017717715024,0.5645393103150694,0.7961012897359144 -1996-07-18,8.350699114701866,19.97505910992189,14.340292250311524,1.041194971808807,5.85629266389593,2249.4159382470034,0.0,2.482652875819552,42.092657472258075,0.587630942313252,0.8962450989602199 -1996-07-19,11.736223354692404,20.89325998905245,14.716211700755446,1.2079398705656172,6.246061002358375,3268.782797175167,0.0,3.8775194643681115,44.32792326188571,0.653109339571679,1.1738230562118153 -1996-07-20,7.350105708080835,21.576219895580753,15.264962527799009,1.0576913651833366,6.423787643227855,2668.9495679293814,0.0,2.553836200412401,48.533838674099115,0.6510101055799086,1.1529629287599976 -1996-07-21,9.95497349813776,21.01231279023336,15.161947314855206,0.8128992437655065,6.128887901069636,3233.4631571800187,0.0,3.5464251852751882,48.18541814827709,0.6772961880668398,1.2905203024886953 -1996-07-22,13.248265025217677,20.68607789401981,14.790676166004939,0.7264897060462406,6.093734036278203,4452.885928367278,0.0,5.196353737427124,50.34060038543903,0.7407672175319595,1.631289683735659 -1996-07-23,11.442891794941357,22.14580733540279,14.893128695866745,1.0576914560019164,6.908752385281506,4565.083433488961,0.0,4.875791575463605,54.66703156435676,0.7701358352890386,1.8043042100036562 -1996-07-24,9.289221743669119,23.237339131170987,15.019563023598465,1.2039451195026745,7.478850668295106,4044.4815321178307,0.0,3.9231986989092125,55.41916074191008,0.7538088332804751,1.7718821969924088 -1996-07-25,14.794241663704428,22.243774177899805,14.669867416411927,1.5811389363617625,7.050760054362437,5593.581075271474,0.0,6.4128897394521776,53.61577663923304,0.7969303836813663,2.1298692310120653 -1996-07-26,18.13838996225277,21.69105860237536,14.618901275079311,1.5474276150683033,6.757946966152174,7585.547092997251,0.0,8.891040957167387,56.85174469116848,0.8735842828900718,2.7402370969224936 -1996-07-27,4.561037530665646,21.253592517462586,14.880355510238648,1.0238732914556137,6.401061024161638,3709.4933656280796,0.0,2.112702394707699,61.665461898386546,0.771493867552468,2.105455709098299 -1996-07-28,11.67667938827971,21.67876367868436,14.726889618231375,0.6792901185318958,6.712217641855417,4920.470970017396,0.0,5.182776702460361,56.227421725125346,0.7910367910473215,2.1597070273297527 -1996-07-29,16.335506075002858,20.923146178471374,14.365617935738713,0.4918573060533973,6.419498533478645,6843.244565840109,0.0,7.844813127039291,56.99412336157901,0.8542405216634519,2.6003564570869275 -1996-07-30,6.313410906553585,20.644354159562443,13.872606578650188,0.6555756666773024,6.454104876599603,4100.989900031498,0.0,2.9534061617500953,61.177786217223236,0.7862267392005167,2.1424095550446394 -1996-07-31,9.710492039766981,20.77938166766884,13.304176372991304,0.7395236231286424,6.740888757093705,4406.265535778805,0.0,4.29191716800794,57.07689916653104,0.7780278769027483,2.0481157195910407 -1996-08-01,7.822366586705322,20.241603273398184,13.532031163722193,0.5840404605910207,6.359655974717429,3754.5413039579043,0.0,3.3016551952647513,56.14949166380907,0.7452288247407665,1.8359528502188904 -1996-08-02,0.5211939245469129,21.411622280882558,14.162948379393635,0.7993017460556471,6.783691840710009,1533.1435026116728,0.0,0.1933891691924562,54.59652872242793,0.6420841412757039,1.2245653736195414 -1996-08-03,5.211557155684195,22.53973666498727,14.000837821616994,0.8973748903405331,7.464769684272208,1934.842846908589,0.0,1.699830652059303,47.1665795396292,0.6101698202778992,1.0559588317050452 -1996-08-04,10.872847532907317,23.356612335961913,13.683493910260667,0.6721132843657072,8.002453860134027,3103.2986416704284,0.0,3.5444729493628433,44.25820774784758,0.6422394574299368,1.2270779377408183 -1996-08-05,5.319123167195434,22.499928253531237,14.126687457955587,0.945066991955232,7.4052328530806255,2107.8192913767953,0.0,1.6773703637479453,45.82845559961286,0.5958346537857189,1.0541744821605068 -1996-08-06,11.71204603093847,21.258697981362506,14.459711402643741,1.1857288717281336,6.591028825420735,3262.5097705547682,0.0,3.7698126000109617,43.34165216832578,0.6413382998193685,1.260227700762773 -1996-08-07,7.4105212779273915,21.56370956058689,14.481713877389808,1.1759950780733952,6.759804353173594,2679.8091581359104,0.0,2.4986557499125626,47.3303235834403,0.6376937703075968,1.2008062525854657 -1996-08-08,5.315838798527581,22.066968575516434,14.780967559203797,0.9363295990769576,6.935541574099619,2070.114674384557,0.0,1.7238438386892998,46.89230568405365,0.6081895261239701,1.0441491229972113 -1996-08-09,5.225359168052663,21.73934649240393,14.556519265751266,0.7245336605467708,6.836074287534239,1834.4036362264603,0.0,1.5957484096175287,44.67221959333888,0.5812730002643411,0.9226682731147354 -1996-08-10,7.166838688289032,21.960977053175817,14.273797299517186,0.6450125160921144,7.068418433668304,2101.3528857688816,0.0,2.1426389428645853,42.900793262801976,0.5832540047586436,0.926862112237991 -1996-08-11,13.72495775579108,20.38007176524008,13.533840544439617,0.5459598247993734,6.457341982484424,3659.8146792899406,0.0,4.476845411226661,42.810018638540186,0.658594187620862,1.2850095219935753 -1996-08-12,6.682469178744387,20.098752068089304,12.9890549630209,0.6010802430871309,6.504548076496334,2615.056531581012,0.0,2.3097304242602616,48.66843864974876,0.6448005907196036,1.1881713816726176 -1996-08-13,9.679579087677537,21.28239231487421,12.650253318227167,0.3144978554965832,7.258032133457298,3143.2985322020536,0.0,3.391036942559671,47.66582859885984,0.6680351633239406,1.2897791950631006 -1996-08-14,2.783925287250036,22.011776048129924,12.66592992406606,0.4741470473038933,7.63589768891095,1640.844059680095,0.0,0.9076335707236405,48.37627886966661,0.5959817310301455,0.9777862558048747 -1996-08-15,4.9124203806008655,23.01554056564792,13.032440969369311,0.8921395884876759,8.048879395644473,1640.5352037795826,0.0,1.4320305445315942,43.11931786133866,0.5595372218222048,0.8545407020950344 -1996-08-16,10.13945318852124,22.813326570097185,13.581133833621855,1.18946103915669,7.780706450969035,2563.565856702577,0.0,2.9378510318540325,40.24063388247893,0.5868938953005487,1.0035970535657472 -1996-08-17,16.222477641399323,22.269633067869616,13.863017689006275,1.4397777500413904,7.40059974930126,4364.02047718076,0.0,5.409235914248747,42.357614365624784,0.6824183994881766,1.476930590368562 -1996-08-18,19.940956617092546,21.74124292537668,13.787171520428018,1.3806665591415073,7.140890480685789,6702.289041953646,0.0,8.287078702519828,49.15778614952572,0.8049535572560519,2.2232425544899574 -1996-08-19,10.644693397407169,21.037883875471795,13.876005662548346,1.435555835793103,6.720177918464341,5071.691149462481,0.0,4.774156764692998,57.19541367635355,0.7902913038243646,2.1741623057082053 -1996-08-20,3.103354023218136,21.31837548219548,13.558416744649529,1.064130718862883,6.994386605820731,2553.569292406805,0.0,1.259372574730603,56.93669804496437,0.6994259454669866,1.6070355543621733 -1996-08-21,0.34052028519012784,22.18843865934166,13.056940782672136,1.026727589905092,7.630280253082142,1217.7478869110691,0.0,0.11442811694208349,50.76985207860173,0.5954012243879954,1.063527986447982 -1996-08-22,1.3938889159037486,24.018297673888544,12.794738537065866,0.9352200842439092,8.650218723491585,958.5274983815273,0.0,0.38641806219411445,43.085504476304926,0.5181548100893466,0.7511445918119406 -1996-08-23,9.721188893608923,22.783549032354447,13.179008536878202,1.055336435499555,7.911505816565217,2175.7468201624793,0.0,2.5463516418817687,36.894797762896445,0.543044674646127,0.8766794797192561 -1996-08-24,0.5075079910571507,21.476198439828945,12.973754249117016,1.0484908172991068,7.289664652942741,801.2283374424771,0.0,0.12411080886837778,39.23802579022844,0.46300855154983284,0.5895748414772977 -1996-08-25,3.9452737315418975,22.764285137430495,13.050268060905493,0.7887918483868305,7.947116035338524,969.5086626214421,0.0,0.8679813601010853,34.13837808324933,0.4436487521221132,0.5159484963832779 -1996-08-26,6.239442465500972,21.85120961584059,13.678670038871402,0.6627977918112912,7.263606571607885,1264.0396594918407,0.0,1.3418126848465208,32.28448258233121,0.44877763711931096,0.5401690251779155 -1996-08-27,3.456977540722177,21.444773118247237,13.875723142303656,0.6805238207396309,6.972927949863742,910.3161322141218,0.0,0.7300430849077117,33.139506881751515,0.42632425916101224,0.4627844919116239 -1996-08-28,6.616462852067982,21.360299034311467,13.314056054066336,0.8764896151420263,7.127213919600071,1268.0977041276835,0.0,1.4056473127201299,31.725292435939163,0.4466554827887913,0.5152815220856649 -1996-08-29,8.5256380581474,20.921065477658253,12.232006501191664,0.6068729659316642,7.249549725752425,1696.536594323802,0.0,1.9531728259972674,33.08559933478273,0.48474273510873045,0.6328234692553693 -1996-08-30,6.518336199218347,19.63961533650841,11.926819550758907,0.6217704729796749,6.675741024076881,1557.5164451189987,0.0,1.5702475897604922,35.71824760650989,0.49202759731236423,0.6510317282925219 -1996-08-31,9.898172058514447,20.84017947959415,12.581449943093533,1.0893543629767664,7.102222433388115,2212.493105966847,0.0,2.5847048904884105,36.6985164876613,0.5428198647301115,0.8173505595583157 -1996-09-01,11.36128530377151,21.199459674729614,12.527862792338912,0.530725558739039,7.3134110336009925,2860.0384266141755,0.0,3.322530926980889,39.95150949394345,0.5977593086559706,1.037961215547108 -1996-09-02,6.8567470998440125,19.455721611374017,12.859475000773717,0.4361850561849129,6.2516886015458315,2238.0854053575035,0.0,2.0783058378304613,43.56634760683207,0.5873949051299666,0.9921167333709885 -1996-09-03,4.818387506913717,21.03706890096503,12.629607936020415,0.9064495561784528,7.202063036059803,1718.5010397414376,0.0,1.4335845079003429,43.91335341103525,0.5676917789325373,0.8641057833374264 -1996-09-04,4.680135304827036,20.58361369242389,12.574562187914394,0.9118443049184504,6.981286384294246,1507.49971000583,0.0,1.3035613034638196,41.59859609336588,0.5391158792873052,0.7609787176966737 -1996-09-05,2.5888289961580537,21.21044093937147,12.865573513137445,1.0516928728448571,7.224972158012424,1011.9420279606435,0.0,0.6642160242034731,39.799394360912,0.49379409539013064,0.596498081242906 -1996-09-06,3.48538367002133,21.7775922052265,13.065090220936673,0.8840897534776117,7.467499164979306,967.0796402484211,0.0,0.8174125222728628,36.381205782789095,0.46441876814015565,0.51275534747524 -1996-09-07,3.2770513881626893,22.47190125004992,13.097721011563767,0.6708245839359095,7.829894313899356,849.9055855334352,0.0,0.7123452431795907,34.10533013830056,0.43547942818673924,0.44224471832007445 -1996-09-08,3.5282838305825743,21.802551281259195,12.815518828508976,0.36912891610079496,7.567986513522637,798.6270473155214,0.0,0.7126751593265128,31.789692208536177,0.4114305023434798,0.3963958473467894 -1996-09-09,3.4204347058991678,23.05405252296247,13.091638441050813,0.5168592308047862,8.145768315060257,729.6474202834213,0.0,0.6534082950935227,30.25336151928474,0.39227692100458994,0.3575261316225193 -1996-09-10,5.622169533633472,20.68793022987069,12.975462076932548,0.26095267676001843,6.922881036661247,960.0269724441837,0.0,1.0501091142483547,28.520215153912176,0.3977356592473565,0.39262733366480984 -1996-09-11,2.297920146384648,18.736152022507177,10.39456762493634,0.1876686785425697,6.732174997046834,594.7770258445431,0.0,0.4211942706668097,29.678584965829636,0.3725046290006895,0.3197149906630644 -1996-09-12,1.64686832415774,20.87698968788237,10.355822766962536,0.11206673101952204,7.810491588835969,419.8260094929549,0.0,0.27918133260998323,27.946141034923187,0.3447385176595687,0.2506289144997459 -1996-09-13,0.2919513015356455,21.882028240572357,10.05527650311715,0.19068174510345995,8.372801298733393,209.7569857429995,0.0,0.043195556902331345,25.316756811320555,0.29832410644284674,0.169724805438488 -1996-09-14,2.1918033660073233,22.33785648509716,10.641961048589767,0.19763364176698056,8.45953739179315,302.0314635444783,0.0,0.28726089821625234,21.703121522607685,0.2783596925116407,0.15422258667869426 -1996-09-15,7.553747088719175,20.89566837262748,11.812024767491767,0.7226317764573091,7.429745945181769,802.3970823417618,0.0,1.0486936862905951,20.234990418081537,0.3237199724936274,0.2600707613565749 -1996-09-16,11.643095114777978,19.796209237758767,12.03899351759896,0.5595094726979104,6.781973783332694,1576.3797226457812,0.0,2.0588623146618836,23.991991785011635,0.4151246291122356,0.4827860449064089 -1996-09-17,8.882900925436836,19.589458648502774,12.473488645865359,0.9415363568507262,6.521208049597571,1690.2561134981195,0.0,1.916245874174269,31.039149766204638,0.46506485401233516,0.6060477669692064 -1996-09-18,9.516151312843704,18.395788691566327,12.361146093048179,0.7083739940719721,5.89273734591897,2043.5526278513291,0.0,2.339643007197587,34.865803233966645,0.5170197135292945,0.7507538229993515 -1996-09-19,9.804992477157187,19.158460308104686,12.05906318628394,0.5134901551715401,6.439501431767944,2426.268187638118,0.0,2.7442281061000617,39.16772659415864,0.570499011220812,0.9065547224570393 -1996-09-20,9.305272700512502,18.023057259296923,11.561895898232796,0.5408855477402631,5.996545072756868,2613.219229980989,0.0,2.836373818388685,42.52762047429766,0.6038181025211484,1.0220043313087623 -1996-09-21,1.6308231884113216,19.238213102978264,11.811670503874971,0.3794101768193242,6.577178128514625,1158.2233533789806,0.0,0.4828857261616637,45.342719321249966,0.5472099581866349,0.7388032708656304 -1996-09-22,10.069490200760775,20.382857440728408,10.575733689415165,0.12617693515808165,7.552161503056094,2452.86246923643,0.0,2.9550577477961326,40.74037607523682,0.5919005319779455,0.9308774021884031 -1996-09-23,3.643619723719332,19.402037025141436,10.607660726343294,0.045693473217209096,7.053704938098986,1458.4112453463804,0.0,1.037937099343608,42.92530585111641,0.5424964449160112,0.7639986942093725 -1996-09-24,0.0,19.278404053824605,10.415606356844926,0.3168093823899685,7.051098588165002,570.9439200224513,0.0,0.0,39.97260187405649,0.465653741052522,0.49732724199167366 -1996-09-25,0.3640088768339114,18.214586833538704,9.833869904869069,0.5014935585274023,6.687727936949895,379.15320194329047,0.0,0.076400377871857,34.50740127245479,0.40622831215628624,0.3353697463354624 -1996-09-26,0.5346890975111153,19.17401156657773,10.238300598013769,0.4085824684094355,7.057699290302234,286.84796540282076,0.0,0.09760101234904839,30.450320814341055,0.3609543813901157,0.23317113845766216 -1996-09-27,0.8140736833693271,19.55604107184796,10.995495333949194,0.4643117170884052,7.0331059172734305,242.87622864004715,0.0,0.13022509351663303,26.91037532549916,0.3229710550310336,0.1716121463709017 -1996-09-28,0.5274669253359919,19.200652782618295,10.675194080096482,0.6672216376311267,6.951053077845197,168.36626749455272,0.0,0.07446095452336243,24.136867314080547,0.28732279037878405,0.12304922184029309 -1996-09-29,0.0041532386036382905,19.49345520263461,10.46607535482072,0.4818361289437816,7.166084423348846,85.36468080781316,0.0,0.0005118358513516528,21.544603701262627,0.2510284248119656,0.08017719467422638 -1996-09-30,0.33862162189777084,18.79627424573432,8.99190236266023,0.44723182257081934,7.225009792260466,76.313943032575,0.0,0.0363108156567144,18.769602590044848,0.22259787134188108,0.05772044350128709 -1996-10-01,4.398888495690584,18.599118250325745,8.384029084788082,0.4964334065192205,7.2854135174641526,346.2816537054635,0.0,0.46930694819169627,16.64339221961203,0.245128319798404,0.10903221170305641 -1996-10-02,0.08202219286806763,19.378173523710217,8.010694481767494,1.0159729309611192,7.739757173325099,103.90616911042139,0.0,0.008492455525314815,18.288304947748504,0.2140018701894596,0.07226794711590077 -1996-10-03,0.2047159719589297,19.862605906615368,9.18890648996595,1.4075234843535949,7.702355580419046,61.58209103836895,0.0,0.018270330791857414,15.839158986288425,0.18690027781593085,0.04982496474612268 -1996-10-04,9.29215295809398,20.3072864037758,10.572999828220755,1.541810506913082,7.568127068472479,669.6938659138993,0.0,0.9736294440887825,13.85935511407741,0.26969939006675514,0.18068317638168785 -1996-10-05,11.05098709577908,19.35678971827769,11.994713165331573,1.6435044229401592,6.6322380884915,1246.5260860534038,0.0,1.6415494665610364,19.982863538085127,0.3615233427249887,0.36756641229748166 -1996-10-06,14.579739115000171,18.910916886132398,11.608603202241161,1.705577960063852,6.527031043467522,2330.4298475193,0.0,3.04872234610888,27.19435624981968,0.48663992018839114,0.7034814741753215 -1996-10-07,9.151312687349533,18.48237400117289,10.510375992137671,1.1077397132833302,6.666212411442057,2173.91034988007,0.0,2.3444560213110766,36.428511605554434,0.5309740848339094,0.8149114395068155 -1996-10-08,11.309126722171714,17.427607357812146,9.140851140951606,0.9796083047288204,6.545307200160968,2812.871824903372,0.0,3.264107709634674,39.50172556797722,0.5919120183750468,1.027477665116173 -1996-10-09,8.898028050072227,16.803468472069678,8.484142754792495,0.8414096224099149,6.42682215585785,2699.127945106455,0.0,2.800706605617897,43.93720605283525,0.6154946955147484,1.0952886235522434 -1996-10-10,5.1132458582677405,16.210199993600796,7.737770521517617,0.8130827140324433,6.346722858467632,1938.0261874313783,0.0,1.6031551589812398,45.71465850096915,0.5921106634316912,0.9570854714286615 -1996-10-11,1.032748339634869,16.55952185452335,7.92068947859513,0.631120282234112,6.469824074306169,921.244590877155,0.0,0.293494190723782,44.151996428176226,0.5263716759276192,0.667706485154513 -1996-10-12,0.3772552785673068,17.087609374514198,7.812890972975103,0.3706746599533825,6.754563060526629,520.0509113752678,0.0,0.09237381986532511,39.34474293551818,0.46273437813102325,0.4487108183261713 -1996-10-13,0.0025956853270873944,18.208927978930227,7.6374640576289545,0.5749477183324064,7.3283425197763385,299.6262648964472,0.0,0.0005417412566441578,34.52047008781207,0.40217033608458297,0.29217214143124093 -1996-10-14,0.004923108886035791,18.255138583367067,7.6638237068561565,1.0696194858869337,7.348166607577384,191.3151861949052,0.0,0.0008664884466716236,29.74248725847583,0.34653718484052504,0.19032226764756552 -1996-10-15,0.12383384199757387,18.733736927303195,7.47658123284054,1.1795336938735317,7.615929380613239,136.0994012718775,0.0,0.01855757967580786,25.69695698706549,0.3007947264571621,0.12671651674522608 -1996-10-16,0.1206189898847248,17.196375920224174,4.052691248472622,0.979863927383402,7.573231892170202,93.64475934922484,0.0,0.015424356976704579,22.231572994103214,0.2603878989629533,0.08483508293565341 -1996-10-17,0.6694217119899047,16.150932708519004,4.0722125908508175,0.6834710328906947,7.133045581479154,104.94503475397012,0.0,0.07461629491732291,19.29913985801848,0.23262021891417115,0.06658508493572253 -1996-10-18,0.051371586139424386,15.581514836841555,4.277986722816415,0.5326355095847836,6.859353101523344,51.041590398624315,0.0,0.005045081734355028,17.418236802490096,0.20350910672561442,0.04411194901825284 -1996-10-19,0.009128846894658954,16.51885508710057,6.144494873861323,0.4541791269838477,6.907569056033662,29.857357003507477,0.0,0.0007825081989763782,15.340367819114748,0.17881124096751597,0.02883395398241784 -1996-10-20,0.0007013633159805803,17.579392780222914,5.929955463483674,0.938566742519062,7.430287308595615,18.893535584891676,0.0,5.2447531291627725e-5,13.477759997774571,0.15701494679277314,0.018777534758153407 -1996-10-21,0.0,18.338644061302524,5.971421438145615,1.1619792984967612,7.763892521721797,12.23254811136392,0.0,1.7763568394002505e-15,11.720906927567206,0.13654062791675403,0.012223292583424505 -1996-10-22,0.11342335907783667,18.132753525958996,5.931166580144306,0.9326964883201636,7.684382896211122,12.097325665623924,0.0,0.006337394653225734,10.132153046961896,0.11935402648403325,0.008921750934138658 -1996-10-23,2.0764031276627377,18.82038109495519,6.3924579578407545,1.0414928229976612,7.909111701780167,79.86350442892275,0.0,0.11280195753476852,8.87649442962448,0.12759383887457312,0.022983404972385154 -1996-10-24,1.3366671546157982,18.829608308237567,7.04977175218824,0.662706402852481,7.788879075986169,69.94216235203578,0.0,0.07410634735470767,9.443789507821789,0.12558501923230483,0.02624490256073254 -1996-10-25,2.27736690206658,15.74379023887773,7.469687662338098,0.3093298760575623,6.248192264185812,107.29278413674614,0.0,0.13073592470931272,9.318274569484913,0.13508137018811903,0.03699067393058529 -1996-10-26,1.025505980235303,14.556141791392774,7.234464285174494,0.5933431027227529,5.738559036045705,71.95147904789859,0.0,0.06111773031066248,10.329981767798614,0.13228374194925693,0.033385267487552155 -1996-10-27,0.5001419621115182,13.71859988238102,5.657655828955822,0.7654389377958545,5.771157174587534,44.658430677438744,0.0,0.028737620578966894,10.217567421256135,0.12485405592569193,0.026107967295380913 -1996-10-28,2.9192387110747755,15.265288826088886,6.231450797531594,0.6138031338300142,6.348609222712834,135.44524212130187,0.0,0.17829352630950046,9.639584928270184,0.14630179014379877,0.04414288291183993 -1996-10-29,2.206971772397518,16.383965903522064,7.5985079598630785,0.5383163870506265,6.5368186963148505,136.9236201520167,0.0,0.14955798628121153,11.162233430962187,0.15574218654712566,0.05150735486314071 -1996-10-30,0.4503090859093163,16.579440646297073,7.545948301532077,0.7145545558523754,6.647911886812121,62.594362033789764,0.0,0.029978698827895278,11.835013824069625,0.14311569187050777,0.03809356693639493 -1996-10-31,2.003497508796151,15.736838082404013,2.6161599600868986,0.8521324910653781,7.24140685801755,112.87409297423447,0.0,0.13106226459490555,10.856148272832737,0.14980616437461064,0.04475328762045449 -1996-11-01,13.09327519384517,12.384732931836087,1.832923968409082,0.4878558459113397,5.999358101059585,896.8514364526166,0.0,1.316391700578036,11.228080367547308,0.2833273210564128,0.22957237005388187 -1996-11-02,1.5709204305326052,11.629016774926562,2.392511968766514,0.4977829084075003,5.593823165248722,358.6424325298101,0.0,0.2024538074732467,21.665442043372277,0.27068788638071717,0.18026740600311797 -1996-11-03,2.1021467393814217,12.050379185869305,2.9467365976060367,0.4123712609132438,5.665558363223969,307.5321563052312,0.0,0.26408323036739434,20.878198955350936,0.2677054642864657,0.15755618181476985 -1996-11-04,1.1531026271013058,10.853234344449177,2.849710618726054,0.4195476846705769,5.178991751153371,210.3680114021984,0.0,0.1396122522616896,20.620660520048755,0.25364959474510773,0.12381969709298846 -1996-11-05,1.5939351850025751,11.107703767927328,3.4128326267881963,0.501026565408605,5.164975020907599,211.77321186494436,0.0,0.18647049785649727,19.737280650216167,0.2484942182689193,0.10899369127365927 -1996-11-06,5.481832964436334,12.775692616279395,4.2465797368084734,0.8912052112996872,5.71203836519557,536.0274841882751,0.0,0.6943047983011841,19.344564801160143,0.2892107207039508,0.17666793268988495 -1996-11-07,0.5183310770244326,13.850229315782554,3.2457477935325802,0.8813504867225381,6.3812695935057,199.88784844832153,0.0,0.06695177209857806,22.239218011487072,0.2651100347092912,0.12519691715609557 -1996-11-08,0.1894943544448633,13.190277279351125,2.033336624384411,0.858418260973912,6.315908782957556,102.79051526208612,0.0,0.021807452859184506,20.130325883246385,0.23671214450858208,0.0848178156686804 -1996-11-09,0.07152702300004593,13.367475885610435,1.8860360120684831,0.931939446286898,6.413973277801708,61.73994771950014,0.0,0.007286409333543575,18.016997222031193,0.21071905730221765,0.056321875024747184 -1996-11-10,0.0008598665090471541,13.35525456465325,0.8654931252644483,0.9933005029134576,6.556966681542476,37.26454264147736,0.0,7.715340253547527e-5,16.02202817415096,0.18665579443907937,0.03667464125829284 -1996-11-11,0.0,13.186800024900574,1.1927311538332563,1.0229097518663313,6.449054744823164,23.918587896939453,0.0,0.0,14.163848855111016,0.16499924693082302,0.023873467751009497 -1996-11-12,0.0,13.358971893653278,0.8796310173924794,0.7477260798977059,6.562729316682894,15.543404954407169,0.0,1.7763568394002505e-15,12.556428242841648,0.14627388539677766,0.015540505452923155 -1996-11-13,0.2013500055383235,13.080768181656802,1.0347931946487652,0.8392982176673919,6.434806641106199,18.234045731824356,0.0,0.012426631207564265,11.11322819784971,0.1318071734594415,0.012008276823710116 -1996-11-14,0.6537329393975718,13.619016670194302,1.8077667619009727,0.9270251692919046,6.542817006395645,32.84032444055422,0.0,0.037202644043527466,10.043869198042868,0.12461982012793799,0.01348147596644358 -1996-11-15,0.012373015074915445,13.540061579139811,2.2039633884173178,0.9011209816300141,6.452587250334779,11.408525060370797,0.0,0.0006419527307543419,9.478209347756577,0.11055885718782428,0.008873554011487417 -1996-11-16,0.21651190116905591,13.04585052853557,1.3807138747620262,0.6931702963476825,6.380405435228443,12.566045004084948,0.0,0.01007638677469333,8.427200457837413,0.10069339517189706,0.007310545347434137 -1996-11-17,0.018227691868018932,11.611000981151802,0.09013372300225712,0.5091946390678213,5.99796955526807,5.855353567320836,0.0,0.0007628212617488209,7.688228422216943,0.08977499465977527,0.004874972231663115 -1996-11-18,0.009721098873058106,10.989447324246806,0.3241308925106648,0.7842855090799817,5.726111931944326,3.501565841044851,0.0,0.000364365341536884,6.9075352512377695,0.0805813518818995,0.003228857805066751 -1996-11-19,0.03673892610249503,11.527864704482115,1.2823127656843758,0.7005635194563707,5.793751278064162,2.941189417608226,0.0,0.0012427967895442676,6.234031920092441,0.07305023358284167,0.002291068845590572 -1996-11-20,0.2639035965424989,12.191530147888043,1.1349566671751792,0.8925881679505278,6.085379072530488,6.945388072077454,0.0,0.008235559853665586,5.645171714999076,0.06883672555641913,0.002745363788325267 -1996-11-21,0.14011402344292345,12.096303118482568,1.5493408661431118,0.8464222815227005,5.984658318853514,4.917161747314848,0.0,0.0040515838498380585,5.290527798493378,0.0632632994136465,0.0024040162885179545 -1996-11-22,0.10153987269354914,11.79479868299943,-0.3991253962194491,0.7736616336614206,6.143397362855857,3.5960576301087226,0.0,0.0026925779227021662,4.872263675433954,0.05794144290990185,0.001974886380733095 -1996-11-23,0.4052798886557979,11.461708731460694,-0.8493557524560795,0.7743488944080477,6.072291166741421,8.090518762347,0.0,0.01014654317175967,4.449471608664646,0.05655456714402225,0.0028305193050521932 -1996-11-24,0.2629128858381637,11.063329612316652,-0.10704604828465526,0.9528170477711501,5.82939022265139,6.583273715556379,0.0,0.006335805993417709,4.34903936414432,0.053726120344289724,0.0028072550933376243 -1996-11-25,0.07450946413526502,11.257784724859755,0.9024193713054428,0.9163942236891358,5.759973888262024,3.3365293061176375,0.0,0.0016768297357445394,4.15101144111224,0.04922445688233258,0.002082713223527601 -1996-11-26,0.0042197737702533095,10.854376820439384,-0.5420968753582229,0.55730895634524,5.81089243690977,1.5407101236240361,0.0,8.629842616216746e-5,3.808637399006235,0.044417203868699184,0.0013688886312484055 -1996-11-27,0.0,11.046593203009238,-0.5255647390500312,0.9494081911308496,5.884212529739887,0.9055894307471426,0.0,3.1086244689504383e-15,3.433762999213598,0.040001013481919645,0.0008910821611775167 -1996-11-28,0.0,10.947269096561568,-1.2958932789292217,0.8504506933434253,5.940329724488895,0.5810365431116395,0.0,1.7763568394002505e-15,3.0883877770520067,0.03597762604336585,0.0005800526060652585 -1996-11-29,0.2493799710346545,9.728543393571156,-1.2753782190756586,0.5837079274781131,5.484396515992344,2.9052909907687985,0.0,0.0038693178392048833,2.775062826485616,0.035232710337495685,0.0009667477857922098 -1996-11-30,2.0936720241791678,8.226392445329742,-1.4177661114202686,0.6599835873889862,4.944320294397429,28.66458507078925,0.0,0.04257284556545571,2.7411826669006136,0.056322782826099864,0.007111652029304125 -1996-12-01,3.87773813600936,7.415759583115934,-0.7556047036020582,0.8884589484811242,4.536667907333472,94.42271581893104,0.0,0.1336492730737584,4.424683401211657,0.09671758823163301,0.02497942742422908 -1996-12-02,0.07462545941832532,8.761931639803542,-0.6174756868503422,1.0390413230225817,5.032732556192231,26.241107340721033,0.0,0.003118854541817928,7.649965392307542,0.08998625207184216,0.016735324898321535 -1996-12-03,0.004627858469718689,10.862553316898772,0.3178232408650399,1.3919711225232734,5.708278703967216,11.801092928953043,0.0,0.00017711703327993444,7.052377537458352,0.08220933362295187,0.010920878633370249 -1996-12-04,0.0021015586884623933,12.550242263480554,1.2108384646735817,1.4960214831307903,6.24784302859532,7.219683245120963,0.0,7.237477911835885e-5,6.361884811679501,0.07413613131079302,0.007119998838327895 -1996-12-05,1.9478948218179777,12.751614469632404,1.3260276585192277,0.9820319935872124,6.313543483745982,50.51660269370151,0.0,0.07022338308805032,5.679255216594389,0.08885113258691114,0.015327332075657634 -1996-12-06,2.5570829881742427,10.108027201740194,0.5362012271409653,0.8720049369951217,5.380794800227202,87.48719542412749,0.0,0.112416338785295,6.795126453447156,0.1089469063664877,0.0270944210819205 -1996-12-07,0.257910563336374,7.9448215769167385,0.505404864295677,1.0859433530861122,4.5198450054068955,32.38059114271981,0.0,0.012106985697615424,8.478270416116029,0.1017705919772559,0.019480662113200722 -1996-12-08,0.02411159173344121,10.091971624830082,-0.09666479482149977,1.0952703240651442,5.476391108139822,14.598016970660495,0.0,0.0010583689209536472,8.051344648398375,0.09407359622901888,0.012842147747872523 -1996-12-09,0.6576823780335583,10.061148857243351,-0.15317613744291975,0.8389392050487413,5.474125714017049,26.34919743292131,0.0,0.027310147139890217,7.310158854749552,0.09281995427388154,0.012518007952583917 -1996-12-10,0.1874969783547437,9.975428844716623,0.11538846832631725,0.9359207237558168,5.401230015462456,14.602261019445457,0.0,0.007438908868796196,7.213275825089705,0.08621399110975467,0.009281318599619906 -1996-12-11,0.05315878944460232,10.24561422397743,0.6402530371384453,1.0049261947751575,5.425002056309611,7.863815699585897,0.0,0.001940745860129857,6.710288307126523,0.07878957824292246,0.006337209413852998 -1996-12-12,0.08139769891030457,10.030948280158581,-1.5695205003095876,0.8448787866894811,5.652126925995665,6.05394555943086,0.0,0.002717110503930864,6.130739217336865,0.0723671880078047,0.004538945693156549 -1996-12-13,0.1518172447318153,9.176635934113213,-2.436443331378109,0.9290119570378744,5.435396676654702,6.167336451330805,0.0,0.004659476751169123,5.6076041531644645,0.06709335881307707,0.003664114484727578 -1996-12-14,0.0005556899311855126,9.622110233848225,-2.437812794023114,1.1636727636304958,5.598171671810946,2.6785030604847,0.0,1.5643800543110615e-5,5.221045291131837,0.060828115186907825,0.0023875483159124526 -1996-12-15,0.07401012465627789,9.170186413168961,-2.158535369670046,0.9674726962208344,5.404914363879761,2.8147958720676582,0.0,0.0018951704557095411,4.719610900577729,0.055842438543811435,0.001842749437762996 -1996-12-16,0.01814659058037921,9.367618998843607,-3.944874381524353,0.7277888698860792,5.641576610660581,1.5886836396719384,0.0,0.0004251987875571496,4.3491588018276595,0.05087615013656546,0.0012642860715466123 -1996-12-17,0.003074865514186985,8.268779765304604,-4.723699094301871,0.5959267030094563,5.319134095796404,0.8987836864080352,0.0,6.515592301623453e-5,3.945126871323772,0.04599387638015886,0.0008329117629467747 -1996-12-18,0.08536967654323055,8.13195556039525,-4.4926027662012045,0.7960870931995855,5.256720628214917,1.6346132568107337,0.0,0.0016627456650184225,3.5887148004849783,0.042800595944733386,0.0007953640017503343 -1996-12-19,0.0,8.322342715061724,-4.973224507297728,0.4797985423949238,5.355484894838909,0.6146288246422781,0.0,2.6645352591003757e-15,3.343709681953464,0.03895195332295143,0.000517744583031791 -1996-12-20,0.1347789602200749,8.110432735194875,-4.023708383780793,0.4961063111208164,5.213817183813661,1.8082667685003098,0.0,0.0022407364503860827,3.0376559980618802,0.036956718785138204,0.0006782126161034162 -1996-12-21,0.017678198785156602,7.365702434582306,-4.464454342683008,0.5471592916580132,4.994935364725912,0.7510405225483483,0.0,0.00027418796905350276,2.889856301358449,0.0338708078472588,0.00048323370590553396 -1996-12-22,0.0,7.897053692543992,-5.374141246564308,0.5293308508826075,5.239021420721012,0.34052340385594376,0.0,0.0,2.6595828237796098,0.030982338738769877,0.0003145624305603251 -1996-12-23,0.03972701648208439,7.632432669874286,-4.654286109814935,0.6124590261777326,5.1016791962990515,0.54519099064091,0.0,0.0005182546824375606,2.421849518977312,0.0286756995763071,0.00028367728933960916 -1996-12-24,0.0,7.923338999092422,-4.8439224127188565,0.7926757512464008,5.214621719362017,0.21483543167247662,0.0,3.9968028886505635e-15,2.247413981674986,0.026180850862748684,0.00018466058252809516 -1996-12-25,0.0017105391856239705,8.847701227581018,-5.336249562576868,0.5372474541751661,5.558174669804328,0.13474605279677568,0.0,1.8697472816852105e-5,2.047665154857806,0.023873838929979765,0.00012305232662899025 -1996-12-26,0.00016517394863675453,9.21026602346781,-3.4077940518854786,0.7835084978683343,5.549875846324489,0.08240286953714646,0.0,1.6342588533116203e-6,1.8553303815000415,0.0216152666174523,8.035012122913331e-5 -1996-12-27,0.09901884817622376,10.416629284512334,-2.6742888505994693,0.926026439042073,5.918131093967298,0.6488731421458115,0.0,0.0009129410598909399,1.6801541209712698,0.020726160175246512,0.00019131291553768257 -1996-12-28,0.044266932201812194,9.932588547354944,-2.9425199302180127,0.7336536235207503,5.767569416889003,0.4274415841424529,0.0,0.0003826120448216855,1.5999270884155916,0.01915374683712038,0.00018279405238714457 -1996-12-29,0.0,9.615772196582693,-3.9393029226695497,0.7525309543270386,5.735612719212848,0.14526911976825171,0.0,0.0,1.4828125157111776,0.017273761597904724,0.00011899033678356893 -1996-12-30,0.0,9.586714221258783,-4.846922454843764,1.1405703528645277,5.784429247537572,0.07943272779276334,0.0,0.0,1.3381342819013804,0.015588358154949744,7.745711670027455e-5 -1996-12-31,0.0,10.686203701243171,-5.023476016228788,0.6328257404531465,6.172891260612822,0.05054631617937395,0.0,1.1102230246251565e-15,1.20650806044846,0.014055001816693946,5.042094248756286e-5 -1997-01-01,0.0,10.689547105566199,-4.961140004738857,0.5863302456624893,6.171097368230738,0.03282886230258496,0.0,2.6645352591003757e-15,1.0799026051566751,0.012580134003984944,3.282166377551222e-5 -1997-01-02,0.023073083599539572,9.556837638287798,-4.3943456759814215,1.0842518685408842,5.746675989914214,0.09976703751925393,0.0,0.00012001665850252391,0.9666501010312758,0.01152960482737236,3.9639669739963166e-5 -1997-01-03,0.10833814494466124,10.43049775773954,-3.987784392224513,1.0898498162501349,6.025551150851913,0.3892176348083086,0.0,0.0005456583194853037,0.8930858012772315,0.011665910775762102,0.00010888810198455442 -1997-01-04,0.05085764266299865,9.699316239760913,-3.5927327887785534,0.7847657492124601,5.7391035882362385,0.2663347882276588,0.0,0.0002499315334933,0.8988974116063874,0.011064003176413687,0.00010893680481656387 -1997-01-05,0.5460268927077241,9.889778893526977,-2.2194637475464125,0.8113333990027731,5.683051831269258,2.2327207216681035,0.0,0.0032833123439497403,0.8571513457286087,0.01634607619864347,0.0005708455480215325 -1997-01-06,0.26500988577312123,9.62399299406682,-2.2695211747804267,1.319056847513057,5.590897397744126,1.8539168287880337,0.0,0.001975672830100028,1.2675505209103144,0.017853290836799228,0.0006724189966433312 -1997-01-07,0.00020503690263407457,9.24824274189625,-5.088745543179171,1.0326535954895553,5.681568636502959,0.5680687719201958,0.0,1.5141041083175202e-6,1.3867818711406572,0.01615745816487393,0.00043794370784002996 -1997-01-08,0.07715664960145137,8.795602204475662,-5.0041527357617355,0.8786827774311927,5.522196078525331,0.6414716822545456,0.0,0.0005304361927499085,1.2529644901550028,0.015495010475728684,0.0003658475168288572 -1997-01-09,0.4279716689500562,8.626142116043948,-5.509925282091416,0.7376180657579858,5.49291102343416,2.3824709926240755,0.0,0.003234465964226829,1.2052150369604635,0.019025519075306113,0.0007306447638269709 -1997-01-10,0.03611448117588301,8.859913468519204,-5.177819435225197,0.8083848461887148,5.553350108297929,0.8539370751163166,0.0,0.00028827043584701145,1.4805202978695382,0.01766776806018298,0.000519508833369543 -1997-01-11,0.7418132237419968,9.017505938304401,-3.739612002613174,0.9326821815713291,5.508568438940926,4.875678544086663,0.0,0.006898011940080773,1.3733451791861786,0.02464016293824083,0.0013885000545054702 -1997-01-12,0.024268731521410646,9.556182205713792,-2.718808861569808,1.2951463692573948,5.609065284251036,1.4692588320553919,0.0,0.000249671957672469,1.9166385417984548,0.022610255286985327,0.0009418645198925258 -1997-01-13,0.03644054568044252,9.453744788008748,-4.533991687879438,1.3539487398884682,5.716429172685896,0.883706312746107,0.0,0.0003445834551821722,1.755500300610088,0.020874897297130313,0.0006655774563349976 -1997-01-14,0.011958830003522944,9.414217012864693,-5.3109578378018965,1.194138609442634,5.746310404066767,0.5239408963618266,0.0,0.00010345792972855407,1.6175531912066854,0.018982711487166622,0.00044901264009914696 -1997-01-15,0.00940767887957397,10.076609453100632,-4.946922257908851,1.2358380207846589,5.953517710872019,0.34829160059567593,0.0,7.389969615570306e-5,1.4701666062191965,0.017236038404308044,0.00030353844555633614 -1997-01-16,0.027959919158955,10.109548947474071,-2.811471789516291,1.416299019194015,5.814363258983559,0.3331093324061989,0.0,0.00020001611827023813,1.3297308558356236,0.015816178055175604,0.00022804467055698957 -1997-01-17,0.3061579191296607,9.347980592308575,-3.948258633878433,1.4613104281310054,5.636326420229439,1.6262571387868898,0.0,0.002243911890882022,1.2234436007994824,0.017818821809968598,0.0004901150967038926 -1997-01-18,0.0,8.744274704195393,-7.599173343885496,1.2245429683277658,5.599542499036604,0.4501062454881345,0.0,0.0,1.3829237284057705,0.01611012487381769,0.000319041892544689 -1997-01-19,0.0017711589885221993,9.965111256243373,-7.553895821368622,0.9523874274361154,5.996167528724546,0.22549524830585793,0.0,1.1803078074797179e-5,1.2512237997362468,0.014596542699133744,0.00020947847007916063 -1997-01-20,0.044326494593114135,11.086202392441681,-4.713215427923466,1.244507673285484,6.286649884697806,0.31446870246391473,0.0,0.000270605630805304,1.1252599750258045,0.013624890288063506,0.0001775643434291162 -1997-01-21,0.3741914158992149,10.662066673568807,-4.51620168806338,1.5563700331197332,6.127321247993076,1.7337354990011515,0.0,0.002452898160562378,1.0446055284955271,0.016528023545549924,0.0004890760231923109 -1997-01-22,0.3693204050750536,8.568501052239759,-4.115565707950509,1.5536169896151255,5.373070570822412,2.3321725094606967,0.0,0.0028630903197897073,1.2709375368149265,0.01910789418558979,0.0007543133016023944 -1997-01-23,0.0,7.482580323634321,-7.044716465269125,1.443066661168526,5.1727193721896425,0.6681385384611691,0.0,1.7763568394002505e-15,1.4902717524930953,0.017360656654769935,0.0004910225066182539 -1997-01-24,0.028868276038799236,7.823901216614735,-6.780614748150217,0.9036706566334748,5.272416579741736,0.47107603410654864,0.0,0.00021112235620554184,1.359128440058665,0.016169221744829324,0.0003517790713534209 -1997-01-25,0.10700399829516266,9.04066080759301,-4.303753752979967,0.929741920796487,5.546564288188934,0.7321804666541233,0.0,0.0007502118115735867,1.2635316870356046,0.015965812561590173,0.0003432224728833541 -1997-01-26,1.2152010438825576,9.604220121687849,-3.739200198765024,1.317774002275437,5.700105628699931,8.09602854584767,0.0,0.011983251780289805,1.2412538747560256,0.028616036208874488,0.002048048808241693 -1997-01-27,0.31452575841908065,9.823607673172717,-4.118653919755533,0.8887121857456481,5.802668324153639,4.638177551735793,0.0,0.003990105923112497,2.2176883521153683,0.02949857948780781,0.0019407360877419144 -1997-01-28,0.4530945092455305,10.791976827291093,-2.4729129865001815,1.5949923854338064,6.016601981518527,5.515880071559448,0.0,0.0060730899837231345,2.2816109104379096,0.03185746610552003,0.002188045645150152 -1997-01-29,0.05548742986340927,10.809273918440788,-3.6962577315256127,1.5468875312536206,6.117256879170313,2.2785411021396267,0.0,0.0007358036911991953,2.4539505484067528,0.02923325297168588,0.0015363518587206317 -1997-01-30,0.035981088327583,10.766194823845208,-4.133094438186885,1.2859387200369463,6.128364319126162,1.3556592750555831,0.0,0.00043529122570033774,2.247649139742669,0.02660274560640261,0.0010663723710772198 -1997-01-31,0.03888580525537253,10.638165856780029,-2.726165571273983,1.5192694251238197,5.978147678617351,1.0043765870316212,0.0,0.00042839743815057535,2.045098529400091,0.024277006154983335,0.0007593881326622129 -1997-02-01,0.15554336643941985,10.719188828407617,-2.5959744462804446,1.6280911719513498,5.994327063776231,1.5780900480948734,0.0,0.0016175216347066868,1.8717429007273592,0.023616512066563986,0.0007406175473447389 -1997-02-02,0.3690329296915488,9.918180427626789,-3.8365081721078096,1.5663373305634918,5.8062106996146605,3.1565327566171213,0.0,0.0039472419550887206,1.8202895731887512,0.025504124476279064,0.0010831331138143841 -1997-02-03,0.0014257705215613243,10.227200486384627,-4.627559285808337,1.4870788184029675,5.962271926143201,0.9511840045630314,0.0,1.5009736474706596e-5,1.9727058843101073,0.022997296830937673,0.0007073542039510739 -1997-02-04,0.7281660787603785,11.297237573614812,-1.7509819002065483,1.5649891184913935,6.121280375390679,5.9073837897555626,0.0,0.008309051573097026,1.7736658166304942,0.029144647257235368,0.0017256301911687552 -1997-02-05,0.4509662891591558,10.65070566029576,-2.5784062097332705,1.3587682158516694,5.960351405437887,5.4884297340027075,0.0,0.005942524205058919,2.2406698981968454,0.03135573871682711,0.0020281412478330967 -1997-02-06,0.2706002068918724,10.166765408889582,-3.3198172858986594,1.5857500124914052,5.847223106451072,4.114392186732451,0.0,0.0036926531107312477,2.4179137896340577,0.03131936730810863,0.001882485616672331 -1997-02-07,0.09378304825986428,9.88583014609079,-3.4902337100212764,1.4735897997711498,5.7592800523456305,2.2761990017630214,0.0,0.0012363047230037338,2.420296650109133,0.029287325867309526,0.0014136553174017975 -1997-02-08,0.0,9.748109839238063,-3.688823974349148,1.4942798388512135,5.724091239617213,1.0103075211124468,0.0,0.0,2.267141478809679,0.02641066284424831,0.0009202231698286522 -1997-02-09,0.003126280532187517,9.808523732685495,-5.750471061384747,1.24340623998969,5.8614831579709845,0.6280382368027861,0.0,3.415572741734827e-5,2.0459533932686362,0.023870390494628194,0.0006042227471448335 -1997-02-10,0.27559829730885105,10.589933244472977,-5.871781636698384,1.0590053000149042,6.127180472171807,2.2996258896585653,0.0,0.0029144908385902446,1.8444809258537735,0.024697487161428448,0.0008370948953169407 -1997-02-11,1.3921397815821803e-6,10.909994653988207,-5.157154702600896,1.3038009804974204,6.206273422705888,0.7141346357949264,0.0,1.4097857677064731e-8,1.8987625844506144,0.022119314420934254,0.0005449115799983448 -1997-02-12,0.06720256796763067,11.728310194615162,-3.56140891668,1.324046178382888,6.405187673848536,0.7730050580401202,0.0,0.000620333334279341,1.6981021479831593,0.02056460441754889,0.0004491667419451762 -1997-02-13,0.3774107839668197,11.917807600061376,-1.7899975143241091,1.2381798115706468,6.333990575475092,2.644492741236505,0.0,0.0035442410366195443,1.5728333875589817,0.022719023827825358,0.0008320494943941921 -1997-02-14,0.4012134009383601,13.325966152274756,-0.2110466777182183,1.3594544749270043,6.702855267946319,3.462920952349918,0.0,0.004152915739338958,1.7398765490916779,0.02494224790026826,0.0011739678860739021 -1997-02-15,0.33888743228279944,12.893219548421698,-0.08913309554230259,1.4245984271294516,6.5195143359293,3.4618065073241433,0.0,0.0037362149050589877,1.896581588816659,0.026041700161569797,0.0013330918310316073 -1997-02-16,0.2932774450849913,13.235892664937772,-0.14929795160713855,1.4714420628742462,6.655719895577394,3.2860075141656306,0.0,0.0033400637137666056,1.9871038779738586,0.026564898063286695,0.001376354169233115 -1997-02-17,0.08087108185213983,12.517933503268118,-0.6823090353542759,1.112315364334785,6.436986412720853,1.6889742249174289,0.0,0.0008899003208999307,2.0217086173883363,0.024493629558997136,0.001031442345710178 -1997-02-18,0.572020556543772,13.144910841756008,-1.4260084221395748,1.0535963253849665,6.743349807886432,5.043705622492673,0.0,0.0065894365555375645,1.872008715646435,0.02847128584281344,0.0016747595493419136 -1997-02-19,1.4377865343926823,12.047890270348336,-0.8708159310341788,1.573112275921822,6.274044466562813,15.962742391668328,0.0,0.02217417861674087,2.1630339394269478,0.0419471199241819,0.004466536022249175 -1997-02-20,0.8975782370708583,12.292354327670846,-0.536010615654445,1.5107356332852873,6.32664287976329,15.745902223517943,0.0,0.017638629335262834,3.2145107610740253,0.047903051984460786,0.005593246911704764 -1997-02-21,0.15412378285108738,11.1207390835354,-1.7774067829878033,1.0998092792741982,6.017830590675781,6.787532853867445,0.0,0.003095866820982701,3.6666625152140817,0.044509572808444,0.004112332315061899 -1997-02-22,1.876208595564521,11.049684735555196,-0.7859119695244839,1.4483977239779513,5.879962736276926,31.715363871157546,0.0,0.044046334584713964,3.4273821496275394,0.06178324041280611,0.009383640186141205 -1997-02-23,1.4630871411532351,9.50324032279503,-2.4899139918013597,1.3338540140027944,5.4968986628839644,37.05214579137746,0.0,0.04342857088671037,4.767977578719733,0.07258768410150485,0.012720950209617112 -1997-02-24,0.9346433872816781,10.158660305244538,-4.250698482749091,1.0512328963641917,5.866140315265025,31.167904450556712,0.0,0.03087615909687169,5.64128589186517,0.07660512266325475,0.01298209205193147 -1997-02-25,0.06727427948626788,11.96736686435196,-2.9844276617415866,1.0122043419819555,6.415116108556177,11.860725471068859,0.0,0.002161550217045033,5.911168884393837,0.06964481405793797,0.008779859720196714 -1997-02-26,0.035802332396127484,12.57380427042962,-0.9031181508205948,1.5132627910261602,6.4545249367665996,6.665310642846312,0.0,0.001030550804804159,5.318668844769773,0.062375962987374474,0.005872192608603879 -1997-02-27,0.11562626765317388,12.824270939537778,-0.6952355037896505,1.1711738596497916,6.52417197365042,5.861445329265974,0.0,0.0030000969409094413,4.760889713642138,0.05680810864269444,0.004279330474264073 -1997-02-28,0.06886734381836733,13.114514199545582,-2.144531862088532,1.2254376484153762,6.7595056001669835,4.021271661619946,0.0,0.0016162693832544178,4.330761665804654,0.05125269838648751,0.0030317439006546138 -1997-03-01,0.10541420687756722,12.444173832870721,-3.603530810400918,1.2843211622398696,6.611688844538668,3.5388029361108906,0.0,0.00223151558172055,3.8901253287499906,0.04654532967732026,0.0023133040004354776 -1997-03-02,0.0014557808763686082,14.775903778148267,-2.337954999569423,0.8886423335876654,7.376700551640022,1.661470494865305,0.0,2.7664857731925577e-5,3.5433951621379842,0.04129511279473489,0.001510064562272848 -1997-03-03,0.02344014385008213,14.972523400711939,0.03239213340468779,1.5966248538549908,7.256872574209009,1.2500377196005301,0.0,0.00039027202477475223,3.097852543237352,0.036360945960975166,0.0010424057381916234 -1997-03-04,0.10092102021807597,14.70580004639763,0.6081358576280274,1.5583692729673408,7.088649637770032,1.6840266607267886,0.0,0.001503303239980991,2.7344906210267808,0.033030625385095824,0.0009074572687932944 -1997-03-05,0.09018479220708983,14.675358993510251,-0.5276794416495842,1.3409114175914032,7.188906644022748,1.478647268651196,0.0,0.001223033369412846,2.4924131679211383,0.030085517213950627,0.0007769369296254971 -1997-03-06,0.1192653872932094,14.679349728644436,-1.7345930703808536,1.2705652194095851,7.285227595079629,1.5512048967394054,0.0,0.0014813178272605199,2.265962014969921,0.027786283880752063,0.0007313019475777322 -1997-03-07,0.04502751193932181,15.191240715174208,-1.8901801230416757,1.0301348771973,7.482421404157233,0.8993512944635937,0.0,0.0005074267377574437,2.089016032712264,0.024860162049670217,0.0005533064136239241 -1997-03-08,0.05082719185110962,15.468596762665602,-0.19614232267831586,1.25107940235856,7.450266718480033,0.7308363765372212,0.0,0.0005116252501957685,1.8620218125947536,0.02228339545659944,0.0004380789723526524 -1997-03-09,0.042725105878751744,16.050867666642706,1.4184979279772751,1.3007781814887749,7.5074528552744155,0.5691920410484409,0.0,0.00038519440515235454,1.6701976486048893,0.01995439004126937,0.0003438203598780825 -1997-03-10,0.13778574019939313,16.949400345676793,2.7045786990047103,1.5196654690504958,7.708068120952469,0.9981034120001876,0.0,0.001147317815432175,1.4940699907887889,0.019010014118841522,0.00039850698123136306 -1997-03-11,0.21191235240066372,17.56522005040999,2.5848320447908884,1.7495349300410157,7.97114500503027,1.4515104557372354,0.0,0.0017201225440262868,1.41783348458616,0.018985435282616342,0.0005213233833250212 -1997-03-12,0.2605013232229144,18.097881237327613,3.4370104367199663,1.8194312058363424,8.077073256855885,1.8395271088558396,0.0,0.0021356920837624083,1.408710608084168,0.019445188553690942,0.0006645476902717711 -1997-03-13,0.5330572380570057,17.935820000232898,3.793763687012528,1.664819520448367,7.955456593388523,3.7316318289902637,0.0,0.004848250865607473,1.439796221895469,0.0229824067262313,0.001170807129203088 -1997-03-14,1.1100554492048476,17.920142015595207,2.8851434556704048,1.5279382911637889,8.06598494913467,9.807818844277637,0.0,0.013401243063586588,1.7055944599280355,0.032800414589295945,0.0028026776436247377 -1997-03-15,0.5566816590769952,15.568315696635985,1.927814140304536,1.0692797538148746,7.228005097713596,7.8871629942295005,0.0,0.008056811495490424,2.4281496064306323,0.034771262815800064,0.0030511799920842995 -1997-03-16,0.3498812181448467,15.604763742926623,2.794231338010604,1.2723449757031675,7.119719700913787,5.92758013824577,0.0,0.005224147888704234,2.6165322931350232,0.03455670845216462,0.0027816284607866423 -1997-03-17,1.2082368311075002,15.077664309133796,3.17829811867522,1.3492382978748043,6.839767481646282,15.72566989663482,0.0,0.020775944180358552,2.6058814320668495,0.04443189471778176,0.004974153811969984 -1997-03-18,1.2272728528135233,13.979292907530676,2.4620797381461803,1.2374511125784944,6.498587135988991,21.61080582308769,0.0,0.026240872664465842,3.3678355423934336,0.05352990084337552,0.007233500860954327 -1997-03-19,2.515748688634217,15.286846771089287,3.4224128020729068,1.3865161595753546,6.879291411306013,53.68725989691088,0.0,0.07250170073639728,4.083226974769769,0.07687359743206972,0.015748124076906945 -1997-03-20,2.5488394132471206,14.654963221471686,4.548270822953352,1.5741261914228346,6.403329616717548,78.66004527488121,0.0,0.09809387379296064,5.816880330051076,0.09745496946477417,0.025187530019372774 -1997-03-21,4.102336834565157,15.629302791043994,4.667463924325752,1.6613941380281787,6.79784835892859,161.61132105390976,0.0,0.21307746584175735,7.438348574206347,0.13444116927481223,0.04884009015602648 -1997-03-22,0.9183308753279068,16.786505580675563,3.0478665986797018,1.5394384930056153,7.542949076947411,79.63653765775464,0.0,0.0536164383842298,10.170884037472197,0.12918184374763494,0.03995649801679202 -1997-03-23,0.5989292567627139,15.969386364883876,2.1726960543357685,1.3280653759393009,7.3238341091179855,51.39068657422767,0.0,0.03258745520425743,9.631210295684506,0.11917419759403299,0.030971723716657122 -1997-03-24,0.14318056823250333,15.193442301073835,1.1819089723648104,1.2396786153497177,7.1338259840495635,26.950796885668648,0.0,0.00703639583720192,8.927066904923322,0.10566224038792042,0.021232531682081883 -1997-03-25,0.9699490220527016,14.270857693655918,1.9389853378548405,0.8524547918937271,6.667363604686876,43.52072973750598,0.0,0.044586509130457586,7.948309057918587,0.10389166688961088,0.02061033487918636 -1997-03-26,2.603849657627863,14.267210941681787,2.684343347041471,1.0011189348285197,6.550365907253308,101.48327456926584,0.0,0.1307899080464714,7.887453816853245,0.12221658041680239,0.03333105495514776 -1997-03-27,5.870432647732762,13.670038822485221,1.5899798687324518,1.0932443277874215,6.470340782186142,288.77113894095777,0.0,0.39691524191649474,9.294739486145643,0.1766639849989155,0.08213315935145955 -1997-03-28,0.3752250500970871,14.832407247554695,1.4472785599530291,1.2602687120066516,6.94334162448426,95.6176525083853,0.0,0.02837108072479505,13.433281075035762,0.1608597447765351,0.05778474264024574 -1997-03-29,0.6837308036578416,15.682476954341936,2.8111057728556323,0.9652117026233564,7.095150415369509,71.85507312306598,0.0,0.047116872985116354,12.123702409810697,0.14919792331563653,0.04478939153649225 -1997-03-30,3.344600531058429,15.809838498957104,4.961045201017572,1.326389948839459,6.784101647346501,188.07076375818684,0.0,0.23871093045733538,11.215388573942118,0.16961401256263606,0.06550305438220412 -1997-03-31,4.062988246422996,13.1120926355302,2.28135900532447,1.0357135796312016,6.128205847439247,276.5910303492151,0.0,0.3365932735517676,12.82018242684488,0.19667750449684684,0.093890708085993 -1997-04-01,0.2675033574949349,14.022625950582446,2.388634096191037,1.2346684745478491,6.47433130691638,96.53326238165508,0.0,0.02267057728323818,15.046787562157604,0.17840111786496501,0.0645703684002052 -1997-04-02,0.29000868276179503,15.92398465239825,3.8320868468388296,1.2842259002013836,7.020836587198684,59.34454125795201,0.0,0.022075818884933374,13.563508771972536,0.16138409628321757,0.04539364456832786 -1997-04-03,0.19436371839152747,16.30977697531127,2.816396838343388,1.0588928379055376,7.327825963516116,39.61722839336596,0.0,0.013142374574260512,12.144231869124496,0.14373628248577935,0.031550249791420425 -1997-04-04,0.4977894930552282,16.383507432668498,3.1529913157023137,1.0307194966140794,7.30618664589359,41.09352308630966,0.0,0.030129761149263634,10.756886965234171,0.1311093586965037,0.025125430988686692 -1997-04-05,0.479609435025215,16.958379542826947,4.555638927372642,1.3313908553274607,7.323328251437801,35.445992486476996,0.0,0.026447822244525132,9.820511395927712,0.11998943209496678,0.02038254632376045 -1997-04-06,0.24391380763884016,15.66657502860241,3.724545328358812,1.3748029071195456,6.914849031818321,22.871389516446172,0.0,0.012139683564830722,8.987974281911413,0.10754524410049467,0.015116525837075078 -1997-04-07,0.489007718525839,13.583883055221682,2.642365085125871,1.2739964956642882,6.234249043514349,25.240145982935175,0.0,0.022301601238569058,8.124413048977296,0.10034051864536007,0.013235896089111465 -1997-04-08,0.2689479026060573,13.813832461205976,2.1248918426251517,1.364831031284452,6.40415521922201,17.44244060258571,0.0,0.011435902231212935,7.683113032609106,0.09263612449415919,0.010357231322008383 -1997-04-09,0.3228418855695238,14.144585830233526,1.942800417857584,0.9734916391362196,6.558166840234397,15.789444210542603,0.0,0.012675483716637126,7.071410796630421,0.08613803611289994,0.00867210044912593 -1997-04-10,0.19995322084787814,15.587099643671143,2.7271489767887367,0.9354877135777084,7.018683207337504,11.149050177019552,0.0,0.007211457692308465,6.556976668186842,0.07871365718879383,0.006743180770808147 -1997-04-11,0.1265535908656253,16.26776723533213,3.8369960680433888,1.1221082951037729,7.125588767822361,7.550909051619722,0.0,0.004106733800029849,5.939590377760355,0.07066646903931507,0.0050148046413525695 -1997-04-12,0.18051550071479905,15.192267638157166,3.1200571780885427,0.8829755374965931,6.792170690097074,6.9824269433713875,0.0,0.005271605929538015,5.322536310470891,0.06410682674994019,0.004067082004907334 -1997-04-13,0.7195995784884202,14.491142046668728,2.0408084518261984,1.1371840431875562,6.6660752954749265,16.20640973593643,0.0,0.020256301817141553,4.86089912911031,0.06500903064352875,0.005731800426498293 -1997-04-14,0.033695164462765236,15.993205321316855,2.2898065401867083,0.8030608903107017,7.22422582079589,5.51881303450732,0.0,0.0008999778315772686,4.941249736559053,0.05795473889815834,0.0038681676030894925 -1997-04-15,0.07901197115338998,17.348153747433027,3.7518067213212825,1.0833500627699748,7.567801762491838,3.8830310668067836,0.0,0.001868446443076155,4.358381339677703,0.05169262692031623,0.0028024938788965576 -1997-04-16,0.48673424379085994,16.838666036590883,4.831309324852656,1.0251823835067273,7.17923598220041,8.955050501309533,0.0,0.010734635785981661,3.862111012799324,0.05066110205610761,0.003458798677099944 -1997-04-17,0.3228936035250248,17.334798786802942,5.843270210534638,1.3546171037008021,7.204179995437319,7.385816532886695,0.0,0.0068927809548067764,3.8140648874160785,0.048192764733086105,0.003301043101366989 -1997-04-18,0.1892938685840042,18.32357287967804,5.5433787705258455,1.5889746351502427,7.682079288264461,5.066105744396945,0.0,0.003779360928729103,3.626737467403271,0.04445418072045557,0.002724287443144073 -1997-04-19,0.164431222068726,18.4831556300105,5.017789137150738,1.4606075035367256,7.8323708158041,3.982047451048877,0.0,0.0029934558210781836,3.31461158557937,0.04052849258518388,0.002229180954490205 -1997-04-20,4.91163229244318,19.0008640692062,5.752106800504,1.325186532687224,7.929260171867373,96.45671953316527,0.0,0.14513958232051571,3.0133531509580793,0.09232071335095401,0.02355073755763988 -1997-04-21,1.476609975163903,17.538511441590902,5.7162637323430365,1.1923436709214132,7.300226442852013,63.48914460070436,0.0,0.06081268350817548,6.839061819678145,0.09687194475940128,0.024590052703697126 -1997-04-22,6.778193703386928,18.2120429717493,5.261242562610295,0.8946298664526363,7.664850631794213,279.66205251417495,0.0,0.3972078024915868,7.265266918151143,0.16359680554062841,0.07648772438237057 -1997-04-23,6.46273928129533,15.765276325111095,4.585842290028408,1.1325149717668643,6.7413083297557135,436.31293808792924,0.0,0.5559421916562846,12.151683766583199,0.2168454221991653,0.1344403251579149 -1997-04-24,4.598229004218199,14.23503664911573,3.9746417203613467,0.5153719444264273,6.207701609649293,438.9881724050982,0.0,0.4859240012213153,16.37635682057155,0.24433972016916855,0.1615034406314099 -1997-04-25,4.071738069317736,12.7204342290269,2.56455693879416,0.32554161461039705,5.837157705788991,449.3728162035993,0.0,0.4798355721303773,18.63283670851896,0.26449291986590107,0.17819320356592644 -1997-04-26,0.3405529454284997,15.675204120728045,3.299120764117065,0.4368743487519841,6.9071576480577335,172.11230698765243,0.0,0.03971625057969508,20.305531098143874,0.24051289689035743,0.12204278631223282 -1997-04-27,5.800653142536062,16.638289755234393,4.89038331032145,0.8409232229739019,7.040799670022542,538.1690753507369,0.0,0.6951727690508864,18.086366910676617,0.27826760653262195,0.1852944416215387 -1997-04-28,1.3000855419427728,16.262928044717793,4.753191750630891,1.0406716480092697,6.902883396402437,265.6066438378272,0.0,0.15973048061430206,20.835391734505542,0.2578633193865504,0.14493929799843427 -1997-04-29,2.378881535696285,17.702901903081678,5.350307645509517,0.34817057999061746,7.404585153032508,288.8830894352862,0.0,0.2788173359390327,19.379102425190677,0.25346577791133423,0.13680272916222103 -1997-04-30,2.695663460301492,17.654933533587574,5.669301246423693,0.3260668951490801,7.323664456623745,308.6062243151372,0.0,0.3099356914925262,18.857356174713026,0.2510780823236033,0.13624443460715502 -1997-05-01,2.984770197197437,19.0682734594532,6.6216342576750495,0.7705793819031556,7.758812940467537,332.1574864084197,0.0,0.34318525225811936,18.712743607162608,0.25276134154020413,0.14094374790765649 -1997-05-02,3.2148311755635155,20.255066549780622,8.028280156537045,1.2618536299068135,8.011290874189276,355.5104387043459,0.0,0.3710461611284841,18.66861099933256,0.2549272811400502,0.14824501495798398 -1997-05-03,1.8663126689470624,20.645763867746663,8.334803187196087,1.4335941331051087,8.12245179945775,255.75865145961367,0.0,0.20835306873003256,18.728317939443862,0.23991349921647734,0.12822536989638927 -1997-05-04,1.2231501602607606,20.173673395921625,8.818363163813409,1.5483082613562944,7.798314024595478,179.46847464736126,0.0,0.12575554969559288,17.5970867628571,0.21924301446167735,0.10261682941416042 -1997-05-05,0.42019395408778,21.392685147526244,8.960287965571617,1.7331218083987074,8.327589769748371,100.40629168925992,0.0,0.038680695448485125,16.20396737518166,0.19366022104903827,0.07268844026223235 -1997-05-06,0.1313382216977879,22.447642398462964,10.065720742523734,1.8044214053335892,8.578700919679092,56.98679345625024,0.0,0.010405074287710009,14.17407702117273,0.16664839947473808,0.04890108452651028 -1997-05-07,7.920792494914019,22.57848098907405,10.884923970048225,1.6701343819750698,8.44902534359208,500.20538105948555,0.0,0.7157351276386086,12.148504051917696,0.23379371317307418,0.14081355427781453 -1997-05-08,10.8648827287659,21.317338878434924,9.141958574262436,1.5515138088561196,8.242390288661882,1050.599910878246,0.0,1.4043013691031678,17.037025961942298,0.3250383401428463,0.30548863452107194 -1997-05-09,3.829110662814088,20.280194163700763,8.784115521997714,1.9400042338436656,7.836329494163974,655.7726718931476,0.0,0.5698516651139904,23.67749581775141,0.3204333371065354,0.2856270774313773 -1997-05-10,1.815815057983566,19.46993419620139,9.048757061506054,2.1283921663593097,7.394589513603358,393.3641766201659,0.0,0.25700715418771014,23.549906422692615,0.2954934767366075,0.22506293887812362 -1997-05-11,2.717388527186945,19.921771785722576,9.04904723187116,2.164361588896744,7.602861110837264,402.6905060447576,0.0,0.3648074481502097,21.946506186755723,0.28731767020467475,0.20205271846351874 -1997-05-12,1.6718497466564568,20.821788702010835,8.896436399030813,1.8046916241628064,8.050907318299485,292.3224745809904,0.0,0.21170718717120107,21.25524334914019,0.26708510757330217,0.16376236999885 -1997-05-13,0.5883571058059877,22.304795876482864,9.632619237695934,2.073598124305203,8.577306929092208,164.03614736387865,0.0,0.06649460735584023,19.593841965175802,0.2351089511180646,0.11672639231998858 -1997-05-14,0.07431888627767941,23.041426380439084,10.567759674747158,2.067392189884829,8.716670377128626,85.57218915399663,0.0,0.007155820207162489,17.085952410986504,0.19990553910461192,0.07707297459798633 -1997-05-15,0.027335847080791183,24.071513681308463,10.891168685273053,1.9531180760387408,9.131457118034307,52.39525785409894,0.0,0.002211073163505446,14.509789141153645,0.16934766108665392,0.05050755258639044 -1997-05-16,1.528270945663301,23.862161490011502,11.393650663736624,1.7569358365024417,8.914543923428644,104.76223092592052,0.0,0.10975970489602771,12.20353981120468,0.1599662956769128,0.04959057940845492 -1997-05-17,5.052693839375556,22.935113470299058,11.201827905415142,2.0018228127526703,8.507594963507568,297.81699472455864,0.0,0.39671677360120317,11.584343386527886,0.19381021652483743,0.09268712583997535 -1997-05-18,0.15891624916904146,21.996043422297234,11.620344977579599,1.9472046122678344,7.937294035763281,92.04392089775078,0.0,0.012563957215010468,14.132382822697704,0.16648395564248633,0.06224801071784761 -1997-05-19,1.6576296045087824,20.237541215094755,12.23739985906952,1.6455403158623845,6.85196016131915,121.81873494074642,0.0,0.1205688227294297,12.29670525989703,0.16255855082897527,0.05887891372168083 -1997-05-20,6.663368992406516,18.440743383502035,11.421750589056995,1.433722609826951,6.169296800873278,425.66976313270777,0.0,0.5819749905270459,12.273313514862895,0.22059952665620647,0.12694169523757184 -1997-05-21,0.11316856956914866,19.093577702855534,10.351484378877394,1.249748346816833,6.83845421732877,123.95961271835488,0.0,0.010749675932286248,16.849576168406983,0.19760448846048528,0.0842698743035938 -1997-05-22,0.17219642357080445,19.88430055569384,9.954893712289234,1.0136856821985745,7.3294077613169435,67.52718090032113,0.0,0.014401061267324655,14.904776550023579,0.175636524513022,0.05704850180963937 -1997-05-23,2.245971097446019,21.04192504388308,11.144194508427415,0.4748670784241016,7.577300927461992,154.53888096361095,0.0,0.17810855650209145,13.128469419329837,0.17910181993613675,0.06425555228979818 -1997-05-24,3.155907504564887,18.06561826158757,11.472873222315451,0.3740747195728059,5.940414587819198,223.54875500503408,0.0,0.26224715064389414,13.318916504336633,0.19192054240297013,0.08175834734256339 -1997-05-25,2.492905493029768,19.095915777133587,10.621262571053217,0.8452568098178922,6.751147884000228,215.02239588548824,0.0,0.223174075015105,14.739678397348131,0.2007479318418849,0.08720239130694052 -1997-05-26,5.5959286510522235,19.58707335524884,10.765630979500854,1.2667280240572172,6.952457723765819,441.61259828434135,0.0,0.5674344557409627,15.166666374633188,0.2418701709268482,0.14316493671639052 -1997-05-27,6.282796213424777,19.492774110850327,8.911333260236344,1.3147259974439145,7.386970012558212,627.3664518360615,0.0,0.7656820717547985,18.170702403454033,0.2848666981611406,0.20978005175077907 -1997-05-28,1.3578550740262267,19.526127009965503,8.014183377870046,0.6024937658485625,7.598375165336859,294.5656299758244,0.0,0.16990449187568135,21.171179829071278,0.26244799920665207,0.16242742288217402 -1997-05-29,1.6213663245187049,19.881807812489672,9.166346653228644,0.2570254116140347,7.50340467102719,241.24438445503313,0.0,0.1868533236543306,19.43989112085804,0.24534938585209257,0.13418379708243985 -1997-05-30,6.0332978074644945,20.66957833649192,10.782849732996787,0.7716700321072417,7.4730566238471825,577.7004618263792,0.0,0.7325259241192388,18.222937426561305,0.2825687133442503,0.19888523867565666 -1997-05-31,6.538922988550213,19.13001041072912,10.7296898658996,0.8607617131798814,6.722698419229752,771.7737489021418,0.0,0.9168326932361994,20.96515987977199,0.3204039387329754,0.2690662645120251 -1997-06-01,3.924331128936785,20.13677294626605,10.148173843219512,1.2838986491668372,7.376120781431421,620.9951336328538,0.0,0.5959914252226777,24.10292443325473,0.3264985463065417,0.2658979910411354 -1997-06-02,0.218866511553564,21.72667707340502,10.737826530257463,1.3898365475057095,7.990203291831066,232.09282253431547,0.0,0.03080005357531218,24.22177909742605,0.2847169693236009,0.17777685812238092 -1997-06-03,2.5289616942700195,22.70720185102487,11.206711356197422,1.6379569498413993,8.345763923673774,330.3793059203055,0.0,0.3213520165753496,20.895678533043892,0.2728811946999532,0.1646549709212192 -1997-06-04,1.9533042960201168,22.99619443472001,11.99804675372368,1.9442571407376392,8.285984095234385,278.03926802775345,0.0,0.2325176844002168,19.889969497694565,0.2544593467026555,0.1425868996755867 -1997-06-05,1.0689187034844865,22.943339061988787,12.388489597723082,1.8335504319623743,8.1538897496422,183.41686329814317,0.0,0.11581330493075526,18.58758534528432,0.22898496012749958,0.1104516566681789 -1997-06-06,1.3261202449421359,23.29444653382218,12.731985638740552,1.9728792218585691,8.234550739112212,164.893358407614,0.0,0.13033679966500644,16.793057887351054,0.21107615432898374,0.09174454045289576 -1997-06-07,3.1330268132925294,23.01444765550323,12.98525000098965,1.8511528463690168,8.018968198424204,263.87098016851866,0.0,0.3000357139663432,15.466452933259038,0.21667134285880865,0.10540625366340524 -1997-06-08,1.2399189540435942,21.332884578764826,12.839127765582747,1.658957433217992,7.1895112006918565,161.92094960545526,0.0,0.11524406160525524,15.943202740856837,0.2001717307620222,0.08616212789898046 -1997-06-09,0.6804979499440272,20.160447595446545,11.312821019383845,1.6374963372995095,7.052269726323944,102.22290806352343,0.0,0.058275335859096056,14.990660429324402,0.1825583820869346,0.06496077641723674 -1997-06-10,2.5190214086107487,20.03522573147442,12.204200951532199,1.3458657794545579,6.709022385683559,183.7869292661961,0.0,0.21050947577275236,13.718527588636706,0.18915644920775818,0.07433958979401985 -1997-06-11,2.2428333522708663,19.806449402817034,12.363113658171873,1.2769945463029917,6.532687503608359,187.24191100678877,0.0,0.19340386256461928,14.308916914584696,0.19281668121110512,0.07784017418916482 -1997-06-12,1.5597059279488137,20.782616239753672,12.437409718711152,1.1080603852525177,7.02289723631538,150.61284315081852,0.0,0.13434898436235243,14.635306382268716,0.18866092561112383,0.07112691249014724 -1997-06-13,3.5746160368581514,22.194727323317885,12.727077233907659,1.8410325135810743,7.663743153584145,263.86976028171034,0.0,0.31970727838883173,14.182279972690319,0.20685581294855393,0.0949804331757777 -1997-06-14,4.829793917477312,22.55436614513113,12.9155581298544,1.4650472324829635,7.791326364448259,396.90031191726035,0.0,0.4835321454406589,15.33866721564309,0.23494891344576954,0.13545271018892582 -1997-06-15,10.659983028734906,21.90216156646513,12.897246827476694,1.0208083964700199,7.45837354056743,1027.1047170852291,0.0,1.39212981697937,17.35530887271145,0.32635917776105094,0.30014567836000255 -1997-06-16,11.400749287437975,19.076768060384463,12.621252307073226,0.6264837836162656,6.035712223989659,1598.0596270006251,0.0,2.0201612077908564,24.16980363036341,0.4143728519266394,0.5029801171093287 -1997-06-17,7.790458012787883,19.365225186489987,12.660236500281625,0.7147728579173448,6.180156866387578,1544.7136491931951,0.0,1.6743159538801846,31.480191336431304,0.45747646952384774,0.5823557545023936 -1997-06-18,8.935497138557247,19.735948160045194,13.021027660580561,1.2791126836518405,6.25067641994416,1895.0364706609078,0.0,2.1574914620793404,34.566676304979424,0.5067708594932856,0.7075961727736221 -1997-06-19,0.16452438439085584,21.007184189401823,12.529696620904256,1.6323885313263402,7.102392445553453,619.1049029020769,0.0,0.038667310659260906,38.115723019298215,0.4459389575916781,0.4664995207282137 -1997-06-20,4.076103470477153,20.88807597297824,13.361221569090707,1.064634290377977,6.7603898184491635,882.6073435938724,0.0,0.8672294966670249,33.05189157663408,0.4325159979813032,0.43571776480072816 -1997-06-21,1.4607555602831297,20.863146695371405,13.039653422920752,0.6842261249415708,6.857271071402131,524.1563518945311,0.0,0.2899360248429239,32.321898688411196,0.39354504325619927,0.32777882910247075 -1997-06-22,5.407919893182137,20.362990710376184,12.431162039825836,0.6356054324272126,6.79366479509259,912.881335245054,0.0,1.039054424049664,29.41375295567917,0.40564890629006706,0.37157999795588814 -1997-06-23,6.909627106584486,21.44869013899611,13.29359225772648,0.7013901964652947,7.0840799227618,1223.4479176773298,0.0,1.4079559247130273,30.33924557515864,0.4339241405623958,0.4562632034123018 -1997-06-24,11.075677298902061,21.32527453678844,13.498124043222148,0.8229380668881051,6.947511589725506,2062.5837798258003,0.0,2.57046946479835,32.19847429411749,0.5041145593587695,0.6883978501234111 -1997-06-25,11.856932135744314,20.99012873878316,14.162635072096766,0.7622776452305964,6.518485468808328,2724.683798612971,0.0,3.2466359721339995,37.34308797515662,0.5731469143961275,0.9424629344251417 -1997-06-26,8.13183370553295,20.493115909955293,14.273313123535626,0.7070561705282938,6.187180416484531,2411.7855845354857,0.0,2.4463002811253833,42.63901647237671,0.591446020858225,0.9859844310834449 -1997-06-27,8.792968502791284,21.312597104164407,14.50813977134012,1.1583180294029425,6.567960080200485,2620.2163542455687,0.0,2.787899835139166,44.266391793006704,0.6181056138761839,1.0663284583815633 -1997-06-28,9.149514004909463,21.622087264214397,14.7105948181885,1.6576162899070412,6.666474571346706,2847.139736476227,0.0,3.030039895366116,45.74677497367321,0.6395045890012067,1.1554980452420116 -1997-06-29,6.45584968398103,23.159486073199464,14.856346045043711,2.05479681447842,7.477479749541161,2337.7827901747332,0.0,2.137955453347403,47.12012255477352,0.6241237931447761,1.077710220426266 -1997-06-30,6.44919094272979,23.798060852111703,15.32659929498873,1.7850023775647943,7.666354714243682,2166.180793971872,0.0,2.030194884479795,45.18957319080893,0.6015566306610026,1.0106658639624793 -1997-07-01,8.883593765387976,23.175777992473847,15.67860801830106,1.6842433932040022,7.185746192603151,2589.679523109948,0.0,2.760860982562866,43.46680306350044,0.6098466696204118,1.078277846413896 -1997-07-02,10.084261450361446,22.72205476358315,15.260729701623685,1.464461569522968,7.0844868431673556,3011.6244183564368,0.0,3.2756525582203437,44.526038042158696,0.6361730051702041,1.2006746915385809 -1997-07-03,6.966669385429905,21.62614523232818,14.657478103171025,1.2870730941336028,6.688434594374841,2474.950164409476,0.0,2.281503014438125,46.430754890724025,0.6220438302991188,1.128975330639865 -1997-07-04,14.899674427633538,20.509366415802017,14.7182434176082,1.0419287076464,6.0076314874393875,4373.4547431005185,0.0,5.343600256022722,45.89137607162843,0.7081745685878571,1.5485519573767694 -1997-07-05,4.172601660565911,20.94162365066423,15.180806348199694,1.0108727446154857,6.067645011178929,2336.565189221587,0.0,1.5421286888602674,52.599408651553084,0.6613554722358079,1.2428464167633722 -1997-07-06,6.0554441071008265,20.791145552304737,14.562527690075544,1.0620290274734034,6.241684777297006,2301.7403035698403,0.0,2.110404572483888,49.31240453648642,0.6449979397425645,1.1303748762978116 -1997-07-07,8.832149620008336,19.91533439717306,14.181191117909384,1.0116172193253603,5.882861999731662,2881.5927436719894,0.0,3.0843877265561996,47.975857248316764,0.6617748077375396,1.2054645132927215 -1997-07-08,15.954444799434825,18.060271609561546,12.752589136500418,0.6863561551975784,5.393420008411627,5125.930818770586,0.0,6.356423110551155,49.55817325651551,0.7631776330201258,1.752560062133742 -1997-07-09,5.4174672644325295,18.586817975201253,11.76319609955724,0.6046953193413063,6.0729882954689955,3008.864673968792,0.0,2.2731090357312222,57.13615216749059,0.7287073029828456,1.4869486610241185 -1997-07-10,9.32960867146719,19.53410027160333,12.333495444028467,0.6347186590660926,6.382406237151786,3610.603774887489,0.0,3.7986060135674418,53.894686018651605,0.7365202155371537,1.5463275733901791 -1997-07-11,12.789912955708056,21.248191732674453,13.34597501892677,0.9128084772045968,6.956791845185292,4801.882075430583,0.0,5.454115729190649,53.99686381570281,0.7780207191524288,1.8370562652657187 -1997-07-12,16.624384861279555,21.738755489005605,14.078135793187355,1.0815683679120407,6.969463571365927,6618.970740760445,0.0,7.79028535477212,55.838956148292674,0.8441488481682283,2.3820233167129627 -1997-07-13,8.300399595869264,22.33361100503161,13.754145384081955,1.0063717489589432,7.404208568009977,4537.818263209802,0.0,3.8420749992585908,59.71636075935311,0.7923491949178941,2.135597900965344 -1997-07-14,7.773598191407366,22.24139961526623,13.675417829266506,0.7665227222609545,7.381446774175001,3786.9454993531535,0.0,3.271969255138636,56.060105253004195,0.7436194148127145,1.8883795157020828 -1997-07-15,10.34498479683496,21.997742252852717,14.010966452820895,0.7807779594372661,7.137426477507601,4172.786657733729,0.0,4.185560991808654,53.112426800258966,0.7392358696288633,1.8665598043849607 -1997-07-16,8.149290201778374,20.64715920672829,12.970165456155655,0.8692501914427041,6.764720931716288,3571.235998182895,0.0,3.2109214070550287,53.161458265451984,0.7142286979578779,1.703952922899803 -1997-07-17,4.610531282494343,20.462900243221927,12.781843884281935,1.0340185489201523,6.730917449466716,2418.758540942688,0.0,1.6893659070897664,52.03264131699827,0.65985460013691,1.3664241830563781 -1997-07-18,4.164661574007008,19.950870289202594,12.790524804070067,0.9845042205637421,6.45210492926169,1907.7266154997935,0.0,1.3848065989465557,48.43815484389333,0.6127871868854293,1.1003351834074846 -1997-07-19,9.095953062822824,20.014359504922464,12.657902043533161,0.6744918696194344,6.534177156975019,2758.8867008353527,0.0,2.990788212997261,45.49838586552704,0.6359870754066472,1.1716581764195062 -1997-07-20,7.435542824190269,21.196663593661185,12.776169074604239,0.5378893906331882,7.125025851142456,2568.320741261964,0.0,2.488191393765381,47.02416044837649,0.6344186611965341,1.1415583021942897 -1997-07-21,10.282824938364293,22.683272687055375,13.329099050573973,0.4819654274127893,7.7310498004898305,3189.9440863889176,0.0,3.5035587166132274,46.26716560372088,0.658769092274113,1.2765693734998875 -1997-07-22,9.983767613569938,22.420269177225467,13.696051007272803,0.4295192003940321,7.478297039112584,3314.204719894425,0.0,3.471837428388234,47.21908799809822,0.6663745281927376,1.3596252006546614 -1997-07-23,13.781680873539464,21.974067490634305,14.224744768635446,0.5897447592438865,7.0574586235686825,4458.776954613568,0.0,5.137224409354715,48.010403576614465,0.7198359361821434,1.6672704108061358 -1997-07-24,6.669169400158282,21.860708937732568,14.133664111892381,0.5993057714041771,7.028563002115477,3037.939842662053,0.0,2.507563996738945,52.02217288063063,0.6837143898351378,1.4671283379954776 -1997-07-25,6.511104053240446,21.762713802615306,14.33786336943086,0.4923292027382867,6.901335299961361,2629.965437368974,0.0,2.304526705949998,49.68962891116825,0.6547004780230714,1.3059298283192244 -1997-07-26,12.817604600105595,21.879049881233282,14.766518790008506,0.4805855531652424,6.807372960983787,4069.7438034955235,0.0,4.70448150916914,47.89279359960651,0.7072350239185307,1.566425747716369 -1997-07-27,10.801974269293888,21.059205148099963,14.252744965567613,0.6822192200854753,6.537773329134994,4065.10701880973,0.0,4.227231409423625,51.5182849617908,0.7259888146823951,1.663327969924398 -1997-07-28,4.423631690656581,22.48881084491602,13.600336715701411,0.6705744022871595,7.554647792467722,2434.496927682846,0.0,1.660614824416296,53.09949209353198,0.6701054355063035,1.335601470970862 -1997-07-29,5.175072127880055,22.523202049816565,13.887095878497538,1.2240004953933359,7.481730857260963,2117.168510283582,0.0,1.7315207867342703,48.16754664433709,0.6214053832943719,1.1330634035407816 -1997-07-30,8.163226336709817,22.70721199317383,14.097663916562155,1.3534670265692084,7.512969150813573,2556.0431909674166,0.0,2.6166165873477905,45.0015095140541,0.6193331677276939,1.1359895519284713 -1997-07-31,10.142824412064083,21.99531174661179,14.072828018479672,1.033987650544671,7.135417093448911,3070.570834273195,0.0,3.3234099039562572,44.82845632516318,0.6403781922024939,1.2455140607768977 -1997-08-01,15.994941547968033,21.840054713743452,14.458944993500669,1.0918627296701062,6.911287497636487,4891.665786498309,0.0,5.933218986470678,46.65984280227143,0.7298858057689713,1.7141913554118402 -1997-08-02,7.706162567003235,22.56066658596388,14.9017037309007,0.9332307186493324,7.156002812231462,3433.615269311132,0.0,2.997264155262381,52.86203118335981,0.7055784383892137,1.5722357510319864 -1997-08-03,2.978691383787839,23.374423221811657,15.288403779499685,1.2059746327999117,7.47568239848749,1904.7558835722762,0.0,1.0407953288244713,50.97118014405028,0.6284794666455207,1.1819280431266919 -1997-08-04,1.6307204368685029,22.490468694217057,15.181539847739993,1.4651838273899611,7.0145666402957065,1161.58044478591,0.0,0.4847311786567965,45.48513771928796,0.5488678390873974,0.84318708824955 -1997-08-05,0.8606483171188724,24.05287982399915,15.261105396415765,1.6348173688965462,7.868004960392712,725.9718975872512,0.0,0.21945334622688462,40.45674082518781,0.481319601992811,0.5822901785629402 -1997-08-06,1.9133575538543808,24.382219734944638,14.870218341436196,1.587696556020889,8.179684755267287,667.7761288282672,0.0,0.4186422314639471,34.990731998022895,0.42990765059810276,0.4427880028686109 -1997-08-07,17.69617587683797,22.917932848659305,14.971743516557716,1.1007091913070128,7.342352989188361,3198.081180298858,0.0,4.415474509507618,31.154655984904053,0.5690791077753641,0.9605554018698546 -1997-08-08,11.500755532707212,20.15729159144681,14.59612987906806,0.7164866188902672,5.882146394971471,3183.1206341002867,0.0,3.5205369707364103,41.561094361305834,0.6181346160093503,1.1613301825317726 -1997-08-09,2.6245158738526517,20.31351279291269,12.971842973784803,0.5706788560632068,6.619635522129127,1510.6535589572386,0.0,0.8122466301231275,46.48265284217184,0.5720652585278808,0.8796479149109911 -1997-08-10,0.9750011039302372,20.228972917016886,12.72431899576381,0.7252825660437503,6.662677539025138,809.2096033439482,0.0,0.2639902432942641,42.46446376796589,0.5060403471020112,0.6128058635743122 -1997-08-11,3.4238130295183,20.939264299671265,13.250736678241324,1.179374338287686,6.867818266521938,964.9741543534385,0.0,0.8358648398385924,37.718056789613236,0.4792749207453649,0.5261805852491795 -1997-08-12,7.916371432406177,21.22976482522516,13.72247159443666,1.497021772453606,6.862917038111835,1661.9160027317082,0.0,1.9432569727390616,35.62737277265761,0.5072551307119693,0.6384084119752707 -1997-08-13,4.980424465999282,22.613724225538192,14.91361657970424,2.0366443421927065,7.206760787988817,1343.4607614727092,0.0,1.242005733534623,37.637835661064265,0.49647386797197585,0.6046875918459051 -1997-08-14,4.137425405063231,23.095505789225797,14.984667392803988,1.5784833041605075,7.4551164625395545,1119.037089112858,0.0,0.9864984809037107,36.58626469035681,0.47440341016939336,0.5438321690470812 -1997-08-15,16.603691754868894,22.07252287915323,14.260823225382747,0.6869036247702679,7.145559539032025,3381.066329908888,0.0,4.536841862856797,34.82351562703417,0.599092137777741,1.0448103774604918 -1997-08-16,15.295542922667265,20.641971895540856,13.147997034480715,0.3839610824613504,6.753852427975023,4365.900773274119,0.0,5.2320237157222405,43.82846762250075,0.6887546820977637,1.4767753520500186 -1997-08-17,1.3557569767325224,20.94533870489495,11.960920547441859,0.12280737133330125,7.3036970459140775,1583.7419530435275,0.0,0.4567306886064846,50.3584577627142,0.6024355791221621,1.030855340279037 -1997-08-18,0.1015708761764572,20.388114161012737,11.731805789526966,0.15630792280351594,7.089608341497685,740.7523179683276,0.0,0.028288184432310057,43.896705980959055,0.512550128283921,0.675345670296453 -1997-08-19,0.2917451898076624,20.402569347532424,12.000113503122428,0.1976000605618192,7.016873841036912,489.36159336057904,0.0,0.06808261624422474,37.824381747572076,0.44402706530703234,0.44998487421122424 -1997-08-20,0.2658016474925891,20.471003118621823,10.844833005105203,0.2799531437643359,7.393469906761681,331.7472655206282,0.0,0.052858590808293526,32.97541920559099,0.387237710874102,0.3009675051429006 -1997-08-21,0.8460565283886157,21.980999408149973,10.955793177881102,0.17502528754181634,8.107574276874127,294.01092069478887,0.0,0.1449728492903939,28.62314308568949,0.3432962179783778,0.2179899583361068 -1997-08-22,1.4227732466886598,22.691496610876094,11.377865300255213,0.28240901710547284,8.352198194057074,289.8918495417014,0.0,0.21327854250802125,25.05366826953664,0.3084326129340718,0.17437602616899553 -1997-08-23,5.056621354287343,23.29907544981493,11.5198756326914,0.2027084840606566,8.617721962993267,604.9304774865057,0.0,0.7323107279995709,22.43602004150975,0.32027065332660504,0.22501572398796651 -1997-08-24,3.3328672269277013,20.007706884373256,12.16431384334317,0.12495959159747475,6.770760105220853,503.123005070509,0.0,0.47941169396023886,23.150145133809136,0.308509158822636,0.2194721732404518 -1997-08-25,1.0301003265757098,21.578439856166376,12.407930380129669,0.5284926129319844,7.52053477916856,266.0726769045122,0.0,0.1409238829294639,23.197556327119642,0.2822357922377691,0.16432381260514964 -1997-08-26,5.16126494543965,22.88916845235959,12.695952872377555,0.7583517424271732,8.11462087227005,574.4451659675756,0.0,0.6994896874867385,20.920147277588043,0.3038307891953428,0.2134747171348661 -1997-08-27,6.818317181072394,22.097418009496646,13.004179886934976,0.921240750892841,7.615707121790253,844.532906661189,0.0,1.0167870829881513,22.218295153297074,0.33825686913231734,0.293782861730426 -1997-08-28,13.553105172405647,21.641251637852946,13.152719812525346,1.2249188210010384,7.329502272002122,1934.89742326088,0.0,2.5740471717357316,24.952428249093018,0.44856338712794885,0.5831755429985702 -1997-08-29,21.801551571910743,22.241552552310566,13.332124404026251,1.2830203949846128,7.5957501594863315,4532.647598282233,0.0,6.121634657918541,33.076496599964344,0.6392920959563464,1.311729179655337 -1997-08-30,10.40832399165336,21.431034488762513,13.860262086432867,0.8825585562824707,6.977431273967951,3530.08401349371,0.0,3.5351235790179114,46.07963017897244,0.6580464105597127,1.392148833298617 -1997-08-31,7.775862678517072,21.301749125004765,14.319486332588403,0.6981852017402458,6.735174703064246,2891.590846350613,0.0,2.6822219534911795,48.03188569417078,0.6501224736718066,1.3146313758565633 -1997-09-01,24.93315673013303,20.54585034520022,14.405749498141875,0.6356327630645822,6.259606872929531,8020.782684760519,0.0,10.703076497434434,47.77047688583819,0.8469480942986028,2.4854647492578623 -1997-09-02,11.640877658531144,19.064001760246086,13.404677144947117,0.4858087581820426,5.800903481817287,6043.3976229031605,0.0,5.804141908595353,61.02736977196923,0.8465358692025733,2.501687083992924 -1997-09-03,3.227781698180234,19.39251688374597,12.345776606607965,0.485104663240617,6.4067558165959015,2976.9953044713147,0.0,1.4743582312843735,61.762750278429145,0.7570956837699233,1.8529735335135147 -1997-09-04,12.938922702347266,19.73353988894174,11.594792688454067,0.5103314200923308,6.846820163166533,5048.2619439006285,0.0,5.7059633825553,55.29946940183707,0.7949310546968829,2.075015898668185 -1997-09-05,15.216261069403085,19.652712681664482,11.001483533607724,0.567328575938645,6.991540236173643,6398.554016388125,0.0,7.207649592873867,57.03273742686281,0.8416519030481141,2.448208952038779 -1997-09-06,1.4813584167326672,21.426222016513528,11.037589179127293,0.6541774941110956,7.874783429232134,2447.9055949245517,0.0,0.627817256997317,59.54138808414455,0.7108736700944087,1.6892634139593934 -1997-09-07,0.19497306980698376,22.885764313632432,11.4587485946579,0.5616039625350784,8.491568451582893,1212.3082968769777,0.0,0.06479378330585867,50.411819739704086,0.5895348636215073,1.109496897801676 -1997-09-08,0.4120828163397298,23.266120994746963,11.525874353382914,0.7992388192039008,8.666754126668584,801.969249913611,0.0,0.10868478500372797,41.834587981281295,0.49214510393666755,0.7387791982111906 -1997-09-09,1.2233897287341808,22.057425170286347,11.421093329323364,0.8959394582366734,8.099575526676702,661.3812713479041,0.0,0.2657023181257092,35.10983372797487,0.42325744719896763,0.5213676385176707 -1997-09-10,0.4996525161577579,22.170958802437493,11.989119319368653,0.8359068256709246,8.007077238921449,415.5012229179508,0.0,0.09212721054907497,30.740845509399318,0.3639306448896993,0.35341355717986717 -1997-09-11,5.313727296076159,20.739332320737482,12.568760985304053,1.056316153383538,7.088965534424937,836.1851325138258,0.0,0.9178115516151344,26.584914279369332,0.37159757152911915,0.3698059826759781 -1997-09-12,2.4080588148438187,20.486805586117306,12.709041818103785,0.9717700489947992,6.908921938671392,562.2219074209557,0.0,0.40990557991481236,27.669950925916005,0.3503884436476805,0.3031404938401561 -1997-09-13,2.951751622769372,20.936870361073066,12.312486425701016,0.8225607510342091,7.284849842867142,538.4983469649079,0.0,0.4795295188870483,26.21874111170124,0.3398164851252199,0.2703456671357562 -1997-09-14,1.4031586405687215,20.532657501851894,11.427476797782626,0.6607851923555821,7.349014571647462,344.34880448139484,0.0,0.21194395127045107,25.24106978188049,0.310387216760687,0.20825392064767084 -1997-09-15,0.8119285712797292,20.35759859925238,11.037535547957487,0.4250015441586449,7.377109619902581,221.86412979083707,0.0,0.1098012060667094,23.05804534153704,0.27806903054122484,0.15228237010337478 -1997-09-16,4.64153885040832,19.900866961217137,10.986635278276232,0.7553935853246201,7.164011564892789,507.8756259130034,0.0,0.6142854861788969,20.67669379635148,0.29494026398250506,0.19266270565941226 -1997-09-17,3.855207151832728,20.853576920167285,11.71387842801992,0.6159142864615573,7.441483471061145,509.8242398210107,0.0,0.5330561061076673,22.011129750533918,0.30132530736582774,0.20658003312857862 -1997-09-18,8.64959154303895,19.040873423266703,11.523152896073851,0.6796956831756403,6.554281721459337,1049.5061862572777,0.0,1.3491394723424666,22.351526700599365,0.3611420325463243,0.3399003075503766 -1997-09-19,15.675641395540907,17.438361930594766,8.825636130107382,1.067460929161007,6.563164421425236,2485.2008024137185,0.0,3.341930180904999,27.21058991386158,0.4995955507671952,0.7301173646432222 -1997-09-20,7.753865981763167,18.062575396732484,7.935780940803507,0.6207784713522889,7.090163584772619,1980.5150699405701,0.0,1.9980144834199978,37.33629258916635,0.5252698107908785,0.7794993102556349 -1997-09-21,3.5088065104613926,16.688600119761187,8.381173111199741,0.4470988871925332,6.32854816431084,1216.1879888408678,0.0,0.8840813510485881,38.72472460761191,0.4919920355685662,0.6420318605718073 -1997-09-22,1.368517694508706,16.20240379863261,9.244233283603972,0.8824275416914893,5.831175984926535,685.7565282867774,0.0,0.3162917513706798,36.976775769007745,0.44669670013730417,0.46609265739893324 -1997-09-23,0.8686818876736367,16.630153112298586,9.899896514537984,0.6619367399790436,5.840013247426301,444.5320450264826,0.0,0.18093010277728394,34.02619059200988,0.40650163241591253,0.3309536946056809 -1997-09-24,2.973167271335565,16.456815177467934,10.326896661567153,0.5082132052858868,5.5994489822261055,605.9006037381364,0.0,0.5790474335426934,31.022092397132404,0.3960217524130753,0.3036038262792436 -1997-09-25,19.942651434504022,14.715870441615687,6.891431967155755,0.6061333945847314,5.8046506088174015,3522.0374093869996,0.0,5.03618271985345,30.389994523793092,0.5863412384662632,0.9644650391960857 -1997-09-26,4.885680366712245,12.635581908320052,4.992396220141903,0.4287783382526104,5.341058176786519,1882.7044015730712,0.0,1.4697770279752067,44.287099270558585,0.5728295813264948,0.8516166759058115 -1997-09-27,9.624407372085976,11.507484566366742,5.487276236375026,0.22048284939414325,4.686528110772972,2651.7547820159466,0.0,3.045421688709631,43.7657012913343,0.6219586083651489,1.0180728715729341 -1997-09-28,0.4557863316987034,12.939877209019015,6.746623560187698,0.6865121378480652,4.999597396553643,940.7417238362019,0.0,0.1429035835503707,48.05933169475107,0.5651682689508245,0.6844767716520481 -1997-09-29,0.2916645104568024,14.947877961244549,7.878074321501961,0.8523335855985708,5.648330212289715,520.6553394773586,0.0,0.08061904108404627,43.53361057559619,0.5105347748133837,0.45783764791203807 -1997-09-30,1.818871376015636,16.271837514121074,7.835710881494241,0.8321746438389872,6.309079663346907,597.6425717804048,0.0,0.4491218465758138,38.90030775676013,0.47435086050956193,0.36641622635415894 -1997-10-01,1.642270501230261,16.56868678430119,8.126685726975623,1.2505338484371085,6.3771550547875515,504.19604991777265,0.0,0.3661261452348905,35.70580116846767,0.4350797415912036,0.2942678561179105 -1997-10-02,4.532613345637377,16.24215592994542,6.885437619791322,0.8053666608983026,6.543042012374337,843.8686742284476,0.0,0.9629343713051393,32.77743788822659,0.4346368292624461,0.3381755270212394 -1997-10-03,2.0334067717473348,16.908757863957373,6.687228007951617,0.4876833798446336,6.897340389691332,546.8747146984059,0.0,0.4119669715217116,32.628554166803895,0.40378837069719137,0.282864431165034 -1997-10-04,7.381512286851593,17.533259317179045,6.085682763456893,0.5123106378934982,7.306423035749293,1196.227050702134,0.0,1.5059673361306993,30.136451410799893,0.4370588686603103,0.4134372243553942 -1997-10-05,9.71430162084875,16.54860479510807,6.952587376570497,0.6676607484288816,6.68013479567942,1802.647947613276,0.0,2.2105458459191514,32.268545257126576,0.4890717339431598,0.6057164625207857 -1997-10-06,14.006120637096961,15.749015504467476,7.409908485021808,0.7196764183333292,6.194884614092712,3052.054738464241,0.0,3.861709749520122,36.481811127899334,0.588150212949577,0.9822953060961364 -1997-10-07,6.873285307398963,16.43698253457293,8.262816986400173,1.0062675641149477,6.2978646947979975,2251.844958008477,0.0,2.1095997590756825,44.02413437647371,0.5929204698855999,0.9606458044248878 -1997-10-08,6.842175093360118,17.215899898155502,7.634919790830763,1.0621295684699623,6.839414828928566,2145.569237418588,0.0,2.1123959574980935,44.25884876477638,0.5952923206282306,0.9469787588810035 -1997-10-09,0.099380441922914,18.112880848851248,8.421521415874157,1.0813928411641631,7.074441011067914,767.6197897713229,0.0,0.02766135901710569,43.876260054990624,0.5122864300174337,0.6206505145762212 -1997-10-10,2.4251062156218266,17.891027984157898,8.209908479781914,1.1816035040583748,7.025509548362451,797.7986085554542,0.0,0.5848423273887944,37.81847942980215,0.4688105184696981,0.4930651985244614 -1997-10-11,0.8681970949167213,17.53275930780885,6.845833397922567,0.8660367250307829,7.179616706820803,476.6833995126474,0.0,0.18527244836234158,34.75350215985659,0.41496867211435573,0.3491727374329381 -1997-10-12,9.48420715923775,17.79333348206521,6.599199428323987,1.055146543326832,7.354039301540001,1578.5726380563337,0.0,2.048008717291344,30.763916577919307,0.4688633841650413,0.5391346230014493 -1997-10-13,0.6324597308210435,16.143858283676813,5.551502919277848,1.1279017303886107,6.8360252936894055,557.840549024561,0.0,0.13334130293609892,34.507219614380276,0.4093534666078141,0.37125448344441697 -1997-10-14,0.018523092759176463,16.463503128080227,5.2208699181224025,0.9483016384172474,7.045502796098662,260.83231528764077,0.0,0.0033653940853657915,30.58226398680327,0.35647844560246744,0.24218165072741787 -1997-10-15,0.01044291908902575,16.755827005928545,5.004185432113872,0.9331438472519789,7.216947716049605,160.09338780691536,0.0,0.001621391249883388,26.589695587033898,0.30987359909464873,0.1578957528562645 -1997-10-16,1.9413998201326037,16.183271074832717,4.8461011347766405,0.5842509769170261,7.002315397506367,279.22024993588894,0.0,0.26981216795568264,23.0839666673822,0.29152857156603945,0.1438656024641895 -1997-10-17,0.2526478556857995,15.843815533416512,3.716687202408073,0.772716640318691,7.058404595757271,130.0736992896424,0.0,0.03178351998373896,21.832789010891286,0.2572803825005864,0.09848925597029766 -1997-10-18,1.0561455862394804,16.335830125489323,4.089237510048947,0.7790759762251326,7.208422981215684,144.77810346192408,0.0,0.11881189613584153,19.274409390015084,0.2368371969429214,0.0822027430138824 -1997-10-19,0.0041988461671300095,15.317247484886765,3.44722058229708,0.6311173154041189,6.8903484165213005,60.894833671324115,0.0,0.0004189630256041235,17.703714852665062,0.2062852022011651,0.0535739154830252 -1997-10-20,0.0,15.909773063280294,3.24333895510902,0.7374219408457982,7.172740427472011,35.443899345169456,0.0,0.0,15.53833074799271,0.181011030137878,0.0348741010054217 -1997-10-21,0.40706898331479424,16.305229203757158,3.6512190984411412,1.209021050721646,7.278560966353373,43.08145090584901,0.0,0.031141353853943787,13.570167796115108,0.16282534262906462,0.027443131841348844 -1997-10-22,0.00020101363224929656,16.71168918740159,3.523831403739868,1.347753833908962,7.472076820244129,19.68135180700477,0.0,1.3531504425028795e-5,12.189086907990669,0.1419969492942598,0.01786624937296861 -1997-10-23,0.010780755673351352,16.869634173785947,4.0879555500368365,1.0866923388971292,7.455450528167969,12.180439662691862,0.0,0.0006277029353801717,10.596778284679168,0.12357087902705462,0.011725665672929868 -1997-10-24,0.9486113739524776,17.888228168246812,4.872417946853619,1.2190829487314725,7.767635647217693,40.60389987089185,0.0,0.05040249897705007,9.230811438523007,0.11858338192043145,0.015307382302587503 -1997-10-25,2.6580939472809053,16.863881818296193,5.68390249220514,1.1248760146377883,7.17677813485187,109.38874849577202,0.0,0.1477186519693401,8.804749583681296,0.1335343641154518,0.03245673341392727 -1997-10-26,13.432851631399874,14.811232704430731,4.020932114124838,0.781633544521525,6.60373217034111,858.0365806810822,0.0,1.2676785776441477,10.027082775060231,0.27329234798461016,0.21415059860708627 -1997-10-27,12.970849951486835,12.872563019285936,3.753142817076788,0.8873934131817909,5.82806889110075,1562.6404340683816,0.0,2.065106778217187,20.651250951362044,0.39167470550918465,0.4538449890287096 -1997-10-28,1.5710740327672144,14.164224548023707,3.9892578089754647,0.9871278797133002,6.339688141163835,608.1819356853684,0.0,0.28665309782765314,29.919210269230994,0.3668404858466345,0.3390789259592159 -1997-10-29,0.08739437262411284,14.617619851739375,4.201039804334656,1.0243848444399184,6.497429185273663,256.2749239918827,0.0,0.014256392268349155,27.75666803909672,0.3243644701680745,0.22289519041975991 -1997-10-30,1.4314707056492284,14.547248911643498,4.419392851713685,0.8471253770582469,6.427642195834788,284.7603351805327,0.0,0.2096279721284371,24.51050654049591,0.30220646614468155,0.17701324844007146 -1997-10-31,0.404169387848634,13.750846509736366,3.2983409953347844,1.0289117416824891,6.303769194498985,162.65584141866464,0.0,0.05371317995395708,22.89099793943122,0.271372923097926,0.12340593025440176 -1997-11-01,0.3539288117704385,12.78754641321077,2.446238646930391,0.7256246699114631,6.057165021373993,111.83591212427908,0.0,0.04200504455073545,20.633242661703584,0.24448633445291892,0.08672734908228526 -1997-11-02,0.04125398948909122,13.59235417067966,2.0775815536156075,0.6986990119245587,6.449833217870467,62.047247564794354,0.0,0.004369147824340294,18.700298577473593,0.21832639500014195,0.05712069536800731 -1997-11-03,0.0934749896257554,13.76394843159624,-0.12094593438494168,0.6309344162704761,6.806135300743831,43.34322392159637,0.0,0.008725415706464235,16.584060230324823,0.1942819907288932,0.03851146145210804 -1997-11-04,1.2758794063585797,13.712107858702574,1.297502803863679,0.4720625574554858,6.6177263916645535,96.84992915472179,0.0,0.10905717658597891,14.665438953612238,0.18570556290076082,0.04167471758279822 -1997-11-05,0.8580839854785425,12.735617524276085,0.5561651043282001,0.896946250963079,6.335508726107842,78.7721839482762,0.0,0.069310883585596,14.075171313505525,0.17396231093421824,0.037681888377096386 -1997-11-06,1.0238494779737044,12.165827338965867,0.4472122580350328,0.7093002293848979,6.131327252267091,80.21780835589013,0.0,0.07834305597992053,13.264367116738063,0.16644804687118722,0.03645802590475973 -1997-11-07,9.498067892161592,11.953979171422631,0.8292677073628753,0.7356688581878639,5.998034700110486,640.9674880880758,0.0,0.9373841138044696,12.745615729508966,0.25912385002744065,0.1664630404609218 -1997-11-08,2.572430925871936,12.939402855288847,1.5895571856791393,0.9461320191458892,6.280129285023,365.7693620390158,0.0,0.3102463834471698,19.832998859610814,0.26100808329595165,0.15559921066786586 -1997-11-09,0.0861039697721132,13.713854206513412,2.294722638538667,1.1282886303813708,6.488378343513194,129.86480566554124,0.0,0.009740475307849258,19.86259271372559,0.23238880643948592,0.10277090424169037 -1997-11-10,0.4975320497507912,13.600903211018348,3.134720655812665,1.3339597478892873,6.302307312342143,101.89155589126347,0.0,0.05016054481510285,17.629531005627616,0.21116800834299343,0.07453671238913853 -1997-11-11,2.12654621638885,13.975752887544514,3.041184755783128,1.1123373670922057,6.479508290580025,185.61241785801457,0.0,0.2051801289003139,16.091727742214495,0.21223055359449575,0.0797616022519797 -1997-11-12,0.4957925680275079,13.121022935332565,3.3811223729651583,0.9761013620008494,6.058337782374427,93.770534718016,0.0,0.04548890831543101,16.114966117691885,0.19350408932839783,0.05884741256075697 -1997-11-13,0.976039915932604,11.316466896196944,0.2442040637348991,1.187978351438434,5.849530057924095,96.41754032082234,0.0,0.08348814414207106,14.826007958814916,0.1840831560665307,0.05101920304878342 -1997-11-14,0.2478066161772492,11.570190315690686,-0.9514512267694702,1.2500963387903743,6.099172293834343,51.18969388499884,0.0,0.01970562017706956,14.166512812300516,0.16791705948351288,0.03621157506155636 -1997-11-15,0.0,12.897380994255832,-0.3977636512829197,1.3517988511224526,6.543450276479043,25.10523720026965,0.0,1.7763568394002505e-15,12.865640470214448,0.1498759984368292,0.02357203342104557 -1997-11-16,0.08513769161549388,13.09828335431986,-0.1389250033122449,0.5958377871811353,6.594521934286069,18.959538434594776,0.0,0.005360952318293685,11.389908059618106,0.1336765117178627,0.016160570058320105 -1997-11-17,1.4846915064520072,13.164560180837587,1.0638430784875588,1.0608939610281745,6.472695949909544,68.93823266239079,0.0,0.0889400858180025,10.153855457464207,0.13558119011713643,0.0240622135219537 -1997-11-18,1.5647356373316237,12.558557741676095,2.406020162768108,1.217701906500418,6.0189924781862985,83.29835158489624,0.0,0.09560164742907329,10.32257996667736,0.13847917629979045,0.03022013320480589 -1997-11-19,1.0231715173400897,12.843345607567706,3.694453147560945,1.4178747781798888,5.894016597153632,66.61554223182507,0.0,0.06276142790606731,10.636191575990548,0.13582368392743682,0.02922824093141654 -1997-11-20,0.9464377831368168,12.453575334981885,1.739718104689396,1.2439557649870148,6.0939554184619915,60.28055243826257,0.0,0.0568853753761559,10.45840521619954,0.13285869720190674,0.02768784987689034 -1997-11-21,0.35168653246710474,11.860370371507967,-0.6865574991736437,0.8802288092467278,6.197332543994245,34.70200545686563,0.0,0.020006385310168795,10.191284757583311,0.12281847547701549,0.02106975665491357 -1997-11-22,0.01883075107623824,12.696873576953228,-0.4621314987351669,1.0165404092205028,6.493260212749481,15.783527602772262,0.0,0.0009695506900862204,9.404937420539916,0.10978051710896608,0.01386304971933971 -1997-11-23,0.04345893081808412,13.877411008584547,0.8120547578321827,1.4150111545936457,6.80481993645119,10.484489137742692,0.0,0.0019854340250562014,8.361432178240785,0.09791128934772958,0.009326505464707768 -1997-11-24,0.003459977878129551,13.51361269138345,0.7745010786880357,1.6565485231858474,6.668272793227207,6.288432656724738,0.0,0.00013938330613214728,7.414822698504268,0.08641796927121136,0.0060923398792096335 -1997-11-25,0.03369825244013818,13.086159922031422,0.5693136409904233,1.4248615193051453,6.528492242616434,4.7681390025582475,0.0,0.0012011777071732552,6.564163213244166,0.07686061778320732,0.0041487239720783215 -1997-11-26,0.12555023419022776,12.969214385950004,0.3268825438256939,1.624230883491934,6.51567500341394,5.39483000902726,0.0,0.004015754874571675,5.855691068526609,0.06967741048039287,0.0033120823194336055 -1997-11-27,0.2073644767622591,13.777933152649048,0.8083256299926138,1.5310388572703033,6.77605572826947,6.351543626373059,0.0,0.006057634007781587,5.310825947649374,0.06428318134164823,0.0030783741880432564 -1997-11-28,0.00017971830327380065,12.783745516296143,-0.41045471675220696,1.2517435421353964,6.5354159984632885,2.3766254011202523,0.0,4.7192639786134164e-6,4.875771371643791,0.05680152804105064,0.002004595490486856 -1997-11-29,0.00651675019167904,12.947962165488931,-0.6272977084861645,1.1537261708117337,6.62413029435264,1.4326177077661506,0.0,0.00015178453071403464,4.3293217492716325,0.05050958214418963,0.0013280088854041353 -1997-11-30,0.16578346102585104,13.29559808580435,-0.4813403237631581,1.1130942116057458,6.744156215265819,3.1582054068944445,0.0,0.0034949644980679373,3.8438432459871033,0.046709435683657444,0.0013966313432578082 -1997-12-01,0.8887774240078314,13.856715773276004,1.7697507790957228,0.7843167335576444,6.686105932660025,13.55667611681332,0.0,0.019049335665136224,3.5467927259240946,0.05167138833054634,0.0038096841300210974 -1997-12-02,1.409285449306972,12.001887853339202,-0.5732506764199296,1.2305490699744293,6.262927747839673,26.55077683248491,0.0,0.03513231800912764,3.9274282859724394,0.06216910081532925,0.007829339733438115 -1997-12-03,0.5470313594668125,10.431884586131376,-0.8006639671514985,0.8324428828498959,5.694696646477487,16.91806157783077,0.0,0.014845070376378833,4.7626601597165905,0.06185431029815747,0.007356913455708525 -1997-12-04,0.09881497867219004,10.576958185629131,0.15829293608344686,1.0131225519112157,5.620064314951356,7.495124529137672,0.0,0.0025752711158816416,4.790324891839192,0.05695516840274251,0.005181127956117705 -1997-12-05,0.06453639949346729,11.506891718985742,-1.0427090761957667,1.0791880881396891,6.133786631082606,4.607850519568294,0.0,0.0015444657687836982,4.417683073376182,0.05221482135029221,0.00360783851581536 -1997-12-06,0.0,10.79958002035351,-2.223126447916978,1.1476355430005123,5.993967977150596,2.4545162244316616,0.0,3.1086244689504383e-15,4.011040056170684,0.04672590024417777,0.0023485333053860293 -1997-12-07,0.013427426126876585,10.612335103820122,-2.702064659357272,0.8018440949809235,5.970958798351629,1.7063628467488179,0.0,0.0002596894882894163,3.5994844264253265,0.042087976297731096,0.0015683263616764853 -1997-12-08,0.05970840129651363,9.690478878742256,-1.7751904160431298,0.9143087559295578,5.54303379448097,1.720565485436557,0.0,0.0010472111870544892,3.2439991823966845,0.0384859559689755,0.0011803601235933353 -1997-12-09,0.08858009443387052,9.617567210882553,-0.4985295119568248,0.939317790958928,5.351989068036058,1.7704132421037773,0.0,0.0014391433707891255,2.990766450079538,0.03587230180731564,0.0009874898019276762 -1997-12-10,0.9997790434876409,10.678328870607622,0.6289609770678679,1.307674137327645,5.596701649558117,12.2712537598772,0.0,0.01766574920721331,2.797862743471523,0.0442399549282945,0.0033326807385889987 -1997-12-11,0.04800147406272482,9.948373855548043,-0.23011650919565466,1.715107557706142,5.443011917802486,3.782016120910439,0.0,0.0008897706675470365,3.433978180028355,0.040562704857314204,0.002304899253373776 -1997-12-12,0.06229726332949734,9.878215045628432,-1.3508867348185458,1.1406263089006314,5.568038920746265,2.3265837174278867,0.0,0.0010640365144949093,3.1579519539615473,0.0375137225211819,0.0016623963618225312 -1997-12-13,0.8072544092211275,10.237904329893173,-1.864700054466217,0.9347947224154184,5.761599972097736,10.527107014808054,0.0,0.014349956050773272,2.9139033178850555,0.043348967428565574,0.003267134696821939 -1997-12-14,6.714818086379157,10.15998115621492,-0.15162285184064803,1.1006528397107729,5.517118006713298,162.81337720676393,0.0,0.24469680752466516,3.3544012404446018,0.11729958594606783,0.039385454937375775 -1997-12-15,0.8911704752275172,8.998250730471225,-1.3886673041433122,1.0604663997664017,5.247023038876033,70.3098326226274,0.0,0.046559112032130145,9.102558310788167,0.11642017227036779,0.03272739266365721 -1997-12-16,0.0035382926184358045,9.425868649531893,-2.828209300106516,0.8938678868255536,5.566711075167577,25.21859847489674,0.0,0.00017556728981277595,9.081350972024042,0.10583280734282999,0.021330727150081857 -1997-12-17,0.02450611533316339,10.223446989157964,-3.3469906443457473,0.8969565278914842,5.897816810746199,14.891280163708725,0.0,0.001097107660890783,8.207328246816333,0.09589529544604089,0.014052351679260883 -1997-12-18,0.3594559813140562,7.886430470037973,-4.909830290280803,1.0388333241737666,5.202154279687633,18.891134085282278,0.0,0.014790279526547212,7.391471823149383,0.09029305973497137,0.011399459034576015 -1997-12-19,0.07396169594317864,8.010621631867021,-5.13760201492638,0.8889381234832225,5.259867206768795,10.143097917748666,0.0,0.0028454489173140307,7.05371149243626,0.08303256554642241,0.007853773689871642 -1997-12-20,0.001759162339118782,8.747975433795245,-4.437138893957512,1.127931077146204,5.464878546976978,5.3843803032811834,0.0,6.173564704060755e-5,6.480518619075804,0.07551414613859808,0.005121837709013931 -1997-12-21,0.012524330147444664,8.568816997036633,-4.443415299218935,0.7449602773004693,5.404434092241123,3.614544067129223,0.0,0.0003978105006796316,5.871881892079545,0.06854934737263492,0.0033946481477031614 -1997-12-22,0.10576300269477952,8.663675564213724,-5.397462356820746,0.875543809910734,5.497209359919322,4.243228833451141,0.0,0.0030754626774797816,5.337295111827029,0.06340794081353987,0.002678041021563909 -1997-12-23,0.0,8.617029190573824,-5.789828287412965,1.0895810598813027,5.502150545855307,1.9235133186723556,0.0,3.552713678800501e-15,4.928904559419198,0.05741840009854393,0.0017432788371106323 -1997-12-24,0.0,9.317023508017613,-4.53355138315875,1.2400406678484237,5.670108695765729,1.1486783945236496,0.0,4.440892098500626e-15,4.4635243990974525,0.051997036401774104,0.0011347925888543537 -1997-12-25,0.0,8.842194532532027,-5.597637383352564,0.9985479885276,5.569359630748454,0.7395889385306574,0.0,0.0,4.029757871691642,0.04694395011866748,0.000738696640092508 -1997-12-26,0.1403810549138316,9.038848641639683,-4.839661372060778,0.8310925359800415,5.594680272029503,2.3090130167721195,0.0,0.0027984616680021557,3.6455226415170743,0.04410321412306702,0.0009069639240539802 -1997-12-27,0.06076230734273525,9.525674468882,-3.3412586383622984,0.9441373405752445,5.65604110546594,1.4875880352139317,0.0,0.0011249617879896048,3.4235057664517616,0.0405893633970648,0.0007616829383228792 -1997-12-28,0.06869911723650972,9.75445909622558,-1.1623295410267185,1.353895167693915,5.510354630057608,1.3383106633528705,0.0,0.0011706277069419152,3.147347066033538,0.03746476002127223,0.000674065155592695 -1997-12-29,0.0022420472638584412,10.130150547366474,-3.094196994714248,1.1732800733743678,5.851566563016025,0.535362413797335,0.0,3.496412142254624e-5,2.91327026798297,0.033963743990368674,0.00044410853923343684 -1997-12-30,0.00999226032132058,10.85344128311262,-3.399509194848328,1.1389935148177792,6.134674480282292,0.38848253633720264,0.0,0.00014045106034740393,2.624268002601303,0.030687348054069443,0.0003104795347343445 -1997-12-31,0.0,11.354995562465547,-4.0270861017345885,1.24705424821403,6.354571527277306,0.2107684822245027,0.0,0.0,2.3585828506619917,0.02747589289917851,0.00020210758457392573 -1998-01-01,0.0002115118966606412,9.868198125080138,-4.168338489677027,1.148293457333459,5.840171283748938,0.13377286521471404,0.0,2.3741075992435084e-6,2.1030877797988294,0.02450201232376602,0.000131924031455376 -1998-01-02,0.012732035628548796,10.392705945323774,-3.567810948666252,1.2468644055535736,5.983041123517023,0.17035539401820757,0.0,0.00012904520809314465,1.8940219566526988,0.02221239269262735,0.00010552538334049322 -1998-01-03,0.0028671868699373638,10.962506963557573,-4.532400121841481,1.5998578135857648,6.24459479661628,0.09330042890835506,0.0,2.619313695262143e-5,1.7124881174636761,0.019982727599617594,7.268035690891621e-5 -1998-01-04,0.00435133820434484,10.835605029584077,-4.8600914250424125,0.8331852181155327,6.216864481132944,0.07265601078175322,0.0,3.558627428078016e-5,1.5330389099338504,0.01790955521881733,5.273003233944707e-5 -1998-01-05,0.0680889111183324,10.609862066270862,-3.8367295008291697,1.2335156503758338,6.078638788190949,0.3702236765934159,0.0,0.0005107979065598622,1.3747844704666932,0.016808497733449817,0.0001121012999356211 -1998-01-06,1.7819877333924057,10.624895528800367,-1.8726638511065496,1.5789554490091258,5.9176070568468635,13.68428982371572,0.0,0.02079058777745435,1.2936903576259997,0.03582956680849801,0.0032386468020174416 -1998-01-07,0.0073411929587889205,10.521789646868397,-3.268191448935408,1.3812094530422896,6.005753975266806,3.387356829594749,0.0,0.00010870195006888825,2.7648450126340465,0.032294091878125195,0.002124758329444903 -1998-01-08,0.004216019354406417,11.663782256188714,-3.091388284569036,1.6661950532008583,6.403202377428562,1.5192846863634013,0.0,5.6100124866351533e-5,2.4880697228125155,0.02903344103714995,0.0013916598815945356 -1998-01-09,0.007174514229927331,11.660380883320489,-3.188234305391987,1.3661662885530783,6.408443018393006,0.9712833012362605,0.0,8.517897475691667e-5,2.220153346443787,0.025946861156075467,0.0009188749321431584 -1998-01-10,0.0004723003211590794,12.56546708155529,-3.751205085256892,1.4300710111461885,6.769400044239002,0.6069802117530636,0.0,4.999766495704795e-6,1.9840851877000856,0.023118750726873995,0.0005989056820129569 -1998-01-11,0.07548373721894147,11.29198085464767,-3.676499441124887,1.1275772780823852,6.3081521827754425,0.862076446541018,0.0,0.0007217857744528655,1.7557630891360752,0.02133278534555988,0.0004997619973879357 -1998-01-12,0.04197631120561898,11.487859028924547,-2.570176274758021,1.5725053419417114,6.296892397173111,0.6091645613444447,0.0,0.0003703477207427641,1.6345774938203854,0.019530716410354438,0.00038171248304526723 -1998-01-13,0.0247164293648764,9.542242977324973,-3.450897899148244,1.5570465026947349,5.668749892120188,0.40299285007532093,0.0,0.00019870089625529871,1.4968867675729385,0.017725646763850928,0.0002787320328012223 -1998-01-14,0.01868419275790536,8.54800000852309,-4.806458182170617,1.839243018852748,5.4224705962065585,0.2847886061404525,0.0,0.00013770584853325246,1.3748562345209823,0.01623380222570665,0.00020240920268957803 -1998-01-15,0.10351423448528976,9.156880850116004,-4.155671796696935,2.0291692588416885,5.586582181847933,0.6147568169440627,0.0,0.000725603491222665,1.2650213058531619,0.015942512226994644,0.00024224272845955078 -1998-01-16,0.0017380174066311538,9.841212397532573,-4.678391386138746,2.122877360420996,5.856761489142584,0.2079425980396518,0.0,1.1464013025430653e-5,1.2385119720274433,0.014448072438215774,0.00015943419615773802 -1998-01-17,0.012163079185291395,9.488706611872008,-4.753473795939882,1.5052248727074216,5.738833495279064,0.15520377248991238,0.0,7.265677146532125e-5,1.1167566481055555,0.013151150280816792,0.00011484723509174327 -1998-01-18,0.0289604558259034,10.293911602412788,-4.0645006686574,1.5812326613129035,5.9747014677662715,0.18320446589812792,0.0,0.00015915346814094136,1.0188042021367074,0.012205748684064668,9.899361889307956e-5 -1998-01-19,0.08043394115961397,9.56238008504116,-3.6734674991047696,1.5153200119062993,5.688728255150691,0.3482808688978779,0.0,0.0004198510006740708,0.9413868132773657,0.011903519778068517,0.00012836871043099535 -1998-01-20,0.28269219562579245,9.10862921505413,-3.266072156292449,1.2675128852107216,5.493419483513747,1.1541869781526048,0.0,0.0016005116062603464,0.9230474344703233,0.01404605012349582,0.0003272635332681875 -1998-01-21,0.6700428255903212,9.895879827252411,-2.1566641809907567,1.5962708185419667,5.668478227309181,3.6369803608974585,0.0,0.005096325387744516,1.0931378390049469,0.020539860657735536,0.0009890240061022804 -1998-01-22,0.1440572966748956,9.427583884875421,-5.189328997495348,1.6938013702960055,5.737029337517112,1.7817513504014542,0.0,0.0012783262898019288,1.5930425944497353,0.02023603730957296,0.0008384522059380386 -1998-01-23,0.0,9.61882189473607,-5.555809573067632,1.2321979685232949,5.8185161514116075,0.6432163269332013,0.0,0.0,1.567463191592837,0.018259884643662794,0.0005457929788119841 -1998-01-24,0.012361393931253522,10.816103023856122,-4.75215509306115,1.3124582522897137,6.189451253082272,0.42349732422129427,0.0,9.337130692050298e-5,1.4122837468818072,0.016596151073229516,0.00036950273777182065 -1998-01-25,1.0172430285611929,11.613805940653727,-2.656032425498537,1.4434378323527757,6.33584731203666,6.565200051921432,0.0,0.00967281795771524,1.2746692949155602,0.026699226408976887,0.0017133583444247794 -1998-01-26,1.0299929689843814,11.312705700702347,-2.1954025713088465,1.443812014995001,6.185008661151255,10.881980211442874,0.0,0.014091319490613374,2.0444108836597086,0.035814722794393995,0.0032609273152097136 -1998-01-27,0.08579291587179169,11.248943086035226,-3.17072956970883,1.0009248084520517,6.240243855645925,3.8204612097752784,0.0,0.001281484809988992,2.7496731425988195,0.0330312593089227,0.0023178354120701487 -1998-01-28,1.841879119790864,11.047262117642346,-3.0997166016423847,0.7738453300415882,6.160868179579094,23.935023622812853,0.0,0.03411544652883247,2.5334796847248993,0.050969966933580954,0.006703382630017679 -1998-01-29,0.4975594887646072,10.254662911498977,-1.2290666545348974,1.0712400067053218,5.686632495617953,13.62117779195423,0.0,0.011127318729876268,3.9135102005729836,0.051385974557152055,0.006057885691546966 -1998-01-30,0.215986349806614,11.27547827655304,-1.6446848532139386,1.441732137230519,6.111911250272584,7.841303303391349,0.0,0.004744252726103765,3.981210881061894,0.048894505257554975,0.004665781428062984 -1998-01-31,0.061526573572971775,11.421834840755885,-3.1005704411102197,1.2489932499950664,6.290397386791032,4.18918025142734,0.0,0.0012508850252557421,3.757869654783666,0.04449337943774122,0.003227670142123881 -1998-02-01,0.0771894579141508,12.084859845287681,-2.7066131152786426,1.3453550855132417,6.499251443703357,3.13028657709284,0.0,0.0014261895802003821,3.408344829107159,0.04060411392363531,0.0023182199944391667 -1998-02-02,0.13150214906036845,13.194241043631179,-1.29637138586218,1.3132579253284935,6.791094562641972,3.054551342128006,0.0,0.002228230655708152,3.098296263521207,0.037624964179282794,0.001848333294599838 -1998-02-03,0.11740450067866068,13.253167908060332,-1.2331578401557999,1.4522079742192298,6.805407499429585,2.535048706032204,0.0,0.0018305292300445364,2.855114077176054,0.0346278283432067,0.0014819032204544437 -1998-02-04,0.2419742471213307,12.957141594584119,-1.2756391224120711,1.2150598195206916,6.695469819024298,3.4044502602149604,0.0,0.003556384779942967,2.627173352976935,0.03342362645862063,0.001506161467607439 -1998-02-05,1.8748115530597276,11.172924638325664,-2.392704542798251,1.3402771648474463,6.133521387466779,24.04138981955086,0.0,0.03497237102114292,2.5412750689595742,0.051444418425259715,0.00630550045398482 -1998-02-06,1.785077768853753,9.231265934559733,-5.070210402598308,1.1982840747159316,5.640278850999639,36.576105586886165,0.0,0.046577113019034666,3.951957360495525,0.06683257394523279,0.011196637969011786 -1998-02-07,0.5418182856657858,8.401543967034543,-5.01513230802132,0.993171997879596,5.354710693331243,20.559227818178094,0.0,0.01593820852895833,5.180601511512183,0.06666231522342782,0.009715312776502373 -1998-02-08,0.7154046313297507,7.976474646601162,-4.7057136527950165,1.1035022775939545,5.188774290048277,21.47591037961097,0.0,0.021444455548572106,5.19548264007919,0.06885783366175423,0.009589447149940027 -1998-02-09,0.17711021370259875,9.091362989319393,-5.220082358717876,1.1874411843970836,5.595106194827429,10.98757922081833,0.0,0.005229504153052705,5.3831746678094845,0.06477355325909706,0.007038548652368431 -1998-02-10,0.0047103532617567044,10.434546341910814,-4.870533323674266,1.2529792117947751,6.031954059897168,5.069826100989468,0.0,0.00012761178793205697,5.025554437520128,0.05859917814938725,0.0046011951408025395 -1998-02-11,0.009203121205909798,12.657451471834555,-5.0453053476246215,1.0160691548698415,6.807418282771095,3.1784377853553014,0.0,0.00022346926638780462,4.50951084146676,0.05263995744121076,0.003029188277567392 -1998-02-12,0.07954735769584664,12.626236188053081,-4.293842624287556,1.5306881798192018,6.763513522241356,3.11232867428897,0.0,0.0017222375862765427,3.991558028199451,0.04742562065722332,0.0022340953116465672 -1998-02-13,0.17474806982104707,12.613721724184876,-3.706682819200167,1.5871130714266306,6.726779775476738,3.813255760039381,0.0,0.0034564404697052797,3.599755469018706,0.04397041000769733,0.0019805851682532316 -1998-02-14,0.13829347774110642,13.780387124686088,-3.519778884989784,1.289751445600165,7.133478856850328,3.1482864556545427,0.0,0.0025269907682316795,3.340185714311011,0.04052192684519002,0.0016740395322477099 -1998-02-15,0.5204243137590266,14.017915903531152,-2.4469535722218247,1.7711484215937563,7.155012523281654,7.289998522712257,0.0,0.009242571112621278,3.0543644165973407,0.041643867742400476,0.0024970390462787915 -1998-02-16,0.01555599242287884,13.296745493256127,-2.3617875003114213,1.7264735951725685,6.880630221945998,2.345013085441311,0.0,0.0002620087120689188,3.137513741825655,0.036731127039924955,0.0016653497553097327 -1998-02-17,0.0016295108659835596,13.125896237564447,-2.1621886616425225,1.632274455928877,6.800034416743782,1.1572680910569906,0.0,2.4258857321986715e-5,2.782538906512429,0.032433676530673396,0.001087758188666899 -1998-02-18,0.258542348792966,13.251773912531993,-0.3181889745328786,1.6278810526891685,6.674661602445759,3.0519459490918766,0.0,0.0035798976788107284,2.4611098404222322,0.03168210616511515,0.0012531717629344458 -1998-02-19,1.1330064872009815,12.914541084792635,-0.3823951628570328,1.3883444103397808,6.5496191028373945,12.815569177638212,0.0,0.018050944169851535,2.40994187852863,0.0412729490578565,0.003564278831625904 -1998-02-20,1.0199024134618913,13.040122977361856,-0.5797818472026212,1.0287821067541922,6.615815554543709,16.450457024423912,0.0,0.020003400344970723,3.146227926569463,0.04853259701883759,0.00536599120723782 -1998-02-21,2.2695708933197887,12.2307072476141,-1.0506458783296826,1.0651872991799316,6.356133275810241,43.29840577198504,0.0,0.05903279868285427,3.6941859811054805,0.06947372873183456,0.012481623754108353 -1998-02-22,1.070173886873958,11.849272559779378,-0.5925342653632951,1.5445840261584594,6.159188541305255,33.72933317752959,0.0,0.033808798863358414,5.311668267811737,0.07434413910556145,0.013272839505516349 -1998-02-23,0.011273098421192607,12.31153225531852,-1.2395187702989572,1.6446780213761516,6.399537841762801,11.09831517921106,0.0,0.00034766166976262294,5.704882755581602,0.06658934452758844,0.008692931319795535 -1998-02-24,0.01740887456320066,13.914962560776004,-0.7878485512675694,1.3396545856877016,6.956160428363621,6.159882182522354,0.0,0.0004781313052740106,5.087283210970109,0.059466205728593034,0.005731492275985759 -1998-02-25,0.30322809070764384,15.146014411541744,1.7834432367431368,1.6856163832818418,7.145573602895015,8.72452122923487,0.0,0.007582915077054275,4.4952849768601215,0.05589942752394537,0.00488554293297495 -1998-02-26,0.31406767646924816,15.66550304728945,3.5349347034644083,1.6676312037520855,7.099072557624837,8.440712072334687,0.0,0.007375071225508623,4.210539409175876,0.052708608332820275,0.004303222373458482 -1998-02-27,0.03003106509778112,15.577015127591855,1.6886561794677668,1.5857599801457811,7.324222711110253,3.683304717871358,0.0,0.0006433005714399434,3.974175435388492,0.046646293948366405,0.002899147529028765 -1998-02-28,0.1326513885169962,16.069058305526394,1.6279285248510105,1.3720802737573956,7.525726118614847,3.6179930556712616,0.0,0.002538473248097306,3.502305525707017,0.04234478633655608,0.002273728833869661 -1998-03-01,0.21132420651514736,16.203616258094385,2.9376553154749936,1.5502534019470682,7.404740612656633,4.052946784360893,0.0,0.003705294469272896,3.16724519667449,0.03935804546718604,0.0020442764261519443 -1998-03-02,1.0671824927164195,15.366847870495642,1.393171332372937,1.6403033168343208,7.265388925894377,14.581860349911484,0.0,0.01993797388971208,2.951094993024404,0.04681021139724101,0.004366578937041608 -1998-03-03,0.12833748348781854,14.573354461385716,-1.3382308909961622,1.6017106370670382,7.227175544447813,5.626949103504903,0.0,0.002465788815753267,3.518635689243353,0.04248476761035312,0.003217890432632156 -1998-03-04,0.14602366212968962,15.753518786080994,-0.9126101763680796,1.420458724388174,7.635782151345227,3.998754367241848,0.0,0.0025574826044415244,3.1962947407796674,0.03893574586430819,0.0024841099385240154 -1998-03-05,0.34183314463898506,15.741347562325974,1.0382647485702048,1.8094856096751224,7.443741797975483,5.461110726674406,0.0,0.005631653963465322,2.9062901314028307,0.03783843642838539,0.0024745413281036066 -1998-03-06,0.31597641231053963,16.097760769844115,2.3400381748250743,1.8196099193823891,7.424466687519351,5.256711513759329,0.0,0.005062009017212987,2.8351227534961096,0.036708171252111725,0.0023815757541211335 -1998-03-07,0.6785646046272018,14.666500487192106,2.7350405855610083,1.8774451945102908,6.777931560627438,9.205707755168405,0.0,0.011229662262207452,2.751565901531268,0.03995869739787295,0.0032601758549604624 -1998-03-08,1.3246504465208897,12.820240424493868,-0.6168500768221803,1.7129122713665204,6.483938196155399,19.953471076073605,0.0,0.026261797973413437,3.032780000652027,0.05076111371221882,0.006120967955317993 -1998-03-09,0.0022333227754727297,12.426024374059955,-1.6667026444349098,1.5078700492231032,6.436147336438053,5.589796668039697,0.0,4.644774409912674e-5,3.8734091241546476,0.04514860979230563,0.003991534808620904 -1998-03-10,0.058242178092116965,13.873259370154353,-1.6473845850198348,1.4894707259118305,6.964200533522396,3.431244521502662,0.0,0.0010859003694383487,3.448824393148954,0.04085495045241393,0.0027636459313230286 -1998-03-11,0.053512273731952456,13.715863161609327,-2.114042715046912,1.6937740447971068,6.937640887899275,2.4532493632665147,0.0,0.000892920387486798,3.0895722970053106,0.036614806647304675,0.001934963929870614 -1998-03-12,0.029294109580097226,14.284113471929047,-1.7181934665016634,1.551329876968087,7.11383664832388,1.6017741211756533,0.0,0.0004364192097306638,2.770679024844115,0.032617790780775036,0.001326021846860625 -1998-03-13,0.061784496763240424,15.331465715139913,0.2788981878342517,1.8818764135874229,7.33150601719555,1.4300589887840625,0.0,0.0008223981027566801,2.460088582006469,0.029378113471040482,0.0009884001595550852 -1998-03-14,0.3505017060964689,16.227377702246606,1.833775041457808,1.8918338690422776,7.5081106276043075,3.606534836861748,0.0,0.004459531479373724,2.2066006857388296,0.02978851110978786,0.0013224315966087448 -1998-03-15,0.017848278493926718,16.544603573119584,0.9929120007665364,1.592688908513109,7.723790338153708,1.2626737154008731,0.0,0.0002133315502271145,2.2297043371696645,0.02618246585482837,0.0008933236951357889 -1998-03-16,0.013150161966983532,17.385060629179858,-0.22285722714124534,1.5266770686364572,8.155874873309191,0.7038311515373875,0.0,0.00013737204783541637,1.9517476134690483,0.02288972838946985,0.0006024286629738313 -1998-03-17,0.05718526537818978,17.718735852633046,0.13755948851073727,1.4944683217358603,8.252175487873197,0.7449826641829752,0.0,0.0005244662871476194,1.6920208090702824,0.020377066146584268,0.0004720104855078409 -1998-03-18,0.1834830370226832,18.61192978550881,3.0252767332297297,1.840799397779782,8.314791527784545,1.3572349407042494,0.0,0.0015595909739980485,1.503541524541985,0.01965269363288404,0.000544727406905125 -1998-03-19,0.8016496177914039,17.77931973532882,3.1630987245207836,2.2317066530143346,7.949471272160129,5.611734061512465,0.0,0.007905495505656335,1.448331073673272,0.026210751293537022,0.0015583204168263499 -1998-03-20,0.6112515544400616,16.89922242157042,2.894378268655156,2.081322146008101,7.618928228861636,6.2791327916891735,0.0,0.0073464447120645815,1.9452090741208476,0.02978103500226474,0.002132998085338102 -1998-03-21,0.3310760692441078,16.525802794351893,2.6176722915126795,1.7327853263576902,7.4991116471516435,4.611480275678714,0.0,0.00422663387751776,2.224318533312872,0.02976861652126735,0.002032048949756385 -1998-03-22,3.14977188357056,16.285764318104224,3.519900503676678,1.5340110703522,7.267239292478256,43.63258891371482,0.0,0.06433872364056636,2.228608343633316,0.06265448722831014,0.01111928949800698 -1998-03-23,1.9890390609759812,17.355341949401605,4.1882609279526,1.8714917452386688,7.60762195221592,51.00759055231054,0.0,0.06125750976057587,4.707174805643643,0.07800635664657497,0.01656549566319658 -1998-03-24,0.4569253453149647,16.638478688921527,4.722910594024379,1.6165217300647097,7.209749833921314,24.38449833889532,0.0,0.014938896508231603,5.818560010568076,0.07310515442788476,0.01305802678130279 -1998-03-25,1.0009446051307411,15.262448083818967,3.1351873457592743,1.2803488871273432,6.8910190898850505,30.858474275095993,0.0,0.03245149701671002,5.496732501347644,0.07569353784665048,0.01344138152796314 -1998-03-26,0.2643756203894923,14.260161883478636,0.9323799384246266,1.2726270528485413,6.791267472825958,16.184557184072975,0.0,0.008369026715104255,5.726479913806152,0.0697894097660425,0.010024015581188359 -1998-03-27,0.07802930848051685,14.35471009719799,-0.7025440812562659,0.9075974437672129,6.9954287581050005,8.626601436497753,0.0,0.002243223831913263,5.29099936021868,0.06254554790491819,0.006866726981749557 -1998-03-28,0.7230505208694562,13.749174382617696,-0.27725925369879034,0.9196841945821658,6.723053376078565,17.593079742059956,0.0,0.019817645405497242,4.724021002676847,0.06345469431066068,0.007487445804247998 -1998-03-29,1.3312444086225597,14.52306238567146,2.3349651399818603,0.9032783767448079,6.695505404637185,31.773281098808678,0.0,0.039398011350089135,4.817997708878276,0.07163450619686698,0.010872904555999771 -1998-03-30,6.343780374156588,15.014598372199814,2.4126342205183415,0.7827247644737532,6.8780427127059705,204.38676305022582,0.0,0.2984055238631784,5.440703167366441,0.13728125241313427,0.052514399135717614 -1998-03-31,3.394932753282477,13.223721191986822,1.3026877923766562,0.9343294129781404,6.319948561563579,199.43407258493244,0.0,0.22619123968542354,10.368340898728746,0.1603328170976088,0.06862536338290605 -1998-04-01,0.3651024761602951,14.0274550410365,0.9658438160731736,0.4578559643327248,6.673052487206523,75.50670038655316,0.0,0.025056721334216214,12.234246782031478,0.14677388615806236,0.04848714215151076 -1998-04-02,1.0145939169050104,15.252658602711675,1.6685981601475288,0.8727588219033605,7.060350824321258,76.6171355573716,0.0,0.06506188748037389,11.12679959296953,0.1414390118330855,0.041469484160741296 -1998-04-03,4.978683732802456,15.383595322995227,4.082775881684743,1.089863819478913,6.747783020189339,267.7582795214304,0.0,0.36250518575806634,10.642350380268923,0.1819744683315651,0.08219145487478585 -1998-04-04,0.9236054235888466,16.58218076404644,4.012862712690247,1.311733750193886,7.258001517170563,122.56193266331321,0.0,0.07306744807673893,13.758469599181407,0.1710362308239945,0.0646283725063176 -1998-04-05,0.9262779809447316,17.020108782443188,4.492646306176498,1.336792630849592,7.359895002663391,92.46148595808425,0.0,0.06813817822060486,12.805168053233572,0.15996204690458046,0.052445077194552644 -1998-04-06,2.8937625424680578,15.833319510682326,3.8185631184386493,1.131257987762814,6.968761908911738,179.0908294071883,0.0,0.21517990907756168,11.95648268327844,0.17299529979819295,0.06690360030399702 -1998-04-07,2.2451636827606745,16.366385142223773,1.5322588681716718,1.0977929085303169,7.493234922175821,171.7904258998398,0.0,0.17669537980069094,13.026157777310068,0.17790055276118938,0.07045558119061664 -1998-04-08,0.0790532252175295,16.239353941025367,1.7946283036996955,0.9321161800951951,7.408585567100772,60.90183617607046,0.0,0.005826120869874385,13.252706316457601,0.15530596994795237,0.046750384913390494 -1998-04-09,2.2358493568998914,18.189730900203603,3.826226980056018,1.3245813094006178,7.931570403164315,134.40945769945606,0.0,0.15734340403912883,11.599113360204335,0.16116794615571448,0.054390160979696275 -1998-04-10,1.6152906291142644,17.830505047336793,5.8045303831716275,1.3583816907615451,7.457121638598863,118.85577459761237,0.0,0.11365252929967062,11.907962300672928,0.1575367382337436,0.05271071501331245 -1998-04-11,0.03213254483762645,18.267946981398786,5.337809349405787,1.3601624371285643,7.724046735725293,42.9754483736727,0.0,0.00208543094682595,11.753296618586317,0.1372922682678732,0.034629735739390176 -1998-04-12,0.9379023744566544,18.7718173843758,5.801670002863617,1.353382475857602,7.857868739039945,59.11037965050134,0.0,0.05494464308141378,10.19580501782356,0.12970015100178603,0.03090846396468126 -1998-04-13,1.0813281102743464,19.22531537659301,6.490622530871781,1.2207616385009763,7.929455379134175,62.6630957272807,0.0,0.06017831120676154,9.608829368975995,0.12453309490179437,0.02928299422718818 -1998-04-14,0.2362497581821676,18.310308730122077,5.228388697908033,0.959015783707272,7.746986539845012,30.675718170438003,0.0,0.012054992963601074,9.214531385604001,0.11009519994066032,0.020897403705999695 -1998-04-15,0.6165154936256592,18.00819563146647,4.149160896710606,0.7621298567181017,7.783047310272874,33.22556113209062,0.0,0.02853074332202077,8.180369762426064,0.10247775568867562,0.017947454784659537 -1998-04-16,4.431561125596447,16.256327866738573,3.2943652269958665,0.0906613371136429,7.1831326010601,169.31115044739067,0.0,0.23865351715318361,7.610945356974416,0.14028704493459332,0.04802147310407542 -1998-04-17,4.556360578122853,13.677840844677618,3.034641742883364,0.1318065188921959,6.170519997278161,256.35655279201956,0.0,0.32318671259711973,10.53035711530521,0.17575004389963483,0.08046967335032841 -1998-04-18,4.189557790742639,12.575770670709069,3.359876704502,0.496737619539377,5.653414835341647,310.01913407648,0.0,0.36404820271802674,13.443598022515292,0.20541432346276042,0.10781369215516548 -1998-04-19,0.9522131582963704,14.44975445699334,3.210101007386903,0.6694923439575187,6.448610883946771,149.78105897583066,0.0,0.0872079721417125,15.858736388768246,0.1958361772871362,0.08346034841486011 -1998-04-20,2.5606389405036314,15.825366485888438,4.136001561667082,0.6480179867838654,6.856695009126318,212.67232096241307,0.0,0.2320062415271913,14.887847920204578,0.20326305522953486,0.0896551418383382 -1998-04-21,1.8981679233214093,15.175080044658039,6.120229306387235,1.1975480809192574,6.176205106012693,185.4238451458128,0.0,0.17314189947018988,15.322778902501174,0.20061236792082404,0.08472469553181208 -1998-04-22,3.229247604742726,17.27719142681157,5.009705073821031,1.5379090096664023,7.3100832482921865,267.18678691450424,0.0,0.3075725705797989,15.331235834135994,0.2162170622840212,0.10198426231244044 -1998-04-23,0.9645843613420844,18.383407535665466,5.853957772103052,1.4503702729226715,7.6324500547191105,143.86666872478375,0.0,0.09000645285084796,16.142533458537503,0.19928633709039045,0.08009177359983839 -1998-04-24,0.043649769061998515,18.773469530721236,6.159054311732887,0.9924689485920759,7.743026421182523,61.14184430734087,0.0,0.003604895656437339,14.791421131530944,0.17281852918671353,0.05268487891826678 -1998-04-25,2.123445123105993e-5,19.292684746873782,6.7516270454136444,1.0953911386427702,7.858019326321396,35.00000190319522,0.0,1.5057829480232752e-6,12.811764402572898,0.14924862610245263,0.034295609264181 -1998-04-26,0.032651159679733026,20.584465647208248,7.4354018122905865,1.1362399147513482,8.299645834990974,23.670503572067826,0.0,0.0019873502909773452,11.048866742875843,0.12909217879095847,0.022627433177895964 -1998-04-27,0.11006317035441872,21.45144788759903,8.968693748476756,1.3269146749501322,8.387243877350816,18.598063766367716,0.0,0.005741375266747797,9.479097070734097,0.11170722270928901,0.015603604710059218 -1998-04-28,1.3241181713915322,21.31217807896053,9.412083807647676,1.315011846329278,8.2225282739152,52.31370676443509,0.0,0.06400953205116244,8.193537839860378,0.11087424685674374,0.019903610152271843 -1998-04-29,2.9542813784637367,21.319244210188923,9.801380474241423,1.490242628530634,8.133471206334931,118.51700002071105,0.0,0.1558688961848853,8.159791540786463,0.12947142268810685,0.03668965680518885 -1998-04-30,3.951497371122404,20.84325834254781,8.325410906028248,1.40439912105654,8.226854441537153,197.03839455716562,0.0,0.25078571801482186,9.538831937104325,0.15715320033953967,0.06206907254382767 -1998-05-01,2.6248442465531077,21.062335931452147,8.30567443379786,1.3761346947694857,8.326228903210712,177.71981232440004,0.0,0.18684031542859314,11.543706538581496,0.16505402123129387,0.06885324716010573 -1998-05-02,2.034076994015225,22.27256818767309,9.000043375716837,1.2134381765540792,8.737430515277248,153.37785906692253,0.0,0.14780241588391307,12.095545192305433,0.16460052941885792,0.06732532907394546 -1998-05-03,2.154323035104345,22.503185660663558,9.388086017167993,0.9820059185761858,8.761384198641137,154.964409899217,0.0,0.1556135728563719,11.9611412780238,0.1644355997843494,0.06752009025379987 -1998-05-04,7.0745214581690945,22.65654147596632,9.77071314326157,1.4697595101082523,8.749059192614583,453.9838471608917,0.0,0.6127579310534657,11.943343751397757,0.22154525015833584,0.1372538524703634 -1998-05-05,3.3547155269683366,21.36020738931453,9.819741144293145,1.3241530979832858,8.123913010631387,344.6693045004887,0.0,0.33530844822435535,16.05312141581122,0.22608815674838928,0.14040147171729558 -1998-05-06,2.447968789643704,22.30636304733261,10.312991984409905,1.4044037036421144,8.456164471233038,274.28582270538965,0.0,0.2459274806141738,16.593105134809555,0.22181561596904611,0.12884085118224156 -1998-05-07,0.9023564684378088,23.066865776854502,10.636488743153867,1.619981325402681,8.741414522652146,154.80735860592355,0.0,0.08418514708333913,16.170943053926507,0.19889237682721744,0.09668777089425476 -1998-05-08,0.8446968862038324,22.64654922025363,11.617103231512372,1.9663440478906435,8.29671348441763,114.72713493700762,0.0,0.06995368364605659,14.429509214165433,0.1779341568670925,0.07359067627451725 -1998-05-09,0.3096606782185999,22.444471233627674,10.337271681116476,1.9676442358207067,8.504233889868232,67.20928656604275,0.0,0.022646865443405217,13.040221169757343,0.1555170825433261,0.051352391314524556 -1998-05-10,1.738559886916781,22.917433225163546,11.046963737294785,1.644123469948951,8.562330849883903,111.80279599741907,0.0,0.1174421592267556,11.359759272780675,0.15258654759153112,0.05131029687634149 -1998-05-11,1.5628255882428206,22.993464923495328,11.490117476690486,2.053086967203494,8.487894653878875,107.45436463469198,0.0,0.10274578594510575,11.133816777817753,0.14790728497459368,0.04904515543666154 -1998-05-12,9.768485852662696,21.93085830605865,9.616955529281306,1.666381587147654,8.410166249303074,599.7877930351423,0.0,0.8593434196614016,10.810941586965239,0.23973639259648186,0.16277382162747295 -1998-05-13,2.6861584175479547,20.799357119544197,9.011904958568572,1.7708934247117214,8.012045513718345,343.2408798212349,0.0,0.2861785876068379,17.479250611882765,0.2349133585047712,0.14953302513491026 -1998-05-14,1.3492613606969677,23.81605607658485,10.242915970500702,1.8127298850317533,9.151810969581566,207.05314803975287,0.0,0.13660495262346117,17.273800307458867,0.21694605627503394,0.11813909338657737 -1998-05-15,2.706890707801589,22.328074318856643,9.782969063759845,1.7470817958047138,8.548664517275773,254.75452643057056,0.0,0.2577839428564288,15.591193733583925,0.21316029166858508,0.11615441075037285 -1998-05-16,1.2431423697609196,22.98242458238195,10.227658738569088,1.3023596040307641,8.755978454943302,164.69611477678015,0.0,0.11239959032421276,15.516384803420541,0.19523714145634546,0.09272556022584079 -1998-05-17,13.36278184862325,23.77812175373971,11.338117523661339,1.1052882273767577,8.883078709881978,1109.2622452453488,0.0,1.5938444832061993,14.162440966621705,0.3206502047979478,0.30304634973555555 -1998-05-18,4.546530117257066,22.24194251665892,11.884663243951938,1.3237000940210837,7.988702192777118,727.1227414628438,0.0,0.6687018617278175,23.045388246030146,0.32142716276418876,0.29908866755301927 -1998-05-19,2.987249508337562,20.53785820679859,12.274845418483642,1.6385902662996643,6.998173268765321,524.1168655609512,0.0,0.43393326504971297,23.545661624972396,0.3090904457299985,0.2607654154271366 -1998-05-20,3.1294707518617737,21.087038872304035,13.215274167989175,1.7614923566536116,6.9764312345036865,490.85626146707506,0.0,0.4477404525129063,23.1314578850951,0.3059220338431101,0.23792112774826515 -1998-05-21,0.8175404115511862,21.94066006855,13.161170425790115,1.185173579681433,7.449055076962064,254.73393467128275,0.0,0.10980134774633132,22.908020629303167,0.27638671838407997,0.17159434913994337 -1998-05-22,1.1101572129346176,22.62041129211545,13.383070257651866,1.3832578372800926,7.735295618955159,207.47930495857247,0.0,0.1335917249494516,20.52259259360879,0.2520068848259813,0.1320411700044178 -1998-05-23,3.047931074683281,21.804810562093447,12.303219315334767,1.0614520564694918,7.634611276149318,322.5462599553149,0.0,0.3493546105527665,18.622588039513374,0.2524468716815058,0.1391469961438288 -1998-05-24,7.3157480328801725,20.49945172519768,9.23247897693405,0.3926636977589891,7.788880370833697,724.9556463253022,0.0,0.9391112328166074,18.69358240652625,0.30299108523234486,0.23357171308895355 -1998-05-25,1.5908692154282833,19.64204069475629,10.255814261635619,0.9439572364419334,7.1246220225572605,346.31841337298573,0.0,0.21155909912987747,22.310410088187478,0.27843371714297754,0.18425720551529265 -1998-05-26,4.8484362885557495,19.737869350307406,11.183018831993856,1.0924978743555906,6.905580618486176,560.4568742562158,0.0,0.6489625882874641,20.811720026408825,0.2989234431549695,0.21875692176957656 -1998-05-27,5.357240018089012,20.795695899854298,12.04615649998275,1.042911119982619,7.1829102091735635,691.2088793775783,0.0,0.780624458265958,22.423917457077817,0.3236316702585431,0.2612620802844666 -1998-05-28,1.7222972144254811,20.23010478210353,11.702950872529446,1.059307362739386,6.994523676173733,381.25379081638675,0.0,0.24940822067386037,24.10993081943012,0.3009279621473383,0.2080454210052661 -1998-05-29,2.913017606163009,21.945166291188432,12.49450192594388,1.2025084952803216,7.634349792023785,417.2537351152649,0.0,0.40363324465908645,22.530766860012136,0.2964028576508109,0.19688691523621993 -1998-05-30,5.617607974635817,21.43720060233662,12.599945398609872,1.269929712021982,7.33765215260491,678.5233863478796,0.0,0.8045828814632152,21.90327434178884,0.320599640926222,0.2506737577865747 -1998-05-31,5.565455632912913,22.281655646534855,12.349953004938731,1.7099006974194944,7.842710022247437,776.4519240231315,0.0,0.8644692655007145,23.810395246066285,0.34220876843335485,0.294805050965138 -1998-06-01,1.795337569576044,23.26290506328669,11.8459411113155,1.5865812755715791,8.463277751336426,423.4667310203368,0.0,0.2720246414543537,25.11727855241754,0.31351375169927026,0.2333240025706783 -1998-06-02,3.5588162899623037,23.970897721155676,12.928506882921017,1.2681947478422817,8.531531752465844,501.8604359663402,0.0,0.5053044555821935,22.745384829183863,0.30642612895504606,0.22882302757449421 -1998-06-03,1.7468860025601427,22.56481173124959,12.901804581623935,1.035333470097714,7.820922188191782,331.3196675432537,0.0,0.23203688827663926,22.207648522888793,0.27905410441112016,0.18428408034568156 -1998-06-04,2.957376316731084,23.165031675452624,13.423131206147012,0.9287479330010401,7.974489326853158,379.78830152417055,0.0,0.37353743850281695,20.558464089015978,0.2739436150148944,0.1768368681629232 -1998-06-05,2.293733262392164,22.75778384330925,13.58817863620958,0.9144010465565852,7.708669079897432,320.065533235622,0.0,0.27875638463560426,20.122359428431153,0.2611322989218938,0.15755726741713663 -1998-06-06,4.54818255996142,21.909247021523953,13.0113260332534,1.0025987621673211,7.44121990809011,487.2619983879893,0.0,0.5614732189847818,19.299478919371257,0.2778091058018599,0.1880549680246045 -1998-06-07,2.3280382058534315,21.0055194264758,12.862269771515356,1.1350454796674214,7.010622139831133,346.11633302756536,0.0,0.29050984269432334,20.63020360487885,0.26744796900735285,0.16664936079744033 -1998-06-08,0.9480150861357748,21.61445710459034,12.913515141353624,1.2001279314639581,7.3137922817192145,200.32775187021505,0.0,0.11082582469864288,20.047079487158605,0.24457863320003848,0.1253557703783959 -1998-06-09,1.3651259193477965,21.35393567557383,12.86754409216068,1.1088076200428465,7.189797085675381,185.02065421208516,0.0,0.14622965390273235,18.237118908701287,0.22835287695227022,0.10386633982471243 -1998-06-10,1.0043727066330663,22.20332771328585,13.811808785061777,1.4546652577406536,7.3315007973562745,141.67121034740916,0.0,0.09948436309905473,17.0819339340891,0.21069322371385266,0.08276006945334115 -1998-06-11,3.1496470415204323,22.970336042217532,14.3687320751999,1.7080538460305172,7.55828607620098,260.6834548622924,0.0,0.3066936203098889,15.726782861144473,0.21989762461763904,0.1005715499096224 -1998-06-12,3.000288971773464,24.800153050013023,14.361449998758525,1.8274744806853,8.532667331130389,280.83443981122235,0.0,0.3017044503551207,16.331993463656737,0.2252079979058036,0.11140631171740681 -1998-06-13,3.9616971397239573,24.745215697627764,14.760656742648552,1.8935424642822405,8.381751159476769,360.10429517068707,0.0,0.4112971362655222,16.38950327287898,0.23707770229460132,0.13514633784225447 -1998-06-14,2.555454267416584,25.267214164590786,15.169865261959508,1.9456248611404825,8.53184560334074,288.62138900209334,0.0,0.2684284873203513,17.29786279704425,0.23127769847196802,0.12884611669499432 -1998-06-15,3.8782819359374354,25.611164943098306,15.75304375606528,1.6858227022195094,8.531417654480338,370.4608059732066,0.0,0.4119169283573445,16.826619683088488,0.24119808181116595,0.14659320371388077 -1998-06-16,5.787745392495856,24.195983954555373,15.85498356953917,1.3072178026059953,7.71230720252592,560.8729614971078,0.0,0.6739060246696367,17.54007239907098,0.2717532788948851,0.1980374334787743 -1998-06-17,8.975300138195024,24.27196883938209,15.466972285805486,1.1031606167604175,7.889951579433102,1004.694152189443,0.0,1.2778602952769837,20.07295744807843,0.3383925284304455,0.32348616897857796 -1998-06-18,10.797360927675722,22.459426320696934,15.407137603219654,1.0259315505371278,6.8845967704183115,1553.7851702752741,0.0,1.9379241741766968,24.81746954901387,0.41488865550144616,0.5056518762591338 -1998-06-19,3.5064415577534263,22.203964561170768,14.49486719042903,1.15868650880847,7.082626635111964,896.7348376577462,0.0,0.6877259720344746,30.953788391216428,0.4014383412875281,0.43387204469387763 -1998-06-20,4.1214977052936135,21.69713506695804,14.643432944237402,0.9847770442894752,6.740395169966063,844.7061841404688,0.0,0.785810995928788,29.8465533529024,0.3957047905299861,0.40208164187631046 -1998-06-21,9.625767837772145,22.382709727762947,15.4665651226499,1.3063305184489382,6.8134677435681645,1622.3461275756435,0.0,2.0074520372006006,29.645276121543915,0.4574810664642332,0.567400479395631 -1998-06-22,6.478688978689709,21.664608702248398,15.23866635453584,1.1115826779651503,6.482231176504046,1458.272532856734,0.0,1.4829487068382594,34.09618743930956,0.4726698316090309,0.595151892199635 -1998-06-23,6.5273426441510365,22.49772927197024,14.99047387718531,1.1937886890664835,7.062204477298614,1501.5306972095068,0.0,1.5596993628812639,35.44917451279176,0.4889979969798291,0.6249031788240464 -1998-06-24,2.6174119632636867,21.7689597214612,15.095708269329903,0.9241018165220538,6.600935809180845,897.4243820690193,0.0,0.601527733142762,36.170492635791554,0.45185282011529615,0.49837408259094645 -1998-06-25,14.445642860533885,20.767610780218845,13.984552672761026,0.6428473922419599,6.46045142491373,2793.3471496532347,0.0,3.714634750265825,33.844185398453746,0.562543795733641,0.8900261205061812 -1998-06-26,14.381898028844088,21.36008999099545,14.291326388156936,0.4181766905952036,6.678888478208036,3820.287523555364,0.0,4.626546573945372,41.94168484353727,0.6561315962528946,1.2838252361985363 -1998-06-27,17.09731532959285,20.510584388136024,15.031294795268341,0.7055035645578648,5.870794655400061,5493.183770606022,0.0,6.693126922814766,48.244667629671945,0.7611898497035224,1.8548373392700306 -1998-06-28,11.93199507673059,21.44319018432952,15.092059611013166,0.5489868844780654,6.408510719830793,5096.17067431823,0.0,5.3252991963545036,56.32059297535584,0.7950964278759723,2.0182674027880383 -1998-06-29,7.015581217264691,21.977650048555347,15.12680503464134,0.7265260864080685,6.708044485806511,3642.1320215857336,0.0,3.0434050873634053,57.69485397443456,0.7538327459166124,1.777200604843269 -1998-06-30,8.682621287172001,21.591784649377605,14.706545876648194,0.5779945996032955,6.6500375578754145,3693.7718531636187,0.0,3.5737071107993508,54.6724220008072,0.7380433481549127,1.701023766639885 -1998-07-01,3.3403677119825668,22.401024256747046,14.521022883949387,0.6490515842487398,7.175730337684744,2150.801917298172,0.0,1.2567401380569487,53.7365988445803,0.6649080059570311,1.2986437755679823 -1998-07-02,15.758142602384813,22.94605938983349,15.16545325169392,1.3676496766385091,7.24713311957736,4897.198184353633,0.0,6.065002235304929,48.26362510845697,0.7458102361532281,1.768842249088152 -1998-07-03,19.64088068054933,20.974781155554183,15.02801447288915,1.2611459155771907,6.154461983982484,7408.011397583517,0.0,9.028810281904796,53.43011627774346,0.8512276284459314,2.5262029148895055 -1998-07-04,18.954207924314254,20.124203912008287,14.656569270690731,1.4034713021631051,5.800602171967179,9095.426776949635,0.0,10.562130410936085,61.446678057966935,0.9366158715298845,3.2526797534668432 -1998-07-05,10.566427367666172,19.383107368945442,14.739233129806545,1.2683695585913377,5.295845424656315,6659.959710606577,0.0,5.95149333721605,66.47142939097351,0.897438858630106,3.0235444244299323 -1998-07-06,6.747289483330839,19.83347232179419,14.855183967267909,1.3298866310745816,5.527851528475214,4667.898363891918,0.0,3.5278003203036548,65.52071524512212,0.8418733127814384,2.505345028006019 -1998-07-07,6.616730466330565,21.24255960319061,15.006754081812035,1.2834250540662606,6.324295695429764,3932.7601939971732,0.0,3.164851008298128,61.940551622996935,0.7986459070608585,2.112757181771616 -1998-07-08,11.697096094221767,21.79981374792841,14.848720475075787,1.2570272043720794,6.714523308340367,5121.526260413337,0.0,5.426640343822431,58.04053771747674,0.8123962052528952,2.2015917848194815 -1998-07-09,21.740697437468587,19.63092259473129,13.949634864936511,1.3188032035757309,5.812828699549029,9354.818543603362,0.0,11.621296812635823,58.281812696553914,0.932208049146425,3.202646896037167 -1998-07-10,23.81033640023643,18.142582225380785,13.72196990570037,1.14695957501739,5.00059379115037,13848.915738354464,4.222395481497891,12.715666570344318,66.25395908126146,1.0,4.663842775081518 -1998-07-11,13.540609066286189,18.67590722017638,12.977984123625436,1.3340794911924996,5.659906119364289,9837.522068316155,0.0,8.825887695975348,70.09872036065975,0.9743415444782321,4.3798142308419 -1998-07-12,0.5352895532186865,21.208536972423545,13.579767026334293,1.2612690488921448,6.854791026483605,3622.712393206865,0.0,0.2763119125448812,68.16582847211112,0.8003214983047883,2.8931257835975708 -1998-07-13,0.38474967625820616,22.771209486446185,14.776744436014168,1.6215814611762798,7.292902760396517,2043.5375371034338,0.0,0.1525276441565318,57.346597127671586,0.6725310926707098,1.9065134952949283 -1998-07-14,6.438621455217213,22.34925536818195,15.168816549842598,1.6108484696331618,6.909473623321675,2701.869343616743,0.0,2.2164465178796213,48.6337582605411,0.6415559268347779,1.5785374047931757 -1998-07-15,10.996267374326932,21.648152336940218,15.163414568250435,1.0039432927017296,6.503456102973279,3673.6700652623294,0.0,3.8524690469643783,46.99044602346518,0.6755059405464245,1.6141489834559204 -1998-07-16,22.02624273907107,19.837296677884236,13.799046483439744,0.8290535552396301,6.001076404511051,7524.404227555951,0.0,9.552570306696627,49.76858173125654,0.8363610832277433,2.5052550707282957 -1998-07-17,2.7633442726755253,22.101851093857256,14.279058733218045,1.002867535122269,7.102172746900677,3004.4278772020452,0.0,1.2272330503014932,60.8321051984081,0.7408439173769875,1.8176676656448767 -1998-07-18,3.8544545245130353,23.178159304612514,15.07558226157346,1.5718471164738053,7.41710931519281,2241.7223179241887,0.0,1.4441867179572627,53.31065342868983,0.6659347935355913,1.4031149824595115 -1998-07-19,3.847680464421372,23.29907244651082,15.171319437206426,1.7463007533676191,7.451473184670993,1829.4492738733934,0.0,1.2614022118838824,48.052181546659845,0.6045982441101749,1.1054290283914971 -1998-07-20,2.417947469119257,23.682847469470218,15.715555941836222,1.5949087797508354,7.4711134609926955,1254.0744332765207,0.0,0.6955196847791587,43.89297165957479,0.5394908445490378,0.8254854891063117 -1998-07-21,4.401415294590656,24.152880888457805,15.969815795251892,1.4443321882587288,7.645955651509405,1332.391996729014,0.0,1.145969409642504,39.386807090197074,0.5101031359369694,0.7118430273966465 -1998-07-22,5.757689266266742,23.03998098180698,15.697441750208814,1.0611090463368062,7.111350640854158,1469.6058741895915,0.0,1.4332289837149448,37.18442357642185,0.5002465327851386,0.6816066398029925 -1998-07-23,7.028184286205939,21.187347429013627,15.482078668140383,1.0636227146938029,6.095254822489619,1688.4836369303612,0.0,1.770080019302772,36.932318616519886,0.5121100872968309,0.7132147189943344 -1998-07-24,9.34477359267538,21.036630231119645,15.288294012432788,1.0371335801644848,6.090198248460773,2245.58993502746,0.0,2.5593415465229796,38.63565354775647,0.5589394822392311,0.8539668200980345 -1998-07-25,14.084045628843436,20.603665492972134,14.928010830759833,1.0704130684136877,5.986012874371339,3667.609133646758,0.0,4.523390852751641,42.03433361594437,0.6537411129621759,1.2446453439683365 -1998-07-26,18.558756356222013,20.395283938263844,14.205339707296051,0.7805632705737008,6.17078735458951,5998.218999147024,0.0,7.5218406511257925,48.87706329784911,0.7855816291819162,1.9555169784489117 -1998-07-27,4.147192731311092,22.295946601333547,14.43521693848616,0.9478324256131734,7.166492617885621,2857.9612179239593,0.0,1.7263327436379665,57.454183060345315,0.7176143094649164,1.5358093066767535 -1998-07-28,5.399374990832079,23.318873718608565,14.783575637924509,0.9440610720555824,7.610942948372684,2430.7162733260766,0.0,1.9836603373054302,51.738558178664114,0.6656182257090791,1.3017812662011718 -1998-07-29,4.784835027400715,23.22830664144405,15.17217966849211,0.8547326995955649,7.425850678330299,2003.2480269306889,0.0,1.577989910411067,47.80721110114198,0.6126617203084124,1.087670695782665 -1998-07-30,6.135274998173378,22.639380444592447,14.989375007089537,0.7127345822655473,7.162524811184723,2041.4634585836156,0.0,1.8865759857967372,44.467967716683255,0.5894935074230258,0.9952815662979551 -1998-07-31,5.0558869882704744,22.374041020321307,15.325604098600664,0.8439435317566483,6.883524068361018,1730.4787758718905,0.0,1.47799659359106,43.14899982747855,0.5615542854450918,0.8729283369634494 -1998-08-01,11.828222272320158,21.1724662423916,14.052766404900373,1.0409819479554112,6.686427382217826,3033.1680160671485,0.0,3.628416401041786,41.47125120671052,0.6209027698481824,1.1207153186960737 -1998-08-02,6.463720923861848,20.506399181126397,14.482807240182238,1.0622926141671512,6.131374376221775,2298.762597845641,0.0,2.06902251123695,45.81450618445324,0.6090059412514762,1.044572241463435 -1998-08-03,4.352187537302592,20.544397632718645,13.80561231662016,0.973518138216644,6.428217532285062,1695.5828919790833,0.0,1.3454389429385083,45.57003000586286,0.5815600253858018,0.884830389273606 -1998-08-04,13.051073867407734,20.027075265124658,14.567597603556518,0.7755889436574547,5.807852563389121,3457.2952879805443,0.0,4.275438514198928,43.323465501358385,0.656725204926337,1.2269816704164453 -1998-08-05,2.6916225480220266,21.60254673189339,14.191388965111294,0.5810604977952533,6.884427150664183,1639.7071707206626,0.0,0.8975787608610961,49.292391045835515,0.6055785530592582,0.9353770254041924 -1998-08-06,3.051775855805725,23.33661380916793,14.661763632019525,0.8765343792552761,7.6805778303858565,1269.4595566986923,0.0,0.9015647714767736,44.544603816673124,0.554465589327343,0.7461630359203457 -1998-08-07,12.113522604405484,22.42617466397966,15.514960425041386,0.8247839006089247,6.852309604121316,2900.1833258901215,0.0,3.60794553830136,40.23417871142266,0.6098152687187509,1.0350800744217663 -1998-08-08,10.05557779034048,21.742256666429252,14.22532189671712,0.6191611293277131,6.95672054771704,3039.665772804896,0.0,3.294665858863448,44.87137427272272,0.6398617931693403,1.1754500281697784 -1998-08-09,4.160572007330172,21.737085578155952,14.426655773696284,0.5554078618320208,6.881550092823262,1839.052431542472,0.0,1.326241621667526,46.822583544528534,0.5939192346844456,0.9671026014015736 -1998-08-10,4.994043664298991,21.473020687321434,14.592369787386565,0.8582107915719175,6.66928657366572,1690.6141778514816,0.0,1.4823520653167384,43.73804057369308,0.5676957783785316,0.8552483401400458 -1998-08-11,4.12054162373725,21.357010522597925,14.902298789189745,1.2346387991465315,6.479260854835543,1404.1795675591761,0.0,1.155035934516416,42.10793016891767,0.5385303889202699,0.7325977569157113 -1998-08-12,10.962416418408749,21.666418492388075,15.14329646487127,1.2717744907781592,6.565697408550928,2648.263586769568,0.0,3.210560854908314,40.20906497734667,0.5961131032252946,0.9657420268228468 -1998-08-13,6.6750570483575595,20.790469979343555,14.518896033633537,1.1045648808547068,6.3067236824987525,2161.9639255351976,0.0,2.053533993394006,44.21173593228424,0.5927966759897183,0.9413335565481629 -1998-08-14,3.946199622444397,21.08355451933355,14.454474945963804,0.7171591836920302,6.507278095960471,1511.2245008564037,0.0,1.1704897353971764,44.2410928447983,0.5613493232004733,0.7909882562723843 -1998-08-15,5.579182248550483,21.485177756140946,13.46552010953355,0.8059221052277069,7.100884350036702,1627.2379096542243,0.0,1.5833312694334811,41.81229495826298,0.5520786143691305,0.7559817544085353 -1998-08-16,10.91463193069849,22.26766732796459,13.470811704460134,0.7501977299587037,7.522918137333066,2699.225007421164,0.0,3.229066463457393,40.60290788787231,0.6001444494887789,0.9837816624242294 -1998-08-17,7.365171628940071,22.530365490463428,13.896788715228615,0.8414271260891691,7.527645388296761,2301.698507701288,0.0,2.2450047862067093,43.51673068497742,0.5927397030345029,0.9822307682291666 -1998-08-18,6.9116843144685225,22.713786706359176,14.297168260928357,0.9823860525124174,7.4956692747285025,2133.5260002047817,0.0,2.065046946513653,43.0071006980694,0.5815200387286154,0.9538199694239662 -1998-08-19,2.4378129008250333,21.731871912962927,13.210411792584393,0.4898160205472252,7.330287782197883,1189.5368271096497,0.0,0.6702858547923789,42.27067975759728,0.5208236613870653,0.7229528939541573 -1998-08-20,5.879603923453916,22.40258632733559,13.479842682361314,0.4642345072909064,7.603983117366983,1506.7382570059247,0.0,1.5113707261524452,38.20370442307231,0.5135406875491598,0.7007368754274274 -1998-08-21,5.84570210012869,21.50745831310507,14.048017651791543,0.6239276606972195,6.923652441638938,1507.1655560111128,0.0,1.4691461282847271,37.46004249726634,0.5044825964639067,0.6798459727180752 -1998-08-22,0.8978697099012294,22.56725003655983,14.11469795934543,0.8704096758612999,7.4899983740938225,671.065575805059,0.0,0.20866797114630486,37.38916024675021,0.44601796974031843,0.47432055669806494 -1998-08-23,10.314313624968042,22.757568658844605,14.423782063946874,0.8836829425990174,7.491802685734725,1901.0655041405619,0.0,2.408219732484538,32.7790766798009,0.502008812768228,0.6754474197875926 -1998-08-24,11.231800980823182,21.463761043786228,14.470605193868051,1.0625749318832298,6.748175048374882,2537.596184251927,0.0,2.9955500898921574,36.744481029844465,0.5588911942846984,0.895801278131397 -1998-08-25,5.737137359142555,21.503679538659934,14.494763029768324,0.942189568936358,6.764829068178219,1821.821193968101,0.0,1.613600923216329,41.4108599479649,0.5492422384302708,0.8288191073830079 -1998-08-26,6.8641541466485565,21.286550799196966,14.938257567475825,0.9575866179464912,6.461396094730542,1903.8901175895412,0.0,1.9237134813698633,40.71247993362173,0.5542355665504874,0.8324360806006076 -1998-08-27,15.11011927283566,21.477605807625583,14.975470711854818,1.0786529580665438,6.562997610346813,3818.918832961136,0.0,4.833257332229316,41.348548037221924,0.6577052384681326,1.2778115935993708 -1998-08-28,12.551997620138517,20.487073341406514,14.575738567009662,0.8948790638693718,6.13983101859052,4165.248035912236,0.0,4.659751460255885,48.485486540127056,0.7110453538454481,1.541311287735219 -1998-08-29,8.100235748205437,20.09284383905932,13.812848801768567,0.4473315217070758,6.227681299932463,3352.0438088130845,0.0,3.147691892005243,52.62344208826014,0.7073897226932953,1.4826037974971615 -1998-08-30,7.139190327061438,19.090479751044004,12.941500374292493,0.15200473975417106,5.9991010025330285,2944.5738332935625,0.0,2.716587388116724,52.264771453457655,0.6920159243972825,1.378745951262274 -1998-08-31,1.1829333468246674,18.321395506711568,12.909533228763616,0.2589315926433597,5.5640641903168655,1338.0910561255798,0.0,0.4095155121475629,51.50925833839738,0.613828348221813,0.9598535996313504 -1998-09-01,4.663558364678326,19.21579180405339,13.207160276342044,0.6964519339453367,5.970293780897316,1631.4819937076313,0.0,1.4845110140739193,46.51561848745604,0.5962027500804894,0.8508583125327344 -1998-09-02,8.058741493184131,19.096599343672832,13.294732237400991,0.8196209995852299,5.866829271868349,2319.963472632392,0.0,2.567643296440396,44.82652097506083,0.6160774920900511,0.9448303943077374 -1998-09-03,7.033118416064421,18.740400341987595,12.984601210555995,0.9144089778849668,5.789100912151117,2273.6552388123414,0.0,2.3006105327943116,46.35270445781769,0.621908681819509,0.9653421197660235 -1998-09-04,10.32286991064152,19.863592892096843,11.071991202427547,0.9368174566007816,7.074375562811459,3107.2523389329026,0.0,3.572113386456051,46.85166816391016,0.666044648062912,1.1722993821283427 -1998-09-05,14.099463544727366,19.17433557766513,9.751417827775056,0.2877940915784582,7.10634598871817,4467.468183888504,0.0,5.336539889989298,48.457362103707936,0.7287446532338555,1.575678833635314 -1998-09-06,0.416093032184868,20.322950947800415,10.139434103400287,0.12142545268501714,7.567393167874346,1447.5445112617303,0.0,0.14640342522992694,52.532744038851845,0.6168180931577321,1.0479849480726493 -1998-09-07,5.137811966228464,20.0099815960257,10.508090890526551,0.2257793528482551,7.319696127372659,1737.4300108121408,0.0,1.5641588879063963,44.60128663536565,0.5794268137307552,0.920355243608545 -1998-09-08,9.139727349268373,20.128560035630663,10.905063624087743,0.3368539784330937,7.271697645369034,2496.6583421087853,0.0,2.762444807311592,42.29849703403773,0.5992204783830054,1.0197310378781768 -1998-09-09,6.460673902561555,21.502321661708518,11.470050022171536,0.6853997033264421,7.808580958171548,2108.3715011052277,0.0,1.9551647507642995,43.70894243020542,0.5844420537379412,0.9614996948811593 -1998-09-10,0.2908431478767199,22.76646585771308,11.596287507748954,0.5430068643565235,8.41106294229318,802.6139189776496,0.0,0.07730655718127938,42.16366739025029,0.4945662961575526,0.637662176247906 -1998-09-11,0.20555186964820266,22.644539044493932,11.945605021960171,0.7211595956359955,8.262905905405107,458.17608879862183,0.0,0.04443967187563175,35.48023020287158,0.415715193542079,0.42185470315699714 -1998-09-12,0.4082770273191439,22.360342844940046,11.46920857666945,0.4964774949651878,8.250905300003367,326.0840081714992,0.0,0.07339038897091005,30.100546158691863,0.3554071285236115,0.28578235548724995 -1998-09-13,0.34615769199045365,22.585670780052,11.391721164158099,0.567431902967673,8.387190272528146,224.8012681017041,0.0,0.052441292819169316,25.839655798214967,0.3050469932539403,0.1940158431884653 -1998-09-14,5.125579059127714,23.150917990405517,12.096642406285634,0.6562522591132369,8.491499012056014,609.800156766468,0.0,0.7349657818021154,22.17735988060535,0.31806074818629443,0.23820459296028418 -1998-09-15,9.455642892535256,21.088068305433318,12.920285262074534,0.7655133502056157,7.175414747454247,1206.296128610303,0.0,1.5435843664310838,23.055471384349552,0.37873246371393005,0.39009351726897257 -1998-09-16,1.5381239251597196,21.359865550912442,13.053442643851454,0.5928564812898427,7.28218855804847,518.0179470295869,0.0,0.2621524560986539,28.138579668526283,0.3457134988121885,0.2938491295162346 -1998-09-17,0.8397034144003326,22.736007446727953,13.109240955028485,0.6163821071839631,8.004423786880013,296.99351300911513,0.0,0.1276451059813224,25.67270257126798,0.3088515746467438,0.21071782546853587 -1998-09-18,3.6424284983474315,22.85132791984761,12.908439070605436,0.4940502641990819,8.129611765495252,482.96854478427167,0.0,0.5155236712776983,22.632090843175877,0.3060803563472303,0.21566349532749568 -1998-09-19,5.849454850887567,21.81888339253476,12.202551013621767,0.07882540780263267,7.804636669205364,732.5899988736146,0.0,0.8597427180584516,22.373042932734432,0.32877298596165744,0.2712953289141413 -1998-09-20,4.0380061815461135,21.580122556556052,12.145650860438561,0.7800935295800413,7.702020147077785,631.5152591662403,0.0,0.6164528365071265,24.16829571059549,0.3285843147943091,0.27046455934148467 -1998-09-21,2.5413393036234777,22.231527332897134,13.212129962130089,1.3835376421528178,7.7216928456724405,461.62466466475104,0.0,0.3762882994741692,24.207146166697044,0.3116017407620349,0.2333551687275131 -1998-09-22,1.0055746778569472,22.27926023752202,13.317943321694472,1.2060895252342103,7.71783917637441,265.602333743993,0.0,0.13602506269080417,22.966786968618866,0.2792617782979619,0.17261507241576213 -1998-09-23,2.347023073606069,22.068323402587662,13.461068288981375,1.1596264327228496,7.560974141516683,313.42730341741867,0.0,0.2928372493777882,20.61782493556741,0.26752492674525474,0.15695309648107184 -1998-09-24,2.8138496022280592,23.10922918680304,13.725592719149015,0.7245682546339874,8.044141721288447,342.87743670710046,0.0,0.3413616173695666,19.8266750833821,0.2637467796683224,0.15414643812847437 -1998-09-25,2.4574123966913834,21.915720012152534,13.211285119407867,0.4006407715085464,7.569262802370347,309.7980600534068,0.0,0.2882500126447223,19.354808286310945,0.2540975989930597,0.14423240902687304 -1998-09-26,3.6867312506011807,20.108397594160163,11.481734012704587,0.3549493859540561,7.16270485550802,396.2364678485341,0.0,0.43476939991476016,18.839814333042327,0.26241900032086324,0.16008858325603106 -1998-09-27,0.08795334393717913,18.27795777040588,9.182491655677888,0.028853807347345387,6.906730713020739,137.23249200258542,0.0,0.009816002655607337,19.613085941972216,0.22950376547943832,0.1057047749505216 -1998-09-28,0.0,21.10031713834252,7.715683675241372,0.36252362698705176,8.563543269919727,71.41331300130926,0.0,0.0,17.2661688823585,0.2011391742535813,0.06880884036836689 -1998-09-29,0.0,22.106564118804325,7.967585595309037,0.5789820899416679,8.97871277814701,44.96555964989238,0.0,0.0,14.644960897876043,0.17060387640390118,0.044791321064309525 -1998-09-30,0.0,21.286414497481424,8.541678558028668,0.4614817192554203,8.49757311964403,29.167392600426822,0.0,0.0,12.332405712488246,0.14366417463369574,0.02915704482077548 -1998-10-01,1.918502863823522,21.59284609890061,9.015647579842774,0.5961390428447774,8.54724116721401,98.10069145220325,0.0,0.1211172516478054,10.500563940895288,0.14467371766839748,0.037421756602742946 -1998-10-02,1.6470609384438215,20.0695129293662,8.615709726634595,0.3692441119535395,7.924315110435629,98.85790884973002,0.0,0.10328815747366482,10.56318889995104,0.14224114142854322,0.04008695255751641 -1998-10-03,0.6996625517168198,19.93970995036572,8.682224241408246,0.592077532861001,7.852998854066838,59.93428254288671,0.0,0.04180113467742075,10.518847250184827,0.13068804164285328,0.03245956230303067 -1998-10-04,0.1306038333016983,20.07531624300718,7.802708761083091,0.7697636180700775,8.109222546556154,28.605023019532556,0.0,0.006970803581751034,9.682608960352745,0.11431728321081482,0.022191057283523177 -1998-10-05,0.10549906854622634,20.35561206584176,8.199724174063977,0.3163358753571484,8.161492752524449,18.256035840693816,0.0,0.004879459271043135,8.431315010121745,0.09944810260103716,0.015188305069222292 -1998-10-06,0.014404941702886425,19.667195807710094,10.308377242833533,0.5901224494813813,7.324065542256758,10.589923104611163,0.0,0.000574011642232591,7.330995653367767,0.08556894238210773,0.0099742745020203 -1998-10-07,0.035670332674859306,19.833770877469718,10.44251659469838,0.6039461232197689,7.374739074047161,7.362452827991723,0.0,0.0012425989171949148,6.416899522479828,0.07516806891686563,0.006681987951734257 -1998-10-08,0.6245465432906075,20.56035894609287,10.519641599713953,0.4801311075868523,7.723066027691603,17.536378776021593,0.0,0.02006957087035033,5.633188275839002,0.07289837269596328,0.007405548752113356 -1998-10-09,0.8411055868193276,19.86656554863012,9.156996757591807,0.698338724567841,7.73471901130428,23.348027983433848,0.0,0.026570886970560093,5.426064476449798,0.07300828690032636,0.008866474244766966 -1998-10-10,0.28333548272044434,20.206041557217965,9.46885982092215,0.8792738257779548,7.827348284705567,12.972796904601596,0.0,0.008526293852738565,5.432972013875037,0.06659111106109582,0.007069912205452329 -1998-10-11,0.4815570999845616,21.02024256043603,10.136828459721619,1.2033451814024512,8.064147062982624,14.020416359098196,0.0,0.013469465162328886,4.947409615739998,0.06324378556071755,0.006653105612690027 -1998-10-12,0.3486721459144071,20.105165253596454,10.159279964229944,0.6955032977652522,7.610378510775592,11.109071838548685,0.0,0.009109540814667971,4.67721413566451,0.05854817148244526,0.005717921220446252 -1998-10-13,1.7326587457174831,18.20661053686813,9.866713784979227,0.2761152397571193,6.741022700339006,36.27447770062881,0.0,0.04892560976902072,4.369692256013766,0.07108825645438008,0.011171744828283805 -1998-10-14,3.645480076127676,17.879149555361636,8.690232091275384,0.5609314255758073,6.912744882724242,103.49899019312642,0.0,0.14289130056105082,5.394530300532754,0.10530999869132009,0.029029592227659655 -1998-10-15,0.2659960435647073,18.00791558843756,8.601836923981484,1.0143845354377186,7.002575993056951,35.05896940715447,0.0,0.011714574024059399,7.956443645581581,0.09578585386793965,0.020680617101711065 -1998-10-16,0.24114590961299784,19.570025701539237,9.639769108018912,1.0593924680157378,7.500124535878218,21.080311701472326,0.0,0.009620882702337935,7.2262821481876305,0.08699047968184102,0.014927031263113268 -1998-10-17,8.642861153952571,19.979779233585635,10.233961246352463,1.0020618125484748,7.5496195917383195,346.90664529857446,0.0,0.5151713574663948,6.500567597801774,0.17641068932251439,0.08815924548465726 -1998-10-18,22.96565783770864,17.483857420541426,10.835789404511118,1.0191859529410785,6.059437791352899,2244.0130400045487,0.0,3.301470749302826,13.127512779017332,0.42046099418496063,0.5600852189074293 -1998-10-19,13.396788038301954,14.956847296176381,9.395818729285619,0.338733182178924,5.200992790561342,2647.497756075175,0.0,3.198017638566755,31.916658871219433,0.5278709687171579,0.8515345826821874 -1998-10-20,4.237769823569541,13.33849045482457,8.463085842429287,0.34302147468587274,4.665285998580797,1498.9289019090652,0.0,1.1392354640181397,40.57429842742851,0.5220302468957241,0.7277744203065348 -1998-10-21,0.7931777417774062,13.925674770373789,5.494383056540365,0.5058283531989143,5.883897008410159,687.6849848462842,0.0,0.20296610421910843,40.610280351016215,0.4823222469772177,0.5046515299688531 -1998-10-22,0.35795426738773384,14.523030198213561,5.6167334391412975,0.4368287719632428,6.129955680955481,398.9461169479816,0.0,0.08051068501424763,36.62484171676993,0.4308245272315462,0.34076336855028677 -1998-10-23,0.0,15.560362234527176,5.69641397912504,0.603240500572152,6.5841039198257105,227.78335662864612,0.0,7.105427357601002e-15,32.63645258497179,0.38019257011985746,0.2218209370479159 -1998-10-24,0.032667668697853355,16.671583601495367,4.961862144596658,0.6829620835250643,7.22530736309384,148.4318391872363,0.0,0.00550472769587422,28.600824830985026,0.33356079606442635,0.1452331805461452 -1998-10-25,0.05464492049025932,16.794794889483203,5.492792155215566,0.58181705988958,7.183548041255101,100.02677311759226,0.0,0.007867978475947945,24.81532850955847,0.28971834768392507,0.09573799053116905 -1998-10-26,0.2413666116644439,16.806627677440723,6.6147166730866624,0.6786067408852324,6.959114487208402,82.4227293039747,0.0,0.03003311174341866,21.617861104619728,0.25464519909606115,0.06689391708662507 -1998-10-27,0.07248168867352106,16.502492703086865,6.265068173195754,0.8973692340745912,6.901184628275495,50.46278243541052,0.0,0.007867073371021716,19.117848470970486,0.22355435002771382,0.04474267414880807 -1998-10-28,0.004666355477460246,16.952385629085594,4.711354761830561,1.178125252930803,7.40770194116273,30.00657240037957,0.0,0.0004410340599135228,16.824367266190237,0.19604684450912316,0.02919253191612326 -1998-10-29,0.01210859421588186,16.30125314404255,4.443959863338511,0.9269999587565868,7.177627936861648,19.717083179797495,0.0,0.0009866585155031884,14.619447628139666,0.17044772101218109,0.01915319956310033 -1998-10-30,1.7419899113720947,16.48781490559653,5.343666711374565,0.8914523610703787,7.0964176294209995,98.79063894988963,0.0,0.1320480436543987,12.781975074352577,0.1691943559698081,0.03257409808224083 -1998-10-31,2.33293270937415,15.309070532105371,6.6568519916312825,0.5443805050420837,6.27086767417485,146.37688749579823,0.0,0.17988312665528738,12.709213693862019,0.17523081855406472,0.048594070281448694 -1998-11-01,3.680571166235089,14.564355589101785,2.222760036681356,0.6978939020161127,6.819293271454794,247.0130877532819,0.0,0.312828236962178,13.377603792650067,0.19871618590554446,0.07926517626151876 -1998-11-02,4.270764038752373,11.120809473112669,0.491388550639622,0.3923815869070748,5.706463597763149,339.41232417250757,0.0,0.4115206899339485,14.99378010284152,0.2244188926572442,0.11425800864237154 -1998-11-03,1.1103257903740182,8.891107245212295,-0.5615816533291778,0.3469041724191247,5.009783506115582,172.7144228010735,0.0,0.11177212305257278,17.297445641853432,0.21443807082820218,0.09139555042286904 -1998-11-04,0.007901601983863592,10.612297917728323,-0.6768805382939715,0.3072933077148889,5.677927566983261,68.39819587870011,0.0,0.0007438975027098775,16.76102059473011,0.1953465871178757,0.05960747711866192 -1998-11-05,0.0007946610750213857,12.234346273369635,0.02189501239188078,0.28903669327055986,6.209716120824406,39.51269389383015,0.0,6.687222012583547e-5,15.078857661574471,0.1756677371149694,0.03881184833622909 -1998-11-06,0.3760135002174881,12.462903281431988,0.22900659093833656,0.3731610428490759,6.2749262427364565,43.87519547186777,0.0,0.028417715633637652,13.426959518136924,0.1607952878297709,0.029591706124748353 -1998-11-07,0.009889911345709488,12.134456168575987,-0.30387012153273835,0.4913066673228035,6.21740345351946,21.352263545473242,0.0,0.0006712249738197711,12.280229372095357,0.14317156637307735,0.019365013795166384 -1998-11-08,0.011164033886239159,12.293699308179905,-0.2641710934244012,0.4271636732846237,6.2765239362173615,13.211439625386943,0.0,0.0006726854048123045,10.952578300616445,0.12772017318468817,0.012708140115341292 -1998-11-09,0.001025199196324964,13.018418075407295,0.6015746176395661,0.4487416758444692,6.452750785429369,8.358418888460834,0.0,5.481379424257852e-5,9.763800716911236,0.11375360885660221,0.00828074814242896 -1998-11-10,0.0702693813632306,12.508251995645516,0.6697609621883511,0.5913715304100036,6.247126461624286,7.577279669751245,0.0,0.0033372106474055807,8.669863599725769,0.10181663011989482,0.005898517466604883 -1998-11-11,0.4562843441305806,10.459761573748676,-2.126758682935705,0.6217383332582994,5.804427524127715,17.048427050042324,0.0,0.019922953610760796,7.793869141917457,0.09610870083313672,0.00687322164568551 -1998-11-12,0.0568532767632263,10.17383069141074,-2.431592906673755,0.4395769751959471,5.733379234287892,7.147618299124083,0.0,0.0023007703197381116,7.421183781700538,0.08711406735479718,0.004824470519946835 -1998-11-13,0.0,11.869029251267884,-1.5066602840731558,0.4485886543699048,6.265897743485268,3.3640924670747556,0.0,0.0,6.737375723054027,0.07848586439785266,0.0031405035583709517 -1998-11-14,0.0,12.353827658794234,-0.8062030681886307,0.6134345743363996,6.3783807972565425,2.060411035063045,0.0,8.881784197001252e-16,6.00966657566634,0.07000854565971093,0.002044320212832381 -1998-11-15,0.0,13.636754894412785,-0.04291305932705728,0.7126441207593847,6.7883960225466735,1.3317538182865334,0.0,0.0,5.350183845531391,0.062326018477356526,0.0013307563755038771 -1998-11-16,0.0,14.884508666099133,1.0038356014744159,0.7292102861811176,7.16021996351986,0.8663162912270749,0.0,0.0,4.726458869912813,0.05506004491877292,0.0008662598549033753 -1998-11-17,0.0643010330679707,15.212444320667613,2.3436895122321557,0.7233161319170838,7.120726933161788,1.5069525670037258,0.0,0.0014436283277398793,4.146233776525195,0.04904987901704373,0.0007837081906743098 -1998-11-18,0.2877022672681249,15.556906526196126,3.609128366490744,0.7060113462553929,7.0720445105547185,4.468417312221621,0.0,0.0059311291874726835,3.6971527401042694,0.04642086215906678,0.001413259236081302 -1998-11-19,0.08351690289155632,16.438252680961625,5.186648490589596,0.6555688944454746,7.174087611150964,2.3072777617408953,0.0,0.0015872062957866667,3.5025769878336757,0.04177556520446579,0.00116164094553539 -1998-11-20,3.4486727442677374,15.981661989101436,4.927255644400835,0.6168874930247896,7.024900772205292,60.0096480559697,0.0,0.09052299088287441,3.1462557709843937,0.07682645089696444,0.014539636299281672 -1998-11-21,6.1026567148829205,14.311236628200922,4.869079970616209,0.26877842509472194,6.296416740074858,207.50769405206566,0.0,0.2951135861624632,5.796814882381376,0.13862078538877048,0.05440002301809811 -1998-11-22,2.100620027263267,10.918831372905558,2.9861118476813218,0.3153985852682261,5.217560094169578,140.98354983393884,0.0,0.1347861196504394,10.589526590102755,0.14783161390144,0.05593503607021565 -1998-11-23,0.8461077625862071,10.000027130271596,2.8601095550090014,0.4172612836318162,4.84741521338119,82.02920337821698,0.0,0.05580294370923833,11.52903018357076,0.14416197621624133,0.04490790208103149 -1998-11-24,0.0,12.180368779972406,2.445680867047667,0.6412062345359152,5.868630156135242,33.15930568691305,0.0,8.881784197001252e-15,11.323894983213764,0.131915707634777,0.02923293358335504 -1998-11-25,0.0021356037606701686,13.585573872868755,2.5758556379546533,0.7120661752570919,6.4343591463361385,19.400625076705477,0.0,0.00011903101538850462,10.163615249207362,0.11842411285127698,0.019047390045401187 -1998-11-26,0.6298945132385059,13.386641721124771,1.6263519517386842,0.5937933187518846,6.504930559311232,33.444547851771766,0.0,0.03217756873587141,9.02780947071987,0.11250571089361229,0.017298465885369655 -1998-11-27,0.2686462297335893,13.748933101339178,1.6453173268987429,0.6694155925266443,6.651314863509422,21.458625643659843,0.0,0.01275195495484771,8.566346360803573,0.10292168032787208,0.013202161787562275 -1998-11-28,0.4073161997571497,12.721274086177962,2.424184450794647,1.0143992240822324,6.107122323497375,21.092940928067474,0.0,0.017780568221364756,7.816492341857114,0.095801800072159,0.011301341002757835 -1998-11-29,0.02231620491266041,12.916922414343713,2.0001353237133337,1.26472448856802,6.2620629225432385,9.03740360500152,0.0,0.0008926806285505379,7.354565278081449,0.0859356734065079,0.007492565642866357 -1998-11-30,0.005884076427665913,13.83030238505234,1.4808689396895764,1.2978384173735114,6.714514110524607,5.149921075520328,0.0,0.0002097765176988734,6.579237144020019,0.07671220255432004,0.004909249656729076 -1998-12-01,0.0002693715904506691,14.05488722366232,0.5048972156316444,1.3148439048988103,6.931789555181691,3.2227506440645257,0.0,8.474940417409216e-6,5.823348618689328,0.06784120563826965,0.003196981226673997 -1998-12-02,0.0,13.20502132512341,-1.1113650878184966,0.8916456667519537,6.7769759098662705,2.0830814092517675,0.0,1.7763568394002505e-15,5.129547612815511,0.05975575578843794,0.002081084520447389 -1998-12-03,1.5171039332387757,11.744546783000427,-1.5539545770123768,0.6849550772690065,6.272934395207484,29.639757722313544,0.0,0.04329857238397494,4.532883556149706,0.07047825699790523,0.007947535498882073 -1998-12-04,0.8201257460396546,13.082535254015832,0.7458875184660941,0.7494796236645135,6.523776242811028,24.49249490004511,0.0,0.02572925253377145,5.396967028357967,0.0724249203989849,0.009091130867229609 -1998-12-05,3.152917698865352,12.412087444531473,1.43853914758836,0.9365238968890788,6.157376051693415,86.92963445944486,0.0,0.1214316387989296,5.518950388317502,0.10102139033715302,0.024407659805080712 -1998-12-06,0.8425913392350479,11.281988673871579,-0.8910426495542941,0.8173389492384213,6.033157415990995,47.54211942206809,0.0,0.03747897986075821,7.746618806273956,0.10005848129536979,0.021594967726745618 -1998-12-07,0.11512921011847775,10.82233940990221,-1.1595295188216967,0.6757475678398482,5.892441627193125,19.951897667410748,0.0,0.004851291625526763,7.691421571571576,0.09094102974992462,0.01479598984382413 -1998-12-08,0.5324643580541095,9.60272478610306,-0.248371361243592,0.7218683058889784,5.3078664665764865,23.85928042727538,0.0,0.021038106454997152,7.0112450609542805,0.08787910587962744,0.012834856476529585 -1998-12-09,0.3948757582342469,8.183333267876693,-0.9293430775900348,0.7124657193319408,4.867775274184858,19.474232105292153,0.0,0.015100708914620786,6.851762711836118,0.08441843051086201,0.01065419434012104 -1998-12-10,0.13282878561944633,8.45793235429142,-1.435801785189773,0.6446555362674672,5.045889259342491,11.059520774398221,0.0,0.004825082055814445,6.637447216384121,0.07886913036644772,0.007670069791303005 -1998-12-11,0.3848589409145038,7.472287046526843,-4.27299066640806,0.5674829286060414,5.005873766717843,14.0194971770392,0.0,0.013276648896506371,6.1811038148671615,0.07648901941571268,0.007014420868762745 -1998-12-12,0.10267228277649172,6.712144937261829,-4.6589522957618215,0.4316145888572448,4.781070108475001,7.556601936719333,0.0,0.00335888288823101,5.999406567533824,0.07108508607463623,0.005077497847655606 -1998-12-13,0.004639410662429042,7.67440884543957,-5.010517017761928,0.3879146876847179,5.132733042611015,3.652776764635865,0.0,0.00014031197153177924,5.599786664323056,0.06528776826917258,0.0033265770268927695 -1998-12-14,0.017635645351814732,7.982272958061002,-4.378392222060813,0.25632267873686804,5.192239308253644,2.510379493227318,0.0,0.0004865539850314009,5.109871612464634,0.05973198703449538,0.0022395303273775352 -1998-12-15,0.0,7.128983962046274,-5.31860440027842,0.42300442327048493,4.973066457319182,1.487870343405377,0.0,0.0,4.670373312210925,0.05440668615455769,0.0014578289851973887 -1998-12-16,0.04962383047111064,7.461832143031055,-4.6735323547398755,0.525459076495532,5.039590983345336,1.6999851387044378,0.0,0.0011461408227196948,4.272026491599795,0.050344299486275425,0.0011234950233808766 -1998-12-17,0.09415175474894427,8.93680121986683,-3.7577589657323283,0.6614141443024915,5.476359189623414,2.1175961246911994,0.0,0.002020092133656115,3.9484603541477403,0.04709369327678773,0.0010389313257412683 -1998-12-18,0.045329463120468254,8.492198004261255,-3.9012665158834268,0.4945548942298415,5.333866884002705,1.3841583957774444,0.0,0.0008963744986835095,3.6635686733875676,0.04320615150070113,0.0008127817226799781 -1998-12-19,0.0,9.40933633007902,-3.489763509071699,0.5057000829054561,5.622345671600647,0.5904451034213888,0.0,0.0,3.370472894016072,0.03926372661854027,0.0005290827007236998 -1998-12-20,0.0585749650890675,8.481677921043904,-4.105382855003104,0.4263336681508153,5.348259119156577,0.979138466075221,0.0,0.0009645831816072412,3.0465886792923076,0.03617305353657567,0.000491280010287968 -1998-12-21,0.04021668003638725,10.505875408604926,-2.3450109015796,0.5607328547110312,5.91641265539818,0.775411609625496,0.0,0.0006113605292830324,2.821499043001772,0.0333370501239856,0.00041288886863326594 -1998-12-22,0.015245419063762457,11.389445525372665,-3.0244287870554034,0.6448173213408482,6.295894220703738,0.4459232228449652,0.0,0.00021026867991872505,2.5727187550585597,0.03014802997280259,0.00030078776048031366 -1998-12-23,0.0,10.47554619259442,-3.242978500758136,0.7644866074084861,5.984624453152362,0.21100947000752646,0.0,4.440892098500626e-16,2.3100513816267867,0.026910534152049137,0.00019579869504800923 -1998-12-24,0.00011789383727397829,10.350723413193355,-2.9773555156842635,0.7232818104832341,5.918845415333549,0.1294416883051992,0.0,1.3050947576790408e-6,2.074400431839372,0.024166733561077354,0.00012765446789436027 -1998-12-25,0.6578252153029731,11.297348225456105,-2.4322423170006484,0.9648218581710586,6.216445675365337,5.117284145256119,0.0,0.007706105768713778,1.865340467038036,0.029393171427251834,0.0012564655029622712 -1998-12-26,0.3644571900515891,9.414860328717408,-3.0906071621481606,0.7111794326748678,5.5942896396113815,4.365902093796874,0.0,0.0047470740164114456,2.255670770425433,0.030522716301445124,0.0015407121351709424 -1998-12-27,0.6574489212708727,9.7378952717815,-2.2908820719563514,0.7406197402291745,5.633969182773196,7.5108570351905755,0.0,0.009488051588685265,2.370075081887885,0.035268604296488745,0.0024476272060866516 -1998-12-28,0.5980974119872438,9.73627434594381,-1.725796200775267,0.6402659472417793,5.571980084328182,8.515541647412823,0.0,0.009718251910017406,2.736246151493439,0.038842844385791594,0.003073037691872873 -1998-12-29,0.32769547219537154,9.528839973663446,-2.121195793032658,0.7718905334311331,5.540109203760063,6.254579317540689,0.0,0.005582145423596252,3.0168279419063166,0.03896143275139167,0.0028503672093539868 -1998-12-30,0.08516066268349727,10.475134804159538,-1.4447194423560148,0.87130625767549,5.815575719813598,3.1400107078616224,0.0,0.0013998759897392993,3.02785035923168,0.03626447017033846,0.002068606885570434 -1998-12-31,0.07818308325502271,10.570593838912195,-1.912899974314236,0.9778770432357399,5.901954164315761,2.2324600792693508,0.0,0.0011890540005882744,2.8037959802352233,0.033573104317241885,0.0015276168952411257 -1999-01-01,0.028779391610030264,9.221822403980438,-3.6188954862453935,0.9526399329024432,5.572752401996515,1.333315610137733,0.0,0.00040091646962012173,2.591631776174367,0.030526015474778605,0.0010554522559703917 -1999-01-02,0.02567322914263444,6.92298203188388,-5.443951932941307,0.7747412053184152,4.921640062062441,0.9297170863413823,0.0,0.00032695795306599343,2.3712932037057946,0.027923035637007442,0.0007368339908227106 -1999-01-03,0.007133377214177017,7.7894991094807065,-5.345397425101087,0.4553428481855255,5.204151638271333,0.5554875294071244,0.0,8.375620126050993e-5,2.1958132124817316,0.025662835860994555,0.0004923974157843761 -1999-01-04,0.005816900187000924,10.214943310079306,-3.9818466518342728,0.8358374445256195,5.949200071617956,0.36774516362822607,0.0,6.239446380179158e-5,2.007564646801871,0.023454531493231998,0.0003300280538524685 -1999-01-05,0.0,12.354327054308419,-3.170589646875614,1.1324047144831726,6.659905117255752,0.2189284869602862,0.0,4.440892098500626e-16,1.8093583526542532,0.021077799450550994,0.00021483275173949352 -1999-01-06,0.000414675893179208,12.164148969146144,-3.1330139560984303,0.7971559472876597,6.588118764154744,0.14247109429065605,0.0,3.5450022089841696e-6,1.604221174197901,0.018692920940602202,0.00014038580319904049 -1999-01-07,0.0,12.016490160424631,-2.7492106894812407,1.0949537976007122,6.506616023031178,0.09160984345719028,0.0,0.0,1.424758111863857,0.016597467109463526,9.1384559749825e-5 -1999-01-08,0.00028996935183775555,11.402609690492705,-2.4785751914868217,1.455570905677833,6.260109854024352,0.0607816883901119,0.0,1.9558027125343995e-6,1.2670878006797581,0.014764092710338376,5.978485317851307e-5 -1999-01-09,0.08909556305989849,10.207536708080422,-1.5523321986928118,1.2000144010600042,5.726785799341682,0.4035492972585123,0.0,0.0005580034497024433,1.1324866562689744,0.0142306055589272,0.0001238813980272514 -1999-01-10,1.7794734014610942,7.736491724094097,-1.5134055814480707,1.1821240290288406,4.799505214850498,12.474367287648938,0.0,0.01892275433568269,1.1026515567057236,0.0335748038914192,0.0029619098575522002 -1999-01-11,0.8131035445984565,6.82595838428074,-4.121132061621762,0.8835415321479638,4.781639191308554,11.708423456920816,0.0,0.013287878072053783,2.645965691824492,0.04029581400718004,0.003951339843271427 -1999-01-12,0.3861367161482474,6.770140334605161,-3.6511999542607416,0.6367352768974278,4.715379586618765,7.982271076797278,0.0,0.006972146528374523,3.176272633416141,0.0414996563399038,0.003633748832138042 -1999-01-13,0.02764939740702864,7.764742397706961,-1.7055059698484067,0.8406774005642909,4.835888797780944,3.1529815947548308,0.0,0.0004871954452421029,3.2751203814969916,0.03847503117829428,0.00243958240731061 -1999-01-14,0.031641049413155715,9.363185322881067,-3.1478900207368588,0.7599166254563778,5.578471015661533,1.9886577423369076,0.0,0.0005158726338886435,3.0297998868746787,0.03566371359776327,0.0016666027161840143 -1999-01-15,0.7819433957073968,8.983694688132722,-3.1123554096046937,0.6910577791852389,5.439342492518438,9.765896712629067,0.0,0.013236317822146959,2.7697741766246406,0.04137510437597534,0.0031003049639382932 -1999-01-16,0.9723224988204756,6.78109989344409,-2.935150948378752,0.73152052895084,4.636259017200173,15.423089170769254,0.0,0.019341129491715292,3.2213642459874507,0.04885361047236753,0.004963125505135343 -1999-01-17,0.03511108273890853,7.7364460244487345,-2.7461395937013893,1.0327228349344444,4.9545858059058006,4.889427982280157,0.0,0.0007309215745275044,3.860613578195302,0.04538255398510763,0.0033420550444317244 -1999-01-18,0.01871423966035776,9.223840609442952,-2.3011282250832914,0.9833065403114646,5.44154331868832,2.5426606345172593,0.0,0.00035873983314868227,3.5653480987177164,0.04175189899545647,0.002230144196530246 -1999-01-19,0.02105958558142821,10.090869472262096,-1.9445398468619808,0.8235389766016231,5.719779818051607,1.721919821822398,0.0,0.0003679010563797727,3.2505383569270596,0.03811190039489443,0.0015077374259301784 -1999-01-20,0.0650363931718951,10.568522181114515,-2.298076091241081,0.9283218568255864,5.929700753706254,1.6835643788729453,0.0,0.0010388151756388214,2.951851490289332,0.0351447007051478,0.0011396411573317527 -1999-01-21,0.12354708542479345,10.489229881593372,-1.676114027598376,0.998334571357598,5.836056809413757,2.000969271604835,0.0,0.001832497716665632,2.7114185467886056,0.03302542968193154,0.0010208776787915127 -1999-01-22,0.0,11.614464275441255,-2.7532582613797576,1.2693834675826965,6.347959402127471,0.7755908879660771,0.0,8.881784197001252e-15,2.5525743287039417,0.02973576224086305,0.0006645433876437238 -1999-01-23,0.0,11.84087297556422,-4.1876102114937686,1.1287901806041822,6.5212756753982415,0.44109511677230995,0.0,0.0,2.2762208967261253,0.026516431914090036,0.000432586511816845 -1999-01-24,0.0,12.201438081500614,-4.095506361855613,0.8516055518190132,6.643014353023065,0.2821387406525589,0.0,1.7763568394002505e-15,2.0232347076974255,0.023569314142597327,0.0002815934876269811 -1999-01-25,0.0,12.83422579495565,-3.6264205508020813,1.0252609682368357,6.843035738467918,0.18333561840634757,0.0,0.0,1.794312074470511,0.020902520499552213,0.00018330412555124626 -1999-01-26,0.0,13.590193908683412,-1.6505128230304345,1.2250810901853908,6.984354253344962,0.11932406938538614,0.0,0.0,1.585297687478737,0.018467644442617615,0.0001193223704399604 -1999-01-27,0.0,14.189899834918613,-1.3056433273335033,0.9821278785453992,7.180639700300501,0.07767334233583718,0.0,8.881784197001252e-15,1.3969137704932266,0.016273099389613077,7.767325500635593e-5 -1999-01-28,0.0,14.511519865379427,0.17507177730168255,1.1217445441827096,7.161753494460646,0.0505616427011845,0.0,7.993605777301127e-15,1.226329688972543,0.01428591036513105,5.0561638367369564e-5 -1999-01-29,0.5967339689945951,13.11598228577762,1.2868367298220105,1.6157412160571225,6.466969748827524,2.8877974200377823,0.0,0.004370255354983477,1.0770306728684678,0.01949822454842056,0.0006983491889283992 -1999-01-30,1.3607470947781832,12.854925788708654,1.7845536835835505,1.8275966487484707,6.283984067298783,11.00685047851829,0.0,0.01576537612623441,1.489555475106728,0.03320409461911853,0.002855103913705788 -1999-01-31,0.01745152942848987,13.406416868365804,-0.05629328246678469,1.6956308093500063,6.7500037225151175,2.948060130286639,0.0,0.0002381548619357285,2.544598797129089,0.029846151198395877,0.0018948010538847645 -1999-02-01,3.4051103996479976e-5,13.93756409038624,-2.044964891932762,1.2511358307120577,7.133518530429326,1.3193388854268264,0.0,4.1221515758609924e-7,2.267110561778682,0.026410699354076257,0.0012334891962767676 -1999-02-02,0.002748769227073448,14.829611992841306,-2.1509680131853317,0.9282854428486048,7.472287954198003,0.8277367208493921,0.0,2.9225182009421768e-5,1.9915343738396756,0.023232048021615888,0.0008073934584829462 -1999-02-03,0.036330725830889934,14.04862679438364,-0.7456049940277276,1.195292468461072,7.062645925941721,0.7501142248794114,0.0,0.00034061346173176743,1.7405050736729557,0.020698933731707312,0.0005774386253464646 -1999-02-04,0.2108871034541104,13.077797265889943,0.6472702927182238,1.3342675054067523,6.527657626626711,1.620921838307083,0.0,0.0018754310805695062,1.5632275303214995,0.020667233993837627,0.0006614474928888859 -1999-02-05,0.20625839068726934,13.725552900520356,0.2833532935797462,1.3419446904400032,6.824884140855841,1.747379874128923,0.0,0.0018469105090389293,1.5769820124759757,0.020773543026927934,0.000711790638897713 -1999-02-06,0.3747250313543232,12.730024436022847,-0.8015744331032131,1.201896671455313,6.55813637639685,2.8802543106991365,0.0,0.003522826644475674,1.5760719407911117,0.022725463580669056,0.0009997446504324862 -1999-02-07,0.09679061752238476,12.991067293302441,-1.3976926828250185,1.0365266713776882,6.712634396304066,1.4643943411778364,0.0,0.0009192028407259273,1.7329272668376299,0.02131497420676866,0.000790748991142418 -1999-02-08,0.005418055301212795,13.644624502494054,-1.6590002911077062,0.8964782261819154,6.977784666232712,0.6150023660117528,0.0,4.686665331836339e-5,1.6206206362054523,0.018942249548375156,0.0005218765683510161 -1999-02-09,0.02328673332570247,14.509421103677376,-0.08199295001426164,1.310685712101563,7.160481649645506,0.4646296743088249,0.0,0.00017915385994554667,1.4329762707468325,0.016964477767530017,0.0003669959395804422 -1999-02-10,0.09507559441915243,15.8050862179006,0.08496397558277308,0.9982518961797184,7.646695487294895,0.688393228108034,0.0,0.000671363356629387,1.2789054439940373,0.01600594859169228,0.00034112209682784025 -1999-02-11,0.21559866072592165,15.55227965592799,0.284797533994111,1.0207525708943284,7.525166988745405,1.2388023205938212,0.0,0.0014955530620094915,1.1953224442415422,0.016436275350003485,0.00044977449950854814 -1999-02-12,0.2162758491541795,15.112784497220025,-0.19301824914151114,1.0309775272917518,7.397341947953183,1.389343751432153,0.0,0.001541150472502334,1.2303578216363675,0.016852302556100773,0.00052744498634018 -1999-02-13,0.6120961576178651,14.699931512617269,-0.16693803139791852,1.1728061234509175,7.231800741020218,3.7858515999380633,0.0,0.005122411546847672,1.2646279028490557,0.021862564324262635,0.0011233047266131803 -1999-02-14,0.21757420657397364,14.567179081250925,2.059563853163174,1.5684740118541574,6.90743220876265,2.364970954130757,0.0,0.0020349141165185713,1.6456517526408785,0.021705320586040758,0.0010410643173425916 -1999-02-15,0.04063485101719392,15.687680204075509,1.257715513985917,1.2069457762316995,7.461460032459181,1.054566233144711,0.0,0.00036044081697043234,1.6441063499527964,0.01962609402832405,0.0007325663796745657 -1999-02-16,0.008017158304636363,16.144144870343705,1.261323163028459,1.5981320765211684,7.640761957446192,0.5495212537710433,0.0,6.297506539345611e-5,1.4708213139623092,0.017227466683134292,0.00048645516657312704 -1999-02-17,0.02806966903105961,16.954470301366314,0.6368610290212067,1.6210298718290026,8.025205091280359,0.44955415136990756,0.0,0.0001943442062331477,1.286646926235344,0.015315557964891313,0.00034625122645530677 -1999-02-18,0.13983323800943084,16.644609873858858,0.15769717568521438,1.095905198140192,7.943604760092613,0.8229583564607262,0.0,0.0008968479144341457,1.1353311481237942,0.014854801514566024,0.00036195161855119876 -1999-02-19,0.14961375148979908,16.157881214139874,0.8632248553800537,1.6655846251392918,7.6795338752588345,0.9010269955821678,0.0,0.0009376156966749705,1.1029598094405373,0.014591633700213257,0.00037837933298806277 -1999-02-20,0.7304686005344817,15.798565468123277,2.175892394767677,1.8437474617791223,7.375618677828001,4.0009386329029235,0.0,0.005658107851464478,1.0890491412487189,0.0211961494536258,0.0011078376684842944 -1999-02-21,0.7910341903424859,15.250335549956429,2.3057333554680475,1.5008107132621729,7.130307437778781,6.530791761563478,0.0,0.008384213044810518,1.5910677515350686,0.027749874383926204,0.0019977705482715686 -1999-02-22,1.5202776466681158,14.221385284674433,1.4146878280632131,1.8054401468384789,6.832885280688143,16.972424564600693,0.0,0.023207038869587082,2.0925666108215295,0.04208718886102994,0.004834069232779538 -1999-02-23,0.04342536858731467,16.360875917853697,0.14806806234616007,1.4629404836575115,7.8153237574692636,5.020031370945283,0.0,0.0007471945933350058,3.190747817204312,0.03767592732443745,0.0032605232842845533 -1999-02-24,0.2499370913999229,17.182338216024387,1.0949717654052695,1.9024634802773464,8.045389823462154,4.829875624432249,0.0,0.003915323425745493,2.802457472326649,0.035558329483930014,0.002718613245373691 -1999-02-25,0.3186959733552989,17.764555603383073,2.2480888168609185,1.869306213805834,8.151905360358445,5.1166047973191535,0.0,0.004760262487644551,2.6331467316321118,0.03438696842669385,0.002494509734112903 -1999-02-26,0.19246794199599568,17.69949881884168,2.548102546752471,1.4165970288808722,8.085518336553001,3.6908077547766367,0.0,0.0027137559478492557,2.5411429147658686,0.03184471518875822,0.0020370180278110497 -1999-02-27,0.314077838845548,17.26999593795026,2.2234650339049247,1.1605383119092725,7.944756122533712,4.261901857811538,0.0,0.00421893353098185,2.3565647252057165,0.03111117722290938,0.0019683979518531286 -1999-02-28,3.7035472742252735,13.561503149088047,2.4704445169129916,1.0640710319218645,6.389254321983655,55.671539923378276,0.0,0.0828651242345182,2.3087424359535516,0.07003910340030714,0.013898773867393988 -1999-03-01,3.954555830956245,11.41028580030417,0.6875202058430941,1.1816771632872396,5.8006601318709174,116.742418353915,0.0,0.15747195194687524,5.351391988619231,0.1084079897995673,0.03302487953243991 -1999-03-02,0.7996674669132211,12.273979276816142,-1.5647444195144822,0.8792817761326538,6.39468788448377,55.999429934833174,0.0,0.038264319441400074,8.368783871738463,0.10680624891401151,0.0273239523127544 -1999-03-03,0.6794054938229437,14.761377007188635,-2.020700940789141,1.0593359510510891,7.347086841330268,41.2796299143819,0.0,0.03145008359589618,8.151249730490818,0.10287115294877866,0.022575348563429055 -1999-03-04,0.01232337272276014,17.20318498988989,-1.0037968538501476,1.1585749920707644,8.195904112473949,17.07517749862894,0.0,0.0005167833082065486,7.706528222708188,0.0899193936228223,0.014774178766425903 -1999-03-05,0.07558717506436664,17.132095031049214,-0.5316881353457729,1.7640949114626523,8.130936505401948,11.584556655633762,0.0,0.002729092119050161,6.62630059684468,0.07807245380063871,0.010032840582025977 -1999-03-06,0.02736987909494457,17.212939072577623,0.4344699056311874,1.6686476454333157,8.079211635012516,7.259280040069806,0.0,0.0008540868846367046,5.763214798152413,0.06745638991270414,0.006660955020840764 -1999-03-07,0.02096257280551794,17.98602199479388,0.994179347372218,1.8465137218774963,8.329467944550151,4.76711081516086,0.0,0.0005643663424587074,4.986540225673733,0.05833401635424252,0.004421901766597443 -1999-03-08,0.035463426290673034,18.27847971029089,2.2741808532138497,2.265160738541144,8.312204340900166,3.4525401985277364,0.0,0.0008215938992633121,4.292089609202012,0.0504130621001246,0.003003550029085316 -1999-03-09,0.25945190432132675,18.290897761485507,3.7406492562450455,2.1424332051460446,8.129931143104615,5.499999565040936,0.0,0.0053491614893867445,3.711585699346962,0.04625989876352095,0.0027696587609886475 -1999-03-10,0.24885991523211426,18.442105825082677,4.392556257081544,1.9120137125718304,8.095715072904694,5.205498295429977,0.0,0.004727836265395302,3.418668165981246,0.042724218373700495,0.0025228005942751377 -1999-03-11,0.012565234045715369,17.829899306205586,4.631278920202519,1.9322908075833691,7.792270400107286,2.079807464536268,0.0,0.00021305531216748823,3.1598936974369085,0.03695699805669054,0.0016746654339483298 -1999-03-12,0.04950289549004036,17.591264026220816,4.270153314078044,2.1999843832161816,7.743178718093652,1.6051746522197239,0.0,0.000734739519111377,2.7502917635340016,0.03261571166323255,0.0012020034341769896 -1999-03-13,0.14892896488682816,17.816770602234264,4.21779721235553,1.9308155972660697,7.8427097786972775,2.1294627338303282,0.0,0.0019930943945920543,2.4298955386738927,0.03004155900044991,0.0010859258066692574 -1999-03-14,0.17315843149596194,15.48645601434494,1.4282177888924554,1.531942634070229,7.261595139059445,2.22776865114535,0.0,0.002145950759879278,2.2339266263002897,0.028040910764979013,0.0010336393665432383 -1999-03-15,0.3979073060906084,16.93043790310719,1.5537573132855498,1.6079080509852812,7.8170354612335125,4.01047005832575,0.0,0.0049047030804509895,2.109112486633458,0.029205082747749835,0.0014196641468147977 -1999-03-16,0.000409341972041556,17.0480910344592,2.7148008597796154,2.021278141914612,7.721209614366205,1.2218992647366107,0.0,4.748400271527135e-6,2.1728791647525143,0.025317339279822045,0.000924857649450088 -1999-03-17,0.0,16.966387591766775,1.969319343252788,2.248652574272456,7.775525733913638,0.6249214012313283,0.0,0.0,1.887403607639174,0.02198697381627357,0.0006020388614824832 -1999-03-18,0.0,17.99415903981488,2.131198275623128,2.2311576833889646,8.16660382623459,0.3933699499443363,0.0,0.0,1.637549696318619,0.01907634495879773,0.00039189900299860687 -1999-03-19,0.0,19.625869325730623,2.4048346791064663,2.09220012441302,8.79487878649395,0.255192964328049,0.0,0.0,1.410009322098432,0.016425653697069054,0.00025510783169895214 -1999-03-20,0.006759038491169349,20.007710245693826,3.6108563005326646,1.9212128795140155,8.81319340876987,0.19432199939079475,0.0,4.325150356446119e-5,1.1991339240332595,0.014047836342443828,0.0001726488887318616 -1999-03-21,0.0002383609530524669,19.47709074366335,5.244909736839094,1.9462966323679889,8.35900419530264,0.1157442505077014,0.0,1.2998603963790235e-6,1.0252538094222645,0.011946289287344725,0.00011258423501461087 -1999-03-22,0.20910275495635194,18.373648096241183,3.675146503416453,2.057868461260956,8.113662703802062,0.7886147348809667,0.0,0.0010946114868143897,0.8798502581531636,0.012685565127397175,0.00023995781489047534 -1999-03-23,3.7167730656399574,16.280599277087415,4.002765327333192,1.970205352504283,7.184225801514183,36.59671385232744,0.0,0.05568590603821111,0.9388136595584267,0.05423443242983187,0.00863520309110362 -1999-03-24,0.1572366711865927,16.21080351997675,3.491080685045429,2.0134910365424785,7.232042982535227,11.152040819029033,0.0,0.003515138748299257,4.082250559146661,0.04938715511112002,0.006156343160668589 -1999-03-25,0.039635128220301734,16.725002314112785,3.5275148519696953,2.128229276379185,7.435595105534139,4.979710770358254,0.0,0.0007941131574977153,3.7144683145298854,0.04373276270387989,0.004128405508978522 -1999-03-26,0.75609414154591,16.78278687098178,3.236728850685563,1.4921092398203923,7.49731258243171,12.448354131453986,0.0,0.014822903768230478,3.2766995026789747,0.04697931481275327,0.004944404025940203 -1999-03-27,1.5915583244899527,15.863890976094387,3.3269646627363394,1.433383841357912,7.101003583061592,28.18205922181064,0.0,0.036889618105983235,3.5153441974538326,0.05949195581579376,0.008835563953853052 -1999-03-28,0.4531319345526965,15.177133554873775,0.8054249300292774,1.4209799322568522,7.153473986302747,15.464166614104453,0.0,0.011490734607896513,4.484555433073508,0.05752071386614468,0.007501170956943873 -1999-03-29,0.4141708377260022,16.921213129014937,1.437224771888094,0.9728919273450533,7.762546939304052,12.325097364771446,0.0,0.010112939474342608,4.331780969430799,0.05528712443639762,0.006422754169437543 -1999-03-30,1.816865704056405,17.505951627636858,2.9264168924785547,1.5368650254751135,7.81731476382309,36.95714890361855,0.0,0.04918058892719812,4.114378650898094,0.06909497989856352,0.0116693822945197 -1999-03-31,1.2117667834588408,18.250925695294296,5.4658408154324105,1.7102716044387964,7.7449616993213315,35.04035072797846,0.0,0.03756961395968439,5.134025552022432,0.0739241831259708,0.013316748146895232 -1999-04-01,0.8891628208479105,19.230106194895647,5.858087645883613,1.5955049764349103,8.099083271154651,29.733287118360643,0.0,0.028568399366954766,5.499844712717629,0.07442761091687788,0.013018537995620607 -1999-04-02,0.8890249912887184,20.278453551117337,6.552364181924245,1.5836801192207777,8.436237617223702,28.9684527600625,0.0,0.028556343142181917,5.498357218318643,0.07440867699348874,0.012822581464691951 -1999-04-03,0.5186030221977428,20.846317006763623,7.1373097185956755,1.71615572018325,8.58159436721625,20.60711254163219,0.0,0.01601894909168855,5.4599926062297515,0.06964659016666097,0.010786019516286533 -1999-04-04,1.2719317996343291,19.490951534209657,5.931158005091724,1.1730860045820437,8.18609802397541,33.814362991889794,0.0,0.03938342371854042,5.096538588704999,0.07418836708343278,0.01301789982716879 -1999-04-05,0.9992821038442384,18.761404040460395,4.897770999685597,1.1506328622880184,8.033431245036082,31.907697657071772,0.0,0.03225241333098727,5.471215530641922,0.07537691540478672,0.013384947334611997 -1999-04-06,1.3836984848223262,18.112281768983,4.981792202217855,1.4725898910481432,7.7390165614297715,41.419992618535694,0.0,0.04692664030531013,5.57559669006419,0.08107107572044091,0.01585824584713232 -1999-04-07,0.5949228415654848,16.813914375290047,4.796184848214494,1.159402343612591,7.212394972872204,26.510541960411548,0.0,0.02037470035189992,6.030822016147155,0.07718544041677362,0.013425321829082192 -1999-04-08,0.10024564823850612,16.2277007282777,4.721750274479764,1.1653350864992245,6.971564528128053,12.211809876597698,0.0,0.003170002188241927,5.802485299289786,0.06876281801227946,0.0092219331836064 -1999-04-09,1.406285996734145,17.69868083869636,5.910589158406074,1.3908683826762016,7.384101493773316,35.57602375640016,0.0,0.04482767444354652,5.195059777258826,0.0769012076153134,0.012828720736415389 -1999-04-10,0.7195788381694403,16.601877549692787,5.1482527493719985,1.3357240276635556,7.0459298911305615,26.53365595278681,0.0,0.023822167507820513,5.761690004913644,0.07550239269031889,0.011978171172951862 -1999-04-11,0.008740491557639467,19.39653153324532,5.236821341425999,1.506365517261156,8.22325213979347,9.556593560669333,0.0,0.0002690102271243489,5.6947983816841266,0.06644236524636297,0.007838187240663189 -1999-04-12,0.0,21.485351661764973,6.479175644433706,1.6506457834618018,8.928468530838327,5.23751107111783,0.0,8.881784197001252e-16,4.89766871867507,0.05705452370782881,0.00510229149887156 -1999-04-13,0.21455830584411226,22.06193021420393,7.77628653437567,1.7558843535547668,8.963076626043357,6.535613763668595,0.0,0.00490689838746336,4.14793519183245,0.05082009482171949,0.004068499726233802 -1999-04-14,1.6080059108966631,21.68655838384974,8.944763364750601,1.757108591298583,8.562567950538142,28.345903343039442,0.0,0.038901272915792484,3.6929646933007994,0.06175271754466598,0.008571695584834019 -1999-04-15,2.5567023851304964,18.18102945522839,9.848545888649145,1.4889224842008917,6.648476354296217,60.208413758462456,0.0,0.08013796328893852,4.5219201521531,0.08246115867989405,0.017781959729680802 -1999-04-16,2.191996134225056,19.802184970340555,9.632048632350287,1.6270754831524166,7.502965342620574,73.66533593398707,0.0,0.08766369387669348,6.266750476314078,0.09853866946723143,0.024923312463735026 -1999-04-17,0.9781804694763472,19.61000714110083,8.452055718228523,1.4478585447328067,7.688706452900395,48.963519687165565,0.0,0.04176810582584389,7.360274888872168,0.09713735784446191,0.02258371616248186 -1999-04-18,0.513705874621811,20.194165744280212,8.467964933755576,1.5940250408532726,7.951849799719631,31.188385155163672,0.0,0.020893542205297377,7.229236007643232,0.09020002914969315,0.017882288244201808 -1999-04-19,0.19747351450803804,19.73713005479773,8.450966677495861,1.4133638590340178,7.739315269733218,17.805078877662105,0.0,0.007254696618123363,6.679450379513143,0.08011150608294064,0.012745163911791929 -1999-04-20,1.3292912786235755,20.49160024832572,7.823197284866559,1.3529921994715748,8.211240933036532,39.98759673164598,0.0,0.0477046694984804,5.959598403244842,0.08491062851437838,0.015560243347034946 -1999-04-21,0.00657926614874648,22.66931501185751,8.44685735695057,1.4056832529237548,9.076596845937296,13.080663617059459,0.0,0.00022282723977483983,6.256408451091312,0.07295956540151206,0.010162915826522635 -1999-04-22,0.0,23.520488558493568,9.911871283480176,1.8858073040358168,9.181718732216188,6.844528217835626,0.0,6.217248937900877e-15,5.2851309058916796,0.06156819578657602,0.006615580546023335 -1999-04-23,0.11836792948138412,23.052649274196,10.178480857178748,2.193682849036395,8.899590051719164,6.197823096975108,0.0,0.0028725717495123176,4.452407656177889,0.05324644009113584,0.004743823487995446 -1999-04-24,0.2963867036771517,22.503753089572523,10.432540400217608,2.197665345080841,8.575993891362135,7.43763095290264,0.0,0.006402033956468767,3.873891507962669,0.04858091691399911,0.004062810376884721 -1999-04-25,0.3033208787993364,22.831333941818684,10.432111646711926,1.6296607361598618,8.728487074501098,6.97254171272769,0.0,0.006036895959242894,3.55812495034883,0.044983228809569294,0.0035639051949759664 -1999-04-26,1.134620282006719,23.71734251026928,10.55266921587986,0.9692410455582574,9.120428490507603,18.0265199536304,0.0,0.023462504741129875,3.284991424166245,0.051485483268345233,0.005892447732346878 -1999-04-27,9.50612047578293,18.127879461499667,9.567693135488117,0.4251706884111183,6.658900923494455,293.30762409384204,0.0,0.44099608263750234,3.729337120832791,0.1541841175069019,0.07098387486161367 -1999-04-28,0.9894155611560832,17.879957604469663,9.409959288094424,0.5510383370928059,6.577796477780979,115.38142987455232,0.0,0.06657425279713591,11.688987234693492,0.14769480633408133,0.05634407976994341 -1999-04-29,1.918097281375608,17.663151444664592,9.332589527373052,0.7779026158614565,6.489508336399159,126.78295717911809,0.0,0.12899037911173172,11.217339139021753,0.15301893854163715,0.056318038528607575 -1999-04-30,1.17535143428171,18.764509146299613,9.066195166794182,0.8659082871032904,7.091721401257796,96.42477187520058,0.0,0.07938363399884962,11.639950267504549,0.14928958587573504,0.048747727129979726 -1999-05-01,1.0794088468344791,19.83746617214949,9.51424573472868,1.2020265908876684,7.488217778127858,82.67855557818132,0.0,0.07001558460708623,11.22300929387585,0.14331483973106757,0.042393386301799015 -1999-05-02,1.5629075869281157,20.766921405508867,9.720471222360466,1.4042729094181174,7.877504593856293,96.57894641103034,0.0,0.09877940347324254,10.691161621316548,0.14275160741135348,0.04263672542147557 -1999-05-03,5.9391281350946015,20.6305047802776,9.85202064126117,1.0117847791690748,7.776869151051093,325.50366683732597,0.0,0.44650591679546014,10.566367131845233,0.19227784178751678,0.0957416263024673 -1999-05-04,8.639292622947277,20.241374097529267,9.678077145838367,0.956093417839706,7.629432506132918,681.5164795660316,0.0,0.9075074151627867,14.233403986035048,0.2664514253410319,0.20050470925962205 -1999-05-05,5.706917790129549,18.898949532939145,9.157564168429595,0.9950868746153891,7.11476760118386,668.7535779284289,0.0,0.7402503836961793,19.7201089291382,0.2962076412482453,0.24323319850269282 -1999-05-06,5.709549562832742,18.942760054971487,10.121389557471373,0.6541172016192067,6.874273056621436,746.0935717227409,0.0,0.8276014242050467,22.126986602808177,0.3242767944982686,0.28434792309873724 -1999-05-07,5.328590693510047,16.486682035337825,8.682361204792269,0.7795391985007174,6.073447252209537,786.0403616108464,0.0,0.8409605388065193,24.313240803559943,0.3453072625031598,0.3131457989684422 -1999-05-08,4.965046671020239,17.59688348501408,6.872782169844765,0.174614975091106,7.034182399775722,806.8158009884037,0.0,0.8423439125424075,26.298284420581467,0.36419663464580476,0.3321025017470606 -1999-05-09,3.486197732513852,18.79239723509542,8.363601328708734,0.2980078101029333,7.2434506956731886,657.2066992148491,0.0,0.5941831639863162,27.16097752325796,0.3570188364396852,0.30665628429165775 -1999-05-10,1.6715277952373575,18.726906339895944,9.78448156166282,0.7735146097153609,6.849105546752213,413.04814155992784,0.0,0.2677976536829276,26.51818638002014,0.32839107912636484,0.2403949771255895 -1999-05-11,0.5810979303497645,15.80347843229318,8.295891604120866,0.6848549558631333,5.841057736416062,229.78067198341296,0.0,0.08395763327725936,24.62983026297809,0.29369023977018044,0.16926962150146108 -1999-05-12,0.7061951721072957,16.245038965344776,8.57950858368512,1.1845995977429655,5.971168886497421,177.11566490150597,0.0,0.09288114906492861,22.521095230020396,0.2705822028884227,0.12432909498594368 -1999-05-13,0.09167900684378123,17.001660675982905,8.753463150782155,1.0329530413296135,6.286534028812227,93.87175622022819,0.0,0.01085133681529056,20.712523595653156,0.24235487101866265,0.08258467370325001 -1999-05-14,3.4468220965234178,19.20811983011821,10.575361920034114,1.694950821386504,6.850663542485823,313.3501364670491,0.0,0.39573776389176807,18.453564625837636,0.2551246736426041,0.11401566181246918 -1999-05-15,3.0858395174129423,20.019939835249133,10.652790213761193,1.7202280944952515,7.230031729623226,335.6453466651933,0.0,0.3649379393351313,19.195874966212482,0.2595668838134457,0.1297860295264256 -1999-05-16,7.819751709058182,19.212300363805294,9.326856619462554,1.847534509223849,7.185180580333721,793.2007347432639,0.0,1.0497820405161322,19.375512000815682,0.31680640467969445,0.24432942917752237 -1999-05-17,2.5821092725840686,19.925928530307036,9.029927177178225,2.785032216638461e36,7.589327707091147,465.1856856261286,0.0,0.3727559842570316,23.608186263912774,0.3050992060578441,0.21580458016786055 -1999-05-18,0.9859699516708044,21.18993537119505,9.776824243388978,0.4997201708704787,8.00597635655519,252.3355723703116,0.0,0.13077064809412875,22.557460692851855,0.27426502261159946,0.1603904018962783 -1999-05-19,2.4169910359398865,18.54238045468825,10.78682061995714,0.4771431276588958,6.434656385875755,306.5551982620087,0.0,0.2948115942388436,20.13239502159447,0.2626850763733603,0.14929603370411948 -1999-05-20,3.34314574552108,17.169594761528757,10.437781287459854,0.5987438279101261,5.833638562508185,384.88602559715014,0.0,0.41315034971263964,19.926507567527203,0.2710757021110703,0.1600929451631648 -1999-05-21,7.306856769047662,17.375294898166963,11.046651439179604,0.9244768165141212,5.726906327969445,805.7906757239064,0.0,1.035204224551122,20.807453990949984,0.3275126804042973,0.26183811899602644 -1999-05-22,5.901662296810483,17.540044871156255,10.197227361433432,1.2117548452808078,6.100423852659417,869.0281435892571,0.0,0.9745156890100697,25.13999864896272,0.3616143275693246,0.3188287190617192 -1999-05-23,11.416837836810632,18.192333357242774,10.686274199005167,1.4437705974597157,6.27664535432325,1760.2898651714413,0.0,2.283138505255941,27.504753118816346,0.453410175632494,0.5551840769559421 -1999-05-24,9.64307433807052,19.257206463408657,12.260236271144311,1.2114953764345089,6.305743947673094,2019.008469123008,0.0,2.3276134851630914,34.196335459774936,0.5106994346332672,0.7158122789545517 -1999-05-25,7.897513849791068,20.996140593801027,12.960281622415572,1.1765460803750836,7.000718687129118,1983.826385852631,0.0,2.1007888842100044,38.354485322702764,0.5388044669618663,0.7858362925983121 -1999-05-26,15.595067777525596,20.966454370215327,12.95157717722173,1.1595691737154494,6.985248330983337,3789.2706878945637,0.0,4.8140426678313055,39.75996772878904,0.6448486753708229,1.244551605290729 -1999-05-27,13.697430684633515,21.364330626338905,13.426743268570323,1.348525930869706,7.036358143508622,4358.50066864676,0.0,4.988923356806501,47.12992375413701,0.7085974848968922,1.5697818826094603 -1999-05-28,8.559330856336384,21.04998593086829,13.942645564192588,1.1747133520249309,6.675020773201558,3449.504782454774,0.0,3.239325555707044,51.318504227033834,0.6975362274526801,1.5150893956276357 -1999-05-29,12.729589690003625,20.684090177751838,13.664951158677109,1.4036351811512648,6.57083396625072,4494.304935771428,0.0,5.046155473651364,51.04150179550498,0.7428900278944036,1.7546037041114593 -1999-05-30,4.8819117301464585,20.86636663536586,13.205826867320258,1.3371931179690866,6.835127609855826,2686.836910680433,0.0,1.8920361037637816,54.1571975987083,0.6877656404256518,1.4302549924903767 -1999-05-31,1.5742963784870765,20.20822415954402,12.67349013207484,1.039592017614014,6.660859518395843,1410.3354622907586,0.0,0.5295966624249215,50.193352425781924,0.6030580497900093,1.011667693611653 -1999-06-01,1.752118178638058,21.5249937678829,13.022445293061805,1.4807960701185974,7.245625902876427,1031.886868276059,0.0,0.5092072946292006,44.60035647840471,0.5399749383115096,0.7360824531894963 -1999-06-02,5.589858733425411,22.094865473499784,12.801497515179511,1.3717624515180986,7.6105193103083755,1485.790406524193,0.0,1.4911501557029982,39.6226297291565,0.526694871182743,0.7062047208347753 -1999-06-03,5.282121456018137,22.048768108708337,12.685502053849008,1.3595183701303566,7.61933105713081,1432.1604146771997,0.0,1.3524618668014181,38.37255907510207,0.5085474637807436,0.6656383805242659 -1999-06-04,9.029322237707088,21.861687340876518,13.027460100775766,1.5280488887234331,7.415178133156721,2056.8694077048026,0.0,2.3548223414956517,37.09782044643421,0.5373499734295409,0.79185578955316 -1999-06-05,1.0143786075280004,23.012308256339267,13.424620208177476,1.2707599003515957,7.8924127824531185,822.0745393080057,0.0,0.25035108332347833,39.287429574409,0.46948877158982977,0.553580552601985 -1999-06-06,9.256731391117397,24.157627270860118,13.739929534784295,1.0581118118239508,8.39156210072155,1834.2590604260931,0.0,2.2172530130360233,34.14249793443834,0.5055716302360006,0.6979644477501379 -1999-06-07,8.687508923138251,22.323669348760664,13.81440400038616,0.5411356488853307,7.400651432719044,2021.0039438587598,0.0,2.1985953413538777,36.25200812244967,0.5235149390401183,0.789110671308668 -1999-06-08,4.753860636633688,23.42480985800129,14.095011153796447,0.562046785437423,7.896587661919123,1439.1738882251345,0.0,1.2061853557888318,38.33207921566575,0.5019220200426533,0.6973334979863268 -1999-06-09,6.359546260138554,21.33154305706109,13.474576823829127,0.7302723311114168,6.975958772582877,1553.8459014768766,0.0,1.5606041530361914,36.40625955589068,0.4981926753255605,0.6915563693230916 -1999-06-10,7.6420353105254675,22.024358288339762,14.00506974875963,1.0530364908157492,7.168481621914615,1814.4215868021054,0.0,1.9405441438341127,36.896877111420864,0.5188481664775166,0.7456472064686516 -1999-06-11,6.188257543600188,22.083121024680363,14.25619005997911,1.5479863190934084,7.111077633108545,1649.2116761705654,0.0,1.5980140051852496,38.203233123385445,0.5171308028711578,0.7287025254391183 -1999-06-12,5.797490868816491,23.336300328102787,14.812051543606492,1.572926031660284,7.606122478584723,1546.4347048755835,0.0,1.4852452812606334,38.13082008203311,0.5117350728589372,0.7005016303604453 -1999-06-13,15.802493118638155,23.33923994406301,14.937839036169011,1.5117819382419289,7.562789199574485,3541.3825729276036,0.0,4.579396412938388,37.331943650805535,0.6189802039498624,1.1532743922110156 -1999-06-14,13.448325535403011,22.314858838215628,14.819781298915427,1.1892215181014418,7.031423211445082,4025.8022358171565,0.0,4.595965190468473,44.752043042552806,0.677994878700912,1.4505310210022875 -1999-06-15,4.988320561036764,22.713042421938788,14.267195297035567,0.9114305314287374,7.4468964122474555,2351.672841666377,0.0,1.714383095939942,49.305927073338474,0.6324912150636839,1.2052676723271019 -1999-06-16,1.3686566667234117,22.296950151280264,13.607729035139576,0.9311795038302509,7.440217817260984,1172.917306748462,0.0,0.4087132553313153,45.786298192664844,0.5493232892024554,0.8468052380718021 -1999-06-17,13.988075717916482,23.35186396663586,14.12304764756838,0.8336633114399667,7.834865235156304,3367.6064131655803,0.0,4.2611269262734215,40.0989495575608,0.6300772149204209,1.20004993348215 -1999-06-18,10.117250748590868,22.687508843480913,14.592825236691633,1.0124777603498238,7.317016472005691,3216.903509525496,0.0,3.34660399273246,45.20584157329133,0.6444765589051757,1.2907460009884528 -1999-06-19,4.733008124267664,21.58794197770288,14.051997982373711,0.777481669547661,6.900072896345192,2044.3540029340297,0.0,1.5167356550391213,46.73475942491706,0.5995646362578732,1.0711603915087946 -1999-06-20,8.159002822092294,21.263800793700703,14.505695412545005,1.184650784741622,6.5452772786647655,2470.068329380768,0.0,2.5543032802565584,44.111534068933715,0.6089163554281303,1.0862054789899271 -1999-06-21,9.157042635767956,21.932994716557808,14.896431948178744,1.6037899468094927,6.777101494131245,2812.6765124531485,0.0,2.9845005139901257,45.12970647728961,0.6324038623685819,1.1615030078789645 -1999-06-22,4.171180992237701,21.761563256429376,14.613046427768813,1.540100853751952,6.787123762779334,1802.6815479602008,0.0,1.318887728418182,46.51001836624008,0.590401649526371,0.9569040078173272 -1999-06-23,3.07554593795346,22.11506233657226,14.625582489243325,1.5577825970362966,6.981690803118391,1291.8472972525817,0.0,0.8853062120971091,43.58785717598941,0.5435970442632663,0.7577004838529606 -1999-06-24,4.576194637374515,20.272386121046157,14.755888182130148,1.4119400198591607,5.849527446615382,1348.3897384308086,0.0,1.2200592220822575,40.115355512646346,0.5206262926382205,0.6789994433306366 -1999-06-25,4.511310983729039,21.479316249196547,14.480771140498796,1.2219791921783347,6.674940284234342,1287.548317582817,0.0,1.1793187892080033,39.46922500782669,0.5123434592146228,0.6215654321437287 -1999-06-26,2.8856438949110617,20.888783786917735,14.331862413717287,1.111822867950181,6.393649638656876,941.355382253911,0.0,0.7081547662725063,38.160422182256596,0.47815887203297763,0.5124369073510584 -1999-06-27,4.038439880824009,21.118872425994834,14.414413457988887,1.1808115928103993,6.493280580078203,995.4402861691814,0.0,0.9416696570517766,35.917719859147425,0.4654622013255932,0.4769554585439528 -1999-06-28,2.078314153913269,21.892046038945065,14.238738172619307,1.3835480393072634,6.995426938865975,665.7565947069838,0.0,0.4548525394717875,34.91591115055993,0.43095767107290495,0.37973360519028504 -1999-06-29,0.2772468012054552,22.27870605133222,13.569892247799956,1.3141250127635573,7.432519456051143,312.8751873689964,0.0,0.053371772255283556,32.04556538199578,0.3765388718469796,0.2553153702763495 -1999-06-30,5.735233100886854,22.83605777523984,14.503792241737216,1.237574917044307,7.421508783904111,855.2378075475659,0.0,1.046491041903705,27.826120429454416,0.39096703975961944,0.3255420269706683 -1999-07-01,9.851195624640342,22.879657134155746,14.357727210960991,1.109897840633836,7.494734094018684,1585.5716290912767,0.0,2.0092921131510035,28.87518203716071,0.4511360729643805,0.5178569662004998 -1999-07-02,10.116770217988076,21.897650131151586,14.202790549454123,0.8095046058731985,7.0104577130816,2013.9780358577702,0.0,2.3813596770654506,33.14034603363085,0.5039161091683539,0.6996977359263797 -1999-07-03,9.15298870695626,21.556264334561764,14.633086401729553,1.2254931897682797,6.657825940285986,2173.288156470207,0.0,2.4039725308020454,37.27675462238886,0.5408750660149079,0.8215106715385387 -1999-07-04,6.3366300029654345,22.563638688135427,14.665049540572989,1.332725941687552,7.2143391324761215,1820.7816557648014,0.0,1.7379654092553514,40.21551012751349,0.5423009058569175,0.7993957443619312 -1999-07-05,4.441953671265399,22.397148217888237,14.489708895485395,1.2356918902728269,7.184562414064667,1398.061713432146,0.0,1.1716899330787136,39.81383059009875,0.5155499151505751,0.6987761594436266 -1999-07-06,3.944941887735298,21.605072633815215,14.751284566927064,1.161882399364814,6.639962234168134,1170.0775801846146,0.0,0.9777771961825379,37.956374919370376,0.48812196383241374,0.6037514599538399 -1999-07-07,4.942755569348568,22.852940501081424,14.934282778051655,1.215502899771191,7.279298080710967,1231.6865697682883,0.0,1.1881676805473003,36.4454471705478,0.4821445324473989,0.5739299060500513 -1999-07-08,10.05867892391702,21.64544351948253,14.37488109382985,1.2993149827016852,6.807378145579331,2108.035325188903,0.0,2.5423141371997016,35.51001406230103,0.530844412649511,0.7607062786453628 -1999-07-09,10.888342763775416,20.18383962072684,13.264608328298097,1.2456984470856227,6.402696564635658,2681.407819853189,0.0,3.112344346810051,39.367802320535596,0.5854500550932705,0.9690844390765551 -1999-07-10,5.482903087598261,20.056367070459746,13.153382960317774,1.0839047267512536,6.373428790889659,1890.0982216149803,0.0,1.6333869831244616,43.624307123830114,0.5720657419212339,0.8795357207664583 -1999-07-11,6.216880810775375,20.964647524786702,14.180040679630823,1.205283494267756,6.496653406653763,1873.8034016452154,0.0,1.8244782983701127,42.70299837936065,0.5698834623899987,0.8503401896381888 -1999-07-12,10.586526249821805,21.568505130308946,14.878607910867254,1.6032379405578072,6.570414453143552,2807.324876018783,0.0,3.275487570281147,42.42875082528534,0.6175920742097641,1.0522728681963858 -1999-07-13,9.273105854878033,22.704941899428547,15.140281699745305,1.283145142803281,7.122981326423186,2891.066109657691,0.0,3.0729543408128137,45.70841344125316,0.6404974644798308,1.1528828749304083 -1999-07-14,9.38990787968928,22.495442839500047,15.243266628592806,1.1587247153597913,6.964856563443711,3031.5520528975444,0.0,3.1957460997153557,46.68167862212224,0.6531960091961097,1.2370721199161765 -1999-07-15,4.662056749248337,22.05201515704407,14.160603101576454,0.9725413022954764,7.114889840581199,2005.8075865635408,0.0,1.5314875107297405,47.718594193238395,0.6101991095547364,1.038467405558411 -1999-07-16,3.856139295606048,20.690741767789646,13.167090946257167,0.7562170912803186,6.720089018004749,1534.1263560338425,0.0,1.1543161890402507,44.62397259324704,0.5647604711551479,0.8517551653255832 -1999-07-17,8.088685344024459,20.280478598341478,12.567928713568342,0.4484833910336972,6.705873220257776,2184.18699041822,0.0,2.3803241240868083,41.85208975836652,0.5817762083829805,0.9168920921024244 -1999-07-18,4.9409747403559265,19.70981444704738,12.56394725049472,0.5177652713018752,6.401473949926792,1680.4453262190475,0.0,1.4387523800941509,43.06440061700415,0.5592301120706796,0.8159249623152319 -1999-07-19,6.77001700832641,19.570578261883444,12.96729895936209,0.6289050405404146,6.178466336328692,1900.0759789547644,0.0,1.9509797598693526,41.761249688031924,0.5653563900188409,0.8281942918874026 -1999-07-20,3.5278837113946446,21.1752379427092,12.943758757249405,0.8953114210633716,7.0594038986273935,1305.5124312273017,0.0,0.9890413139857808,42.4115729405285,0.5351635582614451,0.6897117098607292 -1999-07-21,3.9616284621663267,21.872890742488565,13.311371106662085,0.7744756174433606,7.310714699093906,1186.2217370499309,0.0,1.0267066335034682,39.450575877795075,0.5057227803667137,0.6053011589618967 -1999-07-22,1.043003820162877,22.661781464695622,13.92965363582172,0.947982052690342,7.531251880885897,616.1380559145915,0.0,0.2411802310126243,37.155907009244466,0.44499144158513904,0.4307458584111241 -1999-07-23,3.3742054932179775,22.284034448596397,13.725590274493687,0.7013863684335715,7.39721115298334,756.9668478646139,0.0,0.7005988728258741,32.676354282126496,0.4199646067403503,0.38707183697207026 -1999-07-24,10.415007922834151,21.31124947807844,13.832218327432575,0.3472065275198816,6.832662226313546,1796.5609029081063,0.0,2.3001295535330737,30.978839579980544,0.4822102901125755,0.6021942773947602 -1999-07-25,4.688623663408527,21.086351817680217,14.008428867113352,0.5593648084066771,6.643652194925532,1248.9922059370624,0.0,1.1027299450462413,35.86617600390132,0.4724359510601449,0.5599070960062009 -1999-07-26,6.1362915000569735,21.53891271160355,14.21886686305617,0.8311439181004697,6.821100852814842,1386.785512853303,0.0,1.4509707541067662,35.307666224807654,0.48279404026314227,0.5854049360945456 -1999-07-27,9.266774397193961,21.60937707297016,14.56926259528487,0.7784204744508972,6.730306772204184,2001.028028187163,0.0,2.3424156595716124,35.917304639666234,0.5263639206128965,0.7377384875968106 -1999-07-28,3.896518273644848,21.577063721795735,13.501283195014794,0.7928612195820716,7.099468495146699,1275.5384522174272,0.0,0.9989920594779531,39.11619854922628,0.5010690213388932,0.6323443806920113 -1999-07-29,9.388753005344745,22.913552729039665,13.794764041214785,0.2750372780346577,7.719786948352103,2084.0381865990084,0.0,2.4547088632301435,37.00058328441137,0.5404043513686919,0.7853921590190379 -1999-07-30,4.199772655990505,23.231145313574945,13.871019829655307,0.08595252701736937,7.86577998531703,1367.6755124826539,0.0,1.085151324411659,39.22780569522029,0.5059018771859756,0.6764837019659317 -1999-07-31,2.1835352463664144,23.970512508330692,14.231060839521122,0.4509508260423841,8.146957080818321,845.7418624904101,0.0,0.5068910671235862,36.708576220142255,0.45306675954875963,0.5175407484208204 -1999-08-01,11.231710892201582,22.43171238861555,13.837372319525654,0.5810718002732481,7.4545882664478444,2111.3632026779756,0.0,2.662804312046765,32.80231567398067,0.5129665881834192,0.7423459964180673 -1999-08-02,3.3927087015281976,23.10072825608399,14.21026696131206,0.6678651609450194,7.693907086632391,1178.2836300895626,0.0,0.823549778719785,37.54576862919873,0.4769055359996335,0.608629973360824 -1999-08-03,3.3314080161716064,22.921835269647307,14.129737827598632,0.6096420420038114,7.626113113773129,940.568018376692,0.0,0.7417137344800637,34.81603844465338,0.4443919165445428,0.509126380319812 -1999-08-04,7.897388205270546,22.410972067280856,14.208093897308473,0.8062088334218112,7.324380197878589,1529.6004631924388,0.0,1.7614931817069008,32.56588174310963,0.471369691821595,0.5996307037672879 -1999-08-05,6.252719171452742,22.667826638761305,14.534909486352436,1.0068229383460856,7.354181287403055,1445.8129389162584,0.0,1.4538212749411015,34.708294620493014,0.4771680705103889,0.6116971716446787 -1999-08-06,5.995027772312576,22.08090712141564,14.693796951165126,0.9071564203296444,6.969774899434098,1408.595074478743,0.0,1.4052330822816232,35.09779146193787,0.4787035146501935,0.612153604992326 -1999-08-07,3.367274734037391,21.8201970953759,14.356433966544593,0.9056381409776266,6.950106584577738,987.9749599078666,0.0,0.766870448538949,35.50662542411604,0.45285461013972705,0.5152505802520554 -1999-08-08,4.1695198894268986,21.966422517225624,14.767477543022625,1.0518941511093105,6.880882672168071,978.7897526822535,0.0,0.9064916599872008,33.66104466404698,0.44070045692690735,0.47343065762892717 -1999-08-09,19.22912412741605,21.813680381967764,14.773086698701055,1.0173235583139582,6.793162142161196,3735.590736330713,0.0,5.160279860322007,32.83178303685198,0.606474311079648,1.0939099474434717 -1999-08-10,14.753445884049562,19.796933739669353,14.341163815685778,0.7168084695794935,5.77900759268625,4362.680977312145,0.0,5.123586326592374,44.70130424441681,0.692607574255304,1.4922256700091805 -1999-08-11,9.149900668878768,20.924842135098817,14.377918036182196,0.6861442963137623,6.438516244825604,3599.754984666541,0.0,3.532850244613254,51.82436543877962,0.7103089063459499,1.509297416437276 -1999-08-12,10.893915377858749,20.931034950607508,14.660742161525151,1.3530114533196416,6.32892601272935,4046.5198997852985,0.0,4.339354495526402,52.19086076991271,0.7348949190054211,1.6432125075254742 -1999-08-13,10.070269357489913,20.648363606369426,14.728917556600113,1.6246558002630378,6.132983838599537,4046.7226828686184,0.0,4.145423459664919,53.96204805401392,0.7459331330213316,1.700856072698353 -1999-08-14,11.576663320673232,21.44372826035404,14.899825939094908,1.4019726724117372,6.538546452388386,4618.503535947812,0.0,4.97565262058542,54.953415364239135,0.7750303602892337,1.864793978946131 -1999-08-15,15.194984979271524,19.775879645622485,14.402148547579436,1.0145431141595649,5.748967706581785,6134.289937607705,0.0,7.0599585768732425,56.25333434761135,0.8323245329714614,2.2888762237325357 -1999-08-16,13.353040420429688,21.131402434758762,14.454123072361133,0.7942143775446305,6.54018791444617,6367.852252538725,0.0,6.804228535192964,61.0006363558641,0.8661699796520557,2.525995156525841 -1999-08-17,13.01180920613456,18.929818505582357,13.943056722756387,0.4871845674971746,5.438703638459546,6452.202614555724,0.0,6.705128632620196,61.63573346513625,0.8695933183127449,2.665259013033706 -1999-08-18,4.1453560242303125,21.06475408849503,14.020545539648149,0.3241970250920528,6.67551311939328,3467.9208423339473,0.0,2.0076294856988737,63.72070993867636,0.7905937073026887,2.040649597837926 -1999-08-19,3.9110150996553417,21.11348817003747,13.860711292875006,0.2813612570580259,6.765698198400676,2526.2215216272252,0.0,1.6062939481448995,57.021051558095806,0.7098173113334065,1.5729489607417524 -1999-08-20,5.922753289192093,21.094562797292326,13.679670187311142,0.3965793550380168,6.8243099202062325,2559.1241416685016,0.0,2.1905844366723866,51.74122570648354,0.6717463033282772,1.3574646864127686 -1999-08-21,5.911706599976316,21.160100423682827,12.797804029541945,0.3878020030712859,7.166103344195787,2355.876497236423,0.0,2.0471251376419026,49.133250173748756,0.6412364681318223,1.1953507540111352 -1999-08-22,10.95866215291117,20.80171408676236,12.74617727250514,0.37340035130445787,6.9949422274574475,3394.4652081383992,0.0,3.807569454343078,46.68394059101222,0.6714972844720748,1.357875857299655 -1999-08-23,3.641346507985009,19.187367671138233,12.391085049302314,0.398643281801165,6.244687987229763,1909.8955989266499,0.0,1.2174784754231176,48.9153398581903,0.6122498030236436,1.0692924463981484 -1999-08-24,9.042346666601896,18.106729379522804,11.398904403421529,0.7654534608784662,6.015121919828656,2734.361225594645,0.0,2.985085686082842,45.67971443002911,0.6374749521694069,1.1505825196700006 -1999-08-25,10.897062632534388,18.533141598037965,11.191750951942305,0.802253005453314,6.316778954560325,3464.8852060470804,0.0,3.882405223765078,47.704346813112544,0.6826667332112515,1.3401286922796927 -1999-08-26,10.725931690792617,20.005305269656947,11.864599896908452,0.9818077675593992,6.8732876192228005,3781.326772520124,0.0,4.087250435719813,50.48040070600671,0.7130123214514046,1.4947050516379938 -1999-08-27,16.878979705120635,18.009464786732647,12.50398457227427,0.710533135878678,5.541267836207405,5927.132835619266,0.0,7.192965809908621,51.81407808458131,0.8002276020183845,2.068218042354741 -1999-08-28,9.836140730718498,18.4544901036686,12.435290407927596,0.8410823616019665,5.829710664594697,4787.225026158508,0.0,4.598918651819744,59.334199963928974,0.8057876246290854,2.0465660430159507 -1999-08-29,6.7951408945152405,19.880487733041992,12.720265639721918,1.0500866835739513,6.524973804430791,3625.841987632089,0.0,3.051566412937559,59.239728393431335,0.7692615061869155,1.7968643719799262 -1999-08-30,12.965961347081427,20.441642499674067,13.116417543162198,0.8947128116117238,6.695543537014931,5161.620900794428,0.0,5.805141183380131,55.90894647841776,0.8023460317805081,2.053592756950799 -1999-08-31,19.625970694366018,18.875827078402747,13.12112683120985,0.5014560440116168,5.80336313402257,8240.567692000493,0.0,10.029756420864807,57.70740845616078,0.9008814943579627,2.8639709486780123 -1999-09-01,15.470015507529974,18.78141651040721,11.966087371711064,0.4663771517367071,6.201838404206004,8311.850679114348,0.0,8.938142229677647,64.76564768833931,0.9346911379625719,3.2252746769001313 -1999-09-02,6.540505446105224,20.204438270829943,12.332509430396163,0.6060521470459795,6.848402380490393,4898.056402313504,0.0,3.4190758929090093,65.62062000646826,0.8406282415996558,2.620107040806109 -1999-09-03,13.478531325072293,21.364981167256673,13.205128504235676,0.9041326146631584,7.184147610580442,6300.530976581436,0.0,6.6645835514898515,59.712456070658085,0.8526254357805498,2.720347838874724 -1999-09-04,6.740883466793581,20.67714260581559,13.266501080711658,0.3375169189007284,6.78868223146207,4180.353812986679,0.0,3.069164271246149,59.837648572203946,0.775594809050097,2.2381441872368826 -1999-09-05,9.480174798831284,20.91198085449064,13.273540657336627,0.3038840047182484,6.919715416323478,4320.397468521999,0.0,4.0634843639745295,55.9296365200514,0.7619800041574417,2.0756521966119794 -1999-09-06,7.820581114705283,21.37049649674839,13.375834391928745,0.568060264683113,7.1397772639571695,3693.9981716473667,0.0,3.201580257105447,54.89415333726252,0.7305841838538967,1.8386399148223003 -1999-09-07,5.149478312775899,21.95347739535772,13.278910927631928,0.6437838159786357,7.492446101958964,2660.6451380025237,0.0,1.92712211442256,52.60680331248886,0.6728215664525687,1.4903009794029989 -1999-09-08,11.242804428401177,21.46252375078776,13.728557471790388,0.6966370184052028,7.074150127886558,3773.62226269161,0.0,4.096688295363192,48.41880476155963,0.6950173422298529,1.5938972060121828 -1999-09-09,3.9860442751672855,22.107581313936283,13.191321486991214,0.9974502884556576,7.611218287819589,2192.731680565429,0.0,1.3898966423245844,50.38120410148288,0.6333416242726474,1.2491844644181833 -1999-09-10,4.692442618447764,22.35927935122926,13.26918907546572,0.938472853399514,7.724878205673634,1867.1226013583132,0.0,1.4609928860870696,45.66510805840484,0.5866313615711279,1.0356181245434835 -1999-09-11,16.560818408696722,22.124229588100068,13.109645670120075,0.701025181277909,7.654208074270365,4393.658545050201,0.0,5.552740545233544,42.39482869566087,0.6867933620336641,1.5196255026188152 -1999-09-12,7.500587293966067,20.644429959766413,13.101739322626898,0.7730316255252356,6.858139429555324,3050.4768992056074,0.0,2.6516599686377127,49.139384824506564,0.6598173167004998,1.3929591825002186 -1999-09-13,1.823524866250642,21.00707685444207,12.913546480872778,0.5780941955522021,7.125893609935789,1468.4659811431393,0.0,0.5857089133345055,48.288757587383344,0.5837741528744587,0.9959337933477352 -1999-09-14,12.025028156869958,21.67013745689333,13.121796908422189,0.3700142504837583,7.419217910714507,3198.303857264631,0.0,3.830875764127029,42.789428440951326,0.6385512971849562,1.2316135184692254 -1999-09-15,8.298107673810037,18.801057046957126,12.074714341101565,0.11943031627063168,6.21851135386558,2824.5322068273485,0.0,2.751063776504509,46.223846716199844,0.6351438445562119,1.2206126156033774 -1999-09-16,1.4887609832762645,19.324186166765802,11.902099428997342,0.2000456292045923,6.570291480363715,1274.5780352272998,0.0,0.46397000053595105,47.31482222643221,0.5685286929775375,0.8652077306871275 -1999-09-17,2.0914759705694617,19.20206876574042,10.973109307638333,0.5978127317926362,6.81319781416942,977.2648924483125,0.0,0.5720829267171434,42.261825849849686,0.5166859286714198,0.6503176447790435 -1999-09-18,1.9395243831422475,19.487873382701636,10.669864605559727,0.8335614755587917,7.054922046512781,767.7195192912112,0.0,0.47191385313830936,38.35359612195889,0.46938756603827664,0.49518207745584913 -1999-09-19,12.372407249056295,19.79728236905686,10.87579912592396,0.6511306734716883,7.155841077066131,2422.420487022604,0.0,3.1687025290176116,34.77249509519453,0.5492061842090031,0.8048220295494564 -1999-09-20,8.464335186941488,19.24566460739629,10.46070053356516,0.3952887455832364,7.001267014455574,2279.3225435662607,0.0,2.4023612354479322,40.351024552876396,0.5686658815778529,0.8896963023243375 -1999-09-21,4.4439320379902565,18.272474777355708,10.218231474539547,0.5340207745038039,6.582727550650663,1544.5933490345105,0.0,1.242667707449547,41.85828871754329,0.5393895143925467,0.7683649932400634 -1999-09-22,4.153362191855466,18.172540923680703,9.880135397466947,0.6573884825285762,6.637488858936868,1304.1297162343537,0.0,1.1024994999128825,40.17731383773728,0.516422353531233,0.6680413333219727 -1999-09-23,3.2175810805689258,20.02880813615701,9.95806622011592,0.4654537119798944,7.5412612838095425,1028.629533806919,0.0,0.8013950834599859,38.48496748635395,0.4858064484467711,0.5568877503640238 -1999-09-24,0.12462929377580224,20.19552211815233,10.701032990321284,0.6887068639875381,7.428167313019535,431.9500967296246,0.0,0.02698180573779553,35.562914333062636,0.4157357144569079,0.36661613028338136 -1999-09-25,2.3128014424275896,21.451409376719948,11.61842927119973,1.3623502516605197,7.8109998949258515,531.1568364165607,0.0,0.4393612577008219,30.654394993311925,0.38404551199052583,0.30554911194168943 -1999-09-26,0.1962189282082229,20.943831352905146,11.015985590353566,1.1690864155859426,7.726202884855896,246.02981027203597,0.0,0.032572148405376644,28.13905647224172,0.3300867688209364,0.20385770184265686 -1999-09-27,0.2676682841639079,21.35637432873255,11.134794618839388,0.7689042491051188,7.9059266677159545,161.30442448833054,0.0,0.03784831326569543,24.303469168313477,0.2862371109269178,0.13846474740822584 -1999-09-28,3.589594316472524,20.993497782142487,11.367433918386832,0.2208527075838632,7.661965461743283,400.5406211019742,0.0,0.4713911483438262,21.042777631875552,0.28695045133376684,0.16191030882684454 -1999-09-29,0.34572253796807656,20.367473193434535,10.95918632179449,0.380620085766366,7.463886511508815,160.51505931108542,0.0,0.042238495788734676,21.20231232162513,0.2510200130658013,0.11182743622686876 -1999-09-30,0.4431742899675645,20.997653537996555,10.999722044349566,0.8757020451781671,7.775890570543384,108.30004192572578,0.0,0.047353529923191695,18.654632118379638,0.2224765109852788,0.08000467956969522 -1999-10-01,1.6287262825136328,21.103361466783205,11.35892586720591,0.9911220935770252,7.734017988198882,158.49016684350687,0.0,0.15819118292194512,16.448219036268895,0.21058417065305554,0.07616623070808694 -1999-10-02,3.075147720786993,20.29170432871716,11.44142994976282,0.8833155736890828,7.295968065347599,252.50523060250012,0.0,0.29623659901399524,15.59028909872845,0.21743969809050642,0.09468703482499437 -1999-10-03,2.630540461686884,20.131463715737084,10.87795664630265,0.9919075856542242,7.38448624177646,249.45036186288522,0.0,0.2600967730989119,16.237670647505762,0.21980188123972846,0.1012403854449545 -1999-10-04,0.7757837619891477,19.495008323567735,10.492243650778976,0.5883759625958539,7.176203981650966,130.09022031591164,0.0,0.07306437391919096,16.382950440711234,0.19988763299391535,0.07702786292185997 -1999-10-05,0.2816989371846886,18.855022458724207,10.402151374249783,0.7128995335848309,6.880240412491585,71.15532007406543,0.0,0.02376388801834134,14.973572202174498,0.17771357739471272,0.053759921462768534 -1999-10-06,3.1261945760870447,19.7697965021798,10.44341766435558,1.059137961968635,7.337856953085346,207.31081385459117,0.0,0.2610477168432972,13.40286403932084,0.19255233883928344,0.07474355345366743 -1999-10-07,1.04176530546099,19.88718215180696,10.668694906757803,1.3777450537723368,7.337599511365109,120.48712940248646,0.0,0.08658193435864492,14.381134336902443,0.17966633593109466,0.06183791891589457 -1999-10-08,1.7335306920053386,20.261934641542467,10.681475911641062,1.4233032612195062,7.528526623475597,136.52151897944262,0.0,0.13787815590426633,13.42542925185921,0.17659161719235653,0.061247564916283186 -1999-10-09,0.7891295375963386,19.6635944072156,10.192576978966393,1.0606907535480103,7.367439387788676,87.06765762866117,0.0,0.05930058169506991,13.146486814957909,0.16234049284270557,0.048898675724249954 -1999-10-10,2.416783043854548,18.91814243303798,9.86821617969466,0.6953061653342107,7.088260444520817,152.72281032862455,0.0,0.17880682813106308,12.131360774560909,0.16947602299594322,0.05905672072098071 -1999-10-11,6.988017412029135,17.765545605871967,9.585829092805277,0.8383246398551845,6.592542425365391,464.67844413308256,0.0,0.6361356373353413,12.732319837771323,0.2297285736895439,0.13530419781869485 -1999-10-12,1.001818417516071,17.376159751299845,9.430322935866707,0.979999748573647,6.445149907428281,191.8342927922671,0.0,0.1010974127381925,17.3929449042426,0.21428653515076754,0.10347024806493255 -1999-10-13,0.8016440067274251,17.682272071790678,9.322038640095203,0.8257227168735546,6.635923460441575,125.16080482605712,0.0,0.07507461701691454,16.281072552496468,0.19900207892909982,0.07878548789249029 -1999-10-14,1.3901154862243987,18.079671554925557,8.262788280238738,0.7350419281936031,7.118968442227509,136.38004307250344,0.0,0.12261913458968854,15.070428514498275,0.19175418997858476,0.06995622437053796 -1999-10-15,0.2854366368538658,16.46235174949632,7.232448662767003,0.3732675926080908,6.611655791666772,68.11315471511027,0.0,0.023095420133177114,14.385336947602607,0.17090457672135023,0.049054833022204515 -1999-10-16,0.5393107356731264,15.303798123279574,7.35569969541183,0.21120853633751288,6.031786321582439,59.684394456346034,0.0,0.03955541513832905,12.961489164604098,0.1572751756458935,0.037955287019746 -1999-10-17,0.9405474778222878,13.368256534903226,7.711370564894531,0.27337348685420804,4.953532801266384,69.74765552208464,0.0,0.0652216978123572,12.070124925913053,0.1515655222418812,0.03463807495104576 -1999-10-18,5.909758888254858,14.606084543802302,7.114415968516632,0.26505232319044914,5.768321919234802,346.07442021300426,0.0,0.4891792468232907,11.879178788776574,0.20722907667504373,0.09703252568452336 -1999-10-19,5.482221785591806,15.894505892847409,7.302940485944777,0.42871126201420784,6.3400809558670925,470.95631870612243,0.0,0.580351714130904,15.961759484405217,0.24980785921556986,0.1515307355939537 -1999-10-20,5.572713335014581,17.31528856015045,7.0146257775724985,0.6847203680624779,7.079871313871957,588.7054665342041,0.0,0.6952842079908388,18.995307240927087,0.2862008014261295,0.20450667889519678 -1999-10-21,0.08518329201371601,14.508650149940273,6.4479130605118335,0.7341124022032552,5.9138097744338065,183.0135763570566,0.0,0.010445240720527674,21.40461319574662,0.2503415754749177,0.13471467835212195 -1999-10-22,0.0,15.17791176083987,6.6147081966343375,0.6363254451474948,6.188961993146292,91.5864113271732,0.0,0.0,19.199224381128627,0.223657961684546,0.08769292401734884 -1999-10-23,0.0,15.556896127941279,6.314560570622495,0.6614574840458289,6.442169152681475,57.341021608362986,0.0,3.552713678800501e-15,17.07466735427603,0.19890831114264748,0.05708397196786582 -1999-10-24,4.74869949693821,14.885747836172634,5.137818208802962,0.8088489458036368,6.406903337550512,342.9348826313543,0.0,0.4680584287052785,15.121732314738816,0.23147707368635861,0.10842779311301295 -1999-10-25,0.0045618049112274,14.841734689870341,4.114033810765407,0.42981147007771614,6.595836096690963,98.0246678288373,0.0,0.00045205964600927677,17.589737139664326,0.20496166725777917,0.07065022996959128 -1999-10-26,5.994124302273719,13.123587652074265,4.2291385817440865,0.4805818651657836,5.83263666103263,458.5260781242853,0.0,0.628262510403089,15.530889061717815,0.25075182823296704,0.14165222756096196 -1999-10-27,24.601526697332048,12.656693089199612,3.9833041333550567,0.6279255649976409,5.685311977333016,3182.3179782099173,0.0,4.6743474589769,19.26166089589472,0.5109764298463427,0.8039473963636095 -1999-10-28,13.041391388078113,11.91068437167041,3.7030814488792836,0.6154946932948041,5.424874192193913,3275.9051725589466,0.0,3.7943060408546945,38.90141436372752,0.6050985096066797,1.1010711167874312 -1999-10-29,2.310501386855538,12.6573188300303,5.152682990579591,0.8083011393158278,5.4127571276278355,1417.4941943612573,0.0,0.7035178423668604,46.03298617248921,0.5631688902429322,0.8238665311219001 -1999-10-30,8.220162153971858,11.643059525982814,3.756046876500005,0.9672459835739091,5.301326367143719,2228.110744318972,0.0,2.499286817288949,42.98742192834369,0.5965336750737757,0.9168517294549241 -1999-10-31,3.4755231702958733,11.899105142019895,3.4727862642576803,0.35125357016033665,5.479590722694552,1439.1372729374887,0.0,1.0608938580413332,45.539267040037714,0.5709891114983894,0.7583641461140592 -1999-11-01,7.5438267871922555,11.550670090430524,3.861222224236685,0.37493783412585147,5.241411273237701,2071.588045798773,0.0,2.3037607524648998,43.49530081840343,0.5945712712043383,0.8444410235880477 -1999-11-02,1.282332518866553,10.886947235163897,3.7735214856788697,0.4033892313713797,4.969628953050522,936.4275660919218,0.0,0.37908012461762963,45.457843017528866,0.5444913909919914,0.6074119666794002 -1999-11-03,2.593736863064639,10.577483908874028,4.100959031049678,0.5675036416554792,4.746107836726726,891.6838970283058,0.0,0.7097404389028954,42.02301458622016,0.5197549384308222,0.5034651086294747 -1999-11-04,0.24380594863295935,12.004491270407465,4.098400936655222,0.6240937098740134,5.395169345071414,411.4106519701283,0.0,0.061436828223675466,40.36735450837279,0.4730925160906941,0.33708678754932736 -1999-11-05,0.0,13.434933367995276,3.868359708173648,0.5214930907473817,6.075648719269989,226.31664479234527,0.0,0.0,36.32332314633671,0.4231421152879504,0.2194276556155973 -1999-11-06,0.017298220488110038,14.387530676025026,4.0829404143540176,0.4601682872100977,6.448034564256908,145.49475053870887,0.0,0.003321617815428956,32.10463901885744,0.37419881479027783,0.14334285608796787 -1999-11-07,0.03203744782076457,14.395997921210055,4.1359293527466985,0.6296318651589291,6.444633254074985,97.008681431162,0.0,0.005321977944325214,28.239131921200258,0.3293399769695338,0.09411981196162346 -1999-11-08,0.019859580111881332,14.816178085357802,4.136126817261219,0.7457235875095899,6.629559684390935,63.46699819892305,0.0,0.002869020898288728,24.908117522457253,0.2903940511867647,0.06170442477111975 -1999-11-09,9.642897287074836,14.908546030113564,4.2967790956374445,1.1567358016748408,6.642236801549977,1025.7010781303882,0.0,1.5083627993130708,21.916331702100333,0.3676436447606026,0.26983719937049505 -1999-11-10,4.4601097937186305,12.556442275190909,2.219307042878436,1.037934693907648,6.028782776975333,778.5584655300087,0.0,0.7889870580277334,27.64052191169189,0.3739506197487535,0.29578626958244497 -1999-11-11,0.4901821025202721,13.533973869900713,0.5356492558972348,1.027834762723656,6.668838778768483,299.2211162452211,0.0,0.08291482105337872,28.469349080121678,0.3373589259166206,0.20516796593377581 -1999-11-12,0.001162178684425833,13.572547461322095,-0.0556469239901383,0.935985077583798,6.7557058166601625,142.4418175839263,0.0,0.0001713874905369373,25.38681623088801,0.2957527548851136,0.13358079920579824 -1999-11-13,0.0,13.383058901656232,-0.5987757553221114,0.9208028170244418,6.743870164607821,87.58821742734357,0.0,0.0,22.2578547872103,0.2592889345087923,0.08695482198541199 -1999-11-14,0.0,13.589136016826416,-0.6238724881998347,0.5822115874530083,6.827959442120615,56.64264828150957,0.0,0.0,19.548364840745833,0.22772521158951323,0.05660350223586989 -1999-11-15,0.07920606686557234,13.455393637392756,0.7600297773582977,0.5769759186283433,6.622242105153724,41.854356328748594,0.0,0.007663068132162595,17.160878140619047,0.20083530545671313,0.0380130349191175 -1999-11-16,0.1796703057884499,12.428268550305441,1.290483395015918,0.5589181976170575,6.143610460747686,35.22048853110021,0.0,0.015355784017310636,15.212424754104626,0.17930748340720648,0.02708284408441953 -1999-11-17,0.03490111742901753,12.140733414658511,-1.122942210158958,0.7862578871565706,6.339957124995115,20.29413654381375,0.0,0.002662889992782809,13.721436601653334,0.16025201817623272,0.01803512294505424 -1999-11-18,0.0258990729277878,10.66129344197734,-1.9598649841990692,0.9332716425323024,5.879730906497757,13.108899763074136,0.0,0.0017504555963801932,12.223297465857812,0.14269484411208977,0.012006550110148716 -1999-11-19,0.0693029275136848,11.106459371417378,-1.303391777720896,0.8350461132850562,5.977820694616069,10.678342919016176,0.0,0.004201506983279341,10.988381088201272,0.12881453015036895,0.008455441320120296 -1999-11-20,0.10839363613536006,10.95646567338156,-0.09324677159191,0.8138324154036928,5.774844238776429,9.62052948504566,0.0,0.005914832239042031,9.904550796594137,0.11664402154110635,0.006404715480743266 -1999-11-21,0.4001051775560993,11.866580345209975,-2.3715163476022387,0.8409350727774355,6.364851899712112,17.68333715839624,0.0,0.02013267932535867,9.00707561001566,0.10958728531837901,0.007234666599868592 -1999-11-22,0.9478428113725774,10.394288175635763,-2.557132516957167,0.5976872380218481,5.849623680352002,35.787183407631396,0.0,0.04574389050113736,8.367669072177897,0.10851940466777267,0.011674611021785457 -1999-11-23,0.017948059961892148,12.366535396139385,-1.0242734928345412,0.8195753427952506,6.4305246268247735,10.879972907483326,0.0,0.0008194869491655148,8.369462994019102,0.09770765854414912,0.007724402062599755 -1999-11-24,0.019781555792343367,12.673240993550131,-1.104695000021896,0.7900556033587586,6.556789984016605,5.810370906439111,0.0,0.0008020651398595348,7.453642698374688,0.08706033130868529,0.005150348962155032 -1999-11-25,0.23161508346179194,13.414583861062068,0.43629607263712894,1.099900084809282,6.674114577846229,8.945333953710337,0.0,0.00846379081212778,6.627183391840328,0.07990035723000213,0.004641372293081706 -1999-11-26,0.2585622165345236,14.82290603187967,1.8231233408991598,1.1963601702825932,7.059809203623125,9.180615247172199,0.0,0.008670138929258275,6.06956689742565,0.0737184185573732,0.004341471952593063 -1999-11-27,0.0027215163880073517,12.831899815768573,-0.9855017493480268,0.729642876039982,6.61218762251198,3.420491838228644,0.0,8.168395684040762e-5,5.55903556460212,0.06479070338599364,0.002838531781086839 -1999-11-28,0.5047212924510819,10.634860892911108,-1.4837387546018168,0.7822517987591507,5.842683215875754,11.105141274145762,0.0,0.01410078971520956,4.929826401810894,0.0633088001810535,0.003994804320921789 -1999-11-29,0.6352457964251456,9.678928032714998,-0.5401269349004734,0.8121840582372493,5.365641697536043,15.070496032211153,0.0,0.017832627146933677,4.888998104575397,0.06435370024429263,0.005315710778250296 -1999-11-30,0.0,10.767864134565515,-1.462362649314931,0.6071573167370313,5.893791806270741,4.557856923499382,0.0,1.7763568394002505e-15,5.014784300189513,0.05841884091789107,0.0034602778782346355 -1999-12-01,0.0,10.485537040015386,-2.4036291451890532,0.6713688706576197,5.887544881365889,2.336373476585977,0.0,0.0,4.507527456695771,0.052509642222455126,0.0022524782656704705 -1999-12-02,0.1145446668443574,10.815540907117818,-2.2932534733072027,0.6881137760891409,5.999264556867552,3.123673484458074,0.0,0.002528951813421193,4.052656585317831,0.04854507241990436,0.0018513277577910053 -1999-12-03,0.06620817758670895,9.981029775449695,-2.581268997889792,0.5444491683844299,5.725240473758269,2.2275711967137646,0.0,0.0013401477984018723,3.739075647233851,0.044328979493936646,0.0014091846579728112 -1999-12-04,0.8122318847953062,8.991362952876196,-2.129233795257517,0.4913378210815005,5.3209543824260885,11.938463205454667,0.0,0.016734830740647966,3.4325207553579795,0.04944849356961212,0.0034654381813999414 -1999-12-05,2.72237714455136,7.583735360200203,-1.9418836787822995,0.4708771232381129,4.784483927098503,53.2967641967218,0.0,0.07663731682437058,3.857837519497102,0.07665504449515287,0.013925001015527612 -1999-12-06,2.605649231204819,6.413884120680501,-1.1903324509907924,0.5047557201109285,4.232636460722351,81.45100172841462,0.0,0.1038895752687492,6.0374799084181605,0.10068660106105504,0.024883243761684236 -1999-12-07,1.1369336917237658,6.816450398539628,-1.6383977566582515,0.37874201108595296,4.459343056075908,57.312054661836434,0.0,0.05318118834395902,8.00872719777453,0.10654075561582742,0.02429544373735838 -1999-12-08,0.13206177958709492,8.287635327924923,-1.5351285346201318,0.5784459278460559,4.993464039669419,23.386564924106786,0.0,0.006122428721631323,8.437482200973482,0.09982938379230398,0.01674742220550926 -1999-12-09,0.0,7.888572808129719,-2.8534239343802947,0.5739930632193166,5.011418190053827,11.526145270041537,0.0,7.105427357601002e-15,7.827878128157826,0.09118947889268325,0.010901784726943952 -1999-12-10,0.15482891876899196,8.725343991039963,-3.0116234536360897,0.4784679904006469,5.327147222269974,11.10872811576261,0.0,0.006073691814185489,7.149363481275957,0.08508889481762344,0.008021358777563258 -1999-12-11,1.8080347340993388,9.142792608082802,-2.8512752321031147,0.6562518522299918,5.461774191489308,53.95046923864674,0.0,0.0740507814607021,6.632223319234245,0.09832329029685484,0.0164968529758479 -1999-12-12,0.09540501423264944,8.782868342158213,-2.7536963136196118,0.4656347496892664,5.3242463851505635,17.66638978057777,0.0,0.00398844587865918,7.641720635710002,0.09013227398208394,0.011345975740766137 -1999-12-13,0.0002736361457886768,9.88449823723608,-2.3299050186592174,0.6807279931787477,5.680397457127482,7.957074050087846,0.0,1.0427477321824617e-5,7.024877197793471,0.08183824954875486,0.0073872846838443276 -1999-12-14,0.31198085272623605,8.72750351943522,-1.9016141857271285,0.7618343117525603,5.210558582509148,12.013507962807843,0.0,0.010967953325764557,6.336599839312004,0.07745146242147764,0.00647880804814074 -1999-12-15,0.09816599260236772,8.994981134864382,-3.5363696570810834,0.8105398760991314,5.4763694801341,6.97144688878708,0.0,0.0032383719621536244,6.051345396735172,0.07163764303140471,0.004710489506452954 -1999-12-16,0.01371437228641293,8.51837505744618,-6.100250437597988,0.6774932808448203,5.47789823525619,3.5730582671900373,0.0,0.0004128472022596544,5.569747212483941,0.06504354615601884,0.0031291693611513807 -1999-12-17,0.15210929380431076,7.37082864153491,-5.952734566383338,0.5374092556375805,5.092960669785839,4.8281888262822585,0.0,0.004209148440679489,5.057702056008343,0.06069077396717284,0.002677847214193203 -1999-12-18,0.0003918646839947706,7.528066636290483,-5.313914668711152,0.6102731989905693,5.108437909489615,1.9967963556310129,0.0,1.0029491820719128e-5,4.754111001378419,0.0553867384815855,0.0017446798159141894 -1999-12-19,0.0,6.763538419891537,-5.156270849013488,0.7428550295938804,4.843367186863021,1.155310811899589,0.0,2.6645352591003757e-15,4.337862988324362,0.05053316606836944,0.001135704560209195 -1999-12-20,0.02013390551881251,6.5589132335246445,-4.966888461808778,0.7770365698516244,4.7613831180845505,1.0222074755590156,0.0,0.00043114990403898476,3.9778284545537765,0.04657355394128729,0.0008049392327674056 -1999-12-21,0.4986083905681687,6.790408200065538,-4.634015444132452,0.7774719968079046,4.812975693917351,7.406232431824163,0.0,0.01049695995804073,3.672038578925754,0.04858521269326428,0.00212229483159438 -1999-12-22,0.0,3.7167559928135097,-6.701834406042125,0.4832325577091432,3.970823974785805,1.9922661103719779,0.0,0.0,3.82681065710323,0.04457975251134039,0.0013815141875108564 -1999-12-23,0.0,3.420935998708168,-8.581379427335818,0.29641435929953264,3.9781387622625908,0.9464137099481825,0.0,1.3322676295501878e-15,3.5667159978617335,0.0415498258759619,0.0008993008049029574 -1999-12-24,0.0,3.870057119333918,-9.482102059300564,0.3929396521487533,4.134056711197866,0.5884319004903431,0.0,2.6645352591003757e-15,3.324018319231601,0.03872256228288984,0.0005854025568544005 -1999-12-25,0.0,4.70998644085125,-11.192815354992941,0.3908307205945832,4.38106826496648,0.3812448763256018,0.0,4.884981308350689e-15,3.089124678972416,0.03598621045168404,0.0003810695505927864 -1999-12-26,0.0011295423007104026,4.984169123986532,-10.42208680152025,0.5206306679628255,4.46724243579122,0.2593521065129255,0.0,1.727395249564046e-5,2.8579358545353735,0.03330617561862079,0.0002506885816193055 -1999-12-27,0.02788175402784221,6.2854640787292295,-9.08614120850994,0.5696570199342668,4.85271952172056,0.42272587936225337,0.0,0.0003957683618507346,2.641016902248224,0.031090861878360878,0.00022344806397341978 -1999-12-28,0.03250800853037924,6.7964058233276194,-9.410244837254204,0.7695179225291527,5.011475115711959,0.4480848153900004,0.0,0.00042800991143750883,2.4479076273674805,0.028895162337947547,0.00021062501951315003 -1999-12-29,0.11997946913556636,7.742654632015679,-8.234442810531673,0.6962044756354044,5.296228256280389,1.1383637935076658,0.0,0.00149200275596785,2.2684174298062647,0.027823206370569977,0.0003642864489964821 -1999-12-30,0.05657841253787781,9.147127391105473,-6.427521134938769,0.6880559406365978,5.707638763144505,0.7599875953413237,0.0,0.0006648089687219458,2.1727213206051523,0.025969832134925135,0.00033836034341810445 -1999-12-31,0.0,9.44749891867974,-7.251801349004045,2.6000595584763705e36,5.8294888893098715,0.26562387355906325,0.0,0.0,2.0124486873561387,0.02344366431027434,0.00022025668062904534 -2000-01-01,0.0,9.62610965279178,-6.3986460014331605,0.5114198130040744,5.866536233012897,0.14678974459027927,0.0,0.0,1.812621759868562,0.021115815934509397,0.00014337674702551896 -2000-01-02,0.0,9.309853704860993,-6.4623266935410095,0.6567844109982586,5.763213934162399,0.09354819546047402,0.0,0.0,1.6315824632966411,0.019006830735301072,9.333152360650263e-5 -2000-01-03,0.047782705274462836,9.485658307994846,-5.742342146342889,0.9618057094021524,5.7948431330863235,0.30940131205146776,0.0,0.0003806094744971539,1.4715646443629995,0.01769936767053691,0.00011870785044986632 -2000-01-04,0.0014120802949391688,10.24416733728752,-4.8680923551435855,1.2625940540892184,6.012270914014529,0.10607890821782598,0.0,1.030207673175204e-5,1.3695607532871885,0.01597090504266713,7.884187474692325e-5 -2000-01-05,0.0,10.351419618723114,-5.340731273534563,1.1286445486264047,6.071760835240461,0.05362366340741362,0.0,0.0,1.230795369853202,0.014337932523082573,5.132235489213394e-5 -2000-01-06,3.053617063880021e-6,10.247181242920275,-5.309306125790193,0.8349333134331738,6.034409699200407,0.03357585157140672,0.0,1.792975146625045e-8,1.1037490632030351,0.01285796466317846,3.341117095363281e-5 -2000-01-07,0.7390008301556845,7.850040481834007,-4.6137031300272175,1.0778638364972386,5.174411065893078,3.517798751259075,0.0,0.0053517353297239945,0.9905550566241054,0.020148154768007118,0.0008366298660854544 -2000-01-08,0.018385613325727558,9.558549168917008,-4.805180206913508,0.9431488211873004,5.771485114032432,0.9565216183947808,0.0,0.00015540153148167063,1.577215569914389,0.018587673190366437,0.0005682689001033075 -2000-01-09,0.050595135690004914,10.31855405074278,-4.138064212078014,1.2300624254282853,5.994489877410291,0.6606262878767923,0.0,0.00039454859365246897,1.4389015663778058,0.01735162784220539,0.00042999219730394643 -2000-01-10,0.03234878248527122,11.025946471664216,-2.9121014219958927,1.2730648083743792,6.157889913997918,0.45733373272661276,0.0,0.00023315451007548116,1.3376069942721234,0.015959057019443824,0.0003154059293178658 -2000-01-11,0.04882292212278831,11.656527903065493,-3.0425956664967844,1.2375657573183665,6.395563472612039,0.4330730577482123,0.0,0.0003250433914956802,1.2264913461833662,0.01485654754037544,0.00025480709406673434 -2000-01-12,0.03818384571310182,11.698068427913507,-4.602346950192959,1.3345308029595797,6.503020146525723,0.3392683616821632,0.0,0.0002347999816249835,1.136639888752038,0.013685900876671413,0.0002016192081619432 -2000-01-13,0.0038705983197900935,10.909005686944315,-4.731635519030996,1.4983690037776958,6.232362282131488,0.1604710716167532,0.0,2.155221707756576e-5,1.0449622274089454,0.012218192115141156,0.00013452627184750877 -2000-01-14,0.0,11.29569907127613,-3.86912634689374,1.6202799940947772,6.319579102688948,0.08996919781116951,0.0,1.4432899320127035e-15,0.9377553580662665,0.010924214842242153,8.757028023817115e-5 -2000-01-15,0.0,11.478967549141887,-4.7059106927449434,1.4143188528182509,6.42866907335402,0.05717385964781164,0.0,0.0,0.8370791133047694,0.009751404772084138,5.700413663187822e-5 -2000-01-16,0.002886863738571989,12.286880708545734,-3.793222683637838,1.2947007730587659,6.667092360482309,0.04460421326701354,0.0,1.146075475293596e-5,0.7456824803787673,0.008720325902820642,3.8852082971617946e-5 -2000-01-17,0.00504575796521127,11.253390580674054,-4.209521559970593,1.2654881622555558,6.321979160517139,0.03762399936202109,0.0,1.786108676753162e-5,0.6638240219245013,0.00779187995477398,2.8010494285421513e-5 -2000-01-18,0.0,10.404215516086506,-4.981126495427398,1.2176763498006966,6.065452261716265,0.019320782511449978,0.0,7.771561172376096e-16,0.5970797466479453,0.006955574686114185,1.823351528669632e-5 -2000-01-19,0.08779518607165684,9.390615931009405,-4.176486834515891,1.1011305318693196,5.665801416480452,0.18846283502289882,0.0,0.0002702020670713179,0.535605450175523,0.007262195224560265,5.3011417831827424e-5 -2000-01-20,0.15390755750622975,8.929638541724788,-0.5353724664263112,1.5757312784831468,5.100179890537207,0.39219483978708747,0.0,0.0005235487372895475,0.5634410032586655,0.008356624920521276,0.00011422597101023688 -2000-01-21,0.09605485571580627,9.394733685908113,-3.392985358164609,1.2355953765806864,5.604723574866228,0.340379013885944,0.0,0.0003588927280935017,0.6552254979233054,0.008751907327763153,0.00012900245821334487 -2000-01-22,0.19412932195305616,8.480428188381545,-3.4855934381309,0.9843065036251406,5.2893780070179055,0.6307465709939756,0.0,0.0008014271791638161,0.6797777292309769,0.010180425307268747,0.00020600366454048914 -2000-01-23,0.05582925614631446,8.906491440799723,-4.320064272906045,0.9547558311926138,5.503896420676532,0.34193176375385176,0.0,0.00024429867204018435,0.7953888419285239,0.009916114369263011,0.0001712967852396084 -2000-01-24,0.013618936399495768,9.133274476420072,-4.859414666993753,0.6155035095949761,5.615786467870655,0.16617897032458365,0.0,5.633927282225337e-5,0.7716417614812652,0.009147755325555014,0.00012008464281863983 -2000-01-25,0.0,10.179496179822994,-4.726871223857239,0.7920032258614929,5.966210008476381,0.08276788508088224,0.0,0.0,0.7103703502602476,0.00827533349401921,7.816945849672204e-5 -2000-01-26,0.0003233887125302384,9.486896815221249,-3.8538557184759417,0.7603893944076149,5.667649347329786,0.05193744881210978,0.0,1.0969232002735704e-6,0.6384087255241572,0.007440796560149385,5.105166627869638e-5 -2000-01-27,0.11408137729291926,7.986100025987028,-2.2340321964045966,1.1484673295040628,4.973756072644956,0.2844137704848851,0.0,0.00038437899127366504,0.577275562906903,0.008053840143331197,9.175961509833782e-5 -2000-01-28,0.3670439850405231,9.552542126973252,-2.15955572206407,1.1802448903117313,5.534282754386335,1.1225778189692779,0.0,0.001592868469803832,0.6329723772941052,0.011649513376738264,0.00030226895239800114 -2000-01-29,2.258296690428815,8.513493987047278,-2.230833686343311,1.0633977141944202,5.162422369349562,16.32117731740609,0.0,0.024539187888964697,0.9059794816534842,0.03686167445131456,0.003933216750225448 -2000-01-30,2.837526280655005,4.117196113372726,-5.541862033068734,0.9092913729818152,3.9929051485333713,46.89792175025161,0.0,0.06568214114357396,2.8852062299974373,0.06666595812362544,0.012561415542110148 -2000-01-31,0.019172143917667483,4.965852161618606,-6.635105890331796,0.7157754713895434,4.343344841659325,12.457418130695931,0.0,0.0005521387942845728,5.329634865670745,0.062309979271060086,0.008260962419454555 -2000-02-01,0.3571786265448805,6.6417119813907135,-5.4105687689795765,1.039825249268003,4.8040212967905,12.160160024989555,0.0,0.009872932491475084,4.949587875005847,0.06182023582365636,0.006880798092614122 -2000-02-02,0.5774500989836657,8.69568788927921,-3.991790012977736,1.1064381922231048,5.392088047620266,15.56119740347789,0.0,0.01605457270425803,4.86877579666612,0.06344484331835369,0.006923622026156917 -2000-02-03,0.1761482723801186,9.647583947424456,-4.024937048344912,1.3346868401880498,5.72328934918439,8.602127913349898,0.0,0.004773871840428157,4.941592658893863,0.05961821594435797,0.005233845039999773 -2000-02-04,0.03544121643405019,10.042040738027973,-3.406436187355204,0.8600418564942472,5.813801168823504,4.335808410065354,0.0,0.0008835173329527837,4.614890838614358,0.05417321908122267,0.0035415156962987243 -2000-02-05,0.05183978571247557,10.843576772521374,-3.3399384143621145,0.9087394347194664,6.091248688985955,3.1493845614201694,0.0,0.0011735425563655574,4.18675102076684,0.0493767123803098,0.0024840494577806115 -2000-02-06,0.1178425873721643,11.107008372952015,-2.506749195563829,1.0631977357898423,6.117388423541191,3.283649441422636,0.0,0.0024385317179787536,3.7963821224328025,0.04559806702560133,0.0019883019247186762 -2000-02-07,0.8318330973979507,10.94885768299975,-2.634359403299824,1.233921637939963,6.068893592733318,12.878674085144985,0.0,0.017508286035574305,3.5044430075522426,0.05051467995175076,0.0039601862983006135 -2000-02-08,0.022389202849446288,10.32554988808822,-2.910893917804227,1.1901917348227649,5.866063388591212,3.9105781886087376,0.0,0.0004683305422845119,3.8854223966050507,0.04552335863319075,0.0026492053950586143 -2000-02-09,0.08262759408074355,10.423387098613842,-3.4213852406810403,1.4498857268254313,5.939614855494782,2.860227906941217,0.0,0.001575896973468105,3.5154971701776003,0.041915716733417416,0.0019644617941666775 -2000-02-10,0.0,10.054230828136038,-4.1919703032671265,1.4435896711935283,5.861719508890739,1.3773524027083677,0.0,2.6645352591003757e-15,3.232662308414279,0.03765832662620794,0.0012787722982985873 -2000-02-11,0.00030585915888720245,11.583441043386829,-3.961643250039864,1.3136821614516905,6.380511809473585,0.8430140199668541,0.0,4.761003634059136e-6,2.9089196261858214,0.03389050667966004,0.000833145597031048 -2000-02-12,0.0213216421144059,13.356118048219447,-2.6739938560736736,1.53366628005714,6.935341754133266,0.7368999351636171,0.0,0.0002966808550589582,2.592367030256022,0.030447702955904148,0.0005875126688167806 -2000-02-13,0.0002913409646636813,14.313700289023357,-1.331629415451839,1.2935502454248071,7.189214338661979,0.40204166460512597,0.0,3.5857281586428795e-6,2.3045108351296295,0.02684938446253279,0.000382989114387724 -2000-02-14,0.014770976860833215,14.934462388780775,-0.19061177128524745,1.1998024158014529,7.322031941931389,0.3553488592331458,0.0,0.00015997170870167554,2.0224024431025303,0.023731690700734297,0.0002736659688595202 -2000-02-15,0.7116684106579484,13.644279785796476,-1.087853251951087,1.735332036638617,6.909451684060717,5.495459652228619,0.0,0.008125386065909734,1.7831206904757781,0.02906260347375497,0.0014153537467462966 -2000-02-16,0.08979388071159933,12.626541910824379,-0.7714141997705869,1.2207056620527654,6.490464494460921,2.0966804784522086,0.0,0.0010767057299546634,2.200861877227432,0.02668458827145056,0.001085273120860514 -2000-02-17,0.5552783272780151,13.132916130285876,0.8250894032500251,1.7441851044109886,6.493689538717558,5.289932214932486,0.0,0.006865028536300111,2.0372583459958555,0.030201296491269073,0.0017517638042574173 -2000-02-18,3.1758367811206663,11.124922502577968,1.2507605582316583,1.7737493403351632,5.628191168515203,44.936248025229624,0.0,0.06642231393726794,2.305389976896508,0.06385257966118148,0.011254094444845378 -2000-02-19,0.0004130232750437555,11.472302008590775,0.7611859107643275,1.6898429153045955,5.841904314689437,11.216716986003755,0.0,1.1016240254768477e-5,4.951096590640522,0.05768173367452918,0.0073275639264750465 -2000-02-20,0.000772447394282281,11.867805597793215,0.1217981356490361,1.8553558029148725,6.083685125727949,5.081964484487054,0.0,1.850946415715509e-5,4.455137417027646,0.051908332229621296,0.004772718059985435 -2000-02-21,0.00878754038298976,12.58527477279143,-0.24944602324152595,1.8690675094409748,6.402719834843238,3.2503498147250127,0.0,0.0001885525892477407,3.9913483830658634,0.04659887448261109,0.003135525056466243 -2000-02-22,0.02341906976498432,12.49313484013534,-2.4668202322418264,1.5708255336659669,6.576430774955008,2.346375718639886,0.0,0.0004487708622986711,3.5617559241843093,0.04176486067933368,0.002109411435473525 -2000-02-23,0.0,13.201099726896803,-2.7273143025366453,1.4758936787431252,6.849293036327379,1.400065841930974,0.0,2.6645352591003757e-15,3.182042329926269,0.0370686381583617,0.0013731277021562034 -2000-02-24,0.0016059113757605087,13.496244507963688,-1.2858558570079324,1.3644923988057949,6.843669972354634,0.9116800375107367,0.0,2.41435657522143e-5,2.809781624790366,0.03275076083085448,0.0008975178116557714 -2000-02-25,3.9710387673268457,12.039808138781234,0.3230316239810087,0.7496554550108333,6.109393890745096,62.99283645801781,0.0,0.09553270095822297,2.4830573014001516,0.07518584827138027,0.015130506919380247 -2000-02-26,1.9495657385547185,8.321508389715426,0.2054985939792724,0.7991225933213942,4.675765966212121,61.98387886481226,0.0,0.07132556803190404,5.774867733701494,0.0899844187076033,0.020709620282613396 -2000-02-27,0.6325868686522967,6.108938406914503,-1.4486441304587792,1.071091801115125,4.114629338587877,34.69188062109732,0.0,0.0254822974871588,7.099826403759158,0.09007737797522486,0.017361045689387105 -2000-02-28,0.07635286166592087,7.993739666322943,-2.1216880478239797,0.6055935114881736,4.9010915255438325,15.08078160032063,0.0,0.002992423657347365,7.182065518436455,0.08455565848498667,0.011756865482980872 -2000-02-29,0.6548794489861058,7.717894114604953,-2.424500858968217,0.7784020027799836,4.836698542606056,24.138369653935122,0.0,0.024761367805191004,6.644048234377567,0.08502756443372843,0.011423450900065104 -2000-03-01,0.7508268292059036,6.180716634237246,-1.7216977624855148,0.9398965011763072,4.180073668993055,27.69327788712053,0.0,0.02877749423561904,6.6891640165387445,0.08667085474278469,0.011817928255577695 -2000-03-02,1.9011805767041705,9.226133299450268,-0.7388711249684679,0.8842063342075174,5.163348801891402,62.536420932575666,0.0,0.08122763624420037,6.902484926443287,0.10255674097553126,0.02006102343036956 -2000-03-03,0.27081105901260155,11.227421050498345,-0.9624280199341618,1.2537138754817376,5.937911977859141,25.757788536289194,0.0,0.012019565193636728,8.015360605121991,0.09652828821513262,0.014888939748553435 -2000-03-04,0.0,12.29504822005081,-0.7841345625181361,1.1424816474676458,6.314466309424543,10.76143737170902,0.0,0.0,7.434399692616024,0.08660572159535174,0.009691999996140104 -2000-03-05,0.011175042766995612,13.127075170389466,-1.1547303065310484,1.1696550821094416,6.659482055489025,6.648894476694817,0.0,0.0004013229058263505,6.623700651377388,0.07729180847749624,0.006370143814566488 -2000-03-06,0.0015546815552806752,13.99625885699746,-0.6233693217640185,1.303992208214325,6.932434612459876,4.207019077353246,0.0,4.934847399914056e-5,5.873525885355387,0.06844070980384483,0.0041541782607054985 -2000-03-07,0.02414202100771973,14.56975019842463,-0.016726478675102695,1.2533533635934082,7.087610927785559,3.150102920651965,0.0,0.0006750743528825577,5.174719504044771,0.060563215924303755,0.0028069648443125464 -2000-03-08,0.5451632074080156,14.532858581839431,1.5856653490658494,1.421263608026215,6.882168803702395,11.146602785500972,0.0,0.014205659785658464,4.566354009801205,0.059545713890410405,0.0039902237461792245 -2000-03-09,1.5364421289519017,12.963622628255436,2.2134034260012414,1.4117817439781566,6.153601927658281,31.98488768547844,0.0,0.04372036260240275,4.507764754192969,0.07041091684998668,0.00925451919707228 -2000-03-10,0.9170927111779849,12.037184486613569,1.1793490475754165,1.1712081480021257,5.9422711550425085,27.60282069346668,0.0,0.029053076129253008,5.404208287619905,0.0736388756399601,0.010448017071144134 -2000-03-11,0.4505337302118077,12.419989724840017,0.22226979154748933,1.3940251189283923,6.220706332166495,18.069360546106473,0.0,0.014363980341220273,5.674438118309381,0.07135177399989037,0.008988296259815698 -2000-03-12,0.10198797243719496,12.988006659136586,0.2356214179411256,1.2411143977452952,6.433625867911123,8.811886270001658,0.0,0.0030385558910869526,5.469223900452519,0.06490084530852316,0.006313623437642651 -2000-03-13,0.11808057079325655,14.139630840513039,1.1437284908951264,1.3692153616302134,6.764954903223479,6.443526056466109,0.0,0.0031902083341370097,4.955256604356303,0.059100942257214246,0.004595628464817737 -2000-03-14,0.3919766397752846,14.754996948948278,1.4734896975215908,1.1592528555146506,6.961977632366042,9.645004080424576,0.0,0.009873923535966334,4.484340516091859,0.0568057924611075,0.004494988860005726 -2000-03-15,0.4168581125972485,13.19630382990505,1.0729747407041017,0.9800766370662932,6.396430145934963,10.109170916254802,0.0,0.010095682934374683,4.29402352924908,0.054878580761217176,0.004463243351751662 -2000-03-16,0.3627914642383214,13.643880670987306,0.750575810273099,1.183082775536715,6.6092108786936405,9.11166911253097,0.0,0.008535095658375846,4.1941894384444725,0.05308574137667962,0.004204956050887015 -2000-03-17,0.07032567964716792,14.700197461695364,0.3177128114710686,1.3857330972356958,7.063462960828999,4.286135722587722,0.0,0.0015396542593478363,4.0407676825459236,0.04789145349990031,0.0029716638621986027 -2000-03-18,0.010696956254290034,14.92666975781047,0.2491244460574833,1.4771052296621967,7.1536840167756015,2.200637483633842,0.0,0.00020764402834341084,3.613984247135668,0.042225081264393706,0.0019660303768908294 -2000-03-19,0.02229453204769656,15.273801593944857,0.7818772376296638,1.5365638153542944,7.22730276871754,1.550382055012651,0.0,0.00038119775270968603,3.1813310865900704,0.037320068854927106,0.0013378363611402393 -2000-03-20,0.003767174931466208,15.968955346915248,1.0460977571820431,1.3771308422903452,7.465847050458302,0.9314931195641636,0.0,5.662533767007705e-5,2.8081571002975525,0.032757013477439555,0.000879490636968946 -2000-03-21,0.035700328500241504,17.052284157527563,1.0326510702573377,1.429096300477641,7.888036337606446,0.885575842007975,0.0,0.00047146256748663296,2.4537049804576627,0.028999885940990407,0.0006442942093336177 -2000-03-22,0.020560680049103663,16.784896944275857,0.1445259274586997,1.3273158567063006,7.861776295310653,0.6023317275392585,0.0,0.00023760062232619505,2.154615574195716,0.02533933025998749,0.0004555834532263591 -2000-03-23,0.04714010201723857,16.812131344730872,1.3838929379259155,1.1349294623102977,7.748017583678445,0.6257535979512526,0.0,0.00047956288835643984,1.8838367066611477,0.022494572099154217,0.0003695839498717589 -2000-03-24,2.2151810495488222,16.513503293170913,3.2649749610038388,1.3414543165653756,7.386729407296743,21.826627982593006,0.0,0.03299949327766516,1.676232123016375,0.045332328065492464,0.005265242127689678 -2000-03-25,1.4027488964203658,15.139579695929855,3.652928128496808,0.7734308693185564,6.751616344485582,25.53324704164451,0.0,0.030906301080996013,3.3996298058200285,0.05594445954994467,0.008133366071241294 -2000-03-26,3.0022863349179256,11.255593095486116,1.5596792839581068,0.6580939938209128,5.518141911862611,68.14619576707045,0.0,0.09324306132158133,4.246318526648262,0.08444133764008238,0.019492072592412216 -2000-03-27,0.20156001820154795,12.47562442067099,2.198019052497521,0.4714197425298999,5.895847626386576,22.994419980890864,0.0,0.0072714391561352065,6.557992247718537,0.07874420610354715,0.013795607161359172 -2000-03-28,1.3495524640149088,13.656108617527089,3.1638478797586957,0.3540315171748685,6.207756114754762,42.06785222238589,0.0,0.04935141444899793,6.072441448627759,0.08646120266027042,0.016494773777437056 -2000-03-29,2.638036521349272,12.003517280321006,3.5635681755022457,0.4922726915097392,5.431344867321333,88.1853905198241,0.0,0.11408401853519567,6.6263200162989,0.10792347953211862,0.02810829963825738 -2000-03-30,7.202254206532558,12.387309724754529,2.149143184375064,1.0024983796270637,5.85807189995216,336.9410149186813,0.0,0.47730701264618425,8.390729524142127,0.1816477003732989,0.0909742258156136 -2000-03-31,0.10243896311426663,16.388234287326345,3.0450490743268745,1.5200061258730142,7.3364903039115825,92.64765879772094,0.0,0.007989345397005285,13.977786235059458,0.16402508796023535,0.06043644107912674 -2000-04-01,0.8998565078764257,17.440335715137422,4.613900771648481,1.4852294440904303,7.531137479784685,83.32795745653304,0.0,0.06330315632356032,12.264100679014895,0.1533511861560767,0.048980123345543615 -2000-04-02,1.472473992109249,17.526337229367936,4.936487970105617,1.1604006249031384,7.509795518257979,100.33519229421178,0.0,0.09889693008517142,11.425803832350805,0.1502562015106848,0.04694227682317674 -2000-04-03,1.103677580901146,17.442389021693337,4.825413359777034,1.0616845307659684,7.488206418760196,83.31353276468944,0.0,0.07152908666702462,11.201286732770283,0.14334450092171108,0.04144857605553867 -2000-04-04,0.7956832051721395,17.93227210782938,4.3620387086169385,1.2111731693847407,7.764911309955217,63.30624859674298,0.0,0.04854935315692399,10.693365227438075,0.13383963347281708,0.03437343115759255 -2000-04-05,0.9074287187747976,17.520893878498054,4.049105846798171,1.128083621870229,7.635401379919631,59.32769031028942,0.0,0.051720535883472474,9.932515437596567,0.1262780082497168,0.030250703778236732 -2000-04-06,1.6701233449276125,16.960586439268326,4.64674893233194,1.117518036397725,7.30035563053897,84.17120836175101,0.0,0.09374621331947752,9.398306352090831,0.1289397100602205,0.03396603224944258 -2000-04-07,1.0259641739149656,16.95243137311765,4.605587589419094,1.2965271872520832,7.299544383402036,65.18189194289536,0.0,0.057232903363723775,9.659844775828931,0.12448243747801363,0.030824845618805483 -2000-04-08,1.0907033955289205,17.65252638459991,4.931180871948643,1.0721662662872165,7.537964919034569,62.35502953395887,0.0,0.05898876670523845,9.327499717643711,0.12136501071356334,0.029047436890813506 -2000-04-09,1.4445027560778565,17.92952351977478,5.0170632503982056,0.9181577626861432,7.637276473406068,73.121842867727,0.0,0.07731749090440965,9.051833485685316,0.12227520874728044,0.0306812463731849 -2000-04-10,5.997416738624168,17.703487994002515,5.554471288397566,0.9708181249282616,7.443122221107464,286.7114648375514,0.0,0.40102798850711974,9.101361259308984,0.17589053827947834,0.0810344849308517 -2000-04-11,9.031589365196634,14.055233746143855,2.9185159382629413,0.9672191912755872,6.361722088432799,663.4525954825123,0.0,0.8987009059608919,13.11724299168789,0.25801889702912595,0.1895901303394691 -2000-04-12,1.347393388568889,13.391649674257335,2.0708496684758875,1.0976686532299114,6.226104045419493,278.94417309058326,0.0,0.15550977239092445,19.60499943227384,0.2440811867030288,0.14709292427770734 -2000-04-13,0.7508139932970875,15.427963306295021,2.4949476106603523,1.750705016594387,6.9713185684640875,161.63198519480252,0.0,0.08070708398167292,18.6064178423341,0.22549864152157847,0.10803942614397344 -2000-04-14,0.012203331825684827,17.02683226760989,2.6205082305415295,1.1925371065162669,7.590385563868923,76.73056684545523,0.0,0.0011624735989636432,16.945339138529214,0.1975438855658472,0.07050559234514175 -2000-04-15,1.001424342797278,15.369165105905411,3.3417277550771867,0.4455190336975292,6.81398260422478,101.81110140258274,0.0,0.08484679950330265,14.675687073699425,0.18262773093904847,0.058815005503873065 -2000-04-16,0.6822139217255296,13.002500967016847,4.927116457976537,0.6851008108990622,5.499916356728984,78.26073970382456,0.0,0.05361167355767105,13.789311859793164,0.16858347475438792,0.046448973571985346 -2000-04-17,0.3771880554278789,15.638133345877097,5.515593691134511,0.9256373577520572,6.524894802000461,51.836371766481605,0.0,0.02772148601844948,13.068552202053883,0.15663376809555432,0.03445710446415938 -2000-04-18,0.165232700821054,17.047412308771126,5.400854090997472,1.113750962722745,7.154475207896753,31.443212843651082,0.0,0.010931301339500155,11.905222602924077,0.14061262977339892,0.024094407637234583 -2000-04-19,0.3922564500401289,17.482899090225946,4.701487099748835,1.4489256066092566,7.456694742048193,31.60478675002866,0.0,0.023184729660515213,10.560696728144737,0.1275944868203624,0.019214544529100378 -2000-04-20,1.7883201169100196,18.455891543219813,5.122901517304122,1.082297601230398,7.7953295489573176,80.75092588515578,0.0,0.1023195204912013,9.529794309313486,0.13184836806062664,0.028087423946472383 -2000-04-21,2.1803930663361237,18.035404006225328,6.214992819347839,1.039086457732522,7.419037924738907,109.44148386154262,0.0,0.13029548601225382,9.779483906326412,0.13932446710362348,0.038123005456052406 -2000-04-22,9.373856746878005,17.4608833087026,7.043091146969438,1.2566847158838896,6.990633667343463,549.7755662217539,0.0,0.7913273879980771,10.409374704616816,0.2304612485452305,0.14530756972249162 -2000-04-23,4.80122898649109,18.211671632715614,7.3969695771827375,1.323257325918109,7.249506047065222,492.2782107493642,0.0,0.5375864033440898,17.30808701757296,0.2575585582805605,0.17644387000449793 -2000-04-24,1.9749747415951329,18.34787673928689,8.574609890862028,1.3824539703192371,7.035729305679425,297.96050699712026,0.0,0.22708276316471254,19.219585829122263,0.24690227698498515,0.14943337185337993 -2000-04-25,2.0342715316557114,17.990303566941744,8.234034711634273,1.1401024991507356,6.947374977592503,260.37804066009187,0.0,0.225481748524341,18.51351007885032,0.23936774011882347,0.13160702891993356 -2000-04-26,3.170442183367417,16.899605676531042,7.971742181689137,0.9715526232205656,6.49697253229032,330.0397582402418,0.0,0.3522482273114633,17.98637643234777,0.24646260876932116,0.13930498660082272 -2000-04-27,1.4891107242093151,16.741836337114812,8.675073920863971,1.0746978233242483,6.228128931279649,219.40926652754723,0.0,0.16412262120456966,18.68405990394715,0.23500377587351243,0.11567109257346084 -2000-04-28,4.07057340267381,16.82716906199775,9.164248521408872,0.9347522357664636,6.124169787228317,388.1673710564273,0.0,0.46185121668421836,17.91959732435318,0.2561705964922374,0.14562011530441665 -2000-04-29,3.455501674650223,17.46060593895824,9.016131249644683,1.165954944787771,6.476184506537232,397.03330087244194,0.0,0.4203793658078516,19.559400528631375,0.26810802420824326,0.15880081954650033 -2000-04-30,0.6033369884776993,17.286772331370003,8.261266677936893,1.315570286588141,6.591717232410012,176.18443402622418,0.0,0.07089136257707462,20.316405777494886,0.24370083567549863,0.11416612710324263 -2000-05-01,3.768944371602773,16.32723865452244,6.865291134458553,1.1757897751104522,6.4859126206371345,365.38423162535605,0.0,0.4361829108918638,18.441308597192585,0.2587344055617986,0.1407320747667912 -2000-05-02,4.227830827785218,17.323262438163507,7.254953422184387,0.7145410610265602,6.844739002604162,460.8574423723083,0.0,0.5258340423110139,19.6094677461785,0.27768838497241694,0.1716759672539175 -2000-05-03,4.00983153180703,16.762348047468425,6.899698288668267,0.7615298844202945,6.66800149926912,488.9587488221199,0.0,0.527708401397418,20.876449484718066,0.2899083200223329,0.1921043857605455 -2000-05-04,3.9561928247784697,15.87541218894804,6.4657673203515005,0.59698341873649,6.36475154605718,513.8857291090458,0.0,0.5445773414000965,21.862881789215308,0.3007747337138831,0.20797087138974385 -2000-05-05,6.55404881668108,16.850054826355926,6.832868284778442,0.5842045227552086,6.715798656164388,820.7009536037399,0.0,0.9968804221930814,22.81329717633422,0.34210969227166804,0.28716903364773433 -2000-05-06,9.927765948761012,16.75320501504386,8.293794646457773,0.7435464114320437,6.310513130867766,1431.1751335586976,0.0,1.8121975850530152,25.71333894445058,0.4151947346600156,0.46286739753502154 -2000-05-07,4.312118202226808,18.734844594627297,8.774121959239613,1.1120630099387483,7.122204651342918,979.2992245565921,0.0,0.8698911093557147,31.35803878913342,0.4155331719283966,0.4337586931631017 -2000-05-08,7.121340996350403,18.465468048216643,8.311626511690417,1.3439619676616998,7.104172734134772,1309.0111501668296,0.0,1.4814966388144892,30.84284093010802,0.4422570088320322,0.5079362717184674 -2000-05-09,0.2642722584534094,20.328121580711006,8.151370230787954,1.01885820929009,7.988326555235885,455.10538537984615,0.0,0.052206230742104065,32.78539691618151,0.38500626354536566,0.3385918097471644 -2000-05-10,7.161677401291749,19.967543369785236,8.284422951646253,0.5878058820182416,7.793369567089372,1115.5705775636884,0.0,1.355097346713011,28.1000741974384,0.4107755256900203,0.4267409439630363 -2000-05-11,10.78161599461389,18.85173294461143,7.8869228994522675,0.4451399727404421,7.367715252393624,1875.7347674761904,0.0,2.3247872248820016,30.05913308405311,0.47576706804796964,0.6317714963238186 -2000-05-12,2.5566230575418976,17.384204121470745,6.970697360054047,0.4443283596607664,6.902463245398072,921.4333715237151,0.0,0.5652276553980533,34.98775850498214,0.4373666188950156,0.4973178113815922 -2000-05-13,0.0,19.15063791101469,8.22276806603804,0.6543970015945677,7.4236032618619054,367.31247927133546,0.0,0.0,32.574840210120726,0.37947482767879936,0.3237305212722816 -2000-05-14,1.90505846709059,20.214610154187127,9.918283292103146,0.8615480964470777,7.518401655976013,426.79726334046796,0.0,0.325817977802884,28.04374953287207,0.34888333086712503,0.26034395438132524 -2000-05-15,5.321954328954396,19.481502873471612,11.586019356114841,0.6462746304101133,6.674519950291145,770.4892785356473,0.0,0.890799241179332,25.774703564916862,0.36225500476889794,0.30510902221387814 -2000-05-16,9.938451698122892,17.87319747996459,11.731128840389939,0.3510335417313024,5.755298251352872,1503.8352330054822,0.0,1.9166952114394835,27.22424862352906,0.4329202909261323,0.49045679425303845 -2000-05-17,25.165257190034648,15.968076306101231,10.54012389664917,0.4670362805444718,5.1513590769040905,5281.07031682063,0.0,7.419106771832567,33.05387783287778,0.6782134950753936,1.4489329286556163 -2000-05-18,17.541834727978536,15.237369161819146,7.723016527873606,0.18902315175385948,5.712529280071258,6281.510256591037,0.0,7.499657963036814,51.59401238416972,0.8053857977531749,2.085120952601667 -2000-05-19,0.6096007927035526,13.220075729009515,6.617209024650929,0.15505448137868547,5.067268712379363,1992.4750983167935,0.0,0.254733389397266,59.396041880170266,0.6990250993148314,1.396102661122609 -2000-05-20,0.6372680375680178,13.569950146498128,6.962928310136071,0.2888251466377117,5.1304572858428665,1108.5893694043139,0.0,0.22851397548864316,53.17273086331299,0.6268500452678821,0.9435918441274339 -2000-05-21,0.7075919905551559,16.628958775842722,8.412102111897397,0.7438303539667795,6.178583689020623,775.8176581097969,0.0,0.2218207023046873,47.92781402272575,0.5665695425343673,0.6480094205512633 -2000-05-22,1.1115129852359564,17.467743211823155,9.78830950907706,0.9685601408929884,6.188959649246706,633.0907522430448,0.0,0.3018332259663643,42.49845173901482,0.5080265549137516,0.4677822439143844 -2000-05-23,1.1176000131354629,17.24906185793014,9.564206895078023,1.0248587057730514,6.145265982396819,497.98723613367264,0.0,0.2677471323884193,38.25892297308936,0.45870982569380253,0.34527271130645193 -2000-05-24,1.204402184611728,18.097933861984615,10.314846390376779,1.2193508095659769,6.340622307185171,410.15021407221485,0.0,0.2578560292496781,34.68346487157828,0.4180693467431407,0.26401869695445973 -2000-05-25,2.7224889980415563,18.489426739104022,11.449085445625894,1.2555007147910446,6.172049242259906,539.4037847545247,0.0,0.5377624337054998,31.550077342883377,0.39925218734586415,0.253746037632517 -2000-05-26,0.42747138513457056,19.25405950405396,11.839641155482571,1.2365117279923146,6.443316222305104,248.1312095924311,0.0,0.07734815242701426,30.267422465952453,0.35757472575848187,0.17695414329157244 -2000-05-27,0.25842957639169656,19.53746229041448,11.799623401599295,1.3390871739233638,6.6041409648778115,148.9692066666301,0.0,0.04103767965453459,27.009022362918166,0.3176473486643453,0.12143742340732623 -2000-05-28,1.068115838358262,20.22359195661202,12.016250391052608,1.2039917425473272,6.8910101338755565,180.83932088802905,0.0,0.15140140604411423,23.957242474038296,0.2915284763314484,0.10210315577369083 -2000-05-29,6.995798518706938,20.50182592759684,10.538816059485695,1.370573038135832,7.455759836102599,749.7543945566978,0.0,1.0322084244084415,21.882957284037307,0.3364179474445958,0.2236333367954708 -2000-05-30,6.264251559305907,21.21470430990841,10.962432423932151,1.1131889846922716,7.689798554865457,880.4032777869528,0.0,1.0321716321732515,24.90318664255203,0.3630795474221556,0.30273817056080904 -2000-05-31,3.3708184309578786,21.130924483187805,12.089780726510007,1.2418811854876366,7.330276125431502,629.4160934938001,0.0,0.5630547633351415,26.704866575608158,0.3503613620687105,0.282801725959884 -2000-06-01,7.297311479983115,21.269409959558804,12.63336602977825,1.1825245499373431,7.23303533192094,1057.8238804011164,0.0,1.279987557844862,25.98511738629582,0.3877177563203859,0.37898764661363904 -2000-06-02,6.946229652845934,20.62946692641169,12.544712049085769,0.7994153766202696,6.923010968386646,1199.3447538937614,0.0,1.340319181483709,28.75634682646611,0.4159108370074759,0.45078654118759026 -2000-06-03,3.848010478997072,21.146642679411453,12.10991544720463,0.52843154243249,7.325983639298574,873.9360355997554,0.0,0.7605738069093495,31.002655825188935,0.4059866604092641,0.40924944925997436 -2000-06-04,2.8259009351661506,21.889441272541898,12.84769741159684,1.1914000162782346,7.483563601738917,662.8394065344442,0.0,0.5295735229498435,30.01942980280767,0.3826258591430738,0.34703754890227734 -2000-06-05,1.6010119633955204,22.174036834321562,13.113474951802026,1.6134071950390847,7.547990276204452,439.5759463974145,0.0,0.27423268060093786,28.23526172725423,0.3475723823756202,0.26766111037936324 -2000-06-06,3.9683957830624426,22.666848524699894,13.127494178631109,1.7429579902364871,7.798256174205185,613.149440978203,0.0,0.6435423347373881,25.66357042847033,0.34519233860775184,0.272223630177183 -2000-06-07,2.4285712589669863,22.761925224750215,13.971851140172019,1.3981940032673594,7.582381142996351,462.0133986567639,0.0,0.3767137238775504,25.35604602554518,0.3236719746943179,0.23456501831535206 -2000-06-08,9.328898595274596,22.72320253526755,14.241172474745396,1.6074228058440618,7.470323580345767,1204.1497707938365,0.0,1.5715807951465042,23.911629125356697,0.3872296363504453,0.39198719509297497 -2000-06-09,7.753154119045813,23.33083822525772,14.658503560257525,1.8004909968546017,7.658623248349404,1333.3855825177855,0.0,1.5081327222982912,28.575460345516248,0.42320375556181844,0.48480072693543347 -2000-06-10,4.4863175469792385,22.354007874216308,13.758908636565973,1.6618630208278191,7.428416170806043,996.6346565935653,0.0,0.8977018991586849,31.03467359383164,0.4137954907895897,0.45227086332730393 -2000-06-11,5.490639595438721,23.356883292842003,14.379851107696481,1.6141279165589288,7.761950979988647,1071.0580106549266,0.0,1.0981563558853464,30.514823185861626,0.41943925730092585,0.46161760333423824 -2000-06-12,9.795095813964037,22.651673152199578,14.125460212775405,1.5632676253670243,7.464073210825387,1754.5319779415545,0.0,2.1214874842548337,30.69696484223177,0.47170508406961875,0.6235191735525532 -2000-06-13,10.546085402692663,20.026871480436274,12.584304128114367,1.0849891734616226,6.570989907107797,2242.5380768216987,0.0,2.61523396376967,34.62525008735117,0.526215466922841,0.8040896819199397 -2000-06-14,1.5140872629303743,20.139827249073146,12.405724490640125,0.7127515283104513,6.690796168484903,930.5770138299815,0.0,0.37602728385781603,39.24493567936499,0.47481501390690756,0.5806802996618022 -2000-06-15,8.397213755203811,20.086538926495173,12.004521290575626,0.6092781232963673,6.79284924418212,1761.1504320017243,0.0,2.0650618429938454,35.44348631429667,0.5107144654242333,0.6924317554678069 -2000-06-16,6.066405494258277,20.70506203396892,12.395028612071634,0.4785771309730476,6.989545335376548,1586.7133278905108,0.0,1.5518139818201533,37.9440515162851,0.5126920188223161,0.6870271319022624 -2000-06-17,3.6683885745322162,19.871692630240823,12.351221144656828,0.5392236820166133,6.563306971278941,1137.4298482203487,0.0,0.9044044260799429,37.9190355634162,0.48446532681532467,0.5849313070585943 -2000-06-18,3.17875712757578,20.19639677738321,12.256397462879212,0.4806850592322527,6.76577416631267,923.3271930749809,0.0,0.7387020670238815,36.24207470608913,0.459225993759049,0.49324109153338186 -2000-06-19,4.641058574370847,20.752509467999488,12.772519346282856,0.6619630939854944,6.888734402317141,1045.6656847217148,0.0,1.0366795921104544,34.25799536884722,0.45314763470074715,0.47892655082639135 -2000-06-20,13.006696822085551,21.399478168519344,13.377179286634204,1.0432807131245876,7.031155688305763,2505.463531010225,0.0,3.2605772167300273,33.72720440943386,0.5444182995893545,0.8082297241749516 -2000-06-21,13.196620207976938,20.92373436490495,13.960478632953675,1.2372436354396996,6.559889228205747,3319.4378912315656,0.0,3.97906355647255,40.12837233791098,0.6212000496947053,1.1319907720637008 -2000-06-22,6.893658148494043,20.13216093581563,13.861849729572905,1.6568264175842122,6.145664119119061,2438.3108693934378,0.0,2.228457225359821,45.970686100082446,0.61583380899743,1.0761883221833983 -2000-06-23,3.7707251945211535,21.243559430161113,13.797040215181873,1.64926128898907,6.797379107385964,1613.5973791215984,0.0,1.171109801069262,46.037600743579716,0.5802332653179959,0.8788667846856251 -2000-06-24,2.640115077275131,21.361672128380686,14.066685432252614,1.3712216891267368,6.764203484214464,1134.8129615113173,0.0,0.7403128599677133,42.86601895491497,0.5301156432020971,0.6848245395227669 -2000-06-25,4.123009704623039,21.563807658507873,14.052266536830144,1.1666396357775084,6.881474657674383,1192.389557070929,0.0,1.0680541226085243,39.353996624107126,0.5064776796498,0.6084156068037344 -2000-06-26,15.289025235311264,21.047415918536178,13.978812413182814,1.092319281832975,6.619760166337791,3353.518969986006,0.0,4.42681273455355,37.56677598282025,0.6157342884783715,1.0700975997949225 -2000-06-27,5.921743760775055,20.522019512044455,13.408097162241043,1.1043497873602597,6.537498055369825,2178.3602332217397,0.0,1.8675882583979124,45.52672728694421,0.5993398450840355,0.9809511447468858 -2000-06-28,1.7126378858699691,22.2163760693396,13.289530774236072,0.7700654361795952,7.488891227262826,1090.786445300871,0.0,0.49563779798394836,44.467020466401635,0.5379617453978954,0.714021267232494 -2000-06-29,13.700535924285662,23.03210035155079,13.833561664602685,0.6726044110784556,7.7470698682471975,3157.8040481091457,0.0,4.063675652224065,39.26441518016705,0.617005810734067,1.0835489359282195 -2000-06-30,6.822601264695754,20.405384938204538,12.63721557868119,0.4922091083504904,6.74350958796564,2325.6110067931654,0.0,2.11518144739952,44.42537723260939,0.5970042426519584,1.0274070530294972 -2000-07-01,3.209548224774049,20.36038282729641,-12.025024175993778,0.9063364790918044,8.812782568515063,1422.9643931335752,0.0,0.9385681486239532,44.09304171699607,0.5510431379287983,0.8117045693076389 -2000-07-02,1.4818750355295165,23.05187666447937,14.195698419694386,1.0365092867938417,7.641136162505167,831.7603361083968,0.0,0.36478014291678273,38.96691947846938,0.47120106281430046,0.5839246900913386 -2000-07-03,6.734510676604537,22.96970450784389,14.729733718424823,1.136628097773188,7.416223104659295,1428.7097589854318,0.0,1.56534437492427,34.45427176786237,0.4798214210597262,0.6184543344062826 -2000-07-04,15.250508417013883,22.53497284687582,14.928751748013346,0.7087104872688033,7.102469840573576,3195.371959152384,0.0,4.133244584904521,35.23784232354306,0.5881550937311144,1.0319322520334224 -2000-07-05,5.672790674145777,20.706335804635163,14.634200381104884,0.4956703514958664,6.161639647528054,2010.2352140923276,0.0,1.671082048001435,43.116260257942066,0.5683594017850007,0.9261863236437206 -2000-07-06,5.6390032311642635,21.919651410676867,14.99933782138736,0.6405125022620769,6.724467390039204,1789.4244902601288,0.0,1.6389338756689291,42.64307688260092,0.5624535350891021,0.8524556601641932 -2000-07-07,11.052884982750252,21.76860647975924,14.40172463707405,0.8600051280493434,6.866673362656658,2862.610853146271,0.0,3.3738027728578377,41.684978500565926,0.6143603937391434,1.0686198820658088 -2000-07-08,14.052701785663686,19.828474354409227,14.337354265766079,0.7446645925245968,5.763062144923143,4095.788196981056,0.0,4.893354117467389,45.170586685847525,0.6899112027053363,1.4407067710654342 -2000-07-09,15.092608255274918,19.283804339597047,14.446828353283829,0.5592064330345013,5.375475044403318,5327.279930033722,0.0,6.2610155307608295,51.658056283178375,0.7776000360948825,1.8911645020965369 -2000-07-10,9.689659844862923,19.741231639875007,14.340374525473814,0.5914488958023405,5.709301978978383,4485.439062275515,0.0,4.390852651124014,58.11801270680985,0.7899134636077809,1.8996313874988313 -2000-07-11,4.2058735915502075,21.030610703184475,14.109927265865915,0.4673745527488523,6.561593318065167,2692.3134528746405,0.0,1.7934575353667475,58.41848785123977,0.7295313995005933,1.5096511547535272 -2000-07-12,8.447425422979803,21.145948748483512,14.27690316884324,0.9778943390095826,6.563716921658569,3298.1848156060873,0.0,3.3523145065523376,53.300282103642274,0.7193189750765312,1.4931513548681317 -2000-07-13,4.038383422120592,20.990417570593838,13.587625810712506,1.013322906699487,6.733544916465308,2149.815727704766,0.0,1.4910150781722855,52.62676661898922,0.6601106224478933,1.1990004260396623 -2000-07-14,3.4729546978706116,22.506604649017266,13.86999317957804,0.9546115984180392,7.460244559859132,1630.432446655667,0.0,1.1448233915049704,48.45251120665606,0.6048965121290032,0.9548091979468742 -2000-07-15,9.933774206811043,23.51123198724273,14.052286409903946,0.7894922547496567,7.936982596690163,2765.161550364654,0.0,3.168070510131413,43.90427953954207,0.6271768652179543,1.103921448302332 -2000-07-16,9.055288069937363,23.07309010569651,14.157742936130196,0.9392666411112196,7.671449058041854,2821.9536112956384,0.0,2.92994206401894,44.90365768262872,0.6285851752182335,1.1647279412610543 -2000-07-17,10.379862478284414,22.42623459829205,14.492945549460336,1.3003034300472482,7.206595024048284,3197.881448523643,0.0,3.452296085195533,45.281813662968,0.6484208311005746,1.2838462266328572 -2000-07-18,1.836934314122964,21.78864836253515,14.688909663040212,1.1825243436624733,6.776937786031599,1423.8098266934805,0.0,0.5722231384487135,47.123325605503105,0.5703538705413798,0.9228529789378568 -2000-07-19,5.988251894008535,21.68603748809864,14.255566939755695,0.9680445568453008,6.882477396563641,1778.6564947765803,0.0,1.7273276245079927,42.191994766434874,0.5612672443229171,0.8637450635126812 -2000-07-20,9.234361086795284,21.866469694316038,14.0704251017904,0.7187738181650287,7.05041923393223,2450.205290643011,0.0,2.731186114647622,41.45204257973657,0.5904622761906697,0.9781208735774172 -2000-07-21,13.33768508577593,20.847287496447827,13.998323043953937,0.7074736838382828,6.508603997556125,3668.753927645549,0.0,4.386779516649945,43.328113628190955,0.6601181790473754,1.304662703488106 -2000-07-22,12.833466348808436,21.643863625114992,14.151406400372267,0.7382720366545611,6.900503548263479,4257.884072474374,0.0,4.808919761226846,48.71348273933934,0.7169802752286212,1.5815031757284184 -2000-07-23,8.696793595641218,21.72142247189245,14.257393019109184,0.6356381017640889,6.906406162449201,3521.4029901789645,0.0,3.356356459921095,52.03853814794832,0.7075254828188745,1.5405390905892027 -2000-07-24,2.5928219941943045,22.96281659962511,14.280790627109143,0.9235285983972268,7.581735090828692,1815.8635313030575,0.0,0.9116545274502474,51.41232454204231,0.6291233830592825,1.141631412139733 -2000-07-25,5.774890074551598,22.659721809125575,14.202471625444305,0.9151686092412322,7.445301812035132,1996.3832224790513,0.0,1.8122750047109246,45.41431220522506,0.5963195395229679,1.0190940344881463 -2000-07-26,2.170776587242544,23.14183821175183,14.096497268241226,0.9927871632826776,7.741449041527651,1173.8598257227702,0.0,0.6126796690144771,43.33439724610084,0.5301044575358116,0.7566718496399576 -2000-07-27,3.2271609654704148,24.567560670075608,14.49434288538367,0.8577555223284243,8.37587850742562,1061.8418407088295,0.0,0.8041497125392749,38.4954330894882,0.4860399648069139,0.6150014838236988 -2000-07-28,8.794062344792954,23.636288202877488,14.692914009955823,0.4920426575340871,7.816551752971626,1849.3346846662891,0.0,2.141702694639166,34.92080809717962,0.509248635479557,0.7264429351252857 -2000-07-29,5.7312211992304425,21.878631134874052,13.227258965754045,0.6052567124852898,7.35447550256296,1526.8442799008537,0.0,1.4174273065053127,36.98236868824552,0.4975843951202847,0.6887044547483316 -2000-07-30,0.302410444530528,22.24648381830411,13.260022442069113,0.6787165451865578,7.539911548367992,584.6344560738811,0.0,0.06778332842470824,36.5447525831795,0.4292444951440967,0.4586352440346846 -2000-07-31,11.655517573509606,21.624562383532528,13.630857335063837,1.0500130981333624,7.0879788850573675,2056.860616318985,0.0,2.6749246355624337,31.546800702386008,0.5032777498621956,0.7058467799278961 -2000-08-01,10.615531257637882,19.803638545827923,13.864004253106575,1.4830959838654332,5.974506321618471,2470.589154768881,0.0,2.8399759533775804,37.16714777480727,0.5566358507028054,0.8919013722613042 -2000-08-02,3.5591919971514785,21.106284510490664,13.811529020981775,1.5189012910536666,6.742425894056009,1401.5197976651684,0.0,0.9861375989261831,41.97722028269804,0.5304683642818895,0.7307398914375068 -2000-08-03,6.641179380365063,21.941010986768664,14.106849111238347,1.7168957104060945,7.101259385229868,1713.9620392505922,0.0,1.7873673130928545,39.39833775108893,0.5363291950836828,0.7478304024070229 -2000-08-04,12.435769488462748,22.074107142312364,14.281584039412936,1.0838452266156329,7.114881221072322,2977.7271705592884,0.0,3.646336468523687,39.495507089804995,0.6049642025429044,1.0420110379066359 -2000-08-05,9.872761984247218,20.314989068525534,14.461354390162745,0.6385501924319553,6.033011719288723,2972.8332994100465,0.0,3.175969598413074,44.2641872074438,0.6306587947341685,1.1618885005122717 -2000-08-06,10.002554288597453,20.40551313435576,14.321886002947762,0.5014699167298926,6.148020700497818,3229.394114431758,0.0,3.4779744655593436,47.20497180662744,0.6664289361631662,1.2859077969113395 -2000-08-07,10.424855271700864,20.80712218801167,13.058186473875706,0.4642461604017046,6.855779524361142,3581.222948026727,0.0,3.868543615461867,49.56919186108348,0.6988900191256758,1.4261084528367043 -2000-08-08,5.654932589128313,20.580621791786047,12.838121849817115,0.4399507887254207,6.811102288794472,2502.7507427444416,0.0,2.041324455418815,50.90666635905953,0.658904322343609,1.2391513801352538 -2000-08-09,1.5707489114224924,21.04405222545462,13.029574004479699,0.7849651565288798,6.997794531021715,1271.815387534167,0.0,0.5027384560336483,48.28114358262701,0.5807407861900715,0.8831786651439975 -2000-08-10,4.373108234925191,20.313741464428023,13.44473142875915,0.9520238083390572,6.451349919240852,1431.5019382199016,0.0,1.2508515455080982,42.7046578965895,0.5484240927975114,0.7653684280073086 -2000-08-11,4.426523918308467,21.121227712922675,13.459209883619964,1.1293532820039889,6.896741134549853,1361.4034435735016,0.0,1.205856618660226,40.94267914321816,0.5285204901280917,0.6818283583983756 -2000-08-12,3.5585164704272523,21.545173653474592,13.599216097744534,1.0897314882719686,7.0823445769323845,1112.6922459198115,0.0,0.9079681530934729,39.12398544405928,0.4972222412887708,0.5820897799339908 -2000-08-13,2.492454977398197,21.7675391319172,14.087324016610555,0.9631139901466276,7.035409876355377,817.5397957333295,0.0,0.5820048145079046,36.74079008740299,0.457040734941808,0.46753191937274347 -2000-08-14,5.182630976964703,21.637035685375967,14.305556422847733,0.8178926431296104,6.88483739383968,1096.7105340534745,0.0,1.1544987957661954,33.89996011744744,0.4552857182146731,0.48013080235820377 -2000-08-15,14.707467842464212,21.0322937650798,14.478577486360631,1.1792084500246878,6.4725971219023375,2865.7575289947317,0.0,3.801536581826923,33.884621909391605,0.5660649374239831,0.8913826901482602 -2000-08-16,11.574115781436047,20.774208237517463,14.351739799042141,0.825948982343788,6.375250960193,3161.6424726201412,0.0,3.6058830410056384,42.18062767856229,0.626206356802428,1.1292971983182358 -2000-08-17,8.74024374447265,21.35421903541465,14.402231098235708,0.5334565343248571,6.694639403172833,2880.1857542571347,0.0,2.936941400849207,46.51869478404925,0.6437292106596185,1.182312114293438 -2000-08-18,7.768121345181223,21.347515990543783,14.677902478772818,0.6141189602981959,6.584639583336769,2678.4368853456513,0.0,2.634828393552441,47.37876688093498,0.642423900520797,1.1708211644732562 -2000-08-19,11.047415662723552,20.902916672335262,14.542277763251601,0.7228204557969132,6.380837908403217,3486.477739956669,0.0,3.9146525431975974,47.41221532281268,0.6810151101680675,1.3582132295974303 -2000-08-20,3.7560337952458687,21.25086990503864,14.399945611143355,0.5137906804491971,6.644131549737857,1974.9521763342022,0.0,1.3028142136662302,50.29035693841215,0.6296038500272947,1.0825056867036633 -2000-08-21,2.6753983143772473,22.26495728771713,14.428319440932018,0.2194438512091232,7.213079950764612,1339.5216114171626,0.0,0.828107861735738,46.46220477253512,0.5724197983375527,0.8307519797061768 -2000-08-22,3.4755122590177416,22.385621661608656,14.545887474645696,0.3556601350394599,7.241397946397839,1223.0455476537213,0.0,0.9601627016080778,41.9166478212392,0.5287879238490405,0.6869794490666645 -2000-08-23,3.5553230223820256,23.33482509028085,14.003642158388887,0.3821400026268322,7.948038950941331,1094.6507466605042,0.0,0.8995295167626827,38.840877233405116,0.49388702085796266,0.5841579908140515 -2000-08-24,4.873893509625986,23.27472089295547,14.525261921351413,0.2667648282580813,7.74844163971776,1186.5738402736044,0.0,1.1474572795300793,35.805058360156316,0.4738822401389334,0.5549767185712075 -2000-08-25,2.8559197385682253,23.27808497986071,13.875643768315124,0.2568164189823853,7.965241895121457,840.9172317770447,0.0,0.6257653244248651,34.561162971654205,0.4358836734767338,0.4565457748400113 -2000-08-26,3.5757232454769516,22.621550800366357,13.876159010540366,0.3791048321242641,7.616103328500942,810.0333286351903,0.0,0.721216555699141,31.723911671458325,0.4112168406912624,0.40700571676977026 -2000-08-27,11.942975906973533,21.03196273839913,13.60980645904982,0.3747842729203045,6.838852145165313,2033.3371540686453,0.0,2.6382074134375664,30.206553794919333,0.49101347595862704,0.666647644781161 -2000-08-28,10.905901394431284,19.971343134901666,12.993151749825593,0.4894762068982901,6.47585435639073,2467.6559532770493,0.0,2.8737033549064197,36.49401951493658,0.5521769777855321,0.871520072771392 -2000-08-29,11.72292827800726,19.23632727864429,12.552839457282046,0.5145006858529095,6.231953722802518,3073.9729342011797,0.0,3.5636282787592535,41.188162151782144,0.6163783703504863,1.109933656175325 -2000-08-30,13.053066484767857,20.15714934022552,12.626301930062525,0.5599371725211048,6.716054422671533,3934.454347458943,0.0,4.579563115769087,45.98399538924014,0.6877417889632919,1.419820780679932 -2000-08-31,10.627062472464477,21.16124099507489,13.181696509309035,0.9837596007477056,7.074330713309016,3839.337461588436,0.0,4.03008156128158,50.33685486319462,0.7101883501606918,1.5378760499802535 -2000-09-01,21.662997195550044,21.180258022915737,13.83116164325218,1.3156371018163129,6.85737547216375,7610.261939076768,0.0,9.72648307836138,51.37427439749272,0.8508347507807116,2.482085764529801 -2000-09-02,27.95200902326929,21.58453638543084,14.279611552995606,0.9854350689222172,6.9227401276320455,13842.017475484936,2.379230422027156,15.443477827145166,60.26912139875786,1.0,4.329491797097104 -2000-09-03,17.451571978956288,19.788242081739224,14.016926126689533,0.696106187395664,5.979011277996556,10965.553031924239,0.0,10.820870518164838,66.15521524803992,0.9739624498874816,4.465933064850547 -2000-09-04,3.999735768927097,20.160682401628,13.48654332946502,0.3781059759921734,6.418308219214432,5002.971764261813,0.0,2.1210778995170343,67.50815928695299,0.8330185498676065,3.2300779708459313 -2000-09-05,6.1995244131267295,20.121941905652193,13.267131809078,0.5789545578375628,6.483674208497411,4116.520677358119,0.0,2.8122848253866604,59.96256323751154,0.770743513955752,2.530840855370582 -2000-09-06,4.497163143183762,20.38607192440952,12.72955519255986,0.4862477872064357,6.828714953815261,3010.755215666296,0.0,1.8174717707606405,56.06163302874882,0.7054689629648527,1.9241953735895037 -2000-09-07,5.840648763046636,20.367277121526424,13.154482961818845,0.5937893640736299,6.6705423693855685,2768.231370016179,0.0,2.1383154352062084,51.37496834348471,0.6665231909653835,1.578150864961998 -2000-09-08,7.627271724576514,20.878349639640906,13.316916888807144,0.8422454168052862,6.900035457904329,2916.718967405542,0.0,2.6887031245918935,48.96116611835721,0.6592169772912031,1.4366968104191291 -2000-09-09,4.480185792390787,20.70311531670326,13.40710316768299,0.75641419616604,6.773188380943253,2072.4941324762267,0.0,1.4866883011878569,48.199882307492224,0.6136871166631098,1.1615923552524172 -2000-09-10,8.772202314104046,20.8872648306142,13.331250756472896,0.8286268781671551,6.907221909078781,2717.683420154413,0.0,2.8513131286687603,45.222501077524,0.6290017274970388,1.1902965741755458 -2000-09-11,3.6822994451585993,21.432911406470406,13.343871877305741,0.4974364961585845,7.207731143469551,1695.8057591208506,0.0,1.1452485616856203,46.13474927843237,0.580334879861594,0.9492081379053342 -2000-09-12,9.295845627252637,20.349132729434224,13.360772699693358,0.2871256422961354,6.60145425177526,2545.471344111624,0.0,2.8287938552994003,42.47069705755137,0.6030451642473432,1.0486155386973781 -2000-09-13,1.7401717589413104,19.24991873993537,11.748191084570493,0.15970229475934508,6.575622450659038,1183.511133950866,0.0,0.5064931984209857,44.6607847055395,0.5405397185346644,0.7597205025490561 -2000-09-14,0.9439946704427103,19.09216926314772,11.36278006799765,0.14406509171591358,6.6238654524757905,693.5090299430188,0.0,0.2396448950764568,40.26587582087686,0.48006708252403046,0.5310318157997087 -2000-09-15,1.1576538035380004,19.321458327708683,10.21267700265768,0.3029257378717499,7.094357861449481,530.8796303447558,0.0,0.2574807579987102,35.87577099983374,0.43141431868786395,0.3848820027098879 -2000-09-16,3.323669625025361,18.03617080049145,9.127232830197887,0.38074753422038426,6.76450402066127,707.0719830151694,0.0,0.674058897255116,32.0100738942249,0.411614182808748,0.353175519161119 -2000-09-17,8.215716227363922,17.41815514061021,9.041244252318856,0.6907891718105934,6.489475640005704,1405.8463350372174,0.0,1.7384034958316033,30.794291442594364,0.45444017047570345,0.49459827706939674 -2000-09-18,1.2955601082546249,16.773577558430993,8.822807813029094,0.7041807714621239,6.237856064827653,603.9551242074223,0.0,0.2725930998976427,34.114828988210164,0.412507051876354,0.36346655867864325 -2000-09-19,1.4352005905908314,16.861097714543757,9.27753308519391,0.7210192756121528,6.149571054508672,439.2190805110122,0.0,0.2737510346699672,31.207568397979067,0.3802661519440961,0.27828228587206383 -2000-09-20,0.2518414098391302,19.35757873255648,9.985240738669573,0.5198710450484696,7.195377130620437,226.89168568950615,0.0,0.04306655713501667,28.868594549551105,0.33923335759565243,0.1877062083731498 -2000-09-21,0.6898772163093149,20.376285204712747,10.630211647568665,1.0795871532395438,7.529710960086811,193.06875953392333,0.0,0.10263936245822192,25.2459708795912,0.3021350656951969,0.1378162786651914 -2000-09-22,1.9146771669706013,19.646226277206477,11.283594576262104,0.7883883390168678,6.970824673862865,264.01712401183806,0.0,0.2572882731397599,22.369458446567467,0.2828937338705,0.12888786050224507 -2000-09-23,4.9358005762111485,19.49319521983945,11.150135941873462,0.9872046804904502,6.93667836225792,539.8319085517935,0.0,0.6743671695327667,21.2079942408807,0.30455750416861527,0.1865823033169474 -2000-09-24,3.727315845354853,19.484251783862263,11.372802317730846,1.2964504613925538,6.865755670420235,510.03850747984654,0.0,0.5331575985838461,22.82605330863541,0.30932876781606955,0.20263743071137136 -2000-09-25,4.017265197776899,18.900877999880162,11.163009789828553,1.3172974273622644,6.62960098403798,550.2380430288259,0.0,0.5883064315732138,23.212663763309592,0.3172102313798564,0.22148578858001652 -2000-09-26,0.14107030718253133,20.21828567356734,11.098475768823198,1.1226868702729291,7.338896943603305,193.6480856133949,0.0,0.01954009300438775,23.912157157495944,0.2802038103149916,0.14715210635552686 -2000-09-27,1.1485974572860165,20.75818759275642,10.955749257646449,1.1413167066668837,7.658232495943579,191.62137408265772,0.0,0.14068122056865628,20.849878137986728,0.2562673425829664,0.11720989917696922 -2000-09-28,8.434364820436363,19.79574780860593,11.148378658153712,0.7277936291986125,7.114794012884979,820.9047756849973,0.0,1.1269453091546229,18.96394402335867,0.319171742980934,0.2478922069666695 -2000-09-29,2.344728266209195,19.65881003168014,10.625043034662584,1.1023366957158658,7.204082192961239,449.36709756174434,0.0,0.33982681559344385,23.81668091963222,0.30476269963550917,0.21310982867265588 -2000-09-30,4.441943944250002,17.86196467491742,10.020466582343852,1.154706666020794,6.471029273866246,583.1833000775583,0.0,0.6424199368394623,22.714835001940667,0.3163580832459518,0.23654240803542662 -2000-10-01,2.5520648724079504,17.257507497397615,9.8232210127187,0.7776971161761367,6.224857413315832,436.9967137234186,0.0,0.3733783433632145,23.927005000410475,0.3084632315083709,0.21083035876225908 -2000-10-02,9.392775095949123,18.951359995654347,9.498726216496307,0.6694370405172351,7.176746159909849,1178.4164966083358,0.0,1.556100016340288,23.45606120236409,0.38266669654694524,0.3741798699850601 -2000-10-03,10.79869296447717,19.00262318716848,9.423310820936996,0.8497218746567318,7.226208383326157,1776.0366890288242,0.0,2.204882818587194,28.42388110558639,0.45691642507986846,0.5792994903512363 -2000-10-04,11.188951305440499,17.994890162686275,8.559178640147492,0.5873390875338043,6.966270953465383,2294.858946917639,0.0,2.7291031654247444,33.749952009400666,0.5235077894925574,0.7926430146010589 -2000-10-05,5.691053612479543,18.864999132358555,8.958876648169053,0.5669022282839169,7.287930766657905,1651.752020593905,0.0,1.4805394299980748,38.70747245788432,0.5172127605559041,0.7414073482285068 -2000-10-06,3.6253280176731737,20.524094442377606,9.357342470218423,0.9590528118745358,7.993507357640292,1166.03374422679,0.0,0.895003801558528,37.985766170735964,0.48474106687304386,0.6188988880597868 -2000-10-07,2.8833217991940034,21.54652364015673,10.05491633538078,1.155926571302921,8.326850162161819,882.8089064155993,0.0,0.6438140399710792,35.131483450986494,0.44284673626958976,0.500904286407267 -2000-10-08,0.2680183176851363,21.93970291902346,10.701358732689071,1.3987553547076907,8.36690028999448,401.48127557757573,0.0,0.051427324284087694,31.958657245882456,0.3754189453351754,0.3338957177980125 -2000-10-09,1.2400736242482573,21.431750190290707,10.631397556736497,1.457721606513292,8.13756457054346,355.7166703288772,0.0,0.2023971278795642,27.192939951340527,0.3312253523697493,0.248168371881748 -2000-10-10,0.6311760045246669,20.56468944561885,10.158415631199958,1.127899357812727,7.834135226957781,232.15551653752075,0.0,0.08945793387478862,24.173773943294602,0.2889608681520245,0.1751672381590362 -2000-10-11,0.2281026875451192,20.482056888308364,10.017791218908156,0.6627375302607197,7.834086029570845,138.3617753166887,0.0,0.027883816745626677,21.272093187793512,0.25046272129739244,0.11827136220318761 -2000-10-12,0.8730988233569141,20.06029936396148,9.542120259705989,0.7765216288419722,7.752145606271218,140.1219474341653,0.0,0.09346357860836663,18.471982626543006,0.22535709775645604,0.09122030860306411 -2000-10-13,1.2268248922594396,18.78020185510527,8.91855738884991,0.4069278980162438,7.29141259535873,142.8791026138248,0.0,0.11928618597270924,16.66722989583777,0.20845361983014368,0.07754321755259637 -2000-10-14,0.1825809757021968,18.851442973087714,8.999428544242724,0.9072434879614084,7.309626139363015,68.27290810324223,0.0,0.015995782430407585,15.573667388798295,0.18354962278910988,0.05291258427319946 -2000-10-15,0.08808053732760096,17.875376307966413,7.615566047126353,0.8173679046035515,7.186113658843117,40.33177869034719,0.0,0.006733972650543929,13.72131362750368,0.16087008983761172,0.035468952286135835 -2000-10-16,0.109526447378472,15.240973561539118,6.195751106046625,0.6715707870078524,6.303235753926221,28.37485722693803,0.0,0.007329675502981192,12.065883341638548,0.1418352784481357,0.02420467227274943 -2000-10-17,0.13671939437423672,16.640509046294248,6.535357020649978,0.7395835746013929,6.869429969371317,21.570360162305505,0.0,0.008193322967842226,10.832579353955708,0.12778490164278689,0.01700365849022051 -2000-10-18,0.8309910456894223,16.777409885059303,6.679918588283239,0.8870323135941541,6.903681217874104,41.54812244811616,0.0,0.04587684350752075,9.655766145155903,0.12216361929134055,0.018054009659097085 -2000-10-19,0.4237662429977578,17.628441890221012,6.576710745263343,0.6364796983326659,7.318176521515281,28.742802639983978,0.0,0.021876257872103233,9.226457313223834,0.1124185689764741,0.015083295184446996 -2000-10-20,1.7026447192359668,18.205604530919658,7.069296763825589,0.7044722882502891,7.481795687065733,67.69457858465762,0.0,0.08633617547955796,8.423893812088005,0.11796731586001676,0.022964474394880512 -2000-10-21,2.8871057870794283,17.657915262970413,5.883413744395776,0.8018309302227102,7.4783532471750656,126.15869643636917,0.0,0.1624043186641968,8.809321943082484,0.13625546184511192,0.03967725018553742 -2000-10-22,1.7840608966766989,17.632623896899076,6.2901637883948585,1.056025017366523,7.391387067406345,106.55662692949231,0.0,0.10855771204374198,10.169135570600986,0.1392466437401512,0.04235754040113991 -2000-10-23,3.73635911443132,16.69602231073085,7.211971355412498,0.8151368403258022,6.760913793075208,200.22974039496287,0.0,0.25351331508640884,10.409337640573805,0.16478778725779747,0.06617391532268523 -2000-10-24,5.158214174701247,15.718152351642148,6.608564385843857,0.7548359437965066,6.453630998822853,341.31008557774265,0.0,0.4332104167322841,12.46320271797071,0.20527757298792265,0.10903879438371457 -2000-10-25,2.6755982177123205,15.043296629858306,6.5243915441669005,0.6168983503627083,6.162537744974022,263.6421225619442,0.0,0.25467629941457703,15.598916338694794,0.2128857184708996,0.10975735919091426 -2000-10-26,2.5316431400666164,15.892964687055784,6.324800275100901,0.7337673813630178,6.608948364073251,251.55071837534936,0.0,0.2500080062559564,16.266882256922464,0.2189900898860473,0.10951429451064745 -2000-10-27,1.1803691579307931,15.21878031135343,5.619573662793338,0.842505777242177,6.465271996617674,161.52612153537498,0.0,0.1139956533692481,16.58107261520399,0.20690876801579164,0.08864618081618557 -2000-10-28,8.178025445790777,13.030190816268732,4.065646676713769,0.5578060528160103,5.836756187440014,667.402424076626,0.0,0.9213673123053745,15.718314068104746,0.27837617193812725,0.19799628182357662 -2000-10-29,4.391149072416528,11.845032860627748,1.3401356923516146,0.495987322527475,5.852607762585454,572.6335226066418,0.0,0.596585541173372,21.36080991559547,0.29999288212413755,0.21972523553039705 -2000-10-30,6.10410547313872,10.367414172354847,1.580625231543782,0.6072038290351444,5.219707162478932,787.0936333007159,0.0,0.9265922741593506,22.993485679682067,0.3389672310703839,0.2841181633565933 -2000-10-31,0.8718837629835171,12.98162741775316,0.3301086780617025,0.2657927354048588,6.446346348446272,330.4996608400664,0.0,0.13604565185541728,26.27794353489542,0.31627710125100844,0.20566253106301793 -2000-11-01,1.180607825209046,13.255497069253039,-0.4902697248156467,0.5738715108214381,6.647766364901481,255.58032312860746,0.0,0.16758899598141652,23.93313398335749,0.29255808420557483,0.15939454198163108 -2000-11-02,0.04530966548963486,13.860910965836403,-0.6484594897375023,0.8150690218957549,6.896673513108685,118.11304297404033,0.0,0.005737548140130805,22.069373907006128,0.2576210868176935,0.10463198175061214 -2000-11-03,0.0,14.16415927744916,-1.824883371425035,0.639010344807119,7.113970461436418,69.24866282363172,0.0,0.0,19.36354564167196,0.22557219308603327,0.06811050241650622 -2000-11-04,0.14112228508046876,13.730964799145417,-1.2498586220682335,0.579656637955975,6.909936125347938,53.20712674666415,0.0,0.013460819280838976,16.901850256350237,0.19853908803778467,0.0463863444691654 -2000-11-05,0.006999950414920415,14.455446345149872,0.37876955688687,1.0608748013126024,7.029544463682503,31.362170038350406,0.0,0.0005840123620063434,14.953284993506967,0.17427718799236608,0.03028425460085575 -2000-11-06,0.10041511759953806,14.318326071018955,0.7091103312820188,1.0083629436995798,6.941799612261487,24.590627668798575,0.0,0.007321229233618914,13.106140686477566,0.15384743119708563,0.020828391691137763 -2000-11-07,0.0004649005698847005,14.866500798389284,-0.4646653564979952,0.9582640356909378,7.280453845366822,14.008846963436683,0.0,2.9716690596497033e-5,11.59836474902035,0.13511851030312977,0.013562828861663543 -2000-11-08,0.0,14.550651384835394,0.05388582564329671,0.7838218320867268,7.111746543667966,8.863653565881895,0.0,0.0,10.124582794563064,0.1179445328512424,0.008828764135986468 -2000-11-09,0.1881679140193132,15.219388789180007,1.4984390832784975,1.0573926914769498,7.213562665302971,11.76798076839635,0.0,0.009213281592467149,8.872522388549704,0.10555090582301904,0.007149968729124365 -2000-11-10,0.7659500256823226,14.421851465893702,1.8159837186859549,1.093517437644454,6.854075658315411,27.844429379273546,0.0,0.034681241260090534,7.927477694134695,0.10127254545643816,0.009935024915366176 -2000-11-11,0.1053472230644007,14.101547919974331,2.2907100398366365,0.9634980570852948,6.657323317931286,11.406341742393241,0.0,0.004418446156486122,7.6611826459085215,0.09047481322026799,0.007140007973922935 -2000-11-12,0.4841839083413574,13.728702077311153,2.045004447684609,1.0204179483516926,6.545666335998941,17.273366984846223,0.0,0.018693190027642248,6.872955725956711,0.08570569423903791,0.0074941239433021604 -2000-11-13,0.2863133086367751,13.950952328780112,2.88050000863158,1.1131895316043292,6.505740642495474,12.750370903588625,0.0,0.010345045858163149,6.525731733673307,0.0793557113986303,0.006453508520566614 -2000-11-14,0.019697619200323303,14.441950899265445,2.6621867584247734,1.2057289492081218,6.74887930137544,5.307936145230508,0.0,0.0006451736424950456,6.048018469105926,0.07068478316889829,0.004299167950085908 -2000-11-15,0.0004668528170905157,12.72175213016209,-0.9023377387243026,0.7430326212609182,6.533142204501173,2.896595117582272,0.0,1.3506849446390332e-5,5.363157040670955,0.06248258593400245,0.0028006128919746054 -2000-11-16,0.0,12.3678737344158,-0.7758690684812821,0.5935083850746216,6.388966847827266,1.830034355984002,0.0,0.0,4.761783621167931,0.05547155434779439,0.0018230673638695452 -2000-11-17,0.04657927569255303,13.017443883440464,0.8989261548529853,1.049434965746262,6.439670741161962,1.8843951175364306,0.0,0.0010673166250952798,4.240049445927902,0.04993632155882447,0.0013492458931494407 -2000-11-18,0.7544432849558876,12.681173131015878,2.5935955942218456,1.0432091896045308,6.039073183564238,12.039436605288893,0.0,0.016990669052416085,3.8138030077031138,0.05321697554060432,0.003465376025039341 -2000-11-19,2.1951872581461878,10.942720880494347,-0.7881202803929365,0.8786641610878622,5.859422828357668,43.40368006407813,0.0,0.061473318871875904,4.095325433985989,0.07328021271817349,0.011616017851530306 -2000-11-20,2.4152935535015603,8.003401423320687,-4.5236495470939815,0.43894936381115385,5.173798922756645,69.92844361827044,0.0,0.0898964761694554,5.6558103877760795,0.0940228948948898,0.021249548188868914 -2000-11-21,1.9618799731471548,6.895518348299192,-3.748359876802033,0.4484818645883049,4.730397658203999,77.49844793906065,0.0,0.08904960274674978,7.3484018557431465,0.10845847807294925,0.02739157467324339 -2000-11-22,0.3497040028957368,10.543616652215784,-1.3424597352762964,0.6145896435735821,5.782124987698774,34.284569443340075,0.0,0.016637828974060964,8.545276185728822,0.1036204952199865,0.020363982957058834 -2000-11-23,0.02111162530779953,11.570413554821876,-1.0145619059193054,0.7314481338406654,6.1319648712485995,15.248045893598706,0.0,0.0009208096106146924,8.00307085252899,0.09347629162258514,0.013396202664007829 -2000-11-24,0.0,12.00774227388412,-1.047720226071994,0.7517978711905025,6.302607214529494,8.875374618419531,0.0,0.0,7.173056738557501,0.08356125317074181,0.00872029831274389 -2000-11-25,0.06600887132697439,11.61926420857088,-1.271230961581005,0.8586363572855815,6.182631388978306,7.187000764895842,0.0,0.00229622452328046,6.392863277515626,0.07524148637020617,0.006026138452933622 -2000-11-26,0.006326765986252092,12.326089516622114,-0.5625199673876629,0.8168998125806618,6.374941274843667,4.185448434910788,0.0,0.00019733367291269177,5.771000096342722,0.06730194534753978,0.003952779871226314 -2000-11-27,0.09290260256389292,13.713737248305714,1.5627248940418696,0.9863671836812832,6.651281456860594,4.293095036052944,0.0,0.002599699283573606,5.144062893629133,0.06100710138280987,0.0029689165363020378 -2000-11-28,1.271862501715965,13.357009342929436,2.2222014515424275,1.1588576484628177,6.4071797467596046,25.721119461619693,0.0,0.03618223332494508,4.63892278221422,0.06885664557669606,0.0074419046630365936 -2000-11-29,3.347131527580918,10.427580946935176,0.2114541224331888,1.0153123877086088,5.546638797951309,89.19843789790899,0.0,0.1258988097302738,5.259397296585315,0.10026023217293925,0.024014283826747217 -2000-11-30,0.6167805730823586,10.487924149192313,-0.1502563254257669,1.042973029309478,5.625004060929948,40.83761499067655,0.0,0.027157398404684896,7.779260136522932,0.09780818818788134,0.019767285198072585 -2000-12-01,0.4102421470385006,12.236674395339179,1.7301838913432532,1.0102519928947986,6.033632407233919,26.360604503223758,0.0,0.017365210429845734,7.578102788587253,0.09305880852620636,0.015511683422439245 -2000-12-02,2.4595283361385456,10.765859687389696,-1.0634705177279054,0.9910136298074392,5.853212862185051,84.69261884428593,0.0,0.11240607313122686,7.154655892280003,0.11199873521460439,0.027212862046677593 -2000-12-03,2.190019940145141,8.179205945128112,-2.738289037584748,0.5211502770184699,5.09568153073135,100.55772408558238,0.0,0.11670242487411553,8.636395646136691,0.126120409570173,0.03548396239770421 -2000-12-04,0.5428970873959951,8.692431018553236,-1.8892831952808125,0.7991488879038702,5.184733659714166,50.084348163753205,0.0,0.030169820843918727,9.864158115505772,0.12123514510864469,0.02769219269119044 -2000-12-05,0.05898825398109734,9.464660032517836,-1.5873103151957746,0.8768645872842978,5.4344533156358485,22.333175881887037,0.0,0.0030645659326596145,9.467085157390231,0.11097230386759063,0.01849294134440617 -2000-12-06,0.08805305454653863,9.876739891073823,-2.432832240526641,0.7925077194949959,5.679690429325863,15.106978204564427,0.0,0.0041647810108041555,8.626595631243656,0.10151975533847918,0.012672185081378726 -2000-12-07,0.04208018599743616,9.309531292824193,-2.4355730625634058,0.7732337404616316,5.475920438615958,9.69309154832077,0.0,0.001803417051674451,7.856688524239986,0.0920153061644421,0.008523593782933617 -2000-12-08,0.09535235570537932,10.109187855908957,-2.389946197145596,0.8773148749259443,5.762847005563835,8.106843271100738,0.0,0.003725427951890417,7.150640798640952,0.08441091301970635,0.006115710384496604 -2000-12-09,0.02588249129193641,9.93820541926866,-3.1798201579979066,0.8632906709957284,5.7742565348808705,4.80512625588844,0.0,0.0009164248727915152,6.525083300805784,0.0763143149452391,0.004120579246972251 -2000-12-10,0.14976393865434148,9.914300935664397,-2.2340450791547273,0.8368182588429173,5.67901211419103,5.911918197459097,0.0,0.004836091282960392,5.899125626213938,0.07046546692079603,0.003418669763042713 -2000-12-11,0.2059033383940061,10.609180282337148,-1.2729828335185167,0.8522857681955422,5.832653719777706,6.548405266066618,0.0,0.006180315920548685,5.4577025994818005,0.06597717359326631,0.0031664377377983144 -2000-12-12,0.3785340802691773,8.843340297782722,-4.305016430174522,1.0231363935935551,5.481640400988002,9.489429504113708,0.0,0.010788763421057779,5.095697973324036,0.06377109609168964,0.003703950755941227 -2000-12-13,0.06706333833828328,7.855586897801302,-3.8843073015186764,0.6471833703030712,5.107600321586541,4.244193224422687,0.0,0.0018037049163868307,4.9585540821100444,0.058545039432355624,0.0026857385757421306 -2000-12-14,0.5339185952436861,9.11794571418127,-2.256923178279358,0.8365046614437442,5.39576700143271,11.01635510135819,0.0,0.013950629062677744,4.584979511219002,0.05963169625162873,0.003872478947880277 -2000-12-15,0.15004336936711332,9.10665237663332,-2.7543047738198907,0.879835032462677,5.444852719178434,5.831331960708353,0.0,0.0038118648100991526,4.644677337386095,0.0558552490887691,0.0031012145178516914 -2000-12-16,0.07342650854886325,10.507385607508498,-2.56284392137278,0.7604166155697022,5.933642892131195,3.433528171557426,0.0,0.0017306358394153648,4.346874351346421,0.051493511442492354,0.0022822597669445365 -2000-12-17,0.005442948598734882,11.51865015484186,-1.6939796539022864,1.0187733283358744,6.2244954886645,1.6830031602658069,0.0,0.00011613166894778974,3.970844364322877,0.046321054321043824,0.0015033266042602284 -2000-12-18,0.0032064433575755675,11.786175640360296,-1.833355206006448,1.2882831686940006,6.338424333497792,1.034329886705196,0.0,6.110988577743897e-5,3.552661948454498,0.04142345861184426,0.0009878998458973552 -2000-12-19,0.0007538244191444124,11.737271573186,-2.564775670433764,0.9022410957963144,6.384959447715462,0.6560773347215996,0.0,1.2801029816501808e-5,3.1705142634761456,0.03694312553537713,0.0006450255142831648 -2000-12-20,0.06722576697640807,10.83190511717053,-2.5610759904737987,0.6966216056043503,6.055088485661266,1.092680235650696,0.0,0.0010282634217427117,2.8254043369488566,0.033697181725069754,0.0005764495898996562 -2000-12-21,0.17910886306601406,10.71900705764556,-3.296581979335945,0.9277562408472004,6.0751971881892235,2.1135952391029242,0.0,0.002569655716690128,2.593646709000381,0.03230072461194819,0.000766509633795691 -2000-12-22,0.01464988500255781,11.178789346571897,-3.136215906385777,0.6038121377651012,6.228955029561431,0.7800777985167008,0.0,0.0001951304207770052,2.4852970579837406,0.029122688838274766,0.0005286732348361369 -2000-12-23,0.0015843262262351756,11.889796112520113,-3.0765058559188683,0.6643596363197687,6.482223902557461,0.3796092969121127,0.0,1.890734479737888e-5,2.2343958324070665,0.026047654567679674,0.000347020350796301 -2000-12-24,0.009643423383901898,11.488938167997466,-3.3108632732709755,0.6468968176584834,6.354459605201718,0.2956290930767954,0.0,0.00010257594437213316,1.9889778944629304,0.0232825848198471,0.00024151264127749857 -2000-12-25,0.013012501528857448,10.807564971733337,-3.8890224283624066,0.6874043249065399,6.1505827708567615,0.24441623383715902,0.0,0.00012410029459295792,1.7823135859059482,0.020914333063862818,0.00017610948153936234 -2000-12-26,0.013820297128951551,9.087297540057813,-4.642839760383807,0.7772693242695449,5.599387947890785,0.19996247882650106,0.0,0.0001188750134126209,1.6073446807284224,0.018885474085002477,0.00013273947224655096 -2000-12-27,0.0,9.466754162141193,-5.268883971606099,0.7033172276734279,5.765426948193341,0.09388751029279446,0.0,0.0,1.4666905664818797,0.017085951807705557,8.640715767730908e-5 -2000-12-28,0.0282262033332308,9.569567500251706,-4.629850354378148,0.7657213228918222,5.765341354415404,0.18805671287589876,0.0,0.00020090230162363512,1.3228474441102698,0.015739093000545195,8.683734182524626e-5 -2000-12-29,0.09124476885280752,9.879821800533373,-4.47919911927756,0.9392930438606,5.863800417335435,0.46929406550127223,0.0,0.0006139706682313228,1.2186088501878762,0.015258907585231499,0.00015001313248341576 -2000-12-30,7.236669842293048e-5,10.594405789122614,-4.020600928321958,0.644168196625057,6.085289872382964,0.13445952098754532,0.0,4.541008312803431e-7,1.1792509294088613,0.013738317722549064,9.772064218938468e-5 -2000-12-31,0.06887518927263153,11.62611797851556,-2.7922042064760304,0.9215167212332176,6.368233195767753,0.32774996063356887,0.0,0.00040000671511858377,1.0573341395149785,0.013119575973826418,0.00012451847679511208 -2001-01-01,0.02173076103770817,12.671451661303726,-0.3198101689376365,1.5919673017041227,6.523432515238475,0.18107976345642188,0.0,0.00011732317579067619,1.0043151279630607,0.011952739734334502,9.891986273232359e-5 -2001-01-02,0.002376713023818196,12.431164619645932,-0.520396931787309,1.1618684874941951,6.4536227867400955,0.08053836249250118,0.0,1.154279151177216e-5,0.9123145298405845,0.01065553351992911,6.614974193232743e-5 -2001-01-03,0.004267446649625729,11.41131925775126,-3.079079403125621,0.9635441654372944,6.312084347910356,0.05646897571795826,0.0,1.8519930450412725e-5,0.8144143344110634,0.009537088310728085,4.588030596256343e-5 -2001-01-04,0.2177127356660217,10.426073119408214,-2.0212620170212245,1.1622796651023586,5.8597870596561945,0.6658610646627383,0.0,0.0009717957106212538,0.7309184063289292,0.011050910359567425,0.00017783617590272626 -2001-01-05,1.0787442504258382,9.714772591643658,-2.73365315083577,1.7283131690474136,5.670317264321773,5.402412507610855,0.0,0.008006383667434891,0.8541927752436804,0.022517407299576533,0.0013348531823640757 -2001-01-06,0.1581996750673898,8.968098429466199,-4.033993279962772,1.2161723931802213,5.51626656004942,2.343511035676738,0.0,0.0015397741259187137,1.7462797507784527,0.022185895534067194,0.0011033800410811716 -2001-01-07,0.2075436524056744,9.739677676358477,-4.009748060804896,1.4594671632745415,5.783694622353146,2.166165007174034,0.0,0.002024467888130932,1.7255767808341103,0.022519543873560404,0.0010265036909293088 -2001-01-08,0.08294995709148563,9.555173852739806,-4.37832451917676,1.0828825641522848,5.744046230349413,1.3102777951044473,0.0,0.000789035554620135,1.7427147392600848,0.021267757311424496,0.0007883479765847535 -2001-01-09,0.0025454042297585037,8.950323042842996,-6.449730691589501,1.1943115647532254,5.642066399818136,0.5831876343443605,0.0,2.2359748148499756e-5,1.6471223555614574,0.019217512191496415,0.0005165820823736951 -2001-01-10,0.0237449658441768,8.239376974705797,-7.525865036381692,1.2798429473817994,5.440395956208365,0.4659088107618512,0.0,0.00019011533804209543,1.491268734349112,0.017648883589404345,0.00036521852502208 -2001-01-11,0.001917679786204151,8.497864106506492,-7.039133729959628,1.1482575174598482,5.511223717829934,0.25830566701658436,0.0,1.4046966401381426e-5,1.3747880860825796,0.01603768982127357,0.0002398789526664741 -2001-01-12,0.0,8.8594691557613,-6.822450225731402,0.7955830837264164,5.622717097775424,0.1578371719470206,0.0,7.771561172376096e-15,1.2476671376713915,0.014534477192040152,0.00015614992387628265 -2001-01-13,0.0016157478642093528,9.914368049511431,-5.803363268471237,0.8548481459660972,5.938682699357208,0.10810597202196098,0.0,9.706668194312765e-6,1.1283959975582691,0.01316387155249917,0.00010312424502438689 -2001-01-14,0.5029864816728188,10.062727608720259,-5.3017785271000495,0.9886974454075924,5.9669632861759565,2.2844021271369344,0.0,0.003393327665453527,1.0159522018966913,0.01769460698760757,0.0005838133027215287 -2001-01-15,0.5270640488153047,8.578149690416906,-4.44322900105637,0.7873908871447128,5.40726172967443,3.564435826834943,0.0,0.004573333712255545,1.364746568642041,0.022038312496081118,0.0010763926395273918 -2001-01-16,0.9633304572565644,7.950993348949821,-2.7923820494179306,0.8117811834432231,5.037391184109225,8.370517174394756,0.0,0.011311678745183462,1.717613567404392,0.031231182262519308,0.0024230512121133398 -2001-01-17,0.12347675759473987,9.752255223389398,-2.8597821748894945,1.1142740675431202,5.689255625355909,3.3377206841389473,0.0,0.0016577148436271033,2.4505060516838513,0.02998515654102008,0.0018297040297274604 -2001-01-18,0.043747197367853013,10.838453976174684,-2.644375694670834,1.0018308402952896,6.061598495112547,1.6973037114668532,0.0,0.0005481747212080224,2.324195417126286,0.02758492780907854,0.001274519026648104 -2001-01-19,0.00536133175866727,11.127955783447273,-2.3911700773023044,0.9433571913581644,6.143923052885445,0.9119417655896453,0.0,6.0833012798583094e-5,2.12324632208597,0.024796837603135967,0.0008389147088267873 -2001-01-20,0.04162600185244498,11.32819872592816,-2.515982494440828,1.2220678484957648,6.2268003216241725,0.832178825341804,0.0,0.0004277552813717958,1.9057892475496776,0.02268606880092499,0.0006112261071912779 -2001-01-21,0.05282301589916494,11.561166454138167,-2.605068702927626,1.5584912232614991,6.318011966450579,0.7482708562688988,0.0,0.0004976838214660884,1.7409071037822355,0.020895741120378283,0.00047365918216123046 -2001-01-22,0.09315726145121912,12.399064523496067,-3.03891330581141,1.493696681336527,6.653986344376701,0.8733851467659522,0.0,0.0008178241573591621,1.6008066161206205,0.019733531964831155,0.00043285567512422194 -2001-01-23,0.30766721165164257,12.025955805668525,-0.7651134103958327,1.6583970017972731,6.311476783255184,2.1052572871912156,0.0,0.0027151831701706097,1.502133673202287,0.021082954650979646,0.0006951954488327012 -2001-01-24,0.19837268823030105,11.306560599117928,-0.9215320611649509,2.0558936033644124,6.054350173113442,1.7981048088571687,0.0,0.001812887157096904,1.6153425356278823,0.02112855404945817,0.0007285784141095202 -2001-01-25,0.06016784197444142,10.211659897021194,-4.600581168749226,1.4951544257451492,5.970298734465738,0.9388644765839828,0.0,0.0005312629480865375,1.6267697738660776,0.019651680774080246,0.0005551629364926019 -2001-01-26,0.02517893944817643,9.952032153052391,-5.838934881019341,1.203798127414372,5.938893878032251,0.5350013370628623,0.0,0.000204962386101272,1.515525439524145,0.01794816259859488,0.0003925935301529744 -2001-01-27,0.0,11.387493395290427,-5.10176056615768,1.1284142913501594,6.399198990911878,0.2703937400345566,0.0,2.6645352591003757e-15,1.3850299241490998,0.016134660627841413,0.00025555993623407484 -2001-01-28,0.19629300690864987,11.988521878414463,-3.865324739296264,1.2496800779969173,6.548255581669435,1.077053698719393,0.0,0.0013924046129742407,1.2342998988761844,0.01666543850712571,0.0003783716792254984 -2001-01-29,0.4675770867560246,11.478964545745267,-2.710525476125518,1.4101731355327038,6.284738265247334,2.7759201399106628,0.0,0.003748606023026624,1.2712619287368718,0.02025629693067018,0.0008170828241572224 -2001-01-30,0.09778101325147256,13.719292522277884,-0.6662608442091116,1.7834269702321484,6.93716506328257,1.3006750128669526,0.0,0.0008344976934587522,1.5528285562474176,0.019228483636765846,0.0006589471173385823 -2001-01-31,0.04892087640512226,15.651603569346062,-0.26786287298756656,1.8740671574886736,7.645042823833841,0.7464762175273361,0.0,0.00038568625305528126,1.4557585893471414,0.017528496756854913,0.0004876700325703048 -2001-02-01,0.36987809467484295,15.625668784217346,0.16378862579275644,1.9440233381660352,7.592071483561375,2.2673920001364265,0.0,0.002943320506140823,1.309008163465773,0.01955788790952456,0.0007656142988862842 -2001-02-02,0.11603305238056875,15.523924616683331,0.4209854759593977,1.916820842556504,7.523826959747675,1.2848503477823638,0.0,0.0009394975566578284,1.4619833873203845,0.01838282283711047,0.0006414313067229778 -2001-02-03,0.0,15.045171288637775,-0.5739732808559315,1.5454367400833051,7.430227887346555,0.4853358403600729,0.0,3.1086244689504383e-15,1.3760251975453137,0.01602976166120873,0.0004175416334057159 -2001-02-04,0.0011246677766711289,14.643964747611985,-0.7816041649011678,1.9706522879393065,7.2918939380326835,0.28156247856553474,0.0,7.19808953146832e-6,1.2021627040789724,0.014017482975745454,0.000272895994357526 -2001-02-05,0.031018806765935568,13.265455441572865,-0.5479016209659728,1.861591972563617,6.738372568712452,0.2936694492637512,0.0,0.0001764852097034461,1.0541408258921654,0.012641374814142058,0.00020451494657483505 -2001-02-06,0.02936869600581725,12.415652803206026,-3.920473741854922,1.5265571609348692,6.685253648844838,0.24294303168676937,0.0,0.00015235560807123905,0.9608963559130489,0.011535917214307538,0.00015632801006702524 -2001-02-07,0.00012958987143191108,12.802842818752904,-4.3710961936388655,0.8805913140238036,6.842284816301996,0.11178684977242095,0.0,6.04737782016249e-7,0.8777873980385232,0.01022713835446274,0.0001018542673981486 -2001-02-08,0.005979565682518982,12.844345767238591,-2.8752650501610484,1.2343366881988955,6.772293946296436,0.0832384151317146,0.0,2.47499880014811e-5,0.775885906667801,0.009108203247485435,7.007089222572276e-5 -2001-02-09,1.9944149094643973,12.317153065191336,-1.8570217976317824,0.9450307947686424,6.49769666204949,11.783901776558237,0.0,0.017966693952512935,0.6919472255737051,0.031294299579087866,0.0027813074303331938 -2001-02-10,1.3394891993473188,11.112433961085367,-1.2452526228883265,1.199028146463672,5.9867226798846005,17.181399490730502,0.0,0.021934408581468334,2.388571365827472,0.0434293808172325,0.005150338155076674 -2001-02-11,0.5019706621990268,14.500652326249984,-0.4151295511805281,1.6807308405268495,7.184706382282567,11.031398317811188,0.0,0.009684072346224593,3.346275349307802,0.044829459873404816,0.004827171148735117 -2001-02-12,7.905160254498633e-5,15.434616161458425,-0.17767541696223724,1.4136852988109467,7.520900882119836,3.8082268256422624,0.0,1.429899331082616e-6,3.3752515978307933,0.039320316179317305,0.0031424792640793587 -2001-02-13,0.0,15.036476691947042,-0.7950632172289026,0.9885307047026496,7.419334966020503,2.095653514033737,0.0,0.0,2.9415779493597425,0.034267390975266654,0.0020456063043902506 -2001-02-14,0.010652650316127906,13.49520412986066,0.16421768211295756,1.0076970216183294,6.726000358066708,1.4305249668425688,0.0,0.00014658196599089644,2.5690571628496617,0.030051872257787743,0.0013539128304113938 -2001-02-15,0.09020058040689916,15.719684717708185,1.3764000144704234,1.1946524841046104,7.460349506107919,1.6229134222588717,0.0,0.001121916467016315,2.2837795558541347,0.0276552608488516,0.001052161974656825 -2001-02-16,1.259886194773882,14.00239342330207,0.8042722932871145,1.401542517527926,6.84254059072348,12.643994267236158,0.0,0.018206334281966052,2.072092770549642,0.038815298418645484,0.0034570913470352593 -2001-02-17,0.4764596428960136,13.730311825173054,0.29815402540512825,1.3430834621652867,6.793455853215004,8.613419124358739,0.0,0.0081162881899558,2.9424175828184964,0.03982760430179796,0.0034862287609307495 -2001-02-18,0.011053876951469649,15.529675994870141,0.6739289508807851,1.5164401122311468,7.454264202213609,2.938956970648356,0.0,0.00017913623006960387,3.0219352326614555,0.03533226908552729,0.0022966472079877427 -2001-02-19,0.08433971905733685,15.360065477679898,0.4208568607665927,1.2317048559489912,7.410895990268611,2.3392082675503754,0.0,0.0012127250744075196,2.6470001488602986,0.031818259706712405,0.0016796646979168964 -2001-02-20,0.3255668162028029,14.646152559112132,-0.8189496375238134,1.2751368566238828,7.250232520920617,4.064342239874178,0.0,0.004435000290163416,2.3860122718170556,0.03158806000356305,0.0017686770856971139 -2001-02-21,0.13218188821029336,14.631831928607767,-1.1437469259596027,1.5917351330195322,7.269085676327567,2.5408993002637166,0.0,0.0017247734669911252,2.3761913989368653,0.02922085004114726,0.001413947895065913 -2001-02-22,0.4567112556728047,13.448381706116313,-0.597894243086987,1.6747178681338333,6.766879868380488,4.90729387352511,0.0,0.00591903725906795,2.1974662880927256,0.0309193708872419,0.0018216744876427477 -2001-02-23,0.11567975104818565,13.804990735976872,-0.644546959865576,1.368929775374388,6.903990889817023,2.5092843450694895,0.0,0.0014866214505368236,2.347800017342374,0.028697870951022282,0.0014121845501749715 -2001-02-24,2.484308399280524,13.192144159350807,-0.2324787284781417,1.2740496544847046,6.624078093553261,30.757400573472175,0.0,0.04550277732795127,2.173492565278695,0.05426022681882879,0.007847735821554567 -2001-02-25,0.4324489880666274,12.437200800507743,-0.02276444936384308,1.3555426525274616,6.306950391309523,14.355162514790234,0.0,0.010101941283598148,4.128847026585018,0.053136009508778885,0.0066466769707354415 -2001-02-26,1.156922404047767,14.179932055558856,1.7852313095198276,1.421022910442569,6.752295401553818,24.016803004709505,0.0,0.028932118333754975,4.068186602783662,0.06086898131135762,0.008732016739132384 -2001-02-27,0.03382512295013576,14.102926504546726,0.3818971583599311,1.4594486553167243,6.897025309184202,7.971819071032659,0.0,0.0008439121176541386,4.6193919705444815,0.05420682782527667,0.005812630579254656 -2001-02-28,0.03525846541093085,15.074045771636722,0.14279979233731038,1.229631406739438,7.296269968992917,4.475746666705401,0.0,0.0007805101014683319,4.103049214849155,0.048208481874936204,0.0039025935067335416 -2001-03-01,0.1305640582949463,16.184902356335346,1.0082088877037565,1.6803666081244089,7.638207452157986,4.284810639389362,0.0,0.002582182776009273,3.6214036656819975,0.043707883026551646,0.002933580424731666 -2001-03-02,0.04877862903029412,16.106007648797878,1.8215559648876285,1.6212409957372105,7.509534051990145,2.624625224306122,0.0,0.00085878900738795,3.2618541559128866,0.03856662987356036,0.0020403862913220038 -2001-03-03,0.00602401829551107,15.69915658058468,0.0891210062451643,0.8932873523567233,7.532611935846885,1.450656194014968,0.0,9.311401254146357e-5,2.885903280593202,0.03368899452235695,0.0013423735614599857 -2001-03-04,0.395017196272178,15.134666947898207,1.384386857900116,1.5341930049429942,7.166474410640388,4.634002892196248,0.0,0.0057407697954670045,2.520153064512804,0.03395975928753886,0.0017479391056143556 -2001-03-05,0.5035475355869187,15.366325426453107,3.113028643616133,1.4203355993041722,7.015890317927026,6.416626520816184,0.0,0.0075700040690250825,2.558586292771581,0.03567178532113687,0.002290471154357861 -2001-03-06,0.5275477116749139,14.27513719896913,-0.6797402895806759,1.369690546136543,7.047096788014871,7.413420696324174,0.0,0.008354543692728367,2.6953044116133427,0.037544044613274596,0.002763091766647216 -2001-03-07,0.06857976505392785,14.82443200629567,-2.1137483714787404,1.0626432733619038,7.36102764555753,3.0064503725942355,0.0,0.0010527414420854753,2.834901250860794,0.03382358750114713,0.001958938311281122 -2001-03-08,1.7744125216681808,15.241797999669185,-0.9340350706043752,1.1392540352185594,7.4272660011336,22.666076956428228,0.0,0.03259097960468327,2.53870525277527,0.05024490108494163,0.006237634875705822 -2001-03-09,1.7906911304924351,10.830082518656925,1.7165414855409062,0.9953235723357934,5.375276404382535,35.29904958680789,0.0,0.044915394690525856,3.7644835475853697,0.06471402284988804,0.010899439503469732 -2001-03-10,1.4198928330500145,11.410873463942776,1.837689620676715,0.8124548313790919,5.586418538448332,38.66594226068751,0.0,0.04411689473030722,5.041902242010145,0.07527553648113754,0.013812471796295047 -2001-03-11,1.2103249836902008,11.33496490286622,1.393866954983742,0.6229039299902547,5.629079411195366,39.35004773110744,0.0,0.04223407673337176,5.839853384449382,0.08212980337270707,0.015422032051860607 -2001-03-12,2.9864568611767663,10.636156003448782,0.5930950261740631,0.8656569585987935,5.479273663678243,96.12888281222733,0.0,0.1277136111178332,6.3653589353141555,0.10894232066730725,0.02948530201185638 -2001-03-13,0.2338715015778964,10.813467487350914,0.9866456788014544,1.0719033006371217,5.482971144838342,33.95086158128985,0.0,0.010941328596663663,8.46196238897397,0.10130057571595999,0.020859524713534496 -2001-03-14,1.4705951241632216,11.853085445622225,1.3037675392164794,1.239273853574665,5.840281313681317,59.883588042429565,0.0,0.0690173111582244,7.8693489663823275,0.10880402333295919,0.024087475394313537 -2001-03-15,0.579445768467478,12.202846369196903,1.7282054300754726,1.4338075302344648,5.90864008638319,37.69859152571869,0.0,0.027446191209364312,8.3928605390938,0.10452129213777046,0.019858902439348257 -2001-03-16,0.2871235875455025,14.11202593352628,2.167216889644632,1.3360142406074345,6.605061462754166,23.206021522713733,0.0,0.012816891120974505,8.05281561417234,0.09715464361480633,0.014878773134266755 -2001-03-17,0.2828812918890873,15.918678502265179,1.83312300677985,1.1420453898379517,7.371938612648983,18.130711624585143,0.0,0.011571201781087392,7.386446790274552,0.08934247823223437,0.011447268418406287 -2001-03-18,2.411496809186664,15.453617912595089,2.02718740853651,1.2635719245145405,7.1567243186588465,75.89971568007223,0.0,0.10365122791333459,6.692737636599574,0.10605816560195241,0.02323406438846825 -2001-03-19,0.026328495834435698,14.700148550077467,0.6752978540856557,1.25328857714125,7.020312977373733,21.93966201213271,0.0,0.0011445111653230512,7.974386198776428,0.09320290784116922,0.015298552648432997 -2001-03-20,0.8315993801039009,15.655698767649419,0.145666508960981,1.0064355366504156,7.440055090401458,32.46461214225227,0.0,0.0336347813405683,7.029541876085492,0.09157697180735042,0.015080031081491063 -2001-03-21,2.0313012928692142,16.830140536759785,3.4975890775424348,1.696889670807327,7.501133623741384,68.59353697851833,0.0,0.08693590505526405,6.850396732790712,0.10346576701657263,0.02305366730486136 -2001-03-22,1.1883655645929032,17.104483441943582,4.8940588918648364,1.8312685911555129,7.388683466558283,55.40076239627116,0.0,0.05388267841137662,7.727290566288475,0.1038613559448402,0.023211287679803967 -2001-03-23,6.0394503420524215,17.252293763108803,5.5183807837187615,1.603880432057335,7.335888026168282,252.9028403608804,0.0,0.35861927508614055,7.774046040985259,0.16091787790155718,0.06971453979530952 -2001-03-24,3.904662576475439,15.604481967173204,3.8129083243768873,1.1742311230132911,6.9273657177781205,264.8078317152055,0.0,0.3036500457543658,12.033297462561388,0.18566644073624686,0.09161609405391073 -2001-03-25,0.42196159441545256,15.12547408211874,1.3746141816725777,1.26510517883509,7.079958969376666,100.63967086791003,0.0,0.03332251738702674,13.98547131276629,0.16783683617419634,0.06471161681206826 -2001-03-26,0.0981514812675828,14.650092432309412,-0.37594940815474304,1.3407710470365155,7.080593996269,50.01122981197971,0.0,0.006874569189204954,12.612009023267827,0.14806476213289094,0.043170975814427186 -2001-03-27,0.8261972168637356,15.077768614468374,0.012202867578968296,1.3048142163757095,7.201631280236687,63.08336439685967,0.0,0.05256727315849752,11.133871147911924,0.13932669669212425,0.036106420124048653 -2001-03-28,0.2709931982675784,15.34728571719354,0.9567210440120608,0.8332817532524722,7.202772929411786,36.893532872822696,0.0,0.015760077336472778,10.45476982075007,0.12494787532682348,0.0259032870941159 -2001-03-29,0.4236002210512275,16.342403644897946,2.6139458930198263,1.0432714854239875,7.390258539221777,32.53952730809448,0.0,0.022235616758887744,9.38022953511816,0.11420797717862008,0.0202475235778583 -2001-03-30,0.9132266542970956,17.23087177315436,4.948791675675096,1.4319954461100033,7.398739837974366,43.88466628425599,0.0,0.04489679521042256,8.545232144168539,0.11018463941811209,0.02001638653818968 -2001-03-31,5.874327390142898,17.73964590518075,5.45601860042027,1.199108296682902,7.5248633323004,252.08148583679068,0.0,0.36179346627996,8.243941060766042,0.16446826609044,0.06811812681345468 -2001-04-01,3.7444278801335393,17.75933916369967,5.1266945176177705,1.3497087315764684,7.5863430331376085,257.7083008752192,0.0,0.2941815388465141,12.250544751314703,0.18633059882700923,0.08913518418095942 -2001-04-02,0.4153356084782374,16.890423561464857,4.784345448712948,1.3576930905807925,7.268444044060638,97.92409946192119,0.0,0.0324622430921267,13.850002889710401,0.1661815325405034,0.06296567161747374 -2001-04-03,0.10160486140079457,17.84041385829427,3.324228791757579,1.3610948797232552,7.883586541250114,48.87632514798136,0.0,0.0070172377121998225,12.441324620690589,0.14611663397584843,0.04205617094241126 -2001-04-04,0.07628006799770028,18.825576737262484,3.4890327849336815,1.4326671148111043,8.26256843550904,30.991652604846397,0.0,0.004549512045675788,10.812723953366074,0.12684952245190023,0.028069321061506617 -2001-04-05,0.02005874415965931,18.71211708801187,3.8394940830642295,1.291434621247025,8.165118448684854,19.250259052979317,0.0,0.0010234810439943634,9.322236914883291,0.10883141751339323,0.01842764886159006 -2001-04-06,0.48535380087668606,18.864018719598285,4.30412057808487,1.4115480727467251,8.159662020201834,26.347894976845073,0.0,0.021844190707517364,8.019331165506296,0.09907382020182431,0.01532163404469708 -2001-04-07,0.136768376390262,19.717971282724093,5.6366958138850345,2.141824659487282,8.318088740420711,14.82377573231518,0.0,0.005475836760713643,7.3037736785915754,0.08667727595710065,0.010807440686612406 -2001-04-08,0.927768778396162,20.111494631132352,5.733088263327371,2.210183712946003,8.467975366049451,29.912719117995845,0.0,0.03438455173372723,6.372493234623505,0.08504310847056819,0.012270691895182073 -2001-04-09,1.1442083553182267,19.15120919524542,6.513633076581242,1.6869417009876624,7.910964038755515,37.58935943648849,0.0,0.04221425839159254,6.233905609258402,0.08595003098226658,0.01441538816458293 -2001-04-10,0.7988467078118746,18.23871688460498,4.662696194165883,1.5453221288694399,7.825012399972972,31.13714982157168,0.0,0.029313502349607834,6.370873317375835,0.08352238271971742,0.013847153947428189 -2001-04-11,0.6662569634828127,18.61555407308085,4.53487544611268,1.1108246605063188,7.998383525405619,26.316855531546786,0.0,0.023580227311053803,6.20205110269659,0.0800111375235101,0.012604284357865987 -2001-04-12,3.636356771203576,16.6429228196981,3.8103566787696335,1.495846924575776,7.280897463058515,109.741556520034,0.0,0.15311848028151687,5.921567204161703,0.11134334136785509,0.03151934732868357 -2001-04-13,1.1886830762294849,18.76926920904774,5.460292509581762,1.4663442583917965,7.90977082152346,67.43705500806138,0.0,0.05805392566262735,8.349789397884713,0.1111167445514859,0.029357181503397136 -2001-04-14,1.1393121719362154,18.522219769571272,6.495538598419485,1.0439413264576982,7.613740539945143,58.91005535559153,0.0,0.05471089434121312,8.229128528988168,0.10913598954501687,0.027440687268277603 -2001-04-15,0.9674456783884222,19.569277300896854,7.617249339626618,1.4420858272223809,7.8571153583132975,51.034621352350065,0.0,0.04545624092533429,8.130950889584877,0.10599015827903739,0.02478398189663976 -2001-04-16,0.7094744091130526,19.149042320480195,7.501801614127246,1.53622343433997,7.685715339427716,39.7683625106702,0.0,0.031740396104126156,7.859191725832809,0.09981915748539888,0.02096615156925752 -2001-04-17,0.0702902051017793,20.564601955967586,7.497516897641147,1.7712320752188715,8.320526117473044,17.5710601586655,0.0,0.002850068412566076,7.42857608834434,0.08735671383608844,0.014081944281795222 -2001-04-18,0.5208711183661703,20.555598699408765,7.524273270611911,1.7918810883336909,8.306744650989398,21.80798478047214,0.0,0.01885923208272855,6.421970726592769,0.08087940556952887,0.01203828056451517 -2001-04-19,1.0531087950183409,20.18260943574644,7.788240525925204,1.9384941652347645,8.082765057762183,33.07392473932694,0.0,0.0369244745778472,5.948847528556949,0.08156804921111124,0.01345865158103737 -2001-04-20,0.24979151500244334,20.43084566872611,6.892091490173756,1.899898689963368,8.356891841186705,16.417113682999855,0.0,0.008310328207468909,6.026307224988568,0.07311229993733843,0.010026319859117805 -2001-04-21,0.1571526493923922,20.25092119984202,6.744891382367668,1.7202962367503054,8.29877008520646,10.199700863494892,0.0,0.0046233922733511235,5.373666055215795,0.06443029225364522,0.00723064276536563 -2001-04-22,0.1812308910250675,19.834491562801468,7.436945044129666,1.627534817447806,7.981518453283611,8.104268621131785,0.0,0.004716632475658011,4.7425301588294975,0.057358481695472315,0.005424985572377389 -2001-04-23,1.0247442496937236,19.592062600902974,7.761348691724789,1.6892624319022362,7.80279600915081,20.991749035602624,0.0,0.026273196582259573,4.24978043791648,0.061444640526481874,0.007531892941886 -2001-04-24,0.4491061481400689,20.20986874167696,6.2350946065045845,1.6719393763651649,8.353477926750935,14.019746555839868,0.0,0.011588749409433996,4.568052125127582,0.05844649609651756,0.006667466602179006 -2001-04-25,1.4976466147806218,21.237244015559767,7.000178033856447,1.5236217477577014,8.670389158334954,31.742726585024464,0.0,0.04073660320263195,4.298286558767788,0.06751869627243118,0.010542957018788102 -2001-04-26,1.2651251375072874,19.490423233317,8.409990998154951,1.6999231048501608,7.60456353848163,34.11305102566612,0.0,0.03800647264458923,4.932389427987902,0.07219684752428814,0.01265001642278903 -2001-04-27,1.3357823371620008,19.653673492489602,8.713179071005445,1.988120659589321,7.6078346998289215,39.192338064575715,0.0,0.043730786891153395,5.3865806512339205,0.07831097620621073,0.014893224471247784 -2001-04-28,2.2530650821368825,19.583541034663373,7.701175018240218,1.7870857960128763,7.790302402490913,68.04391279504509,0.0,0.08515942580037805,5.8411983158997165,0.09429268688177452,0.022661569771356773 -2001-04-29,1.0155756643171163,19.718779416908113,7.507843637447856,1.156306178756892,7.885841650961724,46.97725662146447,0.0,0.041452597660628365,7.004041464856807,0.09342310840246923,0.021063387192553924 -2001-04-30,5.645371564121738,18.688003245127973,6.7439152827987074,1.2552003141671788,7.572469467490197,213.56863153996298,0.0,0.30165730465888263,6.926456649652329,0.146453284628766,0.059643056043516274 -2001-05-01,7.779538543505748,19.575008502473125,6.456596299011246,1.2473392469032163,8.009849878533194,476.2824997232061,0.0,0.6425544412368112,10.90559216143805,0.2176691185183902,0.13666323227367458 -2001-05-02,1.3693771283110077,18.254357237661072,7.626846414040763,1.2519264988633565,7.188144805996373,211.48626751150965,0.0,0.12842395779384708,16.01892304845585,0.2025619211220495,0.10851578579508644 -2001-05-03,0.9127060273691708,17.869253792395032,8.668168521451456,1.1034745521215057,6.7563490401644355,133.14634525765229,0.0,0.0797473100509486,15.168675455218017,0.18733720342381968,0.08278138235778523 -2001-05-04,4.7672305791497065,17.819782137298912,10.179639813621296,0.9487306657994012,6.298340453979589,348.4710845222672,0.0,0.44269812242850026,14.158824181216973,0.2204757206022546,0.12129411822493652 -2001-05-05,4.591727602189347,18.318142014221912,9.021414291293064,1.2505970550723366,6.872207114432182,429.6182566220947,0.0,0.496867372299568,16.79686961668193,0.24916267252788302,0.15461216770077252 -2001-05-06,3.183216744414341,18.726828338686275,8.961889436937707,1.5999353394411049,7.07874453095182,372.2292702679717,0.0,0.36855314382293924,18.743610725750823,0.255432690447965,0.15676291511393206 -2001-05-07,3.0126780917899305,17.487242583482992,8.657442066746505,1.2242875816998608,6.56387543688171,357.269097968101,0.0,0.3543721627325711,19.129517067832,0.25794157817594826,0.1560036867308227 -2001-05-08,6.368232579509241,16.199474760195518,7.373695095235866,1.3904583890810385,6.286071723814598,666.966093774432,0.0,0.831318038315148,19.51910727472373,0.3015699775311703,0.2281315201254001 -2001-05-09,14.890129886508191,17.42868628599255,7.828162395591593,0.5644758068206898,6.73953768208085,1956.1416772505024,0.0,2.6907195354051723,22.90971571315962,0.44034260191896746,0.5582046961740869 -2001-05-10,9.684575560459859,17.038011020106104,7.550237721289723,0.19762496074063585,6.623154544824628,1991.452673423637,0.0,2.247515960676129,32.906233642271246,0.49615408329418514,0.7055825287278099 -2001-05-11,0.11490577240810053,15.225577738806384,7.871985783152088,0.3460529791996981,5.6838342821507775,618.9871941173426,0.0,0.026086505096842086,37.03879087969571,0.432815404273482,0.46327311959493156 -2001-05-12,0.5509643285355323,15.907868956430548,7.633439347936545,0.5471202991880963,6.072042511562918,386.16326348041184,0.0,0.11057208318163059,33.0961463657452,0.3919660526419002,0.31840526014445886 -2001-05-13,0.4672506518966093,14.937000535239596,7.110938183211544,0.5799521032012698,5.7535559719510205,268.77797540859336,0.0,0.08310486957305208,29.788378925825132,0.35245759445820446,0.2199208033917614 -2001-05-14,0.2739059704304118,16.244967367652038,7.603213289696359,0.4587208250960054,6.232027105333959,176.94681392915805,0.0,0.04351493170864201,27.01228607048115,0.3178656581565828,0.1497838979207363 -2001-05-15,1.1839968771554454,18.1909401392515,8.308134257589359,0.643114325494188,6.958680113886321,211.34168083773216,0.0,0.1697796459982308,24.157958954447917,0.2952166230197999,0.1233537369288799 -2001-05-16,0.7114275375938803,17.829725782226713,10.244977432513064,0.6911326775431639,6.248184900181721,150.3447703373472,0.0,0.09181653752471708,22.125257365021692,0.26603191335018883,0.09427790934146706 -2001-05-17,6.51237072784383,18.830815468515368,10.713984687290164,0.7852149866878153,6.610085723576661,644.4414582896112,0.0,0.8832279183693252,20.254102160387877,0.3118112819990204,0.1958549862495105 -2001-05-18,11.728964531713071,17.724746984257788,10.408188742336495,0.44917448643888463,6.137227247538681,1512.1388764144333,0.0,2.040493100309881,23.52029990229314,0.41063005867771113,0.43818760920313415 -2001-05-19,10.980347436371588,17.07773084965196,8.841692477217409,1.0136868011304407,6.282755532725392,2014.556797296929,0.0,2.459974624106902,31.134885864205458,0.4906139461099655,0.6598070160316103 -2001-05-20,6.46645879490616,18.767682644150657,8.527454568930558,1.0636595467823864,7.159416080889535,1635.8558904125587,0.0,1.6138994741636878,36.913455062939754,0.5053466181182606,0.6752433932785371 -2001-05-21,3.265208884471321,19.785559415702306,9.504474010505387,1.302272301339818,7.398324452034931,1056.9502991890479,0.0,0.7840436681408538,37.25489595496081,0.47203177981186495,0.5589339435874296 -2001-05-22,1.2360882573512681,20.812518196018825,11.648806760447656,1.4514079904572708,7.3232757822885155,590.3364242726215,0.0,0.26491264652794855,34.69877994670643,0.4186168782850531,0.4041765913181421 -2001-05-23,5.286194781996091,19.68996143669621,11.751539534941099,1.1154834864421799,6.711456294212974,980.6544993042172,0.0,1.0687621780390621,30.931449746395582,0.4219110309579783,0.42583479487535714 -2001-05-24,0.5847569583274678,20.350127939734033,11.81205755873018,1.032421161332045,7.032555832059117,413.3544370668088,0.0,0.11133135133795602,31.582036214716975,0.37472135603993445,0.29415028014660255 -2001-05-25,3.2541419629548183,19.24396838254287,12.273409829658926,0.6481979757887861,6.291555204354268,574.3679520635134,0.0,0.568780314041891,27.931258274868807,0.36328879297666555,0.27808321260866037 -2001-05-26,13.398799577213062,17.906858820694858,11.832931360182586,0.457017221680904,5.715424390319542,2027.9283860421717,0.0,2.7755065157815473,27.52021834386036,0.47667884705573177,0.6036309705553973 -2001-05-27,19.84235761119185,18.169318836836577,11.782035862256574,0.6533451693047966,5.877949309554914,4429.200431558998,0.0,5.92831349845811,36.340289364463864,0.6544897885025345,1.2956086991651279 -2001-05-28,11.080456276136832,16.58870123851439,9.764304309474902,1.0280148719532942,5.74029501308213,3874.0454692502926,0.0,4.093718147013025,49.05430393009812,0.7005292311357852,1.46670943315075 -2001-05-29,3.3155116327668237,18.322015389490577,9.9740580837036,0.9286868991626874,6.5457751811634095,2007.8248519120177,0.0,1.206708338137953,52.4187459296023,0.6492663555020232,1.138498076592288 -2001-05-30,25.61742108334948,17.87868025121453,10.645008926677633,0.5295298617427665,6.113013345953496,8110.14613261352,0.0,11.142644310830502,47.926641565412325,0.8567385233640193,2.437740942943225 -2001-05-31,28.807493437862608,16.582193439473983,11.711328288495887,0.7164291745312309,4.9966803478169926,15020.854266018137,4.795718957285565,14.76950728661851,61.83012551942296,1.0,4.565949509036025 -2001-06-01,16.89212002827092,16.28278621401569,11.173174732465556,0.8306571010431029,5.049049362345727,11928.027393945995,1.1574088631029156,10.738030817351014,70.10718883483199,1.0,4.783474951174904 -2001-06-02,5.889687588298882,17.274659603114774,9.09115047488052,1.1880959091147478,6.277445217258594,6121.259770661035,0.0,3.4086306219677507,69.99403621680717,0.8839939913387992,3.632831737139286 -2001-06-03,4.403501430415983,18.28944697430741,9.483037567515266,0.9947155427733876,6.6578858781667005,3996.360618736651,0.0,2.1045286788057043,63.040582354966425,0.785677900714947,2.6852482989365094 -2001-06-04,9.186288631139961,17.381120998996614,10.716615431715416,0.9914260035593914,5.8200003996056635,4502.875736236256,0.0,4.001241260539297,56.74404497740916,0.7680437363169865,2.3572185274316313 -2001-06-05,5.677755342826522,17.73172620996112,11.036039265631533,1.0772540506549342,5.893369344830462,3327.271681279293,0.0,2.3729611636780277,56.84124041576623,0.728303960636854,1.895756864561591 -2001-06-06,6.566575798035915,19.325170310186362,11.623706781072528,1.2834970476249397,6.5329810350057755,3086.0859786646292,0.0,2.5959626154891584,54.10744738090492,0.7068112795609235,1.6293222761276716 -2001-06-07,2.6130603837818227,20.327908356213538,12.161408769486634,1.6032652850902251,6.881310559147888,1829.8246927733235,0.0,0.9289427558234578,51.83759262031742,0.6343132316980314,1.20205748128109 -2001-06-08,2.7158028385714856,20.480966420334724,12.319734429174616,1.4712690334996372,6.908863586256325,1399.1138692375398,0.0,0.8425218377321158,46.526849679491924,0.5736435530674812,0.9107693198221137 -2001-06-09,3.718887130994836,20.636937165889236,12.70140762213383,1.0362740776424721,6.864594046936246,1327.3811079653606,0.0,1.0420126582177707,42.295599822398025,0.5360376104605428,0.7515298417148374 -2001-06-10,3.4831630049028104,20.65445379946874,13.204468242538388,0.7684770373989129,6.699980324127976,1143.3288744623223,0.0,0.9025557350033933,39.6859417219127,0.5028908345087366,0.6266380489924528 -2001-06-11,8.292728299193094,19.977014212463587,12.382338153190608,0.7607727349438315,6.617245578728668,1877.4927267303538,0.0,2.1619605812684384,37.460652424595,0.5329958997155013,0.7371023546367983 -2001-06-12,11.882045380157368,19.885361237720332,11.368330109086141,0.8459119946438678,6.8921139046296,2879.8390058098726,0.0,3.475331747012955,39.68957775068411,0.6007744834497079,1.0089895879561959 -2001-06-13,0.5560834631936661,21.259291292957524,11.491514030535688,1.0532725649372,7.544629802056205,971.0258067689499,0.0,0.15720981269409895,44.20363121737066,0.5214203632557566,0.6807423156622192 -2001-06-14,0.2458664757515343,23.269281662675237,12.02933417271353,1.5799996281060973,8.393319908254828,506.17687174894587,0.0,0.057760286826053386,38.061433976367354,0.4462541072846581,0.45192610955827806 -2001-06-15,4.531931907080623,21.278214778818022,12.844915102975252,1.3812727413827959,7.1484347838757705,915.126707529728,0.0,0.9427471584319322,32.1490315494804,0.42730838269610794,0.43772983869120097 -2001-06-16,4.1739035080137725,20.506173285557583,12.987976012055213,1.165176129802046,6.687424558018862,894.743894781615,0.0,0.8492260344727143,31.676345200585658,0.41763111847011114,0.4142487608888784 -2001-06-17,1.642404160976373,20.63638871053604,13.451604649980496,1.2496856156265832,6.592574558339973,529.1330561040271,0.0,0.31531308422483706,31.285372205071596,0.38358629487520635,0.3176675487804133 -2001-06-18,3.08259613496476,21.201003113533204,13.549481883950165,1.6734102245823068,6.866963332189121,592.2966864193817,0.0,0.5559066186436077,28.845946124075603,0.3719458942432584,0.2914316388726006 -2001-06-19,4.285625527655683,22.17322402964607,13.833094754467727,1.6071479057383635,7.296238836241298,720.6935093457364,0.0,0.7609163395341811,27.82577920268434,0.37407611819333014,0.3055690531856249 -2001-06-20,5.0056507691859835,20.27282862328898,13.395812488190561,1.1599221846771302,6.408252682687479,832.0430711612796,0.0,0.8976685042278341,27.728388559474602,0.38132938959483176,0.33559438273328573 -2001-06-21,4.770467986176662,19.93671459791289,12.429067892425852,0.2152058748653733,6.568873435129253,852.8049210178481,0.0,0.8858923524389581,28.791107639087315,0.39096962701505883,0.35334636800161495 -2001-06-22,1.9419335862282527,19.560665568139527,13.215749240732947,0.3725572128054397,6.074600947077549,514.2919800458114,0.0,0.350020138009715,29.40464164687381,0.36516637251857265,0.2833076150827294 -2001-06-23,4.860930704687573,21.264536396391577,13.989669134074367,0.7922352911490611,6.739544993791951,778.0680913483184,0.0,0.8711932043990602,27.785329761042,0.38030682528846144,0.3170719773023868 -2001-06-24,8.664082616723608,21.533567867071465,14.174663830017106,1.0370203763960668,6.821135780841263,1375.375271293414,0.0,1.7093061146101043,28.515529736183684,0.43311730463686493,0.4666660620447719 -2001-06-25,11.128199545344343,22.17634616662517,14.290332491477075,1.2113528684347858,7.135688932330766,2102.099248565134,0.0,2.5949601882947153,32.32333591270333,0.5061809612560728,0.69889869660792 -2001-06-26,11.58060465492927,22.71603652625127,14.94330169107667,1.0033527871420038,7.200934790868291,2675.930531228941,0.0,3.1573735772074176,37.33381952933006,0.5698199152658472,0.9357069736627998 -2001-06-27,14.89711312655304,21.85574582786619,14.24839858351162,1.0677522324546396,6.97220757831937,3940.950614819594,0.0,4.80150633580106,41.74767333099631,0.6598734004903124,1.3402015329932442 -2001-06-28,7.1821350307253535,20.186979752676407,13.28875317848616,1.1571241938886918,6.395555667513113,2777.0218659138477,0.0,2.4664530761902324,48.16108026027206,0.6447109778674216,1.2479621257991826 -2001-06-29,8.842164915671832,19.78567000957453,12.036710444253695,0.9773564593980116,6.615895217448792,2985.387945999688,0.0,3.07311529813842,47.78235871967743,0.659637352334341,1.2802918923653372 -2001-06-30,4.0020467357391825,19.900113286857017,12.709755854547154,0.9389587167513814,6.447156985426335,1894.2451253067863,0.0,1.3319762597262086,48.55635367089572,0.6122697704341925,1.036222910786418 -2001-07-01,1.1333483104247128,21.1386089967158,12.249104274322882,0.9975602732709062,7.250090712324961,984.811515250672,0.0,0.33444238579651886,45.467378452077696,0.5428669072155021,0.7254562063364924 -2001-07-02,6.953123111496309,21.407547957902374,12.575736240140875,0.64452709752464,7.288766259957808,1741.430493355564,0.0,1.902634286553882,39.82122492371604,0.5448894774604517,0.761942071266002 -2001-07-03,13.534515468121045,23.035348847873742,13.0335412805426,0.6217983596486969,7.988947935397631,3272.260205572298,0.0,4.078028115274998,39.927746136389345,0.6227991412644687,1.116928501601958 -2001-07-04,5.211441833327316,22.826575973705086,13.435153363188148,0.668324945083956,7.762161247791876,2008.4863701903525,0.0,1.5863012466593416,44.55761505179435,0.5797758074451016,0.9686057578341036 -2001-07-05,5.6681133128877175,23.12976933509743,13.989219707715373,0.7185100551559873,7.749204214245188,1795.7765843409345,0.0,1.6141447956941786,41.891541692379015,0.5540377718254924,0.8762942144782012 -2001-07-06,10.083551815493221,22.862184658590536,14.509431187868914,0.6458061092438905,7.4336121786189695,2574.210326062084,0.0,2.911362383434101,40.14148028638779,0.5850876099187112,1.0137242796784018 -2001-07-07,10.448301773049238,24.442154264456263,14.689777380996327,0.9728317349089396,8.226303122048199,2952.629131432857,0.0,3.2393752373937517,42.576549408718755,0.6177036060684583,1.1531295955975942 -2001-07-08,9.991096743411926,22.041472230725645,14.651294133950989,0.7648734182632172,6.927585320605737,3038.785008758611,0.0,3.194384459235639,43.970434443463354,0.6286152937769933,1.23702539359635 -2001-07-09,6.769063552219302,21.604871519637648,14.336068723453801,1.0657454513210411,6.799330661307277,2437.2749505077686,0.0,2.191170456957069,46.08618774129973,0.6157278822290634,1.138883462854277 -2001-07-10,7.529554272559756,21.275463992241693,14.473370922691734,0.8841645131168476,6.560136733954317,2460.8407184409593,0.0,2.4142429151608686,45.33619226618945,0.6158501447282645,1.1089637557805019 -2001-07-11,1.689548089607027,21.948378604726066,14.802036922952944,0.7628393719023555,6.8189332033401735,1202.0407749928386,0.0,0.5041654580686812,45.59800808148084,0.5508680046817216,0.7986499226480623 -2001-07-12,4.9192330037433525,21.932326198117195,14.149130985050707,0.9036896516076006,7.051024865789782,1438.1225148182807,0.0,1.3432817560493238,40.77773483835271,0.5323387278484756,0.7244180545021922 -2001-07-13,16.85409253986141,21.84805030055181,14.213512185503982,0.9905233952387392,6.982021682253336,3965.0769099650797,0.0,5.224027496551916,39.25857262061235,0.6536745477496858,1.2669974657480358 -2001-07-14,7.404760853223106,20.105915231070075,13.957818071453554,0.6897233975272633,6.091466290694934,2781.7111755281358,0.0,2.5223964474831,47.73143199074724,0.6422993065620676,1.2088279233338466 -2001-07-15,7.727863573008195,20.830265411361204,14.037914469725598,1.1471643554132578,6.47728745783375,2693.910952424603,0.0,2.6589083554058366,47.95704322125407,0.6486914524755657,1.1917482398364179 -2001-07-16,13.707559830375983,21.23286025206556,14.335860092448744,1.3338120564473126,6.592630834986974,4273.652922012221,0.0,5.098859580538635,47.96478596542453,0.7184410619499396,1.5521487875870428 -2001-07-17,5.456433639410964,22.38299291013836,14.788154248445153,1.5270844217174269,7.07475648054316,2655.435333871078,0.0,2.046084274272072,52.531418082613726,0.6755192012528228,1.321922466898299 -2001-07-18,12.55083032089854,22.634673353517837,15.442656181613266,1.2969346369028998,6.971236668337842,4092.6759782202435,0.0,4.729953134023075,49.08956697540939,0.7180688835674413,1.5807146349488195 -2001-07-19,9.894190749783247,20.646782579002547,14.717203047830386,0.9956669571966772,6.097645895180346,3845.323611565187,0.0,3.874980319546543,52.01851671861599,0.721241112654767,1.6189939317628146 -2001-07-20,4.230593469734687,20.92991804625613,13.119090880706596,0.7620586571105658,6.869757621610791,2342.2251050428126,0.0,1.5946946099481227,53.36305275639268,0.6709269741947391,1.296704769347882 -2001-07-21,7.728183355074186,21.627581850670644,13.15787330568346,0.09122812927747788,7.23044215689755,2740.159773080692,0.0,2.732213775227236,49.02452730404831,0.6611306443487679,1.2601137694746394 -2001-07-22,5.047138271123678,22.501198188865324,13.633576316427918,0.23775617544925304,7.541448602283471,2082.1607888400217,0.0,1.6763540939802004,47.94820416711676,0.6173598491906684,1.0755245138498335 -2001-07-23,7.449702825055004,22.559651823435864,13.585067683792154,0.7490628610525857,7.5892055517320625,2341.4437714998667,0.0,2.3441771569404803,44.66513986218309,0.6071026233953127,1.0570515110920244 -2001-07-24,5.114664261552012,22.340224421789895,14.113173645092076,0.9923893618354204,7.298901317116535,1830.7282265093434,0.0,1.528282041115678,43.921514517043896,0.571238273833593,0.9207943700799683 -2001-07-25,9.770198389033617,21.854409450053573,15.0926830188975,1.1312699921772789,6.663699910703894,2616.4521820047976,0.0,2.9351481946151665,41.7522356553448,0.6002014639049045,1.0463135306034255 -2001-07-26,7.809303291328027,22.164025167183574,15.27656843512002,0.9896605439409668,6.77251504222413,2460.5677212399773,0.0,2.4518559178693087,44.397906063146216,0.6081786325148237,1.054432215984116 -2001-07-27,13.174308235561789,21.344480368547504,15.119455439442786,1.1090832566301851,6.353869653562858,3779.3810901499796,0.0,4.496217504249309,44.84111961019568,0.6758404444188383,1.3710013510803745 -2001-07-28,10.017533656665114,20.244054229444266,14.884944802411392,0.965941184165968,5.787500259452272,3605.1007819298234,0.0,3.735176862990498,49.97039355495316,0.698818726188706,1.4611932989382397 -2001-07-29,6.1256580454813045,20.191935554736094,14.864449230416033,1.2682530296578651,5.765819880135402,2691.1099153152227,0.0,2.299904398945851,52.24132245010324,0.6799357947061347,1.3013625823139536 -2001-07-30,12.812933010295346,21.01888925714926,14.76504721903084,1.2772161423575608,6.3128803995114815,4313.739577065708,0.0,5.074848889333438,50.96331552238535,0.742950104001434,1.6198465902244519 -2001-07-31,10.850334225270576,20.785749711329636,14.570314112326484,1.2192172151941705,6.257312655454153,4346.582512654582,0.0,4.571506407726982,54.51173273098111,0.7614238146668665,1.7505233820183859 -2001-08-01,10.734369005859248,20.94771029091548,14.312344882262321,0.8159512067222466,6.458165774134241,4471.0804442079025,0.0,4.658194669741446,55.78794350674881,0.7749398896413996,1.8487874001879485 -2001-08-02,14.641361946324814,22.042388164603054,13.458457496836026,0.5859259761428426,7.372412555472145,5919.601936297616,0.0,6.77223970810963,56.36335020999918,0.8271568098600333,2.234647245084719 -2001-08-03,7.544638947455917,22.309237797668494,13.629100717634456,0.7434763226362292,7.461293351139431,4044.4881161324574,0.0,3.329177707086247,58.12787117502492,0.7650402673109618,1.9615668153432373 -2001-08-04,5.6134720970412495,22.278987656587194,13.8607113383882,0.4663551304525778,7.370670899393627,2942.101167427543,0.0,2.2049416656890806,54.331053398095875,0.6983131255847917,1.612622744933577 -2001-08-05,0.6848607439097324,22.573036739252014,13.64809401530074,0.5173715507919935,7.600084360154764,1343.4892959601364,0.0,0.22797858230368628,50.231853402218036,0.5931452373040178,1.0844547207227633 -2001-08-06,4.031777818782452,22.527658774053418,13.618384941727733,0.8177687711949054,7.587763299170168,1485.2276692637479,0.0,1.1559526703294978,42.962258748553744,0.5474487000792876,0.8819399245454786 -2001-08-07,3.2688676946807065,22.4985421331706,13.699485645252638,0.7376587345233012,7.5484892028925294,1196.844463657667,0.0,0.8480342439619322,39.834376697906066,0.5021236062177885,0.7032271811946167 -2001-08-08,3.6138023617735495,23.244831707615905,13.469183050070134,0.39782842861543893,8.01609969060873,1072.6125991312663,0.0,0.8578279480600539,36.705965493778855,0.4696979896245587,0.5883848209016119 -2001-08-09,2.7972196919456356,24.355380536528454,13.711696991623946,0.4811753952907527,8.523719818742562,830.4308297343651,0.0,0.6024178563139597,34.06332263290245,0.4294003548948484,0.4747378823486993 -2001-08-10,10.201434451547524,23.44179032249967,13.81161280199615,0.3202401337228345,8.020882151758105,1810.1143584439706,0.0,2.238088142790442,30.883615200780717,0.47861300428262005,0.6498140313192744 -2001-08-11,8.516658654886893,22.38352301022889,14.432686939453333,0.292998424713078,7.2467985988725205,1895.1046135256142,0.0,2.0502602896274666,34.68259257947359,0.5032420209054144,0.7351808103308667 -2001-08-12,4.983692388761781,21.09147871567865,13.826420050283554,0.323245762241772,6.748001961871661,1404.946786469698,0.0,1.2204414537251358,37.03337403438553,0.48947036846979525,0.6643983947066726 -2001-08-13,8.703779740131411,20.94811173611763,12.880129894300088,0.3993706291903767,7.003748619069598,1961.1369105680697,0.0,2.2166388253892197,36.4560871940744,0.5260818660142169,0.7700081353792074 -2001-08-14,13.805753356928566,21.063801194872887,12.783815022670092,0.4393781193902877,7.099750207537197,3285.1839732506437,0.0,4.055531403885073,38.85742931320654,0.6134904128419234,1.1187536735858823 -2001-08-15,6.31992577875269,23.015584426700162,13.783743849662876,1.1128535886593327,7.8182921673703625,2260.0565779067306,0.0,1.969024223524805,44.86566938391302,0.5962775190514855,1.028069086134142 -2001-08-16,5.485421321742876,22.400641242270297,15.046763042973321,0.8767891584548818,7.043066067912642,1850.4729056596166,0.0,1.6046319437642609,42.955949359668175,0.564309162325287,0.913553574187212 -2001-08-17,11.496435224184651,21.90187256214565,15.161160584681909,0.8370993205532592,6.710176229416167,2993.6413106310174,0.0,3.51452162845068,41.513687014452785,0.6175320238559193,1.1298182770697622 -2001-08-18,3.4303926122805395,21.800089170126782,14.575226214796551,0.6857462368761815,6.883951966239723,1631.0341697662723,0.0,1.0469378774141278,45.555617121742586,0.5706538384404717,0.8948703549640388 -2001-08-19,6.6606679148872185,22.224648733863805,14.38344820509817,0.5989165132812087,7.197665860627081,1923.5623093823244,0.0,1.9350698961379162,42.1100993213835,0.5681464091110603,0.8771615202818159 -2001-08-20,4.515771524536191,22.161439174050575,14.665766337329217,0.2853139616558936,7.061544085679017,1509.509932986998,0.0,1.2561112424492507,41.63441592083079,0.5376184292911386,0.7622524160676311 -2001-08-21,4.936875545909556,20.520537682494627,14.016935719803527,0.3688828748359837,6.372368654353499,1430.1886198249647,0.0,1.3044259351283198,39.62182278877451,0.5190786589612307,0.694808615656258 -2001-08-22,3.292388618916513,21.606994421306663,14.163285404444098,0.8750982770617475,6.9401689179049475,1077.1868186390377,0.0,0.8312890670449291,38.90391150743275,0.4915583197290515,0.5788637937203212 -2001-08-23,4.454672266452558,21.63134235100052,14.469893520771064,1.06995953908803,6.8418274926265825,1125.6469548368962,0.0,1.0629648300742183,36.451509760489955,0.47652931758200273,0.5386652214698953 -2001-08-24,2.8898408029948084,22.119678928405904,13.826465814917164,1.5001335785393102,7.349920676303055,842.307621822909,0.0,0.6519537963782409,35.45000316739957,0.44663321723301075,0.44991533859964256 -2001-08-25,6.571841185931491,21.866594289807573,13.978832722219574,1.00172798875288,7.16109000054308,1283.618314359396,0.0,1.451061810626599,32.92366929073018,0.4600959493750916,0.5138193363357795 -2001-08-26,12.354231228306839,20.87618515702759,13.69917310422724,0.290267371611552,6.712431638590504,2442.851093130006,0.0,3.093712994263571,34.02609030839179,0.5402993356006639,0.8055357446566721 -2001-08-27,7.611993664168298,20.751434959959518,13.62537128275126,0.3880762993673621,6.672686014698476,2095.9840914562433,0.0,2.1208963633848255,40.1252166163472,0.5561061705357815,0.8473037125158404 -2001-08-28,2.5362174869862115,20.707706129667976,14.062896503549124,0.5510429572986821,6.482690191988118,1132.36459814214,0.0,0.6789410511243701,41.28441181003595,0.5104806545174578,0.6549336984741586 -2001-08-29,3.096104822429224,22.116799830942224,13.481516336211175,0.8440363496322523,7.4805645778749765,974.4842205571566,0.0,0.7628976083078722,38.189026587757645,0.48094382125962815,0.5424934868291394 -2001-08-30,2.789286121790223,22.04859340377874,13.659534876736116,0.6503287577492731,7.388022375059253,809.1005953458107,0.0,0.6245852830132854,35.26706669043358,0.4433307372299985,0.4482400989503763 -2001-08-31,15.364676742793266,22.04169672876638,14.038394502817301,0.8827726705885944,7.257289121651351,2858.7546543570584,0.0,3.86847907248122,32.66013717658194,0.5594565581537129,0.8808163242236368 -2001-09-01,23.280246116570243,21.341262096179694,14.022435519790001,1.0690436717093426,6.873998058437164,6185.786202410918,0.0,8.243382422345608,40.973203969539,0.748509178922056,1.8285467804267503 -2001-09-02,19.30026740703674,21.126475628479888,13.135359594034213,0.8075711324315412,7.0747276117129925,7552.115711123975,0.0,8.979969977076951,54.10589497906126,0.8551320786946469,2.5576311007593775 -2001-09-03,17.344622831011304,20.031736175973453,12.773520185982273,0.16745298131598865,6.6052057755459375,8190.156841624633,0.0,9.133362795584151,60.151209073294545,0.9027739589210613,3.0555870489935466 -2001-09-04,4.959820917091583,20.475047710330873,12.747944159414372,0.5044907977716596,6.860283300663499,4134.70937105685,0.0,2.4084060643226044,63.413576514463436,0.7965037753306372,2.3557589585218035 -2001-09-05,3.9136502654962126,21.45230396281093,13.924113258930523,1.0033097265995583,6.986826248513647,2769.0676547537487,0.0,1.6108331053952267,57.10804392389368,0.7108614113782419,1.7787614981544746 -2001-09-06,5.300441232021057,21.47821433097695,13.921212018187626,1.2594539636632007,7.006042602823968,2528.736339151526,0.0,1.9347024675539464,51.52900194640608,0.6620245262328437,1.4524771651851978 -2001-09-07,1.6073445794058516,21.701472968113553,13.585291455320164,1.1073183496483092,7.252853106108724,1401.8741395027073,0.0,0.5145067303560653,48.26686705938127,0.5810007891109951,1.0238356185156823 -2001-09-08,28.633488779436263,21.892186594531545,13.535521623455253,0.8043143911403272,7.378004012186926,8106.342051337668,0.0,11.32923152088528,42.472596776930985,0.828337741317087,2.391511731019127 -2001-09-09,5.662130467589506,18.995724436227942,12.83481019453949,0.2225645934637198,6.0173114438078965,3813.505044058764,0.0,2.444326295345199,58.18591519690436,0.7437864919636433,1.9289465238763395 -2001-09-10,2.1433775371147585,20.56225235715911,12.892938154428634,0.8250832679797051,6.879051006270949,1983.3921729174476,0.0,0.8190894273839642,54.97099652829241,0.6653437781014536,1.3803719921285673 -2001-09-11,0.7044041450409321,22.209115061863102,13.331438116632908,0.8705380601057742,7.628748985325904,1107.255364846829,0.0,0.22499293067029635,48.63775475098315,0.5748027349816824,0.932815786864436 -2001-09-12,1.7845311881439017,22.257618809370946,13.33638875675354,0.8262676136208826,7.657314713937954,937.0669870530991,0.0,0.47797472197907354,41.68079387820926,0.5063416008540487,0.6799979473578316 -2001-09-13,3.5098303577931813,22.123355471907644,13.535232777605856,1.1737859214991957,7.523899924124852,1018.5039758409802,0.0,0.8371040320180936,36.911869267901444,0.4708854257151185,0.5701081590799926 -2001-09-14,1.449819204450387,22.950002805571877,13.627786571273589,1.080967420797708,7.944333774941787,624.3933179940591,0.0,0.30999818081520836,34.52142394860062,0.41904062180649554,0.41831541905093944 -2001-09-15,3.046010293726044,23.098960717489433,13.066712515497553,0.8658382469976591,8.198784059413425,675.7206651637661,0.0,0.5840732153348278,30.5468224128815,0.3913337508443726,0.36123745241482996 -2001-09-16,8.460290810825697,22.47889603667511,12.840650024833131,0.7438535909444285,7.9458296938672195,1353.450993375443,0.0,1.6575337631290843,28.42060073391691,0.42963740952544865,0.48753260522954517 -2001-09-17,6.844108580569862,21.24887455155638,13.1010593344131,0.905241927274053,7.209819604808447,1356.1560080145855,0.0,1.4388611759830665,31.296017545211214,0.44430663959885647,0.5364486820381792 -2001-09-18,2.946557172390885,20.82940740224917,12.92988046025717,1.1024178331388923,7.043122763240975,839.4555834667763,0.0,0.6111038393822907,32.85741367477209,0.41709201272528884,0.44225246618566205 -2001-09-19,6.840156079723202,21.05838155814001,13.029738156543742,0.8267555906311609,7.138136056182172,1260.5654032653392,0.0,1.4241149935083266,31.008412408174802,0.440910190570083,0.5047281155628153 -2001-09-20,8.169531703727504,21.249851680065227,12.73227614028074,0.4192231187899533,7.345254302795251,1613.751183375744,0.0,1.8360731734826565,32.6642235005973,0.47568559414836814,0.6081235456328337 -2001-09-21,2.659416908237152,20.939280257906333,12.451041141156,0.5419355138390919,7.274370582419603,893.7957598734896,0.0,0.5891562556573082,34.999332912750454,0.43869893165211404,0.4855675898175803 -2001-09-22,3.079312844884805,21.806927489841517,12.503505975892567,0.5993649176874342,7.721651811641089,770.7162739757197,0.0,0.6304188991056363,32.40882498085891,0.4134127719184188,0.41207226974197336 -2001-09-23,2.359130082474864,21.420164179522157,12.879341044857721,0.5518564039078719,7.401509253285192,597.2206092511376,0.0,0.4427481082899489,30.29419189000422,0.3803890870598051,0.33565462032617316 -2001-09-24,1.5331026332879116,21.5720310869868,12.332120083301044,0.5951955947447902,7.659340336067238,417.7716701579145,0.0,0.2611139853758513,28.123126033120013,0.3454749797757031,0.25825384372595106 -2001-09-25,4.084342332845558,20.454790793472124,11.635633141849649,0.6289134079152429,7.291868227983828,615.4225007046447,0.0,0.6582314917710503,25.45142665936644,0.34407170615063276,0.2683365828858454 -2001-09-26,1.1858223228583022,21.71197808301619,11.881072354564733,0.8480898707777332,7.874253214968678,332.15611882003003,0.0,0.18062991023390618,25.547747998442272,0.3114279893769893,0.20217807588374612 -2001-09-27,0.76220894543628,21.378152975818807,12.293704578881409,0.8745506392220741,7.582441994005017,211.8150622437456,0.0,0.10210515659155772,22.88056594206655,0.2754223157630811,0.14715544350189522 -2001-09-28,0.019065231008150902,20.157107134043667,11.402164147648064,0.5604059709289146,7.220863456502099,104.16322360635063,0.0,0.002215129904845809,20.395404961445553,0.237814752381456,0.09612856366559518 -2001-09-29,0.0024330310412323283,19.781092786484034,11.00078081546955,0.2425594246374811,7.151795415238676,63.38317774313343,0.0,0.000243748772221056,17.771554250411288,0.2070549146914563,0.06261229125523513 -2001-09-30,0.7158723864076394,20.11597835327228,11.272269042116628,0.6624497769919213,7.247380645381776,82.35788834748823,0.0,0.06359425531227647,15.513820260794095,0.189064928050308,0.050440823666613975 -2001-10-01,3.912069171458316,19.15960049998921,10.210944253051679,0.7354923824797491,7.074825194911356,267.1496689034517,0.0,0.3530375916558244,14.148385684103937,0.21039206792443146,0.08658979417511703 -2001-10-02,11.485959471880145,17.760837629167927,9.055534472482432,0.5831053903365426,6.707585202864846,1003.1741456085725,0.0,1.4175929123624602,15.786362910228787,0.31770408602452804,0.27221534902561123 -2001-10-03,22.773325982971567,17.208865813281495,8.835048192895165,0.37340173500317664,6.501048492907104,3471.9358417805247,0.0,4.91527204037412,23.910248243260973,0.5438320240608903,0.9256221786211791 -2001-10-04,3.3595726818703,16.921447176724186,10.366978961176473,0.8499175744322113,5.871199639048318,1476.489637250372,0.0,0.891570712758134,40.568804546548186,0.5117358449477293,0.7382913460621595 -2001-10-05,4.992232786715273,18.338772804802254,10.852440249459152,1.1977629711301467,6.468359355500229,1396.644332439909,0.0,1.2888168099582726,38.79898693215989,0.5101380528491932,0.6768343653552062 -2001-10-06,1.5232659425745703,20.163439373768327,10.819005475487463,1.3256927985236109,7.430804745998306,760.0478400688048,0.0,0.36628924840504107,38.17640194171815,0.4624742449117822,0.4963603098222068 -2001-10-07,0.3661441998560129,19.894055281632173,10.046895940218363,1.043468146902152,7.513182980698576,399.80452388776985,0.0,0.07553509932298041,33.99458186026263,0.4002791883697663,0.3346085674972894 -2001-10-08,8.192222737850253,20.043119004193283,9.772558421385314,0.2815867795613966,7.6628566258693995,1307.2155324638645,0.0,1.657840618703462,29.488408663254678,0.43895383724154446,0.47024517600013543 -2001-10-09,21.17744255561027,16.589478771407766,8.920516543358891,0.4719513936285321,6.189395063412928,4151.501610829465,0.0,5.738621732427063,32.15327808499636,0.6212667781189213,1.1798974423833515 -2001-10-10,0.10144976990437728,18.82069975034589,9.782948392258476,1.022914097508251,7.063389944728001,1128.1099791487318,0.0,0.030256339995403905,46.37358693860864,0.5414027032080256,0.7726647545472322 -2001-10-11,0.0194886860557085,19.23139920017995,10.52636551969973,1.267994724917416,7.060915385335182,534.0422732015227,0.0,0.004824580262776962,39.88683381919152,0.4648816312924951,0.5037030535843998 -2001-10-12,0.25979337755359144,19.71690964129227,10.711007846836896,1.4171178250597731,7.259800721917873,365.46504515396543,0.0,0.05431714981053237,34.44454648413964,0.4042820564513744,0.3361576023155132 -2001-10-13,0.3659350432958777,20.056259463853873,10.247924060912343,1.3368751407166832,7.566561498947792,264.77775872536955,0.0,0.06533016458282531,29.93900609738928,0.35303204077129186,0.2287702823679341 -2001-10-14,1.0840054986336245,19.043400942610983,9.840543763252072,0.6961225650074796,7.175542553097111,262.88666653617696,0.0,0.1682786017383595,26.048689648068542,0.3160775232922637,0.1745416046807296 -2001-10-15,3.168851250250404,18.931652943832702,8.651063930753597,0.8273291959880155,7.435365967972478,425.7791141550898,0.0,0.4624426089789737,23.559436150105945,0.3113664469257595,0.18403209998558206 -2001-10-16,7.2866597419144465,16.305219264031095,7.848273511489531,0.5375576774962331,6.381424884444519,891.2901513593155,0.0,1.1387609614987593,23.087965740972482,0.35384381616537997,0.2931894266694203 -2001-10-17,0.2708138349668329,17.66665526221116,8.0785056929112,0.93099057756281,6.979865547995073,286.8399948500897,0.0,0.04258727230384357,26.7664385540753,0.3149656798025456,0.1973370782006815 -2001-10-18,0.21984269752094995,16.31931330751039,8.40089488649607,0.9566486743293448,6.240685440543697,155.78117080820638,0.0,0.03003492345345357,23.573645329379914,0.2771780217690995,0.13303042386197406 -2001-10-19,0.07009380786758691,16.063357017227524,7.108283018686534,0.7238681959250308,6.469974779216602,94.3902010337769,0.0,0.008458099225106333,21.09682499572866,0.2465802691179511,0.08788442406113886 -2001-10-20,0.06198347391214443,15.942626718210432,4.5575896710531785,0.7005478162813681,6.967562652510438,62.15686749362882,0.0,0.006569519713737315,18.703089847884723,0.2186003958649199,0.05820893592255356 -2001-10-21,0.12192361931122217,15.908420803111069,4.001145670214522,0.4220921825111608,7.054577221712575,45.6901150149642,0.0,0.011281286945179575,16.43263236929963,0.19284936596942578,0.03960902405930619 -2001-10-22,0.2640132990849388,16.94230740410911,5.252958639899053,0.4326889396501789,7.28167106096027,40.515820591796185,0.0,0.02150078884911405,14.485657060400705,0.1718236707189105,0.02905742576782368 -2001-10-23,0.4732834412126353,16.694162785148713,6.5645799808691825,0.6466956440393333,6.907101109325159,42.645137213608464,0.0,0.03433663131941833,12.857633473523641,0.15529615391476978,0.02414327784275409 -2001-10-24,0.7627596775230338,15.040031718227098,5.9847475099837215,0.7107926497161103,6.286236493315463,51.083682684680916,0.0,0.0509395357621788,11.715075328134393,0.14535832740954507,0.023472435981449328 -2001-10-25,6.395093287215665,12.535601858878335,4.752754868463419,0.5206323632255133,5.446345260030007,351.1916694336956,0.0,0.5094465065554266,11.104148029955722,0.20385431027471884,0.09285020919894257 -2001-10-26,6.654256688625373,13.913911428348827,4.911210698955673,0.4830810169824425,6.031188351759156,561.8054438189284,0.0,0.7218920291508217,15.803168776531253,0.26161379775094246,0.170359848040679 -2001-10-27,12.261252516155787,13.386682478614668,4.185722138323577,0.4554239900130403,5.960183419731319,1377.9902197745546,0.0,1.8720589579160265,20.008416756013453,0.37591979292361005,0.3959448860756333 -2001-10-28,9.7158067675676,13.04082633422116,3.762685328404328,0.5264425138659465,5.901816008308547,1651.581413497784,0.0,1.9623050959857657,28.657606568616977,0.4470242776101715,0.5565314510497695 -2001-10-29,0.9414896105748758,12.038335273040486,4.35500419245367,0.7547336406174828,5.331551671810996,612.8251972069282,0.0,0.19615711232698896,33.999200014469125,0.40703537113046195,0.39214363579873524 -2001-10-30,0.7499207983941562,14.01633772924758,6.2781727192910015,0.7840898380162014,5.755113014684286,368.8990511202004,0.0,0.14224103657507803,31.39466383462392,0.37446264158899184,0.27692537527245725 -2001-10-31,1.28289486690817,13.879167675143526,5.803973108520965,0.7937680147773096,5.81791850513631,335.0745055674131,0.0,0.22209496083018454,28.670441050309414,0.3489360780366882,0.21408264256278575 -2001-11-01,6.014353843534512,14.41759835350184,4.563593625350715,0.9765396383397216,6.348609648679166,844.1496553411336,0.0,1.058062468771685,26.710945440358287,0.38122757399233714,0.3004633798504814 -2001-11-02,3.5578758383185245,15.541550106765628,4.3990092319264855,1.114564577995992,6.8732223806073875,680.4619164288501,0.0,0.6467123955221488,28.819674407404612,0.3771765332049167,0.29405905448140124 -2001-11-03,0.3867898776336869,16.483875759108205,4.8024112443248335,1.1443823869021326,7.211755559697906,275.9434467185541,0.0,0.06461958553818725,28.205614852193314,0.3330821513716146,0.20125791020288 -2001-11-04,1.3701119998030222,16.380184582279774,4.514364765559914,0.7955711393103019,7.222121333470137,270.444214096355,0.0,0.2028056253538928,24.787363683762997,0.3047168769978999,0.1618895928893958 -2001-11-05,9.538777350447086,15.850666037030448,4.020745288100588,0.7900378639156752,7.08421727611129,1122.1763663140473,0.0,1.5377462074209323,22.702948578983822,0.3755942719048729,0.3395270930725183 -2001-11-06,0.5962744448924927,14.821504735927933,4.063306925305317,0.8327723564773297,6.6389142044113285,375.86776126688346,0.0,0.09908093524339179,27.964347716341244,0.3327119059717194,0.2361027159114724 -2001-11-07,0.4312774031134501,14.861215310271339,5.1104655662500775,0.9864766004837056,6.449738767923695,207.72437461377166,0.0,0.0632867760672211,25.058146722646793,0.29693452877627646,0.16332811781047343 -2001-11-08,0.5178313806934494,14.925647316009874,5.763685414669367,0.879533969000763,6.335855333882532,155.09683482352176,0.0,0.0676882571414783,22.486472917010833,0.26798456578552293,0.11662546536863316 -2001-11-09,1.6983130256089851,13.036237487567034,2.337644018441556,0.7877733527781461,6.203100138951909,214.62607661227364,0.0,0.20580813012614674,20.36505350875163,0.2570232780770302,0.10725502473421651 -2001-11-10,0.5063411210450351,11.144882987051217,1.9610157403758757,0.6360230145134864,5.494173604565122,119.37634007048268,0.0,0.05709474338730203,19.592717596319595,0.23414042230384732,0.07851149824632524 -2001-11-11,0.0210946640668366,11.945909836385978,2.197566159169721,0.7434573815668085,5.783852512722617,56.77073918665189,0.0,0.0021584232781959554,18.11708093855382,0.2112974619925777,0.05143594714802247 -2001-11-12,0.0,13.272358877540267,3.2690605281671408,0.7043737934084936,6.1443376976419195,33.92359704448757,0.0,7.105427357601002e-15,16.268035537860204,0.18951159675939377,0.033482384103847754 -2001-11-13,1.9459638011055482,13.358867700062232,1.7973677597169009,0.7466412215024886,6.433085189549171,131.74089370179865,0.0,0.16825911845235386,14.497329323349424,0.19155322895293525,0.04741539482391055 -2001-11-14,0.3088561466188157,9.104700610696948,0.026137460763921413,0.6361682098085307,5.026176898089319,57.18214743405747,0.0,0.02534430818109218,14.568887846451808,0.1733156418144359,0.03472423883402967 -2001-11-15,0.0033808063866185532,11.269133269438194,-0.6136316342563946,0.7196538879007055,5.948956585245818,24.99328910860538,0.0,0.00025440942379686624,13.557470158299724,0.15797472987767444,0.02264258503484327 -2001-11-16,0.0,12.05938444545872,-0.7234083285389119,0.7592965952636197,6.263699346504708,14.915913514363309,0.0,0.0,12.143207272908096,0.14146014094408554,0.014739258656186329 -2001-11-17,0.07427668205320258,12.106866003920825,-0.9633420690583671,0.7005389599506944,6.31052342654118,12.499371979153267,0.0,0.004429471506407254,10.81241821719568,0.12682262274307632,0.01026901711261193 -2001-11-18,0.5010704517353669,10.875470749799778,-2.219005229059304,0.7857392569638805,5.982888370911866,24.768259474731277,0.0,0.027288121151284206,9.68901481118821,0.1187075922471844,0.010839667064018118 -2001-11-19,0.0059460825712096856,9.093714655620587,-2.714898537238396,0.6355686405405413,5.391430816202008,8.852480868183243,0.0,0.0002966812454086344,9.129131404417802,0.10641746614402771,0.007101287896752919 -2001-11-20,0.00590134444862946,10.264570649828693,-3.3649837810411967,0.5761967681539988,5.866526414487535,4.937202328369638,0.0,0.0002662990601952813,8.280264233489103,0.09652821731506098,0.004663152626155153 -2001-11-21,0.011539991878651713,10.941907599611314,-2.169275199849233,0.7514289076606991,6.009930590923168,3.3653028702717536,0.0,0.0004670562248151114,7.444609181537874,0.08685908831720322,0.0031066094014145446 -2001-11-22,0.14120395837052138,11.554503585357626,-1.1811349099416144,0.7635453157138508,6.139380246841587,5.426823133021596,0.0,0.005167583020316419,6.682159266698674,0.07948756056272283,0.0028090975642442954 -2001-11-23,0.07517196497763518,10.742761714451943,-2.479740470524065,0.7317540814590349,5.970825151308783,3.760816294842611,0.0,0.0024956803892801083,6.101053263797701,0.07194884116935128,0.0022085946942176247 -2001-11-24,0.12799724485423022,10.223953204774718,-3.2432443725652376,0.6349597371228561,5.851917643672462,4.136035109850744,0.0,0.003873417365759607,5.541418623673437,0.06604485535068151,0.0020274763571807406 -2001-11-25,0.09025312203471822,11.720057430433274,-2.5940052034083454,0.6288246438049687,6.339470092592385,3.1919620041460304,0.0,0.0025026223439416906,5.099042103274411,0.0604517750109111,0.0017008530397653859 -2001-11-26,0.1659095841596986,11.862098883904535,-3.0407597552092787,0.8848381269615742,6.42684854184883,4.016646248395569,0.0,0.004203845083330049,4.624501871392825,0.05580504923064988,0.0017472729053360828 -2001-11-27,0.21285632542574648,11.954492459053618,-1.755609534735604,1.2108759702980951,6.357757495480712,4.659724571033458,0.0,0.004999816503692162,4.262394662931392,0.05213364322501178,0.0018986884635736145 -2001-11-28,0.11539067891000378,11.98267785270391,-2.716056810538277,1.2428640913304678,6.451274623518296,3.183300318287018,0.0,0.002507068615708166,3.987658035850789,0.04779773880541779,0.0016176951846185205 -2001-11-29,0.0280236171199773,12.018981558742356,-2.3012823899322483,1.038544400581218,6.433915051886222,1.581872424076907,0.0,0.0005507563753115938,3.6498674177789483,0.04284493976599919,0.0011369043278734584 -2001-11-30,0.06974701236358773,12.901582911998663,-1.9132821586982531,1.3156785431487057,6.729823981854935,1.5922997439799043,0.0,0.001236197585071666,3.273191649306208,0.03894297145880737,0.0009283006273814193 -2001-12-01,0.0012777162880968293,12.224363278509585,-1.9052593166158829,1.0874770570783328,6.480058197090748,0.6924716561378138,0.0,2.0234646861648498e-5,2.9585170503550273,0.03447960455958133,0.0006073611022030966 -2001-12-02,0.09827951454440452,13.406414840850976,-0.10753177765345047,1.1981633503659408,6.7506976541792385,1.3227765738900872,0.0,0.0014091020129084336,2.6323626873819954,0.03181013237039721,0.0006099201294240287 -2001-12-03,0.07741167352049452,13.161299638795773,0.2370310632743864,1.2565374574839805,6.6172479182240345,1.1424877901648673,0.0,0.0010153382131234123,2.4161325367424253,0.029048101338191724,0.0005516295803555075 -2001-12-04,0.039543807757722815,14.132180032727232,0.5379012120666868,1.4222835218413508,6.964844040121711,0.7321396562153136,0.0,0.0004712274163722885,2.2121791000238775,0.02623104693374215,0.0004308362657169285 -2001-12-05,0.13915763136404075,13.828424792457724,0.08422266240272924,1.3324195667252114,6.899637201252401,1.3090987804210878,0.0,0.0015252296550666844,1.9844652506057114,0.024738768386647455,0.0005126929065890351 -2001-12-06,0.017045789878483653,13.300753453946221,-0.5748200539022005,1.190816393566319,6.76828544805268,0.5364203576252444,0.0,0.00017113359218851043,1.8740049273380641,0.02202946017290563,0.0003597966031575949 -2001-12-07,0.2629139681268813,13.006761174104495,-0.16531797615727525,1.1705242178270792,6.61204399728161,1.9036240748315403,0.0,0.002529655940097353,1.6731215870432723,0.022553503069831327,0.0006193881652216362 -2001-12-08,0.12920946573940886,12.790624339914313,1.5618643057220427,0.9918840313182228,6.29693172013529,1.3533206030935545,0.0,0.0012280002489008235,1.7180459680317648,0.021519274780394816,0.0005901737632250272 -2001-12-09,0.07570865321949342,12.443063792945043,-0.3224102963005456,0.9031583662629172,6.415657014728469,0.9114930532386651,0.0,0.0006807395387495169,1.6492118060742385,0.02009415517706076,0.0004878280329031005 -2001-12-10,0.00029518757240244915,12.623733820618591,-1.5330508448811584,0.9923276794373751,6.612032530297746,0.3648437884085128,0.0,2.416478669624864e-6,1.5365634440132745,0.017903362246008966,0.0003179210660780026 -2001-12-11,0.003032972157699899,12.471048064630208,-1.6323534338066932,0.9867385774318164,6.565477801391832,0.22493941103250725,0.0,2.205023366860315e-5,1.3639818369082977,0.015924796737560535,0.0002103091455466313 -2001-12-12,0.0058017891475231785,12.751601671877177,-1.6244368563731408,0.9974210754237176,6.67131065203377,0.1629616791541367,0.0,3.75839563825529e-5,1.2143878809671775,0.014214383303662906,0.00014262408180090665 -2001-12-13,0.263968184161323,12.565645790651374,-1.2154394459823026,0.9076850578724458,6.564396191216207,1.2089836834282979,0.0,0.0017050815057621516,1.0818093342628465,0.01567739668418534,0.00035246542201795226 -2001-12-14,0.02478328410667048,12.442299161820225,-0.4279998695067571,1.1126722949245254,6.434820494044719,0.4325766608000897,0.0,0.00015930898571354934,1.1955541442285533,0.0142161045868652,0.0002536955703751172 -2001-12-15,0.1412518162943439,12.585222857095285,0.7265327045259649,1.226502785113495,6.346308085359647,0.7502930174260501,0.0,0.0008699004744383565,1.0868445446053137,0.014306490896632735,0.0002975990907300613 -2001-12-16,0.30707894793451845,12.182547521627288,0.6232259515579043,1.3339709880987864,6.202022489725537,1.5790338175255814,0.0,0.002041554412483715,1.0955994953271777,0.016340253923336927,0.0005045798397040914 -2001-12-17,0.6558204599459124,12.029598100077276,-0.7830179811440355,1.0018794295769042,6.3203753842271695,4.063567655444303,0.0,0.005530369252103262,1.2547231676751607,0.02225653937786877,0.0011705381781218103 -2001-12-18,0.009695086311816307,12.050376171103231,-1.1215294057554763,0.8239849054519287,6.365966225458157,1.1498344058445578,0.0,8.835349576846036e-5,1.7049210311556482,0.01997411657322898,0.0007754184636230807 -2001-12-19,0.04641738130439184,12.894683719283565,-1.0048424648485006,0.8621940423516019,6.67552890060159,0.7859597338767095,0.0,0.00038379543653628556,1.5288383802533954,0.018350662806365974,0.0005631995001005476 -2001-12-20,0.9549809840042632,12.701244174051167,-0.4760707377947442,0.9518637231011714,6.546629299453253,6.625795965975903,0.0,0.009544377542574867,1.39634241199096,0.02739132516865567,0.0018198888823219798 -2001-12-21,3.3080490979576815,8.318458959828847,-2.4713564883825097,0.7312944116938365,5.134606977913204,45.17408855117948,0.0,0.06648877791867847,2.0889266681037615,0.06287111266248119,0.01130856079181626 -2001-12-22,1.1840148859308386,4.885114186209593,-3.8931523876001033,0.612374846436447,4.089308647693689,34.27468609828627,0.0,0.03523011173419932,4.920814574058418,0.0711171288145912,0.012725646532393945 -2001-12-23,0.01134231260505161,8.386252847596259,-4.29585374296955,0.6112974333238657,5.332001386391101,10.854795414912187,0.0,0.0003479286219066034,5.674927117832052,0.06624118793313177,0.008336775059770141 -2001-12-24,0.14169253623567007,9.1330397551927,-4.195308068178436,0.7895889682828493,5.583434565063259,8.23715900140591,0.0,0.0040001699077692465,5.164928142408558,0.06181853708555179,0.006035933697690435 -2001-12-25,0.11185139382705536,9.44516960506541,-3.5753060894306214,0.9225047630697538,5.645989297718459,6.083729805415841,0.0,0.0029235145905437687,4.797685419674578,0.057192778975088315,0.004374257433248549 -2001-12-26,0.025222981887341976,9.759719595409743,-3.1308028019847667,0.8320945533233778,5.7210382004199065,3.4296660587662116,0.0,0.0006031562236761476,4.4339070733479105,0.05194584527177582,0.002939275444312429 -2001-12-27,0.01100487217465465,10.164410617071892,-3.98409342926994,0.7807258555069421,5.930450632502545,2.1180831139337895,0.0,0.00023802570706013548,4.021907942286514,0.046980703065299924,0.0019495730985099598 -2001-12-28,0.1278473002639084,9.80993623533144,-4.012432229054494,0.773015285796846,5.80834705950832,2.9385378643348177,0.0,0.0025289445330320404,3.6234702355560278,0.043700308774851634,0.001654149621965569 -2001-12-29,0.26536744092195275,9.616822804579485,-3.9865152873818714,1.0717744294157818,5.739160391614446,4.488140194865668,0.0,0.004995607457530249,3.378563285363918,0.04244932516971166,0.001837428693436138 -2001-12-30,0.005509167538326611,9.5892518611626,-4.085563189570425,1.1858116302258148,5.736775326637975,1.5606394111599793,0.0,9.707599458716118e-5,3.2862530383237862,0.038346800407051955,0.001210860974539453 -2001-12-31,0.1096476389467905,9.731130312606853,-4.183436972013847,1.10822750538508,5.793210696749269,1.9763395988959025,0.0,0.0017748098646253874,2.9690735449123298,0.035865016779208295,0.001058454604777512 -2002-01-01,0.2418925465587708,10.083456528736338,-4.060159716171897,0.6190737057443616,5.90831627848867,3.241605697703659,0.0,0.0037470119231738375,2.774113397314091,0.03513442670622227,0.0012595421195421615 -2002-01-02,0.9491585935954006,8.280880651922295,-3.4282964730547523,0.5419881680579712,5.224682702426042,11.62703074201004,0.0,0.016198530507395947,2.7117269608819976,0.04264683743576736,0.003286368288906826 -2002-01-03,0.017339749954850794,9.30684190969253,-4.481297692080811,0.583147644597255,5.665757623235142,3.2989373996928517,0.0,0.0003105530846040615,3.333713127672503,0.039037496579495026,0.002186557591641447 -2002-01-04,0.0545620401636859,9.594429081751118,-4.416844650354099,0.7546403600528783,5.761078413537681,2.0976808290608915,0.0,0.000892001382228412,3.0265665526567527,0.035893061463229944,0.0015591666117629902 -2002-01-05,0.0,9.859747549887292,-4.671121588239494,0.8202569840945765,5.868376095181382,1.0727976653095501,0.0,4.884981308350689e-15,2.7779702243617646,0.03236147177965265,0.0010149441834276976 -2002-01-06,0.0,9.627134969583324,-5.040351631822652,0.3468772129913472,5.808702545296277,0.6650367377256331,0.0,0.0,2.499764548032641,0.029120564060588605,0.0006606809610348101 -2002-01-07,2.0407515621147924e-5,10.024196637131832,-4.396824708722834,0.5321872817262923,5.908565710987271,0.43050931621934313,0.0,2.4540440678663474e-7,2.252135624740151,0.026236092540539904,0.0004301096200747386 -2002-01-08,0.4713261863295599,10.425013617385073,-3.194029224068906,0.6818932054235823,5.964932363015239,3.9973182159308407,0.0,0.005690451715084643,2.025361476442291,0.02908472043106981,0.0011464364851001495 -2002-01-09,1.8743360794603527,8.256623583218119,-3.12945094661611,0.5785034784812433,5.1858102258150005,21.93467322633788,0.0,0.03192995537937171,2.2427180944704137,0.04796089291978354,0.005608083670958868 -2002-01-10,2.181937721927593,7.146604347673107,-3.9624815551959216,0.6076472548329941,4.877587528423311,42.70614232757121,0.0,0.05691229565367806,3.7514209123692943,0.06911960982104179,0.012316336657664528 -2002-01-11,0.1614201371802921,8.455589293835263,-5.461105619585786,0.908514350717294,5.432093544867546,14.602040394393958,0.0,0.004805535723729076,5.435334180532239,0.06519839749251276,0.008749070101520644 -2002-01-12,0.3503028416969917,8.987419768979002,-4.707234452630825,0.723173663627198,5.567549799333596,12.715350399916936,0.0,0.00991552245610311,5.074125089332128,0.06319091179283216,0.007205018203866161 -2002-01-13,0.15986619696528606,10.531913939911037,-4.306647404096082,0.9153107948525758,6.077415526831104,8.108648776703134,0.0,0.0042938796647275235,4.905512651805532,0.059008233144546174,0.005343934826484505 -2002-01-14,0.04649112351547917,11.440524527640235,-1.5546371028258024,1.380829596374057,6.184437543815144,4.519542635932355,0.0,0.0011406028671751417,4.5369956483700165,0.05339451680223173,0.0036523240435414254 -2002-01-15,0.01772871333768876,11.612036037880538,-1.9226369102822876,1.4818176452742096,6.283433135592596,2.7213296939725877,0.0,0.00039108158526378334,4.097563231355555,0.04794036414260686,0.0024370392418457862 -2002-01-16,0.04008721103231315,12.603904297000188,-2.2477152002043166,1.6004472351961472,6.678006513355355,2.134340950371446,0.0,0.0007940963062544742,3.6725557498575205,0.043249776168629,0.001707310899258338 -2002-01-17,0.05154003961713149,12.018359408496465,-0.9957844516592006,1.7269036291828312,6.340957939754977,1.7574910306170493,0.0,0.0009152571705301968,3.2886022665104897,0.03891039581052634,0.001250740576938417 -2002-01-18,0.040528137015283884,12.718472916460627,-1.1293914283695026,1.6095691608913805,6.6193321863721515,1.2958503284597167,0.0,0.0006504396981485763,2.9782169519555928,0.035166335891573655,0.0009132123836449913 -2002-01-19,0.0010760139426955284,13.389473902733537,-1.1938306193099042,1.5069050634965175,6.878971988460024,0.6465821690795304,0.0,1.5407854300661947e-5,2.6775710065397162,0.03120442371944717,0.0005968044142054379 -2002-01-20,0.1804801736109994,12.78620342112749,-1.1616925839285477,1.1335604530204682,6.645852132582863,1.938772006394358,0.0,0.0023669191000033896,2.3643086497526844,0.029645066376253137,0.0007488900228619381 -2002-01-21,0.007976079233398067,12.278051739914545,-1.8030542130751428,1.3410018533898658,6.513730356107724,0.6879305519059958,0.0,9.62660180399335e-5,2.256364994514409,0.02637804002180529,0.0005021501304182211 -2002-01-22,0.02994740922426394,11.354396741117739,-1.2327868453539883,1.28458292516433,6.110049556432435,0.5547501949775329,0.0,0.00032403853601055757,2.0129735189894213,0.023798645279446112,0.0003762157879134648 -2002-01-23,1.0752834021782829,9.486302194847836,-0.035853176548307615,1.2318949656344056,5.235211465055528,9.150503456961584,0.0,0.013602221340990983,1.830295046639099,0.03384802117401155,0.002316037937986959 -2002-01-24,0.3728389438609094,9.365816315693396,-1.708521851191278,1.269430786982239,5.419883590770641,5.988377896165848,0.0,0.005649120106481387,2.645883913004316,0.035166076902599146,0.002367793833436216 -2002-01-25,0.0005269874043290503,9.108133012539907,-3.8587504715026055,1.0157440050554396,5.537006005563274,1.934998072952719,0.0,7.720910356669077e-6,2.739325605097439,0.031917427183016316,0.0015424981219181498 -2002-01-26,0.7129997291967576,9.348116002883273,-3.5077355394526584,1.1930017590704742,5.591670866095572,8.104171719439185,0.0,0.01082339663357379,2.4809718179727724,0.037207605460381585,0.0026521158094006173 -2002-01-27,0.00048814967456361515,10.227968481874226,-4.530665523630653,1.2122888280443704,5.969030043530729,2.3609711760714824,0.0,7.545881537779592e-6,2.888857190809969,0.03365891645553666,0.0017275517144147614 -2002-01-28,0.1803992569373903,10.399958636377995,-2.5130406128448044,1.297495620043446,5.877851061092795,2.865516554774745,0.0,0.0025900599472009345,2.5949449478559203,0.03233088043010827,0.001518929860578263 -2002-01-29,0.052928794854501963,10.022680724365179,-1.4064135288029085,1.2808140697564612,5.621052419412587,1.6084035406297523,0.0,0.0007137716760029431,2.496954918292733,0.02970441839180208,0.0010974342316178028 -2002-01-30,1.7102742867005694,9.009965759817463,-2.593456732901537,1.6251443022129275,5.3804903079547,19.682298656015586,0.0,0.028954683120311797,2.305414108930684,0.04678005025088276,0.005123156352474121 -2002-01-31,0.917142540392824,8.40449401589577,-4.135913045208226,1.2285583350329854,5.306040580002643,18.2284905994317,0.0,0.020222244691132207,3.645779449921974,0.05315495102408962,0.006414069490715561 -2002-02-01,0.4250414222795768,9.185795065581845,-4.608963356777171,0.8908547438433978,5.6064485429326725,11.987218863440896,0.0,0.009964311084044775,4.147828642607587,0.05327083935568952,0.005692471340610009 -2002-02-02,1.185018181415989,9.553166836194936,-3.8673592696357337,1.2893052248985666,5.68077816856099,24.0764949087323,0.0,0.030147819659308572,4.13333700707039,0.061955236178211096,0.008295982207725578 -2002-02-03,0.056754585110767024,10.882610541534977,-2.5507768671118147,1.5905863179003874,6.045853642158852,8.163570746352248,0.0,0.0014753991724111223,4.799399034109154,0.056570900914587406,0.00562494582585683 -2002-02-04,0.0,12.052696213945227,-3.99531597641496,1.1489850713657284,6.564674588455922,3.885333257141186,0.0,0.0,4.352492922080567,0.05070359488874975,0.0036615753601789815 -2002-02-05,0.0166183473945841,11.419790499500074,-4.139095878842946,1.4079156076696218,6.346751993305399,2.624572869463556,0.0,0.00034533238020282436,3.8630142569492953,0.04519509242390813,0.002436095421850108 -2002-02-06,0.0452231800311981,12.776548557759831,-3.8402849396225376,1.6777207660252516,6.809890799310354,2.1580262229831484,0.0,0.0008438935478777554,3.458298420326728,0.0408136539423979,0.0017142788824830244 -2002-02-07,6.692760407064239e-5,13.769268395356493,-3.3165652025671557,1.5281924571416008,7.1379498185212915,1.16718309599732,0.0,1.1093111001659115e-6,3.095683831706676,0.036063399800222815,0.0011160838903916147 -2002-02-08,0.00013962074595878172,14.998258554383225,-1.503563621975218,1.4434163838201168,7.475584500399362,0.7317881771771209,0.0,2.0296929801677597e-6,2.718417814996772,0.0316693530285645,0.0007268272074425921 -2002-02-09,0.0211043153549464,15.859067772994285,-1.0561515544275233,1.61283008745291,7.767474743282418,0.648950043798768,0.0,0.00026857594461039344,2.3718592794963644,0.02787640528519652,0.0005140250063547104 -2002-02-10,0.3918933677955703,15.412074060905447,-1.5451227730333346,1.2152152745917508,7.629827106053789,3.4562296808365742,0.0,0.0047546978186943645,2.0761311707435515,0.02875081444538299,0.0010585791031053177 -2002-02-11,0.0025441367805506122,15.414468226757686,-1.3516710420357392,1.2420689459358485,7.61384200465066,0.9851158774437256,0.0,2.9172643172994516e-5,2.1469820603335252,0.025040524465489187,0.000693527208788719 -2002-02-12,0.013070829022860615,15.874364843243669,-0.17646027717409227,1.6542720006990463,7.691917420592511,0.5599891167103227,0.0,0.00013085608689900746,1.8707118180557505,0.021944792077978368,0.000471378389485126 -2002-02-13,0.02010870426423108,15.89226245384852,-0.8174910497337212,1.6922589570507136,7.749788827491595,0.431242774184707,0.0,0.00017650736607745937,1.6370898666982712,0.019305241041525204,0.0003337210307655871 -2002-02-14,0.02386247037271841,14.47612327640528,-1.4989717852238094,0.9107695181228048,7.260895777233045,0.3485724121207712,0.0,0.0001843461219042386,1.4386637507709372,0.017037440004748914,0.0002453061265101047 -2002-02-15,2.7624896770229554,13.687988592782428,-0.4271750558268113,1.1500086994256358,6.862149387823825,25.886746590764048,0.0,0.03936533554218169,1.281906539691633,0.04711447692460895,0.006153636631889844 -2002-02-16,0.5518031287716625,12.696697717607462,-0.6507298575731583,0.7653487116198798,6.50426603865041,13.729434579345115,0.0,0.011388627991869571,3.569350488202329,0.04800864865495745,0.005739815080238217 -2002-02-17,0.2401377334981021,13.317406616877555,-0.25926997181615496,0.9870531287574432,6.696366649448812,7.757069014770308,0.0,0.004873933947188852,3.6622175947684834,0.04545979676902056,0.004478478291085965 -2002-02-18,0.05932581383478582,14.77449475262724,0.2948232055353475,1.085511290206015,7.198167766133231,3.9843035384931476,0.0,0.001108333048713571,3.4552113835257368,0.04094197818734817,0.003084038958877469 -2002-02-19,0.7520304275608362,14.664032230312193,1.5371811465936862,0.9521846559380166,7.0036629569360125,11.20466516352164,0.0,0.013941091297142827,3.0821064606200075,0.044665098141826357,0.004130301511481085 -2002-02-20,3.766615245090244,12.022681690171433,-0.6001275050192171,1.1853059138446609,6.231516189857999,73.32328400391158,0.0,0.10687963711686432,3.3747526046613068,0.08319209907692574,0.018962635823417735 -2002-02-21,0.9191226207562352,13.05902755137885,-0.4772805568963449,1.3290280832055026,6.609121016215491,40.846760492754235,0.0,0.034046814012706705,6.373427644817187,0.08495327183547222,0.017527915077710357 -2002-02-22,0.09695818603582423,13.828007982621582,-2.623588464627771,1.4603245427275169,7.0745790699937645,16.09950417951079,0.0,0.0034174880457789603,6.460613410528951,0.07639126809360901,0.011930211944452214 -2002-02-23,0.005066653597571705,14.315833973688536,-2.7751908250493327,1.2933848610045893,7.259139451407763,8.250625596449549,0.0,0.0001576629140361413,5.758456699878555,0.06714114381760104,0.007790013763663279 -2002-02-24,0.006032921436347521,15.381835027398145,-0.5686837184817863,1.5799018988370357,7.4960066375270396,5.214160887468204,0.0,0.00016408567519525172,5.04435265655336,0.058833571693889676,0.005095917297552882 -2002-02-25,0.09021472884839367,15.976487556804994,0.2229106731438704,1.560209809187597,7.650740422434042,4.738156528209323,0.0,0.0021570236422823325,4.400844812585189,0.05231780216227253,0.0036456413674318595 -2002-02-26,0.871430911972927,14.519763408687101,-0.15968579771125513,1.876645096996135,7.119590214228964,15.775878541097358,0.0,0.020324055972381738,3.9023710670222838,0.05561156007724912,0.0054677789502663 -2002-02-27,0.06765587750128266,14.167959697105331,0.026094410080684437,1.5769251570783296,6.961345019059813,5.751206472938957,0.0,0.0015360727686709597,4.191015897960929,0.04961064206945806,0.0037931568821540098 -2002-02-28,0.011991475412417869,14.360199629541794,-1.1730478743087718,1.4412698100545043,7.144663223973913,2.807773937361791,0.0,0.00024173314313315555,3.750965645593014,0.04383590205954705,0.0025059742940286163 -2002-03-01,0.10557026058122096,14.622656403709659,-1.1641390003032377,1.4499500537449854,7.239140753817014,2.8982475669167185,0.0,0.0018984854368812865,3.303116928882405,0.03970889728050784,0.0019203439383506326 -2002-03-02,0.3022498239280914,15.709366868380489,0.8386793796778853,1.5521975926960525,7.464612933142716,4.679974159094896,0.0,0.005079107728679699,2.9870052276805734,0.03831759375792783,0.0020234228320860892 -2002-03-03,0.8444466224592173,15.826923036290447,1.2735977084370338,1.7017878873688204,7.458914204393625,11.350280621697305,0.0,0.014894572328095768,2.869811319906582,0.043268589609104645,0.00358507183445455 -2002-03-04,0.0842504870058073,14.021745697481974,-0.005830453301152111,1.448136075779424,6.8907355636066265,4.188769330989259,0.0,0.001481645498852338,3.240487989471171,0.03873095162708396,0.002559315681121403 -2002-03-05,0.8316494731501605,13.791813334850756,-0.28311205936331624,0.7996872744413017,6.8282013431380095,11.570534062378847,0.0,0.014925964251811585,2.9332956655303875,0.043859061119110226,0.003938692776345293 -2002-03-06,1.2734065170077098,11.683692856588335,-2.0193924113781865,0.5187012700317686,6.206679652502797,21.138577939699378,0.0,0.027092043048005054,3.3252137961002126,0.05357081230853374,0.006689067658503528 -2002-03-07,1.1734389521462414,5.815760145109648,-3.97897454056942,0.3622645749568201,4.337672703796508,25.36988805106015,0.0,0.029661998982287496,4.1093225256805,0.061540593554275255,0.008870746195634303 -2002-03-08,0.01891513670863525,8.164670325251066,-4.217704233651824,0.7846188092706677,5.149234690235691,7.946429809768015,0.0,0.0004990419341978532,4.88905562521791,0.05717453553482094,0.005850425355020035 -2002-03-09,0.0886115127352829,11.535886010179675,-1.393674946280596,0.980638353680413,6.082756434664557,5.3851160384143055,0.0,0.0021538200375417205,4.474278004948643,0.05315457273993151,0.004136302854816273 -2002-03-10,0.1784974709682685,13.528985498911068,-1.0522769214628085,1.0190322647462846,6.785561138986377,5.445309826767494,0.0,0.004005508180946027,4.087117416713708,0.04969152462471098,0.0033024365454115607 -2002-03-11,0.20327447718386904,14.605629202023618,-0.06839558293967869,1.2871316723374215,7.094942704792197,5.1519081610407955,0.0,0.004224326188087657,3.769895972686998,0.046284744977346345,0.0027929470438497923 -2002-03-12,0.19894742518389066,15.636238692332055,1.2089765900093676,1.558952008272096,7.354794855554255,4.5839417256877395,0.0,0.003830472520554823,3.4907656707653607,0.04298265877094113,0.002401323285132382 -2002-03-13,0.1367637203396866,17.066501301437818,1.7706253716688112,1.5172297936699013,7.856197836410237,3.382121447822267,0.0,0.0024136220014814858,3.2256631091091776,0.0391699954153958,0.0019306582021315754 -2002-03-14,0.450337233514447,17.271098278822034,2.146964832476633,1.6140142963600963,7.8908985123728135,6.355857610802493,0.0,0.00756317439136589,2.911106761825647,0.03915854606363669,0.0024083727790758925 -2002-03-15,0.1771379465513145,17.13751062839761,1.6878879088885996,1.4609629603997143,7.884986805543608,3.8744905851803852,0.0,0.0028413351627893657,2.908266515211313,0.03594287244064527,0.0020003727386969762 -2002-03-16,0.6538221252166276,15.45776771457604,-0.08697470686024814,1.1250783624660277,7.40298354694747,8.353027050717214,0.0,0.010488217928727561,2.6700292828603422,0.038720617880976194,0.002899134755472484 -2002-03-17,0.10307224571778258,15.791405069095449,-0.7927316151070071,0.9350079829092492,7.586320689428854,3.5752506765997762,0.0,0.001629993793967846,2.9034559754967506,0.03502401765588289,0.002135391101199304 -2002-03-18,5.632543812200178,14.379413270145335,-0.17801903361947982,0.8842256262951532,6.991661469260041,109.5825872012175,0.0,0.16540306307264974,2.6171606044606137,0.09610346947890008,0.026575099064334102 -2002-03-19,0.2308467929389945,15.446593559015165,1.47108924223012,1.254276807796788,7.219973661900159,32.93628425134573,0.0,0.009236057754062804,7.2517247750719385,0.08716689132010047,0.018705466696807886 -2002-03-20,0.04584881202806991,17.691507465175476,2.149343963477672,1.5693668851463234,8.03305562549848,14.519352090062894,0.0,0.0016321831989721952,6.549804874277582,0.07683489864862791,0.012424903666662985 -2002-03-21,0.0786818876444641,18.257824531368342,2.180054565889514,1.769802775065974,8.253490835455983,9.860244776602839,0.0,0.0024317500733336828,5.68319688381794,0.06712198555090701,0.008458298188972124 -2002-03-22,0.2719097784116805,17.82978427090952,3.439807569213412,1.8277942798824829,7.919547051978406,10.523236647891569,0.0,0.0074450710549284205,4.9446602414522465,0.060769507896073216,0.006639576633738955 -2002-03-23,1.0516084959508476,14.119706280223387,1.9031850443573832,1.7232464930328286,6.6199186449025165,23.39824418627099,0.0,0.028522964381543447,4.5075284424931406,0.06476018049977911,0.008665095019885709 -2002-03-24,0.2076364007461328,15.239745355486715,2.276033562881508,1.4973438186528665,7.01246141004993,11.005661531430956,0.0,0.0056282985865398205,4.926771015431173,0.05981236920638181,0.006497561204065991 -2002-03-25,0.3908901965909096,15.648459039256162,2.167561499642342,1.5762855211250248,7.187176120145161,11.162271938207267,0.0,0.009914009342305907,4.516453929819663,0.057167235655438346,0.005739161338612796 -2002-03-26,0.04967568051027837,17.418013444698428,2.2376572943684443,1.664017840138173,7.884783712802297,5.099340871784187,0.0,0.0011555647680555545,4.302374994037968,0.050698443004503,0.003911876097729234 -2002-03-27,0.2840626890709765,17.720510811540574,3.0445555413764747,1.4766464043181566,7.90367957005696,6.551428329935141,0.0,0.0059570712930893666,3.7643623667345767,0.04716141017155437,0.003453499588500364 -2002-03-28,0.3017949832195617,17.28065683508974,2.625100641938792,1.1192251517224658,7.773186851209305,6.463367716182099,0.0,0.005911408971057075,3.5008361986627508,0.04429807800016441,0.0031481652615980788 -2002-03-29,0.059784572171403275,16.832346044638893,2.2453546107240445,0.9868122142849276,7.634780576081299,3.1155363892339607,0.0,0.0010657422286640267,3.297071164872781,0.03910509596181101,0.0022115826198546053 -2002-03-30,4.60920504604818,17.150058862078122,1.609704836595566,0.734794703851341,7.829874485585872,86.43087292502918,0.0,0.12996674598403146,2.9189728955754415,0.0876981746865298,0.021228993391255745 -2002-03-31,1.9961435972599637,15.926137681114351,2.569645007777945,1.2625166742394347,7.219375343662586,74.57131476479424,0.0,0.08145026751930251,6.510561920507061,0.09909735825706356,0.02622108341415842 -2002-04-01,0.4331830938653568,16.442707978829674,2.8781771425741334,1.5262541328083974,7.381983717743243,34.158755841484464,0.0,0.018038632920777675,7.443496536886833,0.09175798334790108,0.019815341255181862 -2002-04-02,0.06905157602297983,16.997495989931508,3.6558560028644354,1.65795009393408,7.494270833145483,16.036348254685212,0.0,0.002585851176289608,6.871778183417791,0.08085596613589367,0.013292589877962608 -2002-04-03,0.1065447617250942,17.73788886723683,4.016540058288421,2.007136467271711,7.744351299423279,11.20405051611913,0.0,0.0035129643365597873,6.044072522500681,0.07165052595790372,0.009187751975425302 -2002-04-04,0.01551085381634052,15.76007272644324,1.9158976658484468,2.054400076799788,7.2215113027677225,6.494577343342337,0.0,0.00044667105070081946,5.331157770591432,0.06228506853189145,0.006048806977714791 -2002-04-05,0.2295521875020714,19.321832324659226,1.4449602456588582,1.7711829683726867,8.67712875544866,7.854460546066661,0.0,0.005930646404280315,4.683664491471807,0.05723564691571224,0.004840517575928562 -2002-04-06,0.6707297963188392,21.256954881892398,3.925078663981464,1.7360967396910632,9.207655813010815,14.14584095237488,0.0,0.01629971305499489,4.182204666923773,0.05653339992757164,0.005632821542790413 -2002-04-07,0.4207985577537553,21.00852263809323,4.875688534183326,1.6970659384321458,8.98078971963081,10.988631104184666,0.0,0.009720295572399729,4.086951794161778,0.052512238800813286,0.005146760678721542 -2002-04-08,0.5614229434821566,21.66174462075045,6.411438679575267,1.8564089001055764,9.03725318512573,12.056428120152562,0.0,0.012349992718805214,3.8143220649518437,0.05097446594767824,0.005230768139629853 -2002-04-09,1.563284139290802,20.486517759987603,6.821505041030058,1.6691941397717482,8.446898079551787,28.781822879884718,0.0,0.03767640814037376,3.698613649780076,0.061297545709855884,0.009141773938587316 -2002-04-10,0.9304753388848632,16.51060180235415,5.454994107037074,0.7393691179062853,6.948430963621795,24.450913247639924,0.0,0.02488540888707691,4.499086851773034,0.06325072244041544,0.009740036301119949 -2002-04-11,1.2508539784172434,16.100529399113572,5.017684054943394,0.12063955409739785,6.850583509383644,31.794442066069674,0.0,0.03649182524967021,4.781557054523886,0.07027350318365658,0.01189672533138619 -2002-04-12,8.518290718076335,14.93532669321317,3.5852124292318255,0.3909510376141591,6.611338040751604,302.39990905012985,0.0,0.44763140068453033,5.321481618463781,0.16122397496490776,0.07590270257249392 -2002-04-13,5.487224263229488,15.30547524277518,3.0826273402732687,1.1599778525892934,6.840061629981099,375.1916994057936,0.0,0.45870266389345904,12.231347389080234,0.20640936014125646,0.11925334885275196 -2002-04-14,0.60355796514798,16.962216776190147,4.194478508711415,1.7621196801409542,7.345128325146132,141.25733568260102,0.0,0.05359294723605179,15.563343381147149,0.18833345191911097,0.0857886431308612 -2002-04-15,0.9838102074710492,19.18582175499196,5.9553263263101295,1.9167402131362288,7.997365054859341,113.25087604806679,0.0,0.07977807026450001,14.066269544743804,0.17532323669693767,0.0679917643560078 -2002-04-16,3.856640658401017,18.69809621039095,6.570317972858998,1.4849497513572305,7.668494967492275,258.05755398248596,0.0,0.3196180308800267,12.929142973660072,0.19554301142054278,0.09292600984076319 -2002-04-17,1.7469267419552401,19.29871409731457,7.475729652295127,1.2470294141468992,7.754442585827519,177.46263002176403,0.0,0.1501008591727735,14.505153929793309,0.18932573337436087,0.08334553810440247 -2002-04-18,3.1702595635661406,20.00219251077424,8.30369003833988,1.5708003385765812,7.898422408720009,245.19524347000865,0.0,0.27673857421272485,14.022969196463087,0.2002894712259308,0.09639156419593899 -2002-04-19,0.6413843758290557,19.516059063400537,6.781494486872545,1.6706255922858035,7.977287830280817,114.88590447935704,0.0,0.05407321118961439,14.78477210762757,0.17970427592418883,0.07097982310493284 -2002-04-20,0.16894540351721793,20.334842842502717,5.582875086861943,1.4561290969585892,8.52848003005955,58.79231899610291,0.0,0.012497699164405407,13.255260915865989,0.15638291230020782,0.04810748811354126 -2002-04-21,0.7937455157326074,21.142355653677317,6.258418031613032,1.5500528297952687,8.768178906453583,66.15023812880142,0.0,0.051718281714563163,11.416916608389393,0.1422459442780507,0.039190586125365565 -2002-04-22,7.54424834364896,20.791992979087667,7.019525576375031,1.1525420732981306,8.484735238533807,415.86806684464796,0.0,0.5928494674317744,10.340096956755083,0.20834051087410743,0.11578131907909368 -2002-04-23,0.4193695957677255,19.566104545722887,6.909032627571772,1.2208440859265188,7.958107847605978,133.55943295494964,0.0,0.0360809803851696,15.18907133757912,0.18182776631629596,0.08086205927960317 -2002-04-24,1.1174710192335615,20.036685820974334,7.34255486404184,1.5244238957901324,8.081413070355724,114.10216672650633,0.0,0.08680107785022262,13.41596576587113,0.16930469601796666,0.0658541464727628 -2002-04-25,0.29834792790129505,20.271147632792445,8.148653131635069,1.81580430034808,8.023490030256516,61.83553197834739,0.0,0.020819008448382803,12.467015137005248,0.14870783457619816,0.046037955800406836 -2002-04-26,0.03965839332108044,19.996950408264013,9.004121071814641,2.1299891516560043,7.705731062837137,33.15094840532466,0.0,0.0023972937627766283,10.972279963895064,0.12828162420934466,0.030333568832290245 -2002-04-27,0.32058553615617513,20.396857362491573,8.242633627444334,2.2139207495982984,8.05291871814867,31.117441589038755,0.0,0.017012310849871648,9.533300814522947,0.11479110260466185,0.022336103278614634 -2002-04-28,0.17364662571805434,19.18390694134762,7.549381892049997,1.8861234471882367,7.641033792996016,20.8411610345816,0.0,0.008107835387538898,8.475707155944429,0.10075911392527989,0.01577429115078852 -2002-04-29,0.15906398290488682,20.337964080044802,7.6948340136053,1.9863078895169175,8.127148310644824,15.0989960451433,0.0,0.006556646557117685,7.504953035111317,0.08928060793174666,0.011266668445894234 -2002-04-30,0.4877984496136039,19.60085934884548,6.335495577665903,1.9533790126104609,8.046284081659039,19.55806027875432,0.0,0.01806718803185353,6.588451018540724,0.08243351403165969,0.010085067905845917 -2002-05-01,0.3458846499412737,19.77883561991595,6.409156239844117,1.7445438071074462,8.106713794763516,15.306981546352898,0.0,0.011729319738282562,6.094500466522997,0.07502612496303404,0.008350867413679559 -2002-05-02,0.4584286469171228,19.908133602703852,7.613900062565983,1.304125941983772,7.937621572366587,15.534385793483503,0.0,0.014290251273979093,5.541612494845128,0.06989641587339343,0.007611924059167189 -2002-05-03,1.7009859455433805,19.983833790151913,7.779606803009101,1.4179200477119769,7.934749233158009,42.080649908377076,0.0,0.05547463542477771,5.1810509107602085,0.08017106863086196,0.013401837561758412 -2002-05-04,1.8831933561919016,17.964686723643908,6.70066601303715,1.3725366586561492,7.246639596483577,57.92231076258369,0.0,0.07028389388179646,5.940897677653681,0.0911453618086923,0.019425727500453214 -2002-05-05,0.4342829140250453,18.241582609395707,7.176229537766441,1.2884303114834628,7.268533164414134,27.84263323724434,0.0,0.016637215131018845,6.844283171041986,0.08479036560312658,0.015178497375718197 -2002-05-06,0.11312357433929413,19.64525960170932,8.228325495433394,1.201925204915118,7.676494673509354,13.745449053254529,0.0,0.003932886527530238,6.365629570253494,0.07547308650662193,0.01047932847581779 -2002-05-07,1.9570846779563493,19.191562871856426,8.659344720617616,1.1526193409764396,7.366871074049384,52.86548371970723,0.0,0.06998843045816505,5.622408127317597,0.08829595809591759,0.017478322772360003 -2002-05-08,3.3646987114151705,19.33194076331879,9.427936676367516,0.8055893791119584,7.2426678794610515,114.86331179819761,0.0,0.15216581704889398,6.615229346940958,0.11625940313944738,0.034547060206033924 -2002-05-09,1.470680473075354,19.315734552707898,9.10608241163824,0.7206079860350951,7.311502752670059,81.33990749280933,0.0,0.07609771228371831,8.72361678235461,0.11875665910738188,0.03407551335453951 -2002-05-10,2.098946488481331,20.69803149446711,10.072468218465346,0.6248543889761048,7.728978528296635,102.04057231674284,0.0,0.11441808057367053,8.898094498016643,0.1281080799294747,0.03960340068858377 -2002-05-11,10.251948958416932,16.887035799488206,10.56751074322109,0.759141539699022,5.660179391162742,580.4785400886749,0.0,0.8383833552778359,9.516029024132218,0.23028355596217173,0.15343620360750088 -2002-05-12,21.079091180687488,15.378463735255265,8.610675870999941,1.1693743823256355,5.533059321804257,2456.7451285849593,0.0,3.532630532091158,17.762382947326696,0.4524768688485948,0.6377749424374431 -2002-05-13,12.479754151010873,17.644234277048746,8.338143699796904,1.2196011014174182,6.702255812523732,2709.1923531880548,0.0,3.1922572672490155,34.67576249263462,0.5493298336085931,0.9012298396532237 -2002-05-14,12.0985531381366,21.113161295120626,9.115912864548315,0.9317587978040724,8.131082863404176,3176.249298937885,0.0,3.6561386988808504,40.77625740749345,0.6159557342699784,1.1433593961587265 -2002-05-15,28.298622416679834,20.287833753416226,9.853032319626774,0.8577866652998277,7.569708035621605,8527.625723997597,0.0,11.56668681281262,43.95395835763967,0.8416936341614004,2.505472168725048 -2002-05-16,4.557025511511503,20.29408105756575,10.559725790275332,1.1907442867831333,7.387369405560316,3600.525238548105,0.0,1.9615268187326986,58.62822661787611,0.7360653961455608,1.9296160600631322 -2002-05-17,6.53175527539315,19.21619528906411,11.106394561347322,1.2681754525969091,6.686108838679203,3048.5668352584057,0.0,2.4888103896995064,52.629439717480636,0.6891878557309867,1.6350475117010388 -2002-05-18,22.60570001052341,18.52490236124343,11.788717431317101,1.5497343700937074,6.090276735161541,7787.7253885187965,0.0,10.052549267553442,50.47023940601824,0.8512852047373328,2.5949882132696827 -2002-05-19,11.013551048026056,18.356300344295107,12.306489976497552,2.0209730300181845,5.799884242576459,5888.888040985883,0.0,5.518116646138257,61.55676106292134,0.8453949890548486,2.5294301398558607 -2002-05-20,0.4296713468924603,20.609180699582147,12.062809352433119,1.6249424092033817,7.099686320549692,2136.0769788039825,0.0,0.18940591074825425,61.69726365903517,0.7237367183849337,1.6753799857985463 -2002-05-21,1.2031506044821587,21.20843145910081,11.245003354022137,2.0510622217656778,7.638187895510833,1406.3297909412902,0.0,0.4242020804167741,52.21947355974407,0.6223373919289558,1.1551846612957106 -2002-05-22,0.13114223038102404,18.664835315583225,9.687896269743774,1.5626747323221946,6.8107121375613655,803.7272322226333,0.0,0.03757557576759832,44.89830851242035,0.5245626057065532,0.757692357331885 -2002-05-23,0.9197424982163944,19.996847601444408,9.35393148574903,1.1657439253607642,7.528711121554049,643.8796699173108,0.0,0.22414522626129307,38.917595199207405,0.4640780050001666,0.5273515350353843 -2002-05-24,1.6632991960636203,19.886253178119162,9.820332490155248,0.5187653428967489,7.359183798367669,585.9983250315689,0.0,0.3511930134198251,34.03516039088924,0.4158628779995883,0.3967553881867175 -2002-05-25,3.50142492567439,18.34429609889337,10.77022401238591,0.19673714444395846,6.3234733196683015,724.3910625482288,0.0,0.6807943884192702,30.709309421986436,0.398531886499027,0.3619301130892914 -2002-05-26,4.181921198767982,16.827246959887027,10.837585321830055,0.3319420921396739,5.495401823776772,803.2145227557029,0.0,0.8059532244033933,30.117514047215277,0.3995651918932743,0.3583177775150831 -2002-05-27,2.5745665644104134,17.449351439223694,10.431988799081811,0.7313210993191321,5.966492979347706,604.9486968546718,0.0,0.49261651090453906,30.72361445849015,0.38790125827714167,0.3082561733421104 -2002-05-28,1.6259971416592758,18.223623877079888,9.438723682822758,1.226695453458604,6.650486448017564,424.40413048596304,0.0,0.2929376735250595,29.550534018756004,0.3631854742312936,0.24526436911234994 -2002-05-29,2.928101371483517,20.00521960845941,10.099976681627467,0.8881909054813858,7.332111948770147,503.4003013646986,0.0,0.4964469224514221,27.306682890564595,0.35221476064775026,0.235246954726081 -2002-05-30,11.375391783929393,20.725358148760506,11.284865302790749,1.3573500640981764,7.3632095911125655,1597.500594635729,0.0,2.1647113338451316,26.118999330568155,0.436784264030707,0.48274399036696763 -2002-05-31,3.39376456077183,21.46345921594545,12.117184463996425,1.7323149848964428,7.494204812428144,895.3441762795327,0.0,0.6938086399185703,32.20900057251677,0.41474810242187793,0.41988626369216486 -2002-06-01,0.7257779920898267,21.562651046866893,11.925326949408571,1.540218205255366,7.597491853026375,410.5421610914433,0.0,0.13338929758606233,30.53976336052587,0.36422238268975526,0.2936367141014331 -2002-06-02,3.9714433491136014,22.25790968384439,12.584833339131976,0.8796488107789388,7.758532448774626,643.4745362779319,0.0,0.6748633362273844,26.840009925832337,0.35893256410850577,0.2939016125229315 -2002-06-03,5.971228721079585,21.928064316828753,12.817330970278752,0.5157942705225917,7.517068693515411,908.0072879342721,0.0,1.035916618632287,26.367343913828343,0.37672247043585855,0.3490497449627884 -2002-06-04,2.647308300767772,20.98824135975636,12.386783096757119,0.4985085007670431,7.159669147343636,587.4931926480731,0.0,0.45483532189872333,27.78914417216504,0.35456405872811314,0.2964703755876343 -2002-06-05,2.4122566434936745,21.99738643177004,13.035596495024045,1.0156363554272303,7.481739524403608,479.13269575054966,0.0,0.39024640881402295,26.385919575089456,0.33547924986030286,0.25240906117788287 -2002-06-06,2.5257566625269883,21.861417023723035,13.244084272085944,1.5660444694398017,7.34215707526312,440.0338415171936,0.0,0.38384438846377567,24.82131150152891,0.3185748237638717,0.22275241420475658 -2002-06-07,1.2410449966564785,21.96806433687339,12.990456781005044,1.4916344316201369,7.476597230268178,282.99069732741845,0.0,0.17425221542203828,23.660160394536124,0.29008217887992466,0.17153382627670474 -2002-06-08,0.5555647780512818,22.354994481877185,13.137546714471181,1.7670879446833172,7.631283458734459,168.88361394534473,0.0,0.06931074926151592,21.51340775559684,0.2570885841721598,0.12221404430589536 -2002-06-09,4.7639564311340274,22.621103198648104,13.390250113121494,1.2343835299608747,7.690752790817321,465.6411590165386,0.0,0.5834919163027239,19.03460775917131,0.27723715563501433,0.16840086285536127 -2002-06-10,4.600365915675146,23.14726069415082,13.134921459624536,1.0341672781103626,8.03816290271473,537.488208235131,0.0,0.6026110945260488,20.48187618786681,0.2921911339746902,0.20137748827908022 -2002-06-11,2.931097820616094,23.05354242985088,14.131061435768089,1.1796545375607437,7.681671521340601,420.61363293709843,0.0,0.3856697460549854,21.41452900264555,0.2836100648198799,0.18981119639048483 -2002-06-12,6.340951534056394,21.247300399880785,14.079968698871445,1.0789914353992016,6.707720032005104,726.5643534495637,0.0,0.8844511213191097,20.950265447739852,0.3179241953148317,0.2582289167731792 -2002-06-13,10.382399898322744,21.36450405880608,14.155090916168776,1.2750041277099071,6.744280997450889,1388.6213766701192,0.0,1.786931540260566,23.92650761170658,0.39967553735447753,0.4401816130650498 -2002-06-14,4.760874959555959,21.496265094071607,14.187657454242256,1.1407434583446632,6.804916369294463,995.9417471206759,0.0,0.9210551205181936,29.93382250786604,0.4041697290882658,0.4267817902407233 -2002-06-15,5.2266287745580415,21.208416829298198,13.92499207118466,1.103354533222645,6.739500754229131,1012.3663519218989,0.0,1.0300292633991406,30.22384732159568,0.4129740382744758,0.43465205848169136 -2002-06-16,5.652828553468297,22.026516148363047,14.060048973390172,1.6248500163008943,7.142190341945824,1098.134227418511,0.0,1.1493280191015005,30.9101802110318,0.4259342904164528,0.45794023113748983 -2002-06-17,6.231195137316144,22.133905851076225,14.06844128929173,1.4225417837436851,7.196868469577287,1224.725336418286,0.0,1.3089266394147412,31.58140657684519,0.4404912020139505,0.49740098465508475 -2002-06-18,4.624089031011164,22.039188312989157,13.971743611350785,1.6816882720665598,7.177464661958162,1043.9360047031926,0.0,0.9778378638306338,32.59240832884921,0.4335469899881105,0.47267492334536854 -2002-06-19,5.240911105866392,22.049029674990074,14.3251354571621,1.6444639290684988,7.057584678241396,1090.3752558895262,0.0,1.101814056961043,32.10619627505686,0.435068508280027,0.4754566264384753 -2002-06-20,1.5303541342635851,22.60968006870572,14.147427620843375,1.980573526265596,7.425524334252408,576.6917618925058,0.0,0.30388370379210894,32.29963490079831,0.39409646146068406,0.3557707004685716 -2002-06-21,1.1272408385567252,22.43209523164683,14.123260431365527,1.6065292913783096,7.336472484746818,383.6514650245142,0.0,0.19777897577225034,29.098457291343223,0.3521089133616562,0.2617047755946743 -2002-06-22,1.1147514320146392,22.030229911505195,13.451015166045654,1.1609926457419937,7.343063334317336,296.9274302144799,0.0,0.17359847531076866,26.108888721378,0.3171369710292135,0.1967904411910366 -2002-06-23,0.3604399682252625,21.95097669043164,12.8156708893873,1.3488451114734457,7.5003376203311705,171.40679301627958,0.0,0.049360194017482484,23.554600912232164,0.27859403019338375,0.13561714679255835 -2002-06-24,5.638642043937003,23.83379077885218,13.543789556225965,0.9167873740708874,8.254820438030599,590.791676667565,0.0,0.7635754841495297,20.66239564205681,0.30638927710120367,0.20454603617337014 -2002-06-25,10.074568661417716,23.215076376309295,14.336786144638458,1.280928382219075,7.68533311822035,1234.5824771267255,0.0,1.6178577888567975,22.335965649494973,0.37756077522646503,0.37949260454433303 -2002-06-26,7.9834585402813945,22.155262381828646,14.738468181776529,1.1257760032098088,6.96061357952414,1333.4298895763973,0.0,1.5141563841189667,27.74944418941673,0.41626411728652474,0.4775845272326327 -2002-06-27,10.09920175727489,20.911918121735265,14.687899151147786,0.8515717005198495,6.262154281044658,1856.7414119618786,0.0,2.2205366031785196,31.003309839013696,0.47881642410394676,0.6489945821549303 -2002-06-28,9.16763965888648,21.572201984338175,14.775477565638935,0.7339621017260548,6.612271488293427,2076.88526323101,0.0,2.324325975974725,36.06879545986727,0.5269738335096701,0.7763779369056715 -2002-06-29,5.2422984259310415,22.26479364588825,13.588172000666926,0.8619064905502941,7.41922304926816,1550.0839466878394,0.0,1.3769314777546402,39.26312276444008,0.5184580163110453,0.7150437057978054 -2002-06-30,12.04358208062399,22.577370082063673,14.671619757092552,1.0913401896020976,7.220061058479498,2754.617900645237,0.0,3.3650435497449163,37.961334233611666,0.5825234100624015,0.9778374370178644 -2002-07-01,6.381851337526512,22.219901363516854,14.408961349788376,0.6872106878449094,7.115334740241645,2061.731340721874,0.0,1.8724175212326122,42.610075963652505,0.5707227740902638,0.9216294416150369 -2002-07-02,7.163060579189532,22.068828303209774,15.134351623577773,0.8536502019379695,6.7574274949005595,2084.8816326350034,0.0,2.0831800934692435,41.89256624408474,0.571464830383231,0.9171323935620421 -2002-07-03,9.931532067648448,21.757579722754212,15.663191292699528,0.9564505674878035,6.353764945424067,2709.1274725692615,0.0,3.0339198097002864,42.28898623669262,0.6083336727675072,1.0589691935341645 -2002-07-04,6.072565231965473,21.959493012856555,15.488688410162704,1.0964448434279874,6.549495609868949,2120.982575739108,0.0,1.9070027863248624,45.28926756963794,0.598330568191098,0.9797085194464371 -2002-07-05,17.347873588007797,23.10336114740522,15.810899642516505,1.4000512610638849,7.092503977060769,4803.498316490403,0.0,6.185859727960715,44.38390590589349,0.7191334242823294,1.5796327259716831 -2002-07-06,22.097622873943077,20.612896455055076,15.185400141602088,0.9644437014104592,5.862984201086072,8006.005957975478,0.0,10.117844408754546,51.931634485067185,0.8623907131483607,2.5688579420953848 -2002-07-07,9.222005221130573,21.879058217275144,15.34455669065664,0.7485852229874872,6.561780933625374,5311.4145329325065,0.0,4.62927152519142,62.57478585345835,0.8363839928355375,2.377080761039891 -2002-07-08,18.081949178122148,20.95082792196237,15.399239039890638,0.6623160047325892,5.97584656776421,8112.111303300199,0.0,9.566182387407064,59.92862280011425,0.9087703321831926,3.00396044051876 -2002-07-09,7.837543219519034,21.867663772147246,15.719663538813649,0.8590605809286103,6.397096476044618,5203.774903575347,0.0,4.086873610553539,64.84560702686647,0.8467094769149508,2.5777239424511276 -2002-07-10,11.895482877505653,21.831678271162943,15.565517491687816,0.8330007653094508,6.441865672938381,5823.920469205654,0.0,5.915893860726893,60.78812496902911,0.8467148076467875,2.5787593681820433 -2002-07-11,5.191067081652948,21.7726503925258,15.231130054213569,1.1869058170938642,6.546845632438234,3590.017164107476,0.0,2.3683186553068314,60.71519046826061,0.7677632665389927,2.039262648988185 -2002-07-12,2.8150124042737708,22.721023876146244,15.069541353152532,1.3109598736319077,7.157798808395393,2215.568097972799,0.0,1.1066458455005708,55.78303052712581,0.6826275156001858,1.4959673173930808 -2002-07-13,2.7756074251825007,23.320347511921305,15.162449315851932,0.8758932873478195,7.461223452551571,1658.3334573503662,0.0,0.9306686580375265,49.46226465474282,0.6085358325005076,1.1155124649364498 -2002-07-14,10.334154384815346,23.043059088136534,14.81647352779935,0.8544222803275641,7.430237738984839,2964.57035595433,0.0,3.3351644680696815,44.15085227386569,0.6347134285084677,1.233974245602391 -2002-07-15,6.524496303409977,23.505636197777662,15.139960161009435,0.7343183550713501,7.573755480663308,2371.6492557221604,0.0,2.0978423391274266,45.95389293733552,0.6113376945378131,1.1226867242560499 -2002-07-16,3.801484766821367,23.00893235949606,14.943472961349562,0.8443934695176667,7.368022045997652,1602.4923430481274,0.0,1.1248070262158119,44.22423566453925,0.5594671184044228,0.9020847775164906 -2002-07-17,5.529701014771804,21.915127601669866,15.27323834043972,1.0461370710238191,6.617604122165947,1660.5114886010986,0.0,1.5272647328484457,40.870361321666095,0.5405293025484978,0.8197634097465861 -2002-07-18,9.209945356188939,21.402572958048452,15.101964379327578,1.0791088850437351,6.385640096435292,2347.7202211682,0.0,2.6326946111218206,40.22720156375083,0.5759092811312398,0.9344940977053449 -2002-07-19,11.686988777234518,19.346197391262518,14.22386269044347,0.906522220011902,5.52413624014281,3200.4548384581417,0.0,3.7232867963437783,42.96443203816183,0.6366520407329795,1.1752371545353455 -2002-07-20,15.945994888418523,18.37917844485231,13.521459668608243,1.0050064488557466,5.250516437864849,5005.448202802989,0.0,6.141919755101034,48.195367031547214,0.7472034276963316,1.7002221675839564 -2002-07-21,7.22940098404234,16.96247227687803,13.334442185686806,1.084980230660741,4.43045387839814,3464.6296180864438,0.0,3.0373901682115845,56.26456977542397,0.7396617591114166,1.569252244553344 -2002-07-22,3.776661843435081,19.327163239568325,13.600819963555974,1.4194012933329936,5.789327194511839,2234.8007770130976,0.0,1.5438318532727728,56.89573447092597,0.7067923276903361,1.256580662744153 -2002-07-23,4.469721893348372,20.45737199269997,13.732026775507086,1.2807410965493091,6.390663565057808,2011.1660711669542,0.0,1.665847208225622,52.78560991631584,0.6669858403607587,1.0716247988519416 -2002-07-24,7.036316041790137,20.92888560369901,14.34793277307639,1.0797578558405094,6.42139726858705,2424.8215591474504,0.0,2.4840817153616896,49.3214264129874,0.6565295322538007,1.0758155157180909 -2002-07-25,4.015465860092924,20.937616580883997,13.832215717721155,0.7779289878709799,6.625938946269264,1725.793691202999,0.0,1.3370847653133993,48.56815160840136,0.6125635321270182,0.9038962454213954 -2002-07-26,5.282183931745316,20.23581341126607,13.296192982503307,0.5535755081935667,6.434328982797382,1749.9979208386035,0.0,1.6416686981539295,45.299525602004394,0.5892426604461191,0.8383622839994901 -2002-07-27,4.665557787808543,20.95141888554376,13.841132474537408,0.6242465107015698,6.63315323163602,1551.2723222239852,0.0,1.3832184814759616,43.860847336760045,0.565299755999909,0.7563498916848506 -2002-07-28,7.691861370697727,21.73721246294065,13.930390995027974,0.6653438541898298,7.03844105429453,2055.7428010189005,0.0,2.2585293216015403,41.97301998141926,0.5785622330367454,0.8362426850803104 -2002-07-29,5.888432953865221,21.67291057266044,14.46364085930696,0.5520291677827607,6.809804105420028,1799.921904423377,0.0,1.7112573295022973,42.51310479556301,0.5638451356438783,0.8049188930771979 -2002-07-30,6.8444764213761555,22.124493631216602,14.182864581907172,0.8823423170875342,7.166081557589154,1921.5005876721357,0.0,1.9712828644210258,41.7022840883357,0.5655368824514819,0.8241213057005947 -2002-07-31,21.163535216280188,22.29124728359657,14.453799278671724,0.8832613143129626,7.164051370712615,5478.106969477757,0.0,7.376883597458054,41.48276782509719,0.7297870042645536,1.6597037413224853 -2002-08-01,32.92372315262464,20.772389246931727,14.138180799894107,0.6214918193721226,6.425753516846468,13316.387505513861,0.0,18.061578042454407,52.52400164708154,0.9954081258651799,3.8305312067495003 -2002-08-02,8.331749768945599,20.94797339889138,13.697609173987837,0.4045658020309532,6.6940768509988295,6596.603093928348,0.0,4.625962340883611,67.09613306007716,0.8786837526781534,3.197866885489466 -2002-08-03,2.1871167608841167,22.86026196793018,13.680126504220679,0.580090031443403,7.737755372242718,3081.709603916364,0.0,0.9930849317671364,62.0419199703969,0.748224779871846,2.232872894226582 -2002-08-04,3.6345046861145116,23.78561650251171,13.98796949524657,0.7472881962031249,8.132733122180996,2415.716181056413,0.0,1.3449451431426178,52.92192649631818,0.6588441213723449,1.6582830757779998 -2002-08-05,9.197637805934534,23.416400719472104,14.031166108709122,0.6115588687600214,7.926688227678945,3207.8176998814206,0.0,3.129355684872536,46.76831446969577,0.6519654420001224,1.555954975425715 -2002-08-06,5.00530789711422,23.37841754442236,14.475239891872445,0.7536692970053905,7.765699978673449,2247.3159165086263,0.0,1.602075565284152,46.551388665990636,0.6006005990443462,1.2567932310907393 -2002-08-07,9.202050592250384,22.894474400069353,15.041776284622436,0.821836383119859,7.3036575951503995,2793.4991265370545,0.0,2.859608944926922,43.30119538655965,0.6116272587024522,1.2535310304829514 -2002-08-08,7.038845260963327,22.429072806359592,15.260591285896272,0.8710272903710347,6.957034548398914,2423.469124860982,0.0,2.1944432717051603,44.52498239374132,0.6006836714320705,1.1501261910965879 -2002-08-09,18.036189626688774,20.790134549184266,13.527125513679092,0.9223572135210348,6.6827073150048,5102.098854421297,0.0,6.448996410373631,44.13085437199297,0.7242039609873703,1.7306330677509436 -2002-08-10,10.137895142074967,19.5529920089034,13.224064185156784,0.7080634760494955,6.102820782721931,4162.9137664211075,0.0,4.059127174418364,52.792537007708304,0.7330969159557661,1.7446228643713895 -2002-08-11,9.573896609179585,18.9359122436259,12.594004487519667,0.7544652435764467,5.999707383115082,3970.6793371311433,0.0,3.9342089545282803,54.146859359569646,0.742303653213049,1.7347089200794654 -2002-08-12,9.513497305780712,18.93505061530836,12.549222309618282,0.6391244144555229,6.018463212371333,3976.3941231368935,0.0,3.978443849908965,54.89708224065436,0.7503396307215366,1.7349908245962187 -2002-08-13,11.567197234790044,19.776620250315254,12.711809267808814,0.564004348351184,6.427402807166314,4661.8450314159045,0.0,5.025325022374652,55.40117618277853,0.7801361970968557,1.8945774550716667 -2002-08-14,4.285691090423883,21.061041588398737,12.946344434736568,0.8254507005233729,7.044698375969562,2690.9165190959834,0.0,1.7560631000829563,56.73494780741168,0.7108491179463126,1.5006674270854221 -2002-08-15,4.137966696901898,22.02444302380221,13.320923732315647,0.8565304445447204,7.438831086214836,2072.8060012825913,0.0,1.4854588396730284,51.45483719418576,0.6476185160287419,1.2030470164049567 -2002-08-16,14.473712068631757,22.178827184978832,13.396620718658134,0.8288096526774106,7.499473733684799,4329.621886521115,0.0,5.282729963386965,46.80939806581703,0.7139067300985741,1.5875007421615517 -2002-08-17,16.80614364948513,20.448926738263086,12.663893262752936,0.3589796093798017,6.819233052975891,5937.591723004269,0.0,7.027235205388301,51.07660897291486,0.790788095585023,2.1033887426431717 -2002-08-18,10.396228592813753,18.899845418610767,11.836020621621707,0.26238432971310804,6.273469787674236,4809.917913067759,0.0,4.606215047819834,56.82138589793477,0.7830396868050279,2.070571499960091 -2002-08-19,6.871157831048253,21.630278490642123,12.24474991359419,0.3923524657234561,7.57656935593009,3565.893842007994,0.0,2.935900437451865,57.142603837595225,0.7457169711835768,1.7948789427149092 -2002-08-20,3.7665720012065615,21.44679766465317,12.355670230720511,0.4595557378661895,7.452061341487235,2274.801455663537,0.0,1.3982431495673349,52.98246815923593,0.66108788552493,1.3812850078991072 -2002-08-21,3.0918354302555078,20.614773636101607,12.734500514570632,0.3132993220917865,6.895632890431698,1644.2584644588928,0.0,0.9941305232175002,47.69082244998662,0.5915835725938281,1.0505226780081467 -2002-08-22,7.576957923922764,19.825004972283672,12.920115389803955,0.3367064380581117,6.400941075607831,2263.604578421354,0.0,2.319034180981591,43.5612867313714,0.5957259177079511,1.0369481015232234 -2002-08-23,6.870159315996531,20.512768269649442,12.241757559257293,0.4152288269132872,7.009573572024181,2203.9812985952412,0.0,2.1271500539815804,44.352359578024476,0.5967076555157914,0.9988944972331314 -2002-08-24,4.160633608231411,21.713755079017282,12.542146720706263,0.7005883419711995,7.546765519883624,1583.224753565849,0.0,1.2229932992159114,43.80198264385512,0.5587319974521363,0.8364521665106617 -2002-08-25,3.7751674414326,21.947810849529592,12.551066875100837,0.5840223874657298,7.668802808599847,1285.6572464300466,0.0,1.0103669516449538,40.652616090111216,0.5175535901645213,0.6983343414935659 -2002-08-26,4.398298341968767,21.31667509769816,12.139315475763269,0.2574061158870474,7.469364168463381,1230.5413785077053,0.0,1.0887523464420408,37.68537736768633,0.49024632154757875,0.6203614632756129 -2002-08-27,6.4522535540331925,22.04399941516283,12.0757084701078,0.296696533741273,7.862988386468672,1492.915213568863,0.0,1.5629915077640755,35.933508600031715,0.4937654240419295,0.6418147024373064 -2002-08-28,5.357968603438937,22.246631483653143,12.36566606869864,0.2306514218971271,7.8874314851275855,1345.4621319129435,0.0,1.2733669439340813,35.864953938968725,0.48021913007992206,0.6116801344175588 -2002-08-29,3.24242074492288,21.47310405089489,11.492795747545081,0.1439014782957811,7.744734106778391,951.5151206835124,0.0,0.7227783902115466,34.898528985269905,0.4443162340324805,0.5082287059170518 -2002-08-30,0.002308621859157668,22.00325199235728,10.983304973407959,0.2656694290761997,8.144441495990707,379.21631154728647,0.0,0.00044905991388374377,32.47584119518968,0.3783484500814735,0.3309013768085882 -2002-08-31,0.08516655269635631,23.40558007278833,11.228414365547463,0.4529970310470299,8.771255139052737,228.0498816382706,0.0,0.01376718353486961,27.532431298180207,0.32172631140359853,0.21749750101085139 -2002-09-01,0.3096645927186915,23.31735213171461,12.293399689455393,0.953189580874999,8.46577412139221,169.7996135409195,0.0,0.04161890172369265,23.176926516319774,0.2736028805168393,0.14791774339107652 -2002-09-02,0.6963666448846124,22.48849937958016,12.216586898784788,0.5771875197120182,8.07194912021395,151.1690304047549,0.0,0.08020262025243219,19.891503576602993,0.23983474528741333,0.10849953256515472 -2002-09-03,7.6250845728212155,22.097418210106,12.410853531432586,0.7020297639606442,7.820528191260033,686.1246107306182,0.0,0.934788581206945,17.60981976693167,0.2939695456385854,0.21296346716474285 -2002-09-04,2.8549797422986716,21.801392267910682,12.23983672977292,0.7731837177033417,7.722018520117746,440.82757054138045,0.0,0.3790410709237131,21.641581507524176,0.28536834867148614,0.19634381039114915 -2002-09-05,0.6841527076681921,22.39954380546424,11.864708086034751,0.8826356743007259,8.135597624360328,208.68250865343066,0.0,0.08370328733836851,21.060626691694416,0.2533119537121454,0.14055565443557652 -2002-09-06,0.5641362329375427,21.431533652504967,11.64746120102319,0.7708978246929343,7.711287886199496,137.6245627910345,0.0,0.060171822080260395,18.562974677296964,0.22281788858627904,0.10065717374041643 -2002-09-07,0.9190049521865112,22.44563331998808,11.693392887227471,0.8203055722350585,8.21283721391913,126.71263840004885,0.0,0.0875619563780915,16.495070961105835,0.20286219099638228,0.07885569061255451 -2002-09-08,4.258439096116161,22.13770588796626,11.847698240285744,0.7360317389788008,8.020853649117551,322.70995765257,0.0,0.40719183323407115,14.876675201893459,0.22291112263369775,0.11333232034878744 -2002-09-09,1.085599807703966,20.71270746877228,11.683118963148894,0.7918102244450881,7.34580747264799,165.30973175753724,0.0,0.10334082962860136,16.397153734217092,0.20366223885912424,0.08950918187340014 -2002-09-10,0.38784286417087577,21.380438262625386,11.948195952863571,0.9272338789851712,7.614845291640597,87.90263100905143,0.0,0.03336161542444094,15.201819203623634,0.18160900525028584,0.06334606926121253 -2002-09-11,2.4606810278239464,22.481597696731008,12.27873290444566,0.8477327484976174,8.088637189501316,175.68206800851692,0.0,0.2019590749772866,13.493770550481722,0.18585855600010798,0.07198656649212837 -2002-09-12,3.729528790249711,22.404589794909207,12.778049175265323,0.7446578401476235,7.908289536973428,270.45867839957907,0.0,0.3240692366717415,13.67455704261361,0.20274581332500008,0.09620420011428328 -2002-09-13,6.3781181722689295,22.74725625644786,12.630098129540546,0.7859262291038712,8.134029675005863,509.57835342772614,0.0,0.6540223975702792,14.961510380832273,0.2485922207348766,0.1622089844556831 -2002-09-14,10.783740552281623,21.076606045949728,12.935118461982045,0.6862589565729922,7.160256741243986,1106.2343060248559,0.0,1.4714067512110436,18.22180908824715,0.3378950097857663,0.32963383974263 -2002-09-15,19.24486645021961,18.291598033269718,12.5142105827205,0.4688607632808126,5.757121127159862,2965.0611330228626,0.0,4.0751718108272605,25.16662933942966,0.5173638490020523,0.8350812468193133 -2002-09-16,7.0637178001880025,18.770137220129907,11.795902826754642,0.5505022802417344,6.30605442618106,2033.1193889053836,0.0,1.9079617871638357,39.309966606841456,0.5402220175349038,0.8341140109134355 -2002-09-17,3.883049375973608,18.95173297606276,11.434337256062506,0.4021646687088633,6.532846828266989,1349.021093404257,0.0,1.0359141117654382,40.48691629781232,0.516880051277825,0.7007022446247709 -2002-09-18,0.8435940196681457,19.975399150524293,11.036090313919477,0.8332220610386195,7.195503788269688,658.8278682984295,0.0,0.20341569650342706,38.60744836212504,0.45957792618515186,0.4870972730593108 -2002-09-19,0.34870771808737017,19.55709657416445,10.858699130573127,0.6923691644892466,7.038376204381212,381.061287684018,0.0,0.07184058661026255,33.96334719042341,0.39971220241526323,0.3280162217885263 -2002-09-20,0.8446835164784028,21.283615115800046,10.990855593675585,0.7167968739014139,7.8763227313936985,317.63014335400567,0.0,0.1510836874135586,29.74929603659741,0.3563991425291823,0.23652786696122913 -2002-09-21,1.8161846296350759,20.943481673872192,11.067096976575042,0.4598179129291883,7.689747911740083,350.68307747237645,0.0,0.28710521156399826,26.119211943516117,0.3254284512941954,0.19768453439337216 -2002-09-22,2.7755230065266905,19.317022041815182,10.543938205856866,0.5074174462563045,7.021103607603319,413.2806796328019,0.0,0.40909695812346003,23.98485017522344,0.31174022454943484,0.1909743961028995 -2002-09-23,1.390001945011201,17.18908634515351,9.496102117689382,0.6475424785160678,6.259339738524393,275.31174683902515,0.0,0.1927871517920725,23.315774711563037,0.287805566472483,0.15367004793467764 -2002-09-24,2.673952551985756,17.962241845901392,9.635710408863208,0.5615474957118897,6.611222887768942,346.75147360586516,0.0,0.3576275462635503,21.888225437233448,0.28613273924760757,0.15448605579563945 -2002-09-25,2.1650364215277618,18.69495748061485,10.749032026527383,0.6805160029464762,6.650854379103034,306.6797588908229,0.0,0.2822621308194426,21.60672692949264,0.27692494400776785,0.14354174070042783 -2002-09-26,0.7951925539891546,18.648521200202282,10.92815022388258,0.6521511648696283,6.572966143976498,174.6975301949245,0.0,0.0967833963535808,20.90250451051334,0.25276347639675373,0.10817562859172376 -2002-09-27,4.11506179931853,18.89014236536609,10.760008002049462,0.7004634599780604,6.756680143975496,402.76341767830854,0.0,0.4980650811413465,19.127629572725095,0.2707616137578924,0.14625501638324967 -2002-09-28,15.548956508098387,17.85092788000799,10.88701079927706,0.4410034063632721,6.16950662049979,1812.8186019289185,0.0,2.58430388306431,20.398370007493636,0.4187620091772436,0.4887035853065134 -2002-09-29,7.9940795580946835,18.626406241683156,10.614153583690607,0.5132826114986789,6.673208230165313,1605.1984948676445,0.0,1.73734232272452,31.716346016462907,0.4625995647179011,0.5826590990288776 -2002-09-30,6.304775038507285,18.446383382283507,10.524753484728055,0.4053941666649897,6.611666416301337,1446.0839829419274,0.0,1.4608752691704447,34.57188180958494,0.4761853692438335,0.6017235294541302 -2002-10-01,6.677786267563787,19.187174731632627,10.110742526936313,0.4828834439341234,7.117191252541193,1534.7419332046886,0.0,1.6070161339378597,35.60415543101057,0.4925559860461425,0.636385683204807 -2002-10-02,9.253750317860078,18.837838895724413,10.222064084195447,0.6288384096299041,6.912862909407084,2063.3869361004918,0.0,2.3709643683218324,36.380122558122665,0.5316037142232727,0.7752715205223478 -2002-10-03,14.272928198160505,17.889952520756793,9.6731362237705,0.4772364570378454,6.598520933866262,3442.5791170027614,0.0,4.275145929448362,39.32860685529345,0.6244215826240328,1.155619445775635 -2002-10-04,2.2853346349681023,18.453901993286784,8.925664758680313,0.4888674577771454,7.089136530621957,1467.1936413300893,0.0,0.697863167646553,46.15286385725234,0.5642722084695289,0.8585139217601563 -2002-10-05,9.0709536334356,17.542544414161867,6.400638040557608,0.2573499115008744,7.25195776578347,2368.5078396146346,0.0,2.677876440824086,41.467458980838295,0.5887382806563449,0.9665984607868698 -2002-10-06,0.989781977606926,16.31859107388708,3.426425386973065,0.4669721299385173,7.255061091548314,966.7527473953461,0.0,0.27222425489251567,43.00772588029982,0.5125411699636978,0.6706603321691758 -2002-10-07,0.3049824098112402,17.756945382219396,2.198292048862973,0.5250732865534095,8.005099848052327,510.9180457830039,0.0,0.07087481288398073,37.68407776357172,0.4425468235603238,0.44736009248825204 -2002-10-08,1.0845778639651904,17.1167367713908,4.0660455973903735,0.7300094267142684,7.497996061972571,436.26809740659013,0.0,0.2126921132920323,32.165657211760056,0.387342720463145,0.3235959105943952 -2002-10-09,1.7946764885551119,17.430830305489852,3.9583572481949583,0.7336678705782381,7.650393643567315,427.5780306796576,0.0,0.31252064862747986,28.566656812204677,0.3536889712455082,0.2582316143508504 -2002-10-10,0.891409962353126,16.946319736687837,3.1612506821671125,0.6835084736919982,7.569060440168628,277.23950831658067,0.0,0.13782912931333824,26.04975394392937,0.3138463140527237,0.1890831651180247 -2002-10-11,0.0338574871001248,17.107868383662304,2.6907252973027056,0.9578638711216676,7.702237980050914,135.4971539729927,0.0,0.004526775555127802,23.203870050470854,0.2707037884479605,0.12377352203453693 -2002-10-12,0.5182793697214265,17.21597705499683,3.931191031025275,0.6780462802396285,7.578006466849701,120.57927723179199,0.0,0.05975537064552228,20.000611644298218,0.23903118423543335,0.08966938342446572 -2002-10-13,0.952435138679083,17.149354543490933,5.062276064842546,0.7369596345302272,7.368240927670972,125.86509777952084,0.0,0.09791516607985895,17.731354623102252,0.21765349743867896,0.07327958466610937 -2002-10-14,0.061893326702813375,17.636740203360006,4.9844842070429,0.5898284708575933,7.596387773232375,57.33699223550869,0.0,0.0056410270687529546,16.22961621896452,0.1897850530529652,0.04856049518219662 -2002-10-15,1.7569823673435263,16.848824907440903,6.3631405846048485,0.8455505003639078,6.989709669443128,128.31826046302666,0.0,0.14684157512638873,14.101959351679179,0.1847459308219262,0.05396939909601856 -2002-10-16,0.5289795802763171,16.50430976193284,7.094897026193174,1.2646400406211806,6.668754656449651,70.92548498066326,0.0,0.041672592353826365,13.899225966528505,0.16807882335788027,0.04147681005690968 -2002-10-17,0.0034958745311852984,18.81331365486752,7.0338391602621995,1.2988527855655272,7.749328459965862,30.23800954446898,0.0,0.0002463614650123607,12.733965617904303,0.14838280015278657,0.027036966109474776 -2002-10-18,3.4173739569349157,18.22690488749502,8.63655662736269,1.109942928372902,7.112028270357068,174.9828760148328,0.0,0.24054951446796213,11.009245398636464,0.1680603453042323,0.054227011369881 -2002-10-19,2.4238791296569766,16.81802646784711,8.287337830185566,0.9853035605932036,6.522578332751373,170.9594812127807,0.0,0.18628750733246457,12.620605241143524,0.17525805429283953,0.06366426071357707 -2002-10-20,1.4987409933393794,16.983780720415147,7.732257512620514,1.2069194071903604,6.7528725199079975,129.8787888634122,0.0,0.11718895043077193,13.313210850497773,0.17254920783250552,0.05928619041746898 -2002-10-21,3.8917493283757305,17.238649189364022,7.056919537096722,1.377078848136743,7.038861754413209,259.03875451335034,0.0,0.3256716836020561,13.04882022575541,0.19734616258646584,0.08818084842513994 -2002-10-22,4.097443445231061,15.396275540346927,4.257164009676764,1.5055555463934078,6.79560653548198,330.7039881002237,0.0,0.3885649755991114,14.825615148168772,0.22044081728619513,0.116566345556412 -2002-10-23,3.1883230760657417,13.940220530048693,3.7134175769386832,0.8037320208242724,6.27925730459419,314.24672663510216,0.0,0.3281055426439492,16.627433522495217,0.23084014448143575,0.12583812824736576 -2002-10-24,0.4646442746971747,15.48524712030228,4.901653026283944,0.7262149373816651,6.719487663490163,133.27317927835713,0.0,0.04667907370862384,17.586713202399878,0.21028608962636025,0.08902228565023233 -2002-10-25,0.464377962968395,15.875806250349465,5.604784814987356,0.5330583641656647,6.752601623139484,89.64512757822322,0.0,0.04194742687316072,15.891826813077131,0.1905387086731017,0.06433643933368159 -2002-10-26,1.5373451586979818,15.450242794236596,4.835694516020689,0.8478293499735585,6.724660602957537,129.6697303192331,0.0,0.1301893133267178,14.400228573328295,0.18566194052119392,0.061703244409560626 -2002-10-27,1.0665720367343534,14.895136396074236,5.275171606860922,1.0105394340754268,6.392143689703107,104.49313751996243,0.0,0.0865962130121345,14.041921168270525,0.17600371386240146,0.053351464758635746 -2002-10-28,11.185763684691516,14.656892432741977,4.943053318251073,1.001462983619947,6.361051254454726,828.3663429016061,0.0,1.206298452608614,13.404106802464852,0.2864553380942916,0.2184060558665334 -2002-10-29,0.27571127883053376,14.633038334491873,4.084074213282672,0.9381542614642392,6.526385439295412,235.13138449880918,0.0,0.03454827424145063,21.74162653091983,0.25648707460750947,0.14743256241283956 -2002-10-30,0.0631970227669067,15.364812076567302,3.176494871515064,0.8792061643786502,6.996266044166132,107.95938216341017,0.0,0.00697572876761704,19.424910674532942,0.22702325667651638,0.09703382655631056 -2002-10-31,0.04219613080447974,15.312533946538535,3.338586396501791,0.6537457876747924,6.952256942229644,66.71811307553935,0.0,0.004049803758284044,17.050262599439197,0.1991155686237569,0.06378110294749023 -2002-11-01,0.8630655372252488,15.52786678377285,3.811873414783197,0.5183744773059791,6.967955778547502,90.37725485401732,0.0,0.07433946405596792,14.983632852736958,0.1846033043299625,0.05283778191227672 -2002-11-02,10.755310444167398,13.294877783215515,4.229476131143662,0.5503846765643788,5.929870582819913,808.0593389366766,0.0,1.1776914974837869,13.894624358225718,0.2871550466892405,0.21371584095377977 -2002-11-03,3.623711117209583,10.645020488366887,1.1886964080561575,0.3350097991252923,5.410446337716448,532.9461106374628,0.0,0.49779693036377504,21.985846543717205,0.2983340031025267,0.2149159043237414 -2002-11-04,0.3832009297840994,8.530756137301173,-0.04516515833330595,0.4511863502236077,4.791223359341008,207.6035262034069,0.0,0.05134014921832314,23.073016499451597,0.2732490477172068,0.1477174488240119 -2002-11-05,4.568420270000136e-5,10.112634162457018,-0.9164517627689376,0.5977618775725503,5.523857977994645,101.70711597142945,0.0,5.592210023151875e-6,21.413209081177612,0.2494499162457997,0.0961579679609257 -2002-11-06,0.027402465804305904,11.04058440630641,-1.7897178555578106,0.5397224052850941,5.96816912747051,64.94569788026742,0.0,0.002997647944786592,19.280798841097507,0.22492746906699193,0.06305075390134575 -2002-11-07,0.02117030399533034,11.78124562748734,-1.2961290606286768,0.3998088076960911,6.194276115892427,42.5837884511578,0.0,0.002055378569189213,17.24655121211105,0.20115726138524873,0.04135603915521886 -2002-11-08,0.009859212846296254,12.83687327339679,0.7896146449942993,0.6748388280283051,6.353717191598507,27.60793049132923,0.0,0.0008466899460768881,15.367087576076607,0.17913101630931869,0.027049758808487093 -2002-11-09,6.927187911725333e-5,13.169051303151068,0.026441033895189058,0.905567035456627,6.581399647087144,17.670794577216625,0.0,5.249948265388077e-6,13.651245230151329,0.15902856882280617,0.01760892102784099 -2002-11-10,0.0025644698679693945,13.595324563362553,0.20175814312015744,0.8871647738814386,6.729107045003628,11.578981032232186,0.0,0.000170930719151714,12.072814306004048,0.14066998488933746,0.011488606696954062 -2002-11-11,0.014237033666557604,13.988711760298425,1.2344016210355626,0.8819150422049075,6.75935750358364,8.033415339342552,0.0,0.0008337561725633227,10.654396436245957,0.12428235476978626,0.0076054946893966266 -2002-11-12,0.7374067723067971,14.50450840539942,3.7169146273888063,0.7198453774038104,6.586248077194506,30.802124114595564,0.0,0.03949794115512162,9.412547662746244,0.1182400952804288,0.010964964620994146 -2002-11-13,0.9140973961243032,14.604931823428768,5.8766408418071645,1.1879367961253031,6.176004452281404,40.27884080317004,0.0,0.04721984271584401,8.987104421192484,0.1153422957473773,0.01432759523818192 -2002-11-14,1.9498048165809412,14.148440488583601,1.6615110353301141,1.5143435922805724,6.774811226575764,80.70225807021556,0.0,0.10479836838003043,8.83801430523443,0.12567078689795277,0.025283690855324257 -2002-11-15,0.03845073879736066,11.89720708835463,-1.9706376934773135,1.0173931016267623,6.325401011624364,24.06969765889565,0.0,0.0020056452518279477,9.514386155881823,0.11128408032300291,0.01676388353195293 -2002-11-16,0.0189030627222872,11.313170435864045,-2.7020306216018284,0.4587252529179877,6.177938107495516,12.08532195987207,0.0,0.0008773352482508989,8.503332802961948,0.09927827629262907,0.011046087529028484 -2002-11-17,0.8519949505880797,9.209484336077782,-1.6407765641274843,0.7788223565242213,5.309966992774708,31.627972134589655,0.0,0.037269810705992334,7.610294300281556,0.09857993882788749,0.012865363075103307 -2002-11-18,0.5215410530473371,10.1378143246936,-0.4816268276479487,0.9288087785790664,5.5095852567616035,25.271320132958543,0.0,0.02254660930874841,7.6838226173558795,0.09558692981403273,0.011807801033860131 -2002-11-19,0.6228793439895652,11.195321370980551,0.5483915173325473,0.7809408590129416,5.773629511246453,26.273720481581147,0.0,0.02619578988519078,7.422774409392462,0.09372641744162265,0.011675019501841424 -2002-11-20,0.2267486465109941,11.48430166556125,-1.4010693306875586,0.8049506204337671,6.1314159818582405,15.147542745520365,0.0,0.009057179120735753,7.241958402859597,0.0870053790674553,0.008978978290900486 -2002-11-21,0.1083387607581092,9.965760640584222,-2.9150965590730062,0.7021084987383095,5.7257384615428055,9.076442388935689,0.0,0.003952312752485629,6.677750805600559,0.07905334768171102,0.006446690858727835 -2002-11-22,0.0038784588838889295,10.466799646277877,-1.5988611687278118,0.9097081512764754,5.780034035808831,4.5580465670399954,0.0,0.0001283223040089371,6.1160985483706325,0.07129358748180692,0.0042160317210278376 -2002-11-23,0.057600712949321065,11.301188011116507,-0.3258764116621876,0.959559762063618,5.945245545159507,3.8977687919019175,0.0,0.0017223474483947787,5.511106644962156,0.06487166940516784,0.003006691339827948 -2002-11-24,1.2981660347168766,11.73186767181336,0.15642314337873045,0.6307319595357089,6.050650681293207,27.92635300200233,0.0,0.039597735065382444,4.999694240480935,0.07336580708485962,0.00798655488125605 -2002-11-25,6.424940497981948,9.863151188859172,2.158870168456034,0.7136510107021596,4.952047678454908,210.63884448654852,0.0,0.3109597339710879,5.641704265949854,0.14056823956519837,0.052547085105784014 -2002-11-26,6.704273002317383,8.472120150303322,0.0828578721729488,0.7771111774364279,4.793063543154948,403.1594939117698,0.0,0.5369134846332697,11.020512047398324,0.20648174201311606,0.11595869244717566 -2002-11-27,2.2724898971573197,7.207064511298318,-1.8831619283468681,0.7456890360005534,4.625866802143397,252.9707868410911,0.0,0.22187872352233606,16.21079175900183,0.21531771379896242,0.10926797215306766 -2002-11-28,0.9673123482738556,9.098185934364821,-1.2136022393139274,0.8332061073285321,5.23702321737018,148.531170847377,0.0,0.09497139177214631,16.955465931266538,0.20878822905294958,0.08558911166859122 -2002-11-29,0.3757420453570002,10.92820194842098,0.9446316041854348,0.9225783678743188,5.627558972053799,85.0053952754702,0.0,0.034641382426341405,16.24976245196376,0.19367586804719797,0.06098915123297566 -2002-11-30,0.04568972100800135,11.697709329650216,2.143346362278636,1.1136695415542213,5.735437984819108,44.70418335145323,0.0,0.003820402974408846,14.965431143442526,0.17486939203874247,0.040282783753500216 -2002-12-01,0.80444013752851,12.854544956623073,1.8647837819652155,1.371201119864938,6.262520877214424,67.19993561028528,0.0,0.06210384548934389,13.49130578492009,0.16653575844020926,0.035678426856754514 -2002-12-02,0.20588665310621468,12.663007706910307,-1.0433311748047382,1.107583085093241,6.565115320711861,36.40154394481848,0.0,0.014612541787488054,12.719434436857236,0.1505712372391973,0.025449954353133422 -2002-12-03,0.0006363000612415904,12.040453758208885,-1.9038113585173944,0.8935539852654543,6.415865176475271,17.72020595392894,0.0,4.0086389267435284e-5,11.437599562092494,0.13324770143896789,0.016572827880989842 -2002-12-04,0.0014037059932277835,12.663544616484867,-0.9453906384485604,1.2260075551994292,6.5593920538688035,10.924920949142502,0.0,7.818163967207646e-5,10.15695756205741,0.1183380291914629,0.010800036337216561 -2002-12-05,0.08731127710995154,12.662678408713779,-0.29117600985749026,1.3295508715734408,6.489827684307985,9.857457653790556,0.0,0.004312538335370569,8.999250395858088,0.10585228976721203,0.007686963723689748 -2002-12-06,0.6795809473172602,12.75857997576226,0.2030561046217761,1.399175950837884,6.469693004279597,25.58708764978158,0.0,0.031124904152761146,8.06372026314819,0.1018535378464998,0.009743078556380212 -2002-12-07,0.4196573967811541,12.561640084198467,-1.257374978193046,1.171590613254465,6.5575615619807905,20.061560745832193,0.0,0.018208406173410463,7.763057694867521,0.09532308920991585,0.009114785044737913 -2002-12-08,0.26075838797839657,11.785147484223009,-1.6692683359146598,0.5845777882829757,6.308199981892764,13.961837895422716,0.0,0.01045825769739972,7.254298523056335,0.0875453235661691,0.007525720901510281 -2002-12-09,1.353170035259462,9.66309035673856,-0.6803219842674311,0.8682193015821584,5.395295467117776,40.99315281956626,0.0,0.05418593743247202,6.6961980698787995,0.09376968712409979,0.013149500050653047 -2002-12-10,2.94229900598981,9.066187453794127,-2.5474556675843933,1.1438188284722979,5.402340653545631,103.75634116381183,0.0,0.1408355465912563,7.297868085404069,0.11929101163177748,0.030003999011762563 -2002-12-11,1.8366514752540013,8.792121243849152,-3.968808122122217,0.4376209841725542,5.436225421199135,95.03385272351893,0.0,0.1026988521459753,9.277022391214041,0.12946677399344658,0.035168610558558584 -2002-12-12,0.7598053088146463,8.74427227837371,-1.9668085140584919,0.6085765064810043,5.222443234355454,57.93499676697804,0.0,0.04353468095150903,10.059204606616307,0.12603413852012774,0.02952191085336274 -2002-12-13,0.060374128383639834,9.019375838997473,-2.2789960025317506,0.7930829865545653,5.360166148845221,24.374458452980438,0.0,0.003261999856550367,9.833581429130213,0.11525788172808211,0.01971406410279293 -2002-12-14,0.03996982435668036,9.654087744193145,-2.0818362085516533,0.7702296632070057,5.571447752001656,14.531072087860196,0.0,0.001962647313213904,8.971523220095206,0.10497779108397981,0.013131771217158038 -2002-12-15,0.02310486277935972,10.375675038056773,-1.0317166674561202,0.8146730618307351,5.719446952963556,9.360974747762294,0.0,0.0010256350622552535,8.140460288294054,0.09510000537119302,0.008704333958862942 -2002-12-16,0.4206724862547399,9.51723150073461,-0.28663637384590074,0.9028522587577744,5.289848436124251,17.035138570004193,0.0,0.017296489549011695,7.355467293038097,0.09058676216734296,0.008299758355114513 -2002-12-17,0.13837935465615805,9.527497888204236,-1.8486596463760776,1.096231341476866,5.501985826232319,9.910703781638116,0.0,0.00535704733217271,7.064839407955584,0.08391262032424425,0.006218442195502553 -2002-12-18,0.02471586591269956,9.339506462558187,-2.8084428307069227,1.1333720702595835,5.535688525251638,5.007458384585658,0.0,0.0008742086843424868,6.519019337559041,0.07623008348454241,0.00418102478919891 -2002-12-19,0.04599880937034812,8.736743186038964,-3.416439173699529,1.211648741762436,5.378594748275822,3.7664307677780564,0.0,0.0014773705487463665,5.919480164716028,0.06949379002662309,0.002946602120564449 -2002-12-20,0.02869175302502917,8.867233356272129,-4.482302726093471,1.3091197791790834,5.509055751409056,2.55841793146288,0.0,0.000840235715501441,5.413359422617595,0.06339621065753,0.0020460377905154644 -2002-12-21,0.07047341549880436,8.609733678210537,-5.169591131578095,1.1489336861183692,5.465518732399474,2.6182139339094563,0.0,0.001883857613270798,4.926887913790532,0.05821587510632146,0.0016187195893404799 -2002-12-22,0.009635654191439622,8.732763575227104,-6.015781439393576,1.0119433337520558,5.550418116417464,1.320685334174513,0.0,0.00023498611497317634,4.528571514692308,0.052867040092119906,0.0010894904802498486 -2002-12-23,0.0007728026855632023,8.908443873667723,-5.990299513483835,0.9392840006899814,5.608532808242682,0.7426739346766321,0.0,1.7048927346631536e-5,4.106398488126593,0.04784576402447006,0.0007118030476391687 -2002-12-24,0.0195355020339866,8.516185260039006,-5.309383676761346,0.6962712218901984,5.443812822366363,0.7208183002770088,0.0,0.00039015409268197687,3.7127251581680363,0.04347830907985521,0.0005227570535529727 -2002-12-25,3.4618202139576257,8.470944176020105,-3.1970566989222187,0.7430056407509059,5.267908106160018,62.757900106299665,0.0,0.0955139382541379,3.384669819752027,0.07975697222113738,0.014883698380736143 -2002-12-26,0.08792284653384982,8.316950131768909,-5.004591958039383,0.8897372591598628,5.359131930921593,17.17809211695038,0.0,0.002981983328868981,6.224388723503537,0.07353415488284146,0.010142639126128778 -2002-12-27,0.08049124628453462,7.692793563212616,-4.506058211051596,0.9805741441217908,5.112147838198994,8.841798069710295,0.0,0.002508662032521189,5.729666377421604,0.06768440148349628,0.0069843622215098175 -2002-12-28,0.06887993381940008,7.160942303136898,-2.9513638744028143,1.0453931305971829,4.777490723615655,6.0273161392093995,0.0,0.001981573099938544,5.299223700348648,0.06253477187909458,0.004848215319047031 -2002-12-29,0.486993345031015,7.9582958442303315,-4.449616265111863,0.9528696432758409,5.1991404484654264,12.152750967007085,0.0,0.01357540589968631,4.9274226634113,0.06307427967510407,0.005223016401698892 -2002-12-30,0.0,8.524261079237139,-5.098563641021826,0.9632067117166236,5.436389576003694,4.197032600324997,0.0,8.881784197001252e-16,4.930698163220446,0.057439294368140104,0.003399938195735234 -2002-12-31,0.005268951515025721,9.962446893069288,-4.414617955498547,0.8444646387687883,5.888721539673591,2.357399564475919,0.0,0.00012676742498897095,4.470703533435602,0.052142048171704355,0.002232502181494092 -2003-01-01,2.3059299998356404,9.144836715718009,-2.643926650690811,0.9365750476011576,5.45597832539858,43.51935505257498,0.0,0.0643774751453221,4.024232250148784,0.07374210321514812,0.011255675619634016 -2003-01-02,0.4401801441942809,8.322126001503152,-3.940300188879249,0.7190022157945793,5.284468195641293,20.317505614878876,0.0,0.014168982227581395,5.73530005840396,0.07194016211894473,0.00948435267145923 -2003-01-03,0.0011706218845098702,8.57826741344619,-3.894227188801074,0.7284418059325495,5.369810551664793,7.307067432059128,0.0,3.548144732388168e-5,5.613598244841534,0.06540825478846629,0.0061792703990601406 -2003-01-04,1.5806864965953045,9.623834154947788,-1.6168667271604291,0.9093090578169332,5.518182543511153,36.957738598744186,0.0,0.05028875872096794,5.096435718437329,0.07778395183509025,0.011679621025624485 -2003-01-05,3.346006063756826,6.904035955850757,-3.1836685524385357,0.9464060630802932,4.71353581391163,102.25350433815447,0.0,0.1404180801285455,6.041927331063317,0.10936306622779952,0.02898361141468269 -2003-01-06,0.0005330875355229797,6.781629578762537,-5.65525657347894,0.5123436440714471,4.8882331522732985,27.252928587230876,0.0,2.5060850689128658e-5,8.61912144913067,0.10041313783439315,0.01887078468595855 -2003-01-07,0.0026206349791172675,7.600978613065598,-3.9235084107665767,0.9255146681590256,5.032140034644336,13.00200003022504,0.0,0.00011249938839399693,7.889237348889254,0.09193480088241723,0.01230112359749385 -2003-01-08,0.02001290621652627,9.467496158712343,-3.4753918892015334,1.2283158758777468,5.64677736302536,8.567342270035253,0.0,0.0007837473265653629,7.204853846767953,0.08416480475134497,0.008126790417779334 -2003-01-09,0.060750187286469005,9.70429836050433,-5.00724890171509,0.8118054364229033,5.832406309817089,6.746486667782116,0.0,0.002155327296231503,6.520546902516787,0.07666765402214136,0.005618339023916592 -2003-01-10,0.003321833415344821,8.888073463097225,-4.419416819802066,0.8659273821435574,5.515244841736264,3.8553961297321058,0.0,0.00010630446054400418,5.919803363050476,0.06900039720073554,0.003673461067169 -2003-01-11,0.5374539369542366,9.190046941260592,-3.6998960085092034,0.8828088219505118,5.565922896204091,13.079249855307276,0.0,0.016336618355375254,5.361083006841081,0.06871396070910962,0.0048787419844217505 -2003-01-12,0.1441601253852879,9.25965046243084,-4.375543305945186,1.0127618365049529,5.639578286076474,6.8709852478820155,0.0,0.004204384845168413,5.333729745693695,0.06381370718820277,0.0038160114342406675 -2003-01-13,0.4116290063848632,9.535895649615547,-4.003582523344338,1.0592940240378117,5.709110017005991,10.270185403269277,0.0,0.011433683826452934,4.947016747438452,0.062424593978270694,0.0042249913613694925 -2003-01-14,0.35214895860960865,9.292600649080754,-4.98329801587665,0.9299458260903604,5.687331728984556,9.645637001154828,0.0,0.009504261458149477,4.83309903075824,0.06040462745311845,0.004197435013309525 -2003-01-15,0.2276082311705566,8.977258320025008,-5.153591323883057,0.7123323022352394,5.588788976535069,7.172958006986691,0.0,0.005873246857972608,4.678872621364861,0.057157179099430674,0.00362662151270512 -2003-01-16,1.8916945104952176,9.268820335074393,-4.234835735426679,0.7117844938006131,5.630293301372089,38.63167877423121,0.0,0.054931749351614156,4.435960224490693,0.07371289236358831,0.01072493048863933 -2003-01-17,0.2442914371801581,11.06234131790648,-3.3232759725241166,0.6962945404788653,6.197187086434307,15.22868571442051,0.0,0.007703023327685576,5.714067486118566,0.069410846256883,0.008154324773311412 -2003-01-18,0.19830623780534531,12.018473333520195,-2.5526223604786717,0.6327872662881401,6.484476690382424,9.792452699425997,0.0,0.005801490128110071,5.323132003924252,0.06432101621387222,0.006191444750477521 -2003-01-19,0.005497609881602651,12.442459087120195,-2.8002714382986804,0.8778315512006916,6.657056457269955,4.512183746363968,0.0,0.0001453600475405225,4.906248154676765,0.05721851175892389,0.004052472749272002 -2003-01-20,0.0012812703416001756,12.756355293741189,-3.4506772843623232,0.9596664807411018,6.812113358182035,2.6950898275336628,0.0,2.9974552999560743e-5,4.350819797591111,0.05069903005330394,0.0026425333620594166 -2003-01-21,0.046015598902565215,12.153891287959278,-3.945843821176259,1.3326580052071444,6.622307379717841,2.34838681727466,0.0,0.0009551946949694981,3.844245003415046,0.045318901402667124,0.0018656075228515112 -2003-01-22,0.001325642033677232,11.041269505041928,-4.492241481883938,0.6468090782488815,6.257218404777058,1.2861208985891983,0.0,2.451591782591761e-5,3.44943971416349,0.04019907942621456,0.001218155724480752 -2003-01-23,0.3624547425480939,10.0749919128881,-3.2096131695300163,1.4324596990555531,5.828768396126761,4.9374305561374285,0.0,0.006335602587987654,3.08168448169727,0.04012188947641378,0.001757651211992307 -2003-01-24,0.07349964495431169,10.100295019777963,-3.030762317134814,1.5923100587986665,5.821560978504102,2.3187250279498,0.0,0.001234941201034595,3.1009724370046063,0.036980449896366674,0.0013321863708092693 -2003-01-25,5.163013738864355e-7,10.971298702421157,-2.8114224654142808,1.4822975883004978,6.115264754648591,0.9672054905204458,0.0,7.896505015609003e-9,2.8587792212810825,0.03330284788177401,0.0008671919169969484 -2003-01-26,0.00090612445448075,11.554764875995495,-4.3586158471539616,1.3514086463981358,6.42470749455315,0.5799568767684005,0.0,1.240225535354962e-5,2.5603860713491216,0.0298373194885435,0.0005663896065386544 -2003-01-27,0.1136013076856553,11.645005321476825,-3.977821872630084,0.945802156616192,6.434242620260444,1.2963231660436525,0.0,0.0014182086040036013,2.2806388940928297,0.027891276891337274,0.0005846362244309524 -2003-01-28,0.04266645221832117,11.5505893537271,-2.0973592556674614,1.2205540171245466,6.260456570926777,0.7832080129457574,0.0,0.0004903153609197644,2.1316101583856057,0.025328850020839788,0.0004552284612377028 -2003-01-29,0.8315159563443297,12.397795633393724,0.10754658482275027,1.6141807324604285,6.341665086456306,7.173285933678756,0.0,0.010473978605565426,1.942337460861231,0.032313513764322094,0.0018911503053212866 -2003-01-30,1.0104259441620913,10.411988679002953,-0.640719351044474,1.6624650163639887,5.670536014607651,12.365678689511109,0.0,0.016110961310398242,2.4736772258896997,0.0405874423801406,0.003684181828378295 -2003-01-31,0.029865134368916982,10.520848200649995,-2.1992569892847547,1.2667586290387194,5.887181007199912,3.7099904586785772,0.0,0.0005055982649749408,3.146335655088133,0.03700058816798149,0.0024752140186778764 -2003-02-01,0.003434737591983,12.372334666120686,-1.898193882424476,1.1917394725754211,6.539316826971119,1.7500298513161077,0.0,5.252691322167862e-5,2.8567773534673857,0.033319533829742454,0.001619245989608529 -2003-02-02,0.0,13.459315182122193,-1.836947838188079,1.2899046217012315,6.9368563748383885,1.06417634545597,0.0,0.0,2.5409839074789256,0.02960074168301174,0.0010540530346736408 -2003-02-03,0.011628545229742606,13.455010483626449,-1.21322839965483,1.1321828006913524,6.879895864015546,0.7779031093241853,0.0,0.00013946421712501995,2.240394012113668,0.026234537648204558,0.0007073744724155763 -2003-02-04,0.04082065036675632,12.350717720804315,-1.1916373286937811,1.0328847741443297,6.458891187667522,0.7543306701297082,0.0,0.00043740414602334854,1.98798690407168,0.023634234033012277,0.0005270687778627339 -2003-02-05,3.0429681101382595,9.178979179603237,-0.5298771731810518,0.8105546146115642,5.173553695188937,35.83371555750739,0.0,0.054289228274716717,1.8056099895282605,0.056482651242184996,0.00860943401143605 -2003-02-06,4.935742832753463,6.863262465752933,-2.5692151642789187,1.0239936846513376,4.595928090442244,129.26167859106278,0.0,0.1844714438020949,4.418179307371674,0.10896685814415964,0.033692839378504987 -2003-02-07,0.11040413259088656,9.630723740926307,-4.242361896187824,1.2164364676260333,5.724629337463464,36.282710475260025,0.0,0.005216757012817555,8.607038639983474,0.10155230455726587,0.0227267831933176 -2003-02-08,0.026306518905016268,10.68413875610301,-2.255158619469304,1.5915272344680114,5.936611248305133,16.673360223558177,0.0,0.0011256248151086216,7.852427516501807,0.09178191577081617,0.014965460706781482 -2003-02-09,0.0638188142618761,11.41979948354157,-2.403271328603213,1.2745624367573716,6.215605000532339,11.49093269872027,0.0,0.002459179664350969,7.069914270241058,0.08310315923229722,0.010116257976352898 -2003-02-10,0.011051929679501388,11.7529568132886,-2.9207203943940545,1.179814057608136,6.37514658368444,6.986586318018532,0.0,0.0003812959395722293,6.368583780034252,0.07431843551591652,0.0066432664180931895 -2003-02-11,0.020771430961001182,11.455183890292098,-2.5502172677993715,0.9535841862509068,6.236090440436227,4.775063766884142,0.0,0.0006382006062761528,5.679233817415275,0.06640120090976873,0.004421629674978859 -2003-02-12,3.5873346148922507,10.993083085936547,-2.4444479797873835,1.084816271741845,6.0570802615535575,90.41485714878132,0.0,0.13394055320979215,5.088923649838704,0.1010725329324136,0.023272701006351232 -2003-02-13,3.408525209997656,10.655961374598824,-1.4638180870761557,1.2487710184076557,5.833943934113961,138.30607225161575,0.0,0.17663153310947122,7.765568348367136,0.13017062248581163,0.042044194798182985 -2003-02-14,2.8054894024044,10.613999381520653,-1.7130359207001045,1.3371323153934185,5.842990312304487,153.70947885281564,0.0,0.17680181710000387,10.036394171371061,0.14959924668227825,0.05428948324958887 -2003-02-15,0.1348784623493728,10.664379402699767,-3.409807366373467,1.424062068837754,6.009873533296342,52.05298454059351,0.0,0.008617524649431746,11.526011671041598,0.1358414729099772,0.036652047422699924 -2003-02-16,0.08972330059997902,12.265903678927277,-3.0213943379334536,1.088552635454134,6.551609427826155,28.575347581789377,0.0,0.0051622450541969345,10.43624713273697,0.12262042700985125,0.024644788296315626 -2003-02-17,0.017198493630632337,13.529404179744695,-3.04585440579934,1.0378430469291977,7.00749983073309,17.007895367953672,0.0,0.0008776791290031928,9.325109651221446,0.10883156296461377,0.0161762384890293 -2003-02-18,0.007884143214316517,14.27736016215375,-2.9231040952353853,1.0822870070899828,7.2701370747515055,10.839881361018186,0.0,0.0003525499290696326,8.20628131980956,0.09568946473719567,0.010583651908003058 -2003-02-19,0.0038466748951750014,15.276098349877456,-1.9434666145255908,1.2637930103616004,7.577303586381993,7.013598146311667,0.0,0.00014996340190655613,7.181123121731602,0.0837000322293283,0.00691229410379143 -2003-02-20,0.1740245816663002,14.536667768474054,0.5668364656179073,1.7243130013261736,7.068757118863292,8.406355143056064,0.0,0.005964217741863287,6.24582106460549,0.07478685404530644,0.005407718843199527 -2003-02-21,0.2646313253743487,13.043526359407695,-1.012080330858048,1.588977807347663,6.657782604848827,9.255561270301072,0.0,0.008248983011583555,5.6384340958644295,0.06876671440448986,0.004776200328309581 -2003-02-22,0.024461819391111483,12.62189627128421,-2.9983010337080467,1.4245493502893445,6.6606721998617475,4.0657122996300386,0.0,0.0006910726064410892,5.227145975514412,0.061177674246557026,0.003214307945729074 -2003-02-23,0.03139351287306183,13.635860983012435,-3.4957294225101627,1.133106081982135,7.051830006994127,2.6861572809358036,0.0,0.0007884632621238119,4.651025269855866,0.05454700772849772,0.0022124185796724917 -2003-02-24,0.03983963650650026,14.274774194382838,-2.32102460631603,1.283600586905989,7.2124457188061895,2.0698075260913162,0.0,0.0008853051047911439,4.116350237358396,0.048416797320013846,0.0015749812923421043 -2003-02-25,0.0795902103542457,13.559762595166939,-1.0758356472624506,1.3488320540645395,6.845329106145587,2.107618147390798,0.0,0.0015723773452492457,3.642985250406366,0.04336548306550311,0.0012646564764399373 -2003-02-26,0.049253268067222016,13.717568869231371,-1.4886836164428188,1.4242031243134263,6.9371066343509975,1.489482963946456,0.0,0.0008738489646980471,3.2867492713449318,0.03886217033187935,0.0009562883413880084 -2003-02-27,0.06547424078512132,14.083027444581651,-1.8953678940636312,1.3379892124881017,7.101411288792768,1.3611132117339457,0.0,0.0010418989850858873,2.9405823089949172,0.03501852300310267,0.0007811432769466204 -2003-02-28,0.00953338912691786,14.792810442411318,-2.4111738862370142,1.3680993417815577,7.394941502889549,0.6614083847758705,0.0,0.00013488080429029624,2.6416096679856325,0.030884021172790335,0.0005290251545799254 -2003-03-01,0.0004004135454732371,15.483242441089047,-1.6138550703572223,1.6652804951653293,7.596671342242229,0.36037273058868013,0.0,4.954622585844309e-6,2.316740549867595,0.02699312297855789,0.000345124925931659 -2003-03-02,0.0,15.576727789720387,-0.4614320514742151,1.982385098271635,7.5391078920911685,0.2258672432401036,0.0,0.0,2.0171425760877106,0.023498344935139026,0.00022466010590999123 -2003-03-03,0.10740045651858617,16.50117361880559,0.06010403301433472,2.228664543051857,7.846804646599009,0.8241011744402765,0.0,0.0010375434203257622,1.758147677595236,0.021732372350959407,0.00030422448309883906 -2003-03-04,0.21572347092946773,17.506886033211778,1.8817423936357327,2.781621376363116,8.060057793746722,1.5533813803535235,0.0,0.001982636343713401,1.6163379488896759,0.021342274807747075,0.0004999215123870086 -2003-03-05,0.006117569617737861,16.336799282466234,0.9604904015263156,2.266740431006105,7.687485095061064,0.4787834891316388,0.0,5.1620925567052306e-5,1.5806977457339437,0.018485323779549166,0.00033328545675656953 -2003-03-06,0.008531078146629248,15.973144739254373,-0.7032277695739507,1.5376502804898602,7.694956344330355,0.2701751079347649,0.0,6.284568337001917e-5,1.3792777272578667,0.016167032712515635,0.00022652235163248438 -2003-03-07,0.05569319274545798,15.263852901074465,0.1371885991841564,1.5230316742972847,7.343659270985811,0.3908595301013384,0.0,0.00036576913026026975,1.2062079087020037,0.014700293230315985,0.00020314915788221188 -2003-03-08,0.2671917318306175,13.857298305490833,0.3942547289103778,1.7035746558057332,6.7682729516368445,1.3037683938763822,0.0,0.0017603938537583685,1.10435767950106,0.015977621782971692,0.0004002865239695378 -2003-03-09,0.030012236369420738,12.756441981371609,-0.5315007600321723,1.4118015109799464,6.447252857209876,0.4925271693476036,0.0,0.00019624767227532577,1.2136864880421787,0.014488247865105495,0.00029044932087103636 -2003-03-10,0.4842401670815514,12.561958118719437,0.13183973916776862,1.3807459464265328,6.293358468826337,2.48126822583323,0.0,0.0034792477046247106,1.1073799280510188,0.018541296210039273,0.0007188357180633593 -2003-03-11,0.7561069290464593,13.398517412566983,1.1665098801584648,1.5365187511465077,6.481325364784705,5.409727885286598,0.0,0.007253867612703191,1.421185755654106,0.02536398524147957,0.0015724367712225663 -2003-03-12,0.6372543852923462,14.729564913212831,1.3807373644586074,1.399194266716699,6.975436154422745,6.47360238872432,0.0,0.007674876135754127,1.9368412074630654,0.0299864703921443,0.002192195704693136 -2003-03-13,19.71276699629377,13.083473438502176,1.989137305239777,1.4820849254407416,6.228077121442322,872.8592468902172,0.0,1.3332553861758747,2.267871922153914,0.2560595573775474,0.20443484484433547 -2003-03-14,3.5589920376366067,13.407622297478529,0.8847457519779233,1.8099547545902888,6.511365548051913,493.3201733539711,0.0,0.4330296814355066,19.51013089573977,0.26873965899375923,0.19901264161971877 -2003-03-15,0.2743159149040825,13.822808189139854,1.3673991284102365,1.8020875533395213,6.6069253064441815,181.54404553083748,0.0,0.03200927761511324,20.34920146158208,0.2402500105017033,0.13442176148415824 -2003-03-16,0.08914718784461588,15.766774060727766,1.550439409073146,1.7805344574260844,7.349950507581254,97.67291329702597,0.0,0.009172156673460316,18.177001429860532,0.21278826095071462,0.08889884525545942 -2003-03-17,0.026808989995316317,16.403692845056046,2.517616812864543,1.4448068556584346,7.4800014296332344,60.24870284369075,0.0,0.0023843237672003074,15.875872490807827,0.18525546942464163,0.058232018532295315 -2003-03-18,0.7345046741316238,16.40769953064915,2.477556019274789,1.4140685069658492,7.482613074264937,75.914112536995,0.0,0.05788079255832124,13.800360932529781,0.16932134082145672,0.046719512888608754 -2003-03-19,0.4233544340984444,15.107548110236996,0.6938452132292406,1.058311167612959,7.176438832769515,53.42756526238265,0.0,0.030071033426671057,12.620446947792473,0.15195145240134383,0.034990966146252515 -2003-03-20,0.3284834094133277,15.357507253100954,0.6730382298979268,1.1276482391697409,7.271616785263948,38.45899231428655,0.0,0.020937396889089743,11.40278146332559,0.13666129096325827,0.02596550236635156 -2003-03-21,1.24516311830686,13.949886307591328,1.302317212057843,1.1013127414046588,6.642879659610391,66.84462571340472,0.0,0.07436106978002055,10.241436077904543,0.13381110152747558,0.028224893057847037 -2003-03-22,0.4907607226549262,13.621048517116106,0.5190379121296685,0.9700697192142778,6.6094556931137465,41.08634099243658,0.0,0.028009056961352252,10.154376100327095,0.12400863474575961,0.02263787150552735 -2003-03-23,0.2784686005284741,13.844203737031734,-0.1396963729822833,0.986181019176376,6.7645253766202025,26.21481520116803,0.0,0.014565042729160704,9.419590474423813,0.11297582037387671,0.016953933292261143 -2003-03-24,0.2143395313659787,15.223851779700597,0.2300781421985036,0.826240047311571,7.2488130455876725,18.646849968140124,0.0,0.01013190940090522,8.558426774406055,0.10219678625207544,0.012578946621457603 -2003-03-25,0.4946419375097762,15.961794282347636,2.8498233234039274,1.1597058808178498,7.220262377541772,22.772136726486064,0.0,0.0213112796784794,7.671067723176539,0.09512498745584984,0.011433260198611727 -2003-03-26,0.4188866646661708,15.676301144761126,2.578521325361301,1.041989083666519,7.138309771842041,19.658893973985936,0.0,0.016732027354023404,7.145915929092381,0.08812482708046482,0.009990213369777979 -2003-03-27,0.3574684974694259,16.899052739764105,2.235518089094743,0.9471859147197326,7.671798093822174,16.193521754618434,0.0,0.013197524403346761,6.632222424308833,0.08142516558671534,0.00851267741862711 -2003-03-28,1.645731266718255,16.694333437764413,2.2774501550009707,0.8262042262563992,7.579904964886194,46.5433766134007,0.0,0.061469800526665175,6.0651687495078805,0.08982676311016108,0.014901038115556261 -2003-03-29,0.2879979901377357,15.415192190933304,3.0408597358894345,1.1018040664230648,6.951982431960451,20.31101286160838,0.0,0.010687526306620898,6.701287438324649,0.08142044186419901,0.011327209229414225 -2003-03-30,0.279817310202508,15.322878627546554,3.6834504305645095,1.64735031840929,6.806997491332586,14.495312593067425,0.0,0.00952570564134747,6.151349311831673,0.07491873574599561,0.008823910234849587 -2003-03-31,0.6846773540743226,16.872794098794273,4.891371208521838,1.463111874932662,7.250782453947807,20.917937028328925,0.0,0.022281897412711804,5.677280090010007,0.0741124956936453,0.009136698886428332 -2003-04-01,0.6519964427890648,17.08765575803017,5.345953538217254,1.702719851441795,7.257353523195281,20.85218014258774,0.0,0.020766100455944292,5.567814813986316,0.07245658887763878,0.009109507118291177 -2003-04-02,0.3965001046297978,17.614108669249298,4.6623119236626565,1.7294119656190294,7.597016039724402,15.126341950745305,0.0,0.012076996802869111,5.442992995029467,0.06802613991138669,0.007768762161588959 -2003-04-03,0.029912225445212243,17.794739691719357,3.901088026264332,1.573830231066942,7.784861383370193,6.393324007377952,0.0,0.0008208484871401744,5.076853738105287,0.05949036500299387,0.005182085343778648 -2003-04-04,0.042907793873693686,19.590911672343726,4.025543279143793,1.5283437027016007,8.511092127986341,4.151527318407198,0.0,0.001025947745673536,4.424617058113219,0.052043638968696085,0.003529509701198655 -2003-04-05,0.05764625996831529,20.313818548152668,5.0074019617219525,1.822508226024128,8.677853471607051,3.141721696939124,0.0,0.0011896673660655097,3.81622522358664,0.045127979268340467,0.0024786893597378043 -2003-04-06,0.2690245775952864,19.925700362302546,6.566190656985164,1.9814079316485165,8.258120353659246,4.9217655975270205,0.0,0.0049509200647428475,3.2988944562538767,0.04156384043047933,0.0023673609936479428 -2003-04-07,0.07139142025327948,20.275717998424692,6.8937891035954735,1.6826392901177345,8.350330513482154,2.6079105827576172,0.0,0.0011849503033065506,3.0642998165737265,0.03652867931426269,0.001721466929622222 -2003-04-08,0.4528032775525518,19.946020364583138,5.346462130780177,1.500205547991679,8.45617858108305,5.825770721717249,0.0,0.007062997209598243,2.6886090901117936,0.03659532661397692,0.0021960397277155145 -2003-04-09,1.1876057705048693,20.188485647562747,5.397239967851719,1.7395455495438985,8.547491714607908,15.486957353167556,0.0,0.020881694905141135,2.687837862541893,0.045146293745207906,0.0046090651794946464 -2003-04-10,2.5989603582318304,19.55253742525032,6.050250994564724,2.135046342520031,8.164080906270593,46.35992736964389,0.0,0.06447187890572614,3.3088586260332558,0.0688220901944748,0.0128170808000018 -2003-04-11,2.8147111895947194,19.957420291559675,6.350783645444367,2.158636245076304,8.285199760252405,76.77579584568251,0.0,0.09888599491008954,5.078656157624339,0.0919523839432615,0.02340017074707917 -2003-04-12,1.877865324795127,18.901019478948946,5.8760590087551705,1.969978401281732,7.901097735615101,72.64195967678609,0.0,0.07865168693188562,6.763475058752702,0.10066576326418486,0.027208292590130235 -2003-04-13,1.4551780873075861,17.973688386756102,4.2456496314265255,1.7347206233004435,7.7634204980803405,65.12079185618173,0.0,0.0648846954852873,7.459244994100978,0.10384699175354418,0.027590973103336355 -2003-04-14,0.05489545537625558,19.720303255982436,3.9909499433446687,1.3777451575404849,8.519573146402342,23.615179898848822,0.0,0.0023112570378294867,7.7152857824876975,0.09051734919501961,0.01831234974230673 -2003-04-15,1.0226290540026022,20.434602379155773,5.347242096763004,1.6774994451300371,8.630231309388762,38.24757578661164,0.0,0.03961440391020021,6.626923739020149,0.08911210950622891,0.017952357213194003 -2003-04-16,3.3132578052778205,19.909063222750497,7.073644760837097,2.0113367922183047,8.111233311994766,110.30654086140373,0.0,0.1474042945620786,6.509823369597896,0.1144322431688455,0.03413062220771349 -2003-04-17,7.370028610179466,19.499962339914013,6.585717687737335,1.5595014654322057,8.014920180453288,353.7083022469168,0.0,0.49408445583754457,8.43941580718192,0.18416932077879666,0.0974490883350339 -2003-04-18,1.5957702233282185,18.226650392071708,5.280985812220696,1.228702747464232,7.684934149745837,176.14583688978058,0.0,0.12764278882590796,13.571670117837806,0.1766904080777106,0.08287027664036702 -2003-04-19,0.2590809918855876,21.19312492887992,6.0665828508555375,1.6826281290586491,8.82941470751942,76.02627308509025,0.0,0.019018015275665767,13.112227304050707,0.15576668615135844,0.05684042896512319 -2003-04-20,0.24579388208509625,22.089072235627466,8.57357188824359,2.0328407585626254,8.79288248745633,48.923271861649475,0.0,0.015466688499503417,11.302132310753013,0.13452551950548752,0.03935547956663376 -2003-04-21,1.4009776544723316,20.880924499260185,8.480749905738543,1.9734597135613103,8.252313336365951,79.28647937615051,0.0,0.0805822093282842,9.777111874221163,0.13021717283393652,0.03788839928623801 -2003-04-22,0.26422833974716625,18.295326766725346,7.390635685204733,1.5065644848636914,7.296791872844452,38.58302451161305,0.0,0.014035049428325841,9.57045797489331,0.11456743518771692,0.02680061079315564 -2003-04-23,0.7288141952714998,18.094150584206982,5.2132728143290485,1.9119251125886327,7.618478833518428,41.89908801591359,0.0,0.03562706099347468,8.587932596271408,0.1085337905095636,0.02287068434569648 -2003-04-24,0.280293143298302,21.39713758890184,5.492842489504656,1.6011356599590587,8.975445149127994,25.243897729395947,0.0,0.012557911653912956,8.085492006115823,0.09745573140172951,0.016799868151835266 -2003-04-25,0.6610887658158185,22.8530738253523,8.097866666914864,1.655486332315666,9.20194968039192,29.181648145209305,0.0,0.02656318631488952,7.06729736379412,0.09003046448890273,0.014980562102387974 -2003-04-26,0.4212090841457413,22.746792151076104,8.76251737898791,1.5251407633223195,9.02863566941563,21.365628608329487,0.0,0.015318033950717624,6.500653873810252,0.08063501574354708,0.012084038801637645 -2003-04-27,6.660883751527175,20.713541743018943,8.884159286570059,1.5033844215006933,8.06307927833605,227.37137197867523,0.0,0.3344699928262056,5.845072551707709,0.14568592148164106,0.05879413877948696 -2003-04-28,0.1705800650514764,19.898561953243878,8.906784185819884,0.7031709710054506,7.67385585797617,64.37880417627989,0.0,0.010150803443359308,10.741967025260214,0.12712378326099133,0.03981783080106544 -2003-04-29,1.331482399491096,18.718424803651825,9.031540835465057,0.1440280493143672,7.082201746952678,76.26885333220832,0.0,0.07387407285652126,9.453686687784591,0.1256399157902573,0.03716795533349355 -2003-04-30,0.9969885456291391,18.076510634589244,8.635528943648497,0.8705340807351829,6.873604767981386,64.14062531664582,0.0,0.05437302323384585,9.454523778362079,0.12175304046149046,0.03247368805789801 -2003-05-01,6.2539357702201155,15.813295931196713,8.890095350014981,1.5428234638013103,5.693449293453708,303.2003198032218,0.0,0.42643278720430544,9.201021584261094,0.18003978656671404,0.08606953612475153 -2003-05-02,2.4614949032702915,17.84662529642525,8.122086983959575,1.5898651024533903,6.885781607581012,216.84104554571093,0.0,0.20790679237296228,13.899484771352553,0.19059433300780673,0.08768410325534033 -2003-05-03,0.7573921931940949,18.455201586243557,8.946623810747026,2.0565135939568777,6.9638631976280205,111.7253224541119,0.0,0.06224662448935103,14.366061128965864,0.17617798909576746,0.06655619820243397 -2003-05-04,2.136124929141705,20.50034883973724,10.240814558010932,2.2238658960994298,7.6132334394985195,159.31950704448687,0.0,0.17042369708118033,13.265596095078745,0.179419619372596,0.06927448240597518 -2003-05-05,2.1351309990075724,20.10923313190312,9.586709316880938,1.942219716610969,7.584966380828948,167.14665611778454,0.0,0.1711771956641397,13.332681860922285,0.1801895444990134,0.07115868895366992 -2003-05-06,0.4599073930694947,20.554948840911575,8.288193189578969,1.753751809354858,8.078611829631011,79.76094157126177,0.0,0.034790693366158476,13.397155536444464,0.16142539866328634,0.05161835907175878 -2003-05-07,0.3979895853942249,20.4093364062988,7.373233899957756,1.2733571885574242,8.187080075355352,53.78894692348264,0.0,0.026564595274236047,11.891296579930918,0.1431618611112422,0.037645977757059745 -2003-05-08,1.2409791270607702,20.074956448908935,6.267526610475887,0.98198118444501,8.230438801625878,75.9963528906098,0.0,0.0761449259529492,10.530401459153417,0.13712861185754494,0.03609995200975139 -2003-05-09,1.3957985298788345,18.32893119925569,6.163653609705903,0.8367379391698953,7.491263553351162,82.05438767295581,0.0,0.08267344914102037,10.080156012209446,0.13368709851585628,0.03608762601148025 -2003-05-10,4.147915694695255,18.31347048974262,7.1927445748150936,1.019222202900719,7.279859291089292,208.9452521085111,0.0,0.2760179185031362,9.975794432707563,0.16453165793630872,0.06551915406742023 -2003-05-11,3.033448798085277,17.18922644060508,6.148607301591263,1.1055164167366551,6.992982678292948,211.3592818742296,0.0,0.23315304490613453,12.315731450907471,0.17880755492356004,0.07815088531024171 -2003-05-12,1.2924256028332792,18.484025923534414,7.750399467059318,1.291531477873148,7.230667831188006,131.85883834280963,0.0,0.10134332669699408,13.454478510868825,0.17179144582892625,0.06630357186068518 -2003-05-13,1.234085054332607,18.347074677756304,8.939801112603607,1.0667780896757089,6.881336789100119,110.48457546647012,0.0,0.09234028930980887,12.868409356205724,0.16428450920282905,0.05722068218639632 -2003-05-14,6.153554599009446,19.291923943224113,10.451678004963119,1.3301774812904263,6.928274050931212,391.01777620919887,0.0,0.5325477949522153,12.39563823090401,0.21608553433595318,0.11833624374014676 -2003-05-15,2.8544908783156733,19.86178469565811,11.598063658977326,1.2815465921410922,6.871507174327633,294.2272975035634,0.0,0.28451718148348926,16.2580583134387,0.22264825442766728,0.12035327687050477 -2003-05-16,5.141803545502093,19.218654898439105,11.263934098455513,1.3029931587717858,6.640730804114416,465.76895432930394,0.0,0.564115538666675,16.766815552374037,0.2552205752421152,0.1642392509723577 -2003-05-17,1.7521179590109364,18.57551528966821,11.010098664752109,1.235231875946469,6.385608295796801,272.3386885763609,0.0,0.20096288001291085,19.285177789566884,0.245070248312046,0.1375116004066183 -2003-05-18,1.5018269263384851,18.273595718018427,10.527980179657897,0.9815521996002732,6.380861623632588,211.57726500238098,0.0,0.16500772191371804,18.621275335518018,0.23442051331408675,0.11463845210857734 -2003-05-19,3.0889418032294103,18.19124151300096,10.91431023459486,1.2472996384752952,6.2114702054965365,306.9125829417217,0.0,0.33930286883072114,17.820804929056514,0.24358438865269672,0.12628811855172573 -2003-05-20,3.1411147616976858,17.316261354369107,10.248987758271188,1.0256819439561364,5.973238899490876,337.8691884630985,0.0,0.3600073061106168,18.574341298876668,0.25297035667400597,0.13702406031047473 -2003-05-21,0.95696167197446,18.847975245174105,10.31186076962258,0.9738890118563128,6.727779476303714,182.17046528995613,0.0,0.10795777292637454,19.375943961625214,0.23686458050904835,0.10563438889899245 -2003-05-22,0.3242720413722363,19.326835351056,9.038086219718323,1.3787253741157643,7.29276884647886,98.30165496521386,0.0,0.03301162991702389,17.879468975795007,0.2120612546689582,0.07378953068636927 -2003-05-23,3.535936745120442,20.328888040589884,9.989707696336037,1.139418918998233,7.5310746321421,279.72632062694663,0.0,0.35083693914251857,15.840481066286399,0.22572214514598166,0.10145362320077551 -2003-05-24,6.389675402360151,21.15630742926203,11.349519444921846,1.4269247621972871,7.57519090492501,560.6330788729466,0.0,0.725687794995812,16.769798969627573,0.26979219206457133,0.1765382276194416 -2003-05-25,1.8595355971139629,21.09362848634901,11.197498627951061,1.5502356622132132,7.582893386007677,303.5639813857907,0.0,0.22192654128893885,19.986727900224206,0.2544941747251421,0.1487096832734277 -2003-05-26,0.4349530614039363,21.997078839954046,11.43224808207848,1.7970441207198111,7.963442686247415,143.73829893749294,0.0,0.04701625111905905,18.86357544207248,0.22481478745783143,0.10396193325090904 -2003-05-27,0.3512555441629093,20.64520699193441,10.761597204712222,1.4075972464738118,7.474166827284712,93.1654781905265,0.0,0.032997890953682996,16.55537101004385,0.19695074962467934,0.07269874870475068 -2003-05-28,0.12331687904770774,23.17790999653705,11.539287720612464,1.6465598940622652,8.50848102801845,56.13681072916405,0.0,0.010122738329415598,14.666550925930006,0.17229194373584128,0.04886480501754712 -2003-05-29,2.531492406715404,23.695555791045823,12.342456995755153,1.0043166723339143,8.558497800403588,159.73783580315998,0.0,0.1946815965232278,12.574989686845987,0.17598028577607663,0.061451840485484716 -2003-05-30,2.4948692750206547,22.160575244723358,12.751413385461767,0.630884148773322,7.66647794349166,178.92791774163516,0.0,0.19529695538340164,12.828917632382115,0.17851173969125533,0.0697391064614861 -2003-05-31,9.156094354070516,22.696603818315648,12.357881220194043,0.4003421965114157,8.049981166724171,659.8672564421672,0.0,0.9219519841164452,13.251390776793174,0.2610320266776911,0.185777689971643 -2003-06-01,2.961641853227236,21.389515390422012,12.190503365523,0.6086207756479212,7.432600620413112,402.9163794012718,0.0,0.34838034584788735,19.155767547540226,0.2576528408710369,0.17397859883210876 -2003-06-02,7.530050668799351,22.38608158530221,13.093052492110045,0.6820322155116577,7.673293161358635,786.6314197348327,0.0,0.9934692307554585,19.15427522649966,0.3108543251640401,0.26452225756026304 -2003-06-03,10.668210032693153,20.56095611493875,12.36467602516798,0.8298849752715013,6.945405757628094,1392.0670373217856,0.0,1.7763802711493355,22.935891554937108,0.39146502567662483,0.44267169553634567 -2003-06-04,13.403757365726305,19.646326843596448,12.630509930211128,0.7593878264531099,6.36320281697788,2314.165378579085,0.0,2.936708498193928,29.206798261389245,0.4963841157653262,0.7353157205111656 -2003-06-05,9.957217220875751,19.39345883149931,12.911792466129716,0.9853908164731048,6.11708272610895,2385.61221979708,0.0,2.6458098815444266,37.26785691299322,0.5501401312630426,0.8815196147257198 -2003-06-06,6.9823071361362805,18.67869835403469,12.602906180419366,1.0782854481753668,5.831659692132316,2045.2932065058542,0.0,1.996676359472377,41.37475376490056,0.5633270104813248,0.8778513100147108 -2003-06-07,0.8926937121022087,19.129521108638876,12.489057992518955,0.9625635947591938,6.125798678487747,858.2737747805685,0.0,0.24233778204200096,42.597292092170726,0.5066288817497392,0.6083394511339105 -2003-06-08,3.0985075249189333,20.582093330769577,12.33177098099953,1.1421125697637928,6.95796318191799,918.8955618721446,0.0,0.7640059115783271,38.21021141558359,0.4812186000135427,0.5123315772859434 -2003-06-09,0.2817748249671297,21.000361922218445,12.01287964326563,1.4434164649310082,7.270981042697587,419.65016354528063,0.0,0.061427894901868285,35.696323248411396,0.41912047698593025,0.34285708169044626 -2003-06-10,0.03658283008535597,20.91552375619281,11.985950160036815,1.1672943137513965,7.234075706870129,234.68343321126218,0.0,0.006752723831757582,31.002728535807595,0.36158695655493356,0.22421204785773233 -2003-06-11,1.7143813417839768,20.610637791994247,12.426068868194706,1.275858306018957,6.937895208403602,328.9044847147716,0.0,0.2786980074507499,26.856285808135333,0.33282892328710467,0.18838739397622256 -2003-06-12,0.23223537474490816,20.43688842710366,12.573110351807141,1.2093329123240912,6.796510200768587,160.8792743337638,0.0,0.03371224692776839,24.911212102670444,0.2929041351299931,0.1277645268903753 -2003-06-13,2.7484085405936276,20.579653660421805,13.213891492464569,1.1206633219394404,6.651572760590591,328.5024921129182,0.0,0.3706483013909412,22.027710785988482,0.2886250109396706,0.13960538147657453 -2003-06-14,7.214623659003623,21.40366436773732,13.037104341061225,1.0606301152949342,7.153823950077423,808.0586335829862,0.0,1.0645996488080467,21.774626703874326,0.33770513423954907,0.25297756554768364 -2003-06-15,5.400031565919559,21.633071214064746,12.695641742630588,1.0479127613341903,7.380693443331884,805.0973820980076,0.0,0.8832730890571128,25.156124395672848,0.3559585233037993,0.29916788146042944 -2003-06-16,6.045884609768178,21.45550260830842,13.19343819018934,0.3047970726824049,7.127624826071209,936.9327246923425,0.0,1.0502601919835666,26.364210215368903,0.3775556555148136,0.3546618594640757 -2003-06-17,2.537653847344824,19.453907385368634,12.329063507214846,0.2739597513943803,6.347870553283139,583.4812736453987,0.0,0.440000691102838,28.08148209498593,0.3566921974272559,0.2978648066707351 -2003-06-18,2.1793106008904344,20.772897237632492,13.04398141649474,0.8061701033248937,6.810015635372144,459.3209848665338,0.0,0.35963293090814386,26.997169245341176,0.3398862309225636,0.248655416016458 -2003-06-19,12.021339225829973,20.853498592011398,13.982328900379805,1.1447156876274542,6.514337591269218,1663.8261850770218,0.0,2.263772360315137,25.49875573544334,0.4370836964381417,0.5065557731591032 -2003-06-20,6.4625712129437405,20.88153662640294,13.834622355976911,1.3950635651673406,6.5850271806762475,1390.389435030764,0.0,1.4199589124629783,32.82784985640194,0.45770679667325265,0.5459537214109477 -2003-06-21,2.516793246838167,21.4711703972648,14.163988635995102,1.0121188248344994,6.792318034943498,802.9812755950636,0.0,0.5434167104161118,34.282225623877274,0.4286836483199399,0.4381334347662874 -2003-06-22,9.672008321764249,22.89783121288404,14.381930967330439,1.3415511284360806,7.501026638695653,1749.2137206702237,0.0,2.18211964515897,32.02072935935182,0.4856921582713811,0.6174642257757874 -2003-06-23,14.923830849385354,21.677072447778887,14.721874247628273,1.4566620381204551,6.696275384359653,3187.255286504751,0.0,4.065610543387894,35.58667105428949,0.5884131397799308,1.0209894558843244 -2003-06-24,5.3122624045533495,21.708913140199233,14.853315962818865,1.7858634188122764,6.6625893109306125,1939.3774419583774,0.0,1.575204804246388,43.539735389539864,0.5690926900976472,0.9044643509240653 -2003-06-25,1.0658810380599506,21.405357747132932,14.727213839437445,1.6952333844697645,6.536073488322512,886.3818941986215,0.0,0.2869010950182529,42.213042118786746,0.5041701448458934,0.6324487126789676 -2003-06-26,1.7816194802370715,20.833888011929954,13.79454868189602,1.3922536249248707,6.569282106206514,713.3924802415447,0.0,0.4237242381814381,37.688889813822,0.45980470252940664,0.476212661725299 -2003-06-27,9.01032932997546,21.509467214298983,13.984441653266876,1.3270117671214667,6.875365857300371,1754.0068490190474,0.0,2.170109591841877,34.446680010490475,0.5062447282791497,0.6404233047626738 -2003-06-28,14.163450597934773,19.451775441943518,14.442972794271885,1.636743468008107,5.4828075280576565,3179.9476904115,0.0,4.033944063632266,37.5552246288651,0.6024875407790353,1.0311130478823918 -2003-06-29,1.5825656476240335,20.812552416410316,13.947497974058619,1.446319019676317,6.498467834403227,1224.611272833289,0.0,0.4739293056676639,45.7831746557956,0.5517787968744825,0.7433688699136745 -2003-06-30,5.018942297499406,21.78470166054628,14.703907456647904,1.7100267895809664,6.761661437326318,1435.8726586868602,0.0,1.386593765075423,41.13877097987215,0.5377061001372472,0.6950275805958879 -2003-07-01,7.108422948040063,21.268657997136774,14.86390473928548,1.1192962853770103,6.39882829811429,1812.4059015276696,0.0,1.9536591325060595,39.89649998015839,0.547575518810726,0.7499037526308518 -2003-07-02,11.26437862713274,20.836387977448894,14.319782057098749,0.9158498937330268,6.366478045610816,2815.11169191615,0.0,3.378835590662842,40.93026479955935,0.6080322479662275,1.0026297310609307 -2003-07-03,0.8837820289980516,20.96039972414986,14.223602688051908,0.8147609515992299,6.475622329600148,1026.5909870489413,0.0,0.2583979525628908,45.254763809003855,0.5374828124494204,0.6920097368648637 -2003-07-04,0.3686204661391633,21.489408915336767,13.330540762476152,1.0808759976638889,7.089734503072791,541.5412936347255,0.0,0.0924255857397901,40.13726376378077,0.47186611934171935,0.46453897505589387 -2003-07-05,3.81704644466208,22.562007938047675,13.511556692501145,1.0283015417854862,7.600063813580905,871.3788424762621,0.0,0.8594855358615314,34.923549444109035,0.4513017056795239,0.43326240928099646 -2003-07-06,8.989772538285951,21.89886725526956,14.201516385206888,0.8574886186261085,7.011698379924611,1687.4277767096494,0.0,2.0742308531978146,33.07556036145575,0.49003264023445087,0.5978657547263502 -2003-07-07,9.77457070333044,19.799411155352615,13.570362717287777,0.7408510647921673,6.06754377574628,2157.6096814654165,0.0,2.517004071696718,36.2848680915197,0.5365612689706325,0.7724335597751275 -2003-07-08,5.66036388824663,20.107027362857572,13.6454301025905,1.0036570497718735,6.214288114217776,1669.043266214549,0.0,1.547188264676068,40.43772004366743,0.5370114586456505,0.7384002126514982 -2003-07-09,1.7420890738748662,21.47540001876419,13.958438770569696,1.4403032277606376,6.8654105983708105,875.2405293835501,0.0,0.4484659369923927,40.33827732072899,0.4902077702684104,0.5489493976353013 -2003-07-10,4.872734647291072,21.72380934195494,14.264944265977435,1.9358262397278057,6.892644787691752,1154.6690299017412,0.0,1.1689677436117485,36.414828156067344,0.480972145343456,0.5353328651421535 -2003-07-11,6.273910030980883,21.465347458336144,14.540082861654678,1.3730800262543084,6.643511065777076,1402.692690596095,0.0,1.5061840517377796,35.72994105637367,0.489316418757676,0.5778153070107785 -2003-07-12,16.55822547564711,22.21439819818914,14.585491990559172,1.3879734645927615,7.050753059614913,3567.874146069399,0.0,4.743941105540689,36.52886100533562,0.6184286051564881,1.0984657222037606 -2003-07-13,5.018518483216868,21.42702213135317,14.555625291321025,1.010262786758218,6.61658365819607,2011.3782111364583,0.0,1.552375910288939,45.25598311282902,0.5856638960233393,0.9514217225615668 -2003-07-14,0.9209945734616676,22.697585409300288,14.53733693526053,1.5263075874615095,7.337296891335713,898.3344680413206,0.0,0.25606804011762363,43.42621236557497,0.5166149274309707,0.6583209665190316 -2003-07-15,0.5190698169664584,22.989358164727488,13.78438623776992,1.3278821021747975,7.7443029727542605,531.3310953363774,0.0,0.12185506653075018,37.901619479218205,0.44757501052731435,0.4470902421395153 -2003-07-16,1.0268615558474892,23.272010915714496,13.742319156366355,0.9399706039779336,7.9068089298891895,433.69671753105655,0.0,0.20500587057808062,32.70698809408493,0.39297650273272633,0.32224990669973164 -2003-07-17,0.7961596399098324,24.148864340357523,14.320702887866645,1.207595395423984,8.191603946012105,311.67005776946667,0.0,0.1367935862978319,28.718217841559508,0.34382250953752586,0.2305983878554149 -2003-07-18,1.5639857564040092,24.371610887314,14.386626451895976,1.1918326109200432,8.2899779468206,312.57139307577864,0.0,0.23508498866189664,25.046256643392297,0.30999130261324953,0.18590387475929102 -2003-07-19,4.3215472235592856,21.596309888924445,14.003532104677944,1.002409506855244,6.922956877767279,540.0391877152277,0.0,0.6195390523995421,22.57729714851981,0.31335332013945516,0.2153486580467237 -2003-07-20,6.906301178694589,21.867856847233725,13.052876044417186,1.0145599761733202,7.389336804490174,888.214368732309,0.0,1.088405092651234,23.48246476845734,0.35400854299767287,0.30590760915927606 -2003-07-21,11.02573251583576,21.95952372698851,12.77682694397655,0.5093759180965293,7.523374026798658,1631.8342266622906,0.0,2.0921933106739203,26.217730962889554,0.4338611270105312,0.5176988150294244 -2003-07-22,13.114113450691574,21.32415981414676,12.687109144903305,0.36197850795484304,7.222436621028404,2497.495930842023,0.0,3.113795827239594,31.888016022406752,0.5242443314173886,0.8111190109512115 -2003-07-23,4.462935397501557,20.963393146526887,13.148659895166896,0.4749920160208749,6.8811996592361,1459.2999990719147,0.0,1.1343405135051192,38.53753541488645,0.5009263636101717,0.7007204541137597 -2003-07-24,0.3129430000649094,22.150468242646326,13.724517720423892,0.8713043024113893,7.327308331760605,583.2380867409684,0.0,0.07156674806380603,37.170067447805685,0.4366516869718704,0.46703317640140013 -2003-07-25,12.181193494062047,24.39493022538105,14.294092003203437,1.7446977021472028,8.340075296572415,2195.328670730879,0.0,2.8796651827105144,32.22467527034372,0.5172982979687748,0.7424882120923041 -2003-07-26,3.0199021905710315,22.594390111812267,14.764288537354036,1.1030111594348282,7.213016079123489,1120.6869233298692,0.0,0.7189280810778915,37.09855459672652,0.4673528520139647,0.5927923500581761 -2003-07-27,5.673607414403546,22.38265790885913,14.68153547877467,0.8276039926147071,7.126023446971725,1288.956598526653,0.0,1.2988011470288088,34.506544325946265,0.468071556435142,0.5836416202251289 -2003-07-28,14.616125025831744,22.374636672916065,14.561190422323751,1.0295871676508994,7.166730626010518,2977.7212023448756,0.0,3.855193918662474,34.62401317395326,0.573614262962318,0.9669334897740435 -2003-07-29,17.471948073473662,20.383006219261123,14.28788401770776,0.9039653738962063,6.1335957748072385,4698.462669637925,0.0,5.877300023381693,42.04429883696006,0.6933239701175501,1.5243340087653041 -2003-07-30,3.9601649886345136,21.483166807292772,14.583104056546864,1.2410810513778778,6.6572511455719185,2276.8313893676113,0.0,1.4175747248579746,51.43123764215168,0.6452723277418858,1.208116489429499 -2003-07-31,2.634091297721033,22.81449608264062,15.134457115074385,1.4247477699751596,7.209759239001686,1443.645903190432,0.0,0.838202747142629,47.52654096525301,0.5843373954091656,0.9140558040059908 -2003-08-01,1.9061002509970564,22.678991890237928,14.973401147952535,1.2067207071846322,7.194490887899167,996.1087140603528,0.0,0.5271810952962284,42.745677565440225,0.5201629718871237,0.6752784774901189 -2003-08-02,10.849085962702246,23.478458995471573,14.549497188801267,0.561425122709231,7.786369176139907,2437.9531270352622,0.0,3.0057870664821476,38.273795246312375,0.5722482984301911,0.8972500355507659 -2003-08-03,5.154563148646763,23.213866436515175,13.826740199047448,0.5226058074454402,7.87875807906352,1698.8018697366076,0.0,1.435537826130532,41.354739057155896,0.5418018730457115,0.8026494433478044 -2003-08-04,1.7826230016318056,24.54070711394242,14.079219991087234,0.6787428739957658,8.500669231770152,909.200738899792,0.0,0.44367294853391637,39.181929281563065,0.47720929153705677,0.590042823806043 -2003-08-05,2.157819699474791,24.989359073881957,14.376167456303826,1.0093471453500549,8.650636314567516,719.005455379267,0.0,0.4621200212165899,34.21464642810289,0.4237145977381405,0.4544547463265115 -2003-08-06,6.206070504847827,25.619362165573285,15.618221802716382,0.9635196555721872,8.609801225561661,1142.908862106893,0.0,1.2519299625875044,30.401684031304057,0.42645554835286603,0.4864535118128998 -2003-08-07,13.674898744008555,23.09409283160377,15.345987324529547,0.8280082263432968,7.304560891547379,2448.5776612509258,0.0,3.1489847712746446,30.61994945817383,0.5160049836057029,0.7961378236554261 -2003-08-08,6.740983629821856,23.277865585928982,15.577334287035685,1.17735237250074,7.325263017156539,1842.5560146832236,0.0,1.7388693319571695,37.88650482555438,0.5198800172803286,0.7830168484987053 -2003-08-09,8.542995551936544,22.43425505487237,15.441019127100049,1.205358037008657,6.8911238147238825,2114.4922566610007,0.0,2.2800752310535035,38.14164848172775,0.5438444865929609,0.8568823036268477 -2003-08-10,9.054421299548137,22.245829462112848,15.507470664313187,1.2413633638269252,6.755412436757193,2385.2216436759654,0.0,2.5816576392286716,40.21498648540229,0.5739552338071552,0.9508856201031619 -2003-08-11,14.70176318725574,21.690531621758048,15.500766657968983,1.0039625981976663,6.427181217307499,3925.4420777306245,0.0,4.815841315246157,42.466163851962996,0.665967633978497,1.3522648308179814 -2003-08-12,4.35972294788148,22.516090237505196,15.530999265590012,0.6617078628296761,6.910315816648779,2140.269274070774,0.0,1.482498846709106,49.20879033375628,0.6240369013458202,1.1059931985007063 -2003-08-13,3.379518773928605,22.9278654010339,15.119519461183682,0.9697508358991662,7.30884548544639,1505.8445560711589,0.0,1.0372241934617277,45.79070201524108,0.5727997724790538,0.8778822967141158 -2003-08-14,1.3714812336966449,22.574066720584693,14.857319334927332,0.9525180244270736,7.207714985460821,879.397533993145,0.0,0.3669495614403533,41.850829426938716,0.5035106476049035,0.6273336062983883 -2003-08-15,19.784912681751546,22.53125525980597,14.614017369142148,0.6210555964301422,7.2748632501045964,4371.970586481454,0.0,6.027018729019208,37.08469470463728,0.6624924120550549,1.3260673305164794 -2003-08-16,25.742392644031863,19.915021550103454,14.286737703797247,0.13848365314202316,5.887800992757286,8552.853996968768,0.0,11.23317887650639,47.9878954942068,0.8589079241983072,2.5736249365670303 -2003-08-17,0.9919452679760772,19.34815224554407,13.32279269481781,0.10660185415965816,5.960667769312406,2645.9740221088286,0.0,0.4470594160475079,62.334078426561604,0.7377052895443563,1.7433802737501631 -2003-08-18,1.008853212452583,21.10774656840388,13.602145668440091,0.44421064862146215,6.854071239786444,1459.1387667987824,0.0,0.37707330452272214,54.645202957388946,0.6483320635941369,1.1922736003843581 -2003-08-19,3.1665200076677964,21.33123374994445,14.442135345206369,0.7372397891095479,6.668557399044073,1465.9997941333236,0.0,1.014429499255752,47.51400338664979,0.5903937750016902,0.9305759542269383 -2003-08-20,4.267347857812367,21.81766095143922,14.566050653721268,1.2139419570930439,6.9030989532469285,1485.0876870567479,0.0,1.2529300684559805,43.70640962449525,0.5588617852389989,0.7965383213521557 -2003-08-21,2.7993159139947124,22.55575588934187,14.569312838732412,1.0304768168111302,7.322082853279256,1086.9429939978818,0.0,0.7517715610731712,41.263382243839885,0.5133005928088101,0.6329773358509754 -2003-08-22,12.883970236525252,22.88026934882385,14.683546043216054,0.9285487643613192,7.465766973402684,2823.195317632744,0.0,3.6152074930232505,37.68108153979558,0.589048608853262,0.9625072432903948 -2003-08-23,19.38191071238236,21.98397554634337,14.748162378218368,0.6362901257287257,6.937771723004066,5297.8330869552865,0.0,6.824094298177034,42.8163840101218,0.7245680107558682,1.6656161454875549 -2003-08-24,3.504111126198078,21.965933143612908,14.32753490432316,0.3646277242601533,7.0880306173410075,2332.9231998092473,0.0,1.2804683036056823,52.48350844840596,0.6522178513593483,1.2792080420924856 -2003-08-25,5.186713437287148,23.731281673120947,14.569764623711928,0.7316596784448991,7.982925805755764,2053.3414019337924,0.0,1.7064874344207457,47.512751292761585,0.6139130742684952,1.0925422341294242 -2003-08-26,19.851447301258762,22.993303997251648,15.073350686656433,1.1119017626315209,7.402112109746466,5549.396940969466,0.0,7.242932652121926,43.97216964310123,0.7435019139180283,1.8140371396867268 -2003-08-27,7.95803779067004,20.50782223051997,14.543864139775536,1.33443860218942,6.163275008994244,3648.23986284318,0.0,3.121570002946263,53.07744592821686,0.7110220500581523,1.6561580654996175 -2003-08-28,4.210742216073065,21.933704394885588,14.548151936876831,1.165977371414315,7.000679275380998,2308.9747090997375,0.0,1.5566747655238515,52.59169909154878,0.6617099727245302,1.3151077907227218 -2003-08-29,2.6198008627257137,21.812668042280134,14.608231995922573,0.7516603256272395,6.911700221400912,1517.4002868502882,0.0,0.8495203281236625,48.25190784405801,0.5926209544148455,0.985425381453554 -2003-08-30,9.722817603973354,21.585503635510424,14.61388982059741,1.0390352858485,6.781409794106105,2703.291425323332,0.0,3.06858680867672,43.617306478279815,0.621376321845779,1.108703281604259 -2003-08-31,1.4799911997787063,21.088436604281185,14.072969564148364,0.9198437003102574,6.707582392517868,1192.830816423735,0.0,0.4421425690596308,45.74563108072053,0.550146516800062,0.7890364650976316 -2003-09-01,22.11102533894176,21.120617565747853,13.666396891638492,0.6431886834909574,6.880913644730694,5568.456566034024,0.0,7.6772306019814245,40.829311338479805,0.7332122969950755,1.6825974274853794 -2003-09-02,4.578097144776528,18.850399790782312,13.636476687093689,0.5026805017394252,5.56944265983344,2668.7905138200463,0.0,1.7226777509126805,53.11671086892172,0.6721054405098006,1.3575949795814515 -2003-09-03,2.8378149297639963,20.416583215648963,12.218527683634102,0.3761251327468946,7.002373354324447,1659.5785049665865,0.0,0.9818364414104179,50.65429310100913,0.6231468319174334,1.0332296274314208 -2003-09-04,9.332200485700794,21.497055378271195,12.688357011519255,0.41762064645928587,7.427123659009377,2757.1969420299247,0.0,3.0887480194054984,45.63091793615502,0.640283106756209,1.1428914411074815 -2003-09-05,7.570420011162042,19.30432283459266,13.38866016459244,0.3125510913400316,5.959342517258184,2556.489972075407,0.0,2.492686780191157,46.331371931137724,0.6279193720350991,1.123516998535535 -2003-09-06,4.193811557747972,20.23112241064489,12.884858289496686,0.6102467257795701,6.68550433629834,1769.9808835512724,0.0,1.3469579498052386,47.092578421855585,0.5974517104071969,0.9364510069594203 -2003-09-07,11.407491564702624,20.365752214862255,12.858306015681825,0.3039601330170069,6.772581562826458,3141.7926384174953,0.0,3.7382406590122343,44.1834087634344,0.6475963408095234,1.1787879569868578 -2003-09-08,13.046862509911222,20.01491057222889,12.199004439298141,0.12116718707313985,6.812446029990985,4102.062867374062,0.0,4.762488426161937,47.5557448286316,0.7059793333854776,1.4924947751842677 -2003-09-09,6.908968960344587,20.526154725438012,12.074839873859307,0.027610289597434917,7.1281389089556395,2942.1551541568183,0.0,2.5674928797708807,51.42911160521862,0.6795991300933835,1.3624826714201306 -2003-09-10,4.960556638624486,19.381224209611247,12.096115525140936,0.5456408839417546,6.512500722498735,2171.2903997431326,0.0,1.7038489775976489,49.297212314182325,0.6320662631279924,1.146348359885405 -2003-09-11,1.8177037359385064,20.26360151679312,12.484030723736426,0.4002963423256266,6.861004612117955,1224.3631263052791,0.0,0.5608757715684032,46.776541116190124,0.5660900428826556,0.8316205258449804 -2003-09-12,2.016568204739455,20.4392525450798,12.076262428130931,0.2574311691487197,7.093286855472132,937.67583945001,0.0,0.5439701754803306,41.811587520258584,0.5105683323062286,0.6241733713452958 -2003-09-13,3.5942451639526922,20.718262484559347,12.191646435657153,0.3756228578226869,7.207728510226676,1014.9609132679766,0.0,0.8787629817147646,37.680661111050135,0.48082470535953686,0.5401121743619711 -2003-09-14,2.6979255895772467,21.24600854089542,12.712747486658301,0.48807176713817296,7.3249327567218545,801.8483630374831,0.0,0.6072153725818032,35.47220011338164,0.4446561143562629,0.44404515099035596 -2003-09-15,3.367653857293232,22.527675468321814,13.13339458673066,0.8793533830724101,7.878030549618424,787.0091456827921,0.0,0.7020815285705502,32.800077548645866,0.4213295768842384,0.3959548076145175 -2003-09-16,3.4267057934374017,22.47265157634261,13.509158075773694,1.2198634200666874,7.734204109745726,736.7920837538564,0.0,0.6664228207502689,30.75353154930423,0.39817661704530816,0.3592206892780321 -2003-09-17,9.333747623613336,21.888927075871983,13.843793427712052,0.9289469120646324,7.305869722833249,1521.97880007404,0.0,1.9076181962097944,29.19765762059355,0.44886477634123767,0.5242988366017091 -2003-09-18,6.109616390076223,21.971714829178424,13.479914111520298,0.8275815286425026,7.48055855060862,1335.1647038056085,0.0,1.347155246757378,33.11516263873241,0.45694211135597684,0.546418188169704 -2003-09-19,1.1675491853930808,21.1823126972706,13.454137669857113,0.5216300796758684,7.05839599814615,599.7590476356617,0.0,0.24062455070473665,33.56400254356275,0.4045990562761988,0.3923312013891983 -2003-09-20,2.5245992033794287,21.185892720064388,12.309649114759882,0.30824781020530395,7.44587544792031,584.1113167202536,0.0,0.47175363150215466,30.091699545093622,0.3799577915734979,0.3272206320608709 -2003-09-21,11.2933365069745,19.95956291218803,10.938212835652983,0.6792422205935058,7.228386033027734,1742.7110719493382,0.0,2.297495818545416,28.065302059750703,0.4585014843185578,0.5628329309446628 -2003-09-22,3.59618653541616,20.01859573507744,10.841339395557013,0.6689962301840248,7.2905990505139595,1011.1110745836664,0.0,0.779597247429757,33.86183506540398,0.43636058382701387,0.4850829826604144 -2003-09-23,4.427666678503655,20.475163606067508,10.758712507047102,0.5424895884747555,7.5482591907420895,973.6587755974273,0.0,0.921925089224807,32.22952220102329,0.42703142497459806,0.456142937070399 -2003-09-24,3.6991226428669495,21.18163730372768,11.396290681528082,1.2890576400117029,7.731764809775996,837.2819504902576,0.0,0.7389533493221268,31.382936207266685,0.4086822268627982,0.4094441771665096 -2003-09-25,0.40727942082027785,21.480779512776028,11.287784989822766,1.075694219269132,7.9178155711373135,361.333307009492,0.0,0.07279781192807339,29.949959366378895,0.35364127293546826,0.2776134577533641 -2003-09-26,0.2441986139331343,21.51673194456692,11.655743096912927,1.3106329315065002,7.838356673689542,212.69876637319547,0.0,0.03700686217702104,25.898208350063673,0.3045413366199584,0.18634815462672072 -2003-09-27,0.046570023951681916,21.42689737454966,11.839203334176824,1.4629806075893663,7.744003819126901,127.92021157689683,0.0,0.005993306553930322,22.39948842226272,0.2614813796783902,0.12221645975954261 -2003-09-28,0.7051648418373786,22.29807217526979,12.235304901063365,1.4793048132928457,8.084254228555187,131.53371197393577,0.0,0.07872768722382006,19.310814607815235,0.23317260509905555,0.09154462453884524 -2003-09-29,2.246860928703605,22.37871994673039,12.592475264312947,1.3627884521656817,8.026867809179826,215.43482955803185,0.0,0.23151507896950507,17.121553659448196,0.22562891301511034,0.09484283887881582 -2003-09-30,5.054106992779639,21.19610143478395,12.781608729870644,1.2073209312445854,7.342590831801805,433.36468230850596,0.0,0.5477871880516982,16.592989522141814,0.2521740142625158,0.14514692223360237 -2003-10-01,3.5558654319535075,20.96565472411887,11.90864329604053,1.1963687951681026,7.501365718852809,399.5402545192256,0.0,0.41672330269131397,18.786229730127133,0.26027027782563805,0.15793610347765594 -2003-10-02,0.6710269790983641,20.655823914856523,11.242615991911409,1.0107858146242457,7.542898903697933,178.41483208593615,0.0,0.07488065178583225,19.31918119849233,0.23287238723269985,0.11421066579912505 -2003-10-03,0.12180338597041615,20.644012199445605,10.571400255646372,1.1711952032278747,7.728214288764419,88.48645978299953,0.0,0.011895210596676725,17.291557907132557,0.20285386615514073,0.07615699707296794 -2003-10-04,0.4381339030549553,18.96580436994448,9.473789688416383,0.5546857928395638,7.194740955957014,75.09185180485167,0.0,0.03729455672152099,15.024635407940075,0.18013079056958234,0.05525327292189175 -2003-10-05,0.25445681682509963,17.186547157414235,8.429893525164077,0.7407345942697721,6.609683001113294,50.785801682358475,0.0,0.019247046603061257,13.498650543887209,0.16021438668892823,0.03889793094660281 -2003-10-06,0.015286430589601243,18.283137940240746,7.954610753747616,0.8022437018125705,7.255585799755895,27.27978217824251,0.0,0.0010267380463935515,12.155559349587794,0.1417821108360532,0.025477060878853437 -2003-10-07,0.1423364932566186,18.937056778501297,8.546999685257836,1.1903963525487036,7.428212546706985,22.205602876178716,0.0,0.008365057677237303,10.626679990258792,0.12545174889553248,0.017858072817039366 -2003-10-08,0.8623352795534815,20.59524896797375,9.572637316734486,1.594181586649328,7.981194965496166,42.376345433742934,0.0,0.046315314098303695,9.37578315384162,0.1192671461535113,0.018676956853272232 -2003-10-09,6.578552752774018,20.877701371632646,10.896951748736,1.7607566558916483,7.784769842522966,302.4599604028368,0.0,0.44022393201513577,8.8174414579091,0.17935290587327538,0.07918841808831764 -2003-10-10,7.3209647982818415,20.00728724146576,11.885280392762375,1.7302921796905282,7.038999078201699,533.0938767092713,0.0,0.6977436636583336,13.281469933937107,0.24000441197386066,0.15778971874639786 -2003-10-11,6.41638589287698,20.965003319028632,11.372300788816492,2.01012265340668,7.704729330514383,653.3093553664731,0.0,0.7778647921437907,18.000176433416705,0.2844364153903127,0.22115509663979607 -2003-10-12,5.017392266974023,21.797127817790603,10.793140338911138,1.6658372849114351,8.287641156173954,636.6951102480836,0.0,0.6802366472357511,21.000370796954417,0.30308931959717156,0.2475376521713529 -2003-10-13,18.366828561872996,22.153685196137317,10.485812043120346,1.03403385782666,8.545148138186041,2450.5134238882674,0.0,3.4385345665413176,22.083957587551645,0.47122426401820844,0.6847030618676443 -2003-10-14,15.335082061893866,19.983116113104067,10.364005054896642,1.015383906063671,7.502484684105212,3253.541757774924,0.0,3.987913619481178,33.7679995022517,0.572017645976447,1.0529282734881351 -2003-10-15,0.10811721319286932,18.983544472601206,9.818367785510377,1.2244797818662383,7.155899580632039,950.7305370107504,0.0,0.02820529192067739,41.61082070330997,0.48599737326996306,0.6897014907782637 -2003-10-16,0.0005748829171551932,20.204291817686784,9.122472702039753,1.2456161823438223,7.937374704063156,469.53467187106963,0.0,0.00012550982674359545,35.88176467619236,0.4180049551455585,0.44898236525183766 -2003-10-17,0.0,20.721606408107053,9.230443674545947,1.425848263987663,8.165214770653574,293.60605844376363,0.0,0.0,30.478044851306382,0.35504858176841825,0.2922664176077795 -2003-10-18,0.030917397078758745,20.064859338410216,9.734215624462918,1.3926713567038185,7.728327804514155,193.3720458304355,0.0,0.0046568028029118184,25.861716662797313,0.3016316514414997,0.19096076836184325 -2003-10-19,0.009515749352402526,18.167736127642367,8.783467961887439,0.8406134036287003,7.049138885149995,125.37391511352641,0.0,0.00121404696840678,22.240076507712505,0.25919268162825976,0.12449134163327207 -2003-10-20,0.029446533279608576,17.938261282317935,8.6508554602234,0.7407173013482892,6.976068271935079,83.25019909865699,0.0,0.003246376991698628,19.419784003514437,0.22657036408553452,0.08153232116529996 -2003-10-21,0.15604750371784828,17.051732740893808,8.2457323075822,0.7674680340490407,6.655574175663247,63.07082119219831,0.0,0.01500495487188172,17.023519435207767,0.20013032026231498,0.05535843510410688 -2003-10-22,0.014017860104861541,17.310839072348262,7.52100843280266,0.7892936179523977,6.96782270987738,37.695732267329674,0.0,0.0011859929609987895,15.149304954314607,0.17664244167963977,0.03621632435508442 -2003-10-23,0.007050122688757123,16.847757674635282,6.963397865928483,0.8098304498899432,6.887019699645197,24.05174302802113,0.0,0.0005200184862903211,13.29929319436656,0.15500988814384722,0.023654305484587263 -2003-10-24,0.0,17.34113991519813,6.829266140416427,0.9084153218827214,7.149232580129551,15.437686326158431,0.0,0.0,11.698260626437978,0.13627681384542956,0.015397841118108532 -2003-10-25,0.4249914587117813,17.321314867135293,7.6524474016035695,0.4851757139359483,6.952615332955766,25.950685817552717,0.0,0.024377205885501352,10.237651571701866,0.12421257020655005,0.01373506058525456 -2003-10-26,0.8390439842586139,17.203438854263972,8.25973733403191,0.8645152973496905,6.744583121369608,39.74398448784357,0.0,0.04498875601920238,9.371529553520677,0.11894626677390985,0.01579108160742158 -2003-10-27,3.157565240468061,16.860410828430876,8.117829876656215,0.8689791256368053,6.619012975767861,133.00469701635646,0.0,0.18370664324119756,9.012555674291477,0.14177366664483823,0.03825130224240456 -2003-10-28,0.13454079296457744,16.739861773925906,4.65502663872667,0.9281181379840762,7.325732623837123,40.993641373784044,0.0,0.008006923562917212,10.760940069894689,0.12692497326898947,0.026118972345814603 -2003-10-29,0.5927232676279198,15.405236444755644,3.466541234790831,0.4736568438605755,6.962755057461196,39.08541594290294,0.0,0.031814748253927605,9.504769611166406,0.11762895367873179,0.021846488820316687 -2003-10-30,0.06743464448560918,14.708482811248755,2.942727273871708,0.3220123552131277,6.760909115482546,18.298326806626648,0.0,0.003279810025683755,8.874938756094759,0.10417259404300659,0.014720436965472304 -2003-10-31,0.2607806031680032,14.321869279539143,3.0601728039270832,0.5825796511073842,6.584594422154003,17.361159753056413,0.0,0.011390367111975164,7.894256267518488,0.09500065668032151,0.011316664264512487 -2003-11-01,0.5985214424713915,14.102135979077392,2.48326796234398,0.8398591997048149,6.591134658894831,24.039111618940062,0.0,0.02447399063323863,7.226025456516193,0.09115067232886953,0.011093143176501343 -2003-11-02,0.07442164081513455,15.546068434420555,2.7886735721712177,0.7168602865794421,7.1417991627735695,10.530923182173705,0.0,0.002813383205110237,6.933087744241004,0.08163273861664454,0.007649493984726659 -2003-11-03,0.4486852865529681,15.507677616645694,1.6169711437815104,0.8964401141542259,7.2888770627577975,15.359301403031328,0.0,0.015466810994463398,6.144465440445131,0.07680574086778251,0.007334511520006953 -2003-11-04,1.468305986232742,15.06088353522854,1.5216959925315965,1.0596605391160616,7.125760194462097,39.451753487163955,0.0,0.05168045092087459,5.765343898285298,0.08426712228548111,0.01264353439566841 -2003-11-05,0.07224068677555462,16.036688851581427,2.003329991290338,1.4173282359302466,7.461076224839109,12.928000915503807,0.0,0.002494824246194516,6.344227300004202,0.074747506599688,0.008610220492511225 -2003-11-06,0.06796685152229398,16.130034681642805,2.833473577624006,1.6209112219490358,7.391350424305615,7.3340975588965724,0.0,0.002064567187542332,5.592230370474322,0.0659374643617699,0.005919209714023774 -2003-11-07,0.06231680877669315,15.229547784032867,2.3190966570912708,1.551027157224271,7.09794268149211,5.089678838842551,0.0,0.0016693358276484369,4.941270587038816,0.05828840456485131,0.0041073083615134 -2003-11-08,0.0314361772521793,15.931049971148587,2.2615724861944484,1.5390294712946015,7.395773216011355,3.268297103867056,0.0,0.000745463158780782,4.394251677659843,0.05155626628618451,0.002787172478362213 -2003-11-09,0.0017725672705413422,15.305739468164045,1.5801283918105162,1.1812173667339843,7.234457532123432,1.889738244593718,0.0,3.6781520336398804e-5,3.864961611977694,0.045044834506787895,0.0018199188161449461 -2003-11-10,0.7904934656358253,15.453420040957544,0.9976183337098252,1.1045316812904875,7.366454435702856,11.675166475978362,0.0,0.016049659852789278,3.3881588378171075,0.048678469412407374,0.0036284794242887383 -2003-11-11,0.3329994762764078,14.055898012342865,1.0792006204437037,0.5313922901709539,6.8062243738279875,7.750788040393712,0.0,0.006823596765288209,3.651642998157161,0.04641838629426386,0.003400962977892687 -2003-11-12,1.1842991411972894,14.292316410889766,0.6823692731106998,0.9400354555211202,6.951556037058571,19.77538354390428,0.0,0.0261673070843369,3.5204937816835327,0.054807651308752744,0.006198226121594239 -2003-11-13,0.0001634886204424237,13.581046546659847,-0.5669676305490448,0.9063494330724642,6.816047578477894,5.589988553213881,0.0,3.6400084750400454e-6,4.1440631273565,0.04827743346753674,0.004035308133593613 -2003-11-14,0.0028112368665995425,14.94181029560066,-0.2455819288205233,0.88314085226883,7.30969403458591,2.7824480554257143,0.0,5.522147578849177e-5,3.660600544482078,0.04267626626797261,0.0026352042209523306 -2003-11-15,0.07897903637705847,15.521571142633709,0.05132768135078505,0.9800344179472248,7.509434706816223,2.6231015189793956,0.0,0.0013728614237214776,3.205520997045065,0.03826220101631166,0.0019244325260241466 -2003-11-16,0.1459430412501515,15.322959735138054,0.5534045081358933,0.8198276314566157,7.384205067697516,2.830996113226068,0.0,0.0022930834420609725,2.8631555039128505,0.03505396018917338,0.001601870955452783 -2003-11-17,0.3404118224310508,14.218568870605381,-0.4062034289490632,1.128644242904633,7.056395000695651,4.512455531521988,0.0,0.005098373609165152,2.629767364232378,0.034600576020142014,0.001819045403364887 -2003-11-18,0.03956806208107859,14.353126681076127,-0.1227291528262492,1.2139977523792536,7.082826246660633,1.8542029149570676,0.0,0.0005567897643903724,2.612393747267031,0.030893559081848255,0.0012688925294344166 -2003-11-19,0.005290212929737957,14.541083385281048,-1.3264191060560129,1.3441427977773224,7.267398854062171,0.9248713710088928,0.0,6.595133958030384e-5,2.3315614115084284,0.02722273883078271,0.000836031464450632 -2003-11-20,0.09282109953587296,13.692452164067047,-1.3681455876830346,0.8725840204881588,6.953963955227195,1.2295862115373133,0.0,0.001037184273600819,2.0473911927891906,0.024932023782384405,0.0007021438176604658 -2003-11-21,0.02644860570134224,13.494613082174304,-1.706825221704654,0.7405729840145286,6.911019245443192,0.6928312746249932,0.0,0.00026799692990955165,1.8866547454721498,0.02228635842372422,0.0004978691161839886 -2003-11-22,1.0539368530048878,13.58523103963578,-0.9668483603950836,1.0016418961324451,6.883083064724539,8.486883064089884,0.0,0.012464648752239738,1.6879742464338179,0.03194140739474203,0.0022220163052035493 -2003-11-23,0.3272919089844569,13.442589682448627,0.3306836171198138,1.0027760917863189,6.692737981959951,5.123452024708288,0.0,0.004519809487421367,2.419906885419871,0.032003005460087997,0.002134635944667863 -2003-11-24,0.25208952664420936,14.359816216827284,0.8114751460351274,1.0777510590108783,6.998548445890804,3.960413747343864,0.0,0.0034486285545485273,2.4334838070225144,0.031285110577313924,0.0019146523154537896 -2003-11-25,0.33685494762781976,13.912814519006016,-1.1382439784227858,0.7530245853835511,7.030910642839596,4.449536678826639,0.0,0.004560776735514915,2.364943297209735,0.031474119804402685,0.0019407943021719028 -2003-11-26,0.30151971876015266,12.746694232873649,-1.0531680580899625,0.7362787752753672,6.584316516670742,4.206463840792511,0.0,0.004074419930283624,2.377728051310838,0.031211422045306438,0.0018837564983988787 -2003-11-27,0.23832693197129998,12.772059183492185,0.5343382688839919,1.1065498431427907,6.41423217190122,3.561813702926053,0.0,0.003180645263277465,2.378294867270574,0.03048187189754507,0.001710537172304391 -2003-11-28,1.2612667993600173,11.486557555472453,-1.8430455705998712,0.7795199841085293,6.195082721906553,14.375750804441923,0.0,0.01998945874375302,2.3303339625258466,0.04183971652405019,0.004157169698135481 -2003-11-29,2.5374970068632776,10.78119436964684,-2.4683139262206657,0.9652532877144224,5.996857996852841,43.83787943922841,0.0,0.06116598770438708,3.2111333088462852,0.06696765001368286,0.012019547308018137 -2003-11-30,0.37111657200291936,11.993336576106644,-2.053048464213494,1.1949700019268923,6.405544361520942,18.44703996847843,0.0,0.010692354694107453,5.155864163328506,0.06438558251077184,0.00945222933709854 -2003-12-01,0.3367990513227998,12.185950030083545,-2.0319118145071617,1.0303402852135213,6.476894095580963,13.084652668470236,0.0,0.00923367502315603,4.918647532020458,0.06122239353210096,0.00755892047327453 -2003-12-02,0.11987778474787975,11.999804002063735,-1.416311715222184,0.9955905790879462,6.352706436372848,7.516147038222409,0.0,0.0030528542665945735,4.670975227325983,0.055810193065086666,0.0053853441201645365 -2003-12-03,0.9736589061167902,11.532004427990596,-1.6059699374675576,1.3715994344042572,6.198936140527976,20.01302084037624,0.0,0.024928919661046267,4.268870009835398,0.06107191145527054,0.007301402199641418 -2003-12-04,0.04155026770974917,11.043194238896604,-1.4231741187602858,1.1245295016772412,5.999629766750014,6.902716456824811,0.0,0.0010523093308624706,4.684494543600937,0.05505522141647245,0.004913099307252798 -2003-12-05,0.003779375719066281,10.9468871884399,-2.1562300890046275,0.8509675901567342,6.03989275664675,3.428147758881748,0.0,8.615426917657574e-5,4.239783121960475,0.04943462921579719,0.003211314993576913 -2003-12-06,0.031373346654530884,10.358223182032841,-2.115809957973515,0.7814224406614144,5.8219817808221475,2.527554557925244,0.0,0.0006432342087145243,3.8045577121229814,0.04468599901420533,0.0021883570396674093 -2003-12-07,1.200653756752604,9.886549743230796,-2.9284598656067287,1.048642867832651,5.729715930925996,18.54304311725495,0.0,0.02614622597473737,3.453793343192226,0.05422115656742023,0.005405666737924925 -2003-12-08,0.8588628191288947,9.650683865251725,-3.1349630226778182,0.6361254122227387,5.665151720165834,19.006995443805497,0.0,0.021383354951500344,4.197153176313193,0.058899162244103256,0.006774766663658233 -2003-12-09,1.1699903521147241,10.033483393537775,-0.8874653149443437,0.6301082238821702,5.564176005618243,26.984023334399595,0.0,0.0324782329556601,4.564348835485286,0.06680116804963555,0.009355345446272157 -2003-12-10,0.6122430543780377,9.715612088236384,-2.0167077694460134,0.6352047003556254,5.5820188115864005,19.93041301391028,0.0,0.018145399752751645,5.185663587807276,0.06754168584555227,0.008852795355186559 -2003-12-11,0.3069793135954678,9.638051198813613,-3.8403926716817085,0.597510333202568,5.721633744249128,12.803567017916544,0.0,0.008934376490860596,5.241279620655905,0.06463345911788268,0.007123144501424651 -2003-12-12,0.002793296112194925,10.027885034732863,-3.976997707313709,0.56200411966593,5.86929739798975,5.295174592837156,0.0,7.531026070595626e-5,5.002654523927453,0.05831007724712114,0.004648299382372535 -2003-12-13,0.0,10.244242734302976,-4.331296078431081,0.6808923748155643,5.969135542143041,3.075972124097417,0.0,2.6645352591003757e-15,4.501248771157361,0.05243649978806809,0.0030258244278539544 -2003-12-14,0.0,11.036518037295213,-3.2829440554094935,0.7732855178318376,6.18006407346449,1.972911572195351,0.0,8.43769498715119e-15,4.040732072822137,0.04707179212974243,0.0019696694887861 -2003-12-15,0.005292930904273543,11.47946335226886,-3.1590514415836366,0.7049950645198697,6.331468520852947,1.3494037916981252,0.0,0.0001026447876846491,3.613240699135073,0.042153466198200956,0.0012977914480107118 -2003-12-16,0.12923387497996422,11.720723325874822,-1.677685172572919,0.9103944780273471,6.2960932553508915,2.3394409025311744,0.0,0.002278864690660437,3.2267568988415087,0.03909501972604839,0.0011917920508450592 -2003-12-17,0.015762711318179308,12.806932699258018,-1.096182971330705,1.313908192105201,6.649086343161136,1.073931260324878,0.0,0.00025334385865006387,2.994904244146239,0.03507223110700507,0.0008143759559539046 -2003-12-18,0.09995998120501416,12.434353749479277,-1.561543452330491,0.6879859832927179,6.554160089427799,1.5044454083119867,0.0,0.0014533417629602058,2.668884598590743,0.03225516420064977,0.0007514132250084826 -2003-12-19,0.18524893594002034,7.7578845829586385,-1.1542815290787922,0.7465121306739587,4.750355703588846,2.225678204617295,0.0,0.0025265212593011954,2.459182674362206,0.030805837362665858,0.0008738348786060784 -2003-12-20,0.008040996192377727,8.513011197582893,-1.706210427441834,0.782246367422922,5.112015389581087,0.7902891115660354,0.0,0.00010456903494391462,2.430095979836133,0.028402644582989318,0.0005847476160819586 -2003-12-21,0.23728769410879386,9.319707062382102,-3.1429328542115296,0.8372960346979116,5.562191666954433,2.3392714582552503,0.0,0.0029710199383599645,2.2255967253308,0.028690935538933714,0.0008330248908597594 -2003-12-22,0.036354694877228234,9.847026701821813,-3.9974247811690793,0.7527680961070484,5.817254380324346,1.0007828749574672,0.0,0.0004362552731976069,2.229277562341872,0.026393081434813306,0.0006086863618404311 -2003-12-23,0.006337070014638716,10.959218177459277,-3.780563512529184,0.9738906931805592,6.195576677694438,0.48005510558663705,0.0,6.912068171730824e-5,2.0409968736428823,0.02385005392072544,0.0004067508581972724 -2003-12-24,0.047493895207176916,11.278077087985206,-2.8305405735664113,1.2386558186596277,6.241912617331917,0.5785023999770819,0.0,0.0004698106915335884,1.8312654477650256,0.02188627398708792,0.0003363113096061599 -2003-12-25,0.30883772802964443,11.180849317325654,-5.174420051545467,0.952096805977066,6.348678212740061,2.219112017912611,0.0,0.0030194342010166353,1.6790818257395952,0.02315791651593499,0.0006786763185546005 -2003-12-26,0.4129261572288567,10.88788069936464,-4.575570534233745,0.8543380639690052,6.219055908691346,3.467556464851399,0.0,0.0043605002742355126,1.7729712982689954,0.025464224993829963,0.0011057369691864858 -2003-12-27,0.2471007329768522,10.159896459714194,-2.202894801332393,1.1823062240049722,5.779322706777217,2.7761832131826476,0.0,0.002739887232329652,1.9542531199937296,0.025644281556798976,0.0011369711042585448 -2003-12-28,0.8560497266240209,9.93054759587819,-1.2436336579940697,1.2588056118555837,5.586894142752636,8.127491786690168,0.0,0.011034107904103307,1.984548427093808,0.03309104474292658,0.0024202206844097275 -2003-12-29,0.42015618090011936,8.737489476066617,-4.385074358366587,1.4318065615069802,5.462122382964223,6.309855080156777,0.0,0.006246981563773402,2.5697133151037654,0.0348299547890236,0.0025266451437347807 -2003-12-30,0.008937416948869077,9.228491622283359,-5.384658099194857,0.7031883423467036,5.69085273914882,2.1420851087679447,0.0,0.00012977974081607863,2.7110080845316715,0.03168552305436553,0.0016644881190002877 -2003-12-31,0.013264907432595152,9.964736543243102,-4.888052220936874,1.0969389396708324,5.916822270347001,1.2362320292856797,0.0,0.00017452774185714413,2.4558232259449047,0.028763204604948165,0.0011100779614905145 -2004-01-01,0.020512545004013283,10.33387499922615,-4.220390545948981,1.0213637964319218,6.00646075687346,0.8948536799508048,0.0,0.0002442490569138367,2.2199674506586713,0.026100074621632146,0.000759799106426177 -2004-01-02,0.15527306561190088,10.103439919045822,-3.476189587595861,1.2618226190934652,5.873368179730616,1.6403619211385745,0.0,0.001730828037570159,2.011132043206869,0.025237152355886465,0.0007581376456392376 -2004-01-03,0.007728255060601502,10.645324545499179,-3.4069833277308903,1.232786521213135,6.061160084612606,0.647657853430576,0.0,8.05306017697292e-5,1.949590459981543,0.022801437468673743,0.000505773948624519 -2004-01-04,0.035665493968383546,11.011285492699416,-4.0725252672899375,1.1354637110141566,6.23568039849579,0.5619632964627544,0.0,0.00033713710484568893,1.7552737739890796,0.020863229587852358,0.0003805691738541265 -2004-01-05,0.0014887353100827142,11.19507661002903,-5.358775327911834,0.8716940575142096,6.363024322368525,0.2764485204311021,0.0,1.2704187128023464e-5,1.6008260558135912,0.01866588217553053,0.0002496670455946494 -2004-01-06,0.0195914904795063,11.482401216277738,-5.140042722718179,0.978646059927636,6.453841991080731,0.2628710731486623,0.0,0.00015009689291493877,1.4288322850344246,0.016873156063809527,0.00018537598163015386 -2004-01-07,0.01924466043646977,11.747765143095856,-4.5068580793698985,0.9781487211070076,6.518467728980247,0.2164650666314934,0.0,0.00013307490195612823,1.2894249659683106,0.015245114872862559,0.00014093367108315645 -2004-01-08,0.3379831949249275,10.672175137070663,-3.799910883128351,1.0078185397779718,6.097406600736036,1.6665280386876058,0.0,0.002397824868863696,1.1636230571821442,0.01749269589917129,0.0004568454548882926 -2004-01-09,1.1908072973628825,8.15229805696947,-4.437270913256841,1.0655330883132539,5.263920937231842,8.493677039181607,0.0,0.012333009142498463,1.3458492674774052,0.029550331071892488,0.0021752677545420797 -2004-01-10,0.015431746957472669,9.673929106751137,-5.166524244427451,0.6232778785626751,5.829886261492851,2.266799904821067,0.0,0.00019092221397525207,2.308904749003921,0.02707694605969106,0.0014450677981577545 -2004-01-11,0.0015511651108092446,10.888216988017778,-4.779125804562465,0.5876081391827306,6.2287708147288,1.0189691681621764,0.0,1.7335395044033126e-5,2.0933469725926215,0.024404144569300432,0.000943310788402136 -2004-01-12,1.24493285235322,10.25540938675692,-4.207296464177201,0.8980913751251738,5.975187143486081,11.464303515843415,0.0,0.016601217220139297,1.8726001813839648,0.036317148545607504,0.0031418315560367053 -2004-01-13,0.2065608872256829,9.653188020814476,-3.343794169921951,1.1978884505125142,5.699240146894406,5.1041400618386605,0.0,0.0032081786204557483,2.7993737371311482,0.035017102654494266,0.0025336772656743547 -2004-01-14,0.4761782283600168,9.584877805074196,-2.6707003064701094,1.6191166102525552,5.613495458268161,6.823136441711612,0.0,0.007521470193860513,2.7134019701986025,0.03715644922303234,0.002794559767387876 -2004-01-15,0.010553493918709387,9.397781894917117,-5.9416510346096665,1.3071898847300845,5.768600002926944,2.381075323885177,0.0,0.00016313022168965366,2.883700483912681,0.0337160987563345,0.0018439660504044602 -2004-01-16,0.008642143855507834,10.685251818039363,-5.675526714309484,1.049399593749414,6.193668485649529,1.3235415492600113,0.0,0.00012074239923560819,2.6092444985307384,0.03049660646358301,0.0012187200463970788 -2004-01-17,0.04424809947883983,10.470876865972064,-4.278404549848095,1.3407172016429991,6.051099712777994,1.1681938754098626,0.0,0.0005585845807249273,2.3413013567762677,0.027790035591652884,0.0008783822246415679 -2004-01-18,0.012395396355117893,10.687799776997755,-4.117835534925436,1.3443637597396438,6.116429984515336,0.6976352051072456,0.0,0.00014195960763275714,2.1394497204558975,0.025067538309508707,0.000593400991681501 -2004-01-19,0.03305284000121322,10.62748250296858,-4.324243149249856,1.636114465472328,6.106614645524549,0.6209657132877693,0.0,0.00034276299362156343,1.927588822198796,0.022840147552652134,0.00043846688508951095 -2004-01-20,0.06309485094221086,10.854850133594393,-4.378286231294053,1.3749778134105497,6.188192106687225,0.6990677193775968,0.0,0.0006015544871107031,1.7567351146650345,0.021199786649727527,0.0003770168915624197 -2004-01-21,0.004700467785279102,11.244430952101824,-3.7315555164833,1.1482013420975177,6.285658491546105,0.3085729263606442,0.0,4.083891572847706e-5,1.628106844248856,0.01902109939358443,0.0002516386048384351 -2004-01-22,0.024180777343526045,11.038410240407725,-2.4940479832309235,1.599703819014833,6.116775344507345,0.292660234818436,0.0,0.00018934817431511333,1.4581589194468125,0.017268253577685706,0.00019263596147947286 -2004-01-23,0.03421969694592725,11.645497314783954,-2.315411569070086,1.1155507446813644,6.322102995480397,0.29683428059710876,0.0,0.0002450708463695439,1.328100178267921,0.01587010393774891,0.00016271261377776033 -2004-01-24,0.6516026260720553,9.485787646944232,-0.9634640296435608,1.0562545234039171,5.369980217155377,3.617103160289337,0.0,0.005351830122371171,1.2158548440798667,0.021754614822737172,0.0009208134617770352 -2004-01-25,0.9822839226678328,8.950146832384752,-1.1537823594665801,1.4620194564417053,5.192424483641233,8.406313020270003,0.0,0.011473879393704589,1.6966981836761674,0.031208327242803344,0.002346473924515916 -2004-01-26,0.6061813662037381,9.13734976844186,-4.116427901040499,0.8829372471583,5.565280491171184,8.029799491223292,0.0,0.008898301666963482,2.4416316509103115,0.03550495756867042,0.002882342122300448 -2004-01-27,2.274537154648881,7.970964994910733,-4.720290655867135,1.1607227853470703,5.207267057130592,33.527635578680915,0.0,0.047580866715892345,2.7581405798680367,0.058627287309774345,0.009121159112136084 -2004-01-28,0.03362672678195512,8.43487579519746,-5.702478093118062,1.4636572208467826,5.421212546373388,9.283988559793803,0.0,0.0008322241308788142,4.5828128921998905,0.053778395154136224,0.0060641643057375814 -2004-01-29,0.0036442572168136414,10.50308797954787,-6.8418788353427935,1.0474495608727807,6.148654064824784,4.2650903128035145,0.0,8.203095713991276e-5,4.187313495519914,0.04882181956290259,0.0039599763723650915 -2004-01-30,0.015199428457551569,11.30772355907992,-5.067240851302646,1.494737770244689,6.364960361448042,2.8002730446338298,0.0,0.00030642579183343295,3.749656314266825,0.04385801971676275,0.0026244163530968158 -2004-01-31,0.018773186637605764,12.427417208765107,-4.259894089516521,1.7489122892689386,6.719378811851112,1.948650577349454,0.0,0.00033845676102741556,3.354932859738938,0.03930139065394107,0.0017599067401212793 -2004-02-01,0.01541795120050256,12.673104248915806,-3.4182607911490113,1.7728490249509812,6.760220999833592,1.328100559764686,0.0,0.00024707292817534483,2.98631837852262,0.03496819536523683,0.0011832370754782876 -2004-02-02,0.054591225986569285,12.632183265411305,-2.8712699569805102,1.7838583225829059,6.708389767629354,1.2976861178964127,0.0,0.0007830294759116826,2.6552851320867283,0.031568224352831166,0.0008894595292470434 -2004-02-03,0.005168722661831078,11.777571984130963,-2.7318353598791845,1.802473546515628,6.385433093366173,0.6689516880075077,0.0,6.633151414001288e-5,2.399728661556665,0.02801542584936373,0.000589096301872623 -2004-02-04,0.025866524089599982,11.426428738293245,-5.102179891611255,1.4602836363652631,6.3977659349165625,0.5853651032934701,0.0,0.0002976818701455469,2.14309122278085,0.02526688886045684,0.0004288004673202572 -2004-02-05,1.0772398895722872,11.575955348734153,-5.274830538365137,1.0843062691224616,6.454107923306596,9.589817140441033,0.0,0.014225560863035946,1.9325176862982496,0.035061637450598565,0.0024451807435085194 -2004-02-06,1.87754650415335,8.995370589485699,-1.8128995310719973,1.0926368212515312,5.27589562283766,26.21665315062604,0.0,0.036430756773324635,2.678089530084954,0.053070074570091115,0.007138818643915745 -2004-02-07,1.226036009660528,6.680271153630921,-2.980601307231078,1.1771457531165228,4.580336162294945,27.334343740008734,0.0,0.03139758254691216,4.143565054841142,0.06255221592837146,0.009427781186001686 -2004-02-08,0.006653776359419144,8.628029516931946,-4.479473078467952,0.7420630691754296,5.394186711415912,8.241173700961896,0.0,0.00017743401528195687,4.946964670825139,0.05770630015394066,0.006164059396397028 -2004-02-09,0.07243890601025951,10.07110609296962,-3.556410005840916,0.7634895603719198,5.825421996866815,5.32755172775158,0.0,0.001765736860173367,4.495041159712746,0.05320804951571442,0.004281372478119375 -2004-02-10,0.10289146650161414,11.430451324966887,-2.392319563195168,1.0855493481529794,6.216215840929889,4.403162213060748,0.0,0.00230128825051186,4.111346415511747,0.049093017302894754,0.0031373773913837525 -2004-02-11,0.0009198156612115496,13.369914954500198,-2.3638150077781277,0.9489962430851616,6.921731636008165,2.1964131304102907,0.0,1.858773715254921e-5,3.765588709459144,0.043877273512356506,0.0020451154826280123 -2004-02-12,0.22768900964072145,12.191254818241232,-3.6124322200304784,0.5567810616513825,6.573242492329842,4.0812768629900695,0.0,0.0041914545395479175,3.320574484618531,0.04133486670564436,0.0019694849319708595 -2004-02-13,0.8747116749014716,8.526454088368263,-5.067101521336936,0.4685059864997477,5.387715109540718,12.517807435209376,0.0,0.016826374494256058,3.1495111451678355,0.04687947051578899,0.0038441062145051046 -2004-02-14,0.08755423095304299,11.235578091706207,-4.9555536838998115,0.9505929536823052,6.302051712244828,4.6313560428126905,0.0,0.0017363783354029105,3.653022343963341,0.04357518385446249,0.002766721725403071 -2004-02-15,0.024821746938845927,12.0871278290075,-2.3925853251421363,1.1200244810788773,6.442914564319608,2.269299959511377,0.0,0.0004455459324155843,3.3373426678066553,0.03916693846181762,0.001868846757491984 -2004-02-16,0.1870372456040248,12.108602283219366,-2.7659146685128952,1.0741182852357258,6.476700762069817,3.273467685072384,0.0,0.0030897776114149345,2.9919806983925707,0.0370334061104961,0.0016869956893651988 -2004-02-17,0.7401508717527719,12.416329282675585,-3.339518520421306,0.8580648796691359,6.623538527083446,9.560526106374924,0.0,0.012675612912400935,2.8273253884926515,0.041558682417856825,0.003028204225313575 -2004-02-18,0.04273793717450385,13.737358200501909,-2.8681016514107998,1.088857277346671,7.069500483945873,3.196609756736795,0.0,0.0007289803313106843,3.163481271706221,0.037350282424791686,0.0020822166496105277 -2004-02-19,0.06404963021911711,12.97446804795398,-0.968726948993514,1.7763233160257608,6.6335423641465505,2.0935348308230055,0.0,0.0009769390608491413,2.8190606237028653,0.03358628191969169,0.001504178578863331 -2004-02-20,0.19881162963313664,11.785029489980744,-2.26291264089699,1.4277716459258172,6.3081981101218245,2.8870759479542163,0.0,0.00282325333634309,2.556675531142202,0.03209955931515191,0.001409031586290177 -2004-02-21,0.011378672260857672,13.255970139428479,-3.5496105777661984,1.1349218661521179,6.924636413332732,1.1836411748391573,0.0,0.00014984014803456555,2.4588843033048904,0.028776890720798913,0.0009400287142886496 -2004-02-22,0.4007271275547051,13.506427538844676,-1.643461427859675,1.1983501505561387,6.88445107189932,3.9601522174116663,0.0,0.005092363974342318,2.1786036162248674,0.030047456356156757,0.0013873021552714012 -2004-02-23,0.254019108386268,13.459589208294087,-0.9481694683331032,1.6143174362903498,6.802240293731838,3.330525085109507,0.0,0.0032615232432818275,2.2764795204361303,0.029478595287643895,0.0013996835955332261 -2004-02-24,0.22162851887438065,14.491376728882306,-1.452232319472091,1.5508392718252009,7.230660251676006,2.9386830085600364,0.0,0.0027791690435651495,2.2369610970800227,0.02864090398691552,0.0013342977785821728 -2004-02-25,0.06117344174056761,15.95523012955016,-1.4337632804713152,1.5056322748614006,7.777681568198442,1.512179600499459,0.0,0.0007138930820664927,2.1554991446747365,0.025822734427072377,0.0009772659098128862 -2004-02-26,0.001065243142051444,17.071273096858597,-0.32003312578655296,1.2825615597018414,8.120262833639067,0.6981635405074659,0.0,1.0928591830574458e-5,1.9229194321666638,0.02241311848070366,0.0006378182153426433 -2004-02-27,0.03522671988583027,16.4700532621584,0.7808437251080843,1.7823540605721298,7.782429913084229,0.6253773179234269,0.0,0.0003145778035842442,1.6579809896730227,0.01972472311958208,0.0004630887985257635 -2004-02-28,0.09829252984783124,16.121592915452627,1.34228453646042,2.0901344038059206,7.580034875301676,0.8392445696418488,0.0,0.0007948619040996363,1.46896543159585,0.018257493851413835,0.0004224785099097964 -2004-02-29,0.028153786396002325,15.544549809072814,0.9329763691864301,1.9719644905250255,7.393063728676289,0.45760128958909346,0.0,0.000206750084837639,1.3651510848235269,0.016231058157141553,0.00030649440815756307 -2004-03-01,0.0,16.424776422287387,0.6196280527879549,2.2988687100603973,7.768823113655979,0.2151544953278018,0.0,2.886579864025407e-15,1.2181320328866485,0.01419041322345671,0.0001995134544738297 -2004-03-02,0.0007190067862136353,16.374016457714216,-1.0961274297163506,1.5937575717122228,7.889634984634546,0.1336757563523371,0.0,4.044740396077703e-6,1.0572687857193406,0.012324841278042009,0.00013048975320758706 -2004-03-03,0.005156392904672139,16.101752197890214,-0.6018543963826851,1.3300686181837225,7.7442331124408925,0.10170346031635247,0.0,2.5186419224402547e-5,0.9161540797880798,0.010732643064665997,8.87777007208395e-5 -2004-03-04,0.009864042351620113,16.422253518620124,0.4655752896191332,1.5300227006854832,7.770602096951036,0.08684280930892337,0.0,4.2203558864114046e-5,0.8001138086145337,0.009435693419718737,6.421622591955042e-5 -2004-03-05,0.06633937236343693,16.467444418853162,0.6312286430100895,1.2629105863713177,7.768187918371706,0.2139004281230482,0.0,0.0002595268041689913,0.7030918426604664,0.008963352570526786,8.131853478590593e-5 -2004-03-06,0.5131726047003906,16.880738256281735,2.256301292012515,1.190104322576126,7.749662179024072,1.71610137665133,0.0,0.002522632365185684,0.6679369271167543,0.013759126158870493,0.000437042588142641 -2004-03-07,0.8364462712214101,12.360295147607724,2.0541338298973417,0.8190845186903774,5.941161104491627,4.633760773463613,0.0,0.006432084350836864,1.0255334046341407,0.02169080222892959,0.001263874046254148 -2004-03-08,0.0,11.894713513700015,-1.5660819485771436,0.6591035966399649,6.231753306856093,1.2071477302447642,0.0,0.0,1.673623431749432,0.019496579546228965,0.0008227226020312763 -2004-03-09,0.0,16.687519302882286,-1.14704755964013,1.2896280457969658,7.9826941597327625,0.5650769620705289,0.0,0.0,1.4961261433137034,0.017428856343041144,0.0005355537459600654 -2004-03-10,0.003485093162062026,19.253408957544092,1.0577356653787982,1.8031812554774316,8.810414671738885,0.3662046433600357,0.0,2.4018561776807147e-5,1.292983027228118,0.015102975591059612,0.000352277498446111 -2004-03-11,0.020944784221988547,17.030274165272008,2.766562434050023,1.5880879020669498,7.724563936222069,0.3118136378564374,0.0,0.00012398711227802617,1.1022818952860631,0.013084830129669215,0.0002481949639283729 -2004-03-12,0.002468736236966209,18.079639991688214,2.577198838388855,1.4229321420461387,8.173450029188169,0.17724638152434563,0.0,1.2825826962838648e-5,0.9757738628357364,0.011395863780656098,0.0001635161779826631 -2004-03-13,0.0,18.38167365534756,1.8166411421353088,1.1113260892743753,8.375353363186715,0.10774747211817921,0.0,3.552713678800501e-15,0.8424088552343733,0.009813492656084888,0.00010644134660688945 -2004-03-14,0.11786523358145475,18.84388131652586,1.891800985450292,0.859382333959915,8.549396779650355,0.38916038333591363,0.0,0.0004895168457083182,0.7225853899845982,0.009790680583328805,0.0001438244851962394 -2004-03-15,2.5837219228309785,18.1288258296358,2.5477089626327274,1.3715111253521477,8.183145425682053,18.24100014740085,0.0,0.02773652563560436,0.7184228614946003,0.03846775041472263,0.004316918754555986 -2004-03-16,0.8290862716363011,17.820662570557264,3.3461066342055954,1.373334830028121,7.95137862751044,13.86562915360025,0.0,0.014457824505929806,2.8405609878366875,0.04274890536524691,0.005011528577756734 -2004-03-17,0.4965684991628977,18.466749354024405,2.6759285984838885,1.0840183032622417,8.296762936579485,10.169680831885886,0.0,0.009099936832617339,3.1707602662176213,0.042721896479231226,0.004647869376680309 -2004-03-18,0.00024551039525863507,19.32509155187949,3.253177519117996,1.4992004302987996,8.577108608963691,3.6287515338866236,0.0,4.137728346258933e-6,3.147134447330608,0.03666484499674246,0.00302617454462477 -2004-03-19,0.0015001087804668194,19.42443398557026,4.7751794625995725,1.886029087583431,8.412039151273754,2.0295778410672285,0.0,2.1554157998332968e-5,2.68644668349049,0.03131275976266785,0.001973179337317855 -2004-03-20,0.002588475741583947,17.759807915264197,4.417098698166937,1.7253621936312773,7.752100150266851,1.3094031494888403,0.0,3.184309611704156e-5,2.3022847210041495,0.026850211805024515,0.001289295590960898 -2004-03-21,0.0030003600839153786,19.61132724522885,4.832791659912234,1.5010312853479748,8.473763989026653,0.8623145397926103,0.0,3.2044517647957654e-5,2.0003715804303592,0.023337926356642554,0.0008441500840222417 -2004-03-22,0.0011543129033168838,19.50094033256102,5.646466730997346,1.7271667476824617,8.295819803731217,0.5584108508175891,0.0,1.0551055444423928e-5,1.7142900579604126,0.01998376516437462,0.0005511085837046813 -2004-03-23,0.15253292001859606,20.886100924639052,6.370695359611515,2.286784952466479,8.781103080715438,1.1820542420525404,0.0,0.0012591485448045503,1.473267190316293,0.018939470239299098,0.0005504697529970203 -2004-03-24,0.01348051861770708,21.724459664076754,7.169293107773192,2.5270032017665134,9.016823970614912,0.4965769772094531,0.0,9.974702506379898e-5,1.382911651833965,0.016267023102373924,0.0003735178952324821 -2004-03-25,0.08053058381606748,21.762285788159094,6.5242183475505495,2.2210224927757234,9.13368477734598,0.5968364292708084,0.0,0.0005239444747617839,1.18229284460715,0.014711037714952925,0.0003229208808699277 -2004-03-26,0.04733762023207863,21.738660301236656,6.020842682982002,2.157203702996101,9.194412770670843,0.4207757696377998,0.0,0.0002745821591375319,1.066755204120195,0.01297842690285599,0.0002520155062436776 -2004-03-27,0.0017378043905745555,20.751961959572714,5.6973797749607735,1.9107525208745852,8.807070098939075,0.18805014765553918,0.0,8.693694545898164e-6,0.9400262551986657,0.010970913500158318,0.0001653739932607514 -2004-03-28,0.03543593519641236,19.53573824186876,5.640610745129262,1.2936699653847474,8.282650350946017,0.2102507011735027,0.0,0.00015417140079471148,0.8008738609781854,0.00974244274852488,0.00013112557035087208 -2004-03-29,0.5022523786656745,18.671603484748847,5.586589220348859,1.2930704461429698,7.91147547701378,1.7864928318307087,0.0,0.0025902162022569675,0.718671763148691,0.01422293940155525,0.0004797552649620493 -2004-03-30,3.6401258596292365,17.769537181411582,4.8225172046962514,1.236506713755028,7.646075755674876,37.11002730495359,0.0,0.056098904895931945,1.0567318398125558,0.05471521132968623,0.008854185137861714 -2004-03-31,6.7304998126617175,16.590927593477318,2.1812832425280084,0.7503466441534001,7.532459231361492,187.2033510888253,0.0,0.27274920764512967,4.081254687102074,0.12594961784121497,0.04729375451423968 -2004-04-01,6.107459364070488,15.653816451874556,2.009776377890993,0.5475710456032672,7.175932091526813,321.62947088246557,0.0,0.42062128599399173,9.393278791539146,0.18057310189557355,0.09483181593323303 -2004-04-02,0.2844960266703153,16.55829686100382,3.0165380214491737,0.7067153901515792,7.401133923745817,101.47893407015346,0.0,0.02160715244267547,13.536689273961093,0.16100744858433247,0.06502106323494086 -2004-04-03,0.6541446157188107,17.227932238838118,3.509434596227538,0.5706828277080667,7.601739908998735,74.70665122091364,0.0,0.0446464727947431,12.024201651230273,0.14769414781067386,0.04912374121283387 -2004-04-04,1.7414975726549249,16.13585727748342,4.330447142415967,0.8633523430278808,7.013736134541327,109.23315746846083,0.0,0.11395887351911482,10.991024348218353,0.14832525748932956,0.049329168699789386 -2004-04-05,1.8143531861875992,17.47913466789387,3.9160859746503527,1.238041757465596,7.637797877295333,117.94930242384468,0.0,0.12095680700722511,11.16819831985705,0.1512379328281952,0.05052843109141215 -2004-04-06,5.158609292380993,17.598475869070548,2.6834703400638897,1.3501350053743408,7.84835828093185,299.39173557873954,0.0,0.3964172895491691,11.245098578670406,0.19109208755923854,0.09325202233540822 -2004-04-07,7.403554660035756,17.613043581236745,2.8954239875260988,1.0265034972578004,7.823260702002771,570.9206346365416,0.0,0.7449650026236796,14.125716136539817,0.25080142443929565,0.1741346105711966 -2004-04-08,4.052080267832477,14.065761071353409,3.7204916163861816,0.5711211015749217,6.23715503807637,468.00062593686175,0.0,0.47397890107794627,18.5008212799133,0.26272602945351603,0.18552373684451912 -2004-04-09,1.3489977226712773,15.666825633589875,4.235562810200793,1.2842085683346154,6.812259920078236,255.61301801411545,0.0,0.15905658688531243,20.00938830892814,0.24881073265619028,0.14498594813617635 -2004-04-10,0.3661705815901782,17.758571829907567,5.966345088396657,1.5851137720593242,7.391191164267523,131.57445854928096,0.0,0.03923026811493019,18.740234008854465,0.22257667398373807,0.10035242575888365 -2004-04-11,0.6730334300974239,18.451938877859696,6.25178192264403,1.435246936727171,7.637547965388631,110.26623066265174,0.0,0.06399498808720705,16.585606832932214,0.20105147093703235,0.07506889492709982 -2004-04-12,1.0652112530639384,19.07315849699225,6.0481633810277335,1.0116244600939417,7.94155866754545,112.89830186170214,0.0,0.09198622294108727,14.919806054664392,0.18621462604774977,0.06287258369725507 -2004-04-13,2.0312891237992607,18.705802375877788,5.603847470854144,0.6941072363410417,7.8539861877556465,155.72652364378482,0.0,0.16710728389807894,13.741792733529588,0.183745721580357,0.06637164959311644 -2004-04-14,3.673507674315224,16.184809371697778,6.152272187605687,0.5176906657599583,6.642596536202107,260.1814901493177,0.0,0.31665127552821115,13.585207870241957,0.2010523479158451,0.0914196589458877 -2004-04-15,8.113989012821479,16.140447355223934,4.182497286960832,0.9140952582112952,6.9959375704345605,658.7322880213574,0.0,0.8879879589209647,15.222548540120993,0.2718548582095978,0.19471918607291877 -2004-04-16,8.638197922474829,14.560177298305511,2.876430650863359,0.9353177256747982,6.554614370311574,988.0308470013628,0.0,1.2373572508390343,20.37969050140648,0.33803874825558744,0.3151589590155364 -2004-04-17,8.696261269327822,15.486124406796176,2.5430450786834946,0.7037700818078718,6.971949963270281,1285.8433129628338,0.0,1.5382309140640782,25.497668023201427,0.3983361189876884,0.43937205050732603 -2004-04-18,10.081027414614237,14.929665507703474,2.6162846006349483,0.3045798329019697,6.735169977336581,1767.2793230039886,0.0,2.122074256508359,29.691289420441937,0.4633205559878821,0.6091277089470903 -2004-04-19,0.05058075220757706,16.873969692044653,3.4668934875429653,0.7541350502529609,7.393373482254133,533.7646732348152,0.0,0.010585398713463742,34.5775155078137,0.4033938701266081,0.3981252928524441 -2004-04-20,0.4407704479422944,20.10168298486169,5.475007236301319,0.9584856161273314,8.440407080433156,320.9260300674329,0.0,0.0783580724265453,29.789087355575894,0.35215737074223885,0.27109202785403447 -2004-04-21,1.551152714938291,21.3215173249282,7.035164341386603,1.1805210148233038,8.715872641663843,336.96116605282367,0.0,0.23767673626459396,25.504103691801074,0.31517541441579655,0.212657963057218 -2004-04-22,0.5110592804139077,21.031354125685393,8.50723490740391,1.2628808865745242,8.306870730881327,196.77093297138987,0.0,0.06760753767090322,22.7406822140929,0.2708670415555435,0.14872458538968883 -2004-04-23,0.3015531554466185,20.954919496138498,9.259513433151296,1.5136487161420884,8.106197757632263,124.1148774372917,0.0,0.034125050779183985,19.761328371353887,0.23371898253417628,0.10200875813719629 -2004-04-24,0.12248739799704357,21.571381762700707,9.034439154039667,1.7637501015102168,8.43810635536508,76.50279506916378,0.0,0.011860893829576794,17.15344305407311,0.20125288992986126,0.06820890343996637 -2004-04-25,0.2269366173538752,21.145103102296225,8.702468298198257,1.308995956648635,8.305563375007132,57.50082732469158,0.0,0.01873063739467387,14.691262367818073,0.17378691507494531,0.04725280656844293 -2004-04-26,0.26329054022083925,21.156303899315432,8.020652620732262,0.6656714020195073,8.44177855733606,44.162452240754504,0.0,0.018756068912714474,12.736217660420696,0.15143546683660936,0.03361524476595081 -2004-04-27,2.0312963324724738,21.276436417352187,8.372907026028628,0.9897337416649296,8.423414128364685,111.65989647210704,0.0,0.1356322200429254,11.077641771912829,0.15271025110564077,0.04253395359668194 -2004-04-28,2.4903880754221173,19.00079926560669,8.003386194157223,1.1604625821501364,7.457246515036654,147.3384180412789,0.0,0.1709820941311473,11.174495391592178,0.15918663807551203,0.05372215441307807 -2004-04-29,0.2699854727151214,20.554424724089007,8.62586779955372,1.7021138587163083,8.032317571465375,57.19151466953466,0.0,0.017896853988349726,11.875632676925898,0.14148822602529793,0.037695657988206226 -2004-04-30,0.5611556985423322,21.210950598056947,8.972805460717305,1.7205538887904928,8.257654921202656,47.97351184675332,0.0,0.03305400175016915,10.440662386684517,0.1281637298944554,0.029571061721347658 -2004-05-01,2.7082214445240904,22.361575947860302,9.8638975334588,2.0661177356898808,8.599361080379008,126.05484136722325,0.0,0.16036156481694164,9.41927372178058,0.1412771055429187,0.043666788575004126 -2004-05-02,2.2203571768959938,21.527715632222577,9.945479746763848,2.0045224035542755,8.182471779375982,129.0885003342963,0.0,0.1396188709935844,10.305655470734306,0.14591956431102177,0.04968406269509149 -2004-05-03,1.6007060753842777,21.842557873285465,9.605183839717784,1.6734868894650357,8.4033124467196,107.62100740120555,0.0,0.101726806725559,10.733075239888034,0.14368019947452598,0.04783139877831192 -2004-05-04,5.786132082796347,20.506181780300654,9.741014544272415,0.7609777235688541,7.736689819746042,319.2031313598271,0.0,0.4309128825052779,10.52193892214402,0.189977982837523,0.09674884468450684 -2004-05-05,6.467516590835941,18.120935965055963,8.948775303985261,1.2315242398830624,6.793423628480764,500.3418795970965,0.0,0.6304933840988989,14.075991121061666,0.23931795209446213,0.15898088258194065 -2004-05-06,4.426777794762868,16.914272318703844,6.993979311564794,1.5191081909583768,6.705400901664427,475.4179839191651,0.0,0.5103684598862532,18.038938472775143,0.26171037998387753,0.18120022005333197 -2004-05-07,0.07562405445189281,18.385220816524154,6.303136198704118,1.3480202599607958,7.493459110726832,156.05340207336405,0.0,0.008497855438853855,19.74444404107354,0.23089037050118222,0.11924675087214592 -2004-05-08,0.002945213585321713,22.710822185154647,8.944113341157037,1.585594302001219,8.918922788267523,80.77604567196171,0.0,0.00028431381350322053,17.16321600389812,0.1999741526863157,0.07766732119869582 -2004-05-09,0.19210263904528904,22.14570412008557,10.33703218984985,1.7018370752384917,8.35811924746333,60.93999062209875,0.0,0.015567995353058667,14.453737641709845,0.17061412061889514,0.05292823301179526 -2004-05-10,8.775470648555624,21.444550165517715,10.831941025420749,1.4177966422797241,7.895907236172477,579.8603404394519,0.0,0.8335062632683687,12.491917603682527,0.24775067015336508,0.16136743387599736 -2004-05-11,6.723448329978846,20.027408198344894,10.54407782741214,1.0684542250646314,7.2732107333942695,696.9631826158679,0.0,0.8320006570250156,18.250862273168433,0.2909338050899069,0.23172700620356684 -2004-05-12,6.570741782500258,20.313947416464142,10.862625157871662,1.0822694080486672,7.324050286378047,824.3167454388067,0.0,0.9513645806478426,21.66705161890402,0.32895116955011805,0.2957027016010551 -2004-05-13,5.808565709592433,19.34814759170273,10.092046147914992,0.9652452358421234,7.056440647158539,859.2937783137569,0.0,0.9302086945025501,24.427397463640595,0.3522284941646565,0.3341265762496291 -2004-05-14,10.30063794916299,18.203504570472635,9.873541767782084,0.9338713382645828,6.550976699259907,1538.397420279934,0.0,1.9325318432212768,26.27238060885405,0.42605089773195887,0.511757219245603 -2004-05-15,3.232131821863818,19.23201283427265,10.1857754712315,0.7260479917035717,6.967589196367648,876.9640970285775,0.0,0.6541043701701894,31.994241032270498,0.4103633872751456,0.43272695045757503 -2004-05-16,9.981512968343994,20.833298268192106,10.77694236285901,0.6262278717865665,7.590840349701882,1739.3022618040957,0.0,2.159566902553104,30.569714917544566,0.47239434222551646,0.6105108703664536 -2004-05-17,28.595500365591768,18.926093319948254,10.882136767436204,0.403654268229,6.604228929537072,6555.8205296202395,0.0,9.23018866283899,34.577037414223774,0.7359172825836281,1.8028464623382705 -2004-05-18,26.29980875263577,17.075047193544215,10.001540779696107,0.3944524866821894,5.932004156627073,10433.672833741737,0.0,13.340719131595712,53.660016828844846,0.9314778165613834,3.204889880892926 -2004-05-19,13.407962777843387,14.739877530500145,7.364726165433941,0.30231720488343233,5.574445205896391,7974.055075824876,0.0,7.764392100572238,65.99341051257093,0.9249722255729931,3.268476081838283 -2004-05-20,5.801471963886526,16.065938017440345,8.331089105681423,0.7693552290218758,5.933234875891243,4640.092033805948,0.0,3.0611777183448075,66.38033693498251,0.8408691897414787,2.5937338407156822 -2004-05-21,2.3749876076346226,19.976545727080158,10.059895703079158,1.294324116605835,7.346776157781181,2596.7480225672616,0.0,1.0593888442090176,61.209797693949234,0.7407196870244468,1.84970642649633 -2004-05-22,0.07599285721365208,19.67690250418255,10.990233702839596,0.984340052680896,6.939541596616522,1299.2733120332923,0.0,0.026923972674484722,52.976520385891114,0.6180258503493604,1.2081715200294887 -2004-05-23,1.2429625509306264,21.145032545259426,11.241710371894746,1.2181557245178178,7.5990728573631365,1032.9630184216642,0.0,0.3661261391029442,45.346242485651324,0.5427326869114262,0.842210988868068 -2004-05-24,0.3691977309469158,21.28486070263192,11.68218383004476,0.9393693254098969,7.543985175575592,629.279820810554,0.0,0.0908081929761983,39.497324959111204,0.46441799039930526,0.562066658709443 -2004-05-25,1.966739064551157,21.507232369249973,12.177666046757073,1.7845551571236458,7.5111296868372905,645.5775664071266,0.0,0.41754743637208347,34.047806425856166,0.41954506471090836,0.42945674322348126 -2004-05-26,5.162864296379217,20.474467514505857,11.194950423748406,1.4200262121037308,7.270536255761909,983.3297275635691,0.0,1.0394780669941586,30.87237555104794,0.4197861399552801,0.4378320470833983 -2004-05-27,4.217685927172523,21.001465802843143,11.67562018733226,1.234212334005505,7.395350829887002,896.2417270620967,0.0,0.8404748403990165,31.05100134920789,0.4108563216375734,0.41298279517095665 -2004-05-28,6.2436242865738665,21.37348514817924,12.629532983986099,1.7899204218653268,7.297578293690757,1143.502282108869,0.0,1.257012412091517,30.325191639371038,0.4260019399144812,0.46023109881138463 -2004-05-29,6.148861901824469,19.619550951200505,12.744750050099022,1.1266817491154577,6.316381820699984,1216.295701664214,0.0,1.2854616969251547,31.48024166966092,0.43835357292284294,0.495319347702833 -2004-05-30,4.504558658971041,20.29849915915717,12.027258894081509,0.9858073847938428,6.922157867345477,1033.6226873405387,0.0,0.9655524572854315,33.06102089288584,0.43761356111475735,0.46944924088990575 -2004-05-31,6.698809472274752,18.779048877170137,11.864874350631515,0.7502032099336111,6.170292365798086,1325.1823660235655,0.0,1.4656798671490483,32.57886050498056,0.457558255085865,0.5287608036886476 -2004-06-01,2.0475714814061576,18.794110890793906,12.130015834920435,0.6844899147289839,6.081501076418276,723.3178663792568,0.0,0.4430084235248679,34.58004277152791,0.4266869006037153,0.41165300840446656 -2004-06-02,5.43518937545294,19.60811915588992,12.305809440623472,1.3316200785927732,6.4589166652015875,1055.860613315359,0.0,1.156271141706811,32.36352130714791,0.44032938090374113,0.4440261234786596 -2004-06-03,3.1668853286881364,19.778178498350943,11.954349487859695,1.0021521826590776,6.66575954013798,792.7808333076817,0.0,0.6647577057608323,33.10483613389183,0.42254099061856704,0.3902593181981739 -2004-06-04,2.4121745206564458,18.50812068295617,11.388173131413653,0.6723321874287173,6.183762192204077,608.6692536156976,0.0,0.4756873260480279,31.659045807668583,0.3969066426573157,0.32647089658835526 -2004-06-05,8.60994214071358,18.786597977431573,11.147375922938215,0.6230272896570554,6.407300680851805,1413.4208648085557,0.0,1.7910303741247464,30.08571847853963,0.45077824022130464,0.4852280425587935 -2004-06-06,7.282437385355852,18.219576908771245,10.648257510479796,0.386578667712834,6.273401349503422,1518.5321127503028,0.0,1.6784484963568111,33.90742465133919,0.4798339975780481,0.5714292289588303 -2004-06-07,5.250162010209008,17.524866853414533,10.27343034448131,0.35515396603275673,6.036119404730816,1297.9991753621207,0.0,1.25603639781127,36.13431825042458,0.4821011680849747,0.5632236676322612 -2004-06-08,1.7058573791872087,18.914082846461838,11.247600702931594,0.8018584163368802,6.436311258942962,702.4860273688594,0.0,0.39030310836813786,36.48781789286582,0.4449304508876554,0.42606155023893466 -2004-06-09,3.173649733276213,19.799213218305177,12.033758519536292,0.6963155392817667,6.640847654568959,746.5101046944691,0.0,0.674149767273454,33.45809397278652,0.4267350059360608,0.379995305466492 -2004-06-10,10.714578742291943,20.30962222769924,12.498785645715454,0.9126821647745854,6.755097975964869,1892.6786381469192,0.0,2.455526222902991,31.982697151021913,0.49739434813667754,0.6212492265386507 -2004-06-11,3.2285612240022834,20.731454708251654,12.683717577035546,0.9612010559265765,6.916150013910313,1052.481353052741,0.0,0.7692351317546828,37.02029732461472,0.46887194422091083,0.5215314603371114 -2004-06-12,4.4606743859749205,20.36948570601134,12.39098712298888,0.5537870629839681,6.819649731085025,1056.5186401767016,0.0,1.012191030656611,34.841283351312185,0.4578411910417536,0.4936135060240723 -2004-06-13,2.098517702404791,20.668501811324642,11.879063856033753,0.5110949183571982,7.13419175021736,676.5443011875117,0.0,0.4475392975835386,34.11765946942842,0.421893937247815,0.3894636620569924 -2004-06-14,2.482439853955857,21.33060915012095,11.942990702086663,0.7695629949143191,7.450163715046233,600.3983266029213,0.0,0.48392364152189105,31.29492603878558,0.3934834374907992,0.32720706254070403 -2004-06-15,6.521335412029263,21.687164769907028,12.198097112981989,0.5387685951884928,7.555535201158559,1067.3602609365723,0.0,1.2613584431201161,29.038871991882875,0.414252333696157,0.40505687575571864 -2004-06-16,17.406796517442686,21.90638896732784,13.264887605032206,0.5934380208789816,7.3424646054431,3105.0569261166015,0.0,4.23405844698555,30.463703155540443,0.5576589016900038,0.9083709359383285 -2004-06-17,15.828761289609751,19.4596604386347,12.78486719592665,1.059215143619446,6.185253029062442,4132.1446409218315,0.0,5.035520214798559,40.768592838382844,0.6593208459737331,1.3580391273483277 -2004-06-18,6.8948646851159525,19.432244214012727,12.999941369473973,1.0346728636352804,6.087780258998153,2771.091060593849,0.0,2.4120639800070593,49.03418432286479,0.6515355439241297,1.2512920179837352 -2004-06-19,3.112700751903658,18.507101378341595,12.921873504431105,0.9916093600823462,5.588380445855469,1648.0078759389837,0.0,1.0253229510562871,48.60612606044647,0.602489306648037,0.9706528591820308 -2004-06-20,4.357160997801607,19.563949975058325,13.281361639739444,1.285369901752814,6.051480889340644,1586.0353779956995,0.0,1.3507759397990426,45.67304453988416,0.582818012388889,0.837524982233836 -2004-06-21,5.338596503159262,19.048154851650605,13.244460397756985,1.4314481801296093,5.768638000324135,1670.3711153240017,0.0,1.5942748321368638,43.78697299215942,0.5722796151450362,0.7879412948720826 -2004-06-22,3.633872699735608,20.286278419599572,13.513720550362619,1.6958646011335934,6.36924909163744,1295.0902162619004,0.0,1.046031537585971,43.306918244411776,0.5468284246288512,0.6721865041434896 -2004-06-23,0.04991188636249013,19.74437801639769,13.09821935398912,1.4702430524805883,6.221889485903317,514.1001221882943,0.0,0.012742428504746849,40.903894866754214,0.47708411338887774,0.4395020444130399 -2004-06-24,1.9180972038151989,21.320930267496433,13.212812892801912,1.5739216546590908,7.041410628471177,575.000407175808,0.0,0.43321805059885143,35.97362607143785,0.4414129146169068,0.35205902236842673 -2004-06-25,5.341537560587354,22.67305636933465,13.993608021499286,1.6113692931111767,7.506250122607296,1005.8570293784016,0.0,1.1498917621522677,32.769197737591135,0.44396425636173587,0.4042618847080001 -2004-06-26,17.829703926917905,23.00071008836246,14.366115306892574,1.3169408153023079,7.558852353370573,3373.435885993791,0.0,4.656118815913416,32.62101798515701,0.5877167433627973,0.9721183603177491 -2004-06-27,14.19114005542358,22.675684006915827,14.366645312039592,1.0931257750660828,7.38157788882208,3937.0627009282566,0.0,4.636690235180756,42.63291104836302,0.6619617122149744,1.338807948254063 -2004-06-28,5.407409183854512,21.83887512847025,14.287018305567017,0.8353024110468271,6.948093904145402,2336.808181057149,0.0,1.7989966008041174,47.829739872447966,0.6201767325315781,1.1454248590472282 -2004-06-29,3.5282626214414825,20.88738800664617,14.24275097706085,0.8612930468376279,6.426668985665233,1575.1013767766913,0.0,1.076193484943905,45.48506246258933,0.5709720437691945,0.9094841047559563 -2004-06-30,1.8564930059468772,22.796446391410974,14.870062894695954,0.6791078780847635,7.270695374941588,997.4733142344571,0.0,0.5106083824241061,42.5736443913699,0.5175810111066599,0.6697790757878921 -2004-07-01,6.081710744258197,23.584912489102358,14.47638674681099,0.4596467533389269,7.83587716218738,1490.0181167331725,0.0,1.5598716788898992,38.0264200897221,0.5138298527173828,0.6735082055202795 -2004-07-02,1.7813951384258717,23.232544448742317,14.020233531562605,0.607652843868777,7.7938146761074085,804.8441734061264,0.0,0.41839870654380484,37.2847857863362,0.4550945508517644,0.5021295709039327 -2004-07-03,3.5769328802876648,22.74141791349605,14.187538302261991,1.0345571590065241,7.476740341712188,853.7655705884061,0.0,0.7584905476764203,33.20272652950565,0.42845812371107017,0.44235414148911034 -2004-07-04,2.617190292133741,22.587735915645105,13.809602125383782,1.263708561246473,7.518663622481977,671.1692419519663,0.0,0.5157169626252651,31.53393033204335,0.39783742699284486,0.36647728161316007 -2004-07-05,6.1113303335593425,21.53072208492372,13.853843801092262,1.0030253677146734,6.93245984851777,1045.92859536117,0.0,1.1847095351636607,29.309373035667598,0.4126272061688633,0.4189490141154669 -2004-07-06,3.8330601551341736,21.406803223607454,14.597498885870651,1.1421579705833649,6.586182354586713,834.520096275047,0.0,0.7509431111614084,30.757499618845706,0.40295659548518703,0.38705829979973194 -2004-07-07,8.793964030522895,19.354294611761926,13.746248311064177,1.1178943645039354,5.734896066687366,1507.4195517711307,0.0,1.846823452786504,30.275807428827157,0.4551363781480845,0.5331629148882517 -2004-07-08,9.399145509900977,19.39194837248075,13.231261352043939,1.0194198228702784,5.969346598835621,1958.3239549277885,0.0,2.2968625931352395,34.72474573199014,0.5140134507960695,0.6967952598547767 -2004-07-09,12.870848765790491,18.4287738518226,12.346072487104106,1.0040990469479856,5.77107205861198,3034.309101007283,0.0,3.7336320004030483,38.88200550492276,0.6028857034934368,1.0220815930857625 -2004-07-10,11.638742685009355,18.637825291476293,13.058292624406517,1.2153305531672145,5.604313771153459,3479.3195090224604,0.0,3.9595918264619314,45.51100963198672,0.6657559107731315,1.268233429140515 -2004-07-11,13.589691978139866,18.324518157565734,12.945262076509847,0.9114918836706176,5.468364621654734,4554.953388135421,0.0,5.3307535110253905,50.16624970136196,0.7427135429143791,1.6372463276616969 -2004-07-12,6.003756068673616,19.50133361558164,12.704278580548197,0.5331623804671642,6.233465652857962,2992.834851476855,0.0,2.4478158510742096,55.65650819919712,0.7183003203315717,1.438486533174896 -2004-07-13,6.225511356257164,19.113283852397338,13.037625034481044,0.601426886824194,5.889203398656071,2660.8233130203816,0.0,2.3840630016216258,52.988672295063054,0.6898051377161994,1.2993959355364415 -2004-07-14,11.40882164809211,19.643440348408856,13.435597200068171,0.8376805484290964,6.035102168128031,3934.1580427980603,0.0,4.496687487094841,51.494038972659894,0.7327757263149115,1.530532781045319 -2004-07-15,8.431115564080095,19.6059184266411,13.487547004939715,1.0436472945597268,5.993393980546949,3503.3597395433044,0.0,3.4210002992435804,54.21650672122668,0.729802372562895,1.5172027387670592 -2004-07-16,0.6141137324811603,21.12481961260089,13.402778124424055,1.3439179258347418,6.874609370292211,1354.0037010683243,0.0,0.22517868699803012,54.07408697258551,0.6370805015390698,1.0219144560260427 -2004-07-17,2.7579104012594295,21.448661877711906,13.443290371523602,1.4243089021093311,7.036891855425607,1257.0945832475575,0.0,0.8605626600007805,46.72353175133798,0.5764252905934912,0.7962516588073087 -2004-07-18,1.5741488448876235,21.832946885505546,13.088398485446234,1.1855559624369627,7.358707382686716,850.3374958736302,0.0,0.42867407117423495,42.365733696817536,0.5118698740557369,0.5835943661124766 -2004-07-19,0.8226364225433106,21.558060819819183,13.982268742094766,1.3214618976403862,6.910474291695678,534.1044526115187,0.0,0.1919176510037549,37.54939916107862,0.4470082277258767,0.4091148009323306 -2004-07-20,17.87584404555093,22.07783521226233,14.488284758004365,1.2614592097989072,7.01760762712983,3389.2122937081353,0.0,4.760163426691079,33.267373822968466,0.5957838522739991,0.9911197097148917 -2004-07-21,19.584308082207688,20.70855213812375,14.306254623995953,0.9366721038300092,6.307905174544354,5545.011518190298,0.0,7.0765112914748265,43.72986713967664,0.7375672628621259,1.722675732481852 -2004-07-22,17.3338772375885,20.847993022087692,14.519224457304507,0.5532042090562796,6.3040056196944425,6694.304040857461,0.0,7.870020639085087,54.165889387344265,0.8329238591519149,2.3197078407065606 -2004-07-23,15.134044251617127,19.803197151580967,14.057292397523286,0.4288236254514658,5.880279740612114,7049.271424782669,0.0,7.730143252657669,60.13995624858334,0.8768911277616229,2.687049284186132 -2004-07-24,7.848826030950378,21.446092870991137,14.157737166886331,0.6303163695439139,6.790234243277757,4812.65255310192,0.0,3.9461247836963276,63.35427305394713,0.8294678832236649,2.349998586358247 -2004-07-25,6.644647656764879,21.5982042173142,14.052677141436439,0.4625346270978126,6.914985507143097,3737.8343785367197,0.0,2.9731669342231273,59.16660788775768,0.7666565575147166,1.9824472175513488 -2004-07-26,2.6673025346075225,21.98701619391285,13.664437460491555,0.41033152365118897,7.263943565575311,2156.8491983235476,0.0,1.0316049496702324,55.193468326999096,0.6740387952923528,1.4475570568979124 -2004-07-27,1.932542614804611,22.962050778745073,13.8028700425349,0.5988055346928959,7.7411165251021234,1427.8993499162964,0.0,0.6294552337717154,48.76767444442318,0.5906231928606869,1.0381354670231824 -2004-07-28,3.6135799397779267,21.97476861554566,13.530055735759694,0.6260152770286069,7.30533269287902,1384.8586121051328,0.0,1.0210833663494214,42.65006018113794,0.5389400761273442,0.8312524234624064 -2004-07-29,2.4159047800223274,22.252253085807038,13.117064929030562,0.6890784362019844,7.585478724054237,1003.7764118046623,0.0,0.6127479754226894,39.49664735575819,0.48825284780253614,0.634406190077647 -2004-07-30,11.105942133884957,23.00529261811252,13.521660932058248,0.6765209477819298,7.856832294973113,2326.7255336473117,0.0,2.8678699609098555,35.700309064390076,0.5452611277042451,0.8496441806961772 -2004-07-31,14.766247033960216,21.17175241338612,14.191423076532477,0.83697901588574,6.633554144750753,3640.575971928826,0.0,4.467047865199458,39.43963505344743,0.6314618162856094,1.2332524566827094 -2004-08-01,7.8758096727208615,21.601768883273035,14.533159592407074,0.6572104959988091,6.74977694908007,2787.7979486498466,0.0,2.6220918985046486,46.6021233633244,0.6346310255952544,1.2020416136477319 -2004-08-02,7.2715297739691565,21.45522570146028,14.31223201908565,0.8132530322518178,6.752309389498744,2527.980793798437,0.0,2.4073279623441834,46.69305092235529,0.6286508184968466,1.1490238397943293 -2004-08-03,6.36779933370206,21.76411283294869,14.334750948378439,0.8869811736330374,6.920283908001996,2246.7941623518363,0.0,2.0606673076879938,46.27876642414272,0.6132968370672688,1.0617275550277447 -2004-08-04,17.936927475764413,20.55762135184646,13.640996217918966,0.9998962523706362,6.502156166521177,5103.743217030355,0.0,6.554091823398352,45.040765106575286,0.7336474679887061,1.689092039593604 -2004-08-05,1.3794300105570814,22.114234968463144,14.413530315222884,1.024401668843941,7.091896247370559,1819.6879919439477,0.0,0.5052700994059351,53.64844244494004,0.6410374473945372,1.1764543673433063 -2004-08-06,6.206800537000356,22.113028773737426,13.749547262166539,0.3329828126036545,7.324899804105541,2150.7108078726637,0.0,2.0292496324813323,46.75268826664247,0.6169421786288843,1.0747997340497735 -2004-08-07,8.244926519446656,21.70561416066121,14.10889549022298,0.4904277369702726,6.978584221012851,2543.6325907813007,0.0,2.6362016785471436,44.86476792455088,0.6186919726147434,1.1010447609442238 -2004-08-08,14.265348370094078,21.906463256595792,14.263127677723212,0.969691337215642,7.03706694127085,4148.053867266445,0.0,5.00431657987588,45.35061519031304,0.6944856015582964,1.4787095173750424 -2004-08-09,8.987725178344979,21.661177435860647,14.140802269393296,0.9157626723711968,6.9468057049119745,3448.515075518003,0.0,3.342191111813042,50.39177226544335,0.6917309314424347,1.4714683667916502 -2004-08-10,2.8624411969470147,21.878136442342655,13.748541169478404,1.1453493941667592,7.20744190012928,1816.566150344989,0.0,0.9822670196510233,50.32048636929774,0.6195450888930086,1.1074214123540438 -2004-08-11,0.2301045946566157,23.42873912197001,14.015499874168372,0.794833397788659,7.956311748674725,837.7470330175499,0.0,0.06651207340611565,45.16618984479417,0.5288360863337227,0.7310067363824062 -2004-08-12,0.03085078602030225,23.698352274522676,14.305081727011776,1.3582480285068863,8.011584545865363,489.89592819472904,0.0,0.007259218607316625,38.220357108838755,0.4456006669803331,0.47695635134035763 -2004-08-13,5.764996409661776,24.19574995247455,14.615287240475777,1.071900104832478,8.182792164897661,1117.4755049398564,0.0,1.2337286548947217,32.37599143822725,0.44431667807782715,0.49832958112079156 -2004-08-14,4.22238015414756,21.410816664135886,14.011026657820794,0.5611484075584877,6.866490895993058,967.0740075375825,0.0,0.874175354242622,32.16375212694411,0.4238737991714031,0.45749524752917675 -2004-08-15,9.42183841834474,21.170923329503005,13.535159586350625,0.32838018612760445,6.907452407937738,1719.2881636530303,0.0,2.089926600142446,31.619912844988583,0.47810860737394356,0.6160301028251255 -2004-08-16,9.596693205329501,21.458839547679347,13.31794669767744,0.2283521279984196,7.142215807283038,2100.0138089837496,0.0,2.4087497663589517,35.51253876040375,0.5254920029232024,0.7677743794551102 -2004-08-17,8.209322430946822,21.055078849917873,13.457983735528217,0.2789027969641387,6.8764164029798005,2096.2834858271385,0.0,2.215319022210183,38.69516206249443,0.5464054790660651,0.8371000832479473 -2004-08-18,7.219945905406849,21.98681272532063,13.799944225319436,0.7599268537607023,7.270948389934758,2002.0733225868196,0.0,2.016481373157287,40.40945558750137,0.5548502711718661,0.8519518886498921 -2004-08-19,4.5848504643528,21.015078763746875,14.053032345890136,0.4836911356598513,6.640252208469482,1492.9046872457188,0.0,1.241055022471481,40.63949395569449,0.5268329850579646,0.7435495988136427 -2004-08-20,2.568129887615164,21.41025458231564,14.137982440240783,0.9426227411445622,6.8355427449946795,988.7874306163133,0.0,0.6476577527341543,39.22852644112548,0.48690274013903057,0.5826313025752383 -2004-08-21,4.693768819128807,23.768615117038692,14.70792652428834,0.9468411059068664,7.947293429346504,1151.7427419485434,0.0,1.1155520197727293,36.20135937472709,0.4764005479125683,0.5491248691536904 -2004-08-22,4.502544258382028,23.47173438301296,14.913327925232089,1.1761079411958766,7.7176580091974,1087.8842871277218,0.0,1.0140570257500672,34.584876504049866,0.45534198057629083,0.5118596435924204 -2004-08-23,3.843295662574781,23.89236500092285,14.909202765180044,1.068751394919218,7.954844798272965,933.2743256849872,0.0,0.8206008193915286,33.276054871325634,0.4324152952567501,0.4581451679077679 -2004-08-24,5.993971230811222,22.57089669545089,14.977361247490945,0.8994945641730695,7.193724617746515,1167.2886936027674,0.0,1.25003683947359,31.486174995559658,0.43661832073114504,0.48856754685164183 -2004-08-25,4.9625229472208705,22.56706736592176,14.425310189025293,1.1794556260251765,7.395601349246279,1077.6334772126304,0.0,1.0457090417085357,32.315996732471184,0.43426950801056424,0.4772591599868298 -2004-08-26,6.6617404049972,22.66471014565991,14.598647087578904,1.0900862981920023,7.39199572432705,1311.048560470689,0.0,1.4295752146134326,32.00616852504654,0.45045495183638457,0.5283472272388281 -2004-08-27,5.9293283646568655,21.902244428145533,14.300697656434034,0.9891445469530028,7.074829060696787,1284.8608182576165,0.0,1.3057130334597682,33.16642459494359,0.45543904503046256,0.5427433110076043 -2004-08-28,8.208427907390371,21.70203397749104,14.521255290041386,0.7789167068957468,6.881409698134104,1684.022328318349,0.0,1.910850007478162,33.75562042138074,0.4888527435759357,0.6442555287929822 -2004-08-29,5.0437880303449845,22.52194322240335,14.889047415908985,0.7157505253590396,7.215483883335922,1326.3467465678405,0.0,1.2091224515585992,36.304761078217986,0.4816825944971275,0.6034868246204186 -2004-08-30,3.673502156980753,23.203412057339577,14.843297520213294,0.9192526783804644,7.620802890247268,1021.4762935787313,0.0,0.8412536676240698,35.527248833154474,0.45666220097802157,0.5209348575234936 -2004-08-31,11.430286432235787,22.372521037076663,14.5166861821745,0.8945116017913242,7.27481515650243,2204.8456543525763,0.0,2.7722221331065082,33.44074636558165,0.5227171439334106,0.7612158815858068 -2004-09-01,10.46454953601807,22.29955082591039,14.858921734172045,0.8826738636241449,7.109751412031693,2549.804786835046,0.0,2.892223241530184,38.38468554600233,0.5690605063729997,0.9358994765533208 -2004-09-02,6.937051449574133,23.129346059997363,14.928586477415688,0.916899231622823,7.560116675136798,2099.3935474983286,0.0,2.0049584151248947,41.782059605087746,0.5675446495786077,0.9145111095333036 -2004-09-03,3.620235110159341,23.21295680173646,14.887807018504528,0.8710891507377825,7.625496971551486,1367.735664482092,0.0,0.9833631755912422,41.24785054392647,0.5226828117048412,0.7450353208051532 -2004-09-04,4.32271011054492,22.395292511207934,14.873450386516565,0.8711894393091822,7.17007912417556,1258.4005133115413,0.0,1.0815532046957035,38.080034494338435,0.49396325809288183,0.6496654301789957 -2004-09-05,5.271690651461004,23.15069764833468,15.141825101296927,0.9881011907556851,7.50635918133045,1322.5093150668201,0.0,1.2733929206588108,36.437595029719574,0.4858849312652746,0.616794544533284 -2004-09-06,32.23388591107886,22.35758765361443,14.29292646655276,1.0032939081330636,7.368886331809163,7831.8813481555935,0.0,11.253458868482141,35.59606798692493,0.7901730262028659,2.115009617083688 -2004-09-07,27.115290199012605,19.550398377100436,13.179189978302196,0.6485995452135822,6.197468090568884,11714.915100603503,0.0,14.817249857452389,55.98179681121594,0.9680247875481386,3.63291703848347 -2004-09-08,6.796436614633602,18.319600961200887,11.240264119893567,0.15943726879828587,6.2330379385201,5678.195958620562,0.0,3.6787940699606265,66.89022710010245,0.8583997292084176,2.9250089882292603 -2004-09-09,1.5759331954667968,18.17367660517279,10.911795030247095,0.17570593100880208,6.270255917490919,2647.433744272034,0.0,0.7048294320781363,61.722417719598376,0.7373829204044315,2.0113640692599803 -2004-09-10,3.3134959965832063,17.170186449357598,10.505093669075196,0.20638244643265385,5.879272566984733,2194.6873170370677,0.0,1.2607383921286508,54.20458881845469,0.6700467349282565,1.5012695198273056 -2004-09-11,5.823725578016777,16.057117313086128,10.376953138333606,0.3960657288794224,5.323918643220273,2404.759174951301,0.0,2.0664412331010595,50.13892746062743,0.6519270081235877,1.2919021026234931 -2004-09-12,6.390668699571596,16.37443273819217,9.277420933994113,0.7079608051533811,5.879138295782668,2435.535283067761,0.0,2.2484285660288537,49.5149943003663,0.6512631127682157,1.1833240141949681 -2004-09-13,13.321986538516716,18.12887886161227,8.758746067203013,0.4450929466924011,6.895427721829639,4201.2900594691355,0.0,5.03780792423729,48.82666963116506,0.7239897552323723,1.5373689960566657 -2004-09-14,4.424997901911267,19.093964536210596,9.222001490452383,0.5333071862819025,7.243436685784262,2372.7505345477007,0.0,1.6366142355216535,52.501140520927656,0.6631509603449939,1.249953654839391 -2004-09-15,5.759500454016718,20.00281033910456,10.292097339051336,0.6847996344879366,7.410571721942748,2197.0877465478143,0.0,1.9368743386528786,48.06804683167083,0.6270544720665263,1.1085788126151657 -2004-09-16,14.027186723439193,19.785258191941843,11.471182271063721,0.9709723211891508,6.960921688927815,4056.042620609494,0.0,4.918851268162655,45.45902438264976,0.6929740733381828,1.4706004746412469 -2004-09-17,3.2050668382583183,19.958517145891268,12.085761500988891,0.6972309775518883,6.857322051573418,1974.6583180066798,0.0,1.106535915444205,50.38547402612153,0.6242935077669513,1.125778230540361 -2004-09-18,2.857314674673156,20.27726528691074,12.339680541614936,0.7764318898974109,6.947706270172767,1389.5985234709356,0.0,0.8725297626677966,45.86528660660048,0.5675853083549366,0.8656842625875147 -2004-09-19,1.6104322321059004,19.327570573927147,11.103826493649569,0.5065727574258593,6.8491458332867445,902.8383391736829,0.0,0.43215827759306813,41.83382968591217,0.506096229440612,0.6293222497397999 -2004-09-20,3.1508985907380467,19.844778996854593,11.594844616825386,0.3669908787169619,6.968756108482093,937.1385322165884,0.0,0.7625007470111971,37.56647262386484,0.4743297994872304,0.5257612094459873 -2004-09-21,0.8470786693670445,19.756097259693924,11.84015019572468,0.5925642611669613,6.846101469461698,508.44777966348653,0.0,0.18334176746896103,35.193424272954225,0.41984745144645297,0.3701623291427389 -2004-09-22,2.76477369210196,20.421110866666414,12.31164003599272,1.0333679777299267,7.050525427490139,609.553878891961,0.0,0.5425282591829395,31.34064595246122,0.39730504153057167,0.3235662207699484 -2004-09-23,5.561038166482413,21.255832798304485,12.509655462352793,1.241942728970422,7.437026286112017,946.852240628588,0.0,1.0772407851382022,29.566493856076907,0.4092119585256072,0.37465222551959454 -2004-09-24,9.384110701336324,20.59520830148684,12.210791686236409,0.8911478283403026,7.185030991366406,1605.0566164582954,0.0,1.9842250369971648,30.17968339670975,0.46089140732027223,0.5460085646209437 -2004-09-25,8.442749983932579,20.77265966135129,12.482352157882804,0.6160406494298113,7.195666228864586,1776.6614459857276,0.0,1.991829579583687,34.065239831222335,0.49518929351697616,0.658711391577245 -2004-09-26,9.42672747494007,20.744568504719588,12.115116354921485,0.4768550359891227,7.303474040898695,2141.1986177221547,0.0,2.4304226592250124,36.50403137285643,0.535062234733813,0.7988579105205549 -2004-09-27,0.981274696459275,20.93290703378449,11.86688126336488,0.5441499644304649,7.4837578835317355,828.3248518985484,0.0,0.2416164499332626,39.22669174822947,0.4683955789036443,0.5568086272833338 -2004-09-28,4.690161367991483,20.364592271642152,11.855588194967465,0.8750715226849666,7.192980946953636,1075.465681201427,0.0,1.0524380719876847,34.37543579561907,0.45508775042969174,0.5227054902837672 -2004-09-29,1.0451320857893585,20.506160837753626,11.112464253084932,1.1257078124226207,7.495025521222179,543.9077403625461,0.0,0.21552717659506726,33.64340322557775,0.404097944143444,0.3730739035953178 -2004-09-30,1.6206085727495083,20.674787827170416,10.21209386871899,0.5778208832963164,7.828490312147865,452.48251188461904,0.0,0.29438100144528545,29.774507727513328,0.3657318430773647,0.2876774330717296 -2004-10-01,3.235272459269774,19.88873782345428,9.429882599654226,0.2834557078522131,7.646929456998955,559.2419584954888,0.0,0.5413357690438487,26.8161892649291,0.3500791772339484,0.26969085597772985 -2004-10-02,3.459698599954557,18.590033351710442,9.476333514167493,0.6418488823088544,7.004689334377352,572.9563311440778,0.0,0.5581377579725246,25.79092165701328,0.3407499164972797,0.26054079068564034 -2004-10-03,3.7144462255680537,19.80409145071608,10.638288420654495,1.1964255139986972,7.291138801508272,592.6956662902086,0.0,0.5942741775579776,25.45857893492848,0.3398459861733784,0.26008683195190474 -2004-10-04,4.565898581026568,19.649870579637557,10.402106738155982,1.1226664434871838,7.284666044212394,687.7229204205337,0.0,0.7367609396077679,25.239880939000376,0.34721714593953473,0.2814870406042471 -2004-10-05,11.045057369367557,16.127622214868527,9.459935398317565,0.5339080980095835,5.768333056718667,1576.9427943084593,0.0,2.0637413145112884,25.780995842364504,0.4289985800842253,0.49746993593512856 -2004-10-06,15.391474642054673,14.840638970121152,5.732338386972767,0.6076194258991287,6.193011177399992,2986.5021165037188,0.0,3.887461997116935,32.75193614968548,0.560838131399004,0.9157530650052986 -2004-10-07,0.15029130334307644,14.795881751146355,5.394792133884177,0.4228616393944173,6.252626485036196,857.0187152302409,0.0,0.0397627651810189,42.073514301944435,0.49187873993105363,0.6021666733309794 -2004-10-08,0.2483323168642147,16.247952367028336,8.599758765574713,0.8121690100783018,6.114021360336343,449.19404931365784,0.0,0.0564815974268032,37.03002128414993,0.43426757330644067,0.4005823601049591 -2004-10-09,2.5065296569430466,16.306679371509787,8.362239021264198,0.788525179695075,6.216534297323794,602.9404536257439,0.0,0.5167549925479151,32.90233928238374,0.4124893430751974,0.339443870596145 -2004-10-10,8.281985185635218,17.060213062228215,8.578559091512043,0.7848763040916324,6.5304835270418105,1413.6231786203537,0.0,1.7793381608423573,31.220368444805935,0.46017566748221034,0.4918925267089971 -2004-10-11,16.505212090100972,17.4339204687116,8.480702971639047,0.7843714887840266,6.7437495582490525,3340.687088179266,0.0,4.462209930864109,34.50271299860447,0.5942077830139529,0.999636297292351 -2004-10-12,2.73860780876633,17.113199547085852,8.443609334425782,1.2208222969287037,6.601338900913363,1434.6051519387956,0.0,0.7913746849470704,43.897516696949005,0.5432792669513995,0.7712147332423988 -2004-10-13,0.4861854480005023,18.029773774626168,8.543672181016008,1.3244559743667117,7.024099109295475,648.9104404634297,0.0,0.1232156044998946,40.4380743373151,0.4767399112241878,0.5207859402741625 -2004-10-14,1.5388964977642487,18.573535643018094,8.686241321084815,1.2425225450847956,7.254485560171185,572.0070222816264,0.0,0.3383007009083805,35.32348782948034,0.4294218129753022,0.39051844954456516 -2004-10-15,0.957836816870269,15.453029964877185,8.682556925120041,1.1774508133207184,5.708082407067338,395.3572216165683,0.0,0.18472374446795514,31.755831252628887,0.38109207822169777,0.28233607527040905 -2004-10-16,0.7277862861189648,15.006508516759789,6.536161203015142,0.8443658514503404,6.110974656493668,279.1652253567086,0.0,0.12720439093617641,29.19790238097042,0.34861400629633527,0.2031562628918299 -2004-10-17,0.2634939970372289,16.768910595241607,5.679074912663998,0.7754514760788356,7.107223055819159,167.34510464473541,0.0,0.04101757106184206,26.525654144391062,0.31207543334232224,0.13849070993717477 -2004-10-18,0.16251252193395424,16.861477358329697,5.839317179959866,0.7737533811329583,7.120459503950864,107.45872949605659,0.0,0.02189103488542707,23.29872147278112,0.273307487307656,0.09348417655913904 -2004-10-19,0.0135060991855536,17.86394293723402,5.959501390476987,1.0488747454893204,7.546775945306315,63.37419730048471,0.0,0.00157228254983547,20.434932525621367,0.23821046161381473,0.06109320842894506 -2004-10-20,0.01288009105021,18.26192532983828,5.653942162363349,1.0843488828472023,7.783098741577477,40.810796635014945,0.0,0.0012838712557722998,17.682445240407347,0.20613855624651317,0.039964295671524534 -2004-10-21,0.3673815942630571,18.727696665703288,6.525668051655751,1.0145598897921344,7.833290753341733,46.799268636675535,0.0,0.031681087977415145,15.248710892961741,0.1819169017370864,0.03083879182352065 -2004-10-22,0.06918643597195143,16.766245024390855,6.331410463479455,1.1416549145771728,6.99121392938794,25.30190564912519,0.0,0.005179013088260548,13.456663440182279,0.1575669909001808,0.020863185305160247 -2004-10-23,0.005331555826318502,15.451229945132244,4.404966885681131,0.8361027141690097,6.799718348369153,14.251587559754379,0.0,0.00034905237611071536,11.865579490765713,0.13828807431559684,0.013634101444697268 -2004-10-24,0.1331527295394422,15.115604828727609,2.830947077739216,0.6563107496933929,6.927697091902762,13.954901201547905,0.0,0.007695587426856582,10.460213410419936,0.12340554134938042,0.010046926108919831 -2004-10-25,0.5068379892640239,15.477554366357365,2.9414556519559234,0.4452152431055961,7.06390573340613,24.32647661502308,0.0,0.02653867124442877,9.315465729435104,0.1144231863309075,0.010580981439091917 -2004-10-26,0.6699346156001792,14.435706851844554,3.0549248335207246,0.8820468482464913,6.618517020753191,29.853320922710015,0.0,0.03274641506481657,8.616760232696777,0.10818370572292733,0.011873847060907458 -2004-10-27,0.7269785715106059,13.507925167535731,2.880169538779615,1.0655026469698403,6.266419604884209,31.979983309507375,0.0,0.034030236282801773,8.220079370521661,0.10422716577839339,0.012910922562110322 -2004-10-28,0.6689373117317142,14.37855085375309,2.3109266659032985,1.154602620834014,6.719799684506088,30.315792372014926,0.0,0.03028426329871914,7.974860080250524,0.1006943857484776,0.013015630245471092 -2004-10-29,0.14139309112507745,14.738312507008489,2.0961060321756633,1.1196725622218813,6.900707228654073,14.262364995664866,0.0,0.005925909739913443,7.637627237998007,0.09062031862206084,0.009374870855420632 -2004-10-30,0.024887321828460072,14.546660944653006,1.1703813652203932,0.84556854223479,6.9506867079594565,7.197218033646868,0.0,0.0009261126836538104,6.851345422335778,0.080103454655177,0.0062436146453216336 -2004-10-31,0.5296353648030373,14.689819430984874,2.0209355204037402,0.36678627530331626,6.899051580343993,15.981569260552964,0.0,0.018105855865614084,6.052246150028303,0.07667446217792641,0.006821183714124388 -2004-11-01,0.2016029950840273,14.55972223147739,2.137552269708239,0.8149480264666917,6.833383866583398,9.696077824993962,0.0,0.006428270253002133,5.799611118978849,0.06991008020631971,0.005419069111895064 -2004-11-02,0.37484617067184905,14.569159420951527,1.5331232965378534,0.7968696062674222,6.924162613452163,11.227554172999584,0.0,0.011091737736570184,5.295790022498943,0.06605907130632933,0.00521644022212239 -2004-11-03,0.19818166969388176,14.691859095116685,2.1164841515690904,0.9593760580127378,6.897159340198212,7.627887059851072,0.0,0.0054418459516548945,4.995804545006047,0.06050642186041932,0.004224258849406986 -2004-11-04,0.08581759645845004,14.808837395237315,1.0398594260506897,0.7887894698131991,7.088542880048414,4.5114952195654086,0.0,0.002134351629428363,4.579030345772212,0.05434231933625261,0.0030747805367495893 -2004-11-05,0.16885215889113836,14.59627045718623,0.912630862104092,0.7405932003757428,7.023429027075027,4.631864681072968,0.0,0.003794636338612656,4.09799720200602,0.04970590540164138,0.0025793270547341818 -2004-11-06,0.147132543204661,15.052739927851189,1.0905665066432917,0.9472942833138952,7.186216177818726,3.8846538544738465,0.0,0.0030221563415123998,3.753627696111673,0.04544121506299761,0.002139188632997066 -2004-11-07,1.0092236391904992,15.233777063230267,1.8548620561535183,1.0579770891497038,7.166586384366501,15.481574074693642,0.0,0.021272109086851287,3.421148416716434,0.05161083405547795,0.004631504115514287 -2004-11-08,1.0911906626210095,14.567011383999848,2.0663074561684374,1.302663601452872,6.870883745462813,21.253914898322193,0.0,0.026009188506600056,3.8864143953156876,0.05798572792466962,0.006975174677436292 -2004-11-09,0.1676816022709328,14.599413815349212,2.087930330371353,1.2776972414541885,6.884287589690898,8.781414090776366,0.0,0.004035534343467401,4.390831074867451,0.053103585511718454,0.0051549806017762035 -2004-11-10,0.13971204292763886,14.795579061882545,2.0259941301555924,1.3310062527670614,6.976122608789473,5.717699970110348,0.0,0.003069842940078865,4.020663922645148,0.04846556245344973,0.003823079025501516 -2004-11-11,0.102479841822724,15.588643493398786,2.5752563570612748,1.117923957642735,7.22614305196535,4.026772650428433,0.0,0.002042344334020993,3.6634587154496314,0.043870633772928554,0.0027996218569067855 -2004-11-12,0.2950217235465909,15.246238922072495,2.8310350596181584,1.3276834581425243,7.050017386439064,5.518225009925314,0.0,0.005452694855659301,3.3004890389411243,0.04188526538307884,0.002652675590018262 -2004-11-13,0.07861792505346149,15.122486951572304,1.6422980971015466,1.3083860238753882,7.169840402411532,2.9337506050384485,0.0,0.0013480409145085193,3.162125146120226,0.03775246203979278,0.0019320262769353818 -2004-11-14,0.09979110046388087,14.418972064650815,0.7644277535657851,1.1445992295551053,7.001305524133,2.3702250378688157,0.0,0.001545079774519481,2.8438338793812963,0.0342912374941046,0.0014929195218904524 -2004-11-15,1.561816556239468,13.49887609310032,-0.014198656470117515,0.9863288070454596,6.734962875490901,19.513336198149844,0.0,0.028234465656451713,2.59182664332324,0.0483871302890862,0.005270934940124523 -2004-11-16,1.2818223056723757,11.605140019672413,0.16218019656512658,0.8722111066244892,5.983436472069764,24.50377308972731,0.0,0.029739854756231088,3.6746656620101663,0.05773972812440711,0.007959463139938804 -2004-11-17,2.544408548246859,11.195410225634477,0.05288114588587814,0.7252998444177755,5.842191058870632,58.395028765887396,0.0,0.07862498077746638,4.447589588213427,0.08145204307523815,0.017153051244604117 -2004-11-18,0.2332685904451064,11.98069364068523,1.0982219265759197,0.8111382856102576,6.001766152498599,21.149735095888516,0.0,0.008086319153707056,6.287279114407309,0.07595996482897531,0.01239709171563714 -2004-11-19,0.07931109882417862,12.680020740257456,0.9141318465058236,1.3661137686807563,6.309302471953321,10.547789884441777,0.0,0.002522562819448612,5.846273987162898,0.06902905324773889,0.008454021498171439 -2004-11-20,0.7950990037183165,11.697148969069294,-0.195580802932562,0.7721085572288123,6.0758839202776,21.640548947288302,0.0,0.024388262865241428,5.28249895925626,0.07079990031644892,0.009216643960705737 -2004-11-21,1.425299914682394,10.899353885149678,-0.2896528382867344,0.7183109633316819,5.784113011079235,38.42651186064066,0.0,0.04745087494792899,5.442121341752661,0.08000080679056562,0.013224698729735411 -2004-11-22,0.2776345561612461,11.481557560826767,-0.8042258686840986,0.7959531118717946,6.0722371619612066,17.67502453929583,0.0,0.009497290929985747,6.182352952902955,0.07525447956142864,0.010054760157982208 -2004-11-23,0.11251919330791464,11.09078935166782,-1.6411524330515577,0.7720150638782745,6.019845151846197,9.634955492478369,0.0,0.003550625136222771,5.784255514533174,0.06869343185368787,0.007085811418819428 -2004-11-24,0.5062450531791599,10.415186227411873,-0.9451185027839298,0.494519508771869,5.691072724316651,14.762675135556451,0.0,0.015135973657841695,5.2861702068916205,0.06747771496286523,0.006917205790784174 -2004-11-25,3.5237272957466432,10.817616934943752,-1.3106635515671297,0.6745991811239525,5.887280639664512,92.68246406840534,0.0,0.13361180938745054,5.225476702677476,0.10192230132865324,0.024847147662241508 -2004-11-26,2.14942600343799,9.761742133654632,-0.4765493393413786,0.7246574552020181,5.384502339701127,92.47258881182405,0.0,0.1048289569731291,7.856356738654484,0.11656059269532099,0.03213608262960187 -2004-11-27,0.016885952021248575,9.902036152406193,-0.8860468063372449,0.7035975517967372,5.495976379681825,28.148578998669002,0.0,0.0008372708939237486,9.068404659019551,0.10583748275656527,0.021046566258430953 -2004-11-28,1.0169704209273904,10.916836558336966,-0.8504165382364209,0.4737128728508204,5.877145911731736,45.891839920092615,0.0,0.04842680242420183,8.218812905532042,0.10759062097250217,0.021074021514660254 -2004-11-29,7.696542659680544,8.22192653037608,-2.095311718205353,0.5929270691592411,5.030056547020793,354.1751058743121,0.0,0.5168163086306805,8.293638444047824,0.1862747807740552,0.09241111534518605 -2004-11-30,0.0635911879784243,8.908682853087008,-3.096823166988307,0.5964453484380889,5.386853803467848,93.72722526792654,0.0,0.005171013850977693,14.565139335412,0.17041480353289506,0.06094265601651138 -2004-12-01,1.081413895230633,11.065741254272664,-1.7475638630770316,0.9595247195158664,6.038253318208176,96.36723867708946,0.0,0.08276877788129577,13.238876808945697,0.16682168852479187,0.05227357392177299 -2004-12-02,0.4548012546811578,11.130116786144939,-3.5386348202660542,0.9340552148696124,6.2142370667872475,60.435868210227284,0.0,0.03281257939732113,12.797438298720799,0.15437961593816024,0.03902383971234308 -2004-12-03,0.04310563135232217,10.422750510011774,-4.105652114896493,0.5719881697965913,6.003767531391924,29.523511243429436,0.0,0.002812174262459187,11.806677237757466,0.13804194535663572,0.025830880607444342 -2004-12-04,0.005344071282800769,11.104621295486268,-3.9263610794206154,0.6880486352294783,6.234004914014209,17.352449737749403,0.0,0.0003113497986093417,10.605886377200406,0.12361364844537699,0.016862096830407406 -2004-12-05,3.1849188154613485e-5,11.493703711496597,-3.354374049704832,0.8029669262520015,6.336948588787693,11.019010572732828,0.0,1.6478473823622564e-6,9.458853220694772,0.11018960519143829,0.010976683427151494 -2004-12-06,0.8157689550994591,9.939728952980593,-2.769907305183112,0.4703590326058009,5.734499186237921,32.819688093299405,0.0,0.03929786105570421,8.418080445887133,0.10756809205046246,0.013128984892520295 -2004-12-07,0.00021383316053427839,8.43628936858766,-3.760697787378264,0.6397926617452779,5.291443526181002,10.832112032244247,0.0,9.687113310093219e-6,8.314707328046188,0.09686320038590389,0.008547827108848109 -2004-12-08,0.00023879622001134776,9.852939246100382,-2.7991459024393897,0.6870552011532417,5.708933643972006,5.747121138818816,0.0,9.80143917508086e-6,7.552983352976459,0.08798992274398017,0.005565726113895208 -2004-12-09,0.034620084211396326,10.410898845752627,-2.526128351108136,0.5471143558757655,5.886767311685763,4.4717242642234325,0.0,0.0012809296669952647,6.808146077129771,0.0797135916299752,0.0038180665757490506 -2004-12-10,0.026447122309936136,9.703635121200202,-2.5978366889960163,0.9119918231862048,5.6388401422153605,3.136120075099115,0.0,0.0008813476576974982,6.14811233987994,0.07192943611674342,0.002619580092549507 -2004-12-11,0.0,11.029510395419488,-2.3559755747762865,0.617226970358526,6.099347658774925,1.7621135203790488,0.0,0.0,5.575153148372664,0.06494675849873621,0.0017052235199853793 -2004-12-12,0.020374771545746368,11.290002542207414,-2.472851494126415,0.6651446723146887,6.206125036014654,1.4729568339410362,0.0,0.0005489759776372179,4.990729901411343,0.05837597575259972,0.001193610068518121 -2004-12-13,0.0002790857426445718,11.23117106478182,-3.286384619612537,0.9216503868630254,6.250109632517851,0.8134900840912765,0.0,6.7210204500759915e-6,4.47740359904609,0.052161970841613885,0.0007780074295839585 -2004-12-14,0.009715431081887715,11.504683861637163,-3.2022353576475227,0.4434634994897229,6.343648854709309,0.6457361388636617,0.0,0.00020884203883203556,3.9980710915511755,0.046687998781866004,0.0005382455559059037 -2004-12-15,0.2985710265145713,10.86140849203997,-2.2286387689512583,0.7720656690311293,6.030936302621636,4.257364539248927,0.0,0.005961990037134546,3.5726070307299413,0.045096602675902014,0.0012581736178533906 -2004-12-16,0.07137832754254735,10.353753926580117,-3.0099847814635625,0.8728256727974395,5.917117883724369,2.0425478711029332,0.0,0.0013422017076532983,3.471667413853306,0.04127408341842216,0.0010233819291435417 -2004-12-17,1.4437841371766982,10.09753815304949,-3.6548121236844073,1.0039997070099704,5.877559951557515,20.55298462262703,0.0,0.030282605715789446,3.1845891046280173,0.053917413778174945,0.005277147616331263 -2004-12-18,0.007039406789381886,11.832430943689545,-2.923237166918748,0.9262626967774876,6.446353710126721,5.302196192819981,0.0,0.00015754729002583935,4.161954122522973,0.04856595123491389,0.0034591639746163 -2004-12-19,0.02762580416967702,12.470293155891106,-2.4065917116491686,1.235171670923613,6.641632584669119,2.7573652965772695,0.0,0.0005517483793568354,3.7088030838487156,0.043526866111052914,0.0023357650083994587 -2004-12-20,0.07693180553962968,12.173048221619306,-1.9432070355198183,1.51134699002583,6.494027559397065,2.464197149055244,0.0,0.001381196394553294,3.3119681051456,0.0394783888833452,0.0017307807947353013 -2004-12-21,0.14593827110776633,10.844089888648758,-1.3408907949179445,1.481597417269466,5.938538600864058,2.7848084036248295,0.0,0.002411042105530753,3.0127905035648004,0.03679705102837387,0.001493773729109313 -2004-12-22,0.006445654674904514,10.773901092340381,-2.9661303207845133,1.3797740096511928,6.069744831963641,1.1825942923858903,0.0,9.798199921037549e-5,2.8383077194155377,0.033139450246213585,0.000987295697134132 -2004-12-23,0.0701816299696949,10.659489439326123,-3.1334241311949627,1.243235177910902,6.042569743286054,1.2930766153351145,0.0,0.0009697759454696531,2.5500424731777365,0.03052383629844437,0.0007903458099500943 -2004-12-24,0.0007408599765851479,11.06445876658958,-3.3243350454995824,1.3152997466045415,6.202922575444037,0.5779567514089524,0.0,9.301055600504965e-6,2.3501388377417585,0.027386156384217306,0.0005158941991423478 -2004-12-25,0.03647520588154135,11.630737095805092,-3.0702573282050682,1.4138397934756892,6.389057351720754,0.6104449371779359,0.0,0.00041281352335692523,2.1022970233824108,0.02491524802298123,0.00039867983396114654 -2004-12-26,0.10060500808419734,11.327090636691473,-2.125518480091647,1.5325924961014945,6.2009355377399755,0.9696068625638905,0.0,0.0010498488950844986,1.9059570419970853,0.023375088972649515,0.000419376837451381 -2004-12-27,0.0914539363333092,8.279808459970813,-4.617907857969623,1.7725875043580932,5.3212651309312395,0.9220326377205462,0.0,0.0008974777702409342,1.7946345593485495,0.02197165365260856,0.00040964885925725 -2004-12-28,0.34888583609248425,11.41656244719351,-4.2483150022231335,1.510444425809665,6.388427890253063,2.6203962041900652,0.0,0.003516034357442077,1.7151815174158636,0.024044986813063874,0.0008020303265081568 -2004-12-29,0.005538944321171089,13.512185413203586,-1.364818379432903,2.0458724533074584,6.950778967981207,0.7658830483623842,0.0,5.441115278493735e-5,1.8394472121911747,0.021492839237159778,0.0005303689489485929 -2004-12-30,0.2544712387220577,13.052665261906176,-1.3882657951659183,1.3468703019205057,6.779079363564866,1.918681517484852,0.0,0.0023792681563127305,1.6266603794662613,0.021913909386771718,0.0007075239836999588 -2004-12-31,1.1493732899074964,10.296736863717953,-1.431749451051059,0.9372326482248552,5.74759533849623,9.575857130670144,0.0,0.0137404937191965,1.6640052656399469,0.03277395485826203,0.0025527580142121263 -2005-01-01,0.1953935003053116,11.707766552319658,0.119268446490755,1.3511847499959315,6.09377730698409,4.267538017550357,0.0,0.00275260065208377,2.537397024198872,0.03183515887351263,0.002080849600551619 -2005-01-02,0.000375910989359014,13.356975293093386,0.06704806132341308,1.4627298920230758,6.745602014545864,1.579594563389765,0.0,4.9183053509271836e-6,2.4486376474104157,0.028529349401629912,0.0013552841746747473 -2005-01-03,0.0,14.01672201414215,-0.6976477455399109,1.2001701172969277,7.082691786863754,0.8988291437877179,0.0,0.0,2.167347782202544,0.025248133862397548,0.0008822262993570508 -2005-01-04,0.00016709886075057319,13.660842343289193,-1.4438179104377789,1.657028863853058,7.014254343723396,0.57644310155008,0.0,1.6985613627431108e-6,1.905808415338217,0.02220332395018013,0.0005745464873053723 -2005-01-05,0.01458096732678224,13.238481202013915,-2.54567107355617,1.1195671500222557,6.9415625862936,0.45973302007161193,0.0,0.00013099353657095025,1.67834077252482,0.01972139176616084,0.0003939484606364482 -2005-01-06,0.006721033894292224,13.659664853887188,-1.2134985294000271,1.142855153285243,6.993240382168102,0.29904235917510813,0.0,5.3565840680821174e-5,1.4929289852808756,0.017469907110340847,0.00026459812285831977 -2005-01-07,0.018004322203649375,12.430638090047017,-1.507063109760956,1.3891537459709051,6.554914981158071,0.25922576758039795,0.0,0.00012750183041380578,1.3212537022876942,0.015601448995086826,0.00019165497910980913 -2005-01-08,0.1848323375329841,11.020157381280336,-2.572433006565084,1.3670725902743386,6.128423451760792,0.9566124232530931,0.0,0.0012616566109941718,1.1899805687079865,0.01601563928851727,0.0003168642408537297 -2005-01-09,0.6969789161941959,10.452906901426172,-2.1183932886431114,1.3154934133718486,5.878158176896796,4.113146078161482,0.0,0.0058677361650674165,1.2315268086862163,0.022465785646408252,0.0010997132422594688 -2005-01-10,0.7397688347782972,10.176620052709923,-1.5539736816308003,1.6186994606601577,5.715005609685679,6.492127528625899,0.0,0.008312631832857131,1.7354559564687364,0.02883469251317869,0.0019815826316716928 -2005-01-11,0.16563162944200946,9.439939457802478,-1.9045848570928583,1.369769350589475,5.48151326513989,3.1374392584377273,0.0,0.0020493766383395673,2.233994050467062,0.027954014064333055,0.0016019650270734792 -2005-01-12,0.06069844582335525,7.77468577659833,-4.822182383425188,1.554717088769492,5.161967704146677,1.6675018062254003,0.0,0.0007147517154339894,2.175353708411107,0.026048493267675367,0.0011516354478346767 -2005-01-13,8.274295070558759e-6,9.693718641750726,-4.799089717926856,0.8864713105932885,5.815111066305103,0.8028405952250749,0.0,9.00357323190176e-8,2.039324422499529,0.023756844813483852,0.0007496742589446528 -2005-01-14,0.25752948924048763,8.003620338185138,-3.7325067238239513,0.7290762219217367,5.151734347647345,2.2563908240607704,0.0,0.002701018433566793,1.8373220915251047,0.024403602212504528,0.0008992726660254683 -2005-01-15,0.0094303951783927,8.039381131588206,-3.0605930114172786,0.8675093958086607,5.098431779462835,0.8052348201806224,0.0,9.63560076256715e-5,1.9109768108910945,0.022371443386848232,0.0006000558653772782 -2005-01-16,0.09773154561110377,10.725289041201037,-1.7675564345938983,1.3262494055431222,5.938403323585016,1.0218704499796403,0.0,0.0009392506397986194,1.7536600822188853,0.021567458640011337,0.0005336229510155192 -2005-01-17,0.06753548270035796,11.64563879596694,-0.3928681838065909,1.5739763505109987,6.128757069615429,0.8023141609605443,0.0,0.0006111945942798708,1.6641982125566792,0.02017352476188245,0.00044042686687313 -2005-01-18,0.04339253305531463,11.745294089379476,-0.5458365147560044,1.6222833789150857,6.184690743183497,0.563947343485697,0.0,0.0003636015474015389,1.5510819357187484,0.01857454772988556,0.0003420608972801244 -2005-01-19,0.3174604583105882,10.942122399599972,-1.2965690127289886,1.6254744078419516,5.96555225322727,1.9985514746148052,0.0,0.002681634431060731,1.4266801564498242,0.020318056971716753,0.0006309840246721246 -2005-01-20,0.5209233264563915,10.796359685951822,-0.9591860101470634,1.7596784768973628,5.870317107437321,3.8842003232916547,0.0,0.005076294422272198,1.5670320122484322,0.024323265662861887,0.0011836817607363398 -2005-01-21,0.3919218524998127,10.177946502767034,-4.462562471901137,1.5613838409389766,5.9557430716707875,3.9122145969296973,0.0,0.004340048308677735,1.879140861131748,0.026456342574332124,0.0014313576629018429 -2005-01-22,0.0943065517529222,11.545370473253447,-4.584106123999422,1.4076880302100114,6.438483599808337,1.8933307556583283,0.0,0.0010506819144080054,2.0405285561499475,0.02486938322547462,0.001091728407731854 -2005-01-23,1.0729126992194915,11.849364487844277,-1.2904200128866,1.7464358231561652,6.301115836442005,9.919655237561175,0.0,0.013971788047639988,1.9006541263536114,0.03464003971921758,0.0028380750150216495 -2005-01-24,0.07374660681316605,11.545946127067356,-2.1937994733806407,2.049421703179944,6.273523036694662,3.3569216397603396,0.0,0.0010609547425699806,2.653676244962316,0.0317726291213904,0.002008999478092498 -2005-01-25,0.013377422762458518,12.457239369695197,-2.8493081670466225,1.7869184750039266,6.657711160030485,1.5462446837152066,0.0,0.00017454612020712489,2.4354735687638462,0.0285274556076497,0.0013343414626009508 -2005-01-26,0.1283049126178349,12.494087696713615,-2.4661732206526006,1.5370702132651608,6.641522447031797,1.8876938466672677,0.0,0.001531079974356253,2.170870927247605,0.026783841455809348,0.001101723122553772 -2005-01-27,0.08301121975782651,12.83133233625098,-2.834922410017607,1.7958573843172108,6.790038475443561,1.4093313129327754,0.0,0.00092160062169451,2.038915222469528,0.024719006012534142,0.0008574972810796148 -2005-01-28,0.027897635213393897,13.505678736694856,-3.1346948972457302,1.795339584402481,7.053614486684118,0.8023131639338568,0.0,0.0002812631477912622,1.8764682038044174,0.02218457232444542,0.0006010168969088804 -2005-01-29,0.010412833951534809,14.050121538250865,-2.6371669387275785,1.7464630000436028,7.221710672278851,0.4730538079620807,0.0,9.328106530870697e-5,1.6756487363258712,0.019641475436557275,0.0004054371723102315 -2005-01-30,0.002299115628554689,14.715914260748573,-2.33051996529696,1.568242997544807,7.44791438996042,0.2827199867941551,0.0,1.812322232543507e-5,1.4788485295373996,0.01725436698355878,0.00026668007195682964 -2005-01-31,0.029748381684621492,16.171679891379352,-0.7246748252242634,1.6424604185975968,7.885890605377682,0.3105114826065621,0.0,0.0002071919754248787,1.2935108768106047,0.015415074206130414,0.0002051442319466384 -2005-02-01,0.03682188453018783,14.810768657073929,1.4821820753724078,1.8362464564804688,7.117959618468117,0.2946767954326325,0.0,0.0002280997682858263,1.145837477699427,0.013777180633578879,0.0001682708126144151 -2005-02-02,0.0039005862157517977,13.999846592305975,-0.7210014547331461,1.9592593467447463,7.04384234783723,0.13781564331668156,0.0,2.160730520601485e-5,1.0395718998057422,0.012155747787752764,0.00011282642170202152 -2005-02-03,0.012733305677856424,12.734052968643676,-2.364498061141376,1.5464376720258426,6.706925208982908,0.11668434629088273,0.0,6.261784179269203e-5,0.9185802952932186,0.010849172734656095,8.29791891406128e-5 -2005-02-04,0.0364388863889278,13.578743905256612,-1.7996323216698458,1.5886461906064078,6.974082210601485,0.16452673580496835,0.0,0.00016335699796201503,0.8252039543148035,0.010037555560905936,7.888906829025919e-5 -2005-02-05,0.8883152880505997,12.906871109786284,-2.52190794553172,1.8376581333936095,6.77769598334939,3.778908600853798,0.0,0.005691191804157669,0.7595786926267147,0.019196848866081882,0.0009179211027489506 -2005-02-06,0.14488194495890727,12.57901039516028,-2.339185849401951,1.8433193323355819,6.641303681644315,1.6998858043715683,0.0,0.0011810523158503061,1.4578343109317888,0.018670558968180997,0.0007773561581474088 -2005-02-07,0.014632643668140688,12.54503438941559,-3.2201037211206365,1.5674703710178988,6.688620910667121,0.6727837732730665,0.0,0.00011134563879081592,1.4216048593547534,0.016731194242239445,0.0005229763416083981 -2005-02-08,0.03359888617413845,13.019637231985294,-2.9484752645332564,1.5347126197636063,6.840903916891911,0.5044887573537725,0.0,0.0002306449203767491,1.272848331399889,0.01521922531507373,0.0003755521148999578 -2005-02-09,0.030363961577224607,13.061868498660564,-3.554721180883336,1.5356973125446771,6.889721683048368,0.3822255519871636,0.0,0.0001889742015074962,1.1544881584045918,0.013802724776383288,0.00027324088970996234 -2005-02-10,0.0409077287067001,13.364136707150235,-3.0824395023929285,1.4553108292567452,6.969469894854176,0.3415185258991481,0.0,0.000232071992740647,1.0460935441838854,0.012662828675630265,0.00021320336612958772 -2005-02-11,0.07481133806564227,14.250873149103755,-2.0300782587031514,1.37849871581978,7.224583747353653,0.4119234049031333,0.0,0.0003961134750118389,0.9582590839539055,0.012034570786755043,0.00019909949907181076 -2005-02-12,1.2069514128905166,14.150580383158387,0.07646272978999111,1.7674429178601845,6.996196687431017,6.495865675143959,0.0,0.009708620924381295,0.906254726119889,0.024617420385737103,0.0016078853755686223 -2005-02-13,1.990521572415636,12.80328457719756,-0.6385669192974353,1.84611656668194,6.551636747890194,21.49146259520645,0.0,0.030432090727096517,1.8613450845226427,0.04487163794065927,0.005680393189577179 -2005-02-14,1.095029600433587,12.324201072339466,-1.183561612255594,2.010784195624616,6.424255327975828,20.74683025109325,0.0,0.02333020982838585,3.4200900119062783,0.052598085694047614,0.0072500380870636335 -2005-02-15,0.6895612156765772,12.399252693187716,-0.8288070824386924,1.7413975926819667,6.41319682847772,16.77792333089004,0.0,0.016174920370202073,4.017994408304319,0.05483983490557521,0.007182304618276993 -2005-02-16,0.756349580973167,12.973147796968439,-0.0920780937919858,2.1057367000073732,6.547929754565717,17.870197950386647,0.0,0.018589049200843255,4.189881123740611,0.057620237957381866,0.007505800091501574 -2005-02-17,0.12334823822030322,14.080298034320213,-0.6497044794384176,1.97139821630483,7.028385530076735,7.973082874763438,0.0,0.002953473890300262,4.390563141898853,0.05258401060693153,0.00533563311787006 -2005-02-18,0.07326283254440731,14.935058740284395,0.28224909732644843,1.7893402527535722,7.262224296543118,4.7626396507127,0.0,0.00157642942600629,3.970254961713413,0.047104243897884604,0.003713281053378716 -2005-02-19,0.33291419769882963,15.18241809830714,-0.12706163758911165,1.8268835487624768,7.396233578975925,6.853016235803055,0.0,0.0066215467180101295,3.5409249113754115,0.045127602127565225,0.0034253997482086487 -2005-02-20,1.7567572129542228,14.284752546701624,-0.019688516014266747,1.9429135968048887,7.034631148886495,28.915601981601828,0.0,0.04025015267571175,3.3836688311388703,0.05988248214558501,0.008358454595030727 -2005-02-21,1.0361681820239064,14.705538257980482,0.19344625560175085,1.9317446838271344,7.172304219315065,26.181549960195824,0.0,0.028129881459670658,4.519786210252174,0.06472310599224948,0.009724151103628021 -2005-02-22,0.1471486086297524,14.833817688040098,-0.6136999746023729,1.7615491068555122,7.296991110478827,10.704100085514265,0.0,0.003919619992346995,4.871321442733423,0.058461777422950514,0.00692678538099622 -2005-02-23,0.1558965673241495,14.539228405332825,-2.070156472270819,1.8265435923258384,7.297062997385949,7.321282894497695,0.0,0.0037463479885937734,4.3901900144341655,0.05295882991590721,0.005079448549466064 -2005-02-24,0.07180578959014472,13.738408517285139,-2.988471879766682,1.6816587438182582,7.057572223676001,4.56110862866477,0.0,0.0015476671398921837,3.9776115745291656,0.047172969891385336,0.0035421374570617694 -2005-02-25,0.08714431528778052,14.57168633260996,-1.110136145639954,1.5772487088756766,7.229840186534271,3.514186489263804,0.0,0.0016842677861700073,3.560248761935385,0.04248965921331152,0.002562219655899108 -2005-02-26,0.049213442295422634,14.848244440108154,-1.3451745604974312,1.5497039225800575,7.349451599035971,2.32834035707003,0.0,0.0008490886860894123,3.196496313055277,0.03781032054685066,0.001797170867549438 -2005-02-27,0.011393531331486344,14.761018695521347,-1.8253541361535797,1.3157126190388173,7.348505373911636,1.3404103636701754,0.0,0.00017334394150702453,2.838240269591611,0.03319630391362607,0.0011962679436154664 -2005-02-28,0.09170475776216504,14.905456877252199,-0.9027138337238572,1.5681839098926085,7.3281047612366255,1.6057011507784793,0.0,0.0012439551061014381,2.492278136233961,0.030101650755588197,0.0009681247483166936 -2005-03-01,0.22001522009612756,15.106836209955313,1.0594209607189935,1.6057879990476216,7.205607257898936,2.523696290690204,0.0,0.002786504902390463,2.261047185540881,0.028902696767394577,0.0010544902451874317 -2005-03-02,0.4940956049804006,14.440859111190072,0.0634778779970797,1.3098785911084452,7.052107785057269,5.032429281958807,0.0,0.006396837489595075,2.1762438703179656,0.031107646444199936,0.001660436595631179 -2005-03-03,0.5527203183761064,11.385112169192462,-1.3103257008147169,0.6762034753778922,6.037817115477561,6.5326205369353385,0.0,0.007757947976305357,2.349102411578462,0.033804269592757945,0.0022621283693198373 -2005-03-04,0.7878199673355967,6.722510227076884,-4.357660070556545,0.2842402519638665,4.686063476494456,10.206925823283692,0.0,0.012636707070181497,2.602737166990882,0.03949769441643858,0.0033966645795015624 -2005-03-05,3.2957696208943634,5.941181041172631,-2.768451083720375,0.4591797074212984,4.240832361077388,58.267648920110936,0.0,0.08463337640905566,3.1189460338483213,0.07472709311819385,0.015097750829088354 -2005-03-06,3.867920661216708,9.716013674333988,-1.4092610827813754,0.7618836313693679,5.424766227738661,123.17418940854327,0.0,0.16590600825076063,5.9458793445031235,0.11432412383369696,0.0350895668495636 -2005-03-07,0.13279569591895782,12.329564725694722,-0.994093789021654,1.2061560810217022,6.342709418851416,37.08831478168338,0.0,0.006492996658616718,8.8880534720834,0.10508678358706364,0.02383031347050434 -2005-03-08,0.20226756796081866,14.511899639777464,-0.2646323714674401,1.4828660355970558,7.090145706052355,22.50513132276065,0.0,0.008953464771129876,8.028534384194806,0.0958832685687948,0.016875711323803638 -2005-03-09,0.14193883594704956,16.212278038843152,0.1718292911281248,1.7158739869879842,7.699636666433596,15.253894938438789,0.0,0.005619643186310336,7.221175449187337,0.08577529487504805,0.01184096860640076 -2005-03-10,0.5551023662020415,15.658595875115779,0.004921766944317307,1.6542767590982657,7.496698159764753,21.167752151289964,0.0,0.020036805809233393,6.38473561228061,0.08084441255939875,0.010758813721623404 -2005-03-11,0.5047635570059064,16.730680639941074,1.2328124689238984,1.1998859555539274,7.78966486884755,19.426215798346306,0.0,0.01719488162618754,6.042921503613482,0.0762760966453374,0.00962165681283821 -2005-03-12,0.44734322726595777,16.317971815698584,0.09750488344304156,0.8614669207904939,7.734584512676307,16.658115790351516,0.0,0.01424577674962324,5.669347555079201,0.07125530518715406,0.008432376327570833 -2005-03-13,4.89583225272961,14.299958584978032,-0.3574179665109272,0.9208267737062286,6.999007162932087,141.320164738815,0.0,0.2065385262845858,5.302846565961755,0.11880770135203632,0.036937622448795886 -2005-03-14,7.838244607519423,14.102747941811286,0.5356888624315935,1.2385495580561725,6.824406470021681,401.6680090391712,0.0,0.559622302047881,8.95712382223205,0.1956546678224908,0.10925541882664082 -2005-03-15,4.1949862381072185,14.062213699722989,1.556889885904141,1.2532961036831567,6.676054265452148,364.1572926015071,0.0,0.39747272248907617,14.762914674896818,0.22084670671320225,0.13164123643942968 -2005-03-16,0.13107597286418488,15.044827632389078,1.7462622960040937,1.0286555269809188,7.038067987996116,119.37077151344594,0.0,0.012339014728921127,16.697954489951954,0.19604680771064176,0.08757105505835448 -2005-03-17,0.21233994483368449,16.91300351589604,2.1492080254400148,0.9623796567535428,7.73271209554815,71.1377345994891,0.0,0.017563806868964776,14.728955757557253,0.1740559761886787,0.059678990065982665 -2005-03-18,0.21674920206340986,17.218726423003552,2.5245111843654984,1.2019696710716197,7.80610271299521,50.25256436692765,0.0,0.015624064092744527,12.905568035384624,0.15286610894502609,0.04122721218987223 -2005-03-19,0.5602340518209338,15.811144891368695,3.5773096934276643,1.4039470085018428,7.072926423772117,51.24379441069445,0.0,0.035838033373642664,11.32696314891645,0.138477796981863,0.03229384746622879 -2005-03-20,0.24595290321741106,15.851044574934935,3.4606237972326066,1.5965093258058212,7.103997712319709,32.474857380969745,0.0,0.014234763976395143,10.417990312091549,0.12422771648005182,0.023189229992553812 -2005-03-21,0.11976910287349013,15.92313003924674,2.3096109988255087,1.5556916172736401,7.295831132552983,20.109993898339894,0.0,0.006159997672649797,9.344662830895269,0.11025422239918688,0.016033049477479033 -2005-03-22,0.09821031861900976,16.924127488393072,1.9400149911841509,1.3347029708282572,7.739561746421772,13.77486815795861,0.0,0.004449289926323555,8.265971745455113,0.09743705654318141,0.011114231776310886 -2005-03-23,0.4319287070373394,15.992626756999073,3.760340842319098,1.0261010085379618,7.102827560449229,18.960308313159533,0.0,0.0175048829570294,7.244129488212826,0.08942087949183516,0.00990021954400262 -2005-03-24,2.4021681722451835,14.01225337823049,4.540522817833784,0.865639393418808,6.111075366574067,75.25278642120783,0.0,0.10374377630415976,6.734178865480579,0.10643225555032872,0.022241100142231483 -2005-03-25,2.6586715824530502,10.565303788695301,3.2534980524215,1.101454105406543,4.897020104535938,110.8288337352992,0.0,0.13816090904059664,8.167620553100832,0.12611897145279732,0.03551495028717553 -2005-03-26,0.6082559939840734,12.4085974454995,0.6079104605259347,1.1245561626132108,6.1165897855668305,53.84050413485128,0.0,0.03404370320417971,9.901456174010185,0.12243102922924888,0.028302220168283265 -2005-03-27,0.5561727344458256,13.314322072182806,0.4669450934108392,1.1249249730561284,6.478665784045129,40.27462784959483,0.0,0.029434318661508474,9.390103683056731,0.11586738431351772,0.022905224969016227 -2005-03-28,0.5640837880814193,15.334280570668447,1.4026211627730472,1.1896787617093243,7.146104370102979,35.147302376089996,0.0,0.02806872111092007,8.825942514349599,0.10938744718407932,0.019184102352277514 -2005-03-29,0.2921467528739131,15.393270960526376,2.2566785277418973,1.1628062005137003,7.056088448834207,22.966396335208945,0.0,0.01332793520176867,8.225539244396977,0.09922527340693636,0.014517324004045814 -2005-03-30,0.0001682302885625982,16.8694615675122,3.3985286295676933,1.2565777407678504,7.492188082527309,10.362390515237289,0.0,6.833857679510889e-6,7.477079937148143,0.08710487730859529,0.009451136168192622 -2005-03-31,0.014010794247635778,17.419461827141916,4.109303251578186,1.2103012085197729,7.610907592793686,6.543920266802603,0.0,0.0004944609754240891,6.51011318618953,0.07600162601756445,0.006227534430179851 -2005-04-01,0.18650371496374324,16.622492061782197,3.59708489644795,0.7145516013599513,7.352166966500843,7.878956861646576,0.0,0.005804917649542329,5.669033016813517,0.06821303736027814,0.004937716687017186 -2005-04-02,0.4450165732813067,16.229425910228017,2.86360231938003,0.52212942043695,7.292999796800104,11.923430343605418,0.0,0.012812887899147363,5.115367713802531,0.06477471126668723,0.0051651729555675695 -2005-04-03,2.636360004565161,12.95146499771364,2.5506600885700217,0.4114563822089962,6.007477028951012,61.73816024229266,0.0,0.08818414714470402,4.863690052971022,0.08737050388605314,0.016789623961377544 -2005-04-04,0.3661461103682042,11.016901776511874,1.9565811212309088,0.8258324215983284,5.326405354903572,25.058051089335827,0.0,0.013708504050740311,6.721728644558234,0.08256894074952253,0.013016578341381533 -2005-04-05,3.3093405873500967,11.922880970753104,1.208548099998302,1.2843811219058336,5.80762635550838,104.93168654476716,0.0,0.14583144398965553,6.436278077409394,0.11352985738618893,0.030678172408696466 -2005-04-06,0.16554349989350192,16.54905644114489,2.9260601517729103,1.6013685814788117,7.396781772747124,33.73586123442006,0.0,0.007991839767471864,8.761799663765816,0.1039975019618545,0.021186924030486217 -2005-04-07,0.3800260423026957,17.2198242228751,4.503943786002051,1.8349103448741912,7.4336744184824735,25.684936923175723,0.0,0.016488999607921773,7.782952286846466,0.09509316929319088,0.016302385537581482 -2005-04-08,0.2122170227571325,18.184910189259554,4.716872418774756,1.9589063546381218,7.803004748524406,17.079273001553286,0.0,0.008316472986761969,7.113492553101496,0.08533955534370312,0.011878392642755092 -2005-04-09,0.6691439362454848,19.072071320676773,5.528248001813028,1.9479128487041688,8.047400823222501,24.099664622098835,0.0,0.024196551243993558,6.339365147069747,0.08164438442433394,0.011416557703931558 -2005-04-10,0.9446286874689348,18.655015931031386,6.837048702088633,2.0376577512728717,7.624100730854962,30.626433536375487,0.0,0.033293609851081096,6.036191560696768,0.08132182824664533,0.012501086427046998 -2005-04-11,6.349549542122391,18.920276984591414,6.6997645212823445,1.6289894459408023,7.764575450688029,219.89440588319334,0.0,0.3210312850082513,6.063217903629526,0.14460033440256936,0.057019375389629263 -2005-04-12,1.0726518294414642,17.682921429839453,4.508292741522882,1.1350010070514678,7.606031913413786,99.33726238019355,0.0,0.06650487224968837,10.726845338981219,0.13745615099878594,0.04724328273186221 -2005-04-13,2.208926813538862,15.710990771824866,4.296908844731293,0.9836169368761546,6.8082066718583025,126.13920804056161,0.0,0.13789709236343395,10.232116003047803,0.14492972332376924,0.05175002606403175 -2005-04-14,0.2457775799039408,16.69875344732735,4.9177285724533135,1.2922058072720908,7.112757294712498,51.86260742848816,0.0,0.014982103810350839,10.95835244803343,0.13052052701463238,0.03596808134935856 -2005-04-15,0.12261510714989418,17.612559736753855,5.953154578046474,1.5028097708068435,7.312808150760184,29.257358650329312,0.0,0.0066330517931609545,9.81424154350538,0.11575765040912742,0.024423510582931622 -2005-04-16,0.08144517971411383,18.788813544475428,5.684692934331605,1.2724986947713888,7.867095993801241,18.921121795479998,0.0,0.00387243993995548,8.674046369972986,0.1019955470427274,0.016488193672168777 -2005-04-17,0.8032708996516652,19.507584248803244,6.399760876385717,1.1459087705869957,8.051422410622994,33.73670851857213,0.0,0.0348145013822686,7.562559853003743,0.09745626264860642,0.016034061278943842 -2005-04-18,1.6278104304787775,18.5405262358468,6.205924423912609,1.0874868419416923,7.658587567478839,58.86618579311271,0.0,0.0710136701938382,7.200564306226049,0.1028445868125569,0.02125030065018137 -2005-04-19,1.4523022761036732,18.203686745861923,5.9340709779353515,0.6465419186970285,7.557081857779028,61.4549537933555,0.0,0.06635428718627301,7.657059780154754,0.10611789879136446,0.023936367422524866 -2005-04-20,5.768298098377872,18.418379456320764,6.025563414822406,0.806019310639443,7.629580292496434,243.62211547546937,0.0,0.34269117097852053,7.915841163317918,0.15941095504288455,0.06776124347583212 -2005-04-21,4.470800348787726,17.92733135743827,5.863516545809079,1.3578605406747013,7.441602286838406,293.1710404070615,0.0,0.35035056459928704,11.85109306504561,0.19013900454012944,0.09745543384688901 -2005-04-22,1.1757690527718816,18.93249310131992,5.577355426112996,1.2043684776306014,7.920162332641454,148.50947351850482,0.0,0.09674053645817593,14.172455109194015,0.17879641715719127,0.07816908283425562 -2005-04-23,0.19227803317954187,19.245580423742553,5.969223078187878,1.3207023465392702,7.9849882802441225,67.42634586466806,0.0,0.014179651543171051,13.204147689659742,0.15605928716441836,0.05304346039895311 -2005-04-24,2.6984613515128797,19.87118739401864,6.6908626531297335,1.1735450904172613,8.127870628341643,161.50674631116343,0.0,0.19229267364964864,11.52035277833527,0.1656395551571919,0.06380819994337095 -2005-04-25,4.302943786375431,19.75113861990632,6.9129900492502045,1.3256609046055063,8.03049127773853,277.20487805025147,0.0,0.3435395702633244,12.187412643594556,0.19210148458934373,0.09384511379512726 -2005-04-26,8.48652889594798,19.885178733721357,7.663728760864784,1.1757258660651548,7.9423055741252995,658.7375770715065,0.0,0.883052283786439,14.146979190548315,0.26366504104052096,0.1955465137303732 -2005-04-27,7.548510689595227,19.446860949794733,7.753410304532835,1.314232518493878,7.7218342332697345,838.2789369752746,0.0,1.0075374652587659,19.39000290321215,0.31381543969561926,0.2807040529975169 -2005-04-28,0.3844101461896179,18.28857781705319,7.568589846752476,1.7093900056354792,7.231484163409295,278.94749912448634,0.0,0.05163495203544799,23.127253426872326,0.2738949577428033,0.19058732965162534 -2005-04-29,0.2565155476111509,19.478104392556926,7.584024219672438,1.893744002866844,7.762478959909456,151.4574834769453,0.0,0.0300480881488272,20.431542921810802,0.2410018705250228,0.1286386593140705 -2005-04-30,0.1606677169474942,19.7931893821006,7.4353307275482114,1.6016389610553834,7.92925627013544,96.6047764066838,0.0,0.016208154585243773,17.80821044440606,0.2093252614556942,0.08620565217206365 -2005-05-01,1.0944418401053495,20.41787751488759,8.175199376114147,1.3379089011292489,8.059473514687095,121.20857538312642,0.0,0.09794929130327734,15.436047168824883,0.19256900195510857,0.07103005448555538 -2005-05-02,3.5474245095121426,19.31245479808243,8.221993767758146,1.475528942252368,7.540495233665031,258.94324099132956,0.0,0.31678670783619944,14.172712762634381,0.2064275985520652,0.09447268315544248 -2005-05-03,1.4158456289029382,17.679304463465613,8.130517172180388,1.3894861275444528,6.802229213346316,163.47823284116882,0.0,0.12730707255797968,15.345692621491416,0.19526056914390708,0.08088165899823171 -2005-05-04,0.8136380675695171,19.326583813111547,8.481554229628998,1.6223202124478906,7.4813954411664,106.42020691710468,0.0,0.06879373629930352,14.739937699245731,0.18118862428272497,0.06312502119824043 -2005-05-05,0.2907971898244058,19.97886342089188,8.598195566584998,1.3016937945518388,7.753025139290328,60.13367758047191,0.0,0.022027479311494347,13.499162629264815,0.16064369287130437,0.044445431056999864 -2005-05-06,10.27904893900607,17.450465284069892,8.273467515661821,1.21895191439077,6.64929328444979,675.6431617042895,0.0,0.9874938639059181,11.91245471203468,0.25851598870762127,0.1792924155217509 -2005-05-07,1.3587815031268244,15.753921861819315,9.074416221146489,1.1097284259471747,5.5872501865378705,276.16458488451656,0.0,0.15623144618199114,19.528229281475124,0.24331953025972106,0.14049948141980895 -2005-05-08,0.4116804558711009,15.498652112793641,8.198846309891263,1.0808750172878587,5.72888338929775,133.8740312949075,0.0,0.04428006136996521,18.787068588534954,0.2236524243336419,0.0982008524131795 -2005-05-09,0.4424141359373185,18.45287748722824,8.785708725406769,1.4328357982117577,6.983115661173641,95.87402709824761,0.0,0.043470990124059194,17.23114534559537,0.20588499883544853,0.07054323991598205 -2005-05-10,4.879485192273988,19.391785306204945,10.474802286347023,1.3389513611086703,6.983927242663001,371.0017180380821,0.0,0.4933773249203295,15.479476040595944,0.23716811059482526,0.12104431994162779 -2005-05-11,0.3750998603833359,20.985961017421783,9.984285634567284,1.9301701875521708,7.884626914625399,132.49987910856828,0.0,0.03808516694026237,17.809435623640137,0.21183752321446142,0.08459319249055242 -2005-05-12,0.3506493215619028,20.49338674602161,9.346840195366141,1.677812748293585,7.798118075890554,79.76082276691147,0.0,0.031019690474328676,15.633925523586168,0.18620947165834018,0.059789398554012746 -2005-05-13,0.3828860536356789,20.56784847653993,8.847274690384861,1.8715272210179317,7.94090012269294,60.45819359620257,0.0,0.029736814482892282,13.78164796099604,0.1650072285752263,0.043447957658260976 -2005-05-14,0.2537300458588992,20.92219387290448,8.955095552632407,1.6630339185959675,8.077462230953001,41.442664771086214,0.0,0.017263257881144967,12.187459605527456,0.1449314338497442,0.03091116442075094 -2005-05-15,0.8111269509032573,20.554593884579283,9.019519955762563,2.0384197561646142,7.890180514090315,53.59034916541594,0.0,0.04948194493093272,10.683538806171681,0.13390507149859146,0.027656072316286487 -2005-05-16,0.7583668812939999,20.745725401214106,9.315599227890226,2.0043127989792,7.909545114194812,48.92875308684317,0.0,0.042815867819219866,9.912343439896222,0.12430654868065855,0.02452215162866014 -2005-05-17,1.4425398599129984,21.596788049655288,9.444818453919543,1.7174723216777432,8.273759345115124,69.90623241085287,0.0,0.07842771245586344,9.201528262361307,0.12399618510627451,0.027904545988231257 -2005-05-18,0.7994689275847098,20.827818453670183,9.108984478065796,1.65631478016822,7.986974831500091,50.0956200016484,0.0,0.04160113749863581,9.111489594196197,0.11545595474681837,0.024498935674544458 -2005-05-19,4.6766652365109405,21.497588803816924,9.383125442624925,1.819276191349685,8.234296327796006,201.4573078692636,0.0,0.279726927840942,8.53589287857108,0.15391735405532753,0.058540212790692034 -2005-05-20,1.8259259523847424,20.741735324547832,10.18288392995596,1.3287294947162198,7.689470862094303,135.04524645980018,0.0,0.12323663116309636,11.305791897800042,0.1529756197170005,0.05687152478265799 -2005-05-21,3.662994697719028,20.551994375405297,9.2995955690564,1.7652009631531105,7.806900618402813,220.46711907172656,0.0,0.26794086025484054,11.36172860120916,0.17502785118838457,0.07781864388506482 -2005-05-22,2.6059696823464686,20.900186536462893,9.166386840527224,1.7415583355561974,7.995267103574708,201.9256115708416,0.0,0.20680481862116684,12.957612179044192,0.1813051885080673,0.08214536841627983 -2005-05-23,1.482263910041089,21.194845847738584,10.113565325561245,1.5964242457613185,7.913737503949206,142.68026634914753,0.0,0.11629994172956493,13.367560041423172,0.1729903922381059,0.07118115821195105 -2005-05-24,2.5348997577843373,21.885811600352394,10.726213121083422,1.7460036106954144,8.09340259307974,183.43295418861828,0.0,0.1980040857045462,12.780053359926809,0.17840883202388516,0.07648463560679866 -2005-05-25,4.051348435980079,21.51156096152055,10.927873573359749,1.5290632703617602,7.859020755671229,285.8317479914559,0.0,0.3428607971975284,13.12926282047867,0.2001424858543293,0.10199352439288954 -2005-05-26,2.5661005682479714,22.7109903214768,11.183783329941368,1.5885307368731258,8.37433130491117,238.0972241697219,0.0,0.23098995264037425,14.785926711455707,0.20213936643648006,0.10156462334430387 -2005-05-27,2.4127248076966747,23.84151904207055,11.914913742656756,1.9772170339264192,8.743345514425027,222.15791930717228,0.0,0.2159237240042966,14.774845632028592,0.20022355562639302,0.098991373039648 -2005-05-28,5.443331322515917,23.49157391294605,11.976336487060024,1.702460048490225,8.553614782744509,423.3078782379532,0.0,0.5284466323579711,14.524601796781331,0.2326128978889942,0.14490253767247405 -2005-05-29,14.233335238881637,24.29151895417542,12.022696213891836,1.1009741955413663,8.931265415509932,1421.1885889930916,0.0,1.98265369807363,16.914981113003833,0.36285679081993144,0.39621305650359756 -2005-05-30,9.629287196944812,22.550698052476395,12.513223750209141,1.0224704963592526,7.9353743202771705,1528.601886878442,0.0,1.765411565114455,25.983298125860216,0.4148625009791842,0.5267260686484853 -2005-05-31,3.902918371149904,23.183521229287305,13.071844339284404,1.3903825366993123,8.096409812961015,945.6381980408355,0.0,0.7521434480698894,30.256495059208984,0.3979340325686977,0.4573988658058292 -2005-06-01,5.5017056734781375,22.022363987657762,13.037882891421086,1.2534472571940478,7.502589391968916,1030.2152995145748,0.0,1.0415004494087112,28.952073992904392,0.4013631998637324,0.45632899320363224 -2005-06-02,5.966090249227295,22.662103947665656,13.266850121023305,1.1266604358193384,7.764207753185874,1121.9835237291363,0.0,1.1643561961418767,29.573083712716336,0.4140073083417729,0.4743391587883427 -2005-06-03,3.2590080510062083,21.484551743791037,12.888432546709387,1.1356371164826824,7.263029159552968,787.533229901247,0.0,0.621992567158546,30.308560770768516,0.3910394436956163,0.4034800553586527 -2005-06-04,2.2093374417155136,21.404197056683213,12.947929782436187,1.1999132193291449,7.199549489952197,561.5561656421506,0.0,0.3938872572503289,28.978633084658146,0.3633187350975883,0.3226217062138564 -2005-06-05,3.959410396467616,20.67065954732184,12.358540626026395,1.0306573200298506,7.001038538846383,678.1926043632545,0.0,0.6769167340334175,27.002149200830875,0.36068120110690105,0.31308214024391395 -2005-06-06,6.943160087378033,21.548058894062773,12.183390100059738,0.7743577619244776,7.505169792537345,1063.6645982595833,0.0,1.2531727898130818,26.922560260114675,0.39451270705206565,0.39461582857075933 -2005-06-07,2.8971028141487416,21.849475785865675,12.448568372636062,1.184354200587775,7.579213117459235,675.787699503001,0.0,0.5251759721553668,29.078656454168943,0.3724959404244045,0.3368421575411293 -2005-06-08,1.5731386945045434,22.013695185272628,12.982409941775545,1.054150602521944,7.5010787554126095,426.116060848405,0.0,0.261117598138942,27.447525894305716,0.33807108869689817,0.25902742473518964 -2005-06-09,4.622004380129266,22.180760156373466,13.626896526749231,1.1611435509905688,7.382305163893302,669.4997028292972,0.0,0.7394021744892827,24.999472014823798,0.34507013934865216,0.28119958332747647 -2005-06-10,4.11570355059025,21.031957488888324,13.288456553868553,1.464516331609681,6.876072414921425,662.9629307364327,0.0,0.6669520806115825,25.57170097614716,0.34583815743520835,0.28460101939525023 -2005-06-11,2.9179634982699154,21.723524310778245,13.477420650539047,1.4031924142740952,7.18351235218186,532.8440764990974,0.0,0.46766596878104405,25.901937045754053,0.3357323235392503,0.25647093986581054 -2005-06-12,1.371488490923772,22.25716566691065,14.163888797330749,1.4479839846206382,7.237767225457709,331.10072036917757,0.0,0.2048554451340665,24.996068061944005,0.30716417685148834,0.19814279553069905 -2005-06-13,3.1779230967277616,23.379889959387263,14.260929316153753,1.3949631945724286,7.811281506946005,437.1096505579375,0.0,0.4499761280232537,22.875170265866117,0.30350089364976635,0.1974971600824793 -2005-06-14,7.2769317572207335,24.035930624262384,14.057813488163864,1.3144927102804262,8.219942881830006,875.3512928631209,0.0,1.1016063620792593,22.33685680005814,0.3449805812462081,0.2962972112952192 -2005-06-15,5.68181956339631,22.142906926584047,14.22698159328284,0.6730047396795652,7.148863305081561,868.3910284640708,0.0,0.9330854186758053,25.11368402702961,0.3587467610855063,0.334951597871252 -2005-06-16,21.59093284152254,22.149959154730396,14.422742940079551,0.7540932891473437,7.081826139361408,3542.326791089782,0.0,4.998222668127518,26.69743000745598,0.5625267246994594,0.9790909865053135 -2005-06-17,10.843604742279847,20.45421041754687,14.47963417895268,0.8667258574658561,6.084730409434291,3068.4356464041575,0.0,3.270855567343933,41.35235465530244,0.6080475781358787,1.1353782947945408 -2005-06-18,5.514261890224134,21.32942253862405,14.166758539437303,1.09832748720857,6.71440141305471,2082.033459010912,0.0,1.7307009308003742,45.55111766420346,0.594877088629534,1.0026026911617651 -2005-06-19,3.615582095597063,20.95251340761116,13.988235148413697,1.1272612268717266,6.568094981434169,1461.4345899046625,0.0,1.059788460081521,43.97403048602382,0.5543867573017476,0.8140156787207972 -2005-06-20,1.88385061553509,21.254932917905954,13.519958503962052,1.114933982340929,6.904784314322663,926.2345000206235,0.0,0.4992062841413387,41.259873554132085,0.502595168206519,0.6058974795504443 -2005-06-21,8.026495614250582,21.872289559435156,13.668017598564568,1.2753672301504766,7.187608594640216,1782.636726116205,0.0,2.072657992017259,37.269949408300874,0.5276729082482035,0.710003580273139 -2005-06-22,5.819586151079957,21.63895571718375,13.687238433683136,1.2603070759577393,7.054002352026981,1578.8085394998004,0.0,1.5213770951434107,38.80941421752533,0.5198976300455289,0.6938310983398899 -2005-06-23,10.525207399132793,21.49986798607933,14.089931844748815,1.0208075694203826,6.83403835568925,2450.823107076456,0.0,2.9108022739106296,38.37570747490898,0.5696625409507685,0.8948640818894797 -2005-06-24,10.793225777588694,19.506967452855587,12.98355988753183,1.2071091620223708,6.132455593227607,2926.613390239958,0.0,3.3185554133823967,42.088479591057414,0.6160360542887111,1.0878135447742687 -2005-06-25,2.312213480776569,20.416526929370008,12.7112583284688,1.5999379650112648,6.726650752929301,1374.4275003315204,0.0,0.704680053869764,46.06596429059784,0.5635730077197081,0.8154134387176627 -2005-06-26,2.2154644718985512,20.75984168823075,12.844869171448373,1.4064802366838949,6.864348509850643,978.3487899207039,0.0,0.5984836004929353,41.76199261706528,0.5123075920845628,0.6219237936331463 -2005-06-27,0.6322556310813423,22.36907010840403,13.16986029501395,1.648530753188444,7.6066252988710366,541.1352241501094,0.0,0.14913125998096866,37.99752629441055,0.45001079805423566,0.42755059665674866 -2005-06-28,5.577799658625146,23.604111923676484,14.094226191519724,1.4400971247221708,7.968302846024993,1082.8190918236317,0.0,1.2137928133451865,32.97911813459575,0.4491619802593011,0.4631332305079161 -2005-06-29,8.630949342408185,24.018640520582533,14.660646736830904,1.319937566100814,8.009804995488219,1649.1481578765952,0.0,1.9539372064951106,32.657669533131134,0.48098444786915623,0.5989937706308036 -2005-06-30,10.961002992815347,22.667751378661087,15.142973375151485,1.3845439271341595,7.098263983525042,2308.1219892585636,0.0,2.7545065709008103,34.85668653781891,0.5337450537631886,0.8093311091952975 -2005-07-01,6.562875477783103,24.007298925378407,15.308173088978613,1.6322664665626976,7.788292165864747,1845.4970611564142,0.0,1.7601156728435834,39.3160249500861,0.534458119261913,0.7948401265688549 -2005-07-02,6.715532386047147,23.278448653128933,14.818714336496885,1.4526659739808958,7.5553281421214695,1792.6686913133447,0.0,1.776134908183276,38.7557552350402,0.5297097061119027,0.7878463431848126 -2005-07-03,4.179748176694243,22.97787951178492,14.759188847158068,1.3411715416649306,7.410449073584595,1317.543347791449,0.0,1.0608010140090762,38.630736909281694,0.4987131585621467,0.674373566029893 -2005-07-04,6.433958946040434,23.076484477333604,14.764468064035244,1.0860472203057876,7.462954627927452,1546.9899623489412,0.0,1.5889292428898258,36.57885972290014,0.5010702077766286,0.6809234461076414 -2005-07-05,2.8213814499206973,24.072031219771162,14.769216960731859,1.2733667878207409,8.002836409633955,972.7707946850345,0.0,0.6614167970995166,36.70208970470191,0.46042167233743214,0.5439596383571833 -2005-07-06,1.1375836550797762,24.838842987427,15.277063003116972,1.2846613167040886,8.252539301223011,552.2508646325228,0.0,0.2332134588303416,33.423498825646014,0.4026132049817838,0.3896023527925598 -2005-07-07,4.443562647514382,24.824145587018705,15.207412047664475,1.2968182074722667,8.267231489512945,814.1305046278213,0.0,0.8320719594138364,29.18412917687626,0.3917398359587876,0.3803080682190945 -2005-07-08,9.904562697311928,24.05209198388888,15.535621983528259,1.3359721187921032,7.734571850331161,1596.9239010539025,0.0,1.9897938525256968,28.407030742274245,0.4463041176812976,0.5505381868249841 -2005-07-09,6.246538698946786,22.400438800942755,14.361903270744762,1.1969907248206344,7.23237868711232,1365.06563456236,0.0,1.3585537536237773,32.62396028614088,0.45281498877689874,0.565234362973981 -2005-07-10,1.1541708227437786,20.473296032497668,13.307985944275341,0.978621719857554,6.547334598883385,610.6479505788717,0.0,0.2369070633724908,33.451578961584886,0.4031335488185684,0.40401360446249845 -2005-07-11,12.008165047753534,20.74760122554223,12.801253757158685,0.3904305327035633,6.872302803758216,2024.1269932710763,0.0,2.66469984121707,30.31382284289489,0.4930224970631874,0.6687337837954369 -2005-07-12,15.209005461374323,20.000849766338344,12.825444135390255,0.2996734941699296,6.462680801868291,3389.251974941411,0.0,4.283025588373816,36.61118646804279,0.6036701416140267,1.0874681809161466 -2005-07-13,10.487570232825993,20.42646124005095,12.919355628428226,0.6647543311202757,6.661127100711344,3224.667197722816,0.0,3.454007961548177,44.84810344481676,0.6446231231792721,1.2338144123209727 -2005-07-14,8.565582476399836,20.654180047577558,13.235550095574505,0.8057792025028578,6.674630349919591,2946.131756841467,0.0,2.9432698127869266,47.477650888142655,0.6528657143486164,1.2513115025061068 -2005-07-15,11.670741400534904,21.04018641164858,13.653739632089255,1.0447862221657644,6.737916819660826,3768.1123869763564,0.0,4.234375288302932,48.02664911027237,0.6954341703854096,1.4592911677565819 -2005-07-16,4.868296602146038,22.332156862865144,14.509994557681198,1.3656738896765184,7.146513749381345,2343.9155905968873,0.0,1.736157367208924,50.823497020493676,0.648771679362173,1.2142855706051248 -2005-07-17,6.597878354231462,23.25339393141061,14.776825316189887,1.456704596649675,7.562391083502507,2344.5274822737156,0.0,2.1944390790217128,47.21445696236449,0.6268772629286625,1.1245786028547444 -2005-07-18,10.438472900666,22.9589387830832,15.061428313973508,1.274054245420168,7.299509475186266,3138.2373465632063,0.0,3.4747160311223553,45.28423340498254,0.649131791184125,1.2611246623222145 -2005-07-19,18.937395247038328,21.08329445362337,14.862200900442335,0.8589955239164927,6.29691618750202,5851.193326799109,0.0,7.375900977392494,47.06675088415501,0.7689036022174875,1.9440227689043574 -2005-07-20,5.451273519165863,20.498478397830922,14.325836380019526,0.5062091542143955,6.1749882422506905,3171.0858019732686,0.0,2.237418476205395,56.21162915830688,0.718331056016616,1.606147469446909 -2005-07-21,7.966751005521664,21.095438151514845,14.72545326612778,0.5913825502672034,6.3627105532187205,3250.4592628841447,0.0,3.1245264097688823,53.06697204244298,0.7110015394342931,1.5212818176011775 -2005-07-22,13.635840992920174,21.295587752971155,14.614219985601187,0.4870333118978461,6.525589556987052,4870.958544692722,0.0,5.644449205949785,52.33414533483795,0.7685056636416263,1.8497337389944681 -2005-07-23,5.357544768700595,22.257013933833576,14.295153873818602,0.4687234063663538,7.188791056282517,2968.794136995627,0.0,2.1776733079086084,55.860231159278065,0.7131456308397025,1.5356726580827715 -2005-07-24,13.198658266247895,22.74904590073503,14.335896005459492,0.6751338996677004,7.445685653148828,4622.859212904792,0.0,5.312937000315413,51.42125317205195,0.7527782054952167,1.8086238691038237 -2005-07-25,14.504371749588618,21.307436108205426,14.166702329880296,0.8093012838867603,6.708874169878927,5586.930730645898,0.0,6.261010674480797,53.59697515306901,0.7933345709106815,2.130660501375545 -2005-07-26,1.8257652362542,22.724818221415585,14.44855204258859,0.8519159606854735,7.396835419927999,2253.427542454614,0.0,0.7329861761102674,57.13969259862566,0.6869076504000944,1.4985678189302154 -2005-07-27,2.0938839781692504,23.98970193966395,14.919987502885736,0.8727641419495618,7.929747086865011,1502.1319106451726,0.0,0.6957850730761361,49.45634853346884,0.6005252972224298,1.0814407735126075 -2005-07-28,4.0822062489942335,24.18023159995301,15.246498122153707,0.8672147949487677,7.926468021045322,1518.1683020960666,0.0,1.176682024903159,43.12988028998566,0.5499888345782176,0.8831343370318427 -2005-07-29,4.54285886651823,23.733711872982717,15.506986254930705,0.8995107438726248,7.589266846820623,1427.9550562799589,0.0,1.1961580492570647,39.701072774783974,0.5154118401538433,0.7570116797088688 -2005-07-30,6.932798620339178,24.69515271631218,16.059727621756497,0.7293652819682634,7.934732237624318,1729.5091725988639,0.0,1.778586858922517,37.60332445633645,0.5188156724941506,0.7635951479382158 -2005-07-31,12.069233005380935,23.828317234415323,15.754134609624181,0.8364007275524997,7.556632876398475,2784.017354999155,0.0,3.3342190405975227,37.54680761273926,0.577993271562258,1.0047486570511832 -2005-08-01,16.046510085515298,21.357995792986557,15.64789721781616,0.7340321814284082,6.138594621719535,4307.627367273094,0.0,5.284127113286939,41.96928568329219,0.6758447304732013,1.4586305669572357 -2005-08-02,1.9711973761857384,21.94130270185501,14.389474868065655,0.7716498677987663,6.995722251451473,1707.245182196722,0.0,0.6671383073427852,50.22915471425264,0.6080987500327739,1.0510816062529105 -2005-08-03,4.749983296474784,24.04176673528886,15.087817547186587,1.163180741121304,7.9161105939074385,1687.2799480084452,0.0,1.4385489485931116,44.60341140589873,0.5749336245163902,0.9032450536687454 -2005-08-04,6.1699327568678575,22.09616984064972,15.06746888103982,1.3111673623639222,6.831055658729919,1816.624487281062,0.0,1.7461132503331163,41.413268425299165,0.5543120688401239,0.8538416147833333 -2005-08-05,4.112492918132394,21.410205707718294,14.819773616269153,1.0824136311799355,6.531698681866492,1393.7524481898608,0.0,1.1173999743206737,41.00989664968215,0.5256452800766822,0.7259514138958925 -2005-08-06,5.847295918669291,21.691982154194207,15.112864485133679,1.5192171199238835,6.5803065784292665,1557.1275947348963,0.0,1.5484224894506173,39.23839694929047,0.525217788375604,0.7083304492998658 -2005-08-07,11.448847445462368,21.21223418205401,15.225081065694518,1.288862232032692,6.247369194955052,2699.2732713285886,0.0,3.280268131497321,39.165255797488186,0.5896200252202078,0.9605591127614184 -2005-08-08,7.559268691386678,22.19729491681869,15.389794362683046,1.2706459508027723,6.770116806243475,2354.785063619793,0.0,2.3451373817095993,44.07579664476168,0.601513542176354,0.982360646763634 -2005-08-09,9.777635722737047,21.954137435162345,15.245685752204697,1.2414319915461685,6.687306369667725,2848.992144416725,0.0,3.1509288712622467,44.380167328216935,0.6309017280716525,1.1192460788159435 -2005-08-10,13.131216794877322,21.557541182862053,15.346870337469213,0.9651591531484728,6.410454679100697,3975.495875034518,0.0,4.6730687577525565,46.50472208792789,0.694718300536279,1.4401203454681768 -2005-08-11,11.870663157543065,22.470615243304348,14.991563346410905,0.3013797474969155,7.09120257406073,4274.222783704113,0.0,4.670317186037886,51.181482963480384,0.7345148012919501,1.6485754445262435 -2005-08-12,12.719448092963955,23.611801132815586,14.89876043936079,0.45672414719698207,7.766426734744805,4814.492654962656,0.0,5.279121210169873,52.92205873622043,0.764679099940523,1.8769693230436597 -2005-08-13,3.6474469923975463,22.640593294399327,14.49603502033639,0.792941142227495,7.372229739945622,2453.5778275425446,0.0,1.3827199147556173,53.887564256152736,0.67024391641553,1.432358345423366 -2005-08-14,7.978156423306217,22.042058132718765,14.798180340847635,0.8507857197788604,6.926859023904441,2856.6448454565225,0.0,2.784513617793145,48.38947964161985,0.6566447861117481,1.3563812954280006 -2005-08-15,6.4660323538541675,21.369865338681606,14.633839548580227,0.8147541902258991,6.604965836013555,2483.212110355959,0.0,2.190543021263686,47.995200316591486,0.6344364776460639,1.2164830088659893 -2005-08-16,12.104539212682084,21.019873410263976,14.344008931392832,0.6928734643998051,6.519133596944206,3731.8754625429287,0.0,4.28623380594744,46.83893120797487,0.6866515119150084,1.4445156807434707 -2005-08-17,14.14716091363379,21.1383606263802,14.359982445419968,0.9252602021618394,6.5840011160189595,4881.313995858066,0.0,5.636047994128951,50.503895589695446,0.7531410244103316,1.7984833832993052 -2005-08-18,3.60931002064026,21.07359203477801,14.595799525795224,1.0782318070889998,6.454402066609807,2431.2132303085664,0.0,1.3987403773898297,54.79941559953971,0.6804220971364796,1.3837070395922688 -2005-08-19,2.6411609776327354,21.51070643804316,14.9926745890215,1.2891549899216257,6.552821998549763,1596.3333262703804,0.0,0.9000742751951081,50.161156660673576,0.6151112409942734,1.0377778535684148 -2005-08-20,5.508644667750282,21.828882169053827,14.970050841120045,1.5269523720266909,6.752270960471261,1865.149299866457,0.0,1.7289513739819427,45.554257209099724,0.5948482253637211,0.9388029952728181 -2005-08-21,10.72177242524296,21.102205497999968,14.44694424583148,1.2227820504724252,6.539221791017898,2975.2651242539423,0.0,3.458597492070517,43.933619479874615,0.6366983012388773,1.1377391875531797 -2005-08-22,11.738874672014205,20.959085653863813,14.173426692403538,0.9266996393400876,6.567091176373483,3667.3997537379846,0.0,4.160959669407362,47.067757378522636,0.6850574375746208,1.3741823160891897 -2005-08-23,13.334496945061824,20.50693674472043,14.130105088967507,0.8558871965590632,6.324318305404926,4572.056566126119,0.0,5.235638593262225,50.337993356030566,0.741741390871968,1.6917314221235469 -2005-08-24,7.846599135889872,20.052253280442372,13.8396599935387,0.8198688892021516,6.178822691872244,3499.350498370012,0.0,3.176098447806649,54.417149237487415,0.725330501461143,1.5848455530030623 -2005-08-25,7.488134932088075,20.458522108607866,14.05781855207464,0.769940520386238,6.330833733846339,3169.3042481618068,0.0,2.9525116822602318,53.529180030523605,0.7108103963520341,1.4812234877822277 -2005-08-26,6.200780014598459,20.336328050658274,13.923445793232096,1.1169789389975648,6.316510289646713,2678.113987621296,0.0,2.3373252293262485,52.362248314773986,0.6822196191996268,1.3200991680687468 -2005-08-27,5.732286556878992,21.684962934949922,13.63111478528532,1.087159155259896,7.188994453962672,2346.736668013129,0.0,2.047640878027468,50.45028839333589,0.6544889494549267,1.171106086841176 -2005-08-28,13.537151541140153,22.15957125538205,14.122776816147047,1.0309817730765631,7.282599227816166,4140.793159747833,0.0,4.972534999364333,47.550952863531435,0.711635045411059,1.5194769325155077 -2005-08-29,17.091664180343948,22.190247697144766,14.218282795294176,0.6213326923944634,7.269306671600069,5988.015599269989,0.0,7.1956945266543215,51.20477373113384,0.7956072490412933,2.084758859962948 -2005-08-30,4.942158270466336,21.39582448174112,13.73946998768651,0.2203771598157587,7.001316896495741,3121.777121009936,0.0,2.0274833502536813,56.4509274194831,0.7151878708410396,1.6657943258718952 -2005-08-31,1.9183348712487218,22.93374909855018,13.738913284949145,0.1006672546586832,7.843092012956338,1676.702032318279,0.0,0.6751996997827705,51.79258538278814,0.6256958461315146,1.1871629426980914 -2005-09-01,1.4041017095666068,22.919698085967003,13.801954007636533,0.16385034023161318,7.819238818785613,1090.7072671970375,0.0,0.40952933890874355,44.90523372409279,0.5394723955744152,0.8351441707861201 -2005-09-02,4.589340373187149,22.760092995616823,13.46320006708447,0.1338449807690622,7.845131778773276,1346.7426456746462,0.0,1.187318547194323,39.07462627153946,0.508655640715392,0.72442639224738 -2005-09-03,8.339720928562434,21.947632547579428,12.696546891708849,0.3124835837973146,7.657528607169904,1941.3223697736607,0.0,2.1413174360535105,36.91729750967878,0.5272136152419882,0.7976147462273884 -2005-09-04,1.7245033521359756,20.952729082044407,12.617125618811192,0.2381271372098423,7.161195379040472,922.1731543481293,0.0,0.4184011320756509,38.36782565609524,0.467048481082446,0.582917465219903 -2005-09-05,0.3374239267139062,20.32579360444373,11.90143323593492,0.5007664159304429,7.0630632153329485,459.9226575345974,0.0,0.07082852976615273,34.524058855378065,0.40611266505158866,0.3902365627306011 -2005-09-06,3.5099885783652445,20.423814516719748,11.586413717864005,0.5841053948315803,7.214692646765219,698.507942118853,0.0,0.6702829896686806,30.198614828497405,0.392682401098562,0.35608614835948216 -2005-09-07,6.966019949452114,19.654692419837843,11.15362171480002,0.2427831618430045,6.953878875017239,1161.1300821112632,0.0,1.3623876971995186,29.127756778252948,0.4204680549673885,0.4392389997262738 -2005-09-08,0.7662928759870395,20.328195257359134,11.033508353122807,0.15978706654889,7.335647707578049,462.66960137287714,0.0,0.14496382697549692,31.313228928817075,0.3737047037030182,0.30799682876890927 -2005-09-09,4.172334508829056,22.061170233419514,10.96377940253828,0.5168503835767804,8.2189395241621,695.390584749457,0.0,0.7350869888715224,27.67819309745661,0.3710370763727931,0.31241931303371717 -2005-09-10,4.627039235299846,22.17458251802681,11.399533547526955,1.003268657865273,8.1678392358075,769.9061789944084,0.0,0.8003767463786096,26.96909768288185,0.36807359713824717,0.32523947252698326 -2005-09-11,2.7841506000816585,22.158085624712662,11.733505712676394,0.9148289464601228,8.075100891568319,562.7574983219638,0.0,0.46117614301310805,26.788060610395622,0.3444962333135367,0.2819364910011403 -2005-09-12,0.3571914668612051,21.73069007621416,11.763656793185135,0.3482481625891386,7.854999419539214,248.40631074480297,0.0,0.05255667509373213,25.156974305961665,0.2972227522086868,0.19152993481946137 -2005-09-13,1.6862977596809228,22.40542107682853,11.989834760793304,0.6938975548120327,8.138926800814122,273.75176313119675,0.0,0.22000533227443286,21.86168780432152,0.2743180843387954,0.15817604759628795 -2005-09-14,1.347183527210315,21.89587229434097,12.419429667991938,0.8204942188048786,7.758704760269298,220.2513902177749,0.0,0.15942355236761974,20.08026725055057,0.24961529017601994,0.12723976369276516 -2005-09-15,3.2597342057313536,20.974947213579878,12.487817782239722,0.7967979471244016,7.257013401029921,336.14897752564286,0.0,0.3720868333763132,18.438938315442734,0.252774839806366,0.13948282304473322 -2005-09-16,2.131338533136533,20.10760990415417,12.510642593143642,0.5075243953796068,6.785705708599974,270.87440730567016,0.0,0.2414354032111361,18.863602061992356,0.24457683945868963,0.1275588689276726 -2005-09-17,7.5148031856275,21.80708858302453,12.799702041160511,0.4937820025230541,7.608429578405953,724.0591648121709,0.0,0.9572180872218077,18.43439137484893,0.3022905429688349,0.22878542298552657 -2005-09-18,18.748601511517037,22.355488622796603,12.859260018189413,0.7382077047484117,7.8842318858909675,2536.772392817089,0.0,3.5685003148592074,22.343980661889308,0.47870075305190524,0.692285447163148 -2005-09-19,3.470445968126668,19.819816253341717,13.197724887625524,0.8778036807977614,6.38318932784354,1167.5161162726083,0.0,0.7738788732308843,34.794686237292304,0.4457628757683483,0.5684797795021521 -2005-09-20,2.4023555592529746,19.90051796692701,12.494719479693739,0.5882545156164115,6.692919076757999,761.3673338543978,0.0,0.5054320130253984,33.55741962748985,0.41890702776549477,0.4470131085404776 -2005-09-21,0.5739453582120301,21.503123484141728,12.742277574104357,0.6393356375555937,7.481855002153264,395.64680970853317,0.0,0.10844142839522164,31.37499684610131,0.3721835397901647,0.3074963335015398 -2005-09-22,8.657234535727605,21.331225617181,12.912219439121248,0.5767583591371127,7.3384263079295655,1284.4733942858572,0.0,1.646332839989375,27.482082190764437,0.4209985651120495,0.4508441566324521 -2005-09-23,8.324592068800014,20.65266915759928,12.66207131709198,0.8071890483067609,7.058266991575416,1553.864748405361,0.0,1.7822377777115026,31.0926658931433,0.45918436057383766,0.5648503866090057 -2005-09-24,2.582584568618463,21.392228400904628,12.896335978701144,0.8464222201544399,7.385116510174311,840.2044072586842,0.0,0.5537428312998127,34.037194288666136,0.4265956235507905,0.45200658011732425 -2005-09-25,9.829154190247248,22.160719646145157,13.311391781398726,0.8630014961108615,7.669241002147778,1761.4027496622912,0.0,2.183833449992161,31.463149152490562,0.4810273694167745,0.6267559434650474 -2005-09-26,13.748326709061828,21.478404643231386,12.942973516185615,0.6262590926008069,7.424949750322574,2910.33238702049,0.0,3.632071607727987,35.12546047125559,0.5693465216906595,0.9610252198467564 -2005-09-27,7.649078235689461,22.60606109017339,12.593418357902966,0.9208043637196496,8.135933805697857,2293.6005337949496,0.0,2.2156697412493527,41.50076464083252,0.5725623835973107,0.9629506997082297 -2005-09-28,8.82191812010085,20.099437025917638,12.385269367768212,1.0054927919767191,6.871484990693069,2447.9569838803554,0.0,2.565184437111075,41.042115696086476,0.5808822243704687,1.0174228723596368 -2005-09-29,7.866664911141032,19.859043941775294,12.227086585844473,1.3038435408845674,6.7987372539012165,2370.7210665308976,0.0,2.3706671908566745,42.838617279360335,0.590682198209748,1.023263572255035 -2005-09-30,4.339361344213216,19.9772587467618,12.185769886391585,1.1001720949130906,6.88126466902055,1646.3786623296878,0.0,1.2714844647986183,43.59579386628177,0.5584120949151287,0.8596987853141379 -2005-10-01,3.468255594036016,21.390692069067608,12.48215835693124,0.8796810436746382,7.548115287796669,1258.9100187780339,0.0,0.9401408846604795,41.252192279476006,0.5209629315463896,0.7027738416088144 -2005-10-02,1.849193886297744,20.67122698657213,11.819067700075705,0.6648112353041122,7.378796784443266,809.0178343830452,0.0,0.44484776685398564,38.026471348610656,0.46452449485517444,0.5252073846718406 -2005-10-03,7.95204031383645,20.07553159562446,11.56466285338203,0.37765002277283016,7.149033921540062,1592.7190444341113,0.0,1.8682127813370233,34.179543629257225,0.49080442002208335,0.6263483173853086 -2005-10-04,0.20179731771654136,20.02582966629957,11.262817491366699,0.6426112937852962,7.220487339892759,547.566459928508,0.0,0.04470299907754455,36.22974260545234,0.42440276745003175,0.41453000824538677 -2005-10-05,0.19496808739456573,20.581208433394558,11.148051673284074,1.0920638138142722,7.545288300377602,304.8768079439019,0.0,0.03664219563413529,31.41756972549588,0.3682646564543708,0.2754188680508505 -2005-10-06,0.09908713330056916,20.088655435462275,9.915110692221747,0.5558439784545071,7.639492961697855,192.4659181160535,0.0,0.015782003939781117,27.161938003206032,0.3175724807641327,0.18168778165868255 -2005-10-07,2.713609832719027,19.181765616232997,9.653323309275422,0.2249321468754051,7.265895203320426,374.14464265731425,0.0,0.389972116771081,23.440193888031907,0.3046741011178799,0.1776492222964478 -2005-10-08,0.5641704298239554,17.64353799134824,8.969136301466714,0.2786838549487461,6.697464456486235,187.01677787772417,0.0,0.07450962826101781,22.679137369712194,0.2707687947207151,0.12698648582086103 -2005-10-09,0.008727333741691597,17.474542541829162,8.23563869912625,0.6904268983920201,6.815700182433573,89.39791083132778,0.0,0.0010152362697076166,20.423586936346954,0.23802262380129804,0.08281681862450244 -2005-10-10,0.19467594264532076,18.958266435908,8.087733916265199,1.0307394149438347,7.558611790828654,67.35352603428436,0.0,0.019806515344781644,17.93411722046295,0.21118816292635967,0.05692569109320669 -2005-10-11,0.0031156544132580127,19.260804722546307,7.097988727972063,0.8801854582643628,7.912224637410872,38.415869262561834,0.0,0.00027346365573156003,15.690723575510235,0.18282259863683697,0.03709758827560793 -2005-10-12,0.06022624248427315,19.0786923186098,7.722258070631319,0.9254845819188088,7.704521934651164,27.209476699461465,0.0,0.004522413126532163,13.501439873128128,0.1579842258339156,0.02483739058803619 -2005-10-13,1.43575521074752,19.545776439391698,8.456138087128688,1.1113671321963392,7.764559255135257,80.96580118705661,0.0,0.09878019938365123,11.72792562972849,0.15334796690748936,0.03120871853273208 -2005-10-14,2.516455582228256,18.930639551310453,8.528975172455485,0.9621913835869624,7.460098085471712,140.9287540722401,0.0,0.17583297590391433,11.371990083226597,0.16179098628356145,0.04708857708355326 -2005-10-15,2.499072018202664,17.821866181014652,8.121962974038793,0.8570261395445701,7.034986491124153,161.8684385970021,0.0,0.18457503233905426,12.068058449486342,0.1696972046015874,0.05875672588377474 -2005-10-16,1.609169886553211,17.858185412907055,7.8620136655964865,0.9501080557595488,7.1198034347892465,128.9253818388591,0.0,0.12117296207891393,12.762423836452122,0.16741933395003294,0.056698240525881384 -2005-10-17,1.393095142834022,18.864888833553504,8.347832193652714,1.165246972548657,7.485038875911305,111.75509168199574,0.0,0.10247284007242219,12.57080308001673,0.1626699574782333,0.052510893477866895 -2005-10-18,0.4920488070869973,19.087563185264358,8.676278648514485,1.1067350113887653,7.516988685814261,62.702870396851644,0.0,0.033645136367543405,12.127136854075555,0.14700496681879774,0.03930509268726336 -2005-10-19,0.5658593048348877,18.41534922511204,8.84928652905668,0.8637182760102216,7.152752590419102,50.90620501954736,0.0,0.03501275741569643,10.958643286793368,0.13425265041463733,0.0309169775534048 -2005-10-20,1.4500841846309882,18.536594416484068,8.827315370952011,0.8669738877778498,7.221614501799998,78.62190589304207,0.0,0.08615857212801359,10.085582647361893,0.134382706254089,0.0332444147000275 -2005-10-21,2.0944707865046115,18.078566791860307,8.168237235741545,0.5291079256739653,7.170645826988668,110.59166516445981,0.0,0.1282591411904206,10.081501995516543,0.14184183693535624,0.04116990047639211 -2005-10-22,2.549777485661689,15.821509054481034,6.990742743393698,0.3864650486637887,6.396564385461219,144.23712773449583,0.0,0.1677788097694637,10.649135514207403,0.1537583977040244,0.052346472576688466 -2005-10-23,8.394231951020505,13.26185400059104,3.3636353262081014,0.7032805102888562,6.058290476750217,533.6626705263124,0.0,0.7489542870291217,11.717349831260155,0.2342863075290815,0.14811444772277782 -2005-10-24,1.8949323899699853,10.814063617458842,1.9915853320172965,0.8152489724310535,5.304256250819427,272.9005373481722,0.0,0.2024583620933751,17.926150878384604,0.23090219657713296,0.12724282059611786 -2005-10-25,0.4963033877559134,12.457815959024993,2.9920982512965204,0.8473094445458557,5.797591883759838,131.25792992833814,0.0,0.05094993916304136,17.935417630617817,0.2147170672873472,0.09058697670684851 -2005-10-26,1.4144484804166748,13.911502876528955,4.392826694609782,0.6895085881035778,6.142271339890027,152.6221134721977,0.0,0.13712037562214907,16.525014976084783,0.20898260006478722,0.07984646708998154 -2005-10-27,0.9038296951928416,14.190641434500172,4.834527431320908,0.66821556880554,6.174435949119138,114.63343150866643,0.0,0.08328349627790532,15.977186609060185,0.19665240755683447,0.06465743993120249 -2005-10-28,10.801271633568225,12.901671407273252,2.5742810814322685,0.47796856811957106,6.068852202170082,870.2846166831812,0.0,1.259438885758449,15.031111174514141,0.30092976516226183,0.23385713030362582 -2005-10-29,12.249684682417572,11.54425965354343,2.5446263399426043,0.21770919083247936,5.514457624089487,1602.279560573372,0.0,2.107282470429242,22.963264393936914,0.4102070093550409,0.47309488714894016 -2005-10-30,7.872224159559296,10.438416975723424,3.793750588112239,0.4596473685934561,4.754579079814161,1543.8231157595465,0.0,1.6960880397999114,31.513967065319726,0.45882245412647,0.5662169961201557 -2005-10-31,1.2633807376437571,9.944370577285165,3.6512469063035886,0.5250550814140194,4.57043962914072,659.801185323673,0.0,0.2802146971393993,35.736421007069765,0.4310226328251533,0.41124747947335727 -2005-11-01,0.5214051164986585,11.149477634319904,2.5997878410179447,0.6041956884629496,5.346691145131888,362.0257288153359,0.0,0.10692713157850797,33.74166840381532,0.39914160241460145,0.2839840159026468 -2005-11-02,0.01847868245145685,13.115613947737256,2.003443351281605,0.5710521885747863,6.267995145013147,195.0507330248471,0.0,0.003382830670934655,30.786872971142046,0.3588614843519715,0.18537533304744025 -2005-11-03,0.03977653095284061,13.815052173821245,2.30434796668626,0.5982328106238378,6.508624085845711,125.59705196270731,0.0,0.006338542252541039,27.203829044894405,0.31736955467955913,0.12163576586926013 -2005-11-04,0.149153669439362,13.940977517303992,3.2025801666304337,0.767261809717918,6.414288842902395,93.14184664046799,0.0,0.02073134626976378,23.983839454326322,0.2811330262233907,0.08233582042970351 -2005-11-05,2.178051305097352,14.123472742202596,2.3194652203808195,0.7428570663258807,6.639085842668327,237.82466586889504,0.0,0.28012719744923587,21.319120512607594,0.2737261386071947,0.0962502533936867 -2005-11-06,0.41077815757237945,13.840262302971489,2.615363217625417,0.6777974822890215,6.479041051758286,110.94970606194195,0.0,0.04891408770535466,20.66875088167471,0.24556223754654885,0.07010228364904478 -2005-11-07,13.789133103758608,14.020755408579811,3.1350399057575538,0.7476430020259556,6.469463264693407,1389.8100256329685,0.0,2.05139337877209,18.623184339416337,0.3775815475097236,0.3579882386108672 -2005-11-08,3.1249090185164774,11.960143643737476,3.660061241423324,0.6184184746630179,5.487410180514824,715.6767509224877,0.0,0.5562367945632238,28.47679963590669,0.36813850409209453,0.31772878704119173 -2005-11-09,1.3258725147135757,11.93722348608596,3.5243770071240594,0.88036391963008,5.510152895126612,396.516667214734,0.0,0.22690598638702975,28.350558553459646,0.345710324074528,0.2413762955772749 -2005-11-10,1.1898988985911192,12.190777565636509,0.554140653922824,0.9494188709758568,6.138646004097671,297.2695338837654,0.0,0.18967045703741015,26.63536950387703,0.3241455326882111,0.18600475278448392 -2005-11-11,0.25273759820373737,12.66155997934135,-0.37186160176346006,0.6770929528328755,6.438533914464596,157.02072835824893,0.0,0.036325081835269335,24.675968394225034,0.2904025422600009,0.1266113821722701 -2005-11-12,5.585015262370298e-5,13.634808373781409,0.5006144491122286,0.8982135560001486,6.715651378177649,85.45498179606352,0.0,7.0412519976179724e-6,22.002833577513126,0.2563187607411503,0.08241913119382147 -2005-11-13,0.0,13.45322821914203,0.5358665939823545,0.8263089568452681,6.643484075242872,53.872979561542195,0.0,3.552713678800501e-15,19.337853972575928,0.2252729025403204,0.05365098070801221 -2005-11-14,0.0,13.200596389413882,-0.06867031599868274,0.6851033431407961,6.620018657927432,34.93815235160279,0.0,3.552713678800501e-15,17.040961942954436,0.1985156659271805,0.034924266844823214 -2005-11-15,0.03649641394322473,13.638224219322279,0.4480542793038653,0.8000969844321938,6.7325613052614965,24.738004214588752,0.0,0.0030664329409178584,15.038632479655853,0.17561504222994923,0.02320096599052416 -2005-11-16,0.04250627981002554,13.969210799039626,2.4153537163640717,1.1259503548485903,6.595535784432591,17.329253651404343,0.0,0.003136028987054354,13.284630052328758,0.15525211268784572,0.01558024515566908 -2005-11-17,0.3698947213545584,13.735146551867153,3.4414273094839505,0.9051562953276407,6.323099780431413,26.297658096570878,0.0,0.02443161271960087,11.784289974792266,0.14158802049053928,0.013862081284950187 -2005-11-18,0.4329022397166356,12.720466628024829,0.3720355708611786,0.9004732474123152,6.392313922079329,27.604930846692493,0.0,0.026252333623465518,10.809570144852357,0.13096718950266703,0.013020869013591481 -2005-11-19,0.4547065794879441,9.514998327841322,-0.029009323289975623,0.7125146702771904,5.205727034458319,26.75109092986992,0.0,0.025475836131958862,9.988423213261246,0.1216553896494508,0.012355046147781922 -2005-11-20,0.007149742539756523,8.728582553922584,0.4887761923103988,0.7749082777290257,4.81016810322865,9.887470108207824,0.0,0.00037156521172098354,9.495995341026983,0.11070520437649609,0.00809913064758388 -2005-11-21,0.17802290738208604,9.333944808131724,0.1853567501765183,0.8386499199177369,5.104729464154248,10.999335949402667,0.0,0.00854740846289892,8.708720634231303,0.10352454386043868,0.006573622600154245 -2005-11-22,0.03348938623319614,9.37157200172215,0.08979824828298863,0.8255737396299041,5.137214815070792,5.751115327928021,0.0,0.0014799668152642442,8.09983065807409,0.0947476703603635,0.0045044661633307555 -2005-11-23,0.014241904969306163,9.955462813227136,-0.3888903733654827,0.7943825663233037,5.438107547596452,3.431672921347168,0.0,0.0005737773002139623,7.410062015487281,0.08648811268688819,0.0030195618326792593 -2005-11-24,0.0153463947640385,10.758912146962547,-2.3547901928752424,0.7317582117119182,5.967641470803891,2.3738584737472492,0.0,0.0005600746796839574,6.726859700909145,0.07854213496757625,0.0020508724775267734 -2005-11-25,0.0,9.915043247465398,-3.604731313725552,0.7041259924194201,5.773199327251332,1.370644190004503,0.0,0.0,6.048561477603681,0.0704616449263551,0.0013350215918634858 -2005-11-26,0.0160989653535464,10.120916320905637,-3.4041990185339164,0.8173809545291327,5.832491122273408,1.1813374842055284,0.0,0.0004739300603975524,5.447619408237853,0.06364861883988356,0.0009411991632625747 -2005-11-27,0.029054561851266883,11.079782840225015,-1.6765306511124027,0.9038611291676596,6.026084562731874,1.1444319064750839,0.0,0.0007716687874494005,4.916154246234982,0.05760833355373366,0.0007301743915288139 -2005-11-28,0.0059541448526415994,11.724386249576547,-2.047527306474772,0.7179731875525974,6.301669545419248,0.6150027626259306,0.0,0.0001420669921744864,4.433869492137535,0.05172093857417155,0.0004969410089761041 -2005-11-29,0.07122386030981047,11.812722395536895,-1.569600345259596,1.0081122419642536,6.291756340078953,1.3337097457692295,0.0,0.001528340178185747,3.960395422057391,0.04696563429242831,0.0005561976106238696 -2005-11-30,0.4831960782677032,11.941578711888704,-0.3973680913722412,1.2236383215723328,6.215061050492665,6.955477774308006,0.0,0.009956182903758048,3.5974026373612324,0.047536211519420425,0.0018780344311239649 -2005-12-01,0.0,12.329838397282026,-0.2418198551952846,1.0273900998219108,6.347837219508631,1.8068609621748146,0.0,4.884981308350689e-15,3.6464041258272646,0.042478138599300164,0.0012225121470441822 -2005-12-02,0.0,12.833854781516395,-0.44652267423530295,1.0707509862580926,6.567354108224092,0.8408088892548485,0.0,0.0,3.2505627258407546,0.037866854366466196,0.0007957979496548515 -2005-12-03,0.0,12.082893031680264,-0.8137490226269383,0.8250025312945253,6.3229315344759724,0.5209191526357164,0.0,2.6645352591003757e-15,2.885862226174806,0.03361834053270962,0.0005180270627220802 -2005-12-04,0.01313625873021496,12.85983171043274,-0.2255192189963653,1.246254490664198,6.556506590355248,0.455763125089415,0.0,0.00018122300675138883,2.574400440666551,0.03014305018175001,0.0003648051505110716 -2005-12-05,2.6624733391547464,12.474719829143805,-0.4410204063632416,1.0215572584888724,6.434640710815336,34.12347554552478,0.0,0.05185657612491257,2.2981771596248435,0.057788218792682707,0.008133400789504915 -2005-12-06,2.1453688924451084,9.409923290117648,-1.4879382271522719,0.6866675039996277,5.401971420773493,49.80107028653481,0.0,0.06352533929452608,4.412970048641259,0.07640020713761424,0.014967132999489772 -2005-12-07,1.399940609463469,7.750219706520834,-1.9722731310303647,0.7011421558313418,4.85231789978834,46.59823279440524,0.0,0.05042256932557265,5.947753506736318,0.08559566035001308,0.017420481190271658 -2005-12-08,1.081583958973004,7.0476771899468185,-1.5689628720161697,0.8455667619556745,4.536195594241641,42.46179118553269,0.0,0.04270639487184513,6.731795506305747,0.09102057928912048,0.017842594004946553 -2005-12-09,0.336541238484912,8.603424362930378,-0.8158170742586764,0.9701608334210428,5.010602453906456,23.13415999512805,0.0,0.013467449376572516,7.200254923556314,0.08779857111784836,0.013665308214955964 -2005-12-10,0.005444441767271116,10.801020628425107,-1.394902918395032,0.902723262109934,5.915634595655576,10.0161755414804,0.0,0.0002032966970692135,6.884139496284702,0.08025898702209495,0.008926428303842496 -2005-12-11,0.004847259085049157,11.419665604643214,-2.110843453607968,0.8349887322348561,6.218893678058285,6.001965556527911,0.0,0.000162277194415336,6.1866670611583725,0.07212694873067141,0.00583539438381108 -2005-12-12,0.001920622243604224,10.16109851346806,-2.4764435197950725,0.7695168939007686,5.7941186744104805,3.850972524231384,0.0,5.7321494705379894e-5,5.52871994803538,0.06442821710934851,0.0038072955246934185 -2005-12-13,0.0,9.623683787139226,-2.3121820706252443,0.8103743915484244,5.583625062536431,2.4827453878422268,0.0,3.552713678800501e-15,4.979914649552339,0.05801263310285932,0.0024783704436862953 -2005-12-14,0.002974785416015359,8.735340619213169,-2.4050585571387417,0.7045412429869106,5.27209078541003,1.6607050718159313,0.0,7.207228684923562e-5,4.502701725318757,0.05248807995553188,0.0016242767458119211 -2005-12-15,0.0,9.111447997218344,-3.3877897788236986,0.7838467418989732,5.504654495445432,1.0615280924933768,0.0,0.0,4.098470815250899,0.04774440937643387,0.0010573278205165077 -2005-12-16,0.0,9.952119402629977,-2.9760333392735685,0.6695014453612612,5.769045606153253,0.6885944877649592,0.0,0.0,3.712151295789916,0.04324404860318698,0.0006882707167486822 -2005-12-17,0.029123748452353194,9.36149895636335,-2.357248362610799,0.7322023299130208,5.497175469183986,0.790646722233762,0.0,0.0005244427704433688,3.3458185107171126,0.039315791695774045,0.0005278860471731114 -2005-12-18,0.006811605795501431,9.44248129169602,-2.4883797494862128,0.8224027823104569,5.541088116588312,0.4469710470877908,0.0,0.00011163117215250585,3.0578388763199684,0.03570110263304365,0.0003606265011317938 -2005-12-19,0.01522558731825845,9.340081476339206,-2.984653466896573,0.8173481173373888,5.553437832393244,0.3915841270542461,0.0,0.00022657516635276112,2.7746306378247296,0.03249993563915743,0.0002692503190203357 -2005-12-20,0.04396390051461672,9.842134846733568,-3.551847131974616,0.6106429086595382,5.781172553081962,0.5800729468334661,0.0,0.0005985605409518438,2.525435889602147,0.02993176747155834,0.00026640898769830773 -2005-12-21,0.08227509205494574,8.392733632932618,-2.9830012041568397,0.5549986117119984,5.2165417731406,0.8858738959316084,0.0,0.0010358658090503237,2.3160343866188238,0.027938681211317193,0.0003311456018458709 -2005-12-22,0.08860510502984817,7.608821539837005,-1.8511313773651583,0.6919684720197877,4.798003685663312,0.9673111458949847,0.0,0.0010546050153772135,2.1849900945679313,0.026485844320754546,0.00037613941602907317 -2005-12-23,0.5722696852480784,7.558554926606321,-0.5484334950133527,0.6422235671374797,4.576691472821976,5.051130134104675,0.0,0.007256451110982054,2.0876437453709267,0.030986190084550842,0.0013497509611029275 -2005-12-24,0.9280760060302116,8.036242473311503,-0.3951442673366923,0.5923782534741696,4.736963612244975,10.765915927923704,0.0,0.01448349452440012,2.4521919237040897,0.039377832151132504,0.0030839504406354975 -2005-12-25,2.0736617428068143,7.138851051024863,-1.0890804138002803,0.5891922539722543,4.507668457475113,33.04373770957243,0.0,0.046174106324758046,3.106549246938167,0.060345949818736325,0.009038196600427066 -2005-12-26,2.60781878734737,6.438619771958907,-2.1376017435053822,0.6841238024258831,4.409218475089672,64.68181056200888,0.0,0.0858064494394255,4.779144677676011,0.08605312166929416,0.018948740721164675 -2005-12-27,0.051796159423425525,8.65600393117095,-5.511085682159211,0.8105301626845336,5.503206000721465,18.77898947923489,0.0,0.0019235065566909348,6.824163662767219,0.0801002752990165,0.012627621907517398 -2005-12-28,0.09259362055087783,8.780996155204617,-4.919818779144785,0.5656200946828741,5.512269056043779,10.781079426185844,0.0,0.0031410217291020226,6.2232745795786055,0.07357558721474576,0.008698255323537166 -2005-12-29,0.04006438475105022,9.571794750618963,-4.6616913471577845,0.9428279694844351,5.768036960312793,6.689292054736024,0.0,0.0012412665029945952,5.7162589877928465,0.06705726891580797,0.005851156559697624 -2005-12-30,0.003446714416944796,9.832421515412099,-4.9046946670327305,0.7517651184972258,5.87198331048006,3.959870920189074,0.0,9.638480742004676e-5,5.185364335296082,0.06044613469311638,0.0038235039268089965 -2005-12-31,0.00012783927425185322,11.30236038283299,-4.51678007936994,0.8461344780563071,6.362804087663762,2.5031808019045267,0.0,3.210044333448362e-6,4.665655163609335,0.05435321215960489,0.0024894101283392395 -2006-01-01,0.0008288773562981258,12.647981321467045,-3.4817454931661294,1.0153431010086231,6.7859571294842835,1.6336161916894052,0.0,1.8513538654137086e-5,4.156781993264538,0.048433350969874105,0.0016233079510298942 -2006-01-02,0.0,12.919422413890738,-2.6981389876426496,1.085615864920774,6.834776585208917,1.0578368810051517,0.0,0.0,3.674545789110312,0.04280596991807395,0.0010566971806467628 -2006-01-03,0.00016522185529015194,12.77018871654748,-2.4787551392082356,1.4995639234568603,6.763956220383032,0.6898230904166099,0.0,2.8720996026333062e-6,3.2450562874448297,0.03780463281101793,0.0006882975194270347 -2006-01-04,0.0010564019831554169,12.881759973071556,-2.3479203997416507,1.434617498984209,6.795297537187973,0.4588207412935131,0.0,1.6225388293420124e-5,2.8702366147812692,0.0334486191098336,0.0004505198902258382 -2006-01-05,0.4222929049052112,13.907497912337035,-2.190334835452763,1.3040538975034872,7.165318040243233,4.350642449823183,0.0,0.006209567276784678,2.53828586702972,0.03448873769027633,0.0012387656247502094 -2006-01-06,0.0027826068742722557,13.871546152752435,-1.5244494709315908,1.3848035880179264,7.100423392660643,1.1918651631007255,0.0,3.8671027579065004e-5,2.5984587779341193,0.03030270048552504,0.0008122664349566788 -2006-01-07,0.05648815551016869,13.562770139190915,-0.2771103367311605,1.3629003658688414,6.863506663271396,1.0149065374861315,0.0,0.0006982208632223194,2.2862274885943186,0.027291050688585495,0.0006350617137441034 -2006-01-08,0.009502614600801195,13.47177654341575,-0.4424154416290401,1.12638980997609,6.8454457650435465,0.5245361350306843,0.0,0.00010514024288925568,2.0686403602234935,0.02420895826891407,0.0004294044829435861 -2006-01-09,0.02426092502868116,12.109233768151318,-1.7255357711559565,0.9686099929970632,6.454092803132243,0.4450335306967299,0.0,0.00023906981490440585,1.8358148280087865,0.021668622817499004,0.00031592404743772435 -2006-01-10,0.003400494665075074,12.132276019166676,-1.7862574244451064,1.024720136453442,6.467799650717771,0.23981587328753382,0.0,3.0034807160786523e-5,1.655676883773007,0.01932712787622457,0.0002102249495404583 -2006-01-11,0.3180703009005376,12.279334405155735,-1.4955469036288789,1.4089287221960924,6.4950738407585265,1.9505998374258677,0.0,0.0027721231491987797,1.4764677162770248,0.02090515257907342,0.0005589432630923038 -2006-01-12,0.031297943960992995,12.508230139992492,-2.071260354611401,1.211034836936525,6.631462385285807,0.7004224745234908,0.0,0.00026879213898516746,1.5961210269175512,0.018958328868286283,0.0004047733679154149 -2006-01-13,0.10083452797150573,12.161277374818196,-2.5470902061930656,1.5069273218429138,6.540956800402032,0.8157426510111444,0.0,0.0008025102210784812,1.4437775426048112,0.017993684559362233,0.00038568247465486086 -2006-01-14,0.04871364627422016,10.466288992553519,-3.2043148873485516,1.287449292499904,5.97721272419523,0.5363379831873245,0.0,0.0003623855744661203,1.3727267445124292,0.016558817905785513,0.0003062397210897108 -2006-01-15,0.03935658150110264,10.819664246746592,-3.666700073223023,1.322179555789046,6.136524728627232,0.4015278149316025,0.0,0.00027163426191698786,1.2769322014589353,0.015333872886784169,0.00024070799434071274 -2006-01-16,0.03340396018911065,11.906621407540145,-2.375347151988375,1.5482716886527368,6.43113395488033,0.31313907178355355,0.0,0.00021252799340878287,1.1789404080028278,0.014122990849363058,0.00018905011767222346 -2006-01-17,0.04106588832734248,11.938102652150464,-1.6747218674679958,1.5674059823965945,6.379564069335535,0.29374977212811837,0.0,0.00024037609648797087,1.0798043454809556,0.01305737913313077,0.00015966355296978242 -2006-01-18,0.10871661461415948,12.2075421714999,-1.1786317344200576,1.832350284660859,6.4307962672423,0.5169400193070982,0.0,0.0006093018763083519,0.9993396800308191,0.012908105419905416,0.0001967086805651367 -2006-01-19,0.07486611586458118,12.860743717997751,-1.8175847709535142,1.7961375830522937,6.734936642071154,0.43097598813399096,0.0,0.00040787634321630406,0.9869543239826251,0.012369489023975545,0.00019015330447432155 -2006-01-20,0.08045767363421026,13.929331744500498,-1.9997545337849263,1.6810589617427425,7.148060821881723,0.4242861789617522,0.0,0.0004195128893545591,0.940298516740655,0.011891118327703199,0.00018765789879591165 -2006-01-21,0.2454381364952525,13.420868503123787,-2.0470269085612087,1.3550471019782977,6.96013662997747,1.0178342876342386,0.0,0.0013307865634474558,0.8967825295138072,0.013306097209044299,0.00032478838593682255 -2006-01-22,0.035631642686439785,13.018734824952151,-1.9017998274551389,1.2288156739673846,6.797128341541477,0.41749040628626466,0.0,0.00019422450853598394,1.0071017719136852,0.012147138106217653,0.00024099552485709792 -2006-01-23,0.013868845379286536,13.08861898447361,-1.8152434523558632,1.267814495884538,6.8146431614627,0.21898727033779056,0.0,6.85190871561863e-5,0.9222997942287184,0.010905730646782108,0.00016730980313128777 -2006-01-24,0.02232608894539442,12.513106738504089,-0.20620295828220728,1.3055278996784467,6.43282281844439,0.1791808258883947,0.0,9.955705038630289e-5,0.8277919952840771,0.00990329995293058,0.00012406984993642528 -2006-01-25,0.1476517481709642,10.998210920219323,-2.117084067342659,0.8903976099548999,6.063683243095398,0.5129782161814223,0.0,0.0006522049591932977,0.7572349330251882,0.010541317016470424,0.00018007148096278866 -2006-01-26,1.177046204995845,10.209436202996617,-3.0701437874551236,0.9481000829307248,5.861205377588978,5.889864107368725,0.0,0.008778138262502067,0.8116792979305751,0.02316730527780047,0.0014538192989818153 -2006-01-27,0.21562514302725785,10.64482928190959,-3.1677847249318267,1.156581919446665,6.023415620593301,2.8843138521909513,0.0,0.0021827196393711945,1.7901919759395417,0.023366411029658005,0.0012787193441268897 -2006-01-28,0.012089123533279712,12.470748541045749,-3.792709703241181,1.0158979233177725,6.716472038060286,1.0745136313286254,0.0,0.00011641262934234536,1.8000300923873587,0.02110996163785562,0.0008501117357764582 -2006-01-29,0.049127576907858315,13.594061935176564,-3.094774908987381,1.2296086923787948,7.081689733006673,0.8511074498388246,0.0,0.00042657845293361113,1.6049235947679896,0.019268575971359534,0.0006183356559604704 -2006-01-30,0.06091197099645512,14.35226700338973,-2.4249963486215527,1.0004986562165386,7.318334742897728,0.7433092577032006,0.0,0.00048184070196927165,1.4547265891748484,0.017656162784972184,0.00047587481527039817 -2006-01-31,0.06449561770005091,14.966465584772587,-1.6291451324023667,0.7807807329965143,7.492396933398889,0.6445948741631735,0.0,0.00046672375100303976,1.3269558013910128,0.016209466695064574,0.0003808377245362203 -2006-02-01,0.006449666714496743,14.945093248581722,-1.112943311121596,1.20615739053005,7.442362601244454,0.30455696812718785,0.0,4.178431724275941e-5,1.214163012783957,0.014219311076507554,0.000254269738872016 -2006-02-02,0.04247735022185326,15.459072745347154,-0.5614160131491225,1.1709774553460233,7.591566184521255,0.3306881658613885,0.0,0.00024571130767889887,1.0661916800290046,0.012915243374748902,0.00020293082576853096 -2006-02-03,0.03007453739480648,15.920378702352819,1.1691450590285108,0.9293292499897082,7.598431858647128,0.24913202309654686,0.0,0.00015683443805703315,0.9656370670306698,0.011599365862422387,0.00015597878990604073 -2006-02-04,0.3992560863700831,13.283905458974091,0.1908643844391604,1.3341087796966538,6.665357461425785,1.5917810450485759,0.0,0.0022656287869026737,0.8671704720792296,0.014753011739597012,0.0004465103137352384 -2006-02-05,0.0644843492268413,12.155045209897272,-0.9762692752603106,1.0663883743099272,6.360678082285656,0.6817398166688143,0.0,0.00039632923757469685,1.1229147697085151,0.013832395589279319,0.0003510042095741664 -2006-02-06,0.5398033222058408,13.1567652369216,-1.809716381248308,0.7426470346513777,6.81271765114076,2.7565095326789715,0.0,0.0038191064071236847,1.0590156140625446,0.018625157833976013,0.0008100026126528355 -2006-02-07,0.038414099022158366,13.611313308707905,-1.2952929673741522,0.971150133938098,6.936979447602226,0.942667121866175,0.0,0.00029308404892919304,1.4134888478313656,0.016913686053704823,0.0005719000068386396 -2006-02-08,4.195904376606868,13.128039602429734,-0.1410726739456545,0.9862192588547768,6.634151133275781,50.10637655723789,0.0,0.07608050713395187,1.2805949676925215,0.06379750849293166,0.0119566611591724 -2006-02-09,0.1497658827513491,12.373568114797447,0.4172775198271847,0.8090040549151523,6.269700725407001,14.794848156503477,0.0,0.00397483689746575,4.852328842200669,0.05827101596017817,0.008388452088696178 -2006-02-10,5.045004392444851,12.048102438336695,-1.5632204150951494,0.9281682597953476,6.368412246236341,131.04782531354135,0.0,0.19137456273733378,4.463916477073702,0.11077248837127969,0.03460009236930626 -2006-02-11,1.5964004205413505,10.902297741300421,-2.497039052216131,0.9296830152520376,6.031181233199787,86.42577831008427,0.0,0.08077021710695598,8.457287033477794,0.11711865014659677,0.03482149268568205 -2006-02-12,0.2953079873928102,12.964948767265177,-1.914434475120764,1.1173638226072908,6.7349628913999515,37.85195935384851,0.0,0.014758582757709082,8.998914760414747,0.10827140065408103,0.02491436737882294 -2006-02-13,0.08929900585455053,13.536706761499016,0.2328016696643722,1.5029776539602056,6.736920473721019,20.113246910917987,0.0,0.004014341950095868,8.207999146725715,0.09665790427029536,0.01682932505335993 -2006-02-14,0.06764643837877213,12.604955690466484,-0.0050197353686097955,1.7447562308516564,6.400884843190864,13.047630195047425,0.0,0.0027052057760962034,7.329907081066598,0.08617648863137199,0.011367007174361394 -2006-02-15,0.3719130579017593,13.315130308404608,0.15317552929414247,1.5946735324814845,6.654535963336838,16.489027256934424,0.0,0.013637895716638981,6.57993840578162,0.08098436152605405,0.009475958514072578 -2006-02-16,0.7642756034719589,13.253389647567275,0.012987553859164112,1.3334088177298402,6.644068276163931,24.64596517725104,0.0,0.027053786719175354,6.154059465518001,0.08059391822629695,0.010287742311056516 -2006-02-17,0.5781810833853455,12.781867314640765,-1.2469495672407465,1.5108200626390362,6.593868646047278,21.443780088747182,0.0,0.020077854413282803,6.125705038292705,0.07809573322209842,0.009753986661359933 -2006-02-18,0.7299010523610102,12.935563377625526,-1.00608154228382,1.1994445925919532,6.625484451415847,23.912631356276048,0.0,0.024911711672236714,5.942043155012888,0.07772363155258562,0.01014256299725358 -2006-02-19,0.6072622803910969,14.173893896277418,-0.17371042762204222,1.1033632107386675,7.010968319611608,21.48009525816128,0.0,0.020413215456060008,5.910167212424634,0.0759236397705052,0.009710545424489769 -2006-02-20,0.2815101901787626,14.570100668051223,0.21677214585172047,1.5672376241205468,7.120380813995078,13.456916017403028,0.0,0.008930827511397676,5.730413109875549,0.07003483497050172,0.007680959097736154 -2006-02-21,0.07615753869003444,15.211717538903393,1.2328409165995762,1.2440130310399466,7.2547509833162005,7.042617215141881,0.0,0.0021825851966393306,5.275601785898409,0.06234437174140418,0.0053322742066534 -2006-02-22,0.06176429896796445,15.054648005925596,1.1198705596467369,1.081931177948245,7.202376254278818,4.668147597463597,0.0,0.0015678592485583107,4.68506645131786,0.05529736352860112,0.0037097896239234388 -2006-02-23,0.12300749069385165,14.777115928838505,1.7820472274498764,1.207055240216185,7.003667001234064,4.341759582453172,0.0,0.0027909857502703833,4.160649659173226,0.049901704760345215,0.0028398674962427017 -2006-02-24,0.5524293634063027,15.18739819851461,2.0777897621303034,1.3143357425881006,7.126287697343497,9.86053108586469,0.0,0.01200486673113077,3.769839988065073,0.050351510759563525,0.003676538571711629 -2006-02-25,0.005426499290293374,15.731121404270912,1.1388671397969128,1.4212742803908105,7.4586688890899975,3.1747593699784518,0.0,0.00011058414470166422,3.794706174034897,0.044268972067547326,0.0024100918825407875 -2006-02-26,0.01150010000555121,16.368250739119038,0.922731134954354,1.811669308399275,7.731431345122692,1.7635215777392566,0.0,0.0002046381316915518,3.3153229166025735,0.03875523510789166,0.0016000157198458502 -2006-02-27,0.006103434419588378,16.181109118091374,1.9671842196187408,1.3977795088162674,7.533278285914143,1.1190653725317286,0.0,9.439229462248743e-5,2.887402742368508,0.03370738738061595,0.0010559076541765233 -2006-02-28,0.003970952781107992,16.162226320798496,2.698345868758228,1.1254962826906991,7.425274104822016,0.7289542599203687,0.0,5.355160012139072e-5,2.5214946775125364,0.02941996426329851,0.0006955002774352659 -2006-03-01,0.2596850059518175,14.315878331006813,0.0160138679469017,1.3062708665088436,7.012447068660965,2.5724281209163165,0.0,0.003239309471662788,2.205706861654646,0.02872014561195015,0.0009459707128613342 -2006-03-02,0.20427594062562646,11.427677840356946,-0.12493797152667975,1.0951571799316313,5.917552315396371,2.4234263600077495,0.0,0.0024791217935258014,2.1706228671584777,0.027665962749940345,0.00099326539010875 -2006-03-03,1.1636556297820502,12.128389551214214,0.07429054303884905,1.1911281435883727,6.157426121694792,11.85146424219089,0.0,0.01691011451484692,2.1353077508114695,0.03843068921579695,0.0032213838302817105 -2006-03-04,0.11726237009507845,13.694030674701835,0.22144087571869167,1.4206371135127542,6.739376546241743,4.324149995902636,0.0,0.001889576059301512,2.95187210690243,0.0357533381367084,0.0023846853378501304 -2006-03-05,0.3544960588788015,13.88352918366082,0.4583418856289755,1.1580459234692186,6.781875373909973,5.32325573971908,0.0,0.005487731242346194,2.7159370644032306,0.03576846648643649,0.002387906225587738 -2006-03-06,0.21023924594624954,14.533731962980676,0.7946092598752569,1.2756256900720089,6.992514407937016,3.957832308428019,0.0,0.0031714506276036003,2.714859074116745,0.03407541445451458,0.002037314930555209 -2006-03-07,0.12725197905641378,14.746700637673097,-1.2351475351556478,1.2327512751601115,7.268738712842343,2.7086072311019342,0.0,0.0017957427764024314,2.575968470921117,0.03149068753111861,0.0015996246318638197 -2006-03-08,0.10930457175945177,15.860150203009193,-1.5547396278369598,1.0548114008203089,7.706116050563855,2.0854245207917073,0.0,0.0014147167073842726,2.368020746516023,0.02885916223051301,0.0012566919710260266 -2006-03-09,0.06648216908043658,16.933613632167393,-0.6480400229262121,1.4102925030859244,8.045774695986161,1.4157365836320033,0.0,0.0007754890995240737,2.1518464615663655,0.025842026220840895,0.0009361270801709697 -2006-03-10,0.2456210756433401,17.92757635759119,1.4298010119444056,1.766133788677408,8.250726093341894,2.4052503644209042,0.0,0.002669698965364481,1.9142300778206016,0.025160803214560046,0.001015875837650848 -2006-03-11,1.7248118867987368,18.333051076889753,3.615817144948496,1.5198985702336818,8.155747741884689,17.205774857376205,0.0,0.02508327488898332,1.8562749989667193,0.041717236987595295,0.004480586576448156 -2006-03-12,1.6668375439163292,16.112649177937744,1.938900091278936,1.3240436633965775,7.457570502715541,27.275252386104004,0.0,0.035042428591981034,3.081850788970825,0.05531900310788967,0.008252378701967296 -2006-03-13,0.4517665090959865,15.379682543777342,0.6696356943001759,1.1419954925037668,7.3097355012064655,14.447298909705925,0.0,0.010608258452844077,4.141532544560795,0.053508823239662474,0.006987174736413783 -2006-03-14,0.08587320896847532,13.14741606136137,1.398611215222571,1.4118764037162106,6.33897863292058,6.551246613346777,0.0,0.0018729643117510325,4.017856717763528,0.047805674463542905,0.00483350884160277 -2006-03-15,0.047444798431621436,15.865429207144835,2.4621705019275315,1.5164949445906266,7.2770725455971546,3.925199767519228,0.0,0.0009371333804170309,3.6583526315512036,0.043170030369584375,0.003289079482229715 -2006-03-16,0.18797945362214893,16.411261921907943,2.0389085777431304,1.7608542068241984,7.5483953745366,4.4042374910696065,0.0,0.0033628651249192065,3.244625333497788,0.03998752109540839,0.0026530820504323746 -2006-03-17,0.01029060324867192,16.512232133602872,2.4531808285816274,1.572657525258382,7.532533749713357,2.0347799709307055,0.0,0.00016495923221803745,2.9898196063920226,0.03494925216753933,0.001752149199991697 -2006-03-18,0.06394325982012206,16.219769570807323,1.3673911256463154,1.125427765835138,7.542256729245561,1.7564727034782113,0.0,0.0009046605865853374,2.61433156779986,0.03120008792466129,0.0012783147168687727 -2006-03-19,0.0982784514137902,16.11411435208868,0.4319429280716451,1.348872065405676,7.594005178483853,1.7034931005445935,0.0,0.0012509326191827291,2.3337039765739513,0.028330948266379722,0.0010225957709503548 -2006-03-20,0.31547806047484483,15.742059236509132,0.6664694086712022,1.5717653748484834,7.421759382247087,3.245836816698385,0.0,0.0038323068922938575,2.1171395095356487,0.028338347240805407,0.0012491871231807676 -2006-03-21,0.23606706028526825,16.41293320748926,1.9555351192110169,1.547840673319856,7.537515887369297,2.8880380736372784,0.0,0.002826986139012999,2.1248290520805306,0.027502840831409824,0.0012436125075897236 -2006-03-22,0.05400658828565786,15.924865205696518,1.295378141271616,1.5944925127982983,7.416604734775569,1.3834987180076086,0.0,0.0006007948964282875,2.0575792864400912,0.02459854540411791,0.000901013191063114 -2006-03-23,0.030764198029830037,15.579495691391509,0.92115268116773,1.1604815998230358,7.318500688453362,0.834498989346536,0.0,0.0003051744301222799,1.8448069445966246,0.021849133612215653,0.0006329845550320975 -2006-03-24,0.21747555973146027,16.31705538487362,0.8856684800470359,1.5296671406138231,7.605732603000266,1.7591090698274108,0.0,0.002029530320544093,1.6418746253968128,0.021660170442735695,0.0007210691682204617 -2006-03-25,0.006251647895082294,16.957713047776206,1.629848363900769,1.488371177526421,7.774416241536871,0.6239745066910083,0.0,5.4023508099057885e-5,1.6185973946039933,0.018928390943106756,0.0004776080154477165 -2006-03-26,0.06051756249771505,17.918918233657557,3.1799934083536963,1.64611891335963,7.972225483488959,0.6264243578732637,0.0,0.0004641461768269267,1.4099160482636706,0.017129555738647276,0.00038157348264491943 -2006-03-27,0.04777720150058524,17.44596057677011,2.640141578197809,1.224545691463245,7.842944652126138,0.49127194911597216,0.0,0.00032932612047060356,1.2710527046823696,0.015363475251397685,0.00029853117016201343 -2006-03-28,0.146639059358629,18.245558760125398,3.3286502404743707,1.3266463819547627,8.077919095508218,0.8355906231021222,0.0,0.0009491458260388053,1.1429663703761157,0.015023029892566974,0.0003388512343758316 -2006-03-29,8.351450577527068,16.944911740372948,4.3645538974295786,1.5063812156426069,7.379627795749938,156.45541047969263,0.0,0.2390774755039473,1.1125013908433214,0.11024863112734445,0.03662365371916752 -2006-03-30,3.052977028192952,14.608860540730946,2.165917527003654,1.2388534108514764,6.7504160051230375,144.5324795536335,0.0,0.1635222839217607,8.251838908644483,0.13169344966545984,0.048738960670172464 -2006-03-31,0.16503430453804002,13.60284477729868,1.401590508864238,1.4781965119369196,6.454770709239108,48.223707560403845,0.0,0.00909638854670236,9.973218642540555,0.11810378087016475,0.033111832200585896 -2006-04-01,0.24438543778682176,16.611667788220732,2.332853340410589,1.23427433562958,7.521948831052467,30.83922579808858,0.0,0.012179890257405734,8.999888521178912,0.10768953109106082,0.023408814729362605 -2006-04-02,0.2718591050456215,17.34016077753486,3.4002467114610035,1.5065632159891431,7.672314574358981,23.941737085520213,0.0,0.01210171804120852,8.038254305494842,0.0968071933466112,0.017080703522678074 -2006-04-03,0.5970380601491893,16.445109794120842,3.745926917914995,1.5605040119181757,7.2472293133941745,27.786048460499153,0.0,0.02434788521182185,7.207095368805231,0.09091286922766645,0.014826060410379873 -2006-04-04,1.159076094319205,15.974537922697515,4.112674213712658,1.274307114879675,6.9870705191021,41.58197306035505,0.0,0.046629304706981234,6.826796716984565,0.09303000995206036,0.01675106898981477 -2006-04-05,0.6832258230757308,15.529707439778145,3.0932072482549287,1.1583519559945288,6.9620782768343785,31.567656857713384,0.0,0.027319153290488507,7.021116779341297,0.08975037368018449,0.015063903281264689 -2006-04-06,0.2914452513126512,15.760184080763723,2.6783804668156943,0.7476678998612429,7.111949730203847,18.754011947782836,0.0,0.010941647211036742,6.777606785154348,0.0823496688268433,0.011471920459404771 -2006-04-07,1.784354323011326,16.336959635860605,3.469746633247815,1.1281204381396337,7.227700816579892,53.1106529885627,0.0,0.0686903869457478,6.201919704641302,0.09303468385080745,0.01792680720133619 -2006-04-08,2.0637199861724542,16.202802598015875,4.090135883879047,1.5876907293806486,7.069967787201611,74.57050446703991,0.0,0.0901018601470116,6.988337122611548,0.1054503349621106,0.02538884819317451 -2006-04-09,0.3920917093316797,17.164305021735434,3.7466209942156463,1.6634551897664511,7.51895356090806,33.41452996591684,0.0,0.017375478380181497,7.94241318824943,0.09709133765190556,0.01917262016591493 -2006-04-10,0.7142881425354636,18.343813001374546,6.026760824169111,1.9902344667233176,7.640539536988191,33.20525472659626,0.0,0.029534778522284255,7.250223238692958,0.09278116375835602,0.0169775809565521 -2006-04-11,1.0215760077275704,20.097350198168236,7.078762847481903,2.040255414040312,8.217803227317235,39.78005845929723,0.0,0.04119469366247519,6.9126811416179,0.09242872244609533,0.017324107927904793 -2006-04-12,0.5409660572964315,20.9807131065443,7.674030613469474,2.0460678424637617,8.498988181957529,27.37614973277624,0.0,0.020774364184463212,6.807602065744872,0.08560584193781014,0.0144403838708129 -2006-04-13,1.6976960063376316,21.194169924572147,8.511398116131494,1.9352028582172585,8.428165348950667,53.64997503737362,0.0,0.06559748644910113,6.271104496936398,0.09283112912545075,0.019388197572936704 -2006-04-14,3.759703064551352,20.11584454953628,7.800071030008301,1.4853636551946183,8.073069875227638,132.9966552067025,0.0,0.1782858913887546,6.808268046465432,0.12310970646056046,0.03976746612223292 -2006-04-15,8.388192264587516,17.772357112717362,6.95531034688972,1.187024468782898,7.182022449206247,440.60021784361464,0.0,0.6185542188275885,9.083398321433593,0.2035321979828162,0.12007076897511569 -2006-04-16,6.826873503233701,16.533595258833056,6.3075116078420805,1.2646086259379858,6.760839554324909,585.8447651660226,0.0,0.7209930817354806,15.242646320449584,0.2570949597304264,0.1879422750646932 -2006-04-17,1.0991086552308469,17.55581059097862,6.480691854411062,1.2781513356709098,7.1757401020921865,248.3012227917789,0.0,0.12448628966651065,19.377984853222152,0.23854427160224786,0.1412964643942183 -2006-04-18,12.825014207543713,17.384275237988305,7.249204130971752,0.7945494826492315,6.929242085655024,1280.7473919125064,0.0,1.8034981960090413,17.841951778879466,0.35724938504883025,0.36658660046537117 -2006-04-19,4.420687717017045,16.521326472211555,7.987760775560793,1.1924257852081683,6.341545742014589,836.6019362976562,0.0,0.7540627851085864,26.711465856743377,0.36266850540074747,0.35344784599176954 -2006-04-20,1.4744528533627266,17.46565132232325,7.141587187832222,1.5033122663196918,6.982653606717441,441.4828346802139,0.0,0.24423611532303635,27.44538894426421,0.336896571460172,0.26726649230353944 -2006-04-21,1.308266646760207,17.52965550976605,5.9052230641101575,1.5866581626005063,7.261045403040335,320.5715077563359,0.0,0.1967544968200745,25.18709022665392,0.30865296403521036,0.20393670372212044 -2006-04-22,0.1930343537039986,18.05868120409837,4.899284427310032,1.4703630050599552,7.6589323955911395,162.2453956617241,0.0,0.025625480439879805,22.973261040861566,0.269871652358179,0.13665506705535085 -2006-04-23,0.1106653918274726,19.020147898408283,5.384738208811654,1.1809072287590958,7.984472325664688,99.63322438305184,0.0,0.012591848488158322,19.957848389174014,0.23378459448126715,0.09087332081418917 -2006-04-24,1.0609557328782773,18.968235641313086,6.790074647651358,1.4493936234748497,7.711744726801698,129.3265002961258,0.0,0.10603194587158193,17.201490404613487,0.2127451295636719,0.07529919095269752 -2006-04-25,1.9866717624787908,18.290848677462893,6.536713683044153,1.3021618914609412,7.457330887512572,177.30395340846405,0.0,0.186865682390698,15.756012443729839,0.20669025506435237,0.07746929492343656 -2006-04-26,1.0243514745439928,18.230669433113693,6.42188931439871,1.6016801406415644,7.448990088548492,121.31612996621769,0.0,0.09119013950571286,15.391075886866123,0.19122861168508756,0.06431391581264537 -2006-04-27,1.9573281925566663,17.12878113877371,6.692721251676625,1.4573705086876518,6.902390419874529,156.7628667730368,0.0,0.1664611266049134,14.250930222120235,0.18881523375737141,0.06721150206418272 -2006-04-28,4.525963854290317,14.340791164811929,5.125637030682589,0.2917788417348822,6.00753014168756,327.51148063984886,0.0,0.41889030200694943,14.228146727672728,0.2184726873701892,0.10753376557058637 -2006-04-29,1.8649395680712664,13.141002963703158,4.750570713830491,0.2925678346039096,5.5655412218874485,216.40994341179876,0.0,0.1857479757822207,16.742157179555242,0.2167600757628444,0.09828230063186712 -2006-04-30,0.787145077555885,13.678699083990047,5.468102330341195,0.41050529604507774,5.631837618303395,126.27309462855848,0.0,0.07592446858729485,16.75776450004629,0.20438631458066717,0.07553778040338023 -2006-05-01,0.21061302405421006,19.0899928457388,6.488337371066568,0.8122344338631681,7.792766870426438,66.76854491347252,0.0,0.01873465033534355,15.786568529394305,0.18635633127235668,0.05202417204390745 -2006-05-02,0.8722300875890276,20.900598787135067,8.568795354910666,1.1815336817953568,8.194995849186666,80.46138181413173,0.0,0.06905285092565272,13.793937098098686,0.1708509152953012,0.04437960752257499 -2006-05-03,0.7426837417399225,20.106642222756747,9.430500465872152,1.4515390294209043,7.629133004199964,67.71812610357543,0.0,0.053141485716080905,12.550950048068485,0.1548618307587368,0.03698061490498768 -2006-05-04,0.775964085177708,20.534161673233896,9.251457713495236,1.5926187878902869,7.868846587886192,60.75889425121422,0.0,0.05095743961593102,11.51498606381426,0.14318124539405544,0.03183166518034548 -2006-05-05,1.6234455761239055,19.98075064010854,9.385135031381036,1.3409202874681687,7.572790940935131,90.59132835657876,0.0,0.10203812696319337,10.599846001831205,0.14239306886211875,0.03625773016415 -2006-05-06,2.162533849804944,20.12951931246849,8.959342719805349,1.4099295392699671,7.7384629538776295,120.78474782468776,0.0,0.13933327675560347,10.604765934306933,0.1487303960433294,0.044817627953608746 -2006-05-07,2.6725238687603827,20.460004191109327,9.036732868076287,1.4297400855829039,7.871178735820802,157.1294873907601,0.0,0.1827800375911135,11.037306030594085,0.15971023357305078,0.05700513026729963 -2006-05-08,3.609074071967664,19.924992377229234,8.974513618980028,1.3843266487558792,7.63222031951685,226.668267203041,0.0,0.2729499385222458,11.815388911306462,0.17968454779395757,0.07866832094048272 -2006-05-09,2.2586005797229647,20.745201157777306,9.900264192307953,1.2972604535718688,7.797274991402572,186.84884806114565,0.0,0.1820862487635062,13.347095446514057,0.18179579000740922,0.07893470082097047 -2006-05-10,2.909352535008254,20.56910253354975,10.80062077274111,1.5204258280960241,7.4776145012215105,221.3176726836551,0.0,0.2420149928028943,13.457625061594749,0.19066420473688261,0.08823313819925967 -2006-05-11,3.947703380911871,18.623107863510796,11.146434587608347,1.1392399937657594,6.3826527245358715,306.1722242501578,0.0,0.3579055383966163,14.200949620102392,0.21141951658821934,0.11193203150162419 -2006-05-12,3.6821563314060697,18.362622304453016,9.870375592770156,0.7602839566457602,6.639439008023142,338.0245775947689,0.0,0.3723872863063278,16.084948531750136,0.23027338471254954,0.1295639572488422 -2006-05-13,4.983888418386472,16.139801793372346,6.319618594555407,0.17793402505925246,6.491026739823091,476.1614222817328,0.0,0.5641731402592827,17.417369217189304,0.2609594805750546,0.17024374169008955 -2006-05-14,2.15825172227164,10.48115897044165,3.9287004675145285,0.2852423949215534,4.5650715351149,313.034786534089,0.0,0.2567428978317925,19.77433353001968,0.25549976471037245,0.14991357339332775 -2006-05-15,0.058255751579704564,10.734084625108393,2.6725388858995465,0.3245764940550425,4.959815890771357,119.47875643287739,0.0,0.00667773085922755,20.121873523527398,0.23508483939785937,0.09860347351327349 -2006-05-16,0.22334595570627916,15.31714102097434,3.642102475836439,0.4559899908970006,6.6422291909796405,81.14323846016872,0.0,0.0233469189196929,18.38202911554438,0.21674001939904242,0.06774114019900644 -2006-05-17,1.1074457277479548,19.033965115493547,5.290641010992606,0.6380581302814909,7.911979840258763,114.49455208448997,0.0,0.10551889999513464,16.401099081103844,0.20396268965216052,0.06016310977088413 -2006-05-18,0.3380516383857149,20.161577980470426,6.817911619346606,1.0624232703312029,8.138127087316331,64.15931528301573,0.0,0.028724967203516638,15.049391421711613,0.17925329076007554,0.0435371573999045 -2006-05-19,2.863384360780226,21.00300519354981,8.484786775909011,1.3180234331362382,8.195010720754818,182.76838733023766,0.0,0.23311363692437315,13.178889454638318,0.18688162558632257,0.06383563818614253 -2006-05-20,1.3732081062544423,19.40268829160093,8.255072041455923,1.3015314987472149,7.512950641566174,127.17741485029774,0.0,0.11013119687371886,13.719302298516316,0.17581752506375975,0.05832310185545422 -2006-05-21,0.07306732103778239,19.179766752065586,8.011494415796225,0.6667331625042306,7.461533544740178,48.87946568624016,0.0,0.005316096852037419,13.09336940519303,0.153380071110155,0.03877505240152492 -2006-05-22,0.25653160850074075,18.453387664745303,9.233933185053473,0.6905659241434549,6.830281623873404,36.796193829589676,0.0,0.01635880576830262,11.443926133446164,0.13630240875314859,0.02773160652968337 -2006-05-23,3.645911001681185,17.935031763432946,10.429273320037536,0.7361766257810861,6.226456048278209,178.59647072405798,0.0,0.24421805717610567,10.30446573793162,0.16251244135571097,0.055237779457336295 -2006-05-24,10.62853682838442,18.238584436500297,9.995353558530676,0.8915208597685327,6.509479868669413,745.8555851032032,0.0,1.0649115137850753,12.422535534141195,0.2685293820677969,0.19810570796032909 -2006-05-25,9.546075955258113,19.18966696844901,10.529027796303957,1.0985109143062577,6.824985117459702,1101.6148570496075,0.0,1.3927136709563666,20.334229481612187,0.34808532239932133,0.3410187356114523 -2006-05-26,13.980944897550115,20.581825414456716,11.710244256021804,0.9950316275647216,7.1772076436358585,2127.754571430937,0.0,2.7862896817831473,26.09526101592406,0.4668606579476244,0.6462409343820398 -2006-05-27,7.57479811683413,21.221687677773645,12.010214187555675,1.1314302808527419,7.4120853132913265,1755.9568375414015,0.0,1.7866513406297058,34.4984833885746,0.4901252361074106,0.692716535430456 -2006-05-28,11.514057442343304,19.576305430476424,11.768956778043874,0.8269239905619236,6.63454779459108,2537.1813366906154,0.0,3.0152757683393183,35.97076323514827,0.5531660025872164,0.9100461867137462 -2006-05-29,23.38105728480501,17.305783854611338,11.80036904250657,0.7474334770346518,5.38316148147816,6211.012231472334,0.0,8.319752265585208,41.1112691332349,0.7512919264140229,1.8592024839346877 -2006-05-30,8.157577931307175,17.403336013462567,10.749507517659742,0.8716076911633297,5.8289834079031095,3976.7762569387323,0.0,3.4747955949282545,56.35434613525269,0.7515202257470988,1.7393423963476762 -2006-05-31,6.336553919484206,19.002943864689513,11.741510894458866,1.323652244222565,6.334866735011496,3070.171530999852,0.0,2.599698897839321,55.74319767005171,0.7231870635381547,1.5280727129836205 -2006-06-01,3.173550677957902,21.404901902560006,12.940301719214599,1.2707871418609489,7.208596092921256,1931.1543231064722,0.0,1.1751455361975083,53.18120648570438,0.6564947556340469,1.173636784822626 -2006-06-02,4.589936794494505,22.520856428669052,13.303945756472212,1.382806679682392,7.678966087804002,1827.538546864491,0.0,1.5041930140955548,47.663133802709154,0.608712884933857,0.9930179935442915 -2006-06-03,5.919792551375045,22.454947297923106,13.895347460757671,1.6736665888310496,7.452388466342419,1908.581840917472,0.0,1.7892857377919702,43.93789100831361,0.5808082481828648,0.9188532283087048 -2006-06-04,2.7198066127399434,22.71126812066717,13.996561024598355,1.9259308567498228,7.55486604131224,1199.4163340440064,0.0,0.7506886736454339,42.26410358179618,0.5240320891608425,0.7124337058708985 -2006-06-05,1.6994053677697536,22.34679814585197,14.264330413158104,1.892707041734528,7.263965602919281,783.9170387293635,0.0,0.4104868338951959,38.235061374872934,0.4652094925979352,0.5262635426423271 -2006-06-06,0.7598864209186897,23.127024790876103,14.17305883268477,1.9413384084425458,7.716489685647543,474.4892955500847,0.0,0.1595195174471511,34.31487668773314,0.4085972364154548,0.36686203495650205 -2006-06-07,3.8539829698433454,22.961007937205054,14.7840724199143,1.6511022308467442,7.417208421243269,729.6904928804162,0.0,0.7340851810541142,29.953813333253766,0.39383793116295324,0.3505852555574323 -2006-06-08,5.328547971985928,23.431279597088853,14.967135511649053,1.460554582285738,7.611708472374718,931.6693036713531,0.0,1.0103763583770986,29.085004120802733,0.40089457587481947,0.38205925052176126 -2006-06-09,3.0045369680822773,22.346826106961945,13.667042360083478,1.2294487370795288,7.457918583369901,672.3385917566004,0.0,0.5536827095073242,29.469938541250656,0.37830564688494706,0.33300898727685 -2006-06-10,9.387387614618113,21.354058574459668,14.05496993197951,1.3638575929947554,6.779780957040223,1454.5919192814486,0.0,1.8384415045348597,27.93871128243583,0.43482377367059605,0.49670307730730234 -2006-06-11,9.116673189207336,21.39087961850208,13.518877479679515,1.4434156104213816,6.989807478162134,1783.8067656040168,0.0,2.0682112147977314,32.47633445603583,0.48453037089397094,0.638246069026691 -2006-06-12,5.023449734220077,21.906788906839846,13.449359660517453,1.3953944001355634,7.289406304988111,1320.711668245583,0.0,1.1892503620690933,35.90859398158073,0.4768305887428029,0.5965491295657923 -2006-06-13,1.0915033327058097,21.222812568874303,12.86297011285784,1.139043244965762,7.116060861544782,621.6953689143942,0.0,0.23665616528407862,35.12403541302976,0.421886500016141,0.42435984277930733 -2006-06-14,0.944909769485298,22.519850585073023,12.930587732718106,1.1276992210845582,7.7691454451102295,413.0345464269314,0.0,0.1792874093145066,31.306634642464424,0.375708650576813,0.30353746938368525 -2006-06-15,3.5138307851482318,21.008899845462068,12.677677416398993,1.296379129023829,7.060554196345846,607.0537792058688,0.0,0.6086897816621986,27.566698341713575,0.3620671155561772,0.29027063762428124 -2006-06-16,2.5182525121882025,21.09585210213193,12.412216533418212,1.298633662044968,7.188533705323248,498.3845674482189,0.0,0.41826936616129107,26.990135912553498,0.343752741082638,0.2526402323853704 -2006-06-17,3.6905580439518184,22.086364067451843,12.904800632269211,0.9983134585175794,7.549164654334176,578.9382043031284,0.0,0.5930936171534471,25.580096322598173,0.3409833003061441,0.25476418206288476 -2006-06-18,9.063588276114912,22.367707375938906,13.107454410664024,1.096300799778774,7.632257617527034,1244.594785520645,0.0,1.5955605039442897,25.18532616306693,0.3989766587084144,0.40878716624406736 -2006-06-19,3.9800122928034583,22.368389452663642,13.489938731497912,0.9431223672178398,7.512469963872882,846.5456477304333,0.0,0.7426170507578043,29.31937919405946,0.38791535936253646,0.3791756487465437 -2006-06-20,4.260478595974481,22.616932335455537,13.146344024771222,1.0969722267939874,7.74758229913511,805.6084256871394,0.0,0.7782445059231495,28.5990454676168,0.3827912017743233,0.3653247489635279 -2006-06-21,1.653505262817184,22.34641270765661,13.510860638029204,0.9000352701518107,7.492244558532605,470.88822577462076,0.0,0.2818926265408841,28.08758078269005,0.3464635107739605,0.28073155804911726 -2006-06-22,9.53584762331483,20.918317521600233,13.271731786357597,0.7884821191058847,6.806530024108594,1327.3490540007044,0.0,1.7214326072275767,25.613448083067567,0.40946549070305294,0.44485659475397993 -2006-06-23,4.242699970116513,20.33349007515999,12.636322186482305,0.675570647448055,6.708892725250017,935.0204787564484,0.0,0.8329046994902978,30.609735979644693,0.40600727558175215,0.41640277976515894 -2006-06-24,3.561383490378406,21.2822076270626,13.022199398752171,0.46228134312555497,7.0844355545616935,775.3850039701656,0.0,0.6861313820432664,30.420397637990906,0.39586473654904325,0.3755322777010988 -2006-06-25,10.023497693815566,21.401145291036624,13.525187908305249,0.6551828161719708,6.978717570906595,1653.9199392379007,0.0,2.0902170112401794,29.440370485760816,0.4597273380432677,0.5627202811064465 -2006-06-26,5.5691916509666815,21.031774322457927,13.603566295986896,0.7011364690052714,6.74895733472229,1312.5724472854147,0.0,1.2578524224138352,34.13549865081986,0.46253275267423655,0.5578310684744354 -2006-06-27,4.226898353195602,21.857166932197966,14.219147767276594,0.9542113606756326,6.983537502503343,1063.2857150757293,0.0,0.945482295380736,34.510084304037186,0.4512596139791033,0.5070854544186643 -2006-06-28,3.5789075373399517,22.69597095077181,14.410785432292744,1.3410092660459745,7.377512316555875,892.2125859443229,0.0,0.7669942946547796,33.5214943180558,0.43219455598484835,0.44687500983236894 -2006-06-29,5.7934688130109295,23.00729807787876,14.833774021576588,1.2713432466058758,7.401274635680417,1136.7996449239345,0.0,1.219725412143057,31.870022416854408,0.4387541658544992,0.4766158410459562 -2006-06-30,12.465231920293373,23.563322931284123,14.96300672656833,1.4014612002374949,7.662588354926444,2324.3342389554655,0.0,2.9691508057660094,32.323310533398406,0.5217561872895611,0.7623515844549781 -2006-07-01,8.437564141217786,22.490336699199553,14.902453719536151,1.1151466616491978,7.087175495253909,2136.279058206372,0.0,2.2382081689978595,37.98358082632862,0.5407749009230505,0.8370553093096664 -2006-07-02,3.853538959522552,22.743932966872553,14.909618255503604,1.0591974184478703,7.226922372580439,1346.8099075878054,0.0,1.0079632620964456,39.82120593586411,0.5087812000361905,0.6983609618649972 -2006-07-03,3.676139172207321,23.398061658142236,14.823526867627516,1.0392986126664159,7.6191817639275135,1107.5777438661157,0.0,0.8934071344490202,37.44194613867697,0.47899784733194734,0.5906345975626186 -2006-07-04,12.675927757773227,24.09821548966713,15.315948414921095,1.1146188244063668,7.835485247112299,2587.6670525208237,0.0,3.2853522156229076,35.02146869225896,0.5556423663739058,0.8847187718998314 -2006-07-05,12.428342444305825,22.478875783562174,15.606041256580966,1.070576774997867,6.808785626641591,3195.526743192163,0.0,3.7117882489935194,40.17214377494212,0.6127600416492174,1.1410849331763369 -2006-07-06,12.258206216917108,21.280807499906466,14.938181242604935,1.078883324215948,6.375363489218785,3692.3999949007084,0.0,4.1627688876820965,45.12083587428469,0.6684269813599396,1.3766357194493868 -2006-07-07,6.945402577455161,21.669763402713297,14.481032004856262,1.24160834282707,6.781036944548675,2759.764561027479,0.0,2.4563574648787405,49.43813312818541,0.6568300061583048,1.2701418628126457 -2006-07-08,3.406610567106916,21.46118883121128,14.899548235101914,1.1020920054182943,6.497726236061817,1716.6912388852777,0.0,1.1139057594982225,48.17494357554217,0.6008901730116539,0.9964112634252276 -2006-07-09,0.5360468257567766,22.81829085863853,15.04252472457331,1.1098754388398788,7.221167450642482,825.5960727996767,0.0,0.15325486596242321,44.61670989997233,0.5259990369007339,0.6719522185082376 -2006-07-10,7.7901860076421,24.09877133105094,15.242894364228489,1.137196601602844,7.862195700338227,1815.6774695935896,0.0,2.087418297147324,38.66224623462342,0.5411393764847413,0.7552495852691671 -2006-07-11,6.870140793877512,23.171576718616986,15.694437282351315,1.0478271965818842,7.178924162130888,1817.0726370423552,0.0,1.842041600475108,39.15115062808689,0.5361168779111879,0.7721100290826313 -2006-07-12,16.275744282897197,23.31751430337155,15.837757204156626,1.3212086484076309,7.208618295371429,3901.324480425166,0.0,5.024804340201936,39.411395058818954,0.6487174601414478,1.2677080310369755 -2006-07-13,9.553231425867912,22.29784061206698,15.838439101520786,1.4340487468874674,6.608165306000948,3279.1957847002946,0.0,3.2968694224035584,47.14100826733311,0.6604494971942726,1.3272154195141261 -2006-07-14,6.1021673425058625,23.94001671290357,15.893868688089904,1.135285880477907,7.545798887603637,2444.026181232009,0.0,2.0907604223252507,48.62069677312955,0.637484306796977,1.182304019684473 -2006-07-15,0.8948309674646544,23.35603799583133,15.560826806897275,1.2072420933521864,7.337676750487578,1081.6368732169756,0.0,0.2671431940089426,46.01355902291719,0.5464509754604902,0.8103008462691761 -2006-07-16,1.2498156987990021,24.523529943632717,15.108984724846973,1.2698763774704795,8.14225564052777,759.8824259048758,0.0,0.31615103144185985,39.992396874239994,0.48044384587292455,0.575606431757601 -2006-07-17,20.444586920434823,23.608248597050284,14.68623614246092,1.041269711653175,7.7863950807306574,4243.7644002958,0.0,5.8918602451763356,34.715912845178664,0.6425824657377515,1.2718154952319511 -2006-07-18,18.70514333705303,21.376060126774693,14.734418571554064,0.9606423976172758,6.520350340128668,5801.720101898656,0.0,7.088479197576021,46.088752934875124,0.7548050109786499,1.9072177866550482 -2006-07-19,1.6921367704727381,22.271559911853647,14.691515906247366,1.0517185264959683,7.049589013145105,2099.41308346319,0.0,0.6434014632457044,54.99422957750166,0.6603577780544746,1.3394765175031924 -2006-07-20,0.5095770777149802,24.389762825882446,15.049561896798735,1.0455329123775292,8.093660554031231,1047.255340441966,0.0,0.16007475037228214,48.10457119373097,0.5663219042384424,0.8963100029963086 -2006-07-21,5.1496649341142815,24.549646254787536,15.608629621321823,0.9973717694116048,7.995971427688609,1516.3270439606179,0.0,1.4061429667778258,40.659726101213465,0.5336483819128858,0.7975617247552611 -2006-07-22,13.417807989629404,21.621694035869478,14.755098578976062,0.9530088222997076,6.658626824315921,3138.560312255734,0.0,3.883338900121638,38.517027602543074,0.6050056626446115,1.110470912785868 -2006-07-23,1.004699645522662,22.42808096610389,14.119898934817936,0.5787941603013805,7.343048289249156,1143.9569723768343,0.0,0.29009132794227677,44.73859068277672,0.5328783534416105,0.7670350622339811 -2006-07-24,5.121395218246215,22.2832298991044,13.53327623477262,0.29208722886289723,7.460748704430455,1405.3769811781365,0.0,1.3340248526708232,39.038658230235484,0.5144347160125964,0.7024287659812133 -2006-07-25,6.091667108290758,21.483621627894262,13.014610422077876,0.2164171335824791,7.2059300182790516,1546.3786777428413,0.0,1.545062947113892,37.64364342932706,0.5094867487511089,0.6925067711212145 -2006-07-26,3.5331936947460183,23.050388684652386,13.097184482351851,0.9567411567979464,7.997328128804936,1107.374216858806,0.0,0.8585503137226245,37.50944748834287,0.47811897433641254,0.5815163286465976 -2006-07-27,1.0752358832759925,23.196621704269056,13.603456663033063,1.368699431602077,7.924461695241043,585.6179689686008,0.0,0.22958002720364812,34.666343745337585,0.4163651972826042,0.4134967493653658 -2006-07-28,1.1676663611099534,23.139337494473864,13.743802225102105,1.0159523558140613,7.853169295476257,427.25083308648436,0.0,0.21501249562816782,30.370322758592103,0.3673962146655894,0.30190577828776705 -2006-07-29,16.548097479759488,23.514850643520152,14.006226245317974,0.8024653379545309,7.971681013426264,2527.164536569176,0.0,3.546656795213657,26.92137024228253,0.5063898599872791,0.736557363252007 -2006-07-30,15.372085232238348,21.983849432463465,13.91759230422267,0.1649499617901972,7.1813227242874005,3524.279480385187,0.0,4.344511269566112,36.65489328931253,0.6060790653696025,1.1409802467119525 -2006-07-31,5.9238207612143166,21.79042131734916,13.44227523259604,0.1453291027280846,7.239212915328317,2190.9490545044514,0.0,1.8068064200043645,44.27225952083013,0.584750340824754,1.0178374835914994 -2006-08-01,2.6971590005215664,21.278828533701155,13.05645380800521,0.29353918177862803,7.095291549934151,1280.6156559422577,0.0,0.754354751572976,42.74514272900114,0.529372040105388,0.7774260183227406 -2006-08-02,7.470635770400832,22.331000184577647,13.142791578229986,0.34219879518421426,7.624593107716962,1873.8812736722593,0.0,2.0124858115417927,39.01008097904985,0.5414688718382362,0.8124984937830025 -2006-08-03,1.5694628999831717,22.359506970025173,12.230740227849108,0.4597916620396372,7.908006739126018,905.5179998523215,0.0,0.3917683388182307,39.38677579828663,0.4771124439029169,0.5885508491278357 -2006-08-04,5.117828904931561,23.185000085066672,12.60862585030194,0.7027037874210488,8.221739759501379,1177.4794811822037,0.0,1.1670480886041874,34.665037604362766,0.4634434525481651,0.5608192529619733 -2006-08-05,9.940223919166042,23.60420073070288,13.180075042062011,0.8270587053448725,8.278039775181682,1975.0838264857466,0.0,2.3574024604295456,33.471926314024216,0.5057221500594729,0.7240163252323951 -2006-08-06,13.386366081029813,23.65684795102797,13.737948404062534,0.8285184278663823,8.14551054640463,2994.1113480789377,0.0,3.6443919284787114,36.35583536533591,0.5794629597709945,1.0262131079794121 -2006-08-07,17.317392348150534,23.00421788958924,13.686907715553756,0.6090824345846536,7.820954048140797,4634.248171297495,0.0,5.731255094884666,41.49855389788608,0.6851659416443091,1.540684756217291 -2006-08-08,5.004857117728882,22.868522937160286,13.902986852567802,0.4995953806007065,7.682872183638766,2462.729593331023,0.0,1.6997909363586956,48.83453238865441,0.6271924259176846,1.261731644863068 -2006-08-09,2.7507985028135225,23.896302687626864,13.93589995768856,0.6451146009026374,8.219298487315552,1484.5074289637214,0.0,0.8233367017716788,45.176333501198364,0.5583186299931838,0.9466931752599482 -2006-08-10,0.5571139963141093,24.904089612209848,14.275700253770587,0.9219197252456891,8.649143727148955,764.4615751189926,0.0,0.13950759662367462,39.999860925300084,0.47246129129963566,0.637494855020162 -2006-08-11,4.107609829941608,24.34665850152283,13.920970887533601,0.6789357274629628,8.464679445823661,1012.2849840833403,0.0,0.8954267357765131,33.774187414783455,0.441297283083495,0.5513211368509501 -2006-08-12,7.598259640208934,23.64743386336,13.767487419672465,0.3253713259903425,8.147890631380134,1484.6650933813535,0.0,1.6424736338761692,31.75323364019687,0.4584182465719632,0.6089750227051065 -2006-08-13,6.957559431140805,22.92707653747199,14.251552567992173,0.23412146926808625,7.6131371788343705,1513.8670568795724,0.0,1.5585474006363391,33.17596257840729,0.46752835165051204,0.6337259838264654 -2006-08-14,4.027208037938847,22.628244380955998,14.09432634133532,0.18401424097974065,7.506180588394309,1091.5550652917889,0.0,0.8894266972365354,34.21596413332078,0.44550705624246006,0.5479541843356588 -2006-08-15,1.3294250627515711,24.617309550877987,13.954263681179292,0.5192509850881585,8.60818001670804,590.180482432663,0.0,0.2670283096307915,32.73104994414753,0.39678146693979394,0.39735142505562093 -2006-08-16,3.5685205014898487,24.69122660965728,13.987774556673395,0.6205057349113378,8.640258723465873,698.179602210886,0.0,0.642287774039096,28.549615266952134,0.37415453022873424,0.3564549041869352 -2006-08-17,4.305947921882645,24.18085526959291,14.66888802867441,0.6727154987354721,8.167062816870885,753.8200776842008,0.0,0.7394580063548872,26.94300859785732,0.3640291806185554,0.34462879458536044 -2006-08-18,13.51260859864781,22.71822599906919,14.919903606014364,0.473421038390729,7.2774174070618525,2039.5129836757376,0.0,2.708473245803594,26.50062880115338,0.4661271174077134,0.6367422111559717 -2006-08-19,8.611504545104541,22.690946757231522,14.431992029154468,0.3534685446784731,7.439580808058265,1918.38857368176,0.0,2.0563367889340682,34.370240464091275,0.5007082206847218,0.727596906566504 -2006-08-20,12.97911580387408,21.153267518511466,13.944777548601255,0.5553638769360659,6.759618543207483,2922.1404856863255,0.0,3.5467011705827574,36.695750335702606,0.5786785490486195,1.01366903708393 -2006-08-21,6.4411314396427635,21.830020819821893,14.134063326983096,0.8543608110300219,7.072944442866087,2117.3297625068417,0.0,1.9009077432737165,42.79399431181872,0.5735558713339463,0.9492921863592378 -2006-08-22,8.735463645078063,21.608921234729,14.371528505456883,0.8943238329328616,6.8634652660914695,2452.0823398271646,0.0,2.6136439852261333,42.13080670330347,0.5925576012224978,1.0159105042037853 -2006-08-23,24.307282597429676,21.089335525586666,14.276024777900968,0.6893972066823365,6.604965332823902,6924.949852574571,0.0,9.341677909075443,43.661487550223214,0.79179014150028,2.0837184549325345 -2006-08-24,17.476797587689294,20.052541730214962,13.359732086624,0.3249329882579556,6.368916800973036,7505.097818918745,0.0,8.564172411286652,57.19878701994375,0.8699199878804296,2.6604245459039304 -2006-08-25,3.2605578267342317,20.5231893477904,13.186746753364284,0.4574568129867095,6.69986526228663,3253.0817743879606,0.0,1.5031664420930575,62.1296503996509,0.7617516414057136,1.9606906362307166 -2006-08-26,7.2844629739016895,21.688545670925684,13.680957119029205,0.5382141500785079,7.170443813108134,3353.485667248628,0.0,2.9833962868885067,55.18681629895887,0.7277480958932707,1.7305836095515696 -2006-08-27,8.484729186164394,20.35227647478863,13.75372463901332,0.7119112539054692,6.396114181092561,3460.582585090509,0.0,3.29376938463092,52.385148979817416,0.7090928575204162,1.6280536394277836 -2006-08-28,10.634813287918304,20.873348794167796,13.629712084225293,0.9728603074673804,6.742765200876201,4021.123697826761,0.0,4.219437004642762,52.16391323721925,0.7315626346240887,1.7022580176444708 -2006-08-29,2.627214297457628,22.60013254040164,13.942303366353235,1.0806280317355983,7.5896484907362405,1999.7960103469218,0.0,0.9664620857668718,53.192903136024825,0.6502665648533228,1.2552480932784926 -2006-08-30,11.079806261411042,23.215039936159105,13.976746264005694,0.8963243856899509,7.9142690655638415,3420.402449982619,0.0,3.8688707867693193,46.81692129026134,0.6744576663805483,1.4062002434425909 -2006-08-31,6.692254751029522,23.047745807942015,14.165209392467188,0.8721182215506976,7.766376190158876,2632.1918768564256,0.0,2.276039398985623,48.03195543347141,0.6374999875876575,1.2619308890628398 -2006-09-01,1.1944467751567884,23.2429696101171,13.608175447206195,1.0254934261231254,8.052280858194043,1203.5132694920972,0.0,0.35572145090911955,45.77356138710205,0.5471454867874411,0.8756215439344435 -2006-09-02,0.0990450180360616,23.728726195855824,13.6406484964151,1.258106755226689,8.302537557811009,617.7411647917572,0.0,0.024184560231144805,39.392205398260195,0.46004632255688954,0.5736709274578627 -2006-09-03,0.04781980267697825,24.121580989808113,14.093611458108628,1.2674528910499117,8.377881099580595,383.380557266681,0.0,0.009539737832993535,33.17533344520341,0.38702723550947016,0.37488537725528587 -2006-09-04,5.041319845913048,25.174791462852273,13.982485690042036,1.0941397823183898,8.968367461232981,841.9778737163141,0.0,0.9141011269598636,28.006315854572374,0.38498257494866056,0.3832181614023687 -2006-09-05,9.56628351526934,22.92908988242346,13.931492851488835,0.5220877185907833,7.79804354160654,1511.6420831084624,0.0,1.850904839501979,27.50461045851744,0.4318508091478262,0.5312846166990545 -2006-09-06,5.288906462167412,22.55354967816333,14.121729692751137,0.9289406496425759,7.533444595232795,1170.8611443353489,0.0,1.0923370557806473,31.554544506110187,0.4292012521656394,0.512165768724484 -2006-09-07,1.5711057857707549,21.561699645913095,13.263982227382805,0.9039449375927932,7.285816573115214,603.9334579004045,0.0,0.3040686764569043,31.548153744777746,0.385816944062847,0.379694791587857 -2006-09-08,19.25207272529347,21.62871982078627,13.019185850592608,0.4046141113272011,7.406581269000093,3243.7019044524172,0.0,4.551778460288798,28.586199484769793,0.557283473572501,0.9402389768058156 -2006-09-09,12.275973955780929,18.3300858397563,12.375244900841556,0.1020909611450979,5.817104074533691,3301.026183692404,0.0,3.709535755466918,40.68283365943364,0.6169342432450187,1.1768830017054182 -2006-09-10,2.1359459478675173,17.251973332784456,10.802318952547223,0.3691954543472021,5.815001777501773,1430.5513891458115,0.0,0.6564402031179863,46.46702216989938,0.5661916630196547,0.8660482390002575 -2006-09-11,3.6733705144239246,18.665108819930577,11.269712214500025,0.4287560787596547,6.414152352349093,1301.6253990309242,0.0,1.0438116990388004,42.82089617308019,0.5416267194400883,0.7226924505324976 -2006-09-12,4.037763232851287,16.874403721636412,11.542751246038101,0.38768924635661545,5.322895908434366,1240.381585435635,0.0,1.0797028894976641,40.489873561359914,0.5187168130506339,0.6348395339231433 -2006-09-13,0.4770217564116674,18.04416781094146,10.355634052765067,0.5400161013424901,6.393770866269829,558.2414657305553,0.0,0.11854686517308116,39.78621743714272,0.4690394689953786,0.4313012106187888 -2006-09-14,0.023808705928077014,19.429529703963823,9.915462939300586,0.6167578764197139,7.221428056151228,296.10810238433095,0.0,0.00509364384573038,35.25260763549767,0.4109463600109707,0.2815323994788776 -2006-09-15,1.425147135541608,19.955516147411963,10.417899475709152,0.6713724554148107,7.34890192797227,357.1371848135838,0.0,0.2643961902736516,30.44561751098701,0.3712728241864243,0.2235225858818209 -2006-09-16,7.140889549563098,20.25791622119679,11.278788891139481,1.0202293665248756,7.260246902198784,1024.018513561205,0.0,1.3212408484526348,27.49403146650102,0.4034733739125546,0.346681135464461 -2006-09-17,4.952601329802714,20.50629602885053,11.113785879379904,0.7565567250682683,7.438859881231549,930.3616774298738,0.0,0.9596112291838059,29.880257844866133,0.4057792194099717,0.37178811097159437 -2006-09-18,15.822681284231274,19.557822650953856,10.24025085764741,0.36986257737467293,7.212343782158537,2715.1271219311766,0.0,3.6914661960911896,29.93157787407565,0.5330061328827406,0.8040968478849121 -2006-09-19,16.1383211270373,18.19309359543808,9.245608150942548,0.4000944284276513,6.816520593611149,3969.113536307941,0.0,4.939738307005889,39.16305058271505,0.6442235284837865,1.2755773864783326 -2006-09-20,7.582920742188278,19.134604215177266,9.695146355777712,0.8525704774551376,7.15996847324249,2805.344144973543,0.0,2.5590040388908113,47.27612455669535,0.6390707253553758,1.2199870950618117 -2006-09-21,4.327332081837876,20.40633616176166,11.10567866691684,0.8284899927183245,7.407225292535459,1862.2629341861766,0.0,1.372355065095479,46.54421241415409,0.5926190414703305,1.0031155916931873 -2006-09-22,2.7207444618648595,20.80328275498314,12.038928826182227,0.9276866004924128,7.337208465595555,1248.0138075886155,0.0,0.7692223400764093,43.119424102590905,0.5340069192836572,0.7701065686115665 -2006-09-23,2.7091405530733503,20.859964670135728,12.292681067619311,1.09557735225571,7.2913392865355835,998.736600678244,0.0,0.6825120045397632,39.12286927771996,0.48731458449537246,0.6052257164687498 -2006-09-24,0.7922309496551156,20.792552305459463,12.20356464733272,0.7129678268250984,7.288149136618874,551.8437646447112,0.0,0.1751222753690007,35.86788297654503,0.4270654997874016,0.4206384492855132 -2006-09-25,7.032637665664643,21.89638173940666,12.132358507185812,0.8742813182095371,7.892252377685514,1264.8504322295817,0.0,1.4964721243868677,31.56319012308674,0.44961525535608354,0.5016758485140171 -2006-09-26,2.685168783914168,21.18650252031522,11.890171831772893,0.6764571264837385,7.6000276410415815,775.1522631246215,0.0,0.552305884551298,32.74449703983934,0.4127316126944243,0.41066412865057444 -2006-09-27,2.326185553489172,20.44171700982962,11.932414689185336,0.6376203312405597,7.201013536883436,591.4583114257167,0.0,0.43679905071234204,30.325508036253392,0.3803701175037198,0.33383215475781586 -2006-09-28,2.4971979582741897,20.84296316845908,11.380483041971544,0.9474713520325856,7.58121546467827,529.9268906794003,0.0,0.4353241546221662,28.24229709744974,0.3580942995870773,0.28359357613831393 -2006-09-29,0.017027835242838348,21.53996016089432,11.483683794709735,0.5609999283097492,7.912304248551132,213.70817573488327,0.0,0.002623934055079543,26.40661478873558,0.3078175415965679,0.18500562189072897 -2006-09-30,0.3551636867615881,22.57983952534829,11.666026712815613,0.4776878852137558,8.394487466636512,153.04338107897013,0.0,0.04649991343922272,22.601420227002084,0.2674286556304517,0.1275102633421436 -2006-10-01,0.9547148413321948,21.14284840472865,11.577428639333455,0.1720201065260585,7.691692759423227,156.58851504797772,0.0,0.10829401244560855,19.47798667172087,0.23802713491957966,0.09949255165507231 -2006-10-02,0.451243741357888,21.303753254362746,11.620069903599255,0.44920470280468827,7.76671916009415,100.91716647808909,0.0,0.04539526803945221,17.61640943152705,0.21047592344629998,0.07167707515220054 -2006-10-03,0.5857336257077752,19.525429484975046,11.842551815698386,0.4790003906766743,6.764888104045654,83.76501381753593,0.0,0.05200905789082144,15.57192342364338,0.1882257621202601,0.05457755448535846 -2006-10-04,6.73564696339609,18.822158553402073,11.850849047174188,0.4970679418246653,6.3808899351598525,475.18308463628114,0.0,0.6680470096811133,14.223104753086716,0.24415526353077932,0.13724744898040214 -2006-10-05,2.25823370664125,16.977718017221772,10.793050366127849,0.5813879102658932,5.7503016449084345,293.2266877960438,0.0,0.25241500018309626,18.55415036057284,0.2424501795418565,0.12777555131285495 -2006-10-06,15.438683685659099,16.561220922593538,8.216451534133402,0.8945307204830781,6.367708151837838,1658.5634967250735,0.0,2.3845898268101724,18.65987841566977,0.3972251557960491,0.44626490667804497 -2006-10-07,27.216469546425877,16.03080153429391,7.853475829144549,0.8654197320216838,6.2138902890329035,5389.998626539455,0.0,7.592571400192078,29.99273087976713,0.6664484409850319,1.4465786390907438 -2006-10-08,22.07215183006887,14.793107891014955,6.288725595843881,0.48169259259669395,6.041949062863723,7607.521671262627,0.0,9.51352683041381,49.49282151830815,0.8336834733198708,2.390229706306835 -2006-10-09,22.80180711367683,13.949388824462616,5.6078597154511485,0.4427038014671337,5.82630321963602,10763.372420442209,0.0,13.197003100934523,60.60680194559976,0.9716538084464182,3.565365876946214 -2006-10-10,6.6663430458140756,13.952896238174635,6.747426223251169,0.4223943769792345,5.530511785464704,5535.421939390321,0.0,3.680509088533954,67.74570733960933,0.866849992665859,2.8812974938865312 -2006-10-11,0.8029247688090371,13.985635012419666,6.577948021866104,0.37460829508279736,5.5972500207200735,2393.00830964252,0.0,0.37046696729567175,63.40308276802927,0.7479565053527277,1.9319983161468044 -2006-10-12,2.2235730655997124,15.316149245262242,6.733154338470789,0.5363047123993919,6.187952752908567,1867.0901820258389,0.0,0.8687635967996847,55.82986431867481,0.6762832298012337,1.3899221915830131 -2006-10-13,0.22415261271702933,16.82648001456889,6.684302615595224,0.6365392719028445,6.901130481592582,1006.5219756507611,0.0,0.07411102980293735,50.199906822688156,0.5874061435663142,0.9160585194931966 -2006-10-14,0.20717205536420635,18.300701214782013,7.853894367857921,1.0129401698850469,7.32154727170987,641.7587663901884,0.0,0.05676213257042917,43.26477573308283,0.5064187510813138,0.6049539146597024 -2006-10-15,0.3158844514923256,18.78407347057712,7.570974870566915,1.1108808258325709,7.61438048510951,444.9123923630859,0.0,0.07230220094367712,37.196060585062305,0.43698875533457004,0.40480564380982914 -2006-10-16,0.21777042270323485,18.921569414207305,7.618356364797591,0.8994207205867465,7.672188769975216,295.3521140901919,0.0,0.041880741627372736,32.04751788965085,0.37586875770869566,0.26988640986394596 -2006-10-17,1.136246630276258,18.8781961391642,7.09106457942108,0.9941899534563894,7.767251201433579,301.50731846146437,0.0,0.1883692455369188,27.635605365826425,0.3351725904960478,0.2043653685362353 -2006-10-18,5.861154768211571,17.94597657290373,6.0992286182377935,0.8478278135722197,7.547886289512356,763.5653567395829,0.0,0.9481748556500671,24.649766811951732,0.3554315733943832,0.27740587872448 -2006-10-19,8.110247418917275,17.966440654327872,6.10550527017628,0.6819634872156193,7.560140364888001,1189.141127524421,0.0,1.4584122795010153,26.232696254736616,0.40007203561027765,0.40264300337487274 -2006-10-20,1.0442976258999233,17.151135019234385,6.6164713885409006,0.7184825188414465,7.092657655161602,472.0671041967265,0.0,0.18534754136633413,29.443693758030427,0.3551644521373636,0.29032357225292055 -2006-10-21,1.1558377835853293,17.70475311183688,6.570840492225237,0.6810830755487528,7.358184923921592,325.9855997916692,0.0,0.1828447325418161,26.467161741359185,0.32178923724829617,0.21682781198874024 -2006-10-22,0.32016313199395185,17.496971515970873,6.952701516710426,1.0252974556190573,7.185591715589466,182.0703330880173,0.0,0.04447764668028242,23.887049040540877,0.2819976278779341,0.14791709346440307 -2006-10-23,0.16303878445108974,17.161033416407722,5.521398076992888,0.9416495363134948,7.331560147261662,112.61424705340826,0.0,0.019671502360669807,21.048254639359282,0.24709720339147168,0.09928235257971234 -2006-10-24,0.4325642754790781,16.24016314267198,4.650695013890334,0.7251041359096096,7.09484767815625,95.80098066388663,0.0,0.04558064408080503,18.41622506385036,0.2195756307738929,0.07156847167431873 -2006-10-25,0.04712731311887144,15.20118084399758,3.6986921876089256,0.6453559128391987,6.8228723611237045,52.18275107963875,0.0,0.004358554516962453,16.4628446260133,0.19232999198680564,0.047251365655118095 -2006-10-26,0.915502669013663,15.903719476046133,3.681321125275171,0.7239128678275376,7.125521519656087,81.1726341783214,0.0,0.07646466684422815,14.51425197016422,0.17974619200155034,0.04240129335232483 -2006-10-27,0.13329636630552544,16.31411176240098,4.609174341838012,0.7636517011402573,7.14609351892536,38.61985808773644,0.0,0.010027792494717302,13.488761101492416,0.15868774418783768,0.029128128657569856 -2006-10-28,0.4187615169063745,16.210522450457567,4.3803503708537415,1.0142158351843509,7.145886270456655,38.196110604316864,0.0,0.028027623607768726,11.912654031020223,0.143652639887125,0.023228662475072166 -2006-10-29,0.009075507438271044,16.201171123784086,3.4377995729102366,0.9026850071304828,7.300614552629059,17.165052855356784,0.0,0.0005383526061696654,10.789723244810856,0.1257986921567338,0.01520273966140575 -2006-10-30,0.23277810472131602,16.28614294104967,3.3610605780091007,0.9288592397153846,7.351782769434407,17.996078883887336,0.0,0.012152949318967182,9.425500189494093,0.11251240121916464,0.011746735057835038 -2006-10-31,0.04794005665019863,16.095866128558132,3.5824007175504176,0.5342340331664724,7.241718588684581,9.804485483809977,0.0,0.0022079228939613296,8.425282449166557,0.09870730384365625,0.007982761303933912 -2006-11-01,1.2343971754553582,14.630123924539662,3.0767290972505177,0.6242954423602532,6.713779568342991,40.618329825990685,0.0,0.05394358907665442,7.411025331488178,0.10071331723719462,0.013410110754392473 -2006-11-02,0.0,15.658623574019119,2.4763245036256434,0.6557488737228969,7.2328663837862885,11.871467813764326,0.0,8.881784197001252e-15,7.639957721033233,0.08900033341565405,0.008729351825905396 -2006-11-03,0.0036570028673063703,16.742968624356305,2.869238131711238,0.7055892049328194,7.628102066969694,6.011271574928991,0.0,0.00013250727152542933,6.6854828300859515,0.07792394894513353,0.005702573948723087 -2006-11-04,0.3290229183404647,16.561536892752578,4.276743172251952,0.9719480427286756,7.341200096833699,10.676654999463084,0.0,0.010625713490158173,5.8100747722190675,0.07151633049314535,0.005330029470166226 -2006-11-05,0.2838367504271204,15.980318764657078,2.793622311252624,1.0345353512622646,7.331461468983615,9.596691088130367,0.0,0.008433652442903394,5.3636811341035395,0.06578975866716208,0.004753746846870302 -2006-11-06,1.5887971937790786,14.722032772811794,3.159923368254944,0.617421042270234,6.755813629358145,35.75743371852451,0.0,0.04917872443394078,4.936024969577855,0.07600975937574697,0.010582653074230352 -2006-11-07,0.5815050292743822,12.321663278073014,1.9886212003611876,0.7336038124618035,5.963122496505945,22.221031316598154,0.0,0.019041716584008883,5.765511497130658,0.07393844412116973,0.009788192416205993 -2006-11-08,0.10348202137596407,14.234555140063412,2.8911613510295457,0.9857199452084799,6.603571824838324,9.79714528034447,0.0,0.0032121286179384034,5.695203203160861,0.06755075580266542,0.006860747252153429 -2006-11-09,0.011271794496466371,15.828484375397911,3.1439262578370344,1.0532763756399257,7.231169709291558,4.956121392818443,0.0,0.0003126632877836228,5.14029083257909,0.060012215795264987,0.004513631610511433 -2006-11-10,0.4669447894970741,17.012022157260727,3.970654680374326,0.2835598234578947,7.605943127306773,10.769813080294567,0.0,0.011929257558483619,4.512213892903736,0.05800382659751019,0.004754567729691732 -2006-11-11,0.36442579049360063,16.84103267641815,5.589645732111147,0.515292566836199,7.248970666349921,9.56713873194147,0.0,0.008844288837057734,4.329519350681211,0.05468128199835758,0.0044416737577866365 -2006-11-12,0.34939206147492274,15.311790434501894,3.3348716762079302,1.0571298325595246,6.994653232594885,8.71516277485734,0.0,0.0080478952017361,4.110628144425997,0.0519562149241911,0.00411673179214352 -2006-11-13,0.2085116832935876,15.792284079197106,2.683241999134676,1.0950250236186652,7.298087070707791,6.137477987878778,0.0,0.004512600139834788,3.9255007429602538,0.04815844507465284,0.003366908945365519 -2006-11-14,0.4539324176566825,15.611413274483384,3.1563548599040856,1.189120698443331,7.155443626323975,8.61104666297218,0.0,0.009366729117631978,3.6175219915129118,0.04742968654199866,0.003617922359781565 -2006-11-15,0.8635462550054739,15.38579344913025,2.2576872125670446,1.2746844809292963,7.1975738865352605,15.052830374444971,0.0,0.018571342136437408,3.5727853780609835,0.05168025909336184,0.005182858605048311 -2006-11-16,1.4593566934030686,15.087977381506693,2.021622183353069,1.3200155204071833,7.111793242066894,28.191940254055247,0.0,0.036276342609318446,3.889282544821235,0.06230802484828859,0.008897406423317608 -2006-11-17,3.3670844711530927,14.710786161012475,1.1322884160497677,1.4952702498677146,7.078731858588152,83.96610613696437,0.0,0.11631687234701715,4.695445896855933,0.09392301857262042,0.023502755545366204 -2006-11-18,0.03540113751764044,14.921313820828965,0.8753673004574326,1.242217471727501,7.196158039852656,23.103428768767003,0.0,0.0013624572110669045,7.075571936550776,0.08283802052457385,0.015506643468229215 -2006-11-19,0.3998316960053503,14.59558565176182,1.642477063620545,1.4397050770095374,6.972847508865655,19.793980000063613,0.0,0.01391407862945937,6.228300258682372,0.0772132484799116,0.012212720106949317 -2006-11-20,2.4577803411255386,13.308139643732519,1.2320775235513042,1.4795823269094353,6.514849278682165,70.31431561909552,0.0,0.09417048698022112,5.831861878818114,0.09656871783993194,0.022288754597229413 -2006-11-21,1.015182242784821,12.753024970120206,-0.9865325594447713,1.533972430795635,6.56736153678155,48.40152726536752,0.0,0.04342282732691238,7.354935375642023,0.09750620173163506,0.021120698609030448 -2006-11-22,0.021063854663173003,13.131749808056151,0.03632769206988628,1.3715098267941468,6.603941688863729,17.248037173416336,0.0,0.0008500148977708608,7.4185447839715275,0.08666640228879721,0.013878009446938394 -2006-11-23,0.07226790203460984,13.443245375969525,0.8180404464432518,1.5560860617575718,6.632262083547058,10.999857043679544,0.0,0.002594545982514601,6.591229523447222,0.07762523226398567,0.00942898983808557 -2006-11-24,0.06717908112545751,13.134115008539,-0.16445377324251234,1.5051848800162957,6.633064633715318,7.713994695246313,0.0,0.002155050741294573,5.9019250435343285,0.06953602057573034,0.0064659675335885574 -2006-11-25,0.06450110010575599,12.482663958241858,-1.695624621256418,1.5485258111281728,6.543641444660348,5.555784911385109,0.0,0.0018508654148656212,5.288039761550034,0.06235347611895578,0.0044908625657884725 -2006-11-26,0.07538066203400726,11.232425672664464,-2.7413885424424485,1.2290228579731872,6.177025933263702,4.310730858707317,0.0,0.0019434873301361344,4.750997689666127,0.05622403921278693,0.0032192651165699956 -2006-11-27,0.16385666451883227,11.252572539833192,-2.8922487495907307,1.289503384911212,6.198524832251395,4.7479479719390625,0.0,0.0038739707824569647,4.314999850559284,0.05217564516952812,0.002685459566489976 -2006-11-28,0.04978062614386446,11.802960548824545,-3.025718739397629,1.3195617206855434,6.409051084197283,2.685530265437934,0.0,0.0010768608570472724,4.003072005154428,0.047212988427542874,0.0019120759349316341 -2006-11-29,0.008396445358166948,12.317615513601556,-2.7156643971614347,1.095729725726374,6.575306657921545,1.4313285533625784,0.0,0.0001626715680494769,3.608197761594309,0.042130873232680964,0.0012694407154232518 -2006-11-30,0.04020908994738249,13.067128073438475,-2.260707498198016,0.978850057068246,6.818619763185356,1.2962107439195405,0.0,0.0006956866618993487,3.2099662721139395,0.03786234184077149,0.0009322748135479637 -2006-12-01,0.0,13.253246432261367,-1.8168639114032772,1.1743868650779767,6.85507720074021,0.6483211537327201,0.0,1.3322676295501878e-15,2.8715814783936433,0.03345197949245815,0.0006068670867036905 -2006-12-02,0.11278901571243867,13.201917099529322,-1.4622240865276104,1.287848747157564,6.807887536669604,1.419069702475479,0.0,0.001562709383881658,2.535613498046892,0.030852095698712757,0.0006329875399958231 -2006-12-03,0.400477179090496,14.268670464340836,-0.5474669628092624,1.1980324537343148,7.131720239507321,4.055831312968499,0.0,0.005438847661334123,2.340844879418343,0.031934545466827266,0.0012401900416241412 -2006-12-04,0.3958332220026866,14.451021665499553,0.4485119173436468,1.1097400651791605,7.100910373294812,4.7315402253258565,0.0,0.005513599312819528,2.4077688469623695,0.032660065410540264,0.001646832374897197 -2006-12-05,0.03321217763762305,15.032627124683833,1.1632975159427734,1.3054865398165298,7.250595290723429,1.704157666537619,0.0,0.00044020352252391315,2.4638918253367623,0.02908957051246985,0.0011390379642837204 -2006-12-06,0.04156484586755586,14.928938278860743,0.16035507995598985,1.4075065027574432,7.324173069787693,1.1135025886214098,0.0,0.0004902199096991425,2.1883888415469124,0.02597745025930773,0.0008161034031416593 -2006-12-07,0.0476848249218524,14.182261068530545,-0.00824664287822223,1.1983460452911898,7.051688698120286,0.8916074183275412,0.0,0.0005025308606935869,1.9516497821662795,0.023290894156444954,0.0006077627059187954 -2006-12-08,0.05140575458214602,14.33960987564276,0.7808625216835325,0.9692345053682876,7.025852499192554,0.7467503344940304,0.0,0.0004891835989413382,1.75922233525533,0.021092591028827136,0.0004701103862611386 -2006-12-09,0.44336031294923617,14.026605909433243,1.0377330551658663,1.2652067182319593,6.87075393204746,3.1408808453320756,0.0,0.004292492738283138,1.5940731354788191,0.023734719856248,0.0009596151978511037 -2006-12-10,1.0859762237157622,13.214315975958064,0.832856654299616,1.3785426134183163,6.575107839311505,9.75097020873291,0.0,0.013585846299835502,1.798998033005088,0.03360799628993359,0.0026933101921628013 -2006-12-11,0.2106663474809352,13.793204230028744,1.033482320083932,1.5043336051990628,6.781182553915554,4.522585312245621,0.0,0.0030034756943767005,2.561201860554195,0.032290387421936496,0.0022105418937635774 -2006-12-12,0.1535325304779503,11.980872329913645,-2.0591752415589406,1.0498766608580492,6.422806726512916,3.0301830593441075,0.0,0.0020741784318488166,2.451137409375689,0.030342640829870253,0.0017547831850639442 -2006-12-13,7.282923902704378e-5,9.301636308866359,-4.715485259474169,0.8337472408098152,5.666584930691603,1.2806001187343448,0.0,9.021174393877629e-7,2.319317489911583,0.027019326449561464,0.0011424187393738862 -2006-12-14,0.11589818216727354,10.053887851280574,-3.068478681227495,0.94904429274244,5.8112776637806265,1.6242943043041662,0.0,0.0013321035960809358,2.095347645933841,0.02575951636789394,0.0009464933570682971 -2006-12-15,0.1732451800286213,10.36934739177835,-2.9115039640679585,0.9051950392587936,5.912276977434424,1.9495750200040363,0.0,0.0019219606875842954,1.9922573817100888,0.025226638293638776,0.0009087695977084533 -2006-12-16,0.7762798075212171,9.510427835571825,-3.561889080632267,0.7277936461563654,5.661115796157888,7.034913733317351,0.0,0.009683644312721174,1.9473438608318363,0.03172837120745293,0.0020660441971864485 -2006-12-17,0.04893758322011741,9.239893761132453,-1.7873743491092513,0.8211774058681641,5.388633075195952,2.340028011361366,0.0,0.0006498171005183476,2.4605228211286136,0.029233514220313523,0.0014438419214695894 -2006-12-18,0.3601988269309048,8.515955227039615,-3.540694477257188,0.6878761271341942,5.311196606747214,4.112944328214629,0.0,0.0047324033300377155,2.278831459155864,0.030742915593512825,0.0016604515481998738 -2006-12-19,0.4219647400495677,6.798489399126464,-5.602766548182571,0.5485088499618779,4.885568862731156,5.208366489892847,0.0,0.005889420097998699,2.399898793922327,0.03287279911059628,0.0019776271298597723 -2006-12-20,0.0,7.195165625625481,-6.9232803536793455,0.4567426368927345,5.082710616703549,1.6504598413996328,0.0,0.0,2.5865346090116996,0.030131376507413044,0.0012873423130636084 -2006-12-21,0.024675181221655903,8.188984436349424,-6.4630433724122796,0.459607475490517,5.388472325865475,1.070201516335093,0.0,0.0003129821534699727,2.362266058527136,0.027806248926792065,0.000885655497207385 -2006-12-22,0.0047451004107621755,9.0822945679672,-6.196934766818683,0.7815098406453934,5.674218957566461,0.6323547194616438,0.0,5.4965364857855435e-5,2.167646029969821,0.025306885453147975,0.000584889391666139 -2006-12-23,0.0,8.526277341873605,-7.9820486587412915,0.7849767693424188,5.539869926743541,0.38542696151952976,0.0,0.0,1.9623419754915716,0.022859955050989922,0.00038073550417324823 -2006-12-24,2.596699049610573e-5,7.877356925396347,-7.1214219925370275,0.6693722316282437,5.311988148314876,0.24834331944985963,0.0,2.460297042083896e-7,1.7771889682069342,0.020703350405774222,0.00024787838030510424 -2006-12-25,0.0012693959002386152,9.095287709687916,-5.518217193995596,0.7637207374028991,5.650711985817577,0.16853821687355222,0.0,1.0938247293537694e-5,1.6164975272753108,0.018845889049235273,0.00016302268503383863 -2006-12-26,0.0011559862634220616,9.357162044284976,-5.259913457161715,0.6209375690581637,5.726909223092822,0.1126398976512896,0.0,9.005794959550959e-6,1.4622052460326331,0.017047167319176944,0.00010749137121432182 -2006-12-27,0.017777689522124024,10.146573482373967,-3.868253664539997,0.6028289140319643,5.916213289831063,0.152750881742219,0.0,0.00012584338717672172,1.3208042285868815,0.015593572813614396,8.913334532418083e-5 -2006-12-28,0.7992139652931836,9.880121169472439,-4.540570430599072,0.9808688577504016,5.867097233453391,4.526567270815229,0.0,0.006829207983117147,1.203912819927425,0.023335070463498694,0.001097869420560382 -2006-12-29,1.0010327060146895,7.573576193035108,-4.710490779844403,0.6988687004295238,5.08773226632435,9.156409894386247,0.0,0.012315423188786534,1.8029475813005746,0.032664471398178095,0.0025898665068216295 -2006-12-30,0.2364106800192031,7.495905849112085,-3.2099547766165566,0.6678946432224455,4.925576383391104,4.642701177696008,0.0,0.0033860142933043458,2.5604841060128,0.03258193010676608,0.002201452069316459 -2006-12-31,0.2259840121497669,8.89456744393514,-2.240007502007002,1.0146189394186411,5.3216876590790525,3.797755720072771,0.0,0.0032318697415334163,2.561754229768092,0.03247526256895361,0.0019251417408238558 diff --git a/data/m50/01013500.csv b/data/m50/01013500.csv deleted file mode 100644 index 1d96ab5..0000000 --- a/data/m50/01013500.csv +++ /dev/null @@ -1,10001 +0,0 @@ -Baseflow,Evap,Flow,Infiltration,Lday,Melt,Pet,Prcp,Rainfall,Snowfall,Surfaceflow,Temp,SoilWater,SnowWater -0.02044773807786659,0.036135943790145994,0.02044773807786659,3.1,0.4719996527777777,0.0,0.04740812325412985,3.1,3.1,0.0,-0.0,6.08,1303.0043,0.0 -0.02172082814310687,0.048095899105908516,0.02172082814310687,4.24,0.4701513888888889,0.0,0.06292465305723906,4.24,4.24,0.0,-0.0,10.530000000000001,1306.6113,0.0 -0.024494608431686677,0.05226193528735725,0.024494608431686677,8.02,0.46799976851851854,0.0,0.06800161205186026,8.02,8.02,0.0,-0.0,11.834999999999999,1313.7886,0.0 -0.029684636773517174,0.03933478503101046,0.029684636773517174,15.27,0.463999537037037,0.0,0.050737974835134536,15.27,15.27,0.0,-0.0,7.38,1325.2654,0.0 -0.035961706318954394,0.033486852321630185,0.035961706318954394,8.48,0.463999537037037,0.0,0.042824538824485184,8.48,8.48,0.0,-0.0,4.8,1336.7212,0.0 -0.03852432144749904,0.03467407894632092,0.03852432144749904,0.0,0.46,0.0,0.044206869173992885,0.0,0.0,0.0,-0.0,5.41,1340.832,0.0 -0.03837774108050883,0.036950779343033875,0.03837774108050883,0.0,0.45920532407407405,0.0,0.047117492803087115,0.0,0.0,0.0,-0.0,6.405,1340.6044,0.0 -0.03900934917418657,0.03988920531521848,0.03900934917418657,2.1,0.45599953703703705,0.0,0.05082744291540995,2.1,2.1,0.0,-0.0,7.675,1341.5792,0.0 -0.03982533956854095,0.03428026764266105,0.03982533956854095,3.55,0.45200810185185186,0.0,0.043640231186020804,3.55,3.55,0.0,-0.0,5.48,1342.8156,0.0 -0.04073426335231651,0.030418733347522032,0.04073426335231651,0.0,0.452,0.0,0.03868550967135766,0.0,0.0,0.0,-0.0,3.67,1344.1632,0.0 -0.0449326696206143,0.026196476958331043,0.0449326696206143,10.659999999999998,0.4480001157407407,5.741167215525164e-17,0.03317121735388138,10.66,10.659999999999998,1.7752466163756253e-15,-0.0,1.5299999999999998,1350.0215,1.148235e-16 -0.05416447179292039,0.03461199430812773,0.05416447179292039,12.3,0.4480001157407407,7.441327378438883e-17,0.04346803563782685,12.3,12.3,0.0,-0.0,5.555000000000001,1361.1808,1.4882655e-16 -0.0604774469212686,0.03181999659424678,0.0604774469212686,1.17,0.4440001157407408,4.45700431951863e-17,0.039769300761967476,1.17,1.17,0.0,-0.0,4.35,1367.7646,8.9140086e-17 -0.061337209251291276,0.02653275401815797,0.061337209251291276,0.26,0.44166932870370373,2.5898451037946356e-17,0.03314076761433823,0.26,0.26,0.0,-0.0,1.725,1368.6077,5.1796912e-17 -0.06138311394163701,0.025466414167824025,0.06138311394163701,-6.484400300757912e-17,0.4400003472222222,-6.484400300757912e-17,0.03180781621464186,0.0,0.0,0.0,-0.0,1.1800000000000002,1368.6523,-1.2969365e-16 -0.06129334343473556,0.023979289861171604,0.06129334343473556,-1.8953655003800793e-17,0.43611064814814815,-1.8953655003800793e-17,0.02995229524361278,0.0,0.0,0.0,-0.0,0.43500000000000005,1368.565,-4.074371e-17 -0.06121071037452063,0.029060991411302462,0.06121071037452063,0.01000000000000036,0.43600011574074077,3.597793089890598e-16,0.0363019357636958,0.01,0.01,0.0,-0.0,3.26,1368.4844,7.195586e-16 -0.06137709169759048,0.040663372808003,0.06137709169759048,0.19000000000000059,0.43200000000000005,5.922374428467706e-16,0.05078919308037054,0.19,0.19,0.0,-0.0,8.5,1368.6465,1.1844749e-15 -0.06218605570249395,0.043113656532676445,0.06218605570249395,1.8800000000000006,0.43194837962962956,5.809311941272608e-16,0.05381888637754046,1.88,1.88,0.0,-0.0,9.405000000000001,1369.4285,1.1618624e-15 -0.06381419375091894,0.031303302044045814,0.06381419375091894,0.9100000000000001,0.428,1.5830994168112675e-16,0.039031998799542715,0.91,0.91,0.0,-0.0,4.62,1370.9719,3.1661988e-16 -0.06547532248535609,0.025699767358291346,0.06547532248535609,1.7099999999999997,0.4261517361111111,-3.164690870539219e-16,0.03200913617183593,1.71,1.71,0.0,-0.0,1.7399999999999998,1372.5066,-6.329383e-16 -0.0664088506415734,0.024515126648836007,0.0664088506415734,0.3599999999999961,0.42400011574074076,3.364313427643263e-16,0.030514865623954918,0.36,0.35999999999999577,4.216627047526344e-15,-0.0,1.1149999999999998,1373.352,6.7291876e-16 -0.06657058069326846,0.023324224718921746,0.06657058069326846,1.3164120656636498e-15,0.42121863425925926,1.3164120656636498e-15,0.0290294363465658,0.0,0.0,0.0,-0.0,0.4850000000000001,1373.4973,2.7523107e-15 -0.06647865889110306,0.027071709892297964,0.06647865889110306,1.737177436287024e-15,0.41999976851851856,1.737177436287024e-15,0.03369559789321018,0.0,0.0,0.0,-0.0,2.71,1373.4148,3.4743549e-15 -0.06689207850624213,0.024688104349632447,0.06689207850624213,0.19000000000000125,0.4164640046296296,1.3021743483139297e-15,0.03072049183091371,0.19,0.18999999999999995,6.328271240363393e-17,-0.0,1.4749999999999996,1373.785,2.6043546e-15 -0.07720702386068337,0.03032265781796045,0.07720702386068337,12.62,0.4159996527777778,7.67646848915706e-16,0.037498043647455105,12.62,12.62,0.0,-0.0,4.445,1382.3495,1.5352937e-15 -0.08723695082687936,0.024184876655255597,0.08723695082687936,2.989999999999455,0.4121109953703704,-5.232365162995635e-13,0.029750869318456406,2.99,2.989999999999978,2.2241097852315762e-14,-0.0,1.16,1389.6436,-1.0465286e-12 -0.08940466194235906,0.020669572653384705,0.08940466194235906,0.21998282452947335,0.41200046296296294,-4.086990049376071e-6,0.02539974877796454,0.22,0.2199869115195227,1.3088480477296827e-5,-0.0,-1.1199999999999999,1391.1094,-4.4679505e-6 -0.08939917970787908,0.019709030534562504,0.08939917970787908,-2.62049037446506e-8,0.4080084490740741,-2.62049037446506e-8,0.024219452935945362,0.0,0.0,0.0,-0.0,-1.66,1391.1057,0.00039878316 -0.08924088829123827,0.022153986418208038,0.08924088829123827,-0.03656485961617908,0.40794895833333333,-0.03656485961617908,0.02722600965654467,0.0,0.0,0.0,-0.0,0.020000000000000018,1390.9999,0.0017777964 -0.08899478964649858,0.02442940349645396,0.08899478964649858,0.010610408170012447,0.40399999999999997,0.0006104081700124486,0.030025929797409916,0.01,0.009999999999999998,1.1102230246251566e-18,-0.0,1.5850000000000002,1390.835,0.001213455 -0.09002246050509102,0.024224714182191815,0.09002246050509102,1.4703655575998078,0.4037145833333334,0.0003655575998082674,0.029759677007060958,1.47,1.4699999999999995,4.8960835385969405e-16,-0.0,1.465,1391.5206,0.00072846375 -0.09090782366554988,0.0198305400577473,0.09090782366554988,-7.673373151891287e-7,0.40000023148148145,-7.673373151891287e-7,0.02435127568549634,0.0,0.0,0.0,-0.0,-1.3,1392.1051,-0.0005471599 -0.09075075640227546,0.016003957143221895,0.09075075640227546,7.0572397925516835e-12,0.39971435185185183,-0.0,0.019653810944587603,0.03,7.0572397925516835e-12,0.02999999999294276,-0.0,-4.3100000000000005,1392.0018,0.015104604 -0.09155247585584717,0.023232286563019323,0.09155247585584717,1.5605545592410723,0.3960082175925926,0.10055455924108797,0.028519867354775682,1.46,1.4599999999999844,1.5479839632348558e-14,-0.0,1.125,1392.5271,0.12840825 -0.09361669271762516,0.026946360248872026,0.09361669271762516,1.3510246035830322,0.39571446759259266,0.04102460358303227,0.03304764983656554,1.31,1.31,0.0,-0.0,3.3049999999999997,1393.8586,0.06289658 -0.09507730252786928,0.018051576615151083,0.09507730252786928,0.04505413885138508,0.3921108796296296,-3.9321362974161234e-11,0.02212420282503281,0.84,0.04505413889070645,0.7949458611092936,-0.0,-2.38,1394.7832,0.096070066 -0.09933684449560928,0.02072586326963961,0.09933684449560928,4.986423882946585,0.3919487268518519,-0.003575817853833806,0.025354259526734892,4.99,4.989999700800419,2.9919958128898916e-7,-0.0,-0.42999999999999994,1397.4005,0.28486583 -0.10946494723704016,0.01927657985305781,0.10946494723704016,6.83331370627583,0.3884644675925926,-5.714559651164268e-7,0.02348388999540676,6.84,6.8333142777317954,0.006685722268205134,-0.0,-1.4,1403.1986,0.28507623 -0.11141099876912464,0.014781830808630558,0.11141099876912464,1.4206080756196115e-13,0.38799999999999996,-0.0,0.01799462056244132,1.99,1.4206080756196115e-13,1.9899999999998579,-0.0,-5.119999999999999,1404.251,3.5190237 -0.11197788623468503,0.018796296348536926,0.11197788623468503,3.3934017991167984,0.3848466435185185,-6.319007382928435e-8,0.022876681187986025,3.43,3.393401862306872,0.03659813769312796,-0.0,-1.6400000000000001,1404.5541,5.810251 -0.11841043581763533,0.02030209526708694,0.11841043581763533,3.5085091446765855,0.3840003472222222,-0.0014902230696404186,0.02465082218005117,3.51,3.509999367746226,6.322537737457611e-7,-0.0,-0.54,1407.8898,5.8138847 -0.12287232600281417,0.022364524487385,0.12287232600281417,2.212818673867674,0.38166932870370374,2.0028186738676905,0.027112485985688828,0.21,0.2099999999999836,1.6425194537816878e-14,-0.0,0.925,1410.0988,5.3202243 -0.12483275309122531,0.02016362978384158,0.12483275309122531,0.9982308559100936,0.3799997685185186,-0.00176899661252025,0.02442796779572068,1.0,0.9999998525226139,1.4747738608100747e-7,-0.0,-0.5200000000000001,1411.0441,4.8350496 -0.12768177985428708,0.019261402287829712,0.12768177985428708,1.8598292752982455,0.37920590277777777,-5.64845790936952e-6,0.02331266585206699,1.86,1.859834923756155,0.00016507624384500265,-0.0,-1.1600000000000001,1412.3917,4.8342485 -0.12866266268708668,0.01638953984136109,0.12866266268708668,-5.212299187978967e-15,0.37611087962962964,-5.212299187978967e-15,0.019830345828432242,0.0,0.0,0.0,-0.0,-3.335,1412.8488,5.148475 -0.12835401823464745,0.013865077384707818,0.12835401823464745,4.696243394164412e-16,0.3759486111111111,-0.0,0.01677760314593026,1.41,4.696243394164412e-16,1.4099999999999995,-0.0,-5.65,1412.7053,5.8568573 -0.1280484697834965,0.014240840078705979,0.1280484697834965,0.0,0.37321898148148147,-0.0,0.017234035676538858,0.0,0.0,0.0,-0.0,-5.18,1412.563,6.554673 -0.12774364869450583,0.014800512779435974,0.12774364869450583,6.018847087396751e-11,0.3719998842592593,-0.0,0.01791314756088035,4.65,6.018847087396751e-11,4.649999999939812,-0.0,-4.6,1412.4207,8.883129 -0.12743955323618025,0.014724899956951334,0.12743955323618025,1.5617607207474293e-11,0.37120578703703705,-0.0,0.017823429039549133,1.8,1.5617607207474293e-11,1.7999999999843825,-0.0,-4.64,1412.2783,12.106208 -0.12713930017748634,0.012487814421576702,0.12713930017748634,0.0,0.3684645833333333,-0.0,0.015117106269311667,0.0,0.0,0.0,-0.0,-6.8,1412.1375,12.999396 -0.12683819894383588,0.016571378546821076,0.12683819894383588,-5.065272305152156e-13,0.3680003472222222,-5.065272305152156e-13,0.020062470862385953,0.0,0.0,0.0,-0.0,-2.865,1411.9958,13.00218 -0.12653289657724476,0.01810280032214869,0.12653289657724476,-1.6230845346000996e-7,0.36615196759259255,-1.6230845346000996e-7,0.02191875138159656,0.0,0.0,0.0,-0.0,-1.54,1411.8519,13.00218 -0.12623916620987177,0.01713312775472715,0.12623916620987177,-1.8047727017155857e-10,0.3644642361111111,-1.8047727017155857e-10,0.02074671775762932,0.0,0.0,0.0,-0.0,-2.255,1411.7131,13.002179 -0.13866331067705054,0.020485503537153116,0.13866331067705054,11.589363455380191,0.36400011574074076,0.16936345603660902,0.02470803495986963,11.42,11.419999999343583,6.564173993250932e-10,-0.0,0.2650000000000001,1417.3191,13.022241 -0.18251105402315784,0.023277428107662968,0.18251105402315784,21.58268379959775,0.3621513888888889,4.972683799597749,0.027754119685580125,16.61,16.61,0.0,-0.0,2.035,1433.7279,10.437923 -0.22790350529971784,0.017076346763443002,0.22790350529971784,0.1821101826346658,0.3604638888888889,-1.79892013539057e-11,0.02017380909009288,10.33,0.182110182652655,10.147889817347345,-0.0,-2.495,1446.9924,10.401458 -0.2269973814638042,0.012633897376859281,0.2269973814638042,0.0,0.3599998842592593,-0.0,0.014928002494841757,0.0,0.0,0.0,-0.0,-6.655,1446.7545,15.562326 -0.22608792819516108,0.014040662745074445,0.22608792819516108,1.3716028313126572e-13,0.35920578703703704,-0.0,0.016592962669189706,3.33,1.3716028313126572e-13,3.329999999999863,-0.0,-5.175,1446.5148,17.254162 -0.22920223810912674,0.01782106248206715,0.22920223810912674,11.092439985623948,0.3572189814814815,-1.9350601576061116e-8,0.02104867165241824,11.51,11.092440004974549,0.4175599950254514,-0.0,-1.765,1447.3318,23.616823 -0.24621054624821365,0.01709230605150949,0.24621054624821365,0.12821082601524159,0.35611041666666665,-6.912529082414653e-11,0.020128476304081936,1.89,0.12821082608436687,1.761789173915633,-0.0,-2.355,1451.6067,25.771631 -0.24516146842830588,0.014499859389002143,0.24516146842830588,1.3974380541625919e-11,0.3559483796296296,-0.0,0.017078523842289344,1.78,1.3974380541625919e-11,1.7799999999860256,-0.0,-4.6499999999999995,1451.3517,27.61098 -0.24409939677933593,0.014855631545922164,0.24409939677933593,1.539754260759807e-9,0.3546476851851852,-0.0,0.017500693170530195,3.97,1.539754260759807e-9,3.969999998460246,-0.0,-4.260000000000001,1451.0924,30.444658 -0.2568931313401727,0.018458868376203107,0.2568931313401727,12.438774689043079,0.35321898148148145,-5.14919982441723e-6,0.021699868431247105,12.44,12.438779838242903,0.0012201617570960944,-0.0,-1.1700000000000002,1454.1432,35.346222 -0.2658082551251481,0.012882689175032108,0.2658082551251481,0.0,0.35211030092592593,-0.0,0.015123437154950016,13.12,0.0,13.12,-0.0,-6.175,1456.1805,45.844616 -0.26457830999079934,0.01063952170318604,0.26457830999079934,0.0,0.35199988425925927,-0.0,0.01249248096777259,2.63,0.0,2.63,-0.0,-8.755,1455.9036,53.715508 -0.2633599774820796,0.012671799462566373,0.2633599774820796,0.0,0.35171423611111113,-0.0,0.014881513832869118,0.0,0.0,0.0,-0.0,-6.38,1455.6279,55.088 -0.2621467193224529,0.01317763911474759,0.2621467193224529,5.551115123125783e-19,0.3506474537037037,-0.0,0.015478494316782599,0.01,5.551115123125783e-19,0.01,-0.0,-5.800000000000001,1455.3522,55.091347 -0.2609406505679936,0.014676755674237764,0.2609406505679936,2.5302689898865084e-9,0.34966921296296294,-0.0,0.017242623865798834,7.21,2.5302689898865084e-9,7.209999997469731,-0.0,-4.27,1455.0768,58.70446 -0.25974172338458185,0.014723854205218429,0.25974172338458185,5.2328925692624045e-9,0.3488465277777778,-0.0,0.017301226520519984,6.7,5.2328925692624045e-9,6.699999994767107,-0.0,-4.1899999999999995,1454.8018,65.65011 -0.2585652168505238,0.0096557033998277,0.2585652168505238,0.0,0.3481105324074074,-0.0,0.01134802394977252,0.79,0.0,0.79,-0.0,-9.885,1454.5306,69.32338 -0.25741718982213513,0.005997564354601959,0.25741718982213513,0.0,0.3480079861111111,-0.0,0.007050024037209508,1.12,0.0,1.12,-0.0,-16.005,1454.2649,70.25154 -0.25629154715965935,0.003672936724455581,0.25629154715965935,0.0,0.34794849537037037,-0.0,0.004318245141437918,0.5,0.0,0.5,-0.0,-21.965,1454.0032,71.042816 -0.255177085776686,0.005752788366715861,0.255177085776686,0.0,0.34771435185185184,-0.0,0.006764722500574436,2.33,0.0,2.33,-0.0,-16.51,1453.7429,72.35978 -0.25406798985632667,0.005404261617396566,0.25406798985632667,0.0,0.3472057870370371,-0.0,0.006356026108823832,0.65,0.0,0.65,-0.0,-17.265,1453.4828,73.68914 -0.25297302188215703,0.003585213272866235,0.25297302188215703,0.0,0.3466476851851852,-0.0,0.004217366848357091,1.12,0.0,1.12,-0.0,-22.2,1453.2249,74.65065 -0.2518904959368908,0.0036891944315975106,0.2518904959368908,0.0,0.3466476851851852,-0.0,0.00434044714146194,8.32,0.0,8.32,-0.0,-21.86,1452.9688,79.40205 -0.25081311502451575,0.005706811376746671,0.25081311502451575,0.0,0.3461518518518519,-0.0,0.006715416687782532,6.84,0.0,6.84,-0.0,-16.545,1452.7128,87.07669 -0.24974034226389344,0.005414614861901212,0.24974034226389344,0.0,0.3461518518518519,-0.0,0.006372701136314575,0.01,0.0,0.01,-0.0,-17.195,1452.4568,90.395424 -0.2486782575715644,0.005617250271336793,0.2486782575715644,0.0,0.3456693287037037,-0.0,0.006612350459272169,0.0,0.0,0.0,-0.0,-16.72,1452.2023,90.41425 -0.24762777582162576,0.0038928207333585197,0.24762777582162576,0.0,0.3456693287037037,-0.0,0.004583234783400578,0.0,0.0,0.0,-0.0,-21.18,1451.9495,90.41461 -0.24659130820425054,0.0028923991626023126,0.24659130820425054,0.0,0.3461518518518519,-0.0,0.0034059703111781535,0.0,0.0,0.0,-0.0,-24.675,1451.699,90.419174 -0.2455662059736691,0.002656214417742276,0.2455662059736691,0.0,0.3461518518518519,-0.0,0.0031283849830160554,0.19,0.0,0.19,-0.0,-25.650000000000002,1451.4502,90.51415 -0.24454636490850912,0.004424151273332914,0.24454636490850912,0.0,0.3461518518518519,-0.0,0.005211483926645268,3.0,0.0,3.0,-0.0,-19.655,1451.2017,92.16408 -0.24352030596522678,0.009315910608855003,0.24352030596522678,0.0,0.3466476851851852,-0.0,0.01097569167921322,4.59,0.0,4.59,-0.0,-10.27,1450.9506,95.982124 -0.24250697877674693,0.0036660606540405635,0.24250697877674693,0.0,0.3472057870370371,-0.0,0.0043199704433873,4.99,0.0,4.99,-0.0,-21.935,1450.7015,100.91154 -0.24151366492817353,0.002625777099580424,0.24151366492817353,0.0,0.34771435185185184,-0.0,0.003094655944941905,0.0,0.0,0.0,-0.0,-25.825,1450.4564,103.3958 -0.24052736958274254,0.004065806043681166,0.24052736958274254,0.0,0.34794849537037037,-0.0,0.004792634975474593,0.0,0.0,0.0,-0.0,-20.725,1450.212,103.50954 -0.23954314352617928,0.005708059981792642,0.23954314352617928,0.0,0.34800000000000003,-0.0,0.006729604820421582,0.0,0.0,0.0,-0.0,-16.585,1449.9672,103.50581 -0.23854977916424144,0.01366770773045246,0.23854977916424144,1.1749101691549411e-13,0.3480079861111111,-0.0,0.016116511975117452,2.01,1.1749101691549411e-13,2.0099999999998825,-0.0,-5.140000000000001,1449.719,104.50185 -0.23755179385732106,0.011085087835694455,0.23755179385732106,0.0,0.3484641203703704,-0.0,0.013073429212494568,2.27,0.0,2.27,-0.0,-8.01,1449.4686,106.63116 -0.23656620389603092,0.012313976153844422,0.23656620389603092,0.0,0.3482361111111111,-0.0,0.014525232387685534,2.14,0.0,2.14,-0.0,-6.575,1449.2203,108.79332 -0.23560203934225998,0.0045664409294628285,0.23560203934225998,0.0,0.34921886574074074,-0.0,0.00538735657006417,0.0,0.0,0.0,-0.0,-19.36,1448.9764,109.90007 -0.23465571371565608,0.005756950867557175,0.23465571371565608,0.0,0.35015162037037034,-0.0,0.00679301301469175,5.19,0.0,5.19,-0.0,-16.544999999999998,1448.7361,112.54562 -0.23372131049459188,0.002835466857299464,0.23372131049459188,0.0,0.35120578703703703,-0.0,0.003346308184056573,6.68,0.0,6.68,-0.0,-25.045,1448.4978,118.381516 -0.23280062080126343,0.002019680675378947,0.23280062080126343,0.0,0.3519482638888889,-0.0,0.002383936866925784,0.0,0.0,0.0,-0.0,-28.89,1448.2621,121.62846 -0.23188592785577067,0.0035575308079495126,0.23188592785577067,0.0,0.35200787037037035,-0.0,0.004199825224379902,0.52,0.0,0.52,-0.0,-22.43,1448.027,121.897964 -0.23097105187031083,0.005879494542262775,0.23097105187031083,0.0,0.35284641203703704,-0.0,0.006942139747285153,0.97,0.0,0.97,-0.0,-16.37,1447.7909,122.63134 -0.23005179127288303,0.009669524330338734,0.23005179127288303,0.0,0.3541518518518519,-0.0,0.011419048497355748,7.72,0.0,7.72,-0.0,-10.03,1447.5527,127.14642 -0.22913525259056094,0.007874560478912218,0.22913525259056094,0.0,0.35571446759259256,-0.0,0.009300850451159892,4.7,0.0,4.7,-0.0,-12.765,1447.3143,133.35301 -0.2282363607495627,0.004589910361038955,0.2282363607495627,0.0,0.35600000000000004,-0.0,0.005422143246031049,0.0,0.0,0.0,-0.0,-19.515,1447.0796,135.70569 -0.22734982460007921,0.004600856458257368,0.22734982460007921,0.0,0.3564643518518519,-0.0,0.005435947158153348,7.05,0.0,7.05,-0.0,-19.5,1446.8472,139.30232 -0.2264690465615655,0.00542829177618034,0.2264690465615655,0.0,0.35815185185185183,-0.0,0.006414596062513314,4.72,0.0,4.72,-0.0,-17.535,1446.6154,145.16646 -0.22559490860617995,0.004254891684926906,0.22559490860617995,0.0,0.3599482638888889,-0.0,0.005028795568713801,0.0,0.0,0.0,-0.0,-20.555,1446.3844,147.5189 -0.22473103498212646,0.00317550062689992,0.22473103498212646,0.0,0.36000787037037035,-0.0,0.0037536733603233496,7.56,0.0,7.56,-0.0,-24.005,1446.1553,150.33989 -0.22387092700176484,0.005478824936745506,0.22387092700176484,0.0,0.36121863425925926,-0.0,0.006477396416908978,2.02,0.0,2.02,-0.0,-17.52,1445.9263,152.82541 -0.22301593430009728,0.004335159033832595,0.22301593430009728,0.0,0.3637142361111111,-0.0,0.005126095922981186,0.0,0.0,0.0,-0.0,-20.45,1445.6978,153.88818 -0.22217011047151455,0.004130895932369831,0.22217011047151455,0.0,0.36400011574074076,-0.0,0.00488533246767823,0.0,0.0,0.0,-0.0,-21.035,1445.4708,153.99193 -0.22132885177721692,0.004536462714036075,0.22132885177721692,0.0,0.36521898148148146,-0.0,0.00536581002659248,0.0,0.0,0.0,-0.0,-19.95,1445.2443,153.99457 -0.22048762373073877,0.004909066595589004,0.22048762373073877,0.0,0.36771435185185186,-0.0,0.005807446459985601,0.17,0.0,0.17,-0.0,-19.075,1445.0168,154.01265 -0.21964914405672673,0.009287410776325845,0.21964914405672673,0.0,0.3680083333333333,-0.0,0.010988776411513827,0.0,0.0,0.0,-0.0,-11.04,1444.7893,154.05818 -0.21881608932207705,0.007737815207009639,0.21881608932207705,0.0,0.3696696759259259,-0.0,0.009156747842633465,0.0,0.0,0.0,-0.0,-13.46,1444.5624,154.143 -0.21799243218746886,0.005999474570478324,0.21799243218746886,0.0,0.3719483796296296,-0.0,0.007100743639023809,0.65,0.0,0.65,-0.0,-16.745,1444.3372,154.31003 -0.2171763145504579,0.006953175840013758,0.2171763145504579,0.0,0.37211041666666667,-0.0,0.008230783684358372,5.65,0.0,5.65,-0.0,-14.9,1444.1132,157.50792 -0.21635794528756766,0.01076868032680331,0.21635794528756766,0.0,0.3746479166666667,-0.0,0.012749356658021484,4.21,0.0,4.21,-0.0,-9.315,1443.8877,162.42924 -0.2155364918215679,0.01138371092867938,0.2155364918215679,0.0,0.3760002314814815,-0.0,0.013479630242596312,1.92,0.0,1.92,-0.0,-8.620000000000001,1443.6605,165.48264 -0.21472386287529335,0.009616778206405874,0.21472386287529335,0.0,0.3772188657407407,-0.0,0.01138915722335749,0.0,0.0,0.0,-0.0,-10.895,1443.4349,166.45657 -0.21391429775268403,0.013012905266019862,0.21391429775268403,0.0,0.3799997685185186,-0.0,0.01541360180012536,0.0,0.0,0.0,-0.0,-6.955,1443.2094,166.48761 -0.2138163762851524,0.01973969513594451,0.2138163762851524,0.8499153014078026,0.3804640046296296,-5.393092164362219e-6,0.023381832037155065,0.85,0.849920694499967,7.930550003309166e-5,-0.0,-1.165,1443.182,166.75046 -0.2134796766266239,0.009802432464759495,0.2134796766266239,0.0,0.383714699074074,-0.0,0.01161181952917596,0.0,0.0,0.0,-0.0,-10.865,1443.0879,167.07695 -0.21269393077202067,0.00515699709397359,0.21269393077202067,0.0,0.38400833333333334,-0.0,0.006109836428238531,0.0,0.0,0.0,-0.0,-18.985,1442.8677,167.1187 -0.21191974025349794,0.0057127548416996375,0.21191974025349794,0.0,0.3866476851851852,-0.0,0.006769301182686442,0.0,0.0,0.0,-0.0,-17.815,1442.6499,167.09412 -0.2111479361370659,0.00713066545180363,0.2111479361370659,0.0,0.38799999999999996,-0.0,0.008450723876825422,0.0,0.0,0.0,-0.0,-15.095,1442.432,167.09863 -0.21037292266657304,0.010577057920451197,0.21037292266657304,0.0,0.3901519675925926,-0.0,0.01253703555663827,1.07,0.0,1.07,-0.0,-10.075000000000001,1442.2124,167.627 -0.22387458784167794,0.023521178735912453,0.22387458784167794,16.159117169915888,0.39200034722222227,1.9491171699172445,0.027808133628102548,14.21,14.209999999998644,1.3567591494734188e-12,-0.0,0.9050000000000002,1445.9272,171.32996 -0.24282492693734176,0.013452298879992174,0.24282492693734176,0.0,0.3936696759259259,-0.0,0.015850910477773223,7.43,0.0,7.43,-0.0,-7.055,1450.7798,177.0281 -0.2418055964813508,0.005618084074434746,0.2418055964813508,0.0,0.39600023148148145,-0.0,0.006620962826650295,0.0,0.0,0.0,-0.0,-18.38,1450.5286,180.7303 -0.24080826430535976,0.005215954850892217,0.24080826430535976,0.0,0.3972188657407407,-0.0,0.006148096082466999,0.0,0.0,0.0,-0.0,-19.32,1450.2817,180.74641 -0.23981749661741011,0.006777981899118011,0.23981749661741011,0.0,0.40000023148148145,-0.0,0.007990628944905752,0.0,0.0,0.0,-0.0,-16.18,1450.0355,180.74641 -0.23882494720081812,0.010087089741237107,0.23882494720081812,0.0,0.4012189814814815,-0.0,0.011893800023925984,0.0,0.0,0.0,-0.0,-11.135,1449.7878,180.77087 -0.237828727485681,0.012624930913619423,0.237828727485681,0.0,0.40399999999999997,-0.0,0.014888760499498622,7.79,0.0,7.79,-0.0,-8.25,1449.5382,184.81563 -0.23682940189551932,0.016758884462494805,0.23682940189551932,5.778911149612043e-10,0.40521898148148144,-0.0,0.01976741992476847,7.38,5.778911149612043e-10,7.379999999422108,-0.0,-4.42,1449.2867,191.92018 -0.23584006007113786,0.011632698382955187,0.23584006007113786,0.0,0.4080003472222223,-0.0,0.013723354137655533,0.0,0.0,0.0,-0.0,-9.47,1449.0367,195.30275 -0.24398516418204513,0.02308787669557244,0.24398516418204513,9.454142550713293,0.40966990740740744,-0.055857435876463045,0.02719922264321929,9.51,9.509999986589756,1.3410243508982234e-8,-0.0,-0.05500000000000016,1451.0645,198.00604 -0.2562753076945882,0.014881610004502433,0.2562753076945882,0.0,0.41200046296296294,-0.0,0.017496246782663306,8.53,0.0,8.53,-0.0,-6.33,1453.9994,203.5956 -0.25513536180380064,0.007372160690121717,0.25513536180380064,0.0,0.41464768518518513,-0.0,0.00866900590306339,0.0,0.0,0.0,-0.0,-15.61,1453.7332,207.59262 -0.25401865874567714,0.008892118622638532,0.25401865874567714,0.0,0.4159996527777778,-0.0,0.010458225946294255,0.1,0.0,0.1,-0.0,-13.270000000000001,1453.4712,207.68298 -0.25293527733929155,0.009441539035105894,0.25293527733929155,0.0,0.419205324074074,-0.0,0.011106362400380678,0.0,0.0,0.0,-0.0,-12.594999999999999,1453.216,207.70526 -0.2518132766181298,0.01872781371474361,0.2518132766181298,-2.658113143941334e-15,0.41999976851851856,-2.658113143941334e-15,0.02203410837164304,0.0,0.0,0.0,-0.0,-3.4050000000000002,1452.9504,207.70438 -0.261588435071876,0.030871333821923735,0.261588435071876,9.31882571946975,0.42400011574074076,9.31882571946975,0.03626473360603784,0.0,0.0,0.0,-0.0,3.66,1455.2249,205.15117 -0.3088023684749885,0.032604169461478344,0.3088023684749885,11.231128145789754,0.42400011574074076,11.231128145789754,0.03804126497238668,0.0,0.0,0.0,-0.0,4.375,1465.1342,194.89508 -0.37583573731643966,0.0343432281161181,0.37583573731643966,13.081893546749754,0.428,12.621893546749753,0.039752016234759865,0.46,0.46,0.0,-0.0,4.895,1476.8662,182.9308 -0.4745102300224804,0.034739135831814934,0.4745102300224804,15.682011779469754,0.42846388888888887,12.662011779469754,0.03983474900531594,3.02,3.02,0.0,-0.0,4.91,1490.7888,170.29568 -0.6110657574770495,0.03573454463946021,0.6110657574770495,15.693194106669754,0.43200000000000005,13.063194106669755,0.04056516522259494,2.63,2.63,0.0,-0.0,5.0600000000000005,1505.8933,157.42715 -0.7824733735649475,0.03709801575089428,0.7824733735649475,15.406031691949753,0.4336695601851852,14.026031691949754,0.04170402041790628,1.38,1.38,0.0,-0.0,5.42,1520.6594,143.9383 -0.9580868782809934,0.03465541695167197,0.9580868782809934,10.749709353149752,0.43600011574074077,10.749709353149752,0.038650809081753223,0.0,0.0,0.0,-0.0,4.194999999999999,1532.7515,131.62863 -1.1021415461174624,0.03286808122289355,1.1021415461174624,8.061787760909102,0.4399488425925926,8.061787760909102,0.03645843820092674,0.0,0.0,0.0,-0.0,3.1900000000000004,1541.1166,122.21098 -1.2219182509122737,0.03184322596267235,1.2219182509122737,6.64427687136175,0.4400003472222222,6.64427687136175,0.0351809846574979,0.0,0.0,0.0,-0.0,2.66,1547.2777,114.806595 -1.3429530278346244,0.027482669543680407,1.3429530278346244,7.182083834190188,0.4440001157407408,0.3120838344180158,0.030253075650133052,6.87,6.869999999772172,2.2782885744643267e-10,-0.0,0.32000000000000006,1552.9182,111.28145 -1.461521281519454,0.026515044660171207,1.461521281519454,5.463495557386208,0.4440081018518519,-0.01650439094881751,0.029093248007672066,5.48,5.479999948335026,5.1664975135867766e-8,-0.0,-0.24499999999999988,1557.971,111.0514 -1.4795137603379696,0.021591349883968162,1.4795137603379696,5.726448584739254e-8,0.4480001157407407,-7.224469893237963e-15,0.02367968921273132,0.01,5.726449307186243e-8,0.00999994273550693,-0.0,-3.3,1558.7017,111.41046 -1.4696426275960106,0.024754639652147196,1.4696426275960106,3.5053699891537295,0.4501516203703704,-4.563402487048286e-7,0.027155900902141712,3.51,3.5053704454939782,0.004629554506021664,-0.0,-1.4299999999999997,1558.3019,112.11616 -1.4515239126617128,0.021544246173563788,1.4515239126617128,-1.612683960634006e-15,0.452,-1.612683960634006e-15,0.023645332734954838,0.0,0.0,0.0,-0.0,-3.445,1557.561,113.14043 -1.4166428700562173,0.016305393576688202,1.4166428700562173,0.0,0.45599953703703705,-0.0,0.01791227056005084,0.0,0.0,0.0,-0.0,-7.390000000000001,1556.1084,113.1477 -1.3843618169940255,0.016224869724444688,1.3843618169940255,0.0,0.45599953703703705,-0.0,0.01783959269490632,0.0,0.0,0.0,-0.0,-7.444999999999999,1554.7318,113.14772 -1.3560610653715786,0.018520353529076314,1.3560610653715786,1.5987211554602254e-16,0.46,-0.0,0.020379695636018692,1.44,1.5987211554602254e-16,1.4399999999999997,-0.0,-5.75,1553.4983,113.14781 -1.330395852109165,0.024829944496463457,1.330395852109165,0.6123271881080377,0.4604638888888889,-5.4837507109570656e-8,0.027342819507084486,0.62,0.6123272429455447,0.007672757054455248,-0.0,-1.655,1552.3572,113.147934 -1.306003658589385,0.028217752529327175,1.306003658589385,-0.031030981979594467,0.463999537037037,-0.07103098196497207,0.0310956218213143,0.04,0.0399999999853776,1.4622398847308206e-11,-0.0,0.07999999999999996,1551.2521,113.14807 -1.2816263618955233,0.025655022958423482,1.2816263618955233,-6.044862584837434e-7,0.46799976851851854,-6.044862584837434e-7,0.028292047274941782,0.0,0.0,0.0,-0.0,-1.4,1550.1268,113.14818 -1.2560957907872443,0.026024010001540154,1.2560957907872443,-4.481358138150463e-6,0.46799976851851854,-4.481358138150463e-6,0.028721226426838137,0.0,0.0,0.0,-0.0,-1.185,1548.9252,113.14823 -1.2297584445352356,0.024471372570415536,1.2297584445352356,-4.0748773639922253e-10,0.4719996527777777,-4.0748773639922253e-10,0.027029752250098942,0.0,0.0,0.0,-0.0,-2.17,1547.6597,113.14823 -1.2045222513665381,0.019496307690446742,1.2045222513665381,0.0,0.4719996527777777,-0.0,0.021551808723998745,0.0,0.0,0.0,-0.0,-5.335,1546.4214,113.14823 -1.180320124926833,0.019574973193029647,1.180320124926833,0.0,0.4760001157407408,-0.0,0.021655742747083834,0.0,0.0,0.0,-0.0,-5.385,1545.2092,113.13216 -1.1570346396213396,0.0225266632805849,1.1570346396213396,1.5584833918181186e-7,0.4800005787037037,-5.516657123411232e-16,0.02494039614510595,0.3,1.5584833973347756e-7,0.29999984415166026,-0.0,-3.5400000000000005,1544.0193,113.2061 -1.1346212775550282,0.022947367500300426,1.1346212775550282,2.3266946456380832e-5,0.4800005787037037,-1.0231590904708206e-14,0.02542541583834019,3.01,2.3266946466612424e-5,3.009976733053533,-0.0,-3.27,1542.8511,114.76306 -1.1131220710724568,0.01629146663100087,1.1131220710724568,0.0,0.4840002314814815,-0.0,0.018064131415464223,0.08,0.0,0.08,-0.0,-8.08,1541.7086,115.81709 -1.0924611299036238,0.015801694503087167,1.0924611299036238,0.0,0.4840002314814815,-0.0,0.017533792640467588,0.0,0.0,0.0,-0.0,-8.48,1540.5897,115.92566 -1.0725760475361028,0.013565342708863143,1.0725760475361028,0.0,0.48800034722222224,-0.0,0.01506303010122997,21.88,0.0,21.88,-0.0,-10.605,1539.4927,126.900246 -1.0533909093828755,0.01637235742085743,1.0533909093828755,0.0,0.4919994212962963,-0.0,0.018192692131528174,17.01,0.0,17.01,-0.0,-8.205,1538.4148,145.85927 -1.034809071140095,0.021183718291627785,1.034809071140095,2.2973256630365314e-11,0.4919994212962963,-0.0,0.023555270524585947,3.95,2.2973256630365314e-11,3.949999999977027,-0.0,-4.68,1537.3519,155.77042 -1.0243183790595831,0.027364087740494973,1.0243183790595831,2.599699235012969,0.4959997685185185,-4.481358138150463e-6,0.030439591251028523,2.6,2.599703716371107,0.00029628362889265735,-0.0,-1.185,1536.7434,158.77179 -1.0288004026808233,0.028262015462418206,1.0288004026808233,-0.0002950772810922297,0.4959997685185185,-0.0002950772810922297,0.03143310551637259,0.0,0.0,0.0,-0.0,-0.7250000000000001,1537.0042,158.75864 -1.0126250511703652,0.023781267429805172,1.0126250511703652,-9.235155925641193e-15,0.4999997685185186,-9.235155925641193e-15,0.026465899373147167,0.0,0.0,0.0,-0.0,-3.28,1536.0577,158.75879 -0.9959484641642417,0.023248413657100814,0.9959484641642417,0.0,0.503999537037037,-0.0,0.025889607203085613,0.0,0.0,0.0,-0.0,-3.7,1535.066,158.75885 -0.9792382230302252,0.024068503374174145,0.9792382230302252,-1.8571379351898182e-14,0.503999537037037,-1.8571379351898182e-14,0.02682052056219239,0.0,0.0,0.0,-0.0,-3.2049999999999996,1534.0555,158.75885 -0.9629382480111177,0.022912992172329893,0.9629382480111177,0.0,0.5079996527777778,-0.0,0.025549582620867897,0.0,0.0,0.0,-0.0,-3.9949999999999997,1533.0531,158.75883 -0.9474536331034936,0.024436178352935118,0.9474536331034936,-6.003002407806104e-14,0.5079996527777778,-6.003002407806104e-14,0.027265259639627504,0.0,0.0,0.0,-0.0,-3.085,1532.085,158.70956 -0.93290234240353,0.03059559856697529,0.93290234240353,-0.07177305035779433,0.511999537037037,-0.07177305035779433,0.034158390347634536,0.0,0.0,0.0,-0.0,0.01499999999999968,1531.1606,158.6423 -0.9192488420605601,0.026210508444961506,0.9192488420605601,0.0425624078163228,0.5159998842592592,-1.172076969693149e-10,0.029279503056979076,0.38,0.04256240793353049,0.3374375920664695,-0.0,-2.3,1530.2802,158.76791 -0.9706214288931341,0.038437530349468535,0.9706214288931341,11.322024226349265,0.5159998842592592,8.142024226349266,0.042847259438806955,3.18,3.18,0.0,-0.0,3.22,1533.5277,156.0985 -1.3237716649520521,0.03847041264999287,1.3237716649520521,27.573150548902447,0.520000462962963,7.3931505489024465,0.042371886107620174,20.18,20.18,0.0,-0.0,2.9400000000000004,1552.0591,148.43071 -1.9902511745714662,0.0358589689723277,1.9902511745714662,23.06984502046813,0.520000462962963,4.00984502046813,0.03888547472170998,19.06,19.06,1.0580425424677741e-15,-0.0,1.6749999999999998,1576.4115,142.65356 -2.320528276811673,0.031626198944689925,2.320528276811673,1.5424149263478315,0.5240002314814816,-0.007585033929186952,0.0340971346988177,1.55,1.5499999602770185,3.972298157628451e-8,-0.0,-0.34499999999999975,1585.5806,141.22368 -2.5487734345820123,0.040277276466070405,2.5487734345820123,15.790487200986535,0.5279998842592593,7.620487200986535,0.043271213167248856,8.17,8.17,0.0,-0.0,3.025,1591.1833,138.02013 -3.005843212533707,0.04340037991766633,3.005843212533707,10.348527025949755,0.5279998842592593,10.348527025949755,0.04633959084702195,0.0,0.0,0.0,-0.0,4.045,1601.0339,129.15047 -3.714412683663107,0.0549855333971093,3.714412683663107,21.531638410989757,0.5319998842592593,19.321638410989756,0.05824943587758522,2.21,2.21,0.0,-0.0,7.4,1613.6744,114.30604 -5.214213265490953,0.0628919350924137,5.214213265490953,27.79653573370976,0.5319998842592593,24.37653573370976,0.06579923239844096,3.42,3.42,0.0,-0.0,9.290000000000001,1633.9296,92.41164 -6.604429916338202,0.04416733430905367,6.604429916338202,12.672080230989746,0.5359994212962963,9.292080230989745,0.04581328573812516,3.38,3.38,0.0,-0.0,3.65,1648.0446,75.6467 -6.702935795539462,0.037557713307942206,6.702935795539462,2.61893455365174,0.5395353009259259,2.61893455365174,0.03893645994918177,0.0,0.0,0.0,-0.0,1.1549999999999998,1648.9287,69.660835 -6.897394833048491,0.049729607431854915,6.897394833048491,14.071713085949755,0.54,13.691713085949754,0.0515018419966045,0.38,0.38,0.0,-0.0,5.295,1650.6366,61.418835 -8.802705663681873,0.0695211214699863,8.802705663681873,30.390493418109752,0.5439997685185185,26.850493418109753,0.07136885367063121,3.54,3.54,0.0,-0.0,10.215,1665.2032,41.10656 -11.546106526668618,0.061364081429494524,11.546106526668618,20.220298843383787,0.5439997685185185,17.64029884338379,0.06238801832063486,2.58,2.58,0.0,-0.0,8.115,1681.4047,17.640299 -11.66962786791454,0.05334542659471495,11.66962786791454,6.473025588989258,0.5479999999999999,6.443025588989258,0.054215071197107396,0.03,0.03,0.0,-0.0,5.85,1682.0402,6.4430256 -10.377788112165465,0.04481379142485688,10.377788112165465,2.366014242046658,0.5498481481481481,2.366014242046658,0.04573485880801567,0.0,0.0,0.0,-0.0,3.245,1675.0337,2.3660142 -9.01421441412122,0.03534866856273421,9.01421441412122,-0.0213407524892017,0.5520004629629629,-0.0213407524892017,0.036257291258834666,0.0,0.0,0.0,-0.0,-0.2100000000000004,1666.6212,1.0458322 -7.909332522412806,0.041629151053854875,7.909332522412806,0.7286917572165688,0.5559922453703704,0.4986917572165688,0.042900220059709955,0.23,0.23,0.0,-0.0,2.135,1658.8123,0.50198585 -7.056571852301075,0.025920138815192485,7.056571852301075,4.188263735827036e-11,0.5560002314814815,-0.0,0.026821725016291965,2.52,4.188263735827036e-11,2.5199999999581175,-0.0,-4.575,1651.9991,1.1791388 -6.308351547255833,0.024334894147236233,6.308351547255833,0.0,0.56,-0.0,0.025283787645230822,0.0,0.0,0.0,-0.0,-5.49,1645.3054,2.438619 -5.732126453743273,0.03952885566218281,5.732126453743273,2.2493507658705334,0.5600517361111111,2.1693507658705333,0.041213501789761395,0.08,0.07999999999999996,3.552713678800501e-17,-0.0,1.4399999999999995,1639.585,2.1693578 -5.572148448963136,0.0474585374987249,5.572148448963136,5.897048473610477,0.5639996527777777,0.7970484736104775,0.049532200111243166,5.1,5.1,0.0,-0.0,4.055,1637.8945,0.7973231 -5.365943581442726,0.04028678479515418,5.365943581442726,0.7920154608536074,0.5663305555555556,0.28201546085360746,0.042104973878802826,0.51,0.5099999999999999,5.662137425588298e-17,-0.0,1.59,1635.6426,0.29654935 -4.95379694100044,0.038454116695492466,4.95379694100044,0.0962116524289774,0.5679997685185185,0.0962116524289774,0.04030720932651357,0.0,0.0,0.0,-0.0,0.9100000000000001,1630.8699,0.12410489 -4.572399733386126,0.03001988126733683,4.572399733386126,-2.1961830762466793e-12,0.5715351851851852,-2.1961830762466793e-12,0.03155911676014807,0.0,0.0,0.0,-0.0,-2.685,1626.0853,0.11635857 -4.245110968024611,0.0310628028083705,4.245110968024611,-2.9598474737738996e-10,0.5719994212962963,-2.9598474737738996e-10,0.03274483002823001,0.0,0.0,0.0,-0.0,-2.175,1621.6499,0.11635775 -3.9614895887019754,0.046756605544352375,3.9614895887019754,0.05349298673044104,0.5760005787037037,0.05349298673044104,0.04941427327676528,0.0,0.0,0.0,-0.0,3.7049999999999996,1617.5204,0.07801164 -3.957669437648104,0.04820084489525836,3.957669437648104,7.624714223663661,0.5760005787037037,0.024714223663661543,0.050942418484311476,7.6,7.6,0.0,-0.0,4.16,1617.4628,0.04109951 -4.1484454246602676,0.04605016715552489,4.1484454246602676,6.3528288884096,0.5800003472222222,0.012828888409600378,0.04858496235832569,6.34,6.34,0.0,-0.0,3.3499999999999996,1620.2743,0.023019848 -4.079358846589829,0.05391045203016681,4.079358846589829,0.007084208719223955,0.5807946759259259,0.007084208719223955,0.056913138953702466,0.0,0.0,0.0,-0.0,5.705,1619.2714,0.013286993 -3.8147723592822698,0.055992627999341606,3.8147723592822698,0.00405682764400207,0.5840005787037037,0.00405682764400207,0.05925784300850494,0.0,0.0,0.0,-0.0,6.234999999999999,1615.2666,0.0078089144 -3.6501734482876764,0.051287257079464785,3.6501734482876764,0.0023609314506249897,0.5853530092592593,0.0023609314506249897,0.05436673440920472,0.0,0.0,0.0,-0.0,4.895,1612.6326,0.0046153734 -4.043115465777747,0.0502394338691309,4.043115465777747,14.74132415802891,0.5880002314814815,0.0013241580289092385,0.053055115909272504,14.74,14.74,0.0,-0.0,4.46,1618.7384,0.0026141491 -4.640199257289554,0.05437000213209162,4.640199257289554,11.200777484449027,0.5903311342592593,0.0007774844490280401,0.05712688094110045,11.2,11.2,0.0,-0.0,5.515,1626.9644,0.0015430639 -4.733680679138583,0.05474413259288559,4.733680679138583,0.0004653343706684574,0.5920008101851852,0.0004653343706684574,0.05747790027253237,0.0,0.0,0.0,-0.0,5.5649999999999995,1628.1555,0.0009263779 -4.405190435880975,0.0651245441363547,4.405190435880975,0.26027593762457735,0.5943310185185184,0.00027593762457733833,0.06855753380811624,0.26,0.26,0.0,-0.0,8.205,1623.8605,0.00055036077 -4.105860531475569,0.06446856945500776,4.105860531475569,0.00016475330262975287,0.5959997685185184,0.00016475330262975287,0.06804306875954423,0.0,0.0,0.0,-0.0,8.045,1619.6581,0.0003289655 -3.8261816063013026,0.06680452666225775,3.8261816063013026,9.499351772279213e-5,0.5987809027777777,9.499351772279213e-5,0.07069243320052034,0.0,0.0,0.0,-0.0,8.565000000000001,1615.445,0.0001898069 -3.551798307984464,0.09174687106731788,3.551798307984464,3.766242696443388e-5,0.5999998842592592,3.766242696443388e-5,0.09735419259178006,0.0,0.0,0.0,-0.0,13.61,1611.001,7.5296506e-5 -3.344572253252056,0.09109053040018229,3.344572253252056,0.29000007185823323,0.6027810185185185,7.185823326323167e-8,0.096873619341626,0.29,0.29,0.0,-0.0,13.455,1607.4109,1.4371636e-7 -3.253861275096542,0.05472313242777549,3.253861275096542,3.199992597989157,0.6039996527777778,-7.402010843152747e-6,0.05825686834383273,3.2,3.2,0.0,-0.0,5.465000000000001,1605.7688,-1.4805118e-5 -3.1359722954560896,0.06311006448599192,3.1359722954560896,-4.29492153016577e-6,0.6063304398148148,-4.29492153016577e-6,0.06727772109954581,0.0,0.0,0.0,-0.0,7.6049999999999995,1603.565,-8.590212e-6 -2.9742274070154813,0.08106453197485565,2.9742274070154813,-2.513312250116272e-6,0.6079995370370371,-2.513312250116272e-6,0.08658863009137327,0.0,0.0,0.0,-0.0,11.515,1600.4025,-5.026751e-6 -2.8139488113472435,0.07887771835575087,2.8139488113472435,-1.3302841734084794e-6,0.6098476851851852,-1.3302841734084794e-6,0.08442731884526457,0.0,0.0,0.0,-0.0,11.065000000000001,1597.0942,-2.6606037e-6 -2.827486558008313,0.08027486712482179,2.827486558008313,6.659999383517653,0.6120002314814815,-6.164823469127566e-7,0.08590734953959576,6.66,6.66,0.0,-0.0,11.285,1597.3809,-1.2329723e-6 -3.2524582115529044,0.08877088522006432,3.2524582115529044,15.089999645459702,0.6133524305555556,-3.5454029822815237e-7,0.09450476420092001,15.09,15.09,0.0,-0.0,12.775,1605.743,-7.090831e-7 -4.207248750685326,0.08694780992935564,4.207248750685326,23.37999979517195,0.6159914351851852,-2.0482804752935856e-7,0.09168621812851148,23.38,23.38,0.0,-0.0,12.219999999999999,1621.1149,-4.0965693e-7 -5.02210622710595,0.06931478496004177,5.02210622710595,8.08999987935357,0.6162851851851852,-1.2064642984071522e-7,0.07261862637492959,8.09,8.09,0.0,-0.0,8.535,1631.6877,-2.4129315e-7 -5.020340890598536,0.0766733119941515,5.020340890598536,1.869999931249737,0.6195356481481481,-6.875026306754675e-8,0.08032892617431,1.87,1.87,0.0,-0.0,10.03,1631.6667,-1.3750062e-7 -5.1930574124435145,0.10576030384342837,5.1930574124435145,12.009999959181027,0.6199998842592592,-4.081897241580795e-8,0.110665716306752,12.01,12.01,0.0,-0.0,15.165,1633.6868,-8.163798e-8 -5.825951796516024,0.058144143063434954,5.825951796516024,13.049999975869536,0.6227818287037037,-2.413046424375648e-8,0.06058630899088172,13.05,13.05,0.0,-0.0,5.595,1640.5546,-4.826094e-8 -5.871932315038988,0.043586127236393685,5.871932315038988,2.049999985904945,0.6240006944444445,-1.4095050235440799e-8,0.045403835125385275,2.05,2.049999999999995,4.893307981035377e-15,-0.0,1.2750000000000001,1641.024,-2.8190579e-8 -5.446177661682922,0.05069141772075759,5.446177661682922,-8.32445421020916e-9,0.6253526620370371,-8.32445421020916e-9,0.05295048609593039,0.0,0.0,0.0,-0.0,3.51,1636.5289,-1.664891e-8 -4.996150770875431,0.06548050209934919,4.996150770875431,-4.814209243746015e-9,0.6278895833333333,-4.814209243746015e-9,0.0686145977685802,0.0,0.0,0.0,-0.0,7.37,1631.3783,-9.628419e-9 -4.609014312162862,0.06969418780580315,4.609014312162862,-2.7943382382087893e-9,0.6280518518518519,-2.7943382382087893e-9,0.07324622300983467,0.0,0.0,0.0,-0.0,8.375,1626.5616,-5.5886766e-9 -4.300622939640919,0.08347484485514572,4.300622939640919,0.8799999987294795,0.6303303240740741,-1.2705204504696903e-9,0.08795286333720848,0.88,0.88,0.0,-0.0,11.19,1622.4258,-2.541041e-9 -4.033952500591256,0.07218525331576528,4.033952500591256,-3.0859431581458137e-10,0.6319916666666667,-3.0859431581458137e-10,0.07623727598607893,0.0,0.0,0.0,-0.0,8.9,1618.6029,-6.1718863e-10 -3.801384123111863,0.0881950996597993,3.801384123111863,-8.622763606805875e-11,0.6322856481481481,-8.622763606805875e-11,0.09335033879933939,0.0,0.0,0.0,-0.0,12.09,1615.0566,-1.7245527e-10 -3.7729588199580366,0.10389431876628209,3.7729588199580366,4.929999999958059,0.6347809027777778,-4.194087783643941e-11,0.10999774792625483,4.93,4.93,0.0,-0.0,14.68,1614.6084,-8.3881756e-11 -3.879037036152534,0.12417167622557061,3.879037036152534,6.179999999986364,0.6360001157407408,-1.3634874477614326e-11,0.13133164050522556,6.18,6.18,0.0,-0.0,17.58,1616.2643,-2.7269749e-11 -4.001693607976248,0.12267115096850806,4.001693607976248,5.519999999994279,0.6362856481481481,-5.720632734551849e-12,0.1295955231535278,5.52,5.52,0.0,-0.0,17.35,1618.1234,-1.14412655e-11 -4.151982921334233,0.12199710929725081,4.151982921334233,6.909999999996896,0.6387810185185185,-3.1046168239436766e-12,0.1287083005866134,6.91,6.91,0.0,-0.0,17.17,1620.3252,-6.2092336e-12 -4.405100392923421,0.12378597813239302,4.405100392923421,9.009999999998342,0.6399917824074074,-1.6580816580571833e-12,0.13031135761254975,9.01,9.01,0.0,-0.0,17.345,1623.8593,-3.3161633e-12 -4.699792006072749,0.1258864277949766,4.699792006072749,6.909999999999136,0.6400512731481481,-8.643859824882196e-13,0.13220768262283492,6.91,6.91,0.0,-0.0,17.585,1627.7264,-1.728772e-12 -4.850919027648023,0.0982734561261755,4.850919027648023,6.569999999999749,0.6418483796296296,-2.510522443138705e-13,0.10308844694681069,6.57,6.57,0.0,-0.0,13.445,1629.6166,-5.021045e-13 -4.738627613999708,0.0736324867148039,4.738627613999708,4.6700629610196784e-14,0.6435354166666667,4.6700629610196784e-14,0.07730652379128009,0.0,0.0,0.0,-0.0,8.835,1628.2179,9.340126e-14 -4.384851599336693,0.08454317207424354,4.384851599336693,3.6810598379147954e-14,0.6439998842592592,3.6810598379147954e-14,0.0890149491927316,0.0,0.0,0.0,-0.0,11.040000000000001,1623.5841,7.36212e-14 -4.091216539191395,0.11395482241147614,4.091216539191395,0.6300000000000178,0.6442856481481481,1.7778455845086608e-14,0.1202889645600331,0.63,0.63,0.0,-0.0,15.905000000000001,1619.4447,3.555691e-14 -3.9755879763103614,0.12833592647537062,3.9755879763103614,4.170000000000008,0.6458482638888889,8.431515881801681e-15,0.13561281433982747,4.17,4.17,0.0,-0.0,17.86,1617.7325,1.6863032e-14 -4.0733263280476795,0.12990482066220785,4.0733263280476795,4.590721638958282e-15,0.6471538194444444,4.590721638958282e-15,0.13714770279794006,0.0,0.0,0.0,-0.0,18.015,1619.183,9.181443e-15 -4.231665324856522,0.1369542248445024,4.231665324856522,8.580000000000002,0.6479927083333333,1.9479642322063523e-15,0.14438706064278267,8.58,8.58,0.0,-0.0,18.86,1621.4604,3.8959285e-15 -4.249434403206325,0.09798164447543978,4.249434403206325,2.210000000000001,0.6480521990740741,8.962519142368875e-16,0.10328340443349161,2.21,2.21,0.0,-0.0,13.32,1621.7107,1.7925038e-15 -4.086151933451741,0.08689886672603446,4.086151933451741,0.08000000000000049,0.6487947916666666,4.914786915456934e-16,0.09173330256598286,0.08,0.08,0.0,-0.0,11.4,1619.3707,9.829574e-16 -4.019236343303836,0.09464628999123013,4.019236343303836,7.2,0.6498487268518519,2.476178795613989e-16,0.09997261380274915,7.2,7.2,0.0,-0.0,12.75,1618.3846,4.9523576e-16 -4.100090518426584,0.08825017643494601,4.100090518426584,5.47,0.6507814814814814,1.4293645250713876e-16,0.09314809152090829,5.47,5.47,0.0,-0.0,11.594999999999999,1619.5741,2.858729e-16 -3.965767347781246,0.08841021807839873,3.965767347781246,0.1700000000000001,0.6515357638888889,7.598492356568448e-17,0.09343177402584432,0.17,0.17,0.0,-0.0,11.625,1617.5848,1.5196985e-16 -3.7250725094431307,0.09519360733627968,3.7250725094431307,4.3060435268554573e-17,0.6519921296296297,4.3060435268554573e-17,0.10083353855468641,0.0,0.0,0.0,-0.0,12.834999999999999,1613.8456,8.612087e-17 -3.4803192001838386,0.10606887278373535,3.4803192001838386,2.125599898940983e-17,0.6520001157407407,2.125599898940983e-17,0.11263640351692829,0.0,0.0,0.0,-0.0,14.629999999999999,1609.7869,4.2511998e-17 -3.285406035077666,0.11962374682993053,3.285406035077666,8.09372737453741e-18,0.6520517361111111,8.09372737453741e-18,0.12730274966060767,0.0,0.0,0.0,-0.0,16.645,1606.345,1.6187455e-17 -3.273929186535827,0.12370763845781159,3.273929186535827,2.97,0.6522856481481482,4.3113195329565025e-18,0.13166592804187427,2.97,2.97,0.0,-0.0,17.2,1606.136,8.622639e-18 -3.7064113214696155,0.12546029418226987,3.7064113214696155,15.91,0.6527943287037037,2.4469435609729807e-18,0.13291813669101277,15.91,15.91,0.0,-0.0,17.345,1613.5457,4.893887e-18 -4.191369187825882,0.13722412524003996,4.191369187825882,8.15,0.653352662037037,1.4499914689213805e-18,0.14472261018702054,8.15,8.15,0.0,-0.0,18.759999999999998,1620.889,2.899983e-18 -4.173612565855327,0.11552111823464843,4.173612565855327,8.5546372715380565e-19,0.653848611111111,8.5546372715380565e-19,0.12185272275556763,0.0,0.0,0.0,-0.0,15.875,1620.6355,1.7109275e-18 -3.8983522145144436,0.13700213058066182,3.8983522145144436,0.26,0.653848611111111,4.630470215107531e-19,0.14487533337206854,0.26,0.26,0.0,-0.0,18.765,1616.5609,9.26094e-19 -3.7239381665134834,0.14066246803673912,3.7239381665134834,2.35,0.653848611111111,1.704939700648493e-19,0.1489979699739473,2.35,2.35,0.0,-0.0,19.240000000000002,1613.8274,3.4098794e-19 -3.7261919648972737,0.11937475481405552,3.7261919648972737,4.82,0.6543310185185185,3.460747260806847e-20,0.12644593939900745,4.82,4.82,0.0,-0.0,16.475,1613.8635,6.9214945e-20 -4.251962785789013,0.10674757646691435,4.251962785789013,18.0,0.6543310185185185,1.9904426077230764e-20,0.11252119390555752,18.0,18.0,0.0,-0.0,14.555,1621.7462,3.9808852e-20 -4.957251029384842,0.10593218598356592,4.957251029384842,9.64,0.653848611111111,1.1814803250441024e-20,0.11103419301480627,9.64,9.64,0.0,-0.0,14.35,1630.9115,2.3629607e-20 -5.003427246801004,0.09384174803734809,5.003427246801004,2.0,0.653848611111111,7.067510317422629e-21,0.09832806048811808,2.0,2.0,0.0,-0.0,12.385,1631.4652,1.413502e-20 -5.174303127881825,0.09922269224508949,5.174303127881825,11.95,0.653352662037037,4.187868422926795e-21,0.1038386081071596,11.95,11.95,0.0,-0.0,13.275,1633.4707,8.375737e-21 -5.742387738775884,0.09941579358091794,5.742387738775884,11.39,0.653352662037037,2.4538621852424923e-21,0.1036459572806176,11.39,11.39,0.0,-0.0,13.245000000000001,1639.6918,4.9077244e-21 -5.627088072219702,0.1042801374446937,5.627088072219702,1.460310227176727e-21,0.6527943287037037,1.460310227176727e-21,0.10879765306970224,0.0,0.0,0.0,-0.0,14.045000000000002,1638.4805,2.9206205e-21 -5.141546115345262,0.11574429880316602,5.141546115345262,8.736380322784607e-22,0.6522856481481482,8.736380322784607e-22,0.12115694369424722,0.0,0.0,0.0,-0.0,15.82,1633.0914,1.747276e-21 -4.724594126334103,0.130394226915966,4.724594126334103,5.170729031185634e-22,0.6520517361111111,5.170729031185634e-22,0.1369153963451872,0.0,0.0,0.0,-0.0,17.86,1628.0408,1.0341458e-21 -4.368203486232353,0.14697602143398,4.368203486232353,2.108210195710746e-22,0.6519921296296297,2.108210195710746e-22,0.15477174094115104,0.0,0.0,0.0,-0.0,19.935000000000002,1623.3569,4.2164204e-22 -4.060300289362212,0.1449329297794291,4.060300289362212,-1.3486874693170104e-22,0.6518894675925926,-1.3486874693170104e-22,0.1530317872335125,0.0,0.0,0.0,-0.0,19.745,1618.9917,-2.697375e-22 -3.7920480759974247,0.14533971132840323,3.7920480759974247,-4.257020600967193e-22,0.6511538194444445,-4.257020600967193e-22,0.153849194536897,0.0,0.0,0.0,-0.0,19.855,1614.9098,-8.514041e-22 -3.5562732968141337,0.1666744830676948,3.5562732968141337,-5.673565885351315e-22,0.6503311342592593,-5.673565885351315e-22,0.1768529235137918,0.0,0.0,0.0,-0.0,22.275,1611.0762,-1.1347132e-21 -3.3475200577130604,0.17832027260511157,3.3475200577130604,-4.659761734768638e-22,0.6493528935185184,-4.659761734768638e-22,0.1896351326281562,0.0,0.0,0.0,-0.0,23.520000000000003,1607.4635,-9.319523e-22 -3.355624490491844,0.16394134118417505,3.355624490491844,1.7,0.6482863425925927,-2.629283494521219e-22,0.1743281615689005,1.7,1.7,0.0,-0.0,22.08,1607.6079,-5.258567e-22 -3.7409284657091533,0.1724171770587615,3.7409284657091533,17.97,0.6480008101851852,-1.3394822829684227e-22,0.1826036681118416,17.97,17.97,0.0,-0.0,22.895,1614.0992,-2.6789646e-22 -4.396177272533381,0.14828385725942128,4.396177272533381,12.44,0.647890162037037,-7.616367474019829e-23,0.15611228430257887,12.44,12.44,0.0,-0.0,20.19,1623.7382,-1.5232735e-22 -4.634758200290047,0.15014988978356889,4.634758200290047,4.41,0.64678125,-3.792544727336089e-23,0.1577701667682491,4.41,4.41,0.0,-0.0,20.4,1626.8943,-7.5850895e-23 -4.477460785752899,0.1328470988744876,4.477460785752899,0.59,0.645352199074074,-1.7786421586469186e-23,0.1397663869196534,0.59,0.59,0.0,-0.0,18.38,1624.8323,-3.5572843e-23 -4.210655644971838,0.14490481381668346,4.210655644971838,0.9,0.6440515046296297,-1.0363159215666227e-23,0.15279715754828557,0.9,0.9,0.0,-0.0,19.925,1621.1632,-2.0726318e-23 -4.002683464874753,0.13361491758762725,4.002683464874753,1.61,0.6438894675925926,-5.831000670586354e-24,0.1411557399450325,1.61,1.61,0.0,-0.0,18.585,1618.1382,-1.1662001e-23 -3.9685974171288447,0.12552635660756473,3.9685974171288447,-3.2509275420672248e-24,0.6427809027777778,-3.2509275420672248e-24,0.1326525548979788,0.0,0.0,0.0,-0.0,17.57,1617.6274,-6.501855e-24 -4.196058137352866,0.12584615197047408,4.196058137352866,10.63,0.6407940972222222,-1.3701420365259112e-24,0.13271743084020968,10.63,10.63,0.0,-0.0,17.63,1620.9558,-2.740284e-24 -4.533656698786952,0.1265386962011825,4.533656698786952,9.17,0.6399997685185186,-4.9141685799529005e-25,0.13306841096577268,9.17,9.17,0.0,-0.0,17.695,1625.5771,-9.828337e-25 -4.654115249312998,0.1080612129738889,4.654115249312998,3.61,0.6395354166666667,-2.9254130135167646e-25,0.11352807307968281,3.61,3.61,0.0,-0.0,15.075,1627.1432,-5.850826e-25 -4.449579106942378,0.1096492817954545,4.449579106942378,-1.7369809942925676e-25,0.6378482638888888,-1.7369809942925676e-25,0.11538681258461377,0.0,0.0,0.0,-0.0,15.385000000000002,1624.4592,-3.473962e-25 -4.1569166936078075,0.12234795453349154,4.1569166936078075,-9.444476950387191e-26,0.6360001157407408,-9.444476950387191e-26,0.12907279658073106,0.0,0.0,0.0,-0.0,17.29,1620.3961,-1.8888954e-25 -3.8834638914231956,0.13625033056087724,3.8834638914231956,0.29,0.6355359953703703,-5.123507982073818e-26,0.14410069905210302,0.29,0.29,0.0,-0.0,19.155,1616.3324,-1.0247016e-25 -3.640345508598233,0.14188622828289493,3.640345508598233,-2.881027877944021e-26,0.6338483796296296,-2.881027877944021e-26,0.15042062271995882,0.0,0.0,0.0,-0.0,19.93,1612.4716,-5.762056e-26 -3.4720271569695176,0.14023371792230996,3.4720271569695176,1.74,0.6319996527777777,-1.4712319052874046e-26,0.14892983345238636,1.74,1.74,0.0,-0.0,19.810000000000002,1609.6444,-2.9424638e-26 -3.405862001045394,0.13422036170889198,3.405862001045394,4.97,0.6315355324074073,-8.449204118190488e-27,0.14264540717798446,4.97,4.97,0.0,-0.0,19.09,1608.4954,-1.6898408e-26 -3.2948279392172175,0.11690626004623096,3.2948279392172175,0.16,0.6287943287037038,-4.46939854023455e-27,0.12439757528205259,0.16,0.16,0.0,-0.0,16.865000000000002,1606.516,-8.938797e-27 -3.1326600477464424,0.09727563612947604,3.1326600477464424,-2.4680487940391214e-27,0.628,-2.4680487940391214e-27,0.1037035969976348,0.0,0.0,0.0,-0.0,13.895,1603.5018,-4.9360976e-27 -2.9450503174723752,0.10685670994240815,2.9450503174723752,-1.1844724343699132e-27,0.6267813657407407,-1.1844724343699132e-27,0.11418040580213709,0.0,0.0,0.0,-0.0,15.5,1599.8137,-2.3689449e-27 -2.7917827632616152,0.120502197033593,2.7917827632616152,-2.731528866013674e-28,0.624052199074074,-2.731528866013674e-28,0.12901852456529628,0.0,0.0,0.0,-0.0,17.6,1596.622,-5.4630577e-28 -2.7271237828374044,0.13169556253045064,2.7271237828374044,2.76,0.6238902777777778,4.5110711021845343e-29,0.14112666112133884,2.76,2.76,0.0,-0.0,19.115000000000002,1595.2225,9.022142e-29 -2.973078614516067,0.12167095832300331,2.973078614516067,11.76,0.6207944444444444,2.651766898664052e-29,0.12996403266725676,11.76,11.76,0.0,-0.0,17.81,1600.3794,5.303534e-29 -3.1206768679580814,0.09113758628814575,3.1206768679580814,1.5613839059825436e-29,0.6199998842592592,1.5613839059825436e-29,0.09717381612201513,0.0,0.0,0.0,-0.0,13.049999999999999,1603.273,3.1227678e-29 -2.9779138311724713,0.10207856888156122,2.9779138311724713,9.301988100768764e-30,0.6183303240740741,9.301988100768764e-30,0.10902961740765918,0.0,0.0,0.0,-0.0,14.965,1600.4764,1.8603976e-29 -2.856152715836266,0.11508825067916205,2.856152715836266,1.48,0.615999537037037,5.4893697869275666e-30,0.12311698171700251,1.48,1.48,0.0,-0.0,17.035,1597.9833,1.09787396e-29 -2.7513622312712434,0.12719731854785113,2.7513622312712434,0.01,0.6151532407407407,3.0872373009092232e-30,0.13626114629645136,0.01,0.01,0.0,-0.0,18.76,1595.751,6.1744746e-30 -2.6077322210718066,0.14165552628757472,2.6077322210718066,1.793197448111594e-30,0.6120002314814815,1.793197448111594e-30,0.15205471778864416,0.0,0.0,0.0,-0.0,20.715,1592.5491,3.586395e-30 -2.481344518451124,0.1553538042254233,2.481344518451124,0.32,0.6115356481481482,9.30707432376545e-31,0.16706986254254255,0.32,0.32,0.0,-0.0,22.355,1589.5822,1.8614149e-30 -2.4920491084134113,0.14872482332803239,2.4920491084134113,5.74,0.6080510416666667,5.155579984570896e-31,0.15991509210561655,5.74,5.74,0.0,-0.0,21.695,1589.8392,1.031116e-30 -2.6956500689925633,0.14774998687250335,2.6956500689925633,10.95,0.6078891203703704,2.9625116608943205e-31,0.15839962490517112,10.95,10.95,0.0,-0.0,21.535,1594.5293,5.9250233e-31 -3.5968983441645435,0.13214698310776374,3.5968983441645435,29.15,0.6042853009259259,1.7419286381586724e-31,0.14015789225080225,29.15,29.15,0.0,-0.0,19.54,1611.7545,3.4838573e-31 -6.736381070391147,0.10592622579887741,6.736381070391147,55.48,0.6039916666666666,1.0423577430987201e-31,0.10979499396876485,55.48,55.48,0.0,-0.0,15.465,1649.226,2.0847155e-31 -11.689992389237567,0.09682450209523882,11.689992389237567,29.44,0.6002854166666667,6.09715284037051e-32,0.09839685744974054,29.44,29.44,0.0,-0.0,13.775,1682.1443,1.2194306e-31 -12.942310321497484,0.10715888965537208,12.942310321497484,7.89,0.5999998842592592,3.518458540280974e-32,0.10850702842501116,7.89,7.89,0.0,-0.0,15.38,1688.2219,7.036917e-32 -11.603741226085656,0.11332358831069647,11.603741226085656,3.9,0.5962851851851851,2.1004651415454213e-32,0.11519416237817356,3.9,3.9,0.0,-0.0,16.47,1681.702,4.2009303e-32 -10.34147216025812,0.13041919177860842,10.34147216025812,4.05,0.5959997685185184,1.2539750556605867e-32,0.13311636242648742,4.05,4.05,0.0,-0.0,18.9,1674.8243,2.50795e-32 -9.719992835494564,0.1343198710019247,9.719992835494564,8.6,0.5920523148148148,7.300661866435182e-33,0.1374013621839508,8.6,8.6,0.0,-0.0,19.549999999999997,1671.123,1.4601324e-32 -9.573410194018301,0.1449255804083531,9.573410194018301,12.7,0.591992824074074,4.27270266207419e-33,0.14833093004207082,12.7,12.7,0.0,-0.0,20.86,1670.2156,8.545405e-33 -8.989852139390205,0.12252975933317285,8.989852139390205,2.355461641320446e-33,0.5880002314814815,2.355461641320446e-33,0.12569152436711806,0.0,0.0,0.0,-0.0,18.16,1666.4596,4.7109233e-33 -7.9413106444034876,0.08996791899818182,7.9413106444034876,1.3888271063713472e-33,0.5879922453703703,1.3888271063713472e-33,0.09270145648602608,0.0,0.0,0.0,-0.0,13.145,1659.0532,2.7776542e-33 -7.81461594484785,0.08958246541882298,7.81461594484785,13.59,0.5840005787037037,8.048257171774956e-34,0.09235775869379355,13.59,13.59,0.0,-0.0,13.195,1658.0928,1.6096514e-33 -8.875481001577006,0.10987813933744393,8.875481001577006,18.19,0.5835359953703704,4.7559032066331225e-34,0.1127651830946374,18.19,18.19,0.0,-0.0,16.475,1665.695,9.511806e-34 -12.0457640480072,0.10013046041582471,12.0457640480072,39.31,0.5800003472222222,2.762725342651755e-34,0.10164831170064213,39.31,39.31,0.0,-0.0,14.864999999999998,1683.9347,5.5254507e-34 -15.50569322106989,0.08971294902810896,15.50569322106989,19.39,0.5787818287037036,1.6407869277126638e-34,0.09026459965739315,19.39,19.39,0.0,-0.0,12.969999999999999,1699.0137,3.2815739e-34 -14.36876180673479,0.09987860040932024,14.36876180673479,9.74724737065389e-35,0.5760005787037037,9.74724737065389e-35,0.10076246996879615,0.0,0.0,0.0,-0.0,14.834999999999999,1694.466,1.9494495e-34 -11.891518219514214,0.10390302041965375,11.891518219514214,5.428392160095904e-35,0.5738478009259259,5.428392160095904e-35,0.10552629042668206,0.0,0.0,0.0,-0.0,15.655000000000001,1683.165,1.0856784e-34 -9.84957414224676,0.11448997502233475,9.84957414224676,3.088291991450486e-35,0.5719994212962963,3.088291991450486e-35,0.11706113824178374,0.0,0.0,0.0,-0.0,17.43,1671.914,6.176584e-35 -8.34924930647475,0.12104020901891734,8.34924930647475,1.8022654419031794e-35,0.5680513888888888,1.8022654419031794e-35,0.1244933461418162,0.0,0.0,0.0,-0.0,18.580000000000002,1662.0448,3.604531e-35 -7.812747281476204,0.13039770903008863,7.812747281476204,9.48,0.5679997685185185,1.0671992073864921e-35,0.1344386295424731,9.48,9.48,0.0,-0.0,19.884999999999998,1658.0785,2.1343984e-35 -7.5698262013973805,0.10030056889239927,7.5698262013973805,4.16,0.5639996527777777,6.185681723725048e-36,0.10352658263513709,4.16,4.16,0.0,-0.0,15.625,1656.1921,1.2371363e-35 -6.967878743322468,0.07353902568118582,6.967878743322468,3.661996730287778e-36,0.5639916666666667,3.661996730287778e-36,0.07613176166413069,0.0,0.0,0.0,-0.0,10.665,1651.2438,7.3239935e-36 -6.248037456341135,0.08363822021000862,6.248037456341135,2.0883983734798532e-36,0.56,2.0883983734798532e-36,0.08692984863721731,0.0,0.0,0.0,-0.0,12.895,1644.7317,4.1767967e-36 -5.645394457272299,0.09821230392674452,5.645394457272299,1.2219491213143632e-36,0.558330324074074,1.2219491213143632e-36,0.10245482617778837,0.0,0.0,0.0,-0.0,15.620000000000001,1638.6744,2.4438982e-36 -5.150876522999667,0.07560315838382103,5.150876522999667,6.520604522649818e-37,0.5560002314814815,6.520604522649818e-37,0.07913340377885554,0.0,0.0,0.0,-0.0,11.505,1633.1997,1.3041209e-36 -4.735393611807129,0.08970147357670864,4.735393611807129,3.5924579778293092e-37,0.5520519675925926,3.5924579778293092e-37,0.09417966252253322,0.0,0.0,0.0,-0.0,14.425,1628.1771,7.184916e-37 -4.3798621525873775,0.10998125448409082,4.3798621525873775,9.663573933583145e-38,0.5520004629629629,9.663573933583145e-38,0.11580338832693648,0.0,0.0,0.0,-0.0,17.845,1623.5161,1.9327148e-37 -4.072818471019954,0.1168942675409716,4.072818471019954,-1.5716885103153146e-37,0.5479999999999999,-1.5716885103153146e-37,0.12341230994325024,0.0,0.0,0.0,-0.0,19.04,1619.1755,-3.143377e-37 -3.8056134537601634,0.10400953440842234,3.8056134537601634,-3.2999285156107177e-37,0.5479921296296296,-3.2999285156107177e-37,0.11008464315057208,0.0,0.0,0.0,-0.0,17.12,1615.123,-6.599857e-37 -3.57121365335695,0.1045949859194262,3.57121365335695,-3.496610732323772e-37,0.5439997685185185,-3.496610732323772e-37,0.11096512504915809,0.0,0.0,0.0,-0.0,17.375,1611.3265,-6.9932215e-37 -3.3636316604912047,0.11289629209288232,3.3636316604912047,-1.8593334945027784e-37,0.540794212962963,-1.8593334945027784e-37,0.12003842684781747,0.0,0.0,0.0,-0.0,18.795,1607.7502,-3.718667e-37 -3.178110547448375,0.10229926742727911,3.178110547448375,4.0703034446571234e-38,0.54,4.0703034446571234e-38,0.10900071363591286,0.0,0.0,0.0,-0.0,17.2,1604.362,8.140607e-38 -3.0117842431376167,0.10158142460810304,3.0117842431376167,2.6067841896077243e-37,0.5359994212962963,2.6067841896077243e-37,0.10845285200314529,0.0,0.0,0.0,-0.0,17.240000000000002,1601.1519,5.2135684e-37 -2.862242490573365,0.097153654477016,2.862242490573365,4.1122199811530245e-37,0.5359994212962963,4.1122199811530245e-37,0.1039229687392677,0.0,0.0,0.0,-0.0,16.53,1598.1105,8.22444e-37 -2.7274136645227403,0.09145974903111469,2.7274136645227403,4.295630892474028e-37,0.5319998842592593,4.295630892474028e-37,0.09800905512094045,0.0,0.0,0.0,-0.0,15.685,1595.2289,8.591262e-37 -2.605249479073351,0.09104399895625838,2.605249479073351,0.05,0.5298482638888888,2.5359782597635485e-37,0.09773119647748627,0.05,0.05,0.0,-0.0,15.704999999999998,1592.4922,5.0719565e-37 -2.494765609639098,0.08129228474748829,2.494765609639098,7.86,0.5279998842592593,-1.141450084891209e-37,0.08740525569322115,7.86,7.86,0.0,-0.0,13.934999999999999,1589.9043,-2.2829002e-37 -2.400023692378675,0.059901279116978345,2.400023692378675,6.91,0.5240002314814816,-5.741553874551085e-37,0.06449950042589445,6.91,6.91,0.0,-0.0,9.215,1587.5922,-1.1483108e-36 -2.325105281426033,0.06684651299822562,2.325105281426033,2.32,0.5240002314814816,-1.0197455644441151e-36,0.07206384223616079,2.32,2.32,0.0,-0.0,10.96,1585.6982,-2.0394911e-36 -2.2737584736828103,0.06686814689945118,2.2737584736828103,0.76,0.520000462962963,-1.3442279050825251e-36,0.07214784307643944,0.76,0.76,0.0,-0.0,11.1,1584.3646,-2.6884558e-36 -2.2498612150205477,0.08099861453622532,2.2498612150205477,0.47,0.5183310185185186,-1.4409145395785808e-36,0.0874288264744361,0.47,0.47,0.0,-0.0,14.24,1583.7336,-2.881829e-36 -2.257928154601336,0.0689723606799063,2.257928154601336,3.79,0.5159998842592592,-1.2031178223482789e-36,0.07443780179237808,3.79,3.79,0.0,-0.0,11.72,1583.9474,-2.4062356e-36 -2.2667420681235773,0.0734255698195148,2.2667420681235773,1.44,0.511999537037037,-6.765770320981985e-37,0.07923224940030978,1.44,1.44,0.0,-0.0,12.844999999999999,1584.18,-1.3531541e-36 -2.21341064514771,0.0663759062325785,2.21341064514771,-2.1172906815289337e-37,0.511999537037037,-2.1172906815289337e-37,0.07168942518578587,0.0,0.0,0.0,-0.0,11.245000000000001,1582.7582,-4.2345814e-37 -2.130942792569239,0.05652966408562902,2.130942792569239,7.77845811679107e-38,0.5079996527777778,7.77845811679107e-38,0.06114256985116059,0.0,0.0,0.0,-0.0,8.865,1580.4906,1.5556916e-37 -2.0666742902984216,0.05346485170481766,2.0666742902984216,0.02,0.5067805555555556,1.043188906599087e-37,0.05789465669761514,0.02,0.02,0.0,-0.0,8.055,1578.6617,2.0863778e-37 -2.2261923648936444,0.057617648182200505,2.2261923648936444,10.41,0.503999537037037,5.828466104736456e-38,0.06221653448989642,10.41,10.41,0.0,-0.0,9.26,1583.102,1.1656932e-37 -2.4998037999102296,0.058428371085393206,2.4998037999102296,8.37,0.4999997685185186,3.1991517823673784e-38,0.06281727415798911,8.37,8.37,0.0,-0.0,9.535,1590.0248,6.3983036e-38 -2.587201159747653,0.05467676829927355,2.587201159747653,1.44,0.4999997685185186,1.8753168168907444e-38,0.05870809155953433,1.44,1.44,0.0,-0.0,8.48,1592.077,3.7506336e-38 -2.527321711157275,0.04901076554064956,2.527321711157275,0.92,0.4959997685185185,1.0925910113355955e-38,0.05267059831786114,0.92,0.92,0.0,-0.0,6.93,1590.6786,2.185182e-38 -2.726237604956097,0.05058739547189237,2.726237604956097,11.79,0.49366840277777774,6.2750726771328e-39,0.05421076416809774,11.79,11.79,0.0,-0.0,7.445,1595.2031,1.2550145e-38 -3.2475489327539337,0.054400628783757864,3.2475489327539337,15.11,0.4919994212962963,3.5521150434569063e-39,0.05791772184007894,15.11,15.11,0.0,-0.0,8.52,1605.6528,7.10423e-39 -3.5861874548684347,0.05276115685177558,3.5861874548684347,4.56,0.48800034722222224,2.066574018703042e-39,0.05596578595224121,4.56,4.56,0.0,-0.0,8.115,1611.5764,4.133148e-39 -3.5074573307509596,0.05690893410699486,3.5074573307509596,0.22,0.48800034722222224,1.183966180948056e-39,0.06041519019512789,0.22,0.22,0.0,-0.0,9.305,1610.2507,2.367932e-39 -3.584882896583197,0.05331641807844515,3.584882896583197,8.6,0.4840002314814815,6.87881301204713e-40,0.056555535391685674,8.6,8.6,0.0,-0.0,8.405,1611.5547,1.375763e-39 -3.828685103457831,0.06462294484862444,3.828685103457831,6.41,0.48167002314814816,3.9228019275232145e-40,0.06838223361680018,6.41,6.41,0.0,-0.0,11.465,1615.484,7.8456e-40 -3.8855362510988902,0.04488676109114376,3.8855362510988902,3.35,0.4800005787037037,2.311925264873978e-40,0.04747207679460464,3.35,3.35,0.0,-0.0,5.845,1616.3643,4.62385e-40 -3.818727765976321,0.03921223233093532,3.818727765976321,2.36,0.4760001157407408,1.360387555658854e-40,0.04149730710847913,2.36,2.36,0.0,-0.0,3.9450000000000003,1615.3285,2.72078e-40 -3.76265415360749,0.04379080052997965,3.76265415360749,3.24,0.4760001157407408,7.369078299268132e-41,0.046368047937186324,3.24,3.24,0.0,-0.0,5.615,1614.4451,1.47382e-40 -3.8891357309977366,0.044300206316425915,3.8891357309977366,8.6,0.4719996527777777,3.537367778418352e-41,0.04685013577633651,8.6,8.6,0.0,-0.0,5.9,1616.4196,7.0747e-41 -4.293806804340039,0.043349418715594695,4.293806804340039,14.18,0.4701513888888889,2.0289400464959026e-41,0.04567757061859039,14.18,14.18,0.0,-0.0,5.575,1622.331,4.0579e-41 -4.565218174084844,0.04424310329564797,4.565218174084844,4.08,0.46799976851851854,1.1366632493370754e-41,0.04651430364552211,4.08,4.08,0.0,-0.0,5.92,1625.9915,2.2733e-41 -4.388536863824809,0.050199753858452566,4.388536863824809,6.66177289940018e-42,0.463999537037037,6.66177289940018e-42,0.052853357052803925,0.0,0.0,0.0,-0.0,8.01,1623.6343,1.3324e-41 -4.160997210029747,0.04628199618172628,4.160997210029747,3.24,0.463999537037037,3.6987272965853547e-42,0.04882411559381843,3.24,3.24,0.0,-0.0,6.79,1620.4547,7.397e-42 -4.52487086075199,0.04511563049576263,4.52487086075199,15.85,0.46,2.1601015827567055e-42,0.04744709168011453,15.85,15.85,0.0,-0.0,6.484999999999999,1625.4613,4.32e-42 -5.368444915261533,0.03803670675565332,5.368444915261533,14.87,0.45920532407407405,1.2618692671244976e-42,0.039752670791155985,14.87,14.87,0.0,-0.0,3.84,1635.6704,2.524e-42 -5.595763633106454,0.03900985169498672,5.595763633106454,1.14,0.45599953703703705,7.51095976878102e-43,0.04070807858963519,1.14,1.14,0.0,-0.0,4.3,1638.1471,1.502e-42 -5.152329674791091,0.033400632861502355,5.152329674791091,4.428103137600282e-43,0.45200810185185186,4.428103137600282e-43,0.03495989534117366,0.0,0.0,0.0,-0.0,2.17,1633.2166,8.86e-43 -4.742096452020208,0.03462227133767657,4.742096452020208,2.627434620590777e-43,0.452,2.627434620590777e-43,0.03634884174827897,0.0,0.0,0.0,-0.0,2.7449999999999997,1628.2616,5.25e-43 -4.394164877220967,0.035370382069193226,4.394164877220967,1.4993893568274766e-43,0.4480001157407407,1.4993893568274766e-43,0.037238336197779165,0.0,0.0,0.0,-0.0,3.235,1623.7108,3.0e-43 -4.128701195502049,0.039786589002300386,4.128701195502049,1.7516230804060213e-44,0.4480001157407407,1.7516230804060213e-44,0.041983993021102554,0.0,0.0,0.0,-0.0,5.029999999999999,1619.9894,3.5e-44 -3.922587394306821,0.04453847153819159,3.922587394306821,-1.2611686178923354e-43,0.4440001157407408,-1.2611686178923354e-43,0.04708721605110776,0.0,0.0,0.0,-0.0,6.91,1616.931,-2.52e-43 -3.7471733055266427,0.047767920210875094,3.7471733055266427,0.25,0.44166932870370373,-2.4172398509603094e-43,0.050586950448935165,0.25,0.25,0.0,-0.0,8.095,1614.1989,-4.83e-43 -3.5789524142068223,0.047506548347610575,3.5789524142068223,2.24,0.4400003472222222,-2.9006878211523713e-43,0.05039579231768866,2.24,2.24,0.0,-0.0,8.095,1611.4558,-5.8e-43 -3.3994076483898783,0.036047960258857224,3.3994076483898783,-2.3191489584575723e-43,0.43611064814814815,-2.3191489584575723e-43,0.03831339797679946,0.0,0.0,0.0,-0.0,4.0600000000000005,1608.3821,-4.64e-43 -3.6616517110800118,0.03241483219408248,3.6616517110800118,14.44,0.43600011574074077,-1.3382400332434507e-43,0.03435714437749904,14.44,14.44,0.0,-0.0,2.445,1612.8201,-2.68e-43 -4.441428258871786,0.040718087363191234,4.441428258871786,16.5,0.43200000000000005,-7.496946784137771e-44,0.04285159876919216,16.5,16.5,0.0,-0.0,5.89,1624.3497,-1.5e-43 -4.772854853109123,0.034460957061536325,4.772854853109123,2.26,0.43194837962962956,-4.344025239406858e-44,0.03617090574751367,2.26,2.26,0.0,-0.0,3.345,1628.6477,-8.7e-44 -4.512457237751593,0.03740767280075317,4.512457237751593,0.61,0.428,-2.5223372357846707e-44,0.039344777492589196,0.61,0.61,0.0,-0.0,4.74,1625.2972,-5.0e-44 -4.332935072839523,0.03352628435501129,4.332935072839523,4.36,0.4261517361111111,-1.4713633875409384e-44,0.03531507582487768,4.36,4.36,0.0,-0.0,3.19,1622.8728,-3.0e-44 -4.870382385660326,0.03921068774609307,4.870382385660326,18.37,0.42400011574074076,-8.407790785948902e-45,0.041125813495726575,18.37,18.37,0.0,-0.0,5.550000000000001,1629.8557,-1.7e-44 -6.560030744349922,0.035631124068021165,6.560030744349922,28.87,0.42121863425925926,-4.90454462513686e-45,0.03696799895344516,28.87,28.87,0.0,-0.0,4.045,1647.6417,-1.0e-44 -7.176138129469976,0.027653488687731567,7.176138129469976,2.1474288224891777e-12,0.41999976851851856,2.1474288224891777e-12,0.028597996085981806,0.0,0.0,0.0,-0.0,0.31000000000000005,1653.0026,5.4165184e-12 -6.85678413472395,0.028964707280045104,6.85678413472395,8.040000000003058,0.4164640046296296,3.1392487471468045e-12,0.030003344781827326,8.04,8.03999999999992,8.078204771777563e-14,-0.0,1.13,1650.2839,6.278948e-12 -7.277545957303805,0.03766664835539887,7.277545957303805,12.800000000001884,0.4159996527777778,1.883745980418252e-12,0.03893341828528009,12.8,12.8,0.0,-0.0,5.01,1653.8406,3.767492e-12 -7.961773505398601,0.03689284270934131,7.961773505398601,12.960000000001093,0.4121109953703704,1.0916021775852855e-12,0.03801025417337867,12.96,12.96,0.0,-0.0,4.79,1659.2069,2.1832044e-12 -7.6946280730828835,0.02591701228569197,7.6946280730828835,-0.00274100982369312,0.41200046296296294,-0.00274100982369312,0.026734829167565494,0.0,0.0,0.0,-0.0,-0.3849999999999998,1657.1687,-0.000101407444 -6.816231418447915,0.0262817063330121,6.816231418447915,-0.03919750093115368,0.4080084490740741,-0.03919750093115368,0.02722997999510982,0.0,0.0,0.0,-0.0,0.020000000000000018,1649.9297,0.016341861 -6.115818230945435,0.027641014366112392,6.115818230945435,0.007203132066333365,0.40794895833333333,0.007203132066333365,0.028751170726138062,0.0,0.0,0.0,-0.0,0.81,1643.4543,0.013519165 -5.554567769873326,0.03022117358638495,5.554567769873326,0.21413413923596103,0.40399999999999997,0.004134139235961044,0.031545298148647025,0.21,0.21,0.0,-0.0,2.31,1637.7058,0.007952253 -5.087196373915012,0.03989612637992298,5.087196373915012,0.002406325670318592,0.4037145833333334,0.002406325670318592,0.04177805699638525,0.0,0.0,0.0,-0.0,6.535,1632.4568,0.004702122 -4.6857202830636515,0.03250715254491988,4.6857202830636515,0.0013945221552491777,0.40000023148148145,0.0013945221552491777,0.0341432214127189,0.0,0.0,0.0,-0.0,3.63,1627.5474,0.0027512012 -4.340895688664545,0.02814682879169135,4.340895688664545,0.0008124885529774699,0.39971435185185183,0.0008124885529774699,0.029646597441079215,0.0,0.0,0.0,-0.0,1.555,1622.9824,0.0016119865 -4.0500303202108485,0.028945925423869544,4.0500303202108485,0.26041766982728043,0.3960082175925926,0.00041766982728044225,0.030566280284034682,0.26,0.26,0.0,-0.0,2.1399999999999997,1618.8405,0.00083187956 -3.847324876498832,0.03614718667617453,3.847324876498832,1.4902049382635272,0.39571446759259266,0.00020493826352710486,0.0382430987222568,1.49,1.49,0.0,-0.0,5.495,1615.774,0.00040903996 -3.8252510359203207,0.0359525613939412,3.8252510359203207,5.52011945060166,0.3921108796296296,0.0001194506016608945,0.03804527965699001,5.52,5.52,0.0,-0.0,5.555,1615.4304,0.00023861651 -3.8565132217199865,0.028724050806488675,3.8565132217199865,2.990067673804237,0.3919487268518519,6.767380423704807e-5,0.030386870192780996,2.99,2.99,0.0,-0.0,2.205,1615.9165,0.00013525614 -3.7051614831787787,0.02467471977110999,3.7051614831787787,0.0004321625344130692,0.3884644675925926,-0.01956783746157446,0.02614180635687744,0.02,0.01999999999598753,4.012471466197098e-12,-0.0,0.14000000000000012,1613.5255,-0.0010510861 -3.4870340901055794,0.018622968664196254,3.4870340901055794,0.0,0.38799999999999996,-0.0,0.019774644269755035,0.0,0.0,0.0,-0.0,-3.8099999999999996,1609.902,0.0016344715 -3.293636101985303,0.01990691602517654,3.293636101985303,0.0034512401627337804,0.3848466435185185,-1.866624234357645e-12,0.021182829642372378,2.02,0.0034512401646004044,2.0165487598353997,-0.0,-2.73,1606.4944,1.0125256 -3.120523780753329,0.018080933451972928,3.120523780753329,2.565186163483446e-10,0.3840003472222222,-0.0,0.019278506099673652,0.06,2.565186163483446e-10,0.05999999974348138,-0.0,-4.0200000000000005,1603.27,2.048976 -2.964685863006998,0.018150256605403398,2.964685863006998,0.0,0.38166932870370374,-0.0,0.01938942076491169,0.0,0.0,0.0,-0.0,-3.855,1600.2106,2.0882907 -2.823455345452486,0.023524974601080963,2.823455345452486,-0.04788364621192132,0.3799997685185186,-0.04788364621192132,0.025176946328771942,0.0,0.0,0.0,-0.0,-0.08499999999999996,1597.2957,2.0894108 -2.735190628213979,0.02591005714839199,2.735190628213979,1.190158012735075,0.37920590277777777,1.190158012735075,0.027762481142394366,0.0,0.0,0.0,-0.0,1.3649999999999998,1595.3989,1.1901742 -2.6457776614834194,0.02843193936998994,2.6457776614834194,0.4328902242339744,0.37611087962962964,0.4328902242339744,0.030502612646448553,0.0,0.0,0.0,-0.0,2.87,1593.4141,0.4382963 -2.6560729862573127,0.02740336622874594,2.6560729862573127,5.396135186922375,0.3759486111111111,0.1461351869223743,0.029394850777796574,5.25,5.25,0.0,-0.0,2.33,1593.646,0.17224026 -2.8889748081540176,0.025422352067274365,2.8889748081540176,10.24514154174499,0.37321898148148147,0.05514154174500997,0.027184245676723246,10.19,10.18999999999998,2.0929369348721137e-14,-0.0,1.29,1598.6656,0.0799354 -3.1590238299480915,0.022267328654382832,3.1590238299480915,6.5995460383337505,0.3719998842592593,-0.00045103755986607727,0.023731343642083357,6.6,6.599997075893617,2.9241063829621436e-6,-0.0,-0.6300000000000001,1604.0023,0.066764936 -3.340070071431314,0.02268791843080663,3.340070071431314,6.595533619100776,0.37120578703703705,-0.004466184383074131,0.02412951997869201,6.6,6.59999980348385,1.965161498196366e-7,-0.0,-0.3599999999999999,1607.3304,0.06831767 -3.762469573713064,0.025520260817479767,3.762469573713064,14.471767913278295,0.3684645833333333,0.031767913278304916,0.027022269745760382,14.44,14.43999999999999,1.042055330913172e-14,-0.0,1.3900000000000001,1614.4421,0.050869573 -4.082670524894004,0.023949964154790664,4.082670524894004,3.4247796372050874,0.3680003472222222,0.014779637239148127,0.025283164833120313,3.41,3.4099999999659394,3.4060629872101345e-11,-0.0,0.44000000000000006,1619.3198,0.027818566 -3.925739705824882,0.01966651682679539,3.925739705824882,-7.800419534672304e-11,0.36615196759259255,-7.800419534672304e-11,0.020791329841038195,0.0,0.0,0.0,-0.0,-2.29,1616.979,0.042479277 -3.6825105027443845,0.016862448590920714,3.6825105027443845,0.0,0.3644642361111111,-0.0,0.01786909603546911,0.0,0.0,0.0,-0.0,-4.35,1613.1593,0.04250486 -3.4676652661816605,0.016749182239332576,3.4676652661816605,0.0,0.36400011574074076,-0.0,0.017788655283118064,0.0,0.0,0.0,-0.0,-4.395,1609.5693,0.04250486 -3.2764597566387104,0.017095388628638762,3.2764597566387104,0.0,0.3621513888888889,-0.0,0.018194636754446186,0.0,0.0,0.0,-0.0,-4.01,1606.1821,0.04243247 -3.1051957986616587,0.016625807280082797,3.1051957986616587,1.9264857020750983e-9,0.3604638888888889,-0.0,0.017730253127074297,7.79,1.9264857020750983e-9,7.789999998073514,-0.0,-4.305,1602.976,3.9326437 -2.9508832547187422,0.018219362631355505,2.9508832547187422,0.0007880106792075606,0.3599998842592593,-1.663260315084479e-13,0.019466635069287683,5.61,0.0007880106793738867,5.6092119893206265,-0.0,-2.98,1599.9319,10.640387 -2.8111548122111896,0.01614202326295175,2.8111548122111896,0.0,0.35920578703703704,-0.0,0.017278369597313655,0.0,0.0,0.0,-0.0,-4.615,1597.0349,13.42717 -2.6841312622000237,0.013394310654389528,2.6841312622000237,0.0,0.3572189814814815,-0.0,0.014362059603277392,0.0,0.0,0.0,-0.0,-7.074999999999999,1594.2736,13.42921 -2.5681227572553165,0.013262031888383976,2.5681227572553165,0.0,0.35611041666666665,-0.0,0.014243797323996806,0.0,0.0,0.0,-0.0,-7.145,1591.635,13.44128 -2.4616374429033088,0.016689623020025378,2.4616374429033088,3.4232240962994705e-8,0.3559483796296296,-0.0,0.01795365487212688,4.18,3.4232240962994705e-8,4.179999965767759,-0.0,-3.955,1589.106,15.569691 -2.5027589520170825,0.022852689551192334,2.5027589520170825,7.276154729697165,0.3546476851851852,1.0061547297160283,0.024568201018359742,6.27,6.269999999981136,1.886318434785039e-11,-0.0,0.56,1590.0953,17.335333 -2.734111808809644,0.02358634907599311,2.734111808809644,8.574316850667543,0.35321898148148145,2.2843168506677145,0.02527301416678667,6.29,6.289999999999829,1.7213841463359357e-13,-0.0,1.03,1595.3754,15.69376 -2.7850401090099455,0.021102361763048354,2.7850401090099455,0.4885724063231973,0.35211030092592593,-0.0014275008880976462,0.022595785957340422,0.49,0.48999990721129494,9.278870505557979e-8,-0.0,-0.5449999999999999,1596.4775,15.14935 -2.8484335321181664,0.022472299450220886,2.8484335321181664,8.100999896326716,0.35199988425925927,0.4109998965064265,0.02404243283396008,7.69,7.689999999820289,1.7971124754989633e-10,-0.0,0.355,1597.8217,15.140376 -3.2227643123745873,0.024595943352566967,3.2227643123745873,12.689371163788369,0.35171423611111113,3.8493711637883683,0.026193576545447104,8.84,8.84,4.907185768843192e-16,-0.0,1.615,1605.1953,12.989757 -3.3736433614599717,0.02038320128560011,3.3736433614599717,1.4599275034247723,0.3506474537037037,-1.1286351619087674e-5,0.02167030719958022,1.46,1.4599387897763914,6.12102236085954e-5,-0.0,-1.085,1607.9277,12.000172 -3.2524914525047586,0.018284991591218124,3.2524914525047586,0.018156219177166196,0.34966921296296294,-8.735991903458549e-12,0.019466046301454563,2.16,0.018156219185902187,2.141843780814098,-0.0,-2.57,1605.7437,12.648816 -3.154403875821982,0.019607207014655268,3.154403875821982,2.7003056052813528,0.3488465277777778,-1.7833309314565402e-7,0.020897465102103652,2.71,2.700305783614446,0.009694216385553877,-0.0,-1.5299999999999998,1603.9149,13.706282 -3.121850786059888,0.019414640262436368,3.121850786059888,2.3756281429071855,0.3481105324074074,-6.624697016616668e-8,0.020700221829768686,2.4,2.3756282091541556,0.024371790845844597,-0.0,-1.635,1603.2954,13.722162 -2.9813793357364795,0.015957952925747667,2.9813793357364795,0.0,0.3480079861111111,-0.0,0.017043871364390034,0.0,0.0,0.0,-0.0,-4.365,1600.5459,14.611453 -2.8389763622783764,0.011895189746749805,2.8389763622783764,0.0,0.34794849537037037,-0.0,0.012727885453249536,0.0,0.0,0.0,-0.0,-8.35,1597.623,14.63268 -2.7095932911135723,0.012733420868819614,2.7095932911135723,0.0,0.34771435185185184,-0.0,0.01364859297308031,0.0,0.0,0.0,-0.0,-7.4,1594.8374,14.64612 -2.590069030528695,0.015437604815299892,2.590069030528695,1.2124657389200877e-11,0.3472057870370371,-0.0,0.01657513205328135,3.11,1.2124657389200877e-11,3.109999999987875,-0.0,-4.72,1592.1432,16.444754 -2.4822018292386443,0.018348991442851764,2.4822018292386443,1.7092864547917879,0.3466476851851852,-1.8047727017155862e-10,0.019732530584098455,10.35,1.709286454972265,8.640713545027733,-0.0,-2.2550000000000003,1589.6028,23.208193 -2.384605613252498,0.014873072683742114,2.384605613252498,2.035038804137912e-13,0.3466476851851852,-0.0,0.01601866266638759,4.7,2.035038804137912e-13,4.699999999999797,-0.0,-5.17,1587.2073,30.646862 -2.292593994441841,0.009560796345109444,2.292593994441841,0.0,0.3461518518518519,-0.0,0.010312479632288181,0.01,0.0,0.01,-0.0,-11.07,1584.8573,32.966217 -2.207482714413222,0.010089052840326162,2.207482714413222,0.0,0.3461518518518519,-0.0,0.010897803651993563,10.04,0.0,10.04,-0.0,-10.344999999999999,1582.598,37.91741 -2.1284484183487753,0.010218743622312312,2.1284484183487753,0.0,0.3456693287037037,-0.0,0.011053097665567077,5.62,0.0,5.62,-0.0,-10.14,1580.4207,44.671387 -2.054888249850337,0.007951822820164963,2.054888249850337,0.0,0.3456693287037037,-0.0,0.008612530709347806,0.0,0.0,0.0,-0.0,-13.385000000000002,1578.3202,47.680885 -1.9862074747546592,0.012136118149479963,1.9862074747546592,0.0,0.3461518518518519,-0.0,0.013161423555216257,0.82,0.0,0.82,-0.0,-7.83,1576.29,48.238644 -1.9218717481070715,0.013175456120563518,1.9218717481070715,0.0,0.3461518518518519,-0.0,0.01430641608421225,5.83,0.0,5.83,-0.0,-6.699999999999999,1574.3236,51.635983 -1.8615252813670775,0.014788207539345434,1.8615252813670775,3.8894776288600496e-13,0.3461518518518519,-0.0,0.016077060225113765,4.46,3.8894776288600496e-13,4.459999999999611,-0.0,-5.1000000000000005,1572.4183,56.728878 -1.8048214840271701,0.014342871393213231,1.8048214840271701,4.884981308350689e-17,0.3466476851851852,-0.0,0.015611252655397626,0.04,4.884981308350689e-17,0.03999999999999995,-0.0,-5.5249999999999995,1570.5709,58.925976 -1.751555461168741,0.00842873546750516,1.751555461168741,0.0,0.3472057870370371,-0.0,0.00918457502065897,0.0,0.0,0.0,-0.0,-12.615,1568.7819,58.95335 -1.701439682181146,0.006201162966127685,1.701439682181146,0.0,0.34771435185185184,-0.0,0.006764722500574438,0.01,0.0,0.01,-0.0,-16.509999999999998,1567.0482,58.96873 -1.6540995547060164,0.009093677117633583,1.6540995547060164,0.0,0.34794849537037037,-0.0,0.009930786754936005,4.41,0.0,4.41,-0.0,-11.63,1565.363,61.20617 -1.6091945581222336,0.015838894516960987,1.6091945581222336,7.202393808025676e-9,0.34800000000000003,-0.0,0.017315109976866132,5.88,7.202393808025676e-9,5.8799999927976065,-0.0,-4.145,1563.7194,66.34707 -1.5666226121714149,0.011315847642628257,1.5666226121714149,0.0,0.3480079861111111,-0.0,0.012383186395097003,0.0,0.0,0.0,-0.0,-8.72,1562.1182,69.34632 -1.526349565053056,0.007019697696352709,1.526349565053056,0.0,0.3484641203703704,-0.0,0.0076894688505155465,0.0,0.0,0.0,-0.0,-14.93,1560.5629,69.41326 -1.4881213425507818,0.008192870758327475,1.4881213425507818,0.0,0.34921886574074074,-0.0,0.00898329769356982,18.96,0.0,18.96,-0.0,-12.975,1559.0481,78.88068 -1.4517256808956152,0.009862732808093737,1.4517256808956152,0.0,0.35015162037037034,-0.0,0.010824530791529561,18.38,0.0,18.38,-0.0,-10.585,1557.5693,97.44385 -1.4170743914058286,0.007255520013578721,1.4170743914058286,0.0,0.35120578703703703,-0.0,0.00797044964790519,0.0,0.0,0.0,-0.0,-14.575000000000001,1556.1266,106.727684 -1.384002492794471,0.012845551346629529,1.384002492794471,0.0,0.3519482638888889,-0.0,0.014124100404597896,15.45,0.0,15.45,-0.0,-7.1000000000000005,1554.7163,115.08063 -1.3523297628765223,0.017063859070642225,1.3523297628765223,0.0001996113417183497,0.35200787037037035,-2.6326839283920157e-14,0.01877896622673998,9.5,0.00019961134174467654,9.499800388658254,-0.0,-3.17,1553.3337,127.4781 -1.3221113195103786,0.008750325380858836,1.3221113195103786,0.0,0.35284641203703704,-0.0,0.009638204289408795,2.73,0.0,2.73,-0.0,-12.2,1551.9841,133.61075 -1.2932684574356326,0.010805591926579356,1.2932684574356326,0.0,0.3541518518518519,-0.0,0.01191212535616383,1.66,0.0,1.66,-0.0,-9.47,1550.6669,135.81552 -1.2656755741395398,0.0069334563678537684,1.2656755741395398,0.0,0.35571446759259256,-0.0,0.007649822333477064,0.0,0.0,0.0,-0.0,-15.255,1549.3789,136.56279 -1.239296942211849,0.004114216469033361,1.239296942211849,0.0,0.35600000000000004,-0.0,0.0045429861329822,0.0,0.0,0.0,-0.0,-21.634999999999998,1548.1211,136.56142 -1.2140312581141592,0.002868304411108421,1.2140312581141592,0.0,0.3564643518518519,-0.0,0.0031697479640139426,0.0,0.0,0.0,-0.0,-25.835,1546.891,136.56142 -1.1897864109012795,0.0028973776539381133,1.1897864109012795,0.0,0.35815185185185183,-0.0,0.0032043722011897784,0.0,0.0,0.0,-0.0,-25.765,1545.6863,136.56142 -1.1664858338233843,0.003216659768034064,1.1664858338233843,0.0,0.3599482638888889,-0.0,0.0035602047387312172,0.0,0.0,0.0,-0.0,-24.615000000000002,1544.5051,136.56256 -1.1440647642095594,0.0044582100019073655,1.1440647642095594,0.0,0.36000787037037035,-0.0,0.004938060456021311,0.07,0.0,0.07,-0.0,-20.775,1543.3461,136.672 -1.1224600361123416,0.00618126296654743,1.1224600361123416,0.0,0.36121863425925926,-0.0,0.006851625303958951,7.26,0.0,7.26,-0.0,-16.825,1542.2075,140.40169 -1.1016100083440075,0.009568757168464429,1.1016100083440075,0.0,0.3637142361111111,-0.0,0.010614202302593427,3.33,0.0,3.33,-0.0,-11.34,1541.0878,145.71002 -1.0815009192610192,0.00842868836701631,1.0815009192610192,0.0,0.36400011574074076,-0.0,0.009356253680078617,1.14,0.0,1.14,-0.0,-12.985,1539.9875,147.95883 -1.0621539710856422,0.004379480707651126,1.0621539710856422,0.0,0.36521898148148146,-0.0,0.004864841832729978,0.17,0.0,0.17,-0.0,-21.125,1538.9095,148.60977 -1.0435369951971403,0.0024505621380377265,1.0435369951971403,0.0,0.36771435185185186,-0.0,0.002724017858169041,0.0,0.0,0.0,-0.0,-27.895,1537.8535,148.69165 -1.025564917154733,0.003514046328947976,1.025564917154733,0.0,0.3680083333333333,-0.0,0.003908812146499813,0.0,0.0,0.0,-0.0,-23.79,1536.816,148.69214 -1.0081805235987196,0.005112933737879036,1.0081805235987196,0.0,0.3696696759259259,-0.0,0.005691098517110251,0.0,0.0,0.0,-0.0,-19.384999999999998,1535.795,148.69196 -0.9913643383795384,0.0047597311555365,0.9913643383795384,0.0,0.3719483796296296,-0.0,0.0053014236844114845,0.0,0.0,0.0,-0.0,-20.314999999999998,1534.7905,148.68996 -0.9751056519508791,0.003856730168737192,0.9751056519508791,0.0,0.37211041666666667,-0.0,0.004298420306375379,0.0,0.0,0.0,-0.0,-22.810000000000002,1533.803,148.69214 -0.9593763516561126,0.00425275987857085,0.9593763516561126,0.0,0.3746479166666667,-0.0,0.004742808232260555,10.44,0.0,10.44,-0.0,-21.73,1532.8318,153.91393 -0.9441207525968968,0.007240309431016402,0.9441207525968968,0.0,0.3760002314814815,-0.0,0.008079660973647543,5.58,0.0,5.58,-0.0,-15.265,1531.8745,161.90495 -0.9293223685688735,0.006384673048826431,0.9293223685688735,0.0,0.3772188657407407,-0.0,0.007129223625796244,0.0,0.0,0.0,-0.0,-16.87,1530.931,164.58923 -0.9150083956900955,0.003374191511363151,0.9150083956900955,0.0,0.3799997685185186,-0.0,0.0037699566400172064,0.0,0.0,0.0,-0.0,-24.58,1530.004,164.59074 -0.901141428871864,0.003968213532300005,0.901141428871864,0.0,0.3804640046296296,-0.0,0.00443629693354279,0.0,0.0,0.0,-0.0,-22.7,1529.092,164.53035 -0.8876769267692194,0.005605326792999355,0.8876769267692194,0.0,0.383714699074074,-0.0,0.006270207802175591,1.14,0.0,1.14,-0.0,-18.66,1528.193,165.10649 -0.8745780564328526,0.008628624770399145,0.8745780564328526,0.0,0.38400833333333334,-0.0,0.009657727801855687,2.02,0.0,2.02,-0.0,-13.264999999999999,1527.3052,166.73297 -0.861853909921118,0.006596351892365887,0.861853909921118,0.0,0.3866476851851852,-0.0,0.007387306922828197,4.26,0.0,4.26,-0.0,-16.735,1526.4299,169.9455 -0.8494815613341141,0.009095906709423984,0.8494815613341141,0.0,0.38799999999999996,-0.0,0.010192344202215703,6.46,0.0,6.46,-0.0,-12.705,1525.5664,175.18622 -0.8374391568115762,0.009395967288701438,0.8374391568115762,0.0,0.3901519675925926,-0.0,0.010534462504642699,14.88,0.0,14.88,-0.0,-12.35,1524.7137,185.88557 -0.8257379220213272,0.007968057114618534,0.8257379220213272,0.0,0.39200034722222227,-0.0,0.00893846095467355,0.45,0.0,0.45,-0.0,-14.514999999999999,1523.8734,193.59042 -0.8143233487769291,0.014867465555968028,0.8143233487769291,0.0,0.3936696759259259,-0.0,0.016687229146101254,10.04,0.0,10.04,-0.0,-6.3549999999999995,1523.0421,199.2903 -0.8031634190553002,0.01674293920627177,0.8031634190553002,1.8986714978019847e-11,0.39600023148148145,-0.0,0.018802432712742276,10.31,1.8986714978019847e-11,10.309999999981013,-0.0,-4.795,1522.218,209.27443 -0.7923604765312451,0.0066303917031271834,0.7923604765312451,0.0,0.3972188657407407,-0.0,0.007449932189569099,1.23,0.0,1.23,-0.0,-16.965,1521.4093,215.01389 -0.7818882094113102,0.00857214124491506,0.7818882094113102,0.0,0.40000023148148145,-0.0,0.009636721800113612,5.64,0.0,5.64,-0.0,-13.815000000000001,1520.6147,218.19922 -0.7716899909913809,0.007037917995390286,0.7716899909913809,0.0,0.4012189814814815,-0.0,0.00791604389298537,0.0,0.0,0.0,-0.0,-16.335,1519.8307,220.08687 -0.7617353288413738,0.010269865748295746,0.7617353288413738,0.0,0.40399999999999997,-0.0,0.011557140250802704,0.0,0.0,0.0,-0.0,-11.600000000000001,1519.0553,220.2124 -0.7520381934686219,0.007035663380338654,0.7520381934686219,0.0,0.40521898148148144,-0.0,0.00792153737884887,2.38,0.0,2.38,-0.0,-16.45,1518.2902,221.49377 -0.7425859258738922,0.009173174272347645,0.7425859258738922,0.0,0.4080003472222223,-0.0,0.010333327384195026,3.32,0.0,3.32,-0.0,-13.175,1517.5348,224.33191 -0.7333648810159994,0.007446611897827765,0.7333648810159994,0.0,0.40966990740740744,-0.0,0.008392529420079784,0.0,0.0,0.0,-0.0,-15.864999999999998,1516.7886,225.92064 -0.7243738197360056,0.00811729835029502,0.7243738197360056,0.0,0.41200046296296294,-0.0,0.009152856350816802,0.0,0.0,0.0,-0.0,-14.845,1516.0519,225.92932 -0.715605610069274,0.006583060189906831,0.715605610069274,0.0,0.41464768518518513,-0.0,0.0074264516432526045,0.04,0.0,0.04,-0.0,-17.535,1515.3246,226.1076 -0.7070504751795779,0.007829525729424304,0.7070504751795779,0.0,0.4159996527777778,-0.0,0.008836797255500515,0.57,0.0,0.57,-0.0,-15.41,1514.6063,226.50696 -0.6986818725913431,0.008044280216876669,0.6986818725913431,0.0,0.419205324074074,-0.0,0.009083444379853027,0.21,0.0,0.21,-0.0,-15.16,1513.8953,226.87418 -0.6904673604225632,0.015331693344187115,0.6904673604225632,0.0,0.41999976851851856,-0.0,0.017320329895829732,0.0,0.0,0.0,-0.0,-6.73,1513.189,226.99326 -0.6824386973910082,0.00916616166893683,0.6824386973910082,0.0,0.42400011574074076,-0.0,0.010359864245633316,0.0,0.0,0.0,-0.0,-13.635,1512.4905,226.983 -0.6746398969155833,0.006546281517261347,0.6746398969155833,0.0,0.42400011574074076,-0.0,0.007402158266487176,0.0,0.0,0.0,-0.0,-17.85,1511.8041,226.95914 -0.6670188358794729,0.008798573468370102,0.6670188358794729,0.0,0.428,-0.0,0.009953387215965975,0.49,0.0,0.49,-0.0,-14.265,1511.1256,227.20312 -0.6595094787832583,0.0176151891172322,0.6595094787832583,0.0,0.42846388888888887,-0.0,0.01993610498568612,0.0,0.0,0.0,-0.0,-5.075,1510.4495,227.35822 -0.6521233175764526,0.01627985291789898,0.6521233175764526,0.0,0.43200000000000005,-0.0,0.018433037830906353,8.31,0.0,8.31,-0.0,-6.265,1509.7769,231.75409 -0.6449081921025621,0.015574738298163082,0.6449081921025621,0.0,0.4336695601851852,-0.0,0.0176424284019298,4.81,0.0,4.81,-0.0,-6.915,1509.1124,238.24261 -0.6378537255507203,0.015112842778741082,0.6378537255507203,0.0,0.43600011574074077,-0.0,0.017126666592925312,3.74,0.0,3.74,-0.0,-7.39,1508.4556,242.61331 -0.6309795971877943,0.010550855383572035,0.6309795971877943,0.0,0.4399488425925926,-0.0,0.01196191445524045,0.0,0.0,0.0,-0.0,-12.26,1507.8085,244.53207 -0.624293111905107,0.0068862526495784065,0.624293111905107,0.0,0.4400003472222222,-0.0,0.007810507732305835,0.0,0.0,0.0,-0.0,-17.645,1507.1722,244.55362 -0.6177658686182497,0.006388861009948185,0.6177658686182497,0.0,0.4440001157407408,-0.0,0.007249376585444505,0.0,0.0,0.0,-0.0,-18.67,1506.5446,244.55247 -0.6113805974364737,0.006174911694304411,0.6113805974364737,0.0,0.4440081018518519,-0.0,0.0070094973623737195,0.0,0.0,0.0,-0.0,-19.08,1505.9241,244.46454 -0.6051318248532483,0.004791394767040997,0.6051318248532483,0.0,0.4480001157407407,-0.0,0.0054412045266907585,0.0,0.0,0.0,-0.0,-22.22,1505.3105,244.42218 -0.599014258189636,0.004493868051567571,0.599014258189636,0.0,0.4501516203703704,-0.0,0.005105385239782044,0.5,0.0,0.5,-0.0,-23.025,1504.7037,244.70547 -0.5929900505802153,0.012117894412024847,0.5929900505802153,0.0,0.452,-0.0,0.013772399931043077,2.5,0.0,2.5,-0.0,-10.775,1504.1001,246.09875 -0.587046826387551,0.011442216375947303,0.587046826387551,0.0,0.45599953703703705,-0.0,0.013009672016636675,0.0,0.0,0.0,-0.0,-11.635,1503.4985,247.18164 -0.5812320714793353,0.008811617128177842,0.5812320714793353,0.0,0.45599953703703705,-0.0,0.010022673059082204,2.81,0.0,2.81,-0.0,-14.98,1502.904,249.05463 -0.5755125549145478,0.016769416705421463,0.5755125549145478,0.0,0.46,-0.0,0.01908167938944474,8.77,0.0,8.77,-0.0,-6.65,1502.3135,254.64519 -0.5698702869893604,0.0149965240568585,0.5698702869893604,0.0,0.4604638888888889,-0.0,0.017071016043961336,1.76,0.0,1.76,-0.0,-8.17,1501.7251,259.77844 -0.5643156319268741,0.021163431164829324,0.5643156319268741,5.08489028765095e-6,0.463999537037037,-5.524080487690067e-16,0.024100388521348295,10.29,5.084890288203358e-6,10.28999491510971,-0.0,-3.545,1501.1401,265.8091 -0.5588368223440393,0.020997106879424018,0.5588368223440393,6.171946751176716e-7,0.46799976851851854,-0.0,0.023920266804145687,11.85,6.171946751176716e-7,11.849999382805324,-0.0,-3.77,1500.5575,276.80365 -0.553526599164677,0.008855852369472218,0.553526599164677,0.0,0.46799976851851854,-0.0,0.010092575005734506,0.0,0.0,0.0,-0.0,-15.219999999999999,1499.9873,282.592 -0.5483419258824249,0.009985888077236577,0.5483419258824249,0.0,0.4719996527777777,-0.0,0.011384686151579415,0.12,0.0,0.12,-0.0,-13.799999999999999,1499.4253,282.72406 -0.5432280226122823,0.023161748894050614,0.5432280226122823,0.050067078271801714,0.4719996527777777,-1.79892013539057e-11,0.02641604659784418,2.84,0.050067078289790914,2.789932921710209,-0.0,-2.495,1498.8657,284.25064 -0.5523263228871436,0.02962670100323102,0.5523263228871436,2.5191171699171897,0.4760001157407408,1.949117169917244,0.03376699770627249,0.57,0.5699999999999456,5.4423132667125166e-14,-0.0,0.905,1499.8577,284.38425 -0.5821809185262999,0.03235392691515863,0.5821809185262999,5.116056545772758,0.4800005787037037,4.986056545772758,0.03679821878907657,0.13,0.13,0.0,-0.0,2.04,1503.0015,281.28906 -0.615069509857053,0.02811013437679097,0.615069509857053,3.070197759421879,0.4800005787037037,-0.05980223677923426,0.031901819557953785,3.13,3.1299999962011134,3.798886478167951e-9,-0.0,-0.040000000000000036,1506.2833,279.56915 -0.6139515949838334,0.01855176943585496,0.6139515949838334,0.0,0.4840002314814815,-0.0,0.02105567632750004,0.0,0.0,0.0,-0.0,-6.0,1506.1747,280.4849 -0.6075150912981854,0.01858466328076598,0.6075150912981854,0.0,0.4840002314814815,-0.0,0.02110182776086508,0.0,0.0,0.0,-0.0,-5.970000000000001,1505.5453,280.5382 -0.6011976766151478,0.02114657659104977,0.6011976766151478,0.0,0.48800034722222224,-0.0,0.024020694634800947,0.0,0.0,0.0,-0.0,-4.295,1504.921,280.53754 -0.5949885201262536,0.022713631340923492,0.5949885201262536,-2.658113143941334e-15,0.4919994212962963,-2.658113143941334e-15,0.025811367958290345,0.0,0.0,0.0,-0.0,-3.4050000000000002,1504.301,280.4944 -0.5888928421564302,0.022406444057111074,0.5888928421564302,-5.590890766199589e-16,0.4919994212962963,-5.590890766199589e-16,0.02547269955621401,0.0,0.0,0.0,-0.0,-3.59,1503.686,280.39526 -0.5829168040801115,0.024676871956863404,0.5829168040801115,-7.98363137575182e-11,0.4959997685185185,-7.98363137575182e-11,0.02806519776986268,0.0,0.0,0.0,-0.0,-2.3400000000000003,1503.0769,280.43964 -0.5770757182496645,0.019398439868225863,0.5770757182496645,1.9539925233402755e-16,0.4959997685185185,-0.0,0.022070827447126372,0.88,1.9539925233402755e-16,0.8799999999999998,-0.0,-5.69,1502.4755,280.87225 -0.5713527208686325,0.02249278379594878,0.5713527208686325,3.0964097414154513e-7,0.4999997685185186,-0.0,0.025601599756704785,4.63,3.0964097414154513e-7,4.629999690359026,-0.0,-3.7449999999999997,1501.8802,283.68054 -0.5657200131065759,0.02375643878479885,0.5657200131065759,0.00010962372532806548,0.503999537037037,-6.003002407806104e-14,0.02705056619709563,2.23,0.0001096237253880955,2.2298903762746116,-0.0,-3.085,1501.2886,287.16336 -0.5602172626567024,0.019502545860553278,0.5602172626567024,0.0,0.503999537037037,-0.0,0.02221545575578027,0.0,0.0,0.0,-0.0,-5.82,1500.7048,288.29483 -0.5621960584047307,0.03453241920005203,0.5621960584047307,5.3738661585730885,0.5079996527777778,5.3738661585730885,0.03933054732379936,0.0,0.0,0.0,-0.0,2.1850000000000005,1500.9154,287.52612 -0.6613061950851504,0.039279714436527766,0.6613061950851504,14.768172327789756,0.5079996527777778,10.228172327789755,0.044450291169613125,4.54,4.54,0.0,-0.0,4.0,1510.6119,279.49255 -0.7031001494244911,0.017066182640651646,0.7031001494244911,0.0,0.511999537037037,-0.0,0.019266009758804468,5.13,0.0,5.13,-0.0,-7.970000000000001,1514.2717,279.88535 -0.6947641012252792,0.010262527715776161,0.6947641012252792,0.0,0.5159998842592592,-0.0,0.011590817305425851,0.07,0.0,0.07,-0.0,-14.704999999999998,1513.5594,282.44943 -0.6866279305413666,0.015763485181955812,0.6866279305413666,0.0,0.5159998842592592,-0.0,0.017812048300991694,0.0,0.0,0.0,-0.0,-9.125,1512.856,282.48163 -0.6854640170280895,0.032065059288249424,0.6854640170280895,1.243665536249625,0.520000462962963,1.243665536249625,0.036234540219324686,0.0,0.0,0.0,-0.0,0.645,1512.7546,281.9864 -0.731022651223064,0.03263672531196782,0.731022651223064,8.111591989947806,0.520000462962963,1.8415919899486997,0.03678708973257669,6.27,6.269999999999106,8.934569750707054e-13,-0.0,0.8649999999999998,1516.5975,280.3891 -0.8621252489305898,0.03774226292513637,0.8621252489305898,13.07196822167878,0.5240002314814816,6.99196822167878,0.04226733974130115,6.08,6.08,0.0,-0.0,2.79,1526.4487,275.89557 -0.9118753844183889,0.023224690734471573,0.9118753844183889,0.0,0.5279998842592593,-0.0,0.025952231863505967,0.0,0.0,0.0,-0.0,-4.3149999999999995,1529.7992,274.72583 -0.8978283051112693,0.02165599381233976,0.8978283051112693,1.0987044607446705e-13,0.5279998842592593,-0.0,0.0242139796272877,7.25,1.0987044607446705e-13,7.249999999999891,-0.0,-5.275,1528.8721,278.46176 -0.9323933416296827,0.029779128381614523,0.9323933416296827,11.099857234644912,0.5319998842592593,-4.8806557608520894e-5,0.033247551679695966,11.1,11.09990604120252,9.395879747920443e-5,-0.0,-0.925,1531.128,284.4642 -0.9459984033351727,0.021277009966326754,0.9459984033351727,1.4288570326925766e-15,0.5319998842592593,-0.0,0.023741763283558745,4.29,1.4288570326925766e-15,4.289999999999998,-0.0,-5.6499999999999995,1531.9932,290.3015 -0.9309726611361167,0.014677454916965097,0.9309726611361167,0.0,0.5359994212962963,-0.0,0.01638793653453305,1.97,0.0,1.97,-0.0,-10.73,1531.037,293.26282 -0.9164346856206848,0.017737852201191933,0.9164346856206848,0.0,0.5395353009259259,-0.0,0.01981715271528093,15.63,0.0,15.63,-0.0,-8.295,1530.097,302.49026 -0.9023118389805965,0.018578790777749748,0.9023118389805965,0.0,0.54,-0.0,0.0207692589894733,8.02,0.0,8.02,-0.0,-7.675000000000001,1529.1696,314.25906 -0.8886027775497736,0.019309566682606263,0.8886027775497736,0.0,0.5439997685185185,-0.0,0.021599108840981353,0.47,0.0,0.47,-0.0,-7.245,1528.2552,318.511 -0.8752701595864544,0.020960244552835537,0.8752701595864544,0.0,0.5439997685185185,-0.0,0.02345936702578429,0.0,0.0,0.0,-0.0,-6.12,1527.3524,318.74704 -0.8613678276944486,0.027932491518389585,0.8613678276944486,-2.648100099854759e-10,0.5479999999999999,-2.648100099854759e-10,0.03128250977293636,0.0,0.0,0.0,-0.0,-2.2150000000000003,1526.3962,318.77048 -0.8561614762764845,0.032006558603290984,0.8561614762764845,-0.009630517981383306,0.5498481481481481,-0.009630517981383306,0.03585369507768369,0.0,0.0,0.0,-0.0,-0.31499999999999995,1526.0342,318.78503 -0.8738579208631665,0.027532292415114165,0.8738579208631665,0.060192831988496766,0.5520004629629629,-1.2842788712459274e-11,0.03081695610232787,4.82,0.060192832001339555,4.759807167998661,-0.0,-2.5300000000000002,1527.256,318.7919 -0.9246800495723704,0.03428560896803619,0.9246800495723704,4.912160375267903,0.5559922453703704,0.7621603752971137,0.03829131594944334,4.15,4.149999999970789,2.921084762963489e-11,-0.0,0.4750000000000001,1530.632,318.6285 -0.9415729730106057,0.032451293894362535,0.9415729730106057,-0.008551168044354934,0.5560002314814815,-0.008551168044354934,0.03621710915680609,0.0,0.0,0.0,-0.0,-0.3299999999999996,1531.7131,318.66605 -1.0440831942596145,0.050236845247302715,1.0440831942596145,15.497033558349756,0.56,15.497033558349756,0.0558415886459159,0.0,0.0,0.0,-0.0,5.970000000000001,1537.8848,311.4627 -1.4102117385580102,0.06015866262104018,1.4102117385580102,22.964115074669756,0.5600517361111111,22.424115074669757,0.0660987688832208,0.54,0.54,0.0,-0.0,8.56,1555.8367,292.52307 -2.015852604253275,0.05439735176157621,2.015852604253275,21.992708728909754,0.5639996527777777,17.422708728909754,0.05895995287223796,4.57,4.57,0.0,-0.0,6.6899999999999995,1577.1748,272.3396 -2.406458831055732,0.03860260981423745,2.406458831055732,3.3443295386918064,0.5663305555555556,3.2743295386918065,0.04156168811593447,0.07,0.06999999999999997,4.662936703425658e-17,-0.0,1.4,1587.7521,261.80856 -2.526882643720649,0.04047719170244726,2.526882643720649,6.625938306962923,0.5679997685185185,4.9459383069629235,0.043500071637360936,1.68,1.68,0.0,-0.0,2.025,1590.6682,257.39163 -2.895548838549148,0.04474656837443693,2.895548838549148,14.112970088109602,0.5715351851851852,8.462970088109602,0.047843662504263425,5.65,5.65,0.0,-0.0,3.34,1598.8014,250.42369 -3.131725307752556,0.03681162839956361,3.131725307752556,1.0410370040260672,0.5719994212962963,0.6010370040314352,0.039244572008699706,0.44,0.439999999994632,5.367959410307321e-12,-0.0,0.42000000000000015,1603.484,245.74199 -3.081736948020229,0.038887615381580705,3.081736948020229,2.538652957125043,0.5760005787037037,2.538652957125043,0.04148262427676182,0.0,0.0,0.0,-0.0,1.125,1602.5231,243.90506 -3.1730410731093293,0.04400221632724595,3.1730410731093293,7.35303231618131,0.5760005787037037,7.35303231618131,0.04688751083404005,0.0,0.0,0.0,-0.0,2.925,1604.2667,239.01755 -3.8385193261222916,0.06486285942994113,3.8385193261222916,22.531097028589752,0.5800003472222222,22.531097028589752,0.06862959644303662,0.0,0.0,0.0,-0.0,8.6,1615.6372,224.20317 -5.756184314410457,0.08483497792718096,5.756184314410457,35.48917418786975,0.5807946759259259,33.18917418786975,0.08843699526717008,2.3,2.3,0.0,-0.0,12.584999999999999,1639.8351,196.4478 -9.078173781135916,0.07906682210178292,9.078173781135916,34.29421463706975,0.5840005787037037,29.244214637069753,0.0810786601830048,5.05,5.05,0.0,-0.0,11.11,1667.0435,165.39615 -11.200169047922957,0.05177238099928873,11.200169047922957,12.114855588189753,0.5853530092592593,11.364855588189753,0.05269319994132739,0.75,0.75,0.0,-0.0,4.425,1679.588,145.19537 -10.85895705377211,0.046345522580156326,10.85895705377211,6.818122546531899,0.5880002314814815,6.818122546531899,0.047221766923719995,0.0,0.0,0.0,-0.0,2.7250000000000005,1677.7404,136.07994 -10.139174478943165,0.042662597734729524,10.139174478943165,6.031674760201911,0.5903311342592593,3.501674760201912,0.043575589836676934,2.53,2.5299999999999994,7.022160630754114e-16,-0.0,1.485,1673.6445,130.91185 -9.646285070641012,0.044008736946605814,9.646285070641012,7.788483349841476,0.5920008101851852,4.678483349841476,0.04503061024046471,3.11,3.11,0.0,-0.0,1.9249999999999998,1670.6685,126.78221 -9.790180602660191,0.0526471672000472,9.790180602660191,13.408937728749752,0.5943310185185184,11.618937728749753,0.0538411250975687,1.79,1.79,0.0,-0.0,4.52,1671.5527,118.63661 -10.709111132219585,0.061781349159372605,10.709111132219585,17.864009288829756,0.5959997685185184,17.864009288829756,0.06298058627902174,0.0,0.0,0.0,-0.0,6.855,1676.9105,103.91231 -11.712331466803285,0.05862340292611314,11.712331466803285,15.403424348669752,0.5987809027777777,15.403424348669752,0.05957136417296156,0.0,0.0,0.0,-0.0,5.935,1682.2583,87.247284 -12.53823020549926,0.06113002518956594,12.53823020549926,16.927917192029753,0.5999998842592592,16.927917192029753,0.0619686190465724,0.0,0.0,0.0,-0.0,6.505,1686.3276,71.00653 -14.113046244986307,0.07310031024362428,14.113046244986307,23.94860791802975,0.6027810185185185,23.94860791802975,0.07379390939570539,0.0,0.0,0.0,-0.0,9.129999999999999,1693.3936,50.650555 -17.2954390997366,0.10111570802346218,17.2954390997366,22.70743179321289,0.6039996527777778,22.70743179321289,0.10134833627979571,0.0,0.0,0.0,-0.0,14.155,1705.5372,22.707432 -16.465029167604907,0.11879143715349723,16.465029167604907,8.347920417785645,0.6063304398148148,8.347920417785645,0.11927022156415418,0.0,0.0,0.0,-0.0,16.77,1702.5988,8.34792 -13.9779401101994,0.09616465059257376,13.9779401101994,3.626988706588598,0.6079995370370371,3.066988706588598,0.09711003497403074,0.56,0.56,0.0,-0.0,13.355,1692.8191,3.0669887 -12.051674784878212,0.06239249078743199,12.051674784878212,4.986147811701678,0.6098476851851852,1.126147811701678,0.06333718019520697,3.86,3.86,0.0,-0.0,6.59,1683.964,1.1261623 -10.43421805864518,0.057889161810953216,10.43421805864518,0.5877999911109405,0.6120002314814815,0.4077999911109405,0.05906754988777583,0.18,0.18,0.0,-0.0,5.4750000000000005,1675.3575,0.41427547 -8.92047759784867,0.05982268042511429,8.92047759784867,0.1370602503045956,0.6133524305555556,0.1370602503045956,0.06138338975196623,0.0,0.0,0.0,-0.0,6.025,1665.997,0.16372138 -7.764096378486047,0.0644533851065342,7.764096378486047,0.05230419417518717,0.6159914351851852,0.05230419417518717,0.0664656978119169,0.0,0.0,0.0,-0.0,7.175000000000001,1657.7054,0.07661511 -6.867626714362132,0.06612601258279384,6.867626714362132,0.02418670209964778,0.6162851851851852,0.02418670209964778,0.0684932908222406,0.0,0.0,0.0,-0.0,7.63,1650.3783,0.040343877 -6.15416595350636,0.07446527300283742,6.15416595350636,0.012527274109127375,0.6195356481481481,0.012527274109127375,0.07743846029002013,0.0,0.0,0.0,-0.0,9.455,1643.8276,0.022527732 -5.574723115184365,0.08263038905050236,5.574723115184365,0.04690177506842748,0.6199998842592592,0.006901775068427481,0.08623940484436991,0.04,0.04,0.0,-0.0,11.14,1637.9221,0.012964353 -5.0934704963677015,0.07623768733478302,5.0934704963677015,0.00392206264510499,0.6227818287037037,0.00392206264510499,0.07983027742159252,0.0,0.0,0.0,-0.0,9.85,1632.5304,0.007558599 -4.680063219621392,0.059846064101596104,4.680063219621392,0.002219959940473973,0.6240006944444445,0.002219959940473973,0.06286087323655722,0.0,0.0,0.0,-0.0,6.125,1627.4752,0.004345517 -4.414628125134825,0.07321996846826292,4.414628125134825,1.641291444281532,0.6253526620370371,0.0012914442815320805,0.0770736359745667,1.64,1.64,0.0,-0.0,9.235,1623.9883,0.0025503684 -4.338509516693605,0.0958317151760034,4.338509516693605,4.330736058181329,0.6278895833333333,0.000736058181328511,0.10094003080071316,4.33,4.33,0.0,-0.0,13.46,1622.9496,0.0014614376 -4.183580165240728,0.06689158390164937,4.183580165240728,0.09043509925408005,0.6280518518518519,0.0004350992540800578,0.07055164751106048,0.09,0.09,0.0,-0.0,7.795,1620.778,0.0008664449 -3.90895660175926,0.0563311150176916,3.90895660175926,0.00025646065138147813,0.6303303240740741,0.00025646065138147813,0.05956235944289935,0.0,0.0,0.0,-0.0,5.154999999999999,1616.7231,0.00051161257 -3.66535095329201,0.06229434329149334,3.66535095329201,0.00014959840842531353,0.6319916666666667,0.00014959840842531353,0.06602458137649742,0.0,0.0,0.0,-0.0,6.68,1612.8804,0.00029875056 -3.449475592356152,0.07759449940050146,3.449475592356152,8.640860402316447e-5,0.6322856481481481,8.640860402316447e-5,0.08242618551910423,0.0,0.0,0.0,-0.0,10.115,1609.2552,0.00017266814 -3.2564562087517785,0.10132264055142018,3.2564562087517785,0.2300230148609771,0.6347809027777778,2.301486097708457e-5,0.10786233300729232,0.23,0.23,0.0,-0.0,14.36,1605.8164,4.6019133e-5 -3.08294032919834,0.1223839941295254,3.08294032919834,-5.2921671619965985e-5,0.6360001157407408,-5.2921671619965985e-5,0.1305488992757184,0.0,0.0,0.0,-0.0,17.48,1602.5464,-0.00010589942 -2.9262804451391338,0.10335123224904931,2.9262804451391338,-0.00012112083184919748,0.6362856481481481,-0.00012112083184919748,0.11046103561193535,0.0,0.0,0.0,-0.0,14.709999999999999,1599.4319,-0.00024253578 -2.7842147847695133,0.11819703486947482,2.7842147847695133,-0.00016140774638632885,0.6387810185185185,-0.00016140774638632885,0.12656329854269013,0.0,0.0,0.0,-0.0,16.89,1596.4598,-0.00032333823 -2.654786596234205,0.13317654732850523,2.654786596234205,-0.0001536407132538817,0.6399917824074074,-0.0001536407132538817,0.14285747856810133,0.0,0.0,0.0,-0.0,18.89,1593.6171,-0.000307755 -2.536176122668455,0.12702528241480676,2.536176122668455,-9.587997190048233e-5,0.6400512731481481,-9.587997190048233e-5,0.13649285375123466,0.0,0.0,0.0,-0.0,18.119999999999997,1590.8875,-0.00019194416 -2.42721706547069,0.14139571065480383,2.42721706547069,-5.020728345933891e-5,0.6418483796296296,-5.020728345933891e-5,0.1521852164615676,0.0,0.0,0.0,-0.0,19.915,1588.265,-0.00010046503 -2.3285058815298103,0.1423364571726099,2.3285058815298103,0.05997330812741137,0.6435354166666667,-2.6691872588626676e-5,0.15343728461601427,0.06,0.06,0.0,-0.0,20.01,1585.7855,-5.3398002e-5 -2.252373565606749,0.11768603810046699,2.252373565606749,24.159994512056386,0.6439998842592592,-5.487943615624666e-6,0.12702339747990088,24.16,24.16,0.0,-0.0,16.815,1583.8003,-1.097649e-5 -2.196702442235177,0.07720135432781065,2.196702442235177,8.470020626663214,0.6442856481481481,2.0626663212962832e-5,0.08340531701678912,8.47,8.47,0.0,-0.0,10.004999999999999,1582.3057,4.124482e-5 -2.1509417567316493,0.0738089433653612,2.1509417567316493,4.482368530709616e-5,0.6458482638888889,4.482368530709616e-5,0.07980369626916978,0.0,0.0,0.0,-0.0,9.275,1581.0485,8.960722e-5 -2.105591973414223,0.10861738555484038,2.105591973414223,6.026227234885296e-5,0.6471538194444444,6.026227234885296e-5,0.11753387846748012,0.0,0.0,0.0,-0.0,15.45,1579.7759,0.000120452 -2.0519417713780923,0.11196489442587843,2.0519417713780923,6.009630116797418e-5,0.6479927083333333,6.009630116797418e-5,0.12127451429108058,0.0,0.0,0.0,-0.0,15.945,1578.2345,0.00012012046 -1.9843367476559994,0.10008077774640567,1.9843367476559994,3.99778643289991e-5,0.6480521990740741,3.99778643289991e-5,0.10853985731394264,0.0,0.0,0.0,-0.0,14.125,1576.2338,7.992379e-5 -1.917092927952485,0.10625130692948774,1.917092927952485,1.915025743187408e-5,0.6487947916666666,1.915025743187408e-5,0.11538264515675575,0.0,0.0,0.0,-0.0,15.105,1574.1749,3.8293183e-5 -1.8539800135190174,0.12053114011155965,1.8539800135190174,5.731173685550696e-6,0.6498487268518519,5.731173685550696e-6,0.13105613734260288,0.0,0.0,0.0,-0.0,17.185000000000002,1572.1758,1.14616905e-5 -1.7929668384035837,0.12218619984072376,1.7929668384035837,2.020908280440115e-6,0.6507814814814814,2.020908280440115e-6,0.13302480944744588,0.0,0.0,0.0,-0.0,17.41,1570.1774,4.041735e-6 -1.7244112958034126,0.1109252846851095,1.7244112958034126,3.666921290248586e-7,0.6515357638888889,3.666921290248586e-7,0.12094432250897229,0.0,0.0,0.0,-0.0,15.81,1567.8491,7.3338157e-7 -1.6665205891084443,0.11204006214172023,1.6665205891084443,-1.3214723129213786e-6,0.6519921296296297,-1.3214723129213786e-6,0.12231888993258182,0.0,0.0,0.0,-0.0,15.985,1565.8098,-2.6429796e-6 -1.641193993503119,0.09844032092583027,1.641193993503119,1.1199974284337113,0.6520001157407407,-2.5715662887442423e-6,0.10753428349699462,1.12,1.12,0.0,-0.0,13.875,1564.8953,-5.143265e-6 -1.6701967754170524,0.07725015244168236,1.6701967754170524,5.009997088389105,0.6520517361111111,-2.9116108941847537e-6,0.08433018213503993,5.01,5.01,0.0,-0.0,9.99,1565.9414,-5.8233913e-6 -1.784728809269992,0.09296026081048799,1.784728809269992,6.639997979949619,0.6522856481481482,-2.0200503799759412e-6,0.10122409360837768,6.64,6.64,0.0,-0.0,12.89,1569.9023,-4.0401824e-6 -2.0340520367703463,0.10859206040751175,2.0340520367703463,11.769998858345254,0.6527943287037037,-1.1416547467042003e-6,0.11766022379563108,11.77,11.77,0.0,-0.0,15.325,1577.7115,-2.2833356e-6 -2.3618595255005315,0.09863726193506288,2.3618595255005315,12.019999340763365,0.653352662037037,-6.592366358173115e-7,0.10627306585276193,12.02,12.02,0.0,-0.0,13.65,1586.6349,-1.318482e-6 -2.430096343317308,0.0973940707419807,2.430096343317308,-3.6831622962947935e-7,0.653848611111111,-3.6831622962947935e-7,0.1048212634936572,0.0,0.0,0.0,-0.0,13.415,1588.3358,-7.366352e-7 -2.407118053849304,0.09518375148146178,2.407118053849304,3.6999997964285565,0.653848611111111,-2.0357144362230752e-7,0.10247899446571102,3.7,3.7,0.0,-0.0,13.049999999999999,1587.7684,-4.0714372e-7 -2.4799906722630873,0.10978379090771392,2.4799906722630873,5.199999879649937,0.653848611111111,-1.2035006317986555e-7,0.11806559247582145,5.2,5.2,0.0,-0.0,15.355,1589.5496,-2.4070042e-7 -2.649398139711185,0.10022665708217243,2.649398139711185,8.589999929011274,0.6543310185185185,-7.098872535256483e-8,0.10752056625237949,8.59,8.59,0.0,-0.0,13.815,1593.4957,-1.4197755e-7 -2.8439306243439337,0.11397220776993443,2.8439306243439337,6.339999963859209,0.6543310185185185,-3.6140791065594346e-8,0.12194262530345278,6.34,6.34,0.0,-0.0,15.875,1597.7272,-7.228161e-8 -3.118438715657688,0.10057845997752464,3.118438715657688,11.109999985311006,0.653848611111111,-1.4688993639818974e-8,0.10724284431038307,11.11,11.11,0.0,-0.0,13.785,1603.2301,-2.9377992e-8 -3.487754055959852,0.09877827224813637,3.487754055959852,12.669999992118111,0.653848611111111,-7.881888298072677e-9,0.10488608296773089,12.67,12.67,0.0,-0.0,13.425,1609.9143,-1.5763778e-8 -3.5373151381657366,0.0972390248059027,3.5373151381657366,0.44999999565443094,0.653352662037037,-4.34556904894501e-9,0.10319764332907037,0.45,0.45,0.0,-0.0,13.175,1610.757,-8.6911385e-9 -3.3665412121117066,0.11324197302621293,3.3665412121117066,0.029999997499934573,0.653352662037037,-2.500065425461501e-9,0.12040210959580555,0.03,0.03,0.0,-0.0,15.690000000000001,1607.8019,-5.000131e-9 -3.1756429549371075,0.09619941604328884,3.1756429549371075,-1.3764913463874019e-9,0.6527943287037037,-1.3764913463874019e-9,0.10250423534127096,0.0,0.0,0.0,-0.0,13.08,1604.3157,-2.7529827e-9 -3.091971198776623,0.11448998044770556,3.091971198776623,3.209999999242386,0.6522856481481482,-7.576139103072179e-10,0.12211492188379157,3.21,3.21,0.0,-0.0,15.950000000000001,1602.7211,-1.5152278e-9 -3.2442315674334385,0.11654168773002044,3.2442315674334385,8.629999999575356,0.6520517361111111,-4.2464528934947806e-10,0.12408102245198747,8.63,8.63,0.0,-0.0,16.22,1605.5918,-8.492906e-10 -3.4629761514456354,0.1119289487682618,3.4629761514456354,6.0799999997844125,0.6519921296296297,-2.1558761673797024e-10,0.1188813535174709,6.08,6.08,0.0,-0.0,15.515,1609.4885,-4.3117523e-10 -3.4690193477219404,0.09288330730614457,3.4690193477219404,-1.2496609287297884e-10,0.6518894675925926,-1.2496609287297884e-10,0.09864632063848627,0.0,0.0,0.0,-0.0,12.485,1609.5927,-2.4993219e-10 -3.391301449230948,0.10066283349748625,3.391301449230948,3.659999999928573,0.6511538194444445,-7.142710029444865e-11,0.10699848456303147,3.66,3.66,0.0,-0.0,13.815,1608.2395,-1.428542e-10 -3.3660939542904464,0.0903889708560639,3.3660939542904464,3.4599999999582534,0.6503311342592593,-4.174667901291327e-11,0.09610461733290067,3.46,3.46,0.0,-0.0,12.105,1607.794,-8.349336e-11 -3.267992041426089,0.0813406092578807,3.267992041426089,0.6099999999777134,0.6493528935185184,-2.2286644746934063e-11,0.08657921041401484,0.61,0.61,0.0,-0.0,10.47,1606.0276,-4.457329e-11 -3.115864595741063,0.09026820104358821,3.115864595741063,-1.2476342006570937e-11,0.6482863425925927,-1.2476342006570937e-11,0.09625238270876635,0.0,0.0,0.0,-0.0,12.18,1603.1808,-2.4952684e-11 -2.960991604392535,0.12108476015446178,2.960991604392535,-4.931166152251063e-12,0.6480008101851852,-4.931166152251063e-12,0.1293575439665892,0.0,0.0,0.0,-0.0,17.015,1600.1361,-9.862332e-12 -2.8150303623204374,0.169551126480314,2.8150303623204374,7.621329782605899e-13,0.647890162037037,7.621329782605899e-13,0.18147762921587807,0.0,0.0,0.0,-0.0,22.79,1597.1172,1.524266e-12 -2.680227734568445,0.1855915643017691,2.680227734568445,2.96900741847894e-12,0.64678125,2.96900741847894e-12,0.19901154283329192,0.0,0.0,0.0,-0.0,24.439999999999998,1594.1866,5.938015e-12 -2.5578755331184477,0.15416183516476734,2.5578755331184477,1.5700718720184681e-12,0.645352199074074,1.5700718720184681e-12,0.16559901333951474,0.0,0.0,0.0,-0.0,21.27,1591.3962,3.1401437e-12 -2.446673587948615,0.12122207075380743,2.446673587948615,-3.0593675379418033e-13,0.6440515046296297,-3.0593675379418033e-13,0.13043302652099203,0.0,0.0,0.0,-0.0,17.255,1588.7418,-6.118735e-13 -2.345013158979074,0.11396849109421134,2.345013158979074,-2.0051202451479693e-12,0.6438894675925926,-2.0051202451479693e-12,0.12282422385356882,0.0,0.0,0.0,-0.0,16.259999999999998,1586.2074,-4.0102405e-12 -2.2515081906344268,0.1446312635621659,2.2515081906344268,-3.0143632814623812e-12,0.6427809027777778,-3.0143632814623812e-12,0.1561087532823931,0.0,0.0,0.0,-0.0,20.325000000000003,1583.7773,-6.0287266e-12 -2.1649375444604937,0.1422965687085797,2.1649375444604937,-2.8205506505988777e-12,0.6407940972222222,-2.8205506505988777e-12,0.15381619548357783,0.0,0.0,0.0,-0.0,20.125,1581.4358,-5.6411013e-12 -2.0915180732586176,0.1290894698244741,2.0915180732586176,-9.400988017474904e-13,0.6399997685185186,-9.400988017474904e-13,0.1397219564348231,0.0,0.0,0.0,-0.0,18.515,1579.3754,-1.8801976e-12 -2.0403064754529376,0.13424258254570737,2.0403064754529376,0.010000000002347728,0.6395354166666667,2.3477274812274085e-12,0.14543583465798443,0.01,0.01,0.0,-0.0,19.205000000000002,1577.8949,4.695455e-12 -2.003483926875008,0.1494900135866175,2.003483926875008,6.218696131347432e-12,0.6378482638888888,6.218696131347432e-12,0.1620663211688525,0.0,0.0,0.0,-0.0,21.1,1576.8073,1.2437392e-11 -1.9736979192801778,0.14905886273290342,1.9736979192801778,9.842088950354209e-12,0.6360001157407408,9.842088950354209e-12,0.16169062638592513,0.0,0.0,0.0,-0.0,21.11,1575.9127,1.9684178e-11 -1.9441321931162578,0.17915459230801056,1.9441321931162578,2.580000000012387,0.6355359953703703,1.2387188498699337e-11,0.19444798967007276,2.58,2.58,0.0,-0.0,24.34,1575.0114,2.4774377e-11 -1.9083938049123685,0.18455111725194756,1.9083938049123685,0.9500000000130232,0.6338483796296296,1.3023276035670408e-11,0.20044620031315447,0.95,0.95,0.0,-0.0,24.924999999999997,1573.9033,2.6046552e-11 -1.860608494215217,0.13211992018168342,1.860608494215217,1.091963412172437e-11,0.6319996527777777,1.091963412172437e-11,0.14363739820031599,0.0,0.0,0.0,-0.0,19.195,1572.3889,2.1839268e-11 -1.8834871014870096,0.11511327243708648,1.8834871014870096,6.5851417205449055e-12,0.6315355324074073,6.5851417205449055e-12,0.12509014242333252,0.0,0.0,0.0,-0.0,16.885,1573.1188,1.31702834e-11 -2.1351240377004603,0.11255539790787533,2.1351240377004603,13.700000000003486,0.6287943287037038,3.4865966451991186e-12,0.12173107146591772,13.7,13.7,0.0,-0.0,16.505000000000003,1580.6077,6.9731933e-12 -2.4141248229730947,0.11537397872104622,2.4141248229730947,7.870000000001964,0.628,1.963582508434901e-12,0.12420309854333633,7.87,7.87,0.0,-0.0,16.86,1587.942,3.927165e-12 -2.430295040056524,0.10889438054709245,2.430295040056524,0.060000000001111796,0.6267813657407407,1.1118015145804392e-12,0.11719821729924909,0.06,0.06,0.0,-0.0,15.93,1588.3407,2.223603e-12 -2.4490002049600728,0.11623606251433785,2.4490002049600728,5.460000000000642,0.624052199074074,6.421506122025347e-13,0.12506369240779583,5.46,5.46,0.0,-0.0,17.080000000000002,1588.7986,1.2843012e-12 -2.6378127612133335,0.11910649746492018,2.6378127612133335,7.81000000000037,0.6238902777777778,3.702270965941747e-13,0.12779536020840376,7.81,7.81,0.0,-0.0,17.445,1593.234,7.404542e-13 -2.7184027482248103,0.11594365165535955,2.7184027482248103,2.1706092056187414e-13,0.6207944444444444,2.1706092056187414e-13,0.12426161082522827,0.0,0.0,0.0,-0.0,17.06,1595.0312,4.3412184e-13 -2.960095986617219,0.11495019862276289,2.960095986617219,12.500000000000124,0.6199998842592592,1.2511485716832887e-13,0.12280524189794698,12.5,12.5,0.0,-0.0,16.884999999999998,1600.118,2.5022971e-13 -3.547125931250895,0.10800029397695586,3.547125931250895,19.340000000000074,0.6183303240740741,7.329868726958957e-14,0.11460657345776276,19.34,19.34,0.0,-0.0,15.785,1610.9224,1.4659737e-13 -3.847222644713514,0.10986240545793238,3.847222644713514,4.290000000000039,0.615999537037037,3.895924652765884e-14,0.11623264022923781,4.29,4.29,0.0,-0.0,16.08,1615.7725,7.791849e-14 -3.7639387727863753,0.12144526714483468,3.7639387727863753,1.9805359948087757e-14,0.6151532407407407,1.9805359948087757e-14,0.12859113777438264,0.0,0.0,0.0,-0.0,17.785,1614.4655,3.961072e-14 -3.6542046680005127,0.13254025016736465,3.6542046680005127,4.200000000000012,0.6120002314814815,1.1586423078023673e-14,0.1404927160906121,4.2,4.2,0.0,-0.0,19.365,1612.6985,2.3172846e-14 -3.566705283519805,0.09393018035277494,3.566705283519805,6.597966530769597e-15,0.6115356481481482,6.597966530769597e-15,0.09965546746949337,0.0,0.0,0.0,-0.0,13.68,1611.2511,1.3195933e-14 -3.3605460223218766,0.08072754221443411,3.3605460223218766,3.877096380896474e-15,0.6080510416666667,3.877096380896474e-15,0.08583751827921636,0.0,0.0,0.0,-0.0,11.375,1607.6954,7.754193e-15 -3.2032129876779996,0.087793728862914,3.2032129876779996,1.0400000000000023,0.6078891203703704,2.240509295155502e-15,0.09351755532412451,1.04,1.04,0.0,-0.0,12.75,1604.8319,4.4810186e-15 -3.124378760096278,0.09296095804200928,3.124378760096278,6.040000000000001,0.6042853009259259,1.1946809974332524e-15,0.09911357666742744,6.04,6.04,0.0,-0.0,13.785,1603.3438,2.389362e-15 -3.1011616365621326,0.09127067208561349,3.1011616365621326,2.0500000000000003,0.6039916666666666,4.254201272365468e-16,0.09733846136171145,2.05,2.05,0.0,-0.0,13.5,1602.8983,8.5084025e-16 -3.0971390461765886,0.08747897666836309,3.0971390461765886,3.18,0.6002854166666667,8.632609735580604e-17,0.09329920111703771,3.18,3.18,0.0,-0.0,12.915,1602.8208,1.726522e-16 -3.114202742208925,0.10107996247679803,3.114202742208925,0.71,0.5999998842592592,4.771939110241659e-17,0.10778303404815844,0.71,0.71,0.0,-0.0,15.27,1603.1489,9.543878e-17 -3.2362043297321197,0.10630740214011472,3.2362043297321197,8.07,0.5962851851851851,2.11459657699668e-17,0.11319508921458367,8.07,8.07,0.0,-0.0,16.18,1605.4438,4.229193e-17 -3.5499112043615146,0.1173741115038058,3.5499112043615146,11.32,0.5959997685185184,9.676452277054536e-18,0.12455015466346808,11.32,11.32,0.0,-0.0,17.78,1610.9692,1.9352905e-17 -3.586128812847932,0.10877339782455475,3.586128812847932,5.496014223699849e-18,0.5920523148148148,5.496014223699849e-18,0.11538019164232281,0.0,0.0,0.0,-0.0,16.615000000000002,1611.5754,1.09920284e-17 -3.3728573245767883,0.09513991989363156,3.3728573245767883,3.0312114197115423e-18,0.591992824074074,3.0312114197115423e-18,0.10114844599963248,0.0,0.0,0.0,-0.0,14.45,1607.9138,6.062423e-18 -3.3942973774611547,0.09143628196662133,3.3942973774611547,7.24,0.5880002314814815,1.788394676432004e-18,0.09718803327394591,7.24,7.24,0.0,-0.0,13.91,1608.2922,3.5767894e-18 -3.576721874821362,0.09779345501822471,3.576721874821362,6.04,0.5879922453703703,1.0490533037041715e-18,0.1037434351594843,6.04,6.04,0.0,-0.0,14.975,1611.4186,2.0981066e-18 -3.59244566564599,0.11372998090118672,3.59244566564599,2.31,0.5840005787037037,6.095924584809671e-19,0.12062996575422805,2.31,2.31,0.0,-0.0,17.585,1611.6805,1.2191849e-18 -3.461164538790925,0.12115690977512625,3.461164538790925,0.4,0.5835359953703704,3.554710454748896e-19,0.1286850027803212,0.4,0.4,0.0,-0.0,18.685000000000002,1609.4573,7.109421e-19 -3.31570421205582,0.12787369063522624,3.31570421205582,1.53,0.5800003472222222,1.887045838947515e-19,0.13603585512259966,1.53,1.53,0.0,-0.0,19.73,1606.8932,3.7740917e-19 -3.1960449629333127,0.0915018191565809,3.1960449629333127,0.88,0.5787818287037036,8.282046363019742e-20,0.0974755255763198,0.88,0.88,0.0,-0.0,14.215,1604.6981,1.6564093e-19 -3.094715345448382,0.0982018381011583,3.094715345448382,2.2,0.5760005787037037,4.26348694808092e-20,0.10473854007075792,2.2,2.2,0.0,-0.0,15.469999999999999,1602.774,8.526974e-20 -2.9657889769079215,0.11039670325695387,2.9657889769079215,2.72,0.5738478009259259,9.280903464946749e-21,0.11793212950474265,2.72,2.72,0.0,-0.0,17.5,1600.2328,1.8561807e-20 -2.8299901880390617,0.07657849298260215,2.8299901880390617,-1.9495603368586368e-20,0.5719994212962963,-1.9495603368586368e-20,0.08194890782932157,0.0,0.0,0.0,-0.0,11.61,1597.4337,-3.8991207e-20 -2.713994445302835,0.0685226424168608,2.713994445302835,-3.4999598223684083e-20,0.5680513888888888,-3.4999598223684083e-20,0.07344301513502313,0.0,0.0,0.0,-0.0,9.985,1594.9343,-6.9999196e-20 -2.642010915848547,0.07130600925132738,2.642010915848547,1.75,0.5679997685185185,-2.894272328462939e-20,0.07650324855650514,1.75,1.75,0.0,-0.0,10.629999999999999,1593.329,-5.7885447e-20 -2.7441113528772427,0.090888122366716,2.7441113528772427,10.13,0.5639996527777777,-1.5931109241272045e-20,0.09737424552582027,10.13,10.13,0.0,-0.0,14.620000000000001,1595.5934,-3.186222e-20 -3.22916048822854,0.0853018840185974,3.22916048822854,15.46,0.5639916666666667,-7.771900653244848e-21,0.09083598012977472,15.46,15.46,0.0,-0.0,13.489999999999998,1605.3137,-1.5543801e-20 -4.222558359512367,0.09590624084998396,4.222558359512367,33.03,0.56,-4.399120577070678e-21,0.10111932741449924,33.03,33.03,0.0,-0.0,15.355,1621.3318,-8.798241e-21 -4.903977256711636,0.09738256137978438,4.903977256711636,6.54,0.558330324074074,-2.271638698772e-21,0.10211319391258007,6.54,6.54,0.0,-0.0,15.565,1630.2662,-4.5432774e-21 -4.934786951824842,0.07384114554928149,4.934786951824842,1.45,0.5560002314814815,-1.1871198954420598e-21,0.07741042755388405,1.45,1.45,0.0,-0.0,11.155,1630.6403,-2.3742398e-21 -4.620238962428118,0.06032449181464136,4.620238962428118,0.01,0.5520519675925926,-5.6929120364087e-22,0.06339332944667848,0.01,0.01,0.0,-0.0,8.135,1626.7069,-1.1385824e-21 -4.3420049512086845,0.06012303644738955,4.3420049512086845,1.6,0.5520004629629629,-6.656613422090255e-23,0.06332602204840126,1.6,1.6,0.0,-0.0,8.120000000000001,1622.9977,-1.3313227e-22 -4.260828332262331,0.08161469846408419,4.260828332262331,4.69,0.5479999999999999,1.9431046374738642e-22,0.08602236504249938,4.69,4.69,0.0,-0.0,13.075,1621.8706,3.8862093e-22 -4.614793012136916,0.07067790549813487,4.614793012136916,11.59,0.5479921296296296,1.4994504003372706e-22,0.07427665981726497,11.59,11.59,0.0,-0.0,10.73,1626.6365,2.9989008e-22 -5.671603422237363,0.07295935427008865,5.671603422237363,20.11,0.5439997685185185,8.565608849982066e-23,0.07609816767813368,20.11,20.11,0.0,-0.0,11.23,1638.951,1.7131218e-22 -6.480240468075204,0.08680655812806254,6.480240468075204,8.43,0.540794212962963,5.0645826214606086e-23,0.09010349496560982,8.43,8.43,0.0,-0.0,14.040000000000001,1646.9109,1.0129165e-22 -6.48796741579419,0.08615109758460214,6.48796741579419,4.53,0.54,2.94280868823662e-23,0.08941927582869628,4.53,4.53,0.0,-0.0,13.940000000000001,1646.982,5.8856174e-23 -6.29251120100558,0.08249166543249145,6.29251120100558,3.39,0.5359994212962963,1.731960841263922e-23,0.08571609525015726,3.39,3.39,0.0,-0.0,13.375,1645.1553,3.4639217e-23 -6.3339214970048525,0.08327978991254534,6.3339214970048525,9.64,0.5359994212962963,9.684878465556381e-24,0.08651442617339204,9.64,9.64,0.0,-0.0,13.525,1645.547,1.9369757e-23 -6.506826340963221,0.06253416688007671,6.506826340963221,10.63,0.5319998842592593,5.616814285196629e-24,0.06489959640634786,10.63,10.63,0.0,-0.0,9.075,1647.1554,1.12336286e-23 -6.1798182755102316,0.05825235294792711,6.1798182755102316,2.8743509838941334e-24,0.5298482638888888,2.8743509838941334e-24,0.06056905117517625,0.0,0.0,0.0,-0.0,8.065000000000001,1644.076,5.748702e-24 -5.635986142999722,0.0692085852602452,5.635986142999722,1.5362214159401566e-24,0.5279998842592593,1.5362214159401566e-24,0.07220260942892816,0.0,0.0,0.0,-0.0,10.87,1638.5748,3.0724428e-24 -5.143007147370819,0.09033773018183988,5.143007147370819,8.700269023668149e-25,0.5240002314814816,8.700269023668149e-25,0.09456128452783426,0.0,0.0,0.0,-0.0,15.345,1633.1084,1.7400538e-24 -4.728033362736944,0.09661442549813944,4.728033362736944,4.853943487181868e-25,0.5240002314814816,4.853943487181868e-25,0.1014435193112039,0.0,0.0,0.0,-0.0,16.505000000000003,1628.0842,9.707887e-25 -4.364740491079815,0.10637276540282045,4.364740491079815,2.08638597814242e-25,0.520000462962963,2.08638597814242e-25,0.11201812571021601,0.0,0.0,0.0,-0.0,18.29,1623.3096,4.172772e-25 -4.084256410189793,0.11499376807192993,4.084256410189793,-7.229896637803765e-26,0.5183310185185186,-7.229896637803765e-26,0.12139328193782889,0.0,0.0,0.0,-0.0,19.705,1619.343,-1.4459793e-25 -3.9397189175350404,0.11574222116743423,3.9397189175350404,4.62,0.5159998842592592,-2.8092009831879997e-25,0.12234595672805552,4.62,4.62,0.0,-0.0,19.915,1617.1913,-5.618402e-25 -3.9841541466870094,0.07608815150668728,3.9841541466870094,3.85,0.511999537037037,-3.407265278162896e-25,0.08039610445648844,3.85,3.85,0.0,-0.0,13.079999999999998,1617.8611,-6.8145306e-25 -4.348862040744625,0.0572084975649867,4.348862040744625,13.94,0.511999537037037,-2.244643801681399e-25,0.060252715926042553,13.94,13.94,0.0,-0.0,8.515,1623.0919,-4.4892876e-25 -5.07039949629146,0.062057653096176835,5.07039949629146,13.8,0.5079996527777778,-1.2906698716550374e-25,0.06499282321307773,13.8,13.8,0.0,-0.0,9.82,1632.2593,-2.5813397e-25 -5.30167399583212,0.061891370447159554,5.30167399583212,1.72,0.5067805555555556,-7.656741261750286e-26,0.06471307006546732,1.72,1.72,0.0,-0.0,9.79,1634.923,-1.5313483e-25 -4.941862940179287,0.06400249047003467,4.941862940179287,0.06,0.503999537037037,-4.460503979453788e-26,0.0670926775693445,0.06,0.06,0.0,-0.0,10.445,1630.7258,-8.921008e-26 -4.56140318919044,0.055947767328678955,4.56140318919044,-2.6303411326628006e-26,0.4999997685185186,-2.6303411326628006e-26,0.058821627628558894,0.0,0.0,0.0,-0.0,8.51,1625.9415,-5.260682e-26 -4.2335254180687345,0.06481400334436832,4.2335254180687345,-1.5208842281464542e-26,0.4999997685185186,-1.5208842281464542e-26,0.06833050948262823,0.0,0.0,0.0,-0.0,10.86,1621.4867,-3.0417685e-26 -3.97847384657206,0.061172261998835666,3.97847384657206,-5.9196126179644615e-27,0.4959997685185185,-5.9196126179644615e-27,0.0646391125308869,0.0,0.0,0.0,-0.0,10.11,1617.7759,-1.1839225e-26 -3.7979124374750493,0.057629085164881556,3.7979124374750493,2.14,0.49366840277777774,4.834155805005893e-27,0.06099972002052435,2.14,2.14,0.0,-0.0,9.275,1615.0021,9.6683116e-27 -3.6604169661692914,0.07427668432925263,3.6604169661692914,1.73,0.4919994212962963,1.4124269470350447e-26,0.07872836182450164,1.73,1.73,0.0,-0.0,13.385000000000002,1612.7999,2.824854e-26 -3.5401216521386756,0.06719307046717211,3.5401216521386756,1.46,0.48800034722222224,1.9022490179398415e-26,0.0713084345029926,1.46,1.46,0.0,-0.0,11.925,1610.8043,3.804498e-26 -3.4146660127864177,0.06865137438651527,3.4146660127864177,1.6600574726061157e-26,0.48800034722222224,1.6600574726061157e-26,0.07295364559147098,0.0,0.0,0.0,-0.0,12.29,1608.6495,3.320115e-26 -3.569177616157662,0.06890582115709927,3.569177616157662,12.15,0.4840002314814815,9.815431087347594e-27,0.07310393141061264,12.15,12.15,0.0,-0.0,12.455,1611.2925,1.9630862e-26 -4.157222593485419,0.06372814897374456,4.157222593485419,13.55,0.48167002314814816,5.673148281493316e-27,0.06723077743756119,13.55,13.55,0.0,-0.0,11.195,1620.4005,1.13462966e-26 -4.2912623111802315,0.04730966900479453,4.2912623111802315,3.34970447065461e-27,0.4800005787037037,3.34970447065461e-27,0.04985160046631698,0.0,0.0,0.0,-0.0,6.59,1622.2957,6.699409e-27 -4.017716766468716,0.060599400208261794,4.017716766468716,0.04,0.4760001157407408,1.981424267583793e-27,0.06401059114880674,0.04,0.04,0.0,-0.0,10.605,1618.362,3.9628485e-27 -4.051023853188545,0.07293783168801225,4.051023853188545,7.21,0.4760001157407408,1.1682491708903729e-27,0.077020098706629,7.21,7.21,0.0,-0.0,13.565000000000001,1618.8551,2.3364983e-27 -4.174107395114171,0.057267735567438596,4.174107395114171,5.56,0.4719996527777777,6.93070783132278e-28,0.06040626273260507,5.56,5.56,0.0,-0.0,9.825,1620.6426,1.3861416e-27 -4.110554645593249,0.048822918661266125,4.110554645593249,1.43,0.4701513888888889,3.930491997285157e-28,0.05152776437842177,1.43,1.43,0.0,-0.0,7.415,1619.7263,7.860984e-28 -3.9025538185976782,0.05793496065210421,3.9025538185976782,2.2141696754303336e-28,0.46799976851851854,2.2141696754303336e-28,0.0612619139774587,0.0,0.0,0.0,-0.0,10.18,1616.6252,4.4283394e-28 -3.6780044686316713,0.0469975841179452,3.6780044686316713,0.01,0.463999537037037,7.891425122900677e-29,0.049805483899873444,0.01,0.01,0.0,-0.0,7.095,1613.0862,1.578285e-28 -3.462162223798336,0.05753156966565605,3.462162223798336,-1.451846189005689e-29,0.463999537037037,-1.451846189005689e-29,0.06110564426522499,0.0,0.0,0.0,-0.0,10.274999999999999,1609.4745,-2.9036924e-29 -3.273822115583641,0.044725398190983985,3.273822115583641,-3.048876500383133e-29,0.46,-3.048876500383133e-29,0.04760270500922095,0.0,0.0,0.0,-0.0,6.535,1606.134,-6.097753e-29 -3.2907626530853076,0.03939338845131644,3.2907626530853076,6.42,0.45920532407407405,-1.6535811816858987e-29,0.041919627895723094,6.42,6.42,0.0,-0.0,4.635,1606.4423,-3.3071624e-29 -3.392930850577325,0.03943728391646285,3.392930850577325,4.04,0.45599953703703705,-7.646156289386916e-30,0.041918692339826896,4.04,4.04,0.0,-0.0,4.74,1608.2682,-1.5292313e-29 -3.3309681322204527,0.033024584642856,3.3309681322204527,-4.2536321923706326e-30,0.45200810185185186,-4.2536321923706326e-30,0.03512654447628848,0.0,0.0,0.0,-0.0,2.24,1607.1675,-8.5072644e-30 -3.1599796360798993,0.0369992258033137,3.1599796360798993,-2.4689513465010048e-30,0.452,-2.4689513465010048e-30,0.039431377966360044,0.0,0.0,0.0,-0.0,3.955,1604.0204,-4.9379027e-30 -3.0170154023621967,0.03737501057344965,3.0170154023621967,-1.4297664742441372e-30,0.4480001157407407,-1.4297664742441372e-30,0.039900642828882255,0.0,0.0,0.0,-0.0,4.265000000000001,1601.2555,-2.859533e-30 -2.967171479007467,0.03951104064835627,2.967171479007467,3.29,0.4480001157407407,-7.096391687439542e-31,0.042207239746672766,3.29,3.29,0.0,-0.0,5.109999999999999,1600.2606,-1.4192783e-30 -3.0328626461844346,0.04561998838364802,3.0328626461844346,5.71,0.4440001157407408,-3.613142846998183e-31,0.04869326444300664,5.71,5.71,0.0,-0.0,7.425,1601.5684,-7.2262857e-31 -3.1019160574193583,0.04616170146269242,3.1019160574193583,4.32,0.44166932870370373,-1.8609952837995074e-31,0.049230143385763106,4.32,4.32,0.0,-0.0,7.675,1602.9128,-3.7219906e-31 -3.087947905718993,0.03961644827695506,3.087947905718993,1.8,0.4400003472222222,-6.126455563547808e-32,0.042256922321105464,1.8,1.8,0.0,-0.0,5.3999999999999995,1602.6433,-1.2252911e-31 -2.982732524098233,0.036005075427587144,2.982732524098233,-1.310908361301138e-32,0.43611064814814815,-1.310908361301138e-32,0.0384545240115266,0.0,0.0,0.0,-0.0,4.114999999999999,1600.573,-2.6218167e-32 -2.837456387839154,0.037270938404660295,2.837456387839154,-6.028973506807245e-33,0.43600011574074077,-6.028973506807245e-33,0.039880804051093566,0.0,0.0,0.0,-0.0,4.665,1597.5911,-1.2057947e-32 -2.7036624994642255,0.043145223860170355,2.7036624994642255,4.27392480885706e-34,0.43200000000000005,4.27392480885706e-34,0.046249937643765185,0.0,0.0,0.0,-0.0,7.055000000000001,1594.7065,8.54785e-34 -2.5929824812418185,0.05359116895435475,2.5929824812418185,0.44,0.43194837962962956,4.5476930350597555e-33,0.057537633385295224,0.44,0.44,0.0,-0.0,10.455,1592.2103,9.095386e-33 -2.515262256337479,0.04958088637879946,2.515262256337479,1.18,0.428,4.6222972534026305e-33,0.05329286240583267,1.18,1.18,0.0,-0.0,9.395,1590.393,9.2445945e-33 -2.4425861063107006,0.03264267188183441,2.4425861063107006,2.342086535988581e-33,0.4261517361111111,2.342086535988581e-33,0.035125205137090186,0.0,0.0,0.0,-0.0,3.11,1588.642,4.684173e-33 -2.3541718243422136,0.02551575632101519,2.3541718243422136,-0.0025265585159887764,0.42400011574074076,-0.0025265585159887764,0.02749438087637657,0.0,0.0,0.0,-0.0,-0.395,1586.4402,9.342989e-34 -2.262488050576121,0.027442681897248345,2.262488050576121,-5.94615004737179e-34,0.42121863425925926,-5.94615004737179e-34,0.029615015686165556,0.0,0.0,0.0,-0.0,0.7749999999999999,1584.0679,-1.1921997e-33 -2.177786536034705,0.03248893547434859,2.177786536034705,-5.385954403349326e-34,0.41999976851851856,-5.385954403349326e-34,0.0351112329974214,0.0,0.0,0.0,-0.0,3.3200000000000003,1581.7892,-1.0771909e-33 -2.100081577003905,0.03371808856244841,2.100081577003905,-1.744607644885494e-34,0.4164640046296296,-1.744607644885494e-34,0.03648964962934739,0.0,0.0,0.0,-0.0,4.02,1579.6194,-3.4892153e-34 -2.0276344015551375,0.030976306601252526,2.0276344015551375,1.4448284607990238e-34,0.4159996527777778,1.4448284607990238e-34,0.033567050575899995,0.0,0.0,0.0,-0.0,2.7950000000000004,1577.5228,2.889657e-34 -1.9598605290436093,0.04169466274236839,1.9598605290436093,3.2575260419901364e-34,0.4121109953703704,3.2575260419901364e-34,0.04524007449211275,0.0,0.0,0.0,-0.0,7.44,1575.4926,6.515052e-34 -1.8959402443151299,0.04617469126896293,1.8959402443151299,2.7930875352140294e-34,0.41200046296296294,2.7930875352140294e-34,0.05016410303503775,0.0,0.0,0.0,-0.0,9.045,1573.5123,5.586175e-34 -1.8228288196283373,0.04893247342176823,1.8228288196283373,0.22,0.4080084490740741,9.853324256378583e-35,0.053239614293933195,0.22,0.22,0.0,-0.0,10.129999999999999,1571.1638,1.9706649e-34 -1.7546730501784162,0.05073169445638549,1.7546730501784162,-9.0203166131531e-35,0.40794895833333333,-9.0203166131531e-35,0.05527727313691912,0.0,0.0,0.0,-0.0,10.725000000000001,1568.8881,-1.8040633e-34 -1.7173972150181753,0.04502140333147419,1.7173972150181753,-2.3481512144020335e-34,0.40399999999999997,-2.3481512144020335e-34,0.049095466546769384,0.0,0.0,0.0,-0.0,9.015,1567.6057,-4.6963024e-34 -1.7356494658143247,0.032266296368040334,1.7356494658143247,5.28,0.4037145833333334,-2.8321720336126493e-34,0.03517196291762572,5.28,5.28,0.0,-0.0,3.9350000000000005,1568.237,-5.664344e-34 -1.8237829088431083,0.03844602326175563,1.8237829088431083,5.92,0.40000023148148145,-1.9886836643881356e-34,0.041829292410127394,5.92,5.92,0.0,-0.0,6.694999999999999,1571.1951,-3.9773673e-34 -1.9443984616432217,0.05383108804675166,1.9443984616432217,7.26,0.39971435185185183,-1.117696074194073e-34,0.058426035096797765,7.26,7.26,0.0,-0.0,11.93,1575.0195,-2.2353921e-34 -2.416143905555988,0.05142749670238899,2.416143905555988,22.89,0.3960082175925926,-6.404936961900774e-35,0.05536130147222011,22.89,22.89,0.0,-0.0,11.22,1587.992,-1.2809874e-34 -3.402396828459538,0.03352799512387125,3.402396828459538,22.09,0.39571446759259266,-3.7730547589747826e-35,0.03563390244977911,22.09,22.09,0.0,-0.0,4.430000000000001,1608.4346,-7.5461095e-35 -3.937810831749903,0.028728796492469687,3.937810831749903,2.25,0.3921108796296296,-2.2547676260363998e-35,0.03036847692192531,2.25,2.25,0.0,-0.0,2.1900000000000004,1617.1624,-4.5095353e-35 -3.7901185431851707,0.028842409990271867,3.7901185431851707,0.8899999999999993,0.3919487268518519,-6.97781876827243e-16,0.030531676621787605,0.89,0.89,0.0,-0.0,2.275,1614.8794,-1.3955638e-15 -3.5881451824799386,0.025100728466089035,3.5881451824799386,0.06999999999909105,0.3884644675925926,8.324158417053505e-14,0.026624768493395855,0.07,0.06999999999900781,9.921991006578425e-13,-0.0,0.405,1611.609,1.8329842e-13 -3.3762579064252933,0.02448409081488018,3.3762579064252933,-0.033303026459253864,0.38799999999999996,-0.033303026459253864,0.02602940020247628,0.0,0.0,0.0,-0.0,0.09499999999999997,1607.974,-5.284424e-7 -3.19332192706336,0.022333368410089045,3.19332192706336,0.05999169830529766,0.3848466435185185,-5.908882997016783e-6,0.02379215956694146,0.06,0.05999760718829467,2.392811705319575e-6,-0.0,-1.08,1604.6472,-3.2396576e-6 -3.2001306005250525,0.035616712573035225,3.2001306005250525,6.939997467381517,0.3840003472222222,-2.532618484139922e-6,0.037940149775900406,6.94,6.94,0.0,-0.0,5.83,1604.7744,-5.0653653e-6 -3.5660856456877377,0.03491593961359006,3.5660856456877377,13.289998250399615,0.38166932870370374,-1.7496003844419029e-6,0.037044394876717866,13.29,13.29,0.0,-0.0,5.56,1611.2407,-3.499262e-6 -3.992991783460285,0.019421020840134383,3.992991783460285,0.0011799640191359263,0.3799997685185186,-1.3720239471252484e-13,0.020518920429090134,10.26,0.0011799640192731286,10.258820035980726,-0.0,-3.0,1617.9934,1.1050657 -3.7416014278587175,0.018597540317179723,3.7416014278587175,4.808161564483421e-6,0.37920590277777777,-5.524080487690068e-16,0.019696161002427007,9.73,4.808161565035829e-6,9.729995191838436,-0.0,-3.5450000000000004,1614.11,11.098262 -3.5199686607462146,0.017422263629610343,3.5199686607462146,1.0774052749962238e-9,0.37611087962962964,-0.0,0.01849323670315202,4.58,1.0774052749962238e-9,4.579999998922594,-0.0,-4.3100000000000005,1610.4634,18.181744 -3.323072680488111,0.018567699774841018,3.323072680488111,-3.171919698460394e-15,0.3759486111111111,-3.171919698460394e-15,0.0197512446631902,0.0,0.0,0.0,-0.0,-3.385,1607.0258,20.50018 -3.1470105603309024,0.01638065510825872,3.1470105603309024,0.0,0.37321898148148147,-0.0,0.017460114507446386,0.0,0.0,0.0,-0.0,-5.0,1603.7748,20.52438 -2.988713402063462,0.015054315634014768,2.988713402063462,0.0,0.3719998842592593,-0.0,0.016077268833828942,0.0,0.0,0.0,-0.0,-6.09,1600.6926,20.52438 -2.8455180460924154,0.016985957445308886,2.8455180460924154,0.0,0.37120578703703705,-0.0,0.018173457217586474,0.0,0.0,0.0,-0.0,-4.369999999999999,1597.7605,20.534302 -2.847944499762006,0.02484561760222623,2.847944499762006,9.005555094107205,0.3684645833333333,2.605555094107257,0.02658174465913893,6.4,6.399999999999948,5.2580162446247416e-14,-0.0,1.1499999999999997,1597.8114,20.858131 -3.3646012315244547,0.03323970072376277,3.3646012315244547,15.856248359680176,0.3680003472222222,12.626248359680176,0.03534215867074185,3.23,3.23,0.0,-0.0,5.4,1607.7675,12.626248 -3.914025587216399,0.031008349381575727,3.914025587216399,10.687306003570557,0.36615196759259255,4.607306003570557,0.03278546932083135,6.08,6.08,0.0,-0.0,4.345,1616.8005,4.607306 -4.191480564575961,0.02945850561512064,4.191480564575961,6.182598148230321,0.3644642361111111,1.6925981482303212,0.03106820789293376,4.49,4.49,0.0,-0.0,3.61,1620.8906,1.6925982 -4.082620454336968,0.016978382268437658,4.082620454336968,0.0,0.36400011574074076,-0.0,0.017923510401804215,0.0,0.0,0.0,-0.0,-4.29,1619.3191,1.3058623 -3.820406346169102,0.01468230912196988,3.820406346169102,0.0,0.3621513888888889,-0.0,0.015537661474431764,4.7,0.0,4.7,-0.0,-6.19,1615.3547,3.6512692 -3.5899718915355625,0.010517653189777975,3.5899718915355625,0.0,0.3604638888888889,-0.0,0.011156042753285706,2.02,0.0,2.02,-0.0,-10.57,1611.6394,6.9865932 -3.3858711467378657,0.009031745937721724,3.3858711467378657,0.0,0.3599998842592593,-0.0,0.0096007692777044,0.0,0.0,0.0,-0.0,-12.51,1608.1438,7.9937496 -3.2036320549068247,0.013300466226270315,3.2036320549068247,0.0,0.35920578703703704,-0.0,0.014167538470032532,3.83,0.0,3.83,-0.0,-7.335000000000001,1604.8397,9.913295 -3.039776528560738,0.016809514940481534,3.039776528560738,1.2180122364036094e-8,0.3572189814814815,-0.0,0.017940396146705145,2.71,1.2180122364036094e-8,2.7099999878198777,-0.0,-4.015,1601.7043,13.184129 -2.8917811315456756,0.015710633109155003,2.8917811315456756,7.487344078072056e-13,0.35611041666666665,-0.0,0.016798847699412537,1.0,7.487344078072056e-13,0.9999999999992513,-0.0,-4.885,1598.7236,15.038819 -2.7963860069267015,0.02129113623507107,2.7963860069267015,2.678897566733014,0.3559483796296296,-0.0011017482171868898,0.022794453428989402,2.68,2.6799993149502006,6.850497997223926e-7,-0.0,-0.5749999999999998,1596.7203,16.035234 -3.031492911574911,0.026584282536938026,3.031492911574911,14.231022359851636,0.3546476851851852,6.671022359851635,0.02837566055055344,7.56,7.56,0.0,-0.0,2.67,1601.5414,13.4672365 -3.7236869829275534,0.033415865488892346,3.7236869829275534,13.487486801147462,0.35321898148148145,5.527486801147461,0.03539614099094169,7.96,7.96,0.0,-0.0,6.045,1613.8234,5.527487 -4.021159225911901,0.024979381656777856,4.021159225911901,4.190463944142188,0.35211030092592593,2.0304639441421872,0.026384658077297233,2.16,2.16,1.1990408665951691e-16,-0.0,1.705,1618.4132,2.0304644 -3.981524576305306,0.02925652537490038,3.981524576305306,2.8949704994851233,0.35199988425925927,0.7449704994851236,0.030913722411694072,2.15,2.15,0.0,-0.0,4.055,1617.8217,0.7454019 -3.8617904686926225,0.026782916528156273,3.8617904686926225,1.441670429229552,0.35171423611111113,0.26167042922955197,0.028331932889975757,1.18,1.18,0.0,-0.0,2.77,1615.9982,0.27791747 -3.6668271992978756,0.01506265071925816,3.6668271992978756,4.6629367034256575e-15,0.3506474537037037,-0.0,0.015964376986437278,0.84,4.6629367034256575e-15,0.8399999999999953,-0.0,-5.375,1612.9044,0.5889023 -3.4540617024356064,0.008577268939367274,3.4540617024356064,0.0,0.34966921296296294,-0.0,0.009110912618833015,0.0,0.0,0.0,-0.0,-12.809999999999999,1609.3346,1.0080137 -3.264800604670816,0.006748765232641605,3.264800604670816,0.0,0.3488465277777778,-0.0,0.00718366877122451,0.0,0.0,0.0,-0.0,-15.8,1605.9692,1.010813 -3.0951391979514793,0.01031851576840517,3.0951391979514793,0.0,0.3481105324074074,-0.0,0.011005300749174222,0.01,0.0,0.01,-0.0,-10.29,1602.7822,1.0158072 -2.9422404111782896,0.0062399039590400225,2.9422404111782896,0.0,0.3480079861111111,-0.0,0.006667809213025528,0.0,0.0,0.0,-0.0,-16.7,1599.7567,1.0208272 -2.803849517167781,0.004533431825562865,2.803849517167781,0.0,0.34794849537037037,-0.0,0.004853043006308178,0.0,0.0,0.0,-0.0,-20.575,1596.8795,1.0226946 -2.6778730170765566,0.006288109829052531,2.6778730170765566,0.0,0.34771435185185184,-0.0,0.006743020074718757,1.72,0.0,1.72,-0.0,-16.55,1594.1342,1.8868701 -2.562564473134787,0.012622738382940533,2.562564473134787,0.0,0.3472057870370371,-0.0,0.013558280260923403,2.74,0.0,2.74,-0.0,-7.47,1591.5056,4.113707 -2.573182856955711,0.020612834240854017,2.573182856955711,14.219216563618886,0.3466476851851852,-0.0007780138171429074,0.02213713195877376,14.22,14.21999457743603,5.422563970827188e-6,-0.0,-0.615,1591.7526,9.806552 -2.5537588691840263,0.010384839682328208,2.5537588691840263,0.0,0.3466476851851852,-0.0,0.01115595930323665,9.17,0.0,9.17,-0.0,-10.055,1591.3,19.364845 -2.4486898615739117,0.006707387419068494,2.4486898615739117,0.0,0.3461518518518519,-0.0,0.007216819073519588,0.0,0.0,0.0,-0.0,-15.645,1588.791,23.954847 -2.351959334257727,0.008256885367931293,2.351959334257727,0.0,0.3461518518518519,-0.0,0.00889748216470808,0.46,0.0,0.46,-0.0,-12.985,1586.384,24.183523 -2.2624695521826714,0.011765128850304563,2.2624695521826714,0.0,0.3456693287037037,-0.0,0.012696447969491462,3.5,0.0,3.5,-0.0,-8.295,1584.0674,26.164356 -2.179429753229569,0.013693213261490611,2.179429753229569,0.0,0.3456693287037037,-0.0,0.014798019804240179,3.22,0.0,3.22,-0.0,-6.220000000000001,1581.8342,29.530468 -2.102246188334368,0.011965120064305789,2.102246188334368,0.0,0.3461518518518519,-0.0,0.012948125272331868,0.0,0.0,0.0,-0.0,-8.05,1579.6809,31.09984 -2.0304339150454083,0.008192061281244532,2.0304339150454083,0.0,0.3461518518518519,-0.0,0.008876751404170812,0.0,0.0,0.0,-0.0,-13.015,1577.6052,31.08771 -1.9634010515358078,0.008498707757819473,1.9634010515358078,0.0,0.3461518518518519,-0.0,0.009220745391119885,0.9,0.0,0.9,-0.0,-12.525,1575.6003,31.541132 -1.9004759788847543,0.01627520582007226,1.9004759788847543,4.545281360091024e-7,0.3466476851851852,-0.0,0.017679751497344187,11.78,4.545281360091024e-7,11.779999545471863,-0.0,-3.8,1573.655,37.879436 -2.048233213590887,0.022855567049515697,2.048233213590887,10.33034353707374,0.3472057870370371,2.1503435370741086,0.024757648843265576,8.18,8.17999999999963,3.691680294792832e-13,-0.0,0.9800000000000004,1578.1265,41.43269 -2.096980281888817,0.015667348844116333,2.096980281888817,0.0,0.34771435185185184,-0.0,0.016956121714756363,0.0,0.0,0.0,-0.0,-4.425,1579.5311,41.99911 -2.025294072924362,0.016971111946540683,2.025294072924362,2.7086105215766463e-5,0.34794849537037037,-7.224469893237964e-15,0.018391317195944595,4.73,2.7086105222990932e-5,4.729972913894778,-0.0,-3.3000000000000003,1577.4539,44.446613 -2.066610925779731,0.02399115936288219,2.066610925779731,6.372980974749922,0.34800000000000003,3.942980974749922,0.025978965653659987,2.43,2.43,1.3489209749195653e-16,-0.0,1.6500000000000001,1578.6599,44.767677 -2.0398769623487727,0.014226115492544118,2.0398769623487727,0.0,0.3480079861111111,-0.0,0.015412423002730985,0.0,0.0,0.0,-0.0,-5.755,1577.8823,44.66961 -1.9720646963871649,0.011869336824051393,1.9720646963871649,0.0,0.3484641203703704,-0.0,0.012875589409333331,0.0,0.0,0.0,-0.0,-8.215,1575.8633,44.652214 -1.908588856593505,0.01501467760053753,1.908588856593505,0.0,0.34921886574074074,-0.0,0.01630780375435096,0.0,0.0,0.0,-0.0,-5.0249999999999995,1573.9094,44.638145 -1.849097855747485,0.010745310668425758,1.849097855747485,0.0,0.35015162037037034,-0.0,0.011684780996823957,0.54,0.0,0.54,-0.0,-9.575,1572.0183,44.90577 -1.793311371808712,0.006563942420245684,1.793311371808712,0.0,0.35120578703703703,-0.0,0.007146149155088472,0.0,0.0,0.0,-0.0,-15.95,1570.1888,45.095497 -1.740868925016863,0.0049630256937914395,1.740868925016863,0.0,0.3519482638888889,-0.0,0.00540934093665139,0.0,0.0,0.0,-0.0,-19.405,1568.4164,45.100033 -1.6913769473281028,0.008221704504431803,1.6913769473281028,0.0,0.35200787037037035,-0.0,0.008970918123613541,0.0,0.0,0.0,-0.0,-13.095,1566.694,45.100033 -1.6444848621656978,0.01518343555565322,1.6444848621656978,0.0,0.35284641203703704,-0.0,0.01658482055298292,0.0,0.0,0.0,-0.0,-4.9350000000000005,1565.0149,45.107143 -1.6000272911758735,0.01453332978586414,1.6000272911758735,1.5309975509580908e-15,0.3541518518518519,-0.0,0.01589133141486749,1.97,1.5309975509580908e-15,1.9699999999999984,-0.0,-5.575,1563.3782,46.151817 -1.5579207650582836,0.013367614344756858,1.5579207650582836,0.0,0.35571446759259256,-0.0,0.014631596501105463,3.32,0.0,3.32,-0.0,-6.765000000000001,1561.7855,48.76093 -1.518060685486519,0.007362366231490274,1.518060685486519,0.0,0.35600000000000004,-0.0,0.008066513381668212,0.0,0.0,0.0,-0.0,-14.595,1560.2377,50.3401 -1.4802336917291556,0.008641451799747046,1.4802336917291556,0.0,0.3564643518518519,-0.0,0.009477085966487733,0.22,0.0,0.22,-0.0,-12.55,1558.7307,50.486908 -1.5021119702999577,0.02294982933219209,1.5021119702999577,12.68811355816895,0.35815185185185183,1.5581135581734826,0.02515495263533181,11.13,11.129999999995468,4.531849895350604e-12,-0.0,0.7599999999999998,1559.6069,53.862175 -1.8602434267544976,0.023462561522705826,1.8602434267544976,16.398816133907385,0.3599482638888889,1.9088161339089935,0.025508086930320105,14.49,14.48999999999839,1.607908806100511e-12,-0.0,0.8900000000000001,1572.3772,52.202293 -1.9391553224837679,0.013305039656960444,1.9391553224837679,0.0,0.36000787037037035,-0.0,0.014442218031878222,0.0,0.0,0.0,-0.0,-7.105,1574.8583,54.99631 -1.877820853807687,0.009669837382552308,1.877820853807687,0.0,0.36121863425925926,-0.0,0.010509124434689663,0.0,0.0,0.0,-0.0,-11.379999999999999,1572.9388,54.995083 -1.8202746187286984,0.010231881274335495,1.8202746187286984,0.0,0.3637142361111111,-0.0,0.011133106702912066,0.21,0.0,0.21,-0.0,-10.715,1571.0801,55.116974 -1.7661192692543095,0.01158674600038012,1.7661192692543095,0.0,0.36400011574074076,-0.0,0.012621798806449753,12.42,0.0,12.42,-0.0,-9.065000000000001,1569.2764,61.522087 -1.7150783879615745,0.010471603614194696,1.7150783879615745,0.0,0.36521898148148146,-0.0,0.011419784605792953,8.21,0.0,8.21,-0.0,-10.435,1567.525,71.856384 -1.6669634845811903,0.006758147177792242,1.6669634845811903,0.0,0.36771435185185186,-0.0,0.007378081260969696,0.13,0.0,0.13,-0.0,-16.125,1565.8257,75.96221 -1.6215302704510848,0.005444121744122483,1.6215302704510848,0.0,0.3680083333333333,-0.0,0.0059497891304338,0.0,0.0,0.0,-0.0,-18.79,1564.1754,76.04167 -1.5785158177497953,0.006118535286616901,1.5785158177497953,0.0,0.3696696759259259,-0.0,0.006693715301076487,0.0,0.0,0.0,-0.0,-17.4,1562.5698,76.0426 -1.537713853105255,0.005697355550134472,1.537713853105255,0.0,0.3719483796296296,-0.0,0.00623918683139873,0.0,0.0,0.0,-0.0,-18.34,1561.0059,76.04256 -1.4989466801523605,0.007916174846139625,1.4989466801523605,0.0,0.37211041666666667,-0.0,0.008677497616361173,0.0,0.0,0.0,-0.0,-14.23,1559.481,76.04256 -1.4620023334756245,0.012305230429159129,1.4620023334756245,0.0,0.3746479166666667,-0.0,0.013501565215687551,1.94,0.0,1.94,-0.0,-8.55,1557.9906,77.08216 -1.4679853497152244,0.01972453146934875,1.4679853497152244,7.7715441991215455,0.3760002314814815,-7.960918866270705e-10,0.021638795476154115,16.11,7.771544199917638,8.338455800082363,-0.0,-2.0999999999999996,1558.2345,84.51666 -1.6498820135909054,0.022010652358828164,1.6498820135909054,2.949400190754263,0.3772188657407407,-0.0005982907436599375,0.0240391630444628,2.95,2.9499984814979228,1.5185020773411662e-6,-0.0,-0.645,1565.2106,85.52 -1.620479922652209,0.010875978802180624,1.620479922652209,0.0,0.3799997685185186,-0.0,0.011886468452164628,1.48,0.0,1.48,-0.0,-10.43,1564.1367,87.164604 -1.5774546395551048,0.006289388594529169,1.5774546395551048,0.0,0.3804640046296296,-0.0,0.006880806722926154,0.0,0.0,0.0,-0.0,-17.415,1562.5297,87.8367 -1.536689527710588,0.006991039532978004,1.536689527710588,0.0,0.383714699074074,-0.0,0.007656098238200094,0.0,0.0,0.0,-0.0,-16.195,1560.9661,87.84696 -1.4979451170743001,0.008955433514787885,1.4979451170743001,0.0,0.38400833333333334,-0.0,0.00981695625092106,0.0,0.0,0.0,-0.0,-13.055,1559.441,87.84491 -1.4610344150075578,0.01243128260867411,1.4610344150075578,0.0,0.3866476851851852,-0.0,0.01364021866325004,0.05,0.0,0.05,-0.0,-8.835,1557.951,87.915695 -1.425808247823646,0.016414099403469724,1.425808247823646,3.448086260959826e-13,0.38799999999999996,-0.0,0.018027227534724754,3.76,3.448086260959826e-13,3.759999999999655,-0.0,-5.095000000000001,1556.4935,89.846664 -1.3921653808584846,0.017697227312173474,1.3921653808584846,7.159386049004901e-9,0.3901519675925926,-0.0,0.019454280967715024,4.33,7.159386049004901e-9,4.329999992840614,-0.0,-4.115,1555.0675,93.957 -1.3601001012931908,0.013471202934541463,1.3601001012931908,0.0,0.39200034722222227,-0.0,0.014821943361893394,0.2,0.0,0.2,-0.0,-7.905,1553.6759,96.26503 -1.3635880309588002,0.02539279558805688,1.3635880309588002,6.512545913792344,0.3936696759259259,1.962545913792757,0.027936148767162248,4.55,4.549999999999587,4.134664832733392e-13,-0.0,0.9099999999999999,1553.8289,97.185234 -1.4787246582788414,0.02491840555499342,1.4787246582788414,5.739075173620808,0.39600023148148145,0.8490751736463068,0.027329100016923666,4.89,4.889999999974501,2.5498611555541116e-11,-0.0,0.5049999999999999,1558.6698,95.7192 -1.4691740768851624,0.010832726935167054,1.4691740768851624,0.0,0.3972188657407407,-0.0,0.011883673453325576,0.0,0.0,0.0,-0.0,-11.015,1558.2828,97.12975 -1.4336871861845313,0.006962828170928785,1.4336871861845313,0.0,0.40000023148148145,-0.0,0.0076454973539984185,0.0,0.0,0.0,-0.0,-16.73,1556.8226,97.239845 -1.3999099161367092,0.007529548055682766,1.3999099161367092,0.0,0.4012189814814815,-0.0,0.008275349595903914,5.25,0.0,5.25,-0.0,-15.780000000000001,1555.3988,99.812996 -1.3676355084085765,0.01125880440121525,1.3676355084085765,0.0,0.40399999999999997,-0.0,0.012385080199844654,13.61,0.0,13.61,-0.0,-10.695,1554.0059,108.77853 -1.3367580564275126,0.011894008099433495,1.3367580564275126,0.0,0.40521898148148144,-0.0,0.013095318805972823,2.87,0.0,2.87,-0.0,-10.0,1552.6421,115.95844 -1.3072936755717404,0.006591133730461976,1.3072936755717404,0.0,0.4080003472222223,-0.0,0.0072630735561946234,0.0,0.0,0.0,-0.0,-17.61,1551.311,117.643295 -1.2791505237559508,0.005939365215192421,1.2791505237559508,0.0,0.40966990740740744,-0.0,0.006550347694284166,0.0,0.0,0.0,-0.0,-18.925,1550.0114,117.964966 -1.2521992308458776,0.006343593524468466,1.2521992308458776,0.0,0.41200046296296294,-0.0,0.007001903778321089,0.0,0.0,0.0,-0.0,-18.18,1548.7396,117.955444 -1.2263420856184957,0.007810213011494055,1.2263420856184957,0.0,0.41464768518518513,-0.0,0.008627664284732555,0.0,0.0,0.0,-0.0,-15.67,1547.4935,117.94044 -1.201487857974779,0.014770138725076582,1.201487857974779,0.0,0.4159996527777778,-0.0,0.016328949056798586,0.0,0.0,0.0,-0.0,-7.4,1546.2708,117.9701 -1.1776066362293276,0.01964478109466696,1.1776066362293276,-5.561197309084246e-16,0.419205324074074,-5.561197309084246e-16,0.021734904437433665,0.0,0.0,0.0,-0.0,-3.57,1545.0718,118.11167 -1.154638987107399,0.010069173079771825,1.154638987107399,0.0,0.41999976851851856,-0.0,0.011148979154389673,0.0,0.0,0.0,-0.0,-12.57,1543.8955,118.40897 -1.1325335906723046,0.010252269287560272,1.1325335906723046,0.0,0.42400011574074076,-0.0,0.01136020476075807,0.8,0.0,0.8,-0.0,-12.45,1542.7411,118.904465 -1.111232929406996,0.015475405416261655,1.111232929406996,0.0,0.42400011574074076,-0.0,0.01716040417591866,1.7,0.0,1.7,-0.0,-6.985,1541.6072,119.6406 -1.0907096031677415,0.010373953955544758,1.0907096031677415,0.0,0.428,-0.0,0.01151180793307913,0.0,0.0,0.0,-0.0,-12.399999999999999,1540.4939,120.37379 -1.0709373936544038,0.013259117598979908,1.0709373936544038,0.0,0.42846388888888887,-0.0,0.014723869363691315,1.03,0.0,1.03,-0.0,-9.185,1539.4014,120.89494 -1.0518245646197635,0.014902250238135965,1.0518245646197635,0.0,0.43200000000000005,-0.0,0.01656009000341485,2.32,0.0,2.32,-0.0,-7.72,1538.3259,122.61637 -1.0333569542667218,0.01571417475792108,1.0333569542667218,0.0,0.4336695601851852,-0.0,0.017474355786471007,1.94,0.0,1.94,-0.0,-7.045,1537.2681,124.70135 -1.0155705789429326,0.009573529380026247,1.0155705789429326,0.0,0.43600011574074077,-0.0,0.010653067870661607,9.36,0.0,9.36,-0.0,-13.635000000000002,1536.2312,130.34335 -0.9983862104884043,0.013705471624395659,0.9983862104884043,0.0,0.4399488425925926,-0.0,0.015261064193523716,5.79,0.0,5.79,-0.0,-9.06,1535.212,137.783 -0.9817695131442027,0.011098682090004888,0.9817695131442027,0.0,0.4400003472222222,-0.0,0.012366473854926067,0.95,0.0,0.95,-0.0,-11.83,1534.2097,141.19157 -0.9657135848221072,0.011021345408228921,0.9657135848221072,0.0,0.4440001157407408,-0.0,0.012288190323156254,0.0,0.0,0.0,-0.0,-12.03,1533.225,141.80025 -0.9501688032664745,0.011477068886585536,0.9501688032664745,0.0,0.4440081018518519,-0.0,0.012804390146754064,0.0,0.0,0.0,-0.0,-11.495,1532.2559,141.78505 -0.9346296751973214,0.02253097074258432,0.9346296751973214,0.016971827351932076,0.4480001157407407,-2.7737247637468258e-11,0.025152839139768103,0.62,0.016971827379669322,0.6030281726203307,-0.0,-2.45,1531.2711,142.15787 -0.9224090724153656,0.024994279866444147,0.9224090724153656,-1.7870027524764667e-5,0.4501516203703704,-1.7870027524764667e-5,0.027917126943926635,0.0,0.0,0.0,-0.0,-1.0350000000000001,1530.4851,142.2966 -0.9515837653990684,0.022285582866777814,0.9515837653990684,0.02371867044992659,0.452,-1.6947717253892277e-12,0.02486146520879143,15.34,0.023718670451621363,15.316281329548378,-0.0,-2.74,1532.3447,147.15895 -0.9365056783894662,0.02225456421049702,0.9365056783894662,0.004317948031845288,0.45599953703703705,-4.597289919440972e-13,0.02484232516353437,10.76,0.004317948032305017,10.755682051967694,-0.0,-2.875,1531.3909,160.12817 -0.9217644767455719,0.01655325500017821,0.9217644767455719,0.0,0.45599953703703705,-0.0,0.01848950758015273,0.0,0.0,0.0,-0.0,-6.96,1530.4434,165.39369 -0.9075205385837319,0.014384380180623782,0.9075205385837319,0.0,0.46,-0.0,0.016076706918897368,0.0,0.0,0.0,-0.0,-8.959999999999999,1529.5133,165.39896 -0.893525932607503,0.014618225520417477,0.893525932607503,0.0,0.4604638888888889,-0.0,0.01634798410491915,0.0,0.0,0.0,-0.0,-8.75,1528.5852,165.39363 -0.8797884937779402,0.01553933136789083,0.8797884937779402,0.0,0.463999537037037,-0.0,0.017388609180623783,0.0,0.0,0.0,-0.0,-8.025,1527.6599,165.38419 -0.8666324102081703,0.015051982808803172,0.8666324102081703,0.0,0.46799976851851854,-0.0,0.01685318949163142,0.0,0.0,0.0,-0.0,-8.56,1526.7601,165.38011 -0.854357350126642,0.025970997043555075,0.854357350126642,-2.4625648721090696e-5,0.46799976851851854,-2.4625648721090696e-5,0.029095070644299285,0.0,0.0,0.0,-0.0,-1.0,1525.9082,165.39091 -0.8656374371515706,0.03145778601105037,0.8656374371515706,4.279608156077655,0.4719996527777777,3.9296081560776552,0.035223788045295516,0.35,0.35,1.9428902930940238e-17,-0.0,1.645,1526.6915,163.89554 -0.895608629360497,0.028082549336382302,0.895608629360497,1.3764170357277232,0.4719996527777777,-0.06358296276799123,0.03140267023763531,1.44,1.4399999984957144,1.5042855761038254e-9,-0.0,-0.025000000000000133,1528.7242,162.18393 -1.0606786583078973,0.027737098564943847,1.0606786583078973,19.31588818977582,0.4760001157407408,-0.004110762038765789,0.030812757313739534,19.32,19.319998951814586,1.0481854141786151e-6,-0.0,-0.41999999999999993,1538.8265,162.15144 -1.3087427895381163,0.028861552308316194,1.3087427895381163,8.572116337339862,0.4800005787037037,-0.04788364625228505,0.03180251623551629,8.62,8.619999983592146,1.6407853438149543e-8,-0.0,-0.08500000000000008,1551.3772,162.17654 -1.3710530798141602,0.026941133001236874,1.3710530798141602,-9.829835508266685e-6,0.4800005787037037,-9.829835508266685e-6,0.029633350157952165,0.0,0.0,0.0,-0.0,-1.1,1554.1549,162.17345 -1.3557894518867795,0.029866236541022103,1.3557894518867795,2.111421444798107,0.4840002314814815,0.18142144490363205,0.032864896270614376,1.93,1.9299999998944748,1.0552529572382951e-10,-0.0,0.27,1553.4863,162.19405 -1.3503603117569332,0.0296354658306816,1.3503603117569332,0.41060532821385964,0.4840002314814815,-0.019394671715509987,0.03261598647860529,0.43,0.42999999992936966,7.063036544519008e-11,-0.0,0.16000000000000003,1553.2467,162.16559 -1.3615437386632099,0.0325397118123319,1.3615437386632099,3.2609560529474066,0.48800034722222224,3.2609560529474066,0.03580096757085935,0.0,0.0,0.0,-0.0,1.395,1553.7393,160.48843 -1.4270386593683393,0.03436747063875923,1.4270386593683393,5.012802037859428,0.4919994212962963,5.012802037859428,0.0377437527231497,0.0,0.0,0.0,-0.0,2.0500000000000003,1556.545,156.38391 -1.601974434771561,0.03474366315089421,1.601974434771561,11.766884199987157,0.4919994212962963,5.266884199987157,0.03798836359901907,6.5,6.5,0.0,-0.0,2.145,1563.4508,151.24203 -1.9152246592283375,0.04032648843218918,1.9152246592283375,13.319236422269755,0.4959997685185185,10.589236422269755,0.04379380504691284,2.73,2.73,0.0,-0.0,4.135,1574.1167,143.3132 -2.1824700746455226,0.028011212216983838,2.1824700746455226,9.347626926417133,0.4959997685185185,-2.1319884060752853e-6,0.030269641658954738,9.35,9.34762905840554,0.002370941594459244,-0.0,-1.2650000000000001,1581.9175,139.45743 -2.6118878404641226,0.03251590958237741,2.6118878404641226,17.96255829622697,0.4999997685185186,1.312558296243644,0.03490087806084154,16.65,16.649999999983326,1.667366245072799e-11,-0.0,0.6699999999999999,1592.6442,139.3438 -2.821753337792312,0.02248104512625005,2.821753337792312,2.2923789533280113e-11,0.503999537037037,-0.0,0.024060252429751208,5.88,2.2923789533280113e-11,5.879999999977076,-0.0,-4.720000000000001,1597.2596,143.16223 -2.6936616862013847,0.013510153565382843,2.6936616862013847,0.0,0.503999537037037,-0.0,0.014484349180230763,0.0,0.0,0.0,-0.0,-11.54,1594.4852,146.12195 -2.5768620080271893,0.012325584910827712,2.5768620080271893,0.0,0.5079996527777778,-0.0,0.013236339589742718,0.0,0.0,0.0,-0.0,-12.81,1591.8379,146.04868 -2.469736658185253,0.014303215388579402,2.469736658185253,0.0,0.5079996527777778,-0.0,0.015384607323134736,0.0,0.0,0.0,-0.0,-10.855,1589.3021,145.914 -2.3709919024478934,0.02010243051761652,2.3709919024478934,0.0,0.511999537037037,-0.0,0.02165547387939085,1.45,0.0,1.45,-0.0,-6.385,1586.8654,146.62671 -2.374415933348783,0.030367650423473537,2.374415933348783,9.139681557654695,0.5159998842592592,-0.00030848232596328165,0.03271197214924976,9.14,9.139990039980658,9.960019343366877e-6,-0.0,-0.7200000000000002,1586.9515,149.51404 -2.47067580968141,0.02607062677520686,2.47067580968141,0.0019656144942621846,0.5159998842592592,-3.2756389553587213e-13,0.028041291051889402,6.95,0.0019656144945897486,6.9480343855054105,-0.0,-2.91,1589.3248,152.66937 -2.371626866319576,0.020223184151042427,2.371626866319576,0.0,0.520000462962963,-0.0,0.02178533697962503,2.08,0.0,2.08,-0.0,-6.515,1586.8813,157.20546 -2.280246543151918,0.021730475208510614,2.280246543151918,0.0,0.520000462962963,-0.0,0.023443726474101034,0.0,0.0,0.0,-0.0,-5.51,1584.5348,158.23117 -2.1948084164304533,0.023710809220542382,2.1948084164304533,0.0,0.5240002314814816,-0.0,0.02561706283823814,0.0,0.0,0.0,-0.0,-4.39,1582.2542,158.2542 -2.107710564876654,0.029405952615816494,2.107710564876654,-3.964448087931185e-7,0.5279998842592593,-3.964448087931185e-7,0.03181870244401601,0.0,0.0,0.0,-0.0,-1.4449999999999998,1579.8359,158.32147 -2.044192878950843,0.03302710515814447,2.044192878950843,0.3526328838399405,0.5279998842592593,0.11263288385765377,0.035778354235051726,0.24,0.23999999998228672,1.7713270850094886e-11,-0.0,0.2400000000000002,1578.0085,158.27206 -2.1035271071834267,0.03443442401136268,2.1035271071834267,7.259378932755431,0.5319998842592593,1.4493789327589601,0.037262557024931295,5.81,5.809999999996471,3.5290115274477783e-12,-0.0,0.7200000000000001,1579.7173,157.49911 -2.254856458300612,0.035171541671208596,2.254856458300612,5.957147012038593,0.5319998842592593,2.1771470120387475,0.03796051935639407,3.78,3.7799999999998453,1.542266314658036e-13,-0.0,0.9899999999999999,1583.8661,155.8298 -2.422285558669742,0.040548588688803726,2.422285558669742,7.366405060421707,0.5359994212962963,7.366405060421707,0.04364607429359202,0.0,0.0,0.0,-0.0,2.93,1588.1436,151.09091 -2.5969765756761305,0.03974986324216947,2.5969765756761305,6.3663490552892625,0.5395353009259259,6.216349055289262,0.04267458752304584,0.15,0.15,0.0,-0.0,2.5000000000000004,1592.3022,144.53026 -2.9487668785528682,0.04636619985404081,2.9487668785528682,14.337102009869753,0.54,12.127102009869754,0.0495416926907677,2.21,2.21,0.0,-0.0,4.71,1599.889,135.33492 -3.407581980028929,0.04381041384540368,3.407581980028929,9.345571207949748,0.5439997685185185,9.345571207949748,0.046559531650972284,0.0,0.0,0.0,-0.0,3.67,1608.5255,124.62237 -3.612917606373084,0.038335151232072394,3.612917606373084,4.763099411135243,0.5439997685185185,3.983099411135243,0.04065238068002505,0.78,0.78,4.3298697960381107e-17,-0.0,1.665,1612.0199,118.01452 -4.004934050340671,0.03951144972058901,4.004934050340671,17.181974347146536,0.5479999999999999,4.7319743471465365,0.04174049066249795,12.45,12.45,0.0,-0.0,1.9450000000000003,1618.1718,113.87218 -4.5245194116633405,0.037088934020505615,4.5245194116633405,7.029117169916759,0.5498481481481481,1.9491171699172443,0.039005707232704294,5.08,5.079999999999515,4.850342349982384e-13,-0.0,0.9050000000000001,1625.4567,110.594826 -4.599320877430213,0.03920665653620707,4.599320877430213,3.942980974749922,0.5520004629629629,3.942980974749922,0.041208049046319604,0.0,0.0,0.0,-0.0,1.6500000000000001,1626.4359,107.66714 -4.495398149647894,0.037973682806194176,4.495398149647894,2.4449735486628352,0.5559922453703704,2.4449735486628352,0.03994565687205725,0.0,0.0,0.0,-0.0,1.0899999999999999,1625.071,104.54718 -4.502184583726621,0.042406879335724686,4.502184583726621,6.778004313802929,0.5560002314814815,6.778004313802929,0.04460659655745913,0.0,0.0,0.0,-0.0,2.71,1625.1611,99.91275 -4.887885240317883,0.046226867372680065,4.887885240317883,12.780244512109753,0.56,9.800244512109753,0.04847830474948146,2.98,2.98,0.0,-0.0,3.84,1630.07,91.65127 -6.906819100075259,0.05541760608511022,6.906819100075259,40.39697133026975,0.5600517361111111,16.606971330269754,0.05738971110313162,23.79,23.79,0.0,-0.0,6.385,1650.7181,78.50744 -11.282866922914298,0.055929969810281796,11.282866922914298,37.50845235098976,0.5639996527777777,15.978452350989755,0.056909849304828425,21.53,21.53,0.0,-0.0,6.15,1680.0273,62.351845 -14.581553495974916,0.05487438594245238,14.581553495974916,20.207923415469754,0.5663305555555556,14.667923415469755,0.055331325423752076,5.54,5.54,0.0,-0.0,5.66,1695.3439,47.057888 -16.18053786629733,0.056768058153503394,16.18053786629733,23.107861187389755,0.5679997685185185,15.777861187389755,0.057031726346891125,7.33,7.33,0.0,-0.0,6.075,1701.5579,31.868296 -16.979376375630768,0.05014692340521445,16.979376375630768,16.355508979869754,0.5715351851851852,10.455508979869755,0.050294772636946636,5.9,5.9,0.0,-0.0,4.085,1704.4358,18.778622 -16.19675208568459,0.047775177697583916,16.19675208568459,11.456579297789645,0.5719994212962963,8.556579297789645,0.047995389869948765,2.9,2.9,0.0,-0.0,3.375,1701.6177,9.262929 -14.155689654714973,0.05150653032764997,14.155689654714973,3.418280363082881,0.5760005787037037,3.418280363082881,0.051989709115683215,0.0,0.0,0.0,-0.0,4.465,1693.5737,3.4182804 -12.31904466455089,0.05562641599342486,12.31904466455089,6.655816455046514,0.5760005787037037,1.2558164550465136,0.056424751216454266,5.4,5.4,0.0,-0.0,5.7,1685.2744,1.2558209 -12.810475250849711,0.06417532616563122,12.810475250849711,22.957196156886194,0.5800003472222222,0.45719615688619597,0.06500624398763094,22.5,22.5,0.0,-0.0,7.76,1687.6105,0.46171373 -13.69266242077353,0.067546936008718,13.69266242077353,12.194258664013953,0.5807946759259259,0.15425866401395277,0.06826063906861814,12.04,12.04,0.0,-0.0,8.495000000000001,1691.5876,0.17980677 -12.321537798826423,0.05884298352359031,12.321537798826423,1.7375413818320344,0.5840005787037037,0.05754138183203458,0.059687054039863914,1.68,1.68,0.0,-0.0,6.345,1685.2865,0.08270611 -10.43428204273511,0.06553673399526126,10.43428204273511,1.1861608732976836,0.5853530092592593,0.026160873297683577,0.06687078094547318,1.16,1.16,0.0,-0.0,8.055,1675.3579,0.04315278 -9.106292702181257,0.07692344238700657,9.106292702181257,2.2034283902049903,0.5880002314814815,0.013428390204990417,0.0788720043782852,2.19,2.19,0.0,-0.0,10.565,1667.2281,0.023992345 -8.056939621194855,0.07498801605972978,8.056939621194855,0.2573657548541292,0.5903311342592593,0.007365754854129205,0.07722622779196245,0.25,0.25,0.0,-0.0,10.17,1659.9165,0.013783136 -7.392948877336073,0.08107669953555297,7.392948877336073,4.664181476122244,0.5920008101851852,0.004181476122243469,0.08375581310084394,4.66,4.66,0.0,-0.0,11.41,1654.7802,0.008039924 -7.657786898644932,0.05848956829269218,7.657786898644932,13.612415312668919,0.5943310185185184,0.0024153126689188927,0.06034565644878173,13.61,13.61,0.0,-0.0,6.245,1656.8821,0.0047192876 -8.256636508537817,0.07277208232976626,8.256636508537817,11.51142345663701,0.5959997685185184,0.0014234566370106942,0.07487819638008328,11.51,11.51,0.0,-0.0,9.535,1661.3787,0.0028075054 -8.29371367332894,0.08037365611083229,8.29371367332894,5.910843288866388,0.5987809027777777,0.0008432888663884492,0.08268645180162096,5.91,5.91,0.0,-0.0,11.024999999999999,1661.6462,0.0016725903 -7.769049437530327,0.0668796031843599,7.769049437530327,2.550489974009043,0.5999998842592592,0.0004899740090432099,0.0689660808529744,2.55,2.55,0.0,-0.0,8.15,1657.7435,0.00097519305 -7.3182249845656875,0.06380256779322947,7.3182249845656875,5.200290962475501,0.6027810185185185,0.0002909624755005125,0.06593504539313343,5.2,5.2,0.0,-0.0,7.385000000000001,1654.1735,0.00058024155 -6.8135568738759735,0.060228162529528305,6.8135568738759735,0.30017246915085316,0.6039996527777778,0.0001724691508531903,0.06240214912169247,0.3,0.3,0.0,-0.0,6.51,1649.9062,0.00034434543 -6.195640877391747,0.08310798540418332,6.195640877391747,1.9001020878379546,0.6063304398148148,0.0001020878379547815,0.08640516731010812,1.9,1.9,0.0,-0.0,11.525,1644.2288,0.00020396766 -6.15328546097608,0.07790328730355199,6.15328546097608,10.130060940003725,0.6079995370370371,6.0940003724798596e-5,0.08101416588378609,10.13,10.13,0.0,-0.0,10.46,1643.8191,0.000121805824 -6.469506963158749,0.06261109317404086,6.469506963158749,8.72003599477285,0.6098476851851852,3.599477284864527e-5,0.0649929864851805,8.72,8.72,0.0,-0.0,6.985,1646.8119,7.196365e-5 -6.287908236405573,0.05450256576073794,6.287908236405573,1.5700213618761847,0.6120002314814815,2.1361876184668782e-5,0.056634463556257696,1.57,1.57,0.0,-0.0,4.84,1645.1116,4.271463e-5 -5.843316372440058,0.055738500309378276,5.843316372440058,1.5900127344825083,0.6133524305555556,1.2734482508244702e-5,0.05807333306279766,1.59,1.59,0.0,-0.0,5.1850000000000005,1640.7323,2.5465723e-5 -5.520937961710379,0.06801451127577127,5.520937961710379,2.7700074749939505,0.6159914351851852,7.474993950535595e-6,0.07101025598407762,2.77,2.77,0.0,-0.0,8.195,1637.3431,1.4948871e-5 -5.171057165456925,0.08460530684775011,5.171057165456925,0.2200043715354894,0.6162851851851852,4.371535489416869e-6,0.08854324209887707,0.22,0.22,0.0,-0.0,11.655000000000001,1633.4332,8.742689e-6 -4.769958227540849,0.07561008736368674,4.769958227540849,0.15000231111332585,0.6195356481481481,2.31111332586199e-6,0.07936361780673094,0.15,0.15,0.0,-0.0,9.84,1628.6115,4.62212e-6 -4.453036595154493,0.056959766319464304,4.453036595154493,1.3200013075891037,0.6199998842592592,1.3075891036716236e-6,0.05993854316876964,1.32,1.32,0.0,-0.0,5.5,1624.5056,2.615144e-6 -4.164673099417336,0.0524934052013468,4.164673099417336,7.36256161025616e-7,0.6227818287037037,7.36256161025616e-7,0.055374895031672554,0.0,0.0,0.0,-0.0,4.24,1620.5074,1.4725015e-6 -3.899786788592679,0.0550626300163695,3.899786788592679,4.201584463188474e-7,0.6240006944444445,4.201584463188474e-7,0.05822616348752062,0.0,0.0,0.0,-0.0,4.965,1616.5829,8.4031336e-7 -3.7711006662142967,0.07607293825846655,3.7711006662142967,0.11000017585207617,0.6253526620370371,1.7585207616435562e-7,0.0805434258101462,0.11,0.11,0.0,-0.0,9.924999999999999,1614.579,3.5170353e-7 -3.7363051263287566,0.08565623555680434,3.7363051263287566,3.719999977090502,0.6278895833333333,-2.2909498379034883e-8,0.09072099870703595,3.72,3.72,0.0,-0.0,11.745000000000001,1614.0254,-4.5819007e-8 -3.706615880597987,0.09009873711256058,3.706615880597987,4.159999878623717,0.6280518518518519,-1.2137628336161558e-7,0.09545435766049278,4.16,4.16,0.0,-0.0,12.555,1613.549,-2.4275286e-7 -3.595303269244413,0.09401461024985004,3.595303269244413,-8.91648839088064e-8,0.6303303240740741,-8.91648839088064e-8,0.09971552789052594,0.0,0.0,0.0,-0.0,13.200000000000001,1611.728,-1.7832993e-7 -3.451196433221396,0.08120476047034776,3.451196433221396,1.9199999509732786,0.6319916666666667,-4.9026721293920936e-8,0.08625965525568467,1.92,1.92,0.0,-0.0,10.84,1609.285,-9.805349e-8 -3.541612613356429,0.060495254480970845,3.541612613356429,8.709999972306303,0.6322856481481481,-2.7693697437499577e-8,0.0641993961475436,8.71,8.71,0.0,-0.0,6.245,1610.8295,-5.538741e-8 -3.711627314041895,0.06247564012608486,3.711627314041895,5.649999984414413,0.6347809027777778,-1.558558727860567e-8,0.06618598755450167,5.65,5.65,0.0,-0.0,6.65,1613.6296,-3.117118e-8 -3.659833413521118,0.0682825417304741,3.659833413521118,-8.629197944305712e-9,0.6360001157407408,-8.629197944305712e-9,0.07237539528489814,0.0,0.0,0.0,-0.0,7.995,1612.7904,-1.7258397e-8 -3.6783803873508534,0.07148073438465917,3.6783803873508534,2.8299999950968417,0.6362856481481481,-4.9031585274786126e-9,0.07575110852526876,2.83,2.83,0.0,-0.0,8.695,1613.0923,-9.8063175e-9 -3.9642922957383577,0.06370595118713751,3.9642922957383577,13.329999997459385,0.6387810185185185,-2.5406143209905502e-9,0.06732526981769658,13.33,13.33,0.0,-0.0,6.815,1617.5626,-5.0812288e-9 -4.357742567349579,0.06989655636296184,4.357742567349579,-1.4713815504882492e-9,0.6399917824074074,-1.4713815504882492e-9,0.0736104154764949,0.0,0.0,0.0,-0.0,8.16,1623.2137,-2.9427631e-9 -5.220025146575654,0.06998202820810868,5.220025146575654,23.58999999917809,0.6400512731481481,-8.219087010045493e-10,0.07321409728577702,23.59,23.59,0.0,-0.0,8.075,1633.9961,-1.6438174e-9 -6.577714147323997,0.07210878074972622,6.577714147323997,20.189999999524332,0.6418483796296296,-4.75670334190171e-10,0.07480699310832245,20.19,20.19,0.0,-0.0,8.365,1647.8025,-9.513407e-10 -7.1537891511261655,0.08361954486352115,7.1537891511261655,7.659999999763229,0.6435354166666667,-2.3677157400819813e-10,0.08648532411282353,7.66,7.66,0.0,-0.0,10.594999999999999,1652.8163,-4.7354315e-10 -6.833753313433322,0.08554454051952641,6.833753313433322,-1.0466422162439508e-10,0.6439998842592592,-1.0466422162439508e-10,0.08862284889417821,0.0,0.0,0.0,-0.0,10.97,1650.083,-2.0932844e-10 -6.281870349710265,0.08245778662934763,6.281870349710265,2.8199999999381458,0.6442856481481481,-6.185400798834805e-11,0.08568615653697025,2.82,2.82,0.0,-0.0,10.43,1645.0542,-1.2370802e-10 -5.892131122032395,0.0880860247833609,5.892131122032395,2.0999999999630816,0.6458482638888889,-3.691862092450129e-11,0.0917480825499496,2.1,2.1,0.0,-0.0,11.475000000000001,1641.2291,-7.383724e-11 -5.41816339971648,0.09344243404527351,5.41816339971648,-2.1045536836584256e-11,0.6471538194444444,-2.1045536836584256e-11,0.09762507833312328,0.0,0.0,0.0,-0.0,12.435,1636.221,-4.2091074e-11 -5.065054438906471,0.10731039427190639,5.065054438906471,0.7399999999877154,0.6479927083333333,-1.2284643786820372e-11,0.11239024175056123,0.74,0.74,0.0,-0.0,14.695,1632.1963,-2.4569288e-11 -5.387319205339299,0.10948542768957173,5.387319205339299,12.129999999992899,0.6480521990740741,-7.102602359915903e-12,0.1144100238326049,12.13,12.13,0.0,-0.0,14.985,1635.88,-1.4205205e-11 -5.496941881689113,0.08081739441756147,5.496941881689113,1.7599999999957832,0.6487947916666666,-4.216799218653521e-12,0.0843904581694389,1.76,1.76,0.0,-0.0,10.080000000000002,1637.083,-8.4335984e-12 -5.103256057594032,0.07993738447482045,5.103256057594032,-2.529463400824239e-12,0.6498487268518519,-2.529463400824239e-12,0.08369844073024856,0.0,0.0,0.0,-0.0,9.925,1632.645,-5.058927e-12 -4.7036169747231265,0.09243759336557357,4.7036169747231265,0.05999999999851742,0.6507814814814814,-1.4825804429396425e-12,0.09707635257258683,0.06,0.06,0.0,-0.0,12.254999999999999,1627.775,-2.9651609e-12 -4.356121721618437,0.10147053369407012,4.356121721618437,0.03999999999913912,0.6515357638888889,-8.608823831678932e-13,0.10686349607846593,0.04,0.04,0.0,-0.0,13.785,1623.1915,-1.7217648e-12 -4.053624751241811,0.12325871221774147,4.053624751241811,-3.2852052241658423e-13,0.6519921296296297,-3.2852052241658423e-13,0.1301543134650284,0.0,0.0,0.0,-0.0,17.015,1618.8934,-6.5704104e-13 -3.787996416789071,0.13727964377286228,3.787996416789071,9.373353330498671e-14,0.6520001157407407,9.373353330498671e-14,0.1453229638283225,0.0,0.0,0.0,-0.0,18.865000000000002,1614.846,1.8746707e-13 -3.5536065130048824,0.14906766071591201,3.5536065130048824,2.8444930330514126e-13,0.6520517361111111,2.8444930330514126e-13,0.15817529007124567,0.0,0.0,0.0,-0.0,20.305,1611.0314,5.688986e-13 -3.3570514725687532,0.15627013599667353,3.3570514725687532,1.7592891932788072e-13,0.6522856481481482,1.7592891932788072e-13,0.16616830788790118,0.0,0.0,0.0,-0.0,21.145,1607.6333,3.5185784e-13 -3.2325549460298086,0.16183594652146716,3.2325549460298086,-2.6298030119107003e-14,0.6527943287037037,-2.6298030119107003e-14,0.17232857679335628,0.0,0.0,0.0,-0.0,21.76,1605.3765,-5.259606e-14 -3.151587476146609,0.16289986585692728,3.151587476146609,0.23999999999976213,0.653352662037037,-2.378702703553674e-13,0.17362531458234073,0.24,0.24,0.0,-0.0,21.875,1603.8616,-4.7574054e-13 -3.083123082609151,0.15456951670329067,3.083123082609151,4.589999999999598,0.653848611111111,-4.014577570100717e-13,0.16488132974817385,4.59,4.59,0.0,-0.0,20.97,1602.5499,-8.029155e-13 -2.999239462986695,0.14840846126124632,2.999239462986695,-4.597304524893113e-13,0.653848611111111,-4.597304524893113e-13,0.1584721523603229,0.0,0.0,0.0,-0.0,20.29,1600.9026,-9.194609e-13 -2.875501175129029,0.12944727084651544,2.875501175129029,-3.5628791583570305e-13,0.653848611111111,-3.5628791583570305e-13,0.1384427774667847,0.0,0.0,0.0,-0.0,18.0,1598.3865,-7.1257583e-13 -2.737036227966361,0.14564790913132408,2.737036227966361,-1.9384411339502006e-13,0.6543310185185185,-1.9384411339502006e-13,0.15605697865151277,0.0,0.0,0.0,-0.0,20.015,1595.4392,-3.8768823e-13 -2.6102973611424853,0.16841851663577312,2.6102973611424853,-8.454182991682115e-14,0.6543310185185185,-8.454182991682115e-14,0.18077576321474556,0.0,0.0,0.0,-0.0,22.549999999999997,1592.6078,-1.6908366e-13 -2.493832593583442,0.18034119572172025,2.493832593583442,-3.64602757165321e-14,0.653848611111111,-3.64602757165321e-14,0.19390511473635497,0.0,0.0,0.0,-0.0,23.79,1589.882,-7.292055e-14 -2.386121980866537,0.13945049078128624,2.386121980866537,6.236622275474367e-14,0.653848611111111,6.236622275474367e-14,0.15018799339709682,0.0,0.0,0.0,-0.0,19.375,1587.2452,1.2473245e-13 -2.2865427959914184,0.0897565558195379,2.2865427959914184,2.281903236251232e-13,0.653352662037037,2.281903236251232e-13,0.09682298543491172,0.0,0.0,0.0,-0.0,12.15,1584.6995,4.5638065e-13 -2.194678318243183,0.09125421693405127,2.194678318243183,0.18000000000043456,0.653352662037037,4.345655508637841e-13,0.09859090922926084,0.18,0.18,0.0,-0.0,12.44,1582.2506,8.691311e-13 -2.1101633828547057,0.11397807353277524,2.1101633828547057,3.400000000000655,0.6527943287037037,6.550454623209411e-13,0.12332451919151581,3.4,3.4,0.0,-0.0,16.1,1579.9054,1.3100909e-12 -2.032634760245144,0.09112487997598412,2.032634760245144,8.631836022938556e-13,0.6522856481481482,8.631836022938556e-13,0.09873702201938862,0.0,0.0,0.0,-0.0,12.49,1577.6699,1.7263672e-12 -1.96176832935321,0.09637439218655826,1.96176832935321,1.0325335421844137e-12,0.6520517361111111,1.0325335421844137e-12,0.10456551512790986,0.0,0.0,0.0,-0.0,13.42,1575.5507,2.065067e-12 -1.8972622091137286,0.11430932596779327,1.8972622091137286,1.1366487178689344e-12,0.6519921296296297,1.1366487178689344e-12,0.12418216468666815,0.0,0.0,0.0,-0.0,16.235,1573.554,2.2732974e-12 -1.8388382682997833,0.13880893655500465,1.8388382682997833,1.1490828904843687e-12,0.6518894675925926,1.1490828904843687e-12,0.1509770146623455,0.0,0.0,0.0,-0.0,19.515,1571.686,2.2981658e-12 -1.7862543491455227,0.14300186944010101,1.7862543491455227,5.280000000001044,0.6511538194444445,1.043389441697302e-12,0.15570916033881002,5.28,5.28,0.0,-0.0,20.06,1569.9534,2.0867789e-12 -1.7392932643731862,0.134408859086429,1.7392932643731862,0.4700000000007931,0.6503311342592593,7.931219158055956e-13,0.1465010374147321,0.47,0.47,0.0,-0.0,19.045,1568.3623,1.5862438e-12 -1.7013596943930918,0.17274999068209151,1.7013596943930918,2.2316710653975792e-13,0.6493528935185184,2.2316710653975792e-13,0.188449787414395,0.0,0.0,0.0,-0.0,23.41,1567.0454,4.463342e-13 -1.6789799847201938,0.1891114068201158,1.6789799847201938,14.169999999999169,0.6482863425925927,-8.320130066609585e-13,0.20640231126461095,14.17,14.17,0.0,-0.0,25.045,1566.2546,-1.664026e-12 -1.6717405938327403,0.10464019743799184,1.6717405938327403,17.469999999997874,0.6480008101851852,-2.1254228845211228e-12,0.11422651886642518,17.47,17.47,0.0,-0.0,14.96,1565.9966,-4.2508458e-12 -1.6794261914091022,0.0909824339461118,1.6794261914091022,-3.400465239134896e-12,0.647890162037037,-3.400465239134896e-12,0.09930016756678249,0.0,0.0,0.0,-0.0,12.69,1566.2705,-6.8009305e-12 -1.7022328080411384,0.1071595274800957,1.7022328080411384,7.049999999995599,0.64678125,-4.400543297617495e-12,0.11689607191423548,7.05,7.05,0.0,-0.0,15.370000000000001,1567.076,-8.801087e-12 -1.7407586179060177,0.10842167479204415,1.7407586179060177,4.559999999995131,0.645352199074074,-4.869060016051096e-12,0.1181721101417915,4.56,4.56,0.0,-0.0,15.585,1568.4126,-9.73812e-12 -1.796040653817414,0.08599000570417657,1.796040653817414,3.0299999999954506,0.6440515046296297,-4.54941769999337e-12,0.09361170872074953,3.03,3.03,0.0,-0.0,11.84,1570.2797,-9.098835e-12 -1.8703242226149863,0.09593944808056004,1.8703242226149863,4.829999999996805,0.6438894675925926,-3.194979870844223e-12,0.10428228612338175,4.83,4.83,0.0,-0.0,13.58,1572.7,-6.3899597e-12 -1.9949309769336798,0.11851679508122756,1.9949309769336798,0.33999999999883146,0.6427809027777778,-1.1685558119966527e-12,0.1285082077452465,0.34,0.34,0.0,-0.0,17.04,1576.5518,-2.3371116e-12 -2.181163376194252,0.12679173613590575,2.181163376194252,5.170000000000835,0.6407940972222222,8.349185058667872e-13,0.13701753301049618,5.17,5.17,0.0,-0.0,18.165,1581.8817,1.669837e-12 -2.421988501894954,0.12454971651372036,2.421988501894954,10.40000000000226,0.6399997685185186,2.258894243582455e-12,0.13406462287348225,10.4,10.4,0.0,-0.0,17.82,1588.1362,4.5177885e-12 -2.7061560531144027,0.1414624532290013,2.7061560531144027,12.300000000002548,0.6395354166666667,2.546822995617619e-12,0.15163680225603637,12.3,12.3,0.0,-0.0,19.915,1594.7616,5.093646e-12 -2.9352903668398937,0.13465454205985536,2.9352903668398937,4.650000000001614,0.6378482638888888,1.6139470402753567e-12,0.14390126454490426,4.65,4.65,0.0,-0.0,19.07,1599.6155,3.227894e-12 -2.887723180864403,0.12630908570125723,2.887723180864403,8.945387291226875e-13,0.6360001157407408,8.945387291226875e-13,0.13506511087110354,0.0,0.0,0.0,-0.0,18.05,1598.6398,1.7890775e-12 -2.738821491481641,0.11020820297892273,2.738821491481641,5.207192099412253e-13,0.6355359953703703,5.207192099412253e-13,0.11808160869822236,0.0,0.0,0.0,-0.0,15.825,1595.4781,1.0414384e-12 -2.5952625524646904,0.11296005962786528,2.5952625524646904,0.17000000000029078,0.6338483796296296,2.9076022731078124e-13,0.12127446303325046,0.17,0.17,0.0,-0.0,16.310000000000002,1592.2628,5.8152045e-13 -2.6443665298963794,0.10819677097987722,2.6443665298963794,6.820000000000168,0.6319996527777777,1.6816550322429871e-13,0.1160789681782532,6.82,6.82,0.0,-0.0,15.635000000000002,1593.3822,3.36331e-13 -3.090277871953774,0.10411623860170154,3.090277871953774,16.550000000000097,0.6315355324074073,9.494636928897634e-14,0.11105256391186594,16.55,16.55,0.0,-0.0,14.92,1602.6884,1.8989274e-13 -3.92467260952968,0.11507486352569711,3.92467260952968,21.310000000000052,0.6287943287037038,5.473904004228402e-14,0.12165771335567489,21.31,21.31,0.0,-0.0,16.495,1616.9628,1.0947808e-13 -4.131858675230133,0.11795357616825093,4.131858675230133,3.1723653922982255e-14,0.628,3.1723653922982255e-14,0.12446461698993931,0.0,0.0,0.0,-0.0,16.895,1620.035,6.344731e-14 -3.991930885606214,0.12553470946160422,3.991930885606214,3.3400000000000185,0.6267813657407407,1.8748903186822108e-14,0.1326326767047132,3.34,3.34,0.0,-0.0,17.990000000000002,1617.9775,3.7497806e-14 -3.9936855998791803,0.12502735124915326,3.9936855998791803,5.020000000000011,0.624052199074074,1.1163116668567345e-14,0.13209448881326186,5.02,5.02,0.0,-0.0,17.995,1618.0038,2.2326233e-14 -3.992877519376785,0.11335770936592515,3.992877519376785,6.399748115617856e-15,0.6238902777777778,6.399748115617856e-15,0.11976611808596838,0.0,0.0,0.0,-0.0,16.365000000000002,1617.9917,1.2799496e-14 -3.973459465419901,0.10365154567500517,3.973459465419901,6.030000000000004,0.6207944444444444,3.2876213771884565e-15,0.10953094824239269,6.03,6.03,0.0,-0.0,14.975,1617.7006,6.5752428e-15 -3.978782880721409,0.13859138809995475,3.978782880721409,4.090000000000002,0.6199998842592592,1.872427528036105e-15,0.1464454370647757,4.09,4.09,0.0,-0.0,19.85,1617.7805,3.744855e-15 -3.8191414870047513,0.15766164119529544,3.8191414870047513,0.540000000000001,0.6183303240740741,1.035864013888962e-15,0.16684863245196832,0.54,0.54,0.0,-0.0,22.14,1615.335,2.071728e-15 -3.7104970653848572,0.15812402078421328,3.7104970653848572,4.080000000000001,0.615999537037037,5.947433898212225e-16,0.1675166899893678,4.08,4.08,0.0,-0.0,22.275,1613.6115,1.1894868e-15 -3.6327858577939405,0.11034270972625189,3.6327858577939405,2.3600000000000003,0.6151532407407407,3.4166587998895535e-16,0.11698878241117758,2.36,2.36,0.0,-0.0,16.21,1612.3474,6.8333176e-16 -3.634263845112205,0.11987652025214067,3.634263845112205,5.03,0.6120002314814815,1.9961853414374725e-16,0.1270949108469249,5.03,5.03,0.0,-0.0,17.675,1612.3717,3.9923707e-16 -3.721898741182976,0.12769000254066623,3.721898741182976,5.61,0.6115356481481482,1.0631506905938271e-16,0.13525951247711834,5.61,5.61,0.0,-0.0,18.735,1613.7947,2.1263014e-16 -3.761739033817186,0.1286379404098795,3.761739033817186,3.36,0.6080510416666667,5.2770268419228693e-17,0.13620997525804135,3.36,3.36,0.0,-0.0,18.95,1614.4305,1.0554054e-16 -3.5819750011654223,0.14526578698027445,3.5819750011654223,3.0591746325501737e-17,0.6078891203703704,3.0591746325501737e-17,0.15409571226805735,0.0,0.0,0.0,-0.0,21.060000000000002,1611.5062,6.118349e-17 -3.3606215831862456,0.12810013027260098,3.3606215831862456,1.6591304176457914e-17,0.6042853009259259,1.6591304176457914e-17,0.13620863200288108,0.0,0.0,0.0,-0.0,19.055,1607.6968,3.318261e-17 -3.4419183016540384,0.15121774202588922,3.4419183016540384,12.83,0.6039916666666666,9.732841179412276e-18,0.16064690588418723,12.83,12.83,0.0,-0.0,21.89,1609.1243,1.9465682e-17 -3.564511520917297,0.1335615154892475,3.564511520917297,5.618930367593085e-18,0.6002854166666667,5.618930367593085e-18,0.14170566632443063,0.0,0.0,0.0,-0.0,19.84,1611.2144,1.1237861e-17 -3.569308938360039,0.14010376096346402,3.569308938360039,6.81,0.5999998842592592,3.3228581397000294e-18,0.14863942687298007,6.81,6.81,0.0,-0.0,20.665,1611.2947,6.6457163e-18 -3.7869590212297113,0.11627970836253237,3.7869590212297113,8.02,0.5962851851851851,1.9140880792318868e-18,0.12309387289624288,8.02,8.02,0.0,-0.0,17.575,1614.8296,3.828176e-18 -3.795180813694233,0.09332258932090887,3.795180813694233,1.1243299447713706e-18,0.5959997685185184,1.1243299447713706e-18,0.09878350951814101,0.0,0.0,0.0,-0.0,13.955000000000002,1614.9591,2.2486599e-18 -3.556418683120769,0.08166159169607798,3.556418683120769,6.419916755085973e-19,0.5920523148148148,6.419916755085973e-19,0.08664835239974922,0.0,0.0,0.0,-0.0,11.95,1611.0786,1.2839834e-18 -3.35153214555346,0.08941188189583171,3.35153214555346,3.7824792893063175e-19,0.591992824074074,3.7824792893063175e-19,0.09508105461396976,0.0,0.0,0.0,-0.0,13.445,1607.535,7.5649586e-19 -3.1687244528012593,0.08688596056624145,3.1687244528012593,2.1979954389153863e-19,0.5880002314814815,2.1979954389153863e-19,0.09258790164915048,0.0,0.0,0.0,-0.0,13.125,1604.1854,4.395991e-19 -2.9735587436416027,0.10427800844638173,2.9735587436416027,8.833770661713783e-20,0.5879922453703703,8.833770661713783e-20,0.11138491074278288,0.0,0.0,0.0,-0.0,16.145,1600.389,1.7667541e-19 -2.7796088500181004,0.12195061604007028,2.7796088500181004,-4.887771788602054e-20,0.5840005787037037,-4.887771788602054e-20,0.1305906551521876,0.0,0.0,0.0,-0.0,18.92,1596.361,-9.7755436e-20 -2.6324910420267944,0.14011319635312794,2.6324910420267944,-1.5423651060694382e-19,0.5835359953703704,-1.5423651060694382e-19,0.15034588645950567,0.0,0.0,0.0,-0.0,21.34,1593.1134,-3.0847302e-19 -2.5691255782751776,0.1323086963957076,2.5691255782751776,1.59,0.5800003472222222,-1.9012844607229082e-19,0.14210120027247622,1.59,1.59,0.0,-0.0,20.475,1591.6583,-3.802569e-19 -2.6196620091788,0.12990667738610695,2.6196620091788,6.22,0.5787818287037036,-1.3262343149897254e-19,0.13941950113781534,6.22,6.22,0.0,-0.0,20.185000000000002,1592.8217,-2.6524686e-19 -2.687584473191324,0.12256393401921395,2.687584473191324,2.97,0.5760005787037037,-7.814602721456905e-20,0.13141294078109952,2.97,2.97,0.0,-0.0,19.259999999999998,1594.3503,-1.5629205e-19 -2.632647093284843,0.1257275179137074,2.632647093284843,-4.574788616797009e-20,0.5738478009259259,-4.574788616797009e-20,0.1349092992087486,0.0,0.0,0.0,-0.0,19.77,1593.117,-9.149577e-20 -2.5173350530411907,0.10649105108386543,2.5173350530411907,-2.4685066344279837e-20,0.5719994212962963,-2.4685066344279837e-20,0.11446018427697023,0.0,0.0,0.0,-0.0,17.055,1590.4421,-4.9370133e-20 -2.4352080093837287,0.07876238532387114,2.4352080093837287,1.77,0.5680513888888888,-1.4292676089719037e-20,0.08476204415242551,1.77,1.77,0.0,-0.0,12.26,1588.4613,-2.8585352e-20 -2.3546963932424134,0.08616579388327379,2.3546963932424134,-7.951262329056041e-21,0.5679997685185185,-7.951262329056041e-21,0.09284675931946193,0.0,0.0,0.0,-0.0,13.73,1586.4535,-1.5902525e-20 -2.2687213562670463,0.07760381693193748,2.2687213562670463,-4.5202084288591474e-21,0.5639996527777777,-4.5202084288591474e-21,0.08373816762771687,0.0,0.0,0.0,-0.0,12.18,1584.2322,-9.040417e-21 -2.225464415550289,0.10197008191502241,2.225464415550289,-1.754891538409308e-21,0.5639916666666667,-1.754891538409308e-21,0.11011041912186714,0.0,0.0,0.0,-0.0,16.645,1583.0825,-3.509783e-21 -2.2504683395125915,0.10678246368290283,2.2504683395125915,3.65,0.56,3.961940426719925e-22,0.11525839740541935,3.65,3.65,0.0,-0.0,17.525,1583.7498,7.923881e-22 -2.3651398344947845,0.1141166241542509,2.3651398344947845,9.03,0.558330324074074,1.3154426493386879e-21,0.12294430895072046,9.03,9.03,0.0,-0.0,18.66,1586.7178,2.6308853e-21 -2.500074628694671,0.1046400859585377,2.500074628694671,5.81,0.5560002314814815,8.721653236317217e-22,0.112499768512329,5.81,5.81,0.0,-0.0,17.240000000000002,1590.0312,1.7443306e-21 -2.45114865888753,0.10576390286585236,2.45114865888753,4.795503365758297e-22,0.5520519675925926,4.795503365758297e-22,0.11379246649847512,0.0,0.0,0.0,-0.0,17.55,1588.851,9.591007e-22 -2.519229322224972,0.10407287162943925,2.519229322224972,7.46,0.5520004629629629,2.7873967159119667e-22,0.11185788377835255,7.46,7.46,0.0,-0.0,17.265,1590.487,5.5747934e-22 -2.8689492036952546,0.09012173194587068,2.8689492036952546,13.09,0.5479999999999999,1.6304555842342378e-22,0.09639265686368374,13.09,13.09,0.0,-0.0,14.924999999999999,1598.2502,3.2609112e-22 -3.1978027815756525,0.08938667474858022,3.1978027815756525,6.62,0.5479921296296296,9.659301386198581e-23,0.09522034523834963,6.62,6.62,0.0,-0.0,14.725000000000001,1604.731,1.9318603e-22 -3.342214512456939,0.09022180844066618,3.342214512456939,5.22,0.5439997685185185,5.54419585233869e-23,0.09595225855270133,5.22,5.22,0.0,-0.0,14.97,1607.3688,1.1088392e-22 -3.6336176158888494,0.10922911884241833,3.6336176158888494,12.59,0.540794212962963,3.276343181040771e-23,0.11580713663870937,12.59,12.59,0.0,-0.0,18.189999999999998,1612.3611,6.5526864e-23 -3.8006227214205195,0.11746271960936418,3.8006227214205195,1.8950224924498124e-23,0.54,1.8950224924498124e-23,0.12432965022971901,0.0,0.0,0.0,-0.0,19.415,1615.0447,3.790045e-23 -3.566508445717492,0.13746592374281055,3.566508445717492,1.129909455919574e-23,0.5359994212962963,1.129909455919574e-23,0.14584512520699935,0.0,0.0,0.0,-0.0,22.285,1611.2478,2.2598189e-23 -3.359811109819813,0.1418055364989137,3.359811109819813,5.603903787621782e-24,0.5359994212962963,5.603903787621782e-24,0.1507829160909663,0.0,0.0,0.0,-0.0,22.865000000000002,1607.6824,1.12078076e-23 -3.1902816630366915,0.12821220486046025,3.1902816630366915,12.08,0.5319998842592593,-7.380499798852738e-24,0.13659172779552922,12.08,12.08,0.0,-0.0,21.28,1604.5903,-1.4761e-23 -3.051318076547986,0.08990235789443757,3.051318076547986,-2.652369035595969e-23,0.5298482638888888,-2.652369035595969e-23,0.09593709604595124,0.0,0.0,0.0,-0.0,15.399999999999999,1601.9307,-5.304738e-23 -2.9344505076693497,0.07652839477574731,2.9344505076693497,2.34,0.5279998842592593,-4.8291354091560003e-23,0.08178447061220767,2.34,2.34,0.0,-0.0,12.86,1599.5984,-9.658271e-23 -2.8326060420706445,0.09848803220116957,2.8326060420706445,2.72,0.5240002314814816,-6.914916774718375e-23,0.1053913128141838,2.72,2.72,0.0,-0.0,17.14,1597.4889,-1.3829834e-22 -2.739706159745345,0.09815898584533465,2.739706159745345,3.24,0.5240002314814816,-8.556281989727457e-23,0.10517030973121937,3.24,3.24,0.0,-0.0,17.105,1595.4974,-1.7112564e-22 -2.6504326977894466,0.08333081218183273,2.6504326977894466,-9.399798333905802e-23,0.520000462962963,-9.399798333905802e-23,0.08939383272617954,0.0,0.0,0.0,-0.0,14.55,1593.519,-1.8799597e-22 -2.560135199984914,0.06598721252169348,2.560135199984914,-9.092035295786497e-23,0.5183310185185186,-9.092035295786497e-23,0.07088041721352864,0.0,0.0,0.0,-0.0,10.870000000000001,1591.449,-1.818407e-22 -2.4647943329865036,0.05269330715529827,2.4647943329865036,-7.27956047063646e-23,0.5159998842592592,-7.27956047063646e-23,0.056681441313485265,0.0,0.0,0.0,-0.0,7.449999999999999,1589.1825,-1.4559121e-22 -2.362163692489766,0.05235404356975338,2.362163692489766,-4.26128366840788e-23,0.511999537037037,-4.26128366840788e-23,0.05640665244586296,0.0,0.0,0.0,-0.0,7.495,1586.6426,-8.5225673e-23 -2.287646075607149,0.049618480927688766,2.287646075607149,-1.8399650499751792e-23,0.511999537037037,-1.8399650499751792e-23,0.05352391340248851,0.0,0.0,0.0,-0.0,6.6899999999999995,1584.7283,-3.67993e-23 -2.305908384721529,0.054567976897165915,2.305908384721529,6.41,0.5079996527777778,-5.123839722736367e-24,0.05884534776773532,6.41,6.41,0.0,-0.0,8.27,1585.2031,-1.02476794e-23 -2.413981724714057,0.06370684406073839,2.413981724714057,4.79,0.5067805555555556,-2.582553701635597e-24,0.068582232824453,4.79,4.79,0.0,-0.0,10.705,1587.9385,-5.1651074e-24 -2.4465935716575395,0.08020438635207697,2.4465935716575395,2.75,0.503999537037037,-1.0882907125604012e-24,0.08629875440799051,2.75,2.75,0.0,-0.0,14.485,1588.7399,-2.1765814e-24 -2.407944797264369,0.08332468912408543,2.407944797264369,-2.4949296453853954e-25,0.4999997685185186,-2.4949296453853954e-25,0.08970984997922415,0.0,0.0,0.0,-0.0,15.25,1587.789,-4.9898593e-25 -2.4468036200031085,0.10598685436480428,2.4468036200031085,1.06,0.4999997685185186,-1.124099426327292e-25,0.1140399473773017,1.06,1.06,0.0,-0.0,19.255000000000003,1588.745,-2.2481989e-25 -2.953441814661019,0.0904709161098877,2.953441814661019,20.44,0.4959997685185185,-6.139916431703413e-26,0.09666130325681552,20.44,20.44,0.0,-0.0,16.615,1599.9836,-1.2279833e-25 -3.766093609518185,0.05863261158656997,3.766093609518185,18.77,0.49366840277777774,-3.5493428249786933e-26,0.062081255156217596,18.77,18.77,0.0,-0.0,9.549999999999999,1614.4996,-7.0986856e-26 -4.048714264331396,0.05260970475993355,4.048714264331396,0.01,0.4919994212962963,-2.08727356992031e-26,0.05555539296939805,0.01,0.01,0.0,-0.0,7.875,1618.821,-4.174547e-26 -3.8010577894251667,0.051959549718483,3.8010577894251667,-1.2013046576385693e-26,0.48800034722222224,-1.2013046576385693e-26,0.05499689876687536,0.0,0.0,0.0,-0.0,7.844999999999999,1615.0515,-2.4026093e-26 -3.57018454319691,0.05427068473805974,3.57018454319691,0.11,0.48800034722222224,-5.748561535139698e-27,0.05757654244916388,0.11,0.11,0.0,-0.0,8.555,1611.3093,-1.1497123e-26 -3.404797024429526,0.06346524085618216,3.404797024429526,1.29,0.4840002314814815,-2.7358362564825447e-27,0.06744975298178534,1.29,1.29,0.0,-0.0,11.17,1608.4767,-5.4716725e-27 -3.2525246937963432,0.0517041850086244,3.2525246937963432,-1.4814695133148855e-27,0.48167002314814816,-1.4814695133148855e-27,0.05504381403563639,0.0,0.0,0.0,-0.0,8.06,1605.7443,-2.962939e-27 -3.085001659196611,0.05405646959170043,3.085001659196611,-6.2537964189441375e-28,0.4800005787037037,-6.2537964189441375e-28,0.05766143586873722,0.0,0.0,0.0,-0.0,8.835,1602.5863,-1.2507593e-27 -2.928404625452672,0.06756384212542015,2.928404625452672,-2.9097077192661175e-28,0.4760001157407408,-2.9097077192661175e-28,0.07220978025327916,0.0,0.0,0.0,-0.0,12.525,1599.4752,-5.8194154e-28 -2.7863782230559164,0.08606197383194428,2.7863782230559164,-1.4062250915022532e-28,0.4760001157407408,-1.4062250915022532e-28,0.09215096488938788,0.0,0.0,0.0,-0.0,16.505000000000003,1596.5062,-2.8124502e-28 -2.657745681951832,0.09089217731495246,2.657745681951832,-3.359133281994533e-29,0.4719996527777777,-3.359133281994533e-29,0.09749528344128292,0.0,0.0,0.0,-0.0,17.585,1593.6836,-6.7182666e-29 -2.544785853258958,0.08613052430396399,2.544785853258958,0.17,0.4701513888888889,4.434419090397922e-30,0.09253831521676852,0.17,0.17,0.0,-0.0,16.78,1591.0898,8.868838e-30 -2.6521831577419688,0.06333152802611501,2.6521831577419688,7.05,0.46799976851851854,2.489627069617844e-30,0.06793775070387555,7.05,7.05,0.0,-0.0,11.82,1593.5585,4.979254e-30 -3.1561904025725034,0.04540807189153655,3.1561904025725034,18.65,0.463999537037037,1.2244170151102901e-30,0.04839514330499443,18.65,18.65,0.0,-0.0,6.654999999999999,1603.9487,2.448834e-30 -4.023107698575156,0.051663393204647905,4.023107698575156,21.33,0.463999537037037,6.894766664606841e-31,0.054568868713734675,21.33,21.33,0.0,-0.0,8.505,1618.4421,1.3789533e-30 -4.511977633676092,0.04862245698015556,4.511977633676092,4.25,0.46,3.985744933751208e-31,0.05114050351891289,4.25,4.25,0.0,-0.0,7.635,1625.2909,7.97149e-31 -4.457626461364638,0.04351661601999157,4.457626461364638,2.76,0.45920532407407405,2.2301561108404996e-31,0.045790633590998116,2.76,2.76,0.0,-0.0,5.970000000000001,1624.5671,4.460312e-31 -4.263642366878798,0.040882331341806584,4.263642366878798,1.48,0.45599953703703705,7.080735983477551e-32,0.043089166574197556,1.48,1.48,0.0,-0.0,5.155,1621.91,1.4161472e-31 -4.016025373158185,0.035139858525468644,4.016025373158185,-3.2681984378521755e-32,0.45200810185185186,-3.2681984378521755e-32,0.03711848731863267,0.0,0.0,0.0,-0.0,3.0549999999999997,1618.3369,-6.536397e-32 -3.7647082157617295,0.03863341481335263,3.7647082157617295,-5.350532313721155e-32,0.452,-5.350532313721155e-32,0.040906305543683186,0.0,0.0,0.0,-0.0,4.504999999999999,1614.4777,-1.0701065e-31 -3.6740821706474183,0.04646573044089114,3.6740821706474183,0.38,0.4480001157407407,-2.986585256226703e-32,0.04924379954141253,0.38,0.38,0.0,-0.0,7.46,1613.0225,-5.9731705e-32 -3.7541728433482477,0.06705131902125366,3.7541728433482477,7.96,0.4480001157407407,-1.4370998839138183e-32,0.07100345929590551,7.96,7.96,0.0,-0.0,13.23,1614.3103,-2.8741998e-32 -3.853306228080222,0.07048710038888026,3.853306228080222,3.66,0.4440001157407408,-7.89958358501883e-33,0.07456985228464369,3.66,3.66,0.0,-0.0,14.17,1615.8668,-1.5799167e-32 -3.817736579076349,0.04828174479140448,3.817736579076349,2.28,0.44166932870370373,-4.197668286267311e-33,0.05109583161645114,2.28,2.28,0.0,-0.0,8.25,1615.313,-8.3953366e-33 -3.649017160587194,0.036992679114984474,3.649017160587194,-2.171419449928993e-33,0.4400003472222222,-2.171419449928993e-33,0.03921431701079689,0.0,0.0,0.0,-0.0,4.275,1612.6136,-4.342839e-33 -3.4365755330657053,0.03668199122281592,3.4365755330657053,-1.166360576045406e-33,0.43611064814814815,-1.166360576045406e-33,0.0389715392000249,0.0,0.0,0.0,-0.0,4.315,1609.0315,-2.3327212e-33 -3.2472834187431863,0.04421640504089596,3.2472834187431863,-4.1866507817932366e-34,0.43600011574074077,-4.1866507817932366e-34,0.04707521388959431,0.0,0.0,0.0,-0.0,7.1850000000000005,1605.648,-8.373302e-34 -3.077947164665872,0.0316629733892026,3.077947164665872,-7.657458331750771e-35,0.43200000000000005,-7.657458331750771e-35,0.03377742372415647,0.0,0.0,0.0,-0.0,2.33,1602.4496,-1.5314917e-34 -2.925419245130257,0.026628394345125792,2.925419245130257,-0.014610864392052777,0.43194837962962956,-0.014610864392052777,0.028460544485592758,0.0,0.0,0.0,-0.0,-0.16500000000000004,1599.4143,-5.9004316e-7 -2.7869820082854306,0.025033188053052498,2.7869820082854306,-3.20426605424037e-5,0.428,-3.20426605424037e-5,0.02680409981599561,0.0,0.0,0.0,-0.0,-0.895,1596.5192,-2.1680598e-6 -2.6609419358017017,0.02678316021947452,2.6609419358017017,-0.00679528988002519,0.4261517361111111,-0.00679528988002519,0.028727600912974317,0.0,0.0,0.0,-0.0,0.16500000000000004,1593.7554,-3.9902834e-6 -2.5458420063837597,0.029733819309536284,2.5458420063837597,-2.6523754013667287e-6,0.42400011574074076,-2.6523754013667287e-6,0.031945407432794594,0.0,0.0,0.0,-0.0,1.7850000000000001,1591.1146,-5.304892e-6 -2.440385297846333,0.03262431604572094,2.440385297846333,-2.679960313601131e-6,0.42121863425925926,-2.679960313601131e-6,0.03510664293701717,0.0,0.0,0.0,-0.0,3.275,1588.5881,-5.3600643e-6 -2.3434558531771392,0.02885507732736423,2.3434558531771392,-1.7019581866483759e-6,0.41999976851851856,-1.7019581866483759e-6,0.031097991095542683,0.0,0.0,0.0,-0.0,1.5300000000000002,1586.1677,-3.4039788e-6 -2.254404819774884,0.022640752739580283,2.254404819774884,-5.474121819675096e-9,0.4164640046296296,-5.474121819675096e-9,0.024436268166238728,0.0,0.0,0.0,-0.0,-1.8250000000000002,1583.8541,1.5489535e-6 -2.1809137208481717,0.025977143726816955,2.1809137208481717,3.874418653711424e-6,0.4159996527777778,3.874418653711424e-6,0.028072330562682612,0.0,0.0,0.0,-0.0,0.18000000000000016,1581.8749,1.5173296e-5 -2.1219888462302134,0.027833596380050965,2.1219888462302134,0.5300177727937934,0.4121109953703704,1.7772793794024807e-5,0.030109650395789778,0.53,0.5299999999999994,6.76680933509033e-16,-0.0,1.335,1580.2391,3.55396e-5 -2.072325756390139,0.028963678947737694,2.072325756390139,2.160028586831315,0.41200046296296294,2.858683131520606e-5,0.031360211151676025,2.16,2.16,0.0,-0.0,1.9349999999999998,1578.8248,5.715733e-5 -2.027203412409935,0.0247565372598487,2.027203412409935,0.3681198604356752,0.4080084490740741,-0.011880137391363382,0.026827298575162264,0.38,0.3799999978270386,2.1729614674281805e-9,-0.0,-0.19500000000000006,1577.5101,7.4535936e-5 -1.982317855141571,0.02903279830973438,1.982317855141571,4.1109329774978974e-5,0.40794895833333333,4.1109329774978974e-5,0.03148793799735003,0.0,0.0,0.0,-0.0,2.1399999999999997,1576.173,8.218489e-5 -1.9337484437451973,0.03269426928859072,1.9337484437451973,3.7320735816460945e-5,0.40399999999999997,3.7320735816460945e-5,0.03549239819837842,0.0,0.0,0.0,-0.0,4.06,1574.6915,7.4613636e-5 -1.9004449019394685,0.034266265534379954,1.9004449019394685,0.2700245313799416,0.4037145833333334,2.453137994157783e-5,0.03722345769635822,0.27,0.27,0.0,-0.0,4.784999999999999,1573.654,4.905073e-5 -2.0798666693650056,0.035660877407971414,2.0798666693650056,11.750013419764018,0.40000023148148145,1.3419764018120357e-5,0.03860624949595172,11.75,11.75,0.0,-0.0,5.4750000000000005,1579.0417,2.6835927e-5 -2.553591835074856,0.02768226088053205,2.553591835074856,17.93000692906483,0.39971435185185183,6.929064833489052e-6,0.02973786243562508,17.93,17.929999999999996,1.9906298831529056e-15,-0.0,1.6,1591.2961,1.3857179e-5 -3.122061372416576,0.02238248363047338,3.122061372416576,8.616777886847572,0.3960082175925926,-1.981321710138514e-7,0.023864527278526355,8.63,8.616778084979742,0.013221915020258542,-0.0,-1.4449999999999998,1603.2994,-9.104257e-5 -3.5246917194310012,0.026211964243480795,3.5246917194310012,9.909886770512761,0.39571446759259266,-0.00011322948376550903,0.027821870192438373,9.91,9.909999999996527,3.472879206434243e-12,-0.0,0.775,1610.5435,-0.00022728276 -3.69012837120886,0.028679353681267537,3.69012837120886,4.059894919193844,0.3921108796296296,-0.00010508080615614281,0.030389116924414507,4.06,4.06,0.0,-0.0,2.1999999999999997,1613.2827,-0.00021038292 -3.6072651609366106,0.029600897933138408,3.6072651609366106,-5.622844607920848e-5,0.3919487268518519,-5.622844607920848e-5,0.03139199239452736,0.0,0.0,0.0,-0.0,2.6850000000000005,1611.9264,-0.000112520196 -3.4054930498728453,0.03234870761899957,3.4054930498728453,-2.356059095970761e-5,0.3884644675925926,-2.356059095970761e-5,0.03437938231904885,0.0,0.0,0.0,-0.0,4.17,1608.4889,-4.713229e-5 -3.279334122601624,0.025212125667387585,3.279334122601624,0.7099888345244707,0.38799999999999996,-1.1165472786586904e-5,0.02683241208695898,0.71,0.7099999999972573,2.7427055071527204e-12,-0.0,0.5349999999999999,1606.2345,-2.294827e-5 -3.6960542001208254,0.02682012517319634,3.6960542001208254,15.599993394981603,0.3848466435185185,-6.6050183935248856e-6,0.028417359759780377,15.6,15.599999999999996,4.3298697960381105e-15,-0.0,1.4899999999999998,1613.3785,-1.3210935e-5 -4.27807272231576,0.02664047513484551,4.27807272231576,10.639996146350159,0.3840003472222222,-3.853649830198508e-6,0.028075039712730742,10.64,10.639999999999988,1.2403411631112249e-14,-0.0,1.3450000000000002,1622.1118,-7.707661e-6 -4.30140537844399,0.017106509780230893,4.30140537844399,2.6706398204012768e-12,0.38166932870370374,-0.0,0.018024069940104245,3.07,2.6706398204012768e-12,3.069999999997329,-0.0,-4.87,1622.4366,2.132294 -4.011373612448276,0.014731573900868081,4.011373612448276,0.0,0.3799997685185186,-0.0,0.015561733865222707,0.0,0.0,0.0,-0.0,-6.825,1618.2677,3.6831005 -3.7579732379558144,0.015454468136772478,3.7579732379558144,0.0,0.37920590277777777,-0.0,0.01636477318171206,0.0,0.0,0.0,-0.0,-6.11,1614.3707,3.6852698 -3.534518073812983,0.01826930418920538,3.534518073812983,3.4861628742177688e-6,0.37611087962962964,-0.0,0.01938938031908654,20.16,3.4861628742177688e-6,20.159996513837125,-0.0,-3.6500000000000004,1610.7097,13.769394 -3.961109027054935,0.025044897484302418,3.961109027054935,15.542864009827097,0.3759486111111111,1.6528640098310807,0.02646855527116473,13.89,13.889999999996016,3.985556884522623e-12,-0.0,0.7949999999999999,1617.5146,20.325531 -4.231846972358954,0.020691315882375487,4.231846972358954,1.9215542356380553,0.37321898148148147,-6.4901787215177955e-9,0.021814248967156523,2.15,1.921554242128234,0.22844575787176605,-0.0,-1.88,1621.463,20.219213 -3.9589558989274876,0.016241706465138627,3.9589558989274876,0.0,0.3719998842592593,-0.0,0.017165298265059137,0.0,0.0,0.0,-0.0,-5.1899999999999995,1617.4822,21.144228 -3.711832161044115,0.016964332263447603,3.711832161044115,8.22057422134037e-12,0.37120578703703705,-0.0,0.017971785297994453,0.3,8.22057422134037e-12,0.29999999999177945,-0.0,-4.5249999999999995,1613.6329,21.28462 -3.4949404639039625,0.01950482907124782,3.4949404639039625,0.6313737927746069,0.3684645833333333,-3.204172789144894e-11,0.020709300536861125,19.94,0.6313737928066486,19.308626207193353,-0.0,-2.4349999999999996,1610.0372,31.384628 -4.219219452176297,0.02278199277181748,4.219219452176297,16.419165537594754,0.3680003472222222,-0.010834193923233208,0.024021032326470723,16.43,16.429999731517988,2.684820106796382e-7,-0.0,-0.30000000000000004,1621.2845,34.55305 -4.489594592635206,0.023503884452796848,4.489594592635206,0.020428119632911978,0.36615196759259255,0.020428119632911978,0.024725615437723683,0.0,0.0,0.0,-0.0,0.18999999999999995,1624.9939,34.58304 -4.332076058597094,0.023187756422020152,4.332076058597094,4.698969016291306,0.3644642361111111,-0.07103098196497204,0.02442511500307959,4.77,4.769999998256278,1.7437210625415031e-9,-0.0,0.08000000000000007,1622.861,34.61877 -5.463582791069618,0.024680613771652933,5.463582791069618,32.22193540300018,0.36400011574074076,1.8819354030038984,0.025777506482957544,30.34,30.33999999999628,3.7204161973392046e-12,-0.0,0.8800000000000001,1636.7195,33.76027 -7.7694305729247475,0.020527005818122782,7.7694305729247475,22.1917171246931,0.3621513888888889,-6.4901787215177955e-9,0.021167360056727813,24.83,22.191717131183278,2.6382828688167215,-0.0,-1.88,1657.7465,33.635563 -7.357807784987644,0.01897252032865121,7.357807784987644,-3.607508531619005e-13,0.3604638888888889,-3.607508531619005e-13,0.019602822607035823,0.0,0.0,0.0,-0.0,-2.9,1654.4956,41.499905 -6.548817032837556,0.01756309560728993,6.548817032837556,4.050676311040391e-9,0.3599998842592593,-0.0,0.018223190592992454,0.3,4.050676311040391e-9,0.29999999594932364,-0.0,-3.9050000000000002,1647.5396,41.65239 -5.899988885079858,0.01689092513713771,5.899988885079858,1.6123825075098354e-9,0.35920578703703704,-0.0,0.01759228946444074,11.88,1.6123825075098354e-9,11.879999998387618,-0.0,-4.364999999999999,1641.3087,47.846798 -5.563555859501097,0.020668022166083672,5.563555859501097,8.8599280403459,0.3572189814814815,-5.252389364426437e-7,0.021572308623342206,8.87,8.859928565584838,0.010071434415161598,-0.0,-1.415,1637.8024,56.058216 -5.499908978782932,0.019592232428554294,5.499908978782932,0.7191850203544075,0.35611041666666665,-6.268079050483858e-10,0.020458033026745738,1.71,0.7191850209812154,0.9908149790187846,-0.0,-2.125,1637.1152,56.426865 -5.047371094312318,0.015874481091957545,5.047371094312318,7.764899834228345e-15,0.3559483796296296,-0.0,0.016628073301990683,0.04,7.764899834228345e-15,0.039999999999992236,-0.0,-5.02,1631.9874,57.194065 -4.652907229692645,0.01392087942337776,4.652907229692645,0.0,0.3546476851851852,-0.0,0.014625281642099135,1.7,0.0,1.7,-0.0,-6.73,1627.1277,58.042038 -4.315840037011548,0.008343873435288317,4.315840037011548,0.0,0.35321898148148145,-0.0,0.008790338704221749,0.04,0.0,0.04,-0.0,-13.4,1622.6367,58.847363 -4.024324945172275,0.011576915813176145,4.024324945172275,0.0,0.35211030092592593,-0.0,0.012227848540524567,3.44,0.0,3.44,-0.0,-9.045,1618.4602,60.519527 -3.7693821109023258,0.017108307812035407,3.7693821109023258,1.507001304740796e-6,0.35199988425925927,-0.0,0.0181139967150504,11.19,1.507001304740796e-6,11.189998492998695,-0.0,-3.6750000000000003,1614.5518,67.79918 -4.166529294758159,0.020641541771835484,4.166529294758159,28.259063067473683,0.35171423611111113,-1.4204578490969532e-5,0.021774248299557947,28.26,28.259077272052174,0.0009227279478290707,-0.0,-1.0599999999999998,1620.534,77.772 -4.078133289626249,0.011264747061751337,4.078133289626249,0.0,0.3506474537037037,-0.0,0.011892299088092055,3.75,0.0,3.75,-0.0,-9.36,1619.2534,90.78534 -3.8168002609185367,0.010002495538219613,3.8168002609185367,0.0,0.34966921296296294,-0.0,0.010585583946648438,0.38,0.0,0.38,-0.0,-10.860000000000001,1615.2983,92.72902 -3.586898565674913,0.012569568787610182,3.586898565674913,0.0,0.3488465277777778,-0.0,0.013332926525517525,1.53,0.0,1.53,-0.0,-7.76,1611.5883,93.4934 -3.383186918449227,0.006266713144098949,3.383186918449227,0.0,0.3481105324074074,-0.0,0.006661728473007962,0.56,0.0,0.56,-0.0,-16.715,1608.0964,94.19179 -3.2014260195831596,0.007714959613102213,3.2014260195831596,0.0,0.3480079861111111,-0.0,0.008218117103614121,0.7,0.0,0.7,-0.0,-14.07,1604.7986,94.94073 -3.0379751688497123,0.015630705704237708,3.0379751688497123,1.171392050025588e-10,0.34794849537037037,-0.0,0.016682649755139726,16.49,1.171392050025588e-10,16.48999999988286,-0.0,-4.66,1601.669,103.51136 -3.045741048516117,0.01940194891919167,3.045741048516117,20.36891256267842,0.34771435185185184,-8.002051707530321e-8,0.02070572603279403,20.54,20.368912642698938,0.17108735730105998,-0.0,-1.615,1601.8214,118.88533 -3.6058423761361453,0.02267998901401485,3.6058423761361453,7.216154729697346,0.3472057870370371,1.0061547297160283,0.024052663888697125,6.21,6.209999999981317,1.8682675406722636e-11,-0.0,0.56,1611.9028,118.74623 -3.579288944121715,0.0204504746807282,3.579288944121715,-5.852911412737643e-5,0.3466476851851852,-5.852911412737643e-5,0.021694152057037838,0.0,0.0,0.0,-0.0,-0.9049999999999999,1611.4614,118.64291 -3.376009472078289,0.01567303954810638,3.376009472078289,5.040301509495749e-13,0.3466476851851852,-0.0,0.016662286413369354,0.05,5.040301509495749e-13,0.049999999999495975,-0.0,-4.625,1607.9696,118.66762 -3.19473866087865,0.00816563530852281,3.19473866087865,0.0,0.3461518518518519,-0.0,0.008698862061463556,0.1,0.0,0.1,-0.0,-13.274999999999999,1604.6737,118.75969 -3.0321684047084805,0.005824836471933479,3.0321684047084805,0.0,0.3461518518518519,-0.0,0.006217290577235081,1.27,0.0,1.27,-0.0,-17.5,1601.5547,119.38946 -2.885439768939164,0.003509490017560773,2.885439768939164,0.0,0.3456693287037037,-0.0,0.0037528865283704004,0.0,0.0,0.0,-0.0,-23.535,1598.5925,120.03607 -2.7522790790324896,0.004036932433933607,2.7522790790324896,0.0,0.3456693287037037,-0.0,0.004324542281310749,0.0,0.0,0.0,-0.0,-21.87,1595.7709,120.07846 -2.6308073532311362,0.0060672520635686065,2.6308073532311362,0.0,0.3461518518518519,-0.0,0.006510509297594268,7.46,0.0,7.46,-0.0,-16.93,1593.0752,123.80866 -2.519491955662433,0.009380689167999072,2.519491955662433,0.0,0.3461518518518519,-0.0,0.010082357823413117,11.54,0.0,11.54,-0.0,-11.365,1590.4933,133.25594 -2.417156550397483,0.007890751469413308,2.417156550397483,0.0,0.3461518518518519,-0.0,0.008494198922149353,0.0,0.0,0.0,-0.0,-13.579999999999998,1588.017,138.92386 -2.32289636797219,0.004151900903409507,2.32289636797219,0.0,0.3466476851851852,-0.0,0.004476114445993718,0.0,0.0,0.0,-0.0,-21.495,1585.6415,138.94118 -2.235759661131589,0.004709204686878099,2.235759661131589,0.0,0.3472057870370371,-0.0,0.00508425829116866,0.0,0.0,0.0,-0.0,-19.99,1583.3582,138.94118 -2.1548450891108515,0.008663826019384223,2.1548450891108515,0.0,0.34771435185185184,-0.0,0.009366859377255194,0.0,0.0,0.0,-0.0,-12.379999999999999,1581.1567,138.93558 -2.0794798341527905,0.010164728723166875,2.0794798341527905,0.0,0.34794849537037037,-0.0,0.011004351051841032,14.36,0.0,14.36,-0.0,-10.285,1579.0306,146.22101 -2.00913507072073,0.014948081605915106,2.00913507072073,1.5288048604844562e-12,0.34800000000000003,-0.0,0.016203906363696317,12.35,1.5288048604844562e-12,12.34999999999847,-0.0,-5.065,1576.9755,158.588 -1.9434051081574604,0.007503549914119647,1.9434051081574604,0.0,0.3480079861111111,-0.0,0.008144200334699255,0.59,0.0,0.59,-0.0,-14.184999999999999,1574.989,164.74352 -1.881909293898451,0.008226267463225809,1.881909293898451,0.0,0.3484641203703704,-0.0,0.008939522665870473,0.0,0.0,0.0,-0.0,-13.010000000000002,1573.0687,165.31934 -1.8241743788998594,0.007244262975838819,1.8241743788998594,0.0,0.34921886574074074,-0.0,0.007881697420169611,0.0,0.0,0.0,-0.0,-14.645,1571.2079,165.5386 -1.7698632120500228,0.004877951809286326,1.7698632120500228,0.0,0.35015162037037034,-0.0,0.005313274757017673,2.17,0.0,2.17,-0.0,-19.560000000000002,1569.4028,165.89035 -1.7186614347253226,0.007722868340075981,1.7186614347253226,0.0,0.35120578703703703,-0.0,0.008421487723519815,0.18,0.0,0.18,-0.0,-13.875,1567.6497,166.34225 -1.6702821263452332,0.014335636455911066,1.6702821263452332,0.0,0.3519482638888889,-0.0,0.015649476915528298,0.0,0.0,0.0,-0.0,-5.7,1565.9445,166.86198 -1.6244662343207106,0.016552334266838355,1.6244662343207106,2.646280629292619e-8,0.35200787037037035,-0.0,0.018088518539187748,0.24,2.646280629292619e-8,0.2399999735371937,-0.0,-3.695,1564.2834,167.41725 -1.5810119125848954,0.017287033129962784,1.5810119125848954,6.801917680970444e-5,0.35284641203703704,-4.9682409197755746e-14,0.01891097875824845,1.69,6.801917685938685e-5,1.6899319808231406,-0.0,-3.105,1562.6642,168.41112 -1.539814911013813,0.015691791776488755,1.539814911013813,7.656658806975968e-11,0.3541518518518519,-0.0,0.017183218734026007,2.07,7.656658806975968e-11,2.0699999999234335,-0.0,-4.495,1561.0874,170.30342 -1.5008475071746588,0.0068990717343097585,1.5008475071746588,0.0,0.35571446759259256,-0.0,0.007562209580772001,2.11,0.0,2.11,-0.0,-15.399999999999999,1559.5566,172.41359 -1.4638892254258853,0.0067594322126145485,1.4638892254258853,0.0,0.35600000000000004,-0.0,0.007416228699646423,1.57,0.0,1.57,-0.0,-15.655,1558.0676,174.40012 -1.428711036491903,0.006214162622275029,1.428711036491903,0.0,0.3564643518518519,-0.0,0.006824339229863049,4.17,0.0,4.17,-0.0,-16.71,1556.615,177.50014 -1.3951907356384508,0.005805047270286422,1.3951907356384508,0.0,0.35815185185185183,-0.0,0.0063808643424491055,2.37,0.0,2.37,-0.0,-17.6,1555.1971,180.71548 -1.363239671814723,0.0030621216003228926,1.363239671814723,0.0,0.3599482638888889,-0.0,0.0033688580815274477,0.0,0.0,0.0,-0.0,-25.25,1553.8136,181.93039 -1.332750199179374,0.0029560906551364535,1.332750199179374,0.0,0.36000787037037035,-0.0,0.003255035698193343,0.0,0.0,0.0,-0.0,-25.645,1552.4628,181.92046 -1.3035713201745964,0.0050355680677704965,1.3035713201745964,0.0,0.36121863425925926,-0.0,0.005549533346017078,2.35,0.0,2.35,-0.0,-19.41,1551.1407,183.1993 -1.275615201763677,0.005298587383545446,1.275615201763677,0.0,0.3637142361111111,-0.0,0.005844276245203343,1.0,0.0,1.0,-0.0,-18.865,1549.8461,184.86401 -1.2488456053799002,0.0034218439537171746,1.2488456053799002,0.0,0.36400011574074076,-0.0,0.003777338496359799,0.0,0.0,0.0,-0.0,-24.06,1548.5795,185.35266 -1.2231802155908367,0.004842844835600321,1.2231802155908367,0.0,0.36521898148148146,-0.0,0.005350251332323221,0.0,0.0,0.0,-0.0,-19.985,1547.3394,185.2854 -1.1985125535971783,0.007223578287173241,1.1985125535971783,0.0,0.36771435185185186,-0.0,0.007986704823073587,1.5,0.0,1.5,-0.0,-15.129999999999999,1546.1227,186.05177 -1.174772110858044,0.009576535975716904,1.174772110858044,0.0,0.3680083333333333,-0.0,0.010596426778723519,4.64,0.0,4.64,-0.0,-11.515,1544.9279,188.99915 -1.1519515725106297,0.007213587362047824,1.1519515725106297,0.0,0.3696696759259259,-0.0,0.007987883834414056,3.07,0.0,3.07,-0.0,-15.195,1543.7563,192.7416 -1.1300546869991255,0.003691236544698102,1.1300546869991255,0.0,0.3719483796296296,-0.0,0.00409048562603005,0.0,0.0,0.0,-0.0,-23.384999999999998,1542.6102,194.15747 -1.1090091803726663,0.003012670686985663,1.1090091803726663,0.0,0.37211041666666667,-0.0,0.0033409566586187754,0.0,0.0,0.0,-0.0,-25.725,1541.4875,194.18135 -1.0887138399554925,0.005817415264932769,1.0887138399554925,0.0,0.3746479166666667,-0.0,0.006455949449482533,0.0,0.0,0.0,-0.0,-18.009999999999998,1540.3845,194.43323 -1.0690914371238005,0.009046815472880039,1.0690914371238005,0.0,0.3760002314814815,-0.0,0.010046901214976327,6.5,0.0,6.5,-0.0,-12.485000000000001,1539.2983,197.74979 -1.0500866745497768,0.020376426589310638,1.0500866745497768,3.909601903119544,0.3772188657407407,-2.3649070730567677e-7,0.02264470911332502,3.92,3.9096021396102514,0.0103978603897484,-0.0,-1.5000000000000002,1538.2272,203.11182 -1.031780327297716,0.009018004437839617,1.031780327297716,0.0,0.3799997685185186,-0.0,0.010028726831201791,1.28,0.0,1.28,-0.0,-12.645,1537.1769,206.8773 -1.0141330212247346,0.006160692071098147,1.0141330212247346,0.0,0.3804640046296296,-0.0,0.006855766810781166,2.48,0.0,2.48,-0.0,-17.46,1536.1466,209.15138 -0.9970911800314227,0.006817750049196394,0.9970911800314227,0.0,0.383714699074074,-0.0,0.0075919587215368305,0.0,0.0,0.0,-0.0,-16.3,1535.1345,209.93626 -0.9806243121027671,0.0047528068217659505,0.9806243121027671,0.0,0.38400833333333334,-0.0,0.005295955972764849,0.0,0.0,0.0,-0.0,-20.71,1534.14,209.88422 -0.9646935877340791,0.006708556270878065,0.9646935877340791,0.0,0.3866476851851852,-0.0,0.007479976949626719,1.91,0.0,1.91,-0.0,-16.58,1533.1619,210.80797 -0.9492156695214099,0.011843452431463987,0.9492156695214099,0.0,0.38799999999999996,-0.0,0.013213662765082327,7.43,0.0,7.43,-0.0,-9.305,1532.1959,215.421 -0.9342304824966062,0.00721103428458151,0.9342304824966062,0.0,0.3901519675925926,-0.0,0.008050297054434276,2.32,0.0,2.32,-0.0,-15.774999999999999,1531.2456,219.72284 -0.9197299872983667,0.007060837565518879,0.9197299872983667,0.0,0.39200034722222227,-0.0,0.007887431630397861,0.0,0.0,0.0,-0.0,-16.09,1530.3114,220.99742 -0.9055434010800476,0.00997902771408657,0.9055434010800476,0.0,0.3936696759259259,-0.0,0.011154013228253013,0.03,0.0,0.03,-0.0,-11.725,1529.383,221.03027 -0.9008246657866583,0.02441152613032413,0.9008246657866583,3.141224632901822,0.39600023148148145,0.791224632916789,0.027291441019063344,2.35,2.349999999985033,1.4966927697201982e-11,-0.0,0.4849999999999999,1529.071,221.5465 -0.9816089841358022,0.02196244417378286,0.9816089841358022,10.07932979040939,0.3972188657407407,-7.453371564450801e-6,0.024471348783786838,10.08,10.079337243780955,0.0006627562190442848,-0.0,-1.13,1534.2,221.70714 -0.9820605388876719,0.015458723127722056,0.9820605388876719,0.0,0.40000023148148145,-0.0,0.017224359463167048,13.65,0.0,13.65,-0.0,-6.140000000000001,1534.2274,232.3251 -0.9659801058832554,0.009185297940807729,0.9659801058832554,0.0,0.4012189814814815,-0.0,0.010240988912063112,0.0,0.0,0.0,-0.0,-13.075,1533.2415,238.77798 -0.9504912604378908,0.00612922689819187,0.9504912604378908,0.0,0.40399999999999997,-0.0,0.0068379806204340665,0.0,0.0,0.0,-0.0,-18.23,1532.2761,238.86151 -0.9355413903751817,0.0045355308136012466,0.9355413903751817,0.0,0.40521898148148144,-0.0,0.005063125793245053,0.0,0.0,0.0,-0.0,-21.884999999999998,1531.3293,239.21257 -0.9210487876321786,0.004600644534929394,0.9210487876321786,0.0,0.4080003472222223,-0.0,0.0051389427820706475,0.72,0.0,0.72,-0.0,-21.79,1530.397,239.6337 -0.9069271298738373,0.013052239328446485,0.9069271298738373,0.0,0.40966990740740744,-0.0,0.0145882118578676,0.04,0.0,0.04,-0.0,-8.71,1529.4742,239.89565 -0.893746954728392,0.021097584611489716,0.893746954728392,-4.0748773639922253e-10,0.41200046296296294,-4.0748773639922253e-10,0.02359381066336933,0.0,0.0,0.0,-0.0,-2.17,1528.6,239.8764 -0.9070847162069858,0.02807577844335082,0.9070847162069858,4.477892064788564,0.41464768518518513,4.477892064788564,0.03137949091743882,0.0,0.0,0.0,-0.0,1.85,1529.4846,238.00156 -0.9495649761307715,0.02689936509293991,0.9495649761307715,3.7555550941072475,0.4159996527777778,2.6055550941072574,0.030011016115558852,1.15,1.1499999999999904,9.447997939560082e-15,-0.0,1.15,1532.2179,234.84425 -1.1070455534713624,0.031165835572327587,1.1070455534713624,15.931196597308405,0.419205324074074,7.861196597308405,0.034564300608658186,8.07,8.07,0.0,-0.0,3.115,1541.3817,229.4437 -1.2327458006752205,0.02527433087447078,1.2327458006752205,-0.05980223677923426,0.41999976851851856,-0.05980223677923426,0.027914043074375054,0.0,0.0,0.0,-0.0,-0.040000000000000036,1547.8046,225.81511 -1.2106486919713242,0.018829376096966218,1.2106486919713242,0.0,0.42400011574074076,-0.0,0.020810485111650227,0.0,0.0,0.0,-0.0,-4.335,1546.7244,225.82529 -1.1848815342237395,0.020551408659396198,1.1848815342237395,-5.2038391415548465e-14,0.42400011574074076,-5.2038391415548465e-14,0.02273258202419933,0.0,0.0,0.0,-0.0,-3.1,1545.4396,225.82921 -1.1647084684174522,0.023523700203307598,1.1647084684174522,0.8096765177968237,0.428,-1.4018760562817791e-6,0.02603760830888052,0.81,0.8096779196728799,0.00032208032712004175,-0.0,-1.31,1544.4141,225.86977 -1.1938108189510146,0.024916559667409466,1.1938108189510146,5.178153033191534,0.42846388888888887,-0.0018462401330454,0.02755302392385952,5.18,5.179999273324579,7.266754201318281e-7,-0.0,-0.5149999999999999,1545.888,226.08772 -1.2002654470883676,0.018552891978058542,1.2002654470883676,4.622371929663416e-12,0.43200000000000005,-0.0,0.02051173278742013,2.51,4.622371929663416e-12,2.5099999999953773,-0.0,-4.795,1546.21,228.27605 -1.1762786797630114,0.01624089370920546,1.1762786797630114,0.0,0.4336695601851852,-0.0,0.017969641214560267,0.0,0.0,0.0,-0.0,-6.664999999999999,1545.0044,229.48412 -1.1525191795083012,0.02107291947202707,1.1525191795083012,1.8782949645256672e-5,0.43600011574074077,-4.0674298472623293e-14,0.023334412772158926,0.57,1.878294968593097e-5,0.569981217050314,-0.0,-3.125,1543.7858,229.8622 -1.1322604601548962,0.02496935741846669,1.1322604601548962,-0.00011022684541292907,0.4399488425925926,-0.00011022684541292907,0.027667987792898283,0.0,0.0,0.0,-0.0,-0.835,1542.7267,230.07031 -1.1280791605840543,0.027390552377355035,1.1280791605840543,2.654648417467796,0.4400003472222222,0.8346484174777727,0.030355207333115516,1.82,1.8199999999900232,9.976842685333054e-12,-0.0,0.4999999999999998,1542.5057,230.05872 -1.1676070141254624,0.02645098574638082,1.1676070141254624,4.578758035694026,0.4440001157407408,-0.031241946635363515,0.029274910495210582,4.61,4.60999998232939,1.7670610723552472e-8,-0.0,-0.1549999999999998,1544.5625,230.04329 -1.167974613932133,0.015905174645531765,1.167974613932133,0.0,0.4440081018518519,-0.0,0.017603007374187116,4.89,0.0,4.89,-0.0,-7.265,1544.5813,232.98459 -1.1435924817398062,0.011146507332998497,1.1435924817398062,0.0,0.4480001157407407,-0.0,0.012346436459522943,13.41,0.0,13.41,-0.0,-12.084999999999999,1543.3214,242.39258 -1.1218200938937932,0.019996518657751827,1.1218200938937932,3.9535843221472076e-9,0.4501516203703704,-0.0,0.022165644737992346,13.76,3.9535843221472076e-9,13.759999996046416,-0.0,-4.29,1542.1735,256.1141 -1.100826683022082,0.014028709280607673,1.100826683022082,0.0,0.452,-0.0,0.015561860375793296,2.84,0.0,2.84,-0.0,-9.16,1541.0453,264.2412 -1.080698757583987,0.009114935730072599,1.080698757583987,0.0,0.45599953703703705,-0.0,0.01011831274512539,0.02,0.0,0.02,-0.0,-14.860000000000001,1539.9432,265.6869 -1.061335787041066,0.008507233746538393,1.061335787041066,0.0,0.45599953703703705,-0.0,0.009450340589174882,0.0,0.0,0.0,-0.0,-15.719999999999999,1538.8635,265.70044 -1.0426585559886112,0.009619571002222854,1.0426585559886112,0.0,0.46,-0.0,0.010693358790678181,0.0,0.0,0.0,-0.0,-14.270000000000001,1537.8032,265.70288 -1.024630395064962,0.009225192893740564,1.024630395064962,0.0,0.4604638888888889,-0.0,0.010261908966086397,0.65,0.0,0.65,-0.0,-14.805,1536.7616,266.05228 -1.0070992039252784,0.021138462023318646,1.0070992039252784,4.16093706157028e-8,0.463999537037037,-0.0,0.023529757331827973,2.4,4.16093706157028e-8,2.3999999583906293,-0.0,-3.88,1535.731,267.55798 -0.9901249637431223,0.012522087777699847,0.9901249637431223,0.0,0.46799976851851854,-0.0,0.013947872693478304,0.0,0.0,0.0,-0.0,-11.065,1534.7158,268.7166 -0.9738129516764106,0.007932451310089824,0.9738129516764106,0.0,0.46799976851851854,-0.0,0.008841368091752826,0.0,0.0,0.0,-0.0,-16.875,1533.7238,268.73047 -0.9580829615521836,0.005227887843524126,0.9580829615521836,0.0,0.4719996527777777,-0.0,0.005830607301814621,0.0,0.0,0.0,-0.0,-22.02,1532.7512,268.72995 -0.9428517838848066,0.00606600900764378,0.9428517838848066,0.0,0.4719996527777777,-0.0,0.006769581701382478,0.0,0.0,0.0,-0.0,-20.240000000000002,1531.7942,268.8666 -0.9280846721750061,0.008170517660104418,0.9280846721750061,0.0,0.4760001157407408,-0.0,0.009123799372979746,1.42,0.0,1.42,-0.0,-16.695,1530.8514,269.63818 -0.9137636138760926,0.007915165240490062,0.9137636138760926,0.0,0.4800005787037037,-0.0,0.008844019469134866,2.61,0.0,2.61,-0.0,-17.185000000000002,1529.9227,271.59152 -0.8998897596216794,0.00603829071555065,0.8998897596216794,0.0,0.4800005787037037,-0.0,0.006750923213217543,5.02,0.0,5.02,-0.0,-20.475,1529.009,275.30212 -0.8864131572402224,0.010415238732072545,0.8864131572402224,0.0,0.4840002314814815,-0.0,0.011651300576394196,24.46,0.0,24.46,-0.0,-13.825,1528.1079,289.813 -0.8732526084660419,0.016947657150583897,0.8732526084660419,0.0,0.4840002314814815,-0.0,0.018970064326204936,23.26,0.0,23.26,-0.0,-7.42,1527.2146,313.2926 -0.860368347027459,0.026313013381000703,0.860368347027459,3.2263319738409995,0.48800034722222224,-5.252389364426437e-7,0.02947014196982608,3.23,3.226332499079936,0.003667500920064483,-0.0,-1.415,1526.3269,327.38272 -0.8478214749249829,0.022641568863795473,0.8478214749249829,7.980615480163155e-7,0.4919994212962963,-0.0,0.0253727685743789,4.39,7.980615480163155e-7,4.389999201938451,-0.0,-3.6449999999999996,1525.4496,333.2335 -0.8356881481612384,0.01566616376016336,0.8356881481612384,0.0,0.4919994212962963,-0.0,0.01756584934027345,0.65,0.0,0.65,-0.0,-8.674999999999999,1524.5887,335.45068 -0.8238985383614044,0.021427868950649923,0.8238985383614044,4.4571069057752766e-11,0.4959997685185185,-0.0,0.024039600569246474,1.4,4.4571069057752766e-11,1.3999999999554287,-0.0,-4.51,1523.7402,336.47964 -0.8235382236238222,0.02971045444976962,0.8235382236238222,2.7257133684335813,0.4959997685185185,-0.05428663088520142,0.03333227883250685,2.78,2.7799999993187825,6.812171859937876e-10,-0.0,0.11999999999999988,1523.7141,337.76004 -0.8641418199674934,0.033321680782409775,0.8641418199674934,4.589608156077655,0.4999997685185186,3.9296081560776552,0.037313344968253566,0.66,0.66,3.663735981263017e-17,-0.0,1.645,1526.5883,335.87006 -0.9851748851549603,0.03807433348033703,0.9851748851549603,12.936933995949683,0.503999537037037,8.676933995949684,0.0424178106733412,4.26,4.26,0.0,-0.0,3.42,1534.4165,329.60342 -1.1557605927334829,0.03594337035805714,1.1557605927334829,8.819485333954018,0.503999537037037,6.1494853339540185,0.03979639977795855,2.67,2.67,0.0,-0.0,2.4749999999999996,1543.9535,322.32843 -1.1783747437689838,0.0232843286465314,1.1783747437689838,0.0,0.5079996527777778,-0.0,0.025761035519222663,0.0,0.0,0.0,-0.0,-3.8799999999999994,1545.1107,321.30307 -1.1551748606763925,0.01809593336964033,1.1551748606763925,0.0,0.5079996527777778,-0.0,0.020036160004154542,0.0,0.0,0.0,-0.0,-7.335000000000001,1543.9232,321.32208 -1.132908673788752,0.018646232585133243,1.132908673788752,0.0,0.511999537037037,-0.0,0.0206610165057838,0.0,0.0,0.0,-0.0,-7.025,1542.7609,321.32208 -1.111430559226325,0.022310905055562026,1.111430559226325,0.0,0.5159998842592592,-0.0,0.024739998756502443,0.0,0.0,0.0,-0.0,-4.66,1541.6178,321.32208 -1.0906873088492706,0.02278165624207482,1.0906873088492706,0.0,0.5159998842592592,-0.0,0.02528045333497477,0.0,0.0,0.0,-0.0,-4.36,1540.4927,321.32208 -1.070652856333922,0.02763075742670755,1.070652856333922,-2.3391312585935542e-8,0.520000462962963,-2.3391312585935542e-8,0.030683479021860964,0.0,0.0,0.0,-0.0,-1.745,1539.3855,321.32208 -1.0513086978753559,0.029561629900986906,1.0513086978753559,-0.0001975581088069162,0.520000462962963,-0.0001975581088069162,0.032850916293929715,0.0,0.0,0.0,-0.0,-0.7699999999999999,1538.2966,321.32208 -1.0326327155220663,0.027687165140843698,1.0326327155220663,-1.3238439763488895e-8,0.5240002314814816,-1.3238439763488895e-8,0.030789307089871668,0.0,0.0,0.0,-0.0,-1.8050000000000002,1537.2262,321.32208 -1.014605759184845,0.026990003202017766,1.014605759184845,-1.6397456448148193e-10,0.5279998842592593,-1.6397456448148193e-10,0.030034582735493472,0.0,0.0,0.0,-0.0,-2.2649999999999997,1536.1744,321.32208 -1.0008340150765505,0.028668376381417362,1.0008340150765505,-6.044862584837434e-7,0.5279998842592593,-6.044862584837434e-7,0.03191924161397454,0.0,0.0,0.0,-0.0,-1.4,1535.3583,321.19687 -0.99914769746049,0.029393695457390658,0.99914769746049,-6.1957758753042355e-6,0.5319998842592593,-6.1957758753042355e-6,0.03272895539273444,0.0,0.0,0.0,-0.0,-1.15,1535.2576,320.6435 -1.008677289551184,0.033546828044399714,1.008677289551184,1.5309796463757472,0.5319998842592593,1.5309796463757472,0.037339550257504926,0.0,0.0,0.0,-0.0,0.75,1535.8245,319.64023 -1.028527060736071,0.033121398613887416,1.028527060736071,4.974485702819507,0.5359994212962963,0.6744857028603629,0.0368381076052629,4.3,4.2999999999591445,4.0855541172390986e-11,-0.0,0.4450000000000003,1536.9883,318.17813 -1.0580455586986772,0.041244500188014774,1.0580455586986772,19.457998090429733,0.5395353009259259,9.037998090429735,0.045822362148211754,10.42,10.42,0.0,-0.0,3.555,1538.6781,316.24823 -1.096741288312119,0.04048479603856461,1.096741288312119,11.92888794754937,0.54,8.20888794754937,0.04491571689293803,3.72,3.72,0.0,-0.0,3.245,1540.8232,313.84158 -1.144198067315407,0.027254671238684438,1.144198067315407,0.02198808084750396,0.5439997685185185,-5.661452577567899e-12,0.03018803678336627,4.09,0.021988080853165413,4.0680119191468345,-0.0,-2.615,1543.353,310.94925 -1.1999956043919051,0.023077411817589034,1.1999956043919051,1.0091927293842672e-14,0.5439997685185185,-0.0,0.025514179460449083,0.03,1.0091927293842672e-14,0.029999999999989906,-0.0,-4.965,1546.1965,307.5622 -1.263646335252794,0.02824142124204955,1.263646335252794,0.19350363270211385,0.5479999999999999,-1.5629695171071006e-10,0.031161257236870615,1.33,0.1935036328584108,1.1364963671415893,-0.0,-2.27,1549.2831,303.67154 -1.3345193752262843,0.03784298729378413,1.3345193752262843,4.531383082871838,0.5498481481481481,4.531383082871838,0.04166786585831142,0.0,0.0,0.0,-0.0,1.87,1552.542,299.26828 -1.4364533266112285,0.0400623742760817,1.4364533266112285,6.510549428895269,0.5520004629629629,6.510549428895269,0.04398702982892991,0.0,0.0,0.0,-0.0,2.61,1556.9377,293.45917 -1.6020399261235905,0.043785019235308524,1.6020399261235905,9.586280604269753,0.5559922453703704,9.586280604269753,0.04787401450221869,0.0,0.0,0.0,-0.0,3.7600000000000002,1563.4532,285.39548 -1.802808343586071,0.043469768527868456,1.802808343586071,9.11823455586974,0.5560002314814815,9.11823455586974,0.047315932807380084,0.0,0.0,0.0,-0.0,3.585,1570.5043,276.05402 -2.04668891420217,0.04573618545354358,2.04668891420217,10.669472887709755,0.56,10.669472887709755,0.049543847974035965,0.0,0.0,0.0,-0.0,4.165,1578.0814,266.11017 -2.586460897508318,0.04863772940610856,2.586460897508318,21.672366477629755,0.5600517361111111,12.782366477629754,0.05222435435403452,8.89,8.89,0.0,-0.0,4.955,1592.0599,254.41089 -3.3680829867022384,0.0452038140920082,3.3680829867022384,15.79172553282974,0.5639996527777777,9.171725532829742,0.04806117265675668,6.62,6.62,0.0,-0.0,3.605,1607.8292,243.3661 -3.8498658156165355,0.04331080328562973,3.8498658156165355,7.562322919849664,0.5663305555555556,7.112322919849664,0.04582096313655429,0.45,0.45,0.0,-0.0,2.835,1615.8135,235.18637 -4.105038144405008,0.04413339088340605,4.105038144405008,7.647232689466831,0.5679997685185185,7.647232689466831,0.04658073780984848,0.0,0.0,0.0,-0.0,3.035,1619.6461,227.73701 -4.357119093785746,0.04556729137040684,4.357119093785746,8.583324786269655,0.5715351851851852,8.583324786269655,0.047988700472055924,0.0,0.0,0.0,-0.0,3.3850000000000002,1623.2052,219.9032 -4.388653479887863,0.038473740133436775,4.388653479887863,2.241935403003854,0.5719994212962963,1.8819354030038984,0.040507456325138025,0.36,0.35999999999995586,4.4144687905145475e-14,-0.0,0.8800000000000001,1623.6359,215.24515 -4.136996844811316,0.03638185180478724,4.136996844811316,-0.06914851444988956,0.5760005787037037,-0.06914851444988956,0.038388372389902246,0.0,0.0,0.0,-0.0,0.0,1620.1093,214.61134 -4.485384364788566,0.058560288107673754,4.485384364788566,18.358800825709753,0.5760005787037037,18.358800825709753,0.0616063737751812,0.0,0.0,0.0,-0.0,7.04,1624.9379,205.52759 -5.7165877770644125,0.06262622667064081,5.7165877770644125,21.151694415629755,0.5800003472222222,20.471694415629756,0.065301696208504,0.68,0.68,0.0,-0.0,7.83,1639.4229,186.56049 -7.0992799817557275,0.05243644967807988,7.0992799817557275,17.989230198829752,0.5807946759259259,12.849230198829753,0.05424852560754369,5.14,5.14,0.0,-0.0,4.9799999999999995,1652.3595,170.47769 -8.07616503971361,0.052691081385233735,8.07616503971361,12.635266290989755,0.5840005787037037,12.635266290989755,0.05425913070689839,0.0,0.0,0.0,-0.0,4.9,1660.0588,157.55034 -9.017199826353243,0.058479897700326654,9.017199826353243,16.606971330269754,0.5853530092592593,16.606971330269754,0.05998238721301439,0.0,0.0,0.0,-0.0,6.385,1666.641,142.66058 -10.360980130824936,0.06336833501539994,10.360980130824936,19.508856830349757,0.5880002314814815,19.508856830349757,0.06467449547727303,0.0,0.0,0.0,-0.0,7.470000000000001,1674.9369,124.60576 -12.309605547669134,0.07092645393354377,12.309605547669134,23.761389498669754,0.5903311342592593,23.761389498669754,0.07194632539439887,0.0,0.0,0.0,-0.0,9.06,1685.2286,102.97105 -15.457434720267356,0.08524357826574144,15.457434720267356,31.062907853709756,0.5920008101851852,31.062907853709756,0.08577714486484658,0.0,0.0,0.0,-0.0,11.790000000000001,1698.8275,75.53753 -18.469961756620467,0.081865184671242,20.297765094914908,28.909896031069753,0.5943310185185184,28.909896031069753,0.08186518467023247,0.0,0.0,0.0,1.8278033382944392,10.985,1711.2888,45.51555 -18.470278074408444,0.05267600552060085,19.11432489798861,10.629354654989756,0.5959997685185184,10.629354654989756,0.05267597417381478,0.0,0.0,0.0,0.6440468235801645,4.15,1710.1061,25.726452 -16.4301992853216,0.05127876821562665,16.4301992853216,9.532789627309752,0.5987809027777777,9.532789627309752,0.05148926985462041,0.0,0.0,0.0,-0.0,3.74,1702.4723,15.61243 -15.866093066398891,0.049291521573239676,15.866093066398891,17.452882995604536,0.5999998842592592,6.962882995604537,0.04955459597181696,10.49,10.49,0.0,-0.0,3.1399999999999997,1700.3859,6.962883 -15.704154280897821,0.04649894358934523,15.704154280897821,13.859573646777887,0.6027810185185185,2.559573646777887,0.0467639633424105,11.3,11.3,0.0,-0.0,2.215,1699.7732,2.5595737 -14.133167378861703,0.057502819175764115,14.133167378861703,4.070099392114333,0.6039996527777778,0.9400993921143326,0.058045507894531195,3.13,3.13,0.0,-0.0,5.41,1693.4786,0.940177 -11.787168075875146,0.06059805094452632,11.787168075875146,0.3368977746836003,0.6063304398148148,0.3368977746836003,0.061564022868450495,0.0,0.0,0.0,-0.0,6.245,1682.6387,0.34734493 -10.376939642072665,0.061389114076990096,10.376939642072665,6.4935802814692964,0.6079995370370371,0.11358028146929666,0.06265104022187255,6.38,6.38,0.0,-0.0,6.470000000000001,1675.0288,0.14124288 -9.860492236412664,0.06896063235768773,9.860492236412664,7.825061332154344,0.6098476851851852,0.04506133215434335,0.07050652840078314,7.78,7.78,0.0,-0.0,8.24,1671.9801,0.06791059 -9.010216984680389,0.06208865750304872,9.010216984680389,0.8213544631497238,0.6120002314814815,0.021354463149723817,0.063685632615716,0.8,0.8,0.0,-0.0,6.62,1666.5947,0.036220197 -7.920641329770145,0.06591539868140517,7.920641329770145,1.0412352034613714,0.6133524305555556,0.01123520346137135,0.06792450931765201,1.03,1.03,0.0,-0.0,7.574999999999999,1658.8976,0.020397333 -7.687019421676164,0.07347719613534125,7.687019421676164,10.16624791966447,0.6159914351851852,0.006247919664469192,0.07579848721777009,10.16,10.16,0.0,-0.0,9.21,1657.1096,0.011800399 -7.738286933777134,0.07579550849112171,7.738286933777134,6.6735972192735336,0.6162851851851852,0.003597219273533426,0.07817131317541848,6.67,6.67,0.0,-0.0,9.685,1657.5066,0.006952827 -7.620140772967581,0.06255754086361547,7.620140772967581,6.952096038804278,0.6195356481481481,0.0020960388042778363,0.06455418742703929,6.95,6.95,0.0,-0.0,6.64,1656.5878,0.0041077225 -7.528902740818089,0.05600195130236038,7.528902740818089,7.551226812402373,0.6199998842592592,0.0012268124023727704,0.05781446885577033,7.55,7.55,0.0,-0.0,4.955,1655.8684,0.0024242415 -7.071039429661116,0.05836115289667077,7.071039429661116,1.4306558795083237,0.6227818287037037,0.0006558795083238869,0.06038667137080338,1.43,1.43,0.0,-0.0,5.545,1652.1215,0.0013032666 -6.427617503005199,0.05675230876841802,6.427617503005199,0.7003358302735045,0.6240006944444445,0.00033583027350457875,0.058925199271636225,0.7,0.7,0.0,-0.0,5.1450000000000005,1646.424,0.00066941994 -5.8274762815808705,0.058307697539538905,5.8274762815808705,0.0001991377102072357,0.6253526620370371,0.0001991377102072357,0.06075615441491535,0.0,0.0,0.0,-0.0,5.575,1640.5702,0.00039748545 -5.3156067695305005,0.06511879252475568,5.3156067695305005,0.00011752499078158013,0.6278895833333333,0.00011752499078158013,0.06808110721074985,0.0,0.0,0.0,-0.0,7.25,1635.0797,0.00023477439 -4.998122140290989,0.08052482679914469,4.998122140290989,5.8197096310153034e-5,0.6280518518518519,5.8197096310153034e-5,0.08437777098960882,0.0,0.0,0.0,-0.0,10.59,1631.4019,0.00011632653 -4.773723207970944,0.09485520417885922,4.773723207970944,3.560019755623298,0.6303303240740741,1.975562329825491e-5,0.09956124424515804,3.56,3.56,0.0,-0.0,13.175,1628.6586,3.9503444e-5 -4.581324678970963,0.08904018886068774,4.581324678970963,8.335319568179083e-6,0.6319916666666667,8.335319568179083e-6,0.09359892068078976,0.0,0.0,0.0,-0.0,12.139999999999999,1626.2018,1.666925e-5 -4.948372504787284,0.1368075471215932,4.948372504787284,14.680004719934098,0.6322856481481481,4.719934098500973e-6,0.14340601616241888,14.68,14.68,0.0,-0.0,19.16,1630.8044,9.439423e-6 -5.875498130181919,0.09976476776517534,5.875498130181919,19.610002734263666,0.6347809027777778,2.734263668725638e-6,0.10392304346216368,19.61,19.61,0.0,-0.0,13.754999999999999,1641.0603,5.468378e-6 -5.965899421239181,0.08001740719446497,5.965899421239181,0.4800015593251271,0.6360001157407408,1.559325127104693e-6,0.08330630737153988,0.48,0.48,0.0,-0.0,10.190000000000001,1641.9722,3.1186016e-6 -5.510723194023436,0.12727478571195572,5.510723194023436,1.0100009050737677,0.6362856481481481,9.050737676991049e-7,0.13288966504585603,1.01,1.01,0.0,-0.0,17.77,1637.2325,1.8101312e-6 -5.067415513295318,0.09064086475952217,5.067415513295318,5.34940815075275e-7,0.6387810185185185,5.34940815075275e-7,0.09492999317303363,0.0,0.0,0.0,-0.0,12.195,1632.2241,1.0698759e-6 -4.875781126026422,0.07174135105972615,4.875781126026422,3.0856078577553987e-7,0.6399917824074074,3.0856078577553987e-7,0.07524228288550995,0.0,0.0,0.0,-0.0,8.5,1629.9219,6.1711967e-7 -5.521107239619587,0.0648034533071647,5.521107239619587,17.72000014026605,0.6400512731481481,1.4026605078790734e-7,0.0676576891541671,17.72,17.72,0.0,-0.0,6.859999999999999,1637.345,2.805317e-7 -7.092260026261212,0.06877038356046013,7.092260026261212,27.380000049023344,0.6418483796296296,4.9023344547011686e-8,0.07114946447581944,27.38,27.38,0.0,-0.0,7.59,1652.3004,9.804664e-8 -9.364539841761115,0.08350261692601053,9.364539841761115,22.970000027982675,0.6435354166666667,2.7982676456988955e-8,0.08553216059162935,22.97,22.97,0.0,-0.0,10.42,1668.8982,5.5965337e-8 -11.192616707544603,0.08417608898916266,11.192616707544603,19.880000016664876,0.6439998842592592,1.6664878478802716e-8,0.08567529222027606,19.88,19.88,0.0,-0.0,10.434999999999999,1679.5477,3.332975e-8 -11.06418909862873,0.09019865308413905,11.06418909862873,4.000000009366738,0.6442856481481481,9.366737596942445e-9,0.0918428081755253,4.0,4.0,0.0,-0.0,11.53,1678.8585,1.8733473e-8 -9.615181834688693,0.0792398115074155,9.615181834688693,0.0100000051677727,0.6458482638888889,5.1677726992606195e-9,0.08108910405407342,0.01,0.01,0.0,-0.0,9.525,1670.4756,1.0335545e-8 -8.268678510864312,0.08021551161054483,8.268678510864312,0.03000000308623869,0.6471538194444444,3.0862386932643984e-9,0.0825327239927874,0.03,0.03,0.0,-0.0,9.77,1661.4657,6.172477e-9 -7.314291890997752,0.09763653480886104,7.314291890997752,0.9600000017920254,0.6479927083333333,1.7920254490603363e-9,0.10090180572933374,0.96,0.96,0.0,-0.0,12.945,1654.1414,3.5840508e-9 -6.650094625344463,0.09840222223904267,6.650094625344463,7.634694046411884e-10,0.6480521990740741,7.634694046411884e-10,0.10204382593559533,0.0,0.0,0.0,-0.0,13.125,1648.456,1.5269388e-9 -6.13276800283802,0.12770165820619409,6.13276800283802,2.840000000112664,0.6487947916666666,1.1266403100932414e-10,0.132817229981375,2.84,2.84,0.0,-0.0,17.435,1643.6196,2.2532806e-10 -5.657454469924674,0.15591549113308717,5.657454469924674,0.2099999999840531,0.6498487268518519,-1.5946874027072338e-11,0.16263799608629315,0.21,0.21,0.0,-0.0,20.84,1638.8019,-3.1893748e-11 -5.181500138456796,0.1864802059629888,5.181500138456796,-8.743247444721824e-12,0.6507814814814814,-8.743247444721824e-12,0.19514549171447265,0.0,0.0,0.0,-0.0,23.985,1633.5537,-1.7486495e-11 -4.752673641348195,0.1447146041566358,4.752673641348195,-4.678876209865751e-12,0.6515357638888889,-4.678876209865751e-12,0.1519189304647418,0.0,0.0,0.0,-0.0,19.63,1628.3947,-9.357752e-12 -4.422765951072045,0.1533646113211714,4.422765951072045,-2.486591878521968e-12,0.6519921296296297,-2.486591878521968e-12,0.1614254688435599,0.0,0.0,0.0,-0.0,20.655,1624.0983,-4.9731838e-12 -4.244789924547059,0.11415358314788368,4.244789924547059,2.889999999999189,0.6520001157407407,-8.10784057073498e-13,0.12033524827905383,2.89,2.89,0.0,-0.0,15.715,1621.6454,-1.6215681e-12 -4.269258559757589,0.1268811422817271,4.269258559757589,7.169999999999996,0.6520517361111111,-3.1743137798340397e-15,0.1337237264939021,7.17,7.17,0.0,-0.0,17.465,1621.9886,-6.3486276e-15 -4.458820236743415,0.08304550017123599,4.458820236743415,7.790000000000015,0.6522856481481482,1.4806579763271724e-14,0.08738429102371888,7.79,7.79,0.0,-0.0,10.545,1624.5831,2.961316e-14 -4.542821724404871,0.08077574433533136,4.542821724404871,4.4000000000000075,0.6527943287037037,6.941542999450249e-15,0.08493767403385301,4.4,4.4,0.0,-0.0,10.085,1625.6978,1.3883086e-14 -4.376586720583999,0.08412952105073336,4.376586720583999,3.1542079705235015e-15,0.653352662037037,3.1542079705235015e-15,0.08858556627354844,0.0,0.0,0.0,-0.0,10.735,1623.4714,6.308416e-15 -4.267975951447312,0.1090584223098579,4.267975951447312,1.7409292628648959e-15,0.653848611111111,1.7409292628648959e-15,0.11494111511195447,0.0,0.0,0.0,-0.0,14.915,1621.9707,3.4818585e-15 -4.611266484118791,0.1278209081051315,4.611266484118791,15.01,0.653848611111111,7.9217581133744755e-16,0.13433302129766153,15.01,15.01,0.0,-0.0,17.495,1626.5908,1.5843516e-15 -5.502686462971063,0.13477295940348333,5.502686462971063,20.75,0.653848611111111,4.1031104469100004e-16,0.1407261212002789,20.75,20.75,0.0,-0.0,18.275000000000002,1637.1454,8.206221e-16 -5.613727138015941,0.11850763328407134,5.613727138015941,0.46000000000000024,0.6543310185185185,2.351552191106504e-16,0.12365221165118336,0.46,0.46,0.0,-0.0,16.105,1638.3385,4.7031044e-16 -5.332125933728908,0.09026808924395764,5.332125933728908,3.67,0.6543310185185185,1.381861064504794e-16,0.0943637747269125,3.67,3.67,0.0,-0.0,11.715,1635.265,2.763722e-16 -5.14677200508612,0.08636916089436866,5.14677200508612,2.96,0.653848611111111,8.181924018425782e-17,0.0904047537779856,2.96,2.96,0.0,-0.0,11.045,1633.1521,1.6363848e-16 -4.800396898361208,0.08533776623510718,4.800396898361208,4.7627229947288385e-17,0.653848611111111,4.7627229947288385e-17,0.08955332145121943,0.0,0.0,0.0,-0.0,10.895,1628.9913,9.525446e-17 -4.4612543413746035,0.08226586744637497,4.4612543413746035,1.41,0.653352662037037,2.531151167716339e-17,0.08656218901710788,1.41,1.41,0.0,-0.0,10.370000000000001,1624.6157,5.0623023e-17 -4.638568166113832,0.08468318585288315,4.638568166113832,11.91,0.653352662037037,1.4675163448535977e-17,0.088978269592074,11.91,11.91,0.0,-0.0,10.805,1626.9434,2.9350327e-17 -5.494335754173494,0.08956285722893882,5.494335754173494,18.76,0.6527943287037037,8.654119905665548e-18,0.09352418950566174,18.76,18.76,0.0,-0.0,11.61,1637.0547,1.730824e-17 -6.172332156638141,0.08819484567635685,6.172332156638141,7.19,0.6522856481481482,5.099515123239906e-18,0.09170639572312764,7.19,7.19,0.0,-0.0,11.309999999999999,1644.0037,1.019903e-17 -6.153524439348937,0.09857830335991898,6.153524439348937,5.28,0.6520517361111111,2.942952489123053e-18,0.10251464385203203,5.28,5.28,0.0,-0.0,13.1,1643.8214,5.885905e-18 -5.979401839466678,0.1245017428895208,5.979401839466678,4.2,0.6519921296296297,1.743292239942244e-18,0.12960839502743865,4.2,4.2,0.0,-0.0,16.945,1642.1072,3.4865845e-18 -6.056304996053638,0.13127497147682335,6.056304996053638,10.95,0.6518894675925926,1.0343934919006239e-18,0.13659595502316446,10.95,10.95,0.0,-0.0,17.825,1642.8704,2.068787e-18 -5.797512531177547,0.1367670040271004,5.797512531177547,6.00821603952126e-19,0.6511538194444445,6.00821603952126e-19,0.14253687192263728,0.0,0.0,0.0,-0.0,18.56,1640.2623,1.2016432e-18 -5.281264271859506,0.15980933242129847,5.281264271859506,3.5524812029980654e-19,0.6503311342592593,3.5524812029980654e-19,0.16711877150665033,0.0,0.0,0.0,-0.0,21.295,1634.6926,7.1049624e-19 -4.81726420789807,0.1651738593400916,4.81726420789807,2.0271949208854037e-19,0.6493528935185184,2.0271949208854037e-19,0.17331090940867228,0.0,0.0,0.0,-0.0,21.95,1629.2008,4.0543898e-19 -4.557898827457152,0.15826586052055486,4.557898827457152,2.95,0.6482863425925927,1.18846402354778e-19,0.16640017575102048,2.95,2.95,0.0,-0.0,21.275,1625.8956,2.376928e-19 -4.555635472838643,0.1494619805852088,4.555635472838643,6.37,0.6480008101851852,6.471453338422294e-20,0.1571466739896535,6.37,6.37,0.0,-0.0,20.3,1625.866,1.2942907e-19 -4.817510381269668,0.15858292444231964,4.817510381269668,10.16,0.647890162037037,3.601952484365904e-20,0.16639496999953282,10.16,10.16,0.0,-0.0,21.285,1629.2039,7.203905e-20 -5.157619236632836,0.15317725251390152,5.157619236632836,13.58,0.64678125,1.427645721048189e-20,0.1603221059038505,13.58,13.58,0.0,-0.0,20.674999999999997,1633.2778,2.8552914e-20 -5.407785053202357,0.11889239119691905,5.407785053202357,13.03,0.645352199074074,-4.908676759100414e-21,0.12422291245997913,13.03,13.03,0.0,-0.0,16.41,1636.1064,-9.8173535e-21 -5.459307203376621,0.10490639903045264,5.459307203376621,0.74,0.6440515046296297,-1.619289251809947e-20,0.10957193587641348,0.74,0.74,0.0,-0.0,14.38,1636.6727,-3.2385785e-20 -5.2304921707304715,0.12592795955966588,5.2304921707304715,1.4,0.6438894675925926,-1.4442594497808604e-20,0.13173420620164306,1.4,1.4,0.0,-0.0,17.425,1634.1157,-2.888519e-20 -5.429582610222908,0.13701887268107563,5.429582610222908,12.48,0.6427809027777778,-8.281788030637032e-21,0.14314107400045503,12.48,12.48,0.0,-0.0,18.85,1636.3467,-1.6563576e-20 -6.329857508574237,0.13862438587749015,6.329857508574237,17.91,0.6407940972222222,-4.68528831440673e-21,0.1440119934579543,17.91,17.91,0.0,-0.0,19.005,1645.5087,-9.370577e-21 -6.5320791279115555,0.13016268390845195,6.5320791279115555,1.31,0.6399997685185186,-2.7501000791324883e-21,0.13506727425731618,1.31,1.31,0.0,-0.0,17.945,1647.3867,-5.5002e-21 -6.179729853549769,0.11893133474907826,6.179729853549769,4.51,0.6395354166666667,-1.6157002249920047e-21,0.12366130259438647,4.51,4.51,0.0,-0.0,16.485,1644.0752,-3.2314004e-21 -6.819199719716499,0.12124825922260742,6.819199719716499,18.35,0.6378482638888888,-9.63233244065961e-22,0.1256210537805639,18.35,18.35,0.0,-0.0,16.79,1649.9557,-1.9264665e-21 -7.744521488554953,0.14464086056029973,7.744521488554953,12.3,0.6360001157407408,-5.736275404824337e-22,0.14917028932349086,12.3,12.3,0.0,-0.0,19.73,1657.5547,-1.1472551e-21 -7.680893957635788,0.13706788302849346,7.680893957635788,2.47,0.6355359953703703,-3.3719926289076912e-22,0.1414021930312401,2.47,2.47,0.0,-0.0,18.835,1657.062,-6.7439853e-22 -7.470863404568855,0.1207406273977381,7.470863404568855,8.51,0.6338483796296296,-1.9303284986883943e-22,0.12468322833931199,8.51,8.51,0.0,-0.0,16.77,1655.4062,-3.860657e-22 -7.4848033154654345,0.13141851603450097,7.4848033154654345,7.01,0.6319996527777777,-1.0467538608517994e-22,0.13570066109752246,7.01,7.01,0.0,-0.0,18.235,1655.5176,-2.0935077e-22 -7.019613925325891,0.13656827741307137,7.019613925325891,0.32,0.6315355324074073,-6.204631464367169e-23,0.14134539505116755,0.32,0.32,0.0,-0.0,18.935000000000002,1651.6855,-1.2409263e-22 -6.38297163918621,0.14246522403367148,6.38297163918621,2.36,0.6287943287037038,-3.667368594439981e-23,0.14795723488705395,2.36,2.36,0.0,-0.0,19.785,1646.0077,-7.334737e-23 -5.780969388918173,0.13021828026432744,5.780969388918173,-2.1479660085434985e-23,0.628,-2.1479660085434985e-23,0.1357259944501094,0.0,0.0,0.0,-0.0,18.345,1640.0917,-4.295932e-23 -5.723954029345191,0.13501805299265573,5.723954029345191,10.93,0.6267813657407407,-1.27015685529602e-23,0.1407795866313909,10.93,10.93,0.0,-0.0,18.995,1639.4998,-2.5403137e-23 -6.010932246399418,0.12839542948422297,6.010932246399418,7.75,0.624052199074074,-7.491721297879849e-24,0.13363622715542606,7.75,7.75,0.0,-0.0,18.19,1642.4213,-1.4983443e-23 -5.82235654486715,0.10897064282247905,5.82235654486715,-4.461058117261851e-24,0.6238902777777778,-4.461058117261851e-24,0.11355017118214557,0.0,0.0,0.0,-0.0,15.485,1640.5177,-8.922116e-24 -5.472770426428511,0.09591346545648435,5.472770426428511,4.09,0.6207944444444444,-2.614191362669938e-24,0.1001700538968405,4.09,4.09,0.0,-0.0,13.52,1636.8198,-5.2283827e-24 -5.43657903481149,0.10159432644450375,5.43657903481149,6.02,0.6199998842592592,-1.5516037105539006e-24,0.10612872003421395,6.02,6.02,0.0,-0.0,14.48,1636.4236,-3.1032074e-24 -5.427496533129485,0.10622656456234891,5.427496533129485,5.44,0.6183303240740741,-9.205182404283252e-25,0.1109744774187787,5.44,5.44,0.0,-0.0,15.254999999999999,1636.3237,-1.8410365e-24 -5.127566462776231,0.11082761501782586,5.127566462776231,-5.107154525730037e-25,0.615999537037037,-5.107154525730037e-25,0.11602188866334716,0.0,0.0,0.0,-0.0,16.05,1632.9288,-1.0214309e-24 -4.718620061409817,0.12359764011781595,4.718620061409817,-2.825033914593851e-25,0.6151532407407407,-2.825033914593851e-25,0.12978492785633675,0.0,0.0,0.0,-0.0,17.939999999999998,1627.9652,-5.650068e-25 -4.364035733173265,0.13138194298399397,4.364035733173265,-1.6408321619739018e-25,0.6120002314814815,-1.6408321619739018e-25,0.13835539933440683,0.0,0.0,0.0,-0.0,19.105,1623.2999,-3.2816643e-25 -4.05864904096865,0.14148235600149214,4.05864904096865,-9.435490715341076e-26,0.6115356481481482,-9.435490715341076e-26,0.14939063678201384,0.0,0.0,0.0,-0.0,20.424999999999997,1618.9674,-1.8870981e-25 -3.861648385494383,0.12022863094613337,3.861648385494383,-2.3532039736741573e-26,0.6080510416666667,-2.3532039736741573e-26,0.1271823451859295,0.0,0.0,0.0,-0.0,17.795,1615.996,-4.706408e-26 -3.7802924146811017,0.11949441341949667,3.7802924146811017,6.455183459879826e-26,0.6078891203703704,6.455183459879826e-26,0.12650520773015816,0.0,0.0,0.0,-0.0,17.71,1614.7244,1.2910367e-25 -3.7755123824255876,0.12284526355112887,3.7755123824255876,1.467092819910444e-25,0.6042853009259259,1.467092819910444e-25,0.13005873997826364,0.0,0.0,0.0,-0.0,18.275,1614.6488,2.9341856e-25 -3.8146709924880966,0.14500765472000368,3.8146709924880966,7.33,0.6039916666666666,1.997528685778325e-25,0.15346393958416737,7.33,7.33,0.0,-0.0,21.1,1615.265,3.9950574e-25 -3.86637940730383,0.14532409343273445,3.86637940730383,4.73,0.6002854166666667,2.0049517436369383e-25,0.1537223089807734,4.73,4.73,0.0,-0.0,21.235,1616.0691,4.0099035e-25 -3.895604089087953,0.14525324172786638,3.895604089087953,4.32,0.5999998842592592,1.3462744581927706e-25,0.15360461889844043,4.32,4.32,0.0,-0.0,21.23,1616.5188,2.692549e-25 -3.846774429721655,0.12373821089101236,3.846774429721655,2.59,0.5962851851851851,7.178624376749892e-26,0.13091358071483652,2.59,2.59,0.0,-0.0,18.61,1615.7655,1.4357249e-25 -3.688416559146773,0.12232076859225688,3.688416559146773,3.6051593562549465e-26,0.5959997685185184,3.6051593562549465e-26,0.12961533334805236,0.0,0.0,0.0,-0.0,18.45,1613.255,7.210319e-26 -3.4945475769918,0.13586107693003258,3.4945475769918,0.1,0.5920523148148148,1.7877125774775726e-26,0.14425143618840564,0.1,0.1,0.0,-0.0,20.380000000000003,1610.0305,3.5754252e-26 -3.3716992882355012,0.1383850900862216,3.3716992882355012,0.09,0.591992824074074,2.7340082600758296e-28,0.14712662526047762,0.09,0.09,0.0,-0.0,20.72,1607.8933,5.4680165e-28 -3.2915968388740025,0.12577041782157838,3.2915968388740025,3.37,0.5880002314814815,-1.2366711255049343e-26,0.133834626704738,3.37,3.37,0.0,-0.0,19.22,1606.4574,-2.4733423e-26 -3.2293255058174672,0.13512494724346658,3.2293255058174672,1.47,0.5879922453703703,-1.5450520296837896e-26,0.1438911206992068,1.47,1.47,0.0,-0.0,20.455,1605.3168,-3.090104e-26 -3.301947528795529,0.14590316309824727,3.301947528795529,4.2,0.5840005787037037,-9.498064795531799e-27,0.15524013406808482,4.2,4.2,0.0,-0.0,21.880000000000003,1606.6449,-1.899613e-26 -3.891219071177736,0.14880689541885933,3.891219071177736,20.51,0.5835359953703704,-5.2336668608096926e-27,0.15736913881311684,20.51,20.51,0.0,-0.0,22.130000000000003,1616.4515,-1.0467334e-26 -4.911721838191702,0.13297554832796393,4.911721838191702,23.64,0.5800003472222222,-3.039907083520257e-27,0.13942715092226818,23.64,23.64,0.0,-0.0,20.15,1630.3605,-6.079814e-27 -5.151687289029736,0.10137786517454549,5.151687289029736,0.78,0.5787818287037036,-1.6125228830546149e-27,0.10611103478170242,0.78,0.78,0.0,-0.0,15.605,1633.2091,-3.2250458e-27 -4.832837238555269,0.08796165642205755,4.832837238555269,-8.809635936899732e-28,0.5760005787037037,-8.809635936899732e-28,0.09228404152928575,0.0,0.0,0.0,-0.0,13.405000000000001,1629.3936,-1.7619272e-27 -4.476362667077669,0.08269145462646185,4.476362667077669,0.19,0.5738478009259259,-5.225761496166966e-28,0.08699919031691797,0.19,0.19,0.0,-0.0,12.515,1624.8176,-1.0451523e-27 -4.161439506375631,0.09372855056956729,4.161439506375631,-2.8006986399663417e-28,0.5719994212962963,-2.8006986399663417e-28,0.09887636746644024,0.0,0.0,0.0,-0.0,14.64,1620.461,-5.6013973e-28 -3.8823924149911555,0.07986882851226636,3.8823924149911555,-1.4236514773995212e-29,0.5680513888888888,-1.4236514773995212e-29,0.0844715115019238,0.0,0.0,0.0,-0.0,12.205,1616.3159,-2.847303e-29 -3.6689189406971643,0.1047891069575488,3.6689189406971643,2.1861642466265127e-28,0.5679997685185185,2.1861642466265127e-28,0.1110599664795421,0.0,0.0,0.0,-0.0,16.67,1612.9385,4.3723285e-28 -3.54677067605322,0.10935719641200727,3.54677067605322,3.11,0.5639996527777777,3.4698478324453747e-28,0.11604690726589387,3.11,3.11,0.0,-0.0,17.52,1610.9164,6.9396957e-28 -3.541865994409926,0.09949359342925819,3.541865994409926,4.7,0.5639916666666667,2.994941674884919e-28,0.10558533445222626,4.7,4.7,0.0,-0.0,15.95,1610.8337,5.9898833e-28 -3.4722684621379685,0.08331371735025607,3.4722684621379685,1.6991013785158417e-28,0.56,1.6991013785158417e-28,0.08847990511854996,0.0,0.0,0.0,-0.0,13.18,1609.6486,3.3982028e-28 -3.277571683216128,0.09349578979414866,3.277571683216128,8.777283684211429e-29,0.558330324074074,8.777283684211429e-29,0.09950639375103414,0.0,0.0,0.0,-0.0,15.139999999999999,1606.2024,1.7554567e-28 -3.0986144453974855,0.11054727830735434,3.0986144453974855,5.0256512962287456e-29,0.5560002314814815,5.0256512962287456e-29,0.11790021013313379,0.0,0.0,0.0,-0.0,18.025,1602.8492,1.00513026e-28 -2.940196341609781,0.11668725883690077,2.940196341609781,2.570870016909389e-29,0.5520519675925926,2.570870016909389e-29,0.1246923944254846,0.0,0.0,0.0,-0.0,19.09,1599.7152,5.14174e-29 -2.7979011377176515,0.12405613788430547,2.7979011377176515,0.05,0.5520004629629629,1.3224521343022017e-29,0.13281276011259865,0.05,0.05,0.0,-0.0,20.165,1596.7527,2.6449043e-29 -2.672170049157132,0.12508369885941703,2.672170049157132,3.88,0.5479999999999999,3.693235107571686e-30,0.13414353187915523,3.88,3.88,0.0,-0.0,20.46,1594.0068,7.38647e-30 -2.5653630845539657,0.11840554411498594,2.5653630845539657,2.96,0.5479921296296296,-7.814564569012274e-30,0.1271760335921436,2.96,2.96,0.0,-0.0,19.549999999999997,1591.5708,-1.5629129e-29 -2.4796155797251895,0.08886773398407832,2.4796155797251895,2.88,0.5439997685185185,-1.8229301577184681e-29,0.09557222613948464,2.88,2.88,0.0,-0.0,14.905,1589.5405,-3.6458603e-29 -2.416949047134759,0.07856724948021275,2.416949047134759,-2.4481401312033125e-29,0.540794212962963,-2.4481401312033125e-29,0.08457597518468375,0.0,0.0,0.0,-0.0,13.015,1588.0118,-4.8962803e-29 -2.3795612533575814,0.06940571257322999,2.3795612533575814,-2.3501286535537846e-29,0.54,-2.3501286535537846e-29,0.0747576047002603,0.0,0.0,0.0,-0.0,11.065,1587.0808,-4.7002573e-29 -2.366310058786454,0.0762300907230694,2.366310058786454,5.18,0.5359994212962963,-1.4351577051110197e-29,0.08212546955273257,5.18,5.18,0.0,-0.0,12.684999999999999,1586.7473,-2.8703154e-29 -2.354508690024698,0.07852071513786477,2.354508690024698,4.41,0.5359994212962963,-5.244904953933949e-30,0.08460916436829297,4.41,4.41,0.0,-0.0,13.165000000000001,1586.4487,-1.048981e-29 -2.323803431039243,0.06537990518954001,2.323803431039243,9.752808616060532e-31,0.5319998842592593,9.752808616060532e-31,0.07048425332002242,0.0,0.0,0.0,-0.0,10.37,1585.6648,1.9505617e-30 -2.2564609671559435,0.05696021482983636,2.2564609671559435,2.3903231876513385e-30,0.5298482638888888,2.3903231876513385e-30,0.061475307693078254,0.0,0.0,0.0,-0.0,8.295,1583.9086,4.7806464e-30 -2.1716477051976515,0.06127636371521106,2.1716477051976515,1.1807798436213248e-30,0.5279998842592593,1.1807798436213248e-30,0.06622925532831492,0.0,0.0,0.0,-0.0,9.51,1581.6206,2.3615597e-30 -2.092527251508072,0.08330447990573428,2.092527251508072,1.8698900144533095e-31,0.5240002314814816,1.8698900144533095e-31,0.09016422967940668,0.0,0.0,0.0,-0.0,14.565,1579.4042,3.73978e-31 -2.0194447428831888,0.09084263734229084,2.0194447428831888,0.03,0.5240002314814816,-3.465578339162058e-31,0.09845546509534606,0.03,0.03,0.0,-0.0,16.01,1577.2811,-6.9311567e-31 -1.9514818423048426,0.0965483603747325,1.9514818423048426,0.11,0.520000462962963,-2.360461070222371e-31,0.10477514821501366,0.11,0.11,0.0,-0.0,17.17,1575.2367,-4.720922e-31 -1.8822516812400227,0.07132816557252622,1.8822516812400227,0.86,0.5183310185185186,2.2728220888968155e-31,0.0775121100705464,0.86,0.86,0.0,-0.0,12.294999999999998,1573.0796,4.545644e-31 -1.8136600723726224,0.05521007668563873,1.8136600723726224,8.584118966936285e-31,0.5159998842592592,8.584118966936285e-31,0.060081301489760736,0.0,0.0,0.0,-0.0,8.35,1570.8627,1.7168238e-30 -1.7487722400116943,0.06841827341310325,1.7487722400116943,1.5283113630182038e-30,0.511999537037037,1.5283113630182038e-30,0.0745581364165814,0.0,0.0,0.0,-0.0,11.870000000000001,1568.6869,3.0566227e-30 -1.6902191673561664,0.053327984857139306,1.6902191673561664,2.1079487558832505e-30,0.511999537037037,2.1079487558832505e-30,0.058189086344849934,0.0,0.0,0.0,-0.0,7.975,1566.6531,4.2158975e-30 -1.6402817776792695,0.046769443173798685,1.6402817776792695,2.468292693506352e-30,0.5079996527777778,2.468292693506352e-30,0.05109111008220512,0.0,0.0,0.0,-0.0,6.1000000000000005,1564.862,4.9365854e-30 -1.6010022032140774,0.047525366910685256,1.6010022032140774,2.4803113239073514e-30,0.5067805555555556,2.4803113239073514e-30,0.05196495191680915,0.0,0.0,0.0,-0.0,6.3950000000000005,1563.4146,4.9606226e-30 -1.5743397423689167,0.06241761634066549,1.5743397423689167,2.0149729831851877e-30,0.503999537037037,2.0149729831851877e-30,0.06829217111742938,0.0,0.0,0.0,-0.0,10.725,1562.4116,4.029946e-30 -1.629537858849059,0.06772763070355224,1.629537858849059,4.08,0.4999997685185186,1.2051541421635913e-30,0.07400447026493684,4.08,4.08,0.0,-0.0,12.13,1564.4696,2.4103083e-30 -1.851790912192021,0.05598704686260967,1.851790912192021,12.0,0.4999997685185186,6.473816025006755e-31,0.060878669225458516,12.0,12.0,0.0,-0.0,9.045,1572.1052,1.2947632e-30 -2.0501432258914094,0.04810462351469355,2.0501432258914094,5.32,0.4959997685185185,3.731692862871832e-31,0.05210613973725073,5.32,5.32,0.0,-0.0,6.765000000000001,1578.1821,7.4633857e-31 -2.0559764090534194,0.043328323302211036,2.0559764090534194,2.137104683326018e-31,0.49366840277777774,2.137104683326018e-31,0.046927484239456634,0.0,0.0,0.0,-0.0,5.245,1578.3518,4.2742094e-31 -1.9879946292703792,0.05490422487399638,1.9879946292703792,1.25583821420664e-31,0.4919994212962963,1.25583821420664e-31,0.059540713743997845,0.0,0.0,0.0,-0.0,8.95,1576.3438,2.5116764e-31 -1.9216164201260246,0.07178167881190746,1.9216164201260246,6.909189627643125e-32,0.48800034722222224,6.909189627643125e-32,0.07794369551173248,0.0,0.0,0.0,-0.0,13.355,1574.3157,1.3818379e-31 -1.8618525429786128,0.06342764645524289,1.8618525429786128,0.1,0.48800034722222224,3.835879924695806e-32,0.06895516452788293,0.1,0.1,0.0,-0.0,11.39,1572.4288,7.67176e-32 -1.8155702828829952,0.06342274175597089,1.8155702828829952,4.56,0.4840002314814815,6.057603406405491e-33,0.06901581388494309,4.56,4.56,0.0,-0.0,11.535,1570.9255,1.2115207e-32 -1.7790250840058301,0.04193262232987805,1.7790250840058301,0.87,0.48167002314814816,-2.8718861010716307e-32,0.0456658422059047,0.87,0.87,0.0,-0.0,5.205,1569.7112,-5.743772e-32 -1.7461254949959515,0.04065078450723151,1.7461254949959515,0.2,0.4800005787037037,-5.647803080100604e-32,0.044301344673176535,0.2,0.2,0.0,-0.0,4.8,1568.5964,-1.1295606e-31 -1.7112439504709143,0.04749225294099527,1.7112439504709143,0.81,0.4760001157407408,-6.772732953675095e-32,0.05179699028753714,0.81,0.81,0.0,-0.0,7.305,1567.3914,-1.3545466e-31 -1.6700977738043188,0.045776860326904305,1.6700977738043188,-5.313031105194047e-32,0.4760001157407408,-5.313031105194047e-32,0.04997245408420439,0.0,0.0,0.0,-0.0,6.755,1565.9379,-1.0626062e-31 -1.7341387873061032,0.04217854015829282,1.7341387873061032,0.6,0.4719996527777777,-2.8537743779877486e-32,0.045978355472198265,0.6,0.6,0.0,-0.0,5.615,1568.185,-5.707549e-32 -1.947493027540573,0.04246427740254945,1.947493027540573,13.0,0.4701513888888889,-1.1580769040893598e-32,0.04608619034349037,13.0,13.0,0.0,-0.0,5.71,1575.1145,-2.3161538e-32 -2.258195857675743,0.037956450403363935,2.258195857675743,10.929999999999998,0.46799976851851854,-1.7209587670674215e-15,0.04096397563974205,10.93,10.93,0.0,-0.0,4.005,1583.9545,-3.4419175e-15 -2.485542583864382,0.036781563738743,2.485542583864382,6.309999999999969,0.463999537037037,-3.0477780265900824e-14,0.03955294553097635,6.31,6.31,0.0,-0.0,3.61,1589.6831,-6.095556e-14 -2.539636240053047,0.029822861488645856,2.539636240053047,1.1199999999946977,0.463999537037037,-1.804325824180839e-14,0.032044007878195536,1.12,1.1199999999947157,5.284412907258229e-12,-0.0,0.5149999999999999,1590.9689,-3.7299777e-14 -2.5027896466496733,0.03236984848281375,2.5027896466496733,8.579781909344232e-14,0.46,8.579781909344232e-14,0.03479978040945427,0.0,0.0,0.0,-0.0,1.845,1590.0961,1.7159565e-13 -2.5432102426705323,0.037485235999239745,2.5432102426705323,0.20000000000019602,0.45920532407407405,1.960193211093834e-13,0.04027493449962418,0.2,0.2,0.0,-0.0,4.035,1591.0529,3.9203864e-13 -2.6378181530150315,0.047264256161571525,2.6378181530150315,7.170000000000263,0.45599953703703705,2.6329098948875353e-13,0.05071219712547789,7.17,7.17,0.0,-0.0,7.640000000000001,1593.2341,5.26582e-13 -2.756659410094246,0.04102374736366945,2.756659410094246,6.780000000000242,0.45200810185185186,2.4184777444649844e-13,0.04394385470378799,6.78,6.78,0.0,-0.0,5.585,1595.8658,4.8369555e-13 -2.812419241650088,0.04584685003928667,2.812419241650088,1.4009464161682446e-13,0.452,1.4009464161682446e-13,0.04907349508564196,0.0,0.0,0.0,-0.0,7.27,1597.0618,2.8018928e-13 -2.725067622648786,0.0554925173643308,2.725067622648786,6.038720820051272e-14,0.4480001157407407,6.038720820051272e-14,0.05946817557248517,0.0,0.0,0.0,-0.0,10.4,1595.1775,1.2077442e-13 -2.592648592579926,0.06042190645049155,2.592648592579926,1.9392859984972433e-14,0.4480001157407407,1.9392859984972433e-14,0.06487170109324314,0.0,0.0,0.0,-0.0,11.78,1592.2026,3.878572e-14 -2.4819075708559057,0.047979982811661034,2.4819075708559057,1.0647809775544976e-14,0.4440001157407408,1.0647809775544976e-14,0.051597969191575555,0.0,0.0,0.0,-0.0,8.319999999999999,1589.5957,2.129562e-14 -2.3808554077751585,0.05104255973582548,2.3808554077751585,4.795493971539397e-15,0.44166932870370373,4.795493971539397e-15,0.05497733968017751,0.0,0.0,0.0,-0.0,9.389999999999999,1587.1133,9.590988e-15 -2.287674132026939,0.051491667649254204,2.287674132026939,2.026238335103888e-15,0.4400003472222222,2.026238335103888e-15,0.05554451153904927,0.0,0.0,0.0,-0.0,9.61,1584.729,4.0524767e-15 -2.1946244867662643,0.04473120827037246,2.1946244867662643,2.984229686772713e-16,0.43611064814814815,2.984229686772713e-16,0.048327570224413655,0.0,0.0,0.0,-0.0,7.585,1582.2491,5.9684594e-16 -2.102615769388316,0.036865608342475195,2.102615769388316,-2.3372336814682603e-15,0.43600011574074077,-2.3372336814682603e-15,0.03989407045349628,0.0,0.0,0.0,-0.0,4.67,1579.6914,-4.6744674e-15 -2.0210593683343947,0.03821851647265297,2.0210593683343947,-5.2445594999540736e-15,0.43200000000000005,-5.2445594999540736e-15,0.04142006510165653,0.0,0.0,0.0,-0.0,5.375,1577.3289,-1.0489119e-14 -1.9579745948458112,0.03909895516354204,1.9579745948458112,0.01999999999999221,0.43194837962962956,-7.787382900797253e-15,0.04242519500547899,0.02,0.02,0.0,-0.0,5.74,1575.435,-1.5574766e-14 -1.9205718928645734,0.047945200900093646,1.9205718928645734,1.0799999999999907,0.428,-9.32953089511669e-15,0.05206207601806271,1.08,1.08,0.0,-0.0,9.03,1574.2832,-1.8659062e-14 -1.9161918581816748,0.045706718950694405,1.9161918581816748,3.469999999999991,0.4261517361111111,-9.234831764580727e-15,0.04963568306266368,3.47,3.47,0.0,-0.0,8.355,1574.1469,-1.8469664e-14 -1.953229766329954,0.045230961621278105,1.953229766329954,3.8099999999999934,0.42400011574074076,-6.873265791153493e-15,0.04908337998310981,3.81,3.81,0.0,-0.0,8.26,1575.2902,-1.3746532e-14 -1.9583388270472828,0.04413309320443367,1.9583388270472828,-3.700105458435612e-15,0.42121863425925926,-3.700105458435612e-15,0.047887261326343314,0.0,0.0,0.0,-0.0,7.98,1575.4462,-7.400211e-15 -1.9032088508242326,0.036235034707560204,1.9032088508242326,-1.4729419085180947e-15,0.41999976851851856,-1.4729419085180947e-15,0.0393599615955247,0.0,0.0,0.0,-0.0,5.03,1573.7408,-2.9458838e-15 -1.8391728194645525,0.03707820429181985,1.8391728194645525,-5.800747908780208e-16,0.4164640046296296,-5.800747908780208e-16,0.040328224078511284,0.0,0.0,0.0,-0.0,5.5249999999999995,1571.6969,-1.1601496e-15 -1.824838205827646,0.029502866137434417,1.824838205827646,-2.9024446762574694e-16,0.4159996527777778,-2.9024446762574694e-16,0.0320984272668071,0.0,0.0,0.0,-0.0,2.1350000000000002,1571.2296,-5.8048894e-16 -1.8590232525404449,0.031454433194472664,1.8590232525404449,4.23,0.4121109953703704,-7.347118124113495e-17,0.03419756239480582,4.23,4.23,0.0,-0.0,3.21,1572.338,-1.4694236e-16 -1.917790568443089,0.04264719550403629,1.917790568443089,4.56,0.41200046296296294,2.0014885617806688e-17,0.046311696743231844,4.56,4.56,0.0,-0.0,7.805000000000001,1574.1967,4.002977e-17 -1.92826204379822,0.041901861488013656,1.92826204379822,1.2900829601746455e-17,0.4080084490740741,1.2900829601746455e-17,0.045492921322770614,0.0,0.0,0.0,-0.0,7.68,1574.5219,2.580166e-17 -1.8652884526933708,0.02585409450889858,1.8652884526933708,7.078840579485114e-18,0.40794895833333333,7.078840579485114e-18,0.028105228751290085,0.0,0.0,0.0,-0.0,0.48,1572.539,1.4833148e-17 -1.8070437061940325,0.026332095827079082,1.8070437061940325,-2.436785838137112e-12,0.40399999999999997,-2.436785838137112e-12,0.02865937763923632,0.0,0.0,0.0,-0.0,0.9049999999999998,1570.6444,-4.8768884e-12 -1.7724807226586394,0.023588219296802413,1.7724807226586394,0.6497487400348253,0.4037145833333334,-0.000250851301930932,0.025691857435303122,0.65,0.6499995913367562,4.086632438227156e-7,-0.0,-0.665,1569.4911,-3.896068e-5 -1.782683421676749,0.029810497782547712,1.782683421676749,2.839924074864932,0.40000023148148145,-7.592513506779103e-5,0.03246195984216737,2.84,2.84,0.0,-0.0,2.88,1569.8339,-0.00015196574 -1.7704457531125966,0.0234349192275491,1.7704457531125966,-0.0003889748186678263,0.39971435185185183,-0.0003889748186678263,0.02552600155986367,0.0,0.0,0.0,-0.0,-0.6150000000000002,1569.4225,-1.6498372e-5 -1.722054838516532,0.02336322098888496,1.722054838516532,0.5290354175766399,0.3960082175925926,-0.0009645116985387978,0.025474770069430146,0.53,0.5299999292751787,7.072482135384029e-8,-0.0,-0.5099999999999998,1567.7675,0.00023590666 -1.7602879061509757,0.033047061496387406,1.7602879061509757,5.8100981355278885,0.39571446759259266,9.813552788874081e-5,0.0360037120003031,5.81,5.81,0.0,-0.0,4.585,1569.0789,0.00019607882 -1.8660969255919737,0.03623008319179221,1.8660969255919737,5.100056336288967,0.3921108796296296,5.6336288967469443e-5,0.03938401395290593,5.1,5.1,0.0,-0.0,6.08,1572.5648,0.000112609174 -1.8903060810726395,0.022733963483560767,1.8903060810726395,-7.214383369438014e-5,0.3919487268518519,-7.214383369438014e-5,0.02470092783940525,0.0,0.0,0.0,-0.0,-0.8050000000000002,1573.3346,-0.00011727769 -1.8365093751555361,0.018431076114981595,1.8365093751555361,-2.8238782644970604e-16,0.3884644675925926,-2.8238782644970604e-16,0.020047721149032985,0.0,0.0,0.0,-0.0,-3.6350000000000002,1571.6104,-0.00035153946 -1.7817144138076573,0.02039691027191244,1.7817144138076573,0.006113536066376187,0.38799999999999996,-2.0329903036848883e-10,0.02221155053297168,0.02,0.006113536269675217,0.013886463730324783,-0.0,-2.175,1569.8014,0.00935576 -1.822299813495654,0.0286760704728472,1.822299813495654,6.116379798332557,0.3848466435185185,0.006379798332556827,0.03120054369483266,6.11,6.11,0.0,-0.0,2.8649999999999998,1571.1465,0.012036128 -2.076523560950164,0.037296896574917957,2.076523560950164,13.073605815851419,0.3840003472222222,0.003605815851418689,0.04037985064018252,13.07,13.07,0.0,-0.0,6.78,1578.9457,0.006968902 -2.5703914766783105,0.03596483092318571,2.5703914766783105,17.932093514108058,0.38166932870370374,0.002093514108058473,0.0386259658030141,17.93,17.93,0.0,-0.0,6.195,1591.6877,0.004102872 -2.9643465258976254,0.02722360976111831,2.9643465258976254,4.751218579347161,0.3799997685185186,0.0012185793471607474,0.029082359043475767,4.75,4.75,0.0,-0.0,2.015,1600.2037,0.0024081639 -2.9833178768391235,0.020498283283038408,2.9833178768391235,1.2172375494869014,0.37920590277777777,-7.058144955441783e-10,0.021892634472297858,2.05,1.217237550192716,0.832762449807284,-0.0,-2.055,1600.5847,0.030934181 -2.8518357935175227,0.01947472319817231,2.8518357935175227,-4.447434493300561e-12,0.37611087962962964,-4.447434493300561e-12,0.020834487193400236,0.0,0.0,0.0,-0.0,-2.6399999999999997,1597.893,0.80621475 -2.7720228770171,0.025673989381974766,2.7720228770171,2.5858218127564334,0.3759486111111111,0.6458218127564357,0.02749576851652902,1.94,1.9399999999999977,2.1538326677728035e-15,-0.0,1.35,1596.1978,0.6468292 -2.875671631768286,0.02206912510276295,2.875671631768286,7.6097662485801845,0.37321898148148147,-0.00022198345088165588,0.023602693117817652,7.61,7.609988232031066,1.1767968934544016e-5,-0.0,-0.7549999999999999,1598.39,0.40408605 -2.816601652555696,0.01467345072278532,2.816601652555696,0.0,0.3719998842592593,-0.0,0.015705277471811,2.51,0.0,2.51,-0.0,-6.41,1597.1505,3.8115242 -2.6891725728401146,0.01144509618913618,2.6891725728401146,0.0,0.37120578703703705,-0.0,0.012271150405141852,6.64,0.0,6.64,-0.0,-9.7,1594.3856,8.407806 -2.572783151559712,0.013323474824926667,2.572783151559712,0.0,0.3684645833333333,-0.0,0.014308815369896085,0.87,0.0,0.87,-0.0,-7.545,1591.7433,12.1614895 -2.4658828113911406,0.018401062733335884,2.4658828113911406,0.000124749386390019,0.3680003472222222,-8.058272524451799e-14,0.019793433149868898,1.88,0.00012474938647060173,1.8798752506135292,-0.0,-3.0549999999999997,1589.2089,13.522715 -2.367408274792241,0.017149009101039534,2.367408274792241,0.0,0.36615196759259255,-0.0,0.01847493315250058,0.0,0.0,0.0,-0.0,-3.95,1586.775,14.438766 -2.276497590700642,0.017118249274236916,2.276497590700642,3.1374762898828125e-10,0.3644642361111111,-0.0,0.01846901365027412,0.02,3.1374762898828125e-10,0.019999999686252372,-0.0,-3.89,1584.4365,14.449689 -2.192284095047317,0.01733690079928534,2.192284095047317,0.0,0.36400011574074076,-0.0,0.018731531445474625,0.0,0.0,0.0,-0.0,-3.6750000000000003,1582.1854,14.459963 -2.1140877804172162,0.015101881649974577,2.1140877804172162,0.0,0.3621513888888889,-0.0,0.01633912067587687,0.0,0.0,0.0,-0.0,-5.5,1580.0164,14.460081 -2.0412158403138,0.020135539754142555,2.0412158403138,-6.956272623157753e-7,0.3604638888888889,-6.956272623157753e-7,0.021814088998701135,0.0,0.0,0.0,-0.0,-1.3850000000000002,1577.9215,14.460081 -2.0612868092759853,0.027538416045651732,2.0612868092759853,8.048415016669068,0.3599998842592593,8.048415016669068,0.029823043332592697,0.0,0.0,0.0,-0.0,3.1849999999999996,1578.5059,11.826325 -2.2318009943386117,0.02597691229741314,2.2318009943386117,5.129378659407452,0.35920578703703704,5.019378659407452,0.028047657546541444,0.11,0.11,0.0,-0.0,2.3099999999999996,1583.2523,5.0193787 -2.4514092055883134,0.02816011906917207,2.4514092055883134,11.138495012152395,0.3572189814814815,1.8184950121523944,0.030297639525226877,9.32,9.32,0.0,-0.0,3.535,1588.8573,1.818495 -2.7267280325960983,0.028652183637243964,2.7267280325960983,7.027007660733609,0.35611041666666665,0.6670076607336091,0.030704215860939743,6.36,6.36,0.0,-0.0,3.78,1595.2139,0.66784656 -2.7953516156206524,0.02373123536629932,2.7953516156206524,1.6416377811265597,0.3559483796296296,0.2316377811266147,0.02540719381071009,1.41,1.409999999999945,5.47112355420154e-14,-0.0,0.995,1596.6982,0.25060618 -2.770459466980982,0.020941765559372376,2.770459466980982,2.99980042609413,0.3546476851851852,-0.00019493475911547316,0.022428228181598186,3.0,2.9999953608532453,4.639146754747969e-6,-0.0,-0.755,1596.1641,0.18402377 -2.697893579400143,0.01582573856396032,2.697893579400143,4.980237888752015e-11,0.35321898148148145,-0.0,0.016965909783463816,5.46,4.980237888752015e-11,5.459999999950197,-0.0,-4.635,1594.579,3.2273667 -2.5805727934113003,0.017655416222208894,2.5805727934113003,0.00044945750058170326,0.35211030092592593,-9.309925356278938e-14,0.018958976052901203,5.83,0.0004494575006748025,5.829550542499326,-0.0,-3.04,1591.9238,8.851865 -2.4730758012972394,0.01236080720799804,2.4730758012972394,0.0,0.35199988425925927,-0.0,0.013294668766907687,0.0,0.0,0.0,-0.0,-7.92,1589.3828,11.773748 -2.3743091608967966,0.00957961926107816,2.3743091608967966,0.0,0.35171423611111113,-0.0,0.010319164123755609,21.45,0.0,21.45,-0.0,-11.27,1586.9489,22.55858 -2.2831661443025997,0.009362731412097872,2.2831661443025997,0.0,0.3506474537037037,-0.0,0.010100410928398322,10.4,0.0,10.4,-0.0,-11.51,1584.6112,38.450867 -2.1987868595976727,0.007655423623465274,2.1987868595976727,0.0,0.34966921296296294,-0.0,0.008270323552865727,3.69,0.0,3.69,-0.0,-14.049999999999999,1582.3623,45.456364 -2.1203716009866693,0.011765043901776993,2.1203716009866693,0.0,0.3488465277777778,-0.0,0.01272748088911777,0.0,0.0,0.0,-0.0,-8.385,1580.1936,47.269066 -2.048388126301626,0.013949977370139487,2.048388126301626,0.0,0.3481105324074074,-0.0,0.015110876571566791,0.0,0.0,0.0,-0.0,-6.029999999999999,1578.131,47.296604 -1.9840852875767774,0.01945973168946935,1.9840852875767774,0.22985568160907577,0.3480079861111111,-9.209494203566214e-7,0.02110461859079989,0.23,0.22985660255849613,0.00014339744150388689,-0.0,-1.355,1576.2262,47.344555 -1.9222528391085716,0.02001933241516904,1.9222528391085716,-4.6637158033659165e-5,0.34794849537037037,-4.6637158033659165e-5,0.021737596220068454,0.0,0.0,0.0,-0.0,-0.93,1574.3354,47.356033 -1.873507680208689,0.022063164646532945,1.873507680208689,1.9101975060091263,0.34771435185185184,0.8201975060154075,0.023980215877795013,1.09,1.0899999999937187,6.2814897727747626e-12,-0.0,0.4950000000000001,1572.8015,47.516857 -1.8232461722292639,0.011028240529351441,1.8232461722292639,0.0,0.3472057870370371,-0.0,0.011998865415362473,0.0,0.0,0.0,-0.0,-9.11,1571.1775,47.845295 -1.7689337144742407,0.00931562725718896,1.7689337144742407,0.0,0.3466476851851852,-0.0,0.010147184419189248,0.0,0.0,0.0,-0.0,-11.3,1569.3715,47.84308 -1.717727227095239,0.013450123900263428,1.717727227095239,0.0,0.3466476851851852,-0.0,0.014667141083779473,0.6,0.0,0.6,-0.0,-6.38,1567.6172,48.15726 -1.6803910895600662,0.02320436710305856,1.6803910895600662,3.153966780093906,0.3461518518518519,3.153966780093906,0.025325186194958448,0.0,0.0,0.0,-0.0,1.355,1566.3048,48.0446 -1.693078766486613,0.017283676088409507,1.693078766486613,0.0020626629071655296,0.3461518518518519,-4.597289919440972e-13,0.018857950855693164,5.14,0.0020626629076252586,5.137937337092374,-0.0,-2.875,1566.754,48.461296 -1.6459746339767625,0.010704999649245506,1.6459746339767625,0.0,0.3456693287037037,-0.0,0.011692634586686025,4.07,0.0,4.07,-0.0,-9.395,1565.069,53.033356 -1.6015291645737424,0.011786050888750984,1.6015291645737424,0.0,0.3456693287037037,-0.0,0.01288688354282486,4.35,0.0,4.35,-0.0,-8.094999999999999,1563.4342,57.23521 -1.5594468651094087,0.008417986830398733,1.5594468651094087,0.0,0.3461518518518519,-0.0,0.009213609275533307,3.54,0.0,3.54,-0.0,-12.535,1561.844,61.162403 -1.5195539516518861,0.008089588404808236,1.5195539516518861,0.0,0.3461518518518519,-0.0,0.00886295457909589,6.16,0.0,6.16,-0.0,-13.035,1560.2964,66.02201 -1.4816019209500766,0.012280195316419313,1.4816019209500766,0.0,0.3461518518518519,-0.0,0.013467221702841153,1.8,0.0,1.8,-0.0,-7.52,1558.7859,69.982994 -1.4454395692984843,0.012172973446498514,1.4454395692984843,0.0,0.3466476851851852,-0.0,0.013362285690925109,0.65,0.0,0.65,-0.0,-7.645,1557.3102,71.30081 -1.4110075412800465,0.010883968829755597,1.4110075412800465,0.0,0.3472057870370371,-0.0,0.01195840017613043,0.69,0.0,0.69,-0.0,-9.155,1555.8704,72.05763 -1.3782603388786896,0.005455223870502486,1.3782603388786896,0.0,0.34771435185185184,-0.0,0.005999153684262099,0.0,0.0,0.0,-0.0,-17.995,1554.468,72.3718 -1.3470741688053376,0.0034115347112069526,1.3470741688053376,0.0,0.34794849537037037,-0.0,0.0037549939463456194,0.0,0.0,0.0,-0.0,-23.605,1553.1012,72.30492 -1.317258541402017,0.005827473203166525,1.317258541402017,0.0,0.34800000000000003,-0.0,0.006419684228825529,6.05,0.0,6.05,-0.0,-17.17,1551.7645,75.2738 -1.2886585107379684,0.010961250604732917,1.2886585107379684,0.0,0.3480079861111111,-0.0,0.012085386124374868,4.45,0.0,4.45,-0.0,-9.045,1550.4536,80.44311 -1.261225854626602,0.009633077598317465,1.261225854626602,0.0,0.3484641203703704,-0.0,0.010629811907457973,0.0,0.0,0.0,-0.0,-10.76,1549.1686,82.63037 -1.2349399617195667,0.010267653475841182,1.2349399617195667,0.0,0.3482361111111111,-0.0,0.011339253987499222,2.23,0.0,2.23,-0.0,-9.9,1547.9108,83.782776 -1.2097581582664896,0.006100300280519889,1.2097581582664896,0.0,0.34921886574074074,-0.0,0.006742327228703819,7.15,0.0,7.15,-0.0,-16.605,1546.6804,88.49195 -1.185601070534894,0.007899630918097788,1.185601070534894,0.0,0.35015162037037034,-0.0,0.008737833892034523,6.72,0.0,6.72,-0.0,-13.365,1545.4758,95.32433 -1.1623515714304944,0.00744536669657536,1.1623515714304944,0.0,0.35120578703703703,-0.0,0.00824167652230715,0.0,0.0,0.0,-0.0,-14.15,1544.2931,100.88726 -1.1399773439297864,0.009102455089387984,1.1399773439297864,0.0,0.3519482638888889,-0.0,0.010083576030315412,2.13,0.0,2.13,-0.0,-11.58,1543.1323,105.00865 -1.1184520895832137,0.009209606158242858,1.1184520895832137,0.0,0.35200787037037035,-0.0,0.010209808694388445,3.27,0.0,3.27,-0.0,-11.42,1541.9939,107.666756 -1.0977550427529508,0.005724129065204156,1.0977550427529508,0.0,0.35284641203703704,-0.0,0.006350387783803296,0.0,0.0,0.0,-0.0,-17.475,1540.8784,108.83982 -1.0778463019537619,0.004558109060627883,1.0778463019537619,0.0,0.3541518518518519,-0.0,0.00506038681707524,0.0,0.0,0.0,-0.0,-20.285,1539.7854,108.89942 -1.0586556125217188,0.0048685897139887895,1.0586556125217188,0.0,0.35571446759259256,-0.0,0.005408849399768864,0.02,0.0,0.02,-0.0,-19.535,1538.7125,108.90916 -1.0401212146324923,0.005290852102257503,1.0401212146324923,0.0,0.35600000000000004,-0.0,0.0058820017729752415,0.0,0.0,0.0,-0.0,-18.525,1537.6577,108.920746 -1.0222121429698416,0.006535439685601171,1.0222121429698416,0.0,0.3564643518518519,-0.0,0.00727055214942244,0.0,0.0,0.0,-0.0,-15.920000000000002,1536.6205,108.92385 -1.0049030688217988,0.006396168750735503,1.0049030688217988,0.0,0.35815185185185183,-0.0,0.007120341855084846,0.0,0.0,0.0,-0.0,-16.240000000000002,1535.6006,108.92308 -0.9881698283077172,0.006057909009373291,0.9881698283077172,0.0,0.3599482638888889,-0.0,0.006748191239580553,0.0,0.0,0.0,-0.0,-16.97,1534.5978,108.90341 -0.9719853871543468,0.006397874886020897,0.9719853871543468,0.0,0.36000787037037035,-0.0,0.00713147833146762,0.0,0.0,0.0,-0.0,-16.285,1533.6116,108.818436 -0.956302509988132,0.00837629109110795,0.956302509988132,0.0,0.36121863425925926,-0.0,0.00934266480923335,0.19,0.0,0.19,-0.0,-12.905000000000001,1532.6401,108.938995 -0.9410842481088827,0.010408768905661973,0.9410842481088827,0.0,0.3637142361111111,-0.0,0.011616891209065245,1.23,0.0,1.23,-0.0,-10.155000000000001,1531.6821,109.69833 -0.9263542873377575,0.006397439047524843,0.9263542873377575,0.0,0.36400011574074076,-0.0,0.007144369858598906,0.0,0.0,0.0,-0.0,-16.4,1530.74,110.366776 -0.9121251825992461,0.004319030461068146,0.9121251825992461,0.0,0.36521898148148146,-0.0,0.004826212014454877,0.0,0.0,0.0,-0.0,-21.22,1529.8156,110.39015 -0.8983367987435371,0.004484707434612695,0.8983367987435371,0.0,0.36771435185185186,-0.0,0.0050143259990284485,0.0,0.0,0.0,-0.0,-20.845,1528.9059,110.389114 -0.884950379074546,0.005592680701019074,0.884950379074546,0.0,0.3680083333333333,-0.0,0.006256813861990837,0.02,0.0,0.02,-0.0,-18.175,1528.0093,110.443565 -0.871927386996658,0.008170480846316192,0.871927386996658,0.0,0.3696696759259259,-0.0,0.009146028339990881,4.55,0.0,4.55,-0.0,-13.475,1527.1239,112.77177 -0.8592786884210106,0.0060939924532847885,0.8592786884210106,0.0,0.3719483796296296,-0.0,0.006825509708549402,1.92,0.0,1.92,-0.0,-17.235,1526.2512,115.99654 -0.8470073647613185,0.005801492510886219,0.8470073647613185,0.0,0.37211041666666667,-0.0,0.006501557565794876,0.0,0.0,0.0,-0.0,-17.84,1525.3922,116.9103 -0.8350597741214686,0.00968730192808544,0.8350597741214686,0.0,0.3746479166666667,-0.0,0.010862308274863989,0.0,0.0,0.0,-0.0,-11.425,1524.5438,116.931854 -0.8234389122275505,0.009657512065302562,0.8234389122275505,0.0,0.3760002314814815,-0.0,0.010834853000971709,0.0,0.0,0.0,-0.0,-11.504999999999999,1523.7069,116.931854 -0.8121440974767008,0.006553512898735824,0.8121440974767008,0.0,0.3772188657407407,-0.0,0.007356429600323232,0.0,0.0,0.0,-0.0,-16.48,1522.8821,116.931854 -0.8011532164274546,0.00728492759926301,0.8011532164274546,0.0,0.3799997685185186,-0.0,0.008181826822253437,0.0,0.0,0.0,-0.0,-15.24,1522.0684,116.931854 -0.7904500158064769,0.0077508142109737185,0.7904500158064769,0.0,0.3804640046296296,-0.0,0.008709668294079332,0.0,0.0,0.0,-0.0,-14.465,1521.2651,116.931854 -0.7800205365071229,0.007828368434760122,0.7800205365071229,0.0,0.383714699074074,-0.0,0.008801405958609296,0.0,0.0,0.0,-0.0,-14.440000000000001,1520.4719,116.92961 -0.7698608407760821,0.007879819938596636,0.7698608407760821,0.0,0.38400833333333334,-0.0,0.008863817071696388,0.0,0.0,0.0,-0.0,-14.36,1519.689,116.92626 -0.7599655017017307,0.007707968951491038,0.7599655017017307,0.0,0.3866476851851852,-0.0,0.00867491626594859,0.0,0.0,0.0,-0.0,-14.719999999999999,1518.9164,116.92724 -0.7503277046997021,0.006254561150577083,0.7503277046997021,0.0,0.38799999999999996,-0.0,0.007042715838936845,0.02,0.0,0.02,-0.0,-17.37,1518.1542,117.130135 -0.74092419613185,0.008992121781314099,0.74092419613185,0.0,0.3901519675925926,-0.0,0.010130269861029462,3.54,0.0,3.54,-0.0,-12.855,1517.401,119.06983 -0.731717803099667,0.012109470922897886,0.731717803099667,0.0,0.39200034722222227,-0.0,0.013648903707076051,2.31,0.0,2.31,-0.0,-9.01,1516.6543,121.93171 -0.7227410257405851,0.007789252491805072,0.7227410257405851,0.0,0.3936696759259259,-0.0,0.008783741106618195,0.0,0.0,0.0,-0.0,-14.790000000000001,1515.9171,123.100235 -0.7140261479628719,0.004950994733783795,0.7140261479628719,0.0,0.39600023148148145,-0.0,0.005585779875323756,0.0,0.0,0.0,-0.0,-20.44,1515.1926,123.1034 -0.7055374849497431,0.003880096303202464,0.7055374849497431,0.0,0.3972188657407407,-0.0,0.004379642121669344,0.0,0.0,0.0,-0.0,-23.355,1514.4784,123.10183 -0.6972537718996002,0.003850574474878087,0.6972537718996002,0.0,0.40000023148148145,-0.0,0.004348344593389351,0.0,0.0,0.0,-0.0,-23.52,1513.7731,123.10108 -0.6891602839456177,0.004522297242536695,0.6891602839456177,0.0,0.4012189814814815,-0.0,0.005109255468509468,0.02,0.0,0.02,-0.0,-21.66,1513.0758,123.32547 -0.6812373243992362,0.006278055241649039,0.6812373243992362,0.0,0.40399999999999997,-0.0,0.007096135497153359,2.68,0.0,2.68,-0.0,-17.775,1512.3853,124.75246 -0.6734536295876553,0.011725728485561,0.6734536295876553,0.0,0.40521898148148144,-0.0,0.013259700545686414,1.31,0.0,1.31,-0.0,-9.835,1511.699,126.69178 -0.6657888089808606,0.016592798048664283,0.6657888089808606,0.0,0.4080003472222223,-0.0,0.01877197396748371,0.0,0.0,0.0,-0.0,-5.23,1511.0154,127.37078 -0.6582677341473078,0.016443116039485835,0.6582677341473078,0.0,0.40966990740740744,-0.0,0.018610990417373227,0.0,0.0,0.0,-0.0,-5.404999999999999,1510.3369,127.43365 -0.6509274115759189,0.014035692959738357,0.6509274115759189,0.0,0.41200046296296294,-0.0,0.015893217628237463,0.0,0.0,0.0,-0.0,-7.635000000000001,1509.6672,127.24542 -0.6632392949212476,0.021653820717225193,0.6632392949212476,11.987515431685749,0.41464768518518513,-2.827272174544582e-8,0.024501389407177963,12.29,11.98751545995847,0.30248454004153064,-0.0,-1.7250000000000003,1510.7863,131.7002 -0.7820608352730312,0.02450902180972603,0.7820608352730312,9.063422223029335,0.4159996527777778,-0.04657775874104381,0.02755257645972712,9.11,9.109999981770379,1.8229619541121343e-8,-0.0,-0.09000000000000008,1520.6279,131.90134 -0.8177494392855509,0.018922748016119793,0.8177494392855509,2.9695374693661236e-8,0.419205324074074,-0.0,0.021235378411139705,1.99,2.9695374693661236e-8,1.9899999703046254,-0.0,-3.895,1523.2928,133.92722 -0.8064700211699468,0.016231200896101864,0.8064700211699468,0.0,0.41999976851851856,-0.0,0.018224809570429594,1.7,0.0,1.7,-0.0,-6.035,1522.4634,135.65993 -0.7955461715068646,0.012036291682539798,0.7955461715068646,0.0,0.42400011574074076,-0.0,0.013521891316623224,0.1,0.0,0.1,-0.0,-10.174999999999999,1521.6489,136.28871 -0.7849162751595201,0.014104922121981802,0.7849162751595201,0.0,0.42400011574074076,-0.0,0.015854216093666607,0.94,0.0,0.94,-0.0,-8.055,1520.8456,136.86208 -0.7745867254125657,0.01009079040839206,0.7745867254125657,0.0,0.428,-0.0,0.011348154593436436,3.26,0.0,3.26,-0.0,-12.585,1520.0544,139.16125 -0.7645290584999063,0.011902295665568979,0.7645290584999063,0.0,0.42846388888888887,-0.0,0.01339225934443056,3.04,0.0,3.04,-0.0,-10.44,1519.2739,142.25012 -0.7547377326230887,0.008777812177128181,0.7547377326230887,0.0,0.43200000000000005,-0.0,0.009881650774502579,0.23,0.0,0.23,-0.0,-14.475000000000001,1518.5042,143.80467 -0.7451677567519674,0.016083634578032763,0.7451677567519674,0.0,0.4336695601851852,-0.0,0.018115295686206782,3.81,0.0,3.81,-0.0,-6.555,1517.7421,145.81244 -0.7455715016605321,0.02432803898843904,0.7455715016605321,3.3598864957722823,0.43600011574074077,-0.00010072454159706268,0.02740053715283149,3.36,3.3599872203138794,1.2779686120651945e-5,-0.0,-0.845,1517.7744,148.62987 -0.8221187048255171,0.022226493382242654,0.8221187048255171,1.3818297252651706,0.4399488425925926,-1.0149309589661048e-10,0.024937678871263032,14.11,1.3818297253666636,12.728170274633335,-0.0,-2.315,1523.6111,150.7401 -0.8115931460324173,0.0170145721030921,0.8115931460324173,0.0,0.4400003472222222,-0.0,0.019099654619298304,14.94,0.0,14.94,-0.0,-6.03,1522.8416,165.19846 -0.8005049933130983,0.013412283448168628,0.8005049933130983,0.0,0.4440001157407408,-0.0,0.015064043430805406,0.0,0.0,0.0,-0.0,-9.355,1522.02,173.59256 -0.7897087518461662,0.022867301843002546,0.7897087518461662,1.8554675650334396,0.4440081018518519,-1.7094529231988463e-9,0.025697164744297313,2.75,1.8554675667428926,0.8945324332571073,-0.0,-2.02,1521.2091,177.73898 -0.7791966704164476,0.012201149063927422,0.7791966704164476,0.0,0.4480001157407407,-0.0,0.013718276609627924,2.09,0.0,2.09,-0.0,-10.71,1520.4088,180.27649 -0.7695760670150229,0.015713530339377443,0.7695760670150229,0.0,0.4501516203703704,-0.0,0.017676023641361643,0.06,0.0,0.06,-0.0,-7.395,1519.6669,181.31924 -0.7744759032750196,0.028955304571566122,0.7744759032750196,5.612034077824741,0.452,2.5520340778247714,0.032563466927823685,3.06,3.0599999999999694,3.074540622094446e-14,-0.0,1.13,1520.0459,182.029 -0.7785057409734817,0.012943478447290348,0.7785057409734817,0.0,0.45599953703703705,-0.0,0.014553416572182969,0.0,0.0,0.0,-0.0,-10.165,1520.3558,182.21597 -0.767852370267764,0.006724613443825742,0.767852370267764,0.0,0.45599953703703705,-0.0,0.007565130098164066,1.66,0.0,1.66,-0.0,-18.475,1519.533,183.02144 -0.758010735664558,0.008463018552857736,0.758010735664558,0.0,0.46,-0.0,0.00952564972314802,8.55,0.0,8.55,-0.0,-15.73,1518.7626,188.34706 -0.7484084371491424,0.007610297261929837,0.7484084371491424,0.0,0.4604638888888889,-0.0,0.008570155481037366,0.0,0.0,0.0,-0.0,-17.06,1518.0012,192.69444 -0.7390440880762165,0.009076907441966082,0.7390440880762165,0.0,0.463999537037037,-0.0,0.010226809622108072,0.47,0.0,0.47,-0.0,-14.945,1517.2493,193.14651 -0.7298416624318934,0.02125059340716231,0.7298416624318934,2.2519874887549917e-7,0.46799976851851854,-0.0,0.023954525276669237,3.54,2.2519874887549917e-7,3.539999774801251,-0.0,-3.75,1516.501,194.46915 -0.7207847624217881,0.0187288813276014,0.7207847624217881,0.0,0.46799976851851854,-0.0,0.021122336541287468,0.0,0.0,0.0,-0.0,-5.494999999999999,1515.7552,195.12097 -0.7119508440370326,0.023669393677970205,0.7119508440370326,-7.983631375751817e-11,0.4719996527777777,-7.983631375751817e-11,0.026707197146645986,0.0,0.0,0.0,-0.0,-2.3399999999999994,1515.0188,195.20338 -0.7016429389071397,0.026365595382759243,0.7016429389071397,0.029842002506914683,0.4719996527777777,-0.0001579282852009064,0.029766550290516954,0.03,0.02999993079211559,6.920788441000525e-8,-0.0,-0.7949999999999999,1514.1478,195.19785 -0.8263981319476547,0.03051813544680633,0.8263981319476547,19.385124526549255,0.4760001157407408,2.485124526549475,0.03423376796816802,16.9,16.899999999999782,2.1858626020332394e-13,-0.0,1.1050000000000002,1523.9211,194.17638 -1.0760742152695633,0.031018445878445124,1.0760742152695633,14.281431643690913,0.4800005787037037,2.391431643691132,0.03443870044208201,11.89,11.889999999999782,2.1780910408608635e-13,-0.0,1.0699999999999998,1539.6871,191.76138 -1.2313632160488128,0.029796431008480097,1.2313632160488128,4.901622351783206,0.4800005787037037,0.5716223518415875,0.03290986720177469,4.33,4.329999999941618,5.838135752611606e-11,-0.0,0.41000000000000003,1547.7375,190.46939 -1.255674789600527,0.02344541207994464,1.255674789600527,5.417265583869881e-5,0.4840002314814815,-3.5444073463951487e-14,0.025875708332365275,1.91,5.417265587414288e-5,1.9099458273441259,-0.0,-3.1399999999999997,1548.9052,191.15826 -1.228168316501673,0.014838221181129459,1.228168316501673,0.0,0.4840002314814815,-0.0,0.01639031348683217,0.0,0.0,0.0,-0.0,-9.38,1547.5824,192.15004 -1.2031270536866208,0.014309015175375096,1.2031270536866208,0.0,0.48800034722222224,-0.0,0.015818326533108024,0.0,0.0,0.0,-0.0,-9.96,1546.3522,192.15372 -1.1790855085312997,0.013102597788700081,1.1790855085312997,0.0,0.4919994212962963,-0.0,0.01449595672802248,0.0,0.0,0.0,-0.0,-11.215,1545.1467,192.15804 -1.1559330623695634,0.011700237111779433,1.1559330623695634,0.0,0.4919994212962963,-0.0,0.012954395248537967,0.0,0.0,0.0,-0.0,-12.675,1543.9624,192.18202 -1.1336383577168938,0.025689246431287695,1.1336383577168938,0.0230711637868208,0.4959997685185185,-5.430159028957621e-10,0.02846434063848817,0.06,0.023071164329836705,0.03692883567016329,-0.0,-2.14,1542.7993,192.21413 -1.112191875904376,0.013901928422491862,1.112191875904376,0.0,0.4959997685185185,-0.0,0.015415088180051592,0.0,0.0,0.0,-0.0,-10.515,1541.6587,192.23938 -1.0915548938508552,0.01637842491300023,1.0915548938508552,0.0,0.4999997685185186,-0.0,0.018174325851583486,0.0,0.0,0.0,-0.0,-8.435,1540.5402,192.24504 -1.0715789743122166,0.024682533824504267,1.0715789743122166,-3.607508531619004e-13,0.503999537037037,-3.607508531619004e-13,0.02740860824927353,0.0,0.0,0.0,-0.0,-2.8999999999999995,1539.4371,192.24504 -1.0522847592787505,0.022753956823629826,1.0522847592787505,0.0,0.503999537037037,-0.0,0.025284850829323906,0.0,0.0,0.0,-0.0,-4.03,1538.352,192.22519 -1.0337266594972743,0.018387475327983856,1.0337266594972743,0.0,0.5079996527777778,-0.0,0.02044681479649539,0.0,0.0,0.0,-0.0,-7.06,1537.2894,192.10126 -1.0158280191273763,0.018572249064418216,1.0158280191273763,0.0,0.5079996527777778,-0.0,0.020666305235972866,0.0,0.0,0.0,-0.0,-6.915,1536.2463,192.11908 -0.9945447805396803,0.02221014109155413,0.9945447805396803,1.969082286112922e-11,0.511999537037037,-0.0,0.024734736300216817,0.97,1.969082286112922e-11,0.9699999999803092,-0.0,-4.555,1534.9818,192.87296 -1.0207693569822414,0.03521918028304841,1.0207693569822414,7.151619597199364,0.5159998842592592,4.611619597199364,0.03918281802063857,2.54,2.54,0.0,-0.0,1.9,1536.5361,192.08835 -1.1593712762344865,0.04014705463754576,1.1593712762344865,10.059653348509753,0.5159998842592592,9.599653348509753,0.044445344962127056,0.46,0.46,0.0,-0.0,3.7649999999999997,1544.1398,184.82526 -1.278031949120674,0.03566838462942156,1.278031949120674,4.464519309006552,0.520000462962963,4.464519309006552,0.03933891722592536,0.0,0.0,0.0,-0.0,1.8450000000000002,1549.9591,177.97757 -1.25931700499594,0.02190935110658488,1.25931700499594,3.039235529911366e-15,0.520000462962963,-0.0,0.024177722850907836,0.03,3.039235529911366e-15,0.02999999999999696,-0.0,-5.085,1549.0781,177.61957 -1.2328440761049917,0.0234714656886763,1.2328440761049917,1.992381497561979e-9,0.5240002314814816,-0.0,0.025922802557946843,3.62,1.992381497561979e-9,3.6199999980076187,-0.0,-4.2250000000000005,1547.8093,179.49419 -1.207700072911775,0.024163371514091776,1.207700072911775,3.506378022044565e-8,0.5279998842592593,-0.0,0.026708204794314475,2.87,3.506378022044565e-8,2.86999996493622,-0.0,-3.915,1546.5787,182.70001 -1.1964197967994807,0.029490358603170033,1.1964197967994807,1.5899160358160953,0.5279998842592593,-1.0293319120655236e-5,0.03260803446283667,1.59,1.589926329135216,7.367086478416995e-5,-0.0,-1.0950000000000002,1546.0183,184.0901 -1.216751575675934,0.033721795372600984,1.216751575675934,4.2193789327572775,0.5319998842592593,1.44937893275896,0.037262557024931295,2.77,2.7699999999983174,1.6825063564596121e-12,-0.0,0.72,1547.0247,184.05998 -1.2474067172015606,0.027812266447111916,1.2474067172015606,1.890394409224461,0.5319998842592593,-1.1667551045344582e-9,0.0307030411109046,3.25,1.890394410391216,1.3596055896087837,-0.0,-2.06,1548.5106,184.27942 -1.3399313867273281,0.03732511179473578,1.3399313867273281,11.026056545772757,0.5359994212962963,4.986056545772758,0.04109125040837654,6.04,6.04,0.0,-0.0,2.04,1552.7837,183.31865 -1.5231300874607254,0.037436617488585316,1.5231300874607254,7.291737849662397,0.5395353009259259,4.651737849662397,0.04101187530304701,2.64,2.64,0.0,-0.0,1.9150000000000003,1560.4368,178.52054 -1.5645457362178299,0.03328601373127923,1.5645457362178299,-0.0009848544163120088,0.54,-0.0009848544163120088,0.03642748035636301,0.0,0.0,0.0,-0.0,0.17499999999999982,1562.039,176.50354 -1.5258504594136992,0.024086513794178022,1.5258504594136992,0.0,0.5439997685185185,-0.0,0.02638501308868666,0.0,0.0,0.0,-0.0,-4.5,1560.5433,176.48756 -1.492684912688848,0.021280738246493666,1.492684912688848,0.0,0.5439997685185185,-0.0,0.023331112199096293,0.01,0.0,0.01,-0.0,-6.194999999999999,1559.231,176.76851 -1.4625134378293496,0.028875346340118818,1.4625134378293496,0.61533432158203,0.5479999999999999,-1.481390989202713e-9,0.03168223063018963,0.96,0.6153343230634211,0.3446656769365788,-0.0,-2.035,1558.0115,177.17117 -1.4294237779711207,0.02249145387574511,1.4294237779711207,0.0,0.5498481481481481,-0.0,0.024699446000201748,0.0,0.0,0.0,-0.0,-5.56,1556.6448,177.43799 -1.3955215867239503,0.01980709209753939,1.3955215867239503,0.0,0.5520004629629629,-0.0,0.021771608578503184,0.0,0.0,0.0,-0.0,-7.335,1555.2113,177.45601 -1.3632062340191624,0.01983687734110781,1.3632062340191624,0.0,0.5559922453703704,-0.0,0.021823982279806396,0.41,0.0,0.41,-0.0,-7.4,1553.8121,177.68523 -1.4032761872941917,0.036863776871780315,1.4032761872941917,12.393476456866725,0.5560002314814815,2.993476456866745,0.040511397219737275,9.4,9.39999999999998,1.8263168755083825e-14,-0.0,1.295,1555.5422,179.5188 -1.9336654396627155,0.059178830169718435,1.9336654396627155,28.85731358154975,0.56,21.24731358154975,0.06424373660259795,7.61,7.61,0.0,-0.0,8.12,1574.689,167.22229 -2.261188906257788,0.0263639756675327,2.261188906257788,5.186918746347136e-8,0.5600517361111111,-0.0,0.028451536303583106,2.33,5.186918746347136e-8,2.329999948130813,-0.0,-3.8550000000000004,1584.0336,160.61522 -2.1832196609651056,0.0264862260768697,2.1832196609651056,0.0,0.5639996527777777,-0.0,0.028621331081427573,0.0,0.0,0.0,-0.0,-3.87,1581.938,161.80103 -2.1595852300569276,0.039054528997859814,2.1595852300569276,3.8894896782013864,0.5663305555555556,3.8894896782013864,0.04222013719610891,0.0,0.0,0.0,-0.0,1.63,1581.288,160.46973 -2.2359287569100235,0.04084285650103758,2.2359287569100235,5.48084811568702,0.5679997685185185,5.48084811568702,0.04409556459364168,0.0,0.0,0.0,-0.0,2.225,1583.3627,156.13692 -2.374580954764476,0.04209418593534575,2.374580954764476,6.336703753624447,0.5715351851851852,6.336703753624447,0.045343654102726144,0.0,0.0,0.0,-0.0,2.5450000000000004,1586.9557,150.20007 -2.52636102746215,0.04191298887347979,2.52636102746215,6.042503379737849,0.5719994212962963,6.042503379737849,0.04504344480257417,0.0,0.0,0.0,-0.0,2.435,1590.6559,144.00713 -2.6567571435798487,0.04144748273383887,2.6567571435798487,5.253511455029666,0.5760005787037037,5.253511455029666,0.04445916612401356,0.0,0.0,0.0,-0.0,2.1399999999999997,1593.6614,138.367 -2.7808875114860068,0.041801464678638094,2.7808875114860068,5.520966349325029,0.5760005787037037,5.520966349325029,0.04476227276305545,0.0,0.0,0.0,-0.0,2.24,1596.3884,132.88446 -3.079835178106788,0.05016423748520934,3.079835178106788,12.354438661949754,0.5800003472222222,12.354438661949754,0.05351297752465054,0.0,0.0,0.0,-0.0,4.795,1602.4862,123.840416 -3.9282601671029553,0.06635773594887592,3.9282601671029553,23.386952659949753,0.5807946759259259,23.386952659949753,0.07015135846983045,0.0,0.0,0.0,-0.0,8.92,1617.0173,105.81542 -5.149907982836826,0.05955847825827312,5.149907982836826,18.278564360269755,0.5840005787037037,18.278564360269755,0.06233995534277624,0.0,0.0,0.0,-0.0,7.01,1633.1885,85.03348 -6.360310090727186,0.06051117490029799,6.360310090727186,18.549273756589756,0.5853530092592593,18.519273756589754,0.06285198117452903,0.03,0.03,0.0,-0.0,7.1,1645.7953,66.640175 -7.7328002516893655,0.061917342469474494,7.7328002516893655,18.987319804989756,0.5880002314814815,18.987319804989756,0.06385976902014172,0.0,0.0,0.0,-0.0,7.275,1657.4642,47.893032 -8.97709014906544,0.057363553344507545,8.97709014906544,15.803660814109755,0.5903311342592593,15.483660814109754,0.05884676167800987,0.32,0.32,0.0,-0.0,5.965,1666.3748,30.692806 -10.263660032705763,0.06342670190501018,10.263660032705763,15.683436546325684,0.5920008101851852,14.023436546325684,0.06475585510019302,1.66,1.66,0.0,-0.0,7.385,1674.3733,14.023437 -10.142677589290281,0.05091537733445794,10.142677589290281,5.155594348907471,0.5943310185185184,5.155594348907471,0.052004340317605285,0.0,0.0,0.0,-0.0,4.0,1673.6652,5.1555943 -9.106739440291067,0.052186871231765006,9.106739440291067,1.8941701538122109,0.5959997685185184,1.8941701538122109,0.05350873252290952,0.0,0.0,0.0,-0.0,4.385,1667.2311,1.8941702 -8.043413706972201,0.04508924466005074,8.043413706972201,0.6947848522413697,0.5987809027777777,0.6947848522413697,0.046437857216788885,0.0,0.0,0.0,-0.0,2.2100000000000004,1659.8162,0.6954479 -7.131640970299371,0.04883508951510135,7.131640970299371,0.24227329079537963,0.5999998842592592,0.24227329079537963,0.0505144079114276,0.0,0.0,0.0,-0.0,3.4250000000000003,1652.6311,0.260227 -6.380662728557135,0.05222981618240788,6.380662728557135,0.08396381962793302,0.6027810185185185,0.08396381962793302,0.05424397900638021,0.0,0.0,0.0,-0.0,4.42,1645.9861,0.11149752 -5.944463439096059,0.06263139941222892,5.944463439096059,3.7354142542471505,0.6039996527777778,0.03541425424715046,0.0652142323298418,3.7,3.7,0.0,-0.0,7.185,1641.7572,0.055703305 -5.7516915048081225,0.0498460273367587,5.7516915048081225,4.147458792157913,0.6063304398148148,0.01745879215791289,0.05196392276892305,4.13,4.13,0.0,-0.0,3.6900000000000004,1639.7885,0.030347692 -5.448950286966235,0.047285748987595355,5.448950286966235,0.7293648757542863,0.6079995370370371,0.009364875754286402,0.049392126008929484,0.72,0.72,0.0,-0.0,2.895,1636.5593,0.01724626 -5.208535611176667,0.08074461677208297,5.208535611176667,4.245235798866271,0.6098476851851852,0.005235798866270718,0.08448055170914719,4.24,4.24,0.0,-0.0,11.075000000000001,1633.8645,0.009974551 -4.9457737162391355,0.07341944117925062,4.9457737162391355,0.5729916150062955,0.6120002314814815,0.0029916150062954715,0.07696207071889263,0.57,0.57,0.0,-0.0,9.55,1630.7731,0.00581425 -4.8564847997163145,0.06068867999506939,4.8564847997163145,7.051744180493446,0.6133524305555556,0.001744180493446497,0.06365949786206096,7.05,7.05,0.0,-0.0,6.58,1629.685,0.0034295574 -5.321760096985324,0.05819653799119927,5.321760096985324,14.63103258095346,0.6159914351851852,0.0010325809534600847,0.060841381945265775,14.63,14.63,0.0,-0.0,5.825,1635.1488,0.0020442675 -5.747930593963167,0.06255005893171794,5.747930593963167,13.260537921876034,0.6162851851851852,0.0005379218760338095,0.06520928619015953,13.26,13.26,0.0,-0.0,6.875,1639.7494,0.001070118 -5.754172701533719,0.062657011895091,5.754172701533719,0.00022452232852156212,0.6195356481481481,0.00022452232852156212,0.06531820407714856,0.0,0.0,0.0,-0.0,6.819999999999999,1639.8142,0.00044804096 -5.39367681932501,0.07526069592933121,5.39367681932501,1.4901169197158926,0.6199998842592592,0.00011691971589256907,0.07864249585456179,1.49,1.49,0.0,-0.0,9.685,1635.9504,0.00023356666 -5.203608632970524,0.09735631298380248,5.203608632970524,4.550062215449907,0.6227818287037037,6.221544990709049e-5,0.10186437041626457,4.55,4.55,0.0,-0.0,13.74,1633.808,0.00012435358 -5.222778717858861,0.08585707774045452,5.222778717858861,6.570032785107126,0.6240006944444445,3.278510712614846e-5,0.08982059320589356,6.57,6.57,0.0,-0.0,11.684999999999999,1634.0276,6.554873e-5 -5.227488767382569,0.07546188107243113,5.227488767382569,7.090017546621195,0.6253526620370371,1.754662119488084e-5,0.0789429107767238,7.09,7.09,0.0,-0.0,9.61,1634.0814,3.5087087e-5 -5.081470061204002,0.08389963067253778,5.081470061204002,1.88000663020344,0.6278895833333333,6.6302034400038754e-6,0.08786086010168394,1.88,1.88,0.0,-0.0,11.235,1632.3895,1.3259528e-5 -4.830101664364133,0.10174953677572303,4.830101664364133,1.4100021072663207,0.6280518518518519,2.1072663208002906e-6,0.10675166570835838,1.41,1.41,0.0,-0.0,14.365,1629.3597,4.214444e-6 -4.530044017517861,0.08400388855041006,4.530044017517861,1.105215738114352e-6,0.6303303240740741,1.105215738114352e-6,0.08834128753858835,0.0,0.0,0.0,-0.0,11.26,1625.5295,2.210407e-6 -4.240791931567525,0.07643165549728663,4.240791931567525,0.6600003606437748,0.6319916666666667,3.6064377473643973e-7,0.0805733921569752,0.66,0.66,0.0,-0.0,9.765,1621.5891,7.2128495e-7 -4.006776379649574,0.08470621022141421,4.006776379649574,0.9800000302330909,0.6322856481481481,3.023309095621488e-8,0.08948339760895223,0.98,0.98,0.0,-0.0,11.415,1618.1992,6.0466164e-8 -3.872991993813155,0.09549942192495134,3.872991993813155,4.210000015067074,0.6347809027777778,1.506707341645713e-8,0.10101191293102738,4.21,4.21,0.0,-0.0,13.295,1616.1711,3.0134142e-8 -3.8541727200399207,0.07623148559124651,3.8541727200399207,3.710000005763262,0.6360001157407408,5.763261755804288e-9,0.08064629344440981,3.71,3.71,0.0,-0.0,9.680000000000001,1615.8802,1.1526523e-8 -3.9371347700172175,0.06605592984407127,3.9371347700172175,7.120000001154236,0.6362856481481481,1.1542361644244948e-9,0.06982647884839703,7.12,7.12,0.0,-0.0,7.435,1617.1521,2.3084723e-9 -3.985294437991364,0.07724801768626127,3.985294437991364,2.440000000567149,0.6387810185185185,5.671488866290502e-10,0.08162077766846908,2.44,2.44,0.0,-0.0,9.8,1617.8782,1.1342978e-9 -3.8243675945510316,0.07202383107315878,3.8243675945510316,1.467779788755775e-10,0.6399917824074074,1.467779788755775e-10,0.0762168281486394,0.0,0.0,0.0,-0.0,8.700000000000001,1615.4166,2.9355596e-10 -3.5986927298597142,0.10244925441543562,3.5986927298597142,0.48999999988065496,0.6400512731481481,-1.1934503371303455e-10,0.10865784351417476,0.49,0.49,0.0,-0.0,14.344999999999999,1611.7843,-2.3869007e-10 -3.4435931390889345,0.11511150291595716,3.4435931390889345,1.7699999998592895,0.6418483796296296,-1.4071049861026637e-10,0.12228705874631815,1.77,1.77,0.0,-0.0,16.240000000000002,1609.1533,-2.81421e-10 -3.4719419944433247,0.11565856671533807,3.4719419944433247,5.519999999920435,0.6435354166666667,-7.956515995275347e-11,0.12283084987659447,5.52,5.52,0.0,-0.0,16.27,1609.643,-1.5913032e-10 -3.488324431444588,0.11656867531517692,3.488324431444588,2.0799999999561236,0.6439998842592592,-4.387664188383289e-11,0.12377577890431708,2.08,2.08,0.0,-0.0,16.384999999999998,1609.9241,-8.7753284e-11 -3.340588981868735,0.12250204905787145,3.340588981868735,-2.5148294898528785e-11,0.6442856481481481,-2.5148294898528785e-11,0.1302851377947721,0.0,0.0,0.0,-0.0,17.23,1607.3397,-5.029659e-11 -3.158145776506575,0.08347235017762038,3.158145776506575,-1.3249182131601499e-11,0.6458482638888889,-1.3249182131601499e-11,0.08896134602566684,0.0,0.0,0.0,-0.0,10.985,1603.9857,-2.6498364e-11 -3.097487253024423,0.07289182077476512,3.097487253024423,2.0699999999924112,0.6471538194444444,-7.588507079083002e-12,0.07774119472497261,2.07,2.07,0.0,-0.0,8.835,1602.8275,-1.5177014e-11 -3.2546728012453,0.08033893323273082,3.2546728012453,8.229999999996245,0.6479927083333333,-3.755059631153072e-12,0.08552601143169558,8.23,8.23,0.0,-0.0,10.31,1605.7837,-7.510119e-12 -3.3913222451675176,0.08726505901555578,3.3913222451675176,3.9999999999982245,0.6480521990740741,-1.7756742256809234e-12,0.09275744204069743,4.0,4.0,0.0,-0.0,11.594999999999999,1608.2399,-3.5513485e-12 -3.3045740562418096,0.09842492654989751,3.3045740562418096,-1.0337622684851436e-12,0.6487947916666666,-1.0337622684851436e-12,0.10472046587210548,0.0,0.0,0.0,-0.0,13.524999999999999,1606.6924,-2.0675245e-12 -3.15326927955269,0.11972021147081036,3.15326927955269,1.2499999999994154,0.6498487268518519,-5.84748503954702e-13,0.1276001447820337,1.25,1.25,0.0,-0.0,16.74,1603.8934,-1.169497e-12 -3.1116957225545496,0.1204469687584863,3.1116957225545496,5.3699999999996635,0.6507814814814814,-3.366213828937446e-13,0.12843820775610293,5.37,5.37,0.0,-0.0,16.825,1603.1008,-6.7324277e-13 -3.0846611610941497,0.08644260391677294,3.0846611610941497,0.44999999999982204,0.6515357638888889,-1.7796286905031015e-13,0.09220774500777766,0.45,0.45,0.0,-0.0,11.415000000000001,1602.5797,-3.5592574e-13 -3.020748685819887,0.07491336108448572,3.020748685819887,0.32999999999989715,0.6519921296296297,-1.028668049719659e-13,0.07997197492207088,0.33,0.33,0.0,-0.0,9.16,1601.3293,-2.0573361e-13 -3.200830585110403,0.07746442790533407,3.200830585110403,9.999999999999945,0.6520001157407407,-5.5425746593221355e-14,0.08251710682443907,10.0,10.0,0.0,-0.0,9.649999999999999,1604.7875,-1.1085149e-13 -3.564249234351332,0.07760713822929081,3.564249234351332,11.599999999999968,0.6520517361111111,-3.127055228255356e-14,0.08233959602105204,11.6,11.6,0.0,-0.0,9.615,1611.21,-6.2541105e-14 -3.625004788818387,0.093439951473658,3.625004788818387,1.2599999999999834,0.6522856481481482,-1.6582953543325975e-14,0.09907581946719632,1.26,1.26,0.0,-0.0,12.545,1612.2194,-3.3165907e-14 -3.441341445518167,0.1021594700086915,3.441341445518167,0.039999999999992215,0.6527943287037037,-7.785809113581255e-15,0.10853028642622918,0.04,0.04,0.0,-0.0,14.004999999999999,1609.1143,-1.5571618e-14 -3.303858137373635,0.11569340993127643,3.303858137373635,0.06999999999999552,0.653352662037037,-4.481670805680089e-15,0.12309448209308657,0.07,0.07,0.0,-0.0,16.055,1606.6794,-8.963342e-15 -3.3828480822306153,0.11042394835944062,3.3828480822306153,8.569999999999999,0.653848611111111,-2.5123486377088956e-15,0.117384836382416,8.57,8.57,0.0,-0.0,15.260000000000002,1608.0905,-5.0246973e-15 -3.583329772183922,0.10564030607981902,3.583329772183922,7.369999999999998,0.653848611111111,-1.4007430435556268e-15,0.11206004130556159,7.37,7.37,0.0,-0.0,14.5,1611.5288,-2.801486e-15 -3.595185688037703,0.11050522768149523,3.595185688037703,3.5499999999999994,0.653848611111111,-4.477021759470147e-16,0.11720625588736122,3.55,3.55,0.0,-0.0,15.235,1611.7261,-8.954044e-16 -3.4647603837605154,0.1073457791677151,3.4647603837605154,2.0116132524783215e-16,0.6543310185185185,2.0116132524783215e-16,0.11401132380437148,0.0,0.0,0.0,-0.0,14.77,1609.5193,4.0232265e-16 -3.279106225397968,0.11534461191769377,3.279106225397968,3.335711302191808e-16,0.6543310185185185,3.335711302191808e-16,0.12275768402159488,0.0,0.0,0.0,-0.0,15.985,1606.2303,6.6714226e-16 -3.1917753364806467,0.11921257368771153,3.1917753364806467,3.13,0.653848611111111,1.9277702255899466e-16,0.12700169814722542,3.13,3.13,0.0,-0.0,16.560000000000002,1604.6183,3.8555405e-16 -3.3281029303551666,0.12040896913198018,3.3281029303551666,8.95,0.653848611111111,1.0787593240549067e-16,0.12807689501294559,8.95,8.95,0.0,-0.0,16.7,1607.1161,2.1575186e-16 -3.5397815693247505,0.09295859554247023,3.5397815693247505,6.53,0.653352662037037,5.922478851748203e-17,0.09865236825322854,6.53,6.53,0.0,-0.0,12.45,1610.7986,1.1844958e-16 -3.5630619005682385,0.09936314394336485,3.5630619005682385,2.35,0.653352662037037,2.2993281762201876e-17,0.10542357773266298,2.35,2.35,0.0,-0.0,13.52,1611.1901,4.5986564e-17 -3.432531802204192,0.0962688396528028,3.432531802204192,5.777031879612183e-18,0.6527943287037037,5.777031879612183e-18,0.1022820377667198,0.0,0.0,0.0,-0.0,13.045,1608.9612,1.1554064e-17 -3.281352374055456,0.11363657812532217,3.281352374055456,3.129604553574725e-18,0.6522856481481482,3.129604553574725e-18,0.12093679779443445,0.0,0.0,0.0,-0.0,15.79,1606.2712,6.259209e-18 -3.212668406697917,0.11576227315201224,3.212668406697917,2.95,0.6520517361111111,1.2634594490561054e-18,0.12329602159513614,2.95,2.95,0.0,-0.0,16.115000000000002,1605.0079,2.526919e-18 -3.1707977711833104,0.12159302000574032,3.1707977711833104,2.64,0.6519921296296297,3.6308361450160923e-19,0.12956947674147426,2.64,2.64,0.0,-0.0,16.94,1604.2245,7.2616723e-19 -3.0703690218050097,0.12727177573837686,3.0703690218050097,1.9789962698146752e-19,0.6518894675925926,1.9789962698146752e-19,0.13578344715540053,0.0,0.0,0.0,-0.0,17.725,1602.3024,3.9579925e-19 -2.925335530871119,0.1454294172384765,2.925335530871119,8.007761672950254e-20,0.6511538194444445,8.007761672950254e-20,0.15543576408466903,0.0,0.0,0.0,-0.0,20.03,1599.4126,1.6015523e-19 -2.8606048081646103,0.13522606107400453,2.8606048081646103,3.77,0.6503311342592593,2.348370121123307e-20,0.14465121627411515,3.77,3.77,0.0,-0.0,18.83,1598.0763,4.6967402e-20 -2.7889708673541227,0.13501442697658558,2.7889708673541227,2.91,0.6493528935185184,1.3254314004959234e-20,0.14456183535520087,2.91,2.91,0.0,-0.0,18.845,1596.5618,2.6508628e-20 -2.667089740379532,0.14509433249264447,2.667089740379532,6.675902901380209e-21,0.6482863425925927,6.675902901380209e-21,0.15561463383295632,0.0,0.0,0.0,-0.0,20.125,1593.8932,1.3351806e-20 -2.8244770427800474,0.1585984681330181,2.8244770427800474,10.85,0.6480008101851852,3.7260318380708454e-21,0.1697332802790476,10.85,10.85,0.0,-0.0,21.625,1597.3173,7.452064e-21 -3.532777350337171,0.14619010213284767,3.532777350337171,19.83,0.647890162037037,2.145544546352381e-21,0.15515573184095804,19.83,19.83,0.0,-0.0,20.085,1610.6803,4.291089e-21 -4.260070690026831,0.11836772933575342,4.260070690026831,13.7,0.64678125,1.2697445555661844e-21,0.12476108946585855,13.7,13.7,0.0,-0.0,16.445,1621.86,2.5394891e-21 -4.357840549877685,0.12462394180488955,4.357840549877685,7.382761147523645e-22,0.645352199074074,7.382761147523645e-22,0.13124555805351312,0.0,0.0,0.0,-0.0,17.325,1623.2151,1.4765522e-21 -4.913760332063757,0.1380485331707308,4.913760332063757,21.92,0.6440515046296297,4.411326337867237e-22,0.14474406283293603,21.92,21.92,0.0,-0.0,19.005,1630.3853,8.822653e-22 -6.115055718684268,0.12959348038820165,6.115055718684268,15.19,0.6438894675925926,2.6363645624419726e-22,0.13479900238990478,15.19,15.19,0.0,-0.0,17.81,1643.4469,5.272729e-22 -6.2164703325379636,0.09986455895206917,6.2164703325379636,1.58088306007917e-22,0.6427809027777778,1.58088306007917e-22,0.10381387680894749,0.0,0.0,0.0,-0.0,13.535,1644.4292,3.161766e-22 -5.827797903593479,0.11182491749008158,5.827797903593479,7.875883779175817e-23,0.6407940972222222,7.875883779175817e-23,0.11652043541355445,0.0,0.0,0.0,-0.0,15.47,1640.5735,1.5751768e-22 -5.911541424914985,0.1307773389808438,5.911541424914985,3.46,0.6399997685185186,6.66837218274348e-24,0.13619793135842728,3.46,3.46,0.0,-0.0,18.085,1641.4255,1.3336744e-23 -6.390961431832854,0.15273763767537885,6.390961431832854,15.83,0.6395354166666667,-3.9906321182581544e-23,0.15861844919306442,15.83,15.83,0.0,-0.0,20.685,1646.0824,-7.981264e-23 -7.246685205993263,0.1583696947864982,7.246685205993263,15.92,0.6378482638888888,-4.2729717471239963e-23,0.16372096131029482,15.92,15.92,0.0,-0.0,21.275,1653.5868,-8.5459435e-23 -7.198527499488325,0.14057353228625932,7.198527499488325,-2.5019706529772295e-23,0.6360001157407408,-2.5019706529772295e-23,0.145358474757772,0.0,0.0,0.0,-0.0,19.29,1653.1886,-5.0039413e-23 -6.4050069178207245,0.1310211118106937,6.4050069178207245,-1.464500549020178e-23,0.6355359953703703,-1.464500549020178e-23,0.13605494223529985,0.0,0.0,0.0,-0.0,18.185,1646.2135,-2.929001e-23 -5.809766876252233,0.134808922924381,5.809766876252233,0.9,0.6338483796296296,-8.655920644083207e-24,0.14048538402069585,0.9,0.9,0.0,-0.0,18.77,1640.3884,-1.7311841e-23 -5.412606628451182,0.14384554919288337,5.412606628451182,2.84,0.6319996527777777,-5.030141190996931e-24,0.15028995234418369,2.84,2.84,0.0,-0.0,19.965,1636.1597,-1.0060282e-23 -5.086281393879576,0.13275962285972948,5.086281393879576,-2.270682078706675e-24,0.6315355324074073,-2.270682078706675e-24,0.13902291003784542,0.0,0.0,0.0,-0.0,18.655,1632.446,-4.541364e-24 -4.84208248208481,0.13112695863467694,4.84208248208481,4.62,0.6287943287037038,-6.261224996517971e-25,0.13756082595866098,4.62,4.62,0.0,-0.0,18.55,1629.5077,-1.252245e-24 -4.658950464952004,0.11265878334627105,4.658950464952004,1.27,0.628,-2.7491819803284563e-25,0.11835372582675231,1.27,1.27,0.0,-0.0,16.06,1627.2052,-5.498364e-25 -4.3693375891182615,0.0991100104457195,4.3693375891182615,-1.4481242896658554e-25,0.6267813657407407,-1.4481242896658554e-25,0.10436588378698532,0.0,0.0,0.0,-0.0,14.030000000000001,1623.3724,-2.8962486e-25 -4.0681341884743505,0.1294991798622103,4.0681341884743505,-7.655476619111603e-26,0.624052199074074,-7.655476619111603e-26,0.13672587742412637,0.0,0.0,0.0,-0.0,18.575,1619.1068,-1.5310953e-25 -4.525555339954612,0.15293388965681054,4.525555339954612,18.75,0.6238902777777778,-4.4865487152777253e-26,0.16083623078410642,18.75,18.75,0.0,-0.0,21.35,1625.4703,-8.9730974e-26 -5.661526485970173,0.1252657135734108,5.661526485970173,19.81,0.6207944444444444,-2.645849953170171e-26,0.13066328642918412,19.81,19.81,0.0,-0.0,17.9,1638.8448,-5.2917e-26 -5.959196192795113,0.09549637061235419,5.959196192795113,0.04,0.6199998842592592,-1.580076991652416e-26,0.09942555733915973,0.04,0.04,0.0,-0.0,13.42,1641.905,-3.160154e-26 -5.629181824934496,0.1179562452500977,5.629181824934496,6.22,0.6183303240740741,-8.979287831619898e-27,0.12306455430893604,6.22,6.22,0.0,-0.0,16.965,1638.5027,-1.7958576e-26 -5.567913092035561,0.12216452887518853,5.567913092035561,5.3,0.615999537037037,-4.233165899185956e-27,0.12750594474081775,5.3,5.3,0.0,-0.0,17.62,1637.8491,-8.466332e-27 -5.547510217550011,0.09511830019533746,5.547510217550011,4.68,0.6151532407407407,-2.1118033692499924e-27,0.0992904609909425,4.68,4.68,0.0,-0.0,13.525,1637.6299,-4.2236067e-27 -5.87225639060752,0.0993395462150766,5.87225639060752,10.85,0.6120002314814815,-1.2306889752453737e-27,0.10348217666770018,10.85,10.85,0.0,-0.0,14.280000000000001,1641.0273,-2.461378e-27 -5.830014004286771,0.09745506876627975,5.830014004286771,-7.274605252569968e-28,0.6115356481481482,-7.274605252569968e-28,0.10154579270801588,0.0,0.0,0.0,-0.0,13.985,1640.5962,-1.45492105e-27 -5.336770964513168,0.11257571795976595,5.336770964513168,-4.292516993392646e-28,0.6080510416666667,-4.292516993392646e-28,0.11767981323143248,0.0,0.0,0.0,-0.0,16.5,1635.317,-8.585034e-28 -4.886796338754109,0.12707352779031209,4.886796338754109,-2.5340526762009567e-28,0.6078891203703704,-2.5340526762009567e-28,0.13326361574329582,0.0,0.0,0.0,-0.0,18.585,1630.0566,-5.0681054e-28 -4.507387083266412,0.13997734419269808,4.507387083266412,-1.4276674325380885e-28,0.6042853009259259,-1.4276674325380885e-28,0.14723195965101982,0.0,0.0,0.0,-0.0,20.380000000000003,1625.2301,-2.8553349e-28 -4.112109335478576,0.13903067896100954,4.112109335478576,-8.303207000603896e-29,0.6039916666666666,-8.303207000603896e-29,0.14673109231450482,0.0,0.0,0.0,-0.0,20.33,1619.7489,-1.6606414e-28 -3.772341903940586,0.14049879393679615,3.772341903940586,-4.3391851648400654e-29,0.6002854166666667,-4.3391851648400654e-29,0.1487535081527365,0.0,0.0,0.0,-0.0,20.669999999999998,1614.5986,-8.6783703e-29 -3.8732057466316436,0.12662188725585174,3.8732057466316436,11.27,0.5999998842592592,-2.431364829997869e-29,0.13393057998964442,11.27,11.27,0.0,-0.0,18.89,1616.1744,-4.8627297e-29 -3.975872405687507,0.11312101573816606,3.975872405687507,-1.4669004912498901e-29,0.5962851851851851,-1.4669004912498901e-29,0.11953487391798055,0.0,0.0,0.0,-0.0,17.085,1617.7368,-2.933801e-29 -3.737573109847519,0.11119465770046419,3.737573109847519,-8.78979229827367e-30,0.5959997685185184,-8.78979229827367e-30,0.11776800235431924,0.0,0.0,0.0,-0.0,16.845,1614.0457,-1.7579585e-29 -3.539036395700983,0.1279926839794304,3.539036395700983,0.87,0.5920523148148148,-5.2315991101990256e-30,0.1358333770028444,0.87,0.87,0.0,-0.0,19.355,1610.786,-1.0463198e-29 -3.360566629661851,0.10801151644404744,3.360566629661851,0.03,0.591992824074074,-3.1122394074743768e-30,0.11484851577170577,0.03,0.03,0.0,-0.0,16.54,1607.6958,-6.224479e-30 -3.1809441473423896,0.07817603574013472,3.1809441473423896,-1.762816467476174e-30,0.5880002314814815,-1.762816467476174e-30,0.0832944480173515,0.0,0.0,0.0,-0.0,11.43,1604.4153,-3.525633e-30 -3.029287761996522,0.11577035649878445,3.029287761996522,-1.0160171011162852e-30,0.5879922453703703,-1.0160171011162852e-30,0.12357487828244276,0.0,0.0,0.0,-0.0,17.875,1601.4979,-2.0320342e-30 -3.080729241578017,0.13999165272191488,3.080729241578017,5.24,0.5840005787037037,-5.222162335590172e-31,0.14933525372911108,5.24,5.24,0.0,-0.0,21.21,1602.5035,-1.0444325e-30 -3.210377402238117,0.1246996114914383,3.210377402238117,5.88,0.5835359953703704,-2.053926938160703e-31,0.13281852272813405,5.88,5.88,0.0,-0.0,19.22,1604.9653,-4.107854e-31 -3.189629623177467,0.09824530472879167,3.189629623177467,-1.0281752862066142e-31,0.5800003472222222,-1.0281752862066142e-31,0.10466708708288325,0.0,0.0,0.0,-0.0,15.345,1604.5781,-2.0563506e-31 -3.0289100743390573,0.08212829007249704,3.0289100743390573,-6.118393435542693e-32,0.5787818287037036,-6.118393435542693e-32,0.08766527930760686,0.0,0.0,0.0,-0.0,12.5,1601.4905,-1.2236787e-31 -2.9080759827170817,0.09497726405357877,2.9080759827170817,0.82,0.5760005787037037,-3.547467095996979e-32,0.10153465850076285,0.82,0.82,0.0,-0.0,14.96,1599.0592,-7.094934e-32 -2.8468619411651077,0.10557005067380595,2.8468619411651077,2.69,0.5738478009259259,-1.950292946428791e-32,0.1129485309275192,2.69,2.69,0.0,-0.0,16.78,1597.7887,-3.900586e-32 -2.7925932063028474,0.10299188634783966,2.7925932063028474,0.77,0.5719994212962963,-1.0825678489699394e-32,0.11026949952491505,0.77,0.77,0.0,-0.0,16.435000000000002,1596.6393,-2.1651357e-32 -2.705857368995934,0.08440618011855418,2.705857368995934,-3.975630995050412e-33,0.5680513888888888,-3.975630995050412e-33,0.09047726697577554,0.0,0.0,0.0,-0.0,13.31,1594.755,-7.951262e-33 -2.648185350493064,0.08293173507577505,2.648185350493064,3.29,0.5679997685185185,-9.652414593490043e-35,0.08896854776700253,3.29,3.29,0.0,-0.0,13.04,1593.4684,-1.930483e-34 -2.6553347284434925,0.09172515174815991,2.6553347284434925,3.21,0.5639996527777777,2.3741583381477554e-34,0.09839211773234127,3.21,3.21,0.0,-0.0,14.79,1593.6294,4.7483167e-34 -2.635166717323836,0.09011214730752157,2.635166717323836,1.61,0.5639916666666667,1.296298206299615e-34,0.09668949895794073,1.61,1.61,0.0,-0.0,14.504999999999999,1593.1741,2.5925964e-34 -2.5700132176401964,0.0928142368470099,2.5700132176401964,0.01,0.56,7.328971374946207e-35,0.09968236309259507,0.01,0.01,0.0,-0.0,15.120000000000001,1591.679,1.4657943e-34 -2.6533381183277163,0.10303182983545721,2.6533381183277163,6.64,0.558330324074074,3.852832541473155e-35,0.11052372775335173,6.64,6.64,0.0,-0.0,16.875,1593.5845,7.705665e-35 -2.78960372455797,0.10787266533565595,2.78960372455797,4.84,0.5560002314814815,1.6955101214506206e-35,0.11549979131440562,4.84,4.84,0.0,-0.0,17.68,1596.5753,3.3910202e-35 -2.7770646434526864,0.0770421425046205,2.7770646434526864,9.438754002438855e-36,0.5520519675925926,9.438754002438855e-36,0.08250330230147407,0.0,0.0,0.0,-0.0,12.285,1596.3063,1.8877508e-35 -2.6535333726148447,0.06309761216254793,2.6535333726148447,5.5407066849112014e-36,0.5520004629629629,5.5407066849112014e-36,0.06768553066126215,0.0,0.0,0.0,-0.0,9.155,1593.5889,1.10814134e-35 -2.53159756313385,0.0716055546535183,2.53159756313385,3.2018363227030056e-36,0.5479999999999999,3.2018363227030056e-36,0.07694774856074105,0.0,0.0,0.0,-0.0,11.29,1590.7795,6.403673e-36 -2.423548456483409,0.07139736986448338,2.423548456483409,1.6874024461962567e-36,0.5479921296296296,1.6874024461962567e-36,0.07684987154923012,0.0,0.0,0.0,-0.0,11.270000000000001,1588.1747,3.374805e-36 -2.3584969889626466,0.08146729746673977,2.3584969889626466,1.55,0.5439997685185185,9.591973635665512e-37,0.08777863046299433,1.55,1.55,0.0,-0.0,13.52,1586.5498,1.9183947e-36 -2.3638880454829327,0.065352746509888,2.3638880454829327,2.65,0.540794212962963,4.543542338965255e-37,0.07040962188584762,2.65,2.65,0.0,-0.0,10.095,1586.6862,9.087085e-37 -2.45289284518127,0.07092118718317153,2.45289284518127,7.28,0.54,1.6370186141764176e-37,0.07630279170293422,7.28,7.28,0.0,-0.0,11.39,1588.8934,3.2740372e-37 -2.578152797750016,0.07671422859856908,2.578152797750016,5.36,0.5359994212962963,8.431636962176011e-38,0.08238120229710205,5.36,5.36,0.0,-0.0,12.735,1591.8678,1.6863274e-37 -2.5677185893437535,0.08428043947611533,2.5677185893437535,0.7,0.5359994212962963,2.639577712581485e-38,0.09052011017821127,0.7,0.7,0.0,-0.0,14.26,1591.6256,5.2791554e-38 -2.4725400222230096,0.09234739363842394,2.4725400222230096,-1.2753944597723145e-38,0.5319998842592593,-1.2753944597723145e-38,0.09932506708404738,0.0,0.0,0.0,-0.0,15.905,1589.3699,-2.550789e-38 -2.363477371107755,0.08402785550138821,2.363477371107755,-2.0216439057817026e-38,0.5298482638888888,-2.0216439057817026e-38,0.09053036849186256,0.0,0.0,0.0,-0.0,14.45,1586.6758,-4.0432878e-38 -2.3372035234453934,0.06562594841779269,2.3372035234453934,-1.1393384682353179e-38,0.5279998842592593,-1.1393384682353179e-38,0.0707341878172396,0.0,0.0,0.0,-0.0,10.545,1586.0082,-2.278677e-38 -2.4589469618920505,0.05566294564110296,2.4589469618920505,10.63,0.5240002314814816,-5.793422572870467e-39,0.059881184026737345,10.63,10.63,0.0,-0.0,8.06,1589.0406,-1.1586845e-38 -2.678803704533614,0.054679682482067,2.678803704533614,7.52,0.5240002314814816,-3.239275861945623e-39,0.05863469421443593,7.52,7.52,0.0,-0.0,7.734999999999999,1594.1549,-6.478552e-39 -2.6819923903402887,0.04777210307410766,2.6819923903402887,-1.3408653661031128e-39,0.520000462962963,-1.3408653661031128e-39,0.0512252028639319,0.0,0.0,0.0,-0.0,5.785,1594.226,-2.681731e-39 -2.5587174442451652,0.05220182071883956,2.5587174442451652,-1.712582905189932e-40,0.5183310185185186,-1.712582905189932e-40,0.05607395137392409,0.0,0.0,0.0,-0.0,7.215000000000001,1591.4159,-3.42517e-40 -2.4419870503842414,0.05784534937328818,2.4419870503842414,2.818221406526856e-41,0.5159998842592592,2.818221406526856e-41,0.06224516502336465,0.0,0.0,0.0,-0.0,8.9,1588.6273,5.6364e-41 -2.3436235133302175,0.06664477598657974,2.3436235133302175,1.581925836376286e-41,0.511999537037037,1.581925836376286e-41,0.07182490083855392,0.0,0.0,0.0,-0.0,11.275,1586.172,3.1639e-41 -2.2526175877955716,0.06726056063554585,2.2526175877955716,8.791746565173902e-42,0.511999537037037,8.791746565173902e-42,0.072596802186801,0.0,0.0,0.0,-0.0,11.445,1583.8068,1.7583e-41 -2.1676740585116674,0.07241359469989969,2.1676740585116674,-4.505174562804287e-43,0.5079996527777778,-4.505174562804287e-43,0.07827210753274202,0.0,0.0,0.0,-0.0,12.775,1581.5112,-9.01e-43 -2.088233067146153,0.07643693256956097,2.088233067146153,-1.2421109587775179e-41,0.5067805555555556,-1.2421109587775179e-41,0.08273759733058285,0.0,0.0,0.0,-0.0,13.71,1579.2815,-2.4842e-41 -2.014056873344094,0.09352106566348538,2.014056873344094,-2.4210233568139865e-41,0.503999537037037,-2.4210233568139865e-41,0.1013686057273266,0.0,0.0,0.0,-0.0,17.14,1577.1216,-4.842e-41 -1.9449032796796648,0.11132861275256972,1.9449032796796648,-3.290949443466833e-41,0.4999997685185186,-3.290949443466833e-41,0.12083027946973152,0.0,0.0,0.0,-0.0,20.24,1575.035,-6.5819e-41 -1.8805595868337694,0.1004159105405882,1.8805595868337694,-3.560909592619009e-41,0.4999997685185186,-3.560909592619009e-41,0.10912540388351337,0.0,0.0,0.0,-0.0,18.509999999999998,1573.0259,-7.1218e-41 -1.820810480561294,0.05912473034668683,1.820810480561294,-2.9399942430766825e-41,0.4959997685185185,-2.9399942430766825e-41,0.0643317244780904,0.0,0.0,0.0,-0.0,10.035,1571.0977,-5.88e-41 -1.7975648398441957,0.07024318032549559,1.7975648398441957,-1.6868130264309985e-41,0.49366840277777774,-1.6868130264309985e-41,0.07646670043459701,0.0,0.0,0.0,-0.0,12.86,1570.3303,-3.3736e-41 -1.8754694236805638,0.08060449129243236,1.8754694236805638,6.91,0.4919994212962963,-7.625866242855654e-42,0.08760467166938779,6.91,6.91,0.0,-0.0,15.125,1572.864,-1.5252e-41 -2.079122819354511,0.07953122883410466,2.079122819354511,10.2,0.48800034722222224,-3.246808541840601e-42,0.08610119058281987,10.2,10.2,0.0,-0.0,14.975000000000001,1579.0204,-6.494e-42 -2.374488735500804,0.06119175984292499,2.374488735500804,1.39,0.48800034722222224,-1.8069743697468516e-42,0.06591556495914495,1.39,1.39,0.0,-0.0,10.675,1586.9534,-3.614e-42 -2.829180457853992,0.06769761565560105,2.829180457853992,19.94,0.4840002314814815,-8.477855709165143e-43,0.07244599366865587,19.94,19.94,0.0,-0.0,12.31,1597.4166,-1.696e-42 -3.6179428639926954,0.07172503701490668,3.6179428639926954,21.55,0.48167002314814816,-4.540207024412407e-43,0.0760566550530583,21.55,21.55,0.0,-0.0,13.17,1612.1029,-9.08e-43 -3.8631642091558485,0.06419804318743128,3.8631642091558485,-2.6484540975739043e-43,0.4800005787037037,-2.6484540975739043e-43,0.06791010766628577,0.0,0.0,0.0,-0.0,11.41,1616.0194,-5.3e-43 -3.6887407621302017,0.07500611112796805,3.6887407621302017,0.32,0.4760001157407408,-1.5694542800437951e-43,0.07947882094631348,0.32,0.32,0.0,-0.0,14.075,1613.2603,-3.14e-43 -3.678575880268803,0.06963851436687561,3.678575880268803,6.31,0.4760001157407408,-8.96831017167883e-44,0.07379868611597423,6.31,6.31,0.0,-0.0,12.875,1613.0955,-1.8e-43 -3.761992784227513,0.06564770760300184,3.761992784227513,6.91,0.4719996527777777,-5.184804318001823e-44,0.06951176525520532,6.91,6.91,0.0,-0.0,12.05,1614.4346,-1.04e-43 -3.6553476561120206,0.04961570554442252,3.6553476561120206,-2.45227231256843e-44,0.4701513888888889,-2.45227231256843e-44,0.05259205786438947,0.0,0.0,0.0,-0.0,7.73,1612.7172,-4.9e-44 -3.468048041916642,0.04970931550541915,3.468048041916642,0.03,0.46799976851851854,-1.0509738482436128e-44,0.05279411519185723,0.03,0.03,0.0,-0.0,7.86,1609.5759,-2.1e-44 -3.4921412159419205,0.05846917596507433,3.4921412159419205,7.6,0.463999537037037,-6.305843089461677e-45,0.062081637394865774,7.6,7.6,0.0,-0.0,10.525,1609.9894,-1.3e-44 -3.710004111718558,0.056482375950335235,3.710004111718558,6.76,0.463999537037037,-3.5032461608120427e-45,0.059837759887547755,6.76,6.76,0.0,-0.0,9.945,1613.6035,-7.0e-45 -3.6776962439494,0.04796060011039139,3.6776962439494,0.04,0.46,-2.802596928649634e-45,0.050826193576635016,0.04,0.04,0.0,-0.0,7.54,1613.0812,-6.0e-45 -3.455756576233397,0.04264363248226663,3.455756576233397,-2.1019476964872256e-45,0.45920532407407405,-2.1019476964872256e-45,0.04529592570507981,0.0,0.0,0.0,-0.0,5.805,1609.3639,-4.0e-45 -3.3072161930942325,0.05465998363250481,3.3072161930942325,1.79,0.45599953703703705,-7.006492321624085e-46,0.05815446467336724,1.79,1.79,0.0,-0.0,9.77,1606.7401,-1.0e-45 -3.3854420807399705,0.047704438041593605,3.3854420807399705,7.94,0.45200810185185186,-7.006492321624085e-46,0.050710179603886435,7.94,7.94,0.0,-0.0,7.775,1608.1362,-1.0e-45 -3.5470679279718684,0.03580038331093721,3.5470679279718684,5.42,0.452,-7.006492321624015e-46,0.03799028313650948,5.42,5.42,0.0,-0.0,3.4,1610.9214,-1.0e-45 -3.500602935658212,0.03333049365627566,3.500602935658212,-1.2282861783259145e-19,0.4480001157407407,-1.2282861783259145e-19,0.03538660922681994,0.0,0.0,0.0,-0.0,2.48,1610.1339,-2.4565724e-19 -3.3202685637248024,0.029629970747152564,3.3202685637248024,0.6299999999998,0.4480001157407407,-2.2510606095790925e-16,0.03151963726538012,0.63,0.6299999999998003,1.9976020837475516e-13,-0.0,0.7850000000000001,1606.9753,-4.512294e-16 -3.2785767606924523,0.04023829291471187,3.2785767606924523,4.54,0.4440001157407408,-4.084685362724818e-16,0.04282462112088565,4.54,4.54,0.0,-0.0,5.465,1606.2207,-8.1693707e-16 -3.4784060834629997,0.04550880758639324,3.4784060834629997,10.97,0.44166932870370373,-2.446725077757781e-16,0.04832758983013743,10.97,10.97,0.0,-0.0,7.390000000000001,1609.754,-4.89345e-16 -3.7149669709504862,0.04429355173536622,3.7149669709504862,4.95,0.4400003472222222,-1.32198457016118e-16,0.046922526607108675,4.95,4.95,0.0,-0.0,6.995,1613.6833,-2.6439691e-16 -3.676365911867703,0.03347564214956974,3.676365911867703,0.12999999999999992,0.43611064814814815,-7.731145657032528e-17,0.03547625038776091,0.13,0.13,0.0,-0.0,2.915,1613.0596,-1.5462291e-16 -3.518673806419388,0.03306472855419787,3.518673806419388,1.44,0.43600011574074077,-4.4524445690833636e-17,0.03509774662747596,1.44,1.44,0.0,-0.0,2.76,1610.4414,-8.904889e-17 -3.3625730156085525,0.04802883464775114,3.3625730156085525,-2.5838568002425015e-17,0.43200000000000005,-2.5838568002425015e-17,0.051067869988854465,0.0,0.0,0.0,-0.0,8.585,1607.7314,-5.1677136e-17 -3.1877068819304664,0.03848936221451635,3.1877068819304664,-1.310937176033842e-17,0.43194837962962956,-1.310937176033842e-17,0.04100613104091943,0.0,0.0,0.0,-0.0,5.2250000000000005,1604.5421,-2.6218744e-17 -3.0210450779311113,0.03272455681155565,3.0210450779311113,-6.972596550779721e-18,0.428,-6.972596550779721e-18,0.03493419361861707,0.0,0.0,0.0,-0.0,2.965,1601.3352,-1.3945193e-17 -2.851573488524086,0.0394475190877572,2.851573488524086,-3.488755415402133e-18,0.4261517361111111,-3.488755415402133e-18,0.04220196858641944,0.0,0.0,0.0,-0.0,5.865,1597.8875,-6.977511e-18 -2.7109339441453972,0.04261348130507253,2.7109339441453972,-1.0528727067850585e-18,0.42400011574074076,-1.0528727067850585e-18,0.04567533693501242,0.0,0.0,0.0,-0.0,7.15,1594.867,-2.1057454e-18 -2.6448097928164973,0.04657703622943788,2.6448097928164973,2.37,0.42121863425925926,-1.9715212712635807e-19,0.049969886279801236,2.37,2.37,0.0,-0.0,8.64,1593.3922,-3.9430425e-19 -2.607620286956971,0.04878231304728409,2.607620286956971,2.89,0.41999976851851856,-1.0818628669391133e-19,0.052363596237617605,2.89,2.89,0.0,-0.0,9.415,1592.5465,-2.1637257e-19 -2.5480233343282475,0.03678805945470439,2.5480233343282475,-5.0532586405486636e-20,0.4164640046296296,-5.0532586405486636e-20,0.03952306829517346,0.0,0.0,0.0,-0.0,5.22,1591.1658,-1.0106517e-19 -2.4640336913128777,0.03651896742640685,2.4640336913128777,0.8800501304637083,0.4159996527777778,5.01304637082697e-5,0.0392833896742473,0.88,0.88,0.0,-0.0,5.1450000000000005,1589.1641,0.00010021072 -2.3760375232236775,0.031662159778762244,2.3760375232236775,0.8603800835480666,0.4121109953703704,0.00038008354806662835,0.03410553880198059,0.86,0.86,0.0,-0.0,3.17,1586.9923,0.0007572996 -2.289512577112045,0.022553442381333184,2.289512577112045,-1.2962465526779984e-8,0.41200046296296294,-1.2962465526779984e-8,0.024327858778468114,0.0,0.0,0.0,-0.0,-1.7349999999999999,1584.777,0.0016186152 -2.2059941957339726,0.02429828347720286,2.2059941957339726,-0.0009739637892927916,0.4080084490740741,-0.0009739637892927916,0.026246731670704748,0.0,0.0,0.0,-0.0,-0.5099999999999998,1582.5577,0.0021982812 -2.1267958190136285,0.025759798883955243,2.1267958190136285,0.0008703754183667383,0.40794895833333333,0.0008703754183667383,0.02786388822556878,0.0,0.0,0.0,-0.0,0.355,1580.3743,0.0020104216 -2.0527304423058728,0.027901778043899,2.0527304423058728,0.0005829897025102581,0.40399999999999997,0.0005829897025102581,0.030221306370122113,0.0,0.0,0.0,-0.0,1.6799999999999997,1578.2574,0.0011592604 -1.9835054285711962,0.03343122808654913,1.9835054285711962,0.00026340637018518366,0.4037145833333334,0.00026340637018518366,0.03625749536766998,0.0,0.0,0.0,-0.0,4.39,1576.2087,0.00052543235 -1.9188257387149692,0.02925389556554228,1.9188257387149692,0.00011261170603382066,0.40000023148148145,0.00011261170603382066,0.03176691431798268,0.0,0.0,0.0,-0.0,2.56,1574.2289,0.00022497035 -1.9166227517416656,0.026120053520575528,1.9166227517416656,5.8514890179771166e-5,0.39971435185185183,5.8514890179771166e-5,0.028365099677640112,0.0,0.0,0.0,-0.0,0.9100000000000001,1574.1603,0.00011703705 -2.0695996199913558,0.02820983145877714,2.0695996199913558,8.700017021794151,0.3960082175925926,1.7021794152409515e-5,0.03054550923717859,8.7,8.7,0.0,-0.0,2.13,1578.7462,3.4037796e-5 -2.4829173270205747,0.03552686355273822,2.4829173270205747,20.68999714654021,0.39571446759259266,-2.8534597914534597e-6,0.03820522415116779,20.69,20.69,0.0,-0.0,5.4799999999999995,1589.62,-5.7070824e-6 -3.150016026759626,0.0354594508572624,3.150016026759626,14.519997748222316,0.3921108796296296,-2.2517776839976327e-6,0.037794829445953984,14.52,14.52,0.0,-0.0,5.455,1603.8318,-4.503657e-6 -3.571242852298074,0.034007479565939,3.571242852298074,7.409998762475651,0.3919487268518519,-1.2375243485901895e-6,0.03607862313800366,7.41,7.41,0.0,-0.0,4.76,1611.327,-2.4750793e-6 -3.59895755105936,0.02532086441585853,3.59895755105936,0.7798803540202893,0.3884644675925926,-0.00011964597654317435,0.02685527618146793,0.78,0.7799999999968324,3.1676028466876005e-12,-0.0,0.53,1611.7887,-0.0002465204 -3.523870489266314,0.02167597863942245,3.523870489266314,3.8018140920651917,0.38799999999999996,-2.3454591608923726e-8,0.023007488842892283,3.86,3.8018141155197833,0.058185884480216644,-0.0,-1.675,1610.5295,0.006707197 -3.3502307714441533,0.01689975707634573,3.3502307714441533,1.8463008899516355e-14,0.3848466435185185,-0.0,0.017971547799138524,0.1,1.8463008899516355e-14,0.09999999999998155,-0.0,-5.025,1607.5118,1.5388482 -3.171497822278857,0.013093858374921072,3.171497822278857,0.0,0.3840003472222222,-0.0,0.013952695933965446,7.71,0.0,7.71,-0.0,-8.44,1604.2377,5.4511366 -3.010793256551242,0.019316797034703993,3.010793256551242,0.0008070850899818969,0.38166932870370374,-1.508727943929316e-13,0.020623725774289777,6.35,0.0008070850901327697,6.3491929149098665,-0.0,-2.9899999999999998,1601.1322,12.377254 -2.8654503826008524,0.016965859120466983,2.8654503826008524,1.3442895685500389e-11,0.3799997685185186,-0.0,0.018147219032226478,3.28,1.3442895685500389e-11,3.279999999986557,-0.0,-4.715,1598.1774,17.113935 -2.733502715412854,0.016514241992626334,2.733502715412854,5.480504938759622e-13,0.37920590277777777,-0.0,0.01769532670784054,3.28,5.480504938759622e-13,3.279999999999452,-0.0,-5.035,1595.362,20.44853 -2.613212199649698,0.013749549664802676,2.613212199649698,0.0,0.37611087962962964,-0.0,0.014757767537393914,0.52,0.0,0.52,-0.0,-7.405,1592.6744,22.350763 -2.503040333573602,0.01621242496426206,2.503040333573602,3.519584623745686e-13,0.3759486111111111,-0.0,0.01742938978124206,5.18,3.519584623745686e-13,5.179999999999648,-0.0,-5.125,1590.102,25.233934 -2.4632430743778797,0.024502672559371642,2.4632430743778797,3.754284969581702,0.37321898148148147,1.7742849695820648,0.02635780007882239,1.98,1.9799999999996376,3.622702138272871e-13,-0.0,0.8400000000000001,1589.1449,27.249187 -2.4819075708559057,0.02118439175525025,2.4819075708559057,3.3794767042762768,0.3719998842592593,-3.393065528292983e-6,0.02278182544208853,3.38,3.379480097341805,0.0005199026581951282,-0.0,-1.215,1589.5957,26.98171 -2.621911946855185,0.028452005442477824,2.621911946855185,10.78758738762786,0.37120578703703705,7.767587387627861,0.030534509906650235,3.02,3.02,0.0,-0.0,3.08,1592.8729,24.355055 -2.8631728775585183,0.026615203963489834,2.8631728775585183,5.293629689804174,0.3684645833333333,5.293629689804174,0.02846930907880242,0.0,0.0,0.0,-0.0,2.1550000000000002,1598.1299,17.810715 -2.826908667360411,0.017115756832336605,2.826908667360411,7.545914531004173e-9,0.3680003472222222,-0.0,0.018316823110413032,5.86,7.545914531004173e-9,5.859999992454086,-0.0,-4.14,1597.3687,18.6221 -2.6984009706575067,0.01647048868025068,2.6984009706575067,8.505521953416916e-11,0.36615196759259255,-0.0,0.017656986805141033,5.38,8.505521953416916e-11,5.379999999914944,-0.0,-4.58,1594.5902,24.241665 -2.5810528444354945,0.01616779095842481,2.5810528444354945,6.527183238347333e-12,0.3644642361111111,-0.0,0.017361393175059445,2.26,6.527183238347333e-12,2.2599999999934726,-0.0,-4.75,1591.9349,28.02916 -2.4735257432003137,0.013457114478537027,2.4735257432003137,0.0,0.36400011574074076,-0.0,0.014473703344773312,0.65,0.0,0.65,-0.0,-7.2250000000000005,1589.3937,29.508581 -2.3746974473748086,0.010054294040941079,2.3746974473748086,0.0,0.3621513888888889,-0.0,0.01083041706293486,0.0,0.0,0.0,-0.0,-11.02,1586.9586,29.839046 -2.28347884695122,0.011323898138260284,2.28347884695122,0.0,0.3604638888888889,-0.0,0.012216032816012893,0.0,0.0,0.0,-0.0,-9.37,1584.6194,29.838633 -2.198975632897607,0.011255074599491571,2.198975632897607,0.0,0.3599998842592593,-0.0,0.01215906676542193,0.0,0.0,0.0,-0.0,-9.415,1582.3674,29.838633 -2.1205319696938574,0.00870216968889659,2.1205319696938574,0.0,0.35920578703703704,-0.0,0.009414021975915397,0.0,0.0,0.0,-0.0,-12.735,1580.1981,29.838633 -2.047496491898211,0.010520762903097777,2.047496491898211,0.0,0.3572189814814815,-0.0,0.011396475046648528,0.0,0.0,0.0,-0.0,-10.17,1578.105,29.82316 -1.9792488642464878,0.012740614298372008,1.9792488642464878,0.0,0.35611041666666665,-0.0,0.01381882728669671,1.78,0.0,1.78,-0.0,-7.555,1576.0804,30.716845 -1.9831851595571905,0.02129700843316456,1.9831851595571905,9.624514831179845,0.3559483796296296,-0.005484800645223793,0.023097593273154565,9.63,9.629999631825068,3.6817493202168096e-7,-0.0,-0.3849999999999998,1576.1991,34.333008 -1.9858502366903004,0.013249890902364062,1.9858502366903004,0.0,0.3546476851851852,-0.0,0.01436938999040264,0.0,0.0,0.0,-0.0,-6.97,1576.2793,37.00177 -1.921584997488216,0.009609953648220865,1.921584997488216,0.0,0.35321898148148145,-0.0,0.010434915678627385,0.0,0.0,0.0,-0.0,-11.18,1574.3147,37.008934 -1.8613806957239138,0.010138780290528913,1.8613806957239138,0.0,0.35211030092592593,-0.0,0.011022448918635835,0.02,0.0,0.02,-0.0,-10.42,1572.4137,37.01927 -1.8048067275744635,0.010368483221185575,1.8048067275744635,0.0,0.35199988425925927,-0.0,0.011285401444697103,0.0,0.0,0.0,-0.0,-10.105,1570.5704,37.028282 -1.7515805231004766,0.009176866610918306,1.7515805231004766,0.0,0.35171423611111113,-0.0,0.009999788729685542,0.0,0.0,0.0,-0.0,-11.68,1568.7827,37.028416 -1.7013875158058984,0.010946740778900399,1.7013875158058984,0.0,0.3506474537037037,-0.0,0.011941590728545256,0.0,0.0,0.0,-0.0,-9.305,1567.0464,37.02835 -1.653954176094424,0.011431846252973625,1.653954176094424,0.0,0.34966921296296294,-0.0,0.012484235647383752,0.0,0.0,0.0,-0.0,-8.674999999999999,1565.3578,37.025337 -1.609062993145062,0.012548745307115337,1.609062993145062,0.0,0.3488465277777778,-0.0,0.01371835536333838,0.0,0.0,0.0,-0.0,-7.375,1563.7145,37.028023 -1.5665169418117235,0.01283668373211231,1.5665169418117235,0.0,0.3481105324074074,-0.0,0.014047507733168815,0.3,0.0,0.3,-0.0,-7.025,1562.1141,37.170906 -1.5261592617748632,0.012314407907054662,1.5261592617748632,0.0,0.3480079861111111,-0.0,0.013489428168447583,0.8,0.0,0.8,-0.0,-7.57,1560.5554,37.722183 -1.4878628136819092,0.009602940231497301,1.4878628136819092,0.0,0.34794849537037037,-0.0,0.010529477091804339,6.14,0.0,6.14,-0.0,-10.865,1559.0377,41.19192 -1.4514349061796168,0.012095267601485713,1.4514349061796168,0.0,0.34771435185185184,-0.0,0.013274880777126997,7.32,0.0,7.32,-0.0,-7.775,1557.5574,47.892323 -1.4167934531816604,0.006002298080387372,1.4167934531816604,0.0,0.3472057870370371,-0.0,0.0065937904608824914,1.11,0.0,1.11,-0.0,-16.81,1556.1147,52.06955 -1.3838129656412972,0.006720990817723453,1.3838129656412972,0.0,0.3466476851851852,-0.0,0.007389986303047909,2.55,0.0,2.55,-0.0,-15.364999999999998,1554.7081,53.889572 -1.3523269986625062,0.00637854518511307,1.3523269986625062,0.0,0.3466476851851852,-0.0,0.007019660296320895,2.96,0.0,2.96,-0.0,-16.01,1553.3336,56.66086 -1.3222410434318372,0.006638662648159395,1.3222410434318372,0.0,0.3461518518518519,-0.0,0.007312247540366764,1.49,0.0,1.49,-0.0,-15.48,1551.99,58.864418 -1.2934852420403609,0.004556202628421161,1.2934852420403609,0.0,0.3461518518518519,-0.0,0.0050227425653725545,0.0,0.0,0.0,-0.0,-20.1,1550.6769,59.56533 -1.2659731247093025,0.0038473581187338296,1.2659731247093025,0.0,0.3456693287037037,-0.0,0.004244829395126783,0.0,0.0,0.0,-0.0,-22.09,1549.393,59.568333 -1.2396034940740648,0.00449918531715778,1.2396034940740648,0.0,0.3456693287037037,-0.0,0.004968027727094123,0.0,0.0,0.0,-0.0,-20.215,1548.1359,59.505333 -1.214304257004388,0.004828260444506021,1.214304257004388,0.0,0.3461518518518519,-0.0,0.005335638646489255,0.79,0.0,0.79,-0.0,-19.369999999999997,1546.9044,59.910915 -1.1899931464498676,0.006709685707510612,1.1899931464498676,0.0,0.3461518518518519,-0.0,0.00742056735437719,3.65,0.0,3.65,-0.0,-15.295,1545.6967,62.137707 -1.1665597508391305,0.013073832694233924,1.1665597508391305,0.0,0.3461518518518519,-0.0,0.014470105770405296,3.31,0.0,3.31,-0.0,-6.545,1544.5089,65.640236 -1.1439384913823973,0.015650158076709563,1.1439384913823973,1.0261220104723634e-8,0.3466476851851852,-0.0,0.01733470535813806,4.16,1.0261220104723634e-8,4.15999998973878,-0.0,-4.074999999999999,1543.3395,69.4258 -1.1222512693328799,0.005792347798430724,1.1222512693328799,0.0,0.3472057870370371,-0.0,0.0064205782579049644,2.39,0.0,2.39,-0.0,-17.14,1542.1964,72.63255 -1.1014501467237274,0.004901996619388495,1.1014501467237274,0.0,0.34771435185185184,-0.0,0.005437600255567787,0.03,0.0,0.03,-0.0,-19.195,1541.0791,73.78516 -1.081379341351164,0.010148894727502761,1.081379341351164,0.0,0.34794849537037037,-0.0,0.011265815449219594,0.19,0.0,0.19,-0.0,-9.975,1539.9808,73.91759 -1.0620128598854457,0.00793742556885552,1.0620128598854457,0.0,0.34800000000000003,-0.0,0.008817145598874537,0.03,0.0,0.03,-0.0,-13.17,1538.9016,74.10598 -1.0433258464028101,0.007189495797346175,1.0433258464028101,0.0,0.3480079861111111,-0.0,0.007991827075280808,0.44,0.0,0.44,-0.0,-14.424999999999999,1537.8414,74.35157 -1.0252735733659115,0.008663354396752669,1.0252735733659115,0.0,0.3484641203703704,-0.0,0.00963669673390965,0.21,0.0,0.21,-0.0,-12.04,1536.7991,74.64746 -1.007817894745257,0.01148071249699648,1.007817894745257,0.0,0.34921886574074074,-0.0,0.012779117283103776,0.21,0.0,0.21,-0.0,-8.345,1535.7736,74.98678 -0.9909469901422938,0.007075560747082334,0.9909469901422938,0.0,0.35015162037037034,-0.0,0.007880940896405184,0.85,0.0,0.85,-0.0,-14.68,1534.7654,75.55495 -0.9746652640681306,0.005893327848870176,0.9746652640681306,0.0,0.35120578703703703,-0.0,0.006568373869354424,17.28,0.0,17.28,-0.0,-17.0,1533.776,84.720345 -0.9589215065510162,0.00554077034311284,0.9589215065510162,0.0,0.3519482638888889,-0.0,0.006179351169144214,12.55,0.0,12.55,-0.0,-17.78,1532.8035,99.37101 -0.9436866426868735,0.004758842707513298,0.9436866426868735,0.0,0.35200787037037035,-0.0,0.005310619037842496,9.45,0.0,9.45,-0.0,-19.63,1531.847,110.31425 -0.9289216451743012,0.006509685040728223,0.9289216451743012,0.0,0.35284641203703704,-0.0,0.007268936223641465,3.53,0.0,3.53,-0.0,-15.795,1530.9053,116.85721 -0.9146007580135692,0.0057440796878302355,0.9146007580135692,0.0,0.3541518518518519,-0.0,0.00641792498656815,0.0,0.0,0.0,-0.0,-17.39,1529.9774,118.66251 -0.90071603433181,0.006044926531400888,0.90071603433181,0.0,0.35571446759259256,-0.0,0.0067580999268322395,0.0,0.0,0.0,-0.0,-16.805,1529.0638,118.67078 -0.8872343119368635,0.00771525751256107,0.8872343119368635,0.0,0.35600000000000004,-0.0,0.008630578114495214,0.91,0.0,0.91,-0.0,-13.735000000000001,1528.1632,119.18837 -0.8740937312068359,0.01355917011488138,0.8740937312068359,0.0,0.3564643518518519,-0.0,0.015176649129631781,0.61,0.0,0.61,-0.0,-6.295,1527.2721,119.93759 -0.8613290938088926,0.008691711999151577,0.8613290938088926,0.0,0.35815185185185183,-0.0,0.009734149342106766,0.59,0.0,0.59,-0.0,-12.265,1526.3936,120.53496 -0.8489451909457728,0.010622717855291557,0.8489451909457728,0.0,0.3599482638888889,-0.0,0.01190349431471431,0.68,0.0,0.68,-0.0,-9.695,1525.5287,121.17133 -0.8368710454205333,0.012687689832490488,0.8368710454205333,0.0,0.36000787037037035,-0.0,0.014225416230979743,0.6,0.0,0.6,-0.0,-7.31,1524.6732,121.846466 -0.8251963025184568,0.004440709736006355,0.8251963025184568,0.0,0.36121863425925926,-0.0,0.004981657473351582,0.0,0.0,0.0,-0.0,-20.71,1523.8342,122.14746 -0.8138990093443765,0.002917058953019311,0.8138990093443765,0.0,0.3637142361111111,-0.0,0.0032741711014610446,0.0,0.0,0.0,-0.0,-25.695,1523.011,122.14453 -0.8029040725611961,0.004971450011923836,0.8029040725611961,0.0,0.36400011574074076,-0.0,0.005583042353995415,0.0,0.0,0.0,-0.0,-19.43,1522.1987,122.14453 -0.7831278046635832,0.009036913958457774,0.7831278046635832,0.0,0.36521898148148146,-0.0,0.010158582967837082,0.0,0.0,0.0,-0.0,-11.965,1520.7094,122.142914 -0.7633251438259958,0.020868614136975164,0.7633251438259958,-0.0007780138171429076,0.36771435185185186,-0.0007780138171429076,0.023482462101920006,0.0,0.0,0.0,-0.0,-0.6150000000000002,1519.1798,122.141205 -0.8081185126539917,0.021709475974804816,0.8081185126539917,8.143422224870307,0.3680083333333333,-0.046577758741043765,0.02437400530091273,8.19,8.18999998361135,1.6388648083620614e-8,-0.0,-0.0900000000000003,1522.5853,122.20192 -1.0069880482742257,0.02429706906496772,1.0069880482742257,19.88396678009389,0.3696696759259259,3.153966780093906,0.027045798898284696,16.73,16.729999999999983,1.7645329641879926e-14,-0.0,1.355,1535.7244,120.81918 -1.1844238748611768,0.020185632274715638,1.1844238748611768,4.1389918245762685,0.3719483796296296,-2.364907073056767e-7,0.022328318190942158,4.15,4.1389920610669755,0.011007938933024456,-0.0,-1.5,1545.4165,120.394135 -1.171319349012976,0.014897427341557898,1.171319349012976,2.431388423929093e-16,0.37211041666666667,-0.0,0.016485863118823402,2.19,2.431388423929093e-16,2.1899999999999995,-0.0,-5.75,1544.7521,123.00791 -1.148561186877916,0.009127171966850424,1.148561186877916,0.0,0.3746479166666667,-0.0,0.010108022517176615,0.98,0.0,0.98,-0.0,-12.36,1543.5803,124.58813 -1.1267679005801,0.00427496624543683,1.1267679005801,0.0,0.3760002314814815,-0.0,0.004737886572757813,0.0,0.0,0.0,-0.0,-21.785,1542.4363,124.97744 -1.1058175097434366,0.004953624731353052,1.1058175097434366,0.0,0.3772188657407407,-0.0,0.0054940268540001405,5.5,0.0,5.5,-0.0,-20.055,1541.3154,127.800964 -1.0855583887781721,0.013315426562448437,1.0855583887781721,0.0,0.3799997685185186,-0.0,0.014778624436653478,14.6,0.0,14.6,-0.0,-7.525,1540.2112,137.89078 -1.347076922282346,0.032404384275723355,1.347076922282346,34.25633038546975,0.3804640046296296,12.996330385469754,0.03566672114665629,21.26,21.26,0.0,-0.0,5.035,1553.1013,141.76146 -1.6364238932098758,0.013172140135054742,1.6364238932098758,0.0,0.383714699074074,-0.0,0.014390587061346842,14.6,0.0,14.6,-0.0,-8.015,1564.7214,146.39629 -1.5925292584577788,0.006485275088424457,1.5925292584577788,0.0,0.38400833333333334,-0.0,0.007092535063873933,1.9,0.0,1.9,-0.0,-17.155,1563.0977,154.55847 -1.5509972715164693,0.006520621799075326,1.5509972715164693,0.0,0.3866476851851852,-0.0,0.007138398550900887,0.0,0.0,0.0,-0.0,-17.16,1561.5195,155.56375 -1.5115676671600957,0.006699861218525742,1.5115676671600957,0.0,0.38799999999999996,-0.0,0.007341849995043997,0.0,0.0,0.0,-0.0,-16.855,1559.9817,155.66272 -1.4740983058259491,0.005876946400886148,1.4740983058259491,0.0,0.3901519675925926,-0.0,0.006446276868284854,0.71,0.0,0.71,-0.0,-18.525,1558.4827,155.99603 -1.4384189672128211,0.008737529027414473,1.4384189672128211,0.0,0.39200034722222227,-0.0,0.009592985900969053,4.8,0.0,4.8,-0.0,-13.615,1557.0194,158.7538 -1.4043694555909674,0.010056786730040275,1.4043694555909674,0.0,0.3936696759259259,-0.0,0.011051561606585212,0.0,0.0,0.0,-0.0,-11.844999999999999,1555.5887,161.1731 -1.3718884756601553,0.0060764000734559905,1.3718884756601553,0.0,0.39600023148148145,-0.0,0.006683455983089414,0.0,0.0,0.0,-0.0,-18.265,1554.1913,161.58037 -1.3408875947982788,0.009656276704777499,1.3408875947982788,0.0,0.3972188657407407,-0.0,0.0106303123802276,2.41,0.0,2.41,-0.0,-12.465,1552.8263,161.87447 -1.3112651833261746,0.008556203133371182,1.3112651833261746,0.0,0.40000023148148145,-0.0,0.00942737308686505,0.35,0.0,0.35,-0.0,-14.094999999999999,1551.4922,162.0738 -1.2829211454282083,0.007253667522623553,1.2829211454282083,0.0,0.4012189814814815,-0.0,0.00799894514373119,0.0,0.0,0.0,-0.0,-16.205,1550.1871,162.19682 -1.2557697592476222,0.0077542808223699505,1.2557697592476222,0.0,0.40399999999999997,-0.0,0.00855804637244411,0.0,0.0,0.0,-0.0,-15.445,1548.9097,162.26193 -1.2297257671801045,0.010118216268728157,1.2297257671801045,0.0,0.40521898148148144,-0.0,0.011176044931670124,0.0,0.0,0.0,-0.0,-12.075000000000001,1547.6581,162.28754 -1.204711847393449,0.011602320225724324,1.204711847393449,0.0,0.4080003472222223,-0.0,0.012825478053900014,0.0,0.0,0.0,-0.0,-10.365,1546.4308,162.2921 -1.1806772470232878,0.010447928620391811,1.1806772470232878,0.0,0.40966990740740744,-0.0,0.011558381555100304,0.0,0.0,0.0,-0.0,-11.78,1545.2273,162.2921 -1.1575905541656015,0.010094653989937774,1.1575905541656015,0.0,0.41200046296296294,-0.0,0.011176088923657075,0.0,0.0,0.0,-0.0,-12.29,1544.048,162.2921 -1.1353915172183862,0.010615862428145915,1.1353915172183862,0.0,0.41464768518518513,-0.0,0.011761942927902806,0.0,0.0,0.0,-0.0,-11.71,1542.8916,162.29202 -1.1140484898907166,0.008374700256639464,1.1140484898907166,0.0,0.4159996527777778,-0.0,0.009285647169067452,0.1,0.0,0.1,-0.0,-14.785,1541.7583,162.29173 -1.093497749567371,0.010063983647180186,1.093497749567371,0.0,0.419205324074074,-0.0,0.011166733730326155,0.0,0.0,0.0,-0.0,-12.525,1540.6464,162.29135 -1.0736837755580488,0.010680258362659093,1.0736837755580488,0.0,0.41999976851851856,-0.0,0.011858941934446676,0.0,0.0,0.0,-0.0,-11.77,1539.5543,162.29105 -1.0545542651136064,0.009035981730776493,1.0545542651136064,0.0,0.42400011574074076,-0.0,0.010040202890806593,0.0,0.0,0.0,-0.0,-14.035,1538.4807,162.29095 -1.0360535515657325,0.011739132378101924,1.0360535515657325,0.0,0.42400011574074076,-0.0,0.013052738208250094,0.0,0.0,0.0,-0.0,-10.64,1537.4237,162.29123 -1.0181375138180495,0.016709880091843092,1.0181375138180495,0.0,0.428,-0.0,0.018592309310485364,0.0,0.0,0.0,-0.0,-6.0200000000000005,1536.382,162.29205 -1.0008012836871805,0.015858139356142463,1.0008012836871805,0.0,0.42846388888888887,-0.0,0.017656403656525394,0.03,0.0,0.03,-0.0,-6.739999999999999,1535.3563,162.24876 -0.9840216890932232,0.01980421236082899,0.9840216890932232,2.9973088066848064e-7,0.43200000000000005,-0.0,0.022064460467258285,6.36,2.9973088066848064e-7,6.359999700269119,-0.0,-3.7800000000000002,1534.3466,165.0881 -0.9678280310011004,0.01252823733794334,0.9678280310011004,0.0,0.4336695601851852,-0.0,0.013967101593456304,0.75,0.0,0.75,-0.0,-10.045,1533.3556,167.54611 -0.9522258569387493,0.008689558234168292,0.9522258569387493,0.0,0.43600011574074077,-0.0,0.00969368725497706,0.0,0.0,0.0,-0.0,-14.835,1532.385,168.08653 -0.9371069475708063,0.013549108380550746,0.9371069475708063,0.0,0.4399488425925926,-0.0,0.015124220288066259,0.0,0.0,0.0,-0.0,-9.18,1531.4292,168.00015 -0.9224298125053243,0.012582094115704224,0.9224298125053243,0.0,0.4400003472222222,-0.0,0.014053439921086828,2.42,0.0,2.42,-0.0,-10.155000000000001,1530.4865,169.22742 -0.9082071514332322,0.012814294502956196,0.9082071514332322,0.0,0.4440001157407408,-0.0,0.014321477271461753,2.6,0.0,2.6,-0.0,-10.025,1529.5585,171.85652 -0.8944249749842715,0.011026790499393598,0.8944249749842715,0.0,0.4440081018518519,-0.0,0.012331094026358673,0.0,0.0,0.0,-0.0,-11.985,1528.6453,173.09503 -0.881080637890794,0.00940667860418143,0.881080637890794,0.0,0.4480001157407407,-0.0,0.010525528425183214,0.0,0.0,0.0,-0.0,-14.135,1527.7476,173.10606 -0.8681145931965915,0.013447629620965303,0.8681145931965915,0.0,0.4501516203703704,-0.0,0.015055843836406667,0.0,0.0,0.0,-0.0,-9.545,1526.8622,173.10606 -0.8554967235513182,0.012960654713932764,0.8554967235513182,0.0,0.452,-0.0,0.014518945737593953,0.0,0.0,0.0,-0.0,-10.079999999999998,1525.9878,173.10606 -0.8432208063051783,0.014579349249423007,0.8432208063051783,0.0,0.45599953703703705,-0.0,0.01634150325409089,0.0,0.0,0.0,-0.0,-8.625,1525.1246,173.10606 -0.8312671553802542,0.014565754864243313,0.8312671553802542,0.0,0.45599953703703705,-0.0,0.016335398499179685,0.0,0.0,0.0,-0.0,-8.629999999999999,1524.272,173.02814 -0.8195935227555626,0.02072887111076084,0.8195935227555626,3.486449429157545e-10,0.46,-0.0,0.023260181475871503,0.03,3.486449429157545e-10,0.029999999651355056,-0.0,-3.92,1523.4274,172.89436 -0.8082837122362247,0.012279309658825273,0.8082837122362247,0.0,0.4604638888888889,-0.0,0.013786309698829137,1.89,0.0,1.89,-0.0,-11.004999999999999,1522.5975,173.88643 -0.7973320360834659,0.011861692119641875,0.7973320360834659,0.0,0.463999537037037,-0.0,0.013324568892877836,6.32,0.0,6.32,-0.0,-11.55,1521.7828,177.99437 -0.7866879255165996,0.009346121362425403,0.7866879255165996,0.0,0.46799976851851854,-0.0,0.010504298380755183,1.37,0.0,1.37,-0.0,-14.715,1520.9802,181.88736 -0.7763398213301324,0.009198348277577607,0.7763398213301324,0.0,0.46799976851851854,-0.0,0.010343590892955872,0.0,0.0,0.0,-0.0,-14.91,1520.1895,182.52254 -0.7662640900505366,0.008890439234561513,0.7662640900505366,0.0,0.4719996527777777,-0.0,0.010002478766009175,16.0,0.0,16.0,-0.0,-15.44,1519.4093,190.65154 -0.756421166094276,0.012727784439415723,0.756421166094276,0.0,0.4719996527777777,-0.0,0.014327089581216278,10.39,0.0,10.39,-0.0,-10.825,1518.6372,203.47456 -0.7467962611514045,0.013913964572667954,0.7467962611514045,0.0,0.4760001157407408,-0.0,0.015670210110373613,0.0,0.0,0.0,-0.0,-9.754999999999999,1517.8724,208.75032 -0.7374159079110977,0.010230802852983244,0.7374159079110977,0.0,0.4800005787037037,-0.0,0.011527886277860517,0.0,0.0,0.0,-0.0,-13.855,1517.1176,208.89392 -0.7282054743350591,0.021965715841845698,0.7282054743350591,4.777784912146643e-7,0.4800005787037037,-0.0,0.024762828722060835,2.5,4.777784912146643e-7,2.4999995222215086,-0.0,-3.64,1516.367,210.3549 -0.7191703484558247,0.023113601909573178,0.7191703484558247,0.0004246825066205666,0.4840002314814815,-9.77213952906009e-14,0.02606970513864346,5.24,0.000424682506718288,5.239575317493282,-0.0,-3.035,1515.6213,214.17113 -0.7103431484327404,0.022971268942930032,0.7103431484327404,0.0001249139674638353,0.4840002314814815,-4.4948174669333806e-14,0.0259217829159825,3.43,0.00012491396750878347,3.4298750860324914,-0.0,-3.115,1514.8838,218.47699 -0.7017347328537689,0.02110105807573896,0.7017347328537689,0.0,0.48800034722222224,-0.0,0.023822806065102974,0.0,0.0,0.0,-0.0,-4.41,1514.1556,220.18935 -0.6927900955166645,0.025955471784563706,0.6927900955166645,-8.794249413329404e-8,0.4919994212962963,-8.794249413329404e-8,0.029318206825543248,0.0,0.0,0.0,-0.0,-1.605,1513.3895,220.16957 -0.7157738434312445,0.03195180855744545,0.7157738434312445,8.697461748248143,0.4919994212962963,3.207461748248148,0.03604499367796209,5.49,5.489999999999996,4.876099524153688e-15,-0.0,1.375,1515.3386,220.23248 -0.7298849266663314,0.01586313177992109,0.7298849266663314,0.0,0.4959997685185185,-0.0,0.017881519676810384,0.0,0.0,0.0,-0.0,-8.545,1516.5045,221.21324 -0.720920319987767,0.009716467997205866,0.720920319987767,0.0,0.4959997685185185,-0.0,0.010958101705932446,0.0,0.0,0.0,-0.0,-14.915,1515.7665,221.2488 -0.7121749887958945,0.014726437720239368,0.7121749887958945,0.0,0.4999997685185186,-0.0,0.016616268277116725,0.0,0.0,0.0,-0.0,-9.63,1515.0376,221.2761 -0.7035616308347168,0.02521768631927037,0.7035616308347168,0.0018533923131882559,0.503999537037037,-6.279450158992533e-11,0.02846750378589203,0.03,0.0018533923759827574,0.02814660762401724,-0.0,-2.365,1514.3109,221.70747 -0.6951192234480402,0.019864350932906838,0.6951192234480402,4.524158825347512e-16,0.503999537037037,-0.0,0.022434962093369485,1.63,4.524158825347512e-16,1.6299999999999994,-0.0,-5.6850000000000005,1513.59,222.7068 -0.6863823627841334,0.017316750651981076,0.6863823627841334,0.0,0.5079996527777778,-0.0,0.01956744659940035,1.89,0.0,1.89,-0.0,-7.654999999999999,1512.8346,224.36748 -0.7201161884635019,0.04214081751454177,0.7201161884635019,14.58609392002975,0.5079996527777778,12.91609392002975,0.047527936137618514,1.67,1.67,0.0,-0.0,5.004999999999999,1515.6998,222.56615 -0.8739918962077218,0.03963880735825655,0.8739918962077218,10.480362744829753,0.511999537037037,9.840362744829752,0.04436753922479741,0.64,0.64,0.0,-0.0,3.8549999999999995,1527.2651,211.31844 -0.9443793840398971,0.03174693855602409,0.9443793840398971,0.6404417721371958,0.5159998842592592,0.6304417721373061,0.03542690598943812,0.01,0.009999999999889611,1.1038947533847932e-13,-0.0,0.4299999999999997,1531.8909,206.06136 -1.0619303727906253,0.04536885241023399,1.0619303727906253,15.174550671229754,0.5159998842592592,14.654550671229755,0.05039732085294567,0.52,0.52,0.0,-0.0,5.655,1538.897,198.30348 -1.3827978815740771,0.0513941357692526,1.3827978815740771,19.014065293469756,0.520000462962963,19.014065293469756,0.05651140964765401,0.0,0.0,0.0,-0.0,7.285,1554.6643,181.53896 -1.8712955214373017,0.05381127212387194,1.8712955214373017,20.431576182909755,0.520000462962963,20.431576182909755,0.058489515611084605,0.0,0.0,0.0,-0.0,7.815,1572.731,161.80219 -2.5071059867054317,0.05181262520997115,2.5071059867054317,19.104718685149752,0.5240002314814816,18.104718685149752,0.05569847817504039,1.0,1.0,0.0,-0.0,6.944999999999999,1590.199,142.60318 -3.420310282798263,0.05892828455675736,3.420310282798263,24.16470623826975,0.5279998842592593,22.624706238269752,0.0626173860366505,1.54,1.54,0.0,-0.0,8.635,1608.7482,122.327515 -4.186950776841306,0.0418512143695797,4.186950776841306,8.409479111149569,0.5279998842592593,8.409479111149569,0.044139850419991314,0.0,0.0,0.0,-0.0,3.3200000000000003,1620.826,107.069305 -4.293218804691093,0.03724262829077059,4.293218804691093,3.4749285738313667,0.5319998842592593,3.4749285738313667,0.039243002796767665,0.0,0.0,0.0,-0.0,1.4749999999999999,1622.3229,101.25871 -4.034142152984401,0.028968905489684702,4.034142152984401,-7.234989783391098e-10,0.5319998842592593,-7.234989783391098e-10,0.0305949831929092,0.0,0.0,0.0,-0.0,-2.11,1618.6057,100.71793 -3.76607821345372,0.030613567464983133,3.76607821345372,0.18982270101173504,0.5359994212962963,-6.334624799517884e-7,0.03241419628090207,0.19,0.18982333447421498,0.00017666552578500083,-0.0,-1.395,1614.4994,100.71932 -3.839492364475112,0.03619864604963192,3.839492364475112,11.115972351926773,0.5395353009259259,1.975972351927561,0.03830042673289658,9.14,9.139999999999212,7.899780829490056e-13,-0.0,0.915,1615.6523,100.515305 -4.1174080968992985,0.03119410833703549,4.1174080968992985,6.907962446503808,0.54,-1.8541245482706387e-6,0.032920275694698874,6.91,6.907964300628356,0.0020356993716445873,-0.0,-1.2799999999999998,1619.8258,100.29037 -4.225079387269078,0.033539370200507165,4.225079387269078,4.683278207335772,0.5439997685185185,-0.006721653018661125,0.03536166121667098,4.69,4.689999860354433,1.396455670688024e-7,-0.0,-0.36,1621.3674,100.29172 -4.249634186273667,0.032500856821473384,4.249634186273667,4.539855241530196,0.5439997685185185,-0.00013196616360153075,0.034259409974048506,4.54,4.539987207693797,1.2792306203166515e-5,-0.0,-0.815,1621.7135,100.29059 -4.268830980832293,0.034473725277550216,4.268830980832293,4.489474844540213,0.5479999999999999,-0.050525147640432255,0.0363329958072588,4.54,4.539999992180646,7.819354513882715e-9,-0.0,-0.07499999999999996,1621.9827,100.29124 -4.714676884201136,0.03930328205887722,4.714676884201136,14.556945703725937,0.5498481481481481,4.1569457037259365,0.04127206687868914,10.4,10.4,0.0,-0.0,1.73,1627.9153,98.11907 -5.378626825377337,0.04217676048837051,5.378626825377337,11.6707858943789,0.5520004629629629,6.5907858943789,0.04407644699789427,5.08,5.08,0.0,-0.0,2.64,1635.7836,92.7895 -5.868344673656575,0.04525256849412774,5.868344673656575,10.10113436922973,0.5559922453703704,8.97113436922973,0.047140821832908957,1.13,1.13,0.0,-0.0,3.53,1640.9875,84.980385 -6.167905354377063,0.044250475940731664,6.167905354377063,8.008296783948962,0.5560002314814815,8.008296783948962,0.046013544122160105,0.0,0.0,0.0,-0.0,3.17,1643.9608,76.47896 -6.503994011411924,0.04818564103271828,6.503994011411924,11.043909726429753,0.56,11.043909726429753,0.05000910984996295,0.0,0.0,0.0,-0.0,4.305,1647.1294,66.952194 -7.1728385169266335,0.05252714354919193,7.1728385169266335,14.373723042189756,0.5600517361111111,14.373723042189756,0.0543221154716546,0.0,0.0,0.0,-0.0,5.550000000000001,1652.9751,54.246975 -7.825517394724528,0.049149421825845384,7.825517394724528,11.284619122749753,0.5639996527777777,11.284619122749753,0.050669542457822,0.0,0.0,0.0,-0.0,4.395,1658.176,41.46548 -8.320491195364669,0.0507455126994255,8.320491195364669,12.314320429229753,0.5663305555555556,12.314320429229753,0.05219969500695337,0.0,0.0,0.0,-0.0,4.779999999999999,1661.8387,29.686054 -9.21561003249362,0.058430220258129516,9.21561003249362,14.871451416015624,0.5679997685185185,14.831451416015625,0.059884729646733637,0.04,0.04,0.0,-0.0,6.82,1667.9408,14.831451 -9.788919957698353,0.06324808405626685,9.788919957698353,13.022938556671143,0.5715351851851852,5.452938556671143,0.06468275225921377,7.57,7.57,0.0,-0.0,7.91,1671.545,5.4529386 -10.2763393776456,0.057206770719817106,10.2763393776456,13.55376700957242,0.5719994212962963,2.0037670095724196,0.05840300892462926,11.55,11.55,0.0,-0.0,6.33,1674.447,2.003767 -9.745178371492313,0.04348087771083167,9.745178371492313,0.7652886025704301,0.5760005787037037,0.73528860257043,0.044474278769251085,0.03,0.03,0.0,-0.0,2.1449999999999996,1671.2776,0.7357575 -8.506126839492392,0.056769706275619,8.506126839492392,1.297776454480851,0.5760005787037037,0.25777645448085107,0.05835025149651734,1.04,1.04,0.0,-0.0,6.210000000000001,1663.1565,0.27436116 -7.619237425675802,0.07376145912534676,7.619237425675802,1.7886729264934442,0.5800003472222222,0.08867292649344424,0.07611602601757618,1.7,1.7,0.0,-0.0,10.22,1656.5807,0.116368435 -6.933000679500592,0.08109471287540014,6.933000679500592,1.6369992863247689,0.5807946759259259,0.03699928632476888,0.0839690761618906,1.6,1.6,0.0,-0.0,11.755,1650.9441,0.05776406 -6.372998443389361,0.0858329014764393,6.372998443389361,1.7581139573266538,0.5840005787037037,0.018113957326653687,0.08914680326084927,1.74,1.74,0.0,-0.0,12.625,1645.9143,0.031352796 -5.830752891769362,0.08448169605213496,5.830752891769362,0.009683346909854956,0.5853530092592593,0.009683346909854956,0.08802745027405981,0.0,0.0,0.0,-0.0,12.385,1640.6038,0.01778867 -5.307073488106461,0.09526763166055115,5.307073488106461,0.005403677616470116,0.5880002314814815,0.005403677616470116,0.09960729019845044,0.0,0.0,0.0,-0.0,14.31,1634.9838,0.010279481 -4.863438569581293,0.09028250558946725,4.863438569581293,0.0030791172063170057,0.5903311342592593,0.0030791172063170057,0.09469702814101331,0.0,0.0,0.0,-0.0,13.425,1629.7705,0.0059795147 -4.571521277767923,0.08655001980110599,4.571521277767923,2.1217806193997184,0.5920008101851852,0.001780619399718253,0.09098841634187985,2.12,2.12,0.0,-0.0,12.735000000000001,1626.0739,0.0034999952 -4.45487561661943,0.06212301961751428,4.45487561661943,3.3110291640462823,0.5943310185185184,0.0010291640462821846,0.06537082251197983,3.31,3.31,0.0,-0.0,7.47,1624.5303,0.0020375703 -4.256954453288692,0.0383420350512061,4.256954453288692,0.0004288899823875375,0.5959997685185184,0.0004288899823875375,0.040414080679275294,0.0,0.0,0.0,-0.0,0.24999999999999978,1621.8163,0.0012580593 -3.9723063212504965,0.038277015601514135,3.9723063212504965,0.0002510869758922213,0.5987809027777777,0.0002510869758922213,0.040448627288345404,0.0,0.0,0.0,-0.0,0.19500000000000028,1617.6832,0.00091220904 -3.7265271054130573,0.04179837135756555,3.7265271054130573,0.21031906353501467,0.5999998842592592,0.00031906353501474357,0.044274157883519696,0.21,0.20999999999999994,5.828670879282072e-17,-0.0,1.48,1613.8689,0.0006361053 -3.560382748536065,0.055359233740856606,3.560382748536065,1.7601956106877,0.6027810185185185,0.00019561068769984643,0.058737384644437056,1.76,1.76,0.0,-0.0,5.62,1611.1451,0.00039045908 -3.4526922870020713,0.0717574550506851,3.4526922870020713,2.060110271696781,0.6039996527777778,0.00011027169678098606,0.07622304114594085,2.06,2.06,0.0,-0.0,9.605,1609.3109,0.00022030073 -3.3297155791501987,0.0639312903211683,3.3297155791501987,0.5100569304825403,0.6063304398148148,5.693048254033972e-5,0.06800136086945015,0.51,0.51,0.0,-0.0,7.77,1607.145,0.00011379622 -3.1679667342695264,0.05545023011299698,3.1679667342695264,3.256794535552889e-5,0.6079995370370371,3.256794535552889e-5,0.059089709405074284,0.0,0.0,0.0,-0.0,5.58,1604.1711,6.511469e-5 -3.007398063070861,0.06791246059724296,3.007398063070861,1.6293675867186376e-5,0.6098476851851852,1.6293675867186376e-5,0.07251030840329241,0.0,0.0,0.0,-0.0,8.674999999999999,1601.0648,3.2582044e-5 -2.8630850922833226,0.0735729329955552,2.8630850922833226,0.16000816014109867,0.6120002314814815,8.160141098659166e-6,0.07869836248526633,0.16,0.16,0.0,-0.0,9.9,1598.128,1.631895e-5 -2.733094866347972,0.0666281005237648,2.733094866347972,3.963142427058921e-6,0.6133524305555556,3.963142427058921e-6,0.0713936850851545,0.0,0.0,0.0,-0.0,8.345,1595.3531,7.925971e-6 -2.611631590414438,0.06849931032541094,2.611631590414438,5.039637289931581e-7,0.6159914351851852,5.039637289931581e-7,0.07352385041803483,0.0,0.0,0.0,-0.0,8.735,1592.6383,1.0079224e-6 -2.4989199780395523,0.07965708161568615,2.4989199780395523,-1.3517452853302266e-6,0.6162851851851852,-1.3517452853302266e-6,0.0856417370825663,0.0,0.0,0.0,-0.0,11.125,1590.0037,-2.7035271e-6 -2.389816977669325,0.09697441798294192,2.389816977669325,-1.0556711880105254e-6,0.6195356481481481,-1.0556711880105254e-6,0.10443523932120509,0.0,0.0,0.0,-0.0,14.229999999999999,1587.3376,-2.1113647e-6 -2.2643710529534995,0.10746232861843213,2.2643710529534995,-3.466006641022533e-7,0.6199998842592592,-3.466006641022533e-7,0.11596529621427941,0.0,0.0,0.0,-0.0,15.934999999999999,1584.1176,-6.9320373e-7 -2.1571719684167205,0.11600147893421228,2.1571719684167205,2.21599827276898e-7,0.6227818287037037,2.21599827276898e-7,0.12540940318667415,0.0,0.0,0.0,-0.0,17.16,1581.2212,4.4319867e-7 -2.105032538752875,0.13284757284999604,2.105032538752875,0.7600004790544138,0.6240006944444445,4.790544137717811e-7,0.14375458634260097,0.76,0.76,0.0,-0.0,19.424999999999997,1579.76,9.581042e-7 -2.149987903460709,0.08872733216807782,2.149987903460709,5.740000337363532,0.6253526620370371,3.3736353215445063e-7,0.09593536201869235,5.74,5.74,0.0,-0.0,12.704999999999998,1581.022,6.747248e-7 -2.3361336445203267,0.06884085669247704,2.3361336445203267,8.790000188767175,0.6278895833333333,1.8876717539388714e-7,0.07420061968018032,8.79,8.79,0.0,-0.0,8.58,1585.9808,3.7753364e-7 -2.6144517242296237,0.06161289176163299,2.6144517242296237,10.040000108943017,0.6280518518518519,1.0894301783186646e-7,0.06612962519635812,10.04,10.04,0.0,-0.0,6.800000000000001,1592.7028,2.178858e-7 -2.908236481225387,0.07290290049735375,2.908236481225387,9.110000056805493,0.6303303240740741,5.680549393646846e-8,0.07793608209851106,9.11,9.11,0.0,-0.0,9.285,1599.0625,1.1361092e-7 -3.2545996225537954,0.08102801444040539,3.2545996225537954,10.650000026012975,0.6319916666666667,2.6012974546565355e-8,0.08625965525568467,10.65,10.65,0.0,-0.0,10.84,1605.7823,5.2025936e-8 -3.6151781079474534,0.09000344149048758,3.6151781079474534,12.750000014600513,0.6322856481481481,1.4600513154171545e-8,0.09544163171042301,12.75,12.75,0.0,-0.0,12.445,1612.0573,2.9201022e-8 -3.7246613653786813,0.09497870352509076,3.7246613653786813,2.430000006880505,0.6347809027777778,6.880505083920369e-9,0.10060631327667607,2.43,2.43,0.0,-0.0,13.23,1613.839,1.3761009e-8 -3.6047369724137495,0.09205676019596465,3.6047369724137495,3.003912986439424e-9,0.6360001157407408,3.003912986439424e-9,0.09762947694124302,0.0,0.0,0.0,-0.0,12.715,1611.8845,6.007826e-9 -3.5285050208453446,0.11223122417731707,3.5285050208453446,5.660000001644375,0.6362856481481481,1.644374663495516e-9,0.11911954898897523,5.66,5.66,0.0,-0.0,15.95,1610.608,3.2887493e-9 -3.582223947686278,0.11605256726871677,3.582223947686278,4.54000000066263,0.6387810185185185,6.626298442778575e-10,0.12310646111497432,4.54,4.54,0.0,-0.0,16.43,1611.5104,1.3252597e-9 -3.5277261668325406,0.09503463611799301,3.5277261668325406,0.5200000002321109,0.6399917824074074,2.3211084497239616e-10,0.10086832554836861,0.52,0.52,0.0,-0.0,13.14,1610.5948,4.642217e-10 -3.3325549217426023,0.10193844750818519,3.3325549217426023,0.11000000013375784,0.6400512731481481,1.3375783831775985e-10,0.1084247411701285,0.11,0.11,0.0,-0.0,14.31,1607.1959,2.6751568e-10 -3.196038430094558,0.09321034124182213,3.196038430094558,1.460000000073803,0.6418483796296296,7.380291522258836e-11,0.09929559626900411,1.46,1.46,0.0,-0.0,12.84,1604.698,1.4760583e-10 -3.206737478727811,0.07436788785737859,3.206737478727811,9.290000000041813,0.6435354166666667,4.181431938560079e-11,0.07921315752860832,9.29,9.29,0.0,-0.0,9.215,1604.8976,8.362864e-11 -3.2612589597415065,0.06411841130233087,3.2612589597415065,2.690000000019369,0.6439998842592592,1.9368930074680324e-11,0.06825308105015097,2.69,2.69,0.0,-0.0,6.8999999999999995,1605.9044,3.873786e-11 -3.1892906151191047,0.06630146134066638,3.1892906151191047,9.162524038937214e-12,0.6442856481481481,9.162524038937214e-12,0.07063552095315076,0.0,0.0,0.0,-0.0,7.42,1604.5718,1.8325048e-11 -3.034425270731433,0.0860130665431816,3.034425270731433,0.03000000000518399,0.6458482638888889,5.183991257364859e-12,0.09180573471828408,0.03,0.03,0.0,-0.0,11.485,1601.5991,1.03679825e-11 -2.9020903722225477,0.09737062842625761,2.9020903722225477,0.900000000002791,0.6471538194444444,2.790941089425747e-12,0.10410127543144473,0.9,0.9,0.0,-0.0,13.47,1598.9362,5.581882e-12 -2.7816493048773054,0.07542157161953733,2.7816493048773054,1.5507820722256556e-12,0.6479927083333333,1.5507820722256556e-12,0.08076287265764509,0.0,0.0,0.0,-0.0,9.41,1596.4048,3.1015641e-12 -2.7128962596485247,0.08516640353307162,2.7128962596485247,0.9900000000006205,0.6480521990740741,6.20554551758849e-13,0.0912832901947634,0.99,0.99,0.0,-0.0,11.34,1594.9102,1.2411091e-12 -2.8415308232248564,0.11563215571791963,2.8415308232248564,12.130000000000154,0.6487947916666666,1.523519537526236e-13,0.12372256234786569,12.13,12.13,0.0,-0.0,16.255,1597.6768,3.047039e-13 -3.0422504784527504,0.09159763315991097,3.0422504784527504,2.4800000000000844,0.6498487268518519,8.421965246514592e-14,0.09775701361363401,2.48,2.48,0.0,-0.0,12.389999999999999,1601.7529,1.684393e-13 -2.949020040177867,0.09605428391603012,2.949020040177867,4.814886282649103e-14,0.6507814814814814,4.814886282649103e-14,0.10263244736203282,0.0,0.0,0.0,-0.0,13.149999999999999,1599.8942,9.6297726e-14 -2.801099898885924,0.10158886557855551,2.801099898885924,2.8141842968375526e-14,0.6515357638888889,2.8141842968375526e-14,0.10875496605749284,0.0,0.0,0.0,-0.0,14.07,1596.8209,5.6283686e-14 -2.672383076579215,0.07650274301144695,2.672383076579215,0.020000000000015603,0.6519921296296297,1.5601645545146322e-14,0.08204360431946836,0.02,0.02,0.0,-0.0,9.559999999999999,1594.0116,3.120329e-14 -2.5469923069149636,0.08106910514370169,2.5469923069149636,1.9900000000000087,0.6520001157407407,8.699028368302422e-15,0.08709751201778909,1.99,1.99,0.0,-0.0,10.5,1591.1416,1.7398057e-14 -2.4029443867867544,0.09639728140903035,2.4029443867867544,1.6100000000000032,0.6520517361111111,3.1873170061240168e-15,0.10379230870886096,1.61,1.61,0.0,-0.0,13.3,1587.6648,6.374634e-15 -2.350776986496268,0.11308086360403058,2.350776986496268,-5.733280146344657e-17,0.6522856481481482,-5.733280146344657e-17,0.12185636207153086,0.0,0.0,0.0,-0.0,15.915,1586.354,-1.146656e-16 -2.4910203632370136,0.11130362478150066,2.4910203632370136,11.87,0.6527943287037037,-3.7609694873167244e-16,0.11968012519245413,11.87,11.87,0.0,-0.0,15.605,1589.8146,-7.521939e-16 -2.7293934878929424,0.09289769477444225,2.7293934878929424,6.64,0.653352662037037,-2.1262577060513046e-16,0.09954726593254448,6.64,6.64,0.0,-0.0,12.594999999999999,1595.2722,-4.2525154e-16 -2.773745914938896,0.08449665837721254,2.773745914938896,-1.2407656248736197e-16,0.653848611111111,-1.2407656248736197e-16,0.09049028229886971,0.0,0.0,0.0,-0.0,11.06,1596.2349,-2.4815312e-16 -2.6694076938525555,0.07872301647006955,2.6694076938525555,-6.993002765624522e-17,0.653848611111111,-6.993002765624522e-17,0.08442820917116162,0.0,0.0,0.0,-0.0,9.965,1593.9451,-1.3986006e-16 -2.54751297567637,0.07764029671669073,2.54751297567637,-4.0363472438329493e-17,0.653848611111111,-4.0363472438329493e-17,0.08341309288478842,0.0,0.0,0.0,-0.0,9.775,1591.1538,-8.0726945e-17 -2.435183121191592,0.09069702551233827,2.435183121191592,-2.1414577784642358e-17,0.6543310185185185,-2.1414577784642358e-17,0.09760583307976485,0.0,0.0,0.0,-0.0,12.255,1588.4607,-4.2829156e-17 -2.337308627260473,0.11763320969177275,2.337308627260473,-1.0081118131702214e-17,0.6543310185185185,-1.0081118131702214e-17,0.12678941271408453,0.0,0.0,0.0,-0.0,16.52,1586.0109,-2.0162236e-17 -2.3335421754874996,0.13761948959064232,2.3335421754874996,1.4,0.653848611111111,-5.768732776526438e-18,0.14834037069873054,1.4,1.4,0.0,-0.0,19.165,1585.9146,-1.15374656e-17 -2.6108683278135585,0.12975041342991148,2.6108683278135585,14.1,0.653848611111111,-3.092209786032734e-18,0.13926935183158515,14.1,14.1,0.0,-0.0,18.1,1592.6208,-6.1844196e-18 -3.1302213462344284,0.08994317561005957,3.1302213462344284,17.96,0.653352662037037,-1.772161256910651e-18,0.09588938970463255,17.96,17.96,0.0,-0.0,11.995000000000001,1603.4553,-3.5443225e-18 -3.241321714570421,0.08538076485345315,3.241321714570421,-1.0088797262918851e-18,0.653352662037037,-1.0088797262918851e-18,0.09090726599958321,0.0,0.0,0.0,-0.0,11.145,1605.5382,-2.0177595e-18 -3.249893035277969,0.07998494872749999,3.249893035277969,6.08,0.6527943287037037,-5.940963670781284e-19,0.08515382625722412,6.08,6.08,0.0,-0.0,10.125,1605.6959,-1.1881927e-18 -3.4031827932076126,0.11341169404139233,3.4031827932076126,6.44,0.6522856481481482,-3.5529989663627353e-19,0.12053409603753545,6.44,6.44,0.0,-0.0,15.735,1608.4484,-7.105998e-19 -3.4478895118310633,0.11339156520183209,3.4478895118310633,2.61,0.6520517361111111,-2.060636282087274e-19,0.12045433354160236,2.61,2.61,0.0,-0.0,15.73,1609.2278,-4.1212726e-19 -3.404017644817811,0.10108629248880345,3.404017644817811,3.11,0.6519921296296297,-1.1706925650749611e-19,0.1074336648070816,3.11,3.11,0.0,-0.0,13.86,1608.463,-2.3413851e-19 -3.292027469110262,0.1087488704114807,3.292027469110262,-6.877094309765203e-20,0.6518894675925926,-6.877094309765203e-20,0.11572112065734286,0.0,0.0,0.0,-0.0,15.075000000000001,1606.4652,-1.3754189e-19 -3.1171067892209883,0.10608059795652944,3.1171067892209883,-4.0157385998030454e-20,0.6511538194444445,-4.0157385998030454e-20,0.11311135696801454,0.0,0.0,0.0,-0.0,14.72,1603.2046,-8.031477e-20 -3.182973411716541,0.09755104267548012,3.182973411716541,7.63,0.6503311342592593,-2.2968262676448832e-20,0.10393552572715414,7.63,7.63,0.0,-0.0,13.365,1604.4534,-4.5936525e-20 -3.404205514652536,0.09764792490280183,3.404205514652536,7.0,0.6493528935185184,-1.2864543915384833e-20,0.10377918388786575,7.0,7.0,0.0,-0.0,13.365,1608.4663,-2.5729088e-20 -3.6019013203683445,0.1055667428273635,3.6019013203683445,6.65,0.6482863425925927,-7.588922485634436e-21,0.11196055967831539,6.65,6.65,0.0,-0.0,14.625,1611.8375,-1.5177845e-20 -3.6400032380569844,0.0969642405939817,3.6400032380569844,1.55,0.6480008101851852,-4.4719282229499e-21,0.1027969551403649,1.55,1.55,0.0,-0.0,13.245000000000001,1612.466,-8.9438564e-21 -3.696258187633277,0.11541397742968608,3.696258187633277,5.64,0.647890162037037,-2.5497474835874118e-21,0.12228704365417264,5.64,5.64,0.0,-0.0,16.085,1613.3818,-5.099495e-21 -3.634189560045551,0.1434616113814651,3.634189560045551,0.04,0.64678125,-1.454724536609685e-21,0.1521002984926836,0.04,0.04,0.0,-0.0,19.775,1612.3705,-2.909449e-21 -3.4324756727901944,0.11908813990300694,3.4324756727901944,-8.513162726430332e-22,0.645352199074074,-8.513162726430332e-22,0.12652676670966598,0.0,0.0,0.0,-0.0,16.715,1608.9602,-1.7026325e-21 -3.236634328929208,0.09178735591021309,3.236634328929208,-4.9866328772785685e-22,0.6440515046296297,-4.9866328772785685e-22,0.09773380199611395,0.0,0.0,0.0,-0.0,12.530000000000001,1605.4518,-9.973266e-22 -3.0419706595748206,0.09744029769734615,3.0419706595748206,-2.4244252788952057e-22,0.6438894675925926,-2.4244252788952057e-22,0.10399291823756272,0.0,0.0,0.0,-0.0,13.535,1601.7474,-4.8488506e-22 -2.8803072196605455,0.10178716596793172,2.8803072196605455,-6.930654865321896e-23,0.6427809027777778,-6.930654865321896e-23,0.10885373385797055,0.0,0.0,0.0,-0.0,14.305,1598.4862,-1.386131e-22 -2.8040845054781913,0.11277782985468997,2.8040845054781913,2.01,0.6407940972222222,-1.6174901819403873e-23,0.12072839388141192,2.01,2.01,0.0,-0.0,16.055,1596.8845,-3.2349804e-23 -3.126141891868602,0.1038926575834919,3.126141891868602,14.63,0.6399997685185186,-9.267856614342156e-24,0.11076646290343102,14.63,14.63,0.0,-0.0,14.66,1603.3774,-1.8535713e-23 -3.7951652987191626,0.09833550804133184,3.7951652987191626,16.68,0.6395354166666667,-5.33940069825344e-24,0.10408978291061939,16.68,16.68,0.0,-0.0,13.66,1614.9589,-1.06788014e-23 -3.909412062037331,0.10882920261245642,3.909412062037331,0.84,0.6378482638888888,-3.1626881250071444e-24,0.11507132753163754,0.84,0.84,0.0,-0.0,15.34,1616.7301,-6.3253763e-24 -4.092203446470686,0.12795402869322195,4.092203446470686,12.41,0.6360001157407408,-1.8956437992987645e-24,0.13506511087110348,12.41,12.41,0.0,-0.0,18.049999999999997,1619.4591,-3.7912876e-24 -4.582064527356125,0.1438130669565455,4.582064527356125,10.49,0.6355359953703703,-1.1367396897382943e-24,0.15117519623359774,10.49,10.49,0.0,-0.0,19.97,1626.2114,-2.2734794e-24 -4.542803153019405,0.1312087284943209,4.542803153019405,-6.739690336171343e-25,0.6338483796296296,-6.739690336171343e-25,0.1379692131170809,0.0,0.0,0.0,-0.0,18.465,1625.6975,-1.3479381e-24 -4.313123792527675,0.13674140748835842,4.313123792527675,2.57,0.6319996527777777,-4.0239498952484354e-25,0.14406152585612797,2.57,2.57,0.0,-0.0,19.245,1622.5991,-8.0479e-25 -4.232980282824993,0.12630836025694317,4.232980282824993,3.99,0.6315355324074073,-2.377424376210134e-25,0.1331618955334334,3.99,3.99,0.0,-0.0,17.93,1621.479,-4.7548488e-25 -4.0796590391276855,0.10074360508174578,4.0796590391276855,-1.3275261927040617e-25,0.6287943287037038,-1.3275261927040617e-25,0.10635450118410504,0.0,0.0,0.0,-0.0,14.285,1619.2758,-2.6550524e-25 -3.8170031103635815,0.11881560972502822,3.8170031103635815,-6.4509870896426e-26,0.628,-6.4509870896426e-26,0.1257416346603199,0.0,0.0,0.0,-0.0,17.065,1615.3015,-1.2901974e-25 -3.54695192425924,0.11808605053149418,3.54695192425924,-3.6075407301125824e-26,0.6267813657407407,-3.6075407301125824e-26,0.125309494434851,0.0,0.0,0.0,-0.0,17.04,1610.9194,-7.2150815e-26 -3.2847815526484236,0.1753427641431972,3.2847815526484236,-2.0467800454303927e-26,0.624052199074074,-2.0467800454303927e-26,0.18659985458545103,0.0,0.0,0.0,-0.0,23.935000000000002,1606.3336,-4.09356e-26 -3.3231609840993763,0.1526066747864504,3.3231609840993763,10.29,0.6238902777777778,-1.2049302592774772e-26,0.16233399026519857,10.29,10.29,0.0,-0.0,21.51,1607.0273,-2.4098605e-26 -3.3590969563623907,0.11891135091132957,3.3590969563623907,-7.020889019486226e-27,0.6207944444444444,-7.020889019486226e-27,0.12644035117361238,0.0,0.0,0.0,-0.0,17.35,1607.6697,-1.4041778e-26 -3.181835043166006,0.11926702240213953,3.181835043166006,0.11,0.6199998842592592,-4.1482786109571445e-27,0.12707445644497004,0.11,0.11,0.0,-0.0,17.455000000000002,1604.432,-8.296557e-27 -3.016411106517375,0.1147902484737947,3.016411106517375,-2.3498226955079944e-27,0.6183303240740741,-2.3498226955079944e-27,0.1225481639476826,0.0,0.0,0.0,-0.0,16.895,1601.2435,-4.6996454e-27 -3.0675586792550256,0.10864662080995244,3.0675586792550256,3.07,0.615999537037037,-1.3671096228506186e-27,0.11591663693913136,3.07,3.07,0.0,-0.0,16.035,1602.2477,-2.7342192e-27 -3.609994349429599,0.08769656052017799,3.609994349429599,18.29,0.6151532407407407,-7.14895324965577e-28,0.09300030800818515,18.29,18.29,0.0,-0.0,12.469999999999999,1611.9716,-1.42979065e-27 -4.446978662793604,0.09465321503083966,4.446978662793604,16.75,0.6120002314814815,-4.0093744766886123e-28,0.09960819928970245,16.75,16.75,0.0,-0.0,13.66,1624.4243,-8.018749e-28 -4.987508406852664,0.12104521964299912,4.987508406852664,7.87,0.6115356481481482,-2.3600417760894103e-28,0.1268468507267058,7.87,7.87,0.0,-0.0,17.655,1631.2749,-4.7200836e-28 -5.122213491546226,0.12751526723415962,5.122213491546226,5.51,0.6080510416666667,-1.366905666869508e-28,0.13349675809444767,5.51,5.51,0.0,-0.0,18.61,1632.8665,-2.7338113e-28 -5.0295952737889555,0.1270192480918717,5.0295952737889555,2.79,0.6078891203703704,-6.604445307981996e-29,0.13306627574928734,2.79,2.79,0.0,-0.0,18.56,1631.7767,-1.3208891e-28 -4.734880634761956,0.1162810049184762,4.734880634761956,-3.0564454050645747e-29,0.6042853009259259,-3.0564454050645747e-29,0.12208661553294024,0.0,0.0,0.0,-0.0,17.215,1628.1707,-6.112891e-29 -4.6142836677548145,0.12757005764078555,4.6142836677548145,3.89,0.6039916666666666,-1.6462071269480492e-29,0.1340661711201104,3.89,3.89,0.0,-0.0,18.795,1626.6299,-3.2924143e-29 -4.897466029795638,0.12419821325522369,4.897466029795638,11.43,0.6002854166666667,-6.15555873480411e-30,0.13023783042338655,11.43,11.43,0.0,-0.0,18.41,1630.1869,-1.23111175e-29 -5.474269631385825,0.12620751402815233,5.474269631385825,13.24,0.5999998842592592,-1.6267882611990188e-30,0.13180721898201556,13.24,13.24,0.0,-0.0,18.62,1636.8362,-3.2535765e-30 -6.037406543522451,0.12831851297810434,6.037406543522451,10.02,0.5962851851851851,-9.642396782676496e-31,0.13353483286300225,10.02,10.02,0.0,-0.0,18.945,1642.6837,-1.9284794e-30 -6.107360920295618,0.12225769726333477,6.107360920295618,3.23,0.5959997685185184,-5.7194072605360275e-31,0.12717437371820955,3.23,3.23,0.0,-0.0,18.130000000000003,1643.3717,-1.14388145e-30 -5.913124566226812,0.1259258877314586,5.913124566226812,3.53,0.5920523148148148,-3.1948622252665555e-31,0.13114411457377737,3.53,3.53,0.0,-0.0,18.76,1641.4415,-6.3897245e-31 -5.516166460938192,0.09171622715834077,5.516166460938192,-1.784709932210804e-31,0.591992824074074,-1.784709932210804e-31,0.09575894970199832,0.0,0.0,0.0,-0.0,13.559999999999999,1637.2915,-3.5694199e-31 -5.0388770159589695,0.08789456428621674,5.0388770159589695,-9.866960872468884e-32,0.5880002314814815,-9.866960872468884e-32,0.09207276345348209,0.0,0.0,0.0,-0.0,13.035,1631.8868,-1.9733922e-31 -4.636065746132294,0.10441441995382027,4.636065746132294,-4.7470570238960093e-32,0.5879922453703703,-4.7470570238960093e-32,0.10971243401987645,0.0,0.0,0.0,-0.0,15.895000000000001,1626.9111,-9.494114e-32 -4.431942334762154,0.11376168439662993,4.431942334762154,1.72,0.5840005787037037,-2.648133984002073e-32,0.11973188331476012,1.72,1.72,0.0,-0.0,17.46,1624.222,-5.296268e-32 -4.644364933603972,0.11770144954269117,4.644364933603972,10.22,0.5835359953703704,-1.393596307357824e-32,0.12366553184165513,10.22,10.22,0.0,-0.0,18.015,1627.018,-2.7871926e-32 -4.867814605978309,0.12806978749486223,4.867814605978309,5.75,0.5800003472222222,-7.3158948038539e-33,0.13432755901106375,5.75,5.75,0.0,-0.0,19.515,1629.8242,-1.463179e-32 -4.8898838559200195,0.12279605750659753,4.8898838559200195,4.84,0.5787818287037036,-4.3091742110183744e-33,0.12877479869199362,4.84,4.84,0.0,-0.0,18.835,1630.0944,-8.6183484e-33 -4.897345903840342,0.11410559811950419,4.897345903840342,6.26,0.5760005787037037,-2.5422036126279518e-33,0.11965453046663066,6.26,6.26,0.0,-0.0,17.68,1630.1854,-5.0844072e-33 -4.66548788262872,0.10263855822436217,4.66548788262872,-1.3585875141964439e-33,0.5738478009259259,-1.3585875141964439e-33,0.10782142590732857,0.0,0.0,0.0,-0.0,16.009999999999998,1627.289,-2.717175e-33 -4.512890769913135,0.10810891260092816,4.512890769913135,5.75,0.5719994212962963,-6.604249146333645e-34,0.11370678200203167,5.75,5.75,0.0,-0.0,16.945,1625.303,-1.3208498e-33 -4.774240393221131,0.10430113717078164,4.774240393221131,10.65,0.5680513888888888,-3.873105112455661e-34,0.1094753823144947,10.65,10.65,0.0,-0.0,16.43,1628.665,-7.74621e-34 -5.315943604987815,0.07528372814886454,5.315943604987815,12.36,0.5679997685185185,-2.2706425148221697e-34,0.07870827308929253,12.36,12.36,0.0,-0.0,11.08,1635.0835,-4.541285e-34 -7.042392980169602,0.07387133023050292,7.042392980169602,30.21,0.5639996527777777,-1.3639675360267415e-34,0.0764463722768136,30.21,30.21,0.0,-0.0,10.73,1651.879,-2.727935e-34 -8.246499719489485,0.0766964227745482,8.246499719489485,6.17,0.5639916666666667,-8.239777458741932e-35,0.07891959707382028,6.17,6.17,0.0,-0.0,11.235,1661.3053,-1.6479555e-34 -7.64880744481218,0.08238752932265747,7.64880744481218,1.23,0.56,-4.965648018223912e-35,0.08500558210774255,1.23,1.23,0.0,-0.0,12.535,1656.812,-9.931296e-35 -6.956963207575669,0.08677633312262273,6.956963207575669,2.18,0.558330324074074,-2.9846303792747494e-35,0.08984086566180766,2.18,2.18,0.0,-0.0,13.475000000000001,1651.1501,-5.969261e-35 -6.369312962661102,0.06925529185844449,6.369312962661102,0.73,0.5560002314814815,-1.785871083923425e-35,0.0719306624568199,0.73,0.73,0.0,-0.0,9.995,1645.8798,-3.5717422e-35 -5.782032974960403,0.056908336673283835,5.782032974960403,-1.0410270954322038e-35,0.5520519675925926,-1.0410270954322038e-35,0.05931493514209703,0.0,0.0,0.0,-0.0,7.11,1640.1027,-2.0820542e-35 -5.266571003170391,0.06428456155704182,5.266571003170391,0.01,0.5520004629629629,-6.124819901040781e-36,0.06723168390621466,0.01,0.01,0.0,-0.0,9.049999999999999,1634.5262,-1.224964e-35 -4.832649550411517,0.06946706321161494,4.832649550411517,-3.304726516711015e-36,0.5479999999999999,-3.304726516711015e-36,0.07288073840729499,0.0,0.0,0.0,-0.0,10.43,1629.3912,-6.609453e-36 -4.467413904312886,0.08032232039698066,4.467413904312886,0.01,0.5479921296296296,-1.721860846270288e-36,0.08451285420523162,0.01,0.01,0.0,-0.0,12.79,1624.6981,-3.4437217e-36 -4.181545425249787,0.08111360268703526,4.181545425249787,2.15,0.5439997685185185,-6.012890547210736e-37,0.0855533768757878,2.15,2.15,0.0,-0.0,13.105,1620.7489,-1.2025781e-36 -3.9759536749613797,0.07382865676300933,3.9759536749613797,8.581245976148325e-37,0.540794212962963,8.581245976148325e-37,0.07801461524122381,0.0,0.0,0.0,-0.0,11.719999999999999,1617.738,1.7162492e-36 -3.826666530984662,0.07029098098838556,3.826666530984662,2.2684452716554602e-36,0.54,2.2684452716554602e-36,0.07438144458978481,0.0,0.0,0.0,-0.0,10.985,1615.4525,4.5368905e-36 -3.714693613458508,0.07262519208483499,3.714693613458508,3.4,0.5359994212962963,3.240339071932057e-36,0.07693595692329108,3.4,3.4,0.0,-0.0,11.639999999999999,1613.679,6.480678e-36 -3.624078700046092,0.0868486279410048,3.624078700046092,2.76,0.5359994212962963,3.384471295827956e-36,0.09208780918464371,2.76,2.76,0.0,-0.0,14.54,1612.2041,6.7689426e-36 -3.533030099280808,0.07040683358568421,3.533030099280808,2.05,0.5319998842592593,2.3793274855898595e-36,0.07472458569648333,2.05,2.05,0.0,-0.0,11.295,1610.6846,4.758655e-36 -3.342262334152463,0.05567602800346117,3.342262334152463,1.2065118793327508e-36,0.5298482638888888,1.2065118793327508e-36,0.059212266818011595,0.0,0.0,0.0,-0.0,7.715,1607.3696,2.4130238e-36 -3.1522575125051002,0.05922379935729941,3.1522575125051002,0.08,0.5279998842592593,4.330183997903472e-37,0.06312263885520188,0.08,0.08,0.0,-0.0,8.76,1603.8743,8.660368e-37 -3.129146616494514,0.056622570702618405,3.129146616494514,4.15,0.5240002314814816,1.8435090233087282e-37,0.06036670547048111,4.15,4.15,0.0,-0.0,8.185,1603.4348,3.687018e-37 -3.6473467854922754,0.06770172544311515,3.6473467854922754,15.72,0.5240002314814816,9.827326309007828e-38,0.07176884736457778,15.72,15.72,0.0,-0.0,10.895,1612.5863,1.9654653e-37 -4.708570989380422,0.0912242595564211,4.708570989380422,24.83,0.520000462962963,4.737221180705691e-38,0.09579843068652805,24.83,24.83,0.0,-0.0,15.684999999999999,1627.8379,9.474442e-38 -5.7132118274757815,0.08363926696767898,5.7132118274757815,8.93,0.5183310185185186,2.7352236195236684e-38,0.08721431621057084,8.93,8.93,0.0,-0.0,14.2,1639.3876,5.470447e-38 -5.756996216971476,0.05772747235116981,5.756996216971476,3.15,0.5159998842592592,1.4890397867595905e-38,0.06017822013271902,3.15,3.15,0.0,-0.0,8.375,1639.8435,2.9780796e-38 -5.388001986327923,0.04994491491065528,5.388001986327923,8.659814314757721e-39,0.511999537037037,8.659814314757721e-39,0.052191169083853274,0.0,0.0,0.0,-0.0,6.305,1635.8876,1.7319629e-38 -4.955093208067969,0.0505484262076815,4.955093208067969,4.822444650059765e-39,0.511999537037037,4.822444650059765e-39,0.052983832448764714,0.0,0.0,0.0,-0.0,6.535,1630.8855,9.64489e-39 -4.56808384084899,0.052992973693275235,4.56808384084899,2.7698338699044878e-39,0.5079996527777778,2.7698338699044878e-39,0.05571206076916374,0.0,0.0,0.0,-0.0,7.425,1626.0289,5.539668e-39 -4.239266576256723,0.052294018914354035,4.239266576256723,1.3016871629882874e-39,0.5067805555555556,1.3016871629882874e-39,0.05512849736629886,0.0,0.0,0.0,-0.0,7.300000000000001,1621.5676,2.603374e-39 -3.9544349054415244,0.0620266189287886,3.9544349054415244,3.6012109364529906e-40,0.503999537037037,3.6012109364529906e-40,0.06555655562289536,0.0,0.0,0.0,-0.0,10.08,1617.414,7.20242e-40 -3.6973538687200382,0.0482618748129393,3.6973538687200382,1.1771607749560626e-40,0.4999997685185186,1.1771607749560626e-40,0.05113537698249267,0.0,0.0,0.0,-0.0,6.355,1613.3995,2.35432e-40 -3.4302312486982465,0.04789172620360542,3.4302312486982465,6.205159794799939e-41,0.4999997685185186,6.205159794799939e-41,0.05088443225684199,0.0,0.0,0.0,-0.0,6.279999999999999,1608.9211,1.24103e-40 -3.275843670647896,0.045757563054124636,3.275843670647896,0.58,0.4959997685185185,2.931446322444301e-41,0.04870015404869083,0.58,0.58,0.0,-0.0,5.734999999999999,1606.1709,5.8629e-41 -3.492598082827657,0.04604364498076076,3.492598082827657,13.05,0.49366840277777774,1.7214951634230378e-41,0.04888816977787371,13.05,13.05,0.0,-0.0,5.865,1609.9972,3.443e-41 -4.051794008882679,0.048818954038816316,4.051794008882679,12.07,0.4919994212962963,1.0282027481983345e-41,0.051550946936142344,12.07,12.07,0.0,-0.0,6.725,1618.8665,2.0564e-41 -4.444670451670052,0.05833321235063803,4.444670451670052,7.7,0.48800034722222224,6.121572341402963e-42,0.061388059003740066,7.7,7.7,0.0,-0.0,9.555,1624.3933,1.2243e-41 -4.422973883155234,0.05610782427590493,4.422973883155234,3.5992351056182926e-42,0.48800034722222224,3.5992351056182926e-42,0.0590567543847406,0.0,0.0,0.0,-0.0,8.95,1624.1011,7.198e-42 -4.1248884239739745,0.048482626402494726,4.1248884239739745,1.9954490131985395e-42,0.4840002314814815,1.9954490131985395e-42,0.05116205308217462,0.0,0.0,0.0,-0.0,6.86,1619.9342,3.991e-42 -3.8687115060313255,0.047107672072781416,3.8687115060313255,1.179893306961496e-42,0.48167002314814816,1.179893306961496e-42,0.04982889342364268,0.0,0.0,0.0,-0.0,6.529999999999999,1616.1051,2.36e-42 -3.9535458726192805,0.05911015840278742,3.9535458726192805,10.42,0.4800005787037037,6.9364273984078445e-43,0.06247463790626052,10.42,10.42,0.0,-0.0,10.09,1617.4005,1.387e-42 -4.787794971888518,0.07073385855178307,4.787794971888518,19.19,0.4760001157407408,4.13383046975821e-43,0.07423515693373017,19.19,19.19,0.0,-0.0,12.969999999999999,1628.8344,8.27e-43 -5.36300490717566,0.0712266562259917,5.36300490717566,4.64,0.4760001157407408,2.473291789533302e-43,0.07444268635240116,4.64,4.64,0.0,-0.0,13.015,1635.6099,4.95e-43 -5.111210872831191,0.05130181646055918,5.111210872831191,1.485376372184306e-43,0.4719996527777777,1.485376372184306e-43,0.053712508219183726,0.0,0.0,0.0,-0.0,7.995,1632.738,2.97e-43 -4.763186796842598,0.05387345370082079,4.763186796842598,1.19,0.4701513888888889,8.828180325246348e-44,0.056550852902461334,1.19,1.19,0.0,-0.0,8.855,1628.5266,1.77e-43 -4.532693035503399,0.05744640603667638,4.532693035503399,3.36,0.46799976851851854,5.324934164434305e-44,0.06041125676854816,3.36,3.36,0.0,-0.0,9.96,1625.5645,1.06e-43 -4.29785477692069,0.04163938106398545,4.29785477692069,1.04,0.463999537037037,3.0127916982983567e-44,0.04387417069944115,1.04,1.04,0.0,-0.0,5.165,1622.3873,6.0e-44 -4.240566560441278,0.030575346447163972,4.240566560441278,5.639999999988626,0.463999537037037,2.8907294803345414e-18,0.032232249653155104,5.64,5.639999999988626,1.1373675334880317e-11,-0.0,0.6000000000000003,1621.5859,5.864539e-18 -4.372124982010917,0.0339020715914211,4.372124982010917,6.38,0.46,2.5985460355558656e-17,0.03569908468094698,6.38,6.38,0.0,-0.0,2.22,1623.4105,5.197092e-17 -4.418654520917084,0.04468982949956801,4.418654520917084,2.73,0.45920532407407405,2.1131495072330798e-17,0.0470403396036786,2.73,2.73,0.0,-0.0,6.38,1624.0427,4.226299e-17 -4.418266165900887,0.04250732902116188,4.418266165900887,4.72,0.45599953703703705,1.2132571545767418e-17,0.044743192756212496,4.72,4.72,0.0,-0.0,5.7250000000000005,1624.0375,2.4265143e-17 -4.282455987871283,0.02940820713430259,4.282455987871283,6.487232759609281e-18,0.45200810185185186,6.487232759609281e-18,0.03099064306598078,0.0,0.0,0.0,-0.0,0.41000000000000014,1622.173,1.422101e-17 -4.021841495016819,0.030014431914006736,4.021841495016819,3.772572600763488e-18,0.452,3.772572600763488e-18,0.031702768973487436,0.0,0.0,0.0,-0.0,0.7399999999999998,1618.4233,7.571882e-18 -3.7589642756073625,0.039833406205949926,3.7589642756073625,2.0913468874425596e-18,0.4480001157407407,2.0913468874425596e-18,0.042179277437397224,0.0,0.0,0.0,-0.0,5.1000000000000005,1614.3865,4.1826938e-18 -3.5533014500391573,0.048733622156983854,3.5533014500391573,0.65,0.4480001157407407,1.1650259901380608e-18,0.05171127872658846,0.65,0.65,0.0,-0.0,8.215,1611.0262,2.330052e-18 -3.5057156028080403,0.05704682453954715,3.5057156028080403,5.14,0.4440001157407408,6.221073909561647e-19,0.060562691941497576,5.14,5.14,0.0,-0.0,10.83,1610.2211,1.2442148e-18 -3.576707252922315,0.045704130428373714,3.576707252922315,6.45,0.44166932870370373,3.59164251813574e-19,0.048484882849290686,6.45,6.45,0.0,-0.0,7.4399999999999995,1611.4183,7.183285e-19 -3.534243545943771,0.030001097656690005,3.534243545943771,1.9071479371220455e-19,0.4400003472222222,1.9071479371220455e-19,0.03184053216683244,0.0,0.0,0.0,-0.0,1.1949999999999998,1610.7051,3.8144387e-19 -3.350655374811999,0.028321939944068047,3.350655374811999,1.0563848292111916e-19,0.43611064814814815,1.0563848292111916e-19,0.030117989199434782,0.0,0.0,0.0,-0.0,0.5150000000000001,1607.5194,2.1838028e-19 -3.171063513123575,0.030743386301096503,3.171063513123575,5.3704056510147066e-20,0.43600011574074077,5.3704056510147066e-20,0.03276003876424622,0.0,0.0,0.0,-0.0,1.745,1604.2295,1.0740813e-19 -3.0094888523063,0.03815796638355683,3.0094888523063,2.3865498378301712e-20,0.43200000000000005,2.3865498378301712e-20,0.04074030250051305,0.0,0.0,0.0,-0.0,5.125,1601.1063,4.7730997e-20 -2.8819031645750948,0.04203203428106721,2.8819031645750948,1.28960105533785e-14,0.43194837962962956,1.28960105533785e-14,0.044949175505138356,0.0,0.0,0.0,-0.0,6.62,1598.5193,2.5792021e-14 -2.802187966883229,0.037741505095416704,2.802187966883229,3.6300000000000496,0.428,4.993203658705254e-14,0.040403212156443304,3.63,3.63,0.0,-0.0,5.14,1596.8441,9.986407e-14 -2.7514465910030887,0.03814149473059799,2.7514465910030887,3.7900000000000977,0.4261517361111111,9.791575509393106e-14,0.04085933484469022,3.79,3.79,0.0,-0.0,5.375,1595.7528,1.9583151e-13 -2.712946167536696,0.03677825814027094,2.712946167536696,3.0100000000001432,0.42400011574074076,1.4344486698739565e-13,0.03941974721033559,3.01,3.01,0.0,-0.0,4.91,1594.9113,2.8688973e-13 -2.671197985755242,0.027891094102160386,2.671197985755242,1.0900000000000836,0.42121863425925926,1.7301573672657367e-13,0.029911658403418587,1.09,1.0899999999999106,8.961109632110721e-14,-0.0,0.9199999999999999,1593.9851,3.4623416e-13 -2.6117276812367884,0.027587136004762196,2.6117276812367884,1.7324011090272357e-13,0.41999976851851856,1.7324011090272357e-13,0.029610658167297552,0.0,0.0,0.0,-0.0,0.8149999999999995,1592.6405,3.470602e-13 -2.521661015094187,0.031585284916193605,2.521661015094187,1.3130501460433715e-13,0.4164640046296296,1.3130501460433715e-13,0.03394674413598435,0.0,0.0,0.0,-0.0,2.945,1590.5447,2.6261003e-13 -2.4727017546167027,0.0279219194257307,2.4727017546167027,6.280000000000024,0.4159996527777778,7.090466028474533e-14,0.03003159693711179,6.28,6.279999999999953,4.6713743984128086e-14,-0.0,1.16,1589.3738,1.4181686e-13 -2.5159769982899474,0.0336048172978387,2.5159769982899474,3.3500000000000276,0.4121109953703704,2.766501085291614e-14,0.036120326369609705,3.35,3.35,0.0,-0.0,4.025,1590.4099,5.5330022e-14 -2.6294042060923553,0.04040014565915407,2.6294042060923553,5.98000000000001,0.41200046296296294,9.52543606329123e-15,0.043352539437565785,5.98,5.98,0.0,-0.0,6.79,1593.0433,1.9050872e-14 -2.8254529067198884,0.0338422161946178,2.8254529067198884,7.550000000000005,0.4080084490740741,5.715608921482894e-15,0.03621772799946836,7.55,7.55,0.0,-0.0,4.215,1597.3379,1.1431218e-14 -2.8551604126288415,0.022249766656701607,2.8551604126288415,-2.56096906700307e-9,0.40794895833333333,-2.56096906700307e-9,0.0238022532514803,0.0,0.0,0.0,-0.0,-1.905,1597.9625,0.00023115762 -2.7507661628820874,0.02803800892873376,2.7507661628820874,1.2601524827365704,0.40399999999999997,0.00015248273657069428,0.03003618519285009,1.26,1.2599999999999998,1.3988810110276973e-16,-0.0,1.5899999999999999,1595.738,0.0003045021 -2.7106291920394905,0.02676511419971423,2.7106291920394905,2.500116170066003,0.4037145833333334,0.00011617006618890552,0.028688356785348337,2.5,2.499999999999814,1.8596235662471372e-13,-0.0,0.9299999999999997,1594.8602,0.0002321937 -2.6399595692218956,0.019586635305478526,2.6399595692218956,7.34273365369248e-8,0.40000023148148145,-2.450483695320446e-15,0.021014846720602647,0.03,7.34273389874085e-8,0.02999992657266101,-0.0,-3.3850000000000002,1593.2826,0.1222797 -2.5475910851703,0.022295374946208667,2.5475910851703,1.873601547144543,0.39971435185185183,-1.8645897560960297e-7,0.023953077458703186,1.88,1.8736017336035187,0.006398266396481415,-0.0,-1.525,1591.1556,0.59877026 -2.4537654036954364,0.017244764968796494,2.4537654036954364,2.8954616482224084e-14,0.3960082175925926,-0.0,0.018553075209564302,0.1,2.8954616482224084e-14,0.09999999999997106,-0.0,-4.9799999999999995,1588.9147,1.3036315 -2.3562611687640094,0.017211935428404494,2.3562611687640094,4.901212768970708e-13,0.39571446759259266,-0.0,0.01854601915347155,1.61,4.901212768970708e-13,1.60999999999951,-0.0,-4.975,1586.4932,2.157665 -2.2897325409331146,0.025929309175491664,2.2897325409331146,2.8837458966098857,0.3921108796296296,2.1637458966099166,0.027969224276752025,0.72,0.7199999999999691,3.0895286329268853e-14,-0.0,0.9849999999999999,1584.7827,2.6924784 -2.3800039112123508,0.026934383285667832,2.3800039112123508,6.250167112595221,0.3919487268518519,1.0101671125952223,0.029011097366379645,5.24,5.239999999999999,8.726352973553731e-16,-0.0,1.525,1587.0919,1.0102099 -2.552459423229249,0.03384273456027718,2.552459423229249,7.1341879777163335,0.3884644675925926,0.36418797771633366,0.036356399590146395,6.77,6.77,0.0,-0.0,5.01,1591.2697,0.37293184 -2.6248880429655204,0.024188139626306625,2.6248880429655204,1.3289502716061339,0.38799999999999996,-0.06104972774141646,0.025957452399767954,1.39,1.3899999993475503,6.52449668181454e-10,-0.0,0.05500000000000016,1592.9407,0.15257972 -2.5327414275269917,0.01662154354229968,2.5327414275269917,7.893685705084863e-16,0.3848466435185185,-0.0,0.017861305170223638,0.01,7.893685705084863e-16,0.009999999999999211,-0.0,-5.11,1590.8065,0.3931011 -2.428978976813029,0.01947870341169962,2.428978976813029,0.00028705715991012194,0.3840003472222222,-6.136062725551075e-13,0.020964496039599143,0.53,0.0002870571605237282,0.5297129428394763,-0.0,-2.845,1588.3083,0.6626836 -2.3333704670331574,0.01604494513959919,2.3333704670331574,3.1175062531474398e-15,0.38166932870370374,-0.0,0.017294931932849554,1.08,3.1175062531474398e-15,1.079999999999997,-0.0,-5.4399999999999995,1585.9102,1.4687773 -2.2451294261025208,0.011209467539028782,2.2451294261025208,0.0,0.3799997685185186,-0.0,0.012100310710740908,0.0,0.0,0.0,-0.0,-10.195,1583.6079,2.0068147 -2.1633096757948254,0.015649430432473646,2.1633096757948254,9.758860386455127e-16,0.37920590277777777,-0.0,0.01691681149379987,2.93,9.758860386455127e-16,2.9299999999999993,-0.0,-5.655,1581.3909,3.472545 -2.1016146129932025,0.02093714702721754,2.1016146129932025,2.57584449874283,0.37611087962962964,-3.7827335778489457e-7,0.022657514562936056,2.58,2.575844877016188,0.004155122983812003,-0.0,-1.4500000000000002,1579.663,5.8109775 -2.097460403864788,0.022896186767767227,2.097460403864788,1.4097804116937838,0.3759486111111111,-0.03021958250354658,0.024779378639020976,1.44,1.4399999941973303,5.802669704735308e-9,-0.0,-0.15999999999999992,1579.5448,5.819559 -2.0449284119512146,0.017894776659196848,2.0449284119512146,4.941583789869268e-9,0.37321898148148147,-5.524080487690067e-16,0.01938519705145229,0.01,4.9415843422773164e-9,0.009999995058415659,-0.0,-3.545,1578.03,5.9653845 -1.976766384135533,0.01066684486779421,1.976766384135533,0.0,0.3719998842592593,-0.0,0.0115701090723602,0.0,0.0,0.0,-0.0,-10.504999999999999,1576.0055,5.982762 -1.9131392087498806,0.007983258332068598,1.9131392087498806,0.0,0.37120578703703705,-0.0,0.008670026180501004,1.18,0.0,1.18,-0.0,-14.209999999999999,1574.0516,6.5863876 -1.8534722752791817,0.010624099166639513,1.8534722752791817,0.0,0.3684645833333333,-0.0,0.011551934918051749,26.78,0.0,26.78,-0.0,-10.4,1572.1594,20.567614 -1.7973407217983568,0.01258400836415805,1.7973407217983568,0.0,0.3680003472222222,-0.0,0.013699011865686648,19.17,0.0,19.17,-0.0,-8.115,1570.3229,43.531113 -1.7445201153629517,0.009078465279384816,1.7445201153629517,0.0,0.36615196759259255,-0.0,0.009894084684715488,0.0,0.0,0.0,-0.0,-12.34,1568.5415,52.996006 -1.6946368076607135,0.018012146879414423,1.6946368076607135,0.00021374571554615783,0.3644642361111111,-1.1292212827421315e-13,0.019652085017167968,2.27,0.00021374571565907995,2.269786254284341,-0.0,-3.02,1566.809,54.162693 -1.6473074911260628,0.017785378057118082,1.6473074911260628,-2.7775466893991892e-14,0.36400011574074076,-2.7775466893991892e-14,0.019425643202442607,0.0,0.0,0.0,-0.0,-3.165,1565.1173,56.8775 -1.6025049917178722,0.01602449148466921,1.6025049917178722,2.561248890753376e-10,0.3621513888888889,-0.0,0.017520792402606337,10.33,2.561248890753376e-10,10.329999999743876,-0.0,-4.535,1563.4706,63.674557 -1.5814223857183858,0.019185246943498515,1.5814223857183858,10.33945763849322,0.3604638888888889,-3.8446894937755e-9,0.020987302756540514,12.47,10.33945764233791,2.130542357662091,-0.0,-1.935,1562.6797,73.779686 -1.5720598227317328,0.017076971729229402,1.5720598227317328,8.942660700947724e-9,0.3599998842592593,-5.538927216247738e-16,0.018685239023139885,0.02,8.942661254840446e-9,0.019999991057338743,-0.0,-3.5549999999999997,1562.3251,78.70624 -1.5437510910820644,0.019943753441062504,1.5437510910820644,2.388948483446014,0.35920578703703704,-1.2770075892426511e-6,0.021837175501007507,2.39,2.3889497604536034,0.001050239546396724,-0.0,-1.32,1561.2399,79.475716 -1.5163674048019524,0.012830278361834133,1.5163674048019524,0.0,0.3572189814814815,-0.0,0.014057984915022134,0.06,0.0,0.06,-0.0,-7.365,1560.171,80.246796 -1.4785282040763714,0.010790487815082737,1.4785282040763714,0.0,0.35611041666666665,-0.0,0.011834457918134008,0.0,0.0,0.0,-0.0,-9.629999999999999,1558.6619,80.27925 -1.442573558930745,0.008805727643237074,1.442573558930745,0.0,0.3559483796296296,-0.0,0.009666792209581599,0.04,0.0,0.04,-0.0,-12.274999999999999,1557.1917,80.38196 -1.408278886770001,0.014678695187698626,1.408278886770001,5.375477840630083e-14,0.3546476851851852,-0.0,0.01612892841958473,11.26,5.375477840630083e-14,11.259999999999946,-0.0,-5.39,1555.7548,86.08474 -1.5264369253233396,0.022361047544869297,1.5264369253233396,15.148496165953617,0.35321898148148145,1.0484961659901284,0.024494530876404717,14.1,14.099999999963488,3.651094426793122e-11,-0.0,0.575,1560.5663,92.494995 -1.6636072297083022,0.017376988053262262,1.6636072297083022,-1.0232869028985476e-13,0.35211030092592593,-1.0232869028985476e-13,0.01897246130082007,0.0,0.0,0.0,-0.0,-3.0300000000000002,1565.7053,92.62026 -1.6151954599100184,0.012162948455840804,1.6151954599100184,0.0,0.35199988425925927,-0.0,0.013294668766907687,1.44,0.0,1.44,-0.0,-7.92,1563.9417,93.396515 -1.5723779769664135,0.009434660457439912,1.5723779769664135,0.0,0.35171423611111113,-0.0,0.0103231137767375,0.65,0.0,0.65,-0.0,-11.265,1562.3372,94.23306 -1.5318536450017106,0.005559662211772868,1.5318536450017106,0.0,0.3506474537037037,-0.0,0.006089288054037471,0.9,0.0,0.9,-0.0,-17.915,1560.7778,95.0168 -1.4934265162063498,0.003857383671941957,1.4934265162063498,0.0,0.34966921296296294,-0.0,0.004228957572587669,8.16,0.0,8.16,-0.0,-22.27,1559.2606,99.49175 -1.456853456842819,0.007911209346821766,1.456853456842819,0.0,0.3488465277777778,-0.0,0.00868152419809618,9.13,0.0,9.13,-0.0,-13.4,1557.7799,108.07347 -1.421946066301496,0.01036668650757946,1.421946066301496,0.0,0.3481105324074074,-0.0,0.01138667819173631,0.0,0.0,0.0,-0.0,-9.84,1556.3315,112.53621 -1.3886469291315469,0.009977086953212547,1.3886469291315469,0.0,0.3480079861111111,-0.0,0.010968719211539914,0.2,0.0,0.2,-0.0,-10.33,1554.9164,112.63123 -1.3568873264387873,0.008358191274797184,1.3568873264387873,0.0,0.34794849537037037,-0.0,0.009197092562382617,0.0,0.0,0.0,-0.0,-12.625,1553.5347,112.71814 -1.3265616190729121,0.00821685538019738,1.3265616190729121,0.0,0.34771435185185184,-0.0,0.00904943393824487,0.0,0.0,0.0,-0.0,-12.825,1552.1848,112.7226 -1.29750231821635,0.012932815973520721,1.29750231821635,0.0,0.3472057870370371,-0.0,0.014255390781245257,0.27,0.0,0.27,-0.0,-6.79,1550.862,112.87677 -1.2697074979755687,0.006961399737370821,1.2697074979755687,0.0,0.3466476851851852,-0.0,0.0076797113460728,0.0,0.0,0.0,-0.0,-14.879999999999999,1549.5688,113.011925 -1.2431406479436553,0.005664430063215328,1.2431406479436553,0.0,0.3466476851851852,-0.0,0.006254010625761438,0.0,0.0,0.0,-0.0,-17.445,1548.306,112.958786 -1.2176074353386492,0.012862004422785856,1.2176074353386492,0.0,0.3461518518518519,-0.0,0.014212118870223459,0.01,0.0,0.01,-0.0,-6.79,1547.0667,112.902504 -1.19299119401563,0.016206316857566874,1.19299119401563,1.3139227366275787e-6,0.3461518518518519,-5.5908907661995895e-16,0.01792161076087774,4.17,1.3139227371866679e-6,4.169998686077262,-0.0,-3.5900000000000003,1545.8469,115.17184 -1.1693314374951955,0.014230770982863579,1.1693314374951955,8.010259122670504e-16,0.3456693287037037,-0.0,0.015749158846064717,0.13,8.010259122670504e-16,0.1299999999999992,-0.0,-5.365,1544.6506,117.27742 -1.146677525580111,0.00759910744141421,1.146677525580111,0.0,0.3456693287037037,-0.0,0.008416279164029152,0.0,0.0,0.0,-0.0,-13.68,1543.4823,117.33724 -1.124917681289682,0.008656877108077592,1.124917681289682,0.0,0.3461518518518519,-0.0,0.009594908920639115,0.01,0.0,0.01,-0.0,-12.01,1542.3381,117.34215 -1.1039114309512852,0.013978195765373399,1.1039114309512852,0.0,0.3461518518518519,-0.0,0.01550414510330054,0.0,0.0,0.0,-0.0,-5.6000000000000005,1541.2124,117.34655 -1.0836340691766468,0.013238722333431919,1.0836340691766468,0.0,0.3461518518518519,-0.0,0.01469450226892889,0.0,0.0,0.0,-0.0,-6.335000000000001,1540.1052,117.250465 -1.06411627194934,0.009926421419820926,1.06411627194934,0.0,0.3466476851851852,-0.0,0.011025739049608959,5.92,0.0,5.92,-0.0,-10.209999999999999,1539.0198,120.14034 -1.04525977245345,0.016939221457124558,1.04525977245345,0.0012530206166046535,0.3472057870370371,-2.4517023072740016e-13,0.018828245750815396,5.98,0.0012530206168498237,5.978746979383151,-0.0,-2.9400000000000004,1537.952,126.061195 -1.02705226869188,0.010210179047877379,1.02705226869188,0.0,0.34771435185185184,-0.0,0.011356544764799576,0.0,0.0,0.0,-0.0,-9.86,1536.9026,129.06044 -1.0095436078125186,0.0068467287345675915,1.0095436078125186,0.0,0.34794849537037037,-0.0,0.00762054872340978,0.0,0.0,0.0,-0.0,-15.025,1535.8757,129.03812 -0.9925626578665689,0.014459617623312798,0.9925626578665689,0.0,0.34800000000000003,-0.0,0.016104471812055553,0.0,0.0,0.0,-0.0,-5.1499999999999995,1534.8627,129.0403 -0.976098748742291,0.014901504785564845,0.976098748742291,3.7084224580041795e-14,0.3480079861111111,-0.0,0.01660743411622779,0.01,3.7084224580041795e-14,0.009999999999962917,-0.0,-4.725,1533.8638,129.04497 -0.9602022897264781,0.010701571640282775,0.9602022897264781,0.0,0.3484641203703704,-0.0,0.011934320744309487,0.0,0.0,0.0,-0.0,-9.23,1532.8832,129.00964 -0.9448775456156223,0.006251668973675066,0.9448775456156223,0.0,0.34921886574074074,-0.0,0.006976191904589706,0.0,0.0,0.0,-0.0,-16.18,1531.9224,129.01118 -0.9300444865619149,0.008857875429513228,0.9300444865619149,0.0,0.35015162037037034,-0.0,0.009890539569308692,1.72,0.0,1.72,-0.0,-11.765,1530.9774,129.87947 -0.9156258075995596,0.011697308804084497,0.9156258075995596,0.0,0.35120578703703703,-0.0,0.01306896357863582,7.36,0.0,7.36,-0.0,-8.120000000000001,1530.0443,134.40239 -0.9016315260103136,0.01089192404742873,0.9016315260103136,0.0,0.3519482638888889,-0.0,0.012176457440010651,0.82,0.0,0.82,-0.0,-9.095,1529.1245,138.1714 -0.8880689339854613,0.009706008664394425,0.8880689339854613,0.0,0.35200787037037035,-0.0,0.010857108510402287,0.0,0.0,0.0,-0.0,-10.615,1528.2194,138.64558 -0.8749159919003093,0.009613044832712664,0.8749159919003093,0.0,0.35284641203703704,-0.0,0.010759393344876031,0.0,0.0,0.0,-0.0,-10.764999999999999,1527.3282,138.66806 -0.8621199622899537,0.013419665075827508,0.8621199622899537,0.0,0.3541518518518519,-0.0,0.015028608119763153,3.12,0.0,3.12,-0.0,-6.34,1526.4484,140.13171 -0.8496639002481439,0.013461342051756862,0.8496639002481439,0.0,0.35571446759259256,-0.0,0.015083870500190475,2.61,0.0,2.61,-0.0,-6.3500000000000005,1525.5792,142.91977 -0.8375932293448283,0.008640047881031263,0.8375932293448283,0.0,0.35600000000000004,-0.0,0.009686879681131515,0.0,0.0,0.0,-0.0,-12.25,1524.7247,144.23201 -0.8259067234503453,0.006284642875384341,0.8259067234503453,0.0,0.3564643518518519,-0.0,0.0070499726796036475,0.0,0.0,0.0,-0.0,-16.305,1523.8856,144.2175 -0.814531439100771,0.010168727429871509,0.814531439100771,0.0,0.35815185185185183,-0.0,0.011413255614101869,9.17,0.0,9.17,-0.0,-10.184999999999999,1523.0574,148.72913 -0.8034195648700454,0.012763865854389355,0.8034195648700454,0.0,0.3599482638888889,-0.0,0.014333727409664768,12.76,0.0,12.76,-0.0,-7.205,1522.237,159.62967 -0.7925872553475355,0.012502595738007563,0.7925872553475355,0.0,0.36000787037037035,-0.0,0.01404780416483419,0.0,0.0,0.0,-0.0,-7.48,1521.4264,165.86786 -0.7820512439475935,0.010514233912899849,0.7820512439475935,0.0,0.36121863425925926,-0.0,0.011819907607211851,0.0,0.0,0.0,-0.0,-9.835,1520.6272,165.8907 -0.7717846387321445,0.013247463158836577,0.7717846387321445,0.0,0.3637142361111111,-0.0,0.014900286496663518,0.0,0.0,0.0,-0.0,-6.82,1519.838,165.8907 -0.7618007263996113,0.009566662039872996,0.7618007263996113,0.0,0.36400011574074076,-0.0,0.010765757262714516,0.0,0.0,0.0,-0.0,-11.165000000000001,1519.0604,165.78122 -0.7521196692987642,0.005091488149427095,0.7521196692987642,0.0,0.36521898148148146,-0.0,0.005732542852876984,0.0,0.0,0.0,-0.0,-19.15,1518.2966,165.68839 -0.7427043296192481,0.004579603297402135,0.7427043296192481,0.0,0.36771435185185186,-0.0,0.005158764222980314,1.73,0.0,1.73,-0.0,-20.505000000000003,1517.5443,166.59596 -0.7335147990912213,0.006226209755198006,0.7335147990912213,0.0,0.3680083333333333,-0.0,0.0070170473138551365,4.12,0.0,4.12,-0.0,-16.759999999999998,1516.8008,169.65897 -0.7245470764375922,0.004997496894100375,0.7245470764375922,0.0,0.3696696759259259,-0.0,0.00563499557378278,0.0,0.0,0.0,-0.0,-19.505,1516.0662,171.76634 -0.7158016423151937,0.005094813563603917,0.7158016423151937,0.0,0.3719483796296296,-0.0,0.005747475648601537,0.0,0.0,0.0,-0.0,-19.34,1515.341,171.8553 -0.7072528377084621,0.007129839882303605,0.7072528377084621,0.0,0.37211041666666667,-0.0,0.0080470057551518,3.56,0.0,3.56,-0.0,-15.184999999999999,1514.6234,173.5034 -0.6988675546886918,0.011122242720365084,0.6988675546886918,0.0,0.3746479166666667,-0.0,0.012558887980769245,14.99,0.0,14.99,-0.0,-9.515,1513.9111,183.02345 -0.6906819179283811,0.007092676670323662,0.6906819179283811,0.0,0.3760002314814815,-0.0,0.00801255221337665,4.33,0.0,4.33,-0.0,-15.370000000000001,1513.2075,192.4941 -0.6827233229294685,0.003898347700181881,0.6827233229294685,0.0,0.3772188657407407,-0.0,0.0044059541481088725,0.0,0.0,0.0,-0.0,-22.68,1512.5154,194.83992 -0.6749640377130943,0.0032597059183821432,0.6749640377130943,0.0,0.3799997685185186,-0.0,0.0036858178508482535,0.0,0.0,0.0,-0.0,-24.84,1511.8328,195.32922 -0.6673816024911087,0.003901681781956053,0.6673816024911087,0.0,0.3804640046296296,-0.0,0.004413683110197543,0.0,0.0,0.0,-0.0,-22.76,1511.1581,195.28947 -0.6599571879607329,0.005234839247950066,0.6599571879607329,0.0,0.383714699074074,-0.0,0.005924404446251262,0.0,0.0,0.0,-0.0,-19.35,1510.49,195.27629 -0.6526820697740809,0.007971596678819335,0.6526820697740809,0.0,0.38400833333333334,-0.0,0.009025619953599273,0.0,0.0,0.0,-0.0,-14.129999999999999,1509.828,195.39783 -0.645557081824356,0.006563888265767546,0.645557081824356,0.0,0.3866476851851852,-0.0,0.00743500905698775,0.0,0.0,0.0,-0.0,-16.655,1509.1725,195.74474 -0.6385777445223915,0.007767377235538474,0.6385777445223915,0.0,0.38799999999999996,-0.0,0.008802004209772113,2.62,0.0,2.62,-0.0,-14.580000000000002,1508.5233,196.28548 -0.6317371335614549,0.010691555431986825,0.6317371335614549,0.0,0.3901519675925926,-0.0,0.012120855546802447,1.32,0.0,1.32,-0.0,-10.52,1507.8801,196.98848 -0.6250336774492751,0.008501286301165966,0.6250336774492751,0.0,0.39200034722222227,-0.0,0.00964185410336238,0.0,0.0,0.0,-0.0,-13.55,1507.243,197.82219 -0.6184607653137643,0.008702087133237193,0.6184607653137643,0.0,0.3936696759259259,-0.0,0.009873731074388659,0.0,0.0,0.0,-0.0,-13.299999999999999,1506.6117,198.755 -0.612015768004402,0.011066853908212437,0.612015768004402,0.0,0.39600023148148145,-0.0,0.012562104999494693,1.08,0.0,1.08,-0.0,-10.245,1505.9861,199.75539 -0.6057109775610111,0.008004425260629318,0.6057109775610111,0.0,0.3972188657407407,-0.0,0.009089641786964604,0.08,0.0,0.08,-0.0,-14.469999999999999,1505.3677,200.31877 -0.5995593682595634,0.006194612019783938,0.5995593682595634,0.0,0.40000023148148145,-0.0,0.007037309223325915,0.0,0.0,0.0,-0.0,-17.755,1504.758,200.33966 -0.5935345313645721,0.007290198729498532,0.5935345313645721,0.0,0.4012189814814815,-0.0,0.008285257362660151,1.62,0.0,1.62,-0.0,-15.765,1504.1549,201.21167 -0.5876026650609805,0.011755462535474772,0.5876026650609805,0.0,0.40399999999999997,-0.0,0.013365326974951323,1.27,0.0,1.27,-0.0,-9.69,1503.555,202.67137 -0.5817728911008737,0.010238745153709228,0.5817728911008737,0.0,0.40521898148148144,-0.0,0.01164551312237401,0.19,0.0,0.19,-0.0,-11.54,1502.9596,203.31331 -0.5760716024841185,0.00820208774986664,0.5760716024841185,0.0,0.4080003472222223,-0.0,0.009332678118346744,0.0,0.0,0.0,-0.0,-14.475000000000001,1502.3715,203.42928 -0.5704996467628662,0.006453787997885646,0.5704996467628662,0.0,0.40966990740740744,-0.0,0.007346227848399414,0.0,0.0,0.0,-0.0,-17.52,1501.791,203.43834 -0.565039330060146,0.006260182083307102,0.565039330060146,0.0,0.41200046296296294,-0.0,0.0071285760395695535,0.0,0.0,0.0,-0.0,-17.96,1501.2167,203.43625 -0.5596838969548796,0.006813110975597754,0.5596838969548796,0.0,0.41464768518518513,-0.0,0.007761145850175169,0.0,0.0,0.0,-0.0,-16.99,1500.648,203.43625 -0.5544347508400566,0.004313049408909989,0.5544347508400566,0.0,0.4159996527777778,-0.0,0.004915047355537669,0.0,0.0,0.0,-0.0,-22.545,1500.0852,203.43625 -0.5492920938111469,0.004920857955202443,0.5492920938111469,0.0,0.419205324074074,-0.0,0.005609772530776932,0.0,0.0,0.0,-0.0,-21.07,1499.5287,203.43625 -0.5442382963878338,0.007715062805879649,0.5442382963878338,0.0,0.41999976851851856,-0.0,0.008798401756801398,0.0,0.0,0.0,-0.0,-15.585,1498.9767,203.43625 -0.5392695754848207,0.01030189521035117,0.5392695754848207,0.0,0.42400011574074076,-0.0,0.01175276824638801,0.0,0.0,0.0,-0.0,-12.01,1498.429,203.43625 -0.5343833543597664,0.009973450258674842,0.5343833543597664,0.0,0.42400011574074076,-0.0,0.011382195644396943,0.0,0.0,0.0,-0.0,-12.425,1497.8854,203.43625 -0.5295771269136028,0.010056128714110974,0.5295771269136028,0.0,0.428,-0.0,0.011480687833989499,0.0,0.0,0.0,-0.0,-12.434999999999999,1497.3458,203.43625 -0.5248484553749097,0.010781783358580517,0.5248484553749097,0.0,0.42846388888888887,-0.0,0.01231354420337534,0.0,0.0,0.0,-0.0,-11.54,1496.8102,203.43625 -0.520192841483602,0.011265054648380658,0.520192841483602,0.0,0.43200000000000005,-0.0,0.012870048729524545,0.0,0.0,0.0,-0.0,-11.07,1496.2781,203.43625 -0.5156090876777911,0.013659440084294443,0.5156090876777911,0.0,0.4336695601851852,-0.0,0.01561109004407971,0.0,0.0,0.0,-0.0,-8.565,1495.7495,203.43625 -0.5110949750063591,0.011283474874684637,0.5110949750063591,0.0,0.43600011574074077,-0.0,0.012900177966924662,0.0,0.0,0.0,-0.0,-11.16,1495.2244,203.43625 -0.5066462724747012,0.01241271358602471,0.5066462724747012,0.0,0.4399488425925926,-0.0,0.014196171628521777,0.0,0.0,0.0,-0.0,-10.02,1494.7023,203.43625 -0.5022629846817179,0.015399945012621529,0.5022629846817179,0.0,0.4400003472222222,-0.0,0.01761872506416465,0.0,0.0,0.0,-0.0,-7.13,1494.1833,203.43625 -0.4979400105349844,0.01917167531661612,0.4979400105349844,0.0,0.4440001157407408,-0.0,0.021941456187363217,0.0,0.0,0.0,-0.0,-4.24,1493.6671,203.43625 -0.49367745287681886,0.02080048588932501,0.49367745287681886,-5.438695026906235e-14,0.4440081018518519,-5.438695026906235e-14,0.023813770840728908,0.0,0.0,0.0,-0.0,-3.095,1493.1537,203.43625 -0.4894733949298174,0.019589630350036802,0.4894733949298174,0.0,0.4480001157407407,-0.0,0.022435177487504943,0.0,0.0,0.0,-0.0,-4.055,1492.643,203.4366 -0.48534680298515215,0.013211272123846233,0.48534680298515215,0.0,0.4501516203703704,-0.0,0.015135439757324237,0.0,0.0,0.0,-0.0,-9.475000000000001,1492.1373,203.44748 -0.4813041887528374,0.01268810772146335,0.4813041887528374,0.0,0.452,-0.0,0.014540946368615444,5.27,0.0,5.27,-0.0,-10.06,1491.6378,203.4718 -0.47734207841019416,0.009474522607530064,0.47734207841019416,0.0,0.45599953703703705,-0.0,0.010861677504458132,4.4,0.0,4.4,-0.0,-13.96,1491.1442,203.50719 -0.473454196109832,0.007658560818103025,0.473454196109832,0.0,0.45599953703703705,-0.0,0.008782719314389748,0.0,0.0,0.0,-0.0,-16.635,1490.6558,203.55132 -0.4696373366679402,0.008514603278006017,0.4696373366679402,0.0,0.46,-0.0,0.009767583080048948,0.0,0.0,0.0,-0.0,-15.415,1490.1724,203.6018 -0.46588552885181517,0.01529667637208107,0.46588552885181517,0.0,0.4604638888888889,-0.0,0.017553325154188143,0.0,0.0,0.0,-0.0,-7.795000000000001,1489.6934,203.65631 -0.4621948687657777,0.020249947760540937,0.4621948687657777,5.06756441254197e-10,0.463999537037037,-0.0,0.023244741422245616,0.16,5.06756441254197e-10,0.15999999949324356,-0.0,-4.05,1489.2184,203.71246 -0.4585615641054991,0.022023544767365497,0.4585615641054991,2.796200297183734e-5,0.46799976851851854,-1.508727943929316e-13,0.025288641665649668,0.22,2.7962003122710133e-5,0.21997203799687728,-0.0,-2.9899999999999998,1488.7471,203.76793 -0.4549819301285409,0.014976687112242888,0.4549819301285409,0.0,0.46799976851851854,-0.0,0.017202461262351417,0.44,0.0,0.44,-0.0,-8.285,1488.279,203.82034 -0.4514514631319241,0.0073635177705817755,0.4514514631319241,0.0,0.4719996527777777,-0.0,0.008460498350119257,0.0,0.0,0.0,-0.0,-17.525,1487.8138,203.86734 -0.44796670393093024,0.007862134547274071,0.44796670393093024,0.0,0.4719996527777777,-0.0,0.00903620721174336,0.0,0.0,0.0,-0.0,-16.71,1487.3511,203.90657 -0.44452338137074326,0.01002943969541824,0.44452338137074326,0.0,0.4760001157407408,-0.0,0.011530734067471769,0.0,0.0,0.0,-0.0,-13.745000000000001,1486.8903,203.9357 -0.44111824758378015,0.01670662299388,0.44111824758378015,0.0,0.4800005787037037,-0.0,0.01921335071637114,0.0,0.0,0.0,-0.0,-7.135000000000001,1486.431,203.95233 -0.4377490402042513,0.02044225370743027,0.4377490402042513,0.0,0.4800005787037037,-0.0,0.023516734404116526,0.0,0.0,0.0,-0.0,-4.359999999999999,1485.9731,203.9449 -0.4344313175179312,0.016601081525679247,0.4344313175179312,0.0,0.4840002314814815,-0.0,0.019103697440498592,0.98,0.0,0.98,-0.0,-7.325,1485.5188,204.43163 -0.43116517878632143,0.01913623082907345,0.43116517878632143,2.877698079828406e-14,0.4840002314814815,-0.0,0.02202770380749805,5.4,2.877698079828406e-14,5.399999999999972,-0.0,-5.38,1485.0681,207.72931 -0.4279340919646671,0.02011581807927182,0.4279340919646671,1.157916929006575e-11,0.48800034722222224,-0.0,0.023162312478156758,6.61,1.157916929006575e-11,6.609999999988421,-0.0,-4.8,1484.6189,213.6258 -0.4248479097560457,0.02291032161376255,0.4248479097560457,0.00012143249661307096,0.4919994212962963,-5.438695026906235e-14,0.026387720007033853,2.73,0.00012143249666745792,2.7298785675033326,-0.0,-3.095,1484.1866,218.22534 -0.433268714216696,0.025970821447029422,0.433268714216696,2.998541965789336,0.4919994212962963,-1.1632094572252704e-6,0.029889147220086315,3.0,2.998543128998793,0.0014568710012070052,-0.0,-1.33,1485.3588,219.56389 -0.4551447095037423,0.030497083717473644,0.4551447095037423,4.4642849695815725,0.4959997685185185,1.7742849695820648,0.03502893311015045,2.69,2.689999999999508,4.921751894926274e-13,-0.0,0.8400000000000001,1488.3004,219.0447 -0.4973815464923067,0.03501578554428712,0.4973815464923067,7.1888319428854,0.4959997685185185,7.0588319428854005,0.040076403577830814,0.13,0.13,0.0,-0.0,2.815,1493.6001,214.69174 -0.5828798685776176,0.04129563729590859,0.5828798685776176,13.076566850909755,0.4999997685185186,13.076566850909755,0.04696596665997988,0.0,0.0,0.0,-0.0,5.065,1503.0731,204.72847 -0.7154052445441231,0.04214598377907841,0.7154052445441231,13.250412526029756,0.503999537037037,13.250412526029756,0.04754605849270115,0.0,0.0,0.0,-0.0,5.130000000000001,1515.3079,191.81226 -0.8764822103787269,0.04174303117118738,0.8764822103787269,12.541657081309754,0.503999537037037,12.541657081309754,0.04671758974864125,0.0,0.0,0.0,-0.0,4.865,1527.435,178.84921 -1.0910351521184345,0.04589061358372247,1.0910351521184345,15.710997466189756,0.5079996527777778,15.710997466189756,0.0509234781670193,0.0,0.0,0.0,-0.0,6.050000000000001,1540.5117,164.7862 -1.4092118553083812,0.046345869815133854,1.4092118553083812,17.530997466189753,0.5079996527777778,15.710997466189752,0.050923478167019295,1.82,1.82,0.0,-0.0,6.05,1555.7943,149.15887 -1.791479507508321,0.042361522913650196,1.791479507508321,14.641601076669753,0.511999537037037,11.391601076669753,0.04612068623051213,3.25,3.25,0.0,-0.0,4.435,1570.1278,135.77019 -2.1602033176529853,0.04350048173065795,2.1602033176529853,11.859647125069753,0.5159998842592592,11.859647125069753,0.04702595332745515,0.0,0.0,0.0,-0.0,4.609999999999999,1581.305,124.06414 -2.509377224290086,0.04256705949662866,2.509377224290086,10.763082097389752,0.5159998842592592,10.763082097389752,0.045757955724240434,0.0,0.0,0.0,-0.0,4.199999999999999,1590.253,112.75521 -2.9512934405224787,0.04663243979829723,2.9512934405224787,14.168931505309754,0.520000462962963,13.878931505309755,0.04982457381197396,0.29,0.29,0.0,-0.0,5.365,1599.9402,100.45633 -4.008881766019403,0.05282056558966928,4.008881766019403,28.842528268109753,0.520000462962963,18.492528268109755,0.05579841227696603,10.35,10.35,0.0,-0.0,7.09,1618.2306,84.15547 -5.935660688202096,0.050627025788118785,5.935660688202096,27.98809765282975,0.5240002314814816,15.858097652829752,0.052717656630969584,12.13,12.13,0.0,-0.0,6.1049999999999995,1641.6687,66.97402 -7.365993909031294,0.037581320563078724,7.365993909031294,11.424569808579939,0.5279998842592593,3.3545698085799414,0.038828283219233845,8.07,8.069999999999997,4.031774913926256e-15,-0.0,1.4300000000000002,1654.562,57.350773 -7.435321562852705,0.03881955556815376,7.435321562852705,4.611619597199364,0.5279998842592593,4.611619597199364,0.04009404655109191,0.0,0.0,0.0,-0.0,1.9,1655.1215,53.325275 -7.594095791151003,0.04782952297047754,7.594095791151003,12.581775314029755,0.5319998842592593,12.581775314029755,0.04936218859820317,0.0,0.0,0.0,-0.0,4.880000000000001,1656.3833,44.656296 -8.207016234156253,0.04764582201962798,8.207016234156253,12.384320429229755,0.5319998842592593,12.314320429229754,0.049035375947225644,0.07,0.07,0.0,-0.0,4.78,1661.0187,32.19514 -9.16743810125137,0.048645244332787455,9.16743810125137,18.128757267949755,0.5359994212962963,12.688757267949754,0.04986553256800752,5.44,5.44,0.0,-0.0,4.92,1667.6278,19.680891 -10.392647573939902,0.04347465660048368,10.392647573939902,16.39421464338777,0.5395353009259259,7.754214643387768,0.04436593720212078,8.64,8.64,0.0,-0.0,3.075,1675.1191,9.451196 -10.671286744695568,0.03766337632927514,10.671286744695568,8.183073043976218,0.54,2.0430730439766327,0.03839929834056271,6.14,6.139999999999587,4.130962238946267e-13,-0.0,0.94,1676.6992,4.5593376 -9.870857476826776,0.039993814011801423,9.870857476826776,2.1508859170867094,0.5439997685185185,1.9908859170867095,0.04088882412917765,0.16,0.16,0.0,-0.0,1.75,1672.0428,1.9908862 -8.641594736467072,0.046197926052838664,8.641594736467072,0.7311056103433455,0.5439997685185185,0.7311056103433455,0.04745721346474793,0.0,0.0,0.0,-0.0,3.9549999999999996,1664.1001,0.7315917 -7.596905908711802,0.05738757195274425,7.596905908711802,0.2565407712385215,0.5479999999999999,0.2565407712385215,0.059225728957884825,0.0,0.0,0.0,-0.0,7.2,1656.4054,0.2732332 -6.750205981499303,0.05418486760835343,6.750205981499303,0.08841266468334578,0.5498481481481481,0.08841266468334578,0.05615970489655226,0.0,0.0,0.0,-0.0,6.334999999999999,1649.3484,0.11610087 -6.06548503214386,0.046003842369861096,6.06548503214386,0.03693054769732259,0.5520004629629629,0.03693054769732259,0.04786588598640156,0.0,0.0,0.0,-0.0,3.8649999999999998,1642.9608,0.057675175 -5.504632661603347,0.04290772070959675,5.504632661603347,0.018099700790162224,0.5559922453703704,0.018099700790162224,0.044802453275555175,0.0,0.0,0.0,-0.0,2.7749999999999995,1637.1665,0.031331003 -5.037249931037885,0.053767580175640456,5.037249931037885,0.009680025735967455,0.5560002314814815,0.009680025735967455,0.05632416795844047,0.0,0.0,0.0,-0.0,6.21,1631.8676,0.017783025 -4.641792969809974,0.058584909996929814,4.641792969809974,0.005416068806167073,0.56,0.005416068806167073,0.06155473352410841,0.0,0.0,0.0,-0.0,7.459999999999999,1626.9849,0.010301955 -4.3052493068778945,0.06528338566258375,4.3052493068778945,0.06307485880427943,0.5600517361111111,0.0030748588042794392,0.06878279890113585,0.06,0.06,0.0,-0.0,9.18,1622.49,0.005971478 -4.015606740129287,0.08026972608244907,4.015606740129287,0.11177443312753858,0.5639996527777777,0.0017744331275385769,0.08478981978142389,0.11,0.11,0.0,-0.0,12.379999999999999,1618.3307,0.0034880403 -3.7594176279874874,0.08880969871676689,3.7594176279874874,0.0009530778353773191,0.5663305555555556,0.0009530778353773191,0.09403946503005518,0.0,0.0,0.0,-0.0,13.985,1614.3937,0.0018883273 -3.538038253617123,0.07439826560820546,3.538038253617123,0.0005342853368517722,0.5679997685185185,0.0005342853368517722,0.07895664841445997,0.0,0.0,0.0,-0.0,11.13,1610.7692,0.0010629217 -3.3934163554817602,0.105453459626311,3.3934163554817602,0.5202343267452206,0.5715351851851852,0.0002343267452206493,0.1120880345928595,0.52,0.52,0.0,-0.0,16.72,1608.2767,0.00046756043 -3.295386971869907,0.07235709796580418,3.295386971869907,2.2400216549959127,0.5719994212962963,2.1654995912475914e-5,0.07699323176674483,2.24,2.24,0.0,-0.0,10.620000000000001,1606.5261,4.3300617e-5 -3.2011904498474637,0.05601229348255105,3.2011904498474637,1.259952794231381,0.5760005787037037,-4.720576861900748e-5,0.05966549025317021,1.26,1.26,0.0,-0.0,6.55,1604.7942,-9.445615e-5 -3.1635988178632846,0.0570221641429672,3.1635988178632846,4.8699728296673355,0.5760005787037037,-2.71703326643332e-5,0.060767938737835904,4.87,4.87,0.0,-0.0,6.83,1604.0887,-5.4355438e-5 -3.1266083938049185,0.044764100815925016,3.1266083938049185,-1.4637603728810577e-5,0.5800003472222222,-1.4637603728810577e-5,0.04772554356295684,0.0,0.0,0.0,-0.0,3.0850000000000004,1603.3864,-2.9279494e-5 -2.976538492165954,0.04267451685620492,2.976538492165954,-8.560573496574534e-6,0.5807946759259259,-8.560573496574534e-6,0.04558122728127743,0.0,0.0,0.0,-0.0,2.385,1600.4489,-1.7122613e-5 -2.8332198444880925,0.04360702991409141,2.8332198444880925,-4.769791146068862e-6,0.5840005787037037,-4.769791146068862e-6,0.04666318133035441,0.0,0.0,0.0,-0.0,2.6500000000000004,1597.5018,-9.540037e-6 -2.704143338644882,0.046893073200550764,2.704143338644882,-1.9157604536835005e-6,0.5853530092592593,-1.9157604536835005e-6,0.050267146027801905,0.0,0.0,0.0,-0.0,3.7199999999999998,1594.7172,-3.8315943e-6 -2.5910963101729547,0.0418421780502793,2.5910963101729547,5.0000035402611,0.5880002314814815,3.540261100686591e-6,0.04492467058705761,5.0,5.0,0.0,-0.0,1.9899999999999998,1592.1669,7.0802716e-6 -2.4914124585787882,0.04060912559987912,2.4914124585787882,5.180010582770646,0.5903311342592593,1.0582770647288595e-5,0.043665033472204684,5.18,5.179999999999999,1.1501910535116621e-15,-0.0,1.5150000000000001,1589.824,2.1163334e-5 -2.402453265410909,0.04093314879206408,2.402453265410909,1.4300178051058339,0.5920008101851852,1.7805105834017006e-5,0.04407363589171338,1.43,1.43,7.938094626069869e-17,-0.0,1.6099999999999999,1587.6526,3.5603895e-5 -2.3219421970394927,0.03912028823109532,2.3219421970394927,2.3784397625668897e-5,0.5943310185185184,2.3784397625668897e-5,0.0421757650274199,0.0,0.0,0.0,-0.0,0.9099999999999997,1585.617,4.7588266e-5 -2.247889191354779,0.04205635821660103,2.247889191354779,2.7158744113438835e-5,0.5959997685185184,2.7158744113438835e-5,0.045396574402733876,0.0,0.0,0.0,-0.0,1.9449999999999998,1583.6813,5.4302745e-5 -2.1785345137565293,0.0486111754796329,2.1785345137565293,2.6473826435774445e-5,0.5987809027777777,2.6473826435774445e-5,0.052534075227834466,0.0,0.0,0.0,-0.0,4.04,1581.8097,5.2933643e-5 -2.112321115026826,0.060955549942364295,2.112321115026826,0.010020337767640471,0.5999998842592592,2.0337767640470648e-5,0.06595148748227604,0.01,0.01,0.0,-0.0,7.459999999999999,1579.9664,4.0667266e-5 -2.0695573169687167,0.07354508387169441,2.0695573169687167,4.420009497205189,0.6027810185185185,9.497205189421219e-6,0.0796344274169716,4.42,4.42,0.0,-0.0,10.325,1578.745,1.8992607e-5 -2.060494850942447,0.06712706287574824,2.060494850942447,6.689998146888524,0.6039996527777778,-1.8531114766372233e-6,0.07269707913795943,6.69,6.69,0.0,-0.0,8.865,1578.4829,-3.7062916e-6 -2.058095559984952,0.056231801199242745,2.058095559984952,0.019989354439384873,0.6063304398148148,-1.0645560615128998e-5,0.060900443579361994,0.02,0.02,0.0,-0.0,6.08,1578.4133,-2.1293388e-5 -2.0358697567414437,0.061222862379773015,2.0358697567414437,-1.3823508533180363e-5,0.6079995370370371,-1.3823508533180363e-5,0.06633313807224914,0.0,0.0,0.0,-0.0,7.345000000000001,1577.7649,-2.765084e-5 -1.9860450858503746,0.07643814001440863,1.9860450858503746,-9.384725166996867e-6,0.6098476851851852,-9.384725166996867e-6,0.08289618150348112,0.0,0.0,0.0,-0.0,10.775,1576.2852,-1.8771212e-5 -2.0011469304121543,0.06086839696437133,2.0011469304121543,0.5399961036277798,0.6120002314814815,-3.896372220199577e-6,0.06599205538897172,0.54,0.54,0.0,-0.0,7.164999999999999,1576.7375,-7.793048e-6 -2.0387098108484136,0.0724299324692876,2.0387098108484136,4.340000021992844,0.6133524305555556,2.1992844386361615e-8,0.07847152230997069,4.34,4.34,0.0,-0.0,9.82,1577.8481,4.398568e-8 -2.0240483814407417,0.06278426288820302,2.0240483814407417,1.2616834529405609e-6,0.6159914351851852,1.2616834529405609e-6,0.06803986643278732,0.0,0.0,0.0,-0.0,7.535,1577.4171,2.523335e-6 -1.993989246015333,0.08789934665788995,1.993989246015333,6.88243706543643e-7,0.6162851851851852,6.88243706543643e-7,0.09531129772433436,0.0,0.0,0.0,-0.0,12.835,1576.5236,1.3764779e-6 -2.025397570147867,0.0691853351222551,2.025397570147867,4.290000258909767,0.6195356481481481,2.5890976716777873e-7,0.07497487412363497,4.29,4.29,0.0,-0.0,8.950000000000001,1577.4569,5.178182e-7 -2.0804917090336317,0.06117406791323831,2.0804917090336317,4.040000058767028,0.6199998842592592,5.876702758522512e-8,0.06622592213017568,4.04,4.04,0.0,-0.0,7.0200000000000005,1579.0597,1.17533986e-7 -2.0982837258744023,0.07392895588447995,2.0982837258744023,3.033569694211946e-8,0.6227818287037037,3.033569694211946e-8,0.08000836239896851,0.0,0.0,0.0,-0.0,9.885,1579.5682,6.0671375e-8 -2.0523150937748933,0.06645492667173299,2.0523150937748933,7.527216750279068e-9,0.6240006944444445,7.527216750279068e-9,0.07198000335284548,0.0,0.0,0.0,-0.0,8.205,1578.2454,1.5054432e-8 -1.9787513100141576,0.055079165145855785,1.9787513100141576,-5.907653572606996e-9,0.6253526620370371,-5.907653572606996e-9,0.059740975077574233,0.0,0.0,0.0,-0.0,5.32,1576.0654,-1.1815308e-8 -1.9112865132576158,0.06307458215905822,1.9112865132576158,-5.877253893418495e-9,0.6278895833333333,-5.877253893418495e-9,0.0685031548351982,0.0,0.0,0.0,-0.0,7.345000000000001,1573.9938,-1.17545085e-8 -1.8658566352660813,0.08874349505712721,1.8658566352660813,-2.646475413165078e-9,0.6280518518518519,-2.646475413165078e-9,0.09646933796326847,0.0,0.0,0.0,-0.0,12.725,1572.5571,-5.292951e-9 -1.8472731948617758,0.10697825184495931,1.8472731948617758,2.1999999996590436,0.6303303240740741,-3.409565396160783e-10,0.11633580150380113,2.2,2.2,0.0,-0.0,15.715,1571.9594,-6.819131e-10 -1.8614073290775048,0.07665386532244675,1.8614073290775048,3.0200000004317116,0.6319916666666667,4.317116960347496e-10,0.0833347633120527,3.02,3.02,0.0,-0.0,10.295,1572.4146,8.634234e-10 -1.8727113081832814,0.07327219398962434,1.8727113081832814,1.0000000001765688,0.6322856481481481,1.7656881543627693e-10,0.07964004366122171,1.0,1.0,0.0,-0.0,9.575,1572.7761,3.5313763e-10 -1.8476357169515214,0.07120978243634812,1.8476357169515214,0.29999999989092346,0.6347809027777778,-1.0907652547058071e-10,0.07743803263058303,0.3,0.3,0.0,-0.0,9.075,1571.9711,-2.1815305e-10 -1.7995905171122468,0.09512290067703666,1.7995905171122468,-3.4718022780469453e-10,0.6360001157407408,-3.4718022780469453e-10,0.10354631979862282,0.0,0.0,0.0,-0.0,13.665,1570.3976,-6.9436046e-10 -1.7419688199821934,0.10535293161337575,1.7419688199821934,-4.5977546558432985e-10,0.6362856481481481,-4.5977546558432985e-10,0.1148243542667993,0.0,0.0,0.0,-0.0,15.344999999999999,1568.4541,-9.1955094e-10 -1.686940219326007,0.11428499601419416,1.686940219326007,-3.701256509792436e-10,0.6387810185185185,-3.701256509792436e-10,0.12471185273334522,0.0,0.0,0.0,-0.0,16.645,1566.5371,-7.402513e-10 -1.6536330360857354,0.10371455650296932,1.6536330360857354,-1.980617194104601e-10,0.6399917824074074,-1.980617194104601e-10,0.11326311840996944,0.0,0.0,0.0,-0.0,15.025,1565.3462,-3.9612344e-10 -1.7144685064107041,0.10753407476172758,1.7144685064107041,7.05999999992143,0.6400512731481481,-7.856996991284104e-11,0.11727264102617074,7.06,7.06,0.0,-0.0,15.595,1567.5038,-1.5713994e-10 -1.9717059717832601,0.12152468953022892,1.9717059717832601,14.729999999967886,0.6418483796296296,-3.2115112642239375e-11,0.1318281565404579,14.73,14.73,0.0,-0.0,17.49,1575.8524,-6.4230225e-11 -2.1349974773297133,0.13447845778549003,2.1349974773297133,2.699999999982372,0.6435354166666667,-1.7628095161038598e-11,0.14544165560721004,2.7,2.7,0.0,-0.0,19.1,1580.6041,-3.525619e-11 -2.1001116257818557,0.11569219950614634,2.1001116257818557,-8.645803690284461e-12,0.6439998842592592,-8.645803690284461e-12,0.12520180476307563,0.0,0.0,0.0,-0.0,16.575,1579.6202,-1.7291607e-11 -2.0290647814210354,0.12705912160734578,2.0290647814210354,0.009999999995060646,0.6442856481481481,-4.9393540470568646e-12,0.13768220203618758,0.01,0.01,0.0,-0.0,18.155,1577.565,-9.878708e-12 -2.0170891286665036,0.1004790037846465,2.0170891286665036,3.299999999997365,0.6458482638888889,-2.634778246204918e-12,0.10890419444609924,3.3,3.3,0.0,-0.0,14.235,1577.2114,-5.2695565e-12 -2.1262872507776445,0.09824959306346874,2.1262872507776445,8.119999999998523,0.6471538194444444,-1.4770206541993014e-12,0.1062756907529848,8.12,8.12,0.0,-0.0,13.805,1580.36,-2.9540413e-12 -2.22843230130941,0.0885733676016122,2.22843230130941,6.589999999999234,0.6479927083333333,-7.652279959806114e-13,0.09563942819601384,6.59,6.59,0.0,-0.0,12.085,1583.1621,-1.530456e-12 -2.2736051062579437,0.07565244798560262,2.2736051062579437,0.11999999999967582,0.6480521990740741,-3.2417384748690097e-13,0.08162593217190543,0.12,0.12,0.0,-0.0,9.575,1584.3606,-6.483477e-13 -2.3191815836409284,0.09177282101543457,2.3191815836409284,5.369999999999825,0.6487947916666666,-1.749583686475104e-13,0.09894513928424267,5.37,5.37,0.0,-0.0,12.61,1585.5459,-3.4991674e-13 -2.538696821231493,0.0958836482922022,2.538696821231493,9.979999999999912,0.6498487268518519,-8.953605814656822e-14,0.10302629922363249,9.98,9.98,0.0,-0.0,13.235,1590.9468,-1.7907212e-13 -2.8299092045928926,0.08970027152087505,2.8299092045928926,8.649999999999956,0.6507814814814814,-4.426004308604547e-14,0.095991013416322,8.65,8.65,0.0,-0.0,12.075000000000001,1597.432,-8.8520086e-14 -2.9263641864388616,0.09548466204229336,2.9263641864388616,1.8599999999999741,0.6515357638888889,-2.607266683909475e-14,0.10205319428676705,1.86,1.86,0.0,-0.0,13.04,1599.4336,-5.2145334e-14 -2.9054379440060565,0.09792110593281406,2.9054379440060565,3.489999999999985,0.6519921296296297,-1.5317288114418797e-14,0.10468529656046864,3.49,3.49,0.0,-0.0,13.44,1599.005,-3.0634576e-14 -2.90123036107787,0.0970428473454243,2.90123036107787,2.629999999999991,0.6520001157407407,-8.908267529129312e-15,0.1037519853449017,2.63,2.63,0.0,-0.0,13.294999999999998,1598.9185,-1.7816535e-14 -2.869465303973783,0.10981445854669564,2.869465303973783,1.9599999999999949,0.6520517361111111,-5.165443234548741e-15,0.1174548696206302,1.96,1.96,0.0,-0.0,15.315000000000001,1598.261,-1.03308865e-14 -2.820992093773988,0.12850852472333607,2.820992093773988,8.069999999999999,0.6522856481481482,-1.9920446738143356e-15,0.13753714380179638,8.07,8.07,0.0,-0.0,17.93,1597.2435,-3.9840893e-15 -2.7559720595274992,0.10663949241249,2.7559720595274992,6.599624386005219e-16,0.6527943287037037,6.599624386005219e-16,0.11423125367260724,0.0,0.0,0.0,-0.0,14.84,1595.851,1.3199249e-15 -2.6688184701212903,0.09468438323935077,2.6688184701212903,2.0397322052283604e-15,0.653352662037037,2.0397322052283604e-15,0.10154716360466663,0.0,0.0,0.0,-0.0,12.915,1593.9319,4.0794644e-15 -2.5656829705691235,0.09969373561515077,2.5656829705691235,1.5633665931649183e-15,0.653848611111111,1.5633665931649183e-15,0.10707771030894744,0.0,0.0,0.0,-0.0,13.76,1591.5782,3.1267332e-15 -2.536253884562251,0.12118006900888104,2.536253884562251,0.7500000000000007,0.653848611111111,6.498829053468731e-16,0.13021182937115966,0.75,0.75,0.0,-0.0,16.975,1590.8893,1.2997658e-15 -2.5414330026597556,0.11062233188089786,2.5414330026597556,3.98,0.653848611111111,-4.5219611586611904e-17,0.11885810396958522,3.98,3.98,0.0,-0.0,15.465,1591.0111,-9.043922e-17 -2.5078184109560113,0.09962046010606788,2.5078184109560113,-3.281253701128235e-16,0.6543310185185185,-3.281253701128235e-16,0.1070906713414713,0.0,0.0,0.0,-0.0,13.75,1590.216,-6.5625074e-16 -2.4023010381668928,0.12418246337752915,2.4023010381668928,-2.0632978794307904e-16,0.6543310185185185,-2.0632978794307904e-16,0.13371035168127898,0.0,0.0,0.0,-0.0,17.405,1587.6488,-4.1265958e-16 -2.300795341831934,0.13381742530274437,2.300795341831934,-1.0496899473985249e-16,0.653848611111111,-1.0496899473985249e-16,0.1443189205201928,0.0,0.0,0.0,-0.0,18.7,1585.0706,-2.0993799e-16 -2.2304647602537893,0.12293227236105511,2.2304647602537893,1.23,0.653848611111111,-5.61290022092757e-17,0.13273479659092688,1.23,1.23,0.0,-0.0,17.295,1583.2166,-1.12258e-16 -2.15635198577324,0.10452918321982824,2.15635198577324,0.32999999999999996,0.653352662037037,-3.184348235053126e-17,0.11300830679331153,0.33,0.33,0.0,-0.0,14.65,1581.1985,-6.3686965e-17 -2.2110592584623867,0.11393185216894527,2.2110592584623867,7.09,0.653352662037037,-1.7955374637394604e-17,0.12305725127226012,7.09,7.09,0.0,-0.0,16.049999999999997,1582.6947,-3.591075e-17 -2.908539669242959,0.11421436629517295,2.908539669242959,28.02,0.6527943287037037,-1.0590816071809426e-17,0.12209919649512603,28.02,28.02,0.0,-0.0,15.934999999999999,1599.0687,-2.1181632e-17 -4.3134676380261805,0.11566488173096567,4.3134676380261805,28.21,0.6522856481481482,-6.299101132960738e-18,0.12185636207153092,28.21,28.21,0.0,-0.0,15.915000000000001,1622.6039,-1.2598202e-17 -5.294450750994491,0.12130674434123585,5.294450750994491,7.36,0.6520517361111111,-3.752748039946901e-18,0.12684357695770374,7.36,7.36,0.0,-0.0,16.585,1634.8416,-7.505496e-18 -5.39861823399744,0.13842007727913383,5.39861823399744,5.76,0.6519921296296297,-2.2138767379897333e-18,0.14463507595642539,5.76,5.76,0.0,-0.0,18.785,1636.0051,-4.4277535e-18 -5.249503763444411,0.11866997284103506,5.249503763444411,1.74,0.6518894675925926,-1.2900265257773538e-18,0.12412511220974365,1.74,1.74,0.0,-0.0,16.23,1634.3324,-2.580053e-18 -4.882103852558841,0.10224505675260022,4.882103852558841,-7.348676697824161e-19,0.6511538194444445,-7.348676697824161e-19,0.10722945830198374,0.0,0.0,0.0,-0.0,13.85,1629.9993,-1.4697353e-18 -4.606207705446044,0.10827912313905434,4.606207705446044,2.81,0.6503311342592593,-3.948893552891267e-19,0.11380022390250027,2.81,2.81,0.0,-0.0,14.84,1626.5253,-7.897787e-19 -4.646729359526107,0.11306926671529137,4.646729359526107,7.79,0.6493528935185184,-2.324105585647631e-19,0.11879641109064384,7.79,7.79,0.0,-0.0,15.57,1627.0483,-4.648211e-19 -4.82876900356377,0.12158318684268257,4.82876900356377,6.61,0.6482863425925927,-1.3367327879266718e-19,0.12756165190616753,6.61,6.61,0.0,-0.0,16.775,1629.3433,-2.6734656e-19 -4.701675270100201,0.1301802476413129,4.701675270100201,-7.864970265943141e-20,0.6480008101851852,-7.864970265943141e-20,0.13671510256446273,0.0,0.0,0.0,-0.0,17.939999999999998,1627.7504,-1.572994e-19 -4.3410021655709485,0.1599580829447614,4.3410021655709485,-4.5189704044384455e-20,0.647890162037037,-4.5189704044384455e-20,0.16848109772736847,0.0,0.0,0.0,-0.0,21.5,1622.9839,-9.037941e-20 -4.0360886666521765,0.16492002003942596,4.0360886666521765,-2.652060274175488e-20,0.64678125,-2.652060274175488e-20,0.1741741826881819,0.0,0.0,0.0,-0.0,22.105,1618.6345,-5.3041205e-20 -3.7703607436843236,0.16999972900570132,3.7703607436843236,-1.5316974488478305e-20,0.645352199074074,-1.5316974488478305e-20,0.17999120653680534,0.0,0.0,0.0,-0.0,22.715,1614.5673,-3.063395e-20 -3.5600843808068263,0.17641223111309423,3.5600843808068263,1.14,0.6440515046296297,-3.738712581484769e-21,0.18717790264426168,1.14,1.14,0.0,-0.0,23.435000000000002,1611.1401,-7.477425e-21 -3.4119310600809087,0.18235853152884496,3.4119310600809087,0.05,0.6438894675925926,1.1992433016844684e-20,0.19379241200066194,0.05,0.05,0.0,-0.0,24.05,1608.6017,2.3984866e-20 -3.312588057739296,0.18241310401169059,3.312588057739296,2.783317358398888e-20,0.6427809027777778,2.783317358398888e-20,0.194063295107763,0.0,0.0,0.0,-0.0,24.105,1606.837,5.566635e-20 -3.251826698011953,0.195061570567623,3.251826698011953,3.974022201301377e-20,0.6407940972222222,3.974022201301377e-20,0.20766246521698303,0.0,0.0,0.0,-0.0,25.36,1605.7314,7.9480444e-20 -3.2214273352210636,0.18005089969273302,3.2214273352210636,7.12,0.6399997685185186,4.3670286350223916e-20,0.1917490930471177,7.12,7.12,0.0,-0.0,23.97,1605.1705,8.734057e-20 -3.214356523935654,0.14075413139767184,3.214356523935654,3.79,0.6395354166666667,3.5580081912065974e-20,0.14991140673564943,3.79,3.79,0.0,-0.0,19.72,1605.0393,7.1160164e-20 -3.169145485848518,0.0964945018732026,3.169145485848518,1.9055763002558366e-20,0.6378482638888888,1.9055763002558366e-20,0.1028265004028884,0.0,0.0,0.0,-0.0,13.504999999999999,1604.1934,3.8111526e-20 -3.0392794950866326,0.11257728169083868,3.0392794950866326,5.3172736894428495e-21,0.6360001157407408,5.3172736894428495e-21,0.12015179211992785,0.0,0.0,0.0,-0.0,16.1,1601.6946,1.0634547e-20 -2.881037357808754,0.1314437670024421,2.881037357808754,-2.480659525135586e-21,0.6355359953703703,-2.480659525135586e-21,0.14056791154492362,0.0,0.0,0.0,-0.0,18.735,1598.5013,-4.961319e-21 -2.7484674487879825,0.11289586895738615,2.7484674487879825,-2.431083214448173e-21,0.6338483796296296,-2.431083214448173e-21,0.1209453686376597,0.0,0.0,0.0,-0.0,16.265,1595.6881,-4.8621664e-21 -2.683248085364574,0.09730061546927639,2.683248085364574,-1.0778572327059217e-21,0.6319996527777777,-1.0778572327059217e-21,0.10433194375636107,0.0,0.0,0.0,-0.0,13.89,1594.2539,-2.1557145e-21 -2.644739514470991,0.10411420547956146,2.644739514470991,2.79,0.6315355324074073,-1.7468461416744633e-22,0.11169839497142121,2.79,2.79,0.0,-0.0,15.015,1593.3906,-3.4936923e-22 -2.593793532734188,0.11645982888012964,2.593793532734188,0.62,0.6287943287037038,5.394286405709006e-23,0.12503448737319617,0.62,0.62,0.0,-0.0,16.950000000000003,1592.229,1.0788573e-22 -2.7731506656670644,0.126134297747719,2.7731506656670644,11.12,0.628,3.047400284671891e-23,0.13508250008711337,11.12,11.12,0.0,-0.0,18.265,1596.222,6.0948006e-23 -3.4836216218629934,0.1566767167815626,3.4836216218629934,22.86,0.6267813657407407,1.6846465418905763e-23,0.16637191026422268,22.86,22.86,0.0,-0.0,21.855,1609.8435,3.369293e-23 -4.199850845882746,0.15549632909598968,4.199850845882746,7.9,0.624052199074074,9.762673561446562e-24,0.16398106797506948,7.9,7.9,0.0,-0.0,21.68,1621.0098,1.9525347e-23 -4.299023339337497,0.12503654412846082,4.299023339337497,3.96,0.6238902777777778,5.4336766761754976e-24,0.13174594923303162,3.96,3.96,0.0,-0.0,17.955,1622.4036,1.0867353e-23 -4.3263595430005,0.09671806731389726,4.3263595430005,5.45,0.6207944444444444,3.2321633021451852e-24,0.10188414394118006,5.45,5.45,0.0,-0.0,13.795000000000002,1622.7821,6.4643266e-24 -4.31319432270299,0.08553689449187572,4.31319432270299,3.18,0.6199998842592592,1.9191461350327878e-24,0.09011584967191781,3.18,3.18,0.0,-0.0,11.84,1622.6001,3.8382923e-24 -4.0950149273954555,0.08573192105750087,4.0950149273954555,0.01,0.6183303240740741,1.0774968274018752e-24,0.09049420545983289,0.01,0.01,0.0,-0.0,11.95,1619.5001,2.1549937e-24 -3.9815082995433877,0.09049668275919735,3.9815082995433877,4.93,0.615999537037037,5.958312269674418e-25,0.09562276163433135,4.93,4.93,0.0,-0.0,12.895,1617.8214,1.1916625e-24 -3.984211153502644,0.08719775667547325,3.984211153502644,3.53,0.6151532407407407,3.510669905176365e-25,0.09213466371088434,3.53,3.53,0.0,-0.0,12.32,1617.8619,7.02134e-25 -3.9409350999280073,0.093220146994868,3.9409350999280073,3.24,0.6120002314814815,2.0629331434301991e-25,0.09853775020343371,3.24,3.24,0.0,-0.0,13.485,1617.2097,4.1258663e-25 -3.912905687692896,0.09220815529217068,3.912905687692896,3.63,0.6115356481481482,1.0295615958885073e-25,0.09749372867690853,3.63,3.63,0.0,-0.0,13.325,1616.7834,2.0591232e-25 -3.9571032035875517,0.10197396207513598,3.9571032035875517,5.65,0.6080510416666667,3.220071974990652e-26,0.10777461900653268,5.65,5.65,0.0,-0.0,15.049999999999999,1617.4542,6.440144e-26 -4.123649188613197,0.118313271766736,4.123649188613197,8.0,0.6078891203703704,8.720818788619398e-27,0.12485332153626132,8.0,8.0,0.0,-0.0,17.490000000000002,1619.9163,1.7441638e-26 -4.121070749818573,0.11022250894182535,4.121070749818573,2.11,0.6042853009259259,4.748208099749702e-27,0.11631800456475594,2.11,2.11,0.0,-0.0,16.41,1619.8789,9.496416e-27 -3.913185632529788,0.09008951449741923,3.913185632529788,2.2589783133681984e-27,0.6039916666666666,2.2589783133681984e-27,0.09525339103865864,0.0,0.0,0.0,-0.0,13.15,1616.7877,4.5179566e-27 -3.6913354120880357,0.10186152988964992,3.6913354120880357,1.2722005655631934e-27,0.6002854166666667,1.2722005655631934e-27,0.10793285306347679,0.0,0.0,0.0,-0.0,15.285,1613.3022,2.5444011e-27 -3.6233083744983112,0.1167780505834342,3.6233083744983112,4.33,0.5999998842592592,6.73761361361603e-28,0.12382371231243423,4.33,4.33,0.0,-0.0,17.57,1612.1914,1.3475227e-27 -3.743406787720245,0.11175688323649353,3.743406787720245,7.59,0.5962851851851851,3.67852378636719e-28,0.11835663436583345,7.59,7.59,0.0,-0.0,16.919999999999998,1614.1388,7.3570476e-28 -3.8547557424401977,0.11276845955852767,3.8547557424401977,2.59,0.5959997685185184,1.7553744033371632e-28,0.11929857290177792,2.59,2.59,0.0,-0.0,17.060000000000002,1615.8893,3.5107488e-28 -3.8412428848002222,0.10657933040499089,3.8412428848002222,3.6,0.5920523148148148,3.0488996717277763e-29,0.11276568338826647,3.6,3.6,0.0,-0.0,16.235,1615.6796,6.0977993e-29 -3.697701531957423,0.10092039655724004,3.697701531957423,-3.128223309459118e-29,0.591992824074074,-3.128223309459118e-29,0.10692880420441843,0.0,0.0,0.0,-0.0,15.36,1613.4052,-6.2564466e-29 -3.5157549391260585,0.10563100454188566,3.5157549391260585,-1.6569148460490115e-29,0.5880002314814815,-1.6569148460490115e-29,0.11212928376497124,0.0,0.0,0.0,-0.0,16.255,1610.3918,-3.3138297e-29 -3.439330240410707,0.11908535054284104,3.439330240410707,2.566905384794574e-30,0.5879922453703703,2.566905384794574e-30,0.12651443494953346,0.0,0.0,0.0,-0.0,18.27,1609.0793,5.1338108e-30 -3.4270354798388296,0.12808320339820864,3.4270354798388296,0.7,0.5840005787037037,1.8810643530897969e-29,0.13609170301022577,0.7,0.7,0.0,-0.0,19.62,1608.8655,3.7621287e-29 -3.438528898913471,0.14416263518969996,3.438528898913471,7.36,0.5835359953703704,2.698154125080834e-29,0.1531574789499523,7.36,7.36,0.0,-0.0,21.66,1609.0654,5.396308e-29 -3.4339353358956397,0.15199472078026,3.4339353358956397,2.78,0.5800003472222222,2.200022426004628e-29,0.16148624969269526,2.78,2.78,0.0,-0.0,22.685000000000002,1608.9856,4.400045e-29 -3.35895277072039,0.15090038004671746,3.35895277072039,0.91,0.5787818287037036,1.1577827166446626e-29,0.1604550559943718,0.91,0.91,0.0,-0.0,22.61,1607.6671,2.3155654e-29 -3.3079125550412813,0.10305456982409684,3.3079125550412813,3.62,0.5760005787037037,4.17145743061615e-30,0.10964211923624602,3.62,3.62,0.0,-0.0,16.225,1606.7527,8.342915e-30 -3.4336124723368764,0.10666165196566943,3.4336124723368764,8.19,0.5738478009259259,1.2415437797226747e-30,0.11332268769291337,8.19,8.19,0.0,-0.0,16.835,1608.98,2.4830876e-30 -3.574894600622147,0.09374704027856005,3.574894600622147,1.16,0.5719994212962963,6.741237698434643e-31,0.09945271065017272,1.16,1.16,0.0,-0.0,14.735,1611.3881,1.3482475e-30 -3.6647066870936262,0.09580999784932571,3.6647066870936262,7.1,0.5680513888888888,2.891312438262755e-31,0.10154784270429243,7.1,7.1,0.0,-0.0,15.19,1612.8699,5.782625e-31 -3.8709184123236695,0.0837212192662142,3.8709184123236695,9.03,0.5679997685185185,1.3894912165985236e-31,0.08855559223626713,9.03,9.03,0.0,-0.0,12.965,1616.1392,2.7789824e-31 -3.8339164337861322,0.06972898651822361,3.8339164337861322,0.02,0.5639996527777777,7.366640307231723e-32,0.07378158313580632,0.02,0.02,0.0,-0.0,10.17,1615.5656,1.4733281e-31 -3.604324375234557,0.0706361987368665,3.604324375234557,0.52,0.5639916666666667,3.356136288617451e-32,0.07491252535548175,0.52,0.52,0.0,-0.0,10.41,1611.8777,6.7122726e-32 -3.403753252985241,0.06769211773732249,3.403753252985241,1.8779768278397915e-32,0.56,1.8779768278397915e-32,0.07194282311781894,0.0,0.0,0.0,-0.0,9.885,1608.4584,3.7559537e-32 -3.2193735550351477,0.06536169455080199,3.2193735550351477,9.794918350190039e-33,0.558330324074074,9.794918350190039e-33,0.06960999945347332,0.0,0.0,0.0,-0.0,9.415,1605.1324,1.9589837e-32 -3.050700674255643,0.07242637617821661,3.050700674255643,5.2239490576160634e-33,0.5560002314814815,5.2239490576160634e-33,0.07728861388437418,0.0,0.0,0.0,-0.0,11.13,1601.9186,1.0447898e-32 -2.9048559966697667,0.07421252933855958,2.9048559966697667,0.3,0.5520519675925926,1.4694285499553237e-33,0.07933957334220294,0.3,0.3,0.0,-0.0,11.66,1598.993,2.9388571e-33 -2.788999371347193,0.0752390387437246,2.788999371347193,0.01,0.5520004629629629,-2.6810250873562484e-33,0.08055946032328223,0.01,0.01,0.0,-0.0,11.905,1596.5624,-5.36205e-33 -2.709587752600733,0.10071945745603,2.709587752600733,0.01,0.5479999999999999,-6.095342285196656e-33,0.10795834039163826,0.01,0.01,0.0,-0.0,16.794999999999998,1594.8373,-1.21906846e-32 -2.673120610341356,0.1008486611903535,2.673120610341356,4.07,0.5479921296296296,-7.641453841785887e-33,0.10815170529108312,4.07,4.07,0.0,-0.0,16.825,1594.0281,-1.5282908e-32 -2.6872054462414177,0.07608560868672676,2.6872054462414177,3.64,0.5439997685185185,-6.190563939768985e-33,0.08157935277681556,3.64,3.64,0.0,-0.0,12.34,1594.3419,-1.2381128e-32 -2.674257357081398,0.060055417748293684,2.674257357081398,0.46,0.540794212962963,-2.9926908840874695e-33,0.06440335755270439,0.46,0.46,0.0,-0.0,8.7,1594.0535,-5.9853818e-33 -2.590757368767789,0.05714161619414783,2.590757368767789,-2.183468588449158e-34,0.54,-2.183468588449158e-34,0.06135151180446603,0.0,0.0,0.0,-0.0,7.97,1592.159,-4.366937e-34 -2.4777156449562057,0.07399610068271904,2.4777156449562057,1.4240090094429852e-33,0.5359994212962963,1.4240090094429852e-33,0.0795809167041334,0.0,0.0,0.0,-0.0,12.18,1589.4948,2.848018e-33 -2.3697563915663964,0.09490943474143858,2.3697563915663964,1.3073534092448621e-33,0.5359994212962963,1.3073534092448621e-33,0.10224381080936477,0.0,0.0,0.0,-0.0,16.259999999999998,1586.8342,2.6147068e-33 -2.2594240059912525,0.10527977856360306,2.2594240059912525,7.2608366688423e-34,0.5319998842592593,7.2608366688423e-34,0.11361941992741696,0.0,0.0,0.0,-0.0,18.145,1583.9869,1.4521673e-33 -2.201912693934018,0.11117812471244479,2.201912693934018,1.03,0.5298482638888888,3.862542193687569e-34,0.120101749174262,1.03,1.03,0.0,-0.0,19.15,1582.4471,7.725084e-34 -2.4896561488487947,0.09503292517081599,2.4896561488487947,17.34,0.5279998842592593,2.2897236350363963e-34,0.10218702626597906,17.34,17.34,0.0,-0.0,16.5,1589.7819,4.5794473e-34 -3.0547566093498366,0.07570903931253467,3.0547566093498366,12.67,0.5240002314814816,1.3561524500980666e-34,0.08078765220851285,12.67,12.67,0.0,-0.0,12.785,1601.9979,2.712305e-34 -3.264113318393453,0.08232239106225958,3.264113318393453,2.19,0.5240002314814816,8.129249421312833e-35,0.0876280918695239,2.19,2.19,0.0,-0.0,14.100000000000001,1605.9567,1.6258499e-34 -3.3142948054614934,0.0862673060362685,3.3142948054614934,0.25,0.520000462962963,4.461148572136285e-35,0.09177518943079727,0.25,0.25,0.0,-0.0,14.98,1606.8678,8.922297e-35 -3.6297203949826193,0.07551202316446713,3.6297203949826193,11.08,0.5183310185185186,1.677243467292945e-35,0.08006270556726969,11.08,11.08,0.0,-0.0,12.815,1612.297,3.354487e-35 -4.207154154092301,0.07864113817280306,4.207154154092301,18.32,0.5159998842592592,3.027984553827791e-36,0.08292692508949479,18.32,18.32,0.0,-0.0,13.455,1621.1135,6.055969e-36 -4.536131657224566,0.07754941174828958,4.536131657224566,1.6004283122499257e-36,0.511999537037037,1.6004283122499257e-36,0.081549521240647,0.0,0.0,0.0,-0.0,13.309999999999999,1625.6097,3.2008566e-36 -4.197001703844401,0.07802451870576334,4.197001703844401,0.02,0.511999537037037,9.32321490376471e-37,0.08228402476228751,0.02,0.02,0.0,-0.0,13.455,1620.9692,1.864643e-36 -4.133100377698476,0.06591751854402791,4.133100377698476,5.43,0.5079996527777778,5.5675148473594854e-37,0.06955539704621362,5.43,5.43,0.0,-0.0,10.89,1620.053,1.113503e-36 -4.041570338518404,0.05916312579042537,4.041570338518404,3.3306212119267628e-37,0.5067805555555556,3.3306212119267628e-37,0.0624798195266977,0.0,0.0,0.0,-0.0,9.24,1618.7156,6.6612424e-37 -3.7884377831374576,0.058211447032889614,3.7884377831374576,1.9577330089792985e-37,0.503999537037037,1.9577330089792985e-37,0.06162183503184923,0.0,0.0,0.0,-0.0,9.11,1614.8529,3.915466e-37 -3.6241453705329714,0.05538586464330898,3.6241453705329714,0.86,0.4999997685185186,1.1515365191335418e-37,0.0587270009911477,0.86,0.86,0.0,-0.0,8.485,1612.2052,2.303073e-37 -3.8323650849855873,0.05611106033367247,3.8323650849855873,13.88,0.4999997685185186,6.551141506680508e-38,0.059373081512601504,13.88,13.88,0.0,-0.0,8.655,1615.5414,1.3102283e-37 -4.353353429823447,0.05760039957675966,4.353353429823447,9.84,0.4959997685185185,3.8829913184114393e-38,0.06066316809529251,9.84,9.84,0.0,-0.0,9.115,1623.1536,7.7659826e-38 -4.552749697129158,0.06438778620725265,4.552749697129158,4.55,0.49366840277777774,2.28495125034465e-38,0.06769990546414807,4.55,4.55,0.0,-0.0,10.915,1625.8281,4.5699025e-38 -4.400483657370686,0.0578949697908322,4.400483657370686,2.0,0.4919994212962963,1.2077417317325624e-38,0.06094925432235445,2.0,2.0,0.0,-0.0,9.315,1623.7966,2.4154835e-38 -4.128878423189703,0.04555685566435062,4.128878423189703,4.724612997772928e-39,0.48800034722222224,4.724612997772928e-39,0.04807287409262944,0.0,0.0,0.0,-0.0,5.784999999999999,1619.992,9.449226e-39 -3.9616272476632513,0.04093391043451188,3.9616272476632513,3.28,0.48800034722222224,2.0146292859289854e-39,0.04326055790207884,3.28,3.28,0.0,-0.0,4.195,1617.5225,4.029259e-39 -3.819274199470175,0.0419033728928903,3.819274199470175,1.08,0.4840002314814815,1.1711064649409472e-39,0.04434503806641759,1.08,1.08,0.0,-0.0,4.69,1615.337,2.342213e-39 -3.6437029531138383,0.04489156357748069,3.6437029531138383,0.45,0.48167002314814816,6.578675900465719e-40,0.047590146605327344,0.45,0.45,0.0,-0.0,5.83,1612.5266,1.315735e-39 -3.5259167164164262,0.07807749528453699,3.5259167164164262,4.3915993222707605e-41,0.4800005787037037,4.3915993222707605e-41,0.08287184925208853,0.0,0.0,0.0,-0.0,14.620000000000001,1610.5642,8.7832e-41 -3.459318518741798,0.08964937217828702,3.459318518741798,5.19,0.4760001157407408,-6.205902482986031e-40,0.095221627126031,5.19,5.19,0.0,-0.0,17.05,1609.4254,-1.24118e-39 -3.4158178601087488,0.0623058571979938,3.4158178601087488,4.39,0.4760001157407408,-1.1560684304710454e-39,0.06620963604916937,4.39,4.39,0.0,-0.0,11.14,1608.6697,-2.312137e-39 -3.369625467379147,0.04791749224281196,3.369625467379147,-1.3829379511960012e-39,0.4719996527777777,-1.3829379511960012e-39,0.05094551752149505,0.0,0.0,0.0,-0.0,7.18,1607.8566,-2.765876e-39 -3.2964716309639615,0.057636741706920444,3.2964716309639615,1.66,0.4701513888888889,-1.1216266161656379e-39,0.061328948374195495,1.66,1.66,0.0,-0.0,10.125,1606.5458,-2.243253e-39 -3.5236976230882586,0.053495605537249524,3.5236976230882586,12.64,0.46799976851851854,-6.535361764933439e-40,0.056781832412152955,12.64,12.64,0.0,-0.0,8.99,1610.5266,-1.307072e-39 -4.109554912492159,0.048419000391884286,4.109554912492159,13.03,0.463999537037037,-3.724770428544831e-40,0.05110192687638045,13.03,13.03,0.0,-0.0,7.49,1619.7118,-7.44954e-40 -4.23524781435753,0.05632724755981536,4.23524781435753,-2.1884288312130317e-40,0.463999537037037,-2.1884288312130317e-40,0.05938241220542269,0.0,0.0,0.0,-0.0,9.825000000000001,1621.511,-4.37686e-40 -4.045148992797852,0.05952894872454746,4.045148992797852,3.24,0.46,-1.2764077386918677e-40,0.06286409782776696,3.24,3.24,0.0,-0.0,10.86,1618.7684,-2.55282e-40 -4.199722077876741,0.056477644293959066,4.199722077876741,8.01,0.45920532407407405,-7.539756452222894e-41,0.059559443899423095,8.01,8.01,0.0,-0.0,10.035,1621.0079,-1.50795e-40 -4.2256666919621875,0.04088240207996187,4.2256666919621875,1.09,0.45599953703703705,-4.489550084927065e-41,0.043103440589220235,1.09,1.09,0.0,-0.0,5.16,1621.3757,-8.9791e-41 -3.9907723808157507,0.04177047936168355,3.9907723808157507,-2.614963064276541e-41,0.45200810185185186,-2.614963064276541e-41,0.04413273319241634,0.0,0.0,0.0,-0.0,5.65,1617.9602,-5.2299e-41 -3.7376571480523064,0.0327509281190608,3.7376571480523064,-1.5428996635080223e-41,0.452,-1.5428996635080223e-41,0.034686991720949745,0.0,0.0,0.0,-0.0,2.0549999999999997,1614.047,-3.0858e-41 -3.515726193861252,0.029055755283546515,3.515726193861252,-8.174356153007247e-42,0.4480001157407407,-8.174356153007247e-42,0.030843236142375205,0.0,0.0,0.0,-0.0,0.4700000000000002,1610.3914,-1.7211e-41 -3.3176363434132843,0.03027708438627836,3.3176363434132843,-4.335898275639251e-42,0.4480001157407407,-4.335898275639251e-42,0.03220897022031955,0.0,0.0,0.0,-0.0,1.1,1606.928,-8.673e-42 -3.1366390119832617,0.03397251436607396,3.1366390119832617,1.6850614033491587e-42,0.4440001157407408,1.6850614033491587e-42,0.0362157014169664,0.0,0.0,0.0,-0.0,2.9549999999999996,1603.5776,3.37e-42 -2.972574258566762,0.043196896536876125,2.972574258566762,8.388873256680517e-42,0.44166932870370373,8.388873256680517e-42,0.04614148266907634,0.0,0.0,0.0,-0.0,6.68,1600.3693,1.6778e-41 -2.825683929774147,0.03844053356743156,2.825683929774147,1.4076043074142787e-41,0.4400003472222222,1.4076043074142787e-41,0.04113869272273281,0.0,0.0,0.0,-0.0,4.994999999999999,1597.3428,2.8152e-41 -2.6960357978466933,0.04425155454079327,2.6960357978466933,1.7048197116975724e-41,0.43611064814814815,1.7048197116975724e-41,0.047440898144748306,0.0,0.0,0.0,-0.0,7.3,1594.5378,3.4096e-41 -2.5836181458504637,0.05333720550466583,2.5836181458504637,0.52,0.43600011574074077,1.5607662295649813e-41,0.05727273998142538,0.52,0.52,0.0,-0.0,10.235,1591.9943,3.1215e-41 -2.487194311112224,0.04718608687412957,2.487194311112224,9.469975021907114e-42,0.43200000000000005,9.469975021907114e-42,0.05074015234716289,0.0,0.0,0.0,-0.0,8.485,1589.7228,1.894e-41 -2.4163167661014575,0.045632575931895195,2.4163167661014575,3.785607801373493e-42,0.43194837962962956,3.785607801373493e-42,0.0491229820275774,0.0,0.0,0.0,-0.0,7.985,1587.9962,7.571e-42 -2.4016382255292514,0.04471042468111967,2.4016382255292514,4.05,0.428,1.7025776341546527e-43,0.04814132768056251,4.05,4.05,0.0,-0.0,7.8149999999999995,1587.6323,3.4e-43 -2.4597211165664126,0.032148424885063503,2.4597211165664126,5.169983328977409,0.4261517361111111,-1.6671022590406315e-5,0.034584281346720286,5.17,5.17,0.0,-0.0,2.88,1589.0594,-3.3347605e-5 -2.4249706231653563,0.02473048650200477,2.4249706231653563,0.20995517469659578,0.42400011574074076,-4.389731166627707e-5,0.026618526577474506,0.21,0.20999907200826204,9.279917379417801e-7,-0.0,-0.8599999999999999,1588.2097,-0.00039614012 -2.4635804403796824,0.03044043058856833,2.4635804403796824,6.569735091840857,0.42121863425925926,-0.00026490815914286664,0.03274494455645696,6.57,6.57,0.0,-0.0,2.245,1589.1531,-0.0005312273 -2.9462846355132313,0.037166993680867386,2.9462846355132313,17.859841789663545,0.41999976851851856,-0.0001582103364544337,0.03971370673207455,17.86,17.86,0.0,-0.0,5.164999999999999,1599.8387,-0.00031692287 -3.3078178952931783,0.033615007730736564,3.3078178952931783,1.989905183369344,0.4164640046296296,-9.481663065602098e-5,0.03576381534713979,1.99,1.99,0.0,-0.0,3.72,1606.751,-0.0001898134 -3.1931326415699326,0.03226201496027103,3.1931326415699326,-5.6818018690329466e-5,0.4159996527777778,-5.6818018690329466e-5,0.034369410255217635,0.0,0.0,0.0,-0.0,3.145,1604.6437,-0.00011370068 -3.134748214016793,0.037831398649759165,3.134748214016793,3.669966404199121,0.4121109953703704,-3.359580087905027e-5,0.04033029145426885,3.67,3.67,0.0,-0.0,5.6850000000000005,1603.5416,-6.721419e-5 -3.1840796454369387,0.04160267045066083,3.1840796454369387,4.939980087022408,0.41200046296296294,-1.9912977591886353e-5,0.044324892698684865,4.94,4.94,0.0,-0.0,7.13,1604.4741,-3.983389e-5 -3.2048895855742203,0.030430551364890587,3.2048895855742203,2.939988975741488,0.4080084490740741,-1.1024258511761654e-5,0.03241387960442996,2.94,2.94,0.0,-0.0,2.565,1604.8632,-2.2050948e-5 -3.147068454417549,0.029641789820421007,3.147068454417549,1.1899697662938375,0.40794895833333333,-3.023370616236452e-5,0.031595115489198355,1.19,1.19,0.0,-0.0,2.19,1603.7759,-6.0485705e-5 -3.0331354273940776,0.025243326610489485,3.0331354273940776,0.5446228247885354,0.40399999999999997,-0.0353771747844991,0.026943800281310784,0.58,0.5799999995730345,4.26965439670468e-10,-0.0,0.010000000000000009,1601.5737,-0.0006196342 -2.893442576556534,0.022825310095875777,2.893442576556534,-3.036025426134488e-7,0.4037145833333334,-3.036025426134488e-7,0.024405807108424094,0.0,0.0,0.0,-0.0,-1.4,1598.7579,0.0008995556 -2.8284229915751613,0.025671326583987002,2.8284229915751613,3.1103537958985545,0.40000023148148145,0.00035379593121170617,0.02747221394781636,3.11,3.109999999967343,3.265686721043437e-11,-0.0,0.43500000000000005,1597.4006,0.0007576669 -2.990723955909463,0.034430347418326866,2.990723955909463,9.760232594471223,0.39971435185185183,0.00023259447122356478,0.03676899547669904,9.76,9.76,0.0,-0.0,4.75,1600.7328,0.00046411194 -3.3105641280750526,0.04032053789400557,3.3105641280750526,9.080136808285685,0.3960082175925926,0.00013680828568455314,0.04289666703599122,9.08,9.08,0.0,-0.0,7.234999999999999,1606.8005,0.00027324326 -3.4562722652807967,0.023658812649812736,3.4562722652807967,3.0298053519229455,0.39571446759259266,-0.00019207659736227635,0.025130173579004444,3.03,3.029997428520308,2.571479691865219e-6,-0.0,-0.6949999999999998,1609.3728,-0.0004554352 -3.3039796975686158,0.01632748842823842,3.3039796975686158,6.661338147750939e-18,0.3921108796296296,-0.0,0.017371957353094377,0.06,6.661338147750939e-18,0.05999999999999999,-0.0,-5.75,1606.6816,0.82429796 -3.129843869338255,0.01995770745778488,3.129843869338255,7.303107885151985e-6,0.3919487268518519,-2.835349706755461e-13,0.021277222767497203,0.03,7.303108168686956e-6,0.029992696891831313,-0.0,-2.925,1603.4481,0.8731644 -2.9773112814612834,0.0209454327393141,2.9773112814612834,0.634246461936599,0.3884644675925926,-8.759511447726152e-10,0.022371882627573603,1.25,0.63424646281255,0.61575353718745,-0.0,-2.0900000000000003,1600.4644,1.4252598 -2.836041570977808,0.016634887779503647,2.836041570977808,0.0,0.38799999999999996,-0.0,0.017800063457019358,0.0,0.0,0.0,-0.0,-5.2700000000000005,1597.5613,2.0283062 -2.706770118457644,0.015019363822102266,2.706770118457644,0.0,0.3848466435185185,-0.0,0.01609945889900835,0.0,0.0,0.0,-0.0,-6.535,1594.7751,2.0411468 -2.5902066835441944,0.014978099925404774,2.5902066835441944,0.0,0.3840003472222222,-0.0,0.016081736269642002,0.0,0.0,0.0,-0.0,-6.5200000000000005,1592.1464,2.0403333 -2.5127288731036765,0.01829168072379802,2.5127288731036765,3.1293756597161606e-8,0.38166932870370374,-0.0,0.019661869396417245,0.2,3.1293756597161606e-8,0.1999999687062434,-0.0,-3.6599999999999997,1590.3328,2.0405529 -2.4597211165664126,0.023379356679085552,2.4597211165664126,2.0859942915376206,0.3799997685185186,-0.044005703751865445,0.025150788941777472,2.13,2.129999995289486,4.7105137640501835e-9,-0.0,-0.09999999999999987,1589.0594,2.0409074 -2.4007891107350217,0.020533667276022422,2.4007891107350217,-4.651418700007872e-9,0.37920590277777777,-4.651418700007872e-9,0.022109634631876273,0.0,0.0,0.0,-0.0,-1.9149999999999998,1587.6112,2.0411925 -2.314398616353391,0.015875426472826536,2.314398616353391,0.0,0.37611087962962964,-0.0,0.01711746920016922,0.0,0.0,0.0,-0.0,-5.38,1585.4226,2.0411162 -2.2342977446242043,0.021564664469035072,2.2342977446242043,0.7999602803603261,0.3759486111111111,-1.4872438753909993e-5,0.023282706184976916,0.8,0.7999751527990799,2.4847200920063984e-5,-0.0,-1.0549999999999997,1583.3191,2.2564113 -2.3181957689818455,0.036353138561258304,2.3181957689818455,6.734295229511853,0.37321898148148147,1.0242952295118537,0.039194871865204095,5.71,5.71,0.0,-0.0,6.76,1585.5205,1.0243317 -2.364105490216779,0.02895262640469776,2.364105490216779,0.4797055995925983,0.3719998842592593,0.3697055995925983,0.031192819416744105,0.11,0.11,0.0,-0.0,3.3649999999999993,1586.6917,0.37813213 -2.367732515250932,0.02193539329440476,2.367732515250932,4.459538851761401,0.37120578703703705,-0.00045848093550172024,0.023631268349469315,4.46,4.459997332696903,2.667303097151352e-6,-0.0,-0.6599999999999999,1586.7832,0.19397198 -2.333365697534232,0.0157733392937203,2.333365697534232,2.3127499915176485e-13,0.3684645833333333,-0.0,0.017002167851803508,6.52,2.3127499915176485e-13,6.519999999999768,-0.0,-5.19,1585.91,4.163499 -2.2450927133184027,0.013336963261978446,2.2450927133184027,0.0,0.3680003472222222,-0.0,0.014396892480825752,0.38,0.0,0.38,-0.0,-7.445,1583.6069,7.593673 -2.163247770183485,0.014713991326658276,2.163247770183485,0.0,0.36615196759259255,-0.0,0.015905632327393213,0.0,0.0,0.0,-0.0,-6.0200000000000005,1581.3892,7.8146076 -2.0979749422548477,0.020060974514670843,2.0979749422548477,0.8035794843544661,0.3644642361111111,-8.388837250605919e-8,0.021710771249478338,0.81,0.8035795682428386,0.006420431757161461,-0.0,-1.61,1579.5594,7.816257 -2.0414661953397206,0.02110081620939036,2.0414661953397206,-9.203253309677644e-5,0.36400011574074076,-9.203253309677644e-5,0.022859727219684,0.0,0.0,0.0,-0.0,-0.8549999999999999,1577.9288,7.817503 -1.9755828455373723,0.0167738231285775,1.9755828455373723,4.8666969998389935e-9,0.3621513888888889,-0.0,0.018194636754446186,1.03,4.8666969998389935e-9,1.029999995133303,-0.0,-4.01,1575.9697,8.284024 -1.9118765231172008,0.011907621788174946,1.9118765231172008,0.0,0.3604638888888889,-0.0,0.012932310904146324,0.0,0.0,0.0,-0.0,-8.61,1574.0122,8.796007 -1.8521959660025165,0.01261627462511433,1.8521959660025165,0.0,0.3599998842592593,-0.0,0.013718452241414044,0.0,0.0,0.0,-0.0,-7.800000000000001,1572.1183,8.79359 -1.796088379790018,0.0136723143593384,1.796088379790018,0.0,0.35920578703703704,-0.0,0.014884141539685135,0.02,0.0,0.02,-0.0,-6.665,1570.2812,8.806133 -1.8913032204340712,0.02105461358146254,1.8913032204340712,22.458892510656508,0.3572189814814815,-0.0011017482171868898,0.02287582105529792,22.46,22.459994258873696,5.741126306628708e-6,-0.0,-0.5749999999999997,1573.3661,15.187463 -2.8670966995333824,0.02720234756609249,2.8670966995333824,33.570132502824784,0.35611041666666665,7.500132502824785,0.02909586605821015,26.07,26.07,0.0,-0.0,2.98,1598.2117,12.2613125 -3.591961053436267,0.02048002190467453,3.591961053436267,2.7892903891828724,0.3559483796296296,-2.1319884060752853e-6,0.021722651066261943,2.79,2.7892925211712787,0.0007074788287209937,-0.0,-1.2650000000000001,1611.6725,9.806932 -3.4162647418272956,0.015749206044712184,3.4162647418272956,0.0,0.3546476851851852,-0.0,0.016735892628618403,0.0,0.0,0.0,-0.0,-4.88,1608.6775,10.678767 -3.230639346580722,0.013764813413158817,3.230639346580722,0.0,0.35321898148148145,-0.0,0.01465757802474202,0.0,0.0,0.0,-0.0,-6.645,1605.3411,10.67382 -3.0641683682325467,0.013224307470229258,3.0641683682325467,0.0,0.35211030092592593,-0.0,0.014109784744451057,0.96,0.0,0.96,-0.0,-7.12,1602.1816,11.147584 -2.913936942694555,0.015657640756281746,2.913936942694555,5.465692898276587e-12,0.35199988425925927,-0.0,0.016737412784341148,2.43,5.465692898276587e-12,2.4299999999945343,-0.0,-4.775,1599.1794,12.851077 -2.7776720881746675,0.015298476656736615,2.7776720881746675,0.0,0.35171423611111113,-0.0,0.016382780590839568,0.0,0.0,0.0,-0.0,-5.06,1596.3193,14.071124 -2.653549644453998,0.01549252904302731,2.653549644453998,1.4341861032107773e-14,0.3506474537037037,-0.0,0.01661900938319706,0.01,1.4341861032107773e-14,0.009999999999985658,-0.0,-4.82,1593.5892,14.100469 -2.539968493426593,0.017281091694819877,2.539968493426593,4.639967344884304e-5,0.34966921296296294,-1.4178729326726309e-14,0.0185680612641494,4.23,4.639967346302177e-5,4.229953600326538,-0.0,-3.235,1590.9767,16.225384 -2.5736720546255216,0.02078709414208978,2.5736720546255216,6.318987979891122,0.3488465277777778,-0.0010102347157280919,0.022324118981152063,6.32,6.31999821460685,1.78539315111248e-6,-0.0,-0.5850000000000001,1591.7639,18.17179 -2.6324748993211555,0.020688685088455984,2.6324748993211555,1.5893461209475845,0.3481105324074074,-0.0006531384910155838,0.022199617846639496,1.59,1.5899992594386,7.405614001582128e-7,-0.0,-0.635,1593.113,18.165232 -2.549935483956721,0.017553835097072354,2.549935483956721,-2.2228953663456278e-13,0.3480079861111111,-2.2228953663456278e-13,0.01885834427172913,0.0,0.0,0.0,-0.0,-2.95,1591.2106,18.27283 -2.444873854211449,0.01477591014931822,2.444873854211449,0.0,0.34794849537037037,-0.0,0.015899084869032055,0.0,0.0,0.0,-0.0,-5.325,1588.6979,18.273218 -2.3482028721418695,0.012213719481216481,2.3482028721418695,0.0,0.34771435185185184,-0.0,0.013162092724250053,0.0,0.0,0.0,-0.0,-7.890000000000001,1586.2886,18.273218 -2.2589668351799252,0.009189210547372071,2.2589668351799252,0.0,0.3472057870370371,-0.0,0.00991720111875148,0.0,0.0,0.0,-0.0,-11.620000000000001,1583.9749,18.262657 -2.1762735572964265,0.011105403301352795,2.1762735572964265,0.0,0.3466476851851852,-0.0,0.012002074813566202,7.34,0.0,7.34,-0.0,-9.085,1581.7477,21.94952 -2.0993476618073523,0.012522043871906283,2.0993476618073523,0.0,0.3466476851851852,-0.0,0.013551510514583661,3.85,0.0,3.85,-0.0,-7.455,1579.5985,27.541122 -2.0277048604164603,0.008718843094253248,2.0277048604164603,0.0,0.3461518518518519,-0.0,0.00944804252749611,0.0,0.0,0.0,-0.0,-12.21,1577.5249,29.440914 -1.9608622935650462,0.007248819329985563,1.9608622935650462,0.0,0.3461518518518519,-0.0,0.00786505400980907,0.0,0.0,0.0,-0.0,-14.559999999999999,1575.5231,29.449316 -1.8982862987453886,0.007835655705561497,1.8982862987453886,0.0,0.3456693287037037,-0.0,0.008512242997491436,3.85,0.0,3.85,-0.0,-13.535,1573.5862,31.41131 -1.8394923914467975,0.01306784296279051,1.8394923914467975,0.0,0.3456693287037037,-0.0,0.01421318616055935,5.18,0.0,5.18,-0.0,-6.77,1571.7073,35.930733 -1.7841379217083713,0.013167267107524784,1.7841379217083713,0.0,0.3461518518518519,-0.0,0.014337970398593995,1.47,0.0,1.47,-0.0,-6.670000000000001,1569.8826,39.199215 -1.7320097606680431,0.013008246885159842,1.7320097606680431,0.0,0.3461518518518519,-0.0,0.01418080804064973,0.0,0.0,0.0,-0.0,-6.82,1568.1117,39.92925 -1.6828418784968178,0.01210023495279018,1.6828418784968178,0.0,0.3461518518518519,-0.0,0.013205431310739561,0.0,0.0,0.0,-0.0,-7.785,1566.3918,39.90445 -1.6364071687115518,0.011218820524694306,1.6364071687115518,0.0,0.3466476851851852,-0.0,0.012256586614326487,5.86,0.0,5.86,-0.0,-8.805,1564.7208,42.83826 -1.5925097274114741,0.008246496756712893,1.5925097274114741,0.0,0.3472057870370371,-0.0,0.009018676002125326,6.19,0.0,6.19,-0.0,-12.85,1563.0969,48.86276 -1.5509465475254365,0.007268205442293175,1.5509465475254365,0.0,0.34771435185185184,-0.0,0.007956819716067527,0.03,0.0,0.03,-0.0,-14.469999999999999,1561.5176,51.9953 -1.5115089638941672,0.007112762005347819,1.5115089638941672,0.0,0.34794849537037037,-0.0,0.007794327021261776,0.0,0.0,0.0,-0.0,-14.74,1559.9794,52.0346 -1.4740651619150995,0.003985978264600304,1.4740651619150995,0.0,0.34800000000000003,-0.0,0.004372124547374317,0.0,0.0,0.0,-0.0,-21.82,1558.4813,52.036995 -1.4384483693799595,0.004635796870964256,1.4384483693799595,0.0,0.3480079861111111,-0.0,0.005089665398311919,0.0,0.0,0.0,-0.0,-20.005000000000003,1557.0206,52.036743 -1.4044842838084775,0.0067627434406849546,1.4044842838084775,0.0,0.3484641203703704,-0.0,0.007431662137677793,0.0,0.0,0.0,-0.0,-15.36,1555.5936,52.03725 -1.3720146702678169,0.011951654226874263,1.3720146702678169,0.0,0.34921886574074074,-0.0,0.01314562432726156,0.01,0.0,0.01,-0.0,-7.965,1554.1968,52.049805 -1.340967081183125,0.009828982801593448,1.340967081183125,0.0,0.35015162037037034,-0.0,0.010820414799293809,0.06,0.0,0.06,-0.0,-10.59,1552.8298,52.09058 -1.3113187900054457,0.008331158283644783,1.3113187900054457,0.0,0.35120578703703703,-0.0,0.00917940032169176,0.0,0.0,0.0,-0.0,-12.77,1551.4946,52.112312 -1.2829526139279201,0.0094250358138073,1.2829526139279201,0.0,0.3519482638888889,-0.0,0.01039340071452732,6.71,0.0,6.71,-0.0,-11.185,1550.1886,55.515083 -1.2557774598040754,0.00920845884862613,1.2557774598040754,0.0,0.35200787037037035,-0.0,0.010162953988670462,6.16,0.0,6.16,-0.0,-11.48,1548.91,61.965725 -1.2297760403938154,0.004948471724343298,1.2297760403938154,0.0,0.35284641203703704,-0.0,0.005465810734219464,0.0,0.0,0.0,-0.0,-19.310000000000002,1547.6605,65.02529 -1.2048694564120694,0.00463141239268975,1.2048694564120694,0.0,0.3541518518518519,-0.0,0.005119646481076272,0.0,0.0,0.0,-0.0,-20.145000000000003,1546.4386,65.030266 -1.1809596429905138,0.0037349197189774745,1.1809596429905138,0.0,0.35571446759259256,-0.0,0.004131845627354245,0.0,0.0,0.0,-0.0,-22.745,1545.2416,65.030815 -1.1579644681387535,0.006009007993564199,1.1579644681387535,0.0,0.35600000000000004,-0.0,0.006652666736087548,1.8,0.0,1.8,-0.0,-17.01,1544.0673,66.015884 -1.1358186222058924,0.006747953694686228,1.1358186222058924,0.0,0.3564643518518519,-0.0,0.007476348846934772,0.0,0.0,0.0,-0.0,-15.57,1542.9141,66.94304 -1.114499458874677,0.006504706449893466,1.114499458874677,0.0,0.35815185185185183,-0.0,0.007212134202719855,0.0,0.0,0.0,-0.0,-16.08,1541.7825,66.96276 -1.093929219336467,0.009499789339503135,1.093929219336467,0.0,0.3599482638888889,-0.0,0.010540557257604968,0.0,0.0,0.0,-0.0,-11.295,1540.6699,67.02847 -1.0740503451958188,0.013361080655765124,1.0740503451958188,0.0,0.36000787037037035,-0.0,0.014835425910148775,0.76,0.0,0.76,-0.0,-6.739999999999999,1539.5747,67.42067 -1.0549466484968308,0.0034753463164919887,1.0549466484968308,0.0,0.36121863425925926,-0.0,0.0038615259854419865,0.0,0.0,0.0,-0.0,-23.715,1538.5029,67.757965 -1.036572526688379,0.003697334232636679,1.036572526688379,0.0,0.3637142361111111,-0.0,0.004110984992014279,0.0,0.0,0.0,-0.0,-23.064999999999998,1537.4536,67.76215 -1.0187911934737652,0.008224649634301409,1.0187911934737652,0.0,0.36400011574074076,-0.0,0.00915095825074516,0.0,0.0,0.0,-0.0,-13.27,1536.4203,67.76215 -1.0014950089829322,0.015608975297158998,1.0014950089829322,0.0,0.36521898148148146,-0.0,0.01737851676236135,0.0,0.0,0.0,-0.0,-4.765000000000001,1535.3977,67.77652 -1.0273840174203397,0.022063852084130624,1.0273840174203397,7.167514580530277,0.36771435185185186,-0.07248541464720597,0.02454080171026768,7.24,7.239999995177483,4.8225178428396026e-9,-0.0,0.020000000000000018,1536.9219,68.8808 -1.1414602893335286,0.018625925929516996,1.1414602893335286,0.2567693762845622,0.3680083333333333,-2.288211141923808e-11,0.020632509542281574,11.4,0.2567693763074443,11.143230623692556,-0.0,-2.4699999999999998,1543.21,70.78453 -1.1200466797118838,0.01611012682663635,1.1200466797118838,1.4717367602390397e-10,0.3696696759259259,-0.0,0.017858769961256724,7.25,1.4717367602390397e-10,7.249999999852827,-0.0,-4.555,1542.079,80.13561 -1.0991381284825064,0.018625616305150586,1.0991381284825064,0.0362582331034486,0.3719483796296296,-6.542602220860708e-12,0.020662377296487754,5.81,0.0362582331099912,5.773741766890009,-0.0,-2.5999999999999996,1540.9536,86.72294 -1.0790719560985884,0.010637108781779843,1.0790719560985884,0.0,0.37211041666666667,-0.0,0.011808737307313827,0.0,0.0,0.0,-0.0,-10.24,1539.8533,89.53549 -1.0597554624179464,0.007948214221807096,1.0597554624179464,0.0,0.3746479166666667,-0.0,0.008829859106711316,0.0,0.0,0.0,-0.0,-14.095,1538.7745,89.562065 -1.0411400912496014,0.007785531287424706,1.0411400912496014,0.0,0.3760002314814815,-0.0,0.008655083645185028,0.67,0.0,0.67,-0.0,-14.395,1537.7162,89.913414 -1.023104724619577,0.015675118688300904,1.023104724619577,2.1348478540517136e-13,0.3772188657407407,-0.0,0.01743767942093069,4.69,2.1348478540517136e-13,4.689999999999787,-0.0,-5.165,1536.6726,92.598076 -1.0056016928399332,0.016712328086733983,1.0056016928399332,1.1838760927140867e-9,0.3799997685185186,-0.0,0.018603992117113798,9.17,1.1838760927140867e-9,9.169999998816124,-0.0,-4.37,1535.6421,99.54821 -0.9887476769197459,0.008657184872125082,0.9887476769197459,0.0,0.3804640046296296,-0.0,0.009643428118556454,1.66,0.0,1.66,-0.0,-13.165,1534.6327,105.06185 -0.9725378682628009,0.004743676486551988,0.9725378682628009,0.0,0.383714699074074,-0.0,0.0052874865672831875,0.0,0.0,0.0,-0.0,-20.72,1533.6455,105.99651 -0.9568812825012759,0.004447618645637859,0.9568812825012759,0.0,0.38400833333333334,-0.0,0.0049606239983283045,0.0,0.0,0.0,-0.0,-21.49,1532.6763,106.00413 -0.9417019309330353,0.0071570442603357985,0.9417019309330353,0.0,0.3866476851851852,-0.0,0.007987541883780654,3.61,0.0,3.61,-0.0,-15.76,1531.7213,107.85612 -0.9292786794264198,0.018689610654710507,0.9292786794264198,0.00012873074978801693,0.38799999999999996,-8.0582725244518e-14,0.02086914352151832,1.94,0.00012873074986859966,1.9398712692501314,-0.0,-3.055,1530.9282,110.464455 -0.9725537716473659,0.028214978454200648,0.9725537716473659,9.805222733195652,0.3901519675925926,6.965222733195652,0.03144949386831927,2.84,2.84,0.0,-0.0,2.78,1533.6465,109.1617 -1.0128486192840085,0.017400624385878655,1.0128486192840085,1.8159759479496886e-9,0.39200034722222227,-0.0,0.019364788813981307,4.03,1.8159759479496886e-9,4.029999998184024,-0.0,-4.245,1536.0709,109.142044 -0.9957734042753065,0.005963829387713663,0.9957734042753065,0.0,0.3936696759259259,-0.0,0.006641410398204153,0.0,0.0,0.0,-0.0,-18.27,1535.0555,111.575035 -0.979336306470139,0.006252092690999824,0.979336306470139,0.0,0.39600023148148145,-0.0,0.006966936171817801,5.24,0.0,5.24,-0.0,-17.755000000000003,1534.0615,114.938896 -0.9634343835500873,0.006537158210765093,0.9634343835500873,0.0,0.3972188657407407,-0.0,0.007289240585567615,5.32,0.0,5.32,-0.0,-17.235,1533.0839,120.19227 -0.948046428362786,0.005122579157884377,0.948046428362786,0.0,0.40000023148148145,-0.0,0.005715502792465064,0.0,0.0,0.0,-0.0,-20.285,1532.1223,122.912895 -0.9331426415112986,0.005098805527742302,0.9331426415112986,0.0,0.4012189814814815,-0.0,0.005692493304627295,0.15,0.0,0.15,-0.0,-20.37,1531.176,123.70352 -0.9186909537984052,0.007055549691024233,0.9186909537984052,0.0,0.40399999999999997,-0.0,0.007881872402112454,1.16,0.0,1.16,-0.0,-16.475,1530.2439,124.412766 -0.904668316592254,0.006856922872300125,0.904668316592254,0.0,0.40521898148148144,-0.0,0.007664583983425149,0.34,0.0,0.34,-0.0,-16.86,1529.3253,125.21286 -0.8910545802476094,0.008423548637235807,0.8910545802476094,0.0,0.4080003472222223,-0.0,0.009421317366571078,2.05,0.0,2.05,-0.0,-14.354999999999999,1528.4198,126.57823 -0.8778484467508652,0.006295299709598233,0.8778484467508652,0.0,0.40966990740740744,-0.0,0.007045087811589347,0.0,0.0,0.0,-0.0,-18.035,1527.5281,127.47666 -0.8650431235323366,0.005751537261101523,0.8650431235323366,0.0,0.41200046296296294,-0.0,0.00644026163317131,7.52,0.0,7.52,-0.0,-19.2,1526.6505,131.287 -0.8525779378690482,0.01072207731850779,0.8525779378690482,0.0,0.41464768518518513,-0.0,0.012012825460804191,17.69,0.0,17.69,-0.0,-11.435,1525.7837,143.87764 -0.8404280749934527,0.010566977376307704,0.8404280749934527,0.0,0.4159996527777778,-0.0,0.011845709094328121,4.74,0.0,4.74,-0.0,-11.66,1524.9265,155.0421 -0.828602081857445,0.012709070370414827,0.828602081857445,0.0,0.419205324074074,-0.0,0.014254932471619007,3.5,0.0,3.5,-0.0,-9.325,1524.0802,159.14905 -0.8170710865243158,0.01466838690942675,0.8170710865243158,0.0,0.41999976851851856,-0.0,0.016461609122375646,2.42,0.0,2.42,-0.0,-7.42,1523.2433,162.1668 -0.8058735003113185,0.011057692589414962,0.8058735003113185,0.0,0.42400011574074076,-0.0,0.012416221845081577,0.78,0.0,0.78,-0.0,-11.295,1522.4192,163.7395 -0.7949772300299556,0.014038703167684278,0.7949772300299556,0.0,0.42400011574074076,-0.0,0.015771896662770294,0.84,0.0,0.84,-0.0,-8.125,1521.6062,164.5622 -0.784354935741604,0.0134276751901686,0.784354935741604,0.0,0.428,-0.0,0.015093400937796934,0.02,0.0,0.02,-0.0,-8.84,1520.8029,164.94165 -0.7739615795864675,0.024618935338814398,0.7739615795864675,7.716661744290123,0.42846388888888887,-0.0033377179085065435,0.02768745909332438,7.72,7.719999462198629,5.378013699508521e-7,-0.0,-0.44500000000000006,1520.0062,168.18489 -0.7638464511113352,0.01404910115945349,0.7638464511113352,0.0,0.43200000000000005,-0.0,0.015808363201085755,0.89,0.0,0.89,-0.0,-8.345,1519.2206,170.9908 -0.7540515367933057,0.00922245300039513,0.7540515367933057,0.0,0.4336695601851852,-0.0,0.010382578050783116,0.0,0.0,0.0,-0.0,-13.895,1518.4498,171.69675 -0.7444765660072505,0.018951008701640206,0.7444765660072505,2.5820634519391206e-12,0.43600011574074077,-0.0,0.021345651730064547,0.02,2.5820634519391206e-12,0.019999999997417937,-0.0,-4.37,1517.6866,171.70685 -0.7351118264677641,0.014860322065526612,0.7351118264677641,0.0,0.4399488425925926,-0.0,0.01674640894484243,0.0,0.0,0.0,-0.0,-7.815,1516.9307,171.71712 -0.7260459192298963,0.008178524807994596,0.7260459192298963,0.0,0.4400003472222222,-0.0,0.009221056224236428,0.0,0.0,0.0,-0.0,-15.58,1516.1896,171.71684 -0.7172178858752792,0.00973838152501593,0.7172178858752792,0.0,0.4440001157407408,-0.0,0.010985043962160834,0.02,0.0,0.02,-0.0,-13.475000000000001,1515.459,171.72453 -0.7085855386001956,0.010750944652984325,0.7085855386001956,0.0,0.4440081018518519,-0.0,0.012133020342738568,0.0,0.0,0.0,-0.0,-12.195,1514.7358,171.72919 -0.7001529690917945,0.010282407281367565,0.7001529690917945,0.0,0.4480001157407407,-0.0,0.011609730545615904,0.0,0.0,0.0,-0.0,-12.88,1514.0209,171.72969 -0.6919041894405351,0.010371157002870102,0.6919041894405351,0.0,0.4501516203703704,-0.0,0.011715413324300074,0.0,0.0,0.0,-0.0,-12.825000000000001,1513.3131,171.72969 -0.6838182831337754,0.015537285308813983,0.6838182831337754,0.0,0.452,-0.0,0.017559294517654152,0.0,0.0,0.0,-0.0,-7.54,1512.6111,171.72969 -0.675905617782751,0.014469290676476095,0.675905617782751,0.0,0.45599953703703705,-0.0,0.016359829560978603,0.0,0.0,0.0,-0.0,-8.61,1511.916,171.72969 -0.6681801105093945,0.015039924545917271,0.6681801105093945,0.0,0.45599953703703705,-0.0,0.017012746781808613,0.0,0.0,0.0,-0.0,-8.085,1511.2295,171.72969 -0.6606549788639813,0.009419417837813852,0.6606549788639813,0.0,0.46,-0.0,0.010659756066498043,0.0,0.0,0.0,-0.0,-14.309999999999999,1510.5531,171.73112 -0.653320085322107,0.008918009875051097,0.653320085322107,0.0,0.4604638888888889,-0.0,0.01009677992462712,0.0,0.0,0.0,-0.0,-15.01,1509.8864,171.74829 -0.6461392634541036,0.009329864457248802,0.6461392634541036,0.0,0.463999537037037,-0.0,0.010567692446709107,0.0,0.0,0.0,-0.0,-14.530000000000001,1509.2263,171.8001 -0.6390726368533298,0.02419903586390747,0.6390726368533298,0.2860365629032274,0.46799976851851854,-9.053197002699734e-9,0.027421544856946117,0.31,0.2860365719564244,0.023963428043575596,-0.0,-1.8450000000000002,1508.5696,171.90518 -0.6321130125641119,0.016168348474742744,0.6321130125641119,0.0,0.46799976851851854,-0.0,0.01832938162373161,0.0,0.0,0.0,-0.0,-7.43,1507.9156,172.02504 -0.6253288713878774,0.015155569476187921,0.6253288713878774,0.0,0.4719996527777777,-0.0,0.01718858191418729,0.74,0.0,0.74,-0.0,-8.41,1507.2712,172.40051 -0.6186567409819212,0.021330841026438938,0.6186567409819212,2.3688323314563497e-7,0.4719996527777777,-0.0,0.024202509084277093,2.9,2.3688323314563497e-7,2.899999763116767,-0.0,-3.725,1506.6306,174.3664 -0.612138376817495,0.01376868096745173,0.612138376817495,0.0,0.4760001157407408,-0.0,0.015628853829307007,0.0,0.0,0.0,-0.0,-9.790000000000001,1505.998,175.75706 -0.6058026037266407,0.011103761079335077,0.6058026037266407,0.0,0.4800005787037037,-0.0,0.012609100812914633,0.0,0.0,0.0,-0.0,-12.705,1505.3767,175.75894 -0.5995924583111365,0.015006564003806145,0.5995924583111365,0.0,0.4800005787037037,-0.0,0.017047976471699675,0.0,0.0,0.0,-0.0,-8.745,1504.7614,175.75842 -0.5934860050029369,0.021480450015095204,0.5934860050029369,1.1956715743055568e-8,0.4840002314814815,-0.0,0.024412453072801422,1.46,1.1956715743055568e-8,1.4599999880432843,-0.0,-3.955,1504.15,175.75491 -0.587481368132374,0.018641362041238764,0.587481368132374,0.0,0.4840002314814815,-0.0,0.021194397175695524,0.0,0.0,0.0,-0.0,-5.91,1503.5427,175.75003 -0.581580277879608,0.020071779862708524,0.581580277879608,0.0,0.48800034722222224,-0.0,0.02282987298328601,0.0,0.0,0.0,-0.0,-5.0,1502.9398,175.7461 -0.5757808300081835,0.01990127162019744,0.5757808300081835,0.0,0.4919994212962963,-0.0,0.022644952774078932,0.0,0.0,0.0,-0.0,-5.225,1502.3413,175.7454 -0.5700799963990509,0.02172256701262992,0.5700799963990509,0.0,0.4919994212962963,-0.0,0.02472712095658601,0.0,0.0,0.0,-0.0,-4.005,1501.7471,175.75029 -0.5644806042513506,0.023219811471070755,0.5644806042513506,3.8024454918493583e-7,0.4959997685185185,-2.3914439497608282e-14,0.02644183573831877,0.02,3.802445730993753e-7,0.0199996197554269,-0.0,-3.1799999999999997,1501.1576,175.76674 -0.5590401860877698,0.013367799610868696,0.5590401860877698,0.0,0.4959997685185185,-0.0,0.01522860768109899,0.48,0.0,0.48,-0.0,-10.675,1500.5792,175.85597 -0.5537461402661592,0.010135078124482434,0.5537461402661592,0.0,0.4999997685185186,-0.0,0.011550262695204093,0.0,0.0,0.0,-0.0,-14.35,1500.011,175.97884 -0.5485549255335158,0.012763508510262313,0.5485549255335158,0.0,0.503999537037037,-0.0,0.014551163585715576,0.0,0.0,0.0,-0.0,-11.48,1499.4485,176.05609 -0.5430903529283367,0.015706710036113753,0.5430903529283367,0.0,0.503999537037037,-0.0,0.017913732517809023,0.0,0.0,0.0,-0.0,-8.735,1498.8506,176.06485 -0.5375406571004251,0.029899773504489274,0.5375406571004251,-0.060012805636568044,0.5079996527777778,-0.060012805636568044,0.03411509055860485,0.0,0.0,0.0,-0.0,0.10999999999999988,1498.2372,176.08 -0.5335636654361653,0.027933333070028554,0.5335636654361653,0.17991508113953655,0.5079996527777778,-8.408265703139137e-5,0.03188085506359367,0.18,0.17999916379656794,8.362034320574807e-7,-0.0,-0.8649999999999993,1497.7937,176.08891 -0.6095139215993896,0.03801970705361113,0.6095139215993896,16.393797717149702,0.511999537037037,8.7437977171497,0.0431635901307483,7.65,7.65,0.0,-0.0,3.4450000000000003,1505.7415,171.82794 -0.8268509592276476,0.04382885941987507,0.8268509592276476,21.531594853229752,0.5159998842592592,13.651594853229751,0.04916403875701525,7.88,7.88,0.0,-0.0,5.279999999999999,1523.9539,160.62086 -1.020982201551023,0.03385184051314193,1.020982201551023,5.870348582240498,0.5159998842592592,3.0603485822405028,0.03766128988460426,2.81,2.8099999999999956,4.2116310439155316e-15,-0.0,1.32,1536.5486,152.39436 -1.0350819668439029,0.026377127367833247,1.0350819668439029,-5.1816309971272455e-11,0.520000462962963,-5.1816309971272455e-11,0.029329789895632223,0.0,0.0,0.0,-0.0,-2.385,1537.3677,151.9738 -1.0183185868654576,0.029309625708776793,1.0183185868654576,-7.681238487369327e-5,0.520000462962963,-7.681238487369327e-5,0.03261123701504842,0.0,0.0,0.0,-0.0,-0.8749999999999996,1536.3926,151.97371 -1.048330227416315,0.03810820952381274,1.048330227416315,7.072204687126545,0.5240002314814816,7.072204687126545,0.042353128303185154,0.0,0.0,0.0,-0.0,2.8200000000000003,1538.1272,149.18167 -1.1608818232220997,0.03890423877359033,1.1608818232220997,7.433268781623429,0.5279998842592593,7.433268781623429,0.04306729993667782,0.0,0.0,0.0,-0.0,2.9549999999999996,1544.2175,141.94907 -1.3009440578497433,0.04074111855919465,1.3009440578497433,9.091489067389737,0.5279998842592593,9.091489067389737,0.0449029297138635,0.0,0.0,0.0,-0.0,3.5749999999999997,1551.0203,133.75464 -1.5322670153286881,0.043623576746059864,1.5322670153286881,13.261246378509753,0.5319998842592593,11.271246378509753,0.04777876285733479,1.99,1.99,0.0,-0.0,4.39,1560.794,123.532074 -2.0490204591216354,0.050824633505769226,2.0490204591216354,24.838153657469753,0.5319998842592593,17.008153657469755,0.0550535512072461,7.83,7.83,0.0,-0.0,6.535,1578.1494,109.329735 -2.758243222220819,0.0433617307166525,2.758243222220819,15.600362744829752,0.5359994212962963,9.840362744829752,0.046447259476939465,5.76,5.76,0.0,-0.0,3.855,1595.9001,95.94553 -3.171964608872561,0.04059402278664387,3.171964608872561,6.811258825316192,0.5395353009259259,6.751258825316192,0.04325638306066704,0.06,0.06,0.0,-0.0,2.7,1604.2465,87.57808 -3.424199629050235,0.04268575783759206,3.424199629050235,8.59669753050966,0.54,8.59669753050966,0.04535611101771624,0.0,0.0,0.0,-0.0,3.39,1608.816,79.811104 -3.8315426547428078,0.04716623781519101,3.8315426547428078,12.187102009869754,0.5439997685185185,12.127102009869754,0.0499086469551726,0.06,0.06,0.0,-0.0,4.71,1615.5286,69.474396 -4.189304970133773,0.04146581603116604,4.189304970133773,6.8582407792596625,0.5439997685185185,6.8582407792596625,0.043732470797207566,0.0,0.0,0.0,-0.0,2.74,1620.8596,60.09162 -4.537865859549032,0.04616636343486436,4.537865859549032,11.482963864669752,0.5479999999999999,10.722963864669753,0.04854700873511015,0.76,0.76,0.0,-0.0,4.185,1625.6326,51.324184 -4.981873939794259,0.042465250463647415,4.981873939794259,9.475695664090608,0.5498481481481481,7.125695664090608,0.044502428245979254,2.35,2.35,0.0,-0.0,2.84,1631.2074,42.503937 -4.9763475556035655,0.03619968293781978,4.9763475556035655,0.6744857028603616,0.5520004629629629,0.6744857028603616,0.03793782538721012,0.0,0.0,0.0,-0.0,0.44499999999999984,1631.1411,38.64072 -4.608731690466948,0.03552729940357775,4.608731690466948,-0.060012805636568044,0.5559922453703704,-0.060012805636568044,0.037338068435628605,0.0,0.0,0.0,-0.0,0.10999999999999988,1626.558,38.3969 -4.4665921381462,0.04112108649057565,4.4665921381462,5.5744573273224,0.5560002314814815,5.5744573273224,0.043266726736575986,0.0,0.0,0.0,-0.0,2.26,1624.6871,35.7269 -4.6803693492776715,0.04552335183052493,4.6803693492776715,9.251961998269746,0.56,9.251961998269746,0.04781652433158885,0.0,0.0,0.0,-0.0,3.635,1627.4791,28.326042 -5.321270614298248,0.0425729446099516,5.321270614298248,16.233567474893732,0.5600517361111111,6.403567474893731,0.0445078964241528,9.83,9.83,0.0,-0.0,2.5700000000000003,1635.1433,20.492899 -6.004841186410874,0.03964369920673988,6.004841186410874,9.623966780093898,0.5639996527777777,3.153966780093906,0.04126338236838966,6.47,6.469999999999993,6.823985820858524e-15,-0.0,1.355,1642.3607,15.696833 -6.437399842584116,0.042954872218036004,6.437399842584116,11.112503379737849,0.5663305555555556,6.042503379737848,0.04459703658679733,5.07,5.07,0.0,-0.0,2.4349999999999996,1646.5148,11.066396 -6.939678592027773,0.04214128348643438,6.939678592027773,11.306293021087594,0.5679997685185185,5.066293021087595,0.043633441550333656,6.24,6.24,0.0,-0.0,2.07,1651.0016,5.509948 -6.70611519814494,0.034755899362595606,6.70611519814494,0.3298481994302232,0.5715351851851852,-0.0001510002511377251,0.03603117235661476,0.33,0.32999919968136093,8.003186390770357e-7,-0.0,-0.8000000000000003,1648.957,3.8594108 -6.082108823360118,0.037050301577709645,6.082108823360118,0.8606053281399443,0.5719994212962963,-0.019394671715509862,0.038546108405082165,0.88,0.8799999998554542,1.4454586416690062e-10,-0.0,0.16000000000000014,1643.1243,3.8832285 -5.862625783008944,0.042028448415215316,5.862625783008944,5.105168082364966,0.5760005787037037,2.0651680823649663,0.04378372252517809,3.04,3.04,0.0,-0.0,1.915,1640.9293,2.0651681 -5.587614302037427,0.04956976981229784,5.587614302037427,0.9586524188334533,0.5760005787037037,0.7586524188334534,0.05173045308814439,0.2,0.2,0.0,-0.0,4.39,1638.06,0.75903577 -5.3530166940733235,0.05136799875698035,5.3530166940733235,4.947209918004466,0.5800003472222222,0.26720991800446664,0.05369102411653163,4.68,4.68,0.0,-0.0,4.845,1635.4985,0.28298163 -5.314683297924924,0.04340578704716228,5.314683297924924,5.011699902692699,0.5807946759259259,0.0916999026926992,0.04538064481526806,4.92,4.92,0.0,-0.0,2.32,1635.0693,0.11946699 -5.202662080634203,0.049035000341305784,5.202662080634203,3.0780397142079194,0.5840005787037037,0.03803971420791952,0.05130589378078041,3.04,3.04,0.0,-0.0,4.06,1633.7971,0.059104204 -5.075750194215714,0.05357325183920534,5.075750194215714,4.248534596394954,0.5853530092592593,0.018534596394953477,0.05610496615435983,4.23,4.23,0.0,-0.0,5.369999999999999,1632.3223,0.03199425 -4.826203433480433,0.05222508573229935,4.826203433480433,0.009892546131748187,0.5880002314814815,0.009892546131748187,0.05479415494223202,0.0,0.0,0.0,-0.0,4.945,1629.3115,0.018143635 -4.630856706290387,0.05366976576949622,4.630856706290387,4.4955593634032,0.5903311342592593,0.005559363403200179,0.05639531055072062,4.49,4.49,0.0,-0.0,5.32,1626.844,0.0105615165 -4.737039384930289,0.04528298217592569,4.737039384930289,8.083188191030553,0.5920008101851852,0.003188191030552725,0.047543049782113295,8.08,8.08,0.0,-0.0,2.7249999999999996,1628.1979,0.006185162 -4.787873264104319,0.047709232978973226,4.787873264104319,2.8818302034259875,0.5943310185185184,0.0018302034259874847,0.050070791364702924,2.88,2.88,0.0,-0.0,3.435,1628.8353,0.0035957661 -4.531118257721923,0.05249856283835913,4.531118257721923,0.041084459121072545,0.5959997685185184,0.0010844591210725462,0.055208756584646065,0.04,0.04,0.0,-0.0,4.8549999999999995,1625.5437,0.0021458948 -4.21044048169979,0.053357082767692736,4.21044048169979,0.0006329888504109849,0.5987809027777777,0.0006329888504109849,0.0562633201376516,0.0,0.0,0.0,-0.0,5.069999999999999,1621.1602,0.0012580642 -3.929159576625233,0.07319275467374191,3.929159576625233,0.0003571679944233291,0.5999998842592592,0.0003571679944233291,0.07737647592522534,0.0,0.0,0.0,-0.0,9.945,1617.031,0.0007118027 -3.682194373884544,0.07840089456597607,3.682194373884544,0.00015577800866894994,0.6027810185185185,0.00015577800866894994,0.08308150262072024,0.0,0.0,0.0,-0.0,10.995000000000001,1613.1542,0.0003110722 -3.464278833704105,0.09142218319553655,3.464278833704105,-8.850894056385636e-5,0.6039996527777778,-8.850894056385636e-5,0.0970994664879517,0.0,0.0,0.0,-0.0,13.46,1609.511,-0.00017717484 -3.2706450412598382,0.07728693293323517,3.2706450412598382,-0.0003109610435535586,0.6063304398148148,-0.0003109610435535586,0.08226198182480333,0.0,0.0,0.0,-0.0,10.745,1606.076,-0.00062386814 -3.0973099791920533,0.059789892809103115,3.0973099791920533,-0.00044560858650383834,0.6079995370370371,-0.00044560858650383834,0.06376775284319688,0.0,0.0,0.0,-0.0,6.74,1602.8241,-0.0008952243 -2.940899581713558,0.08757849439798117,2.940899581713558,-0.00042689178352277643,0.6098476851851852,-0.00042689178352277643,0.09358583601595398,0.0,0.0,0.0,-0.0,12.71,1599.7295,-0.00085745973 -2.807651866752048,0.09123142380493988,2.807651866752048,-0.0002596100520138123,0.6120002314814815,-0.0002596100520138123,0.09765837495461037,0.0,0.0,0.0,-0.0,13.34,1596.9604,-0.0005205751 -2.7497430258969247,0.0835048461838015,2.7497430258969247,2.7298712358104074,0.6133524305555556,-0.00012876418959271288,0.08945720616270184,2.73,2.73,0.0,-0.0,11.895,1595.7158,-0.00025786084 -2.82550488526024,0.07135002594304533,2.82550488526024,6.379937350426665,0.6159914351851852,-6.264957333441491e-5,0.07635829876383772,6.38,6.38,0.0,-0.0,9.325000000000001,1597.339,-0.00012537774 -2.905651749857121,0.08471097750695576,2.905651749857121,0.8099658241203898,0.6162851851851852,-3.417587961034979e-5,0.09056239046733977,0.81,0.81,0.0,-0.0,12.015,1599.0094,-6.8375135e-5 -2.87120195908868,0.07441561332106406,2.87120195908868,2.179985537414863,0.6195356481481481,-1.446258513715747e-5,0.07959132776768846,2.18,2.18,0.0,-0.0,9.885000000000002,1598.2971,-2.8929355e-5 -2.7742505596064637,0.05830218369833043,2.7742505596064637,-6.521019155195187e-6,0.6199998842592592,-6.521019155195187e-6,0.06243732302752581,0.0,0.0,0.0,-0.0,6.12,1596.2457,-1.3042889e-5 -2.752976762924124,0.0969828998321828,2.752976762924124,0.03999668001096308,0.6227818287037037,-3.319989036920557e-6,0.10389142733972184,0.04,0.04,0.0,-0.0,14.06,1595.786,-6.6401985e-6 -2.845349376819566,0.09109882522260007,2.845349376819566,7.4799988897167715,0.6240006944444445,-1.1102832292653884e-6,0.09746782165449475,7.48,7.48,0.0,-0.0,12.995000000000001,1597.757,-2.220591e-6 -3.0386645286753105,0.07470033118125134,3.0386645286753105,7.7699996641565665,0.6253526620370371,-3.358434331344885e-7,0.07972697731993074,7.77,7.77,0.0,-0.0,9.765,1601.6825,-6.716891e-7 -3.113929035303199,0.09589764940458924,3.113929035303199,-1.496970473748995e-7,0.6278895833333333,-1.496970473748995e-7,0.10225739306087706,0.0,0.0,0.0,-0.0,13.67,1603.1437,-2.9939454e-7 -3.0186932660245773,0.11191751186387854,3.0186932660245773,7.331692679824335e-9,0.6280518518518519,7.331692679824335e-9,0.11947790793157748,0.0,0.0,0.0,-0.0,16.215,1601.2887,1.4663384e-8 -2.854127616214086,0.1275316018703388,2.854127616214086,9.334856986085927e-8,0.6303303240740741,9.334856986085927e-8,0.13643201643210487,0.0,0.0,0.0,-0.0,18.37,1597.9409,1.8669697e-7 -2.7101582788962446,0.13467877394679478,2.7101582788962446,7.6011049055671e-8,0.6319916666666667,7.6011049055671e-8,0.1443572340697386,0.0,0.0,0.0,-0.0,19.28,1594.8499,1.5202198e-7 -2.603652398142399,0.11659656469416924,2.603652398142399,1.3500000404725165,0.6322856481481481,4.047251639827317e-8,0.12516348087338725,1.35,1.35,0.0,-0.0,16.875,1592.4556,8.0945e-8 -2.5309094231696654,0.08847283723837264,2.5309094231696654,1.9625732449508534e-8,0.6347809027777778,1.9625732449508534e-8,0.09507439957090472,0.0,0.0,0.0,-0.0,12.32,1590.7633,3.9251457e-8 -2.4942149350064717,0.06442976875752253,2.4942149350064717,7.260000008635029,0.6360001157407408,8.63502943772053e-9,0.06927529626172964,7.26,7.26,0.0,-0.0,7.32,1589.8911,1.7270057e-8 -2.4851361731121804,0.060573074716207084,2.4851361731121804,9.009999994314889,0.6362856481481481,-5.685111613565704e-9,0.0651374764806812,9.01,9.01,0.0,-0.0,6.369999999999999,1589.6733,-1.1370224e-8 -2.489055724209997,0.0766341491913851,2.489055724209997,5.749999980042141,0.6387810185185185,-1.9957858934700245e-8,0.08240393270187822,5.75,5.75,0.0,-0.0,9.950000000000001,1589.7675,-3.9915726e-8 -2.4916365407689343,0.10219684693337264,2.4916365407689343,1.0899999697268101,0.6399917824074074,-3.027318989401772e-8,0.1098869675293725,1.09,1.09,0.0,-0.0,14.530000000000001,1589.8293,-6.05464e-8 -2.4785413043391324,0.09426545616303683,2.4785413043391324,-3.272108623637616e-8,0.6400512731481481,-3.272108623637616e-8,0.10137882184999514,0.0,0.0,0.0,-0.0,13.22,1589.5146,-6.5442194e-8 -2.4370554230715826,0.08701686755272611,2.4370554230715826,1.5799999762622987,0.6418483796296296,-2.3737701276432608e-8,0.09364263484770287,1.58,1.58,0.0,-0.0,11.9,1588.5066,-4.7475414e-8 -2.3884837766901743,0.10017355156400529,2.3884837766901743,3.5799999888017155,0.6435354166666667,-1.1198284600147654e-8,0.10788276629505532,3.58,3.58,0.0,-0.0,14.14,1587.3043,-2.2396572e-8 -2.3386658463710672,0.07480423839836088,2.3386658463710672,0.3499999983791465,0.6439998842592592,-1.6208534251844688e-9,0.08062500520981095,0.35,0.35,0.0,-0.0,9.48,1586.0455,-3.241707e-9 -2.278946518220326,0.06662971745819701,2.278946518220326,0.570000002579276,0.6442856481481481,2.5792759704955336e-9,0.07188441261315015,0.57,0.57,0.0,-0.0,7.6899999999999995,1584.5007,5.158552e-9 -2.2127592416670847,0.06318902388348203,2.2127592416670847,1.3917780455312113e-9,0.6458482638888889,1.3917780455312113e-9,0.06824818474027095,0.0,0.0,0.0,-0.0,6.8549999999999995,1582.7406,2.783556e-9 -2.158909950856162,0.07602801048774373,2.158909950856162,-3.685760294484945e-10,0.6471538194444444,-3.685760294484945e-10,0.082191516041138,0.0,0.0,0.0,-0.0,9.705,1581.2693,-7.3715206e-10 -2.1107112379145203,0.08351309156159215,2.1107112379145203,0.40999999800025344,0.6479927083333333,-1.9997465505520533e-9,0.09036045691139061,0.41,0.41,0.0,-0.0,11.180000000000001,1579.9209,-3.999493e-9 -2.0610424492421986,0.08987806316478383,2.0610424492421986,0.9899999969812857,0.6480521990740741,-3.0187142984424337e-9,0.09733491536328213,0.99,0.99,0.0,-0.0,12.365,1578.4988,-6.037429e-9 -2.0034593558116267,0.06916627130663724,2.0034593558116267,-2.942459300675563e-9,0.6487947916666666,-2.942459300675563e-9,0.07498513163174036,0.0,0.0,0.0,-0.0,8.235,1576.8065,-5.8849188e-9 -1.935646651686852,0.06278596685163221,1.935646651686852,-1.6237906311231152e-9,0.6498487268518519,-1.6237906311231152e-9,0.06815694827877922,0.0,0.0,0.0,-0.0,6.74,1574.7501,-3.2475813e-9 -1.8674858757374748,0.06839358229294416,1.8674858757374748,-3.6256563710379207e-11,0.6507814814814814,-3.6256563710379207e-11,0.07434533555501709,0.0,0.0,0.0,-0.0,8.055,1572.6093,-7.251313e-11 -1.8041096226971978,0.07908086129149343,1.8041096226971978,1.3372462205417884e-9,0.6515357638888889,1.3372462205417884e-9,0.08607549989959891,0.0,0.0,0.0,-0.0,10.325000000000001,1570.5474,2.6744924e-9 -1.7495123307685745,0.08569149751511422,1.7495123307685745,2.0700825926734127e-9,0.6519921296296297,2.0700825926734127e-9,0.09337995728091332,0.0,0.0,0.0,-0.0,11.605,1568.7122,4.140165e-9 -1.7072156758704795,0.12094936035358252,1.7072156758704795,0.6100000017377651,0.6520001157407407,1.73776518419565e-9,0.1319241574691468,0.61,0.61,0.0,-0.0,17.240000000000002,1567.2506,3.4755303e-9 -1.6763532038780788,0.1344164726912768,1.6763532038780788,5.810000000529965,0.6520517361111111,5.299651856580544e-10,0.14671524853059864,5.81,5.81,0.0,-0.0,19.025,1566.1611,1.0599304e-9 -1.6542787598787434,0.11916562400649063,1.6542787598787434,11.099999999068725,0.6522856481481482,-9.312751594195927e-10,0.13013476222556447,11.1,11.1,0.0,-0.0,17.005,1565.3695,-1.8625503e-9 -1.6405231972187502,0.15060431424157006,1.6405231972187502,0.31999999774535937,0.6527943287037037,-2.2546406455301163e-9,0.16451977743149784,0.32,0.32,0.0,-0.0,20.96,1564.8708,-4.5092814e-9 -1.6347389232380718,0.1700664843284658,1.6347389232380718,-3.0488162175718625e-9,0.653352662037037,-3.0488162175718625e-9,0.18580524922229763,0.0,0.0,0.0,-0.0,23.055,1564.6599,-6.0976326e-9 -1.6367048903403472,0.12087980885755728,1.6367048903403472,3.4399999970775137,0.653848611111111,-2.922486389633957e-9,0.13206054567404235,3.44,3.44,0.0,-0.0,17.21,1564.7317,-5.844973e-9 -1.6456853176647417,0.11761121632649478,1.6456853176647417,-1.541923898101948e-9,0.653848611111111,-1.541923898101948e-9,0.1284627973171488,0.0,0.0,0.0,-0.0,16.75,1565.0585,-3.0838478e-9 -1.6590873412636198,0.12261961024938914,1.6590873412636198,8.015007610787172e-10,0.653848611111111,8.015007610787172e-10,0.13389185983659788,0.0,0.0,0.0,-0.0,17.44,1565.5428,1.6030015e-9 -1.6765588085189596,0.16129754079917083,1.6765588085189596,2.8800000034535227,0.6543310185185185,3.4535226982903876e-9,0.17605504476460845,2.88,2.88,0.0,-0.0,22.09,1566.1685,6.907045e-9 -1.6980348381110195,0.14291949660877698,1.6980348381110195,5.270000005757189,0.6543310185185185,5.757189723338483e-9,0.15591987374023022,5.27,5.27,0.0,-0.0,20.0,1566.9286,1.1514379e-8 -1.7234704398915983,0.13847533064458065,1.7234704398915983,1.9200000070555485,0.653848611111111,7.0555486435366585e-9,0.15098589343853555,1.92,1.92,0.0,-0.0,19.465,1567.8165,1.4111096e-8 -1.7528376598713287,0.11672908638326869,1.7528376598713287,6.600000006691647,0.653848611111111,6.691647240015364e-9,0.12719312292119617,6.6,6.6,0.0,-0.0,16.585,1568.8256,1.3383294e-8 -1.7882490042518997,0.08370255166371478,1.7882490042518997,3.751339824058793e-9,0.653352662037037,3.751339824058793e-9,0.09113657605962508,0.0,0.0,0.0,-0.0,11.185,1570.02,7.502679e-9 -1.8465974321661498,0.09242564990665722,1.8465974321661498,7.109999996647516,0.653352662037037,-3.3524848439178e-9,0.10051165857514623,7.11,7.11,0.0,-0.0,12.75,1571.9375,-6.70497e-9 -1.9355991737867027,0.08998326494974898,1.9355991737867027,9.77999998687537,0.6527943287037037,-1.312462766073976e-8,0.09768091100005999,9.78,9.78,0.0,-0.0,12.305,1574.7487,-2.6249259e-8 -2.061948411972144,0.09309427270954845,2.061948411972144,-2.356610173420603e-8,0.6522856481481482,-2.356610173420603e-8,0.10081628574486715,0.0,0.0,0.0,-0.0,12.825,1578.525,-4.7132215e-8 -2.2350103094679223,0.10433442541237795,2.2350103094679223,1.3599999673220793,0.6520517361111111,-3.267792079340853e-8,0.11264532120379116,1.36,1.36,0.0,-0.0,14.629999999999999,1583.3381,-6.535586e-8 -2.467975450060992,0.10077494058685399,2.467975450060992,15.239999961538901,0.6519921296296297,-3.846109861264685e-8,0.10839691686180145,15.24,15.24,0.0,-0.0,14.004999999999999,1589.2595,-7.692223e-8 -2.779603168390767,0.09837992445659344,2.779603168390767,9.589999961083345,0.6518894675925926,-3.891665562975188e-8,0.10535001944400772,9.59,9.59,0.0,-0.0,13.545,1596.3608,-7.783334e-8 -3.1968682074660717,0.09027348088819372,3.1968682074660717,12.779999967954394,0.6511538194444445,-3.2045605669398986e-8,0.09616607336624423,12.78,12.78,0.0,-0.0,12.094999999999999,1604.7135,-6.409123e-8 -3.6259755838148604,0.08469742369296952,3.6259755838148604,12.989999981211952,0.6503311342592593,-1.8788048473151348e-8,0.08980509187678355,12.99,12.99,0.0,-0.0,11.025,1612.2354,-3.7576104e-8 -3.7266108952517647,0.10649097721169883,3.7266108952517647,2.689999992331334,0.6493528935185184,-7.668666002547783e-9,0.1127985197102155,2.69,2.69,0.0,-0.0,14.719999999999999,1613.8702,-1.5337333e-8 -3.591924343054031,0.1311569392627782,3.591924343054031,-1.2123121248676236e-9,0.6482863425925927,-1.2123121248676236e-9,0.1391149637803552,0.0,0.0,0.0,-0.0,18.225,1611.6719,-2.4246243e-9 -3.3769619030267526,0.1423764084402225,3.3769619030267526,-2.748737341289952e-10,0.6480008101851852,-2.748737341289952e-10,0.15136130012458412,0.0,0.0,0.0,-0.0,19.66,1607.9865,-5.4974747e-10 -3.186872968363461,0.14942592507498603,3.186872968363461,0.1299999998600452,0.647890162037037,-1.399547975551006e-10,0.15919824026349016,0.13,0.13,0.0,-0.0,20.525,1604.5265,-2.799096e-10 -3.1386592587413458,0.14534236485388924,3.1386592587413458,4.8199999999333825,0.64678125,-6.661751007500329e-11,0.1549355286907496,4.82,4.82,0.0,-0.0,20.09,1603.6161,-1.3323502e-10 -3.149739172228614,0.1752649854007591,3.149739172228614,5.1999999999627855,0.645352199074074,-3.721481801891085e-11,0.18680864340523087,5.2,5.2,0.0,-0.0,23.365000000000002,1603.8265,-7.4429636e-11 -3.079577081297141,0.19488849389774837,3.079577081297141,0.7899999999834613,0.6440515046296297,-1.653873218658426e-11,0.20789902705044813,0.79,0.79,0.0,-0.0,25.29,1602.4812,-3.3077464e-11 -3.056824088004487,0.18074039891330476,3.056824088004487,4.099999999992555,0.6438894675925926,-7.44478957592862e-12,0.19285972125446943,4.1,4.1,0.0,-0.0,23.965,1602.0383,-1.488958e-11 -3.1417338105174437,0.17114370120617112,3.1417338105174437,3.5999999999959207,0.6427809027777778,-4.0794672326039965e-12,0.1824332020799718,3.6,3.6,0.0,-0.0,23.020000000000003,1603.6746,-8.1589345e-12 -3.3318601826823295,0.14631506653423476,3.3318601826823295,9.599999999998085,0.6407940972222222,-1.9147947116404394e-12,0.15562622846413549,9.6,9.6,0.0,-0.0,20.325,1607.1835,-3.8295894e-12 -3.6010400187876708,0.12906985167100551,3.6010400187876708,8.189999999999,0.6399997685185186,-1.0009483476344514e-12,0.1368883844508739,8.19,8.19,0.0,-0.0,18.17,1611.8232,-2.0018967e-12 -3.73671755568138,0.130154779403064,3.73671755568138,4.379999999999838,0.6395354166666667,-1.6124505430930808e-13,0.13785013167558618,4.38,4.38,0.0,-0.0,18.3,1614.032,-3.224901e-13 -3.747992948185,0.10975547586750693,3.747992948185,1.9600000000006033,0.6378482638888888,6.033099367344958e-13,0.1162317695364327,1.96,1.96,0.0,-0.0,15.505,1614.2119,1.2066199e-12 -3.699213491344861,0.09766917764670227,3.699213491344861,3.6200000000010664,0.6360001157407408,1.0662046332740476e-12,0.103482454475589,3.62,3.62,0.0,-0.0,13.655000000000001,1613.4296,2.1324093e-12 -3.6574178971550744,0.10760955330577829,3.6574178971550744,4.000000000001001,0.6355359953703703,1.0009270972919082e-12,0.11406245532703509,4.0,4.0,0.0,-0.0,15.254999999999999,1612.751,2.0018542e-12 -3.6029101148314835,0.12382008992138129,3.6029101148314835,5.853507782683633e-13,0.6338483796296296,5.853507782683633e-13,0.1313180871352831,0.0,0.0,0.0,-0.0,17.634999999999998,1611.8542,1.1707016e-12 -3.6001494876388396,0.13160557897832034,3.6001494876388396,7.09000000000032,0.6319996527777777,3.1936804004426687e-13,0.13957899500645576,7.09,7.09,0.0,-0.0,18.71,1611.8085,6.387361e-13 -3.729598090588034,0.12474880618737509,3.729598090588034,7.8800000000001855,0.6315355324074073,1.852741321910175e-13,0.13213385614676235,7.88,7.88,0.0,-0.0,17.8,1613.9181,3.7054826e-13 -3.6511882992746836,0.11682461724449936,3.6511882992746836,9.710636429085115e-14,0.6287943287037038,9.710636429085115e-14,0.12383792612589335,0.0,0.0,0.0,-0.0,16.79,1612.6492,1.9421273e-13 -3.453299280446259,0.1327120233273063,3.453299280446259,5.377720024935784e-14,0.628,5.377720024935784e-14,0.14096999426615975,0.0,0.0,0.0,-0.0,18.985,1609.3214,1.075544e-13 -3.257374911646774,0.13456759309961,3.257374911646774,2.8049409650973402e-14,0.6267813657407407,2.8049409650973402e-14,0.1432515200481608,0.0,0.0,0.0,-0.0,19.29,1605.8333,5.609882e-14 -3.0821212228848682,0.13362731007046622,3.0821212228848682,1.2069462250920392e-14,0.624052199074074,1.2069462250920392e-14,0.1425437298067821,0.0,0.0,0.0,-0.0,19.28,1602.5305,2.4138925e-14 -2.926902580589356,0.12039579683320886,2.926902580589356,4.686447373426341e-15,0.6238902777777778,4.686447373426341e-15,0.1286771193073649,0.0,0.0,0.0,-0.0,17.56,1599.4446,9.372895e-15 -2.7968033006811246,0.12962547596072063,2.7968033006811246,1.9899999999999907,0.6207944444444444,-9.338206206562465e-15,0.13877725229666893,1.99,1.99,0.0,-0.0,18.915,1596.7292,-1.8676412e-14 -2.686579344912045,0.14291578732203014,2.686579344912045,0.5999999999999713,0.6199998842592592,-2.869896703095463e-14,0.15323632678226012,0.6,0.6,0.0,-0.0,20.625,1594.328,-5.7397934e-14 -2.5907202997415792,0.1438375987367639,2.5907202997415792,3.43999999999995,0.6183303240740741,-4.9809423485690055e-14,0.15443488407691028,3.44,3.44,0.0,-0.0,20.805,1592.1582,-9.961885e-14 -2.5045091470221044,0.14157913722650795,2.5045091470221044,-6.908317369759291e-14,0.615999537037037,-6.908317369759291e-14,0.1522032395288712,0.0,0.0,0.0,-0.0,20.619999999999997,1590.1371,-1.3816635e-13 -2.423845704586553,0.1629957497802739,2.423845704586553,1.119999999999917,0.6151532407407407,-8.293379546470198e-14,0.17544266252907914,1.12,1.12,0.0,-0.0,23.105,1588.182,-1.6586759e-13 -2.3451282010472774,0.1595671382882198,2.3451282010472774,-8.777489369011305e-14,0.6120002314814815,-8.777489369011305e-14,0.1719657207560845,0.0,0.0,0.0,-0.0,22.845,1586.2103,-1.7554979e-13 -2.2651950698330454,0.1252322860538248,2.2651950698330454,-8.002005633626056e-14,0.6115356481481482,-8.002005633626056e-14,0.13513944968743233,0.0,0.0,0.0,-0.0,18.72,1584.1393,-1.6004011e-13 -2.188277161143614,0.14244377925763796,2.188277161143614,-5.638213827022869e-14,0.6080510416666667,-5.638213827022869e-14,0.1539129985009577,0.0,0.0,0.0,-0.0,21.035,1582.0762,-1.12764277e-13 -2.4615368112263374,0.12899966305149108,2.4615368112263374,15.169999999999968,0.6078891203703704,-3.17696173188119e-14,0.1387700000449176,15.17,15.17,0.0,-0.0,19.27,1589.1035,-6.3539235e-14 -3.1539783543875903,0.14481278925907776,3.1539783543875903,20.619999999999983,0.6042853009259259,-1.694377941446082e-14,0.15434301319563093,20.62,20.62,0.0,-0.0,21.189999999999998,1603.9069,-3.388756e-14 -3.8358212201807254,0.16841984697768023,3.8358212201807254,9.859999999999989,0.6039916666666666,-9.982670377447828e-15,0.17820501070774367,9.86,9.86,0.0,-0.0,23.700000000000003,1615.5952,-1.996534e-14 -4.422774991394131,0.1727212463744202,4.422774991394131,16.07999999999999,0.6002854166666667,-5.777180169934623e-15,0.18179947668117194,16.08,16.08,0.0,-0.0,24.159999999999997,1624.0984,-1.155436e-14 -5.495144420114659,0.16665742992108606,5.495144420114659,19.179999999999996,0.5999998842592592,-3.411576390447663e-15,0.17402769250488156,19.18,19.18,0.0,-0.0,23.4,1637.0635,-6.8231528e-15 -6.083414331529264,0.1509107320334877,6.083414331529264,4.499999999999998,0.5962851851851851,-2.0088004678186826e-15,0.15700212448341874,4.5,4.5,0.0,-0.0,21.715,1643.1371,-4.017601e-15 -5.847534117250375,0.1469605519949405,5.847534117250375,2.2999999999999985,0.5959997685185184,-1.1854850783622393e-15,0.15311256849271487,2.3,2.3,0.0,-0.0,21.29,1640.7754,-2.3709702e-15 -5.485627681781536,0.15324682667349526,5.485627681781536,2.289999999999999,0.5920523148148148,-7.032780623967622e-16,0.16003413774443834,2.29,2.29,0.0,-0.0,22.17,1636.96,-1.4065561e-15 -5.073685981286371,0.13764581582776864,5.073685981286371,-3.947492230351428e-16,0.591992824074074,-3.947492230351428e-16,0.14415269750764975,0.0,0.0,0.0,-0.0,20.369999999999997,1632.298,-7.8949845e-16 -4.660217207245008,0.1450039556243727,4.660217207245008,-2.280379453620062e-16,0.5880002314814815,-2.280379453620062e-16,0.15233243844120598,0.0,0.0,0.0,-0.0,21.435,1627.2214,-4.560759e-16 -4.320473942709474,0.13634915455617447,4.320473942709474,2.17,0.5879922453703703,-1.1052233464795378e-16,0.1436392730738828,2.17,2.17,0.0,-0.0,20.425,1622.7008,-2.2104467e-16 -4.250980795380966,0.10444482606097973,4.250980795380966,4.41,0.5840005787037037,-3.9896485969151457e-17,0.11009483189789908,4.41,4.41,0.0,-0.0,16.065,1621.7324,-7.979297e-17 -4.704886244599636,0.10471994847734054,4.704886244599636,16.55,0.5835359953703704,-2.0814193552439123e-17,0.10997397962755709,16.55,16.55,0.0,-0.0,16.060000000000002,1627.7911,-4.1628387e-17 -5.591293174433886,0.10357795371354302,5.591293174433886,14.77,0.5800003472222222,-1.1872705311708366e-17,0.10809019137947266,14.77,14.77,0.0,-0.0,15.875,1638.0994,-2.374541e-17 -5.848837095439582,0.10374978420912989,5.848837095439582,1.88,0.5787818287037036,-7.039483202296738e-18,0.10809204855036665,1.88,1.88,0.0,-0.0,15.91,1640.7887,-1.4078966e-17 -5.406967138908284,0.09643812576427549,5.406967138908284,-4.125273791893832e-18,0.5760005787037037,-4.125273791893832e-18,0.10076246996879618,0.0,0.0,0.0,-0.0,14.835,1636.0974,-8.2505476e-18 -4.961001591614857,0.07809429867080053,4.961001591614857,0.25,0.5738478009259259,-2.4294176717445134e-18,0.08185328398550826,0.25,0.25,0.0,-0.0,11.540000000000001,1630.9567,-4.8588353e-18 -4.597986100996935,0.08299574440220991,4.597986100996935,0.38,0.5719994212962963,-1.4079468089634992e-18,0.08723337970281678,0.38,0.38,0.0,-0.0,12.61,1626.4186,-2.8158936e-18 -4.250841770821926,0.07528973699606208,4.250841770821926,0.04,0.5680513888888888,-6.359673708061618e-19,0.07936267629205652,0.04,0.04,0.0,-0.0,11.21,1621.7305,-1.2719347e-18 -3.924664587348008,0.0686714147858136,3.924664587348008,0.17,0.5679997685185185,1.0200207763931175e-19,0.0725997639317621,0.17,0.17,0.0,-0.0,9.805,1616.9626,2.0400416e-19 -3.672783175031363,0.06957411405697764,3.672783175031363,0.37,0.5639996527777777,6.078201206209957e-19,0.07373474062276233,0.37,0.37,0.0,-0.0,10.16,1613.0013,1.2156402e-18 -3.5358982605698226,0.07532662761204846,3.5358982605698226,0.01,0.5639916666666667,6.8334532946226705e-19,0.0799436844703059,0.01,0.01,0.0,-0.0,11.44,1610.733,1.3666907e-18 -3.867509706664762,0.08011251544591887,3.867509706664762,16.75,0.56,4.165242900598453e-19,0.08474126719911441,16.75,16.75,0.0,-0.0,12.485000000000001,1616.0865,8.330486e-19 -4.485521891508217,0.09771480688094963,4.485521891508217,9.34,0.558330324074074,2.489269255543977e-19,0.10279744733439888,9.34,9.34,0.0,-0.0,15.674999999999999,1624.9397,4.9785385e-19 -4.538524473641623,0.1107249126529213,4.538524473641623,1.4,0.5560002314814815,1.490678854741033e-19,0.11643400613451797,1.4,1.4,0.0,-0.0,17.815,1625.6412,2.9813577e-19 -4.462011281310402,0.10574476090772876,4.462011281310402,6.09,0.5520519675925926,8.463379216692997e-20,0.1112665699689735,6.09,6.09,0.0,-0.0,17.175,1624.6259,1.6926758e-19 -4.5256200933475315,0.11136730018344784,4.5256200933475315,5.02,0.5520004629629629,4.213633160303261e-20,0.11712176691652343,5.02,5.02,0.0,-0.0,18.035,1625.4712,8.427266e-20 -4.447205913715204,0.09616793816160621,4.447205913715204,1.95,0.5479999999999999,2.364406277455612e-20,0.10120202626602948,1.95,1.95,0.0,-0.0,15.725000000000001,1624.4274,4.7288126e-20 -4.198057034016654,0.08735229726393053,4.198057034016654,1.388161256171993e-20,0.5479921296296296,1.388161256171993e-20,0.09212017110807652,0.0,0.0,0.0,-0.0,14.185,1620.9843,2.7763225e-20 -3.9237180850294666,0.08122481250148211,3.9237180850294666,8.005089653389509e-21,0.5439997685185185,8.005089653389509e-21,0.08587204389060915,0.0,0.0,0.0,-0.0,13.165,1616.9482,1.601018e-20 -3.717595266150126,0.09393556728080218,3.717595266150126,1.19,0.540794212962963,3.928416842230359e-21,0.09950836225674133,1.19,1.19,0.0,-0.0,15.665,1613.7256,7.856834e-21 -3.604810655451423,0.09515042183322557,3.604810655451423,2.62,0.54,2.0085451807789867e-21,0.1009103390070084,2.62,2.62,0.0,-0.0,15.92,1611.8857,4.0170904e-21 -3.659623955776161,0.07102873965027078,3.659623955776161,3.55,0.5359994212962963,1.1054525716689624e-21,0.07528635978123986,3.55,3.55,0.0,-0.0,11.295,1612.787,2.2109051e-21 -3.8840513447118337,0.0822321636972034,3.8840513447118337,11.81,0.5359994212962963,5.4776971499479655e-22,0.08696966825982688,11.81,11.81,0.0,-0.0,13.61,1616.3414,1.0955394e-21 -4.112916325193851,0.06806654328877836,4.112916325193851,3.6,0.5319998842592593,3.110015077727414e-22,0.07183598658520184,3.6,3.6,0.0,-0.0,10.67,1619.7606,6.22003e-22 -4.003845427403876,0.06223156860501855,4.003845427403876,0.55,0.5298482638888888,1.530970379101771e-22,0.06574302610406603,0.55,0.55,0.0,-0.0,9.34,1618.1555,3.0619408e-22 -3.75682887623897,0.07500818569592135,3.75682887623897,7.325227312895342e-23,0.5279998842592593,7.325227312895342e-23,0.07942724166526925,0.0,0.0,0.0,-0.0,12.39,1614.3525,1.4650455e-22 -3.529688053915226,0.08142669534439845,3.529688053915226,4.251571844031523e-23,0.5240002314814816,4.251571844031523e-23,0.08642328135264701,0.0,0.0,0.0,-0.0,13.875,1610.628,8.503144e-23 -3.336780962957021,0.08926079400784168,3.336780962957021,0.33,0.5240002314814816,2.4067882738750726e-23,0.09493594418793883,0.33,0.33,0.0,-0.0,15.41,1607.2716,4.8135765e-23 -3.240857970241868,0.07846475422606805,3.240857970241868,1.19,0.520000462962963,1.2186766603682925e-23,0.08354404249573823,1.19,1.19,0.0,-0.0,13.45,1605.5297,2.4373533e-23 -3.257801064725798,0.07061679267287957,3.257801064725798,2.23,0.5183310185185186,1.919544312574698e-24,0.07517347560154451,2.23,2.23,0.0,-0.0,11.805,1605.8411,3.8390886e-24 -3.3241936312208034,0.06800656842665558,3.3241936312208034,6.81,0.5159998842592592,-4.2144317992971744e-24,0.07234054584397975,6.81,6.81,0.0,-0.0,11.265,1607.0459,-8.4288636e-24 -3.373140000961203,0.05678326681691378,3.373140000961203,3.22,0.511999537037037,-4.030317974905832e-24,0.060369204915537315,3.22,3.22,0.0,-0.0,8.545,1607.9188,-8.060636e-24 -3.3052698618649123,0.05272407305290108,3.3052698618649123,1.05,0.511999537037037,-2.2433620506218345e-24,0.05609601631979947,1.05,1.05,0.0,-0.0,7.41,1606.705,-4.486724e-24 -3.156125889420894,0.04926056906918414,3.156125889420894,-1.2139713417269207e-24,0.5079996527777778,-1.2139713417269207e-24,0.05250110860098538,0.0,0.0,0.0,-0.0,6.515000000000001,1603.9475,-2.4279427e-24 -3.172794621348006,0.06219669264323346,3.172794621348006,2.64,0.5067805555555556,-6.831455567047309e-25,0.06627521920031774,2.64,2.64,0.0,-0.0,10.165,1604.2621,-1.3662911e-24 -3.414610175517214,0.07079155184649999,3.414610175517214,9.96,0.503999537037037,-3.261987174743197e-25,0.0752279901989702,9.96,9.96,0.0,-0.0,12.265,1608.6486,-6.5239743e-25 -3.6125483777408935,0.07300985967843585,3.6125483777408935,5.09,0.4999997685185186,-1.745906832175627e-25,0.07742335040784434,5.09,5.09,0.0,-0.0,12.855,1612.0138,-3.4918137e-25 -3.555277560396379,0.0785353751926335,3.555277560396379,1.31,0.4999997685185186,-1.0065011578468758e-25,0.08333222112733799,1.31,1.31,0.0,-0.0,14.045,1611.0594,-2.0130023e-25 -3.4882174789365554,0.08327589310206346,3.4882174789365554,4.04,0.4959997685185185,-5.925641472025173e-26,0.08842470095959921,4.04,4.04,0.0,-0.0,15.145,1609.9222,-1.1851283e-25 -3.432237133020169,0.06559299004905983,3.432237133020169,2.01,0.49366840277777774,-3.324281425016721e-26,0.06969031815348677,2.01,2.01,0.0,-0.0,11.375,1608.956,-6.648563e-26 -3.3318056994698355,0.0478052554341315,3.3318056994698355,1.1,0.4919994212962963,-1.910090172078222e-26,0.05084750532378465,1.1,1.1,0.0,-0.0,6.515,1607.1825,-3.8201803e-26 -3.206455638955185,0.05274634807897784,3.206455638955185,1.52,0.48800034722222224,-9.122851271906389e-27,0.056183099523429224,1.52,1.52,0.0,-0.0,8.174999999999999,1604.8923,-1.8245703e-26 -3.0689760750378996,0.05067052533040948,3.0689760750378996,-2.4487039833057183e-27,0.48800034722222224,-2.4487039833057183e-27,0.0540601788979985,0.0,0.0,0.0,-0.0,7.58,1602.2753,-4.897408e-27 -2.923990451716147,0.053479110227982185,2.923990451716147,-5.082673086501258e-28,0.4840002314814815,-5.082673086501258e-28,0.057159749851295405,0.0,0.0,0.0,-0.0,8.57,1599.3851,-1.0165346e-27 -2.8134024409829452,0.046416198908622974,2.8134024409829452,1.13,0.48167002314814816,-1.5451568628654875e-28,0.049682264669289294,1.13,1.13,0.0,-0.0,6.485,1597.0826,-3.0903137e-28 -2.7341006315618044,0.05009415625576569,2.7341006315618044,3.09,0.4800005787037037,2.0217081257103144e-28,0.053676408773018144,3.09,3.09,0.0,-0.0,7.7250000000000005,1595.3751,4.0434163e-28 -2.6638969921521793,0.0433599387660326,2.6638969921521793,0.13,0.4760001157407408,4.621172605059953e-28,0.046505909044511934,0.13,0.13,0.0,-0.0,5.66,1593.8217,9.242345e-28 -2.583074258026182,0.04635602634864386,2.583074258026182,5.25648778249972e-28,0.4760001157407408,5.25648778249972e-28,0.04977684126539243,0.0,0.0,0.0,-0.0,6.694999999999999,1591.9817,1.0512976e-27 -2.4874891962981747,0.06607120359189617,2.4874891962981747,0.09,0.4719996527777777,3.467884106125829e-28,0.07104738340151785,0.09,0.09,0.0,-0.0,12.399999999999999,1589.7299,6.935768e-28 -2.4977913884594543,0.07953986929733035,2.4977913884594543,4.92,0.4701513888888889,1.84450608005154e-28,0.08551716954184606,4.92,4.92,0.0,-0.0,15.475000000000001,1589.9767,3.6890122e-28 -2.7773882189649233,0.06146147088228159,2.7773882189649233,13.39,0.46799976851851854,9.786710512607174e-29,0.06581790231633632,13.39,13.39,0.0,-0.0,11.315,1596.3132,1.9573421e-28 -2.9003824617649365,0.04037532782366478,2.9003824617649365,5.671922667824956e-29,0.463999537037037,5.671922667824956e-29,0.0431671809825901,0.0,0.0,0.0,-0.0,4.92,1598.901,1.1343845e-28 -2.8186346944527303,0.03568493798834701,2.8186346944527303,2.76,0.463999537037037,-1.0686810976429915e-19,0.03819324731798237,2.76,2.76,0.0,-0.0,3.09,1597.1936,-2.1373622e-19 -2.935740390269193,0.03329205618038635,2.935740390269193,6.83,0.46,-1.7373166834047586e-17,0.03557801683433254,6.83,6.83,0.0,-0.0,2.17,1599.6246,-3.4746334e-17 -2.9578823112114963,0.03157594897114483,2.9578823112114963,8.672751733216912e-18,0.45920532407407405,8.672751733216912e-18,0.033734611789403075,0.0,0.0,0.0,-0.0,1.415,1600.0734,1.7345575e-17 -2.8131264205106588,0.031040824368004417,2.8131264205106588,-1.6080273816569107e-17,0.45599953703703705,-1.6080273816569107e-17,0.033225127132953336,0.0,0.0,0.0,-0.0,1.295,1597.0768,-3.216099e-17 -2.774726937670663,0.031898059217057295,2.774726937670663,5.29,0.45200810185185186,9.243276872566855e-17,0.03416024078816522,5.29,5.29,0.0,-0.0,1.8299999999999998,1596.256,1.8486555e-16 -2.766385155187896,0.03791412118337007,2.766385155187896,0.9000000000000001,0.452,9.411780123636565e-17,0.040607530657398194,0.9,0.9,0.0,-0.0,4.395,1596.0762,1.882356e-16 -2.788708644285998,0.04325640033108284,2.788708644285998,3.05,0.4480001157407407,5.597384297869553e-17,0.04631539573892688,3.05,3.05,0.0,-0.0,6.5200000000000005,1596.5562,1.1194769e-16 -2.9512451804098583,0.038698804993317244,2.9512451804098583,7.12,0.4480001157407407,2.958257274329724e-17,0.041347882526834946,7.12,7.12,0.0,-0.0,4.8,1599.9392,5.9165145e-17 -2.979813573565603,0.03127761884711958,2.979813573565603,0.0705185614094042,0.4440001157407408,0.0005185614094041924,0.03340667590349234,0.07,0.07,0.0,-0.0,1.765,1600.5145,0.0010317999 -2.875824463552702,0.026937890460175334,2.875824463552702,0.9447160672539576,0.44166932870370373,-0.005283915589463787,0.028809728357201,0.95,0.9499999828434215,1.7156578480115315e-8,-0.0,-0.30999999999999983,1598.3932,0.011001359 -2.8157324422665178,0.02752108519172647,2.8157324422665178,2.259633168081099,0.4400003472222222,-0.040366830942045,0.029456688531012975,2.3,2.299999999023144,9.768560849110484e-10,-0.0,0.06499999999999995,1597.1321,0.019572897 -2.742003150988909,0.0337320786655628,2.742003150988909,0.00727170646937415,0.43611064814814815,0.00727170646937415,0.0361403680950224,0.0,0.0,0.0,-0.0,3.1900000000000004,1595.5475,0.013617642 -2.6225283381402784,0.04504975758585398,2.6225283381402784,0.004087710560166485,0.43600011574074077,0.004087710560166485,0.04834668505822018,0.0,0.0,0.0,-0.0,7.595000000000001,1592.887,0.007866195 -2.6389290991779286,0.052621885717584894,2.6389290991779286,3.7022779212494896,0.43200000000000005,0.002277921249489654,0.05645977616396997,3.7,3.7,0.0,-0.0,10.155000000000001,1593.2593,0.0044565545 -2.837856607495481,0.03756823855397086,2.837856607495481,10.611190940585383,0.43194837962962956,0.001190940585383744,0.04019871045313193,10.61,10.61,0.0,-0.0,4.925,1597.5995,0.0023541718 -2.9421922991025284,0.0302597228827926,2.9421922991025284,0.0006917502444091926,0.428,0.0006917502444091926,0.032334821739717474,0.0,0.0,0.0,-0.0,1.8250000000000002,1599.7557,0.0013740605 -2.7996116483409685,0.027132451358890742,2.7996116483409685,0.00033311762404545416,0.4261517361111111,0.00033311762404545416,0.0290469576620339,0.0,0.0,0.0,-0.0,0.32499999999999973,1596.7892,0.00081269303 -2.8662353410558583,0.027755425134250312,2.8662353410558583,7.8002473807975745,0.42400011574074076,0.00024738080255580323,0.029687775932393225,7.8,7.799999999995019,4.980649226382638e-12,-0.0,0.7149999999999999,1598.1937,0.0004957838 -3.15724215289159,0.035235529818846936,3.15724215289159,11.350147825187479,0.42121863425925926,0.00014782518748007332,0.03755295678440744,11.35,11.35,0.0,-0.0,4.28,1603.9686,0.00029521462 -3.363177914735973,0.03711621432370582,3.363177914735973,5.960083864770652,0.41999976851851856,8.386477065268176e-5,0.03946448746824322,5.96,5.96,0.0,-0.0,5.069999999999999,1607.7422,0.00016758911 -3.658561890323237,0.040077715529262335,3.658561890323237,12.310049018007131,0.4164640046296296,4.901800713067199e-5,0.04248051922758186,12.31,12.31,0.0,-0.0,6.3149999999999995,1612.7697,9.7988006e-5 -3.754226559502609,0.03635383404584987,3.754226559502609,0.950028692945238,0.4159996527777778,2.8692945237992837e-5,0.03849658212975988,0.95,0.95,0.0,-0.0,4.84,1614.3112,5.7369434e-5 -3.6147421495725145,0.03175266147901182,3.6147421495725145,1.2169502902295457e-5,0.4121109953703704,1.2169502902295457e-5,0.03367137202738934,0.0,0.0,0.0,-0.0,2.9800000000000004,1612.05,2.4336045e-5 -3.5523501123401235,0.03193839026148552,3.5523501123401235,1.5699895496494227,0.41200046296296294,-1.0450350577427346e-5,0.03389018344326588,1.57,1.57,0.0,-0.0,3.08,1611.0103,-2.0902886e-5 -3.50050991702857,0.031346231886281085,3.50050991702857,2.9299789755567556,0.4080084490740741,-2.1024443244395347e-5,0.03327997368337252,2.93,2.93,0.0,-0.0,2.955,1610.1323,-4.205773e-5 -3.373374433492788,0.023557062010446564,3.373374433492788,0.00999656951728015,0.40794895833333333,-2.3465009039062993e-6,0.025044656861773287,0.01,0.009998916018184055,1.0839818159458225e-6,-0.0,-1.1800000000000002,1607.923,-3.4483084e-5 -3.19432075699503,0.021794110664345254,3.19432075699503,-3.289689936803566e-10,0.40399999999999997,-3.289689936803566e-10,0.023217407864738332,0.0,0.0,0.0,-0.0,-2.12,1604.6659,0.00012921928 -3.0862757076238805,0.024877143661251228,3.0862757076238805,2.1584474010930044,0.4037145833333334,-0.01155258586203136,0.026535764614184488,2.17,2.1699999869550357,1.3044963957375976e-8,-0.0,-0.20000000000000018,1602.611,0.0015759447 -3.4275258648794944,0.0309565729738205,3.4275258648794944,17.070811542171068,0.40000023148148145,0.0008115421710694597,0.03289198152611264,17.07,17.07,0.0,-0.0,3.075,1608.874,0.0016101222 -4.042834489617875,0.031844777204548876,4.042834489617875,10.930487054077533,0.39971435185185183,0.0004870540775333891,0.033629612188667,10.93,10.93,0.0,-0.0,3.415,1618.7343,0.0009694094 -4.126170201828735,0.029853648716827597,4.126170201828735,0.05029186332164426,0.3960082175925926,0.0002918633216442569,0.03150317091658273,0.05,0.05,0.0,-0.0,2.585,1619.9528,0.00058203284 -3.891481555743281,0.04046682188909588,3.891481555743281,0.9501702919193411,0.39571446759259266,0.00017029191934119582,0.04279514751782081,0.95,0.95,0.0,-0.0,7.209999999999999,1616.4556,0.00034000582 -3.8144214857007888,0.048653709222031334,3.8144214857007888,4.490098713296064,0.3921108796296296,9.871329606344773e-5,0.05149112964941923,4.49,4.49,0.0,-0.0,10.23,1615.2611,0.00019723209 -3.9664888642453495,0.042907012076725766,3.9664888642453495,7.700058262368412,0.3919487268518519,5.8262368411343755e-5,0.045343755719428315,7.7,7.7,0.0,-0.0,8.25,1617.5957,0.000116456926 -4.1945917415393215,0.03447364856219003,4.1945917415393215,8.020034627073908,0.3884644675925926,3.4627073908456645e-5,0.036356399590146395,8.02,8.02,0.0,-0.0,5.01,1620.9349,6.9230184e-5 -4.271632837925714,0.028022733662132506,4.271632837925714,3.9800199002115875,0.38799999999999996,1.9900211587584617e-5,0.029533369548529198,3.98,3.98,0.0,-0.0,1.935,1622.0219,3.9792507e-5 -4.292288701054384,0.02979038720167297,4.292288701054384,4.6800116726512195,0.3848466435185185,1.1672651220206271e-5,0.03139073761216476,4.68,4.68,0.0,-0.0,2.955,1622.3099,2.3342578e-5 -4.323292021776103,0.029622547731816065,4.323292021776103,4.270006386658175,0.3840003472222222,6.38665817581292e-6,0.031205614230139594,4.27,4.27,0.0,-0.0,2.9000000000000004,1622.7397,1.2772501e-5 -4.162724133417049,0.021544650146900674,4.162724133417049,-3.982482862783858e-8,0.38166932870370374,-3.982482862783858e-8,0.022727680100550936,0.0,0.0,0.0,-0.0,-1.6150000000000002,1620.4795,-0.00092691847 -3.9025219108154587,0.019542953655052597,3.9025219108154587,0.0007470126780643527,0.3799997685185186,-3.607352869752916e-13,0.020665226899550353,2.39,0.000747012678425088,2.389252987321575,-0.0,-2.9000000000000004,1616.6248,1.0050799 -3.925787852346473,0.02617978355441021,3.925787852346473,7.883217773353201,0.37920590277777777,1.2632177733532117,0.027677105879526518,6.62,6.6199999999999894,9.922063171075025e-15,-0.0,1.32,1616.9797,1.2632354 -3.9322609054434388,0.02695244926429068,3.9322609054434388,0.46056207574441793,0.37611087962962964,0.46056207574441793,0.028492229635516435,0.0,0.0,0.0,-0.0,1.865,1617.0781,0.46496725 -3.708775804497994,0.025723619081255242,3.708775804497994,0.2758785305094069,0.3759486111111111,0.1558785305094074,0.027252086698474506,0.12,0.1199999999999995,4.929390229335694e-16,-0.0,1.2200000000000002,1613.5837,0.181314 -3.5968395269975377,0.031382290365109686,3.5968395269975377,3.398111374893712,0.37321898148148147,0.05811137489371248,0.033284742740050034,3.34,3.34,0.0,-0.0,4.285,1611.7535,0.08335979 -3.6043685798162044,0.02691808040494182,3.6043685798162044,4.136387016855438,0.3719998842592593,0.02638701685543764,0.028547692268794663,4.11,4.11,0.0,-0.0,2.055,1611.8784,0.043471303 -3.5119984886307196,0.021332593650929932,3.5119984886307196,-1.1991434434688391e-6,0.37120578703703705,-1.1991434434688391e-6,0.022645844280640957,0.0,0.0,0.0,-0.0,-1.27,1610.328,0.036084805 -3.3378792466630736,0.018039442581858554,3.3378792466630736,4.081240385056785e-6,0.3684645833333333,-1.0944233875373643e-15,0.01918614540995818,5.82,4.081240386151209e-6,5.819995918759614,-0.0,-3.5100000000000002,1607.2913,2.539112 -3.2078126299494616,0.019939378807343675,3.2078126299494616,9.14950894512673,0.3680003472222222,-1.1667551045344582e-9,0.021238218510748492,15.73,9.149508946293485,6.580491053706513,-0.0,-2.06,1604.9176,12.429774 -3.0699799370196903,0.016699772931644152,3.0699799370196903,1.9423584518563075e-10,0.36615196759259255,-0.0,0.017816703136949434,3.52,1.9423584518563075e-10,3.5199999998057643,-0.0,-4.455,1602.2948,21.479712 -2.9191473188040624,0.014097612555826124,2.9191473188040624,0.0,0.3644642361111111,-0.0,0.015068797618083687,0.0,0.0,0.0,-0.0,-6.694999999999999,1599.2861,23.25893 -2.7825307441078535,0.011681489400280805,2.7825307441078535,0.0,0.36400011574074076,-0.0,0.012508615758573371,0.0,0.0,0.0,-0.0,-9.185,1596.4237,23.340462 -2.6581042537705826,0.013514394764610914,2.6581042537705826,0.0,0.3621513888888889,-0.0,0.014496110954562581,0.0,0.0,0.0,-0.0,-7.135,1593.6917,23.335657 -2.5441877343370134,0.017215625723185548,2.5441877343370134,0.0,0.3604638888888889,-0.0,0.018496567490908455,0.0,0.0,0.0,-0.0,-3.715,1591.0758,23.335657 -2.4329442251920836,0.02045702353962907,2.4329442251920836,-2.8179576410035875e-6,0.3599998842592593,-2.8179576410035875e-6,0.022016090010963604,0.0,0.0,0.0,-0.0,-1.2350000000000003,1588.4058,23.33463 -2.5854248861959968,0.026594570943213974,2.5854248861959968,14.56694021914571,0.35920578703703704,6.41694021914571,0.02855612682836368,8.15,8.15,0.0,-0.0,2.575,1592.036,21.320688 -2.9290751093038363,0.01965998535940279,2.9290751093038363,8.413337841565562,0.3572189814814815,-1.5264394114576354e-8,0.021011698614373176,8.82,8.413337856829957,0.4066621431700428,-0.0,-1.79,1599.4889,19.553514 -2.8217418022595293,0.014930408729654928,2.8217418022595293,3.0309088572266773e-16,0.35611041666666665,-0.0,0.015979215192424973,0.39,3.0309088572266773e-16,0.38999999999999974,-0.0,-5.575,1597.2594,23.47516 -2.6937222523724698,0.01922866117916112,2.6937222523724698,-1.880633344644145e-9,0.3559483796296296,-1.880633344644145e-9,0.020615191891966565,0.0,0.0,0.0,-0.0,-2.0100000000000002,1594.4866,23.664663 -2.5767461320043057,0.016867301167370025,2.5767461320043057,0.0,0.3546476851851852,-0.0,0.018113680161049032,0.0,0.0,0.0,-0.0,-3.78,1591.8352,23.655767 -2.469484258992267,0.016676760130772957,2.469484258992267,2.3505082423769254e-8,0.35321898148148145,-0.0,0.017937672360718363,1.11,2.3505082423769254e-8,1.1099999764949178,-0.0,-3.86,1589.296,24.145117 -2.3707932082287773,0.015115093887486533,2.3707932082287773,0.0,0.35211030092592593,-0.0,0.0162828844474443,0.0,0.0,0.0,-0.0,-5.16,1586.8604,24.54288 -2.279831759326876,0.008891739404061193,2.279831759326876,0.0,0.35199988425925927,-0.0,0.009592838340568155,0.0,0.0,0.0,-0.0,-12.23,1584.5239,24.568344 -2.195589167523793,0.009199063343090978,2.195589167523793,0.0,0.35171423611111113,-0.0,0.009938497591950816,0.0,0.0,0.0,-0.0,-11.76,1582.2754,24.585747 -2.1172230317525855,0.01623695433021007,2.1172230317525855,3.800673309406477e-10,0.3506474537037037,-0.0,0.01756620156080206,0.12,3.800673309406477e-10,0.11999999961993266,-0.0,-4.05,1580.1049,24.640577 -2.044263913207544,0.013126463588170361,2.044263913207544,0.0,0.34966921296296294,-0.0,0.014219915558697477,0.03,0.0,0.03,-0.0,-6.92,1578.0106,24.728376 -1.9762694539624155,0.007836603392443416,1.9762694539624155,0.0,0.3488465277777778,-0.0,0.008500284850715833,0.26,0.0,0.26,-0.0,-13.67,1575.9905,24.879587 -1.9127481953058956,0.0059778239228243475,1.9127481953058956,0.0,0.3481105324074074,-0.0,0.006492122601383208,0.0,0.0,0.0,-0.0,-17.035,1574.0394,25.013214 -1.8532411867670209,0.0037335026601256318,1.8532411867670209,0.0,0.3480079861111111,-0.0,0.004059580331968883,0.0,0.0,0.0,-0.0,-22.695,1572.152,25.017164 -1.7973333741388218,0.004742935729326212,1.7973333741388218,0.0,0.34794849537037037,-0.0,0.005163183387642111,0.0,0.0,0.0,-0.0,-19.83,1570.3226,25.017164 -1.7446627559867989,0.006422197592043454,1.7446627559867989,0.0,0.34771435185185184,-0.0,0.006999153169573219,0.0,0.0,0.0,-0.0,-16.085,1568.5464,25.020668 -1.6948931561149656,0.011558748540620778,1.6948931561149656,0.0,0.3472057870370371,-0.0,0.01261105635663348,1.32,0.0,1.32,-0.0,-8.445,1566.818,25.700962 -1.6477587528024145,0.01521705485617783,1.6477587528024145,4.1769467884478216e-11,0.3466476851851852,-0.0,0.016620281441995382,5.88,4.1769467884478216e-11,5.879999999958231,-0.0,-4.66,1565.1337,29.344313 -1.603209397295535,0.008241744512023278,1.603209397295535,0.0,0.3466476851851852,-0.0,0.00901117335389154,0.0,0.0,0.0,-0.0,-12.84,1563.4968,32.300465 -1.5611435760882706,0.00415143413802129,1.5611435760882706,0.0,0.3461518518518519,-0.0,0.004543616246617308,0.0,0.0,0.0,-0.0,-21.3,1561.9089,32.391945 -1.5212539001564267,0.005495861238929949,1.5212539001564267,0.0,0.3461518518518519,-0.0,0.006021008940469638,0.0,0.0,0.0,-0.0,-17.895,1560.3632,32.368996 -1.4833200500174402,0.00660331678036275,1.4833200500174402,0.0,0.3456693287037037,-0.0,0.0072412840599099726,0.0,0.0,0.0,-0.0,-15.585,1558.8551,32.369576 -1.4471690072717878,0.010430049568950838,1.4471690072717878,0.0,0.3456693287037037,-0.0,0.01144855134833551,0.68,0.0,0.68,-0.0,-9.675,1557.3816,32.716793 -1.4166863058536852,0.01945300990400818,1.4166863058536852,1.2499292834767493,0.3461518518518519,-9.829835508266685e-6,0.021370055555873353,1.25,1.2499391133122575,6.0886687742386925e-5,-0.0,-1.1,1556.1102,33.5102 -1.3865764053423622,0.009372474020932185,1.3865764053423622,0.0,0.3461518518518519,-0.0,0.010304603769685014,0.0,0.0,0.0,-0.0,-11.08,1554.8273,34.00282 -1.3549333940888029,0.007029726790203604,1.3549333940888029,0.0,0.3461518518518519,-0.0,0.007735720273581104,1.43,0.0,1.43,-0.0,-14.77,1553.4486,34.686317 -1.3246703096908257,0.011865263511246555,1.3246703096908257,0.0,0.3466476851851852,-0.0,0.013068236911254458,6.45,0.0,6.45,-0.0,-7.945,1552.0996,38.641285 -1.3143135182640089,0.018839136363883385,1.3143135182640089,8.707801402873335,0.3472057870370371,-1.344359571664603e-7,0.020755432244560827,8.75,8.707801537309292,0.04219846269070897,-0.0,-1.56,1551.6309,45.380276 -1.3003751172642366,0.011977474886807483,1.3003751172642366,0.0,0.34771435185185184,-0.0,0.013201227419781332,0.0,0.0,0.0,-0.0,-7.85,1550.9941,49.06453 -1.2724693369712061,0.007725203793790928,1.2724693369712061,0.0,0.34794849537037037,-0.0,0.00852161487843342,2.04,0.0,2.04,-0.0,-13.605,1549.6986,50.10026 -1.2457224705863121,0.011577985245264431,1.2457224705863121,0.0,0.34800000000000003,-0.0,0.012782053617404698,4.93,0.0,4.93,-0.0,-8.295,1548.4299,53.61792 -1.2200688928505143,0.008364252184887564,1.2200688928505143,0.0,0.3480079861111111,-0.0,0.009241520685711655,0.6,0.0,0.6,-0.0,-12.565,1547.1873,56.32446 -1.195510405220797,0.004126110731246925,1.195510405220797,0.0,0.3484641203703704,-0.0,0.0045624508921582995,0.25,0.0,0.25,-0.0,-21.330000000000002,1545.9729,56.83858 -1.1719372217688229,0.005911602621736312,1.1719372217688229,0.0,0.3482361111111111,-0.0,0.006541792920787069,0.42,0.0,0.42,-0.0,-16.945,1544.7836,57.260784 -1.1492868570582877,0.004528353570949823,1.1492868570582877,0.0,0.34921886574074074,-0.0,0.005014870052752297,0.0,0.0,0.0,-0.0,-20.225,1543.618,57.42425 -1.1274959340034683,0.0052717306783685094,1.1274959340034683,0.0,0.35015162037037034,-0.0,0.0058424408383129485,5.35,0.0,5.35,-0.0,-18.405,1542.4749,60.03786 -1.1064935567174945,0.00723211562709028,1.1064935567174945,0.0,0.35120578703703703,-0.0,0.008020893535211356,3.87,0.0,3.87,-0.0,-14.495000000000001,1541.3519,64.56353 -1.0862708975389026,0.003754643556707168,1.0862708975389026,0.0,0.3519482638888889,-0.0,0.0041671256350364295,0.0,0.0,0.0,-0.0,-22.52,1540.2504,66.40497 -1.0667993681354773,0.003541215265627561,1.0667993681354773,0.0,0.35200787037037035,-0.0,0.003933008562648902,0.0,0.0,0.0,-0.0,-23.200000000000003,1539.1702,66.42293 -1.0480002836107496,0.004974990471302222,1.0480002836107496,0.0,0.35284641203703704,-0.0,0.00552922815409307,0.0,0.0,0.0,-0.0,-19.17,1538.1084,66.42293 -1.0298418697804372,0.005244154822578848,1.0298418697804372,0.0,0.3541518518518519,-0.0,0.005832336760922133,0.0,0.0,0.0,-0.0,-18.564999999999998,1537.0646,66.398605 -1.012240132870633,0.013147211100148387,1.012240132870633,0.0,0.35571446759259256,-0.0,0.014631596501105466,2.56,0.0,2.56,-0.0,-6.765,1536.035,67.6964 -0.9951466980041385,0.014229821631360566,0.9951466980041385,1.7430501486614959e-15,0.35600000000000004,-0.0,0.015846932225758406,6.28,1.7430501486614959e-15,6.2799999999999985,-0.0,-5.685,1535.018,72.131485 -0.9786779346489584,0.006228227716442467,0.9786779346489584,0.0,0.3564643518518519,-0.0,0.0069405242556760316,0.0,0.0,0.0,-0.0,-16.5,1534.0214,75.25464 -0.9627906379656213,0.006965155793079317,0.9627906379656213,0.0,0.35815185185185183,-0.0,0.007766680353865141,0.0,0.0,0.0,-0.0,-15.149999999999999,1533.044,75.30809 -0.9474032819672423,0.007076559131390165,0.9474032819672423,0.0,0.3599482638888889,-0.0,0.007895859122689343,1.16,0.0,1.16,-0.0,-15.004999999999999,1532.0818,75.9089 -0.9324791088141301,0.00976909727956302,0.9324791088141301,0.0,0.36000787037037035,-0.0,0.010906880726728274,2.85,0.0,2.85,-0.0,-10.85,1531.1335,77.92097 -0.9179964150991644,0.009346002263141175,0.9179964150991644,0.0,0.36121863425925926,-0.0,0.010440883394307513,0.0,0.0,0.0,-0.0,-11.465,1530.1987,79.30051 -0.9039104709271999,0.016583023581167262,0.9039104709271999,3.456377975330494e-8,0.3637142361111111,-0.0,0.018536906275626066,0.99,3.456377975330494e-8,0.9899999654362203,-0.0,-3.8099999999999996,1529.2753,79.77681 -0.8902226111752303,0.013361687060665456,0.8902226111752303,0.0,0.36400011574074076,-0.0,0.014944923408633293,0.0,0.0,0.0,-0.0,-6.79,1528.364,80.12895 -0.876996540427951,0.0074529454764244085,0.876996540427951,0.0,0.36521898148148146,-0.0,0.008340929095204138,0.01,0.0,0.01,-0.0,-14.495,1527.4701,80.12909 -0.864171848284536,0.011103554213583725,0.864171848284536,0.0,0.36771435185185186,-0.0,0.012433652079274278,1.07,0.0,1.07,-0.0,-9.4,1526.5903,80.72225 -0.8516843993509341,0.01168300023768052,0.8516843993509341,0.0,0.3680083333333333,-0.0,0.013089963720067875,4.08,0.0,4.08,-0.0,-8.725,1525.7211,83.32207 -0.8395215294215627,0.01573047337021346,0.8395215294215627,2.924353148525682e-11,0.3696696759259259,-0.0,0.017634795742922177,8.29,2.924353148525682e-11,8.289999999970755,-0.0,-4.73,1524.862,89.45284 -0.827723519607642,0.008336395103614882,0.827723519607642,0.0,0.3719483796296296,-0.0,0.009350777503178951,7.09,0.0,7.09,-0.0,-13.27,1524.0168,97.17107 -0.8163098636956112,0.0061288328422970965,0.8163098636956112,0.0,0.37211041666666667,-0.0,0.0068783389909105345,0.11,0.0,0.11,-0.0,-17.145,1523.1876,100.865036 -0.8051819571979332,0.01224108017100306,0.8051819571979332,0.0,0.3746479166666667,-0.0,0.01374546130405397,0.0,0.0,0.0,-0.0,-8.31,1522.3679,101.0742 -0.7942950373179315,0.014485065761102789,0.7942950373179315,0.0,0.3760002314814815,-0.0,0.01627391473248825,0.0,0.0,0.0,-0.0,-6.07,1521.5549,101.07419 -0.7837203043268107,0.00861898504291812,0.7837203043268107,0.0,0.3772188657407407,-0.0,0.009688492625793651,0.0,0.0,0.0,-0.0,-12.995000000000001,1520.7545,101.1363 -0.7734760552281984,0.006150320174842127,0.7734760552281984,0.0,0.3799997685185186,-0.0,0.006917071531017069,3.68,0.0,3.68,-0.0,-17.335,1519.9688,103.281876 -0.7634936713202592,0.008680830768977747,0.7634936713202592,0.0,0.3804640046296296,-0.0,0.00976804253584216,3.73,0.0,3.73,-0.0,-13.0,1519.193,106.81821 -0.7537618258245099,0.007512175797191196,0.7537618258245099,0.0,0.383714699074074,-0.0,0.008457286836305207,0.0,0.0,0.0,-0.0,-14.945,1518.4269,108.32124 -0.7442300848945536,0.015572470261689748,0.7442300848945536,0.0,0.38400833333333334,-0.0,0.017540430870412262,0.0,0.0,0.0,-0.0,-5.33,1517.6669,108.419655 -0.7348924798378375,0.01509560791232278,0.7348924798378375,1.3489209749195653e-16,0.3866476851851852,-0.0,0.017011757375112818,2.43,1.3489209749195653e-16,2.43,-0.0,-5.845,1516.9128,109.14652 -0.7257684516802225,0.01645784622832708,0.7257684516802225,2.9034130655247735e-12,0.38799999999999996,-0.0,0.018556037160445706,0.58,2.9034130655247735e-12,0.5799999999970965,-0.0,-4.695,1516.1667,110.56892 -0.7168573350147728,0.016541073425026986,0.7168573350147728,1.441694763570922e-11,0.3901519675925926,-0.0,0.018658954662033912,2.88,1.441694763570922e-11,2.879999999985583,-0.0,-4.695,1515.429,112.59564 -0.7082293272860104,0.0063174665065142055,0.7082293272860104,0.0,0.39200034722222227,-0.0,0.007129742707301823,4.29,0.0,4.29,-0.0,-17.345,1514.7058,116.201515 -0.6998553550259534,0.006191556651349494,0.6998553550259534,0.0,0.3936696759259259,-0.0,0.006990922254198339,4.82,0.0,4.82,-0.0,-17.64,1513.9955,120.80037 -0.6916892522410837,0.004328606555110078,0.6916892522410837,0.0,0.39600023148148145,-0.0,0.004889718348313921,1.63,0.0,1.63,-0.0,-22.025,1513.2946,124.00973 -0.6837218450270921,0.004119274585185459,0.6837218450270921,0.0,0.3972188657407407,-0.0,0.004655379429374511,0.0,0.0,0.0,-0.0,-22.64,1512.6027,124.76278 -0.6759249601581616,0.006274843497352214,0.6759249601581616,0.0,0.40000023148148145,-0.0,0.007094698447775148,0.92,0.0,0.92,-0.0,-17.655,1511.9177,125.274475 -0.6682811864082043,0.007826968047541844,0.6682811864082043,0.0,0.4012189814814815,-0.0,0.008853596912813622,0.23,0.0,0.23,-0.0,-14.93,1511.2385,125.78803 -0.6607927345902166,0.00883933524995089,0.6607927345902166,0.0,0.40399999999999997,-0.0,0.010003206408833147,1.15,0.0,1.15,-0.0,-13.465,1510.5656,126.53588 -0.6534669972381429,0.008452045312721567,0.6534669972381429,0.0,0.40521898148148144,-0.0,0.009569139718991444,0.36,0.0,0.36,-0.0,-14.07,1509.8998,127.27222 -0.6463136239744305,0.006594153549197256,0.6463136239744305,0.0,0.4080003472222223,-0.0,0.0074689448049925665,0.0,0.0,0.0,-0.0,-17.265,1509.2424,127.448845 -0.6393091191533741,0.00994043313473245,0.6393091191533741,0.0,0.40966990740740744,-0.0,0.011264004170140583,0.36,0.0,0.36,-0.0,-12.114999999999998,1508.5917,127.61282 -0.6324348185406,0.009643666277731132,0.6324348185406,0.0,0.41200046296296294,-0.0,0.010932401460229718,0.29,0.0,0.29,-0.0,-12.575,1507.946,127.92978 -0.6257137272325758,0.00906334629775216,0.6257137272325758,0.0,0.41464768518518513,-0.0,0.010278879520374973,2.17,0.0,2.17,-0.0,-13.45,1507.308,129.30658 -0.6190982296840556,0.015973879684775635,0.6190982296840556,0.0,0.4159996527777778,-0.0,0.01812385343902132,1.61,0.0,1.61,-0.0,-5.98,1506.6732,131.14359 -0.6125714574800916,0.01793859166881828,0.6125714574800916,2.0670847478143627e-10,0.419205324074074,-0.0,0.02036155570595232,4.81,2.0670847478143627e-10,4.809999999793291,-0.0,-4.48,1506.0403,134.39061 -0.6062039409724489,0.011750923681411942,0.6062039409724489,0.0,0.41999976851851856,-0.0,0.013343648836861517,4.47,0.0,4.47,-0.0,-10.225,1505.4163,139.11063 -0.6000350600424279,0.004748944574357941,0.6000350600424279,0.0,0.42400011574074076,-0.0,0.005394807531117305,0.0,0.0,0.0,-0.0,-21.67,1504.8054,141.25647 -0.5940236558751681,0.0040349696809025785,0.5940236558751681,0.0,0.42400011574074076,-0.0,0.0045855634611320405,0.0,0.0,0.0,-0.0,-23.580000000000002,1504.2041,141.2754 -0.588128975269569,0.005283667960386977,0.588128975269569,0.0,0.428,-0.0,0.006007031931047888,0.02,0.0,0.02,-0.0,-20.5,1503.6085,141.26318 -0.5823142139394186,0.011743652009277907,0.5823142139394186,0.0,0.42846388888888887,-0.0,0.013356695347336061,0.52,0.0,0.52,-0.0,-10.475,1503.0151,141.38275 -0.5765510499652847,0.017449916401575234,0.5765510499652847,2.3248902802919245e-13,0.43200000000000005,-0.0,0.01985458734447409,11.35,2.3248902802919245e-13,11.349999999999767,-0.0,-5.244999999999999,1502.4211,147.29884 -0.5708589261606097,0.02111255981089853,0.5708589261606097,0.03775803417453384,0.4336695601851852,-4.668783937788272e-12,0.024031435813926638,8.57,0.03775803417920263,8.532241965820797,-0.0,-2.6350000000000002,1501.8286,157.12944 -0.5653004120629134,0.012434841297951617,0.5653004120629134,0.0,0.43600011574074077,-0.0,0.01415950552137065,0.0,0.0,0.0,-0.0,-9.934999999999999,1501.2443,161.33595 -0.5599127470431536,0.006595876591683292,0.5599127470431536,0.0,0.4399488425925926,-0.0,0.007513561366972728,0.0,0.0,0.0,-0.0,-18.12,1500.6724,161.3524 -0.5546433148849166,0.007140085910740835,0.5546433148849166,0.0,0.4400003472222222,-0.0,0.00813654831894919,0.94,0.0,0.94,-0.0,-17.14,1500.1077,161.35808 -0.549461659048432,0.011060745083273007,0.549461659048432,0.0,0.4440001157407408,-0.0,0.012609081952385774,0.34,0.0,0.34,-0.0,-11.695,1499.5471,161.37085 -0.5443662426155131,0.009849244358976801,0.5443662426155131,0.0,0.4440081018518519,-0.0,0.01123215708036144,0.0,0.0,0.0,-0.0,-13.19,1498.9907,161.38708 -0.5393522534871124,0.011534821214070618,0.5393522534871124,0.0,0.4480001157407407,-0.0,0.013159253655009076,0.0,0.0,0.0,-0.0,-11.255,1498.4381,161.40317 -0.5344172167708422,0.012698788298811912,0.5344172167708422,0.0,0.4501516203703704,-0.0,0.014492449850089502,0.01,0.0,0.01,-0.0,-10.049999999999999,1497.8892,161.41545 -0.5295576426840684,0.014283937818593152,0.5295576426840684,0.0,0.452,-0.0,0.016307435638758902,0.0,0.0,0.0,-0.0,-8.535,1497.3436,161.4169 -0.5248087628498919,0.008301154341493087,0.5248087628498919,0.0,0.45599953703703705,-0.0,0.00948052246660118,0.0,0.0,0.0,-0.0,-15.68,1496.8057,161.29198 -0.5201715760132791,0.006769387513533467,0.5201715760132791,0.0,0.45599953703703705,-0.0,0.007733871875569152,2.4,0.0,2.4,-0.0,-18.205,1496.2756,162.51642 -0.5155985485267891,0.013589128247084907,0.5155985485267891,0.0,0.46,-0.0,0.0155307447822344,5.21,0.0,5.21,-0.0,-9.42,1495.7483,166.02235 -0.5110918409194418,0.009370021374006643,0.5110918409194418,0.0,0.4604638888888889,-0.0,0.010712566317182296,0.0,0.0,0.0,-0.0,-14.26,1495.224,167.95317 -0.5066949482719597,0.0051122402402389725,0.5066949482719597,0.0,0.463999537037037,-0.0,0.005846744209788848,0.0,0.0,0.0,-0.0,-21.785,1494.708,168.07231 -0.5023861972997242,0.005349179618882362,0.5023861972997242,0.0,0.46799976851851854,-0.0,0.006119814129496036,0.0,0.0,0.0,-0.0,-21.345000000000002,1494.198,168.07231 -0.4981232499634204,0.008237908289221963,0.4981232499634204,0.0,0.46799976851851854,-0.0,0.009427921238056487,0.0,0.0,0.0,-0.0,-16.075,1493.6891,168.07231 -0.4939055614194655,0.012925697758005785,0.4939055614194655,0.0,0.4719996527777777,-0.0,0.014797919574536888,0.0,0.0,0.0,-0.0,-10.4,1493.1813,168.07231 -0.4897416033120564,0.015313738404863898,0.4897416033120564,0.0,0.4719996527777777,-0.0,0.01753779438689956,0.0,0.0,0.0,-0.0,-8.139999999999999,1492.6757,168.07231 -0.48563756612683684,0.01505772675422035,0.48563756612683684,0.0,0.4760001157407408,-0.0,0.017250409443103503,0.0,0.0,0.0,-0.0,-8.475,1492.1731,168.07231 -0.4816338763820569,0.009297652384977926,0.4816338763820569,0.0,0.4800005787037037,-0.0,0.010655092257200873,0.0,0.0,0.0,-0.0,-14.855,1491.6787,168.07231 -0.48033316997034065,0.0249302241665543,0.48033316997034065,-7.633040248090088e-8,0.4800005787037037,-7.633040248090088e-8,0.02857308381526806,0.0,0.0,0.0,-0.0,-1.6199999999999997,1491.5172,167.87267 -0.5189354220892975,0.03541226932469368,0.5189354220892975,11.849479111149568,0.4840002314814815,8.409479111149569,0.04046155777250839,3.44,3.44,0.0,-0.0,3.3200000000000003,1496.1335,164.6568 -0.5684323644415205,0.02706484007468537,0.5684323644415205,3.099473761122176,0.4840002314814815,-0.0005243849227566122,0.030811856255363222,3.1,3.099998146044933,1.8539550675267248e-6,-0.0,-0.6599999999999997,1501.5742,161.85812 -0.5708670942305083,0.019711338114761952,0.5708670942305083,6.745604075319989e-14,0.48800034722222224,-0.0,0.02243647816461171,3.14,6.745604075319989e-14,3.1399999999999326,-0.0,-5.24,1501.8295,164.14789 -0.5652900126859974,0.016859818025710183,0.5652900126859974,0.0,0.4919994212962963,-0.0,0.019198223395704293,4.99,0.0,4.99,-0.0,-7.48,1501.2432,168.17609 -0.5598669695407311,0.009930243784333322,0.5598669695407311,0.0,0.4919994212962963,-0.0,0.011311876108264464,2.33,0.0,2.33,-0.0,-14.41,1500.6675,171.82388 -0.5545696284082147,0.011389390568064576,0.5545696284082147,0.0,0.4959997685185185,-0.0,0.012978949834192996,0.61,0.0,0.61,-0.0,-12.754999999999999,1500.0997,173.23837 -0.5493145497761746,0.02252621057621901,0.5493145497761746,1.071303909856899e-6,0.4959997685185185,-5.5908907661995895e-16,0.025679812895176325,3.4,1.0713039104159883e-6,3.3999989286960894,-0.0,-3.5900000000000003,1499.5311,175.26959 -0.5441493080531148,0.01334882141065975,0.5441493080531148,0.0,0.4999997685185186,-0.0,0.015223344497673116,0.0,0.0,0.0,-0.0,-10.785,1498.9669,176.92577 -0.5391196850337987,0.012628096403965384,0.5391196850337987,0.0,0.503999537037037,-0.0,0.014406740871824647,0.0,0.0,0.0,-0.0,-11.610000000000001,1498.4124,176.9378 -0.5341682143355446,0.016784856568819444,0.5341682143355446,0.0,0.503999537037037,-0.0,0.019156017588544752,0.0,0.0,0.0,-0.0,-7.834999999999999,1497.8613,176.9378 -0.5304340588799987,0.027118895148855588,0.5304340588799987,-1.7697556078126697e-6,0.5079996527777778,-1.7697556078126697e-6,0.030958582820241963,0.0,0.0,0.0,-0.0,-1.2850000000000001,1497.4424,176.87083 -0.559588951633965,0.03403643707125143,0.559588951633965,7.78221083675612,0.5079996527777778,4.812210836756119,0.038772821522171715,2.97,2.97,0.0,-0.0,1.975,1500.6378,174.82646 -0.6365994021602042,0.03470406544596001,0.6365994021602042,9.356293021087595,0.511999537037037,5.066293021087595,0.039331533411311737,4.29,4.29,0.0,-0.0,2.07,1508.338,170.09546 -0.8316274519154374,0.048240985877516414,0.8316274519154374,24.333063427069753,0.5159998842592592,17.543063427069754,0.05410103058155401,6.79,6.79,0.0,-0.0,6.734999999999999,1524.2979,158.89851 -1.0718484213373414,0.034324249460185405,1.0718484213373414,8.05842088540372,0.5159998842592592,3.5284208854037216,0.038114836099891886,4.53,4.529999999999999,1.2573275753879899e-15,-0.0,1.4949999999999997,1539.4521,148.39296 -1.0950052813846836,0.020680949976702345,1.0950052813846836,1.4654943925052067e-16,0.520000462962963,-0.0,0.022945817240874265,2.64,1.4654943925052067e-16,2.64,-0.0,-5.805,1540.7286,149.5954 -1.0719251056367938,0.025547972643339988,1.0719251056367938,0.0029259020468079245,0.520000462962963,-5.579573709341315e-13,0.028369275448919946,5.97,0.002925902047365882,5.967074097952634,-0.0,-2.855,1539.4564,154.23657 -1.0561225161032344,0.026694972303310242,1.0561225161032344,0.8685386996697825,0.5240002314814816,-8.376274578586543e-11,0.029660028808905354,10.64,0.8685386997535453,9.771461300246456,-0.0,-2.335,1538.5695,162.24504 -1.040080820468481,0.024257341834511725,1.040080820468481,8.812841931604699e-8,0.5279998842592593,-0.0,0.026967667992952256,1.87,8.812841931604699e-8,1.8699999118715807,-0.0,-3.78,1537.6554,168.38498 -1.0347858042931928,0.033270404492372174,1.0347858042931928,1.7830015377585247,0.5279998842592593,1.4630015377587096,0.03699511351102012,0.32,0.3199999999998151,1.8488321984477807e-13,-0.0,0.7250000000000001,1537.3506,168.84271 -1.1209513661011372,0.03914590618681401,1.1209513661011372,9.97326878162343,0.5319998842592593,7.43326878162343,0.04339356743196031,2.54,2.54,0.0,-0.0,2.955,1542.1272,164.34085 -1.3846929305098374,0.04637621070295024,1.3846929305098374,17.832304249549754,0.5319998842592593,13.892304249549754,0.05099117118789621,3.94,3.94,0.0,-0.0,5.37,1554.7461,153.67786 -1.9624421139420378,0.049148780814701726,1.9624421139420378,27.133424348669756,0.5359994212962963,15.403424348669756,0.053325375900287186,11.73,11.73,0.0,-0.0,5.9350000000000005,1575.5712,139.03221 -2.6972153683913844,0.04215763375181944,2.6972153683913844,15.619715576589613,0.5395353009259259,8.489715576589614,0.045195321713196554,7.13,7.13,0.0,-0.0,3.35,1594.564,127.0634 -2.9621599454927776,0.03225734239202935,2.9621599454927776,3.2292857350231507,0.54,-0.0007129037295192291,0.03446072937001304,3.23,3.22999863875267,1.361247329816906e-6,-0.0,-0.625,1600.1597,123.73297 -2.9017522684701307,0.030932988998791218,2.9017522684701307,-1.277007589242651e-6,0.5439997685185185,-1.277007589242651e-6,0.0330713447454049,0.0,0.0,0.0,-0.0,-1.3199999999999998,1598.9292,123.73463 -2.772561211358145,0.03215742168418881,2.772561211358145,-0.0002582092239421959,0.5439997685185185,-0.0002582092239421959,0.03443900306175835,0.0,0.0,0.0,-0.0,-0.7399999999999998,1596.2094,123.734436 -2.647010990354897,0.033925827176963776,2.647010990354897,-0.05718347697980528,0.5479999999999999,-0.05718347697980528,0.03639597977164251,0.0,0.0,0.0,-0.0,-0.04999999999999982,1593.4419,123.73961 -2.5336682847534644,0.030352673718261353,2.5336682847534644,-4.758580127656386e-8,0.5498481481481481,-4.758580127656386e-8,0.03261615987550712,0.0,0.0,0.0,-0.0,-1.6699999999999995,1590.8284,123.730736 -2.470286977847213,0.03636873085158177,2.470286977847213,1.9088161339089935,0.5520004629629629,1.9088161339089935,0.03911805447458041,0.0,0.0,0.0,-0.0,0.8900000000000001,1589.3154,122.66247 -2.482516419882772,0.03838577836765631,2.482516419882772,3.7290153432005173,0.5559922453703704,3.7290153432005173,0.041279922205739866,0.0,0.0,0.0,-0.0,1.5699999999999998,1589.6104,119.84266 -2.574340248979043,0.04030186776527145,2.574340248979043,5.9178300717923955,0.5560002314814815,5.587830071792395,0.04328141886773802,0.33,0.33,0.0,-0.0,2.2649999999999997,1591.7794,115.31191 -2.730163497233824,0.041405052728923857,2.730163497233824,6.823212776595777,0.56,6.283212776595777,0.04436833745552913,0.54,0.54,0.0,-0.0,2.525,1595.2891,109.601776 -2.971055631053069,0.04417096885233945,2.971055631053069,8.727052228669693,0.5600517361111111,8.717052228669694,0.04718285392904384,0.01,0.01,0.0,-0.0,3.4349999999999996,1600.3387,102.12193 -3.4374256026442094,0.0451167085839433,3.4374256026442094,15.034743578909737,0.5639996527777777,9.064743578909738,0.047932278980317655,5.97,5.97,0.0,-0.0,3.5650000000000004,1609.0463,93.25322 -3.857664292389044,0.04168775032700124,3.857664292389044,6.841202816251726,0.5663305555555556,5.601202816251726,0.04410054470213807,1.24,1.24,0.0,-0.0,2.27,1615.9343,85.98298 -3.915866118019074,0.03907614359201247,3.915866118019074,2.926602206177821,0.5679997685185185,2.926602206177821,0.041314919552000506,0.0,0.0,0.0,-0.0,1.27,1616.8286,81.766685 -3.8774832812690785,0.040106200367980314,3.8774832812690785,3.7456424429694652,0.5715351851851852,3.7156424429694654,0.04241942463287379,0.03,0.029999999999999995,3.3306690738754695e-18,-0.0,1.565,1616.2404,78.39889 -3.9206876056658797,0.03409605416396616,3.9206876056658797,7.169837347395456,0.5719994212962963,-0.00014437232564342312,0.03604786917693395,7.17,7.1699817197210995,1.828027889992867e-5,-0.0,-0.8050000000000002,1616.9021,77.41667 -4.012480685568769,0.03306791440910205,4.012480685568769,3.6077483626861055,0.5760005787037037,-9.209494203566216e-7,0.03493101597312325,3.61,3.607749283635526,0.0022507163644740506,-0.0,-1.3550000000000002,1618.2842,77.417046 -3.9181159412003645,0.03750755299260256,3.9181159412003645,0.7475956468316506,0.5760005787037037,0.7475956468316506,0.03965561892261696,0.0,0.0,0.0,-0.0,0.47,1616.8629,76.97799 -3.8450999831752823,0.04045195712464118,3.8450999831752823,3.4883016750144202,0.5800003472222222,3.4883016750144202,0.042798386498216455,0.0,0.0,0.0,-0.0,1.48,1615.7395,74.63141 -3.8775229101364412,0.04278961331494655,3.8775229101364412,5.627948305140335,0.5807946759259259,5.627948305140335,0.04525759296510828,0.0,0.0,0.0,-0.0,2.28,1616.241,70.13146 -4.0402818071302296,0.04499944480015305,4.0402818071302296,7.3596595719408935,0.5840005787037037,7.339659571940894,0.04752267951688574,0.02,0.02,0.0,-0.0,2.92,1618.6965,63.691322 -4.378671616528762,0.04936372915097008,4.378671616528762,10.816573074349755,0.5853530092592593,10.816573074349755,0.051977441874656596,0.0,0.0,0.0,-0.0,4.220000000000001,1623.4999,54.657837 -5.061152794851433,0.0565367843031475,5.061152794851433,15.898215885549755,0.5880002314814815,15.898215885549755,0.05921478588198773,0.0,0.0,0.0,-0.0,6.12,1632.1503,41.269253 -6.209612490674795,0.06290593264768816,6.209612490674795,19.803057203629752,0.5903311342592593,19.803057203629752,0.06539627872965718,0.0,0.0,0.0,-0.0,7.579999999999999,1644.3633,23.403286 -7.084074024295753,0.08064703400110089,7.084074024295753,8.695735931396484,0.5920008101851852,8.695735931396484,0.0834404653121623,0.0,0.0,0.0,-0.0,11.35,1652.2314,8.695736 -7.586291915923404,0.0757642544954334,7.586291915923404,15.00524312019344,0.5943310185185184,3.195243120193439,0.07819496888636157,11.81,11.81,0.0,-0.0,10.26,1656.3219,3.1952431 -8.439950381594198,0.06476160373944038,8.439950381594198,14.19335117620731,0.5959997685185184,1.1733511762073103,0.06658332740015928,13.02,13.02,0.0,-0.0,7.71,1662.6901,1.1733606 -8.413373095631119,0.06330594901498493,8.413373095631119,2.835808429206541,0.5987809027777777,0.42580842920654083,0.0650940996173806,2.41,2.41,0.0,-0.0,7.289999999999999,1662.5017,0.43150002 -7.529072025926839,0.06981710396105288,7.529072025926839,0.1432431532855257,0.5999998842592592,0.1432431532855257,0.07207669403419839,0.0,0.0,0.0,-0.0,8.834999999999999,1655.8698,0.16953364 -7.268061510887985,0.07934111550339458,7.268061510887985,10.144194010016955,0.6027810185185185,0.05419401001695522,0.08201330470453984,10.09,10.09,0.0,-0.0,10.79,1653.7627,0.078831226 -7.528194862510928,0.08413643962155194,7.528194862510928,9.134907174306274,0.6039996527777778,0.02490717430627527,0.0868598316748692,9.11,9.11,0.0,-0.0,11.67,1655.8628,0.041374963 -7.449271288772016,0.08114963495813167,7.449271288772016,4.862855934488716,0.6063304398148148,0.012855934488716683,0.08380820340705883,4.85,4.85,0.0,-0.0,11.04,1655.2334,0.023063883 -6.975288846529465,0.06382698732153025,6.975288846529465,1.8670716668655511,0.6079995370370371,0.007071666865550954,0.06607476983252457,1.86,1.86,0.0,-0.0,7.285,1651.3073,0.013264841 -6.3774942285525205,0.06624000988406004,6.3774942285525205,0.004021346431757669,0.6098476851851852,0.004021346431757669,0.06879569415829774,0.0,0.0,0.0,-0.0,7.86,1645.9564,0.007743067 -6.549352496624303,0.07144911933657147,6.549352496624303,13.382289555151958,0.6120002314814815,0.002289555151956911,0.07413425797295896,13.38,13.38,0.0,-0.0,8.965,1647.5444,0.0044788276 -7.353808323526218,0.0879159094732571,7.353808323526218,14.751346311319999,0.6133524305555556,0.001346311319998598,0.09083842165156038,14.75,14.75,0.0,-0.0,12.14,1654.4631,0.002657318 -7.823917990722202,0.08960339143883334,7.823917990722202,7.520798856571376,0.6159914351851852,0.0007988565713762184,0.0923753749662827,7.52,7.52,0.0,-0.0,12.34,1658.1638,0.0015851499 -7.880220967906225,0.07027645197274973,7.880220967906225,8.730473907906276,0.6162851851851852,0.00047390790627514355,0.07243182889408534,8.73,8.73,0.0,-0.0,8.495000000000001,1658.592,0.00094336615 -7.867586726437913,0.08149611115490937,7.867586726437913,6.830279197242408,0.6195356481481481,0.0002791972424084325,0.08400044785421328,6.83,6.83,0.0,-0.0,10.735,1658.4962,0.0005568441 -7.3332140209595895,0.10145174119075412,7.3332140209595895,0.00016386526388568586,0.6199998842592592,0.00016386526388568586,0.10483482563651891,0.0,0.0,0.0,-0.0,14.280000000000001,1654.2957,0.00032719524 -6.550423555547907,0.11439200295372581,6.550423555547907,9.627764134048758e-5,0.6227818287037037,9.627764134048758e-5,0.11869028015581272,0.0,0.0,0.0,-0.0,16.245,1647.5542,0.00019237025 -5.886990682358131,0.1205632806905766,5.886990682358131,5.6769504794978575e-5,0.6240006944444445,5.6769504794978575e-5,0.12557952489936824,0.0,0.0,0.0,-0.0,17.15,1641.177,0.00011347463 -5.344510751985123,0.12945234077526996,5.344510751985123,3.014948419493912e-5,0.6253526620370371,3.014948419493912e-5,0.135314447556447,0.0,0.0,0.0,-0.0,18.365000000000002,1635.4036,6.02808e-5 -4.923985628489279,0.13230589167249843,4.923985628489279,0.7200156423406904,0.6278895833333333,1.564234069040352e-5,0.13871233367328392,0.72,0.72,0.0,-0.0,18.715,1630.5094,3.127979e-5 -4.712836578253729,0.12335449840297552,4.712836578253729,2.1900084323443565,0.6280518518518519,8.432344356759236e-6,0.12953544228932168,2.19,2.19,0.0,-0.0,17.56,1627.892,1.6863267e-5 -4.704097718475273,0.09945112893708596,4.704097718475273,6.1200031636230126,0.6303303240740741,3.163623012164972e-6,0.10444145401287046,6.12,6.12,0.0,-0.0,13.95,1627.7811,6.327046e-6 -4.788000491685582,0.09061514460097883,4.788000491685582,6.200000845712966,0.6319916666666667,8.457129651184136e-7,0.0951004092101619,6.2,6.2,0.0,-0.0,12.395,1628.8369,1.6914116e-6 -4.705597954808442,0.0934332135927358,4.705597954808442,0.3100004839202004,0.6322856481481481,4.839202004384609e-7,0.09812041981467226,0.31,0.31,0.0,-0.0,12.89,1627.8002,9.678357e-7 -4.469916656672056,0.10980594289683407,4.469916656672056,2.6600002538720218,0.6347809027777778,2.5387202176050674e-7,0.11553230229891066,2.66,2.66,0.0,-0.0,15.485,1624.7316,5.0774275e-7 -4.375513341755774,0.12618489164924776,4.375513341755774,2.9800001469972974,0.6360001157407408,1.4699729725546826e-7,0.1328696610030899,2.98,2.98,0.0,-0.0,17.775,1623.4568,2.9399416e-7 -4.459175697272908,0.12408586002664576,4.459175697272908,6.860000080911379,0.6362856481481481,8.091137867138485e-8,0.13056846074772385,6.86,6.86,0.0,-0.0,17.475,1624.5879,1.6182263e-7 -4.543146735940588,0.08966038525448586,4.543146735940588,5.740000046607451,0.6387810185185185,4.660745074981439e-8,0.09427984384378571,5.74,5.74,0.0,-0.0,12.084999999999999,1625.702,9.321486e-8 -4.390376170335751,0.08249680650653943,4.390376170335751,0.27000002417599683,0.6399917824074074,2.4175996831704208e-8,0.0868563216632026,0.27,0.27,0.0,-0.0,10.75,1623.6593,4.8351982e-8 -4.233499457655746,0.10183928893401593,4.233499457655746,4.730000011474541,0.6400512731481481,1.14745408574073e-8,0.1073646389786893,4.73,4.73,0.0,-0.0,14.15,1621.4863,2.2949079e-8 -4.242239793216923,0.09422191891056196,4.242239793216923,6.6757541732487605e-9,0.6418483796296296,6.6757541732487605e-9,0.09932643921184008,0.0,0.0,0.0,-0.0,12.845,1621.6095,1.33515075e-8 -4.454092574063787,0.10407589900820167,4.454092574063787,14.350000003721615,0.6435354166666667,3.7216147105761355e-9,0.10951771388120995,14.35,14.35,0.0,-0.0,14.385000000000002,1624.5198,7.443229e-9 -4.660417250667989,0.09928260216145564,4.660417250667989,1.0200000021820106,0.6439998842592592,2.1820106198387013e-9,0.10430016885482195,1.02,1.02,0.0,-0.0,13.579999999999998,1627.224,4.364021e-9 -4.389972354100903,0.10061768502956392,4.389972354100903,0.7900000012118223,0.6442856481481481,1.2118223238512992e-9,0.10593515013311856,0.79,0.79,0.0,-0.0,13.825,1623.6538,2.4236446e-9 -4.365150908871391,0.11206476140751218,4.365150908871391,7.790000000717323,0.6458482638888889,7.173234280285272e-10,0.1180117961607566,7.79,7.79,0.0,-0.0,15.55,1623.3152,1.4346468e-9 -4.4934597359527,0.09926676575184637,4.4934597359527,4.770000000426167,0.6471538194444444,4.261675752691171e-10,0.10442334584889713,4.77,4.77,0.0,-0.0,13.52,1625.0453,8.5233515e-10 -4.317375294851071,0.09143762733250423,4.317375294851071,2.494760515510039e-10,0.6479927083333333,2.494760515510039e-10,0.0963290250810766,0.0,0.0,0.0,-0.0,12.2,1622.658,4.989521e-10 -4.0204277647416875,0.10087856959428913,4.0204277647416875,1.4651289924988296e-10,0.6480521990740741,1.4651289924988296e-10,0.10655445639730257,0.0,0.0,0.0,-0.0,13.825,1618.4023,2.930258e-10 -3.7605012848209047,0.1049469177828203,3.7605012848209047,8.42417109002914e-11,0.6487947916666666,8.42417109002914e-11,0.11112577711968387,0.0,0.0,0.0,-0.0,14.49,1614.4109,1.6848342e-10 -3.5315644070775924,0.09873672255364442,3.5315644070775924,4.7493765887104585e-11,0.6498487268518519,4.7493765887104585e-11,0.10479343868777707,0.0,0.0,0.0,-0.0,13.510000000000002,1610.6598,9.498753e-11 -3.324696483451526,0.08126217792916772,3.324696483451526,21.14999999999648,0.6507814814814814,-3.5156242065583483e-12,0.08644043363352198,21.15,21.15,0.0,-0.0,10.41,1607.0549,-7.0312484e-12 -3.142054918487848,0.07265001136605463,3.142054918487848,20.12999999992849,0.6515357638888889,-7.151041559343376e-11,0.07744207743639489,20.13,20.13,0.0,-0.0,8.67,1603.6807,-1.4302083e-10 -2.988218609868499,0.07810707984017576,2.988218609868499,3.1499999998597343,0.6519921296296297,-1.4026541020094473e-10,0.08341503578915488,3.15,3.15,0.0,-0.0,9.82,1600.6827,-2.8053082e-10 -2.866862290642352,0.07653383010912075,2.866862290642352,-1.9355543519345644e-10,0.6520001157407407,-1.9355543519345644e-10,0.08186149624405363,0.0,0.0,0.0,-0.0,9.525,1598.2068,-3.8711087e-10 -2.7813479735924966,0.08682947196229994,2.7813479735924966,-2.151552958940434e-10,0.6520517361111111,-2.151552958940434e-10,0.0929790490493191,0.0,0.0,0.0,-0.0,11.535,1596.3983,-4.303106e-10 -2.73538631463103,0.0938852848983183,2.73538631463103,0.4299999998111602,0.6522856481481482,-1.888397906699691e-10,0.10059728762777619,0.43,0.43,0.0,-0.0,12.79,1595.4032,-3.7767958e-10 -2.7427655050642925,0.0962097369000728,2.7427655050642925,6.269999999885735,0.6527943287037037,-1.1426399396929871e-10,0.10307752339310432,6.27,6.27,0.0,-0.0,13.170000000000002,1595.5641,-2.2852799e-10 -2.807892913175279,0.09360578723540376,2.807892913175279,5.299999999951406,0.653352662037037,-4.859424665851807e-11,0.10019968272633921,5.3,5.3,0.0,-0.0,12.7,1596.9656,-9.718849e-11 -2.856625640429785,0.10741341350836031,2.856625640429785,2.349999999991099,0.653848611111111,-8.900850541933462e-12,0.11490602526346896,2.35,2.35,0.0,-0.0,14.91,1597.9932,-1.7801701e-11 -2.8147599356117046,0.11305345317766032,2.8147599356117046,1.4199999999981512,0.653848611111111,-1.848851150267573e-12,0.12100625212767974,1.42,1.42,0.0,-0.0,15.760000000000002,1597.1115,-3.6977023e-12 -2.709216698028434,0.12664238267331626,2.709216698028434,-8.883973201108575e-13,0.653848611111111,-8.883973201108575e-13,0.13574508755492606,0.0,0.0,0.0,-0.0,17.67,1594.8291,-1.7767946e-12 -2.584373442119017,0.14478241001567818,2.584373442119017,-3.013035513353632e-13,0.6543310185185185,-3.013035513353632e-13,0.155463607877131,0.0,0.0,0.0,-0.0,19.95,1592.0117,-6.026071e-13 -2.47000422949507,0.1450457440908436,2.47000422949507,-1.4249726073570734e-13,0.6543310185185185,-1.4249726073570734e-13,0.15601126545847305,0.0,0.0,0.0,-0.0,20.009999999999998,1589.3086,-2.8499452e-13 -2.3664987028182334,0.1502208444381205,2.3664987028182334,-5.139259243861073e-14,0.653848611111111,-5.139259243861073e-14,0.16183793374005048,0.0,0.0,0.0,-0.0,20.65,1586.7521,-1.02785185e-13 -2.2713197638360163,0.1242744898649772,2.2713197638360163,1.4365441616209766e-14,0.653848611111111,1.4365441616209766e-14,0.13409223225462102,0.0,0.0,0.0,-0.0,17.465,1584.3005,2.8730883e-14 -2.183474043383531,0.12466460416387869,2.183474043383531,3.478139542872726e-14,0.653352662037037,3.478139542872726e-14,0.13471346222791794,0.0,0.0,0.0,-0.0,17.555,1581.945,6.956279e-14 -2.1006354021065192,0.14420058824269083,2.1006354021065192,9.911658523283795e-15,0.653352662037037,9.911658523283795e-15,0.15605203946967522,0.0,0.0,0.0,-0.0,20.04,1579.6351,1.9823317e-14 -2.0250705369704343,0.15810389884264978,2.0250705369704343,-3.136598917878654e-14,0.6527943287037037,-3.136598917878654e-14,0.1713353322679404,0.0,0.0,0.0,-0.0,21.66,1577.4473,-6.273198e-14 -1.9641516767214782,0.1556210968904962,1.9641516767214782,2.1199999999999215,0.6522856481481482,-7.84580056087817e-14,0.16883998883052373,2.12,2.12,0.0,-0.0,21.42,1575.6232,-1.5691601e-13 -1.9245252372574184,0.11580581589335433,1.9245252372574184,5.639999999999879,0.6520517361111111,-1.2104939717680259e-13,0.1257398198706051,5.64,5.64,0.0,-0.0,16.439999999999998,1574.406,-2.420988e-13 -1.9127247370407656,0.09281674252766926,1.9127247370407656,-1.4882513895276478e-13,0.6519921296296297,-1.4882513895276478e-13,0.10080222504339564,0.0,0.0,0.0,-0.0,12.829999999999998,1574.0387,-2.9765028e-13 -1.9361056647662083,0.09359731862214946,1.9361056647662083,2.2099999999998485,0.6518894675925926,-1.5147026699296972e-13,0.10160312187603869,2.21,2.21,0.0,-0.0,12.959999999999999,1574.7643,-3.0294053e-13 -2.004106494340085,0.10848916781035141,2.004106494340085,5.439999999999881,0.6511538194444445,-1.1866974959105564e-13,0.11761476902230497,5.44,5.44,0.0,-0.0,15.36,1576.8258,-2.373395e-13 -2.0623699256621655,0.09789116020341382,2.0623699256621655,-6.44472742858498e-14,0.6503311342592593,-6.44472742858498e-14,0.10601024717525191,0.0,0.0,0.0,-0.0,13.684999999999999,1578.5372,-1.2889455e-13 -2.0475006770682977,0.12998076204652353,2.0475006770682977,1.3199999999999779,0.6493528935185184,-2.2297103874071153e-14,0.14079990303625775,1.32,1.32,0.0,-0.0,18.4,1578.1051,-4.4594208e-14 -1.995938428014457,0.14933068976433922,1.995938428014457,0.6199999999999991,0.6482863425925927,-9.24476746105279e-16,0.16191673328791384,0.62,0.62,0.0,-0.0,20.805,1576.5819,-1.8489535e-15 -1.9382874638016199,0.16846358611770884,1.9382874638016199,1.0917917200418022e-16,0.6480008101851852,1.0917917200418022e-16,0.18286523038041094,0.0,0.0,0.0,-0.0,22.92,1574.8315,2.1835834e-16 -1.877206819513515,0.15943019516801854,1.877206819513515,3.262404968120572e-17,0.647890162037037,3.262404968120572e-17,0.17326998356298587,0.0,0.0,0.0,-0.0,21.985,1572.9193,6.52481e-17 -1.8161641558678903,0.10788242806950202,1.8161641558678903,-1.7682461283533758e-17,0.64678125,-1.7682461283533758e-17,0.11739481456277544,0.0,0.0,0.0,-0.0,15.44,1570.9451,-3.5364923e-17 -1.7612488610038486,0.11042845093132643,1.7612488610038486,-2.497907936950689e-17,0.645352199074074,-2.497907936950689e-17,0.12030575125205145,0.0,0.0,0.0,-0.0,15.879999999999999,1569.1115,-4.995816e-17 -1.9079062629148238,0.11514278382698366,1.9079062629148238,11.99,0.6440515046296297,-1.4509378255806868e-17,0.1250610541643466,11.99,11.99,0.0,-0.0,16.555,1573.8881,-2.9018757e-17 -2.3753236930749146,0.10601404128671446,2.3753236930749146,19.73,0.6438894675925926,-8.445067376635632e-18,0.1141964700831661,19.73,19.73,0.0,-0.0,15.059999999999999,1586.9744,-1.6890135e-17 -2.565782615343523,0.11190186410967212,2.565782615343523,-4.944091194863642e-18,0.6427809027777778,-4.944091194863642e-18,0.12018987806143207,0.0,0.0,0.0,-0.0,15.93,1591.5806,-9.888182e-18 -2.470155697801567,0.1150919599221178,2.470155697801567,0.019999999999999997,0.6407940972222222,-2.9374320925100273e-18,0.12379267692768058,0.02,0.02,0.0,-0.0,16.47,1589.3123,-5.874864e-18 -2.3832704480172917,0.11734517958980883,2.3832704480172917,0.76,0.6399997685185186,-1.7559797429727354e-18,0.12638628879353825,0.76,0.76,0.0,-0.0,16.835,1587.1738,-3.5119595e-18 -2.305620887063802,0.10070889107766873,2.305620887063802,-9.14586409737245e-19,0.6395354166666667,-9.14586409737245e-19,0.1086035783930176,0.0,0.0,0.0,-0.0,14.35,1585.1957,-1.8291728e-18 -2.2200078396562044,0.10723709303127366,2.2200078396562044,-2.586957217934958e-19,0.6378482638888888,-2.586957217934958e-19,0.11580862395212976,0.0,0.0,0.0,-0.0,15.445,1582.9359,-5.1739144e-19 -2.1352636992300393,0.1153292408237077,2.1352636992300393,6.583954425373481e-20,0.6360001157407408,6.583954425373481e-20,0.12473073368372328,0.0,0.0,0.0,-0.0,16.72,1580.6116,1.3167909e-19 -2.057266981165993,0.1245809949400448,2.057266981165993,5.123963195876341e-20,0.6355359953703703,5.123963195876341e-20,0.1349263812533603,0.0,0.0,0.0,-0.0,18.044999999999998,1578.3893,1.02479264e-19 -1.9845882396049048,0.1341291634707426,1.9845882396049048,2.1868860478596297e-20,0.6338483796296296,2.1868860478596297e-20,0.14546539995259733,0.0,0.0,0.0,-0.0,19.36,1576.2413,4.373772e-20 -1.9169675363529561,0.10365842292255889,1.9169675363529561,5.404921310940442e-21,0.6319996527777777,5.404921310940442e-21,0.11256720556660595,0.0,0.0,0.0,-0.0,15.129999999999999,1574.171,1.0809843e-20 -1.8541960338892902,0.10120269862031198,1.8541960338892902,2.3298147797731234e-21,0.6315355324074073,2.3298147797731234e-21,0.11003941436597091,0.0,0.0,0.0,-0.0,14.77,1572.1827,4.6596296e-21 -1.795412991757094,0.11426782138386879,1.795412991757094,1.6298825556726853e-22,0.6287943287037038,1.6298825556726853e-22,0.12439757528205257,0.0,0.0,0.0,-0.0,16.865,1570.2588,3.259765e-22 -1.740018673532727,0.11130897558150415,1.740018673532727,-1.7060012464086242e-21,0.628,-1.7060012464086242e-21,0.12132103190024109,0.0,0.0,0.0,-0.0,16.47,1568.3872,-3.4120025e-21 -1.6874989160392306,0.11761968545422519,1.6874989160392306,-2.698039399329932e-21,0.6267813657407407,-2.698039399329932e-21,0.12834916423136614,0.0,0.0,0.0,-0.0,17.44,1566.5569,-5.396079e-21 -1.6375682546841144,0.15206446835340054,1.6375682546841144,-2.2444509926376797e-21,0.624052199074074,-2.2444509926376797e-21,0.16612627593897192,0.0,0.0,0.0,-0.0,21.905,1564.7632,-4.488902e-21 -1.6205163586548215,0.16982199521086305,1.6205163586548215,0.49,0.6238902777777778,-1.1272205888142483e-21,0.18560003585600177,0.49,0.49,0.0,-0.0,23.845,1564.1381,-2.2544412e-21 -1.6979862468779168,0.17434729876416732,1.6979862468779168,5.17,0.6207944444444444,-2.652575717153137e-22,0.19020664852605731,5.17,5.17,0.0,-0.0,24.365,1566.9269,-5.3051514e-22 -1.948580076837933,0.14222880396751988,1.948580076837933,18.36,0.6199998842592592,1.396245432046761e-22,0.1543566841168872,18.36,18.36,0.0,-0.0,20.75,1575.1478,2.7924909e-22 -2.3299580000505675,0.09267072110277273,2.3299580000505675,8.84,0.6183303240740741,9.866146395346048e-23,0.09989576991937463,8.84,8.84,0.0,-0.0,13.54,1585.8228,1.9732293e-22 -2.4080087832922916,0.09017679695302627,2.4080087832922916,5.766352967200859e-23,0.615999537037037,5.766352967200859e-23,0.0970869369693598,0.0,0.0,0.0,-0.0,13.14,1587.7905,1.1532706e-22 -2.295595096237355,0.09629042935979647,2.295595096237355,3.188266860972845e-23,0.6151532407407407,3.188266860972845e-23,0.10385579912725328,0.0,0.0,0.0,-0.0,14.255,1584.9354,6.376534e-23 -2.198395880740562,0.11026645891529795,2.198395880740562,1.3648256070627874e-23,0.6120002314814815,1.3648256070627874e-23,0.11912409524118349,0.0,0.0,0.0,-0.0,16.595,1582.3517,2.7296512e-23 -2.171345878531703,0.11894622088274998,2.171345878531703,3.03,0.6115356481481482,5.8503979713848336e-24,0.12856116943324827,3.03,3.03,0.0,-0.0,17.880000000000003,1581.6123,1.1700796e-23 -2.1603799465987645,0.13038208308970137,2.1603799465987645,1.53,0.6080510416666667,3.3072589160176994e-24,0.14094838902128898,1.53,1.53,0.0,-0.0,19.53,1581.3099,6.614518e-24 -2.2098348145523046,0.1342660327046928,2.2098348145523046,6.17,0.6078891203703704,1.76876163636598e-24,0.14502313412311618,6.17,6.17,0.0,-0.0,20.02,1582.6616,3.5375233e-24 -2.373877266793701,0.14520456744190194,2.373877266793701,9.3,0.6042853009259259,1.02935274496385e-24,0.15641540442970214,9.3,9.3,0.0,-0.0,21.42,1586.938,2.0587055e-24 -2.530842171404578,0.14992409323896383,2.530842171404578,4.36,0.6039916666666666,5.599994390190733e-25,0.1611111139904867,4.36,4.36,0.0,-0.0,21.939999999999998,1590.7617,1.1199989e-24 -2.7162587753335683,0.1433448398757829,2.7162587753335683,6.64,0.6002854166666667,3.278375020492065e-25,0.15363313698741304,6.64,6.64,0.0,-0.0,21.225,1594.9841,6.55675e-25 -3.1123763632258186,0.10952275804480832,3.1123763632258186,14.11,0.5999998842592592,1.8729189845944496e-25,0.11678826196548878,14.11,14.11,0.0,-0.0,16.595,1603.1139,3.745838e-25 -3.288960457556997,0.09618112727859725,3.288960457556997,1.1160436773707881e-25,0.5962851851851851,1.1160436773707881e-25,0.10235116435986998,0.0,0.0,0.0,-0.0,14.525,1606.4095,2.2320874e-25 -3.102201390437903,0.1123676764902143,3.102201390437903,6.662410440407982e-26,0.5959997685185184,6.662410440407982e-26,0.11983652449195703,0.0,0.0,0.0,-0.0,17.134999999999998,1602.9183,1.3324821e-25 -2.922896910091437,0.12645007426031837,2.922896910091437,3.960939014146325e-26,0.5920523148148148,3.960939014146325e-26,0.13515474615401588,0.0,0.0,0.0,-0.0,19.27,1599.3628,7.921878e-26 -2.9917694891481292,0.12725767010128913,2.9917694891481292,8.04,0.591992824074074,2.360392006449797e-26,0.1358997521275206,8.04,8.04,0.0,-0.0,19.365000000000002,1600.7537,4.720784e-26 -3.541670527427653,0.12021190661184161,3.541670527427653,19.08,0.5880002314814815,1.378191000046035e-26,0.12757243856070777,19.08,19.08,0.0,-0.0,18.41,1610.8304,2.756382e-26 -4.201825783112009,0.1387755302146675,4.201825783112009,8.68,0.5879922453703703,7.798492478996306e-27,0.14634535519230343,8.68,8.68,0.0,-0.0,20.745,1621.0378,1.5596985e-26 -4.357145812251698,0.14057036862602293,4.357145812251698,3.99,0.5840005787037037,3.7392399797184615e-27,0.14804013120924944,3.99,3.99,0.0,-0.0,21.06,1623.2056,7.47848e-27 -4.1845038191881985,0.1399239806665842,4.1845038191881985,1.982472551252523e-27,0.5835359953703704,1.982472551252523e-27,0.1475789103543981,0.0,0.0,0.0,-0.0,21.02,1620.7911,3.964945e-27 -3.9544025734728625,0.10408063400919501,3.9544025734728625,0.79,0.5800003472222222,1.1539612744119473e-27,0.1100038991383839,0.79,0.79,0.0,-0.0,16.165,1617.4135,2.3079225e-27 -3.7402556245981513,0.09305962374711241,3.7402556245981513,6.490989617552495e-28,0.5787818287037036,6.490989617552495e-28,0.09855828770851695,0.0,0.0,0.0,-0.0,14.395,1614.0885,1.2981979e-27 -3.6008854479986394,0.10072394751418769,3.6008854479986394,1.5274827241364673e-28,0.5760005787037037,1.5274827241364673e-28,0.10682556926252793,0.0,0.0,0.0,-0.0,15.794999999999998,1611.8207,3.0549654e-28 -3.511955416891386,0.10196897104637141,3.511955416891386,2.37,0.5738478009259259,-2.653195276644369e-28,0.10824630740338073,2.37,2.37,0.0,-0.0,16.075,1610.3273,-5.3063906e-28 -3.4429526638592653,0.10742028885587862,3.4429526638592653,3.11,0.5719994212962963,-4.777550894306905e-28,0.11411719527308653,3.11,3.11,0.0,-0.0,17.005000000000003,1609.1422,-9.555102e-28 -3.3641886139506485,0.108977658447299,3.3641886139506485,1.7,0.5680513888888888,-3.735078719184121e-28,0.11587117688315286,1.7,1.7,0.0,-0.0,17.375,1607.7601,-7.4701574e-28 -3.2261850186826626,0.09973300631663863,3.2261850186826626,0.1,0.5679997685185185,-1.9687090614238297e-28,0.10620698689420141,0.1,0.1,0.0,-0.0,15.93,1605.2587,-3.9374181e-28 -3.0584553221688275,0.07850212405442737,3.0584553221688275,-8.535289984846065e-29,0.5639996527777777,-8.535289984846065e-29,0.08376432035711548,0.0,0.0,0.0,-0.0,12.185,1602.0702,-1.707058e-28 -2.904476012348286,0.06691502087546991,2.904476012348286,-4.521778068969112e-29,0.5639916666666667,-4.521778068969112e-29,0.07153825901247068,0.0,0.0,0.0,-0.0,9.685,1598.9852,-9.043556e-29 -2.766758384185387,0.06632088485205326,2.766758384185387,-1.9415535996712466e-29,0.56,-1.9415535996712466e-29,0.07103194499974926,0.0,0.0,0.0,-0.0,9.685,1596.0842,-3.8831072e-29 -2.6413791472420307,0.067046614301777,2.6413791472420307,-2.761684610646731e-30,0.558330324074074,-2.761684610646731e-30,0.07193404638350721,0.0,0.0,0.0,-0.0,9.93,1593.3147,-5.5233692e-30 -2.5268051691503888,0.08143986611729333,2.5268051691503888,7.884286994581015e-31,0.5560002314814815,7.884286994581015e-31,0.08752198310348866,0.0,0.0,0.0,-0.0,13.12,1590.6664,1.5768574e-30 -2.4428407495778846,0.10146617316280063,2.4428407495778846,3.2187271115769496e-31,0.5520519675925926,3.2187271115769496e-31,0.10918242823558198,0.0,0.0,0.0,-0.0,16.86,1588.6482,6.437454e-31 -2.437718044663725,0.10877104670788618,2.437718044663725,4.73,0.5520004629629629,-5.949528382322493e-32,0.11705205662146938,4.73,4.73,0.0,-0.0,18.025,1588.5228,-1.1899057e-31 -2.5670626080431664,0.0892280304197789,2.5670626080431664,6.59,0.5479999999999999,-2.4950631667531087e-31,0.0958349129220629,6.59,6.59,0.0,-0.0,14.830000000000002,1591.6104,-4.9901263e-31 -2.9393550787185188,0.06772620218938008,2.9393550787185188,13.96,0.5479921296296296,-1.8609548467938392e-31,0.07237321897225937,13.96,13.96,0.0,-0.0,10.32,1599.6981,-3.7219097e-31 -4.0873130625561265,0.07989726637537772,4.0873130625561265,32.11,0.5439997685185185,-1.1105616885749555e-31,0.08434129916457216,32.11,32.11,0.0,-0.0,12.875,1619.3877,-2.2211234e-31 -4.769110054009099,0.063580539755348,4.769110054009099,-6.626614891637657e-32,0.540794212962963,-6.626614891637657e-32,0.06673731955497726,0.0,0.0,0.0,-0.0,9.255,1628.6008,-1.325323e-31 -4.428401653570844,0.06051358316894588,4.428401653570844,-3.9848529686378037e-32,0.54,-3.9848529686378037e-32,0.06369120005182904,0.0,0.0,0.0,-0.0,8.55,1624.1743,-7.969706e-32 -4.109865727826662,0.07142372120542674,4.109865727826662,-2.2332895379694103e-32,0.5359994212962963,-2.2332895379694103e-32,0.07538114316630581,0.0,0.0,0.0,-0.0,11.315,1619.7163,-4.466579e-32 -3.790304479487606,0.08428589641145334,3.790304479487606,-1.2660052117836959e-33,0.5359994212962963,-1.2660052117836959e-33,0.08922226212328678,0.0,0.0,0.0,-0.0,14.024999999999999,1614.8823,-2.5320104e-33 -3.501289918988633,0.10012089799431213,3.501289918988633,1.9941086167349285e-32,0.5319998842592593,1.9941086167349285e-32,0.1062964546384074,0.0,0.0,0.0,-0.0,17.03,1610.1456,3.9882172e-32 -3.274611846179912,0.10807248012326039,3.274611846179912,3.533201002681812e-32,0.5298482638888888,3.533201002681812e-32,0.1150240458799911,0.0,0.0,0.0,-0.0,18.42,1606.1484,7.066402e-32 -3.1342997174361673,0.11770938217991918,3.1342997174361673,3.895039028889639e-32,0.5279998842592593,3.895039028889639e-32,0.1254851566915975,0.0,0.0,0.0,-0.0,19.955,1603.5331,7.790078e-32 -3.1048213396242814,0.13575005960856068,3.1048213396242814,4.68,0.5240002314814816,2.687612374027264e-32,0.1447685331886605,4.68,4.68,0.0,-0.0,22.55,1602.9688,5.375225e-32 -3.1493915289110825,0.1098676879625872,3.1493915289110825,3.7,0.5240002314814816,1.5519735999799878e-32,0.11710449780525244,3.7,3.7,0.0,-0.0,18.91,1603.82,3.1039472e-32 -3.0833625689941107,0.09203812305366724,3.0833625689941107,9.133583024365512e-33,0.520000462962963,9.133583024365512e-33,0.09817798822458881,0.0,0.0,0.0,-0.0,16.09,1602.5546,1.8267166e-32 -2.9327475314556763,0.08128224973826075,2.9327475314556763,5.011568085149185e-33,0.5183310185185186,5.011568085149185e-33,0.08686670955376041,0.0,0.0,0.0,-0.0,14.135,1599.5637,1.0023136e-32 -2.867290101297145,0.07291075061978752,2.867290101297145,2.89,0.5159998842592592,2.8399495358645215e-33,0.07798577244360584,2.89,2.89,0.0,-0.0,12.465,1598.2157,5.679899e-33 -3.0474722621874193,0.07094385181222615,3.0474722621874193,8.99,0.511999537037037,1.6022103714432938e-33,0.07570955091439253,8.99,8.99,0.0,-0.0,12.115,1601.8553,3.2044207e-33 -3.248996365734667,0.07173770499146569,3.248996365734667,5.17,0.511999537037037,9.02142690430165e-34,0.07637440368042032,5.17,5.17,0.0,-0.0,12.255,1605.6794,1.8042854e-33 -3.3342651416300417,0.07354531453480632,3.3342651416300417,4.29,0.5079996527777778,5.2670554456511744e-34,0.07822347574794035,4.29,4.29,0.0,-0.0,12.765,1607.2266,1.0534111e-33 -3.310740072858709,0.07214999437225314,3.310740072858709,1.56,0.5067805555555556,3.0766298591905677e-34,0.07675959532099538,1.56,1.56,0.0,-0.0,12.5,1606.8037,6.1532597e-34 -3.2454254283916937,0.06811875287478703,3.2454254283916937,1.5863655570725488e-34,0.503999537037037,1.5863655570725488e-34,0.07252451033965875,0.0,0.0,0.0,-0.0,11.68,1605.6138,3.172731e-34 -3.1924147641002016,0.07589521967759758,3.1924147641002016,3.45,0.4999997685185186,5.894441805857732e-35,0.0808534672350047,3.45,3.45,0.0,-0.0,13.555,1604.6302,1.1788884e-34 -3.1652546812551097,0.09307330338726964,3.1652546812551097,2.5,0.4999997685185186,2.483869785824455e-35,0.09918533785633762,2.5,2.5,0.0,-0.0,16.91,1604.12,4.9677396e-35 -3.2049354423716756,0.09041947844805676,3.2049354423716756,1.0,0.4959997685185185,1.0244084579516761e-35,0.0963125673495152,1.0,1.0,0.0,-0.0,16.555,1604.864,2.0488169e-35 -3.26952209846898,0.09137183180914489,3.26952209846898,5.43,0.49366840277777774,-1.5459825980286807e-36,0.09725478370014548,5.43,5.43,0.0,-0.0,16.795,1606.0555,-3.0919652e-36 -3.289626078980645,0.05871977825166855,3.289626078980645,3.26,0.4919994212962963,-7.259012672395639e-36,0.06248619279172254,3.26,3.26,0.0,-0.0,9.705,1606.4216,-1.4518025e-35 -3.2033766792894807,0.044553985255361306,3.2033766792894807,-5.2125978286886696e-36,0.48800034722222224,-5.2125978286886696e-36,0.0474586500860079,0.0,0.0,0.0,-0.0,5.59,1604.835,-1.0425196e-35 -3.076010008298633,0.05069129487992125,3.076010008298633,0.81,0.48800034722222224,-2.7242156914111955e-36,0.05407772350907762,0.81,0.81,0.0,-0.0,7.585,1602.412,-5.4484314e-36 -3.0510374236542037,0.04026063682148019,3.0510374236542037,4.65,0.4840002314814815,-1.3756256002611658e-36,0.04296329837104318,4.65,4.65,0.0,-0.0,4.215000000000001,1601.9252,-2.7512512e-36 -3.084396355219156,0.03664571184454136,3.084396355219156,0.48,0.48167002314814816,-7.717595016108703e-37,0.039089859750080926,0.48,0.48,0.0,-0.0,2.88,1602.5746,-1.543519e-36 -3.046064797864714,0.05072215025267824,3.046064797864714,2.73,0.4800005787037037,-3.6551381702424355e-37,0.05413037573994495,2.73,2.73,0.0,-0.0,7.855,1601.8278,-7.3102763e-37 -2.97338248470283,0.04521734164241986,2.97338248470283,0.53,0.4760001157407408,-1.9151155990434807e-37,0.04829916469124916,0.53,0.53,0.0,-0.0,6.235,1600.3855,-3.830231e-37 -2.9798805737756227,0.043370028935120396,2.9798805737756227,-7.736229707308948e-38,0.4760001157407408,-7.736229707308948e-38,0.04632217344012865,0.0,0.0,0.0,-0.0,5.6000000000000005,1600.5159,-1.5472459e-37 -3.066160740104197,0.06213792251282677,3.066160740104197,5.56,0.4719996527777777,1.1750205017465761e-38,0.06629696649617187,5.56,5.56,0.0,-0.0,11.295,1602.2205,2.350041e-38 -3.202237559147276,0.06291726680595874,3.202237559147276,8.86,0.4701513888888889,5.071310352779228e-38,0.06701999950998463,8.86,8.86,0.0,-0.0,11.53,1604.8137,1.0142621e-37 -3.3203839407089903,0.039497970734200916,3.3203839407089903,1.46,0.46799976851851854,3.2999850159647993e-38,0.04201691973251647,1.46,1.46,0.0,-0.0,4.385,1606.9774,6.59997e-38 -3.308020740927537,0.03460042652368878,3.308020740927537,1.95,0.463999537037037,1.395644505209311e-38,0.03681214220331057,1.95,1.95,0.0,-0.0,2.545,1606.7546,2.791289e-38 -3.240652618951934,0.03489139723597383,3.240652618951934,2.45,0.463999537037037,2.5513728405807577e-39,0.03715012265913083,2.45,2.45,0.0,-0.0,2.6799999999999997,1605.5259,5.102746e-39 -3.185283924870164,0.040879363213490366,3.185283924870164,2.76,0.46,5.885852920226564e-40,0.04355364367707887,2.76,2.76,0.0,-0.0,5.1850000000000005,1604.4967,1.17717e-39 -3.069603450302221,0.03753585759264829,3.069603450302221,0.19,0.45920532407407405,2.8348127803444617e-40,0.040046549821379104,0.19,0.19,0.0,-0.0,3.95,1602.2875,5.66963e-40 -2.9215887830780747,0.033663882738538056,2.9215887830780747,1.00260102514057e-40,0.45599953703703705,1.00260102514057e-40,0.03598186560648373,0.0,0.0,0.0,-0.0,2.465,1599.336,2.0052e-40 -2.7853873874859985,0.03215354398560585,2.7853873874859985,4.999202232864265e-41,0.45200810185185186,4.999202232864265e-41,0.0344289050268625,0.0,0.0,0.0,-0.0,1.945,1596.485,9.9984e-41 -2.67419176240085,0.03558061922172417,2.67419176240085,0.42,0.452,1.903313639169173e-41,0.038156648198786745,0.42,0.42,0.0,-0.0,3.465,1594.052,3.8066e-41 -2.583079537940047,0.03900807280212396,2.583079537940047,0.74,0.4480001157407407,-1.6920678956722166e-42,0.041886646720982974,0.74,0.74,0.0,-0.0,4.995,1591.9818,-3.384e-42 -2.5082336580105697,0.04524663477390741,2.5082336580105697,0.91,0.4480001157407407,-6.020678851971577e-42,0.048639228934005005,0.91,0.91,0.0,-0.0,7.27,1590.2258,-1.2041e-41 -2.4844860541246527,0.03862896257382076,2.4844860541246527,-2.473291789533302e-42,0.4440001157407408,-2.473291789533302e-42,0.04154020387736822,0.0,0.0,0.0,-0.0,5.005000000000001,1589.6577,-4.947e-42 -2.5245439587500202,0.034634153129267695,2.5245439587500202,8.765121894351672e-43,0.44166932870370373,8.765121894351672e-43,0.03722196268007128,0.0,0.0,0.0,-0.0,3.4400000000000004,1590.6129,1.753e-42 -2.618832162870522,0.04041307657817657,2.618832162870522,8.08,0.4400003472222222,3.109481292336769e-42,0.043372966040085656,8.08,8.08,0.0,-0.0,5.795,1592.8027,6.219e-42 -2.760008468620655,0.03357025077848119,2.760008468620655,7.48,0.43611064814814815,3.305663077341676e-42,0.03595817771285221,7.48,7.48,0.0,-0.0,3.1149999999999998,1595.9384,6.611e-42 -2.787261160769394,0.026441408753410237,2.787261160769394,-0.0029828341415531756,0.43600011574074077,-0.0029828341415531756,0.028311835579394626,0.0,0.0,0.0,-0.0,-0.375,1596.5251,0.00048447298 -2.6686602747897443,0.025050637772608526,2.6686602747897443,-1.294512069029771e-5,0.43200000000000005,-1.294512069029771e-5,0.02686638255404573,0.0,0.0,0.0,-0.0,-0.9950000000000001,1593.9283,0.0008698315 -2.6661413237715266,0.029687925472039887,2.6661413237715266,5.140396524640294,0.43194837962962956,0.00039652464029613907,0.03184092126512925,5.14,5.139999999999998,1.7119639039719912e-15,-0.0,1.4650000000000003,1593.872,0.00078993134 -2.8765887443204554,0.04386075233384953,2.8765887443204554,8.770232513771912,0.428,0.0002325137719121496,0.04690804637647582,8.77,8.77,0.0,-0.0,7.415,1598.409,0.0004639513 -3.0393602574956637,0.038081513426576154,3.0393602574956637,3.9401377375068742,0.4261517361111111,0.00013773750687446116,0.040643702555135434,3.94,3.94,0.0,-0.0,5.295,1601.6962,0.00027509662 -2.984915986658998,0.0334015203237976,2.984915986658998,8.189808699295577e-5,0.42400011574074076,8.189808699295577e-5,0.03567287337632526,0.0,0.0,0.0,-0.0,3.415,1600.6167,0.00016366225 -2.8417457349055932,0.03836132125529748,2.8417457349055932,4.738302807920455e-5,0.42121863425925926,4.738302807920455e-5,0.041045222360681324,0.0,0.0,0.0,-0.0,5.62,1597.6813,9.4721196e-5 -2.710784334284934,0.04584613369645623,2.710784334284934,2.5168391703073728e-5,0.41999976851851856,2.5168391703073728e-5,0.049140362793609484,0.0,0.0,0.0,-0.0,8.424999999999999,1594.8636,5.032412e-5 -2.5905031918103485,0.044355014639218523,2.5905031918103485,1.3404836116819687e-5,0.4164640046296296,1.3404836116819687e-5,0.047623035540305246,0.0,0.0,0.0,-0.0,8.07,1592.1532,2.680608e-5 -2.478110711442207,0.04961393801054506,2.478110711442207,1.0258556319973882e-6,0.4159996527777778,1.0258556319973882e-6,0.05335820374885954,0.0,0.0,0.0,-0.0,9.86,1589.5043,2.0516902e-6 -2.3747314254626497,0.06027909173766556,2.3747314254626497,-1.0119803625920782e-5,0.4121109953703704,-1.0119803625920782e-5,0.06493219210738366,0.0,0.0,0.0,-0.0,13.135,1586.9595,-2.0241656e-5 -2.2815799549423805,0.05592703800020594,2.2815799549423805,-1.668178559715408e-5,0.41200046296296294,-1.668178559715408e-5,0.06033504932989034,0.0,0.0,0.0,-0.0,11.959999999999999,1584.5697,-3.336914e-5 -2.199658947930573,0.059120949119268,2.199658947930573,-1.5310628247413766e-5,0.4080084490740741,-1.5310628247413766e-5,0.06386871380459148,0.0,0.0,0.0,-0.0,13.03,1582.386,-3.0625946e-5 -2.235334693073006,0.0547313174514208,2.235334693073006,2.5999911570875507,0.40794895833333333,-8.842912449558531e-6,0.05909068902588028,2.6,2.6,0.0,-0.0,11.785,1583.3468,-1.768739e-5 -2.4250400184935192,0.05001360922951755,2.4250400184935192,10.289995397671149,0.40399999999999997,-4.6023288507655046e-6,0.0538318222684038,10.29,10.29,0.0,-0.0,10.46,1588.2114,-9.205081e-6 -2.5658979983381283,0.03232164007578961,2.5658979983381283,2.089997339334268,0.4037145833333334,-2.660665731916095e-6,0.034715484460282116,2.09,2.09,0.0,-0.0,3.7399999999999998,1591.5833,-5.321473e-6 -2.5828525113890803,0.028762306207003395,2.5828525113890803,3.6399984256971916,0.40000023148148145,-1.574302808577488e-6,0.030884902655320862,3.64,3.64,0.0,-0.0,2.145,1591.9766,-3.1486552e-6 -2.701215414256963,0.021924540423062983,2.701215414256963,6.699570556186407,0.39971435185185183,-7.585707785325009e-9,0.023503018951366285,7.04,6.699570563772115,0.3404294362278852,-0.0,-1.7950000000000002,1594.6525,0.008448346 -2.616328157173927,0.018168244387582702,2.616328157173927,0.0,0.3960082175925926,-0.0,0.019499602061325255,0.0,0.0,0.0,-0.0,-4.29,1592.7456,2.7434275 -2.548716127468126,0.026318397723661298,2.548716127468126,4.28074002057987,0.39571446759259266,2.230740020579938,0.028274750903780527,2.05,2.0499999999999314,6.850631173449528e-14,-0.0,1.0099999999999998,1591.182,2.7480714 -2.6016680595045134,0.032099906628111394,2.6016680595045134,3.174821038756221,0.3921108796296296,1.014821038756221,0.03445942802926637,2.16,2.16,0.0,-0.0,4.0649999999999995,1592.41,1.0148607 -2.6065278491371155,0.028240947388055306,2.6065278491371155,2.415983954930088,0.3919487268518519,0.36598395493008845,0.030314692178544333,2.05,2.05,0.0,-0.0,2.17,1592.5215,0.37462354 -2.7510698042254518,0.03456186184516713,2.7510698042254518,9.443301827012586,0.3884644675925926,0.12330182701258655,0.037024818608115934,9.32,9.32,0.0,-0.0,5.285,1595.7446,0.15063895 -3.1811587198779536,0.035473346395966845,3.1811587198779536,13.848136164043789,0.38799999999999996,0.04813616404378792,0.03779579459057779,13.8,13.8,0.0,-0.0,5.615,1604.4193,0.07164895 -3.4341037984996143,0.029765856530097074,3.4341037984996143,2.0225891138514127,0.3848466435185185,0.022589113851412653,0.031624570662448184,2.0,2.0,0.0,-0.0,3.065,1608.9885,0.038031995 -3.3286948246047223,0.025795229355752226,3.3286948246047223,1.1416481517174601,0.3840003472222222,0.011648151717497958,0.027437748816027372,1.13,1.1299999999999621,3.776201573657545e-14,-0.0,1.0100000000000002,1607.1267,0.02108679 -3.1911686511594293,0.018226207652397033,3.1911686511594293,3.5891065293114366e-8,0.38166932870370374,-0.0,0.019417211019577735,1.32,3.5891065293114366e-8,1.3199999641089348,-0.0,-3.835,1604.6069,0.47997323 -3.028414817637502,0.019748229498062823,3.028414817637502,0.024655295692116348,0.3799997685185186,-5.395155373317873e-12,0.021079759606519227,4.82,0.024655295697511504,4.795344704302488,-0.0,-2.6199999999999997,1601.4807,3.5486994 -3.140231461328065,0.02606182078804387,3.140231461328065,9.237461748248142,0.37920590277777777,3.207461748248148,0.02778148464536375,6.03,6.029999999999995,5.355715870791755e-15,-0.0,1.3750000000000002,1603.646,3.7292461 -3.4776738302390697,0.04092045677139532,3.4776738302390697,9.504148796479772,0.37611087962962964,1.3741487964797703,0.04345537933810502,8.13,8.13,0.0,-0.0,8.23,1609.7415,1.3741503 -3.823734456815193,0.03317205849655687,3.823734456815193,9.332012943387577,0.3759486111111111,0.5020129433875763,0.0351034445030838,8.83,8.83,0.0,-0.0,4.975,1615.4067,0.50522333 -3.969635885640448,0.019941277432269075,3.969635885640448,0.1992317789355898,0.37321898148148147,-5.889347521870368e-11,0.021073150849955376,3.38,0.19923177899448327,3.1807682210055166,-0.0,-2.37,1617.6431,0.41207772 -3.721480340549571,0.01511660314043232,3.721480340549571,0.0,0.3719998842592593,-0.0,0.016012787507642064,2.15,0.0,2.15,-0.0,-6.145,1613.788,3.1764007 -3.502392236362326,0.012756566997244085,3.502392236362326,0.0,0.37120578703703705,-0.0,0.01354324662636006,3.6,0.0,3.6,-0.0,-8.385,1610.1644,6.0670853 -3.307669149733294,0.013192468834530187,3.307669149733294,0.0,0.3684645833333333,-0.0,0.014035808402806342,3.38,0.0,3.38,-0.0,-7.805,1606.7483,9.552348 -3.1334413458194046,0.011996639039756346,3.1334413458194046,0.0,0.3680003472222222,-0.0,0.012789256542974829,0.0,0.0,0.0,-0.0,-9.035,1603.5167,11.223848 -2.976727107266297,0.008695630071514564,2.976727107266297,0.0,0.36615196759259255,-0.0,0.009287897852817266,0.0,0.0,0.0,-0.0,-13.155000000000001,1600.4526,11.223849 -2.8350156904165447,0.007815595571585359,2.8350156904165447,0.0,0.3644642361111111,-0.0,0.008363145007086919,0.0,0.0,0.0,-0.0,-14.435,1597.5397,11.234718 -2.7061726476432204,0.008306837968881016,2.7061726476432204,0.0,0.36400011574074076,-0.0,0.008904285401932293,1.17,0.0,1.17,-0.0,-13.620000000000001,1594.762,11.831464 -2.588465382746691,0.010586602515720746,2.588465382746691,0.0,0.3621513888888889,-0.0,0.011366945413945943,4.61,0.0,4.61,-0.0,-10.385,1592.1062,14.714611 -2.4805077847151904,0.010306706509176755,2.4805077847151904,0.0,0.3604638888888889,-0.0,0.011084130622518812,3.01,0.0,3.01,-0.0,-10.655000000000001,1589.562,18.492653 -2.381191224437274,0.010041479817852809,2.381191224437274,0.0,0.3599998842592593,-0.0,0.010815502199464741,8.84,0.0,8.84,-0.0,-10.959999999999999,1587.1217,24.4657 -2.2895078972603318,0.010185387984343265,2.2895078972603318,0.0,0.35920578703703704,-0.0,0.010986735212468894,5.87,0.0,5.87,-0.0,-10.725,1584.7769,31.84731 -2.204668906376281,0.006894522613430145,2.204668906376281,0.0,0.3572189814814815,-0.0,0.007447554433659762,0.01,0.0,0.01,-0.0,-15.645,1582.5219,34.78182 -2.125948272850421,0.006174493497401348,2.125948272850421,0.0,0.35611041666666665,-0.0,0.006678933668516742,1.05,0.0,1.05,-0.0,-16.965,1580.3505,35.38947 -2.052663309576202,0.006032997349797628,2.052663309576202,0.0,0.3559483796296296,-0.0,0.0065345400777929,0.8,0.0,0.8,-0.0,-17.23,1578.2555,36.288 -1.9842231810934166,0.008444683584407217,1.9842231810934166,0.0,0.3546476851851852,-0.0,0.00915846938359205,13.81,0.0,13.81,-0.0,-12.925,1576.2303,43.609238 -1.9201322617895373,0.00927325818332648,1.9201322617895373,0.0,0.35321898148148145,-0.0,0.010069605637250272,9.42,0.0,9.42,-0.0,-11.645,1574.2695,55.28136 -1.860072326040721,0.00712987066183043,1.860072326040721,0.0,0.35211030092592593,-0.0,0.007751497884754677,0.0,0.0,0.0,-0.0,-14.96,1572.3717,59.956615 -1.8036524091676638,0.008432798908200902,1.8036524091676638,0.0,0.35199988425925927,-0.0,0.00917876165613997,1.05,0.0,1.05,-0.0,-12.8,1570.5322,60.429577 -1.750531808809545,0.008874469051384249,1.750531808809545,0.0,0.35171423611111113,-0.0,0.009670494587520518,4.2,0.0,4.2,-0.0,-12.114999999999998,1568.747,62.747902 -1.7004835527239013,0.005636624312881286,1.7004835527239013,0.0,0.3506474537037037,-0.0,0.006149010495006891,0.0,0.0,0.0,-0.0,-17.795,1567.0146,64.38771 -1.6532646469950816,0.0045617763719322186,1.6532646469950816,0.0,0.34966921296296294,-0.0,0.004981802233886396,0.0,0.0,0.0,-0.0,-20.32,1565.3329,64.483406 -1.6085861602663079,0.005016914998435376,1.6085861602663079,0.0,0.3488465277777778,-0.0,0.005484580341696731,0.13,0.0,0.13,-0.0,-19.130000000000003,1563.6968,64.45466 -1.5662447934045631,0.005970910714481537,1.5662447934045631,0.0,0.3481105324074074,-0.0,0.006534162040544239,0.0,0.0,0.0,-0.0,-16.955,1562.1038,64.41427 -1.5260750367517155,0.005253380739769952,1.5260750367517155,0.0,0.3480079861111111,-0.0,0.005754661720901108,0.0,0.0,0.0,-0.0,-18.515,1560.5521,64.39601 -1.487920598589907,0.00462371127423473,1.487920598589907,0.0,0.34794849537037037,-0.0,0.005069821152683932,0.0,0.0,0.0,-0.0,-20.05,1559.04,64.43366 -1.4516366620412253,0.004724663176035718,1.4516366620412253,0.0,0.34771435185185184,-0.0,0.0051854169902118595,0.25,0.0,0.25,-0.0,-19.77,1557.5657,64.5883 -1.4170714948513026,0.005490920812172202,1.4170714948513026,0.0,0.3472057870370371,-0.0,0.0060319744422591085,1.06,0.0,1.06,-0.0,-17.91,1556.1265,65.31185 -1.3840986806811324,0.005519628392708985,1.3840986806811324,0.0,0.3466476851851852,-0.0,0.006068994268453213,9.53,0.0,9.53,-0.0,-17.815,1554.7205,70.65715 -1.352581330005098,0.009448836482689231,1.352581330005098,0.0,0.3466476851851852,-0.0,0.010398475018913944,8.23,0.0,8.23,-0.0,-10.98,1553.3448,79.52186 -1.3224194346071065,0.009348273921355827,1.3224194346071065,0.0,0.3461518518518519,-0.0,0.010296733206769335,0.05,0.0,0.05,-0.0,-11.09,1551.998,83.70317 -1.2936015804671674,0.006838997742486501,1.2936015804671674,0.0,0.3461518518518519,-0.0,0.007539262163535517,0.0,0.0,0.0,-0.0,-15.095,1550.6823,84.02695 -1.266050758100768,0.005132220469453676,1.266050758100768,0.0,0.3456693287037037,-0.0,0.00566241772856608,0.0,0.0,0.0,-0.0,-18.630000000000003,1549.3966,83.99819 -1.239669374618935,0.005656992457641843,1.239669374618935,0.0,0.3456693287037037,-0.0,0.006246472591017348,0.0,0.0,0.0,-0.0,-17.425,1548.139,83.99235 -1.2143762396641327,0.005004323922338345,1.2143762396641327,0.0,0.3461518518518519,-0.0,0.005530191115757067,0.0,0.0,0.0,-0.0,-18.935000000000002,1546.908,83.976036 -1.1901001766084416,0.004106631801079102,1.1901001766084416,0.0,0.3461518518518519,-0.0,0.004541707811176992,0.0,0.0,0.0,-0.0,-21.305,1545.702,83.96236 -1.1667648354693705,0.004026558192861757,1.1667648354693705,0.0,0.3461518518518519,-0.0,0.004456560542014683,0.0,0.0,0.0,-0.0,-21.53,1544.5194,83.96486 -1.1443009785808629,0.006327457242430254,1.1443009785808629,0.0,0.3466476851851852,-0.0,0.007008444371031782,0.0,0.0,0.0,-0.0,-16.03,1543.3584,83.99708 -1.1226413046980275,0.009339024338740846,1.1226413046980275,0.0,0.3472057870370371,-0.0,0.01035178339817505,2.46,0.0,2.46,-0.0,-11.06,1542.2172,85.26114 -1.1017924140194895,0.005787339405503733,1.1017924140194895,0.0,0.34771435185185184,-0.0,0.006419600376497496,1.49,0.0,1.49,-0.0,-17.16,1541.0977,87.2286 -1.0817419049621964,0.004436214656027205,1.0817419049621964,0.0,0.34794849537037037,-0.0,0.00492437129922944,0.01,0.0,0.01,-0.0,-20.4,1540.0009,87.935455 -1.0624253914792052,0.0036374331038907482,1.0624253914792052,0.0,0.34800000000000003,-0.0,0.0040405158633038864,0.0,0.0,0.0,-0.0,-22.75,1538.9248,87.937355 -1.0437993911060777,0.00271506411749359,1.0437993911060777,0.0,0.3480079861111111,-0.0,0.0030180058767802706,0.0,0.0,0.0,-0.0,-26.12,1537.8685,87.974594 -1.0258018259905877,0.005478017232199444,1.0258018259905877,0.0,0.3484641203703704,-0.0,0.006093359649106319,2.05,0.0,2.05,-0.0,-17.830000000000002,1536.8298,89.0374 -1.008316543055521,0.015521171930796208,1.008316543055521,4.914907948405656e-9,0.34921886574074074,-0.0,0.01727619791409825,8.93,4.914907948405656e-9,8.929999995085092,-0.0,-4.225,1535.8031,94.49993 -0.9913623119927243,0.01118637089864201,0.9913623119927243,0.0,0.35015162037037034,-0.0,0.012459463445207132,0.0,0.0,0.0,-0.0,-8.72,1534.7904,98.7603 -0.9749701267977098,0.013658655603917201,0.9749701267977098,0.0,0.35120578703703703,-0.0,0.015222988846654052,0.0,0.0,0.0,-0.0,-6.05,1533.7947,98.91024 -0.9590665630285113,0.01698597177938753,0.9590665630285113,0.00013860177446284734,0.3519482638888889,-8.846226510642016e-14,0.018943514982265063,1.89,0.00013860177455130962,1.8898613982254484,-0.0,-3.045,1532.8125,99.91761 -0.9436673535465856,0.014020746805319855,0.9436673535465856,2.7755575615628914e-16,0.35200787037037035,-0.0,0.015646431038074046,1.25,2.7755575615628914e-16,1.2499999999999998,-0.0,-5.705,1531.8458,101.45093 -0.9288134225300508,0.008881078611177132,0.9288134225300508,0.0,0.35284641203703704,-0.0,0.009916960195162574,1.36,0.0,1.36,-0.0,-11.830000000000002,1530.8983,102.7287 -0.9144736421389251,0.006532379138549051,0.9144736421389251,0.0,0.3541518518518519,-0.0,0.007298740447914577,2.55,0.0,2.55,-0.0,-15.79,1529.9691,104.67054 -0.9005632359872483,0.009349413606939395,0.9005632359872483,0.0,0.35571446759259256,-0.0,0.010452515801014079,1.26,0.0,1.26,-0.0,-11.25,1529.0537,106.56906 -0.8870275921332305,0.012158686120845464,0.8870275921332305,0.0,0.35600000000000004,-0.0,0.013601288844043885,1.07,0.0,1.07,-0.0,-7.765,1528.1493,107.722046 -0.87385256227658,0.01459968525283564,0.87385256227658,4.416467191958873e-14,0.3564643518518519,-0.0,0.016341464075850142,3.06,4.416467191958873e-14,3.059999999999956,-0.0,-5.28,1527.2556,109.79359 -0.8610808861664448,0.00959292335876673,0.8610808861664448,0.0,0.35815185185185183,-0.0,0.010743568307602284,3.86,0.0,3.86,-0.0,-10.98,1526.3763,113.23704 -0.8487040215138871,0.009787406384659941,0.8487040215138871,0.0,0.3599482638888889,-0.0,0.010967591691952229,5.05,0.0,5.05,-0.0,-10.775,1525.5117,117.60111 -0.8366794803358146,0.009384645823038535,0.8366794803358146,0.0,0.36000787037037035,-0.0,0.010522143266163382,1.79,0.0,1.79,-0.0,-11.32,1524.6595,120.99304 -0.8250158416423525,0.006166861284296021,0.8250158416423525,0.0,0.36121863425925926,-0.0,0.006918140513315844,0.0,0.0,0.0,-0.0,-16.705,1523.8212,121.98485 -0.8137043864380542,0.004178924629499995,0.8137043864380542,0.0,0.3637142361111111,-0.0,0.004690560865637419,2.32,0.0,2.32,-0.0,-21.509999999999998,1522.9967,123.3258 -0.8026973119613932,0.006534720084678343,0.8026973119613932,0.0,0.36400011574074076,-0.0,0.007338701498450766,3.37,0.0,3.37,-0.0,-16.064999999999998,1522.1833,126.2136 -0.7919427255270407,0.010040464575991509,0.7919427255270407,0.0,0.36521898148148146,-0.0,0.011281735989056034,1.52,0.0,1.52,-0.0,-10.595,1521.3778,128.65933 -0.7880478782351598,0.021708306832088242,0.7880478782351598,3.4668095108183277,0.36771435185185186,-0.0531904836960202,0.024396758826542277,3.52,3.519999994514348,5.4856520925739e-9,-0.0,-0.06499999999999995,1521.0834,130.6533 -0.7854603554719666,0.010214336786411635,0.7854603554719666,0.0,0.3680083333333333,-0.0,0.011480807552761424,1.24,0.0,1.24,-0.0,-10.465,1520.887,132.43451 -0.775156918373517,0.006579854921568216,0.775156918373517,0.0,0.3696696759259259,-0.0,0.007399524633799686,0.0,0.0,0.0,-0.0,-16.155,1520.0984,133.04024 -0.7651434574959618,0.006341490408784424,0.7651434574959618,0.0,0.3719483796296296,-0.0,0.00713511115386023,0.0,0.0,0.0,-0.0,-16.685000000000002,1519.3219,133.08781 -0.7553890390107835,0.0057193730565966655,0.7553890390107835,0.0,0.37211041666666667,-0.0,0.006438384513569592,4.38,0.0,4.38,-0.0,-17.96,1518.5557,135.23347 -0.7458595892155337,0.009607536601576178,0.7458595892155337,0.0,0.3746479166666667,-0.0,0.010820751403983184,3.37,0.0,3.37,-0.0,-11.475,1517.7975,139.08595 -0.7365241212461926,0.012449086755937004,0.7365241212461926,0.0,0.3760002314814815,-0.0,0.014028077242491386,2.6,0.0,2.6,-0.0,-8.085,1517.0453,142.08401 -0.7382046515171985,0.020260354010048144,0.7382046515171985,4.406288690359357,0.3772188657407407,-6.956272623157753e-7,0.022828045091068918,4.41,4.40628938598662,0.0037106140133805095,-0.0,-1.3850000000000002,1517.1814,144.68163 -0.8305623097164603,0.025397622070958116,0.8305623097164603,13.15345457474272,0.3799997685185186,4.1034545747427185,0.028484213165199293,9.05,9.05,5.023759186428834e-16,-0.0,1.71,1524.2213,143.56218 -0.9055711660168562,0.017985158843292857,0.9055711660168562,1.7267524455515287e-5,0.3804640046296296,-7.234862603228333e-15,0.02010280612718903,3.17,1.726752446275015e-5,3.169982732475537,-0.0,-3.3049999999999997,1529.3849,143.56683 -0.8916722324352008,0.019688983855468977,0.8916722324352008,-5.430159028957621e-10,0.383714699074074,-5.430159028957621e-10,0.022020546370540565,0.0,0.0,0.0,-0.0,-2.14,1528.4612,145.16612 -0.8784102604436331,0.0147331135618396,0.8784102604436331,0.0,0.38400833333333334,-0.0,0.016487456894256774,0.92,0.0,0.92,-0.0,-6.18,1527.5663,145.71924 -0.8654711297168903,0.01372024577153476,0.8654711297168903,0.0,0.3866476851851852,-0.0,0.015362894933779039,15.19,0.0,15.19,-0.0,-7.234999999999999,1526.68,153.99954 -0.8529439842359785,0.009492736360606928,0.8529439842359785,0.0,0.38799999999999996,-0.0,0.010635314947801401,8.53,0.0,8.53,-0.0,-12.155,1525.8093,165.80229 -0.8407665633414271,0.014363376009382577,0.8407665633414271,0.0,0.3901519675925926,-0.0,0.01610126383854472,0.0,0.0,0.0,-0.0,-6.72,1524.9506,170.04437 -0.8289256409951227,0.01033676819818023,0.8289256409951227,0.0,0.39200034722222227,-0.0,0.011593899019801625,0.0,0.0,0.0,-0.0,-11.165,1524.1035,170.0716 -0.8174653314411159,0.004371980536626269,0.8174653314411159,0.0,0.3936696759259259,-0.0,0.0049063659155674155,0.0,0.0,0.0,-0.0,-21.915,1523.2721,170.10457 -0.8063463963406681,0.004310793783400864,0.8063463963406681,0.0,0.39600023148148145,-0.0,0.0048402991709295745,0.92,0.0,0.92,-0.0,-22.145,1522.4542,170.19955 -0.7955347886879875,0.004316282300554847,0.7955347886879875,0.0,0.3972188657407407,-0.0,0.00484902945809429,0.0,0.0,0.0,-0.0,-22.16,1521.6481,170.32494 -0.7849964992928348,0.007871495749114357,0.7849964992928348,0.0,0.40000023148148145,-0.0,0.008847683997963913,0.25,0.0,0.25,-0.0,-14.899999999999999,1520.8517,170.4486 -0.7746991469228264,0.011210683133068828,0.7746991469228264,0.0,0.4012189814814815,-0.0,0.012607519804271078,0.0,0.0,0.0,-0.0,-10.37,1520.0631,170.5384 -0.7633189027813918,0.015443222015216966,0.7633189027813918,0.0,0.40399999999999997,-0.0,0.01737753115188694,0.0,0.0,0.0,-0.0,-6.154999999999999,1519.1793,170.56435 -0.7434972100066918,0.021800888480930408,0.7434972100066918,-8.387533507715982e-7,0.40521898148148144,-8.387533507715982e-7,0.024556913352544403,0.0,0.0,0.0,-0.0,-1.3649999999999998,1517.608,170.56456 -0.8124462837739601,0.02296242237028476,0.8124462837739601,11.649781511042153,0.4080003472222223,-0.00019755810880691624,0.02577533331051308,11.65,11.64997906915096,2.0930849040112777e-5,-0.0,-0.77,1522.9043,170.55368 -0.8395078014055678,0.01605483044341738,0.8395078014055678,7.566169912820442e-16,0.40966990740740744,-0.0,0.01799843083000366,13.63,7.566169912820442e-16,13.63,-0.0,-5.865,1524.8611,180.418 -0.8277099845149514,0.00785843526784005,0.8277099845149514,0.0,0.41200046296296294,-0.0,0.00881466459850497,0.0,0.0,0.0,-0.0,-15.32,1524.0159,187.07468 -0.8162915096270656,0.007389505423054796,0.8162915096270656,0.0,0.41464768518518513,-0.0,0.008293188832211912,2.39,0.0,2.39,-0.0,-16.165,1523.1863,188.35307 -0.805167144913208,0.010520913780675389,0.805167144913208,0.0,0.4159996527777778,-0.0,0.011813901681732646,0.0,0.0,0.0,-0.0,-11.695,1522.3668,189.59068 -0.7943518643442933,0.006082219374518611,0.7943518643442933,0.0,0.419205324074074,-0.0,0.006833330492425085,0.0,0.0,0.0,-0.0,-18.69,1521.5592,189.5747 -0.7838340514610489,0.008406242056450394,0.7838340514610489,0.0,0.41999976851851856,-0.0,0.009449297058991767,6.37,0.0,6.37,-0.0,-14.685,1520.7632,191.90598 -0.7735898967861511,0.010226713492709068,0.7735898967861511,0.0,0.42400011574074076,-0.0,0.0115015962921027,7.15,0.0,7.15,-0.0,-12.29,1519.9775,194.73404 -0.7636044828133925,0.006039802173346946,0.7636044828133925,0.0,0.42400011574074076,-0.0,0.0067962052862600006,0.0,0.0,0.0,-0.0,-18.895,1519.2017,197.13142 -0.7538604383366209,0.010072232367370341,0.7538604383366209,0.0,0.428,-0.0,0.011339367213100993,1.41,0.0,1.41,-0.0,-12.595,1518.4347,198.90472 -0.744354836738498,0.007908647384694966,0.744354836738498,0.0,0.42846388888888887,-0.0,0.00890803870357547,0.52,0.0,0.52,-0.0,-15.68,1517.6769,199.85997 -0.7350907903916395,0.007624254744040239,0.7350907903916395,0.0,0.43200000000000005,-0.0,0.008591942430615906,0.01,0.0,0.01,-0.0,-16.235,1516.929,200.4142 -0.7260028825542298,0.018170829319689778,0.7260028825542298,3.7128322638579896e-12,0.4336695601851852,-0.0,0.02048714578025218,4.06,3.7128322638579896e-12,4.059999999996287,-0.0,-4.864999999999999,1516.186,202.59538 -0.7356995772684136,0.0241124936762524,0.7356995772684136,5.869891969269197,0.43600011574074077,-3.390507356871127e-5,0.027172020438207736,5.87,5.8699258743427665,7.412565723416698e-5,-0.0,-0.9649999999999999,1516.9784,206.13411 -0.7349916284263841,0.011258328508726451,0.7349916284263841,0.0,0.4399488425925926,-0.0,0.012687328455659692,0.0,0.0,0.0,-0.0,-11.495,1516.9209,208.29002 -0.7259568806529445,0.005798124675469882,0.7259568806529445,0.0,0.4400003472222222,-0.0,0.006537253741389766,0.0,0.0,0.0,-0.0,-19.814999999999998,1516.1823,208.2428 -0.7171680428448066,0.004817207752266245,0.7171680428448066,0.0,0.4440001157407408,-0.0,0.0054338992287907605,0.0,0.0,0.0,-0.0,-22.130000000000003,1515.4548,208.2428 -0.7085493300863996,0.00553336256209562,0.7085493300863996,0.0,0.4440081018518519,-0.0,0.00624471039127353,1.32,0.0,1.32,-0.0,-20.475,1514.7328,208.2428 -0.7000957257902121,0.00876256775297545,0.7000957257902121,0.0,0.4480001157407407,-0.0,0.009893731672561128,1.97,0.0,1.97,-0.0,-14.92,1514.016,208.2428 -0.6918165096238426,0.007443835748182706,0.6918165096238426,0.0,0.4501516203703704,-0.0,0.008408709715574007,0.0,0.0,0.0,-0.0,-17.015,1513.3055,208.2428 -0.6837148572869969,0.019217355640869807,0.6837148572869969,0.0,0.452,-0.0,0.0217184158004346,0.0,0.0,0.0,-0.0,-4.63,1512.602,208.2428 -0.6757978632518279,0.018182477073238754,0.6757978632518279,1.4432899320127036e-17,0.45599953703703705,-0.0,0.02055830557861334,0.01,1.4432899320127036e-17,0.009999999999999986,-0.0,-5.51,1511.9065,208.2428 -0.6680722220296916,0.01298806816027445,0.6680722220296916,0.0,0.45599953703703705,-0.0,0.014691837326143141,0.0,0.0,0.0,-0.0,-10.040000000000001,1511.2198,208.2428 -0.6605415545353881,0.008393753508186098,0.6605415545353881,0.0,0.46,-0.0,0.009499097905963802,0.0,0.0,0.0,-0.0,-15.765,1510.5428,208.2428 -0.6532119258449195,0.00638368958354811,0.6532119258449195,0.0,0.4604638888888889,-0.0,0.007227524058444331,0.0,0.0,0.0,-0.0,-19.15,1509.8765,208.2428 -0.6461432256707744,0.0073518266184146985,0.6461432256707744,0.0,0.463999537037037,-0.0,0.008327218913968057,0.0,0.0,0.0,-0.0,-17.509999999999998,1509.2267,208.23514 -0.6393548578706776,0.010158591059924286,0.6393548578706776,0.0,0.46799976851851854,-0.0,0.011511177274301959,0.0,0.0,0.0,-0.0,-13.55,1508.596,208.21225 -0.6326222910693324,0.018741200871222434,0.6326222910693324,0.0,0.46799976851851854,-0.0,0.02124543933325737,0.0,0.0,0.0,-0.0,-5.415,1507.9637,208.19353 -0.6257252381964082,0.02359058130890497,0.6257252381964082,-1.0149309589661051e-10,0.4719996527777777,-1.0149309589661051e-10,0.02675441921600831,0.0,0.0,0.0,-0.0,-2.3150000000000004,1507.3091,208.19933 -0.6184493879885954,0.02825661905956641,0.6184493879885954,0.19369338359630014,0.4719996527777777,0.19369338359630014,0.03206109716458737,0.0,0.0,0.0,-0.0,0.27499999999999947,1506.6106,208.2492 -0.6116030821442949,0.027267289595210624,0.6116030821442949,-0.006998647372958699,0.4760001157407408,-0.006998647372958699,0.030952221868507,0.0,0.0,0.0,-0.0,-0.3550000000000004,1505.9458,208.18661 -0.611139455468106,0.03035860191113763,0.611139455468106,2.4182037100180733,0.4800005787037037,2.4182037100180733,0.03446233399848408,0.0,0.0,0.0,-0.0,1.0799999999999996,1505.9005,207.64153 -0.6123448655187597,0.023683519615594676,0.6123448655187597,0.043561908809745,0.4800005787037037,-1.980654585180649e-11,0.026882844968692723,2.24,0.04356190882955154,2.1964380911704486,-0.0,-2.485,1506.0182,207.96107 -0.6449161014619493,0.026946043190854113,0.6449161014619493,5.899828460830865,0.4840002314814815,-0.0001579282852009064,0.030523364045350988,5.9,5.899986389116067,1.36108839339677e-5,-0.0,-0.7949999999999999,1509.1132,208.56721 -0.6879850464188135,0.03322171353595268,0.6879850464188135,5.520729881908623,0.4840002314814815,5.440729881908623,0.037536156444139594,0.08,0.08,0.0,-0.0,2.21,1512.9739,206.45485 -0.833148534196459,0.038371838579330034,0.833148534196459,18.195745445309754,0.48800034722222224,10.535745445309756,0.04302995386509219,7.66,7.66,0.0,-0.0,4.115,1524.407,198.34973 -1.1135476272575366,0.03860600304257087,1.1135476272575366,17.950835675709754,0.4919994212962963,10.000835675709755,0.042806065444730805,7.95,7.95,0.0,-0.0,3.915,1541.7314,187.957 -1.2833722676893282,0.03155279693024846,1.2833722676893282,1.8281377441066191,0.4919994212962963,1.8281377441066191,0.034794215838971805,0.0,0.0,0.0,-0.0,0.8600000000000001,1550.2081,182.06995 -1.2997931412757837,0.02633055331367657,1.2997931412757837,3.066243370591429,0.4959997685185185,-7.48549155473093e-9,0.029021276774344254,3.38,3.0662433780769205,0.3137566219230794,-0.0,-1.8650000000000002,1550.9674,181.65282 -1.405124623221013,0.02817859973331871,1.405124623221013,8.409874710011247,0.4959997685185185,-4.2580746078851527e-5,0.03096526876294667,8.41,8.409917290757326,8.27092426746967e-5,-0.0,-0.9400000000000001,1555.6208,181.69894 -1.423423342967264,0.022593549019853502,1.423423342967264,2.451403531278373e-9,0.4999997685185186,-0.0,0.024815568738130563,2.84,2.451403531278373e-9,2.8399999975485963,-0.0,-4.18,1556.3936,185.06566 -1.3897543662184393,0.027242318306098186,1.3897543662184393,1.3843046222448099,0.503999537037037,-6.02737778107366e-8,0.029949041536790504,1.4,1.3843046825185876,0.015695317481412195,-0.0,-1.645,1554.964,187.0353 -1.3576585876368115,0.01813243343784946,1.3576585876368115,0.0,0.503999537037037,-0.0,0.01995192745202406,0.0,0.0,0.0,-0.0,-7.285,1553.5686,187.68976 -1.3270877632536529,0.01691089668901867,1.3270877632536529,0.0,0.5079996527777778,-0.0,0.01862412085188328,0.0,0.0,0.0,-0.0,-8.32,1552.2085,187.72998 -1.2978259205368812,0.020998006882101267,1.2978259205368812,2.8343993818680248e-15,0.5079996527777778,-0.0,0.02314514641882145,0.46,2.8343993818680248e-15,0.45999999999999713,-0.0,-5.365,1550.877,187.98532 -1.2698632275399238,0.01326657767369033,1.2698632275399238,0.0,0.511999537037037,-0.0,0.014635419508420552,0.0,0.0,0.0,-0.0,-11.610000000000001,1549.5762,188.22162 -1.243148271056625,0.013482854561196477,1.243148271056625,0.0,0.5159998842592592,-0.0,0.01488621005223168,0.02,0.0,0.02,-0.0,-11.489999999999998,1548.3064,188.21739 -1.2175253064234557,0.013591301460389114,1.2175253064234557,0.0,0.5159998842592592,-0.0,0.015018008746508132,0.0,0.0,0.0,-0.0,-11.375,1547.0626,188.17923 -1.1929131638524282,0.01549192993275029,1.1929131638524282,0.0,0.520000462962963,-0.0,0.01713165565067462,1.03,0.0,1.03,-0.0,-9.745000000000001,1545.843,188.70001 -1.1703118141911402,0.02469503940675081,1.1703118141911402,7.0244746785380625e-6,0.520000462962963,-3.695376626541942e-15,0.02732905318039703,2.73,7.024474682233439e-6,2.7299929755253176,-0.0,-3.38,1544.7007,190.36862 -1.1781146387408343,0.03550169368030029,1.1781146387408343,4.173454574742719,0.5240002314814816,4.1034545747427185,0.03927827206401289,0.07,0.07,3.885780586188048e-18,-0.0,1.71,1545.0975,189.93033 -1.2328087968442034,0.03573773968577919,1.2328087968442034,4.146472217203745,0.5279998842592593,3.9964722172037446,0.03947019776790336,0.15,0.15,8.326672684688674e-18,-0.0,1.67,1547.8076,186.09735 -1.3304203267816392,0.037400522095139194,1.3304203267816392,7.368066538404869,0.5279998842592593,5.668066538404869,0.04118555325508101,1.7,1.7,0.0,-0.0,2.295,1552.3583,181.22958 -1.625642107780409,0.04281237499850964,1.625642107780409,20.068763491389756,0.5319998842592593,10.428763491389756,0.04678440116350307,9.64,9.64,0.0,-0.0,4.075,1564.3267,173.27327 -2.1368573600725007,0.04229982092600073,2.1368573600725007,17.092789627309752,0.5319998842592593,9.532789627309752,0.04574675891662125,7.56,7.56,0.0,-0.0,3.74,1580.6561,163.41946 -2.421839987168913,0.03587435270718934,2.421839987168913,3.0220340778247667,0.5359994212962963,2.5520340778247714,0.03861504298388181,0.47,0.46999999999999525,4.722333635243103e-15,-0.0,1.13,1588.1326,157.48798 -2.3687345536577684,0.030951346913332626,2.3687345536577684,-1.1286351619087679e-5,0.5395353009259259,-1.1286351619087679e-5,0.03334373483277138,0.0,0.0,0.0,-0.0,-1.0850000000000002,1586.8085,156.60464 -2.275502012247947,0.028150044526569933,2.275502012247947,-3.5275965455324267e-11,0.54,-3.5275965455324267e-11,0.030371804979834424,0.0,0.0,0.0,-0.0,-2.425,1584.4104,156.65529 -2.1955712161042213,0.029461611250158986,2.1955712161042213,-7.48549155473093e-9,0.5439997685185185,-7.48549155473093e-9,0.031829788740648755,0.0,0.0,0.0,-0.0,-1.8650000000000002,1582.2749,156.65471 -2.238576543916543,0.03373418365512955,2.238576543916543,6.706442142685802,0.5439997685185185,-0.07355785443459731,0.03641913431059185,6.78,6.779999997120399,2.879601850303004e-9,-0.0,0.06500000000000039,1583.4333,156.66017 -2.386560980948214,0.02831620055361534,2.386560980948214,0.08278952035218747,0.5479999999999999,-8.32512762616932e-12,0.030496299311384284,10.35,0.0827895203605126,10.267210479639486,-0.0,-2.575,1587.2562,159.10184 -2.2978203192258313,0.02677454494814101,2.2978203192258313,1.0267399297446109e-5,0.5498481481481481,-3.1763737170276957e-15,0.02887711965953212,4.41,1.0267399300622483e-5,4.4099897326007,-0.0,-3.3899999999999997,1584.9933,166.34547 -2.2117237240103846,0.02631871042201648,2.2117237240103846,0.0,0.5520004629629629,-0.0,0.028426391569845548,0.0,0.0,0.0,-0.0,-3.6649999999999996,1582.7126,168.50569 -2.1363813203934696,0.03464401563789965,2.1363813203934696,-0.019394671715509862,0.5559922453703704,-0.019394671715509862,0.03746741091776364,0.0,0.0,0.0,-0.0,0.16000000000000014,1580.6428,168.48737 -2.3350690283141797,0.04106297325209057,2.3350690283141797,12.67043119614828,0.5560002314814815,6.47043119614828,0.04426078502334372,6.2,6.2,0.0,-0.0,2.5949999999999998,1585.9536,164.85149 -2.751019195007405,0.044966211650543646,2.751019195007405,12.386162371549752,0.56,9.546162371549752,0.048170639172619115,2.84,2.84,0.0,-0.0,3.745,1595.7435,156.89128 -3.039851090592203,0.038077575266274276,3.039851090592203,5.462973652965581,0.5600517361111111,2.8329736529655904,0.040639254746287976,2.63,2.6299999999999906,9.19764264750711e-15,-0.0,1.2349999999999999,1601.7058,150.69128 -3.090050480804621,0.03114619503955838,3.090050480804621,3.424480653757859,0.5639996527777777,-1.8454283909040158e-8,0.03322127600691102,3.56,3.424480672212143,0.13551932778785714,-0.0,-1.77,1602.684,149.93567 -3.0166145803759057,0.03381788270354156,3.0166145803759057,-0.0006251253273792237,0.5663305555555556,-0.0006251253273792237,0.036103319428207215,0.0,0.0,0.0,-0.0,-0.6400000000000001,1601.2476,149.97464 -3.268312692748449,0.05361636245601714,3.268312692748449,17.624606675869753,0.5679997685185185,15.804606675869755,0.057069223272229866,1.82,1.82,0.0,-0.0,6.085,1606.0334,143.00499 -4.362590889329312,0.05651337712775768,4.362590889329312,25.212235798029752,0.5715351851851852,17.262235798029753,0.05951370436244664,7.95,7.95,0.0,-0.0,6.63,1623.2802,126.60276 -5.395628578612049,0.0485595099072998,5.395628578612049,10.776454841629754,0.5719994212962963,10.776454841629754,0.050740835885400355,0.0,0.0,0.0,-0.0,4.205,1635.972,112.6799 -6.142151823174257,0.05393337890684997,6.142151823174257,16.384195973069755,0.5760005787037037,14.534195973069755,0.05609076787473974,1.85,1.85,0.0,-0.0,5.61,1643.7109,100.0741 -6.816482210820288,0.04801431118725262,6.816482210820288,9.706635302429753,0.5760005787037037,9.706635302429753,0.04974665554047772,0.0,0.0,0.0,-0.0,3.8049999999999997,1649.9319,88.122116 -7.398179301239549,0.05445891278354118,7.398179301239549,14.373723042189754,0.5800003472222222,14.373723042189754,0.05625702734926354,0.0,0.0,0.0,-0.0,5.55,1654.8224,76.11779 -8.799593409917412,0.06683588021006565,8.799593409917412,22.464233307389758,0.5807946759259259,22.464233307389758,0.06861311422874976,0.0,0.0,0.0,-0.0,8.575000000000001,1665.1821,57.695034 -12.001035204268414,0.09396644710975621,12.001035204268414,29.12648765563965,0.5840005787037037,28.95648765563965,0.0954034466828523,0.17,0.17,0.0,-0.0,13.719999999999999,1683.7125,28.956488 -13.137951090084032,0.08425196988570553,13.137951090084032,10.646079063415527,0.5853530092592593,10.646079063415527,0.08526666863094383,0.0,0.0,0.0,-0.0,11.875,1689.1179,10.646079 -11.894921650787717,0.060070383301631974,11.894921650787717,3.91215443611145,0.5880002314814815,3.91215443611145,0.06100823948087817,0.0,0.0,0.0,-0.0,6.574999999999999,1683.1821,3.9121544 -10.286405821588927,0.07795911083199918,10.286405821588927,1.4366868801367083,0.5903311342592593,1.4366868801367083,0.07958651749750316,0.0,0.0,0.0,-0.0,10.645,1674.5055,1.4366877 -8.886136654663721,0.09889717202270452,8.886136654663721,0.5249259807587512,0.5920008101851852,0.5249259807587512,0.10149132532011501,0.0,0.0,0.0,-0.0,14.504999999999999,1665.7666,0.5276096 -7.902448379680458,0.08189981132489346,7.902448379680458,2.378514877859961,0.5943310185185184,0.1785148778599611,0.08440311628281495,2.2,2.2,0.0,-0.0,11.469999999999999,1658.7603,0.20215838 -7.103750843483214,0.05295959282095468,7.103750843483214,0.06479517614518625,0.5959997685185184,0.06479517614518625,0.05478850064952283,0.0,0.0,0.0,-0.0,4.739999999999999,1652.3971,0.0909023 -6.347426431424277,0.05519570292958471,6.347426431424277,0.028790269374255786,0.5987809027777777,0.028790269374255786,0.057335104772497474,0.0,0.0,0.0,-0.0,5.355,1645.6742,0.04681718 -5.808235151740125,0.06153951533572864,5.808235151740125,1.5545995729439581,0.5999998842592592,0.014599572943958044,0.06413140354534282,1.54,1.54,0.0,-0.0,7.029999999999999,1640.3727,0.025871115 -5.523951884664786,0.05655818310387207,5.523951884664786,3.9379526424223665,0.6027810185185185,0.007952642422366594,0.059048150757855536,3.93,3.93,0.0,-0.0,5.7,1637.3757,0.014810527 -5.3834444110941915,0.0539862096894518,5.3834444110941915,4.104490354859993,0.6039996527777778,0.004490354859993648,0.05641596245424558,4.1,4.1,0.0,-0.0,4.9799999999999995,1635.837,0.008610256 -5.125879306866263,0.06178487757611732,5.125879306866263,1.1225633146963248,0.6063304398148148,0.002563314696324712,0.06468139247838217,1.12,1.12,0.0,-0.0,7.0,1632.9092,0.0050015766 -4.77493331410106,0.08019360748973073,4.77493331410106,0.09149510059836,0.6079995370370371,0.0014951005983599983,0.08417146119954833,0.09,0.09,0.0,-0.0,11.065000000000001,1628.6737,0.0029467866 -4.547652861551322,0.08722062787674886,4.547652861551322,3.3308561988427487,0.6098476851851852,0.000856198842748757,0.09171104604095821,3.33,3.33,0.0,-0.0,12.385,1625.7612,0.0016979823 -4.609815167756392,0.07734770529738753,4.609815167756392,7.700505060242472,0.6120002314814815,0.000505060242471724,0.0812892912574072,7.7,7.7,0.0,-0.0,10.41,1626.572,0.0010050697 -4.647470270632356,0.06654106361756346,4.647470270632356,2.5102957384544684,0.6133524305555556,0.00029573845446861767,0.06991106884054446,2.51,2.51,0.0,-0.0,8.02,1627.0579,0.00058973796 -4.385936234001343,0.07729217148828486,4.385936234001343,0.00017569752822672408,0.6159914351851852,0.00017569752822672408,0.0813796780716375,0.0,0.0,0.0,-0.0,10.325,1623.5989,0.00035077982 -4.083855707337312,0.07761656326420957,4.083855707337312,0.00010422343836804703,0.6162851851851852,0.00010422343836804703,0.08193629618533345,0.0,0.0,0.0,-0.0,10.424999999999999,1619.3372,0.00020823008 -3.8822495738050224,0.07785558083025176,3.8822495738050224,2.090058366153449,0.6195356481481481,5.8366153449034685e-5,0.08234235626707403,2.09,2.09,0.0,-0.0,10.42,1616.3137,0.000116664254 -3.8218044246272997,0.08701345712165798,3.8218044246272997,5.740034116420304,0.6199998842592592,3.4116420303672735e-5,0.0920813845729966,5.74,5.74,0.0,-0.0,12.184999999999999,1615.3766,6.820958e-5 -3.7430012709015266,0.06805252247093302,3.7430012709015266,2.510019096909727,0.6227818287037037,1.909690972724353e-5,0.07207162163286546,2.51,2.51,0.0,-0.0,8.255,1614.1323,3.818653e-5 -3.876120294808067,0.06167433393257689,3.876120294808067,10.53001112877129,0.6240006944444445,1.1128771290893262e-5,0.06523240104047422,10.53,10.53,0.0,-0.0,6.69,1616.2194,2.2255066e-5 -3.9596518950014854,0.052928989536653655,3.9596518950014854,2.4400064889735846,0.6253526620370371,6.488973584825958e-6,0.05593845680478919,2.44,2.44,0.0,-0.0,4.33,1617.4927,1.2977105e-5 -3.9036547968578454,0.05640822250542432,3.9036547968578454,3.240003749596157,0.6278895833333333,3.7495961568588708e-6,0.05964688034801094,3.24,3.24,0.0,-0.0,5.234999999999999,1616.6421,7.498911e-6 -3.9986682912886806,0.05645423451012648,3.9986682912886806,5.5700017395482435,0.6280518518518519,1.7395482431067728e-6,0.05964255016805453,5.57,5.57,0.0,-0.0,5.2299999999999995,1618.0782,3.479036e-6 -4.500040877323576,0.04757354776343563,4.500040877323576,18.820000648842846,0.6303303240740741,6.488428460381223e-7,0.05004214469732387,18.82,18.82,0.0,-0.0,2.5549999999999997,1625.1327,1.2976773e-6 -5.29502435187518,0.05477216274946589,5.29502435187518,12.070000371510384,0.6319916666666667,3.715103833058376e-7,0.05727191496767055,12.07,12.07,0.0,-0.0,4.5249999999999995,1634.848,7.43018e-7 -5.357570411615004,0.0634269314390032,5.357570411615004,2.136529406227916e-7,0.6322856481481481,2.136529406227916e-7,0.06629324197591006,0.0,0.0,0.0,-0.0,6.734999999999999,1635.5493,4.2730497e-7 -4.9151867764561405,0.07110948407941547,4.9151867764561405,1.1716458430832317e-7,0.6347809027777778,1.1716458430832317e-7,0.07455759193058804,0.0,0.0,0.0,-0.0,8.485,1630.4026,2.343289e-7 -4.535250899232072,0.08362290503784743,4.535250899232072,4.304663369141259e-8,0.6360001157407408,4.304663369141259e-8,0.0879369213136422,0.0,0.0,0.0,-0.0,11.045,1625.5981,8.609323e-8 -4.208994869679647,0.09507344196331086,4.208994869679647,5.3300016132737384e-9,0.6362856481481481,5.3300016132737384e-9,0.10025314151978856,0.0,0.0,0.0,-0.0,13.135,1621.1396,1.0660003e-8 -3.928645603114178,0.1094733090998296,3.928645603114178,1.8193155091472768e-9,0.6387810185185185,1.8193155091472768e-9,0.11573139758151414,0.0,0.0,0.0,-0.0,15.41,1617.0232,3.638631e-9 -3.690837459891295,0.09413732522806845,3.690837459891295,0.20999999947416972,0.6399917824074074,-5.258302654515347e-10,0.09974875542588367,0.21,0.21,0.0,-0.0,12.96,1613.2942,-1.0516605e-9 -3.484376493998834,0.07027364175330354,3.484376493998834,0.639999997274161,0.6400512731481481,-2.725839035682929e-9,0.07462159207371401,0.64,0.64,0.0,-0.0,8.37,1609.8564,-5.451678e-9 -3.2998896293994755,0.06316423428299212,3.2998896293994755,-4.136313786923239e-9,0.6418483796296296,-4.136313786923239e-9,0.06720794275610743,0.0,0.0,0.0,-0.0,6.715,1606.6077,-8.272628e-9 -3.129722318672037,0.0868332429093199,3.129722318672037,-4.112857440883123e-9,0.6435354166666667,-4.112857440883123e-9,0.09257440662302636,0.0,0.0,0.0,-0.0,11.675,1603.4458,-8.225715e-9 -3.0079206241647642,0.12116878007467406,3.0079206241647642,-2.4810728411252856e-9,0.6439998842592592,-2.4810728411252856e-9,0.1293713789203608,0.0,0.0,0.0,-0.0,17.12,1601.0752,-4.962146e-9 -3.0373666748493937,0.1489792455704808,3.0373666748493937,0.17999999915565867,0.6442856481481481,-8.443413119548296e-10,0.15900671313638828,0.18,0.18,0.0,-0.0,20.6,1601.657,-1.6886826e-9 -3.1331019055078766,0.1283878883543927,3.1331019055078766,7.470000000283275,0.6458482638888889,2.8327598680409377e-10,0.13687102368404216,7.47,7.47,0.0,-0.0,18.015,1603.5103,5.6655197e-10 -3.19082947952631,0.08298947286239429,3.19082947952631,3.280000000542646,0.6471538194444444,5.426462642036441e-10,0.08841282357551708,3.28,3.28,0.0,-0.0,10.855,1604.6006,1.0852925e-9 -3.2027154165426075,0.07008159124225954,3.2027154165426075,0.550000000304984,0.6479927083333333,3.04983927932108e-10,0.07465108337907311,0.55,0.55,0.0,-0.0,8.185,1604.8226,6.0996785e-10 -3.221058611555049,0.09274423849611167,3.221058611555049,5.400000000149432,0.6480521990740741,1.4943188375707822e-10,0.0987703998299338,5.4,5.4,0.0,-0.0,12.600000000000001,1605.1637,2.9886377e-10 -3.229120885261947,0.10387684751650976,3.229120885261947,1.8600000000787014,0.6487947916666666,7.870124003138641e-11,0.11061607455172613,1.86,1.86,0.0,-0.0,14.415,1605.313,1.5740248e-10 -3.1948366150097653,0.10799083513549039,3.1948366150097653,0.6100000000091585,0.6498487268518519,9.158613972221647e-12,0.11504264779530335,0.61,0.61,0.0,-0.0,15.030000000000001,1604.6755,1.8317228e-11 -3.1205875661759714,0.10765630611533777,3.1205875661759714,0.20999999994160948,0.6507814814814814,-5.839052155042254e-11,0.11478672710188008,0.21,0.21,0.0,-0.0,14.969999999999999,1603.2712,-1.1678104e-10 -3.0154555795783202,0.098230917796887,3.0154555795783202,1.7299999998954179,0.6515357638888889,-1.0458204430406307e-10,0.10487093656835088,1.73,1.73,0.0,-0.0,13.48,1601.2246,-2.0916409e-10 -2.8887445152513123,0.09058480316208273,2.8887445152513123,-1.1005183557889503e-10,0.6519921296296297,-1.1005183557889503e-10,0.09686306248830258,0.0,0.0,0.0,-0.0,12.190000000000001,1598.6609,-2.2010367e-10 -2.7609677020296846,0.11695777207000724,2.7609677020296846,-6.542178600127301e-11,0.6520001157407407,-6.542178600127301e-11,0.12527561072679919,0.0,0.0,0.0,-0.0,16.38,1595.9591,-1.3084357e-10 -2.679559441617339,0.14604804804124324,2.679559441617339,-8.984530132952664e-12,0.6520517361111111,-8.984530132952664e-12,0.15661012935684862,0.0,0.0,0.0,-0.0,20.135,1594.1718,-1.796906e-11 -2.6338796850951858,0.14207850567510014,2.6338796850951858,0.6000000000402347,0.6522856481481482,4.023469059542109e-11,0.1524517116479012,0.6,0.6,0.0,-0.0,19.67,1593.1449,8.046938e-11 -2.6093104703343903,0.13403645135857173,2.6093104703343903,3.850000000067228,0.6527943287037037,6.72277789445327e-11,0.14387304833412795,3.85,3.85,0.0,-0.0,18.675,1592.5852,1.3445556e-10 -2.593926081598362,0.15493624250796997,2.593926081598362,2.2300000000571747,0.653352662037037,5.7174758016303014e-11,0.16634350843256826,2.23,2.23,0.0,-0.0,21.134999999999998,1592.232,1.14349516e-10 -2.7901226605587257,0.15954061324595875,2.7901226605587257,10.740000000032376,0.653848611111111,3.237545302341558e-11,0.17081972779500879,10.74,10.74,0.0,-0.0,21.58,1596.5864,6.4750906e-11 -3.1913186808812797,0.1089164969576028,3.1913186808812797,11.550000000017034,0.653848611111111,1.7034181360024502e-11,0.11603351310760383,11.55,11.55,0.0,-0.0,15.07,1604.6097,3.4068363e-11 -3.4932692144316815,0.08630614972767985,3.4932692144316815,6.600000000009997,0.653848611111111,9.997597369027264e-12,0.09163739384698448,6.6,6.6,0.0,-0.0,11.26,1610.0087,1.9995195e-11 -3.542647970224404,0.09687846194615561,3.542647970224404,2.2200000000057623,0.6543310185185185,5.76215507633211e-12,0.10280924365956973,2.22,2.22,0.0,-0.0,13.09,1610.8469,1.152431e-11 -3.507866009499264,0.11282880953750733,3.507866009499264,5.300000000003299,0.6543310185185185,3.3000119565147357e-12,0.11977986655152137,5.3,5.3,0.0,-0.0,15.580000000000002,1610.2577,6.600024e-12 -3.5864000402314984,0.11283820742381144,3.5864000402314984,5.890000000001627,0.653848611111111,1.627523311459443e-12,0.11969155850368718,5.89,5.89,0.0,-0.0,15.579999999999998,1611.58,3.2550466e-12 -3.8563634501112594,0.12205524373814279,3.8563634501112594,11.04000000000087,0.653848611111111,8.705443592632046e-13,0.1291211395004616,11.04,11.04,0.0,-0.0,16.835,1615.9142,1.7410887e-12 -3.9754335803125733,0.13342988554700272,3.9754335803125733,4.150000000000472,0.653352662037037,4.71180603217047e-13,0.1409958125951375,4.15,4.15,0.0,-0.0,18.32,1617.7302,9.423612e-13 -3.861127458490486,0.14426662541834118,3.861127458490486,2.3605092490095115e-13,0.653352662037037,2.3605092490095115e-13,0.15261139617637606,0.0,0.0,0.0,-0.0,19.66,1615.9879,4.7210185e-13 -3.7125454202892487,0.14241887191892522,3.7125454202892487,2.7300000000001337,0.6527943287037037,1.336526104634954e-13,0.15087556338973468,2.73,2.73,0.0,-0.0,19.48,1613.6444,2.6730522e-13 -3.663463423739637,0.11665135835795012,3.663463423739637,3.260000000000062,0.6522856481481482,6.224976588889142e-14,0.12363889869247292,3.26,3.26,0.0,-0.0,16.155,1612.8496,1.2449953e-13 -3.5379297768764473,0.10559090079421368,3.5379297768764473,2.8644058967198254e-14,0.6520517361111111,2.8644058967198254e-14,0.11206058419371434,0.0,0.0,0.0,-0.0,14.545,1610.7673,5.728812e-14 -3.340076898676882,0.1224518243689952,3.340076898676882,1.6324047758607746e-14,0.6519921296296297,1.6324047758607746e-14,0.13023246390594512,0.0,0.0,0.0,-0.0,17.025,1607.3306,3.2648096e-14 -3.1567194601590645,0.11635902264439969,3.1567194601590645,8.803575103883196e-15,0.6518894675925926,8.803575103883196e-15,0.12401267436906639,0.0,0.0,0.0,-0.0,16.215,1603.9587,1.760715e-14 -3.0210636034036344,0.11509447055930529,3.0210636034036344,4.201172033548942e-15,0.6511538194444445,4.201172033548942e-15,0.12286588394761995,0.0,0.0,0.0,-0.0,16.08,1601.3356,8.402344e-15 -2.958589781469201,0.12435312341761211,2.958589781469201,2.509999999999999,0.6503311342592593,-1.0468743834120622e-15,0.13285323278568748,2.51,2.51,0.0,-0.0,17.4,1600.0876,-2.0937488e-15 -2.925778047661806,0.11893693664197048,2.925778047661806,5.109999999999995,0.6493528935185184,-5.6319495948643116e-15,0.12711973660361842,5.11,5.11,0.0,-0.0,16.689999999999998,1599.4216,-1.1263899e-14 -2.8815909729621003,0.10175064156445997,2.8815909729621003,0.07999999999999188,0.6482863425925927,-8.1247671351169e-15,0.10881286225184394,0.08,0.08,0.0,-0.0,14.16,1598.5128,-1.6249534e-14 -2.787796756050987,0.08302043587710592,2.787796756050987,-7.0960405384790264e-15,0.6480008101851852,-7.0960405384790264e-15,0.08889254195935305,0.0,0.0,0.0,-0.0,10.92,1596.5366,-1.4192081e-14 -2.639873231684122,0.08692111913216499,2.639873231684122,-4.002845198179642e-15,0.647890162037037,-4.002845198179642e-15,0.093259317184318,0.0,0.0,0.0,-0.0,11.684999999999999,1593.2806,-8.00569e-15 -2.537996375987737,0.09352650484556477,2.537996375987737,1.289999999999998,0.64678125,-1.9046213445370384e-15,0.10049460628074527,1.29,1.29,0.0,-0.0,12.91,1590.9303,-3.8092427e-15 -2.574466541415982,0.12449744572312196,2.574466541415982,6.469999999999999,0.645352199074074,-1.0027260732891032e-15,0.13370140089413002,6.47,6.47,0.0,-0.0,17.634999999999998,1591.7823,-2.0054521e-15 -2.580968433389943,0.1216111790719388,2.580968433389943,2.1899999999999995,0.6440515046296297,-5.16385430661905e-16,0.13058939778222534,2.19,2.19,0.0,-0.0,17.275,1591.933,-1.0327709e-15 -2.514157120124058,0.11241700649829245,2.514157120124058,-2.140115826812875e-16,0.6438894675925926,-2.140115826812875e-16,0.12083533321355082,0.0,0.0,0.0,-0.0,15.99,1590.3667,-4.2802317e-16 -2.4120236115487486,0.09693837175391025,2.4120236115487486,-1.112619466121395e-16,0.6427809027777778,-1.112619466121395e-16,0.1043601041899466,0.0,0.0,0.0,-0.0,13.620000000000001,1587.89,-2.225239e-16 -2.3145878530721657,0.093899289704069,2.3145878530721657,-4.085195898598901e-17,0.6407940972222222,-4.085195898598901e-17,0.10124535879062338,0.0,0.0,0.0,-0.0,13.18,1585.4275,-8.170392e-17 -2.2243365644552644,0.11584959611505512,2.2243365644552644,8.547009942507282e-18,0.6399997685185186,8.547009942507282e-18,0.1251003361707457,0.0,0.0,0.0,-0.0,16.665,1583.0522,1.709402e-17 -2.1400351279508243,0.1400958181039746,2.1400351279508243,2.1832368514069428e-17,0.6395354166666667,2.1832368514069428e-17,0.15150347377161733,0.0,0.0,0.0,-0.0,19.9,1580.7449,4.3664737e-17 -2.0721775045691584,0.16753334641036635,2.0721775045691584,8.182985125715558e-18,0.6378482638888888,8.182985125715558e-18,0.18139599411499216,0.0,0.0,0.0,-0.0,23.055,1578.8206,1.636597e-17 -2.0276219678925855,0.15466839289689088,2.0276219678925855,0.26,0.6360001157407408,-8.452675783909895e-18,0.16760432542609177,0.26,0.26,0.0,-0.0,21.73,1577.5225,-1.6905352e-17 -1.9992049212539584,0.14880631787461918,1.9992049212539584,1.05,0.6355359953703703,-2.3565647732696706e-17,0.16133817217516494,1.05,1.05,0.0,-0.0,21.085,1576.6796,-4.7131295e-17 -1.980596529258101,0.16350824630953434,1.980596529258101,2.03,0.6338483796296296,-3.2655459383425566e-17,0.17734105190619437,2.03,2.03,0.0,-0.0,22.77,1576.1211,-6.531092e-17 -1.965882820388385,0.13747588005017816,1.965882820388385,2.48,0.6319996527777777,-3.12216344357935e-17,0.14914848615757756,2.48,2.48,0.0,-0.0,19.835,1575.6758,-6.244327e-17 -1.9153969180346957,0.11883504096098346,1.9153969180346957,-1.9463093283507258e-17,0.6315355324074073,-1.9463093283507258e-17,0.12905217045740333,0.0,0.0,0.0,-0.0,17.405,1574.1221,-3.8926187e-17 -1.8405755893813682,0.11627976043576171,1.8405755893813682,-1.1029417011087094e-17,0.6287943287037038,-1.1029417011087094e-17,0.12646837884944476,0.0,0.0,0.0,-0.0,17.14,1571.7424,-2.2058834e-17 -2.0119871801280595,0.1187805263419473,2.0119871801280595,14.41,0.628,-6.544109548857107e-18,0.1287526510480023,14.41,14.41,0.0,-0.0,17.46,1577.0602,-1.3088219e-17 -2.6275935866268805,0.11593427161165927,2.6275935866268805,22.31,0.6267813657407407,-3.865203244223485e-18,0.12440982062845604,22.31,22.31,0.0,-0.0,16.92,1593.0022,-7.7304065e-18 -3.09145931188404,0.12975370223748664,3.09145931188404,4.43,0.624052199074074,-2.2568702775077895e-18,0.13839604918700676,4.43,4.43,0.0,-0.0,18.78,1602.7112,-4.5137406e-18 -3.029027709707298,0.1401357842894492,3.029027709707298,0.009999999999999998,0.6238902777777778,-1.3016648535983983e-18,0.14958335146472929,0.01,0.01,0.0,-0.0,20.105,1601.4928,-2.6033297e-18 -2.8803425446652917,0.14384909591526687,2.8803425446652917,-7.74094642381212e-19,0.6207944444444444,-7.74094642381212e-19,0.1538357402810583,0.0,0.0,0.0,-0.0,20.67,1598.4869,-1.5481893e-18 -2.7407367664985074,0.14818823945443585,2.7407367664985074,-4.455179786562005e-19,0.6199998842592592,-4.455179786562005e-19,0.1587708298918566,0.0,0.0,0.0,-0.0,21.235,1595.5199,-8.91036e-19 -2.6129878657903434,0.15366731764371225,2.6129878657903434,-1.5903201266003757e-19,0.6183303240740741,-1.5903201266003757e-19,0.16493586389272377,0.0,0.0,0.0,-0.0,21.939999999999998,1592.6693,-3.1806403e-19 -2.496505111886908,0.16011408536558014,2.496505111886908,4.9147265674613453e-20,0.615999537037037,4.9147265674613453e-20,0.17214974607057423,0.0,0.0,0.0,-0.0,22.75,1589.9459,9.829453e-20 -2.391190024007825,0.14888751659911453,2.391190024007825,1.156541185004798e-19,0.6151532407407407,1.156541185004798e-19,0.16033885790170183,0.0,0.0,0.0,-0.0,21.54,1587.372,2.3130824e-19 -2.2937095706724175,0.1307539994790059,2.2937095706724175,0.4,0.6120002314814815,5.0728654060055846e-20,0.14103147793947698,0.4,0.4,0.0,-0.0,19.43,1584.8864,1.0145731e-19 -2.20027051504814,0.10808009202700558,2.20027051504814,-3.5111771669564517e-20,0.6115356481481482,-3.5111771669564517e-20,0.11675834280836554,0.0,0.0,0.0,-0.0,16.275,1582.4026,-7.0223543e-20 -2.113431047716573,0.12393603685990234,2.113431047716573,-1.1680640694316032e-19,0.6080510416666667,-1.1680640694316032e-19,0.1340912139238108,0.0,0.0,0.0,-0.0,18.685000000000002,1579.9978,-2.3361281e-19 -2.035403733254838,0.13878854770013482,2.035403733254838,-1.709911443870849e-19,0.6078891203703704,-1.709911443870849e-19,0.150374538462481,0.0,0.0,0.0,-0.0,20.64,1577.7512,-3.419823e-19 -1.9680659926081623,0.14472399644796038,1.9680659926081623,-1.7430192186413131e-19,0.6042853009259259,-1.7430192186413131e-19,0.15700541052404,0.0,0.0,0.0,-0.0,21.485,1575.7421,-3.4860384e-19 -1.9210548179643334,0.14331203037995305,1.9210548179643334,0.74,0.6039916666666666,-1.1325657426908607e-19,0.15561621435455514,0.74,0.74,0.0,-0.0,21.34,1574.2982,-2.2651315e-19 -1.9456508099923784,0.11749256437235069,1.9456508099923784,4.59,0.6002854166666667,-4.7221324252300047e-20,0.12751845358324393,4.59,4.59,0.0,-0.0,18.055,1575.058,-9.444265e-20 -2.041194978780891,0.1313928914342321,2.041194978780891,5.69,0.5999998842592592,-1.0833038818052531e-21,0.14234618844161526,5.69,5.69,0.0,-0.0,19.924999999999997,1577.9209,-2.1666078e-21 -2.2008552602089857,0.1348003255618008,2.2008552602089857,7.51,0.5962851851851851,1.209819096621643e-20,0.14562260717656414,7.51,7.51,0.0,-0.0,20.42,1582.4185,2.4196382e-20 -2.41803122418746,0.13368198408407098,2.41803122418746,2.0,0.5959997685185184,6.1455266479559984e-21,0.14390339372706634,2.0,2.0,0.0,-0.0,20.225,1588.0386,1.2291053e-20 -2.7041820305717206,0.1330823547648261,2.7041820305717206,13.87,0.5920523148148148,1.3480709461205876e-21,0.1426578835550935,13.87,13.87,0.0,-0.0,20.189999999999998,1594.718,2.6961419e-21 -3.087430374057707,0.1368910714999798,3.087430374057707,8.21,0.591992824074074,-1.1612920088034976e-21,0.14601590389811453,8.21,8.21,0.0,-0.0,20.59,1602.6333,-2.322584e-21 -3.5590803023952864,0.12170444242495312,3.5590803023952864,18.33,0.5880002314814815,-8.658016268855145e-22,0.12913288563199832,18.33,18.33,0.0,-0.0,18.615000000000002,1611.1233,-1.7316033e-21 -3.895030811644038,0.10482007133771828,3.895030811644038,44.89,0.5879922453703703,-1.0172155006812141e-22,0.11084733435540443,44.89,44.89,0.0,-0.0,16.064999999999998,1616.51,-2.034431e-22 -4.043536966632576,0.10120147632627806,4.043536966632576,5.892843973453789e-22,0.5840005787037037,5.892843973453789e-22,0.10687292816354241,0.0,0.0,0.0,-0.0,15.575,1618.7446,1.1785688e-21 -4.013711125159732,0.11024375844204617,4.013711125159732,1.0007326370307428e-21,0.5835359953703704,1.0007326370307428e-21,0.11645375839251242,0.0,0.0,0.0,-0.0,17.01,1618.3025,2.0014653e-21 -3.839900486220245,0.12149668607518703,3.839900486220245,9.261393634717861e-22,0.5800003472222222,9.261393634717861e-22,0.12855057160398856,0.0,0.0,0.0,-0.0,18.77,1615.6587,1.8522787e-21 -3.6807420353527793,0.13268334883019162,3.6807420353527793,2.52,0.5787818287037036,4.8958323365149885e-22,0.14060672460295706,2.52,2.52,0.0,-0.0,20.33,1613.1306,9.791665e-22 -3.6282220066340902,0.09093151842847236,3.6282220066340902,5.2,0.5760005787037037,1.1865311149059518e-22,0.09641292109337143,5.2,5.2,0.0,-0.0,14.115,1612.2723,2.3730622e-22 -3.563375085177347,0.07170370664900758,3.563375085177347,-9.802225942829076e-23,0.5738478009259259,-9.802225942829076e-23,0.07607686678114932,0.0,0.0,0.0,-0.0,10.379999999999999,1611.1953,-1.9604452e-22 -3.391724325007607,0.08371699389543509,3.391724325007607,-9.552063003654113e-23,0.5719994212962963,-9.552063003654113e-23,0.08898567319755178,0.0,0.0,0.0,-0.0,12.93,1608.247,-1.9104126e-22 -3.204621008936357,0.09682524438762954,3.204621008936357,-4.6371247715590335e-23,0.5680513888888888,-4.6371247715590335e-23,0.1031362055925858,0.0,0.0,0.0,-0.0,15.445,1604.8582,-9.2742495e-23 -3.036261762763551,0.10956376238815707,3.036261762763551,-1.431566395088106e-23,0.5679997685185185,-1.431566395088106e-23,0.1169398463242374,0.0,0.0,0.0,-0.0,17.53,1601.6353,-2.8631328e-23 -2.8879238770275073,0.11867645753546836,2.8879238770275073,-5.038839171337898e-24,0.5639996527777777,-5.038839171337898e-24,0.1269030425744663,0.0,0.0,0.0,-0.0,19.025,1598.6439,-1.0077678e-23 -2.8063035363753572,0.12735993306305624,2.8063035363753572,-1.1179725901954733e-24,0.5639916666666667,-1.1179725901954733e-24,0.1363344668383577,0.0,0.0,0.0,-0.0,20.245,1596.9318,-2.2359452e-24 -2.8042163368115958,0.13353525922804946,2.8042163368115958,2.840974673424685e-24,0.56,2.840974673424685e-24,0.1429489204518269,0.0,0.0,0.0,-0.0,21.18,1596.8873,5.6819493e-24 -2.885463360858917,0.14219107432075906,2.885463360858917,7.87,0.558330324074074,5.726588224462659e-24,0.15205252091026736,7.87,7.87,0.0,-0.0,22.299999999999997,1598.593,1.14531764e-23 -3.061588981350646,0.12699914863352252,3.061588981350646,8.67,0.5560002314814815,6.427454456719435e-24,0.13550705055786588,8.67,8.67,0.0,-0.0,20.385,1602.1313,1.2854909e-23 -3.312012567274156,0.1153166340053263,3.312012567274156,9.04,0.5520519675925926,4.233980166959004e-24,0.12268236213728212,9.04,9.04,0.0,-0.0,18.814999999999998,1606.8267,8.46796e-24 -3.3663691828403155,0.08846195532274262,3.3663691828403155,2.31,0.5520004629629629,1.588636194103822e-24,0.09405546346320842,2.31,2.31,0.0,-0.0,14.405,1607.7988,3.1772724e-24 -3.2491956042507213,0.09207227346731614,3.2491956042507213,-4.0980382323525956e-25,0.5479999999999999,-4.0980382323525956e-25,0.0980230541871757,0.0,0.0,0.0,-0.0,15.200000000000001,1605.6831,-8.1960765e-25 -3.0717814372822483,0.10049346976699498,3.0717814372822483,-1.1742085119764161e-24,0.5479921296296296,-1.1742085119764161e-24,0.10721242604687985,0.0,0.0,0.0,-0.0,16.68,1602.3298,-2.348417e-24 -2.91557535956898,0.10440038913214833,2.91557535956898,-7.306155081954381e-25,0.5439997685185185,-7.306155081954381e-25,0.11159763818545146,0.0,0.0,0.0,-0.0,17.47,1599.213,-1.461231e-24 -2.7759522854856904,0.07648834764960456,2.7759522854856904,-3.7252457413342363e-25,0.540794212962963,-3.7252457413342363e-25,0.08191147920714292,0.0,0.0,0.0,-0.0,12.5,1596.2823,-7.4504915e-25 -2.650058910311734,0.06866123465218675,2.650058910311734,-1.8924525364624027e-25,0.54,-1.8924525364624027e-25,0.0736573088361649,0.0,0.0,0.0,-0.0,10.83,1593.5106,-3.784905e-25 -2.5488359529030924,0.08005724419941687,2.5488359529030924,3.24,0.5359994212962963,1.535917482624517e-25,0.08600807189972694,3.24,3.24,0.0,-0.0,13.43,1591.1848,3.071835e-25 -2.471256646516607,0.08006328027135258,2.471256646516607,0.25,0.5359994212962963,7.235021028940274e-25,0.08611445877435363,0.25,0.25,0.0,-0.0,13.45,1589.3389,1.4470042e-24 -2.4107371532206385,0.08045286490144216,2.4107371532206385,9.58,0.5319998842592593,1.4165819821934328e-24,0.08661418258419802,9.58,9.58,0.0,-0.0,13.665000000000001,1587.8582,2.833164e-24 -2.3615747062164405,0.05976230906063625,2.3615747062164405,5.85,0.5298482638888888,2.128927521127759e-24,0.06438897949163558,5.85,5.85,0.0,-0.0,9.014999999999999,1586.6277,4.257855e-24 -2.3186696660236454,0.06373996497450053,2.3186696660236454,2.7566349902495647e-24,0.5279998842592593,2.7566349902495647e-24,0.06872200377909701,0.0,0.0,0.0,-0.0,10.09,1585.5327,5.51327e-24 -2.277335330405286,0.0770473751200181,2.277335330405286,3.19580036428857e-24,0.5240002314814816,3.19580036428857e-24,0.08312586565092257,0.0,0.0,0.0,-0.0,13.245,1584.4585,6.3916007e-24 -2.2332156289059215,0.07710980105367879,2.2332156289059215,0.37,0.5240002314814816,3.342520012404947e-24,0.08325460614329717,0.37,0.37,0.0,-0.0,13.27,1583.2902,6.68504e-24 -2.1823005610522412,0.06466913398942366,2.1823005610522412,3.092890106543642e-24,0.520000462962963,3.092890106543642e-24,0.069883346609134,0.0,0.0,0.0,-0.0,10.594999999999999,1581.9128,6.1857802e-24 -2.121013148593471,0.06979506289797036,2.121013148593471,2.343006621434374e-24,0.5183310185185186,2.343006621434374e-24,0.07550377037112502,0.0,0.0,0.0,-0.0,11.875,1580.2117,4.6860132e-24 -2.099098789761376,0.06960624456742723,2.099098789761376,1.91,0.5159998842592592,1.3201590207102027e-24,0.0753290750878214,1.91,1.91,0.0,-0.0,11.91,1579.5914,2.640318e-24 -2.179429753229569,0.0935602730496562,2.179429753229569,6.13,0.511999537037037,5.703155702918748e-25,0.10110897617965069,6.13,6.13,0.0,-0.0,16.835,1581.8342,1.1406311e-24 -2.3388236025080027,0.06645116605138889,2.3388236025080027,7.3,0.511999537037037,2.2059474625709465e-25,0.07162177058765593,7.3,7.3,0.0,-0.0,11.23,1586.0496,4.411895e-25 -2.4225727481845305,0.04570119262508815,2.4225727481845305,1.1944876360074162e-25,0.5079996527777778,1.1944876360074162e-25,0.04919206366285469,0.0,0.0,0.0,-0.0,5.5249999999999995,1588.1506,2.3889753e-25 -2.356988541301661,0.04262205116290255,2.356988541301661,0.08,0.5067805555555556,4.5986806707230256e-26,0.04592511961135555,0.08,0.08,0.0,-0.0,4.525,1586.5116,9.1973613e-26 -2.254142173671122,0.04713412424334271,2.254142173671122,0.02,0.503999537037037,1.3971356795741923e-26,0.050872299739308235,0.02,0.02,0.0,-0.0,6.155,1583.8472,2.7942714e-26 -2.2260740569246105,0.05152860258492768,2.2260740569246105,5.04,0.4999997685185186,7.952904297473542e-27,0.05564158913806765,5.04,5.04,0.0,-0.0,7.65,1583.0989,1.5905809e-26 -2.2692315230427047,0.05273110441512226,2.2692315230427047,2.19,0.4999997685185186,4.1138252649960124e-27,0.05689885896756175,2.19,2.19,0.0,-0.0,7.995,1584.2456,8.2276505e-27 -2.470453612568181,0.056816612061149845,2.470453612568181,6.46,0.4959997685185185,2.384617316255272e-27,0.06111155490706704,6.46,6.46,0.0,-0.0,9.23,1589.3195,4.7692346e-27 -3.327558752667724,0.06346580690866092,3.327558752667724,31.3,0.49366840277777774,1.3650923075303702e-27,0.06750786872457844,31.3,31.3,0.0,-0.0,10.870000000000001,1607.1063,2.7301846e-27 -4.433845147769654,0.05684550593793348,4.433845147769654,12.8,0.4919994212962963,8.133592155961035e-28,0.059827806704405385,12.8,12.8,0.0,-0.0,9.025,1624.2477,1.6267184e-27 -4.634672938371942,0.0565477485336655,4.634672938371942,1.75,0.48800034722222224,4.846075481728203e-28,0.059417650949072864,1.75,1.75,0.0,-0.0,9.045,1626.8932,9.692151e-28 -4.380685870684211,0.06702755529538573,4.380685870684211,2.837165882722071e-28,0.48800034722222224,2.837165882722071e-28,0.07057533902912974,0.0,0.0,0.0,-0.0,11.76,1623.5273,5.674332e-28 -4.068067665569038,0.07746561590361148,4.068067665569038,1.677120258578064e-28,0.4840002314814815,1.677120258578064e-28,0.08178863143519133,0.0,0.0,0.0,-0.0,14.27,1619.1058,3.3542405e-28 -3.7966395045865284,0.07694352660004193,3.7966395045865284,0.32,0.48167002314814816,9.515687632301926e-29,0.08144484244767829,0.32,0.32,0.0,-0.0,14.280000000000001,1614.982,1.9031375e-28 -3.7183856373561697,0.06797240533031247,3.7183856373561697,4.71,0.4800005787037037,5.536493079694969e-29,0.07200435061746316,4.71,4.71,0.0,-0.0,12.344999999999999,1613.7383,1.1072986e-28 -3.9522046196565106,0.04953538526767273,3.9522046196565106,10.41,0.4760001157407408,3.155026235753912e-29,0.052355536077072995,10.41,10.41,0.0,-0.0,7.470000000000001,1617.3802,6.3100525e-29 -4.586215511488835,0.05389352095452684,4.586215511488835,18.15,0.4760001157407408,1.8348339094075503e-29,0.056650573271634155,18.15,18.15,0.0,-0.0,8.69,1626.2655,3.6696678e-29 -4.755656977166,0.044938825264087795,4.755656977166,1.76,0.4719996527777777,1.0282310516586172e-29,0.04717492886882105,1.76,1.76,0.0,-0.0,6.005,1628.4321,2.0564621e-29 -4.601822276132592,0.04236767353928675,4.601822276132592,3.05,0.4701513888888889,5.788373420059223e-30,0.044529538313516165,3.05,3.05,0.0,-0.0,5.19,1626.4684,1.1576747e-29 -4.543796828771536,0.045997552692363726,4.543796828771536,4.74,0.46799976851851854,3.430646220558446e-30,0.0483671721779208,4.74,4.74,0.0,-0.0,6.515000000000001,1625.7106,6.8612924e-30 -4.618029605213734,0.05602271706028381,4.618029605213734,7.24,0.463999537037037,1.989701923512566e-30,0.05887374789207566,7.24,7.24,0.0,-0.0,9.69,1626.6783,3.979404e-30 -4.700714326834045,0.05714047861956647,4.700714326834045,3.45,0.463999537037037,8.483670623669818e-31,0.06000929573821399,3.45,3.45,0.0,-0.0,9.99,1627.7382,1.6967341e-30 -4.7810861739515955,0.06187145628571517,4.7810861739515955,7.6,0.46,1.222193920194015e-31,0.06493740772190854,7.6,7.6,0.0,-0.0,11.375,1628.7506,2.4443878e-31 -4.876767888991919,0.044383612977581484,4.876767888991919,5.2,0.45920532407407405,-2.360734431433655e-32,0.04654915963088587,5.2,5.2,0.0,-0.0,6.22,1629.934,-4.721469e-32 -5.075853945667109,0.03905310748623962,5.075853945667109,11.73,0.45599953703703705,-9.336690815772341e-33,0.040898611899842154,11.73,11.73,0.0,-0.0,4.37,1632.3235,-1.8673382e-32 -5.339935389390968,0.03901648543712067,5.339935389390968,9.97,0.45200810185185186,2.2091981853254906e-33,0.040784579583002294,9.97,9.97,0.0,-0.0,4.46,1635.3524,4.4183964e-33 -5.579978667505018,0.04605119791906029,5.579978667505018,4.72,0.452,7.769247710135532e-33,0.04806090718073587,4.72,4.72,0.0,-0.0,6.95,1637.9784,1.5538495e-32 -5.809422499889628,0.059853448633215955,5.809422499889628,9.06,0.4480001157407407,5.574144987773347e-33,0.06237385982965252,9.06,9.06,0.0,-0.0,11.155000000000001,1640.3849,1.114829e-32 -6.51847444403302,0.0824477747419773,6.51847444403302,15.55,0.4480001157407407,2.8865883762593497e-33,0.08556091197461564,15.55,15.55,0.0,-0.0,16.28,1647.2622,5.7731768e-33 -7.311601258376972,0.07967884491785453,7.311601258376972,12.77,0.4440001157407408,1.3998833654248e-33,0.08234464837409709,12.77,12.77,0.0,-0.0,15.794999999999998,1654.1194,2.7997667e-33 -7.280834207305005,0.059193514890460326,7.280834207305005,1.01,0.44166932870370373,8.123285853781073e-34,0.06118325848948223,1.01,1.01,0.0,-0.0,11.075000000000001,1653.8676,1.6246572e-33 -6.5429030718107235,0.046641337602820646,6.5429030718107235,0.01,0.4400003472222222,4.451710523401758e-34,0.048395900108278087,0.01,0.01,0.0,-0.0,7.47,1647.4856,8.903421e-34 -5.9560665393975505,0.042655722598565454,5.9560665393975505,1.3,0.43611064814814815,2.608147605929884e-34,0.04441163577231335,1.3,1.3,0.0,-0.0,6.29,1641.8737,5.216295e-34 -5.736322567006598,0.054516100466485744,5.736322567006598,5.9,0.43600011574074077,1.4551722371204975e-34,0.05683796007651398,5.9,5.9,0.0,-0.0,10.115,1639.6287,2.9103445e-34 -5.958818598764028,0.051797289710728084,5.958818598764028,12.74,0.43200000000000005,8.427864590479412e-35,0.05392860728163376,12.74,12.74,0.0,-0.0,9.435,1641.9012,1.6855729e-34 -6.148633521319492,0.03376466880930883,6.148633521319492,6.35,0.43194837962962956,4.237804071502255e-35,0.03511394365649592,6.35,6.35,0.0,-0.0,2.905,1643.7739,8.475608e-35 -5.891047283796342,0.031619905923980965,5.891047283796342,2.1041123498531863e-35,0.428,2.1041123498531863e-35,0.03293468136209585,0.0,0.0,0.0,-0.0,2.095,1641.2181,4.2082247e-35 -5.404701941240202,0.0398481951572596,5.404701941240202,1.68,0.4261517361111111,1.212227975313633e-35,0.04163564928530103,1.68,1.68,0.0,-0.0,5.659999999999999,1636.0724,2.424456e-35 -5.478792108551998,0.03392938480576929,5.478792108551998,10.68,0.42400011574074076,6.739875939656936e-36,0.03543373110556753,10.68,10.68,0.0,-0.0,3.3150000000000004,1636.8855,1.3479752e-35 -7.613414964259282,0.032824728435720735,7.613414964259282,36.67,0.42121863425925926,4.0494241423521e-36,0.03387347229671684,36.67,36.67,0.0,-0.0,2.745,1656.535,8.098848e-36 -10.364771733553596,0.031068811656263864,10.364771733553596,18.95,0.41999976851851856,-3.809033023652844e-16,0.031708794391752546,18.95,18.95,0.0,-0.0,1.815,1674.9587,-7.6180666e-16 -10.23818083690069,0.02872652748315585,10.23818083690069,0.06073426292152976,0.4164640046296296,0.0007342629215461361,0.029331113276489594,0.06,0.05999999999998362,1.6376899836245683e-14,-0.0,0.7999999999999999,1674.2249,0.0014607136 -8.736971675388926,0.025943371724225842,8.736971675388926,-0.0005676020778794574,0.4159996527777778,-0.0005676020778794574,0.026640055846259243,0.0,0.0,0.0,-0.0,-0.575,1664.7556,0.0060751135 -7.7136195983311255,0.024709174642289316,7.7136195983311255,1.5199359952231752,0.4121109953703704,-6.343137839070261e-6,0.02548661381083568,1.52,1.5199423383610142,5.7661638985915255e-5,-0.0,-1.0750000000000002,1657.3159,0.00504162 -7.085073224030962,0.02983900522165988,7.085073224030962,3.1731508300629603,0.41200046296296294,0.003150830062960497,0.030872403659820174,3.17,3.17,1.759703494030873e-16,-0.0,1.7050000000000003,1652.2399,0.006114768 -6.491960406194007,0.027657415646055207,6.491960406194007,0.051850933887923514,0.4080084490740741,0.0018509338879393689,0.028705970967800868,0.05,0.04999999999998415,1.5853984791647237e-14,-0.0,0.7849999999999999,1647.0188,0.0036438513 -5.853645085086403,0.028726777111912995,5.853645085086403,0.001341561442984867,0.40794895833333333,0.001341561442984867,0.029928190647796428,0.0,0.0,0.0,-0.0,1.395,1640.8378,0.002648077 -5.329020600096138,0.023329795951723013,5.329020600096138,-2.5651181007728775e-7,0.40399999999999997,-2.5651181007728775e-7,0.02438884511011421,0.0,0.0,0.0,-0.0,-1.42,1635.2302,0.0047218017 -4.9273383565211475,0.02317335435893109,4.9273383565211475,0.8384284759402831,0.4037145833333334,-1.6853463168037107e-7,0.024294835900218782,0.84,0.8384286444749148,0.0015713555250851852,-0.0,-1.4649999999999999,1630.55,0.005164073 -4.739693187946989,0.026667321783206795,4.739693187946989,4.0512293525531,0.40000023148148145,0.0012293525558190878,0.027997709116711057,4.05,4.049999999997281,2.7187502249503837e-12,-0.0,0.71,1628.2313,0.0024406828 -4.847192241326643,0.03605311324066024,4.847192241326643,8.390379765205207,0.39971435185185183,0.0003797652052072835,0.037820631138897366,8.39,8.39,0.0,-0.0,5.175,1629.5707,0.0007566677 -5.093647490864877,0.031308613806477086,5.093647490864877,7.690228837192605,0.3960082175925926,0.00022883719260498274,0.03278394500344126,7.69,7.69,0.0,-0.0,3.1750000000000003,1632.5325,0.00045663182 -5.607098686016665,0.023683867997484634,5.607098686016665,14.379843159463567,0.39571446759259266,-2.2315716718451046e-5,0.024713081377245122,14.38,14.379865475180285,0.00013452481971580778,-0.0,-0.9349999999999999,1638.268,0.00030590437 -5.871788287193879,0.020419326753784304,5.871788287193879,0.003634553244567399,0.3921108796296296,-2.572465535439365e-13,0.021270909614273477,16.5,0.0036345532448246454,16.496365446755174,-0.0,-2.935,1641.0226,6.7459917 -5.344510751985123,0.01826543284748674,5.344510751985123,0.0,0.3919487268518519,-0.0,0.01909256287167276,0.0,0.0,0.0,-0.0,-4.4399999999999995,1635.4036,14.99069 -4.904107569510351,0.01715666617771715,4.904107569510351,0.0,0.3884644675925926,-0.0,0.017990082106520238,0.0,0.0,0.0,-0.0,-5.14,1630.2678,14.980905 -4.530590366481788,0.01981638618682286,4.530590366481788,0.0006264064253870864,0.38799999999999996,-6.61200941630693e-14,0.020839479505471388,11.53,0.0006264064254532064,11.529373593574546,-0.0,-3.075,1625.5367,20.743523 -4.821618408543991,0.021788019678371278,4.821618408543991,29.310635758169973,0.3848466435185185,-5.749163856702359e-8,0.022860617707976913,29.66,29.310635815661612,0.3493641843383892,-0.0,-1.65,1629.2548,33.126488 -4.749837807729414,0.017512416666795535,4.749837807729414,2.5125181934981813e-11,0.3840003472222222,-0.0,0.01838463963336062,4.32,2.5125181934981813e-11,4.3199999999748755,-0.0,-4.68,1628.359,46.00418 -4.398694062746572,0.01627353365660922,4.398694062746572,3.675948434533893e-15,0.38166932870370374,-0.0,0.017132310174511015,4.73,3.675948434533893e-15,4.729999999999997,-0.0,-5.57,1623.7723,50.55612 -4.095709727579227,0.020112476466651822,4.095709727579227,0.0017918453017046,0.3799997685185186,-1.4140893891760161e-11,0.02122956267298602,0.13,0.0017918453158454939,0.1282081546841545,-0.0,-2.52,1619.5103,52.953453 -3.828450331030633,0.02261555165962941,3.828450331030633,-0.00017273865481441363,0.37920590277777777,-0.00017273865481441363,0.023931212765487448,0.0,0.0,0.0,-0.0,-0.7849999999999999,1615.4803,52.99169 -3.7123101813500567,0.02541122152828145,3.7123101813500567,5.077708833417515,0.37611087962962964,2.2977088334175875,0.026920177809805615,2.78,2.7799999999999274,7.237654919833858e-14,-0.0,1.035,1613.6406,52.463326 -3.8785296191728724,0.025537618383421144,3.8785296191728724,7.794973548662755,0.3759486111111111,2.4449735486628357,0.027010294380935343,5.35,5.349999999999919,8.048284261263916e-14,-0.0,1.09,1616.2565,50.104885 -3.941716554208481,0.021851211071272733,3.941716554208481,0.9699531378822486,0.37321898148148147,-1.3566486840552149e-5,0.023097511457808022,0.97,0.9699667043690892,3.3295630910747384e-5,-0.0,-1.065,1617.2216,49.906265 -3.765485512827548,0.017324667929718433,3.765485512827548,2.7443416783512476e-9,0.3719998842592593,-0.0,0.018343777045886238,7.82,2.7443416783512476e-9,7.819999997255659,-0.0,-4.2700000000000005,1614.49,53.989258 -3.5402880875499134,0.018109625171825454,3.5402880875499134,2.952387540793208e-6,0.37120578703703705,-5.5908907661995895e-16,0.019218749204641773,9.37,2.952387541352297e-6,9.369997047612458,-0.0,-3.5900000000000003,1610.8071,62.133648 -3.3411694377299264,0.019042646407131686,3.3411694377299264,-1.5385617639572076e-12,0.3684645833333333,-1.5385617639572076e-12,0.020252377937381497,0.0,0.0,0.0,-0.0,-2.75,1607.3501,66.71888 -3.165164103827253,0.019712715200757888,3.165164103827253,0.018229156057495158,0.3680003472222222,-2.6481000998547583e-10,0.0210072526613561,0.08,0.01822915632230517,0.06177084367769483,-0.0,-2.215,1604.1183,66.77813 -3.113413513212231,0.02300400107073325,3.113413513212231,4.367929508730093,0.36615196759259255,-0.07207048956360403,0.024529732507499187,4.44,4.439999998293697,1.7063034984943217e-9,-0.0,0.07500000000000007,1603.1338,66.82862 -3.249926250013067,0.024849950719784922,3.249926250013067,7.316349545914277,0.3644642361111111,2.8463495459142925,0.0264558221941242,4.47,4.469999999999985,1.488809076022335e-14,-0.0,1.24,1605.6965,65.50861 -3.365275282398786,0.022792630852768052,3.365275282398786,3.894051921122711,0.36400011574074076,-0.06594807513417038,0.024234116579034588,3.96,3.9599999962568817,3.743118295318482e-9,-0.0,-0.014999999999999902,1607.7794,64.293205 -3.290782832503864,0.0175634523238769,3.290782832503864,6.810845109233017e-7,0.3621513888888889,-5.657701044709111e-16,0.018689766153319836,3.39,6.810845114890718e-7,3.3899993189154887,-0.0,-3.6350000000000002,1606.4426,65.92301 -3.118100900555281,0.015374643484690337,3.118100900555281,8.784084570834239e-15,0.3604638888888889,-0.0,0.016393442011889088,1.84,8.784084570834239e-15,1.8399999999999912,-0.0,-5.390000000000001,1603.2236,68.51229 -3.011242545461538,0.023845983037422844,3.011242545461538,3.4681377441063725,0.3599998842592593,1.8281377441066184,0.025459204081823637,1.64,1.6399999999997543,2.456213010759711e-13,-0.0,0.8599999999999999,1601.1411,69.26227 -3.249408138801397,0.03082084060235266,3.249408138801397,11.953256334749755,0.35920578703703704,11.953256334749755,0.03281276181144049,0.0,0.0,0.0,-0.0,4.6450000000000005,1605.687,62.407276 -3.246354290644175,0.017652509839765733,3.246354290644175,-4.205471498921585e-15,0.3572189814814815,-4.205471498921585e-15,0.018794031773735148,0.0,0.0,0.0,-0.0,-3.3649999999999998,1605.6309,59.14081 -3.0781107466800064,0.01734491988006191,3.0781107466800064,-5.516657123411231e-16,0.35611041666666665,-5.516657123411231e-16,0.018503175323352744,0.0,0.0,0.0,-0.0,-3.5399999999999996,1602.4528,59.14081 -2.923410763952419,0.021677783395599518,2.923410763952419,-0.007895158846573566,0.3559483796296296,-0.007895158846573566,0.023169903995870635,0.0,0.0,0.0,-0.0,-0.3400000000000003,1599.3733,59.141632 -2.793763627111911,0.014734337685520857,2.793763627111911,7.327471962526033e-16,0.3546476851851852,-0.0,0.015775248278855944,3.3,7.327471962526033e-16,3.299999999999999,-0.0,-5.695,1596.6643,60.626534 -2.668278462622903,0.014280655153090885,2.668278462622903,0.0,0.35321898148148145,-0.0,0.015315841647653226,20.57,0.0,20.57,-0.0,-6.045,1593.9198,72.548164 -2.5534978831896185,0.017226251966002193,2.5534978831896185,4.055154614722001e-5,0.35211030092592593,-3.695376626541942e-15,0.018505447253910654,15.76,4.0551546150915385e-5,15.759959448453849,-0.0,-3.38,1591.294,90.77247 -2.4482044032342354,0.012292033808955211,2.4482044032342354,0.0,0.35199988425925927,-0.0,0.013225722570321355,0.0,0.0,0.0,-0.0,-7.99,1588.7792,98.61431 -2.351286380522744,0.013529268117764514,2.351286380522744,0.0,0.35171423611111113,-0.0,0.014579071069032931,0.0,0.0,0.0,-0.0,-6.66,1586.367,98.62378 -2.261678887284571,0.015327602619488742,2.261678887284571,7.487344078072055e-15,0.3506474537037037,-0.0,0.016541142564973157,0.01,7.487344078072055e-15,0.009999999999992513,-0.0,-4.885,1584.0465,98.63116 -2.1785745912406953,0.016704045111139494,2.1785745912406953,-5.650277680430275e-16,0.34966921296296294,-5.650277680430275e-16,0.0180520414151178,0.0,0.0,0.0,-0.0,-3.6300000000000003,1581.8108,98.63858 -2.101318224699333,0.01629434775824377,2.101318224699333,6.632826554664462e-10,0.3488465277777778,-0.0,0.017633318889876726,0.06,6.632826554664462e-10,0.05999999933671734,-0.0,-3.925,1579.6545,98.67986 -2.0294463864400685,0.010752805925466699,2.0294463864400685,0.0,0.3481105324074074,-0.0,0.011651736923485166,0.0,0.0,0.0,-0.0,-9.535,1577.5762,98.66818 -1.9624180462223433,0.009501124089187888,1.9624180462223433,0.0,0.3480079861111111,-0.0,0.010308521201448873,0.16,0.0,0.16,-0.0,-11.145,1575.5704,98.7642 -1.8996331967763451,0.012882501639388142,1.8996331967763451,0.0,0.34794849537037037,-0.0,0.013994493470270283,3.04,0.0,3.04,-0.0,-7.07,1573.6285,100.4347 -1.8407185589555093,0.010386560396638577,1.8407185589555093,0.0,0.34771435185185184,-0.0,0.011296614075740822,1.96,0.0,1.96,-0.0,-9.93,1571.7471,102.93179 -1.785414775970157,0.007889063587271861,1.785414775970157,0.0,0.3472057870370371,-0.0,0.008590247388011058,0.0,0.0,0.0,-0.0,-13.475000000000001,1569.9253,103.78465 -1.7333201664457352,0.01103479187271757,1.7333201664457352,0.0,0.3466476851851852,-0.0,0.012029119657596335,3.14,0.0,3.14,-0.0,-9.055,1568.1569,105.38134 -1.684211474730115,0.016165832074792198,1.684211474730115,9.347057054520658e-8,0.3466476851851852,-0.0,0.01764181974823447,3.27,9.347057054520658e-8,3.2699999065294296,-0.0,-3.83,1566.4404,109.40531 -1.6378159703532902,0.01748986772058666,1.6378159703532902,0.019253009118479464,0.3461518518518519,-2.746399294023912e-12,0.019107092204801675,7.56,0.019253009121225864,7.540746990878774,-0.0,-2.69,1564.7722,115.32446 -1.5937699705611579,0.017085327686248927,1.5937699705611579,0.0009233185527317704,0.3461518518518519,-1.3080929293244992e-13,0.018684586016679293,8.44,0.0009233185528625797,8.439076681447137,-0.0,-3.005,1563.1442,122.94238 -1.552027961745365,0.008665254604870007,1.552027961745365,0.0,0.3456693287037037,-0.0,0.009485977152302122,0.0,0.0,0.0,-0.0,-12.14,1561.5592,127.07448 -1.5124948630863986,0.008673414066594767,1.5124948630863986,0.0,0.3456693287037037,-0.0,0.009504287939158041,1.71,0.0,1.71,-0.0,-12.115,1560.0183,128.096 -1.5290381816711422,0.02082233026621803,1.5290381816711422,9.200778145904783,0.3461518518518519,-0.02922181499476544,0.02280751738633022,9.23,9.229999960899548,3.9100452395857133e-8,-0.0,-0.16500000000000015,1560.668,131.46524 -1.8526124688230372,0.024814906094383207,1.8526124688230372,17.621321049570536,0.3461518518518519,5.641321049570536,0.02698254490069884,11.98,11.98,0.0,-0.0,2.285,1572.1317,128.91554 -2.0888008459117144,0.015617105050071493,2.0888008459117144,1.3037076224131638e-9,0.3461518518518519,-0.0,0.01690424278571022,14.33,1.3037076224131638e-9,14.329999998696293,-0.0,-4.404999999999999,1579.2977,132.85204 -2.0178479055412937,0.007678262324710702,2.0178479055412937,0.0,0.3466476851851852,-0.0,0.0083219681098424,5.99,0.0,5.99,-0.0,-13.860000000000001,1577.2339,142.75754 -1.9516453943849774,0.008049678172621054,1.9516453943849774,0.0,0.3472057870370371,-0.0,0.008735555328567537,0.03,0.0,0.03,-0.0,-13.260000000000002,1575.2417,145.84784 -1.8896918267991483,0.004890294234096641,1.8896918267991483,0.0,0.34771435185185184,-0.0,0.005313472736972081,0.0,0.0,0.0,-0.0,-19.475,1573.3152,146.15007 -1.831583369357152,0.0048978858909879295,1.831583369357152,0.0,0.34794849537037037,-0.0,0.005328037956486372,0.0,0.0,0.0,-0.0,-19.45,1571.45,146.12779 -1.7768663735547483,0.010535208967600051,1.7768663735547483,0.0,0.34800000000000003,-0.0,0.011473678202307248,2.9,0.0,2.9,-0.0,-9.735000000000001,1569.6387,147.57542 -1.7251163932332507,0.02024181553584721,1.7251163932332507,5.99967129437536,0.3480079861111111,-0.00032248619533679787,0.02206976121189758,6.0,5.999993780570697,6.2194293029005365e-6,-0.0,-0.7149999999999999,1567.8735,151.95303 -1.676322365356756,0.00848777227831361,1.676322365356756,0.0,0.3484641203703704,-0.0,0.009264389013460262,5.24,0.0,5.24,-0.0,-12.55,1566.16,157.4846 -1.6303774471046313,0.00501658452975599,1.6303774471046313,0.0,0.34921886574074074,-0.0,0.005481402157060115,0.0,0.0,0.0,-0.0,-19.15,1564.5004,160.04803 -1.5868817680998188,0.008196641963624032,1.5868817680998188,0.0,0.35015162037037034,-0.0,0.00896536560627046,0.05,0.0,0.05,-0.0,-13.035,1562.8855,160.04684 -1.5456423870653295,0.007075527674097233,1.5456423870653295,0.0,0.35120578703703703,-0.0,0.00774690200504758,0.0,0.0,0.0,-0.0,-14.935,1561.313,160.06621 -1.5064905575228302,0.006192579456666414,1.5064905575228302,0.0,0.3519482638888889,-0.0,0.006786834036724652,0.0,0.0,0.0,-0.0,-16.619999999999997,1559.7808,160.06746 -1.469231135968893,0.009385660783688923,1.469231135968893,0.0,0.35200787037037035,-0.0,0.010296203583393764,0.0,0.0,0.0,-0.0,-11.31,1558.2852,160.1224 -1.433698908291301,0.011046802564462953,1.433698908291301,0.0,0.35284641203703704,-0.0,0.012129880447131317,1.11,0.0,1.11,-0.0,-9.18,1556.8231,160.90707 -1.3998956088468053,0.006109707778233416,1.3998956088468053,0.0,0.3541518518518519,-0.0,0.00671487681066062,0.0,0.0,0.0,-0.0,-16.83,1555.3982,161.41554 -1.3677277630993774,0.0031093520359806357,1.3677277630993774,0.0,0.35571446759259256,-0.0,0.0034203875596330335,0.0,0.0,0.0,-0.0,-24.939999999999998,1554.0099,161.46347 -1.3370258572379805,0.003940529507687629,1.3370258572379805,0.0,0.35600000000000004,-0.0,0.004338494824385428,2.99,0.0,2.99,-0.0,-22.18,1552.654,162.94812 -1.3076411026927999,0.006163215200092257,1.3076411026927999,0.0,0.3564643518518519,-0.0,0.0067914609631477925,4.81,0.0,4.81,-0.0,-16.77,1551.3269,166.79388 -1.2795140097266662,0.004260888450022694,1.2795140097266662,0.0,0.35815185185185183,-0.0,0.00469915458906524,0.0,0.0,0.0,-0.0,-21.305,1550.0283,169.08446 -1.2525857819397292,0.004331163851175062,1.2525857819397292,0.0,0.3599482638888889,-0.0,0.004780576101874026,6.03,0.0,6.03,-0.0,-21.16,1548.758,172.10608 -1.2267432220777978,0.006596921324584711,1.2267432220777978,0.0,0.36000787037037035,-0.0,0.007287292174644388,5.96,0.0,5.96,-0.0,-16.015,1547.5131,178.11916 -1.2019226291269305,0.006400202392328032,1.2019226291269305,0.0,0.36121863425925926,-0.0,0.007075567837072201,0.4,0.0,0.4,-0.0,-16.425,1546.2924,181.33675 -1.1780640694307654,0.00869617736092386,1.1780640694307654,0.0,0.3637142361111111,-0.0,0.00962127018720407,1.52,0.0,1.52,-0.0,-12.614999999999998,1545.095,182.4431 -1.1550709714820633,0.012448872925743861,1.1550709714820633,0.0,0.36400011574074076,-0.0,0.013783675726667862,7.28,0.0,7.28,-0.0,-7.885000000000001,1543.9178,185.90054 -1.1329063580798753,0.01667260992342497,1.1329063580798753,1.378116518768735e-7,0.36521898148148146,-0.0,0.018474139186342626,11.28,1.378116518768735e-7,11.279999862188347,-0.0,-3.915,1542.7607,189.93443 -1.1115691482217214,0.012085161426100095,1.1115691482217214,0.0,0.36771435185185186,-0.0,0.013400865350655494,0.02,0.0,0.02,-0.0,-8.4,1541.6252,193.91975 -1.0910641440645077,0.007126379262235152,1.0910641440645077,0.0,0.3680083333333333,-0.0,0.007907927495403292,3.96,0.0,3.96,-0.0,-15.265,1540.5133,197.7197 -1.0713468222728333,0.008194574737579818,1.0713468222728333,0.0,0.3696696759259259,-0.0,0.009099705006545857,2.1,0.0,2.1,-0.0,-13.54,1539.4242,200.72905 -1.0523557417916383,0.005066517246147424,1.0523557417916383,0.0,0.3719483796296296,-0.0,0.005630044845776163,0.0,0.0,0.0,-0.0,-19.59,1538.3561,201.85858 -1.03406690512899,0.0030084576587570723,1.03406690512899,0.0,0.37211041666666667,-0.0,0.003345352696497532,0.0,0.0,0.0,-0.0,-25.71,1537.3091,201.911 -1.0164116533367076,0.003693260995947191,1.0164116533367076,0.0,0.3746479166666667,-0.0,0.00410959139095613,0.68,0.0,0.68,-0.0,-23.415,1536.2806,202.24223 -0.9993131373251259,0.008532529064761245,0.9993131373251259,0.0,0.3760002314814815,-0.0,0.009500641557951576,1.13,0.0,1.13,-0.0,-13.205,1535.2675,203.06071 -0.9827834585919875,0.004311342547682924,0.9827834585919875,0.0,0.3772188657407407,-0.0,0.0048036300413662626,0.0,0.0,0.0,-0.0,-21.66,1534.2714,203.41614 -0.9668117292011406,0.0030201810658887205,0.9668117292011406,0.0,0.3799997685185186,-0.0,0.00336718572812625,0.0,0.0,0.0,-0.0,-25.875,1533.2928,203.44334 -0.9513212163948176,0.00799684704954407,0.9513212163948176,0.0,0.3804640046296296,-0.0,0.00892125972372425,0.03,0.0,0.03,-0.0,-14.16,1532.3282,203.40775 -0.9362511170036557,0.012625601430170863,0.9362511170036557,0.0,0.383714699074074,-0.0,0.01409385591192851,1.13,0.0,1.13,-0.0,-8.295,1531.3746,203.91853 -0.9216175267925019,0.011563671491160303,0.9216175267925019,0.0,0.38400833333333334,-0.0,0.012916367316898141,0.8,0.0,0.8,-0.0,-9.47,1530.4338,204.83775 -0.9074556155994917,0.00927607863848783,0.9074556155994917,0.0,0.3866476851851852,-0.0,0.01036744109406207,6.25,0.0,6.25,-0.0,-12.440000000000001,1529.509,208.59306 -0.8937359936656268,0.00912105939067107,0.8937359936656268,0.0,0.38799999999999996,-0.0,0.010200250663200393,5.26,0.0,5.26,-0.0,-12.695,1528.5992,214.33516 -0.8804505257271619,0.0059280196595406605,0.8804505257271619,0.0,0.3901519675925926,-0.0,0.00663329609143724,0.0,0.0,0.0,-0.0,-18.175,1527.7048,216.73799 -0.867571777781677,0.006197387411993076,0.867571777781677,0.0,0.39200034722222227,-0.0,0.0069387083401623115,0.0,0.0,0.0,-0.0,-17.68,1526.8248,216.77425 -0.8550212175163436,0.01706862506568208,0.8550212175163436,0.0,0.3936696759259259,-0.0,0.019121243399794107,0.0,0.0,0.0,-0.0,-4.48,1525.9546,216.77425 -0.8427624593060665,0.024280930147364287,0.8427624593060665,0.6744857028603622,0.39600023148148145,0.6744857028603622,0.027216259121592878,0.0,0.0,0.0,-0.0,0.44500000000000006,1525.0922,216.77425 -0.8308034185351967,0.023801655629984143,0.8308034185351967,-0.054286630885201276,0.3972188657407407,-0.054286630885201276,0.026693984212833637,0.0,0.0,0.0,-0.0,0.1200000000000001,1524.2386,216.77425 -0.8191463443979133,0.018848037234814086,0.8191463443979133,-7.729368410622421e-15,0.40000023148148145,-7.729368410622421e-15,0.021150121677371066,0.0,0.0,0.0,-0.0,-3.295,1523.3948,216.77425 -0.8077931682453979,0.01847509835004289,0.8077931682453979,-5.620584223314932e-16,0.4012189814814815,-5.620584223314932e-16,0.020742981453116982,0.0,0.0,0.0,-0.0,-3.6100000000000003,1522.5613,216.77425 -0.796747160044429,0.020479066751911155,0.796747160044429,-1.8934045514983888e-10,0.40399999999999997,-1.8934045514983888e-10,0.023005368148840424,0.0,0.0,0.0,-0.0,-2.25,1521.739,216.77425 -0.7860112394535341,0.01997837923312158,0.7860112394535341,-4.668783937788272e-12,0.40521898148148144,-4.668783937788272e-12,0.022454870800474532,0.0,0.0,0.0,-0.0,-2.6350000000000002,1520.9288,216.77425 -0.7755927652021778,0.014000952280742296,0.7755927652021778,0.0,0.4080003472222223,-0.0,0.01574473977125694,0.0,0.0,0.0,-0.0,-7.63,1520.132,216.77652 -0.7655189057969423,0.006925972222339698,0.7655189057969423,0.0,0.40966990740740744,-0.0,0.007792589056421212,0.04,0.0,0.04,-0.0,-16.79,1519.3512,216.79128 -0.7557519769376024,0.005567499712202973,0.7557519769376024,0.0,0.41200046296296294,-0.0,0.00626730000566808,0.0,0.0,0.0,-0.0,-19.53,1518.5844,216.80807 -0.7462454044763226,0.005024675290010494,0.7462454044763226,0.0,0.41464768518518513,-0.0,0.005659063103537864,0.0,0.0,0.0,-0.0,-20.835,1517.8284,216.94557 -0.7369653605128423,0.006582748009448039,0.7369653605128423,0.0,0.4159996527777778,-0.0,0.007417501562590039,6.19,0.0,6.19,-0.0,-17.59,1517.081,220.44974 -0.7278840332960566,0.011421111408284333,0.7278840332960566,0.0,0.419205324074074,-0.0,0.012875698907776774,10.07,0.0,10.07,-0.0,-10.67,1516.3406,227.10168 -0.719005725806394,0.010583046324438797,0.719005725806394,0.0,0.41999976851851856,-0.0,0.011936667725577905,3.27,0.0,3.27,-0.0,-11.685,1515.6077,231.50035 -0.7103446004044082,0.007271859700755444,0.7103446004044082,0.0,0.42400011574074076,-0.0,0.008205883350952795,0.48,0.0,0.48,-0.0,-16.575,1514.8839,233.59698 -0.7019025747081961,0.007886303453506388,0.7019025747081961,0.0,0.42400011574074076,-0.0,0.008903444792731767,0.0,0.0,0.0,-0.0,-15.555,1514.1699,233.99379 -0.6939536823218374,0.009623373217376293,0.6939536823218374,0.0,0.428,-0.0,0.010869436935637413,0.09,0.0,0.09,-0.0,-13.139999999999999,1513.4897,234.04675 -0.7174862181621566,0.023351912928502392,0.7174862181621566,5.519504447850679,0.42846388888888887,-5.64845790936952e-6,0.026340928234963062,5.52,5.519510096308588,0.0004899036914109755,-0.0,-1.16,1515.4813,235.01262 -0.7222787749872968,0.01946803614204277,0.7222787749872968,8.89307272378126e-9,0.43200000000000005,-0.0,0.02195416051125167,0.38,8.89307272378126e-9,0.3799999911069273,-0.0,-3.8499999999999996,1515.8789,236.65807 -0.7131874293713633,0.02017199244358235,0.7131874293713633,3.8130375773533262e-6,0.4336695601851852,-2.6544014618019157e-15,0.022759371682398815,1.81,3.8130375800077276e-6,1.8099961869624202,-0.0,-3.4,1515.1224,237.69275 -0.7046136739209508,0.007809106983123436,0.7046136739209508,0.0,0.43600011574074077,-0.0,0.008814951570497297,1.76,0.0,1.76,-0.0,-16.03,1514.4001,239.4197 -0.6963109176488025,0.006748635543479818,0.6963109176488025,0.0,0.4399488425925926,-0.0,0.007621449660029009,0.0,0.0,0.0,-0.0,-17.945,1513.6923,240.25696 -0.6881988325643444,0.008351672866556407,0.6881988325643444,0.0,0.4400003472222222,-0.0,0.009436173557015256,0.0,0.0,0.0,-0.0,-15.29,1512.9924,240.26248 -0.6802674591851829,0.00783406267846161,0.6802674591851829,0.0,0.4440001157407408,-0.0,0.008855401193230429,0.0,0.0,0.0,-0.0,-16.2,1512.3002,240.26346 -0.6725182145988718,0.008373384885267883,0.6725182145988718,0.0,0.4440081018518519,-0.0,0.00946931981360789,0.04,0.0,0.04,-0.0,-15.36,1511.616,240.27908 -0.6649292759244542,0.009641063027102093,0.6649292759244542,0.0,0.4480001157407407,-0.0,0.0109078061791921,0.0,0.0,0.0,-0.0,-13.68,1510.9382,240.29782 -0.6574810719051546,0.013549013440119701,0.6574810719051546,0.0,0.4501516203703704,-0.0,0.015336051987326618,0.0,0.0,0.0,-0.0,-9.299999999999999,1510.2655,240.36838 -0.6681145559385346,0.02453969359130691,0.6681145559385346,7.719199058434542,0.452,-4.91626916704582e-6,0.027758730477443025,7.72,7.719203974703709,0.0007960252962910319,-0.0,-1.1749999999999998,1511.2236,242.62225 -0.753929782983752,0.023984465985770784,0.753929782983752,8.471637221569,0.45599953703703705,-3.7561824383442186e-8,0.02700172845695738,8.63,8.471637259130825,0.1583627408691758,-0.0,-1.6950000000000003,1518.4402,242.85477 -0.748324304133732,0.015655047420081416,0.748324304133732,0.0,0.45599953703703705,-0.0,0.017629637743806322,12.41,0.0,12.41,-0.0,-7.605,1517.9945,253.02582 -0.7388688750654696,0.015569561939104304,0.7388688750654696,0.0,0.46,-0.0,0.017542145594529813,14.15,0.0,14.15,-0.0,-7.789999999999999,1517.2351,266.2422 -0.7296566994572035,0.014726437096209032,0.7296566994572035,0.0,0.4604638888888889,-0.0,0.01660039905708118,0.64,0.0,0.64,-0.0,-8.545,1516.4858,273.54352 -0.7206418652017196,0.02069209334505693,0.7206418652017196,3.837235286852092e-8,0.463999537037037,-0.0,0.02333661931213592,6.99,3.837235286852092e-8,6.989999961627647,-0.0,-3.995,1515.7434,277.35834 -0.7118358880648654,0.015911185342413044,0.7118358880648654,0.0,0.46799976851851854,-0.0,0.01795339054593726,12.65,0.0,12.65,-0.0,-7.71,1515.0092,287.11362 -0.70328844327425,0.012355410360758443,0.70328844327425,0.0,0.46799976851851854,-0.0,0.013947872693478303,4.62,0.0,4.62,-0.0,-11.065000000000001,1514.2877,295.61108 -0.6949515831460442,0.015145336759528885,0.6949515831460442,0.0,0.4719996527777777,-0.0,0.017105431276521144,3.31,0.0,3.31,-0.0,-8.475,1513.5756,299.57275 -0.6869480020511641,0.019891198241770523,0.6869480020511641,5.631969890451671e-12,0.4719996527777777,-0.0,0.022475769904980136,2.05,5.631969890451671e-12,2.049999999994368,-0.0,-4.755000000000001,1512.8838,301.86414 -0.6791740199274445,0.023490979279495706,0.6791740199274445,0.002149504274324136,0.4760001157407408,-1.1663724089440816e-11,0.026555220450055764,0.19,0.00214950428598786,0.18785049571401213,-0.0,-2.54,1512.2041,302.8077 -0.6714084104942062,0.02638575160999536,0.6714084104942062,-2.4625648721090696e-5,0.4800005787037037,-2.4625648721090696e-5,0.029841148834107132,0.0,0.0,0.0,-0.0,-0.9999999999999999,1511.5173,302.9944 -0.6636434130112295,0.02728991082917405,0.6636434130112295,-0.0019267507315157272,0.4800005787037037,-0.0019267507315157272,0.030877905640458576,0.0,0.0,0.0,-0.0,-0.51,1510.8226,302.9948 -0.6560768354325395,0.023417620267068666,0.6560768354325395,-9.494280302598478e-13,0.4840002314814815,-9.494280302598478e-13,0.02650851362692547,0.0,0.0,0.0,-0.0,-2.8,1510.1378,302.99362 -0.6487171838881182,0.018824252578011978,0.6487171838881182,0.0,0.4840002314814815,-0.0,0.021318377613039938,0.0,0.0,0.0,-0.0,-5.83,1509.4641,302.99103 -0.6415279421596055,0.021998940410730954,0.6415279421596055,0.0,0.48800034722222224,-0.0,0.024924686040030182,0.0,0.0,0.0,-0.0,-3.7800000000000002,1508.7986,302.99066 -0.6345532524876959,0.024517035487503162,0.6345532524876959,0.0006177973958664204,0.4919994212962963,-6.27945015899253e-11,0.02778969891668721,0.01,0.000617797458660922,0.009382202541339077,-0.0,-2.3649999999999998,1508.1458,302.99615 -0.6842545209349062,0.029226479010921583,0.6842545209349062,9.857532322930627,0.4919994212962963,-0.062467674245164244,0.03302915670622198,9.92,9.919999997175792,2.8242078897733335e-9,-0.0,0.10499999999999998,1512.6492,303.00323 -0.7588106502418711,0.02431667416419715,0.7588106502418711,0.024833612872200067,0.4959997685185185,-2.6169346560168287e-12,0.027368782532510256,10.25,0.024833612874817,10.225166387125183,-0.0,-2.695,1518.8256,306.3607 -0.7519813193471441,0.01629557874919017,0.7519813193471441,0.0,0.4959997685185185,-0.0,0.018347441200501784,0.0,0.0,0.0,-0.0,-8.2,1518.2856,311.10126 -0.7424478120282045,0.013319661384548768,0.7424478120282045,0.0,0.4999997685185186,-0.0,0.015004340390438287,0.0,0.0,0.0,-0.0,-10.975,1517.5237,311.1242 -0.7331625402171497,0.014550356722207666,0.7331625402171497,0.0,0.503999537037037,-0.0,0.016398816709138654,3.32,0.0,3.32,-0.0,-9.91,1516.7721,312.68738 -0.7240644300931321,0.020027041180973853,0.7240644300931321,5.5444537849780315e-15,0.503999537037037,-0.0,0.022582355350578263,9.08,5.5444537849780315e-15,9.079999999999995,-0.0,-5.595,1516.0264,318.78958 -0.7151376905194561,0.02242107941283528,0.7151376905194561,2.693903622952298e-9,0.5079996527777778,-0.0,0.025294217229907615,1.99,2.693903622952298e-9,1.9899999973060962,-0.0,-4.135,1515.2855,324.3719 -0.7047548334314815,0.022561450479417607,0.7047548334314815,0.0,0.5079996527777778,-0.0,0.02546725544365496,0.0,0.0,0.0,-0.0,-4.039999999999999,1514.4121,325.51978 -0.7107657974428939,0.02987514768454907,0.7107657974428939,1.9426997056014081,0.511999537037037,-0.027300285175516633,0.033711630643051604,1.97,1.9699999907769248,9.223075361775025e-9,-0.0,-0.1750000000000007,1514.9193,325.53012 -0.8351331738760167,0.038096828747242344,0.8351331738760167,19.011669528188996,0.5159998842592592,8.021669528188998,0.04271757775678553,10.99,10.99,0.0,-0.0,3.175,1524.5491,321.7427 -1.0481995229672991,0.03503992839033541,1.0481995229672991,9.910910001475273,0.5159998842592592,4.370910001475273,0.03894325621502459,5.54,5.54,0.0,-0.0,1.81,1538.1198,315.42142 -1.0744324131590341,0.021268117056216132,1.0744324131590341,0.0,0.520000462962963,-0.0,0.023614648398256274,0.0,0.0,0.0,-0.0,-5.41,1539.596,315.5269 -1.054435716436395,0.018437606117532826,1.054435716436395,0.0,0.520000462962963,-0.0,0.020486773834237363,0.0,0.0,0.0,-0.0,-7.35,1538.474,315.59338 -1.0330718434343984,0.023810102658804212,1.0330718434343984,0.0,0.5240002314814816,-0.0,0.026477411117903797,0.0,0.0,0.0,-0.0,-3.93,1537.2516,315.75046 -1.0110924557610377,0.026673490858623985,1.0110924557610377,-3.3620291971100716e-11,0.5279998842592593,-3.3620291971100716e-11,0.02968636975372694,0.0,0.0,0.0,-0.0,-2.43,1535.9673,315.98413 -0.9947135247099799,0.028721860188564347,0.9947135247099799,-8.004360441509562e-7,0.5279998842592593,-8.004360441509562e-7,0.03198642213272919,0.0,0.0,0.0,-0.0,-1.37,1534.992,315.92267 -1.0007787814779359,0.035914270177513634,1.0007787814779359,4.210436806876023,0.5319998842592593,4.210436806876023,0.03998687308904475,0.0,0.0,0.0,-0.0,1.75,1535.355,314.53757 -1.1848524712296638,0.0509896650150253,1.1848524712296638,18.527736731229755,0.5319998842592593,17.997736731229754,0.0564013815417471,0.53,0.53,0.0,-0.0,6.905,1545.4381,303.62106 -1.6067623464745013,0.05281467708185911,1.6067623464745013,20.943001198989755,0.5359994212962963,18.653001198989756,0.05774044217395862,2.29,2.29,0.0,-0.0,7.15,1563.629,285.42337 -2.1176558449536977,0.04365222535977921,2.1176558449536977,15.901545072029755,0.5395353009259259,10.241545072029755,0.04722547405071201,5.66,5.66,0.0,-0.0,4.005,1580.1171,270.98737 -2.575071778652037,0.04058719712825248,2.575071778652037,12.24871371016162,0.54,7.01871371016162,0.04358737824621442,5.23,5.23,0.0,-0.0,2.8,1591.7964,262.3716 -3.090018900023931,0.041854135767224694,3.090018900023931,15.2739781779471,0.5439997685185185,7.673978177947101,0.04464263850250036,7.6,7.6,0.0,-0.0,3.0450000000000004,1602.6833,255.01259 -3.742840606577673,0.03417455423035723,3.742840606577673,14.756417021750401,0.5439997685185185,-0.06358296276799126,0.036192919294751796,14.82,14.819999984518393,1.5481605720735202e-8,-0.0,-0.025000000000000022,1614.1298,251.42088 -4.25645850309765,0.034721619277427056,4.25645850309765,8.746382347553194,0.5479999999999999,-0.07361764713093567,0.03659817068171411,8.82,8.81999999468413,5.315870803546119e-9,-0.0,0.029999999999999916,1621.8093,251.53503 -4.242751431361449,0.0288218251024818,4.242751431361449,5.9152351161299866e-5,0.5498481481481481,-3.173888085869172e-12,0.030383127170297293,0.02,5.915235433518795e-5,0.01994084764566481,-0.0,-2.6750000000000003,1621.6167,251.64877 -3.9480706084515136,0.03168225108437859,3.9480706084515136,-9.650050775296262e-7,0.5520004629629629,-9.650050775296262e-7,0.03348728048578525,0.0,0.0,0.0,-0.0,-1.3499999999999996,1617.3177,251.7404 -3.7042603462522603,0.03504776110908051,3.7042603462522603,-0.07361764713093573,0.5559922453703704,-0.07361764713093573,0.037131932652872804,0.0,0.0,0.0,-0.0,0.03000000000000025,1613.511,251.68877 -3.7356025737516725,0.043664419217165365,3.7356025737516725,8.20888794754937,0.5560002314814815,8.20888794754937,0.046246572203018955,0.0,0.0,0.0,-0.0,3.245,1614.0142,247.44394 -4.059420646316501,0.04276580266913336,4.059420646316501,9.538595477437255,0.56,6.9785954774372545,0.04515591819663517,2.56,2.56,0.0,-0.0,2.785,1618.9788,239.86249 -4.234667833855024,0.037530241068901876,4.234667833855024,4.237753818119863,0.5600517361111111,1.7877538181202897,0.03956606407923413,2.45,2.449999999999574,4.263672748194836e-13,-0.0,0.8449999999999998,1621.5028,235.66197 -4.261951980845405,0.04106466241438692,4.261951980845405,5.026174783779085,0.5639996527777777,5.026174783779085,0.04328197187283474,0.0,0.0,0.0,-0.0,2.0549999999999997,1621.8864,232.20345 -4.3669447089579725,0.04365976238306414,4.3669447089579725,7.24605036225734,0.5663305555555556,7.24605036225734,0.045975996719150286,0.0,0.0,0.0,-0.0,2.8850000000000002,1623.3397,226.0169 -4.677700954993119,0.04717357778853097,4.677700954993119,10.107817629629755,0.5679997685185185,10.107817629629755,0.049550914949687414,0.0,0.0,0.0,-0.0,3.955,1627.4451,217.34189 -5.4399694308455455,0.0507153786862312,5.4399694308455455,17.641657081309752,0.5715351851851852,12.541657081309754,0.05297771991094715,5.1,5.1,0.0,-0.0,4.865,1636.4608,205.8734 -6.8022295702326865,0.04585526247958376,6.8022295702326865,21.025396970589284,0.5719994212962963,8.155396970589287,0.047513308536457355,12.87,12.87,0.0,-0.0,3.225,1649.8069,195.70824 -8.247173994239422,0.050660126321913725,8.247173994239422,17.238819496029755,0.5760005787037037,11.578819496029753,0.05212844173847794,5.66,5.66,0.0,-0.0,4.505,1661.3102,185.81381 -9.428421369850893,0.05784563918086462,9.428421369850893,16.754071516909754,0.5760005787037037,16.754071516909754,0.059237175053967785,0.0,0.0,0.0,-0.0,6.44,1669.3042,171.50414 -10.723918903785426,0.06143360636429845,10.723918903785426,18.746610408669753,0.5800003472222222,18.746610408669753,0.06262301181993415,0.0,0.0,0.0,-0.0,7.185,1676.993,153.73598 -11.863186053040836,0.05830734591164861,11.863186053040836,16.406380166669756,0.5807946759259259,16.406380166669756,0.05922329012718913,0.0,0.0,0.0,-0.0,6.3100000000000005,1683.0226,136.29898 -12.967864211300686,0.06276411100563932,12.967864211300686,19.067556270429755,0.5840005787037037,19.067556270429755,0.06354929610880085,0.0,0.0,0.0,-0.0,7.305,1688.3397,118.536255 -12.999897466466898,0.047462869292254524,12.999897466466898,7.687350922187226,0.5853530092592593,7.687350922187226,0.04805244091646819,0.0,0.0,0.0,-0.0,3.0500000000000003,1688.487,105.16359 -12.552744416106531,0.055122162724998765,12.552744416106531,13.544612899309755,0.5880002314814815,13.544612899309755,0.05587605018886189,0.0,0.0,0.0,-0.0,5.24,1686.3967,94.46442 -13.14536502442708,0.06147962638041977,13.14536502442708,17.757027334909754,0.5903311342592593,17.757027334909754,0.062218822638104576,0.0,0.0,0.0,-0.0,6.8149999999999995,1689.1516,78.836334 -15.255791217279995,0.07199010719762172,15.255791217279995,27.88860791802976,0.5920008101851852,23.948607918029758,0.07247417023243183,3.94,3.94,0.0,-0.0,9.13,1698.0433,57.922985 -18.47850647294827,0.07743037209649548,18.594510736986955,29.196293044829755,0.5943310185185184,26.556293044829754,0.07742912219601449,2.64,2.64,0.0,0.11600426403868735,10.105,1709.6046,32.69148 -18.46996175,0.06083356962992437,22.55460104687491,20.988057289123535,0.5959997685185184,12.578057289123535,0.06083356962992437,8.41,8.41,0.0,4.0846392968749115,6.325,1713.5457,12.578057 -18.292206237278823,0.05832788472610854,18.290445439559203,12.192430801391602,0.5987809027777777,4.622430801391602,0.05834759742541742,7.57,7.57,0.0,-0.0017607977196207076,5.62,1708.8817,4.622431 -15.390156500631512,0.06051314789126364,15.390156500631512,1.697926687954184,0.5999998842592592,1.697926687954184,0.060901257474087644,0.0,0.0,0.0,-0.0,6.24,1698.567,1.6979268 -12.933926927486114,0.05850570294020775,12.933926927486114,5.78206365934572,0.6027810185185185,0.6220636593457204,0.05924310625763628,5.16,5.16,0.0,-0.0,5.75,1688.1832,0.6232853 -12.320605962327091,0.0684880714458431,12.320605962327091,13.614672590641188,0.6039996527777778,0.21467259064118802,0.06947068167248437,13.4,13.4,0.0,-0.0,8.16,1685.282,0.23512098 -11.284135439266707,0.0717904608578266,11.284135439266707,0.07560487077765314,0.6063304398148148,0.07560487077765314,0.07304792038525548,0.0,0.0,0.0,-0.0,8.879999999999999,1680.034,0.10268224 -9.484864104431946,0.06399255888405292,9.484864104431946,0.03260589145153592,0.6079995370370371,0.03260589145153592,0.06551797517698091,0.0,0.0,0.0,-0.0,7.155,1669.6606,0.051992264 -8.179851472034475,0.06512659172855048,8.179851472034475,0.016246009916238563,0.6098476851851852,0.016246009916238563,0.06703394955690789,0.0,0.0,0.0,-0.0,7.459999999999999,1660.8207,0.028467244 -7.226642013141576,0.07503513787967618,7.226642013141576,0.6787659775402416,0.6120002314814815,0.008765977540241597,0.07757831366570747,0.67,0.67,0.0,-0.0,9.674999999999999,1653.4214,0.016219474 -6.559574855255784,0.09630702668909927,6.559574855255784,1.8649356912932826,0.6133524305555556,0.004935691293282628,0.09992070481350948,1.86,1.86,0.0,-0.0,13.674999999999999,1647.6376,0.009427338 -5.988061378814342,0.08361544337327889,5.988061378814342,0.13280959438716583,0.6159914351851852,0.0028095943871658327,0.08704049290690125,0.13,0.13,0.0,-0.0,11.39,1642.1936,0.005469641 -5.441437405250094,0.07490545507373209,5.441437405250094,0.001620782661194112,0.6162851851851852,0.001620782661194112,0.07824611090621551,0.0,0.0,0.0,-0.0,9.700000000000001,1636.4769,0.0031906678 -4.98723315837661,0.06399853689082736,4.98723315837661,0.0009348238195288955,0.6195356481481481,0.0009348238195288955,0.0670660872166516,0.0,0.0,0.0,-0.0,7.2250000000000005,1631.2716,0.0018524895 -4.921349350007413,0.08453582926912652,4.921349350007413,6.560513244663403,0.6199998842592592,0.0005132446634030055,0.0886309144795473,6.56,6.56,0.0,-0.0,11.575000000000001,1630.4774,0.0010212744 -5.121857523508934,0.0846398309553987,5.121857523508934,8.460253281857385,0.6227818287037037,0.0002532818573840634,0.08861034449695072,8.46,8.46,0.0,-0.0,11.5,1632.8623,0.00050528714 -5.169936882682155,0.05354848398762911,5.169936882682155,3.4501476780421703,0.6240006944444445,0.0001476780421701372,0.056041330242365434,3.45,3.45,0.0,-0.0,4.39,1633.4203,0.0002949212 -4.898417130946279,0.05597986205606674,4.898417130946279,8.818005927187477e-5,0.6253526620370371,8.818005927187477e-5,0.05870168118329509,0.0,0.0,0.0,-0.0,5.055000000000001,1630.1985,0.00017620488 -4.545255232434327,0.08292825678110514,4.545255232434327,4.8697282847211776e-5,0.6278895833333333,4.8697282847211776e-5,0.08719937812627691,0.0,0.0,0.0,-0.0,11.115,1625.7297,9.734718e-5 -4.212351516296896,0.12040811943482438,4.212351516296896,2.7314256506286226e-5,0.6280518518518519,2.7314256506286226e-5,0.12696434993512587,0.0,0.0,0.0,-0.0,17.225,1621.1873,5.46136e-5 -3.9205353417797584,0.09549079971017159,3.9205353417797584,1.535745142646896e-5,0.6303303240740741,1.535745142646896e-5,0.10095727724578338,0.0,0.0,0.0,-0.0,13.399999999999999,1616.8998,3.0710187e-5 -3.756667618379955,0.07273823710090749,3.756667618379955,2.8000082596134015,0.6319916666666667,8.259613401868317e-6,0.07702368290908972,2.8,2.8,0.0,-0.0,9.059999999999999,1614.35,1.6517863e-5 -3.7739692378078593,0.10614363738114584,3.7739692378078593,6.990004815042661,0.6322856481481481,4.815042660284836e-6,0.11237809316931811,6.99,6.99,0.0,-0.0,15.094999999999999,1614.6244,9.629622e-6 -3.747855051831126,0.13328574348224712,3.747855051831126,2.6661649862126597e-6,0.6347809027777778,2.6661649862126597e-6,0.141150669561273,0.0,0.0,0.0,-0.0,18.825,1614.2097,5.332188e-6 -3.601143069666491,0.08452210107501772,3.601143069666491,0.01000157130945921,0.6360001157407408,1.5713094592106323e-6,0.08964201515095242,0.01,0.01,0.0,-0.0,11.35,1611.825,3.1425695e-6 -3.8876891817925023,0.09511886753647815,3.8876891817925023,16.800000901242566,0.6362856481481481,9.012425657529727e-7,0.10059531275800919,16.8,16.8,0.0,-0.0,13.190000000000001,1616.3973,1.8024689e-6 -4.567467617415054,0.08721354849549172,4.567467617415054,12.450000530954684,0.6387810185185185,5.309546846837745e-7,0.09168895892704637,12.45,12.45,0.0,-0.0,11.64,1626.0209,1.0619037e-6 -4.693580666439598,0.10115377119539234,4.693580666439598,3.036658837446869e-7,0.6399917824074074,3.036658837446869e-7,0.10623825645828415,0.0,0.0,0.0,-0.0,13.98,1627.6475,6.073299e-7 -4.369069664239791,0.08491832743026519,4.369069664239791,1.7680685001632859e-7,0.6400512731481481,1.7680685001632859e-7,0.08942180759478946,0.0,0.0,0.0,-0.0,11.21,1623.3688,3.5361307e-7 -4.146114192519728,0.0867745116138206,4.146114192519728,2.3700000969844384,0.6418483796296296,9.698443817083619e-8,0.0915528431209307,2.37,2.37,0.0,-0.0,11.54,1620.2407,1.9396869e-7 -3.9826803964961974,0.08128193502621894,3.9826803964961974,1.6800000529262815,0.6435354166666667,5.292628161386465e-8,0.08588512211269377,1.68,1.68,0.0,-0.0,10.485,1617.839,1.0585251e-7 -3.769636376881099,0.0852730547136106,3.769636376881099,1.4046529469752113e-8,0.6439998842592592,1.4046529469752113e-8,0.0902854914738067,0.0,0.0,0.0,-0.0,11.265,1614.5558,2.8093055e-8 -3.543039022871211,0.08495471314533466,3.543039022871211,-1.257024992624859e-8,0.6442856481481481,-1.257024992624859e-8,0.09015516852015601,0.0,0.0,0.0,-0.0,11.235,1610.8535,-2.5140503e-8 -3.338698078337143,0.081377219784978,3.338698078337143,0.14999998218212798,0.6458482638888889,-1.7817872000529892e-8,0.08654928972856502,0.15,0.15,0.0,-0.0,10.55,1607.3059,-3.563575e-8 -3.1624996997256005,0.08163538884507412,3.1624996997256005,-9.850503441832253e-9,0.6471538194444444,-9.850503441832253e-9,0.08699912676379098,0.0,0.0,0.0,-0.0,10.6,1604.068,-1.9701009e-8 -2.9999997496438233,0.08507698839210283,2.9999997496438233,-4.283375248650598e-9,0.6479927083333333,-4.283375248650598e-9,0.09084526499660922,0.0,0.0,0.0,-0.0,11.265,1600.9177,-8.566751e-9 -2.8512762386972783,0.1119693319330081,2.8512762386972783,-1.9208361199029397e-9,0.6480521990740741,-1.9208361199029397e-9,0.1197881324031976,0.0,0.0,0.0,-0.0,15.74,1597.8812,-3.8416723e-9 -2.704994688933522,0.13104304164977962,2.704994688933522,6.415693497708593e-12,0.6487947916666666,6.415693497708593e-12,0.14047025735749427,0.0,0.0,0.0,-0.0,18.375,1594.736,1.2831387e-11 -2.5656147947952905,0.08927127905464352,2.5656147947952905,2.6953884296058927e-9,0.6498487268518519,2.6953884296058927e-9,0.09588339357032126,0.0,0.0,0.0,-0.0,12.079999999999998,1591.5767,5.3907767e-9 -2.4445240597498805,0.12821099769925448,2.4445240597498805,5.506384984755568e-9,0.6507814814814814,5.506384984755568e-9,0.1379575590877973,0.0,0.0,0.0,-0.0,18.02,1588.6893,1.1012769e-8 -2.3509932251955323,0.1598412547904912,2.3509932251955323,0.23000000779970817,0.6515357638888889,7.799708154850772e-9,0.17224493827385945,0.23,0.23,0.0,-0.0,21.785,1586.3595,1.5599415e-8 -2.2932032755438083,0.12459804105057616,2.2932032755438083,1.4800000089356602,0.6519921296296297,8.935660122043499e-9,0.1343927690207993,1.48,1.48,0.0,-0.0,17.55,1584.8732,1.7871319e-8 -2.2795381939129284,0.0981500937627208,2.2795381939129284,9.120000008274543,0.6520001157407407,8.274543513381805e-9,0.10588958015235424,9.12,9.12,0.0,-0.0,13.625,1584.5162,1.6549086e-8 -2.307879415374446,0.08413422242147096,2.307879415374446,5.4213023678320435e-9,0.6520517361111111,5.4213023678320435e-9,0.09072625561106626,0.0,0.0,0.0,-0.0,11.145,1585.2542,1.0842604e-8 -2.2808478806378414,0.08532676972417917,2.2808478806378414,0.5300000024419923,0.6522856481481482,2.441992223670545e-9,0.0920530983161052,0.53,0.53,0.0,-0.0,11.37,1584.5505,4.8839843e-9 -2.2061700592636146,0.07986510296824803,2.2061700592636146,0.05000000038378512,0.6527943287037037,3.837851162721057e-10,0.08626912364167658,0.05,0.05,0.0,-0.0,10.33,1582.5625,7.6757023e-10 -2.1220539086956394,0.10607478316399528,2.1220539086956394,-2.2026898312320064e-10,0.653352662037037,-2.2026898312320064e-10,0.1147487695253104,0.0,0.0,0.0,-0.0,14.9,1580.241,-4.4053797e-10 -2.0516607757263987,0.1338324890197531,2.0516607757263987,-1.0325958133434773e-10,0.653848611111111,-1.0325958133434773e-10,0.14496109959534212,0.0,0.0,0.0,-0.0,18.775,1578.2263,-2.0651916e-10 -1.9966443545950217,0.16094796198334868,1.9966443545950217,-3.700767556848605e-12,0.653848611111111,-3.700767556848605e-12,0.17451080689460619,0.0,0.0,0.0,-0.0,21.95,1576.603,-7.401535e-12 -1.957542407173934,0.15543266527655675,1.957542407173934,2.0300000000525875,0.653848611111111,5.258791321839296e-11,0.16865709811717447,2.03,2.03,0.0,-0.0,21.36,1575.4219,1.05175826e-10 -1.9326933714085182,0.12446205976869348,1.9326933714085182,1.2100000000436457,0.6543310185185185,4.364564614407284e-11,0.1351169032342165,1.21,1.21,0.0,-0.0,17.58,1574.6589,8.729129e-11 -1.8929933736715683,0.09230631494346829,1.8929933736715683,7.145330768548584e-12,0.6543310185185185,7.145330768548584e-12,0.10028733817896437,0.0,0.0,0.0,-0.0,12.69,1573.4194,1.42906615e-11 -1.8382482533658295,0.09331670587394139,1.8382482533658295,-3.218747142782279e-11,0.653848611111111,-3.218747142782279e-11,0.10149814427775652,0.0,0.0,0.0,-0.0,12.895000000000001,1571.6669,-6.437494e-11 -1.778952357504982,0.10448560994467655,1.778952357504982,-6.361611233745876e-11,0.653848611111111,-6.361611233745876e-11,0.11378803739237116,0.0,0.0,0.0,-0.0,14.75,1569.7087,-1.2723222e-10 -1.7244994172193011,0.12055830349349915,1.7244994172193011,-7.640394561183584e-11,0.653352662037037,-7.640394561183584e-11,0.13144716282903465,0.0,0.0,0.0,-0.0,17.145,1567.8522,-1.5280789e-10 -1.6835506258854667,0.13832815953973976,1.6835506258854667,0.6799999999400195,0.653352662037037,-5.99806107199841e-11,0.15096018313722456,0.68,0.68,0.0,-0.0,19.475,1566.417,-1.1996122e-10 -1.707519299635262,0.13058275814852824,1.707519299635262,2.9099999999685613,0.6527943287037037,-3.143877518440842e-11,0.1424307128552642,2.91,2.91,0.0,-0.0,18.505,1567.2612,-6.287755e-11 -1.8071434380514562,0.16377915114981811,1.8071434380514562,6.829999999989227,0.6522856481481482,-1.0772597222824227e-11,0.17825389681926185,6.83,6.83,0.0,-0.0,22.36,1570.6477,-2.1545194e-11 -1.9528465257754737,0.136844474132135,1.9528465257754737,6.909999999997766,0.6520517361111111,-2.2334790266754423e-12,0.1485009172684487,6.91,6.91,0.0,-0.0,19.23,1575.2784,-4.466958e-12 -2.0280945006737094,0.08813945601582224,2.0280945006737094,-1.1919083341690495e-12,0.6519921296296297,-1.1919083341690495e-12,0.09551029449689348,0.0,0.0,0.0,-0.0,11.965,1577.5364,-2.3838167e-12 -1.9860775625690665,0.08292881103550691,1.9860775625690665,-4.1027400118567467e-13,0.6518894675925926,-4.1027400118567467e-13,0.08993517517822616,0.0,0.0,0.0,-0.0,11.01,1576.2861,-8.20548e-13 -1.9079140626062143,0.09979463845397263,1.9079140626062143,-4.7880278843265954e-14,0.6511538194444445,-4.7880278843265954e-14,0.10839081993884428,0.0,0.0,0.0,-0.0,14.024999999999999,1573.8883,-9.576056e-14 -1.8453635765309977,0.10176806284607236,1.8453635765309977,-2.422584871694513e-14,0.6503311342592593,-2.422584871694513e-14,0.1106742181475611,0.0,0.0,0.0,-0.0,14.385000000000002,1571.8976,-4.8451697e-14 -1.7867875004328557,0.11720443908017378,1.7867875004328557,-1.1395883016536177e-14,0.6493528935185184,-1.1395883016536177e-14,0.12761789546790148,0.0,0.0,0.0,-0.0,16.755,1569.9712,-2.2791766e-14 -1.7314646405553473,0.1322717203875306,1.7314646405553473,-5.3963922733317585e-15,0.6482863425925927,-5.3963922733317585e-15,0.1441963993569651,0.0,0.0,0.0,-0.0,18.83,1568.0929,-1.07927845e-14 -1.6842768853339831,0.11694345727796049,1.6842768853339831,1.8700000000000052,0.6480008101851852,5.068911971748375e-15,0.12762054744778953,1.87,1.87,0.0,-0.0,16.79,1566.4427,1.0137824e-14 -1.6460587470973478,0.11421217865073525,1.6460587470973478,6.170000000000024,0.647890162037037,2.405149545509396e-14,0.12474906212716833,6.17,6.17,0.0,-0.0,16.415,1565.072,4.810299e-14 -1.6145880935372212,0.12875986106800272,1.6145880935372212,17.73000000000005,0.64678125,4.833728361154204e-14,0.14074254237492634,17.73,17.73,0.0,-0.0,18.46,1563.9192,9.667457e-14 -1.5878746356727742,0.0986097867087854,1.5878746356727742,19.900000000000073,0.645352199074074,7.471220229944249e-14,0.10785534673551533,19.9,19.9,0.0,-0.0,14.09,1562.9229,1.494244e-13 -1.5640948839112265,0.08877738444323131,1.5640948839112265,9.996217991823792e-14,0.6440515046296297,9.996217991823792e-14,0.09715708491685898,0.0,0.0,0.0,-0.0,12.435,1562.0217,1.9992436e-13 -1.5415406767353117,0.1023646787926373,1.5415406767353117,1.2087314656143056e-13,0.6438894675925926,1.2087314656143056e-13,0.11208913049740776,0.0,0.0,0.0,-0.0,14.755,1561.1543,2.417463e-13 -1.518606907783955,0.10571135535014109,1.518606907783955,1.342310187699908e-13,0.6427809027777778,1.342310187699908e-13,0.11582014449529592,0.0,0.0,0.0,-0.0,15.32,1560.2592,2.6846204e-13 -1.4937867693207505,0.12760475718514605,1.4937867693207505,1.6500000000001367,0.6407940972222222,1.3682173341367911e-13,0.1398953708108794,1.65,1.65,0.0,-0.0,18.515,1559.275,2.7364347e-13 -1.4656706966206599,0.13079194532233007,1.4656706966206599,3.0200000000001253,0.6399997685185186,1.2543120025720663e-13,0.14349397003469835,3.02,3.02,0.0,-0.0,18.965,1558.1403,2.508624e-13 -1.432989893306898,0.11735213210672817,1.432989893306898,9.68453697228791e-14,0.6395354166666667,9.68453697228791e-14,0.1288603046393309,0.0,0.0,0.0,-0.0,17.17,1556.7936,1.9369074e-13 -1.4011179785286714,0.12132269344501474,1.4011179785286714,5.136130304159195e-14,0.6378482638888888,5.136130304159195e-14,0.1333352871263752,0.0,0.0,0.0,-0.0,17.785,1555.4503,1.02722606e-13 -1.3807050341940141,0.1458066604906962,1.3807050341940141,0.010000000000002491,0.6360001157407408,2.4911054749083564e-15,0.16033384417799662,0.01,0.01,0.0,-0.0,20.965,1554.5739,4.982211e-15 -1.364167897891462,0.1459294654726699,1.364167897891462,1.4999999999999634,0.6355359953703703,-3.668637930334021e-14,0.16054319926008423,1.5,1.5,0.0,-0.0,21.0,1553.8542,-7.337276e-14 -1.3436422122682,0.15926660333993534,1.3436422122682,-5.330589078865748e-14,0.6338483796296296,-5.330589078865748e-14,0.1753181046213754,0.0,0.0,0.0,-0.0,22.57,1552.9489,-1.0661178e-13 -1.3148052415728875,0.1929601546931417,1.3148052415728875,-3.6906858591378553e-14,0.6319996527777777,-3.6906858591378553e-14,0.21258478522776822,0.0,0.0,0.0,-0.0,26.025,1551.6532,-7.381372e-14 -1.300577142433314,0.16459060116203436,1.300577142433314,0.009999999999994106,0.6315355324074073,-5.89524512783707e-15,0.18140592913095718,0.01,0.01,0.0,-0.0,23.23,1551.0034,-1.179049e-14 -1.2996390542780463,0.10780886752671838,1.2996390542780463,0.2500000000000259,0.6287943287037038,2.590697703022995e-14,0.11882641540358772,0.25,0.25,0.0,-0.0,16.105,1550.9603,5.1813954e-14 -1.303030528200958,0.09444589174908562,1.303030528200958,2.2500000000000497,0.628,4.9629503523347314e-14,0.1040873625363917,2.25,2.25,0.0,-0.0,13.954999999999998,1551.116,9.925901e-14 -1.3018724436016509,0.11414264972041488,1.3018724436016509,1.8500000000000565,0.6267813657407407,5.640202999202561e-14,0.12579916268804164,1.85,1.85,0.0,-0.0,17.105,1551.0629,1.1280406e-13 -1.2893646349481986,0.12921141299120426,1.2893646349481986,3.8825269632325623e-14,0.624052199074074,3.8825269632325623e-14,0.14245973614526497,0.0,0.0,0.0,-0.0,19.27,1550.4863,7.765054e-14 -1.282305042850904,0.1363203841927447,1.282305042850904,4.690000000000012,0.6238902777777778,1.1335828380578431e-14,0.1503293955133272,4.69,4.69,0.0,-0.0,20.19,1550.1584,2.2671657e-14 -1.2799194576176824,0.12853836366320306,1.2799194576176824,2.369999999999986,0.6207944444444444,-1.4335776828326908e-14,0.14175782245351334,2.37,2.37,0.0,-0.0,19.275,1550.0472,-2.8671554e-14 -1.2740022361141485,0.10689581532840525,1.2740022361141485,-3.083071856623078e-14,0.6199998842592592,-3.083071856623078e-14,0.11791050871685346,0.0,0.0,0.0,-0.0,16.21,1549.7705,-6.166144e-14 -1.2565246382649793,0.11687410882392117,1.2565246382649793,-3.0790176181243425e-14,0.6183303240740741,-3.0790176181243425e-14,0.12898563919229794,0.0,0.0,0.0,-0.0,17.75,1548.9456,-6.158035e-14 -1.2452514928065541,0.1291480278392767,1.2452514928065541,-1.5895352525535892e-14,0.615999537037037,-1.5895352525535892e-14,0.14258103266579897,0.0,0.0,0.0,-0.0,19.505,1548.4073,-3.1790705e-14 -1.2715489234838442,0.12892274919491764,1.2715489234838442,0.11999999999999907,0.6151532407407407,-9.311749767730473e-16,0.14221769196829365,0.12,0.12,0.0,-0.0,19.485,1549.6554,-1.86235e-15 -1.3209119764182857,0.12664722126013472,1.3209119764182857,5.84000000000001,0.6120002314814815,9.987711917551881e-15,0.13950274621832173,5.84,5.84,0.0,-0.0,19.245,1551.9299,1.9975424e-14 -1.3774182474576364,0.12434633641469135,1.3774182474576364,4.370000000000013,0.6115356481481482,1.2988876704616643e-14,0.13674787980150657,4.37,4.37,0.0,-0.0,18.92,1554.4315,2.5977753e-14 -1.4231120567645081,0.11394129850573037,1.4231120567645081,1.9600000000000075,0.6080510416666667,7.602172370617706e-15,0.1251481939342783,1.96,1.96,0.0,-0.0,17.525,1556.3805,1.5204345e-14 -1.4544225694216135,0.11094129121849355,1.4544225694216135,2.1419576470171704e-15,0.6078891203703704,2.1419576470171704e-15,0.12175144502731973,0.0,0.0,0.0,-0.0,17.07,1557.6802,4.2839153e-15 -1.4831078275596896,0.09722438918410552,1.4831078275596896,4.349999999999998,0.6042853009259259,-1.6054422136658967e-15,0.10661812877302501,4.35,4.35,0.0,-0.0,14.975000000000001,1558.8466,-3.2108844e-15 -1.5224919865376638,0.09937205088366904,1.5224919865376638,3.6099999999999977,0.6039916666666666,-2.3758645248519224e-15,0.10886398907879025,3.61,3.61,0.0,-0.0,15.325,1560.4117,-4.751729e-15 -1.5240643757780823,0.12087704734799869,1.5240643757780823,-1.3196465209987262e-15,0.6002854166666667,-1.3196465209987262e-15,0.13241789417862512,0.0,0.0,0.0,-0.0,18.689999999999998,1560.4734,-2.639293e-15 -1.482277420216683,0.1301065384660303,1.482277420216683,-5.922260608415349e-16,0.5999998842592592,-5.922260608415349e-16,0.142680385369684,0.0,0.0,0.0,-0.0,19.965,1558.8131,-1.1844521e-15 -1.4894024832293222,0.13073375836711132,1.4894024832293222,2.9399999999999995,0.5962851851851851,-2.8936477186955253e-16,0.14334188747592885,2.94,2.94,0.0,-0.0,20.15,1559.0995,-5.7872954e-16 -1.817660834421467,0.12592244292562907,1.817660834421467,20.58,0.5959997685185184,-1.6624833446279353e-16,0.13702119237890184,20.58,20.58,0.0,-0.0,19.39,1570.9943,-3.3249667e-16 -2.469746754689533,0.10782041468668067,2.469746754689533,22.14,0.5920523148148148,-9.669771139246936e-17,0.11597213923548837,22.14,22.14,0.0,-0.0,16.700000000000003,1589.3024,-1.9339542e-16 -2.868826057120989,0.1199046937332889,2.868826057120989,5.23,0.591992824074074,-5.634323537048203e-17,0.1282482070409809,5.23,5.23,0.0,-0.0,18.385,1598.2477,-1.1268647e-16 -2.8738500322586495,0.13739422578770932,2.8738500322586495,-3.3293453863720365e-17,0.5880002314814815,-3.3293453863720365e-17,0.1469451330310851,0.0,0.0,0.0,-0.0,20.815,1598.3522,-6.658691e-17 -2.752065308075526,0.15649822881509134,2.752065308075526,-1.8811106215970512e-17,0.5879922453703703,-1.8811106215970512e-17,0.16764837803264426,0.0,0.0,0.0,-0.0,23.1,1595.7662,-3.7622212e-17 -2.6204278425290495,0.1514637594839747,2.6204278425290495,-1.0925102918399256e-17,0.5840005787037037,-1.0925102918399256e-17,0.16255338670539052,0.0,0.0,0.0,-0.0,22.68,1592.8391,-2.1850206e-17 -2.5001717254035065,0.13579947430794706,2.5001717254035065,-5.865890516144772e-18,0.5835359953703704,-5.865890516144772e-18,0.14599937489614281,0.0,0.0,0.0,-0.0,20.835,1590.0336,-1.1731781e-17 -2.3986406707315884,0.10656188184161647,2.3986406707315884,-3.0095008237641693e-18,0.5800003472222222,-3.0095008237641693e-18,0.11474441413289424,0.0,0.0,0.0,-0.0,16.865,1587.5577,-6.0190016e-18 -2.457595289163813,0.12518775257832643,2.457595289163813,5.27,0.5787818287037036,-1.747339634679466e-18,0.13467748925124606,5.27,5.27,0.0,-0.0,19.595,1589.0078,-3.4946793e-18 -3.054650462406799,0.10032261179499848,3.054650462406799,26.69,0.5760005787037037,-9.60965289309751e-19,0.10705245823723354,26.69,26.69,0.0,-0.0,15.83,1601.9958,-1.9219306e-18 -4.711131805134916,0.08771350230764224,4.711131805134916,32.23,0.5738478009259259,-5.735382922179832e-19,0.09210979955534888,32.23,32.23,0.0,-0.0,13.435,1627.8704,-1.1470766e-18 -5.905213097132054,0.07714230793450459,5.905213097132054,4.8,0.5719994212962963,-3.449589757566243e-19,0.08034291179312421,4.8,4.8,0.0,-0.0,11.295,1641.3616,-6.8991795e-19 -6.037727410343647,0.09349549221623302,6.037727410343647,10.27,0.5680513888888888,-2.0796843128898096e-19,0.0972960215541088,10.27,10.27,0.0,-0.0,14.49,1642.6869,-4.1593686e-19 -5.912919096470373,0.10699433131414399,5.912919096470373,-1.251827867926932e-19,0.5679997685185185,-1.251827867926932e-19,0.11142819667171382,0.0,0.0,0.0,-0.0,16.725,1641.4395,-2.5036557e-19 -5.395749897694278,0.08160127437972249,5.395749897694278,-7.446126070307209e-20,0.5639996527777777,-7.446126070307209e-20,0.08526678874630038,0.0,0.0,0.0,-0.0,12.469999999999999,1635.9734,-1.4892252e-19 -4.906283302238286,0.08264342424478255,4.906283302238286,-4.4125348778227453e-20,0.5639916666666667,-4.4125348778227453e-20,0.08665656924273123,0.0,0.0,0.0,-0.0,12.73,1630.2943,-8.82507e-20 -4.545431758894305,0.10079493391280969,4.545431758894305,1.91,0.56,-2.427384448874161e-20,0.10598610603336366,1.91,1.91,0.0,-0.0,16.13,1625.732,-4.854769e-20 -4.729212553360537,0.11245755933355336,4.729212553360537,12.81,0.558330324074074,-1.404117764058597e-20,0.1180774628719237,12.81,12.81,0.0,-0.0,17.98,1628.0991,-2.8082355e-20 -5.177064327020494,0.10602821511549075,5.177064327020494,8.84,0.5560002314814815,-8.371405456747624e-21,0.11095856491599915,8.84,8.84,0.0,-0.0,17.009999999999998,1633.5026,-1.6742811e-20 -5.065396105255639,0.11870585537520663,5.065396105255639,-4.969481400368381e-21,0.5520519675925926,-4.969481400368381e-21,0.12432483308269744,0.0,0.0,0.0,-0.0,19.04,1632.2003,-9.938963e-21 -4.925868110737993,0.13699694223704217,4.925868110737993,5.58,0.5520004629629629,-2.9536369969184673e-21,0.14362852086778655,5.58,5.58,0.0,-0.0,21.509999999999998,1630.5322,-5.907274e-21 -6.124650294262629,0.11275785877078907,6.124650294262629,29.57,0.5479999999999999,-1.761471622857261e-21,0.11728044456260896,29.57,29.57,0.0,-0.0,18.18,1643.5405,-3.5229432e-21 -7.809059181107182,0.06616057933369578,7.809059181107182,14.28,0.5479921296296296,-1.0478050905832097e-21,0.06821200272415334,14.28,14.28,0.0,-0.0,9.39,1658.0503,-2.0956102e-21 -7.726496166072575,0.06556954113835856,7.726496166072575,-6.198211146340629e-22,0.5439997685185185,-6.198211146340629e-22,0.0676285291758434,0.0,0.0,0.0,-0.0,9.37,1657.4155,-1.2396422e-21 -6.929883686831346,0.08683058217004039,6.929883686831346,-3.5504571994756925e-22,0.540794212962963,-3.5504571994756925e-22,0.08990971313593853,0.0,0.0,0.0,-0.0,14.005,1650.9172,-7.1009144e-22 -6.192197188425286,0.09641292422176524,6.192197188425286,-2.0249415726524713e-22,0.54,-2.0249415726524713e-22,0.10023998339710916,0.0,0.0,0.0,-0.0,15.81,1644.1956,-4.0498831e-22 -5.602080954527309,0.08453544817019736,5.602080954527309,-1.1590526283310796e-22,0.5359994212962963,-1.1590526283310796e-22,0.08821192524777922,0.0,0.0,0.0,-0.0,13.84,1638.2145,-2.3181053e-22 -5.114617900080436,0.08469710819932844,5.114617900080436,-6.425003229228642e-23,0.5359994212962963,-6.425003229228642e-23,0.0886748960633964,0.0,0.0,0.0,-0.0,13.925,1632.7778,-1.2850006e-22 -4.67715598635234,0.09248853536603645,4.67715598635234,-2.974347031682994e-23,0.5319998842592593,-2.974347031682994e-23,0.09714995890598493,0.0,0.0,0.0,-0.0,15.540000000000001,1627.4381,-5.948694e-23 -4.296783141844591,0.08581301748218007,4.296783141844591,6.1762835110797806e-24,0.5298482638888888,6.1762835110797806e-24,0.09041944048288265,0.0,0.0,0.0,-0.0,14.43,1622.3724,1.2352567e-23 -4.035222517079163,0.06335344859099941,4.035222517079163,3.391723870304569e-23,0.5279998842592593,3.391723870304569e-23,0.06690893261698456,0.0,0.0,0.0,-0.0,9.67,1618.6217,6.783448e-23 -3.9422080635815595,0.07239236239289154,3.9422080635815595,5.89,0.5240002314814816,4.379289371219891e-23,0.07652096332398825,5.89,5.89,0.0,-0.0,11.915,1617.229,8.758579e-23 -4.01380137224456,0.07438988394787621,4.01380137224456,6.51,0.5240002314814816,3.0097268121934324e-23,0.07858018001657589,6.51,6.51,0.0,-0.0,12.34,1618.3038,6.0194536e-23 -3.8913861047617844,0.05284859992046917,3.8913861047617844,1.6561036610735075e-23,0.520000462962963,1.6561036610735075e-23,0.05588938230540972,0.0,0.0,0.0,-0.0,7.114999999999999,1616.4541,3.3122073e-23 -3.660955712737292,0.064054780841787,3.660955712737292,9.274977661733586e-24,0.5183310185185186,9.274977661733586e-24,0.06789345171520227,0.0,0.0,0.0,-0.0,10.190000000000001,1612.8087,1.8549955e-23 -3.462494849370925,0.06584974425490743,3.462494849370925,4.989514854378049e-24,0.5159998842592592,4.989514854378049e-24,0.06994032541083561,0.0,0.0,0.0,-0.0,10.73,1609.4802,9.97903e-24 -3.365433497576284,0.06180481735761273,3.365433497576284,3.44,0.511999537037037,2.24787906816513e-24,0.06571345550816561,3.44,3.44,0.0,-0.0,9.870000000000001,1607.7822,4.495758e-24 -3.3912737215138904,0.07660214657227413,3.3912737215138904,5.72,0.511999537037037,1.2101002040497749e-24,0.08142345889970778,5.72,5.72,0.0,-0.0,13.285,1608.239,2.4202004e-24 -3.38436965360901,0.1092207372463255,3.38436965360901,4.15,0.5079996527777778,5.826797323860497e-25,0.11610383847061521,4.15,4.15,0.0,-0.0,19.29,1608.1173,1.1653595e-24 -3.4220095792238583,0.07596414657378878,3.4220095792238583,3.65,0.5067805555555556,2.112000045215913e-25,0.0807182598616981,3.65,3.65,0.0,-0.0,13.31,1608.7778,4.224e-25 -3.545763104918953,0.06548187237931366,3.545763104918953,11.27,0.503999537037037,1.109383226140394e-25,0.06948832872149706,11.27,11.27,0.0,-0.0,11.0,1610.8994,2.2187665e-25 -3.52781990867632,0.050516402848762444,3.52781990867632,0.62,0.4999997685185186,5.667220500236085e-26,0.053617293185348684,0.62,0.62,0.0,-0.0,7.08,1610.5964,1.1334441e-25 -3.378895197373402,0.04642378446722835,3.378895197373402,2.886565311720123e-26,0.4999997685185186,2.886565311720123e-26,0.04935238282438758,0.0,0.0,0.0,-0.0,5.815,1608.0206,5.7731306e-26 -3.229041680785848,0.048596820424063096,3.229041680785848,1.5430091572731792e-26,0.4959997685185185,1.5430091572731792e-26,0.051749687680558154,0.0,0.0,0.0,-0.0,6.66,1605.3115,3.0860183e-26 -3.1283088392375236,0.054386502104990075,3.1283088392375236,1.95,0.49366840277777774,5.953344125382437e-27,0.05798335640260419,1.95,1.95,0.0,-0.0,8.485,1603.4188,1.1906688e-26 -3.0521289965995253,0.05601111183987211,3.0521289965995253,1.43,0.4919994212962963,2.1700043943903913e-27,0.05977029202442517,1.43,1.43,0.0,-0.0,9.01,1601.9465,4.3400088e-27 -3.472353632672017,0.046809600514852646,3.472353632672017,17.8,0.48800034722222224,1.2619721442215472e-27,0.04971216475270315,17.8,17.8,0.0,-0.0,6.295,1609.65,2.5239443e-27 -4.384923302437952,0.04583871695986977,4.384923302437952,18.54,0.48800034722222224,7.361071803353177e-28,0.04826325422708976,18.54,18.54,0.0,-0.0,5.845,1623.5851,1.4722144e-27 -4.946622975546573,0.05030892750032352,4.946622975546573,6.51,0.4840002314814815,4.3947992808791635e-28,0.05273609862178622,6.51,6.51,0.0,-0.0,7.325,1630.7833,8.789599e-28 -4.966135333116451,0.04416530292456642,4.966135333116451,1.1121735057401024e-28,0.48167002314814816,1.1121735057401024e-28,0.04628939934422675,0.0,0.0,0.0,-0.0,5.41,1631.0184,2.224347e-28 -4.939408917232943,0.03839436034721814,4.939408917232943,5.95,0.4800005787037037,-5.269247549863697e-28,0.04024886029534999,5.95,5.95,0.0,-0.0,3.365,1630.6962,-1.0538495e-27 -4.895554374748382,0.037819396331220806,4.895554374748382,7.63,0.4760001157407408,-1.3360342617153959e-27,0.03965907756835976,7.63,7.63,0.0,-0.0,3.2700000000000005,1630.1636,-2.6720685e-27 -4.8471327945468685,0.039399364976114674,4.8471327945468685,4.62,0.4760001157407408,-2.165089421172315e-27,0.041330952743575705,4.62,4.62,0.0,-0.0,3.885,1629.57,-4.330179e-27 -4.806258360849434,0.04986087169924375,4.806258360849434,4.1,0.4719996527777777,-2.8630689663985987e-27,0.05232158184661924,4.1,4.1,0.0,-0.0,7.59,1629.0642,-5.726138e-27 -4.784713233326618,0.06943075948436937,4.784713233326618,5.46,0.4701513888888889,-3.2789508119156785e-27,0.07286927520767285,5.46,5.46,0.0,-0.0,12.870000000000001,1628.7959,-6.557902e-27 -4.794189788571286,0.07352755812734486,4.794189788571286,3.03,0.46799976851851854,-3.261713738913413e-27,0.0771633673257962,3.03,3.03,0.0,-0.0,13.870000000000001,1628.9141,-6.5234275e-27 -4.846974273365097,0.06212734724718184,4.846974273365097,1.1,0.463999537037037,-2.6603363359886652e-27,0.06517327201438991,1.1,1.1,0.0,-0.0,11.295,1629.568,-5.3206727e-27 -5.288912748579318,0.0647176368141594,5.288912748579318,17.81,0.463999537037037,-1.6261271706992802e-27,0.06767414650419444,17.81,17.81,0.0,-0.0,11.895,1634.779,-3.2522543e-27 -6.706307106888257,0.04965141221508919,6.706307106888257,23.21,0.46,-9.445914079311693e-28,0.05147318210601542,23.21,23.21,0.0,-0.0,7.735,1648.9587,-1.8891828e-27 -7.151069857984533,0.038473536121139414,7.151069857984533,-5.615815272978851e-28,0.45920532407407405,-5.615815272978851e-28,0.03979263408321888,0.0,0.0,0.0,-0.0,3.8550000000000004,1652.7936,-1.1231631e-27 -6.380336678557737,0.04251695773101232,6.380336678557737,0.29,0.45599953703703705,-3.333350677273089e-28,0.04415664092189997,0.29,0.29,0.0,-0.0,5.525,1645.983,-6.6667014e-28 -5.962388427195676,0.05604227324900898,5.962388427195676,3.79,0.45200810185185186,-1.9860913013956537e-28,0.058346989334794486,3.79,3.79,0.0,-0.0,9.959999999999999,1641.937,-3.9721826e-28 -6.0510460641821116,0.05408714926520529,6.0510460641821116,7.32,0.452,-1.1651299588265676e-28,0.05628124721363638,7.32,7.32,0.0,-0.0,9.395,1642.8185,-2.33026e-28 -6.602769659199063,0.04372386935854917,6.602769659199063,14.2,0.4480001157407407,-6.353331728476851e-29,0.045353707705585486,14.2,14.2,0.0,-0.0,6.2,1648.0295,-1.2706663e-28 -6.944105718655139,0.03765845732588747,6.944105718655139,6.34,0.4480001157407407,-3.742449313266602e-29,0.03899098594793943,6.34,6.34,0.0,-0.0,3.92,1651.0397,-7.4848986e-29 -6.549325722395168,0.036501754050347966,6.549325722395168,0.27,0.4440001157407408,-2.24152185287114e-29,0.03787353682385921,0.27,0.27,0.0,-0.0,3.62,1647.5442,-4.4830437e-29 -5.926665025284432,0.03407306435474235,5.926665025284432,0.18,0.44166932870370373,-1.2628000653832595e-29,0.0354820610051795,0.18,0.18,0.0,-0.0,2.7299999999999995,1641.5781,-2.5256e-29 -5.894540365419124,0.041219014210999064,5.894540365419124,11.19,0.4400003472222222,-7.006074224686203e-30,0.04293200054194969,11.19,11.19,0.0,-0.0,5.64,1641.2535,-1.4012148e-29 -6.099812953925256,0.04117615358371204,6.099812953925256,5.78,0.43611064814814815,-4.187017590397307e-30,0.04283400555296785,5.78,5.78,0.0,-0.0,5.74,1643.2979,-8.374035e-30 -5.970059209001748,0.04511489898565521,5.970059209001748,3.84,0.43600011574074077,-2.481673016563344e-30,0.04696803479728209,3.84,3.84,0.0,-0.0,7.15,1642.0138,-4.963346e-30 -5.740075882639023,0.040644314953363646,5.740075882639023,3.46,0.43200000000000005,-1.3630168268688521e-30,0.04237436088504406,3.46,3.46,0.0,-0.0,5.720000000000001,1639.6677,-2.7260337e-30 -5.561873038275147,0.03003970730399589,5.561873038275147,5.220029866862383,0.43194837962962956,2.986686240137611e-5,0.031354378279897184,5.22,5.219999999999982,1.738609256562995e-14,-0.0,1.24,1637.7843,5.971732e-5 -5.211410948166793,0.024087633755869045,5.211410948166793,0.16321001767698853,0.428,-8.831059976994745e-9,0.025201624847149,0.17,0.1632100265080485,0.006789973491951516,-0.0,-1.775,1633.8975,0.00071312464 -4.940428754053807,0.027489543561328357,4.940428754053807,3.350568802178795,0.4261517361111111,0.0005688025125444538,0.028817108116381267,3.35,3.3499999996662506,3.337494308697231e-10,-0.0,0.20999999999999996,1630.7085,0.0019266502 -4.8050992465911815,0.030682249645781756,4.8050992465911815,3.1609750595193336,0.42400011574074076,0.0009750595193333077,0.03219675019820708,3.16,3.16,0.0,-0.0,1.9000000000000001,1629.0498,0.0019314669 -4.557842928620394,0.039064514122701975,4.557842928620394,0.0006187871785224399,0.42121863425925926,0.0006187871785224399,0.04107231289486247,0.0,0.0,0.0,-0.0,5.63,1625.8949,0.0012300098 -4.223162578367124,0.05539127774223595,4.223162578367124,0.00034711356285361937,0.41999976851851856,0.00034711356285361937,0.05840182224589508,0.0,0.0,0.0,-0.0,11.135000000000002,1621.3403,0.00069183396 -4.156976172376659,0.060373007966014254,4.156976172376659,5.1902003221809405,0.4164640046296296,0.00020032218094042655,0.06369137021220524,5.19,5.19,0.0,-0.0,12.655,1620.397,0.00039984498 -4.881814463810133,0.04492073045471713,4.881814463810133,18.290116856048463,0.4159996527777778,0.00011685604846361201,0.04711069862348575,18.29,18.29,0.0,-0.0,7.92,1629.9957,0.00023343963 -5.623397142491267,0.029993831430033993,5.623397142491267,9.889651649476379,0.4121109953703704,-0.00034835052362106435,0.03129394139125079,9.89,9.89,0.0,-0.0,1.9000000000000001,1638.4413,-0.0006991451 -5.557804534638502,0.025321023927231946,5.557804534638502,-0.0006860366749156787,0.41200046296296294,-0.0006860366749156787,0.02642988959790027,0.0,0.0,0.0,-0.0,-0.55,1637.7406,0.0006908368 -5.098376561144977,0.02821703882701336,5.098376561144977,0.0009132546350401044,0.4080084490740741,0.0009132546350401044,0.029545685172915632,0.0,0.0,0.0,-0.0,1.205,1632.5879,0.0018101877 -4.7214372568480725,0.035667043352588974,4.7214372568480725,0.7705395413888043,0.40794895833333333,0.0005395413888043533,0.03745171261017808,0.77,0.77,0.0,-0.0,4.720000000000001,1628.0009,0.0010733227 -4.529831051872034,0.0393918943921511,4.529831051872034,3.9603204541528023,0.40399999999999997,0.0003204541528022296,0.04142589991712785,3.96,3.96,0.0,-0.0,6.395,1625.5267,0.00063886755 -4.366551973292631,0.03947878130208234,4.366551973292631,1.6201801128246245,0.4037145833333334,0.0001801128246243684,0.041573344105766824,1.62,1.62,0.0,-0.0,6.46,1623.3344,0.00035957916 -4.124778816721829,0.037021655667681994,4.124778816721829,0.00010219349631354387,0.40000023148148145,0.00010219349631354387,0.039067721955333014,0.0,0.0,0.0,-0.0,5.655,1619.9326,0.00020417855 -3.863661718433488,0.02690699624501989,3.863661718433488,7.144391025277094e-5,0.39971435185185183,7.144391025277094e-5,0.028462679321857365,0.0,0.0,0.0,-0.0,0.9600000000000002,1616.0271,0.0001428419 -3.627754814048097,0.021433889273683924,3.627754814048097,-2.716836594560248e-10,0.3960082175925926,-2.716836594560248e-10,0.022726044479545453,0.0,0.0,0.0,-0.0,-2.1399999999999997,1612.2646,0.00012943122 -3.419010156935202,0.02052659072380157,3.419010156935202,-1.1313528954204e-12,0.39571446759259266,-1.1313528954204e-12,0.021811929630832474,0.0,0.0,0.0,-0.0,-2.71,1608.7255,-0.0001402934 -3.242898941706666,0.02517177655316987,3.242898941706666,0.37047338569569427,0.3921108796296296,0.00047338570351813036,0.026800602969472544,0.37,0.36999999999217614,7.823866554623748e-12,-0.0,0.3650000000000002,1605.5673,0.0010835589 -3.1089492286495317,0.021384821363717887,3.1089492286495317,0.8145107697130828,0.3919487268518519,-1.8388441545009527e-9,0.022804380312732,1.0,0.814510771551927,0.18548922844807303,-0.0,-1.9449999999999998,1603.0481,0.010445681 -2.95588779363611,0.01517710581436963,2.95588779363611,0.0,0.3884644675925926,-0.0,0.016215083936322656,0.0,0.0,0.0,-0.0,-6.565,1600.0331,0.47434807 -2.8157554642455382,0.01666059889254126,2.8157554642455382,0.0,0.38799999999999996,-0.0,0.017832360855685056,0.0,0.0,0.0,-0.0,-5.245,1597.1326,0.47312495 -2.6881888296060974,0.01878355830446171,2.6881888296060974,1.9360317457216453e-5,0.3848466435185185,-2.147275935133807e-15,0.02013954485048115,13.71,1.936031745936373e-5,13.709980639682541,-0.0,-3.44,1594.3638,7.3179975 -2.5718735273652302,0.019848590119189845,2.5718735273652302,0.05921344558241864,0.3840003472222222,-5.941236679482397e-12,0.021316779833988837,10.48,0.05921344558835987,10.42078655441164,-0.0,-2.6100000000000003,1591.7222,19.372742 -2.466124760751554,0.019710981758445087,2.466124760751554,-6.542602220860709e-12,0.38166932870370374,-6.542602220860709e-12,0.021202392869746785,0.0,0.0,0.0,-0.0,-2.6,1589.2147,24.6049 -2.3679987159811406,0.0201640473070448,2.3679987159811406,-3.2073395590715443e-10,0.3799997685185186,-3.2073395590715443e-10,0.021722883670288996,0.0,0.0,0.0,-0.0,-2.195,1586.7899,24.629786 -2.293217337788222,0.02250616757148347,2.293217337788222,0.8289447535159082,0.37920590277777777,-0.0010550234454249157,0.024275385516305682,0.83,0.8299997769613332,2.2303866678174965e-7,-0.0,-0.5800000000000001,1584.8735,24.632801 -2.2965853828393605,0.0233456638996116,2.2965853828393605,3.9464421438580275,0.37611087962962964,-0.07355785443459736,0.025179482480680578,4.02,4.019999998292625,1.7073745484097456e-9,-0.0,0.06499999999999995,1584.9612,24.65751 -2.2827601614826647,0.020240133809353866,2.2827601614826647,-2.7542320685352056e-9,0.3759486111111111,-2.7542320685352056e-9,0.021834978475035453,0.0,0.0,0.0,-0.0,-1.97,1584.6006,24.67059 -2.199730888179531,0.020214012401671953,2.199730888179531,-7.48549155473093e-9,0.37321898148148147,-7.48549155473093e-9,0.021837291157140008,0.0,0.0,0.0,-0.0,-1.865,1582.388,24.671621 -2.120705354913312,0.02094160812787258,2.120705354913312,-1.6123037036692138e-6,0.3719998842592593,-1.6123037036692138e-6,0.02265459730150773,0.0,0.0,0.0,-0.0,-1.2949999999999995,1580.203,24.671482 -2.225218786375883,0.031674585798308126,2.225218786375883,13.030947684989755,0.37120578703703705,12.300947684989755,0.034203330768835784,0.73,0.73,0.0,-0.0,4.775,1583.0759,20.009142 -2.641978513782927,0.03380925419493548,2.641978513782927,9.311603889465331,0.3684645833333333,8.201603889465332,0.0362735061646823,1.11,1.11,0.0,-0.0,5.775,1593.3282,8.201604 -2.7706746667328725,0.024125412359742512,2.7706746667328725,1.5445504106683576,0.3680003472222222,1.5445504106683576,0.025837777591742238,0.0,0.0,0.0,-0.0,0.7550000000000003,1596.1687,3.1530123 -2.708646369948889,0.023786627325036055,2.708646369948889,1.2460016903173161,0.36615196759259255,1.2160016903173587,0.025496545444828756,0.03,0.029999999999957366,4.263256414560601e-14,-0.0,0.635,1594.8165,1.7609633 -2.808679327508142,0.025723053578019454,2.808679327508142,8.258829193741976,0.3644642361111111,0.658829193741976,0.02753478061952121,7.6,7.6,0.0,-0.0,1.825,1596.9823,0.65972793 -3.0487308116702736,0.023137101131937753,3.0487308116702736,7.425260266048641,0.36400011574074076,0.13526026651173606,0.024690970774713827,7.29,7.289999999536905,4.630957667339786e-10,-0.0,0.2549999999999999,1601.88,0.2539801 -3.045025186570355,0.01735691001544341,3.045025186570355,9.209864666459566e-9,0.3621513888888889,-0.0,0.018523426419136152,0.16,9.209864666459566e-9,0.15999999079013535,-0.0,-3.7600000000000002,1601.8074,0.94548255 -2.896507813621616,0.015806229694968584,2.896507813621616,0.0,0.3604638888888889,-0.0,0.01690003486038171,0.0,0.0,0.0,-0.0,-4.970000000000001,1598.8212,1.0275415 -2.761752264132931,0.018071242235990343,2.761752264132931,-7.686165917953781e-14,0.3599998842592593,-7.686165917953781e-14,0.019356232586487224,0.0,0.0,0.0,-0.0,-3.06,1595.9761,1.0306922 -2.638864371035443,0.01880323926394415,2.638864371035443,-2.910287262218322e-11,0.35920578703703704,-2.910287262218322e-11,0.020174641056360628,0.0,0.0,0.0,-0.0,-2.4450000000000003,1593.2578,1.0306915 -2.5263661914517543,0.01703176345251572,2.5263661914517543,0.0,0.3572189814814815,-0.0,0.0183038542158256,0.0,0.0,0.0,-0.0,-3.735,1590.656,1.03069 -2.4230877939621465,0.02217954289188846,2.4230877939621465,-0.06977822025659473,0.35611041666666665,-0.06977822025659473,0.023873529369512998,0.0,0.0,0.0,-0.0,0.08499999999999996,1588.1633,1.0306909 -2.3279490795471935,0.016084343069151352,2.3279490795471935,6.411071673539936e-13,0.3559483796296296,-0.0,0.01733891795422893,0.01,6.411071673539936e-13,0.009999999999358893,-0.0,-4.4399999999999995,1585.7712,1.0320945 -2.240141994509523,0.00983186299511236,2.240141994509523,0.0,0.3546476851851852,-0.0,0.010614114816104497,7.35,0.0,7.35,-0.0,-11.010000000000002,1583.4751,4.707971 -2.1587863932078273,0.010538880126353655,2.1587863932078273,0.0,0.35321898148148145,-0.0,0.011393279947002807,11.83,0.0,11.83,-0.0,-10.025,1581.2659,14.298355 -2.0831683206204494,0.007373036629714405,2.0831683206204494,0.0,0.35211030092592593,-0.0,0.007981525905657743,0.0,0.0,0.0,-0.0,-14.59,1579.1365,20.224653 -2.012752266059064,0.004727754316409627,2.012752266059064,0.0,0.35199988425925927,-0.0,0.005124595394107534,0.44,0.0,0.44,-0.0,-20.06,1577.0829,20.535421 -1.9469835575932204,0.004225258274063335,1.9469835575932204,0.0,0.35171423611111113,-0.0,0.00458568944686792,4.82,0.0,4.82,-0.0,-21.38,1575.0989,23.213163 -1.8853436792652623,0.0070842278241856444,1.8853436792652623,0.0,0.3506474537037037,-0.0,0.007697930095179978,3.32,0.0,3.32,-0.0,-14.995000000000001,1573.1776,27.257801 -1.8273353117219076,0.013455582439161978,1.8273353117219076,0.0,0.34966921296296294,-0.0,0.014638597658484813,3.6,0.0,3.6,-0.0,-6.525,1571.3113,30.767406 -1.7727198582692212,0.01155536120723398,1.7727198582692212,0.0,0.3488465277777778,-0.0,0.012585823671550065,1.38,0.0,1.38,-0.0,-8.535,1569.4991,33.243828 -1.7212806236338525,0.0111325525072638,1.7212806236338525,0.0,0.3481105324074074,-0.0,0.012138911565787943,0.0,0.0,0.0,-0.0,-8.99,1567.7406,33.92584 -1.6717337596356598,0.018411821776824995,1.6717337596356598,0.1877905464931704,0.3480079861111111,-1.2836963440556523e-9,0.02009857289002718,0.31,0.18779054777686674,0.12220945222313327,-0.0,-2.05,1565.9963,34.11156 -1.6720925927547685,0.021839101290629576,1.6720925927547685,3.64222261699283,0.34794849537037037,0.5422226170390229,0.02383963856996021,3.1,3.0999999999538073,4.619317706122672e-11,-0.0,0.3999999999999999,1566.0092,34.12756 -1.7288052187116874,0.018793165732256083,1.7288052187116874,4.992079843878604,0.34771435185185184,-1.9350601576061116e-8,0.02048862350653803,5.18,4.992079863229206,0.18792013677079392,-0.0,-1.765,1568.0011,34.54772 -1.6945640671893183,0.011956938015023495,1.6945640671893183,0.0,0.3472057870370371,-0.0,0.01304559353428577,4.47,0.0,4.47,-0.0,-7.99,1566.8064,38.833416 -1.6475634154128311,0.006460445765296755,1.6475634154128311,0.0,0.3466476851851852,-0.0,0.007056221693270001,0.0,0.0,0.0,-0.0,-15.945,1565.1266,41.035816 -1.6031962892491947,0.0038279412232334023,1.6031962892491947,0.0,0.3466476851851852,-0.0,0.004185309636002922,0.0,0.0,0.0,-0.0,-22.29,1563.4963,41.036304 -1.5611754868217893,0.00453233913148121,1.5611754868217893,0.0,0.3461518518518519,-0.0,0.004960501102462877,0.02,0.0,0.02,-0.0,-20.25,1561.9102,41.046116 -1.5212818859554633,0.005310871056985974,1.5212818859554633,0.0,0.3461518518518519,-0.0,0.005818338238750086,0.0,0.0,0.0,-0.0,-18.314999999999998,1560.3643,41.0703 -1.4833473379651136,0.006401039324715488,1.4833473379651136,0.0,0.3456693287037037,-0.0,0.007019458993624379,0.73,0.0,0.73,-0.0,-15.975,1558.8562,41.457073 -1.447213379033529,0.009236034867192681,1.447213379033529,0.0,0.3456693287037037,-0.0,0.010137928339918795,4.42,0.0,4.42,-0.0,-11.274999999999999,1557.3834,44.016846 -1.412733321453052,0.011110780846920456,1.412733321453052,0.0,0.3461518518518519,-0.0,0.012207029638693658,2.13,0.0,2.13,-0.0,-8.84,1555.9434,47.23262 -1.3798022200336155,0.013520093024232968,1.3798022200336155,0.0,0.3461518518518519,-0.0,0.014867516695151576,0.43,0.0,0.43,-0.0,-6.175,1554.5348,48.473248 -1.3483909726579995,0.009355270071288068,1.3483909726579995,0.0,0.3461518518518519,-0.0,0.010296733206769335,0.0,0.0,0.0,-0.0,-11.09,1553.1595,48.6927 -1.3183952791920812,0.005195041530476867,1.3183952791920812,0.0,0.3466476851851852,-0.0,0.0057227923532950425,0.0,0.0,0.0,-0.0,-18.535,1551.816,48.70263 -1.2896809353666685,0.004698299374003673,1.2896809353666685,0.0,0.3472057870370371,-0.0,0.00517997714162319,0.0,0.0,0.0,-0.0,-19.765,1550.501,48.720917 -1.2621774942738484,0.0071261306828508805,1.2621774942738484,0.0,0.34771435185185184,-0.0,0.00786324262122779,0.19,0.0,0.19,-0.0,-14.62,1549.2136,48.74429 -1.2358161931941816,0.010151384469957864,1.2358161931941816,0.0,0.34794849537037037,-0.0,0.01121054360071104,0.0,0.0,0.0,-0.0,-10.04,1547.9531,48.769474 -1.2105398138079342,0.013356778374134059,1.2105398138079342,0.0,0.34800000000000003,-0.0,0.014762146196609862,0.0,0.0,0.0,-0.0,-6.345,1546.719,48.793198 -1.186287095844449,0.010110275510697344,1.186287095844449,0.0,0.3480079861111111,-0.0,0.011182792496961162,0.0,0.0,0.0,-0.0,-10.075,1545.5104,48.81218 -1.163005125871135,0.00685103107833383,1.163005125871135,0.0,0.3484641203703704,-0.0,0.007583609635917414,0.0,0.0,0.0,-0.0,-15.105,1544.3267,48.823154 -1.1406369699453924,0.008887515922246968,1.1406369699453924,0.0,0.34921886574074074,-0.0,0.009845248938061522,0.0,0.0,0.0,-0.0,-11.790000000000001,1543.1669,48.824615 -1.1191015479100095,0.008528407400102377,1.1191015479100095,0.0,0.35015162037037034,-0.0,0.009454416284229408,0.0,0.0,0.0,-0.0,-12.35,1542.0286,48.824615 -1.0983565608480326,0.008980073222456041,1.0983565608480326,0.0,0.35120578703703703,-0.0,0.009962342901381298,0.0,0.0,0.0,-0.0,-11.71,1540.9111,48.824615 -1.078355352436258,0.011327054895775016,1.078355352436258,0.0,0.3519482638888889,-0.0,0.012575001790011897,1.57,0.0,1.57,-0.0,-8.665000000000001,1539.8136,48.824615 -1.059060345709108,0.016398809754472624,1.059060345709108,6.465009996815817e-6,0.35200787037037035,-5.598314130478425e-16,0.018218289414879952,21.57,6.465009997375648e-6,21.56999353499,-0.0,-3.595,1538.7354,48.824615 -1.040440171014385,0.021730832333529796,1.040440171014385,18.852866881188508,0.35284641203703704,0.5128668814905347,0.024158541906272965,18.34,18.339999999697973,3.0202605749707344e-10,-0.0,0.39,1537.676,48.824615 -1.0224629068886137,0.01875820336090967,1.0224629068886137,1.4552201724401514,0.3541518518518519,-1.9350601576061116e-8,0.020867944961407214,1.51,1.455220191790753,0.054779808209246966,-0.0,-1.7650000000000001,1536.6351,48.824615 -1.0050961692566251,0.011701747044003875,1.0050961692566251,0.0,0.35571446759259256,-0.0,0.013026519453091712,0.0,0.0,0.0,-0.0,-8.335,1535.612,48.824615 -0.9883132487161074,0.00843759309237816,0.9883132487161074,0.0,0.35600000000000004,-0.0,0.009398980758820272,1.3,0.0,1.3,-0.0,-12.64,1534.6064,48.824615 -0.9720867180896204,0.010829682754666342,0.9720867180896204,0.0,0.3564643518518519,-0.0,0.012071404296334184,2.6,0.0,2.6,-0.0,-9.38,1533.6178,48.824615 -0.9563904764826363,0.007324825062906902,0.9563904764826363,0.0,0.35815185185185183,-0.0,0.00816986173620035,0.0,0.0,0.0,-0.0,-14.510000000000002,1532.6456,48.824615 -0.9411996720472414,0.005854098752981733,0.9411996720472414,0.0,0.3599482638888889,-0.0,0.006533539534247674,0.0,0.0,0.0,-0.0,-17.369999999999997,1531.6895,48.824615 -0.9264925235674956,0.009364565265857416,0.9264925235674956,0.0,0.36000787037037035,-0.0,0.010457861005229864,1.19,0.0,1.19,-0.0,-11.399999999999999,1530.7489,48.824615 -0.9122445133381275,0.01747997314256315,0.9122445133381275,0.0011096763575972578,0.36121863425925926,-1.663260315084479e-13,0.01953253776128302,7.9,0.0011096763577635837,7.898890323642236,-0.0,-2.98,1529.8234,48.824615 -0.8984359610045987,0.011011894327629211,0.8984359610045987,0.0,0.3637142361111111,-0.0,0.01231228363622813,11.05,0.0,11.05,-0.0,-9.385,1528.9125,48.824615 -0.8850444455444797,0.003971870420758405,0.8850444455444797,0.0,0.36400011574074076,-0.0,0.004443513227109926,0.0,0.0,0.0,-0.0,-22.16,1528.0156,48.824615 -0.8720521537665514,0.003276362508924955,0.8720521537665514,0.0,0.36521898148148146,-0.0,0.0036675364953608304,0.0,0.0,0.0,-0.0,-24.439999999999998,1527.1324,48.824615 -0.8594402924581276,0.004086560858332519,0.8594402924581276,0.0,0.36771435185185186,-0.0,0.004577074190209306,0.0,0.0,0.0,-0.0,-21.93,1526.2625,48.824615 -0.8471926359808474,0.0040291683875949965,0.8471926359808474,0.0,0.3680083333333333,-0.0,0.0045153287466632485,0.0,0.0,0.0,-0.0,-22.1,1525.4053,48.824615 -0.8352885295150754,0.0036179344002437884,0.8352885295150754,0.0,0.3696696759259259,-0.0,0.00405672264728195,0.0,0.0,0.0,-0.0,-23.41,1524.5602,48.824615 -0.8237149938707499,0.004045494492145443,0.8237149938707499,0.0,0.3719483796296296,-0.0,0.004538618429858965,0.0,0.0,0.0,-0.0,-22.165,1523.7269,48.824615 -0.8124512658086263,0.0044157118657543095,0.8124512658086263,0.0,0.37211041666666667,-0.0,0.004956638108050724,0.0,0.0,0.0,-0.0,-21.125,1522.9047,48.80958 -0.801464418886203,0.008442018618397704,0.801464418886203,0.0,0.3746479166666667,-0.0,0.009481231066639714,10.81,0.0,10.81,-0.0,-13.185,1522.0916,54.285076 -0.7906859449414855,0.017736774240634395,0.7906859449414855,0.00016538927486680515,0.3760002314814815,-1.1222087192352148e-14,0.019930759045945604,19.36,0.00016538927487802724,19.359834610725123,-0.0,-3.26,1521.283,69.32542 -0.7802182663694799,0.005734752490201235,0.7802182663694799,0.0,0.3772188657407407,-0.0,0.006447497033711821,0.0,0.0,0.0,-0.0,-18.11,1520.487,78.76639 -0.7700921986664193,0.004070073537269234,0.7700921986664193,0.0,0.3799997685185186,-0.0,0.004578272295873498,0.0,0.0,0.0,-0.0,-22.314999999999998,1519.7069,78.77257 -0.7602389493354652,0.003982323259438881,0.7602389493354652,0.0,0.3804640046296296,-0.0,0.00448183333405233,0.0,0.0,0.0,-0.0,-22.58,1518.9379,78.77257 -0.7506253015469199,0.005033786507240711,0.7506253015469199,0.0,0.383714699074074,-0.0,0.005668019563998285,0.0,0.0,0.0,-0.0,-19.884999999999998,1518.1779,78.77257 -0.7412074578535722,0.011975826663251582,0.7412074578535722,0.0,0.38400833333333334,-0.0,0.013491424362646614,0.0,0.0,0.0,-0.0,-8.89,1517.4238,78.7372 -0.7319541556770084,0.015686302757780587,0.7319541556770084,5.627831534127381e-14,0.3866476851851852,-0.0,0.017680220264315726,5.54,5.627831534127381e-14,5.539999999999943,-0.0,-5.315,1516.6736,81.49587 -0.7229183249177851,0.013140782288330438,0.7229183249177851,0.0,0.38799999999999996,-0.0,0.014818381395059105,8.84,0.0,8.84,-0.0,-7.77,1515.9318,88.71029 -0.7141341590119054,0.009794388771818973,0.7141341590119054,0.0,0.3901519675925926,-0.0,0.01105009729823797,4.36,0.0,4.36,-0.0,-11.73,1515.2017,95.35989 -0.7055807506926673,0.00955619652127677,0.7055807506926673,0.0,0.39200034722222227,-0.0,0.010786489905050973,1.78,0.0,1.78,-0.0,-12.105,1514.482,98.47849 -0.6972281185021156,0.01028678344170068,0.6972281185021156,0.0,0.3936696759259259,-0.0,0.011616589779268388,0.0,0.0,0.0,-0.0,-11.195,1513.7709,99.50693 -0.6890785858386336,0.00820587356555077,0.6890785858386336,0.0,0.39600023148148145,-0.0,0.009270974092003573,0.0,0.0,0.0,-0.0,-14.18,1513.0687,100.30507 -0.6811217586366048,0.00886235417347096,0.6811217586366048,0.0,0.3972188657407407,-0.0,0.010017256128844743,2.54,0.0,2.54,-0.0,-13.23,1512.3751,101.38857 -0.6733517713694355,0.007295728159825165,0.6733517713694355,0.0,0.40000023148148145,-0.0,0.008250212245016956,0.0,0.0,0.0,-0.0,-15.780000000000001,1511.69,102.351456 -0.6657697566631529,0.006385298239360393,0.6657697566631529,0.0,0.4012189814814815,-0.0,0.007223904463941687,0.0,0.0,0.0,-0.0,-17.47,1511.0137,102.357285 -0.658347124964074,0.008132647039353047,0.658347124964074,0.0,0.40399999999999997,-0.0,0.009204818235334896,0.08,0.0,0.08,-0.0,-14.524999999999999,1510.3441,102.76044 -0.6510737854520379,0.009451804276659282,0.6510737854520379,0.0,0.40521898148148144,-0.0,0.010702588512248711,2.52,0.0,2.52,-0.0,-12.635000000000002,1509.6807,104.069244 -0.6439689868910555,0.006526840482628706,0.6439689868910555,0.0,0.4080003472222223,-0.0,0.007393765158289653,0.0,0.0,0.0,-0.0,-17.39,1509.0254,105.114174 -0.6370211419301791,0.007923193038505187,0.6370211419301791,0.0,0.40966990740740744,-0.0,0.008979442509358478,1.23,0.0,1.23,-0.0,-15.015,1508.3776,105.75027 -0.6302255456082806,0.005925810334634992,0.6302255456082806,0.0,0.41200046296296294,-0.0,0.006718639485898402,2.24,0.0,2.24,-0.0,-18.685000000000002,1507.737,107.6019 -0.6235865634741757,0.005206091134723838,0.6235865634741757,0.0,0.41464768518518513,-0.0,0.005905104231752491,0.0,0.0,0.0,-0.0,-20.325000000000003,1507.1046,108.70543 -0.6170654461359957,0.010029447973156459,0.6170654461359957,0.0,0.4159996527777778,-0.0,0.011380825935391727,0.0,0.0,0.0,-0.0,-12.18,1506.4768,108.64958 -0.6106624496837326,0.008377226693790391,0.6106624496837326,0.0,0.419205324074074,-0.0,0.00950991501870846,3.27,0.0,3.27,-0.0,-14.58,1505.8539,110.23294 -0.6043790128980047,0.012257779479995309,0.6043790128980047,0.0,0.41999976851851856,-0.0,0.013920869075054429,13.74,0.0,13.74,-0.0,-9.665,1505.2362,118.7724 -0.5982030245596518,0.01192418090310215,0.5982030245596518,0.0,0.42400011574074076,-0.0,0.013547529887634689,2.97,0.0,2.97,-0.0,-10.15,1504.6228,127.05728 -0.5921349281778641,0.015680213063842888,0.5921349281778641,0.0,0.42400011574074076,-0.0,0.017822117637410647,0.63,0.0,0.63,-0.0,-6.470000000000001,1504.0139,128.7157 -0.5861559420657405,0.01811898764395742,0.5861559420657405,1.041636177312455e-10,0.428,-0.0,0.020602329087354907,8.46,1.041636177312455e-10,8.459999999895837,-0.0,-4.6049999999999995,1503.4078,133.3837 -0.5802954461057757,0.016225570655360875,0.5802954461057757,0.0,0.42846388888888887,-0.0,0.01845677245125568,5.49,0.0,5.49,-0.0,-6.135,1502.8077,140.2967 -0.5745933676317374,0.00889814466887732,0.5745933676317374,0.0,0.43200000000000005,-0.0,0.010125714935704924,0.01,0.0,0.01,-0.0,-14.165,1502.218,143.07294 -0.5690426887236723,0.006939936674491429,0.5690426887236723,0.0,0.4336695601851852,-0.0,0.007900405275267322,0.0,0.0,0.0,-0.0,-17.325,1501.6383,143.08952 -0.5635997727830145,0.009863702513347405,0.5635997727830145,0.0,0.43600011574074077,-0.0,0.011233106110966937,0.7,0.0,0.7,-0.0,-12.955,1501.0643,143.10442 -0.5582545604816622,0.007198995149292361,0.5582545604816622,0.0,0.4399488425925926,-0.0,0.00820155988030758,0.0,0.0,0.0,-0.0,-17.04,1500.4952,143.32094 -0.55301542861554,0.007559312576102877,0.55301542861554,0.0,0.4400003472222222,-0.0,0.0086152899187979,1.28,0.0,1.28,-0.0,-16.43,1499.9321,144.0653 -0.5478366630727449,0.015836980797862006,0.5478366630727449,0.0,0.4440001157407408,-0.0,0.018056048173031414,2.56,0.0,2.56,-0.0,-6.92,1499.3702,146.03848 -0.542714159824701,0.015680513880033522,0.542714159824701,0.0,0.4440081018518519,-0.0,0.01788434918849572,0.07,0.0,0.07,-0.0,-7.05,1498.8092,147.42955 -0.537714288409098,0.01037462509973989,0.537714288409098,0.0,0.4480001157407407,-0.0,0.011837103667893747,4.03,0.0,4.03,-0.0,-12.63,1498.2565,149.90999 -0.5328345354481565,0.007954617897449771,0.5328345354481565,0.0,0.4501516203703704,-0.0,0.009079254794548379,5.17,0.0,5.17,-0.0,-16.060000000000002,1497.712,154.45653 -0.5280692222144476,0.004783652067434425,0.5280692222144476,0.0,0.452,-0.0,0.005461929156544789,0.0,0.0,0.0,-0.0,-22.28,1497.1755,156.95847 -0.5233925276394935,0.006462524233137207,0.5233925276394935,0.0,0.45599953703703705,-0.0,0.0073814688835500694,0.0,0.0,0.0,-0.0,-18.775,1496.6443,156.98692 -0.5187858814101015,0.007940578362767452,0.5187858814101015,0.0,0.45599953703703705,-0.0,0.009072896838452338,0.0,0.0,0.0,-0.0,-16.23,1496.1163,156.98613 -0.5142376494118781,0.010588322627512732,0.5142376494118781,0.0,0.46,-0.0,0.012102460734712758,0.0,0.0,0.0,-0.0,-12.685,1495.5905,156.9856 -0.5097334597271017,0.017705722604692768,0.5097334597271017,0.0,0.4604638888888889,-0.0,0.020244766113886942,0.0,0.0,0.0,-0.0,-5.855,1495.0651,156.98645 -0.5052759516630446,0.016926791274678703,0.5052759516630446,0.0,0.463999537037037,-0.0,0.019360926829152546,0.01,0.0,0.01,-0.0,-6.57,1494.5405,156.81897 -0.5008973522694794,0.01625177171111575,0.5008973522694794,0.0,0.46799976851851854,-0.0,0.018595304066903535,8.13,0.0,8.13,-0.0,-7.235,1494.0208,160.82236 -0.49658917724765006,0.022705804124650664,0.49658917724765006,0.06312207210810263,0.46799976851851854,-6.234842582536771e-12,0.025988992344117733,10.63,0.06312207211433747,10.566877927885663,-0.0,-2.605,1493.5049,170.16629 -0.4923391896012613,0.01842354695821049,0.4923391896012613,0.0,0.4719996527777777,-0.0,0.02109478430095082,0.0,0.0,0.0,-0.0,-5.63,1492.9916,175.39769 -0.4888704629958222,0.024939762308268103,0.4888704629958222,0.6894187321121407,0.4719996527777777,-6.956272623157752e-7,0.028563866590875734,0.69,0.689419427739403,0.0005805722605969504,-0.0,-1.3849999999999998,1492.5693,175.6289 -0.5235326948604008,0.03336674133886738,0.5235326948604008,11.627767848340614,0.4760001157407408,6.697767848340615,0.03811094898596305,4.93,4.93,0.0,-0.0,2.6799999999999997,1496.6603,173.77812 -0.5750563039193328,0.024233080713659556,0.5750563039193328,2.388871881930679,0.4800005787037037,-6.268079050483858e-10,0.027575345264806504,5.68,2.388871882557487,3.2911281174425127,-0.0,-2.125,1502.2661,172.8837 -0.5716284042328068,0.010785277629692289,0.5716284042328068,0.0,0.4800005787037037,-0.0,0.012275717727650773,1.46,0.0,1.46,-0.0,-13.05,1501.909,176.1981 -0.5661202533257798,0.008200224673558517,0.5661202533257798,0.0,0.4840002314814815,-0.0,0.00933702572092236,0.0,0.0,0.0,-0.0,-16.615000000000002,1501.3308,176.93718 -0.5607178978853378,0.009163332267481778,0.5607178978853378,0.0,0.4840002314814815,-0.0,0.010437630459696317,0.0,0.0,0.0,-0.0,-15.219999999999999,1500.7582,177.01347 -0.5554068290520667,0.010703661599407064,0.5554068290520667,0.0,0.48800034722222224,-0.0,0.012196784690912215,0.0,0.0,0.0,-0.0,-13.344999999999999,1500.1898,177.0778 -0.5501843012164922,0.014588577974731084,0.5501843012164922,0.0,0.4919994212962963,-0.0,0.01662988757990336,0.16,0.0,0.16,-0.0,-9.405,1499.6256,177.13086 -0.5450509875134828,0.013444537759668269,0.5450509875134828,0.0,0.4919994212962963,-0.0,0.01533149060416922,0.0,0.0,0.0,-0.0,-10.48,1499.0658,177.17332 -0.5400075111720715,0.011333267265853767,0.5400075111720715,0.0,0.4959997685185185,-0.0,0.012928689529098949,0.0,0.0,0.0,-0.0,-12.805,1498.5106,177.2059 -0.5350511673453455,0.012385802090973114,0.5350511673453455,0.0,0.4959997685185185,-0.0,0.014134587282808846,0.0,0.0,0.0,-0.0,-11.649999999999999,1497.96,177.2293 -0.5301825774516298,0.014186146223476408,0.5301825774516298,0.0,0.4999997685185186,-0.0,0.016195028836335907,0.12,0.0,0.12,-0.0,-9.97,1497.4141,177.24419 -0.5254023181509645,0.012437066426851271,0.5254023181509645,0.0,0.503999537037037,-0.0,0.01420339454186873,0.0,0.0,0.0,-0.0,-11.795,1496.8732,177.25127 -0.5207066666901395,0.013243818355122164,0.5207066666901395,0.0,0.503999537037037,-0.0,0.015130141553091449,0.0,0.0,0.0,-0.0,-10.969999999999999,1496.337,177.25209 -0.5160835725064029,0.014906320999213542,0.5160835725064029,0.0,0.5079996527777778,-0.0,0.017035498683238812,0.0,0.0,0.0,-0.0,-9.51,1495.8044,177.25209 -0.5115328913218543,0.015258328992025763,0.5115328913218543,0.0,0.5079996527777778,-0.0,0.017443954872835028,0.0,0.0,0.0,-0.0,-9.195,1495.2755,177.26022 -0.5070016097159544,0.025099879035537103,0.5070016097159544,0.008784215482372518,0.511999537037037,-2.288211141923808e-11,0.028705424243727486,0.39,0.00878421550525463,0.38121578449474536,-0.0,-2.47,1494.7441,177.47264 -0.5433557313323856,0.037354560097519064,0.5433557313323856,12.924687574268642,0.5159998842592592,7.914687574268642,0.04260259287747293,5.01,5.01,0.0,-0.0,3.135,1498.8798,175.51944 -0.695970834956393,0.038921483554543265,0.695970834956393,18.28835278858974,0.5159998842592592,9.158352788589742,0.043956121676341525,9.13,9.13,0.0,-0.0,3.6,1513.6631,167.10083 -0.8802507842897193,0.03329577914123732,0.8802507842897193,11.527880014026461,0.520000462962963,2.337880014026668,0.037257420393386684,9.19,9.189999999999793,2.060995818453648e-13,-0.0,1.05,1527.6913,161.38272 -0.9480270501076228,0.028273401400377023,0.9480270501076228,0.8794771260737251,0.520000462962963,-9.650050775296264e-7,0.03154599049158279,0.88,0.8794780910788026,0.0005219089211973759,-0.0,-1.35,1532.1211,160.73949 -0.939101170443905,0.028064029564579845,0.939101170443905,-1.344359571664603e-7,0.5240002314814816,-1.344359571664603e-7,0.03132393441209531,0.0,0.0,0.0,-0.0,-1.56,1531.5562,160.84499 -0.9342591270102543,0.03455504891114224,0.9342591270102543,3.100471017828526,0.5279998842592593,3.100471017828526,0.03857672351055833,0.0,0.0,0.0,-0.0,1.335,1531.2474,160.1737 -1.0296166552884396,0.037728711207148255,1.0296166552884396,11.63356747489373,0.5279998842592593,6.403567474893731,0.04196070228039338,5.23,5.23,0.0,-0.0,2.5700000000000003,1537.0515,155.95447 -1.1594968825374574,0.031172354595399875,1.1594968825374574,7.6647349272583,0.5319998842592593,-0.005264764466906021,0.034509636158880905,7.67,7.669999691725206,3.0827479359285537e-7,-0.0,-0.39,1544.1462,154.15294 -1.2675992440106072,0.0326529049075723,1.2675992440106072,5.691778636398101,0.5319998842592593,0.09177863685487875,0.03602450012841053,5.6,5.599999999543222,4.5677785998066153e-10,-0.0,0.2300000000000002,1549.4696,154.1325 -1.3404189950098384,0.03423154882117343,1.3404189950098384,3.9587599609011708,0.5359994212962963,1.598759960901998,0.03768501670725063,2.36,2.359999999999173,8.270428786261163e-13,-0.0,0.775,1552.8054,153.31987 -1.4024503446194991,0.036913621989578094,1.4024503446194991,4.223809579156443,0.5395353009259259,4.223809579156443,0.04056709128605264,0.0,0.0,0.0,-0.0,1.755,1555.5071,150.41354 -1.415253627477213,0.032465588064095365,1.415253627477213,1.0632851001906545,0.54,-0.03671489652559864,0.03566637581742835,1.1,1.099999996716253,3.2837470853586127e-9,-0.0,-0.1299999999999999,1556.0498,148.9664 -1.4592854243500661,0.03378001445735483,1.4592854243500661,5.832083834234956,0.5439997685185185,0.31208383441801524,0.0370668059921307,5.52,5.519999999816941,1.8305899462944806e-10,-0.0,0.31999999999999984,1557.8795,148.9741 -1.491943677435717,0.03248939632206012,1.491943677435717,0.0846898979128241,0.5439997685185185,-0.01531010104523014,0.035620388867759714,0.1,0.09999999895805424,1.0419457630028716e-9,-0.0,-0.2549999999999999,1559.2013,148.97319 -1.4839629661619431,0.03657370073719519,1.4839629661619431,3.16734059107737,0.5479999999999999,3.16734059107737,0.04010653560385698,0.0,0.0,0.0,-0.0,1.3599999999999999,1558.881,147.82309 -1.4667046432990523,0.02669947838661423,1.4667046432990523,8.08541327408547e-6,0.5498481481481481,-2.1487192982738744e-14,0.02929164019068202,0.47,8.085413295572663e-6,0.4699919145867044,-0.0,-3.19,1558.1824,147.25409 -1.4309088233204028,0.02734627131589033,1.4309088233204028,0.0011270208646383245,0.5520004629629629,-3.788564842227823e-13,0.03002966589933855,3.43,0.001127020865017181,3.428872979134983,-0.0,-2.895,1556.7068,149.28595 -1.396871472942496,0.021285598063869395,1.396871472942496,0.0,0.5559922453703704,-0.0,0.023395887827669784,0.0,0.0,0.0,-0.0,-6.455,1555.269,151.00436 -1.364452345818887,0.021588342138373448,1.364452345818887,0.0,0.5560002314814815,-0.0,0.023750061239220768,0.0,0.0,0.0,-0.0,-6.25,1553.8667,151.11398 -1.3334423244714764,0.02674787415493321,1.3334423244714764,-3.684983916551572e-15,0.56,-3.684983916551572e-15,0.029452258589082958,0.0,0.0,0.0,-0.0,-3.3699999999999997,1552.4938,151.11128 -1.3037098842741157,0.030017931259094507,1.3037098842741157,-2.6964590533875313e-8,0.5600517361111111,-2.6964590533875313e-8,0.03308163578607462,0.0,0.0,0.0,-0.0,-1.7299999999999995,1551.1471,151.10919 -1.271535928062592,0.034824998087084794,1.271535928062592,0.29834340043942525,0.5639996527777777,0.29834340043942525,0.038416282869941566,0.0,0.0,0.0,-0.0,0.3150000000000004,1549.6548,151.2801 -1.3140771266366522,0.040644193511706395,1.3140771266366522,6.202976311024732,0.5663305555555556,6.202976311024732,0.04477878542869009,0.0,0.0,0.0,-0.0,2.495,1551.6201,147.9943 -1.497684881537266,0.04771116844122791,1.497684881537266,12.274202196509755,0.5679997685185185,12.274202196509755,0.05230138428720073,0.0,0.0,0.0,-0.0,4.765000000000001,1559.4307,138.74527 -1.9128107520861155,0.05894477317014499,1.9128107520861155,20.257730507789756,0.5715351851851852,20.257730507789756,0.0640159737445095,0.0,0.0,0.0,-0.0,7.75,1574.0414,122.45982 -2.9016929560839464,0.0748176533219092,2.9016929560839464,34.24178775458975,0.5719994212962963,29.551787754589753,0.07998975770398604,4.69,4.69,0.0,-0.0,11.225,1598.928,97.61237 -4.837818575642083,0.06327210948043856,4.837818575642083,34.71453200090975,0.5760005787037037,21.43453200090975,0.0663787581171503,13.28,13.28,0.0,-0.0,8.19,1629.4551,72.22063 -6.826898235823859,0.04163227523581119,6.826898235823859,18.563336207930107,0.5760005787037037,4.063336207930106,0.04313197355826629,14.5,14.5,8.049116928532385e-16,-0.0,1.6949999999999998,1650.0231,59.501465 -7.685589709938826,0.04141657789301221,7.685589709938826,10.211435993741377,0.5800003472222222,3.4214359937413796,0.04272529654927095,6.79,6.789999999999997,2.6384450180216846e-15,-0.0,1.455,1657.0985,55.738865 -7.636950080552693,0.04120933066042374,7.636950080552693,4.460714354726122,0.5807946759259259,3.1807143547261227,0.042521229548068855,1.28,1.279999999999999,1.2079226507921704e-15,-0.0,1.3649999999999998,1656.7194,52.442078 -7.012271399972391,0.038247370852041024,7.012271399972391,0.12347207344949834,0.5840005787037037,0.12347207344949834,0.03958675045224155,0.0,0.0,0.0,-0.0,0.2450000000000001,1651.623,50.800343 -6.598007173524691,0.04452783363433921,6.598007173524691,6.122739845410214,0.5853530092592593,6.122739845410214,0.04618884801588471,0.0,0.0,0.0,-0.0,2.465,1647.9865,47.650993 -6.8175412136825155,0.05088456960503305,6.8175412136825155,11.204382657309754,0.5880002314814815,11.204382657309754,0.052720175726540044,0.0,0.0,0.0,-0.0,4.365,1649.9412,38.98486 -7.620125197106935,0.05844876882765223,7.620125197106935,16.486616632109754,0.5903311342592593,16.486616632109754,0.06031428032054998,0.0,0.0,0.0,-0.0,6.34,1656.5876,25.086765 -8.59036329487717,0.06516498508051359,8.59036329487717,10.519589004516602,0.5920008101851852,9.959589004516602,0.06695557424071967,0.56,0.56,0.0,-0.0,7.9,1663.745,9.959589 -8.418723148661334,0.06208459088433464,8.418723148661334,5.329229755401611,0.5943310185185184,3.659229755401611,0.0638367850596671,1.67,1.67,0.0,-0.0,7.1049999999999995,1662.5397,3.6592298 -7.829709383882369,0.05211245586456612,7.829709383882369,2.8137114410469235,0.5959997685185184,1.3437114410469235,0.05372318266265242,1.47,1.47,0.0,-0.0,4.445,1658.208,1.3437134 -8.05418981579543,0.049912623936088266,8.05418981579543,16.230006333359295,0.5987809027777777,0.49000633335929333,0.05140302687705029,15.74,15.74,0.0,-0.0,3.715,1659.8961,0.4935287 -8.282921839091582,0.04683547695527189,8.282921839091582,3.905890807861727,0.5999998842592592,0.16589080786172705,0.048185448188283624,3.74,3.74,0.0,-0.0,2.725,1661.5685,0.19056346 -7.5319658508408,0.04403714497633224,7.5319658508408,0.71102128181337,0.6027810185185185,0.06102128181336997,0.045461751561598054,0.65,0.65,0.0,-0.0,1.7999999999999998,1655.8927,0.0866706 -6.721691352753161,0.047015767571510506,6.721691352753161,0.02741343737395106,0.6039996527777778,0.02741343737395106,0.048736788017099866,0.0,0.0,0.0,-0.0,2.795,1649.0956,0.04490894 -6.038764173546576,0.05011896048924885,6.038764173546576,0.013977874824179747,0.6063304398148148,0.013977874824179747,0.05215593720659803,0.0,0.0,0.0,-0.0,3.7450000000000006,1642.6971,0.024877228 -5.479564885291111,0.0762337691335381,5.479564885291111,0.0076304689418392945,0.6079995370370371,0.0076304689418392945,0.07961337915456737,0.0,0.0,0.0,-0.0,10.185,1636.8939,0.014247671 -5.014761584699103,0.09291122735213282,5.014761584699103,0.014318881762957699,0.6098476851851852,0.0043188817629577,0.09734499126137468,0.01,0.01,0.0,-0.0,13.345,1631.6003,0.008294008 -4.655808907037419,0.08908961427060726,4.655808907037419,0.9724780905349097,0.6120002314814815,0.002478090534909804,0.09359544373566529,0.97,0.97,0.0,-0.0,12.655,1627.1649,0.0048391186 -4.338864254766603,0.0754307932763658,4.338864254766603,0.0014031675170751772,0.6133524305555556,0.0014031675170751772,0.0794513974340728,0.0,0.0,0.0,-0.0,10.015,1622.9545,0.0027680276 -4.043900649737836,0.09881181633747435,4.043900649737836,0.0008016864477774334,0.6159914351851852,0.0008016864477774334,0.10434900253297452,0.0,0.0,0.0,-0.0,14.31,1618.75,0.0015907212 -3.952075366307476,0.12022574330393263,3.952075366307476,3.030443008286031,0.6162851851851852,0.00044300828603116435,0.12707059424419018,3.03,3.03,0.0,-0.0,17.555,1617.3783,0.00088212587 -4.15802993735837,0.08015469135554244,4.15802993735837,12.73022992564385,0.6195356481481481,0.00022992564384845734,0.08455955077656574,12.73,12.73,0.0,-0.0,10.84,1620.4121,0.0004587988 -4.3844214053510315,0.05627254760697862,4.3844214053510315,0.00012931438373014036,0.6199998842592592,0.00012931438373014036,0.05924920866761005,0.0,0.0,0.0,-0.0,5.325,1623.5782,0.0002582952 -4.180895884831171,0.07629158098841791,4.180895884831171,5.730862693984069e-5,0.6227818287037037,5.730862693984069e-5,0.08046788116937507,0.0,0.0,0.0,-0.0,9.975000000000001,1620.7396,0.00011455164 -3.8702775679334267,0.10456309462948567,3.8702775679334267,2.265937369408372e-5,0.6240006944444445,2.265937369408372e-5,0.1106016312696805,0.0,0.0,0.0,-0.0,15.049999999999999,1616.1293,4.5308483e-5 -3.6606788469587452,0.09727762988938703,3.6606788469587452,0.9500134055875608,0.6253526620370371,1.3405587560827689e-5,0.103107566317138,0.95,0.95,0.0,-0.0,13.87,1612.8042,2.6807582e-5 -3.472779516680236,0.06671722620237097,3.472779516680236,7.910981371783034e-6,0.6278895833333333,7.910981371783034e-6,0.07085389776821772,0.0,0.0,0.0,-0.0,7.864999999999999,1609.6573,1.5820711e-5 -3.2826605421093444,0.09587407385652638,3.2826605421093444,4.161153234921035e-6,0.6280518518518519,4.161153234921035e-6,0.10203168603721498,0.0,0.0,0.0,-0.0,13.63,1606.295,8.32196e-6 -3.105678219232395,0.13733469530460712,3.105678219232395,1.7960169001676434e-6,0.6303303240740741,1.7960169001676434e-6,0.14645693753803465,0.0,0.0,0.0,-0.0,19.57,1602.9852,3.5919693e-6 -2.9498821582256953,0.16416671645742,2.9498821582256953,9.131044108626663e-7,0.6319916666666667,9.131044108626663e-7,0.17540756504579072,0.0,0.0,0.0,-0.0,22.63,1599.9116,1.8261921e-6 -2.832872392823586,0.15074198782909556,2.832872392823586,1.421298807014372e-7,0.6322856481481481,1.421298807014372e-7,0.1613073161846608,0.0,0.0,0.0,-0.0,21.17,1597.4945,2.8425936e-7 -2.738502409129026,0.08279784000647587,2.738502409129026,2.199999446990262,0.6347809027777778,-5.530097382132881e-7,0.08871340352596692,2.2,2.2,0.0,-0.0,11.215,1595.4712,-1.1060256e-6 -2.6491003052087225,0.056299919168883425,2.6491003052087225,-9.650876873041081e-7,0.6360001157407408,-9.650876873041081e-7,0.06039735206274557,0.0,0.0,0.0,-0.0,5.2299999999999995,1593.489,-1.930194e-6 -2.5492684132774452,0.06191481911255231,2.5492684132774452,-8.868804925994784e-7,0.6362856481481481,-8.868804925994784e-7,0.06651665766694662,0.0,0.0,0.0,-0.0,6.69,1591.195,-1.7737767e-6 -2.462684256252307,0.069521918442998,2.462684256252307,-4.820748311001363e-7,0.6387810185185185,-4.820748311001363e-7,0.07478614618080162,0.0,0.0,0.0,-0.0,8.435,1589.1313,-9.641543e-7 -2.4043151462965,0.07990808121966891,2.4043151462965,1.5799998270383522,0.6399917824074074,-1.7296164782866477e-7,0.08603630934797622,1.58,1.58,0.0,-0.0,10.6,1587.6989,-3.459239e-7 -2.336128869373361,0.09569891121289348,2.336128869373361,-2.2029411660239872e-8,0.6400512731481481,-2.2029411660239872e-8,0.1031497776528571,0.0,0.0,0.0,-0.0,13.5,1585.9807,-4.4058833e-8 -2.2341424721850145,0.10440971987365455,2.2341424721850145,-9.939444723001165e-9,0.6418483796296296,-9.939444723001165e-9,0.11272826463227782,0.0,0.0,0.0,-0.0,14.899999999999999,1583.315,-1.9878891e-8 -2.1319709936374416,0.11452966714676235,2.1319709936374416,-3.4742980617745377e-9,0.6435354166666667,-3.4742980617745377e-9,0.12387320263908133,0.0,0.0,0.0,-0.0,16.41,1580.5194,-6.9485964e-9 -2.0753693782890075,0.1059125242757433,2.0753693782890075,0.9800000002239275,0.6439998842592592,2.239275575540189e-10,0.11466964385244663,0.98,0.98,0.0,-0.0,15.125,1578.9125,4.4785511e-10 -2.083538806562632,0.09992832903343254,2.083538806562632,5.0800000004713555,0.6442856481481481,4.713552348447406e-10,0.10817458572871234,5.08,5.08,0.0,-0.0,14.165000000000001,1579.1471,9.427105e-10 -2.0580787327308077,0.08845647670076008,2.0580787327308077,0.5800000002196212,0.6458482638888889,2.1962115507806283e-10,0.09580060073007483,0.58,0.58,0.0,-0.0,12.165000000000001,1578.4128,4.392423e-10 -2.003713271332036,0.08840733474193803,2.003713271332036,0.5600000000652725,0.6471538194444444,6.527248190654772e-11,0.09584445841498548,0.56,0.56,0.0,-0.0,12.14,1576.8141,1.3054496e-10 -1.9655051323232564,0.07200321330917585,1.9655051323232564,2.820074209671038e-11,0.6479927083333333,2.820074209671038e-11,0.07811732841063758,0.0,0.0,0.0,-0.0,8.89,1575.6643,5.6401484e-11 -2.0606254188635704,0.0918291274542086,2.0606254188635704,6.370000000014322,0.6480521990740741,1.4321517931956051e-11,0.09944861365491327,6.37,6.37,0.0,-0.0,12.709999999999999,1578.4867,2.8643036e-11 -2.2761207083809945,0.11603071790949296,2.2761207083809945,11.340000000006482,0.6487947916666666,6.481433879605295e-12,0.1251872345075972,11.34,11.34,0.0,-0.0,16.450000000000003,1584.4266,1.2962868e-11 -2.473434737110944,0.1488976030645743,2.473434737110944,2.0400000000036775,0.6498487268518519,3.67755565596963e-12,0.160145974701688,2.04,2.04,0.0,-0.0,20.575,1589.3915,7.355111e-12 -2.4825823874934683,0.12204280824728375,2.4825823874934683,1.970000000001811,0.6507814814814814,1.8108885702064897e-12,0.13124424761164946,1.97,1.97,0.0,-0.0,17.185,1589.6119,3.6217771e-12 -2.419816144580149,0.08243059757369707,2.419816144580149,0.7300000000009483,0.6515357638888889,9.483714811818214e-13,0.08873083132076853,0.73,0.73,0.0,-0.0,10.805,1588.0826,1.896743e-12 -2.3329174081619457,0.08805379197141101,2.3329174081619457,5.298514990502753e-13,0.6519921296296297,5.298514990502753e-13,0.09491434599627269,0.0,0.0,0.0,-0.0,11.865,1585.8986,1.059703e-12 -2.2642183187201343,0.09961857089922221,2.2642183187201343,1.1800000000002862,0.6520001157407407,2.8625840305016093e-13,0.10750117374336617,1.18,1.18,0.0,-0.0,13.870000000000001,1584.1135,5.725168e-13 -2.3004849701190397,0.11860860262147302,2.3004849701190397,5.900000000000159,0.6520517361111111,1.5937126835269684e-13,0.12791721602462675,5.9,5.9,0.0,-0.0,16.725,1585.0625,3.1874254e-13 -2.3995233584775595,0.10991921524317244,2.3995233584775595,4.60000000000007,0.6522856481481482,6.992483984419003e-14,0.11835790785651487,4.6,4.6,0.0,-0.0,15.434999999999999,1587.5797,1.3984968e-13 -2.398738731110798,0.08710058286952684,2.398738731110798,3.1201837581760014e-14,0.6527943287037037,3.1201837581760014e-14,0.09378860254415772,0.0,0.0,0.0,-0.0,11.655000000000001,1587.5602,6.2403675e-14 -2.312025010616718,0.07914004303723995,2.312025010616718,1.791406581994207e-14,0.653352662037037,1.791406581994207e-14,0.08533500590530176,0.0,0.0,0.0,-0.0,10.145,1585.3613,3.582813e-14 -2.221669290734407,0.10383248829167938,2.221669290734407,1.0155691256486649e-14,0.653848611111111,1.0155691256486649e-14,0.1121287221425054,0.0,0.0,0.0,-0.0,14.51,1582.9806,2.0311383e-14 -2.117179755298058,0.13739860991651687,2.117179755298058,5.252474599330242e-15,0.653848611111111,5.252474599330242e-15,0.1486469378110304,0.0,0.0,0.0,-0.0,19.2,1580.1036,1.0504949e-14 -2.027928687158287,0.1424378687131584,2.027928687158287,1.4889744422646495e-15,0.653848611111111,1.4889744422646495e-15,0.1543499984179251,0.0,0.0,0.0,-0.0,19.84,1577.5315,2.9779489e-15 -2.014192732783954,0.14868084184483168,2.014192732783954,2.9199999999999995,0.6543310185185185,-2.97393797176576e-16,0.16115653765489477,2.92,2.92,0.0,-0.0,20.564999999999998,1577.1256,-5.947876e-16 -2.1915493149354774,0.14388695618319894,2.1915493149354774,9.51,0.6543310185185185,-2.253467893396813e-16,0.15546360787713104,9.51,9.51,0.0,-0.0,19.950000000000003,1582.1654,-4.506936e-16 -2.8204674163553216,0.11541418258696538,2.8204674163553216,24.78,0.653848611111111,-1.242283137338185e-16,0.12352369198648137,24.78,24.78,0.0,-0.0,16.1,1597.2324,-2.4845663e-16 -3.9943550429087384,0.09060169528713993,3.9943550429087384,33.17,0.653848611111111,-7.251951325512001e-17,0.09572233967710524,33.17,33.17,0.0,-0.0,11.955,1618.0138,-1.4503903e-16 -4.6981591736769195,0.09624138940862335,4.6981591736769195,6.09,0.653352662037037,-3.987174334266877e-17,0.10107533836627278,6.09,6.09,0.0,-0.0,12.84,1627.7057,-7.9743487e-17 -4.989211207241094,0.1038796904993651,4.989211207241094,8.99,0.653352662037037,-2.3136182176104074e-17,0.10885722680367088,8.99,8.99,0.0,-0.0,14.040000000000001,1631.2953,-4.6272364e-17 -5.27603123386892,0.09792624798744158,5.27603123386892,8.33,0.6527943287037037,-1.373505779311843e-17,0.10240895661348222,8.33,8.33,0.0,-0.0,13.065,1634.6334,-2.7470116e-17 -5.207034676918266,0.1037126755162969,5.207034676918266,0.41,0.6522856481481482,-8.022404553400637e-18,0.1085124519515014,0.41,0.41,0.0,-0.0,14.015,1633.8473,-1.6044809e-17 -4.837314278369183,0.11530483858949214,4.837314278369183,1.09,0.6520517361111111,-4.4675247334213225e-18,0.12096674657965624,1.09,1.09,0.0,-0.0,15.8,1629.4489,-8.9350495e-18 -4.576392290239753,0.11377576572844604,4.576392290239753,2.01,0.6519921296296297,-2.6519753718404277e-18,0.1196056556131763,2.01,2.01,0.0,-0.0,15.615,1626.1375,-5.3039507e-18 -4.5198699068474255,0.12288262835418275,4.5198699068474255,5.93,0.6518894675925926,-1.5672625187242483e-18,0.12923814119998278,5.93,5.93,0.0,-0.0,16.9,1625.3953,-3.134525e-18 -4.588128289976403,0.10820189513154617,4.588128289976403,5.81,0.6511538194444445,-8.853306858324695e-19,0.11373548099202917,5.81,5.81,0.0,-0.0,14.809999999999999,1626.2904,-1.7706614e-18 -4.52426046664429,0.09106813988693316,4.52426046664429,1.52,0.6503311342592593,-4.726235499562209e-19,0.09577478474134457,1.52,1.52,0.0,-0.0,12.05,1625.4532,-9.452471e-19 -4.279445837611849,0.08495505534818984,4.279445837611849,-2.7641721338743773e-19,0.6493528935185184,-2.7641721338743773e-19,0.08952874755865939,0.0,0.0,0.0,-0.0,11.0,1622.131,-5.5283443e-19 -4.124702936484183,0.09363132086772118,4.124702936484183,4.02,0.6482863425925927,-1.5438027201246612e-19,0.09880608591968815,4.02,4.02,0.0,-0.0,12.6,1619.9315,-3.0876054e-19 -4.153468380736085,0.08857926153911481,4.153468380736085,5.7,0.6480008101851852,-9.003080315936609e-20,0.09345086927655871,5.7,5.7,0.0,-0.0,11.715,1620.3466,-1.800616e-19 -4.284522315431375,0.10306867179551853,4.284522315431375,6.91,0.647890162037037,-4.8262489380737153e-20,0.10861279911826739,6.91,6.91,0.0,-0.0,14.14,1622.2018,-9.652498e-20 -4.5231693611686365,0.10221387045185229,4.5231693611686365,9.31,0.64678125,-2.7214003046098794e-20,0.10749750906134636,9.31,9.31,0.0,-0.0,14.0,1625.4388,-5.4428006e-20 -4.7378915392113115,0.1066772468357375,4.7378915392113115,1.38,0.645352199074074,-1.1476841809076292e-20,0.11200075507452587,1.38,1.38,0.0,-0.0,14.704999999999998,1628.2086,-2.2953684e-20 -5.028166459952996,0.11419000839341303,5.028166459952996,12.12,0.6440515046296297,-5.743513235184176e-22,0.11962751611067893,12.12,12.12,0.0,-0.0,15.82,1631.7598,-1.1487026e-21 -5.57400527892638,0.11146889954424909,5.57400527892638,13.58,0.6438894675925926,2.4468004538802476e-21,0.11633803012884628,13.58,13.58,0.0,-0.0,15.365,1637.9144,4.893601e-21 -5.7610338962455225,0.11787125528557353,5.7610338962455225,3.1,0.6427809027777778,1.397438341196749e-21,0.12287219500314665,3.1,3.1,0.0,-0.0,16.294999999999998,1639.8854,2.7948767e-21 -5.6176069218987035,0.10110453323518881,5.6176069218987035,5.76,0.6407940972222222,7.560224306504122e-22,0.10549096256354694,5.76,5.76,0.0,-0.0,13.845,1638.3798,1.5120449e-21 -5.881674388852568,0.11199565986979951,5.881674388852568,12.74,0.6399997685185186,4.4502917751818305e-22,0.11665926863996119,12.74,12.74,0.0,-0.0,15.510000000000002,1641.123,8.900584e-22 -6.029624579143206,0.10088615896082036,6.029624579143206,2.22,0.6395354166666667,2.5567878084201324e-22,0.10499223995857034,2.22,2.22,0.0,-0.0,13.799999999999999,1642.6067,5.1135756e-22 -5.63550231603653,0.10962987940935817,5.63550231603653,1.47,0.6378482638888888,1.5073156591066862e-22,0.11437292211843411,1.47,1.47,0.0,-0.0,15.24,1638.5697,3.0146313e-22 -5.202640811773392,0.09232640062215272,5.202640811773392,8.740412853514352e-23,0.6360001157407408,8.740412853514352e-23,0.09660220614563352,0.0,0.0,0.0,-0.0,12.544999999999998,1633.7969,1.7480826e-22 -5.069736237143864,0.10304989511435553,5.069736237143864,5.25,0.6355359953703703,5.015549551946967e-23,0.10792441121484485,5.25,5.25,0.0,-0.0,14.35,1632.2515,1.0031099e-22 -5.324741474561466,0.11122481974853267,5.324741474561466,11.67,0.6338483796296296,2.714806745155488e-23,0.11627724869626412,11.67,11.67,0.0,-0.0,15.615000000000002,1635.1823,5.4296135e-23 -5.376813099599104,0.11693576184148467,5.376813099599104,1.26,0.6319996527777777,1.6112488722304597e-23,0.12220417863493348,1.26,1.26,0.0,-0.0,16.485,1635.7634,3.2224977e-23 -5.057161122021614,0.12051018872564459,5.057161122021614,2.05,0.6315355324074073,9.58175699030408e-24,0.12622208933959855,2.05,2.05,0.0,-0.0,17.035,1632.1031,1.9163514e-23 -5.1600867442591705,0.11824994375563055,5.1600867442591705,8.33,0.6287943287037038,5.683406372941313e-24,0.12376347102497062,8.33,8.33,0.0,-0.0,16.78,1633.3064,1.1366813e-23 -5.064039929219571,0.08885880130667909,5.064039929219571,3.400433841331295e-24,0.628,3.400433841331295e-24,0.09306587144459766,0.0,0.0,0.0,-0.0,12.149999999999999,1632.1843,6.800868e-24 -4.658969511158067,0.1041786972522189,4.658969511158067,2.0230446382767316e-24,0.6267813657407407,2.0230446382767316e-24,0.10944495187504373,0.0,0.0,0.0,-0.0,14.805,1627.2054,4.0460893e-24 -4.31412895641586,0.11554207229153121,4.31412895641586,1.1933457844990121e-24,0.624052199074074,1.1933457844990121e-24,0.12172629188691186,0.0,0.0,0.0,-0.0,16.63,1622.613,2.3866916e-24 -4.093793034764318,0.12846292653695932,4.093793034764318,7.046634635278641e-25,0.6238902777777778,7.046634635278641e-25,0.13560034883630737,0.0,0.0,0.0,-0.0,18.44,1619.4823,1.4093269e-24 -4.530933025721107,0.12454536272100675,4.530933025721107,15.88,0.6207944444444444,3.7213884580267384e-25,0.13097510807033755,15.88,15.88,0.0,-0.0,17.94,1625.5413,7.442777e-25 -5.564863808591469,0.1199398106757971,5.564863808591469,19.88,0.6199998842592592,1.8393112913607386e-25,0.1251864554014361,19.88,19.88,0.0,-0.0,17.205000000000002,1637.8164,3.6786226e-25 -6.7910460272521895,0.11912003168811587,6.7910460272521895,16.15,0.6183303240740741,1.1054639432961264e-25,0.12343455567506027,16.15,16.15,0.0,-0.0,17.015,1649.7086,2.210928e-25 -6.972266853451291,0.1117008116824982,6.972266853451291,1.76,0.615999537037037,6.604046443075689e-26,0.11563636951568333,1.76,1.76,0.0,-0.0,15.995000000000001,1651.2814,1.3208093e-25 -6.318430214866383,0.10740468437966827,6.318430214866383,3.935832591391293e-26,0.6151532407407407,3.935832591391293e-26,0.11158626250329937,0.0,0.0,0.0,-0.0,15.43,1645.4008,7.871665e-26 -5.997003131672793,0.09679146427041196,5.997003131672793,5.85,0.6120002314814815,2.3653629086734583e-26,0.1007507618874117,5.85,5.85,0.0,-0.0,13.844999999999999,1642.2827,4.7307258e-26 -7.202781125414424,0.09832610207967976,7.202781125414424,25.48,0.6115356481481482,1.420397523665688e-26,0.10167082668313579,25.48,25.48,0.0,-0.0,14.004999999999999,1653.2239,2.840795e-26 -8.109132606541397,0.09362757753596132,8.109132606541397,5.59,0.6080510416666667,8.587079902165215e-27,0.09639974039107853,5.59,5.59,0.0,-0.0,13.235,1660.3021,1.717416e-26 -7.671087686264759,0.12401941841924713,7.671087686264759,4.45,0.6078891203703704,5.166778158283157e-27,0.1279470055876872,4.45,4.45,0.0,-0.0,17.9,1656.9857,1.0333556e-26 -7.698246393829149,0.11902950688973328,7.698246393829149,11.23,0.6042853009259259,3.1103129193112322e-27,0.12278342828352372,11.23,11.23,0.0,-0.0,17.310000000000002,1657.1968,6.220626e-27 -8.033538694563486,0.11473167681261003,8.033538694563486,10.23,0.6039916666666666,1.871295741503842e-27,0.11816850716304596,10.23,10.23,0.0,-0.0,16.68,1659.7428,3.7425915e-27 -7.634983444147075,0.10934105870683038,7.634983444147075,1.1222359119205424e-27,0.6002854166666667,1.1222359119205424e-27,0.11282297834248324,0.0,0.0,0.0,-0.0,16.015,1656.704,2.2444718e-27 -6.781544077254185,0.1144429228575496,6.781544077254185,6.667747615988466e-28,0.5999998842592592,6.667747615988466e-28,0.11859405323490699,0.0,0.0,0.0,-0.0,16.85,1649.625,1.3335495e-27 -6.076728115552434,0.12095437347799809,6.076728115552434,3.944657693508611e-28,0.5962851851851851,3.944657693508611e-28,0.1258416308952955,0.0,0.0,0.0,-0.0,17.945,1643.0714,7.8893154e-28 -5.504047604699859,0.12621051650589446,5.504047604699859,2.1057520973647277e-28,0.5959997685185184,2.1057520973647277e-28,0.13178427096835268,0.0,0.0,0.0,-0.0,18.73,1637.1602,4.211504e-28 -5.029389664060215,0.12503613923443335,5.029389664060215,1.1346736637978924e-28,0.5920523148148148,1.1346736637978924e-28,0.13098895266110683,0.0,0.0,0.0,-0.0,18.74,1631.7743,2.2693473e-28 -4.629777746903788,0.12823023249114013,4.629777746903788,5.227969935960071e-29,0.591992824074074,5.227969935960071e-29,0.13474337998510222,0.0,0.0,0.0,-0.0,19.22,1626.8301,1.045594e-28 -4.28944699183895,0.0892083082821204,4.28944699183895,1.4515486196637443e-31,0.5880002314814815,1.4515486196637443e-31,0.09400290269899655,0.0,0.0,0.0,-0.0,13.37,1622.2704,2.9030972e-31 -3.9962006741044545,0.07923613296925763,3.9962006741044545,-2.9267165695699734e-29,0.5879922453703703,-2.9267165695699734e-29,0.08371298893271216,0.0,0.0,0.0,-0.0,11.51,1618.0414,-5.853433e-29 -3.73946824837648,0.09072087678321376,3.73946824837648,-2.4431597967377486e-29,0.5840005787037037,-2.4431597967377486e-29,0.09608209839620652,0.0,0.0,0.0,-0.0,13.835,1614.0759,-4.8863196e-29 -3.5043042195126026,0.09565482243609355,3.5043042195126026,-7.749399676100994e-30,0.5835359953703704,-7.749399676100994e-30,0.10155166583310936,0.0,0.0,0.0,-0.0,14.75,1610.197,-1.54988e-29 -3.2947336539005474,0.09523547063519258,3.2947336539005474,0.21,0.5800003472222222,7.681734083527548e-30,0.10133823651440128,0.21,0.21,0.0,-0.0,14.815,1606.5143,1.5363468e-29 -3.117928820139361,0.10709702217816944,3.117928820139361,1.7453278198749226e-29,0.5787818287037036,1.7453278198749226e-29,0.1141940256250533,0.0,0.0,0.0,-0.0,16.82,1603.2203,3.4906556e-29 -2.979478595111512,0.1086290248492224,2.979478595111512,0.1,0.5760005787037037,1.7156709061437896e-29,0.11602385294649223,0.1,0.1,0.0,-0.0,17.165,1600.5078,3.4313418e-29 -2.8887445152513123,0.11315559924556823,2.8887445152513123,7.31,0.5738478009259259,8.886124906679489e-30,0.1209981972474244,7.31,7.31,0.0,-0.0,17.93,1598.6609,1.777225e-29 -2.8299728342483603,0.09719473314168849,2.8299728342483603,3.51,0.5719994212962963,1.3702539224088987e-30,0.10401097936866927,3.51,3.51,0.0,-0.0,15.47,1597.4333,2.7405078e-30 -2.7663455732474715,0.09676472990762128,2.7663455732474715,-3.46801114227052e-30,0.5680513888888888,-3.46801114227052e-30,0.10363892706224268,0.0,0.0,0.0,-0.0,15.524999999999999,1596.0753,-6.936022e-30 -2.664604950952926,0.10773351895367697,2.664604950952926,-3.79822988682894e-30,0.5679997685185185,-3.79822988682894e-30,0.11554894889789902,0.0,0.0,0.0,-0.0,17.33,1593.8375,-7.59646e-30 -2.5297560442974776,0.09795656814098865,2.5297560442974776,-1.92197313636282e-30,0.5639996527777777,-1.92197313636282e-30,0.10526757774978336,0.0,0.0,0.0,-0.0,15.899999999999999,1590.7361,-3.8439463e-30 -2.405421167071419,0.1213182114806368,2.405421167071419,-4.828946309703388e-31,0.5639916666666667,-4.828946309703388e-31,0.13061996298579495,0.0,0.0,0.0,-0.0,19.515,1587.7263,-9.657893e-31 -2.3240884454197515,0.14048982624499382,2.3240884454197515,1.8696517417483979e-31,0.56,1.8696517417483979e-31,0.15145746593570653,0.0,0.0,0.0,-0.0,22.18,1585.6721,3.7393035e-31 -2.345645960199646,0.13174986083580906,2.345645960199646,6.79,0.558330324074074,1.2680143373407625e-31,0.14198582312344546,6.79,6.79,0.0,-0.0,21.115000000000002,1586.2235,2.5360287e-31 -2.5303249098748894,0.1223162016302177,2.5303249098748894,8.31,0.5560002314814815,5.638427337158445e-32,0.13144418819517154,8.31,8.31,0.0,-0.0,19.865000000000002,1590.7495,1.1276855e-31 -2.838251082096119,0.10139621146763482,2.838251082096119,11.26,0.5520519675925926,2.0126513054351809e-32,0.1084952588897206,11.26,11.26,0.0,-0.0,16.755000000000003,1597.6078,4.0253026e-32 -3.149352904244405,0.0951778715363503,3.149352904244405,5.67,0.5520004629629629,1.119858864413441e-32,0.10144713286590071,5.67,5.67,0.0,-0.0,15.645,1603.8192,2.2397177e-32 -3.3441620919302237,0.09366942992243339,3.3441620919302237,6.6,0.5479999999999999,5.126857632341958e-33,0.0996167000563746,6.6,6.6,0.0,-0.0,15.465,1607.4036,1.0253715e-32 -3.4745048811447563,0.09639776066787825,3.4745048811447563,5.58,0.5479921296296296,2.3480525371614117e-33,0.10237282937326116,5.58,5.58,0.0,-0.0,15.915000000000001,1609.687,4.696105e-33 -3.4709414912171472,0.0778995709859608,3.4709414912171472,3.22,0.5439997685185185,1.2411874954664642e-33,0.08273120701503726,3.22,3.22,0.0,-0.0,12.565000000000001,1609.6257,2.482375e-33 -3.339592198918495,0.07191705016313875,3.339592198918495,4.622588371925451e-34,0.540794212962963,4.622588371925451e-34,0.07648710168915246,0.0,0.0,0.0,-0.0,11.405,1607.3219,9.245177e-34 -3.1938506804685827,0.06637424763123966,3.1938506804685827,1.02,0.54,1.5866542649135955e-34,0.0707093050645654,1.02,1.02,0.0,-0.0,10.185,1604.6571,3.1733085e-34 -3.081592069935851,0.06953979197233405,3.081592069935851,2.22,0.5359994212962963,8.628243329405788e-35,0.07418038078066728,2.22,2.22,0.0,-0.0,11.06,1602.5203,1.7256487e-34 -2.9694345936233066,0.0799950467907079,2.9694345936233066,3.874430815239887e-35,0.5359994212962963,3.874430815239887e-35,0.08545140795812058,0.0,0.0,0.0,-0.0,13.325,1600.3062,7.7488616e-35 -2.832235508768425,0.09031827381179548,2.832235508768425,2.009413748333064e-35,0.5319998842592593,2.009413748333064e-35,0.0966493876160294,0.0,0.0,0.0,-0.0,15.455,1597.4811,4.0188275e-35 -2.7015356740799152,0.09303729389462125,2.7015356740799152,7.971069236364016e-36,0.5298482638888888,7.971069236364016e-36,0.09973516119037605,0.0,0.0,0.0,-0.0,16.04,1594.6595,1.5942138e-35 -2.610265348017227,0.10599779784883975,2.610265348017227,1.59,0.5279998842592593,-1.097036434531881e-36,0.11377514777045153,1.59,1.59,0.0,-0.0,18.294999999999998,1592.607,-2.1940729e-36 -2.5828894678399377,0.10453015213223875,2.5828894678399377,1.91,0.5240002314814816,-4.5053073834779294e-36,0.11224419269696095,1.91,1.91,0.0,-0.0,18.195,1591.9774,-9.010615e-36 -2.7387375188370875,0.08761363661377264,2.7387375188370875,9.08,0.5240002314814816,-2.78914571895554e-36,0.09387296724506151,9.08,9.08,0.0,-0.0,15.225,1595.4763,-5.5782914e-36 -3.109069972540363,0.08840056203333742,3.109069972540363,11.77,0.520000462962963,-1.5506149095985563e-36,0.0942685975951649,11.77,11.77,0.0,-0.0,15.42,1603.0504,-3.1012298e-36 -3.249893035277969,0.060875204683239606,3.249893035277969,-9.171028061137423e-37,0.5183310185185186,-9.171028061137423e-37,0.0648091507894821,0.0,0.0,0.0,-0.0,9.46,1605.6959,-1.8342056e-36 -3.079350477541609,0.06335820218238704,3.079350477541609,-5.386828508668638e-37,0.5159998842592592,-5.386828508668638e-37,0.06758810870925014,0.0,0.0,0.0,-0.0,10.190000000000001,1602.4768,-1.0773657e-36 -2.9247914465759317,0.08308571275574217,2.9247914465759317,-3.1757015009824112e-37,0.511999537037037,-3.1757015009824112e-37,0.08880308528744586,0.0,0.0,0.0,-0.0,14.695,1599.4015,-6.351403e-37 -2.7843855214400564,0.0885448553864984,2.7843855214400564,-1.7513658020079713e-37,0.511999537037037,-1.7513658020079713e-37,0.09481205067916797,0.0,0.0,0.0,-0.0,15.77,1596.4635,-3.5027316e-37 -2.659327021314639,0.09341442214969757,2.659327021314639,3.54,0.5079996527777778,4.04007261631492e-37,0.10019853014207358,3.54,3.54,0.0,-0.0,16.814999999999998,1593.7191,8.080145e-37 -2.5487734345820123,0.10083457314969879,2.5487734345820123,4.51,0.5067805555555556,1.5813313719365563e-36,0.10832992427044452,4.51,4.51,0.0,-0.0,18.16,1591.1833,3.1626627e-36 -2.4504974132819184,0.11346752822013767,2.4504974132819184,3.82,0.503999537037037,3.20487944971046e-36,0.12208209526286243,3.82,3.82,0.0,-0.0,20.28,1588.8351,6.409759e-36 -2.3625886262383515,0.08992452012231848,2.3625886262383515,8.84,0.4999997685185186,5.1226955414712855e-36,0.09688471922235035,8.84,8.84,0.0,-0.0,16.52,1586.6533,1.0245391e-35 -2.2833854983931863,0.05582053365776516,2.2833854983931863,7.182822931430752e-36,0.4999997685185186,7.182822931430752e-36,0.060218355309358776,0.0,0.0,0.0,-0.0,8.875,1584.617,1.4365646e-35 -2.2114344083473925,0.05961836520195945,2.2114344083473925,0.5,0.4959997685185185,9.233305083166782e-36,0.06439310028150734,0.5,0.5,0.0,-0.0,10.05,1582.7048,1.846661e-35 -2.1454573919789865,0.06675318613675288,2.1454573919789865,8.13,0.49366840277777774,1.1122186895186923e-35,0.07218183208116018,8.13,8.13,0.0,-0.0,11.935,1580.896,2.2244374e-35 -2.0843097988110775,0.05662874160848886,2.0843097988110775,14.05,0.4919994212962963,1.2697511472336693e-35,0.061300984565019326,14.05,14.05,0.0,-0.0,9.405,1579.1692,2.5395023e-35 -2.026979665718205,0.041068448411710125,2.026979665718205,1.3807321919461604e-35,0.48800034722222224,1.3807321919461604e-35,0.04450380599755656,0.0,0.0,0.0,-0.0,4.62,1577.5035,2.7614644e-35 -1.9725444413708548,0.05117723126534607,1.9725444413708548,1.4299662058871987e-35,0.48800034722222224,1.4299662058871987e-35,0.05551539674007531,0.0,0.0,0.0,-0.0,7.990000000000001,1575.8778,2.8599324e-35 -1.9201793603050945,0.062331080366503325,1.9201793603050945,1.4022577147807798e-35,0.4840002314814815,1.4022577147807798e-35,0.0676837419820088,0.0,0.0,0.0,-0.0,11.225,1574.271,2.8045154e-35 -1.869131821101642,0.06487268502037086,1.869131821101642,0.85,0.48167002314814816,1.2824109573649738e-35,0.07051568327065103,0.85,0.85,0.0,-0.0,11.955000000000002,1572.6619,2.564822e-35 -1.8187348942553296,0.07221957289048087,1.8187348942553296,0.62,0.4800005787037037,1.0552302441243323e-35,0.0785832100244384,0.62,0.62,0.0,-0.0,13.754999999999999,1571.0295,2.1104605e-35 -1.7685577141317061,0.05356577753401757,1.7685577141317061,0.03,0.4760001157407408,-5.291322901052044e-19,0.05834778541099159,0.03,0.03,0.0,-0.0,9.15,1569.3588,-1.0582646e-18 -1.7260969575809681,0.03905294277237998,1.7260969575809681,0.47,0.4760001157407408,-1.7112396529503038e-17,0.04257871362808893,0.47,0.47,0.0,-0.0,4.33,1567.9075,-3.4224793e-17 -1.6997815744817781,0.03108490419724335,1.6997815744817781,-4.3966267788493634e-17,0.4719996527777777,-4.3966267788493634e-17,0.03391114953596446,0.0,0.0,0.0,-0.0,1.0899999999999999,1566.99,-8.7941945e-17 -1.695440624502462,0.03512554528317209,1.695440624502462,2.77,0.4701513888888889,-6.341138120812471e-17,0.038322901202427935,2.77,2.77,0.0,-0.0,2.945,1566.8373,-1.2682276e-16 -1.7195363977624074,0.04526407325202595,1.7195363977624074,3.59,0.46799976851851854,-5.774013828429218e-17,0.04935775537953621,3.59,3.59,0.0,-0.0,6.825,1567.68,-1.1548028e-16 -1.7429090865403154,0.03556672423854204,1.7429090865403154,-2.6291368324097126e-17,0.463999537037037,-2.6291368324097126e-17,0.038763441814456005,0.0,0.0,0.0,-0.0,3.3099999999999996,1568.4863,-5.2582737e-17 -1.7262980773887255,0.034736627933041365,1.7262980773887255,8.589099373609204e-18,0.463999537037037,8.589099373609204e-18,0.03787254594813209,0.0,0.0,0.0,-0.0,2.965,1567.9144,1.7178199e-17 -1.6845075640536944,0.03629497801206633,1.6845075640536944,3.7310835179596474e-17,0.46,3.7310835179596474e-17,0.039608550037151635,0.0,0.0,0.0,-0.0,3.7600000000000002,1566.4509,7.462167e-17 -1.6329221724003875,0.04138911225676827,1.6329221724003875,5.039451967319269e-17,0.45920532407407405,5.039451967319269e-17,0.045221377682723995,0.0,0.0,0.0,-0.0,5.78,1564.5935,1.0078904e-16 -1.5879492880700505,0.04669699197739337,1.5879492880700505,3.903523213280618e-17,0.45599953703703705,3.903523213280618e-17,0.05107516588154252,0.0,0.0,0.0,-0.0,7.750000000000001,1562.9257,7.8070464e-17 -1.6359690477548994,0.05065011003779505,1.6359690477548994,3.96,0.45200810185185186,2.1578649059142263e-17,0.05533592447247175,3.96,3.96,0.0,-0.0,9.13,1564.7048,4.3157298e-17 -1.7975574912684495,0.056868880058842344,1.7975574912684495,11.68,0.452,1.0918598797242753e-17,0.06190745167626056,11.68,11.68,0.0,-0.0,10.895000000000001,1570.3301,2.1837198e-17 -1.9875680031871807,0.05544808962585349,1.9875680031871807,3.69,0.4480001157407407,6.154999652809101e-18,0.060130995091397715,3.69,3.69,0.0,-0.0,10.575,1576.3309,1.2309999e-17 -2.0456976612459234,0.0578880904858227,2.0456976612459234,2.13,0.4480001157407407,2.731448610347838e-18,0.0627085819582649,2.13,2.13,0.0,-0.0,11.24,1578.0525,5.4628972e-18 -2.033790119492581,0.047299496828870385,2.033790119492581,1.87,0.4440001157407408,9.230145529985478e-19,0.051249571000097485,1.87,1.87,0.0,-0.0,8.215,1577.7039,1.8460291e-18 -2.0052948242291926,0.03551766163423033,2.0052948242291926,0.76,0.44166932870370373,5.160266472750674e-19,0.038504376716572114,0.76,0.76,0.0,-0.0,3.9450000000000003,1576.8612,1.0320533e-18 -1.9492573005244267,0.03322661523671265,1.9492573005244267,2.6796642605675304e-19,0.4400003472222222,2.6796642605675304e-19,0.036059380666393415,0.0,0.0,0.0,-0.0,3.0250000000000004,1575.1686,5.3593285e-19 -1.890112897832727,0.03298327927247755,1.890112897832727,0.05,0.43611064814814815,-1.665236272016395e-18,0.035837163299420945,0.05,0.05,0.0,-0.0,3.0650000000000004,1573.3285,-3.3304725e-18 -1.8531919421200955,0.034480240324151645,1.8531919421200955,3.3,0.43600011574074077,-1.4704023780107943e-17,0.037491722785207515,3.3,3.3,0.0,-0.0,3.7399999999999998,1572.1504,-2.9408048e-17 -1.8248493959917014,0.02803241196467701,1.8248493959917014,-2.3025785993987084e-17,0.43200000000000005,-2.3025785993987084e-17,0.03049860046314715,0.0,0.0,0.0,-0.0,0.835,1571.23,-4.6114684e-17 -1.7863054663448639,0.02828670216166038,1.7863054663448639,-5.843365211060593e-18,0.43194837962962956,-5.843365211060593e-18,0.03080025362638091,0.0,0.0,0.0,-0.0,0.9800000000000002,1569.9551,-1.1690487e-17 -1.769476163459455,0.029503732422507763,1.769476163459455,0.040000000000000036,0.428,3.386133409710664e-17,0.032137000840109314,0.04,0.04,0.0,-0.0,1.735,1569.3898,6.772268e-17 -1.8261068613222453,0.029977988495041713,1.8261068613222453,4.63,0.4261517361111111,5.885364851494936e-17,0.03261448775324687,4.63,4.63,0.0,-0.0,2.015,1571.2711,1.177073e-16 -1.9166462578132888,0.03334967637350276,1.9166462578132888,6.03,0.42400011574074076,5.926325572468815e-17,0.03621609939156758,6.03,6.03,0.0,-0.0,3.64,1574.161,1.1852651e-16 -1.9799326997195097,0.03517009488689168,1.9799326997195097,1.72,0.42121863425925926,3.6350250186573357e-17,0.038145971147690326,1.72,1.72,0.0,-0.0,4.515,1576.1011,7.27005e-17 -2.040131323268218,0.03956978774197207,2.040131323268218,5.37,0.41999976851851856,1.878010679533448e-17,0.042869287057331375,5.37,5.37,0.0,-0.0,6.324999999999999,1577.8898,3.7560214e-17 -2.333947648366819,0.03435404488097975,2.333947648366819,14.87,0.4164640046296296,1.010606424461559e-17,0.037030063302967056,14.87,14.87,0.0,-0.0,4.24,1585.9249,2.0212128e-17 -3.2071635626213584,0.03379847954548851,3.2071635626213584,26.24,0.4159996527777778,6.015345509220853e-18,0.03600036420615957,26.24,26.24,0.0,-0.0,3.835,1604.9055,1.2030691e-17 -4.061620111340077,0.03031091674194282,4.061620111340077,10.22,0.4121109953703704,-6.579868393418893e-16,0.032004308204233986,10.22,10.22,0.0,-0.0,2.23,1619.0111,-1.3159737e-15 -4.134900241338832,0.027736826483003796,4.134900241338832,-7.66203191220934e-5,0.41200046296296294,-7.66203191220934e-5,0.029267106204523902,0.0,0.0,0.0,-0.0,0.9249999999999999,1620.079,-0.00015344375 -3.9005281920279558,0.027730695283675846,3.9005281920279558,-0.0006208760244958036,0.4080084490740741,-0.0006208760244958036,0.02932371116000534,0.0,0.0,0.0,-0.0,1.095,1616.5942,-0.0012496869 -3.6558034569313156,0.02289376335864147,3.6558034569313156,-3.4968564202695706e-8,0.40794895833333333,-3.4968564202695706e-8,0.024267004869107777,0.0,0.0,0.0,-0.0,-1.63,1612.7246,0.0013993076 -3.443726879720728,0.019514147955741988,3.443726879720728,0.0,0.40399999999999997,-0.0,0.02073054610091722,0.0,0.0,0.0,-0.0,-3.715,1609.1556,0.001479835 -3.254938919448639,0.019258641702010037,3.254938919448639,0.0,0.4037145833333334,-0.0,0.020502012357048065,0.0,0.0,0.0,-0.0,-3.8600000000000003,1605.7886,0.001479835 -3.0857079973082673,0.02038584887431045,3.0857079973082673,-1.7325073276123872e-13,0.40000023148148145,-1.7325073276123872e-13,0.02174517311818505,0.0,0.0,0.0,-0.0,-2.905,1602.6,0.001479835 -2.9331312144594537,0.020131491228235168,2.9331312144594537,1.9066910715140877e-5,0.39971435185185183,-6.969536817436936e-14,0.02151451105132436,0.26,1.9066910784836246e-5,0.25998093308921516,-0.0,-3.045,1599.5715,0.13120393 -2.906780430302109,0.025476211897738712,2.906780430302109,5.322328642233677,0.3960082175925926,0.3423286422764901,0.02723558684537336,4.98,4.979999999957187,4.281367260716707e-11,-0.0,0.45500000000000007,1599.0326,0.37209588 -2.9432569626588365,0.03395240587436322,2.9432569626588365,2.1330764110803453,0.39571446759259266,0.12307641108034531,0.036280245144383653,2.01,2.01,0.0,-0.0,4.7,1599.7773,0.15042265 -2.9388924867337125,0.02752341766082151,2.9388924867337125,3.6578113390782114,0.3921108796296296,0.047811339078211584,0.029412103043432402,3.61,3.61,0.0,-0.0,1.72,1599.6887,0.07125715 -2.8805957198778263,0.019825466823358954,2.8805957198778263,-1.34653885231302e-13,0.3919487268518519,-1.34653885231302e-13,0.021201769332205776,0.0,0.0,0.0,-0.0,-2.9749999999999996,1598.4922,0.12181202 -2.7472766952882255,0.014476828989248408,2.7472766952882255,0.0,0.3884644675925926,-0.0,0.015509281532299132,0.0,0.0,0.0,-0.0,-7.17,1595.6622,0.12188187 -2.6258003156394634,0.01485556531717415,2.6258003156394634,0.0,0.38799999999999996,-0.0,0.01594201174899174,0.0,0.0,0.0,-0.0,-6.78,1592.9614,0.12188187 -2.514614536204335,0.014320884771497294,2.514614536204335,0.0,0.3848466435185185,-0.0,0.015393196420393657,0.0,0.0,0.0,-0.0,-7.1450000000000005,1590.3776,0.121184364 -2.4123638244468224,0.01846738991125003,2.4123638244468224,1.4210531276691776e-6,0.3840003472222222,-5.590890765931588e-16,0.019881172722727262,4.51,1.4210531282282668e-6,4.509998578946871,-0.0,-3.5900000000000003,1587.8984,2.3761165 -2.52612865885445,0.026584655251212872,2.52612865885445,10.842654429340168,0.38166932870370374,3.232654429340169,0.028570345826468488,7.61,7.61,4.224398608698721e-16,-0.0,1.69,1590.6504,3.2326553 -2.917178920463659,0.033503647218776036,2.917178920463659,12.179932844512747,0.3799997685185186,1.1899328445127462,0.03581261679984983,10.99,10.99,0.0,-0.0,5.115,1599.2458,1.1899409 -3.082234624623451,0.029133189668815323,3.082234624623451,0.6725613969305391,0.37920590277777777,0.4325613969305391,0.031077089110343906,0.24,0.24,0.0,-0.0,3.025,1602.5327,0.43798044 -2.9438706725578907,0.020071542153837104,2.9438706725578907,-2.1650286184755916e-10,0.37611087962962964,-2.1650286184755916e-10,0.02144751699993764,0.0,0.0,0.0,-0.0,-2.2300000000000004,1599.7898,0.2824171 -2.8047437241273587,0.01689297143684199,2.8047437241273587,1.7825207976329694e-12,0.3759486111111111,-0.0,0.018083726061197195,0.16,1.7825207976329694e-12,0.15999999999821748,-0.0,-4.615,1596.8986,0.36248425 -2.678256202157686,0.013656408084353098,2.678256202157686,0.0,0.37321898148148147,-0.0,0.014644295784983514,1.1,0.0,1.1,-0.0,-7.404999999999999,1594.1427,0.9951965 -2.5627582859322473,0.012295937338333309,2.5627582859322473,0.0,0.3719998842592593,-0.0,0.013207220678209584,0.0,0.0,0.0,-0.0,-8.75,1591.5101,1.5433973 -2.4568770444545653,0.009627075465581022,2.4568770444545653,0.0,0.37120578703703705,-0.0,0.010356960399488824,0.0,0.0,0.0,-0.0,-11.925,1588.9904,1.5439379 -2.3593938400372427,0.011026479502363585,2.3593938400372427,0.0,0.3684645833333333,-0.0,0.01188053916601117,0.0,0.0,0.0,-0.0,-10.030000000000001,1586.5725,1.5416435 -2.2692407998640647,0.015159138541464034,2.2692407998640647,3.086420008457935e-16,0.3680003472222222,-0.0,0.016357282150372236,1.39,3.086420008457935e-16,1.3899999999999997,-0.0,-5.705,1584.2458,2.2371657 -2.252769539494527,0.025865804370114348,2.252769539494527,5.650981169698209,0.36615196759259255,2.6209811696982097,0.02791784501226504,3.03,3.03,0.0,-0.0,1.96,1583.8108,2.6209812 -2.2853045780471426,0.025883519184469003,2.2853045780471426,0.9635775141153986,0.3644642361111111,0.9635775141153986,0.02792186862385771,0.0,0.0,0.0,-0.0,2.0300000000000002,1584.6671,0.96364045 -2.213840495482277,0.02045995939322217,2.213840495482277,-1.0565303864830636e-6,0.36400011574074076,-1.0565303864830636e-6,0.022097656585945646,0.0,0.0,0.0,-0.0,-1.3399999999999999,1582.7698,0.5872465 -2.1566252786828586,0.02049317434264211,2.1566252786828586,1.2497736740684364,0.3621513888888889,-2.9436552259769784e-6,0.022155418965473482,1.25,1.2497766177236624,0.00022338227633755814,-0.0,-1.23,1581.206,0.5873264 -2.1873559321055605,0.022691317049463082,2.1873559321055605,5.0340613071766676,0.3604638888888889,0.2440613073806348,0.024518755243993683,4.79,4.7899999997960325,2.0396748290352207e-10,-0.0,0.29500000000000004,1582.051,0.5922246 -2.2878284484865548,0.025628482068873654,2.2878284484865548,4.578607154452111,0.3599998842592593,0.2086071544521112,0.027645597131784026,4.37,4.37,0.0,-0.0,2.065,1584.733,0.2296047 -2.2896295765138004,0.021548929788347743,2.2896295765138004,0.1768837536112691,0.35920578703703704,-0.0031162361223300346,0.023244270313335723,0.18,0.17999998973359913,1.0266400869429758e-8,-0.0,-0.4249999999999998,1584.78,0.13261454 -2.206476726644472,0.022300967947132537,2.206476726644472,-0.006235138624391492,0.3572189814814815,-0.006235138624391492,0.02408905515226749,0.0,0.0,0.0,-0.0,0.16999999999999993,1582.5708,0.16317077 -2.126747999725904,0.02076212896229112,2.126747999725904,0.01986381476014181,0.35611041666666665,-0.0001361391012685853,0.022458022086037324,0.02,0.019999953861410395,4.613858960667017e-8,-0.0,-0.7949999999999999,1580.3729,0.18322635 -2.056791855548938,0.020474902621003828,2.056791855548938,0.25996862235191937,0.3559483796296296,-2.7926065673593672e-5,0.02217536199490862,0.26,0.25999654841759295,3.4515824070291413e-6,-0.0,-0.97,1578.3755,0.18328843 -1.9870155569191585,0.020430420579060585,1.9870155569191585,0.019959617311535515,0.3546476851851852,-4.0204713464176813e-5,0.0221561187460562,0.02,0.01999982202499969,1.7797500030947156e-7,-0.0,-0.9299999999999999,1576.3143,0.18326296 -1.9551271156481493,0.020881371677529476,1.9551271156481493,1.9688202247824222,0.35321898148148145,-0.001179383042510426,0.022659049014897733,1.97,1.9699996078249327,3.9217506744348984e-7,-0.0,-0.5499999999999999,1575.3481,0.1836479 -1.9261899574432022,0.017768239321106244,1.9261899574432022,0.000723056455612284,0.35211030092592593,-9.89479869558473e-13,0.019291793962601736,0.81,0.0007230564566017639,0.8092769435433983,-0.0,-2.795,1574.4576,0.49701297 -1.8655362962950957,0.012658618793740906,1.8655362962950957,0.0,0.35199988425925927,-0.0,0.013760744226874896,0.01,0.0,0.01,-0.0,-7.455,1572.5469,0.90527487 -1.8086844403419735,0.010522871916412812,1.8086844403419735,0.0,0.35171423611111113,-0.0,0.011452508591249055,0.0,0.0,0.0,-0.0,-9.899999999999999,1570.6986,0.91052777 -1.7552039506562085,0.011498406979332356,1.7552039506562085,0.0,0.3506474537037037,-0.0,0.012528524247470774,0.0,0.0,0.0,-0.0,-8.665,1568.9061,0.91053176 -1.704813021326625,0.009667509079419552,1.704813021326625,0.0,0.34966921296296294,-0.0,0.01054529294892005,0.0,0.0,0.0,-0.0,-10.91,1567.1665,0.91053176 -1.6572570810009721,0.008872225872929577,1.6572570810009721,0.0,0.3488465277777778,-0.0,0.009688245139796605,0.0,0.0,0.0,-0.0,-11.985,1565.4769,0.91053176 -1.6122861381922098,0.007968598413689486,1.6122861381922098,0.0,0.3481105324074074,-0.0,0.008710648616475218,0.0,0.0,0.0,-0.0,-13.329999999999998,1563.834,0.91053176 -1.569667695849742,0.009066602162397498,1.569667695849742,0.0,0.3480079861111111,-0.0,0.009921050007150541,0.0,0.0,0.0,-0.0,-11.645,1562.2341,0.91053176 -1.5291913347253132,0.012738836718278053,1.5291913347253132,0.0,0.34794849537037037,-0.0,0.013953295461631572,0.0,0.0,0.0,-0.0,-7.11,1560.674,0.91053176 -1.490687773879631,0.014091473908647541,1.490687773879631,0.0,0.34771435185185184,-0.0,0.015449963009121496,0.0,0.0,0.0,-0.0,-5.71,1559.151,0.91053176 -1.4540569488480297,0.012856473395365194,1.4540569488480297,0.0,0.3472057870370371,-0.0,0.014109348150136602,0.0,0.0,0.0,-0.0,-6.93,1557.6652,0.91053176 -1.4191701506868002,0.015097632067566145,1.4191701506868002,0.0,0.3466476851851852,-0.0,0.01658435115303672,0.0,0.0,0.0,-0.0,-4.69,1556.2148,0.9115587 -1.3874439474478706,0.020051195723874177,1.3874439474478706,0.23954040618428143,0.3466476851851852,-0.00045942705533608976,0.022044837128908104,0.24,0.23999983323961752,1.667603824628827e-7,-0.0,-0.6749999999999998,1554.8646,0.9603152 -1.4164980936826042,0.024678861112013714,1.4164980936826042,4.577016772625386,0.3461518518518519,0.4770167726253869,0.02711103961690709,4.1,4.1,0.0,-0.0,2.355,1556.1023,0.48090705 -1.4922273165748947,0.01951224252754273,1.4922273165748947,4.649794447149097,0.3461518518518519,-1.0602481190885609e-5,0.021392475228614444,4.65,4.649805049630288,0.00019495036971230729,-0.0,-1.0850000000000002,1559.2126,0.2741075 -1.4702796155285351,0.011730093275721241,1.4702796155285351,0.0,0.3456693287037037,-0.0,0.012867727629225525,0.03,0.0,0.03,-0.0,-8.115,1558.3278,1.996191 -1.4346311225282562,0.015285495869189595,1.4346311225282562,2.5385735014094023e-10,0.3456693287037037,-0.0,0.016783735691356244,6.21,2.5385735014094023e-10,6.209999999746143,-0.0,-4.484999999999999,1556.8619,5.1152472 -1.400668411785465,0.011363326609282786,1.400668411785465,0.0,0.3461518518518519,-0.0,0.012488604082547077,3.95,0.0,3.95,-0.0,-8.535,1555.4312,10.183113 -1.368342953426338,0.008960594745460421,1.368342953426338,0.0,0.3461518518518519,-0.0,0.00985677298555438,0.04,0.0,0.04,-0.0,-11.66,1554.0367,12.179709 -1.3374303928102098,0.014847482287654836,1.3374303928102098,0.0,0.3461518518518519,-0.0,0.016346781673195095,0.0,0.0,0.0,-0.0,-4.87,1552.6721,12.219073 -1.3078549498895466,0.011244152120869572,1.3078549498895466,0.0,0.3466476851851852,-0.0,0.012390243890982148,2.84,0.0,2.84,-0.0,-8.66,1551.3367,13.646617 -1.2796500166361748,0.005868991038985479,1.2796500166361748,0.0,0.3472057870370371,-0.0,0.0064726367647489885,4.16,0.0,4.16,-0.0,-17.04,1550.0347,17.142893 -1.2526728363921995,0.006836924999610768,1.2526728363921995,0.0,0.34771435185185184,-0.0,0.007546320988627841,3.76,0.0,3.76,-0.0,-15.14,1548.7622,21.085938 -1.2268134344471673,0.005485593953642147,1.2268134344471673,0.0,0.34794849537037037,-0.0,0.006059650499455834,0.0,0.0,0.0,-0.0,-17.880000000000003,1547.5165,22.941998 -1.202001248612194,0.00610197055578929,1.202001248612194,0.0,0.34800000000000003,-0.0,0.006745848786080631,0.0,0.0,0.0,-0.0,-16.555,1546.2963,22.939737 -1.1781170468573625,0.011297621496572319,1.1781170468573625,0.0,0.3480079861111111,-0.0,0.01249943227374327,2.19,0.0,2.19,-0.0,-8.595,1545.0977,24.041533 -1.1551063872031595,0.01139703300832262,1.1551063872031595,0.0,0.3484641203703704,-0.0,0.012619039640058024,4.09,0.0,4.09,-0.0,-8.485,1543.9197,27.17975 -1.132975831405236,0.011334420264009286,1.132975831405236,0.0,0.3482361111111111,-0.0,0.012559111109243222,3.14,0.0,3.14,-0.0,-8.54,1542.7644,30.780478 -1.1116873033051398,0.009606973886156257,1.1116873033051398,0.0,0.34921886574074074,-0.0,0.010652835228529119,7.66,0.0,7.66,-0.0,-10.76,1541.6316,36.17739 -1.0912381119200505,0.005397801108987145,1.0912381119200505,0.0,0.35015162037037034,-0.0,0.0059897395870578615,0.0,0.0,0.0,-0.0,-18.1,1540.5228,39.966217 -1.0715658322876949,0.004909397660404526,1.0715658322876949,0.0,0.35120578703703703,-0.0,0.005451621060889789,0.27,0.0,0.27,-0.0,-19.285,1539.4364,40.04991 -1.0525407490216847,0.011409801706087911,1.0525407490216847,0.0,0.3519482638888889,-0.0,0.012678779879365363,4.55,0.0,4.55,-0.0,-8.555,1538.3666,42.461487 -1.058047721388889,0.019322473678925,1.058047721388889,12.936371777067484,0.35200787037037035,-1.942492661526411e-6,0.02146713652089248,12.94,12.936373719560144,0.0036262804398556467,-0.0,-1.2750000000000001,1538.6782,49.836227 -1.0560966113342407,0.009074278171778107,1.0560966113342407,0.0,0.35284641203703704,-0.0,0.010082183460751376,4.35,0.0,4.35,-0.0,-11.614999999999998,1538.568,57.455227 -1.0375858062303047,0.009536769212966836,1.0375858062303047,0.0,0.3541518518518519,-0.0,0.010603322492508487,0.11,0.0,0.11,-0.0,-11.004999999999999,1537.512,59.647655 -1.01968704082297,0.01117813152828063,1.01968704082297,0.0,0.35571446759259256,-0.0,0.012436653833221699,1.58,0.0,1.58,-0.0,-8.955,1536.4728,60.59261 -1.0024412142159878,0.004788356828200782,1.0024412142159878,0.0,0.35600000000000004,-0.0,0.005331002284854102,0.0,0.0,0.0,-0.0,-19.72,1535.4541,61.41633 -0.9858275521666487,0.003168919581848634,0.9858275521666487,0.0,0.3564643518518519,-0.0,0.0035303353708253126,0.0,0.0,0.0,-0.0,-24.6,1534.456,61.43108 -0.9697587770179628,0.003912061627673566,0.9697587770179628,0.0,0.35815185185185183,-0.0,0.0043610222170623655,0.0,0.0,0.0,-0.0,-22.189999999999998,1533.4746,61.42189 -0.9541839876896764,0.0054372582154573555,0.9541839876896764,0.0,0.3599482638888889,-0.0,0.00606507948107375,0.0,0.0,0.0,-0.0,-18.285,1532.5077,61.38843 -0.9390915726886924,0.005819100472655267,0.9390915726886924,0.0,0.36000787037037035,-0.0,0.0064950471123188264,0.0,0.0,0.0,-0.0,-17.445,1531.5555,61.36791 -0.9244664948013298,0.005456399534799919,0.9244664948013298,0.0,0.36121863425925926,-0.0,0.006093944594416643,0.0,0.0,0.0,-0.0,-18.27,1530.6182,61.401505 -0.9102961576024093,0.004797653149890007,0.9102961576024093,0.0,0.3637142361111111,-0.0,0.005361459234911467,0.33,0.0,0.33,-0.0,-19.91,1529.6957,61.587315 -0.8965427529403247,0.0067679482534506,0.8965427529403247,0.0,0.36400011574074076,-0.0,0.007567795567400396,0.13,0.0,0.13,-0.0,-15.68,1528.7865,61.81903 -0.8831505728351252,0.011759374136675745,0.8831505728351252,0.0,0.36521898148148146,-0.0,0.013156851586094455,0.0,0.0,0.0,-0.0,-8.555,1527.8877,61.88518 -0.8701309449474564,0.0101040564593194,0.8701309449474564,0.0,0.36771435185185186,-0.0,0.011311383317525129,0.0,0.0,0.0,-0.0,-10.65,1527.0007,61.883965 -0.857527587447133,0.005076732474838155,0.857527587447133,0.0,0.3680083333333333,-0.0,0.005686592683699593,0.06,0.0,0.06,-0.0,-19.34,1526.1294,61.918827 -0.845310644114846,0.006124113042970309,0.845310644114846,0.0,0.3696696759259259,-0.0,0.00686364749021699,1.17,0.0,1.17,-0.0,-17.09,1525.2725,62.561455 -0.8334210570569226,0.007087948236206015,0.8334210570569226,0.0,0.3719483796296296,-0.0,0.007948281584887354,0.0,0.0,0.0,-0.0,-15.334999999999999,1524.4265,63.1099 -0.8218364387094552,0.009741683971373746,0.8218364387094552,0.0,0.37211041666666667,-0.0,0.01093012074894534,1.55,0.0,1.55,-0.0,-11.255,1523.5906,63.8716 -0.8104956775374527,0.01801410182893376,0.8104956775374527,0.0007307781909973936,0.3746479166666667,-1.3080929293244992e-13,0.020222746714999497,6.68,0.000730778191128203,6.679269221808871,-0.0,-3.005,1522.7607,68.01081 -0.8359973860224779,0.020928094967620173,0.8359973860224779,3.719920853850626,0.3760002314814815,-4.0685599116349475e-5,0.023465504462129402,3.72,3.7199615394497423,3.846055025791939e-5,-0.0,-0.9449999999999998,1524.6108,70.477936 -0.8424334991664418,0.01661857991918087,0.8424334991664418,3.514828983419704e-9,0.3772188657407407,-0.0,0.01862788984258689,8.2,3.514828983419704e-9,8.19999999648517,-0.0,-4.25,1525.0688,75.044 -0.8305470305298074,0.008766801306138645,0.8305470305298074,0.0,0.3799997685185186,-0.0,0.009832243998044195,0.0,0.0,0.0,-0.0,-12.899999999999999,1524.2202,79.00209 -0.8190308211302578,0.009441607724198775,0.8190308211302578,0.0,0.3804640046296296,-0.0,0.010594856844122093,0.0,0.0,0.0,-0.0,-11.950000000000001,1523.3864,78.97864 -0.8078146336362484,0.01083744199394491,0.8078146336362484,0.0,0.383714699074074,-0.0,0.012167763316779889,0.83,0.0,0.83,-0.0,-10.25,1522.5629,79.3869 -0.7969084061237904,0.007896727116543345,0.7969084061237904,0.0,0.38400833333333334,-0.0,0.008870798361146088,1.97,0.0,1.97,-0.0,-14.350000000000001,1521.7511,80.83958 -0.786335847506971,0.004393691966794427,0.786335847506971,0.0,0.3866476851851852,-0.0,0.004938247732462772,0.41,0.0,0.41,-0.0,-21.625,1520.9535,82.02332 -0.7760716866056437,0.0025836136633430045,0.7760716866056437,0.0,0.38799999999999996,-0.0,0.0029053265451705473,0.0,0.0,0.0,-0.0,-27.775,1520.1688,82.23104 -0.7660761601170978,0.004334685517619785,0.7660761601170978,0.0,0.3901519675925926,-0.0,0.004876926405172744,3.43,0.0,3.43,-0.0,-21.88,1519.3947,83.36707 -0.7563222186132711,0.004563354126689057,0.7563222186132711,0.0,0.39200034722222227,-0.0,0.0051367871617039144,0.87,0.0,0.87,-0.0,-21.32,1518.6294,84.46035 -0.7467947346711411,0.006555871827464723,0.7467947346711411,0.0,0.3936696759259259,-0.0,0.007383366309323278,0.0,0.0,0.0,-0.0,-16.965,1517.8723,85.02306 -0.737471680416142,0.009588801161202924,0.737471680416142,0.0,0.39600023148148145,-0.0,0.01080445805015989,0.05,0.0,0.05,-0.0,-12.215,1517.1221,85.09417 -0.7283766698279801,0.007472919553286598,0.7283766698279801,0.0,0.3972188657407407,-0.0,0.008424442670336516,0.11,0.0,0.11,-0.0,-15.43,1516.381,85.093376 -0.7195335334247245,0.004267425741179255,0.7195335334247245,0.0,0.40000023148148145,-0.0,0.004813110395534033,0.0,0.0,0.0,-0.0,-22.33,1515.6515,85.070465 -0.7109241740018217,0.0028565788972153097,0.7109241740018217,0.0,0.4012189814814815,-0.0,0.00322338446321595,0.63,0.0,0.63,-0.0,-26.985,1514.9326,85.40386 -0.7025140304591655,0.0056077739534867764,0.7025140304591655,0.0,0.40399999999999997,-0.0,0.0063308229814708315,0.72,0.0,0.72,-0.0,-19.169999999999998,1514.2219,86.06176 -0.6942814261348239,0.005748311809355533,0.6942814261348239,0.0,0.40521898148148144,-0.0,0.00649249979290389,0.0,0.0,0.0,-0.0,-18.9,1513.518,86.42146 -0.6862252455123679,0.007814404304535394,0.6862252455123679,0.0,0.4080003472222223,-0.0,0.008830139319379421,0.43,0.0,0.43,-0.0,-15.174999999999999,1512.8209,86.66984 -0.6783388018543751,0.008587793312683941,0.6783388018543751,0.0,0.40966990740740744,-0.0,0.009708485315361119,0.0,0.0,0.0,-0.0,-14.024999999999999,1512.1306,86.8331 -0.6706403140229495,0.005698958571919124,0.6706403140229495,0.0,0.41200046296296294,-0.0,0.0064455682384604585,0.01,0.0,0.01,-0.0,-19.19,1511.449,86.87463 -0.6631064508032729,0.010200792506696612,0.6631064508032729,0.0,0.41464768518518513,-0.0,0.011542331111093701,10.33,0.0,10.33,-0.0,-11.955,1510.7743,92.026855 -0.6556920676307211,0.014244414563871682,0.6556920676307211,0.0,0.4159996527777778,-0.0,0.016124909939432577,11.8,0.0,11.8,-0.0,-7.57,1510.1028,103.04106 -0.648449386326859,0.008564245254815677,0.648449386326859,0.0,0.419205324074074,-0.0,0.009699125960764027,0.0,0.0,0.0,-0.0,-14.33,1509.4395,108.880585 -0.6413994467367843,0.00746174761912903,0.6413994467367843,0.0,0.41999976851851856,-0.0,0.008454188604498213,5.61,0.0,5.61,-0.0,-16.085,1508.7866,111.65299 -0.6344832155145427,0.011956576497307766,0.6344832155145427,0.0,0.42400011574074076,-0.0,0.013552662734979492,13.66,0.0,13.66,-0.0,-10.145,1508.1392,121.165054 -0.6277146932130812,0.007283066384602778,0.6277146932130812,0.0,0.42400011574074076,-0.0,0.008258792135205407,1.81,0.0,1.81,-0.0,-16.494999999999997,1507.4987,128.88147 -0.6211288224300646,0.003916802843213068,0.6211288224300646,0.0,0.428,-0.0,0.004443400697925706,0.0,0.0,0.0,-0.0,-24.055,1506.8688,129.98177 -0.6146949702915933,0.004068983252733265,0.6146949702915933,0.0,0.42846388888888887,-0.0,0.004617946777819463,0.0,0.0,0.0,-0.0,-23.62,1506.247,129.98392 -0.6083949118853673,0.0032779822155588945,0.6083949118853673,0.0,0.43200000000000005,-0.0,0.003721748654568757,0.0,0.0,0.0,-0.0,-26.195,1505.6317,129.97038 -0.6022197373820816,0.0047404399966645685,0.6022197373820816,0.0,0.4336695601851852,-0.0,0.005384369721098357,6.74,0.0,6.74,-0.0,-21.96,1505.0225,133.52432 -0.596142577157113,0.009032632123989198,0.596142577157113,0.0,0.43600011574074077,-0.0,0.010263733436125685,3.91,0.0,3.91,-0.0,-14.11,1504.4167,138.91766 -0.5901641378963156,0.00881454617201044,0.5901641378963156,0.0,0.4399488425925926,-0.0,0.010019932542374594,2.2,0.0,2.2,-0.0,-14.53,1503.8148,142.06111 -0.5843101451846104,0.007256691605134723,0.5843101451846104,0.0,0.4400003472222222,-0.0,0.008252308822441233,0.0,0.0,0.0,-0.0,-16.965,1503.2195,143.10083 -0.5785851745019998,0.005927088505644286,0.5785851745019998,0.0,0.4440001157407408,-0.0,0.006742921958567314,0.0,0.0,0.0,-0.0,-19.55,1502.6315,143.10616 -0.5729760234848261,0.0065309162955951286,0.5729760234848261,0.0,0.4440081018518519,-0.0,0.007432741359190737,0.0,0.0,0.0,-0.0,-18.365000000000002,1502.0497,143.10616 -0.5674653262641717,0.007206272357423314,0.5674653262641717,0.0,0.4480001157407407,-0.0,0.008204506827837221,0.0,0.0,0.0,-0.0,-17.26,1501.4725,143.10616 -0.5620466885526817,0.009477164012844779,0.5620466885526817,0.0,0.4501516203703704,-0.0,0.010794088493399015,0.0,0.0,0.0,-0.0,-13.875,1500.8995,143.10616 -0.5567093781294529,0.011510590288818132,0.5567093781294529,0.0,0.452,-0.0,0.013115054112518476,0.0,0.0,0.0,-0.0,-11.415,1500.3297,143.09938 -0.5514430406201022,0.01499810058005297,0.5514430406201022,0.0,0.45599953703703705,-0.0,0.017095156957056438,0.0,0.0,0.0,-0.0,-8.02,1499.7621,143.05392 -0.5462644840336061,0.014087045975900624,0.5462644840336061,0.0,0.45599953703703705,-0.0,0.01606275231141006,0.0,0.0,0.0,-0.0,-8.855,1499.1986,143.0882 -0.5411909729391907,0.012958579585656747,0.5411909729391907,0.0,0.46,-0.0,0.014781512936199526,1.21,0.0,1.21,-0.0,-10.075000000000001,1498.6414,143.62416 -0.5362139024836494,0.013294431515843183,0.5362139024836494,0.0,0.4604638888888889,-0.0,0.015170195693800381,5.11,0.0,5.11,-0.0,-9.745,1498.0896,146.98853 -0.5313227858839946,0.013672162124395395,0.5313227858839946,0.0,0.463999537037037,-0.0,0.015606922910286807,2.77,0.0,2.77,-0.0,-9.469999999999999,1497.5424,150.89598 -0.5265214837551749,0.01307507908913922,0.5265214837551749,0.0,0.46799976851851854,-0.0,0.014930751052586717,0.0,0.0,0.0,-0.0,-10.17,1497.0002,152.15933 -0.5217955647845584,0.015319015948580247,0.5217955647845584,0.0,0.46799976851851854,-0.0,0.01749945150112987,0.0,0.0,0.0,-0.0,-8.055,1496.4618,152.17398 -0.51713637595102,0.017083458419823404,0.51713637595102,0.0,0.4719996527777777,-0.0,0.019522024011432153,0.28,0.0,0.28,-0.0,-6.69,1495.9261,152.27771 -0.5125439329322675,0.01900398918291,0.5125439329322675,6.744604874597826e-14,0.4719996527777777,-0.0,0.021724435810052626,2.7,6.744604874597826e-14,2.6999999999999327,-0.0,-5.2250000000000005,1495.3934,153.6818 -0.5080576939132219,0.011295636626290313,0.5080576939132219,0.0,0.4760001157407408,-0.0,0.012917157353977351,0.0,0.0,0.0,-0.0,-12.285,1494.8684,155.03616 -0.5036920516601346,0.008045983582703193,0.5036920516601346,0.0,0.4800005787037037,-0.0,0.00920418067905262,8.58,0.0,8.58,-0.0,-16.69,1494.353,159.33098 -0.4993965866443514,0.011957916707902413,0.4993965866443514,0.0,0.4800005787037037,-0.0,0.013683909378045736,15.06,0.0,15.06,-0.0,-11.645,1493.8416,171.13287 -0.4951711529972124,0.008804474406750787,0.4951711529972124,0.0,0.4840002314814815,-0.0,0.010078726315126123,2.72,0.0,2.72,-0.0,-15.66,1493.3341,179.75708 -0.49101358687834956,0.010675606116140502,0.49101358687834956,0.0,0.4840002314814815,-0.0,0.012224784833399126,0.0,0.0,0.0,-0.0,-13.21,1492.8306,181.46802 -0.48688595250227784,0.01917160730718776,0.48688595250227784,2.2204460492503132e-17,0.48800034722222224,-0.0,0.021961090371922672,0.02,2.2204460492503132e-17,0.01999999999999998,-0.0,-5.535,1492.3264,182.55695 -0.4828265704995351,0.011087903878872953,0.4828265704995351,0.0,0.4919994212962963,-0.0,0.0127054590369997,1.85,0.0,1.85,-0.0,-12.924999999999999,1491.8264,183.44618 -0.4788734617898576,0.007772024165653246,0.4788734617898576,0.0,0.4919994212962963,-0.0,0.008908775236169775,0.0,0.0,0.0,-0.0,-17.4,1491.3354,184.09996 -0.4747673279547211,0.01322033279624118,0.4747673279547211,0.0,0.4959997685185185,-0.0,0.015159191471701628,0.0,0.0,0.0,-0.0,-10.735,1490.8212,184.16866 -0.47149178691940696,0.025814425967198358,0.47149178691940696,2.1174666415162102,0.4959997685185185,-1.1133509494127436e-7,0.02960851207091047,2.13,2.117466752851305,0.012533247148694561,-0.0,-1.58,1490.4077,185.19551 -0.48900838185019685,0.026540136889031212,0.48900838185019685,3.778337674672168,0.4999997685185186,-1.2770075892426511e-6,0.030396455429255717,3.78,3.7783389516797574,0.0016610483202425174,-0.0,-1.32,1492.5862,185.4463 -0.488432978147819,0.0181133691016284,0.488432978147819,0.0,0.503999537037037,-0.0,0.020746243956098188,0.0,0.0,0.0,-0.0,-6.755,1492.5159,186.86142 -0.48432307736390773,0.018381832279409753,0.48432307736390773,0.0,0.503999537037037,-0.0,0.021060850631832904,0.0,0.0,0.0,-0.0,-6.550000000000001,1492.0112,186.8805 -0.48748743335009087,0.027074928855189563,0.48748743335009087,-2.23351943461321e-6,0.5079996527777778,-2.23351943461321e-6,0.031012818828029854,0.0,0.0,0.0,-0.0,-1.2599999999999998,1492.4001,185.98926 -0.5478008306337109,0.041922303600685364,0.5478008306337109,13.143430572109754,0.5079996527777778,13.143430572109754,0.047796553841917125,0.0,0.0,0.0,-0.0,5.09,1499.3663,178.495 -0.6916114953644512,0.04707271577853463,0.6916114953644512,17.155253844109755,0.511999537037037,17.155253844109755,0.05317492830579516,0.0,0.0,0.0,-0.0,6.59,1513.2878,163.92238 -0.9040102484340545,0.047147643466699696,0.9040102484340545,16.473243887869753,0.5159998842592592,16.473243887869753,0.05270255310352948,0.0,0.0,0.0,-0.0,6.335,1529.2819,147.08704 -1.162558292564272,0.04633018172205771,1.162558292564272,15.363306115949754,0.5159998842592592,15.363306115949754,0.051285015318420446,0.0,0.0,0.0,-0.0,5.92,1544.3037,130.98985 -1.4104971378983726,0.04163385413314333,1.4104971378983726,10.442136235629755,0.520000462962963,10.442136235629755,0.04574445319408044,0.0,0.0,0.0,-0.0,4.08,1555.8488,118.1101 -1.4978900045986887,0.03175731525094551,1.4978900045986887,-0.07355785443459736,0.520000462962963,-0.07355785443459736,0.03481245360414784,0.0,0.0,0.0,-0.0,0.06499999999999995,1559.4388,113.00808 -1.4628213822290175,0.020852336118640492,1.4628213822290175,0.0,0.5240002314814816,-0.0,0.022879143435331917,0.0,0.0,0.0,-0.0,-5.95,1558.024,112.91638 -1.4273216291307151,0.023690454425407074,1.4273216291307151,1.4606959752860859e-9,0.5279998842592593,-0.0,0.0260176217549322,4.6,1.4606959752860859e-9,4.599999998539303,-0.0,-4.279999999999999,1556.5569,115.20085 -1.3939621397216042,0.02586315671572815,1.3939621397216042,0.0004802950649504719,0.5279998842592593,-9.309925356278938e-14,0.028429549306800295,6.23,0.00048029506504357116,6.229519704934956,-0.0,-3.04,1555.1445,120.519806 -1.415016434822631,0.031043344775281593,1.415016434822631,2.328745125726329,0.5319998842592593,-0.0012543616494599802,0.03410413271031555,2.33,2.329999487375789,5.126242109393387e-7,-0.0,-0.56,1556.0398,122.42486 -1.4049322035750376,0.03165562742787248,1.4049322035750376,-0.013148541212522279,0.5319998842592593,-0.013148541212522279,0.034786333388541625,0.0,0.0,0.0,-0.0,-0.27500000000000036,1555.6127,122.50201 -1.3915252585154902,0.03509071215697405,1.3915252585154902,2.511889565898739,0.5359994212962963,2.511889565898739,0.038575343987347153,0.0,0.0,0.0,-0.0,1.1150000000000002,1555.04,121.65763 -1.4756719921358867,0.0399069207323276,1.4756719921358867,7.219304873776084,0.5395353009259259,7.219304873776084,0.043771122760249234,0.0,0.0,0.0,-0.0,2.8749999999999996,1558.5464,116.690575 -1.649376227278279,0.04225998810305099,1.649376227278279,9.292080230989747,0.54,9.292080230989747,0.046155225762663586,0.0,0.0,0.0,-0.0,3.6500000000000004,1565.1923,108.44729 -1.8930398065031144,0.044684379317261165,1.8930398065031144,11.017164237949753,0.5439997685185185,11.017164237949753,0.048547851689389854,0.0,0.0,0.0,-0.0,4.295,1573.4209,98.40868 -2.2875899637998325,0.05053657446889592,2.2875899637998325,15.697624721949754,0.5439997685185185,15.697624721949754,0.05451431977058301,0.0,0.0,0.0,-0.0,6.045,1584.7268,85.02053 -3.2461353205980945,0.06043578033318535,3.2461353205980945,31.260151166829758,0.5479999999999999,22.210151166829757,0.06434409813818392,9.05,9.05,0.0,-0.0,8.48,1605.6268,66.01004 -4.912876546128974,0.05167660521135259,4.912876546128974,29.935614765709754,0.5498481481481481,15.015614765709755,0.05418334337380279,14.92,14.92,0.0,-0.0,5.79,1630.3745,47.248314 -6.017595267900984,0.04583679826255421,6.017595267900984,10.433380790909752,0.5520004629629629,9.733380790909752,0.04770582617909435,0.7,0.7,0.0,-0.0,3.815,1642.4874,34.67247 -6.141197731932693,0.03950257472143615,6.141197731932693,3.5417939267478458,0.5559922453703704,3.5417939267478458,0.04108294900182822,0.0,0.0,0.0,-0.0,1.5,1643.7017,28.076971 -6.059004291976251,0.04314593198824124,6.059004291976251,7.032086454402941,0.5560002314814815,7.032086454402941,0.04489404382460455,0.0,0.0,0.0,-0.0,2.8049999999999997,1642.897,22.773384 -6.406813881593816,0.04921363521643319,6.406813881593816,12.093138102029755,0.56,11.913138102029755,0.05110389987561859,0.18,0.18,0.0,-0.0,4.630000000000001,1646.2303,13.293168 -6.8482539783858725,0.05750468872776582,6.8482539783858725,9.364873123168945,0.5600517361111111,4.914873123168945,0.059569417044938545,4.45,4.45,0.0,-0.0,6.955,1650.2096,4.914873 -6.886012602900593,0.05423047685355538,6.886012602900593,5.716384895264374,0.5639996527777777,1.806384895264374,0.05616646695529894,3.91,3.91,0.0,-0.0,5.95,1650.538,1.8063849 -6.494030829781641,0.04197361773002823,6.494030829781641,1.0125236727188605,0.5663305555555556,0.6625236727188604,0.043564429029582116,0.35,0.35,0.0,-0.0,2.09,1647.0378,0.66339487 -6.032422957232807,0.038347366422585655,6.032422957232807,2.8095144905902147,0.5679997685185185,0.22951449059121382,0.03990743646347201,2.58,2.579999999999001,9.992373595224535e-13,-0.0,0.7649999999999999,1642.6344,0.24919271 -6.070632425390218,0.0492191457893255,6.070632425390218,10.050327879859752,0.5715351851851852,0.0803278798597514,0.05120975246898818,9.97,9.97,0.0,-0.0,4.3549999999999995,1643.0115,0.10769123 -6.600124908580108,0.0531167628913544,6.600124908580108,12.804185554784674,0.5719994212962963,0.034185554784674645,0.055097527924900636,12.77,12.77,0.0,-0.0,5.444999999999999,1648.0056,0.054089338 -7.676671802765463,0.04337461198685192,7.676671802765463,19.616944267655647,0.5760005787037037,0.016944267655646918,0.04474707468021178,19.6,19.6,0.0,-0.0,2.235,1657.0292,0.029553112 -8.330497571142677,0.04521526808568095,8.330497571142677,6.829115395615917,0.5760005787037037,0.009115395615916882,0.04650896485136252,6.82,6.82,0.0,-0.0,2.8049999999999997,1661.9105,0.016819619 -8.008437625774665,0.04499062300047387,8.008437625774665,4.535126547722743,0.5800003472222222,0.005126547722742174,0.04634355232005771,4.53,4.53,0.0,-0.0,2.65,1659.5559,0.009775658 -7.722201590237233,0.04705838715943179,7.722201590237233,6.01294562288046,0.5807946759259259,0.002945622880460289,0.04853706782214225,6.01,6.01,0.0,-0.0,3.3150000000000004,1657.3823,0.005727282 -7.14175024127833,0.04383277615610892,7.14175024127833,0.0017294905576466075,0.5840005787037037,0.0017294905576466075,0.04533775657712033,0.0,0.0,0.0,-0.0,2.225,1652.7157,0.0034011477 -6.372503449263821,0.047274019947176685,6.372503449263821,0.0010248788555373832,0.5853530092592593,0.0010248788555373832,0.04909934955407605,0.0,0.0,0.0,-0.0,3.37,1645.9097,0.0020291707 -5.753043683138277,0.06272748321176598,5.753043683138277,0.0006068718547665105,0.5880002314814815,0.0006068718547665105,0.06539213579572907,0.0,0.0,0.0,-0.0,7.640000000000001,1639.8025,0.001206466 -5.241044460070243,0.06986783713557793,5.241044460070243,0.0003120517338078294,0.5903311342592593,0.0003120517338078294,0.0730838983156253,0.0,0.0,0.0,-0.0,9.305,1634.2361,0.000622168 -4.811527010668572,0.080045984304836,4.811527010668572,8.324431230311573e-5,0.5920008101851852,8.324431230311573e-5,0.08399300235429528,0.0,0.0,0.0,-0.0,11.455,1629.1296,0.00016635026 -4.447033201955709,0.07855666104298642,4.447033201955709,-2.854501677885941e-5,0.5943310185185184,-2.854501677885941e-5,0.08266897239637633,0.0,0.0,0.0,-0.0,11.14,1624.425,-5.710634e-5 -4.121652021666929,0.06433195189491187,4.121652021666929,-2.1265002841552637e-5,0.5959997685185184,-2.1265002841552637e-5,0.06788926723946996,0.0,0.0,0.0,-0.0,8.01,1619.8873,-4.2539054e-5 -3.8366759379621658,0.08202197344393376,3.8366759379621658,-9.714379483173731e-6,0.5987809027777777,-9.714379483173731e-6,0.0867867210379026,0.0,0.0,0.0,-0.0,11.795,1615.6085,-1.9430647e-5 -3.6628419502394727,0.10200095734937073,3.6628419502394727,1.8799964233258344,0.5999998842592592,-3.576674165591685e-6,0.10811160224542798,1.88,1.88,0.0,-0.0,15.32,1612.8395,-7.153604e-6 -3.6287115110184205,0.10104370792255704,3.6287115110184205,6.489997977729406,0.6027810185185185,-2.0222705941630186e-6,0.10713414365511395,6.49,6.49,0.0,-0.0,15.094999999999999,1612.2804,-4.044623e-6 -3.607781335596325,0.0796710390216322,3.607781335596325,1.7499989462906644,0.6039996527777778,-1.0537093356362048e-6,0.08449133531764216,1.75,1.75,0.0,-0.0,11.23,1611.9349,-2.1074409e-6 -3.464462947881128,0.07390269105275238,3.464462947881128,-5.958152967038068e-7,0.6063304398148148,-5.958152967038068e-7,0.07849186567330675,0.0,0.0,0.0,-0.0,10.005,1609.5142,-1.1916377e-6 -3.2761650923623686,0.079962476973359,3.2761650923623686,-3.228989929543201e-7,0.6079995370370371,-3.228989929543201e-7,0.0851044172964863,0.0,0.0,0.0,-0.0,11.24,1606.1768,-6.4580007e-7 -3.1340626808808087,0.060885995239982706,3.1340626808808087,1.2799998254303853,0.6098476851851852,-1.7456961466232803e-7,0.06490825142096718,1.28,1.28,0.0,-0.0,6.965,1603.5286,-3.4913984e-7 -3.11096435881775,0.059820437333096305,3.11096435881775,3.0599999054002702,0.6120002314814815,-9.459973004215556e-8,0.06378987465432069,3.06,3.06,0.0,-0.0,6.6450000000000005,1603.0868,-1.8919964e-7 -3.237117319220058,0.06604086413510331,3.237117319220058,7.5099999599941505,0.6133524305555556,-4.0005849282492287e-8,0.07031893281650088,7.51,7.51,0.0,-0.0,8.11,1605.4607,-8.001173e-8 -3.5131616252907905,0.06267325356257801,3.5131616252907905,10.219999981317878,0.6159914351851852,-1.868212257815171e-8,0.06653064952229615,10.22,10.22,0.0,-0.0,7.1899999999999995,1610.3478,-3.7364252e-8 -3.5327195816888723,0.05604398140562951,3.5327195816888723,0.39999999013776644,0.6162851851851852,-9.862233611908894e-9,0.05948111462785384,0.4,0.4,0.0,-0.0,5.475,1610.6793,-1.972447e-8 -3.3388959927942294,0.06804499582707921,3.3388959927942294,-4.310597470785726e-9,0.6195356481481481,-4.310597470785726e-9,0.07236955382763519,0.0,0.0,0.0,-0.0,8.4,1607.3094,-8.621195e-9 -3.1787797251251715,0.08383734975149235,3.1787797251251715,1.059999997634224,0.6199998842592592,-2.3657759635616237e-9,0.08932868794031237,1.06,1.06,0.0,-0.0,11.7,1604.3746,-4.731552e-9 -3.065653126225376,0.07116204753152475,3.065653126225376,1.0299999985948816,0.6227818287037037,-1.4051184462810672e-9,0.07592556695269195,1.03,1.03,0.0,-0.0,9.065000000000001,1602.2106,-2.810237e-9 -2.936154472760502,0.062066619630946764,2.936154472760502,-7.511646803656262e-10,0.6240006944444445,-7.511646803656262e-10,0.06632800325767074,0.0,0.0,0.0,-0.0,6.945,1599.633,-1.5023294e-9 -2.7958601911463346,0.06604128162342654,2.7958601911463346,-2.633276090240643e-10,0.6253526620370371,-2.633276090240643e-10,0.07070479892684839,0.0,0.0,0.0,-0.0,7.895,1596.7091,-5.266552e-10 -2.685695362568321,0.07487240195904402,2.685695362568321,0.6699999999600836,0.6278895833333333,-3.991638615269263e-11,0.08028023705687475,0.67,0.67,0.0,-0.0,9.81,1594.3083,-7.983277e-11 -2.651912113099842,0.07651701946788411,2.651912113099842,4.219999999978265,0.6280518518518519,-2.1734610634310878e-11,0.08208256244194999,4.22,4.22,0.0,-0.0,10.155,1593.5524,-4.346922e-11 -2.653321847785664,0.07168271528643168,2.653321847785664,1.859999999988828,0.6303303240740741,-1.1172281848410261e-11,0.07689509874997283,1.86,1.86,0.0,-0.0,9.075,1593.5841,-2.2344564e-11 -2.577694361667445,0.0833147450936857,2.577694361667445,-6.313605887698868e-12,0.6319916666666667,-6.313605887698868e-12,0.08946990389867983,0.0,0.0,0.0,-0.0,11.420000000000002,1591.8572,-1.2627212e-11 -2.4601133138631632,0.07871453617724837,2.4601133138631632,-3.4433766600763284e-12,0.6322856481481481,-3.4433766600763284e-12,0.08467815650063787,0.0,0.0,0.0,-0.0,10.54,1589.069,-6.8867533e-12 -2.478637564746963,0.08632931216366971,2.478637564746963,5.929999999998091,0.6347809027777778,-1.9085755111388656e-12,0.09284367300732933,5.93,5.93,0.0,-0.0,11.94,1589.517,-3.817151e-12 -2.6542223011103276,0.0842786984235636,2.6542223011103276,7.519999999998908,0.6360001157407408,-1.0919164877712505e-12,0.09040584479536129,7.52,7.52,0.0,-0.0,11.485,1593.6044,-2.183833e-12 -2.7478102238538393,0.07480923501803009,2.7478102238538393,2.0199999999993823,0.6362856481481481,-6.176658576929213e-13,0.08014386685502327,2.02,2.02,0.0,-0.0,9.575,1595.6738,-1.2353317e-12 -2.794877409452388,0.07426759706979029,2.794877409452388,5.679999999999642,0.6387810185185185,-3.5827352369437887e-13,0.07951306272367803,5.68,5.68,0.0,-0.0,9.39,1596.6881,-7.1654705e-13 -3.2081077039758656,0.07093726054574218,3.2081077039758656,17.189999999999795,0.6399917824074074,-2.043814472043104e-13,0.07555781441397807,17.19,17.19,0.0,-0.0,8.565,1604.9231,-4.087629e-13 -4.0650420238496485,0.06914098033509812,4.0650420238496485,18.06999999999988,0.6400512731481481,-1.1918675139700414e-13,0.07300143794542024,18.07,18.07,0.0,-0.0,8.030000000000001,1619.0614,-2.383735e-13 -4.620758409188939,0.06433195731047438,4.620758409188939,5.639999999999931,0.6418483796296296,-6.859063420316059e-14,0.06760438437524,5.64,5.64,0.0,-0.0,6.805,1626.7136,-1.3718127e-13 -5.00603586464468,0.06620609944565455,5.00603586464468,12.429999999999959,0.6435354166666667,-4.0465271107845423e-14,0.06936990499401716,12.43,12.43,0.0,-0.0,7.16,1631.4963,-8.093054e-14 -5.645129056964509,0.0700694348742102,5.645129056964509,14.399999999999977,0.6439998842592592,-2.3932333165996818e-14,0.07309638185273677,14.4,14.4,0.0,-0.0,7.955,1638.6716,-4.7864666e-14 -5.632392991435495,0.07731422508130165,5.632392991435495,1.0499999999999867,0.6442856481481481,-1.327430647904716e-14,0.08066078117125687,1.05,1.05,0.0,-0.0,9.48,1638.5367,-2.6548613e-14 -5.287204925555479,0.07970018383376228,5.287204925555479,2.099999999999993,0.6458482638888889,-7.309835042497771e-15,0.08334212770404283,2.1,2.1,0.0,-0.0,9.955,1634.7598,-1.461967e-14 -4.930622818161373,0.08259212997325607,4.930622818161373,0.2699999999999957,0.6471538194444444,-4.313862143884239e-15,0.08658708802600701,0.27,0.27,0.0,-0.0,10.524999999999999,1630.5898,-8.627724e-15 -4.580893936209375,0.09589773548880158,4.580893936209375,0.48999999999999744,0.6479927083333333,-2.5447559065126068e-15,0.10080791209101149,0.49,0.49,0.0,-0.0,12.93,1626.1962,-5.089512e-15 -4.3175164954012075,0.0789017303631411,4.3175164954012075,1.4599999999999986,0.6480521990740741,-1.3209288230017508e-15,0.08312242822126242,1.46,1.46,0.0,-0.0,9.86,1622.6599,-2.6418576e-15 -4.079700734282819,0.08369613862318218,4.079700734282819,0.18999999999999942,0.6487947916666666,-5.805416119110764e-16,0.08835754598881185,0.19,0.19,0.0,-0.0,10.805,1619.2764,-1.1610832e-15 -3.936877253222296,0.09381240388388,3.936877253222296,0.009999999999999678,0.6498487268518519,-3.2206397587249217e-16,0.09916756412396963,0.01,0.01,0.0,-0.0,12.62,1617.1482,-6.4412795e-16 -4.154376894857907,0.10666383832764523,4.154376894857907,10.58,0.6507814814814814,-1.6096208124831827e-16,0.11252913932036708,10.58,10.58,0.0,-0.0,14.645,1620.3596,-3.2192416e-16 -4.442009318276711,0.11415912669879723,4.442009318276711,7.24,0.6515357638888889,-7.870205967668835e-17,0.12014016084417538,7.24,7.24,0.0,-0.0,15.7,1624.3575,-1.5740412e-16 -4.354982147266799,0.10216813714004487,4.354982147266799,-4.5980862595622005e-17,0.6519921296296297,-4.5980862595622005e-17,0.10759921155730398,0.0,0.0,0.0,-0.0,13.885000000000002,1623.1759,-9.1961725e-17 -4.045984192304082,0.11748970522500707,4.045984192304082,-2.664669037366482e-17,0.6520001157407407,-2.664669037366482e-17,0.12407119944565194,0.0,0.0,0.0,-0.0,16.22,1618.7808,-5.329338e-17 -3.7811734034040776,0.14235329632019098,3.7811734034040776,-1.5328662602232464e-17,0.6520517361111111,-1.5328662602232464e-17,0.15070393341249674,0.0,0.0,0.0,-0.0,19.48,1614.7383,-3.0657325e-17 -3.5476770097100907,0.14613073034942153,3.5476770097100907,-8.641059550973947e-18,0.6522856481481482,-8.641059550973947e-18,0.15506852080259323,0.0,0.0,0.0,-0.0,19.96,1610.9316,-1.7282119e-17 -3.360168243483145,0.141768029922635,3.360168243483145,3.29,0.6527943287037037,-3.856383017351832e-18,0.15074243987984642,3.29,3.29,0.0,-0.0,19.465,1607.6887,-7.712766e-18 -3.216696393070065,0.10539589963561877,3.216696393070065,2.65,0.653352662037037,9.687612597879102e-19,0.1122497765509461,2.65,2.65,0.0,-0.0,14.540000000000001,1605.0828,1.9375225e-18 -3.092009119695797,0.10658526871394806,3.092009119695797,0.030000000000000002,0.653848611111111,4.528914769762558e-18,0.11368371069761375,0.03,0.03,0.0,-0.0,14.735,1602.7218,9.0578295e-18 -2.9648676667227987,0.11863490559856306,2.9648676667227987,0.1,0.653848611111111,5.518619001889392e-18,0.1267341221607877,0.1,0.1,0.0,-0.0,16.525000000000002,1600.2142,1.1037238e-17 -2.802228061670459,0.11615600428587892,2.802228061670459,3.5720711146500056e-18,0.653848611111111,3.5720711146500056e-18,0.12434780121294486,0.0,0.0,0.0,-0.0,16.21,1596.845,7.144142e-18 -2.710446357220506,0.11543216646831854,2.710446357220506,3.45,0.6543310185185185,1.981282855521713e-18,0.12372700956336263,3.45,3.45,0.0,-0.0,16.115,1594.8562,3.9625657e-18 -3.104599224246908,0.11679297129382481,3.104599224246908,18.0,0.6543310185185185,1.1540568514325716e-18,0.12455237408587072,18.0,18.0,0.0,-0.0,16.225,1602.9645,2.3081137e-18 -4.1188054146852835,0.09877491236378953,4.1188054146852835,22.24,0.653848611111111,6.7470966726479e-19,0.10423944913183092,22.24,22.24,0.0,-0.0,13.325000000000001,1619.8461,1.3494193e-18 -4.569297857444679,0.0876331394806372,4.569297857444679,4.030726013903255e-19,0.653848611111111,4.030726013903255e-19,0.0921287258396574,0.0,0.0,0.0,-0.0,11.344999999999999,1626.0448,8.061452e-19 -4.219435064074093,0.11067121185867951,4.219435064074093,2.4033448354392654e-19,0.653352662037037,2.4033448354392654e-19,0.11669004464643448,0.0,0.0,0.0,-0.0,15.174999999999999,1621.2876,4.8066897e-19 -3.9328637792025596,0.1428448071642362,3.9328637792025596,1.4312589816731398e-19,0.653352662037037,1.4312589816731398e-19,0.15100460687636116,0.0,0.0,0.0,-0.0,19.48,1617.0873,2.862518e-19 -3.695759571366052,0.1601218120606342,3.695759571366052,5.895998003435931e-20,0.6527943287037037,5.895998003435931e-20,0.1696581405259368,0.0,0.0,0.0,-0.0,21.490000000000002,1613.3738,1.1791996e-19 -3.5282309600131057,0.14580147180301917,3.5282309600131057,-7.753395879771955e-20,0.6522856481481482,-7.753395879771955e-20,0.15475065616668843,0.0,0.0,0.0,-0.0,19.925,1610.6034,-1.5506792e-19 -3.406210104831581,0.1247389570773927,3.406210104831581,8.57,0.6520517361111111,-2.3464154222500104e-19,0.13256834938367618,8.57,8.57,0.0,-0.0,17.32,1608.5015,-4.692831e-19 -3.3082100747424423,0.1074331247479151,3.3082100747424423,2.99,0.6519921296296297,-3.7612039454575122e-19,0.11430018210717409,2.99,2.99,0.0,-0.0,14.87,1606.758,-7.522408e-19 -3.215657701675079,0.10343186310405199,3.215657701675079,-4.657280689724023e-19,0.6518894675925926,-4.657280689724023e-19,0.11015934277183012,0.0,0.0,0.0,-0.0,14.27,1605.0635,-9.314561e-19 -3.112071010681441,0.11853806282655795,3.112071010681441,-4.672221639538262e-19,0.6511538194444445,-4.672221639538262e-19,0.12640208465188674,0.0,0.0,0.0,-0.0,16.55,1603.108,-9.344443e-19 -2.9838911460400213,0.12089996101655372,2.9838911460400213,0.32,0.6503311342592593,-3.4535217089092253e-19,0.1291229925339502,0.32,0.32,0.0,-0.0,16.925,1600.5962,-6.9070434e-19 -2.8884788154824705,0.1177753826083476,2.8884788154824705,2.32,0.6493528935185184,-1.9370953066388308e-19,0.1259386016907828,2.32,2.32,0.0,-0.0,16.535,1598.6554,-3.8741906e-19 -2.8045488085659063,0.10875541508396074,2.8045488085659063,-9.895456977925594e-20,0.6482863425925927,-9.895456977925594e-20,0.11642168773806152,0.0,0.0,0.0,-0.0,15.265,1596.8944,-1.9790914e-19 -2.6778401751921033,0.1426077163139122,2.6778401751921033,-5.57960917395264e-20,0.6480008101851852,-5.57960917395264e-20,0.15292467241589988,0.0,0.0,0.0,-0.0,19.835,1594.1334,-1.1159218e-19 -2.555983551929777,0.1845842665121442,2.555983551929777,-2.470788651254607e-20,0.647890162037037,-2.470788651254607e-20,0.19828397332316958,0.0,0.0,0.0,-0.0,24.345,1591.352,-4.9415773e-20 -2.4440843891442245,0.16308430344546476,2.4440843891442245,-7.361518903016245e-21,0.64678125,-7.361518903016245e-21,0.17548310958054875,0.0,0.0,0.0,-0.0,22.235,1588.6786,-1.4723038e-20 -2.3564875454239598,0.15783575671525144,2.3564875454239598,-3.293558145476611e-21,0.645352199074074,-3.293558145476611e-21,0.17006886840276458,0.0,0.0,0.0,-0.0,21.73,1586.4989,-6.5871163e-21 -2.3291675544173605,0.1638361707132652,2.3291675544173605,0.81,0.6440515046296297,6.910832494713247e-22,0.17661187216310792,0.81,0.81,0.0,-0.0,22.42,1585.8025,1.3821665e-21 -2.353921612463874,0.1460593299809678,2.353921612463874,0.02,0.6438894675925926,4.513340164056186e-21,0.1573861604033053,0.02,0.02,0.0,-0.0,20.435000000000002,1586.4338,9.02668e-21 -2.4230135017562913,0.12952359744965222,2.4230135017562913,6.49,0.6427809027777778,7.072000841861284e-21,0.13941626245119443,6.49,6.49,0.0,-0.0,18.405,1588.1615,1.4144002e-20 -2.530500766932167,0.1465207424670191,2.530500766932167,9.56,0.6407940972222222,7.265851103089226e-21,0.15745460978797512,9.56,9.56,0.0,-0.0,20.525,1590.7537,1.4531702e-20 -2.6627537637176326,0.12720943104779006,2.6627537637176326,1.9,0.6399997685185186,4.639499747754728e-21,0.13644127624766006,1.9,1.9,0.0,-0.0,18.115,1593.796,9.2789995e-21 -2.7661533261640954,0.12579160017371507,2.7661533261640954,5.17,0.6395354166666667,2.1371848926764454e-21,0.13472822575742058,5.17,5.17,0.0,-0.0,17.915,1596.0712,4.2743698e-21 -2.818363921492785,0.10447653197786239,2.818363921492785,2.81,0.6378482638888888,6.141923080853851e-22,0.1118206331120283,2.81,2.81,0.0,-0.0,14.870000000000001,1597.1879,1.2283846e-21 -2.80874822100555,0.1049905314022074,2.80874822100555,2.5,0.6360001157407408,2.52107954622876e-22,0.11238512522744228,2.5,2.5,0.0,-0.0,15.0,1596.9838,5.042159e-22 -2.7645988774780204,0.09837756673389228,2.7645988774780204,5.406745359301705e-23,0.6355359953703703,5.406745359301705e-23,0.10536883048939946,0.0,0.0,0.0,-0.0,13.959999999999999,1596.0376,1.0813491e-22 -2.7181971645596827,0.10747655399533954,2.7181971645596827,0.2,0.6338483796296296,-1.1920536461134782e-22,0.11518739795045208,0.2,0.2,0.0,-0.0,15.46,1595.0267,-2.3841073e-22 -2.69811968763099,0.1193196040619506,2.69811968763099,4.57,0.6319996527777777,-2.1570721139623905e-22,0.1279156278175511,4.57,4.57,0.0,-0.0,17.245,1594.584,-4.314144e-22 -2.7323296152369174,0.11355041885795278,2.7323296152369174,4.2,0.6315355324074073,-1.8429240987850994e-22,0.12167340451687722,4.2,4.2,0.0,-0.0,16.424999999999997,1595.3364,-3.6858482e-22 -2.8064182626836005,0.09865444040472962,2.8064182626836005,2.26,0.6287943287037038,-9.459374371645541e-23,0.10560605402237379,2.26,2.26,0.0,-0.0,14.17,1596.9342,-1.8918749e-22 -2.87361507122676,0.10647973462131811,2.87361507122676,4.87,0.628,-2.759595427454678e-23,0.11388198069159337,4.87,4.87,0.0,-0.0,15.425,1598.3473,-5.519191e-23 -2.89821936653741,0.10040926861075698,2.89821936653741,2.88,0.6267813657407407,1.8769292576137538e-24,0.10735531056461028,2.88,2.88,0.0,-0.0,14.49,1598.8564,3.7538585e-24 -2.839492874722742,0.09861726547517184,2.839492874722742,0.7,0.624052199074074,1.2202407151635515e-24,0.10552002530803652,0.7,0.7,0.0,-0.0,14.28,1597.6339,2.4404814e-24 -2.715825742699276,0.09251539000420775,2.715825742699276,2.324225568914292e-25,0.6238902777777778,2.324225568914292e-25,0.09915609412847418,0.0,0.0,0.0,-0.0,13.275,1594.9746,4.648451e-25 -2.5921504894273197,0.10071671401771543,2.5921504894273197,0.17,0.6207944444444444,-4.036060635776808e-25,0.1081348146312354,0.17,0.17,0.0,-0.0,14.765,1592.1912,-8.0721213e-25 -2.5259840847297377,0.10935119050400245,2.5259840847297377,2.02,0.6199998842592592,-4.534734866188712e-25,0.11751922351335442,2.02,2.02,0.0,-0.0,16.155,1590.647,-9.06947e-25 -2.6898982453933393,0.12616685032231725,2.6898982453933393,8.83,0.6183303240740741,-2.5270821367680065e-25,0.13527162414182115,8.83,8.83,0.0,-0.0,18.55,1594.4017,-5.0541643e-25 -3.028575767182442,0.13298670598215914,3.028575767182442,11.28,0.615999537037037,-1.2651470166237102e-25,0.14195309192623345,11.28,11.28,0.0,-0.0,19.43,1601.4839,-2.530294e-25 -3.2683794990672212,0.13591008249219413,3.2683794990672212,4.84,0.6151532407407407,-7.256654429930312e-26,0.14466249838783718,4.84,4.84,0.0,-0.0,19.775,1606.0347,-1.4513309e-25 -3.240871219159018,0.1391485508114834,3.240871219159018,1.11,0.6120002314814815,-3.961317112713007e-26,0.1481560834434278,1.11,1.11,0.0,-0.0,20.27,1605.5299,-7.922634e-26 -3.101148958787913,0.1509365703406505,3.101148958787913,0.01,0.6115356481481482,-2.2702550954157723e-26,0.16097104822619543,0.01,0.01,0.0,-0.0,21.71,1602.8981,-4.5405102e-26 -3.009132085458368,0.15082032322138894,3.009132085458368,1.99,0.6080510416666667,-1.2017832127111506e-26,0.16102778382879104,1.99,1.99,0.0,-0.0,21.814999999999998,1601.0992,-2.4035664e-26 -3.0467995875032985,0.13705196001568082,3.0467995875032985,6.15,0.6078891203703704,-5.947706158063238e-27,0.1462597177644499,6.15,6.15,0.0,-0.0,20.165,1601.8422,-1.1895412e-26 -3.1321990452154465,0.12415122015286179,3.1321990452154465,6.71,0.6042853009259259,-3.347323636057359e-27,0.13235584143996154,6.71,6.71,0.0,-0.0,18.57,1603.493,-6.694647e-27 -3.0770287501970075,0.09955935850960504,3.0770287501970075,-1.525842746640573e-27,0.6039916666666666,-1.525842746640573e-27,0.10620910419568294,0.0,0.0,0.0,-0.0,14.920000000000002,1602.4318,-3.0516855e-27 -2.9437743958768556,0.09899649559104132,2.9437743958768556,-7.0367346081036725e-28,0.6002854166666667,-7.0367346081036725e-28,0.10578318287781545,0.0,0.0,0.0,-0.0,14.955000000000002,1599.7878,-1.4073469e-27 -2.9423426519515528,0.10830991317536644,2.9423426519515528,-3.7368303524685414e-28,0.5999998842592592,-3.7368303524685414e-28,0.11573718199093465,0.0,0.0,0.0,-0.0,16.445,1599.7588,-7.4736607e-28 -3.080200327610844,0.1139853023413964,3.080200327610844,8.43,0.5962851851851851,-1.4679868962944568e-28,0.12159391388517565,8.43,8.43,0.0,-0.0,17.37,1602.4933,-2.9359738e-28 -3.2193077504074954,0.12141624393546707,3.2193077504074954,4.78,0.5959997685185184,-6.134437151381982e-29,0.12930801686924054,4.78,4.78,0.0,-0.0,18.41,1605.1312,-1.2268874e-28 -3.224464325499796,0.11901767315041084,3.224464325499796,1.84,0.5920523148148148,-3.4058707869199504e-29,0.1267459972042374,1.84,1.84,0.0,-0.0,18.185,1605.2268,-6.8117416e-29 -3.166186485256923,0.11609059385681289,3.166186485256923,3.03,0.591992824074074,-1.7814557077559197e-29,0.12371279603240017,3.03,3.03,0.0,-0.0,17.78,1604.1376,-3.5629114e-29 -3.088699112066522,0.12081409964384059,3.088699112066522,-1.010905656712808e-29,0.5880002314814815,-1.010905656712808e-29,0.12886530652178457,0.0,0.0,0.0,-0.0,18.58,1602.6578,-2.0218113e-29 -2.944520622519443,0.12684437080276573,2.944520622519443,-4.745313836303401e-30,0.5879922453703703,-4.745313836303401e-30,0.13553888183201335,0.0,0.0,0.0,-0.0,19.435000000000002,1599.803,-9.490628e-30 -2.7989421935937346,0.12158621756362004,2.7989421935937346,-2.2773025091248617e-30,0.5840005787037037,-2.2773025091248617e-30,0.13016668697713032,0.0,0.0,0.0,-0.0,18.865,1596.7749,-4.554605e-30 -2.8857995666750957,0.1090323803076326,2.8857995666750957,5.4,0.5835359953703704,-1.1998274600425011e-30,0.11659364841428517,5.4,5.4,0.0,-0.0,17.03,1598.6,-2.399655e-30 -3.310158137336638,0.1163275436488998,3.310158137336638,15.54,0.5800003472222222,-4.557392538533489e-31,0.12376041872915315,15.54,15.54,0.0,-0.0,18.130000000000003,1606.7932,-9.114785e-31 -4.087789304411356,0.11261185633957833,4.087789304411356,19.05,0.5787818287037036,-1.7806741074561258e-31,0.11887502397552538,19.05,19.05,0.0,-0.0,17.49,1619.3947,-3.5613482e-31 -4.279865731525115,0.10943863429979914,4.279865731525115,-1.0338126044648526e-31,0.5760005787037037,-1.0338126044648526e-31,0.11533002282085018,0.0,0.0,0.0,-0.0,17.065,1622.1368,-2.0676252e-31 -4.0474234553204465,0.11550612179948265,4.0474234553204465,1.28,0.5738478009259259,-6.07614616857414e-32,0.12197489993947686,1.28,1.28,0.0,-0.0,18.064999999999998,1618.802,-1.2152292e-31 -3.897149173306035,0.09146132294637666,3.897149173306035,2.18,0.5719994212962963,-3.600925346462912e-32,0.09671850127428698,2.18,2.18,0.0,-0.0,14.280000000000001,1616.5425,-7.2018507e-32 -3.7033897078831957,0.07839514056661309,3.7033897078831957,-2.089870557898254e-32,0.5680513888888888,-2.089870557898254e-32,0.08305775645257343,0.0,0.0,0.0,-0.0,11.935,1613.497,-4.179741e-32 -3.4718923172677063,0.09127011065856201,3.4718923172677063,-1.0536874221381743e-32,0.5679997685185185,-1.0536874221381743e-32,0.09693005481777199,0.0,0.0,0.0,-0.0,14.43,1609.6421,-2.1073748e-32 -3.4188144818657267,0.10275275564594655,3.4188144818657267,4.39,0.5639996527777777,-5.619048871974758e-33,0.10918718395661006,4.39,4.39,0.0,-0.0,16.505000000000003,1608.722,-1.1238098e-32 -3.8896524861439845,0.1231484305828338,3.8896524861439845,14.08,0.5639916666666667,-3.313174908830773e-33,0.13023624159551012,14.08,14.08,0.0,-0.0,19.465,1616.4275,-6.62635e-33 -4.0757832517340535,0.14202254772662018,4.0757832517340535,-1.982826442360927e-33,0.56,-1.982826442360927e-33,0.1499377227343401,0.0,0.0,0.0,-0.0,22.005,1619.219,-3.965653e-33 -3.8068893954239518,0.1390581784134412,3.8068893954239518,-1.1867665151272078e-33,0.558330324074074,-1.1867665151272078e-33,0.14717862445685106,0.0,0.0,0.0,-0.0,21.735,1615.1431,-2.373533e-33 -3.6466982299165247,0.13435102290469475,3.6466982299165247,1.86,0.5560002314814815,-7.032342148384044e-34,0.14242298102196058,1.86,1.86,0.0,-0.0,21.240000000000002,1612.5757,-1.4064684e-33 -3.468260713359664,0.0957898843533313,3.468260713359664,-4.169314076828531e-34,0.5520519675925926,-4.169314076828531e-34,0.10173406395472143,0.0,0.0,0.0,-0.0,15.690000000000001,1609.5796,-8.338628e-34 -3.2581007369910715,0.08431907693746085,3.2581007369910715,-2.3335792170491642e-34,0.5520004629629629,-2.3335792170491642e-34,0.08975961878901759,0.0,0.0,0.0,-0.0,13.645,1605.8466,-4.6671584e-34 -3.2380371849506706,0.09066755438744852,3.2380371849506706,5.24,0.5479999999999999,-1.371967326097064e-34,0.09653989794001484,5.24,5.24,0.0,-0.0,14.95,1605.4777,-2.7439347e-34 -3.4602520149879177,0.088884289483319,3.4602520149879177,9.27,0.5479921296296296,-7.975857166051991e-35,0.09440804468136493,9.27,9.27,0.0,-0.0,14.585,1609.4415,-1.5951714e-34 -3.643263554895889,0.07671341788588282,3.643263554895889,2.77,0.5439997685185185,-4.7262555516281425e-35,0.08132528294343604,2.77,2.77,0.0,-0.0,12.29,1612.5194,-9.452511e-35 -3.9765388627737823,0.08306554321852844,3.9765388627737823,15.64,0.540794212962963,-2.7328668103887224e-35,0.08777474047523535,15.64,15.64,0.0,-0.0,13.615,1617.7468,-5.4657336e-35 -4.7035304460655425,0.09412716160677376,4.7035304460655425,12.87,0.54,-1.6292783616214773e-35,0.09885077446621302,12.87,12.87,0.0,-0.0,15.58,1627.7739,-3.2585567e-35 -4.912886588258003,0.08861052801565893,4.912886588258003,0.29,0.5359994212962963,-9.719106965729604e-36,0.09290885666522963,0.29,0.29,0.0,-0.0,14.684999999999999,1630.3746,-1.9438214e-35 -5.130218829817764,0.08114877590581847,5.130218829817764,11.14,0.5359994212962963,-5.687260352553453e-36,0.08495045370627691,11.14,11.14,0.0,-0.0,13.23,1632.9597,-1.1374521e-35 -5.468319984263618,0.07836264686860667,5.468319984263618,10.96,0.5319998842592593,-3.3486518650022705e-36,0.08184276859294828,10.96,10.96,0.0,-0.0,12.75,1636.7712,-6.697304e-36 -5.295944407571011,0.07429983390073842,5.295944407571011,-1.806400442737415e-36,0.5298482638888888,-1.806400442737415e-36,0.07769031837600054,0.0,0.0,0.0,-0.0,11.98,1634.8584,-3.612801e-36 -4.940226789450158,0.07799243286931538,4.940226789450158,0.57,0.5279998842592593,-1.0272768822769858e-36,0.08175907796003673,0.57,0.57,0.0,-0.0,12.855,1630.706,-2.0545538e-36 -5.299290427772101,0.0841154557547652,5.299290427772101,17.42,0.5240002314814816,-6.166762086903773e-37,0.08795182199906533,17.42,17.42,0.0,-0.0,14.16,1634.8961,-1.2333524e-36 -6.415620297449891,0.07422634178191125,6.415620297449891,16.13,0.5240002314814816,-3.6691771629851815e-37,0.07707348815648772,16.13,16.13,0.0,-0.0,12.030000000000001,1646.3124,-7.3383543e-37 -6.586943965297505,0.05752475846336912,6.586943965297505,0.04,0.520000462962963,-2.2000569740258147e-37,0.059674223967784795,0.04,0.04,0.0,-0.0,8.125,1647.8862,-4.400114e-37 -5.927840233105801,0.07427223325956504,5.927840233105801,-1.3219825049587352e-37,0.5183310185185186,-1.3219825049587352e-37,0.07734299666650764,0.0,0.0,0.0,-0.0,12.26,1641.59,-2.643965e-37 -5.381849070633878,0.11057737817325891,5.381849070633878,-7.89948097840279e-38,0.5159998842592592,-7.89948097840279e-38,0.1155553752027053,0.0,0.0,0.0,-0.0,18.945,1635.8193,-1.5798962e-37 -5.028248682833442,0.11422504277917635,5.028248682833442,2.28,0.511999537037037,-4.537135938697993e-38,0.11966414715060733,2.28,2.28,0.0,-0.0,19.67,1631.7607,-9.074272e-38 -4.817480839800863,0.07070253487947181,4.817480839800863,2.48,0.511999537037037,-2.2398875936796605e-38,0.07418547019458006,2.48,2.48,0.0,-0.0,11.79,1629.2035,-4.4797752e-38 -4.572212813799618,0.05701279648910984,4.572212813799618,0.27,0.5079996527777778,-1.195756706226885e-38,0.05993615319909002,0.27,0.27,0.0,-0.0,8.555,1626.0829,-2.3915134e-38 -4.4437075368177865,0.06317692466320708,4.4437075368177865,3.64,0.5067805555555556,-6.97748474276333e-39,0.06648596085079844,3.64,3.64,0.0,-0.0,10.215,1624.3804,-1.395497e-38 -4.2597746365716675,0.05452045068798075,4.2597746365716675,-4.1329161225102384e-39,0.503999537037037,-4.1329161225102384e-39,0.05746539424916134,0.0,0.0,0.0,-0.0,8.025,1621.8558,-8.265832e-39 -3.986231349989135,0.04565770712730207,3.986231349989135,-2.352660310582668e-39,0.4999997685185186,-2.352660310582668e-39,0.04824182340062857,0.0,0.0,0.0,-0.0,5.47,1617.8922,-4.70532e-39 -3.7240295102001455,0.05141493325347962,3.7240295102001455,-1.3752868615807877e-39,0.4999997685185186,-1.3752868615807877e-39,0.054461675772770314,0.0,0.0,0.0,-0.0,7.32,1613.8289,-2.750574e-39 -3.492762283964036,0.05664132040893381,3.492762283964036,-7.281223892047287e-40,0.4959997685185185,-7.281223892047287e-40,0.06014045284297902,0.0,0.0,0.0,-0.0,8.98,1610.0,-1.456245e-39 -3.3741605908870533,0.061657974203550125,3.3741605908870533,2.77,0.49366840277777774,-3.8822273304886895e-40,0.06555101997062204,2.77,2.77,0.0,-0.0,10.405,1607.9369,-7.76445e-40 -3.387968816187421,0.06182987045011295,3.387968816187421,5.82,0.4919994212962963,-2.1967595505834427e-40,0.06572380046346335,5.82,5.82,0.0,-0.0,10.5,1608.1808,-4.39352e-40 -3.379544480027709,0.05902958836421089,3.379544480027709,-1.1675198415215078e-40,0.48800034722222224,-1.1675198415215078e-40,0.06275296354980604,0.0,0.0,0.0,-0.0,9.9,1608.0321,-2.33504e-40 -3.37394679311,0.059270593884246665,3.37394679311,5.75,0.48800034722222224,-6.809049368000719e-41,0.06301305025464958,5.75,5.75,0.0,-0.0,9.965,1607.9331,-1.36181e-40 -3.718165228491609,0.06484488942688238,3.718165228491609,12.84,0.4840002314814815,-3.7475625480670745e-41,0.06869146933904395,12.84,12.84,0.0,-0.0,11.46,1613.7347,-7.4951e-41 -4.271868591978424,0.07306540028238476,4.271868591978424,17.57,0.48167002314814816,-2.156177947056596e-41,0.07700401784696372,17.57,17.57,0.0,-0.0,13.370000000000001,1622.0251,-4.3124e-41 -4.3782241302841465,0.057878093966292635,4.3782241302841465,1.31,0.4800005787037037,-1.039973655298663e-41,0.060942854735363976,1.31,1.31,0.0,-0.0,9.7,1623.4938,-2.08e-41 -4.1671254962418205,0.04382583980874635,4.1671254962418205,0.07,0.4760001157407408,-4.4463200273026446e-42,0.046230543081869434,0.07,0.07,0.0,-0.0,5.569999999999999,1620.5426,-8.893e-42 -3.8961217036943894,0.03636955741493824,3.8961217036943894,-2.6015105990100474e-42,0.4760001157407408,-2.6015105990100474e-42,0.03846044686371235,0.0,0.0,0.0,-0.0,2.8150000000000004,1616.5267,-5.203e-42 -3.807675401612843,0.04439685209837277,3.807675401612843,5.13,0.4719996527777777,-1.500790655291879e-42,0.046989093471732205,5.13,5.13,0.0,-0.0,5.945,1615.1554,-3.002e-42 -4.100484432653648,0.04902510534786351,4.100484432653648,13.56,0.4701513888888889,-8.653018017205745e-43,0.05174583221517762,13.56,13.56,0.0,-0.0,7.48,1619.5798,-1.73e-42 -4.424520119543737,0.038555978794790294,4.424520119543737,3.99,0.46799976851851854,-4.687343363166512e-43,0.04058189270589937,3.99,3.99,0.0,-0.0,3.865,1624.122,-9.37e-43 -4.33043820457102,0.035603085005052,4.33043820457102,1.79,0.463999537037037,-2.774570959354032e-43,0.03750347947211287,1.79,1.79,0.0,-0.0,2.8199999999999994,1622.8384,-5.55e-43 -4.102320404397958,0.035797173955060844,4.102320404397958,0.27,0.463999537037037,-1.639519203258245e-43,0.0377831718861424,0.27,0.27,0.0,-0.0,2.93,1619.6066,-3.28e-43 -3.8597781108514972,0.04367593525604698,3.8597781108514972,1.88,0.46,-8.267660939516421e-44,0.04620286597364732,1.88,1.88,0.0,-0.0,6.08,1615.967,-1.65e-43 -3.7169950003009817,0.04175527300371736,3.7169950003009817,1.38,0.45920532407407405,-1.7516230804060213e-44,0.04423269888821855,1.38,1.38,0.0,-0.0,5.444999999999999,1613.716,-3.5e-44 -3.7620235430161153,0.0350794883442567,3.7620235430161153,7.8,0.45599953703703705,1.471363387539529e-44,0.037144273739253324,7.8,7.8,0.0,-0.0,2.9349999999999996,1614.435,3.0e-44 -4.039967996327069,0.033283988394479234,4.039967996327069,9.279976144370734,0.45200810185185186,-2.385562926516011e-5,0.035150408040161,9.28,9.28,0.0,-0.0,2.25,1618.6919,-4.7722646e-5 -4.086101820198126,0.026176475151436528,4.086101820198126,-1.345333214827118e-6,0.452,-1.345333214827118e-6,0.02763276083688259,0.0,0.0,0.0,-0.0,-1.2399999999999998,1619.37,4.7708276e-5 -3.986483946563328,0.0297800778222151,3.986483946563328,4.740092590349395,0.4480001157407407,9.259035132462612e-5,0.03146548491599885,4.74,4.73999999999807,1.930006154893249e-12,-0.0,0.7600000000000002,1617.896,0.00018554582 -4.286134042154933,0.032085770319197376,4.286134042154933,14.52006437304029,0.4480001157407407,6.437304029037957e-5,0.0338112155135416,14.52,14.52,0.0,-0.0,1.81,1622.2242,0.00012866332 -4.453883179034083,0.028404202542399552,4.453883179034083,-0.017425642248129883,0.4440001157407408,-0.017425642248129883,0.029889424285267144,0.0,0.0,0.0,-0.0,0.14500000000000002,1624.517,7.578979e-5 -4.150447090792222,0.031897683446633206,4.150447090792222,2.3575659564959883e-5,0.44166932870370373,2.3575659564959883e-5,0.0336528679733513,0.0,0.0,0.0,-0.0,1.9500000000000002,1620.3031,4.714021e-5 -3.8913861047617844,0.03831088819807935,3.8913861047617844,1.4066954548084805e-5,0.4400003472222222,1.4066954548084805e-5,0.04051520532586434,0.0,0.0,0.0,-0.0,4.765,1616.4541,2.8129953e-5 -3.8255012510840603,0.04865548275749201,3.8255012510840603,3.840007579487427,0.43611064814814815,7.579487427053827e-6,0.05148748518736619,3.84,3.84,0.0,-0.0,8.565000000000001,1615.4343,1.5157826e-5 -3.9926898069094596,0.05367708576728482,3.9926898069094596,10.170003837275823,0.43600011574074077,3.837275823760128e-6,0.056711690663807615,10.17,10.17,0.0,-0.0,10.08,1617.9889,7.674257e-6 -4.041727303104137,0.0362754428829445,4.041727303104137,2.2298560617104753e-6,0.43200000000000005,2.2298560617104753e-6,0.03830899478058779,0.0,0.0,0.0,-0.0,4.2,1618.7179,4.4596127e-6 -3.7852951368603738,0.030325459366824986,3.7852951368603738,1.2211880893088343e-6,0.43194837962962956,1.2211880893088343e-6,0.03210309832392135,0.0,0.0,0.0,-0.0,1.5850000000000004,1614.8033,2.4423482e-6 -3.8467508409054783,0.03236768596198652,3.8467508409054783,9.35000072819394,0.428,7.281939408532794e-7,0.03424464115505299,9.35,9.35,0.0,-0.0,2.67,1615.7651,1.4563773e-6 -4.300209799050097,0.041717678182981305,4.300209799050097,19.270000424398347,0.4261517361111111,4.243983474744664e-7,0.0439557836802258,19.27,19.27,0.0,-0.0,6.485,1622.42,8.487931e-7 -4.3775977263698325,0.03295599010616194,4.3775977263698325,1.040000197584249,0.42400011574074076,1.97584249001396e-7,0.03470125830145759,1.04,1.04,0.0,-0.0,3.005,1623.4852,3.9516772e-7 -4.218572682586885,0.026560073171917317,4.218572682586885,1.9694566195619414,0.42121863425925926,-0.030543378129041034,0.02800474854887983,2.0,1.9999999976909824,2.3090176437534637e-9,-0.0,-0.03500000000000014,1621.2754,1.4788628e-7 -4.0260116045996615,0.029796916943269875,4.0260116045996615,0.8397039984950324,0.41999976851851856,-0.000296001504967547,0.03147181509817955,0.84,0.84,4.662936703425657e-17,-0.0,1.7049999999999998,1618.4852,-0.00059376593 -3.795142026375481,0.021717387253022025,3.795142026375481,-1.4117646600279616e-12,0.4164640046296296,-1.4117646600279616e-12,0.022988223503264536,0.0,0.0,0.0,-0.0,-2.69,1614.9585,0.005618288 -3.5972586202999297,0.025380891192195276,3.5972586202999297,1.1075552294497018,0.4159996527777778,-0.0024447072408262933,0.02691941145821087,1.11,1.109999936690528,6.330947202815019e-8,-0.0,-0.4249999999999998,1611.7605,0.048920356 -3.5187025757844506,0.02996666783199042,3.5187025757844506,3.4200948029012808,0.4121109953703704,0.020094802901280944,0.03180918888300081,3.4,3.4,0.0,-0.0,2.14,1610.4419,0.034348 -3.4497012275084735,0.029221798921936718,3.4497012275084735,1.310687032047755,0.41200046296296294,0.010687032047754954,0.031041318535628894,1.3,1.3,0.0,-0.0,1.785,1609.2592,0.019482255 -3.294558559756283,0.03261972788248377,3.294558559756283,0.0059862273444130434,0.4080084490740741,0.0059862273444130434,0.034710094965110384,0.0,0.0,0.0,-0.0,3.58,1606.5111,0.011331164 -3.1034064192394366,0.029345721691449396,3.1034064192394366,0.003437006264028186,0.40794895833333333,0.003437006264028186,0.031295818532532375,0.0,0.0,0.0,-0.0,2.05,1602.9415,0.0066527957 -3.276861614272333,0.024933017813866698,3.276861614272333,12.638768272803167,0.40399999999999997,-0.011231643153528014,0.026536111201689378,12.65,12.649999915956695,8.404330541500471e-8,-0.0,-0.20999999999999996,1606.1895,0.010523754 -3.7164404104238633,0.02149538111638909,3.7164404104238633,0.6685806602606862,0.4037145833333334,-5.181630911067397e-11,0.022770871855575133,13.07,0.6685806603125025,12.401419339687498,-0.0,-2.3850000000000002,1613.707,1.7913343 -3.5001879485502654,0.019304970800051828,3.5001879485502654,3.4737994093481105e-8,0.40000023148148145,-0.0,0.020495959909434668,0.47,3.4737994093481105e-8,0.4699999652620059,-0.0,-3.735,1610.1268,8.513569 -3.3653440706924433,0.02530764899645921,3.3653440706924433,2.445161916884131,0.39971435185185183,-0.03483808264258844,0.02690817284017725,2.48,2.4799999995267195,4.732807479257417e-10,-0.0,0.14500000000000002,1607.7806,8.901081 -3.6313455844436175,0.029924973664126713,3.6313455844436175,12.709525871208703,0.3960082175925926,5.659525871208703,0.031727856439137,7.05,7.05,0.0,-0.0,2.69,1612.3237,5.659526 -4.293727814630481,0.03394181874344877,4.293727814630481,15.673879744674318,0.39571446759259266,2.0438797446743178,0.035764744220852004,13.63,13.63,0.0,-0.0,4.485,1622.33,2.0438797 -4.547048688549253,0.02459616434270868,4.547048688549253,-0.032283164510460115,0.3921108796296296,-0.032283164510460115,0.02586258577391207,0.0,0.0,0.0,-0.0,-0.1499999999999999,1625.7533,0.8659269 -4.223740983108763,0.020775804444205796,4.223740983108763,-1.483601837096327e-11,0.3919487268518519,-1.483601837096327e-11,0.021904869630019294,0.0,0.0,0.0,-0.0,-2.5149999999999997,1621.3485,0.86816376 -3.945416465620838,0.025041660178507154,3.945416465620838,0.3620268097980188,0.3884644675925926,0.31202680979967695,0.026469013202531914,0.05,0.049999999998341864,1.6581430672957254e-12,-0.0,0.31999999999999984,1617.2776,0.86073613 -3.701270748292126,0.024045662597330306,3.701270748292126,-0.02058067999055745,0.38799999999999996,-0.02058067999055745,0.025476337967687394,0.0,0.0,0.0,-0.0,-0.21499999999999986,1613.4628,0.86077875 -3.503967577510737,0.019601734388668274,3.503967577510737,0.00021069804244701318,0.3848466435185185,-1.6632549692006919e-13,0.020810198821119653,1.5,0.0002106980426133387,1.4997893019573865,-0.0,-2.98,1610.1913,1.264796 -3.371644153566363,0.02202678562967749,3.371644153566363,2.6792470195182503,0.3840003472222222,-1.942492661049889e-6,0.02341819195467463,2.68,2.6792489620109112,0.000751037989089114,-0.0,-1.275,1607.8923,2.212848 -3.224503871356857,0.017660314370877426,3.224503871356857,3.238934553895234e-10,0.38166932870370374,-0.0,0.01880706516366573,1.02,3.238934553895234e-10,1.0199999996761064,-0.0,-4.279999999999999,1605.2275,3.3958812 -3.1076594681559677,0.022488142734369585,3.1076594681559677,2.949821103525296,0.3799997685185186,-0.00017273865481441366,0.023981312644760777,2.95,2.94999384218011,6.1578198898015746e-6,-0.0,-0.7850000000000001,1603.0233,4.416701 -3.2316168209726044,0.025876210062772284,3.2316168209726044,9.466476420473015,0.37920590277777777,2.8864764204730338,0.02755419112643072,6.58,6.579999999999981,1.899369550528718e-14,-0.0,1.2550000000000001,1605.3591,3.6814945 -3.4821479562491726,0.022189245087976622,3.4821479562491726,7.719886892888581,0.37611087962962964,-6.705709510637008e-5,0.023562690837497964,7.72,7.719953949983687,4.605001631332595e-5,-0.0,-0.89,1609.8182,2.9839046 -3.510017735250406,0.021786885394312224,3.510017735250406,0.19997774310328736,0.3759486111111111,-6.1957758753035545e-6,0.023128586466044643,0.2,0.19998393887916266,1.606112083732958e-5,-0.0,-1.15,1610.2943,2.9839883 -3.3499568623430203,0.021750329235855397,3.3499568623430203,1.1999499728561136,0.37321898148148147,-1.6303028520561655e-5,0.02312981583494262,1.2,1.1999662758846341,3.372411536575193e-5,-0.0,-1.045,1607.507,2.9837272 -3.2465201868762765,0.019541096433690307,3.2465201868762765,0.05496574346498434,0.3719998842592593,-1.6337985046126633e-11,0.02080470667200924,3.44,0.05496574348132233,3.385034256518678,-0.0,-2.505,1605.6339,3.8514035 -3.4999160871198565,0.0248880742288874,3.4999160871198565,14.793311146984136,0.37120578703703705,2.083311146984873,0.026423580045031717,12.71,12.709999999999264,7.365907883638557e-13,-0.0,0.9549999999999998,1610.1222,4.1143694 -3.673226133482681,0.020051039474412974,3.673226133482681,-1.0604458367027903e-9,0.3684645833333333,-1.0604458367027903e-9,0.021250023999962894,0.0,0.0,0.0,-0.0,-2.0700000000000003,1613.0085,3.8740985 -3.4587811654500644,0.02297090096478195,3.4587811654500644,-0.05052514764043236,0.3680003472222222,-0.05052514764043236,0.02439882312535545,0.0,0.0,0.0,-0.0,-0.07499999999999973,1609.4161,3.880701 -3.27282518546743,0.016328294436605606,3.27282518546743,1.5765888594643229e-12,0.36615196759259255,-0.0,0.017378934945735953,0.9,1.5765888594643229e-12,0.8999999999984235,-0.0,-4.8,1606.1158,4.247924 -3.1020682317631443,0.012270019972300312,3.1020682317631443,0.0,0.3644642361111111,-0.0,0.013085603853342101,1.95,0.0,1.95,-0.0,-8.6,1602.9158,5.673381 -2.948369097050801,0.00950856025749716,2.948369097050801,0.0,0.36400011574074076,-0.0,0.010159826423016563,0.0,0.0,0.0,-0.0,-11.92,1599.881,6.6411834 -2.809173101582664,0.011354093528147844,2.809173101582664,0.0,0.3621513888888889,-0.0,0.012153705560315628,0.0,0.0,0.0,-0.0,-9.5,1596.9928,6.6527004 -2.682441960309216,0.012701394482581055,2.682441960309216,0.0,0.3604638888888889,-0.0,0.013619400906023989,0.0,0.0,0.0,-0.0,-7.915000000000001,1594.236,6.6458282 -2.627067290378928,0.023064234351448182,2.627067290378928,5.359141700363391,0.3599998842592593,0.6891417004055984,0.024750565705817764,4.67,4.669999999957793,4.2207166095487023e-11,-0.0,0.44999999999999973,1592.9902,7.576493 -2.87135455332579,0.0279160935644818,2.87135455332579,8.003659811019695,0.35920578703703704,3.913659811019695,0.029857639299392332,4.09,4.09,0.0,-0.0,3.2350000000000003,1598.3003,3.9136598 -2.867747284601038,0.01581736138836809,2.867747284601038,0.0,0.3572189814814815,-0.0,0.016918243010961627,0.0,0.0,0.0,-0.0,-4.83,1598.2252,3.0988038 -2.7357162177121386,0.012418061374259711,2.7357162177121386,0.0,0.35611041666666665,-0.0,0.013305787523998044,0.0,0.0,0.0,-0.0,-8.065,1595.4104,3.0996897 -2.6153122571087244,0.014634157017341564,2.6153122571087244,0.0,0.3559483796296296,-0.0,0.015706767681759826,0.0,0.0,0.0,-0.0,-5.805000000000001,1592.7224,3.1037111 -2.504893125318693,0.017972265906795952,2.504893125318693,0.0011156036733142437,0.3546476851851852,-4.597289919440972e-13,0.01932079398832713,2.78,0.0011156036737739728,2.7788843963262257,-0.0,-2.875,1590.1462,4.4993935 -2.517401945883244,0.02216095021852189,2.517401945883244,4.412545297089164,0.35321898148148145,-0.007454702253911126,0.02381931522912719,4.42,4.419999999343075,6.569249588750381e-10,-0.0,0.16999999999999993,1590.4437,5.2812963 -2.714316220225323,0.02204686942851188,2.714316220225323,9.825337647874106,0.35211030092592593,-0.06466234916586648,0.023629873576013313,9.89,9.889999997039972,2.9600289763731527e-9,-0.0,0.09999999999999998,1594.9414,5.322848 -2.8240902551146285,0.01914992795650756,2.8240902551146285,0.4809050027756783,0.35199988425925927,-3.8446894937755e-9,0.02049450269203931,0.58,0.48090500662036784,0.09909499337963214,-0.0,-1.935,1597.3091,5.3387666 -2.6996477934753322,0.017329087460349293,2.6996477934753322,6.425070445559503e-6,0.35171423611111113,-6.727737076560225e-15,0.018577115769624702,1.24,6.42507045228724e-6,1.2399935749295479,-0.0,-3.31,1594.6178,6.1643925 -2.58217682951788,0.01626513315544984,2.58217682951788,1.9923780403274804e-9,0.3506474537037037,-0.0,0.01746563648520769,1.4,1.9923780403274804e-9,1.3999999980076219,-0.0,-4.13,1591.9609,7.481618 -2.4745776120587992,0.012546181560575485,2.4745776120587992,0.0,0.34966921296296294,-0.0,0.013493740389204782,0.0,0.0,0.0,-0.0,-7.630000000000001,1589.4191,8.172716 -2.3755761799036015,0.015382335054466647,2.3755761799036015,8.13099587659849e-12,0.3488465277777778,-0.0,0.01656951586222014,4.2,8.13099587659849e-12,4.199999999991869,-0.0,-4.79,1586.9807,10.255376 -2.7594838525534744,0.02435250971303114,2.7594838525534744,28.80008178786666,0.3481105324074074,4.090081787866657,0.026084943685324217,24.71,24.71,1.371680546924381e-15,-0.0,1.705,1595.927,13.30729 -3.858287275237284,0.01855502437352043,3.858287275237284,1.2302497995285782,0.3480079861111111,-5.1816309971272455e-11,0.0196288308215756,24.05,1.2302497995803945,22.819750200419605,-0.0,-2.385,1615.944,14.300945 -3.624738050991314,0.013053203066354097,3.624738050991314,0.0,0.34794849537037037,-0.0,0.013840549948906603,0.0,0.0,0.0,-0.0,-7.220000000000001,1612.215,26.306324 -3.416509154995479,0.016048609629242976,3.416509154995479,0.0,0.34771435185185184,-0.0,0.017054008531916586,0.0,0.0,0.0,-0.0,-4.345000000000001,1608.6818,26.414244 -3.230698779147175,0.020136600799364836,3.230698779147175,-1.0293319120655234e-5,0.3472057870370371,-1.0293319120655234e-5,0.021442615059060966,0.0,0.0,0.0,-0.0,-1.0949999999999998,1605.3422,26.414244 -3.0639992642221014,0.0158831930934278,3.0639992642221014,0.0,0.3466476851851852,-0.0,0.01694673971614936,0.0,0.0,0.0,-0.0,-4.39,1602.1783,26.414244 -2.9137761295916254,0.012799625672671688,2.9137761295916254,0.0,0.3466476851851852,-0.0,0.013682333324421892,0.0,0.0,0.0,-0.0,-7.324999999999999,1599.1761,26.414244 -2.7776153120117337,0.014108367013343403,2.7776153120117337,0.0,0.3461518518518519,-0.0,0.015108331581566697,0.0,0.0,0.0,-0.0,-5.955,1596.3181,26.392624 -2.6535333726148447,0.015360306480057427,2.6535333726148447,1.421634365783575e-11,0.3461518518518519,-0.0,0.016477176545825215,5.44,1.421634365783575e-11,5.439999999985784,-0.0,-4.76,1593.5889,29.118004 -2.5399529180787317,0.01755755452166891,2.5399529180787317,0.0036065113469232186,0.3456693287037037,-5.853379407370269e-13,0.018865117366725206,7.0,0.0036065113475085564,6.996393488652491,-0.0,-2.85,1590.9763,35.346165 -2.485542583864382,0.018768526885142887,2.485542583864382,4.64799257387141,0.3456693287037037,-5.626908930799683e-9,0.02018267974840842,5.29,4.647992579498319,0.6420074205016815,-0.0,-1.895,1589.6831,40.270493 -2.7554876367084375,0.019535101197426023,2.7554876367084375,12.487781335813075,0.3461518518518519,-6.044862584837436e-7,0.020925960258276744,12.5,12.487781940299334,0.012218059700667278,-0.0,-1.4000000000000001,1595.8405,40.413303 -2.6722574429682386,0.010219785115534778,2.6722574429682386,0.0,0.3461518518518519,-0.0,0.010959992414445199,0.0,0.0,0.0,-0.0,-10.270000000000001,1594.0088,45.745728 -2.557478205485817,0.005906209647399556,2.557478205485817,0.0,0.3461518518518519,-0.0,0.006344424941314766,0.0,0.0,0.0,-0.0,-17.25,1591.387,45.696857 -2.452170962443218,0.008265618015081072,2.452170962443218,0.0,0.3466476851851852,-0.0,0.008892923711889822,1.74,0.0,1.74,-0.0,-13.01,1588.8759,46.610214 -2.3551247976511185,0.008876752916790274,2.3551247976511185,0.0,0.3472057870370371,-0.0,0.009564956816541232,4.97,0.0,4.97,-0.0,-12.09,1586.4644,49.98687 -2.265556250365675,0.003450602839514021,2.265556250365675,0.0,0.34771435185185184,-0.0,0.0037235586824795924,0.0,0.0,0.0,-0.0,-23.695,1584.1488,52.479317 -2.182639601406037,0.002367191240395533,2.182639601406037,0.0,0.34794849537037037,-0.0,0.0025580406845211656,0.0,0.0,0.0,-0.0,-27.979999999999997,1581.9221,52.679676 -2.1055962773339485,0.002620646160710319,2.1055962773339485,0.0,0.34800000000000003,-0.0,0.0028357769981784773,0.0,0.0,0.0,-0.0,-26.825,1579.776,52.662926 -2.0337818052107193,0.0035201274352937542,2.0337818052107193,0.0,0.3480079861111111,-0.0,0.003814100803097985,0.38,0.0,0.38,-0.0,-23.425,1577.7036,52.854115 -1.9666625337398742,0.005144178847749677,1.9666625337398742,0.0,0.3484641203703704,-0.0,0.005580869576666285,0.73,0.0,0.73,-0.0,-18.905,1575.6995,53.408043 -1.9037496704570813,0.008357366263510501,1.9037496704570813,0.0,0.34921886574074074,-0.0,0.009078011687740181,1.25,0.0,1.25,-0.0,-12.84,1573.7578,54.376225 -1.8446281835021838,0.011751263702035521,1.8446281835021838,0.0,0.35015162037037034,-0.0,0.012779860215366744,2.17,0.0,2.17,-0.0,-8.38,1571.8738,56.123566 -1.7891447656195454,0.004061120432774208,1.7891447656195454,0.0,0.35120578703703703,-0.0,0.00442172375459645,0.0,0.0,0.0,-0.0,-21.795,1570.0499,57.16028 -1.7369839279866224,0.004199166159945342,1.7369839279866224,0.0,0.3519482638888889,-0.0,0.004577178375120849,9.39,0.0,9.39,-0.0,-21.41,1568.283,61.897873 -1.6877403854460793,0.006728122321843934,1.6877403854460793,0.0,0.35200787037037035,-0.0,0.007341833667067332,8.79,0.0,8.79,-0.0,-15.64,1566.5654,70.99843 -1.6412007028509055,0.004659720771230303,1.6412007028509055,0.0,0.35284641203703704,-0.0,0.005090187146321814,0.0,0.0,0.0,-0.0,-20.169999999999998,1564.8955,75.37722 -1.5971909961306565,0.0038378839838814145,1.5971909961306565,0.0,0.3541518518518519,-0.0,0.004196782223879719,0.0,0.0,0.0,-0.0,-22.509999999999998,1563.2722,75.37993 -1.5554770236371265,0.004639492012771261,1.5554770236371265,0.0,0.35571446759259256,-0.0,0.0050784865906916546,8.72,0.0,8.72,-0.0,-20.295,1561.6918,79.74269 -1.5158746617653032,0.00481726261778493,1.5158746617653032,0.0,0.35600000000000004,-0.0,0.005278283587522602,7.32,0.0,7.32,-0.0,-19.84,1560.1516,87.87779 -1.4782260178044777,0.005235346957343538,1.4782260178044777,0.0,0.3564643518518519,-0.0,0.005741907090202128,0.0,0.0,0.0,-0.0,-18.835,1558.6497,91.38532 -1.442396649050208,0.005008133539090436,1.442396649050208,0.0,0.35815185185185183,-0.0,0.005497877739391099,0.0,0.0,0.0,-0.0,-19.42,1557.1843,91.4072 -1.408250101273012,0.006011378832897937,1.408250101273012,0.0,0.3599482638888889,-0.0,0.006605299295013787,0.0,0.0,0.0,-0.0,-17.235,1555.7535,91.4072 -1.3756484367301285,0.007803260447655402,1.3756484367301285,0.0,0.36000787037037035,-0.0,0.008581933849071124,0.0,0.0,0.0,-0.0,-13.95,1554.3547,92.02931 -1.3444746471417253,0.01004464315242707,1.3444746471417253,0.0,0.36121863425925926,-0.0,0.01105671760689614,8.13,0.0,8.13,-0.0,-10.715,1552.9858,96.41467 -1.314684308950804,0.007566510385158056,1.314684308950804,0.0,0.3637142361111111,-0.0,0.008336076856034196,6.37,0.0,6.37,-0.0,-14.45,1551.6477,103.462685 -1.286258476420609,0.003238357341418041,1.286258476420609,0.0,0.36400011574074076,-0.0,0.0035707247881942793,0.64,0.0,0.64,-0.0,-24.71,1550.3423,106.92566 -1.2590699161200787,0.003428460584855074,1.2590699161200787,0.0,0.36521898148148146,-0.0,0.0037834528511026177,9.36,0.0,9.36,-0.0,-24.08,1549.0664,111.87752 -1.2329751221986038,0.006312758167467127,1.2329751221986038,0.0,0.36771435185185186,-0.0,0.006972027849878339,14.25,0.0,14.25,-0.0,-16.830000000000002,1547.8157,123.68896 -1.2079272043535756,0.004335513380080302,1.2079272043535756,0.0,0.3680083333333333,-0.0,0.004792085340685078,0.0,0.0,0.0,-0.0,-21.395,1546.59,130.70158 -1.1839131518098442,0.0023702084197195815,1.1839131518098442,0.0,0.3696696759259259,-0.0,0.0026218475156633207,0.0,0.0,0.0,-0.0,-28.38,1545.3907,130.73239 -1.1608414848015574,0.0035412275869051825,1.1608414848015574,0.0,0.3719483796296296,-0.0,0.003920172207173619,0.0,0.0,0.0,-0.0,-23.88,1544.2155,130.73239 -1.1386289794044873,0.0055451792175132495,1.1386289794044873,0.0,0.37211041666666667,-0.0,0.006143155538291884,0.01,0.0,0.01,-0.0,-18.535,1543.0616,130.6343 -1.1172410801285704,0.0036878152142187735,1.1172410801285704,0.0,0.3746479166666667,-0.0,0.004088499227088382,0.0,0.0,0.0,-0.0,-23.475,1541.9292,130.64774 -1.0966538622348516,0.003833867171913729,1.0966538622348516,0.0,0.3760002314814815,-0.0,0.004253483811361874,2.51,0.0,2.51,-0.0,-23.055,1540.8185,131.9688 -1.0768135143218809,0.0033649461048387264,1.0768135143218809,0.0,0.3772188657407407,-0.0,0.0037358829777755895,1.26,0.0,1.26,-0.0,-24.599999999999998,1539.7281,133.84283 -1.0576930992736213,0.0023115342496084676,1.0576930992736213,0.0,0.3799997685185186,-0.0,0.002568132205396586,0.0,0.0,0.0,-0.0,-28.915,1538.6582,134.42642 -1.0392435265364866,0.0029236664954666015,1.0392435265364866,0.0,0.3804640046296296,-0.0,0.0032504358528323064,0.25,0.0,0.25,-0.0,-26.29,1537.6073,134.54874 -1.0213767073301334,0.008882731414283711,1.0213767073301334,0.0,0.383714699074074,-0.0,0.009882183500730826,10.24,0.0,10.24,-0.0,-12.959999999999999,1536.5717,139.70132 -1.0040037920202771,0.015636296681466426,1.0040037920202771,3.572142581731441e-14,0.38400833333333334,-0.0,0.017407241538051975,11.7,3.572142581731441e-14,11.699999999999964,-0.0,-5.4350000000000005,1535.5471,150.54356 -0.9872451656931617,0.005387644773068618,0.9872451656931617,0.0,0.3866476851851852,-0.0,0.006001770874799261,0.0,0.0,0.0,-0.0,-19.285,1534.5419,156.28697 -0.9711195380345737,0.0031128495785196593,0.9711195380345737,0.0,0.38799999999999996,-0.0,0.0034699005756083355,0.0,0.0,0.0,-0.0,-25.770000000000003,1533.5583,156.3042 -0.9555248473636798,0.003748952567266058,0.9555248473636798,0.0,0.3901519675925926,-0.0,0.004181602234066489,0.0,0.0,0.0,-0.0,-23.685000000000002,1532.5916,156.3042 -0.9404131461037801,0.004805502645878261,0.9404131461037801,0.0,0.39200034722222227,-0.0,0.005363415666147323,0.0,0.0,0.0,-0.0,-20.805,1531.6395,156.30408 -0.9257542404533946,0.005388878221826458,0.9257542404533946,0.0,0.3936696759259259,-0.0,0.0060182069952075005,0.0,0.0,0.0,-0.0,-19.47,1530.7013,156.30603 -0.9115306262125205,0.006574378047074591,0.9115306262125205,0.0,0.39600023148148145,-0.0,0.007346590924532869,0.0,0.0,0.0,-0.0,-17.1,1529.7766,156.31618 -0.8977218699689185,0.0077313921834884485,0.8977218699689185,0.0,0.3972188657407407,-0.0,0.008644657058517077,0.07,0.0,0.07,-0.0,-15.105,1528.865,156.34085 -0.8843102691395711,0.008236447620435421,0.8843102691395711,0.0,0.40000023148148145,-0.0,0.009214789802457561,0.01,0.0,0.01,-0.0,-14.385,1527.9661,156.54193 -0.871303820856712,0.0061111054429126566,0.871303820856712,0.0,0.4012189814814815,-0.0,0.006840956900138839,1.02,0.0,1.02,-0.0,-18.14,1527.0812,157.28018 -0.8587098030692604,0.0030760912278026756,0.8587098030692604,0.0,0.40399999999999997,-0.0,0.0034454316764471683,0.0,0.0,0.0,-0.0,-26.310000000000002,1526.2117,157.75084 -0.8464950498168013,0.0030270161489480154,0.8464950498168013,0.0,0.40521898148148144,-0.0,0.0033923659985345155,0.0,0.0,0.0,-0.0,-26.520000000000003,1525.3561,157.75029 -0.834612687090822,0.004128452649810619,0.834612687090822,0.0,0.4080003472222223,-0.0,0.004629304061900381,0.0,0.0,0.0,-0.0,-23.02,1524.5118,157.75029 -0.8230451510571588,0.004495420856270188,0.8230451510571588,0.0,0.40966990740740744,-0.0,0.005043549202105974,0.0,0.0,0.0,-0.0,-22.060000000000002,1523.6783,157.75029 -0.8117640337368751,0.00530575587567197,0.8117640337368751,0.0,0.41200046296296294,-0.0,0.005955910464340832,0.0,0.0,0.0,-0.0,-20.145,1522.8541,157.75029 -0.8007619280877646,0.00903115773456612,0.8007619280877646,0.0,0.41464768518518513,-0.0,0.010143242187233783,5.25,0.0,5.25,-0.0,-13.62,1522.0392,157.75029 -0.7900316571835432,0.010026531738224225,0.7900316571835432,0.0,0.4159996527777778,-0.0,0.011267149251636856,4.8,0.0,4.8,-0.0,-12.309999999999999,1521.2335,157.75029 -0.7795662666649676,0.00992812671972012,0.7795662666649676,0.0,0.419205324074074,-0.0,0.011162411915740508,0.0,0.0,0.0,-0.0,-12.530000000000001,1520.4371,157.75029 -0.7693574448650252,0.00945980458383494,0.7693574448650252,0.0,0.41999976851851856,-0.0,0.010641376754371781,0.0,0.0,0.0,-0.0,-13.17,1519.6499,157.75029 -0.7594018265439253,0.008668423063406741,0.7594018265439253,0.0,0.42400011574074076,-0.0,0.009756141796308036,0.0,0.0,0.0,-0.0,-14.4,1518.8721,157.75029 -0.7496914889829385,0.011346922497351846,0.7496914889829385,0.0,0.42400011574074076,-0.0,0.01277720619826354,0.0,0.0,0.0,-0.0,-10.92,1518.1035,157.75029 -0.7402202979306858,0.016275301958387514,0.7402202979306858,0.0,0.428,-0.0,0.01833598039475312,0.0,0.0,0.0,-0.0,-6.21,1517.3442,157.75029 -0.7309838020173317,0.03511821441097907,0.7309838020173317,12.417929638909754,0.42846388888888887,12.407929638909755,0.0395842289945372,0.01,0.01,0.0,-0.0,4.815,1516.5944,157.75029 -0.7219747073888666,0.03791091988196279,0.7219747073888666,15.189460440829755,0.43200000000000005,15.189460440829755,0.04275296291841769,0.0,0.0,0.0,-0.0,5.855,1515.8538,157.75029 -0.7131888871568621,0.01707860249672439,0.7131888871568621,0.0,0.4336695601851852,-0.0,0.019269203664903076,0.0,0.0,0.0,-0.0,-5.71,1515.1226,157.75029 -0.7046194349801251,0.008313095474952898,0.7046194349801251,0.0,0.43600011574074077,-0.0,0.009383852794412114,0.0,0.0,0.0,-0.0,-15.245000000000001,1514.4006,157.75029 -0.6962639507375926,0.008623675486826543,0.6962639507375926,0.0,0.4399488425925926,-0.0,0.009739018071874972,14.78,0.0,14.78,-0.0,-14.89,1513.6882,157.75029 -0.6881144353615112,0.00785452375864294,0.6881144353615112,0.0,0.4400003472222222,-0.0,0.008874510456795555,12.72,0.0,12.72,-0.0,-16.06,1512.9851,157.75029 -0.6801673509654403,0.008420343560890609,0.6801673509654403,0.0,0.4440001157407408,-0.0,0.009518171711574529,0.0,0.0,0.0,-0.0,-15.295000000000002,1512.2914,157.75029 -0.6724151234147183,0.007979219285515926,0.6724151234147183,0.0,0.4440081018518519,-0.0,0.009023619234011461,0.0,0.0,0.0,-0.0,-15.965,1511.6068,157.75029 -0.6648341427634313,0.008610666446688921,0.6648341427634313,0.0,0.4480001157407407,-0.0,0.009742080472413305,0.0,0.0,0.0,-0.0,-15.114999999999998,1510.9297,157.75029 -0.6574219421740878,0.008444630606114252,0.6574219421740878,0.0,0.4501516203703704,-0.0,0.009558463805622277,0.0,0.0,0.0,-0.0,-15.415,1510.2601,157.68275 -0.6501814165290392,0.007042422679537914,0.6501814165290392,0.0,0.452,-0.0,0.007974799252372496,0.0,0.0,0.0,-0.0,-17.72,1509.5988,157.59615 -0.6430889848779757,0.009505202191103651,0.6430889848779757,0.0,0.45599953703703705,-0.0,0.010768309188650965,6.31,0.0,6.31,-0.0,-14.07,1508.9437,160.19908 -0.6361181272343047,0.014477813491088351,0.6361181272343047,0.0,0.45599953703703705,-0.0,0.016408788120913582,8.64,0.0,8.64,-0.0,-8.57,1508.2928,163.21129 -0.6292755658727851,0.017040144601991256,0.6292755658727851,0.0,0.46,-0.0,0.01932114308944949,0.2,0.0,0.2,-0.0,-6.48,1507.647,165.38905 -0.6225753231523863,0.008978860104352353,0.6225753231523863,0.0,0.4604638888888889,-0.0,0.010185091559255928,0.0,0.0,0.0,-0.0,-14.9,1507.0077,166.61679 -0.6160232265723652,0.013485871271390233,0.6160232265723652,0.0,0.463999537037037,-0.0,0.01530399675685299,0.0,0.0,0.0,-0.0,-9.73,1506.3759,166.85065 -0.609543823240611,0.025565223461000108,0.609543823240611,-1.7870027524764667e-5,0.46799976851851854,-1.7870027524764667e-5,0.029024018477841154,0.0,0.0,0.0,-0.0,-1.0350000000000001,1505.7444,166.90147 -0.6031646253848906,0.021394780514011023,0.6031646253848906,2.01184847190979e-6,0.46799976851851854,-5.531503851968904e-16,0.024299483264915645,4.28,2.0118484724629404e-6,4.279997988151528,-0.0,-3.5500000000000003,1505.1161,169.25128 -0.5969205125558115,0.021514866338869395,0.5969205125558115,2.941449901424738e-6,0.4719996527777777,-5.583467401920753e-16,0.024445966467803736,8.88,2.9414499019830846e-6,8.879997058550098,-0.0,-3.585,1504.4946,175.83089 -0.5908255713140298,0.016818121202836243,0.5908255713140298,0.0,0.4719996527777777,-0.0,0.01911714350716047,1.47,0.0,1.47,-0.0,-6.975,1503.8817,181.07166 -0.5849195831317852,0.009277193594183667,0.5849195831317852,0.0,0.4760001157407408,-0.0,0.01054958653059726,0.0,0.0,0.0,-0.0,-14.875,1503.2817,181.95758 -0.5791401040271842,0.012594398072279883,0.5791401040271842,0.0,0.4800005787037037,-0.0,0.014327406744544975,0.0,0.0,0.0,-0.0,-11.045,1502.6887,181.94792 -0.5734036659594425,0.022214149036849647,0.5734036659594425,-4.711112352733928e-15,0.4800005787037037,-4.711112352733928e-15,0.025280851754911023,0.0,0.0,0.0,-0.0,-3.3500000000000005,1502.0942,181.93523 -0.5702583100726657,0.028891844060478827,0.5702583100726657,0.7761690138797728,0.4840002314814815,0.20616901390797246,0.03288760658524691,0.57,0.5699999999718003,2.8199694246389127e-11,-0.0,0.28,1501.7657,181.94524 -0.6014139970687853,0.0315385102580097,0.6014139970687853,6.868658944960066,0.4840002314814815,3.6086589449600672,0.03582452723763249,3.26,3.259999999999999,5.428990590417015e-16,-0.0,1.525,1504.9425,180.07903 -0.6308171098814819,0.023574499785696083,0.6308171098814819,0.0025984406373317586,0.48800034722222224,-9.494280302598478e-13,0.026727598486240792,3.06,0.0025984406382811866,3.057401559361719,-0.0,-2.8000000000000003,1507.7931,179.69383 -0.6245509333733731,0.018220083718102235,0.6245509333733731,0.0,0.4919994212962963,-0.0,0.020665198301721917,1.4,0.0,1.4,-0.0,-6.4799999999999995,1507.1969,181.86569 -0.6158582965411934,0.018573531784906148,0.6158582965411934,0.0,0.4919994212962963,-0.0,0.021077784446539186,0.0,0.0,0.0,-0.0,-6.21,1506.3599,183.18326 -0.6090083077379,0.022417530175113907,0.6090083077379,1.327037217579985e-7,0.4959997685185185,-0.0,0.02545135165177579,1.47,1.327037217579985e-7,1.4699998672962782,-0.0,-3.715,1505.6919,184.02965 -0.6090493887662733,0.03091722327306632,0.6090493887662733,1.8550429302891778,0.4959997685185185,1.8550429302891778,0.03510123596354316,0.0,0.0,0.0,-0.0,0.8699999999999999,1505.6959,183.86633 -0.6433111737437184,0.030072950081833586,0.6433111737437184,6.062083834227329,0.4999997685185186,0.3120838344180158,0.03406875423174979,5.75,5.749999999809313,1.9068645273900842e-10,-0.0,0.32000000000000006,1508.9644,182.88354 -0.7365482094025388,0.030792989528613902,0.7365482094025388,10.60759564675869,0.503999537037037,0.7475956468316506,0.034698599822409526,9.86,9.85999999992704,7.296041548698895e-11,-0.0,0.47,1517.0472,182.24176 -0.799670933155263,0.02862549862304602,0.799670933155263,1.7193168574462994,0.503999537037037,-0.0006823805138552786,0.03215212346824578,1.72,1.7199992379601547,7.620398452568011e-7,-0.0,-0.6299999999999999,1521.9578,182.15517 -0.8324386901955367,0.032411837170201845,0.8324386901955367,4.564316850667652,0.5079996527777778,2.2843168506677145,0.036347657103610646,2.28,2.2799999999999376,6.239675442998305e-14,-0.0,1.03,1524.3561,181.08054 -0.8469865892075495,0.030252654518043594,0.8469865892075495,-0.07248541464720597,0.5079996527777778,-0.07248541464720597,0.0339032694397715,0.0,0.0,0.0,-0.0,0.020000000000000018,1525.3907,180.25435 -0.8369223649439952,0.023550029114150845,0.8369223649439952,2.763219938461958e-7,0.511999537037037,-0.0,0.026404189113072993,1.52,2.763219938461958e-7,1.519999723678006,-0.0,-3.6449999999999996,1524.6769,180.87227 -0.8470471859971198,0.028986945859240998,0.8470471859971198,2.6998658382621388,0.5159998842592592,-0.00012616392166588022,0.03248473559689174,2.7,2.6999920021838046,7.997816195165487e-6,-0.0,-0.8199999999999998,1525.395,181.54227 -0.8540936933192649,0.031513661166473014,0.8540936933192649,0.48358884494691706,0.5159998842592592,0.48358884494691706,0.035304893082857995,0.0,0.0,0.0,-0.0,0.3799999999999999,1525.8898,181.50174 -0.8417725228102362,0.025470580025494648,0.8417725228102362,-1.3312042727924477e-12,0.520000462962963,-1.3312042727924477e-12,0.028551040157921207,0.0,0.0,0.0,-0.0,-2.7649999999999997,1525.022,181.48293 -0.8297020201328584,0.027715310732620915,0.8297020201328584,-1.344359571664603e-7,0.520000462962963,-1.344359571664603e-7,0.031084834352189953,0.0,0.0,0.0,-0.0,-1.56,1524.1594,181.48293 -0.8179734527042932,0.02533013553942686,0.8179734527042932,-2.5724655354393645e-13,0.5240002314814816,-2.5724655354393645e-13,0.02842553507372443,0.0,0.0,0.0,-0.0,-2.9349999999999996,1523.3092,181.47978 -0.806641478963934,0.016244836628022195,0.806641478963934,0.0,0.5279998842592593,-0.0,0.01823996802373264,0.16,0.0,0.16,-0.0,-9.115,1522.4761,181.6159 -0.7946912875080492,0.02493851409235024,0.7946912875080492,6.808785891843398e-5,0.5279998842592593,-1.269669657739981e-14,0.028017774588749343,6.86,6.808785893113068e-5,6.85993191214107,-0.0,-3.245,1521.5847,185.28856 -0.862583547627947,0.035150385760271755,0.862583547627947,10.885285964600202,0.5319998842592593,3.5952859646002033,0.039363893184038296,7.29,7.289999999999998,1.6187051699034782e-15,-0.0,1.5200000000000002,1526.4805,186.66475 -0.972005255132634,0.036229822777962106,0.972005255132634,4.758246845736079,0.5319998842592593,4.598246845736079,0.040384032986184946,0.16,0.16,0.0,-0.0,1.8950000000000002,1533.6128,182.60506 -1.1061882669552168,0.0363499972393237,1.1061882669552168,12.537182350159627,0.5359994212962963,4.237182350159626,0.04031497699444827,8.3,8.3,0.0,-0.0,1.7600000000000002,1541.3354,178.2272 -1.3426126847168174,0.028647158868270888,1.3426126847168174,14.836186235058047,0.5395353009259259,-6.4901787215177955e-9,0.03153525936502201,16.6,14.836186241548226,1.7638137584517752,-0.0,-1.88,1552.9031,177.80685 -1.3538343331928897,0.025152506534681193,1.3538343331928897,7.117329548345097e-7,0.54,-0.0,0.027679429184991867,9.16,7.117329548345097e-7,9.159999288267045,-0.0,-3.7299999999999995,1553.4001,188.783 -1.323035880233906,0.026735600363887602,1.323035880233906,-1.9258067055455358e-13,0.5439997685185185,-1.9258067055455358e-13,0.029447618854715234,0.0,0.0,0.0,-0.0,-2.965,1552.0259,193.42757 -1.342368459360314,0.03789776428875173,1.342368459360314,7.639429291858619,0.5439997685185185,4.999429291858619,0.041718768443965576,2.64,2.64,0.0,-0.0,2.045,1552.8922,192.6565 -1.503312967864439,0.041418980415234743,1.503312967864439,8.828415016669068,0.5479999999999999,8.048415016669068,0.045397313890498704,0.78,0.78,0.0,-0.0,3.1849999999999996,1559.6547,186.15584 -1.6186194638892921,0.036995899402567776,1.6186194638892921,3.3545698085799414,0.5498481481481481,3.3545698085799414,0.040434970272426055,0.0,0.0,0.0,-0.0,1.4300000000000002,1564.0681,180.54587 -1.8522792590749209,0.046915724506508,1.8522792590749209,16.091302383149753,0.5520004629629629,12.421302383149753,0.051014268926562,3.67,3.67,0.0,-0.0,4.819999999999999,1572.121,172.73793 -2.5203624464856933,0.05327059271530691,2.5203624464856933,23.987562493869753,0.5559922453703704,16.807562493869753,0.05725445126621926,7.18,7.18,0.0,-0.0,6.46,1590.5139,158.37543 -3.484583044116848,0.05987471794203755,3.484583044116848,21.113586139149756,0.5560002314814815,21.113586139149756,0.06357912926426468,0.0,0.0,0.0,-0.0,8.07,1609.86,139.36313 -4.913187861673915,0.06254985050969045,4.913187861673915,28.28316921290976,0.56,22.10316921290976,0.06558387780884355,6.18,6.18,0.0,-0.0,8.440000000000001,1630.3783,117.768425 -6.943140591451478,0.05493946312541604,6.943140591451478,24.685907235789756,0.5600517361111111,16.245907235789755,0.05688375883503753,8.44,8.44,0.0,-0.0,6.25,1651.0314,98.58567 -7.7612720096025445,0.04103804176686646,7.7612720096025445,4.143572924090856,0.5639996527777777,4.143572924090856,0.04231985381945097,0.0,0.0,0.0,-0.0,1.725,1657.6837,88.45822 -7.174744774627046,0.03826451922826616,7.174744774627046,1.8737283237703362,0.5663305555555556,1.3537283237707844,0.03957172494728877,0.52,0.5199999999995518,4.4819925548722494e-13,-0.0,0.6849999999999998,1652.991,85.8213 -7.098902700165201,0.0433370284432974,7.098902700165201,10.886112589682877,0.5679997685185185,6.136112589682877,0.04483473666527352,4.75,4.75,0.0,-0.0,2.4699999999999998,1652.3563,82.03042 -7.198218510399159,0.039942707387423795,7.198218510399159,5.3824496029832165,0.5715351851851852,2.672449602983234,0.04130236988476617,2.71,2.7099999999999826,1.745048550105821e-14,-0.0,1.175,1653.186,77.683815 -6.616874871196798,0.0326444628957717,6.616874871196798,-3.582540928083274e-8,0.5719994212962963,-3.582540928083274e-8,0.03385869020433613,0.0,0.0,0.0,-0.0,-1.7000000000000002,1648.157,77.13103 -5.975186687698436,0.030692792388937247,5.975186687698436,0.009565436292187006,0.5760005787037037,-5.395155373317876e-12,0.0319525292860759,1.87,0.00956543629758216,1.8604345637024178,-0.0,-2.62,1642.0651,77.86051 -5.796315769308678,0.0379583374692738,5.796315769308678,7.795133781785017,0.5760005787037037,0.6451337818600958,0.03956000493701407,7.15,7.149999999924921,7.507929278283143e-11,-0.0,0.43500000000000005,1640.25,78.33502 -5.923092371199937,0.04197701873415534,5.923092371199937,6.557418952422231,0.5800003472222222,4.317418952422231,0.04371382033314878,2.24,2.24,0.0,-0.0,1.79,1641.5421,75.83326 -5.983216363258838,0.04378631383547578,5.983216363258838,6.578775936767305,0.5807946759259259,5.908775936767305,0.04558122728127743,0.67,0.67,0.0,-0.0,2.385,1642.1453,70.7043 -6.682962048451139,0.05526772435533026,6.682962048451139,18.911769090589758,0.5840005787037037,14.841769090589755,0.057302800420512556,4.07,4.07,0.0,-0.0,5.7250000000000005,1648.7505,60.240063 -7.958503065547593,0.04961262961931079,7.958503065547593,16.507935862349754,0.5853530092592593,10.147935862349755,0.0511160542467082,6.36,6.36,0.0,-0.0,3.9699999999999998,1659.1824,47.73829 -8.293951014341054,0.043951294748806984,8.293951014341054,5.106411257790121,0.5880002314814815,5.106411257790121,0.04521597066766443,0.0,0.0,0.0,-0.0,2.085,1661.648,40.133896 -8.532508772163087,0.05413406205635091,8.532508772163087,15.010294293309755,0.5903311342592593,13.210294293309754,0.055635040986129626,1.8,1.8,0.0,-0.0,5.115,1663.3414,31.00031 -9.704071705433977,0.05092440494154861,9.704071705433977,18.775508979869755,0.5920008101851852,10.455508979869755,0.05209573604729993,8.32,8.32,0.0,-0.0,4.085,1671.0251,19.23674 -10.842433507592055,0.04797849502956637,10.842433507592055,15.337587387627861,0.5943310185185184,7.767587387627861,0.04888826361689384,7.57,7.57,0.0,-0.0,3.08,1677.6494,10.144624 -10.753529958366915,0.04904770350587512,10.753529958366915,4.787338428497263,0.5959997685185184,3.8573384284972625,0.049992398613736604,0.93,0.93,0.0,-0.0,3.37,1677.1577,3.8573384 -9.514826159217717,0.06699265637212116,9.514826159217717,1.4166541855780668,0.5987809027777777,1.4166541855780668,0.06858185047055568,0.0,0.0,0.0,-0.0,8.095,1669.849,1.4166552 -8.424179919340768,0.06882714633117305,8.424179919340768,2.207410484394309,0.5999998842592592,0.5174104843943089,0.0707679864063532,1.69,1.69,0.0,-0.0,8.549999999999999,1662.5784,0.5202575 -7.973629933414023,0.06090544544464258,7.973629933414023,7.6658258949813884,0.6027810185185185,0.175825894981388,0.06274679057929815,7.49,7.49,0.0,-0.0,6.625,1659.2958,0.19969422 -7.51572558502549,0.06482971908148548,7.51572558502549,1.03400516376761,0.6039996527777778,0.06400516376760998,0.06693217824212273,0.97,0.97,0.0,-0.0,7.585,1655.7638,0.090022 -6.980894402547066,0.05756638119848498,6.980894402547066,4.668487508187515,0.6063304398148148,0.028487508187515165,0.059591953909684796,4.64,4.64,0.0,-0.0,5.75,1651.3552,0.046399504 -6.8682444012609665,0.0656615916283645,6.8682444012609665,6.934457447337453,0.6079995370370371,0.014457447337453586,0.06801202248693294,6.92,6.92,0.0,-0.0,7.73,1650.3837,0.025644576 -6.480863054065366,0.07531222851201,6.480863054065366,0.03789890474796623,0.6098476851851852,0.007898904747966232,0.0781723352375002,0.03,0.03,0.0,-0.0,9.85,1646.9166,0.014716834 -5.919836472415189,0.06220212304095769,5.919836472415189,1.9844810162104813,0.6120002314814815,0.004481016210481263,0.06477703529084795,1.98,1.98,0.0,-0.0,6.880000000000001,1641.5093,0.008593056 -5.845311356824455,0.06647458663245952,5.845311356824455,8.142599056675087,0.6133524305555556,0.0025990566750865194,0.06925828330950076,8.14,8.14,0.0,-0.0,7.875,1640.7527,0.005069635 -6.110020525883297,0.05311318136169853,6.110020525883297,9.481527226479862,0.6159914351851852,0.0015272264798626564,0.055248289954337,9.48,9.48,0.0,-0.0,4.37,1643.3977,0.0030091805 -6.170414746961947,0.05001568838604596,6.170414746961947,4.410901693473975,0.6162851851851852,0.0009016934739749032,0.05200769097502116,4.41,4.41,0.0,-0.0,3.46,1643.9851,0.0017874131 -5.827917027361944,0.06116694862672463,5.827917027361944,1.0805299720768098,0.6195356481481481,0.0005299720768096786,0.06373529570811665,1.08,1.08,0.0,-0.0,6.445,1640.5747,0.0010543856 -5.352228943660951,0.07355304848751038,5.352228943660951,0.00031325705623541005,0.6199998842592592,0.00031325705623541005,0.07687976596864352,0.0,0.0,0.0,-0.0,9.33,1635.4897,0.0006245637 -4.90894161224339,0.07529048773229415,4.90894161224339,0.00018047282044604955,0.6227818287037037,0.00018047282044604955,0.07894500944145601,0.0,0.0,0.0,-0.0,9.675,1630.3267,0.00036029657 -4.539545050448274,0.07162900468683922,4.539545050448274,0.36010535523528886,0.6240006944444445,0.00010535523528888853,0.07532164969340169,0.36,0.36,0.0,-0.0,8.91,1625.6547,0.00021048894 -4.219624811658447,0.060716311951128185,4.219624811658447,0.010053376374214553,0.6253526620370371,5.337637421455236e-5,0.06401825097599041,0.01,0.01,0.0,-0.0,6.37,1621.2903,0.00010669583 -3.9378430280612404,0.06902832840005478,3.9378430280612404,2.3607780337138947e-5,0.6278895833333333,2.3607780337138947e-5,0.07296806065578189,0.0,0.0,0.0,-0.0,8.32,1617.1628,4.720442e-5 -3.7323816879663045,0.0864026727905329,3.7323816879663045,1.1797172979242576e-5,0.6280518518518519,1.1797172979242576e-5,0.09151512957809162,0.0,0.0,0.0,-0.0,11.88,1613.9626,2.3591563e-5 -3.646511884703456,0.10020184073010675,3.646511884703456,1.2799998357834126,0.6303303240740741,-1.6421658732975888e-7,0.10622227921872839,1.28,1.28,0.0,-0.0,14.225,1612.5726,-3.284337e-7 -3.6021663776822828,0.10038958438780637,3.6021663776822828,5.3699901030916335,0.6319916666666667,-9.896908366851547e-6,0.10646954816468587,5.37,5.37,0.0,-0.0,14.22,1611.8419,-1.9795776e-5 -3.525311370586863,0.07048757885536247,3.525311370586863,-1.4218069433371814e-5,0.6322856481481481,-1.4218069433371814e-5,0.07481634981246899,0.0,0.0,0.0,-0.0,8.6,1610.554,-2.8440183e-5 -3.3729538455567325,0.08284141387817467,3.3729538455567325,-1.056634497368991e-5,0.6347809027777778,-1.056634497368991e-5,0.08807313882101994,0.0,0.0,0.0,-0.0,11.100000000000001,1607.9155,-2.1134923e-5 -3.4644062963229536,0.069499520028914,3.4644062963229536,8.649993901561965,0.6360001157407408,-6.098438035529972e-6,0.07381531338896298,8.65,8.65,0.0,-0.0,8.3,1609.5132,-1.219762e-5 -3.8707759932896475,0.05415116538555272,3.8707759932896475,14.859996436336136,0.6362856481481481,-3.563663863467181e-6,0.05727813190897523,14.86,14.86,0.0,-0.0,4.425,1616.137,-7.1275817e-6 -3.9330004434372015,0.05849450205818849,3.9330004434372015,2.0499981770070383,0.6387810185185185,-1.8229929615345743e-6,0.06183583518260495,2.05,2.05,0.0,-0.0,5.5200000000000005,1617.0894,-3.6460524e-6 -3.753474603278372,0.06897578465187015,3.753474603278372,-7.81330277395211e-7,0.6399917824074074,-7.81330277395211e-7,0.07304185943666518,0.0,0.0,0.0,-0.0,8.04,1614.2992,-1.5626728e-6 -3.680508811579379,0.07401202981741829,3.680508811579379,4.999999554656136,0.6400512731481481,-4.4534386398158135e-7,0.07843194792759907,5.0,5.0,0.0,-0.0,9.145,1613.1268,-8.906917e-7 -3.924415907849256,0.10839919022500756,3.924415907849256,12.89999973372263,0.6418483796296296,-2.6627736965757175e-7,0.11460043546383197,12.9,12.9,0.0,-0.0,15.170000000000002,1616.9589,-5.3255616e-7 -4.169894692300664,0.13196980231349867,4.169894692300664,6.899999850746004,0.6435354166666667,-1.4925399688195366e-7,0.13920751549488894,6.9,6.9,0.0,-0.0,18.36,1620.5823,-2.9850844e-7 -4.548926535263888,0.08073556948088993,4.548926535263888,13.279999913253372,0.6439998842592592,-8.674662701592394e-8,0.08489124126896813,13.28,13.28,0.0,-0.0,10.29,1625.778,-1.734934e-7 -4.6291815877288,0.07297206686195987,4.6291815877288,0.5799999489130443,0.6442856481481481,-5.1086955657246264e-8,0.07667887067943208,0.58,0.58,0.0,-0.0,8.690000000000001,1626.8224,-1.0217396e-7 -4.290692200639225,0.07941978406536196,4.290692200639225,-2.9518734291934732e-8,0.6458482638888889,-2.9518734291934732e-8,0.08368738974510499,0.0,0.0,0.0,-0.0,10.02,1622.2877,-5.9037486e-8 -3.971259036722311,0.0904997293612714,3.971259036722311,-1.4249919212389959e-8,0.6471538194444444,-1.4249919212389959e-8,0.09563508018737904,0.0,0.0,0.0,-0.0,12.105,1617.6675,-2.8499842e-8 -3.9525600881635525,0.11216233347220965,3.9525600881635525,7.319999993236341,0.6479927083333333,-6.763659396943126e-9,0.1185475708682755,7.32,7.32,0.0,-0.0,15.57,1617.3856,-1.352732e-8 -4.233248515203946,0.12426517152948237,4.233248515203946,9.289999996004326,0.6480521990740741,-3.995673410135842e-9,0.1310075369364202,9.29,9.29,0.0,-0.0,17.225,1621.4828,-7.991347e-9 -4.538181240286606,0.0990944204113601,4.538181240286606,9.069999997637419,0.6487947916666666,-2.3625809638924283e-9,0.10420412294051497,9.07,9.07,0.0,-0.0,13.445,1625.6367,-4.725162e-9 -4.450315872654804,0.0837826951761244,4.450315872654804,0.3199999987282734,0.6498487268518519,-1.27172659673298e-9,0.08816618900658477,0.32,0.32,0.0,-0.0,10.745,1624.4691,-2.5434532e-9 -4.148776141874445,0.07954695909078599,4.148776141874445,-6.472640159698478e-10,0.6507814814814814,-6.472640159698478e-10,0.08392531224668691,0.0,0.0,0.0,-0.0,9.945,1620.279,-1.294528e-9 -3.8734986863210694,0.09220135646841021,3.8734986863210694,-3.807375511469886e-10,0.6515357638888889,-3.807375511469886e-10,0.09752300258435574,0.0,0.0,0.0,-0.0,12.31,1616.179,-7.614751e-10 -3.638240310654859,0.1207912415666411,3.638240310654859,0.23999999977958103,0.6519921296296297,-2.204189742531665e-10,0.12805952537117601,0.24,0.24,0.0,-0.0,16.745,1612.437,-4.4083795e-10 -3.819305426602829,0.12488463093333704,3.819305426602829,12.599999999872042,0.6520001157407407,-1.2795839371695591e-10,0.1321614862074359,12.6,12.6,0.0,-0.0,17.27,1615.3375,-2.559168e-10 -4.475859452695577,0.1403586281851543,4.475859452695577,14.709999999927966,0.6520517361111111,-7.203524577199632e-11,0.14767109272161258,14.71,14.71,0.0,-0.0,19.135,1624.8109,-1.4407049e-10 -4.972361785059744,0.12855806967554656,4.972361785059744,7.659999999956555,0.6522856481481482,-4.344555963098214e-11,0.1347347901139786,7.66,7.66,0.0,-0.0,17.585,1631.0933,-8.689112e-11 -4.851632994390595,0.16010295064799615,4.851632994390595,-2.5550141856811607e-11,0.6527943287037037,-2.5550141856811607e-11,0.16794642387997305,0.0,0.0,0.0,-0.0,21.315,1629.6254,-5.1100284e-11 -4.481672736804885,0.18406750968198485,4.481672736804885,-1.4426948349161328e-11,0.653352662037037,-1.4426948349161328e-11,0.19364790010119137,0.0,0.0,0.0,-0.0,23.78,1624.8884,-2.8853897e-11 -4.590961417022586,0.16143419079735447,4.590961417022586,12.02999999999129,0.653848611111111,-8.709559114824236e-12,0.16968629909893868,12.03,12.03,0.0,-0.0,21.465,1626.3273,-1.7419118e-11 -5.020433247470222,0.1456057873358164,5.020433247470222,16.439999999995095,0.653848611111111,-4.907915653504832e-12,0.1525478469870356,16.44,16.44,0.0,-0.0,19.64,1631.6678,-9.815831e-12 -5.224284190356756,0.11690104596979217,5.224284190356756,-2.497568341315664e-12,0.653848611111111,-2.497568341315664e-12,0.12229639035720968,0.0,0.0,0.0,-0.0,15.935,1634.0448,-4.9951367e-12 -5.366184887403569,0.1238971266140188,5.366184887403569,11.60999999999855,0.6543310185185185,-1.4492467555677701e-12,0.12948853429362697,11.61,11.61,0.0,-0.0,16.87,1635.6453,-2.8984935e-12 -6.191804830694143,0.12202196150340097,6.191804830694143,17.599999999999152,0.6543310185185185,-8.506120612487655e-13,0.12686584962755643,17.6,17.6,0.0,-0.0,16.53,1644.1918,-1.7012241e-12 -6.355059963220031,0.11770251281197323,6.355059963220031,-5.085184118384055e-13,0.653848611111111,-5.085184118384055e-13,0.12225936473916978,0.0,0.0,0.0,-0.0,15.93,1645.746,-1.0170368e-12 -5.741871304376197,0.11790982093202862,5.741871304376197,-3.0502209373642285e-13,0.653848611111111,-3.0502209373642285e-13,0.12292731219876508,0.0,0.0,0.0,-0.0,16.02,1639.6864,-6.100442e-13 -5.293184719975029,0.11567050409539613,5.293184719975029,1.469999999999817,0.653352662037037,-1.8286847730497468e-13,0.12095113710395657,1.47,1.47,0.0,-0.0,15.765,1634.8273,-3.6573695e-13 -5.077763350927912,0.13463538580380918,5.077763350927912,6.359999999999901,0.653352662037037,-9.952251560830535e-14,0.1409958125951375,6.36,6.36,0.0,-0.0,18.32,1632.346,-1.9904503e-13 -5.044978110545426,0.14281084246534403,5.044978110545426,4.039999999999954,0.6527943287037037,-4.585517553231333e-14,0.1495929443021206,4.04,4.04,0.0,-0.0,19.335,1631.9591,-9.171035e-14 -5.256235910950653,0.1519495479522107,5.256235910950653,8.379999999999976,0.6522856481481482,-2.5197403977774806e-14,0.15892707315887505,8.38,8.38,0.0,-0.0,20.380000000000003,1634.4089,-5.0394808e-14 -6.088228481864445,0.15957591028339263,6.088228481864445,17.299999999999986,0.6520517361111111,-1.4470338176393583e-14,0.16601229284977,17.3,17.3,0.0,-0.0,21.135,1643.1843,-2.8940676e-14 -6.495398202124057,0.16583300622959693,6.495398202124057,3.9999999999999916,0.6519921296296297,-8.620816734083248e-15,0.1721168074524451,4.0,4.0,0.0,-0.0,21.759999999999998,1647.0504,-1.7241633e-14 -6.5716397621764235,0.15184879591392783,6.5716397621764235,11.279999999999994,0.6518894675925926,-5.171859085607718e-15,0.15753604603852955,11.28,11.28,0.0,-0.0,20.240000000000002,1647.7473,-1.0343718e-14 -6.806165549848895,0.14744133530988798,6.806165549848895,7.419999999999997,0.6511538194444445,-3.0873065554920834e-15,0.1527693571195797,7.42,7.42,0.0,-0.0,19.735,1649.8414,-6.174613e-15 -6.705635450312452,0.1299250887721781,6.705635450312452,6.139999999999998,0.6503311342592593,-1.8114754606680915e-15,0.1346926847616648,6.14,6.14,0.0,-0.0,17.630000000000003,1648.9528,-3.622951e-15 -6.301443865938694,0.10753593959735905,6.301443865938694,-1.006246130459655e-15,0.6493528935185184,-1.006246130459655e-15,0.11173354498081009,0.0,0.0,0.0,-0.0,14.565,1645.24,-2.0124923e-15 -5.904935482275308,0.10740156365376877,5.904935482275308,3.7699999999999996,0.6482863425925927,-5.845137729172253e-16,0.11185780340685217,3.77,3.77,0.0,-0.0,14.61,1641.3588,-1.1690275e-15 -5.79318876634548,0.1253148675985709,5.79318876634548,5.38,0.6480008101851852,-3.054357397360451e-16,0.1306051453830356,5.38,5.38,0.0,-0.0,17.175,1640.2178,-6.108715e-16 -5.6505780329479665,0.128596499735303,5.6505780329479665,2.52,0.647890162037037,-1.7031990272623672e-16,0.13414705524110482,2.52,2.52,0.0,-0.0,17.625,1638.7292,-3.406398e-16 -5.7190070708282885,0.12059261100375544,5.7190070708282885,7.97,0.64678125,-9.878028085963696e-17,0.12574253779573366,7.97,7.97,0.0,-0.0,16.575,1639.4481,-1.9756056e-16 -5.766736197261599,0.1169252921728864,5.766736197261599,4.65,0.645352199074074,-5.834585286836271e-17,0.1218817062132977,4.65,4.65,0.0,-0.0,16.095,1639.9445,-1.166917e-16 -5.643640738631823,0.14285741017596365,5.643640738631823,3.71,0.6440515046296297,-3.2995847514213587e-17,0.14903017516709458,3.71,3.71,0.0,-0.0,19.5,1638.6559,-6.5991695e-17 -5.33086179014992,0.1335147295966418,5.33086179014992,0.56,0.6438894675925926,-1.901946639482772e-17,0.13957383024551495,0.56,0.56,0.0,-0.0,18.395,1635.2509,-3.8038933e-17 -4.935543527655299,0.12824816360624136,4.935543527655299,-8.590307884490756e-18,0.6427809027777778,-8.590307884490756e-18,0.1344465794054543,0.0,0.0,0.0,-0.0,17.795,1630.6494,-1.7180616e-17 -4.55093538778016,0.14139394728927399,4.55093538778016,0.06,0.6407940972222222,-1.753588777412151e-18,0.14866945393301367,0.06,0.06,0.0,-0.0,19.545,1625.8043,-3.5071776e-18 -4.23540364355137,0.11303278058006698,4.23540364355137,0.5,0.6399997685185186,-6.268920104143246e-20,0.11916346642981335,0.5,0.5,0.0,-0.0,15.86,1621.5132,-1.253784e-19 -3.986410610425153,0.12162934268361573,3.986410610425153,-3.338809529406593e-20,0.6395354166666667,-3.338809529406593e-20,0.12851305725978818,0.0,0.0,0.0,-0.0,17.125,1617.8949,-6.677619e-20 -3.7885539407236406,0.13517677630236663,3.7885539407236406,2.11,0.6378482638888888,-1.5347777272773102e-20,0.14309610890927726,2.11,2.11,0.0,-0.0,18.975,1614.8547,-3.0695555e-20 -3.6260422891978275,0.13444735103738265,3.6260422891978275,-6.798210521454767e-21,0.6360001157407408,-6.798210521454767e-21,0.14255508560210425,0.0,0.0,0.0,-0.0,18.96,1612.2365,-1.3596421e-20 -3.4672470965454387,0.1389552820592366,3.4672470965454387,0.03,0.6355359953703703,6.0995850044230606e-21,0.14757966314068616,0.03,0.03,0.0,-0.0,19.560000000000002,1609.5621,1.219917e-20 -3.326980661368422,0.1384960613145594,3.326980661368422,8.81,0.6338483796296296,2.139163542629002e-20,0.14731766199218577,8.81,8.81,0.0,-0.0,19.575,1607.096,4.278327e-20 -3.2212495524701588,0.1379669421761583,3.2212495524701588,3.5549498847621386e-20,0.6319996527777777,3.5549498847621386e-20,0.14693117556299914,0.0,0.0,0.0,-0.0,19.58,1605.1672,7.1099e-20 -3.1644719190883643,0.1559000985144796,3.1644719190883643,1.43,0.6315355324074073,4.5044740642034537e-20,0.16613943808459358,1.43,1.43,0.0,-0.0,21.7,1604.1052,9.008948e-20 -3.1715820981096177,0.17499700428358175,3.1715820981096177,5.19,0.6287943287037038,4.6348923355869364e-20,0.18647502553483522,5.19,5.19,0.0,-0.0,23.79,1604.2393,9.2697847e-20 -3.260932334970109,0.17416246851857678,3.260932334970109,6.09,0.628,3.593360468870436e-20,0.18539400951915544,6.09,6.09,0.0,-0.0,23.71,1605.8984,7.186721e-20 -3.265201032310002,0.16045318306644593,3.265201032310002,2.31,0.6267813657407407,2.0641508626500868e-20,0.17079231888525614,2.31,2.31,0.0,-0.0,22.310000000000002,1605.9766,4.1283017e-20 -3.219992184286698,0.14289476413241922,3.219992184286698,2.86,0.624052199074074,1.0966342124160363e-20,0.15218138719627428,2.86,2.86,0.0,-0.0,20.395,1605.1439,2.1932684e-20 -3.5194794375620972,0.1455639774836293,3.5194794375620972,14.06,0.6238902777777778,6.431865233631459e-21,0.154512813226876,14.06,14.06,0.0,-0.0,20.66,1610.4551,1.28637305e-20 -4.309026207248628,0.14181171239735935,4.309026207248628,18.54,0.6207944444444444,3.738471051208252e-21,0.14940848388880584,18.54,18.54,0.0,-0.0,20.17,1622.5424,7.476942e-21 -4.768203552529509,0.11894281169289372,4.768203552529509,4.12,0.6199998842592592,2.224281397012989e-21,0.12484920380962676,4.12,4.12,0.0,-0.0,17.16,1628.5895,4.4485628e-21 -4.926371570167379,0.1275421239033004,4.926371570167379,10.72,0.6183303240740741,1.3214152730242972e-21,0.13371552484297938,10.72,10.72,0.0,-0.0,18.355,1630.5383,2.6428305e-21 -4.892453276782285,0.11701617919097433,4.892453276782285,0.05,0.615999537037037,7.889453196487577e-22,0.1227111458169756,0.05,0.05,0.0,-0.0,16.98,1630.1257,1.5778906e-21 -4.514671455734591,0.14092902099648963,4.514671455734591,4.439192691571988e-22,0.6151532407407407,4.439192691571988e-22,0.1482241639635847,0.0,0.0,0.0,-0.0,20.189999999999998,1625.3265,8.878385e-22 -4.210337207234587,0.14504261588006256,4.210337207234587,0.81,0.6120002314814815,1.8698795390253738e-22,0.1529428912017928,0.81,0.81,0.0,-0.0,20.815,1621.1587,3.739759e-22 -4.053790470094633,0.13535552112635668,4.053790470094633,2.98,0.6115356481481482,5.922695101196076e-23,0.14292765226181914,2.98,2.98,0.0,-0.0,19.669999999999998,1618.8959,1.184539e-22 -4.101029270010645,0.11085600941514982,4.101029270010645,8.48,0.6080510416666667,3.3876707029735433e-23,0.11700756825471958,8.48,8.48,0.0,-0.0,16.405,1619.5878,6.7753414e-23 -4.241572154883542,0.12822361641442798,4.241572154883542,4.5,0.6078891203703704,1.8562469812867598e-23,0.13517097944159334,4.5,4.5,0.0,-0.0,18.825,1621.6001,3.712494e-23 -4.275458899486732,0.11560290893889316,4.275458899486732,7.09,0.6042853009259259,1.0844000702973738e-23,0.12183075837100267,7.09,7.09,0.0,-0.0,17.18,1622.0753,2.1688001e-23 -4.152246021132,0.08074254946552077,4.152246021132,0.06,0.6039916666666666,5.9513627009222605e-24,0.08518408441122517,0.06,0.06,0.0,-0.0,11.36,1620.329,1.19027254e-23 -3.90280111275565,0.09196916544666474,3.90280111275565,3.3080503407208624e-24,0.6002854166666667,3.3080503407208624e-24,0.09725032778639921,0.0,0.0,0.0,-0.0,13.584999999999999,1616.629,6.6161007e-24 -3.690007688831239,0.11165271556518462,3.690007688831239,8.605768417603329e-25,0.5999998842592592,8.605768417603329e-25,0.11830920507241582,0.0,0.0,0.0,-0.0,16.810000000000002,1613.2808,1.7211537e-24 -3.5201701253521165,0.12061788736769681,3.5201701253521165,-1.156743821788115e-24,0.5962851851851851,-1.156743821788115e-24,0.12803218083529525,0.0,0.0,0.0,-0.0,18.235,1610.4668,-2.3134876e-24 -3.3770585414673238,0.1130615220687112,3.3770585414673238,2.72,0.5959997685185184,-2.1276669214012156e-24,0.12019632306970625,2.72,2.72,0.0,-0.0,17.185000000000002,1607.9882,-4.255334e-24 -3.2371239360258124,0.08927789195595766,3.2371239360258124,0.14,0.5920523148148148,-1.5765654389625828e-24,0.09506122748890954,0.14,0.14,0.0,-0.0,13.440000000000001,1605.4608,-3.1531309e-24 -3.030421107565273,0.08946344849419045,3.030421107565273,1.01,0.591992824074074,-7.372116179582502e-25,0.09549318915118812,1.01,1.01,0.0,-0.0,13.515,1601.5203,-1.4744232e-24 -2.870263096116315,0.09848715055012831,2.870263096116315,-1.612690905034823e-25,0.5880002314814815,-1.612690905034823e-25,0.10533836275967447,0.0,0.0,0.0,-0.0,15.225,1598.2776,-3.2253818e-25 -2.8888744218111393,0.11498117360696816,2.8888744218111393,6.13,0.5879922453703703,1.2058892183153865e-26,0.12295009213312048,6.13,6.13,0.0,-0.0,17.79,1598.6636,2.4117784e-26 -3.1148902982117854,0.09021854061648778,3.1148902982117854,9.38,0.5840005787037037,6.821253284426868e-27,0.096200550843985,9.38,9.38,0.0,-0.0,13.854999999999999,1603.1621,1.3642507e-26 -3.2184721486404326,0.08920563145584476,3.2184721486404326,3.686335069332133e-27,0.5835359953703704,3.686335069332133e-27,0.0950047072243913,0.0,0.0,0.0,-0.0,13.665000000000001,1605.1157,7.37267e-27 -3.0530836632027527,0.10367996455840751,3.0530836632027527,2.1543003616238578e-27,0.5800003472222222,2.1543003616238578e-27,0.11063714514343362,0.0,0.0,0.0,-0.0,16.259999999999998,1601.9652,4.3086007e-27 -2.899677056143836,0.10348179818757597,2.899677056143836,1.202916295075332e-27,0.5787818287037036,1.202916295075332e-27,0.11063831145796443,0.0,0.0,0.0,-0.0,16.295,1598.8865,2.4058326e-27 -2.763344650692449,0.09491197743474088,2.763344650692449,2.1889794747227207e-28,0.5760005787037037,2.1889794747227207e-28,0.10165868299726184,0.0,0.0,0.0,-0.0,14.98,1596.0105,4.377959e-28 -2.6470164009581674,0.10992822217718358,2.6470164009581674,-1.8519166492174288e-27,0.5738478009259259,-1.8519166492174288e-27,0.11793212950474265,0.0,0.0,0.0,-0.0,17.5,1593.442,-3.7038333e-27 -2.5485442138573755,0.1172737970998276,2.5485442138573755,9.57,0.5719994212962963,-4.592030973885441e-27,0.12599155275527008,9.57,9.57,0.0,-0.0,18.665,1591.178,-9.184062e-27 -2.465993701901281,0.07944119905118428,2.465993701901281,8.81,0.5680513888888888,-7.538179935853038e-27,0.08545220612475617,8.81,8.81,0.0,-0.0,12.39,1589.2115,-1.507636e-26 -2.397787714562054,0.07179176136667847,2.397787714562054,-1.0227097842588388e-26,0.5679997685185185,-1.0227097842588388e-26,0.07730544609841322,0.0,0.0,0.0,-0.0,10.795,1587.5365,-2.0454196e-26 -2.3425985787637877,0.07606280463196605,2.3425985787637877,-1.2195520734896606e-26,0.5639996527777777,-1.2195520734896606e-26,0.08197631840763851,0.0,0.0,0.0,-0.0,11.84,1586.1459,-2.4391041e-26 -2.2993566986068386,0.08753145985891317,2.2993566986068386,0.47,0.5639916666666667,-1.2980182342466876e-26,0.0944028288617807,0.47,0.47,0.0,-0.0,14.115,1585.0332,-2.5960365e-26 -2.267196178244738,0.11067048025587485,2.267196178244738,1.96,0.56,-1.2117817935732336e-26,0.1194216796487792,1.96,1.96,0.0,-0.0,18.119999999999997,1584.192,-2.4235636e-26 -2.2454139705356075,0.11765669407096184,2.2454139705356075,1.66,0.558330324074074,-9.145162785126126e-27,0.12700654571564068,1.66,1.66,0.0,-0.0,19.21,1583.6155,-1.8290326e-26 -2.2231956520001046,0.09282993922689384,2.2231956520001046,4.99,0.5560002314814815,-3.524154434645228e-27,0.10024447012415201,4.99,4.99,0.0,-0.0,15.33,1583.0216,-7.048309e-27 -2.187619739618826,0.0903633591455268,2.187619739618826,11.83,0.5520519675925926,3.8162598441244514e-27,0.09764029980363521,11.83,11.83,0.0,-0.0,15.015,1582.0582,7.63252e-27 -2.1408357779780895,0.07659502603681895,2.1408357779780895,1.0904180855325076e-26,0.5520004629629629,1.0904180855325076e-26,0.08283079884628212,0.0,0.0,0.0,-0.0,12.35,1580.7672,2.1808362e-26 -2.0851407450742006,0.06688024566177057,2.0851407450742006,1.5764345188671952e-26,0.5479999999999999,1.5764345188671952e-26,0.07239721372075643,0.0,0.0,0.0,-0.0,10.325,1579.193,3.152869e-26 -2.0227745135021635,0.061232131384825084,2.0227745135021635,1.6421489433880387e-26,0.5479921296296296,1.6421489433880387e-26,0.06635938933278067,0.0,0.0,0.0,-0.0,8.96,1577.3795,3.284298e-26 -1.9565903303252734,0.06260407175963154,1.9565903303252734,1.1237324365245291e-26,0.5439997685185185,1.1237324365245291e-26,0.06793176821730383,0.0,0.0,0.0,-0.0,9.44,1575.3928,2.2474649e-26 -1.9067444651485583,0.06146279662282135,1.9067444651485583,3.9867273701760655e-27,0.540794212962963,3.9867273701760655e-27,0.0667586760109941,0.0,0.0,0.0,-0.0,9.26,1573.8517,7.973455e-27 -1.90436070910979,0.061526875306090155,1.90436070910979,-2.329215245103051e-27,0.54,-2.329215245103051e-27,0.06683144830025112,0.0,0.0,0.0,-0.0,9.299999999999999,1573.777,-4.6584305e-27 -1.9821355263156395,0.06385488340173295,1.9821355263156395,8.68,0.5359994212962963,-5.9029259757403016e-27,0.0692549714070803,8.68,8.68,0.0,-0.0,9.975,1576.1675,-1.1805852e-26 -2.1795945886441586,0.06335453747837716,2.1795945886441586,9.49,0.5359994212962963,-5.030066021180829e-27,0.06846596233462394,9.49,9.49,0.0,-0.0,9.795,1581.8387,-1.0060132e-26 -2.293742389954454,0.0671081769095387,2.293742389954454,4.98,0.5319998842592593,-2.640412975899968e-27,0.07238295047473219,4.98,4.98,0.0,-0.0,10.79,1584.8872,-5.280826e-27 -2.293132965615197,0.07259321548059265,2.293132965615197,1.15,0.5298482638888888,-1.030027875083623e-27,0.0782999028695487,1.15,1.15,0.0,-0.0,12.105,1584.8713,-2.0600558e-27 -2.3264934576103937,0.07233412369193758,2.3264934576103937,4.64,0.5279998842592593,-4.542726108047658e-28,0.07797800472147347,4.64,4.64,0.0,-0.0,12.095,1585.7339,-9.085452e-28 -2.5199451914668147,0.06919333894593857,2.5199451914668147,9.55,0.5240002314814816,-2.4454432876133735e-28,0.07436844756104072,9.55,9.55,0.0,-0.0,11.46,1590.504,-4.8908866e-28 -2.7243268935678455,0.06550469279617534,2.7243268935678455,4.45,0.5240002314814816,-1.184456786189115e-28,0.07019836915662765,4.45,4.45,0.0,-0.0,10.545,1595.1613,-2.3689136e-28 -2.755758001734807,0.06799199655759557,2.755758001734807,2.52,0.520000462962963,-6.79394658300687e-29,0.0728326195735081,2.52,2.52,0.0,-0.0,11.25,1595.8463,-1.3587893e-28 -2.69078361109359,0.06694984901772535,2.69078361109359,0.52,0.5183310185185186,-3.595282686758343e-29,0.07178036986286723,0.52,0.52,0.0,-0.0,11.07,1594.4214,-7.1905654e-29 -2.5794864143025134,0.06671125521401941,2.5794864143025134,-2.009772445713873e-29,0.5159998842592592,-2.009772445713873e-29,0.0716379072143905,0.0,0.0,0.0,-0.0,11.11,1591.8987,-4.019545e-29 -2.4364129020189496,0.062258996196265286,2.4364129020189496,-8.849092132651184e-30,0.511999537037037,-8.849092132651184e-30,0.06700027713969556,0.0,0.0,0.0,-0.0,10.175,1588.4908,-1.7698184e-29 -2.337915455323266,0.062083497568899325,2.337915455323266,0.52,0.511999537037037,-8.65280263165709e-31,0.0669152297619615,0.52,0.52,0.0,-0.0,10.155,1586.0264,-1.7305605e-30 -2.364762778102993,0.07660213208420019,2.364762778102993,5.43,0.5079996527777778,1.7006390229278473e-30,0.08252831502113436,5.43,5.43,0.0,-0.0,13.629999999999999,1586.7083,3.401278e-30 -2.3939678437734546,0.05886081376965135,2.3939678437734546,1.27,0.5067805555555556,9.660567104153767e-31,0.06338518939451032,1.27,1.27,0.0,-0.0,9.465,1587.4413,1.9321134e-30 -2.3225782674355004,0.048062108946251805,2.3225782674355004,4.936576923453378e-31,0.503999537037037,4.936576923453378e-31,0.05181544907124452,0.0,0.0,0.0,-0.0,6.4350000000000005,1585.6333,9.873154e-31 -2.252019089903632,0.04957860413200684,2.252019089903632,1.54,0.4999997685185186,2.802362075439422e-31,0.053512550985542806,1.54,1.54,0.0,-0.0,7.05,1583.7909,5.604724e-31 -2.1793896600136766,0.055472555072662716,2.1793896600136766,1.4118545264251773e-31,0.4999997685185186,1.4118545264251773e-31,0.05994827678579636,0.0,0.0,0.0,-0.0,8.805,1581.8331,2.823709e-31 -2.10376360368307,0.05545154064806613,2.10376360368307,6.649571708562041e-32,0.4959997685185185,6.649571708562041e-32,0.060005575035991146,0.0,0.0,0.0,-0.0,8.945,1579.724,1.3299143e-31 -2.0379765145944733,0.057759598901224084,2.0379765145944733,3.2031251277067906e-32,0.49366840277777774,3.2031251277067906e-32,0.06257834593433828,0.0,0.0,0.0,-0.0,9.675,1577.8267,6.40625e-32 -1.9878849166749357,0.06569503861271371,1.9878849166749357,1.19,0.4919994212962963,-1.6978844076696967e-33,0.07124292667560898,1.19,1.19,0.0,-0.0,11.780000000000001,1576.3405,-3.3957688e-33 -1.9432541628652833,0.07913447803212274,1.9432541628652833,0.45,0.48800034722222224,-2.5968791976967565e-32,0.0858912045640375,0.45,0.45,0.0,-0.0,14.934999999999999,1574.9844,-5.1937584e-32 -1.894777987097638,0.08353296831662803,1.894777987097638,-3.186742556812968e-32,0.48800034722222224,-3.186742556812968e-32,0.09075218135099217,0.0,0.0,0.0,-0.0,15.84,1573.4757,-6.373485e-32 -1.9088775696681761,0.08164893731368054,1.9088775696681761,0.51,0.4840002314814815,-1.9537080513915173e-32,0.08868037262691841,0.51,0.51,0.0,-0.0,15.595,1573.9185,-3.907416e-32 -2.145847728248261,0.07403510239339509,2.145847728248261,13.39,0.48167002314814816,-9.974768985865849e-33,0.08005539381042197,13.39,13.39,0.0,-0.0,14.0,1580.9069,-1.9949538e-32 -2.536720505997116,0.07170255489689946,2.536720505997116,12.91,0.4800005787037037,-5.318432354799282e-33,0.07704613840030508,12.91,12.91,0.0,-0.0,13.435,1590.9003,-1.0636865e-32 -2.8032306178223516,0.05494256524650597,2.8032306178223516,5.6,0.4760001157407408,-3.0395091710417903e-33,0.05881655302738248,5.6,5.6,0.0,-0.0,9.275,1596.8663,-6.0790183e-33 -2.804164749899544,0.04338603281689002,2.804164749899544,-1.7332959913172258e-33,0.4760001157407408,-1.7332959913172258e-33,0.04644459340989697,0.0,0.0,0.0,-0.0,5.64,1596.8862,-3.466592e-33 -2.6956004792868025,0.0391071999412526,2.6956004792868025,-8.198129028084951e-34,0.4719996527777777,-8.198129028084951e-34,0.04192602788654331,0.0,0.0,0.0,-0.0,4.225,1594.5282,-1.6396258e-33 -2.582208498156606,0.043789130064904785,2.582208498156606,-6.969658108565854e-35,0.4701513888888889,-6.969658108565854e-35,0.04702111372467446,0.0,0.0,0.0,-0.0,6.015000000000001,1591.9617,-1.3939316e-34 -2.4721205781275812,0.049100861660008654,2.4721205781275812,3.252748300302517e-34,0.46799976851851854,3.252748300302517e-34,0.05281120858562953,0.0,0.0,0.0,-0.0,7.865,1589.3597,6.5054966e-34 -2.370948285217247,0.046444917230020505,2.370948285217247,2.468984686826872e-34,0.463999537037037,2.468984686826872e-34,0.0500331234752677,0.0,0.0,0.0,-0.0,7.165,1586.8643,4.9379694e-34 -2.2756229471381237,0.039586544865501845,2.2756229471381237,8.316739622325286e-35,0.463999537037037,8.316739622325286e-35,0.04271085294096378,0.0,0.0,0.0,-0.0,4.76,1584.4136,1.6633479e-34 -2.188031163975514,0.044913382395484085,2.188031163975514,-4.53966074670323e-35,0.46,-4.53966074670323e-35,0.04852990231765679,0.0,0.0,0.0,-0.0,6.83,1582.0695,-9.0793215e-35 -2.111004636097656,0.06360569319349192,2.111004636097656,-1.0026361846183172e-34,0.45920532407407405,-1.0026361846183172e-34,0.06882045910670635,0.0,0.0,0.0,-0.0,12.33,1579.9292,-2.0052724e-34 -2.0449827515883268,0.07294253322182773,2.0449827515883268,0.66,0.45599953703703705,-6.201387028497692e-35,0.07901769241953456,0.66,0.66,0.0,-0.0,14.68,1578.0316,-1.2402774e-34 -1.9822813880346979,0.059279249605971376,1.9822813880346979,1.94,0.45200810185185186,-9.297551187377434e-37,0.06429220556918146,1.94,1.94,0.0,-0.0,11.495000000000001,1576.1719,-1.8595102e-36 -1.9217774692098133,0.03719831793109589,1.9217774692098133,5.73503317765484e-35,0.452,5.73503317765484e-35,0.04039143688238343,0.0,0.0,0.0,-0.0,4.3149999999999995,1574.3207,1.1470066e-34 -1.86337925510933,0.03197092390769606,1.86337925510933,9.591644162472595e-35,0.4480001157407407,9.591644162472595e-35,0.03475600648704241,0.0,0.0,0.0,-0.0,2.2150000000000003,1572.4778,1.9183288e-34 -1.8069919955459446,0.041766577299915175,1.8069919955459446,9.785861900900922e-35,0.4480001157407407,9.785861900900922e-35,0.045458038047297734,0.0,0.0,0.0,-0.0,6.235,1570.6427,1.9571724e-34 -1.7570992830729097,0.042267596228653156,1.7570992830729097,3.486802943478473e-35,0.4440001157407408,3.486802943478473e-35,0.04605236632421288,0.0,0.0,0.0,-0.0,6.57,1568.9706,6.973606e-35 -1.728699209524098,0.031163442104916214,1.728699209524098,-1.275152158759395e-34,0.44166932870370373,-1.275152158759395e-34,0.033974984990842824,0.0,0.0,0.0,-0.0,2.09,1567.9974,-2.5503043e-34 -1.7198703363822023,0.0345122266534732,1.7198703363822023,-3.5601104560950316e-34,0.4400003472222222,-3.5601104560950316e-34,0.037633233544527626,0.0,0.0,0.0,-0.0,3.6599999999999997,1567.6917,-7.120221e-34 -1.7278019255370893,0.035448772739267165,1.7278019255370893,-6.12152504432878e-34,0.43611064814814815,-6.12152504432878e-34,0.0386476992378641,0.0,0.0,0.0,-0.0,4.19,1567.9664,-1.224305e-33 -1.7501668747417238,0.03537434571271748,1.7501668747417238,-8.57472711237468e-34,0.43600011574074077,-8.57472711237468e-34,0.03854767332519018,0.0,0.0,0.0,-0.0,4.154999999999999,1568.7345,-1.7149454e-33 -1.7849331122115881,0.04286349214627406,1.7849331122115881,-1.053504761336316e-33,0.43200000000000005,-1.053504761336316e-33,0.04667369917882747,0.0,0.0,0.0,-0.0,7.195,1569.9092,-2.1070095e-33 -1.8301575251659046,0.04346096770685437,1.8301575251659046,3.25,0.43194837962962956,-1.1617817500424647e-33,0.04727928421512417,3.25,3.25,0.0,-0.0,7.3950000000000005,1571.4034,-2.3235635e-33 -1.8838451784494288,0.0452431757886558,1.8838451784494288,10.99,0.428,-1.1438366349157125e-33,0.0491640480850085,10.99,10.99,0.0,-0.0,8.14,1573.1301,-2.2876733e-33 -1.9438421211538275,0.05034499068315418,1.9438421211538275,4.99,0.4261517361111111,-9.612027408578422e-34,0.05464296220172752,4.99,4.99,0.0,-0.0,9.855,1575.0024,-1.9224055e-33 -1.9984899193629417,0.04652666882531972,1.9984899193629417,3.06,0.42400011574074076,-6.038208208794404e-34,0.05044563644616017,3.06,3.06,0.0,-0.0,8.684999999999999,1576.6582,-1.2076416e-33 -1.9926609794999066,0.046798977227613746,1.9926609794999066,0.31,0.42121863425925926,-2.6459310249366855e-34,0.05074649603532013,0.31,0.31,0.0,-0.0,8.879999999999999,1576.4838,-5.291862e-34 -1.9438023886391596,0.041482440915647394,1.9438023886391596,0.51,0.41999976851851856,-3.7928398556642453e-35,0.04502384799465916,0.51,0.51,0.0,-0.0,7.075,1575.0012,-7.5856797e-35 -1.8838875361404332,0.03639519016854699,1.8838875361404332,1.8561357134705688e-35,0.4164640046296296,1.8561357134705688e-35,0.039549242974242074,0.0,0.0,0.0,-0.0,5.23,1573.1315,3.7122714e-35 -1.8269693039331818,0.031358183214963295,1.8269693039331818,8.464390150171538e-36,0.4159996527777778,8.464390150171538e-36,0.03411545537346095,0.0,0.0,0.0,-0.0,3.0349999999999997,1571.2993,1.692878e-35 -1.772172792503198,0.033029738956594105,1.772172792503198,3.4596263180067855e-37,0.4121109953703704,3.4596263180067855e-37,0.03597562596225369,0.0,0.0,0.0,-0.0,3.965,1569.4807,6.9192526e-37 -1.719933616270363,0.039913386037882644,1.719933616270363,-3.6677113375291715e-36,0.41200046296296294,-3.6677113375291715e-36,0.04352276913659653,0.0,0.0,0.0,-0.0,6.85,1567.6938,-7.335423e-36 -1.672995142059334,0.047805390489876934,1.672995142059334,-1.9419718764758358e-36,0.4080084490740741,-1.9419718764758358e-36,0.05218345587617283,0.0,0.0,0.0,-0.0,9.815000000000001,1566.0414,-3.8839438e-36 -1.6437018439079667,0.036924163926516006,1.6437018439079667,1.28,0.40794895833333333,3.766073252365297e-36,0.04033288514157482,1.28,1.28,0.0,-0.0,5.84,1564.9865,7.5321465e-36 -1.634742264714097,0.03546604485409935,1.634742264714097,16.58,0.40399999999999997,1.1778619129611293e-35,0.038748239048688855,16.58,16.58,0.0,-0.0,5.380000000000001,1564.66,2.3557238e-35 -1.6478699033782214,0.03647229272893287,1.6478699033782214,23.49,0.4037145833333334,2.0630323332437955e-35,0.039835448813549994,23.49,23.49,0.0,-0.0,5.8100000000000005,1565.1377,4.1260647e-35 -1.6857544643402618,0.032722485937264525,1.6857544643402618,14.12,0.40000023148148145,2.8855843617387284e-35,0.035708897787099854,14.12,14.12,0.0,-0.0,4.3,1566.4951,5.771169e-35 -1.7523146387204536,0.03292259359833186,1.7523146387204536,1.49,0.39971435185185183,3.4989843480719795e-35,0.03587430687692958,1.49,1.49,0.0,-0.0,4.380000000000001,1568.8077,6.9979687e-35 -1.8532146702560748,0.04235151044302674,1.8532146702560748,2.38,0.3960082175925926,3.756697422179417e-35,0.04605044322228365,2.38,2.38,0.0,-0.0,8.33,1572.1511,7.513395e-35 -1.996566812883156,0.0331944323348778,1.996566812883156,6.4,0.39571446759259266,3.512190005433573e-35,0.035991730628632854,6.4,6.4,0.0,-0.0,4.58,1576.6007,7.02438e-35 -2.194001035044857,0.03046280448953678,2.194001035044857,8.74,0.3921108796296296,2.618927945235098e-35,0.03291234839946002,8.74,8.74,0.0,-0.0,3.38,1582.2322,5.237856e-35 -2.336759273170581,0.028771929195312823,2.336759273170581,1.269999999999999,0.3919487268518519,-1.0288703804020201e-15,0.0310117211296345,1.27,1.27,0.0,-0.0,2.505,1585.9968,-2.0577408e-15 -2.32587057746248,0.030246004059680587,2.32587057746248,-2.6863948501282993e-15,0.3884644675925926,-2.6863948501282993e-15,0.032606281953447856,0.0,0.0,0.0,-0.0,3.38,1585.7179,-5.3727897e-15 -2.237945180684693,0.02756134810652404,2.237945180684693,0.33999999999999747,0.38799999999999996,-2.566973984677537e-15,0.02975531074276113,0.34,0.34,0.0,-0.0,2.045,1583.4165,-5.133948e-15 -2.151025293984129,0.02446286466306318,2.151025293984129,1.2774141725169522e-15,0.3848466435185185,1.2774141725169522e-15,0.02644969658954629,0.0,0.0,0.0,-0.0,0.44499999999999984,1581.0508,2.7278008e-15 -2.0751954578730114,0.024174944480722268,2.0751954578730114,3.437836731355255e-15,0.3840003472222222,3.437836731355255e-15,0.026173873958035446,0.0,0.0,0.0,-0.0,0.32499999999999973,1578.9075,8.421226e-15 -2.004135169869502,0.02383133527144918,2.004135169869502,2.759674567099388e-15,0.38166932870370374,2.759674567099388e-15,0.02583590169505376,0.0,0.0,0.0,-0.0,0.2250000000000001,1576.8267,8.891841e-15 -1.941562788911225,0.02704999683238521,1.941562788911225,0.220000000000003,0.3799997685185186,2.9901779151217082e-15,0.02936057181387288,0.22,0.22,0.0,-0.0,2.155,1574.9324,5.980356e-15 -1.8826133714660522,0.0337687182304035,1.8826133714660522,2.7961820197351534e-16,0.37920590277777777,2.7961820197351534e-16,0.03669610021048766,0.0,0.0,0.0,-0.0,5.515000000000001,1573.0911,5.592364e-16 -1.8258008107843209,0.02906599304696608,1.8258008107843209,-3.023365944127963e-15,0.37611087962962964,-3.023365944127963e-15,0.03162248572848275,0.0,0.0,0.0,-0.0,3.405,1571.2611,-6.046732e-15 -1.7725024609265274,0.0257850155058488,1.7725024609265274,-6.071314845747842e-15,0.3759486111111111,-6.071314845747842e-15,0.028084554618587488,0.0,0.0,0.0,-0.0,1.6600000000000001,1569.4918,-1.2142634e-14 -1.7239460893778613,0.02865403401800224,1.7239460893778613,0.009999999999991984,0.37321898148148147,-8.016778057638376e-15,0.031242456200486244,0.01,0.01,0.0,-0.0,3.34,1567.833,-1.6033556e-14 -1.6812190772672067,0.031911089417063186,1.6812190772672067,1.239999999999992,0.3719998842592593,-8.012292171149862e-15,0.03482702625757273,1.24,1.24,0.0,-0.0,5.015000000000001,1566.3342,-1.6024584e-14 -1.6425565536225217,0.023655111472806904,1.6425565536225217,-9.038300314248917e-14,0.37120578703703705,-9.038300314248917e-14,0.02583956331395249,0.0,0.0,0.0,-0.0,0.6299999999999999,1564.9448,-1.8269037e-13 -1.6159252617558806,0.01888650963143837,1.6159252617558806,0.035741999457897244,0.3684645833333333,-1.842377605536892e-11,0.020643477975069335,1.75,0.03574199947632102,1.714258000523679,-0.0,-2.4799999999999995,1563.9686,0.20552896 -1.6498280556620293,0.02537789843311906,1.6498280556620293,4.413939572110863,0.3680003472222222,0.25393957211086243,0.027716770474298102,4.16,4.16,0.0,-0.0,1.7799999999999998,1565.2086,0.27085966 -1.661466305709379,0.016530299937005832,1.661466305709379,4.1727919730671914e-10,0.36615196759259255,-0.0,0.018048920793881793,1.25,4.1727919730671914e-10,1.2499999995827207,-0.0,-4.275,1565.6284,0.859435 -1.616100331125087,0.012843881594001464,1.616100331125087,0.0,0.3644642361111111,-0.0,0.01403866014179169,1.12,0.0,1.12,-0.0,-7.655,1563.9751,2.0458798 -1.5731752520961992,0.013538941684643608,1.5731752520961992,0.0,0.36400011574074076,-0.0,0.014813604358069027,1.43,0.0,1.43,-0.0,-6.91,1562.3674,3.3274217 -1.5324612126182282,0.013167329076809495,1.5324612126182282,0.0,0.3621513888888889,-0.0,0.014421459443313824,0.0,0.0,0.0,-0.0,-7.205,1560.8015,4.042307 -1.493835623890763,0.00982537645967449,1.493835623890763,0.0,0.3604638888888889,-0.0,0.01077172193103293,0.0,0.0,0.0,-0.0,-11.03,1559.277,4.0484943 -1.4571304248454697,0.011176534866942523,1.4571304248454697,0.0,0.3599998842592593,-0.0,0.01226470524728775,12.4,0.0,12.4,-0.0,-9.3,1557.7913,10.255051 -1.422091399497404,0.017483751472658376,1.422091399497404,0.00033808275285449475,0.35920578703703704,-3.5444073463951506e-14,0.01920392506470054,11.92,0.00033808275288993884,11.91966191724711,-0.0,-3.1400000000000006,1556.3376,22.383654 -1.3886554445094597,0.014254426509181925,1.3886554445094597,5.551115123125783e-19,0.3572189814814815,-0.0,0.015671183964824368,0.01,5.551115123125783e-19,0.01,-0.0,-5.885000000000001,1554.9167,28.325739 -1.356812443122648,0.011446936288520941,1.356812443122648,0.0,0.35611041666666665,-0.0,0.012595877803444637,0.15,0.0,0.15,-0.0,-8.8,1553.5314,28.406542 -1.3263989363063369,0.013284346732475857,1.3263989363063369,0.0,0.3559483796296296,-0.0,0.014630461394902136,3.87,0.0,3.87,-0.0,-6.775,1552.1775,30.422941 -1.3230953770287317,0.021698144026490913,1.3230953770287317,3.3106053277375156,0.3546476851851852,-0.019394671715509862,0.023899129281947963,3.33,3.3299999994530256,5.469746905406581e-10,-0.0,0.16000000000000014,1552.0286,32.83213 -1.4542828498953801,0.02485965601933099,1.4542828498953801,10.670256944911483,0.35321898148148145,5.280256944911483,0.027282089094893904,5.39,5.39,0.0,-0.0,2.15,1557.6744,30.165947 -1.5889298321594192,0.0203027525528156,1.5889298321594192,4.769831067661177,0.35211030092592593,-0.0001579282852009064,0.02220575570053491,4.77,4.769988995946378,1.1004053621190834e-5,-0.0,-0.7949999999999999,1562.9625,28.407814 -1.7815833103584509,0.020392244987322887,1.7815833103584509,12.289807860808134,0.35199988425925927,-0.0001651697768384073,0.0222065323600541,12.29,12.289973030584973,2.6969415025996922e-5,-0.0,-0.79,1569.797,28.408022 -1.840590638287283,0.01586617743267582,1.840590638287283,3.485420840831921e-10,0.35171423611111113,-0.0,0.017256391891099,2.0,3.485420840831921e-10,1.999999999651458,-0.0,-4.34,1571.7429,31.717394 -1.7851593320342003,0.011445744809917271,1.7851593320342003,0.0,0.3506474537037037,-0.0,0.01246311599932556,0.0,0.0,0.0,-0.0,-8.735,1569.9167,32.720345 -1.7330048702025198,0.011477919186644963,1.7330048702025198,0.0,0.34966921296296294,-0.0,0.012512263164122538,0.74,0.0,0.74,-0.0,-8.645,1568.146,33.657887 -1.6837639966394402,0.013133972024022984,1.6837639966394402,0.0,0.3488465277777778,-0.0,0.014333287227908007,4.21,0.0,4.21,-0.0,-6.779999999999999,1566.4246,37.713966 -1.637236909878707,0.014086207135246958,1.637236909878707,1.3200551762793112e-15,0.3481105324074074,-0.0,0.015388915187827023,11.89,1.3200551762793112e-15,11.889999999999999,-0.0,-5.78,1564.7511,44.941883 -1.5932618456343124,0.00870907727227964,1.5932618456343124,0.0,0.3480079861111111,-0.0,0.009524399463215141,4.95,0.0,4.95,-0.0,-12.175,1563.1251,52.85002 -1.5516853794906,0.005151377025609313,1.5516853794906,0.0,0.34794849537037037,-0.0,0.005639333124477531,0.0,0.0,0.0,-0.0,-18.759999999999998,1561.546,55.32285 -1.5122691930652672,0.0043963225743493045,1.5122691930652672,0.0,0.34771435185185184,-0.0,0.004817497928562051,0.0,0.0,0.0,-0.0,-20.655,1560.0094,55.327225 -1.474803543774838,0.005443648029167999,1.474803543774838,0.0,0.3472057870370371,-0.0,0.0059708931853159775,0.0,0.0,0.0,-0.0,-18.035,1558.5112,55.326412 -1.4391130186551078,0.006926127357923768,1.4391130186551078,0.0,0.3466476851851852,-0.0,0.007604096371676035,0.02,0.0,0.02,-0.0,-15.005,1557.0482,55.337215 -1.4050700537788297,0.008510892205602697,1.4050700537788297,0.0,0.3466476851851852,-0.0,0.009352574648096941,0.09,0.0,0.09,-0.0,-12.36,1555.6185,55.43858 -1.3725223702790668,0.013701251885876817,1.3725223702790668,0.0,0.3461518518518519,-0.0,0.01506979253469138,4.04,0.0,4.04,-0.0,-5.99,1554.2189,57.551456 -1.3413728092268946,0.014362696579931668,1.3413728092268946,2.806643806252396e-14,0.3461518518518519,-0.0,0.015811252259471612,3.2,2.806643806252396e-14,3.199999999999972,-0.0,-5.33,1552.8479,61.180325 -1.3116404761063234,0.010277608482358019,1.3116404761063234,0.0,0.3456693287037037,-0.0,0.011323922637513015,0.0,0.0,0.0,-0.0,-9.82,1551.5093,62.81255 -1.2832122585044894,0.012700791063642443,1.2832122585044894,0.0,0.3456693287037037,-0.0,0.014005610636568988,0.0,0.0,0.0,-0.0,-6.97,1550.2007,62.957787 -1.2591188152783859,0.023169816630200953,1.2591188152783859,3.5284208854037216,0.3461518518518519,3.5284208854037216,0.025568845074349724,0.0,0.0,0.0,-0.0,1.4949999999999999,1549.0687,62.78723 -1.2553822255704388,0.02010591547450804,1.2553822255704388,-0.0012543616494599802,0.3461518518518519,-0.0012543616494599802,0.022190246732692927,0.0,0.0,0.0,-0.0,-0.56,1548.8912,61.6797 -1.2291578226690119,0.01840731425200462,1.2291578226690119,-1.2624581573538189e-8,0.3461518518518519,-1.2624581573538189e-8,0.020332105269083793,0.0,0.0,0.0,-0.0,-1.81,1547.6305,61.679024 -1.2040299335455766,0.015518744759170519,1.2040299335455766,0.0,0.3466476851851852,-0.0,0.01715516108517024,0.0,0.0,0.0,-0.0,-4.220000000000001,1546.397,61.669155 -1.1799438158683049,0.01413894394482538,1.1799438158683049,0.0,0.3472057870370371,-0.0,0.015642070272660347,0.0,0.0,0.0,-0.0,-5.52,1545.1902,61.668476 -1.1568572762897367,0.009620559748949022,1.1568572762897367,0.0,0.34771435185185184,-0.0,0.010651466265801712,0.45,0.0,0.45,-0.0,-10.705,1544.0101,61.92619 -1.1346607048419144,0.012272108292386187,1.1346607048419144,0.0,0.34794849537037037,-0.0,0.013597334720844689,3.41,0.0,3.41,-0.0,-7.459999999999999,1542.8531,64.012474 -1.1132836267255932,0.011995431243939656,1.1132836267255932,0.0,0.34800000000000003,-0.0,0.013300572204163606,3.8,0.0,3.8,-0.0,-7.76,1541.7173,67.569374 -1.0927447621391804,0.00665699160386691,1.0927447621391804,0.0,0.3480079861111111,-0.0,0.007386621466818798,0.0,0.0,0.0,-0.0,-15.42,1540.6052,69.53451 -1.0729882958553898,0.006843236032905356,1.0729882958553898,0.0,0.3484641203703704,-0.0,0.007598653124871639,0.0,0.0,0.0,-0.0,-15.08,1539.5156,69.59613 -1.053914260558373,0.008748520251818355,1.053914260558373,0.0,0.34921886574074074,-0.0,0.009721023226790757,2.9,0.0,2.9,-0.0,-11.955000000000002,1538.4445,70.97524 -1.0354671048851596,0.011146788335202327,1.0354671048851596,0.0,0.35015162037037034,-0.0,0.01239438361958453,2.73,0.0,2.73,-0.0,-8.79,1537.3899,73.72887 -1.0176423290638876,0.009750256476920793,1.0176423290638876,0.0,0.35120578703703703,-0.0,0.010848863745000603,0.99,0.0,0.99,-0.0,-10.595,1536.3529,75.55649 -1.0004453989397002,0.00791888738000504,1.0004453989397002,0.0,0.3519482638888889,-0.0,0.008816986863723758,1.37,0.0,1.37,-0.0,-13.315000000000001,1535.3351,76.7333 -0.9838447035527055,0.006334303400133913,0.9838447035527055,0.0,0.35200787037037035,-0.0,0.0070572847292093245,0.0,0.0,0.0,-0.0,-16.135,1534.3358,77.40151 -0.9677805534524097,0.00860199844631549,0.9677805534524097,0.0,0.35284641203703704,-0.0,0.009589953679803366,3.77,0.0,3.77,-0.0,-12.265,1533.3527,79.32764 -0.9521771984759395,0.01327096159631366,0.9521771984759395,0.0,0.3541518518518519,-0.0,0.014804527919366635,8.8,0.0,8.8,-0.0,-6.545,1532.382,85.66955 -0.9370820466021178,0.0064427625795595725,0.9370820466021178,0.0,0.35571446759259256,-0.0,0.007191754523795727,3.96,0.0,3.96,-0.0,-16.03,1531.4276,92.04671 -0.9225052349454282,0.00681372745109916,0.9225052349454282,0.0,0.35600000000000004,-0.0,0.007610498140880277,0.0,0.0,0.0,-0.0,-15.329999999999998,1530.4913,94.03939 -0.9083965252209435,0.0035046646296807895,0.9083965252209435,0.0,0.3564643518518519,-0.0,0.0039168419493223645,0.0,0.0,0.0,-0.0,-23.395,1529.5709,94.0487 -0.894746803267812,0.002024786614168921,0.894746803267812,0.0,0.35815185185185183,-0.0,0.002264256604677241,0.56,0.0,0.56,-0.0,-29.65,1528.6667,94.32941 -0.8814985607474638,0.0036469075105642233,0.8814985607474638,0.0,0.3599482638888889,-0.0,0.004080602594068575,11.07,0.0,11.07,-0.0,-23.029999999999998,1527.7759,100.198044 -0.8685867282736618,0.009340986377541029,0.8685867282736618,0.0,0.36000787037037035,-0.0,0.01045786100522986,11.77,0.0,11.77,-0.0,-11.4,1526.8947,111.61675 -0.8421959010650509,0.016207498587909784,0.8421959010650509,1.0869421842585324e-8,0.36121863425925926,-0.0,0.01816730639428446,1.98,1.0869421842585324e-8,1.9799999891305782,-0.0,-3.995,1525.052,119.12951 -0.9146213225359323,0.02498977879129927,0.9146213225359323,15.019547529621322,0.3637142361111111,5.039547529621322,0.027921337041139048,9.98,9.98,0.0,-0.0,2.0599999999999996,1529.9788,119.31276 -1.3261495281452158,0.027685615081739005,1.3261495281452158,31.139715576589612,0.36400011574074076,8.489715576589614,0.03049124368009085,22.65,22.65,0.0,-0.0,3.3499999999999996,1552.1663,112.42299 -2.003623168593062,0.02093611006505802,2.003623168593062,24.04952341060909,0.36521898148148146,-2.3524267302646597e-5,0.022697365031058403,24.05,24.049546934876393,0.0004530651236071159,-0.0,-1.0050000000000001,1576.8114,109.42385 -2.128143895697355,0.016135540347006608,2.128143895697355,1.709723029819088e-11,0.36771435185185186,-0.0,0.0174530915167915,9.76,1.709723029819088e-11,9.759999999982902,-0.0,-4.800000000000001,1580.4121,120.553894 -2.054338087505017,0.017965602719651995,2.054338087505017,-7.729368410622421e-15,0.3680083333333333,-7.729368410622421e-15,0.019458541309986407,0.0,0.0,0.0,-0.0,-3.295,1578.3042,125.32546 -1.9823907913679364,0.021035182814932055,1.9823907913679364,0.26997678713969914,0.3696696759259259,-9.387077194024419e-6,0.02281397755112928,0.27,0.26998617421689314,1.3825783106914958e-5,-0.0,-1.105,1576.1752,125.387024 -2.0204480539718133,0.019289031633759984,2.0204480539718133,0.35020030831507637,0.3719483796296296,-3.204172789144894e-11,0.02090510493102168,11.06,0.35020030834711807,10.709799691652883,-0.0,-2.4349999999999996,1577.3108,127.93307 -1.9553429309478474,0.016988909874604143,1.9553429309478474,4.9476691366123765e-9,0.37211041666666667,-0.0,0.01843513619394438,7.36,4.9476691366123765e-9,7.359999995052331,-0.0,-4.205,1575.3547,137.05844 -1.8928424748345158,0.01562567952421008,1.8928424748345158,1.4923617897011353e-14,0.3746479166666667,-0.0,0.016976764257009617,5.17,1.4923617897011353e-14,5.169999999999985,-0.0,-5.4399999999999995,1573.4147,143.29712 -1.834247168137069,0.01389234680469765,1.834247168137069,0.0,0.3760002314814815,-0.0,0.015111594032269603,0.0,0.0,0.0,-0.0,-7.08,1571.5367,145.63348 -1.7792250972139825,0.01128315705856177,1.7792250972139825,0.0,0.3772188657407407,-0.0,0.012287632811559177,0.0,0.0,0.0,-0.0,-9.895,1569.7179,145.68825 -1.7274841020276595,0.008380622208138254,1.7274841020276595,0.0,0.3799997685185186,-0.0,0.009136960490814887,0.0,0.0,0.0,-0.0,-13.84,1567.9554,145.68825 -1.6787157489736502,0.006202943634777783,1.6787157489736502,0.0,0.3804640046296296,-0.0,0.006770134111896632,0.0,0.0,0.0,-0.0,-17.615,1566.2452,145.68825 -1.6326384875219326,0.006840666827070576,1.6326384875219326,0.0,0.383714699074074,-0.0,0.007474101589192495,0.0,0.0,0.0,-0.0,-16.494999999999997,1564.5831,145.68825 -1.5889850463472488,0.008843860062762412,1.5889850463472488,0.0,0.38400833333333334,-0.0,0.009672793614894561,0.0,0.0,0.0,-0.0,-13.245000000000001,1562.9646,145.68825 -1.5475613061496185,0.010013819287271016,1.5475613061496185,0.0,0.3866476851851852,-0.0,0.01096347846586239,0.0,0.0,0.0,-0.0,-11.715,1561.3871,145.7457 -1.5082652948628084,0.006974062210790871,1.5082652948628084,0.0,0.38799999999999996,-0.0,0.00764296519236798,5.04,0.0,5.04,-0.0,-16.355,1559.8511,148.45209 -1.4708928268380006,0.01152435200226291,1.4708928268380006,0.0,0.3901519675925926,-0.0,0.01264183067309348,3.87,0.0,3.87,-0.0,-9.965,1558.3527,152.69942 -1.4352705378057262,0.010766784690351652,1.4352705378057262,0.0,0.39200034722222227,-0.0,0.011821911521774609,0.0,0.0,0.0,-0.0,-10.91,1556.8885,154.38773 -1.4014015374694384,0.0057675861038869,1.4014015374694384,0.0,0.3936696759259259,-0.0,0.006338606179354954,0.0,0.0,0.0,-0.0,-18.84,1555.4624,154.5356 -1.369140315965031,0.005537722169976639,1.369140315965031,0.0,0.39600023148148145,-0.0,0.006091431416908237,7.2,0.0,7.2,-0.0,-19.395,1554.0715,158.30737 -1.338310953902714,0.008197783880043491,1.338310953902714,0.0,0.3972188657407407,-0.0,0.00902536795932877,16.07,0.0,16.07,-0.0,-14.559999999999999,1552.7114,168.79195 -1.3088497988447507,0.004756909971266047,1.3088497988447507,0.0,0.40000023148148145,-0.0,0.005241617943230708,2.76,0.0,2.76,-0.0,-21.32,1551.3821,175.91728 -1.280691471490084,0.0033857563507955794,1.280691471490084,0.0,0.4012189814814815,-0.0,0.003733875893879236,0.0,0.0,0.0,-0.0,-25.314999999999998,1550.0833,177.66765 -1.253720524515843,0.004633755874070278,1.253720524515843,0.0,0.40399999999999997,-0.0,0.005114387243578508,0.0,0.0,0.0,-0.0,-21.73,1548.8121,177.67197 -1.2278244363164885,0.005940680550487186,1.2278244363164885,0.0,0.40521898148148144,-0.0,0.006562152401911219,0.0,0.0,0.0,-0.0,-18.77,1547.5657,177.98238 -1.2029327893757409,0.008794474033069275,1.2029327893757409,0.0,0.4080003472222223,-0.0,0.009722173594874643,0.65,0.0,0.65,-0.0,-13.955,1546.3425,178.78421 -1.179005977960998,0.009622056353558594,1.179005977960998,0.0,0.40966990740740744,-0.0,0.010645314648583792,2.13,0.0,2.13,-0.0,-12.845,1545.1427,179.9055 -1.155999221935544,0.009170619781011887,1.155999221935544,0.0,0.41200046296296294,-0.0,0.010153603656753657,0.0,0.0,0.0,-0.0,-13.524999999999999,1543.9658,180.76031 -1.1339071851048876,0.006077664838359223,1.1339071851048876,0.0,0.41464768518518513,-0.0,0.006734145936137397,0.0,0.0,0.0,-0.0,-18.735,1542.8135,180.75977 -1.1126466419077627,0.008364367966441778,1.1126466419077627,0.0,0.4159996527777778,-0.0,0.009274643344683706,0.0,0.0,0.0,-0.0,-14.8,1541.6831,180.75977 -1.092130690734079,0.008796077478232257,1.092130690734079,0.0,0.419205324074074,-0.0,0.009760371406605364,2.95,0.0,2.95,-0.0,-14.25,1540.5717,180.75977 -1.072328336198153,0.013789476677536787,1.072328336198153,0.0,0.41999976851851856,-0.0,0.015312046872243485,6.23,0.0,6.23,-0.0,-8.395,1539.4789,180.75977 -1.053205752718412,0.009720593496087811,1.053205752718412,0.0,0.42400011574074076,-0.0,0.01080143604511451,0.0,0.0,0.0,-0.0,-13.1,1538.4043,180.75977 -1.034735042079417,0.011013185695280354,1.034735042079417,0.0,0.42400011574074076,-0.0,0.012246164047864456,0.0,0.0,0.0,-0.0,-11.475,1537.3477,180.75977 -1.0168896105995,0.014849055745854522,1.0168896105995,0.0,0.428,-0.0,0.016522643948906013,0.0,0.0,0.0,-0.0,-7.625,1536.3087,180.75977 -0.9996420559290593,0.014965640498236087,0.9996420559290593,0.0,0.42846388888888887,-0.0,0.01666344935746541,0.0,0.0,0.0,-0.0,-7.5249999999999995,1535.2871,180.75977 -0.9829682900985294,0.012894991803880214,0.9829682900985294,0.0,0.43200000000000005,-0.0,0.014367291841349099,0.0,0.0,0.0,-0.0,-9.620000000000001,1534.2826,180.75641 -0.9668729934151923,0.010146961761721663,0.9668729934151923,0.0,0.4336695601851852,-0.0,0.01131277223418732,0.0,0.0,0.0,-0.0,-12.795,1533.2966,180.7204 -0.9512959377221074,0.011759421304596656,0.9512959377221074,0.0,0.43600011574074077,-0.0,0.0131187904001609,0.51,0.0,0.51,-0.0,-10.94,1532.3267,180.89961 -0.9361496945304862,0.018054374938459964,0.9361496945304862,1.2679857164243914e-13,0.4399488425925926,-0.0,0.020154036652828514,9.72,1.2679857164243914e-13,9.719999999999873,-0.0,-5.289999999999999,1531.3682,186.03378 -0.9214762508536333,0.011690763864145302,0.9214762508536333,0.0,0.4400003472222222,-0.0,0.01305840482600611,8.2,0.0,8.2,-0.0,-11.12,1530.4247,194.96603 -0.907338765931817,0.006642008922991499,0.907338765931817,0.0,0.4440001157407408,-0.0,0.007423501371072672,0.0,0.0,0.0,-0.0,-18.38,1529.5013,198.94164 -0.8936702301119723,0.0046353847013009255,0.8936702301119723,0.0,0.4440081018518519,-0.0,0.005183851982419442,1.46,0.0,1.46,-0.0,-22.685,1528.5948,199.7924 -0.8803839402125023,0.009573982037440015,0.8803839402125023,0.0,0.4480001157407407,-0.0,0.010713062545769493,3.05,0.0,3.05,-0.0,-13.91,1527.7003,202.25099 -0.8674352404325314,0.012792934156610444,0.8674352404325314,0.0,0.4501516203703704,-0.0,0.014323291331070376,2.46,0.0,2.46,-0.0,-10.205,1526.8154,204.9761 -0.8548412235685316,0.011680199927501918,0.8548412235685316,0.0,0.452,-0.0,0.013084931279327819,0.08,0.0,0.08,-0.0,-11.445,1525.942,206.19954 -0.8426504951037473,0.006699649858860949,0.8426504951037473,0.0,0.45599953703703705,-0.0,0.007509611622579118,0.0,0.0,0.0,-0.0,-18.565,1525.0842,206.25266 -0.8308153059912454,0.00941469058394048,0.8308153059912454,0.0,0.45599953703703705,-0.0,0.010558738637144162,0.0,0.0,0.0,-0.0,-14.32,1524.2395,206.16017 -0.819266907788864,0.012662987829147791,0.819266907788864,0.0,0.46,-0.0,0.014209553221781045,2.9,0.0,2.9,-0.0,-10.595,1523.4036,207.58713 -0.8080094994260729,0.012833649060615985,0.8080094994260729,0.0,0.4604638888888889,-0.0,0.014408873148354167,11.86,0.0,11.86,-0.0,-10.425,1522.5773,215.03426 -0.7970517633675621,0.013137854298458958,0.7970517633675621,0.0,0.463999537037037,-0.0,0.01475832100761531,4.71,0.0,4.71,-0.0,-10.21,1521.7618,223.3898 -0.78640817943885,0.024996389382787802,0.78640817943885,8.46747990771619,0.46799976851851854,-2.364907073056766e-7,0.028094349423363727,8.49,8.467480144206897,0.022519855793103043,-0.0,-1.4999999999999996,1520.959,228.60515 -0.7760653413436658,0.019961115720506153,0.7760653413436658,8.961431596787861e-11,0.46799976851851854,-0.0,0.02244669116922879,12.0,8.961431596787861e-11,11.999999999910386,-0.0,-4.654999999999999,1520.1683,232.69046 -0.7659963038528868,0.010654046074450788,0.7659963038528868,0.0,0.4719996527777777,-0.0,0.01198684686801591,1.67,0.0,1.67,-0.0,-13.14,1519.3884,235.70042 -0.7561691847243722,0.008773376666296065,0.7561691847243722,0.0,0.4719996527777777,-0.0,0.009875921528371981,0.0,0.0,0.0,-0.0,-15.600000000000001,1518.6173,237.68971 -0.74655816794939,0.009520122735137734,0.74655816794939,0.0,0.4760001157407408,-0.0,0.0107219041989425,0.0,0.0,0.0,-0.0,-14.67,1517.8534,238.71303 -0.7367454608154346,0.0235884440413249,0.7367454608154346,-4.239385778984883e-12,0.4800005787037037,-4.239385778984883e-12,0.02657998996441338,0.0,0.0,0.0,-0.0,-2.645,1517.0632,238.91766 -0.7303072605737476,0.030615043077815342,0.7303072605737476,2.4717413428821895,0.4800005787037037,2.4717413428821895,0.03450964364069649,0.0,0.0,0.0,-0.0,1.1,1516.5391,238.67577 -0.7698986087446811,0.033619399459400005,0.7698986087446811,5.734930260356428,0.4840002314814815,5.734930260356428,0.03781756876533409,0.0,0.0,0.0,-0.0,2.3200000000000003,1519.6919,234.73166 -0.845132694378811,0.03263660095836018,0.845132694378811,7.024401038234705,0.4840002314814815,4.424401038234706,0.036578026768100014,2.6,2.6,0.0,-0.0,1.83,1525.2599,229.6525 -0.9294097530158875,0.03128096746777626,0.9294097530158875,6.067708833417489,0.48800034722222224,2.2977088334175875,0.03492867882844987,3.77,3.769999999999902,9.815093182652391e-14,-0.0,1.035,1530.9366,226.28818 -0.9630917864652392,0.02970296152972563,0.9630917864652392,0.005161917349778,0.4919994212962963,-0.03483808264258844,0.03312066580590205,0.04,0.03999999999236644,7.633560450415189e-12,-0.0,0.14500000000000002,1533.0626,225.18704 -0.9491244828426363,0.02678026595547252,0.9491244828426363,-1.1101532835949174e-6,0.4919994212962963,-1.1101532835949174e-6,0.029878680240907625,0.0,0.0,0.0,-0.0,-1.335,1532.1902,225.17006 -0.9333410302605255,0.025531913227943855,0.9333410302605255,-6.575131705420153e-10,0.4959997685185185,-6.575131705420153e-10,0.02850452704581744,0.0,0.0,0.0,-0.0,-2.1200000000000006,1531.1887,225.16362 -0.9541586329469098,0.033558855679073886,0.9541586329469098,7.010910001475274,0.4959997685185185,4.3709100014752735,0.03743381860586714,2.64,2.64,0.0,-0.0,1.8100000000000005,1532.5061,224.18149 -1.121638957905866,0.03965386006233388,1.121638957905866,14.955390747149757,0.4999997685185186,10.415390747149756,0.04395559477133881,4.54,4.54,0.0,-0.0,4.07,1542.1638,216.99725 -1.2415459049589073,0.02892757677937721,1.2415459049589073,1.769702895027073,0.503999537037037,-0.00029507728109222966,0.03194007665609755,1.77,1.7699979723081651,2.0276918348399732e-6,-0.0,-0.725,1548.2294,212.8106 -1.2274655983869254,0.021468969222973384,1.2274655983869254,3.7989611456623603e-13,0.503999537037037,-0.0,0.02371516796530653,0.72,3.7989611456623603e-13,0.7199999999996202,-0.0,-4.92,1547.5482,213.48183 -1.202318235567437,0.021157559998576637,1.202318235567437,0.0,0.5079996527777778,-0.0,0.023389861629470817,0.0,0.0,0.0,-0.0,-5.22,1546.312,213.8557 -1.1781411282933765,0.024131334892218016,1.1781411282933765,-3.695376626541942e-15,0.5079996527777778,-3.695376626541942e-15,0.02669834070393115,0.0,0.0,0.0,-0.0,-3.38,1545.0989,213.88795 -1.1548868272355295,0.02395810993175972,1.1548868272355295,-5.576044037641917e-16,0.511999537037037,-5.576044037641917e-16,0.026527128750501734,0.0,0.0,0.0,-0.0,-3.5799999999999996,1543.9083,213.88466 -1.1324988670362628,0.02685632656787084,1.1324988670362628,-1.0604458367027901e-9,0.5159998842592592,-1.0604458367027901e-9,0.029758653668398256,0.0,0.0,0.0,-0.0,-2.07,1542.7393,213.88466 -1.1085740287028494,0.02933318642417434,1.1085740287028494,-0.00015100025113772497,0.5159998842592592,-0.00015100025113772497,0.03253007207196623,0.0,0.0,0.0,-0.0,-0.7999999999999994,1541.4641,214.01016 -1.1021077543056972,0.03394723560728345,1.1021077543056972,2.7527150284026862,0.520000462962963,2.7527150284026862,0.03765551915245947,0.0,0.0,0.0,-0.0,1.2049999999999996,1541.1147,213.21957 -1.167974613932133,0.036686693630621804,1.167974613932133,6.6381847715970475,0.520000462962963,5.708184771597048,0.04060289515247809,0.93,0.93,0.0,-0.0,2.31,1544.5813,209.07867 -1.2144581561570995,0.026707237518189233,1.2144581561570995,0.1657109573400891,0.5240002314814816,-4.27551552829475e-11,0.02951362568159957,3.92,0.16571095738284425,3.7542890426171556,-0.0,-2.4050000000000002,1546.912,208.04535 -1.1904748579777267,0.022956652003189814,1.1904748579777267,0.0,0.5279998842592593,-0.0,0.02538847959780574,0.0,0.0,0.0,-0.0,-4.62,1545.7208,210.0495 -1.1667433714353155,0.024769605385046675,1.1667433714353155,-5.531503851968903e-16,0.5279998842592593,-5.531503851968903e-16,0.02741480918259809,0.0,0.0,0.0,-0.0,-3.55,1544.5183,210.12206 -1.1461854215849636,0.028744107132007656,1.1461854215849636,4.023218853957051,0.5319998842592593,-1.5484250722793343e-7,0.03183563987648916,4.04,4.023219008799558,0.016780991200442675,-0.0,-1.545,1543.4567,211.99605 -1.1246923648792861,0.013177023200378536,1.1246923648792861,0.0,0.5319998842592593,-0.0,0.014604957022426292,4.03,0.0,4.03,-0.0,-12.135000000000002,1542.3262,216.05154 -1.103645203174209,0.01516761077230062,1.103645203174209,0.0,0.5359994212962963,-0.0,0.016823561501377808,0.0,0.0,0.0,-0.0,-10.385,1541.198,218.03415 -1.0832775141446784,0.02311273407687923,1.0832775141446784,0.0,0.5395353009259259,-0.0,0.025654625035813203,0.0,0.0,0.0,-0.0,-4.7749999999999995,1540.0856,218.04362 -1.0703268257681786,0.026071115282748997,1.0703268257681786,-5.203839141554846e-14,0.54,-5.203839141554846e-14,0.028951865429616256,0.0,0.0,0.0,-0.0,-3.0999999999999996,1539.3673,218.04794 -1.0655027110150757,0.03169408722523282,1.0655027110150757,1.1360563422558192,0.5439997685185185,-0.0039435927236420336,0.03520232169459094,1.14,1.1399999349794612,6.50205388397218e-8,-0.0,-0.42500000000000027,1539.0975,218.057 -1.0543322666631931,0.02969041843824898,1.0543322666631931,-9.209494203566214e-7,0.5439997685185185,-9.209494203566214e-7,0.0329903567914133,0.0,0.0,0.0,-0.0,-1.355,1538.4681,218.06126 -1.035814275094814,0.02837325350520865,1.035814275094814,-8.350698506458305e-10,0.5479999999999999,-8.350698506458305e-10,0.03154849617778168,0.0,0.0,0.0,-0.0,-2.0949999999999998,1537.4099,218.06073 -1.0365026087701192,0.03261726190126335,1.0365026087701192,2.3577112252891164,0.5498481481481481,-0.03228876599655748,0.03626651448064955,2.39,2.389999991285674,8.71432621174506e-9,-0.0,-0.1499999999999999,1537.4496,218.11217 -1.187878843985039,0.042543768005849386,1.187878843985039,16.895098277069742,0.5520004629629629,9.185098277069743,0.04705445264895823,7.71,7.71,0.0,-0.0,3.61,1545.5905,213.90602 -1.5124484897853554,0.042217207480972394,1.5124484897853554,14.772260691789388,0.5559922453703704,8.222260691789389,0.046261479477691686,6.55,6.55,0.0,-0.0,3.25,1560.0165,205.23537 -1.777720095497414,0.03893962350995726,1.777720095497414,7.955465340964478,0.5560002314814815,4.785465340964478,0.04240756359804014,3.17,3.17,0.0,-0.0,1.9649999999999999,1569.6674,198.74078 -1.8962115402323383,0.037945580199867775,1.8962115402323383,3.634689586678776,0.56,3.3946895866787763,0.041223787440053804,0.24,0.23999999999999988,1.0658141036401502e-16,-0.0,1.445,1573.5209,194.68628 -1.9771139054713838,0.040002876642469425,1.9771139054713838,5.400611647968445,0.5600517361111111,5.400611647968445,0.04339001538659071,0.0,0.0,0.0,-0.0,2.1950000000000003,1576.016,190.31754 -2.084573961198861,0.04001050131064836,2.084573961198861,5.052920275389696,0.5639996527777777,5.052920275389696,0.0433114227668241,0.0,0.0,0.0,-0.0,2.0650000000000004,1579.1768,185.08064 -2.25244262580822,0.039748638156187927,2.25244262580822,8.228010329061789,0.5663305555555556,4.51801032906179,0.0429022958718669,3.71,3.71,0.0,-0.0,1.8649999999999998,1583.8021,180.08498 -2.633723560774742,0.04567175241427331,2.633723560774742,15.226517069709754,0.5679997685185185,9.666517069709753,0.049006373398828164,5.56,5.56,0.0,-0.0,3.79,1593.1414,172.87482 -3.1174190079939854,0.04677601069969543,3.1174190079939854,11.011190373869756,0.5715351851851852,10.121190373869755,0.049876022626309725,0.89,0.89,0.0,-0.0,3.96,1603.2106,163.0106 -3.720103754162584,0.049638681694916434,3.720103754162584,16.507338475309755,0.5719994212962963,12.207338475309754,0.05258221952521627,4.3,4.3,0.0,-0.0,4.74,1613.7659,151.71198 -4.249634186273667,0.04170631717142872,4.249634186273667,7.642210836756119,0.5760005787037037,4.812210836756119,0.04396295846390247,2.83,2.83,0.0,-0.0,1.975,1621.7135,143.22577 -4.25432744519595,0.03789488520683492,4.25432744519595,1.048496165990128,0.5760005787037037,1.048496165990128,0.03994367431984838,0.0,0.0,0.0,-0.0,0.5749999999999997,1621.7794,140.22087 -4.1008448554164385,0.03995607822902077,4.1008448554164385,2.913227056522264,0.5800003472222222,2.913227056522264,0.04217336820486866,0.0,0.0,0.0,-0.0,1.265,1619.5851,138.21112 -4.136692433199944,0.043802980147189814,4.136692433199944,6.457058451898388,0.5807946759259259,6.457058451898388,0.04621891386491023,0.0,0.0,0.0,-0.0,2.59,1620.1049,133.54083 -4.470400927515522,0.04983288115580413,4.470400927515522,11.257873634269753,0.5840005787037037,11.257873634269753,0.05243144781206388,0.0,0.0,0.0,-0.0,4.385,1624.738,124.58449 -4.932386852397781,0.048611669155249254,4.932386852397781,10.027581164189755,0.5853530092592593,10.027581164189755,0.05096233423787079,0.0,0.0,0.0,-0.0,3.9250000000000003,1630.6112,113.955444 -5.555850893117917,0.04728330476776684,5.555850893117917,13.829952042029651,0.5880002314814815,8.569952042029652,0.049354581785032686,5.26,5.26,0.0,-0.0,3.3800000000000003,1637.7196,104.78778 -6.145454625166441,0.048942229397153175,6.145454625166441,9.639771581229754,0.5903311342592593,9.639771581229754,0.05089897326057728,0.0,0.0,0.0,-0.0,3.7800000000000002,1643.743,95.49215 -7.021206775682584,0.06173882083580015,7.021206775682584,18.733237664429755,0.5920008101851852,18.733237664429755,0.06389790219237335,0.0,0.0,0.0,-0.0,7.180000000000001,1651.6991,81.10789 -8.432139023532386,0.06245317605098936,8.432139023532386,18.773355897149752,0.5943310185185184,18.773355897149752,0.06421209993282283,0.0,0.0,0.0,-0.0,7.194999999999999,1662.6348,62.39382 -10.116836971555388,0.06760903833321205,10.116836971555388,21.661868652989757,0.5959997685185184,21.661868652989757,0.06906132662492125,0.0,0.0,0.0,-0.0,8.275,1673.5128,42.213154 -12.049088480703265,0.06845852024306065,12.049088480703265,20.620651245117188,0.5987809027777777,20.620651245117188,0.06949558482137952,0.0,0.0,0.0,-0.0,8.3,1683.9512,20.620651 -12.225927886287622,0.07004032302609073,12.225927886287622,7.4127373695373535,0.5999998842592592,7.4127373695373535,0.071064630099571,0.0,0.0,0.0,-0.0,8.615,1684.8213,7.4127374 -11.26760978201641,0.062230494628685254,11.26760978201641,7.182480773921695,0.6027810185185185,2.7224807739216943,0.06332380371003254,4.46,4.46,0.0,-0.0,6.765,1679.9465,2.7224808 -10.290064966747849,0.04007800134082875,10.290064966747849,3.1420620500238217,0.6039996527777778,0.10206205025969353,0.040914115902002,3.04,3.0399999997641283,2.358717132722177e-10,-0.0,0.23499999999999988,1674.5267,1.0278703 -9.363716793476913,0.051415305031814344,9.363716793476913,4.50868262005475,0.6063304398148148,0.38868262005475024,0.05266512739748738,4.12,4.12,0.0,-0.0,3.8899999999999997,1668.893,0.39608577 -8.375538429515943,0.06099999850906174,8.375538429515943,0.13120275465386141,0.6079995370370371,0.13120275465386141,0.06273317156864057,0.0,0.0,0.0,-0.0,6.49,1662.2325,0.15817894 -7.348759479457863,0.06542559682123993,7.348759479457863,0.05064706838166868,0.6098476851851852,0.05064706838166868,0.0676021589986437,0.0,0.0,0.0,-0.0,7.59,1654.4221,0.074653976 -6.539747578632033,0.07548257468565957,6.539747578632033,0.023570067380059834,0.6120002314814815,0.023570067380059834,0.07832346180282196,0.0,0.0,0.0,-0.0,9.825000000000001,1647.4568,0.039455775 -5.983350894075291,0.07801318855887523,5.983350894075291,1.9922735795286957,0.6133524305555556,0.012273579528695658,0.0812110830871071,1.98,1.98,0.0,-0.0,10.36,1642.1466,0.022112302 -5.6650919041746,0.08479388597899694,5.6650919041746,3.376780474349554,0.6159914351851852,0.0067804743495538545,0.08844553965396741,3.37,3.37,0.0,-0.0,11.645,1638.8824,0.012749322 -5.290577866448904,0.09654778533739346,5.290577866448904,0.0038416856273890947,0.6162851851851852,0.0038416856273890947,0.10095723759430994,0.0,0.0,0.0,-0.0,13.765,1634.7979,0.0074090282 -4.854003720760784,0.08342818726849789,4.854003720760784,0.002209072469453983,0.6195356481481481,0.002209072469453983,0.0875137828896763,0.0,0.0,0.0,-0.0,11.385,1629.6545,0.0043246467 -4.613934704986523,0.0719467591120664,4.613934704986523,3.611270994194376,0.6199998842592592,0.0012709941943761607,0.07561063685129106,3.61,3.61,0.0,-0.0,9.07,1626.6254,0.0025104776 -4.703049760286824,0.0677904388344625,4.703049760286824,7.690746597327588,0.6227818287037037,0.0007465973275877415,0.07119265462316353,7.69,7.69,0.0,-0.0,8.065,1627.7678,0.0014822101 -4.951650744563882,0.06433808748695458,4.951650744563882,9.12044194215656,0.6240006944444445,0.0004419421565612196,0.06743959123850106,9.12,9.12,0.0,-0.0,7.2,1630.844,0.00088001223 -5.039268418575237,0.0714146734802538,5.039268418575237,3.7502534504890335,0.6253526620370371,0.00025345048903341777,0.07480926381908516,3.75,3.75,0.0,-0.0,8.77,1631.8915,0.0005056227 -4.838510833972323,0.07301283383274117,4.838510833972323,0.6901494614892666,0.6278895833333333,0.00014946148926659836,0.07659734851788928,0.69,0.69,0.0,-0.0,9.075,1629.4636,0.00029847753 -4.624944446885074,0.08032149893867815,4.624944446885074,3.290085049881784,0.6280518518518519,8.504988178398358e-5,0.08440447341408915,3.29,3.29,0.0,-0.0,10.594999999999999,1626.7677,0.00016995534 -4.5872936953981895,0.08894917701304167,4.5872936953981895,5.180050181777864,0.6303303240740741,5.018177786468898e-5,0.09349877839892716,5.18,5.18,0.0,-0.0,12.165,1626.2795,0.00010031324 -4.650397074056929,0.08404151303801223,4.650397074056929,5.890028714545394,0.6319916666666667,2.8714545393673108e-5,0.08829579689797153,5.89,5.89,0.0,-0.0,11.21,1627.0955,5.741261e-5 -4.672301876410323,0.08823108014460447,4.672301876410323,5.230016489021121,0.6322856481481481,1.6489021120550236e-5,0.09268145940281097,5.23,5.23,0.0,-0.0,11.975,1627.3761,3.2972606e-5 -4.538264727091912,0.07904442682375354,4.538264727091912,1.540008185521058,0.6347809027777778,8.185521057838819e-6,0.08312021574754465,1.54,1.54,0.0,-0.0,10.185,1625.6378,1.6369702e-5 -4.28706281212771,0.07800763311199291,4.28706281212771,4.343792573948043e-6,0.6360001157407408,4.343792573948043e-6,0.08220191788616088,0.0,0.0,0.0,-0.0,9.98,1622.2372,8.687208e-6 -4.177931501788975,0.08454547137321015,4.177931501788975,0.8100017595772678,0.6362856481481481,1.759577267798957e-6,0.08917593086181108,0.81,0.81,0.0,-0.0,11.26,1620.6973,3.5190926e-6 -4.2656560205881595,0.0849955008764553,4.2656560205881595,2.81999963722619,0.6387810185185185,-3.627738094374014e-7,0.08958201508188275,2.82,2.82,0.0,-0.0,11.27,1621.9382,-7.2555025e-7 -4.535890590669807,0.08730180384080934,4.535890590669807,15.76999856903652,0.6399917824074074,-1.4309634799560926e-6,0.09180513489516229,15.77,15.77,0.0,-0.0,11.63,1625.6066,-2.861968e-6 -4.901612180137497,0.08164217074644024,4.901612180137497,6.779998933500371,0.6400512731481481,-1.0664996294981688e-6,0.08560968223418579,6.78,6.78,0.0,-0.0,10.52,1630.2374,-2.133022e-6 -4.782259045858091,0.09225408849070933,4.782259045858091,0.3499994441547161,0.6418483796296296,-5.558452838771272e-7,0.09682473695839787,0.35,0.35,0.0,-0.0,12.435,1628.7653,-1.1116967e-6 -4.433083924551695,0.1323853076294574,4.433083924551695,-2.650498993926277e-7,0.6435354166666667,-2.650498993926277e-7,0.139331552532365,0.0,0.0,0.0,-0.0,18.375,1624.2374,-5.301012e-7 -4.27494331711201,0.15297899708293045,4.27494331711201,3.6699998450163176,0.6439998842592592,-1.5498368238434363e-7,0.16122111591428584,3.67,3.67,0.0,-0.0,20.845,1622.0681,-3.0996785e-7 -4.442517807614482,0.12721507795310413,4.442517807614482,10.24999991144427,0.6442856481481481,-8.855572959860758e-8,0.13387957712832052,10.25,10.25,0.0,-0.0,17.685000000000002,1624.3644,-1.7711162e-7 -4.588925516445229,0.09091271751501633,4.588925516445229,0.5299999515031903,0.6458482638888889,-4.849680969652134e-8,0.09556150261464931,0.53,0.53,0.0,-0.0,12.125,1626.3008,-9.6993666e-8 -4.386124503701704,0.08770078251884778,4.386124503701704,0.009999982548290083,0.6471538194444444,-1.7451709918011383e-8,0.09233859059726322,0.01,0.01,0.0,-0.0,11.545,1623.6014,-3.4903426e-8 -4.0899205395817075,0.07727036194804952,4.0899205395817075,1.279999998638376,0.6479927083333333,-1.3616239061825242e-9,0.08156636314828344,1.28,1.28,0.0,-0.0,9.565,1619.4258,-2.7232478e-9 -3.857230629547672,0.1096774172232764,3.857230629547672,-2.5620791533758616e-10,0.6480521990740741,-2.5620791533758616e-10,0.11602578453478951,0.0,0.0,0.0,-0.0,15.215,1615.9276,-5.1241583e-10 -3.6192594529789734,0.10041660798502851,3.6192594529789734,-1.4408768601925546e-10,0.6487947916666666,-1.4408768601925546e-10,0.10647953204801935,0.0,0.0,0.0,-0.0,13.795,1612.1246,-2.8817537e-10 -3.4194434773021767,0.08159151420264903,3.4194434773021767,-8.0539269633e-11,0.6498487268518519,-8.0539269633e-11,0.08670022302656635,0.0,0.0,0.0,-0.0,10.479999999999999,1608.733,-1.6107854e-10 -3.325457701789593,0.08566352310192799,3.325457701789593,-2.696303943278324e-11,0.6507814814814814,-2.696303943278324e-11,0.09112146975552185,0.0,0.0,0.0,-0.0,11.245000000000001,1607.0686,-5.392608e-11 -3.397559842592456,0.09769674015398751,3.397559842592456,8.270000000008489,0.6515357638888889,8.488640346914246e-12,0.10383859803387266,8.27,8.27,0.0,-0.0,13.32,1608.3496,1.697728e-11 -3.711892858623331,0.0957145322736197,3.711892858623331,11.370000000014524,0.6519921296296297,1.4525662792753107e-11,0.10139862602159035,11.37,11.37,0.0,-0.0,12.925,1613.6339,2.9051326e-11 -3.795064452927211,0.10037576344805522,3.795064452927211,7.990534450025397e-12,0.6520001157407407,7.990534450025397e-12,0.10624953184833244,0.0,0.0,0.0,-0.0,13.68,1614.9573,1.5981069e-11 -3.564220092590928,0.10656154401101217,3.564220092590928,3.822788006431908e-12,0.6520517361111111,3.822788006431908e-12,0.11305966621752621,0.0,0.0,0.0,-0.0,14.69,1611.2095,7.645576e-12 -3.340814323344383,0.10031682096005538,3.340814323344383,2.1462096423441205e-12,0.6522856481481482,2.1462096423441205e-12,0.10669011814053438,0.0,0.0,0.0,-0.0,13.74,1607.3438,4.2924193e-12 -3.1492048474103873,0.10229389036848054,3.1492048474103873,1.187881932589407e-12,0.6527943287037037,1.187881932589407e-12,0.10903206687258657,0.0,0.0,0.0,-0.0,14.08,1603.8164,2.3757639e-12 -3.0350703980756375,0.12238089633244419,3.0350703980756375,2.0600000000006795,0.653352662037037,6.795070148964509e-13,0.1306217705926345,2.06,2.06,0.0,-0.0,17.04,1601.6118,1.359014e-12 -2.97428212249098,0.13761188425698226,2.97428212249098,4.260000000000323,0.653848611111111,3.236239672521689e-13,0.14698926980857369,4.26,4.26,0.0,-0.0,19.009999999999998,1600.4036,6.4724793e-13 -2.9065487180348617,0.17553174155037227,2.9065487180348617,8.988951483122303e-14,0.653848611111111,8.988951483122303e-14,0.18765443794323705,0.0,0.0,0.0,-0.0,23.215,1599.0278,1.7977903e-13 -2.7864010050291004,0.11263424540650825,2.7864010050291004,2.5119551485539425e-14,0.653848611111111,2.5119551485539425e-14,0.12060322064664132,0.0,0.0,0.0,-0.0,15.705,1596.5067,5.0239103e-14 -2.6575446855768003,0.08908162452530527,2.6575446855768003,1.2935714375748109e-14,0.6543310185185185,1.2935714375748109e-14,0.09555346899035277,0.0,0.0,0.0,-0.0,11.915,1593.6791,2.5871429e-14 -2.5401398285568697,0.1117152817151507,2.5401398285568697,5.195502316264964e-15,0.6543310185185185,5.195502316264964e-15,0.12003471652702634,0.0,0.0,0.0,-0.0,15.615,1590.9807,1.0391005e-14 -2.433013848700631,0.13006309813088582,2.433013848700631,2.3553754331326633e-15,0.653848611111111,2.3553754331326633e-15,0.1399752896191357,0.0,0.0,0.0,-0.0,18.185000000000002,1588.4075,4.710751e-15 -2.3415980239149907,0.17076178753420584,2.3415980239149907,-1.120281329115552e-15,0.653848611111111,-1.120281329115552e-15,0.18404064770785045,0.0,0.0,0.0,-0.0,22.875,1586.1204,-2.2405627e-15 -2.262626793348055,0.1717829077242027,2.262626793348055,4.5499999999999945,0.653352662037037,-5.442970191584794e-15,0.18538063316122447,4.55,4.55,0.0,-0.0,23.015,1584.0715,-1.088594e-14 -2.1917777872404276,0.14000746083715374,2.1917777872404276,0.5199999999999904,0.653352662037037,-9.60953711758933e-15,0.15127138639204063,0.52,0.52,0.0,-0.0,19.51,1582.1716,-1.9219074e-14 -2.125253102624507,0.10502304692373413,2.125253102624507,-1.2616830188026122e-14,0.6527943287037037,-1.2616830188026122e-14,0.11360456261861225,0.0,0.0,0.0,-0.0,14.75,1580.3309,-2.523366e-14 -2.0597074070049985,0.12905467342199453,2.0597074070049985,-1.3461695577968178e-14,0.6522856481481482,-1.3461695577968178e-14,0.1397652911171935,0.0,0.0,0.0,-0.0,18.2,1578.4601,-2.6923391e-14 -1.9921844861429994,0.1468102516910974,1.9921844861429994,-1.1140980309521315e-14,0.6520517361111111,-1.1140980309521315e-14,0.1591952173300037,0.0,0.0,0.0,-0.0,20.415,1576.4695,-2.228196e-14 -1.9709927471078257,0.1435537440192478,1.9709927471078257,-6.470500777701179e-15,0.6519921296296297,-6.470500777701179e-15,0.15572707889435813,0.0,0.0,0.0,-0.0,20.04,1575.8308,-1.29410016e-14 -2.0796456118616167,0.1406106876991006,2.0796456118616167,8.079999999999997,0.6518894675925926,-3.0196893976204347e-15,0.1522248892295193,8.08,8.08,0.0,-0.0,19.655,1579.0354,-6.039379e-15 -2.2929829783056106,0.14769062970206226,2.2929829783056106,9.139999999999999,0.6511538194444445,-1.3688195364439155e-15,0.15930125682191784,9.14,9.14,0.0,-0.0,20.45,1584.8674,-2.737639e-15 -2.3969693579757845,0.1257958612684646,2.3969693579757845,-7.451942818850287e-16,0.6503311342592593,-7.451942818850287e-16,0.13545885858274176,0.0,0.0,0.0,-0.0,17.725,1587.5161,-1.4903886e-15 -2.3201298776923145,0.12252506041153821,2.3201298776923145,-3.1486697514768884e-16,0.6493528935185184,-3.1486697514768884e-16,0.13209872339486328,0.0,0.0,0.0,-0.0,17.33,1585.5703,-6.2973395e-16 -2.2150716865855014,0.1431595143118677,2.2150716865855014,-1.4314942835381362e-16,0.6482863425925927,-1.4314942835381362e-16,0.15461533239720054,0.0,0.0,0.0,-0.0,20.015,1582.803,-2.8629886e-16 -2.12711754035135,0.1796396152702787,2.12711754035135,-8.064571574050625e-17,0.6480008101851852,-8.064571574050625e-17,0.19431167040447347,0.0,0.0,0.0,-0.0,23.985,1580.3833,-1.6129143e-16 -2.081031860530411,0.18012352724799668,2.081031860530411,1.97,0.647890162037037,-4.4431765066547e-17,0.19499650721434084,1.97,1.97,0.0,-0.0,24.049999999999997,1579.0752,-8.886353e-17 -2.2101194033667495,0.16200040779430164,2.2101194033667495,9.38,0.64678125,-2.5651671506102333e-17,0.17497867654481258,9.38,9.38,0.0,-0.0,22.185000000000002,1582.6693,-5.1303343e-17 -2.4658021668794388,0.12722066007747296,2.4658021668794388,8.67,0.645352199074074,-1.4045382871723823e-17,0.13684735288324698,8.67,8.67,0.0,-0.0,18.025,1589.2069,-2.8090766e-17 -2.559240509917122,0.11958413213927126,2.559240509917122,1.28,0.6440515046296297,-8.333099381739842e-18,0.12845343866268735,1.28,1.28,0.0,-0.0,17.0,1591.4281,-1.6666199e-17 -2.471292006210748,0.11241243482688842,2.471292006210748,-4.932814241572707e-18,0.6438894675925926,-4.932814241572707e-18,0.12090849572091834,0.0,0.0,0.0,-0.0,16.0,1589.3397,-9.8656285e-18 -2.3685747799953982,0.12076301278755024,2.3685747799953982,-2.8577348948517682e-18,0.6427809027777778,-2.8577348948517682e-18,0.1300977340202152,0.0,0.0,0.0,-0.0,17.244999999999997,1586.8044,-5.7154698e-18 -2.2988397591138416,0.13865977053252743,2.2988397591138416,1.41,0.6407940972222222,-1.6582478366117123e-18,0.14954606608348783,1.41,1.41,0.0,-0.0,19.645,1585.0198,-3.3164957e-18 -2.2476916246431964,0.16328934795536357,2.2476916246431964,1.34,0.6399997685185186,-9.02947461530741e-19,0.1762587612738615,1.34,1.34,0.0,-0.0,22.494999999999997,1583.676,-1.805895e-18 -2.1850500895408773,0.14194195211209523,2.1850500895408773,-4.293646664072942e-19,0.6395354166666667,-4.293646664072942e-19,0.15337930998010946,0.0,0.0,0.0,-0.0,20.11,1581.988,-8.5872933e-19 -2.124032760049619,0.1115983311902148,2.124032760049619,-2.359360023354641e-19,0.6378482638888888,-2.359360023354641e-19,0.12071973880307979,0.0,0.0,0.0,-0.0,16.13,1580.2966,-4.71872e-19 -2.1380675896391956,0.11447027130892297,2.1380675896391956,3.06,0.6360001157407408,-9.541087633629048e-20,0.12379560409234291,3.06,3.06,0.0,-0.0,16.595,1580.69,-1.9082175e-19 -2.1946828042591946,0.10522136442385388,2.1946828042591946,4.46,0.6355359953703703,-6.339275934988072e-21,0.11368098414615048,4.46,4.46,0.0,-0.0,15.2,1582.2507,-1.2678552e-20 -2.2657924380047056,0.12021011625680654,2.2657924380047056,3.41,0.6338483796296296,9.401347101365578e-21,0.12971868507139542,3.41,3.41,0.0,-0.0,17.43,1584.155,1.8802694e-20 -2.5018024913092294,0.12484195261664628,2.5018024913092294,10.25,0.6319996527777777,5.08177763087099e-21,0.13421554660176524,10.25,10.25,0.0,-0.0,18.05,1590.0725,1.0163555e-20 -2.823715063968891,0.13506672546411383,2.823715063968891,10.31,0.6315355324074073,2.5487609656937786e-21,0.14455088946228714,10.31,10.31,0.0,-0.0,19.315,1597.3011,5.097522e-21 -3.116851939935367,0.12553272537024135,3.116851939935367,1.4817059524618465e-21,0.6287943287037038,1.4817059524618465e-21,0.13385313082704184,0.0,0.0,0.0,-0.0,18.09,1603.1997,2.963412e-21 -3.663021642584414,0.1455467588293568,3.663021642584414,23.72,0.628,8.146998990211195e-22,0.1542658532312771,23.72,23.72,0.0,-0.0,20.52,1612.8424,1.6293998e-21 -4.541828261896775,0.15344028605492913,4.541828261896775,14.67,0.6267813657407407,4.793448540872378e-22,0.16134751613911588,14.67,14.67,0.0,-0.0,21.325000000000003,1625.6847,9.586897e-22 -4.720009153125658,0.14744402350093497,4.720009153125658,2.7616041197548605e-22,0.624052199074074,2.7616041197548605e-22,0.15482338751623645,0.0,0.0,0.0,-0.0,20.689999999999998,1627.9828,5.523208e-22 -4.614660954491254,0.1522026151972077,4.614660954491254,8.07,0.6238902777777778,1.6261658217405184e-22,0.15995258589023378,8.07,8.07,0.0,-0.0,21.255000000000003,1626.6348,3.2523316e-22 -4.5925288310992105,0.14949865009175442,4.5925288310992105,1.21,0.6207944444444444,9.184135753104136e-23,0.15713867397592615,1.21,1.21,0.0,-0.0,21.035,1626.3477,1.8368272e-22 -4.313379469900625,0.138556564526707,4.313379469900625,5.443387632804859e-23,0.6199998842592592,5.443387632804859e-23,0.14597353443595174,0.0,0.0,0.0,-0.0,19.795,1622.6027,1.0886775e-22 -4.215797011537227,0.14113510251690253,4.215797011537227,6.15,0.6183303240740741,3.1880040125192255e-23,0.14881543655735616,6.15,6.15,0.0,-0.0,20.17,1621.2361,6.376008e-23 -4.112739782662169,0.12712348369690343,4.112739782662169,0.08,0.615999537037037,1.860505567997505e-23,0.13416364165000697,0.08,0.08,0.0,-0.0,18.475,1619.758,3.721011e-23 -3.8359153082229964,0.13326611327318244,3.8359153082229964,1.0715954378560073e-23,0.6151532407407407,1.0715954378560073e-23,0.14100872335609446,0.0,0.0,0.0,-0.0,19.34,1615.5967,2.1431909e-23 -3.6294236352909506,0.1656600352648318,3.6294236352909506,1.15,0.6120002314814815,6.251572001443621e-24,0.175643960250414,1.15,1.15,0.0,-0.0,23.215,1612.2921,1.2503144e-23 -3.5367512107128323,0.12801584414803535,3.5367512107128323,3.19,0.6115356481481482,3.625413421626254e-24,0.13586120946789293,3.19,3.19,0.0,-0.0,18.810000000000002,1610.7474,7.250827e-24 -3.607567482848032,0.1093374500749515,3.607567482848032,1.36,0.6080510416666667,1.9695563190286735e-24,0.11595289277836843,1.36,1.36,0.0,-0.0,16.255000000000003,1611.9314,3.9391126e-24 -3.7371453082814265,0.11437027260164279,3.7371453082814265,8.23,0.6078891203703704,8.825074707483165e-25,0.12113185882738739,8.23,8.23,0.0,-0.0,16.985,1614.0388,1.765015e-24 -3.7436669537168386,0.11956076797552691,3.7436669537168386,0.71,0.6042853009259259,4.667807812290444e-25,0.12662104833702198,0.71,0.71,0.0,-0.0,17.825,1614.143,9.335616e-25 -3.5557063470050925,0.11352993492758481,3.5557063470050925,2.684516833256194e-25,0.6039916666666666,2.684516833256194e-25,0.12046366781109706,0.0,0.0,0.0,-0.0,17.0,1611.0667,5.3690337e-25 -3.3465417279688787,0.11281648656757334,3.3465417279688787,1.577593867063958e-25,0.6002854166666667,1.577593867063958e-25,0.11997627307354565,0.0,0.0,0.0,-0.0,17.035,1607.446,3.1551877e-25 -3.162790605594349,0.12401152981048344,3.162790605594349,8.614101007433759e-26,0.5999998842592592,8.614101007433759e-26,0.13215907963593576,0.0,0.0,0.0,-0.0,18.665,1604.0735,1.7228202e-25 -2.999129114810469,0.13894405870911952,2.999129114810469,4.7173275079098035e-26,0.5962851851851851,4.7173275079098035e-26,0.1483661650781297,0.0,0.0,0.0,-0.0,20.740000000000002,1600.9004,9.434655e-26 -2.88917559130496,0.14662924814777897,2.88917559130496,-2.224609130545636e-27,0.5959997685185184,-2.224609130545636e-27,0.15679096671370932,0.0,0.0,0.0,-0.0,21.7,1598.6698,-4.4492183e-27 -2.8365749436466263,0.14501205738089903,2.8365749436466263,-6.765549689682553e-26,0.5920523148148148,-6.765549689682553e-26,0.15516820506254048,0.0,0.0,0.0,-0.0,21.634999999999998,1597.5725,-1.3531099e-25 -2.831390411068131,0.14348488468391726,2.831390411068131,9.64,0.591992824074074,-1.3336758564983253e-25,0.15354457484972256,9.64,9.64,0.0,-0.0,21.455,1597.4633,-2.6673517e-25 -2.866387671334771,0.11467517046616188,2.866387671334771,6.46,0.5880002314814815,-1.8360906434556574e-25,0.12265868703177528,6.46,6.46,0.0,-0.0,17.75,1598.1969,-3.6721813e-25 -2.9359204189589896,0.1098697246529847,2.9359204189589896,-2.026281556437983e-25,0.5879922453703703,-2.026281556437983e-25,0.11741353382197646,0.0,0.0,0.0,-0.0,17.02,1599.6283,-4.052563e-25 -3.0350952134046727,0.1140704418853404,3.0350952134046727,6.07,0.5840005787037037,-1.7467303290049678e-25,0.12175167036123635,6.07,6.07,0.0,-0.0,17.740000000000002,1601.6123,-3.4934607e-25 -3.10564013067309,0.1445338686607669,3.10564013067309,4.32,0.5835359953703704,-1.0209538291876234e-25,0.15413437514478576,4.32,4.32,0.0,-0.0,21.770000000000003,1602.9845,-2.0419077e-25 -3.023973512029814,0.12576169046961932,3.023973512029814,-3.739424098621145e-26,0.5800003472222222,-3.739424098621145e-26,0.1342485561778827,0.0,0.0,0.0,-0.0,19.505,1601.3931,-7.478848e-26 -2.869723388927821,0.10422495924651205,2.869723388927821,2.999657458798497e-27,0.5787818287037036,2.999657458798497e-27,0.11147610271248871,0.0,0.0,0.0,-0.0,16.419999999999998,1598.2664,5.999315e-27 -2.7260927227620724,0.08922475897391294,2.7260927227620724,8.304622246149405e-27,0.5760005787037037,8.304622246149405e-27,0.09561575458087612,0.0,0.0,0.0,-0.0,13.979999999999999,1595.2,1.6609244e-26 -2.6012532952031173,0.11034997680133961,2.6012532952031173,4.109477670739553e-27,0.5738478009259259,4.109477670739553e-27,0.11846202123406271,0.0,0.0,0.0,-0.0,17.575,1592.4005,8.218955e-27 -2.48700621296426,0.14469689144450115,2.48700621296426,1.3286574685459553e-27,0.5719994212962963,1.3286574685459553e-27,0.15559593223055215,0.0,0.0,0.0,-0.0,22.28,1589.7183,2.657315e-27 -2.3848054650778625,0.11247566982491128,2.3848054650778625,0.08,0.5680513888888888,4.5603835152602865e-28,0.12113866247845176,0.08,0.08,0.0,-0.0,18.12,1587.2123,9.120767e-28 -2.3000994151016956,0.08910727247440749,2.3000994151016956,7.44,0.5679997685185185,-1.0978673370013295e-28,0.09610117607238261,7.44,7.44,0.0,-0.0,14.29,1585.0525,-2.1957347e-28 -2.2298311269818094,0.09007179974812164,2.2298311269818094,10.65,0.5639996527777777,-8.860331227860865e-28,0.09725509764083205,10.65,10.65,0.0,-0.0,14.600000000000001,1583.1996,-1.7720662e-27 -2.1688751416344916,0.08157839177088809,2.1688751416344916,1.06,0.5639916666666667,-1.6964236136694143e-27,0.0881765242887179,1.06,1.06,0.0,-0.0,13.01,1581.5443,-3.3928472e-27 -2.1126924672824754,0.08271971745944924,2.1126924672824754,-2.364680859842953e-27,0.56,-2.364680859842953e-27,0.08949885887518177,0.0,0.0,0.0,-0.0,13.365,1579.9769,-4.7293617e-27 -2.0572207251780794,0.09040302967633262,2.0572207251780794,0.43,0.558330324074074,-2.7145277675778444e-27,0.09791031153160193,0.43,0.43,0.0,-0.0,14.875,1578.388,-5.4290555e-27 -1.9988126599768938,0.07476963850373776,1.9988126599768938,-2.5696870505522357e-27,0.5560002314814815,-2.5696870505522357e-27,0.08106703158623456,0.0,0.0,0.0,-0.0,11.89,1576.6678,-5.139374e-27 -1.9366320809510829,0.08961890472775728,1.9366320809510829,-1.775259052233978e-27,0.5520519675925926,-1.775259052233978e-27,0.09728341323063136,0.0,0.0,0.0,-0.0,14.955,1574.7805,-3.550518e-27 -1.9163328672271052,0.08859514722458259,1.9163328672271052,2.81,0.5520004629629629,-7.603882939609312e-28,0.09621054569463222,2.81,2.81,0.0,-0.0,14.775,1574.1512,-1.5207766e-27 -1.9348713251277934,0.07497330262268292,1.9348713251277934,0.92,0.5479999999999999,7.484842654194195e-29,0.08138807768696538,0.92,0.92,0.0,-0.0,12.185,1574.7262,1.4969685e-28 -1.9651476009241298,0.08522295851608985,1.9651476009241298,5.57,0.5479921296296296,5.03106683067643e-28,0.09246025886625323,5.57,5.57,0.0,-0.0,14.245000000000001,1575.6534,1.0062134e-27 -1.975368834045684,0.07046511959633393,1.975368834045684,3.742741272209109e-28,0.5439997685185185,3.742741272209109e-28,0.076434126458689,0.0,0.0,0.0,-0.0,11.299999999999999,1575.9633,7.4854825e-28 -1.932428705792273,0.06913747867526426,1.932428705792273,1.4722265903257823e-28,0.540794212962963,1.4722265903257823e-28,0.07505653171516055,0.0,0.0,0.0,-0.0,11.105,1574.6508,2.9444532e-28 -1.87095512705473,0.07959571353768385,1.87095512705473,-2.0588898282901006e-29,0.54,-2.0588898282901006e-29,0.08651620201140242,0.0,0.0,0.0,-0.0,13.405000000000001,1572.7201,-4.1177797e-29 -1.8323585062738426,0.08848704156583789,1.8323585062738426,1.41,0.5359994212962963,-8.057422228513628e-29,0.09625678215645338,1.41,1.41,0.0,-0.0,15.265,1571.4752,-1.6114844e-28 -1.8705268535717594,0.07588510387157141,1.8705268535717594,3.74,0.5359994212962963,-4.7482526850279143e-29,0.0824836886044952,3.74,3.74,0.0,-0.0,12.755,1572.7064,-9.4965054e-29 -2.013188412910508,0.07420129579663447,2.013188412910508,8.14,0.5319998842592593,-2.1612510488116824e-29,0.08042898877823179,8.14,8.14,0.0,-0.0,12.469999999999999,1577.0958,-4.322502e-29 -2.2299131700645622,0.0575807087058392,2.2299131700645622,8.77,0.5298482638888888,-9.325674029819189e-30,0.06217272987797661,8.77,8.77,0.0,-0.0,8.469999999999999,1583.2018,-1.8651348e-29 -2.3445386700980047,0.05750685032833794,2.3445386700980047,0.01,0.5279998842592593,-4.962193860583786e-30,0.06197579702640412,0.01,0.01,0.0,-0.0,8.475,1586.1953,-9.924388e-30 -2.2889463844968776,0.058995369151591925,2.2889463844968776,-1.7418332350371596e-30,0.5240002314814816,-1.7418332350371596e-30,0.06363748654702198,0.0,0.0,0.0,-0.0,9.005,1584.7622,-3.4836665e-30 -2.1861312089977485,0.051849519732879844,2.1861312089977485,-3.1377748123166115e-31,0.5240002314814816,-3.1377748123166115e-31,0.05602638924839305,0.0,0.0,0.0,-0.0,7.034999999999999,1582.0176,-6.2755496e-31 -2.1092922842899964,0.06780049841044239,2.1092922842899964,-1.7633862295880175e-31,0.520000462962963,-1.7633862295880175e-31,0.07336142918480841,0.0,0.0,0.0,-0.0,11.365,1579.8807,-3.5267725e-31 -2.0670080421591774,0.08926082331624138,2.0670080421591774,1.83,0.5183310185185186,-8.941028086556396e-32,0.0966558961602958,1.83,1.83,0.0,-0.0,15.885,1578.6714,-1.7882056e-31 -2.0750342763553755,0.08571836318034881,2.0750342763553755,4.06,0.5159998842592592,-4.950312339843866e-32,0.0928063444777693,4.06,4.06,0.0,-0.0,15.290000000000001,1578.9028,-9.900625e-32 -2.0441970573682036,0.05767523523447709,2.0441970573682036,4.2,0.511999537037037,-2.0974179663145022e-32,0.0624797367889115,4.2,4.2,0.0,-0.0,9.08,1578.0087,-4.194836e-32 -2.012476637070665,0.050784325559064765,2.012476637070665,-1.5060855147662513e-33,0.511999537037037,-1.5060855147662513e-33,0.05504737621447953,0.0,0.0,0.0,-0.0,7.12,1577.0747,-3.012171e-33 -2.0417291011643712,0.06149869462573959,2.0417291011643712,4.61,0.5079996527777778,3.552231154195671e-33,0.06662474654371349,4.61,4.61,0.0,-0.0,10.209999999999999,1577.9365,7.104462e-33 -2.1303113048086155,0.060770318899196075,2.1303113048086155,8.01,0.5067805555555556,1.954032157224558e-33,0.06573000460913796,8.01,8.01,0.0,-0.0,10.035,1580.4729,3.9080643e-33 -2.181711826655781,0.05144863778851043,2.181711826655781,9.248939244128496e-34,0.503999537037037,9.248939244128496e-34,0.055597460307565,0.0,0.0,0.0,-0.0,7.515000000000001,1581.8967,1.8497878e-33 -2.1185737015762154,0.056093173062463766,2.1185737015762154,5.09309054692413e-34,0.4999997685185186,5.09309054692413e-34,0.06068380895642819,0.0,0.0,0.0,-0.0,8.995000000000001,1580.143,1.0186181e-33 -2.043365720554041,0.06163591568622109,2.043365720554041,2.57847739383116e-34,0.4999997685185186,2.57847739383116e-34,0.0667713804133339,0.0,0.0,0.0,-0.0,10.495,1577.9844,5.156955e-34 -2.036219344377038,0.06901612681336484,2.036219344377038,4.04,0.4959997685185185,1.1740616022878526e-34,0.07477642074450801,4.04,4.04,0.0,-0.0,12.425,1577.7751,2.3481232e-34 -2.076867393776592,0.05984031777317625,2.076867393776592,4.8,0.49366840277777774,6.601486160637362e-35,0.06478630085283665,4.8,4.8,0.0,-0.0,10.22,1578.9556,1.3202972e-34 -2.0557284765567507,0.04278308931802855,2.0557284765567507,3.031122386190658e-35,0.4919994212962963,3.031122386190658e-35,0.046337170654797116,0.0,0.0,0.0,-0.0,5.1049999999999995,1578.3446,6.062245e-35 -1.9966606795496775,0.04619564185966017,1.9966606795496775,1.3749042252641967e-35,0.48800034722222224,1.3749042252641967e-35,0.050088464245676804,0.0,0.0,0.0,-0.0,6.41,1576.6035,2.7498085e-35 -1.986905898356341,0.047925282316402744,1.986905898356341,0.77,0.48800034722222224,6.918895607585636e-36,0.05197350010598545,0.77,0.77,0.0,-0.0,6.975,1576.311,1.3837791e-35 -2.03371529217943,0.05626384606598018,2.03371529217943,4.59,0.4840002314814815,1.580872015089563e-36,0.0609626356064231,4.59,4.59,0.0,-0.0,9.575,1577.7017,3.161744e-36 -2.076167053698658,0.04778563884274374,2.076167053698658,2.84,0.48167002314814816,-1.0101843592869866e-36,0.051735926241977134,2.84,2.84,0.0,-0.0,7.1049999999999995,1578.9354,-2.0203687e-36 -2.0599221345931915,0.0408793939279267,2.0599221345931915,-7.244608579745804e-37,0.4800005787037037,-7.244608579745804e-37,0.044271917529158926,0.0,0.0,0.0,-0.0,4.790000000000001,1578.4663,-1.4489217e-36 -1.9994010807591052,0.052384995609787634,1.9994010807591052,-3.6329108861051924e-37,0.4760001157407408,-3.6329108861051924e-37,0.056796432793162384,0.0,0.0,0.0,-0.0,8.73,1576.6854,-7.2658218e-37 -1.9300680712014684,0.06285387525634278,1.9300680712014684,-1.83179506497799e-37,0.4760001157407408,-1.83179506497799e-37,0.06823813482226704,0.0,0.0,0.0,-0.0,11.62,1574.5778,-3.6635901e-37 -1.8638477992008093,0.060621459052581754,1.8638477992008093,-9.168023789333788e-38,0.4719996527777777,-9.168023789333788e-38,0.06590174598217119,0.0,0.0,0.0,-0.0,11.200000000000001,1572.4928,-1.8336048e-37 -1.8095349558408091,0.06136851926593596,1.8095349558408091,-2.0366994564824084e-38,0.4701513888888889,-2.0366994564824084e-38,0.0667888896673913,0.0,0.0,0.0,-0.0,11.475,1570.7267,-4.073399e-38 -1.7851739278459584,0.04839042134324592,1.7851739278459584,2.36,0.46799976851851854,1.389396115428535e-38,0.05269165588574594,2.36,2.36,0.0,-0.0,7.83,1569.9172,2.7787922e-38 -1.8048657541092021,0.047702318727677225,1.8048657541092021,1.95,0.463999537037037,9.514451534515551e-39,0.05192072318916141,1.95,1.95,0.0,-0.0,7.735,1570.5724,1.9028903e-38 -1.8727840396539888,0.042639276941537275,1.8727840396539888,3.79,0.463999537037037,3.508018282732301e-39,0.04634485040939099,3.79,3.79,0.0,-0.0,5.995,1572.7784,7.016037e-39 -2.003397929471544,0.047694634142227396,2.003397929471544,8.29,0.46,-2.1266105494593424e-40,0.05170717612470676,8.29,8.29,0.0,-0.0,7.805,1576.8047,-4.25322e-40 -2.2030111627429623,0.05687621881734108,2.2030111627429623,8.88,0.45920532407407405,-6.852251399655853e-40,0.06144018720579657,8.88,8.88,0.0,-0.0,10.525,1582.4769,-1.37045e-39 -2.2958719580068156,0.051493604558333295,2.2958719580068156,3.26,0.45599953703703705,-3.0620333263347308e-40,0.05553911417192293,3.26,3.26,0.0,-0.0,9.05,1584.9426,-6.12407e-40 -2.2954965602745587,0.051949271107214576,2.2954965602745587,1.47,0.45200810185185186,-3.0179064376931423e-41,0.05603092464183823,1.47,1.47,0.0,-0.0,9.325,1584.9329,-6.0358e-41 -2.302757295054417,0.048503171954105015,2.302757295054417,3.79,0.452,6.961020186456745e-41,0.0523078411678479,3.79,3.79,0.0,-0.0,8.254999999999999,1585.1215,1.3922e-40 -2.328210807483467,0.053799294584854954,2.328210807483467,3.72,0.4480001157407407,4.0853455428925717e-41,0.057995381061666594,3.72,3.72,0.0,-0.0,10.004999999999999,1585.778,8.1707e-41 -2.3021642983368813,0.057745454377427355,2.3021642983368813,2.1867963185020933e-41,0.4480001157407407,2.1867963185020933e-41,0.062275707823683316,0.0,0.0,0.0,-0.0,11.129999999999999,1585.1061,4.3736e-41 -2.3387184305676967,0.06563358179109145,2.3387184305676967,3.07,0.4440001157407408,1.2734299794551775e-41,0.07074068939272977,3.07,3.07,0.0,-0.0,13.315,1586.0469,2.5469e-41 -2.61188250166498,0.06306746250404366,2.61188250166498,11.92,0.44166932870370373,7.091270878715737e-42,0.06769332352800715,11.92,11.92,0.0,-0.0,12.690000000000001,1592.644,1.4183e-41 -2.792245029414678,0.04107411149836874,2.792245029414678,2.14,0.4400003472222222,4.176570072920117e-42,0.043976695661336634,2.14,2.14,0.0,-0.0,6.005,1596.6318,8.353e-42 -2.7534100911219523,0.03681944370092865,2.7534100911219523,1.74,0.43611064814814815,2.4950119157303368e-42,0.03944202571341024,1.74,1.74,0.0,-0.0,4.495,1595.7954,4.99e-42 -2.6645069146672844,0.037969612494296964,2.6645069146672844,0.08,0.43600011574074077,1.4650575444515962e-42,0.04072413956954073,0.08,0.08,0.0,-0.0,4.9799999999999995,1593.8353,2.93e-42 -2.5476848197243176,0.037845556920618285,2.5476848197243176,8.631998540240873e-43,0.43200000000000005,8.631998540240873e-43,0.040659388180014085,0.0,0.0,0.0,-0.0,5.095,1591.1578,1.726e-42 -2.428542102136504,0.03658786318809691,2.428542102136504,4.680336870844889e-43,0.43194837962962956,4.680336870844889e-43,0.039378971201580536,0.0,0.0,0.0,-0.0,4.615,1588.2976,9.36e-43 -2.4235088261573132,0.05024424397633148,2.4235088261573132,4.57,0.428,2.389213881673813e-43,0.054081348896686546,4.57,4.57,0.0,-0.0,9.625,1588.1737,4.78e-43 -2.7298621633634044,0.06119929333667576,2.7298621633634044,13.77,0.4261517361111111,1.4223179412896893e-43,0.06557948703497375,13.77,13.77,0.0,-0.0,12.755,1595.2825,2.84e-43 -2.937042846701335,0.04708390857260595,2.937042846701335,8.477855709165143e-44,0.42400011574074076,8.477855709165143e-44,0.05031603765287739,0.0,0.0,0.0,-0.0,8.645,1599.6511,1.7e-43 -2.8180182916830776,0.04275565033772861,2.8180182916830776,0.16,0.42121863425925926,5.114739394785582e-44,0.04576133724503899,0.16,0.16,0.0,-0.0,7.28,1597.1805,1.02e-43 -2.7056748560414845,0.046407167322965695,2.7056748560414845,0.57,0.41999976851851856,3.0127916982983567e-44,0.04974522324870493,0.57,0.57,0.0,-0.0,8.615,1594.751,6.0e-44 -2.599488627745222,0.03198604245669902,2.599488627745222,1.7516230804057204e-44,0.4164640046296296,1.7516230804057204e-44,0.034338273447501726,0.0,0.0,0.0,-0.0,3.115,1592.36,3.5e-44 -2.607076675310577,0.034782137922540084,2.607076675310577,7.69,0.4159996527777778,9.80908925027372e-45,0.03733591034523923,7.69,7.69,0.0,-0.0,4.38,1592.534,2.0e-44 -3.6274656297381234,0.04492187275835349,3.6274656297381234,37.54,0.4121109953703704,5.605193857299268e-45,0.047630156147448685,37.54,37.54,0.0,-0.0,8.235,1612.2599,1.1e-44 -5.6740964622625505,0.04482094895720911,5.6740964622625505,24.98,0.41200046296296294,2.802596928649634e-45,0.04674846023495774,24.98,24.98,0.0,-0.0,7.949999999999999,1638.9773,6.0e-45 -6.361207204469462,0.030516148657616936,6.361207204469462,0.0004914884644597671,0.4080084490740741,0.0004914884644597671,0.03169646909376896,0.0,0.0,0.0,-0.0,2.235,1645.8037,0.0009781927 -5.758690991216711,0.02283315529032003,5.758690991216711,-2.599716575781081e-9,0.40794895833333333,-2.599716575781081e-9,0.0238022532514803,0.0,0.0,0.0,-0.0,-1.905,1639.8611,0.0032609475 -5.250351517566732,0.02151755880319463,5.250351517566732,-4.8927362463764035e-12,0.40399999999999997,-4.8927362463764035e-12,0.02250656655027552,0.0,0.0,0.0,-0.0,-2.5599999999999996,1634.342,0.0034473378 -4.829223054088542,0.021581287748037237,4.829223054088542,0.17383579145516634,0.4037145833333334,-2.4009961412398536e-11,0.022642400642737343,7.35,0.1738357914791763,7.176164208520823,-0.0,-2.465,1629.3489,3.6212046 -5.192388721851458,0.027710162069146806,5.192388721851458,14.802845082467215,0.40000023148148145,2.7928450824672657,0.02899556126973289,12.01,12.00999999999995,4.933498054526808e-14,-0.0,1.2200000000000002,1633.6791,4.008936 -5.694545849959551,0.028166814387181358,5.694545849959551,6.763351048406942,0.39971435185185183,1.563351048406944,0.029374269175449046,5.2,5.1999999999999975,2.886579864025407e-15,-0.0,1.4200000000000002,1639.1921,1.5633575 -5.481558928604888,0.021290221755603106,5.481558928604888,0.03230121982389162,0.3960082175925926,-2.7737216365784803e-11,0.02223376879861584,1.18,0.032301219851628836,1.1476987801483711,-0.0,-2.4499999999999997,1636.9156,1.3695573 -5.043678948247245,0.02297381607995125,5.043678948247245,-1.3379933875382676e-6,0.39571446759259266,-1.3379933875382676e-6,0.02406507181511799,0.0,0.0,0.0,-0.0,-1.3150000000000002,1631.9437,1.6706319 -5.212423018269803,0.027930516104186186,5.212423018269803,14.11118543137124,0.3921108796296296,1.1411854313712386,0.029222023212581102,12.97,12.97,7.199796314694141e-16,-0.0,1.625,1633.909,1.1411986 -6.351060302337848,0.029184136015042852,6.351060302337848,21.174357656551933,0.3919487268518519,0.41435765655193263,0.030314692178544333,20.76,20.76,0.0,-0.0,2.17,1645.7084,0.42053786 -6.660011354868582,0.0190723177423279,6.660011354868582,0.0,0.3884644675925926,-0.0,0.019777065701629636,0.0,0.0,0.0,-0.0,-3.8249999999999997,1648.545,1.1927475 -5.990167001438584,0.015427819153990205,5.990167001438584,0.0,0.38799999999999996,-0.0,0.016059566999641707,0.0,0.0,0.0,-0.0,-6.68,1642.2146,1.195057 -5.534564485526465,0.025643576180131102,5.534564485526465,4.4343803683496255,0.3848466435185185,1.174380368355009,0.026770657666820134,3.26,3.259999999994617,5.382482237692443e-12,-0.0,0.6200000000000001,1637.4904,1.8094481 -5.694254860331993,0.037967412340377156,5.694254860331993,9.77078044770216,0.3840003472222222,0.6707804477021606,0.03959507280425627,9.1,9.1,0.0,-0.0,6.4799999999999995,1639.1891,0.67159307 -5.80307301046039,0.02405539222036135,5.80307301046039,4.009902145354857,0.38166932870370374,-0.020097827870872276,0.025069355813751533,4.03,4.0299999732257294,2.6774270420748537e-8,-0.0,-0.20999999999999996,1640.3196,0.27826518 -5.507446303503993,0.02070202612863661,5.507446303503993,0.21710041018235912,0.3799997685185186,-1.617751265085934e-10,0.021615789751638886,1.43,0.21710041034413424,1.2128995896558659,-0.0,-2.265,1637.197,0.42980054 -6.063352934239473,0.028044470244699818,6.063352934239473,21.47204728970297,0.37920590277777777,0.34204728970297354,0.02917996630516824,21.13,21.13,0.0,-0.0,2.095,1642.9398,0.35215592 -7.160211368874331,0.031093397602216483,7.160211368874331,11.89585636947045,0.37611087962962964,0.11585636947045133,0.03215797679638399,11.78,11.78,0.0,-0.0,3.6550000000000002,1652.8699,0.14345576 -7.002517167572667,0.022667318211621868,7.002517167572667,-2.8018773476919593e-5,0.3759486111111111,-2.8018773476919593e-5,0.023462282926795527,0.0,0.0,0.0,-0.0,-0.9449999999999998,1651.5399,0.079388835 -6.266237389355066,0.016959422140070946,6.266237389355066,0.0,0.37321898148148147,-0.0,0.017625008140014616,0.0,0.0,0.0,-0.0,-4.87,1644.9054,0.079612404 -5.6696213678324385,0.017044497327444126,5.6696213678324385,0.0,0.3719998842592593,-0.0,0.017778001852731987,0.0,0.0,0.0,-0.0,-4.705,1638.9302,0.08198658 -5.176482342623758,0.01990101515258262,5.176482342623758,0.06506412005296427,0.37120578703703705,-2.5193230594328255e-11,0.020826505050747218,2.62,0.06506412007815751,2.5549358799218425,-0.0,-2.46,1633.4958,1.4139943 -5.009331827136474,0.02174098798777089,5.009331827136474,5.229779608622264,0.3684645833333333,-1.1817957422287912e-5,0.022779380589846365,5.23,5.229791426579687,0.00020857342031368965,-0.0,-1.08,1631.5356,2.2306561 -4.943439004874389,0.02299459053304241,4.943439004874389,3.2041025642245624,0.3680003472222222,-0.01589740386106888,0.024104540643859605,3.22,3.2199999680856313,3.1914369028607226e-8,-0.0,-0.25,1630.7449,2.23285 -4.710621456329532,0.019049401710427048,4.710621456329532,0.0012150475194698791,0.36615196759259255,-6.767523618782033e-13,0.020004258188325123,2.03,0.0012150475201466314,2.028784952479853,-0.0,-2.835,1627.8639,2.8669436 -4.365008150479984,0.015355729295936666,4.365008150479984,4.8294701571194303e-17,0.3644642361111111,-0.0,0.016170644127094222,0.29,4.8294701571194303e-17,0.2899999999999999,-0.0,-5.73,1623.3132,4.0267377 -4.066845500801645,0.010735011172255483,4.066845500801645,0.0,0.36400011574074076,-0.0,0.011334210576719413,0.0,0.0,0.0,-0.0,-10.49,1619.0879,4.170567 -3.8067960193346546,0.013925178702958544,3.8067960193346546,0.0,0.3621513888888889,-0.0,0.014738367271691349,0.0,0.0,0.0,-0.0,-6.91,1615.1416,4.175159 -3.5779430142964137,0.011563288789712335,3.5779430142964137,0.0,0.3604638888888889,-0.0,0.012266670859058219,2.57,0.0,2.57,-0.0,-9.315,1611.439,5.465807 -3.3750504110044943,0.011816927889677812,3.3750504110044943,0.0,0.3599998842592593,-0.0,0.012562918262127744,7.22,0.0,7.22,-0.0,-8.98,1607.9526,10.363249 -3.1939551359403295,0.00960509746457692,3.1939551359403295,0.0,0.35920578703703704,-0.0,0.010232416402118168,2.71,0.0,2.71,-0.0,-11.655000000000001,1604.659,15.330283 -3.0314061618949815,0.006815071745665964,3.0314061618949815,0.0,0.3572189814814815,-0.0,0.007274312126717913,0.0,0.0,0.0,-0.0,-15.940000000000001,1601.5397,16.70758 -2.884596484507009,0.008596378890457845,2.884596484507009,0.0,0.35611041666666665,-0.0,0.009192670916356952,4.86,0.0,4.86,-0.0,-12.93,1598.5751,19.222075 -2.75124413199193,0.011307255068442499,2.75124413199193,0.0,0.3559483796296296,-0.0,0.012113007017681206,2.31,0.0,2.31,-0.0,-9.315,1595.7484,22.813595 -2.629678325426799,0.007562826150206248,2.629678325426799,0.0,0.3546476851851852,-0.0,0.008115476622436005,0.89,0.0,0.89,-0.0,-14.469999999999999,1593.0496,24.423515 -2.518415847311818,0.009727132499295691,2.518415847311818,0.0,0.35321898148148145,-0.0,0.010454882565364303,2.16,0.0,2.16,-0.0,-11.155,1590.4678,25.713879 -2.416129089513226,0.00968890911812591,2.416129089513226,0.0,0.35211030092592593,-0.0,0.010430037950866326,0.48,0.0,0.48,-0.0,-11.145,1587.9916,26.959475 -2.321799817086406,0.01025566753924768,2.321799817086406,0.0,0.35199988425925927,-0.0,0.011056708497877875,4.51,0.0,4.51,-0.0,-10.375,1585.6133,29.482729 -2.234539808478287,0.010020885705538817,2.234539808478287,0.0,0.35171423611111113,-0.0,0.010819198442616569,2.77,0.0,2.77,-0.0,-10.649999999999999,1583.3256,33.086205 -2.1536649820678364,0.006095025509471083,2.1536649820678364,0.0,0.3506474537037037,-0.0,0.006589747761354655,0.0,0.0,0.0,-0.0,-16.939999999999998,1581.124,34.50052 -2.0784896938880872,0.006131323273146209,2.0784896938880872,0.0,0.34966921296296294,-0.0,0.006637899633044304,4.21,0.0,4.21,-0.0,-16.815,1579.0022,36.62692 -2.008334413363154,0.009266065646615203,2.008334413363154,0.0,0.3488465277777778,-0.0,0.010044682018819761,8.73,0.0,8.73,-0.0,-11.515,1576.9517,43.111557 -1.9427458018174906,0.006406939529813559,1.9427458018174906,0.0,0.3481105324074074,-0.0,0.00695405121636776,0.0,0.0,0.0,-0.0,-16.18,1574.9688,47.468227 -1.8813516052125592,0.005330226881069771,1.8813516052125592,0.0,0.3480079861111111,-0.0,0.0057924472297592134,0.0,0.0,0.0,-0.0,-18.435,1573.051,47.46153 -1.8237232636395915,0.0054884917609434244,1.8237232636395915,0.0,0.34794849537037037,-0.0,0.005971489185835642,0.0,0.0,0.0,-0.0,-18.060000000000002,1571.1931,47.454277 -1.7695159495976311,0.005915056169992932,1.7695159495976311,0.0,0.34771435185185184,-0.0,0.006442981509559525,0.09,0.0,0.09,-0.0,-17.115,1569.3911,47.521996 -1.718405003862807,0.0075811738423505045,1.718405003862807,0.0,0.3472057870370371,-0.0,0.008267022374645298,2.09,0.0,2.09,-0.0,-13.965,1567.6407,48.643833 -1.6701284978147317,0.007887113387640624,1.6701284978147317,0.0,0.3466476851851852,-0.0,0.008609986187042444,0.0,0.0,0.0,-0.0,-13.425,1565.939,49.70629 -1.6244961188689577,0.006451812890862355,1.6244961188689577,0.0,0.3466476851851852,-0.0,0.007050585932030119,0.0,0.0,0.0,-0.0,-15.955,1564.2845,49.819244 -1.5812704659179417,0.00989043644507937,1.5812704659179417,0.0,0.3461518518518519,-0.0,0.010819477423351936,0.0,0.0,0.0,-0.0,-10.44,1562.674,49.81375 -1.540243022911615,0.009109073517788044,1.540243022911615,0.0,0.3461518518518519,-0.0,0.00997473968580168,0.0,0.0,0.0,-0.0,-11.504999999999999,1561.104,49.822586 -1.5012862657132056,0.009456343575489863,1.5012862657132056,0.0,0.3456693287037037,-0.0,0.010365170030177619,5.33,0.0,5.33,-0.0,-10.985,1559.5741,52.56484 -1.464176509506352,0.015286435112999862,1.464176509506352,2.3931682358036e-10,0.3456693287037037,-0.0,0.016771652198629087,6.47,2.3931682358036e-10,6.469999999760684,-0.0,-4.495,1558.0793,58.53182 -1.4477903357555746,0.020678179692414207,1.4477903357555746,0.03222077836248602,0.3461518518518519,-0.01777922121097746,0.022697045090363344,0.05,0.04999999957346348,4.2653652276847256e-10,-0.0,-0.2350000000000001,1557.4072,60.998695 -1.415010650132576,0.020107533236399997,1.415010650132576,-0.0007129037295192291,0.3461518518518519,-0.0007129037295192291,0.02209008386591761,0.0,0.0,0.0,-0.0,-0.625,1556.0396,61.00183 -1.3818513298931812,0.01616488717389143,1.3818513298931812,0.0,0.3461518518518519,-0.0,0.01777487988604826,0.0,0.0,0.0,-0.0,-3.705,1554.6234,60.949142 -1.350263708520409,0.013672276866114006,1.350263708520409,0.0,0.3466476851851852,-0.0,0.015047376901892362,3.52,0.0,3.52,-0.0,-6.029999999999999,1553.2424,62.69029 -1.3200995270946871,0.014804734387469268,1.3200995270946871,2.4242718943412457e-12,0.3472057870370371,-0.0,0.016307898288833063,5.9,2.4242718943412457e-12,5.8999999999975765,-0.0,-4.945,1551.8932,67.380775 -1.291221372106514,0.01777680033203085,1.291221372106514,0.18232831528440485,0.34771435185185184,-4.7068390409616136e-11,0.01959840751233661,3.92,0.18232831533147323,3.7376716846685265,-0.0,-2.395,1550.5723,72.265976 -1.2635740148813728,0.014989066897750793,1.2635740148813728,0.0,0.34794849537037037,-0.0,0.016538799368149112,0.0,0.0,0.0,-0.0,-4.779999999999999,1549.2797,74.1804 -1.237138028145449,0.010103462907384156,1.237138028145449,0.0,0.34800000000000003,-0.0,0.011157161915036299,0.0,0.0,0.0,-0.0,-10.105,1548.017,74.18441 -1.2118494753475988,0.006207804265306919,1.2118494753475988,0.0,0.3480079861111111,-0.0,0.006860687940232531,0.0,0.0,0.0,-0.0,-16.345,1546.7836,74.18441 -1.1876069309912403,0.006436273594972925,1.1876069309912403,0.0,0.3484641203703704,-0.0,0.007118739695759274,0.23,0.0,0.23,-0.0,-15.900000000000002,1545.5768,74.18441 -1.164344276538043,0.004506200235119758,1.164344276538043,0.0,0.34921886574074074,-0.0,0.004987824814057676,0.0,0.0,0.0,-0.0,-20.29,1544.3954,74.18441 -1.1419970494480796,0.0035667542027760946,1.1419970494480796,0.0,0.35015162037037034,-0.0,0.003950931167529929,0.0,0.0,0.0,-0.0,-23.085,1543.238,74.18441 -1.1205069478384588,0.0027852652969627034,1.1205069478384588,0.0,0.35120578703703703,-0.0,0.003087537505327863,0.0,0.0,0.0,-0.0,-25.965000000000003,1542.1035,74.18441 -1.0998145881059658,0.0030666190061020924,1.0998145881059658,0.0,0.3519482638888889,-0.0,0.0034018808857974934,0.0,0.0,0.0,-0.0,-24.880000000000003,1540.9904,74.18441 -1.0798707029608752,0.0034707978406542197,1.0798707029608752,0.0,0.35200787037037035,-0.0,0.0038529796626409155,0.0,0.0,0.0,-0.0,-23.439999999999998,1539.8975,74.18441 -1.0606287938662695,0.003992197429602886,1.0606287938662695,0.0,0.35284641203703704,-0.0,0.004434884733685832,0.0,0.0,0.0,-0.0,-21.814999999999998,1538.8237,74.18441 -1.0420577205226818,0.0038775593342980936,1.0420577205226818,0.0,0.3541518518518519,-0.0,0.004310489665535742,0.0,0.0,0.0,-0.0,-22.195,1537.7688,74.18441 -1.024123678975988,0.00359890292852076,1.024123678975988,0.0,0.35571446759259256,-0.0,0.004003420264710396,0.0,0.0,0.0,-0.0,-23.115000000000002,1536.732,74.18441 -1.0067884106011744,0.0043739531844050866,1.0067884106011744,0.0,0.35600000000000004,-0.0,0.0048688164818011265,0.0,0.0,0.0,-0.0,-20.810000000000002,1535.7125,74.21184 -0.9900055634653789,0.0068795536592327015,0.9900055634653789,0.0,0.3564643518518519,-0.0,0.0076629065881753606,2.91,0.0,2.91,-0.0,-15.26,1534.7086,75.708466 -0.9737412958398427,0.008090883424023122,0.9737412958398427,0.0,0.35815185185185183,-0.0,0.009017979525998067,0.56,0.0,0.56,-0.0,-13.25,1533.7194,77.4352 -0.9580007139458175,0.006915906216965874,0.9580007139458175,0.0,0.3599482638888889,-0.0,0.007713261909136276,0.0,0.0,0.0,-0.0,-15.3,1532.7461,77.73809 -0.9427477193562319,0.009573890413860914,0.9427477193562319,0.0,0.36000787037037035,-0.0,0.010684374549982617,7.75,0.0,7.75,-0.0,-11.120000000000001,1531.7876,81.69401 -0.9279594758030489,0.008343749446543994,0.9279594758030489,0.0,0.36121863425925926,-0.0,0.009317291728753455,6.23,0.0,6.23,-0.0,-12.940000000000001,1530.8434,88.65591 -0.9136515545562964,0.006317558687000331,0.9136515545562964,0.0,0.3637142361111111,-0.0,0.007058965644882482,4.4,0.0,4.4,-0.0,-16.54,1529.9154,93.96772 -0.899808829170979,0.0041233127996630455,0.899808829170979,0.0,0.36400011574074076,-0.0,0.004609957881951932,0.22,0.0,0.22,-0.0,-21.725,1529.0037,96.200714 -0.8863515559906191,0.010423464185858572,0.8863515559906191,0.0,0.36521898148148146,-0.0,0.01166053388266441,3.67,0.0,3.67,-0.0,-10.16,1528.1038,98.08941 -0.890885210640651,0.027080248424182995,0.890885210640651,7.821078364588193,0.36771435185185186,7.821078364588193,0.030288126868491933,0.0,0.0,0.0,-0.0,3.1,1528.4084,98.673996 -1.078145973571803,0.03186682467482672,1.078145973571803,17.082658947709753,0.3680083333333333,14.012658947709754,0.03537798651018683,3.07,3.07,0.0,-0.0,5.415,1539.802,87.84236 -1.279440781224482,0.01797755295192212,1.279440781224482,0.0006769972890586936,0.3696696759259259,-5.4386950269062345e-14,0.019826730441517507,15.22,0.0006769972891130805,15.219323002710889,-0.0,-3.0949999999999998,1550.0249,85.58569 -1.2523604926253595,0.0072728567613141865,1.2523604926253595,0.0,0.3719483796296296,-0.0,0.0080275620077739,0.0,0.0,0.0,-0.0,-15.21,1548.7473,93.16304 -1.2264724405781111,0.009102433212221936,1.2264724405781111,0.0,0.37211041666666667,-0.0,0.010055092694903348,0.54,0.0,0.54,-0.0,-12.34,1547.4999,93.46231 -1.2015468007775403,0.015963109254423916,1.2015468007775403,0.0,0.3746479166666667,-0.0,0.017647789827005267,0.0,0.0,0.0,-0.0,-4.905,1546.2737,93.731346 -1.234180390942334,0.022611916849139782,1.234180390942334,8.192816511954074,0.3760002314814815,-0.057183476979805206,0.02497243945097246,8.25,8.24999998893388,1.1066119895430937e-8,-0.0,-0.050000000000000044,1547.874,95.03809 -1.288977272652706,0.015930800521930383,1.288977272652706,2.3371526935989092e-12,0.3772188657407407,-0.0,0.017564422928398545,18.88,2.3371526935989092e-12,18.87999999999766,-0.0,-5.0649999999999995,1550.4684,104.73826 -1.2615017304476508,0.008014846826681079,1.2615017304476508,0.0,0.3799997685185186,-0.0,0.008844068269412374,0.0,0.0,0.0,-0.0,-14.254999999999999,1549.1816,114.309586 -1.2351974638299366,0.012649209593213426,1.2351974638299366,0.0,0.3804640046296296,-0.0,0.013969252752255874,18.58,0.0,18.58,-0.0,-8.299999999999999,1547.9232,123.640465 -1.209864493111768,0.017923392768375436,1.209864493111768,7.0671118040466975e-6,0.383714699074074,-5.650277680430275e-16,0.01980967549467485,33.46,7.067111804611725e-6,33.45999293288819,-0.0,-3.6300000000000003,1546.6857,149.55887 -1.1856034939540083,0.00743946483059355,1.1856034939540083,0.0,0.38400833333333334,-0.0,0.008228840495825318,0.0,0.0,0.0,-0.0,-15.3,1545.476,167.15451 -1.1623586991335053,0.007652958262507151,1.1623586991335053,0.0,0.3866476851851852,-0.0,0.008471468774029376,5.79,0.0,5.79,-0.0,-15.02,1544.2935,173.91847 -1.140023948080213,0.007622444702935024,1.140023948080213,0.0,0.38799999999999996,-0.0,0.008444027280652421,2.65,0.0,2.65,-0.0,-15.104999999999999,1543.1348,178.17233 -1.1185503988436918,0.005562764142291157,1.1185503988436918,0.0,0.3901519675925926,-0.0,0.006166883078106393,0.0,0.0,0.0,-0.0,-19.064999999999998,1541.9991,179.51439 -1.0978919264901341,0.004714564902568588,1.0978919264901341,0.0,0.39200034722222227,-0.0,0.005230345147925782,0.0,0.0,0.0,-0.0,-21.105,1540.8859,179.51996 -1.077976296322043,0.005343046720047399,1.077976296322043,0.0,0.3936696759259259,-0.0,0.005931792407745989,0.0,0.0,0.0,-0.0,-19.645,1539.7926,179.69794 -1.058740009349713,0.003161259070144774,1.058740009349713,0.0,0.39600023148148145,-0.0,0.0035120481136200954,0.0,0.0,0.0,-0.0,-25.865000000000002,1538.7173,180.45761 -1.0401488536486185,0.0036348657219424114,1.0401488536486185,0.0,0.3972188657407407,-0.0,0.004040986998431372,0.0,0.0,0.0,-0.0,-24.29,1537.6593,181.82787 -1.022178712427747,0.004987811057015584,1.022178712427747,0.0,0.40000023148148145,-0.0,0.0055488518354889415,0.0,0.0,0.0,-0.0,-20.64,1536.6185,183.82315 -1.004798317089337,0.006520793485866224,1.004798317089337,0.0,0.4012189814814815,-0.0,0.007259106010523662,0.0,0.0,0.0,-0.0,-17.41,1535.5944,186.45789 -0.9879799797843966,0.012871218346217858,0.9879799797843966,0.0,0.40399999999999997,-0.0,0.01433796582519009,3.6,0.0,3.6,-0.0,-8.755,1534.5863,189.74654 -0.9717013194867095,0.021428109892769956,0.9717013194867095,9.277783400986337,0.40521898148148144,-2.0290318521979128e-8,0.023885406249033722,9.61,9.277783421276656,0.33221657872334404,-0.0,-1.76,1533.5941,193.70352 -0.9559370469958264,0.017026224098837493,0.9559370469958264,8.2064188777764e-13,0.4080003472222223,-0.0,0.01899082448558298,6.97,8.2064188777764e-13,6.969999999999179,-0.0,-5.07,1532.6173,198.34329 -0.9406765302141352,0.009564023962189966,0.9406765302141352,0.0,0.40966990740740744,-0.0,0.010674278977342064,2.73,0.0,2.73,-0.0,-12.81,1531.6562,203.34663 -0.9259415950486931,0.008643779205694932,0.9259415950486931,0.0,0.41200046296296294,-0.0,0.009653148511030383,3.95,0.0,3.95,-0.0,-14.17,1530.7134,207.1881 -0.9117057843603462,0.004753239103621185,0.9117057843603462,0.0,0.41464768518518513,-0.0,0.005311504918430859,0.0,0.0,0.0,-0.0,-21.59,1529.7881,209.15115 -0.8979310820501692,0.004162331855081703,0.8979310820501692,0.0,0.4159996527777778,-0.0,0.004653961807352787,0.0,0.0,0.0,-0.0,-23.185,1528.8789,209.22632 -0.8845579403620334,0.0055925097362102315,0.8845579403620334,0.0,0.419205324074074,-0.0,0.006256731060455923,0.0,0.0,0.0,-0.0,-19.76,1527.9828,209.1971 -0.871553193781,0.007322834472784452,0.871553193781,0.0,0.41999976851851856,-0.0,0.008197311413613972,0.58,0.0,0.58,-0.0,-16.47,1527.0983,209.59062 -0.8588906115787447,0.010705076592671179,0.8588906115787447,0.0,0.42400011574074076,-0.0,0.011990316088691073,6.86,0.0,6.86,-0.0,-11.75,1526.2242,213.23885 -0.846574645987441,0.009093432947190559,0.846574645987441,0.0,0.42400011574074076,-0.0,0.01019093974462643,3.61,0.0,3.61,-0.0,-13.844999999999999,1525.3617,218.35434 -0.8335113499078328,0.0060952001159817965,0.8335113499078328,0.0,0.428,-0.0,0.006835004943061533,0.0,0.0,0.0,-0.0,-18.939999999999998,1524.433,220.25876 -0.8088902841538486,0.011987710983543558,0.8088902841538486,0.0,0.42846388888888887,-0.0,0.013458528065373827,0.0,0.0,0.0,-0.0,-10.375,1522.6423,221.18584 -0.8299259150176441,0.029109465883900662,0.8299259150176441,9.124401038234705,0.43200000000000005,4.424401038234704,0.03264814050904808,4.7,4.7,0.0,-0.0,1.8299999999999998,1524.1755,221.16 -1.0341345449302881,0.03467680039330599,1.0341345449302881,19.590064051309753,0.4336695601851852,10.870064051309754,0.0385599021469064,8.72,8.72,0.0,-0.0,4.24,1537.313,213.76491 -1.3464217534612926,0.03177921635179988,1.3464217534612926,14.69800431380293,0.43600011574074077,6.77800431380293,0.03497926828201415,7.92,7.92,0.0,-0.0,2.7100000000000004,1553.0723,205.0513 -1.6417476069164851,0.03171537506798454,1.6417476069164851,12.94250337973785,0.4399488425925926,6.042503379737849,0.034644810238384324,6.9,6.9,0.0,-0.0,2.435,1564.9154,198.54105 -2.1032476455961056,0.029666611117902076,2.1032476455961056,21.526974305463646,0.4400003472222222,3.0469743054636726,0.03210332023065422,18.48,18.479999999999972,2.974953616785569e-14,-0.0,1.315,1579.7094,194.32162 -2.457273811032195,0.024250249765910434,2.457273811032195,4.222854063881301,0.4440001157407408,-1.3238439763488895e-8,0.02608864479473679,4.46,4.222854077119741,0.23714592288025887,-0.0,-1.805,1589.0,194.21146 -2.376450380032537,0.020275077715737694,2.376450380032537,0.0,0.4440081018518519,-0.0,0.021839569174519277,0.0,0.0,0.0,-0.0,-4.305,1587.0027,195.9616 -2.284762776682307,0.01914209708219678,2.284762776682307,7.327471962526033e-14,0.4480001157407407,-0.0,0.020649738242474135,2.4,7.327471962526033e-14,2.3999999999999266,-0.0,-5.205,1584.653,197.17789 -2.2000186727043243,0.012220897343753643,2.2000186727043243,0.0,0.4501516203703704,-0.0,0.01320222678282491,3.3,0.0,3.3,-0.0,-11.275,1582.3958,200.19843 -2.121464081952343,0.010285170003119952,2.121464081952343,0.0,0.452,-0.0,0.011126329614828621,0.0,0.0,0.0,-0.0,-13.54,1580.2244,201.74126 -2.0483043882463594,0.012522192492710959,2.0483043882463594,0.0,0.45599953703703705,-0.0,0.013564294254563828,0.57,0.0,0.57,-0.0,-11.09,1578.1285,201.92838 -1.9799124645095159,0.016122374102369802,1.9799124645095159,0.0,0.45599953703703705,-0.0,0.017486556618112402,6.98,0.0,6.98,-0.0,-7.715,1576.1005,205.7927 -1.9159177036284074,0.013119588022276777,1.9159177036284074,0.0,0.46,-0.0,0.014247429324503935,0.58,0.0,0.58,-0.0,-10.559999999999999,1574.1383,209.54895 -1.8559971827563335,0.009725507760720085,1.8559971827563335,0.0,0.4604638888888889,-0.0,0.010574319904361019,0.0,0.0,0.0,-0.0,-14.425,1572.2407,209.91429 -1.7997450180539651,0.010329737372080547,1.7997450180539651,0.0,0.463999537037037,-0.0,0.011244429992864367,0.0,0.0,0.0,-0.0,-13.74,1570.4027,209.94693 -1.7468037654393362,0.010133189302001246,1.7468037654393362,0.0,0.46799976851851854,-0.0,0.011043016261032315,0.0,0.0,0.0,-0.0,-14.08,1568.6196,209.94205 -1.6968620952885218,0.011338609549920983,1.6968620952885218,0.0,0.46799976851851854,-0.0,0.012370328504099005,1.66,0.0,1.66,-0.0,-12.625,1566.8873,210.81111 -1.6496763084477282,0.01109550700101762,1.6496763084477282,0.0,0.4719996527777777,-0.0,0.012118131095540195,5.02,0.0,5.02,-0.0,-13.0,1565.2031,214.06505 -1.605075109266523,0.008710916248865802,1.605075109266523,0.0,0.4719996527777777,-0.0,0.009523722712004216,0.0,0.0,0.0,-0.0,-16.055,1563.5663,216.4043 -1.5627526893295298,0.015927497167836677,1.5627526893295298,0.0,0.4760001157407408,-0.0,0.017431466336849638,0.0,0.0,0.0,-0.0,-8.334999999999999,1561.9705,216.4325 -1.522681832527737,0.024435034842837308,1.522681832527737,-1.1115237980762306e-11,0.4800005787037037,-1.1115237980762306e-11,0.026768921932212513,0.0,0.0,0.0,-0.0,-2.5449999999999995,1560.4192,216.42113 -1.4865252644214166,0.029992241504437123,1.4865252644214166,0.5422226170390242,0.4800005787037037,0.5422226170390242,0.03288716710065841,0.0,0.0,0.0,-0.0,0.40000000000000036,1558.984,216.32596 -1.566789137506994,0.03696178406087968,1.566789137506994,8.396106366909558,0.4840002314814815,8.396106366909558,0.040447946641207426,0.0,0.0,0.0,-0.0,3.3149999999999995,1562.1245,211.64209 -1.7099956728150962,0.034415649665696456,1.7099956728150962,5.500729881908622,0.4840002314814815,5.440729881908623,0.037536156444139594,0.06,0.06,0.0,-0.0,2.21,1567.3478,204.76999 -1.7060261307373519,0.02227643404452898,1.7060261307373519,2.2065642740765054e-9,0.48800034722222224,-0.0,0.024298415802872373,1.63,2.2065642740765054e-9,1.6299999977934356,-0.0,-4.135,1567.209,204.0002 -1.6580906157050888,0.018356883700862272,1.6580906157050888,0.0,0.4919994212962963,-0.0,0.020044865903021028,0.0,0.0,0.0,-0.0,-6.8950000000000005,1565.507,204.76993 -1.6128036270012422,0.01869125038721468,1.6128036270012422,0.0,0.4919994212962963,-0.0,0.020431562816827637,0.0,0.0,0.0,-0.0,-6.635,1563.8531,204.77493 -1.5846970528327853,0.026438270866825805,1.5846970528327853,-4.651418706358239e-9,0.4959997685185185,-4.651418706358239e-9,0.02891931159063778,0.0,0.0,0.0,-0.0,-1.9149999999999996,1562.8032,204.8221 -1.5930566872618466,0.029635314788863835,1.5930566872618466,1.7878260962842063,0.4959997685185185,-0.012173878399159914,0.032409858832962574,1.8,1.7999999746833661,2.531663398919193e-8,-0.0,-0.28500000000000014,1563.1174,204.89854 -1.6386229798039091,0.030052123831964015,1.6386229798039091,5.739415520149419,0.4999997685185186,-0.020584439620602427,0.03283031723335888,5.76,5.759999959770021,4.022997902808356e-8,-0.0,-0.21500000000000008,1564.8016,204.8717 -1.7202992789929803,0.033037076806255145,1.7202992789929803,4.694135639687116,0.503999537037037,2.2441356396871934,0.03602434084564488,2.45,2.4499999999999225,7.792932965600131e-14,-0.0,1.015,1567.7065,203.9562 -1.7397910616250158,0.029735627550874524,1.7397910616250158,1.1281536013450963,0.503999537037037,-0.0018462401330454007,0.0324104589948227,1.13,1.1299998414781418,1.585218580596459e-7,-0.0,-0.5150000000000001,1568.3794,203.30252 -1.701944039611119,0.02375085955987348,1.701944039611119,0.0,0.5079996527777778,-0.0,0.02590903677043242,0.0,0.0,0.0,-0.0,-3.8,1567.0659,203.39085 -1.6536127556524387,0.025914467790446656,1.6536127556524387,-9.619677523320234e-12,0.5079996527777778,-9.619677523320234e-12,0.028300316813762157,0.0,0.0,0.0,-0.0,-2.5599999999999996,1565.3455,203.403 -1.622352468278684,0.034018826123836096,1.622352468278684,4.249725300877746,0.511999537037037,2.85972530087775,0.03717788361414256,1.39,1.3899999999999957,4.398148512052557e-15,-0.0,1.2449999999999999,1564.2057,203.4805 -1.5860743045921442,0.022650909322477215,1.5860743045921442,3.730872832896636e-12,0.5159998842592592,-0.0,0.02477571105483022,0.43,3.730872832896636e-12,0.42999999999626914,-0.0,-4.640000000000001,1562.8551,203.93488 -1.5447738083950908,0.015702932432871998,1.5447738083950908,0.0,0.5159998842592592,-0.0,0.017193303446802206,0.0,0.0,0.0,-0.0,-9.595,1561.2794,204.1722 -1.5053916385164905,0.019131901860193354,1.5053916385164905,0.0,0.520000462962963,-0.0,0.02096843028254812,0.0,0.0,0.0,-0.0,-7.035,1559.7372,204.173 -1.4678953338287435,0.02107644317946699,1.4678953338287435,0.0,0.520000462962963,-0.0,0.023121964436716255,0.0,0.0,0.0,-0.0,-5.7,1558.2308,204.173 -1.4331422140515426,0.024733233349463528,1.4331422140515426,-5.568620673363082e-16,0.5240002314814816,-5.568620673363082e-16,0.027158594665313885,0.0,0.0,0.0,-0.0,-3.5749999999999997,1556.7999,204.18167 -1.42899141695324,0.030778691376240556,1.42899141695324,-0.0010550234454249153,0.5279998842592593,-0.0010550234454249153,0.03380063614270675,0.0,0.0,0.0,-0.0,-0.5799999999999996,1556.6267,204.47157 -1.4468288689590132,0.0356163190057773,1.4468288689590132,7.0620319147050274,0.5279998842592593,3.622031914705028,0.03909463035434514,3.44,3.439999999999999,5.728750807065808e-16,-0.0,1.5299999999999998,1557.3676,205.07355 -1.4577977467413177,0.023854950945980124,1.4577977467413177,7.435481463868853e-10,0.5319998842592593,-0.0,0.026177058461660217,2.86,7.435481463868853e-10,2.859999999256452,-0.0,-4.3,1557.8186,205.85255 -1.435027057115014,0.022765389948785145,1.435027057115014,0.0,0.5319998842592593,-0.0,0.024996522631160395,0.0,0.0,0.0,-0.0,-4.9399999999999995,1556.8784,206.60782 -1.4010578370388975,0.030362740338370414,1.4010578370388975,-2.956614272794041e-5,0.5359994212962963,-2.956614272794041e-5,0.03336911881910788,0.0,0.0,0.0,-0.0,-0.98,1555.4478,206.64171 -1.419086028782286,0.038547180509288355,1.419086028782286,5.938775936767305,0.5395353009259259,5.908775936767305,0.042343158773916804,0.03,0.03,0.0,-0.0,2.385,1556.2113,204.4657 -1.4729236585837613,0.03462398170786014,1.4729236585837613,1.6122952623187061,0.54,1.6122952623187061,0.03797934767141885,0.0,0.0,0.0,-0.0,0.7799999999999998,1558.435,200.76575 -1.4485214778127988,0.033111529651281,1.4485214778127988,-0.07402018046368246,0.5439997685185185,-0.07402018046368246,0.03634359229333767,0.0,0.0,0.0,-0.0,0.03500000000000014,1557.4374,200.13728 -1.4569100374241708,0.033233662799504536,1.4569100374241708,3.720219447726731,0.5439997685185185,-0.06978055095536735,0.03646957191620611,3.79,3.7899999986820982,1.3179020030840149e-9,-0.0,0.08499999999999996,1557.7822,200.23901 -1.5844800422980292,0.03202653093259926,1.5844800422980292,8.919110349054822,0.5479999999999999,-0.0008867232504347373,0.03503217282847094,8.92,8.919997072305257,2.9276947434708767e-6,-0.0,-0.5999999999999999,1562.795,200.26503 -1.8592740641035264,0.03303517677332114,1.8592740641035264,11.808288361851119,0.5498481481481481,-0.011711463379374962,0.03591597798916904,11.82,11.819999825230495,1.747695053677667e-7,-0.0,-0.29000000000000004,1572.3461,200.26387 -1.9843326915954125,0.03424009383262016,1.9843326915954125,-0.043533210143461294,0.5520004629629629,-0.043533210143461294,0.037134155734088764,0.0,0.0,0.0,-0.0,0.13500000000000023,1576.2336,200.31252 -1.917798408542404,0.033816901121779576,1.917798408542404,-0.03671489652559864,0.5559922453703704,-0.03671489652559864,0.036722645138806416,0.0,0.0,0.0,-0.0,-0.1299999999999999,1574.1969,200.40433 -1.8544727283164915,0.03477025957281445,1.8544727283164915,0.2516901770845864,0.5560002314814815,0.2316901770854817,0.037806079943490896,0.02,0.019999999999104696,8.953038310721695e-13,-0.0,0.29000000000000004,1572.1917,200.47339 -1.860966025523879,0.0370458542296372,1.860966025523879,3.9151245265494556,0.56,2.485124526549474,0.04027501134603876,1.43,1.4299999999999815,1.8495760478742795e-14,-0.0,1.1049999999999998,1572.4004,199.1583 -1.9979344373387493,0.041595023621493095,1.9979344373387493,8.375104500470362,0.5600517361111111,6.925104500470362,0.045099070853185194,1.45,1.45,0.0,-0.0,2.765,1576.6416,194.49683 -2.3766155428418543,0.041273956579249774,2.3766155428418543,17.22262161258233,0.5639996527777777,6.08262161258233,0.0444586740959753,11.14,11.14,0.0,-0.0,2.4499999999999997,1587.0068,187.94179 -2.859342093430762,0.043651796351785746,2.859342093430762,10.451196597308403,0.5663305555555556,7.861196597308404,0.046695064308466955,2.59,2.59,0.0,-0.0,3.1149999999999998,1598.0499,180.94833 -3.2300912977781935,0.0463926171435166,3.2300912977781935,10.007462931469753,0.5679997685185185,9.987462931469754,0.049401882676843645,0.02,0.02,0.0,-0.0,3.9099999999999997,1605.3309,172.02322 -4.018398451492379,0.05947515834970313,4.018398451492379,23.212111341869754,0.5715351851851852,19.482111341869754,0.06282267147093933,3.73,3.73,0.0,-0.0,7.46,1618.3722,157.18634 -6.0684861138650525,0.06595644768316512,6.0684861138650525,35.236125030909754,0.5719994212962963,23.10612503090975,0.06862485562374071,12.13,12.13,0.0,-0.0,8.815,1642.9904,135.84605 -8.707394229793987,0.06486485730859082,8.707394229793987,23.531632187549757,0.5760005787037037,21.581632187549758,0.06661484381215697,1.95,1.95,0.0,-0.0,8.245000000000001,1664.5531,113.565445 -11.51440716661108,0.06899666565695842,11.51440716661108,29.85464401018976,0.5760005787037037,23.734644010189758,0.07015481224297897,6.12,6.12,0.0,-0.0,9.05,1681.2405,90.89438 -14.42143099516271,0.05746818371935458,14.42143099516271,24.120642768029754,0.5800003472222222,15.590642768029756,0.057969269602369616,8.53,8.53,0.0,-0.0,6.005000000000001,1694.6844,71.563835 -15.13874328382418,0.045372094372997815,15.13874328382418,10.672385146874223,0.5807946759259259,6.002385146874222,0.04568955356561461,4.67,4.67,0.0,-0.0,2.42,1697.5834,60.49537 -15.525102248820888,0.057957701752812125,15.525102248820888,22.530524535309755,0.5840005787037037,15.550524535309755,0.05831152334124475,6.98,6.98,0.0,-0.0,5.99,1699.0884,49.64224 -18.408143576095725,0.0694109653149005,18.386394631983155,31.374706238269752,0.5853530092592593,22.624706238269752,0.06941909731651484,8.75,8.75,0.0,-0.021748944112571333,8.635,1709.239,30.535051 -18.1692698104735,0.04697171448302101,18.16921561812638,6.630904127116441,0.5880002314814815,6.630904127116441,0.04699866469877312,0.0,0.0,0.0,-5.4192347121831684e-5,2.655,1708.4807,15.939398 -15.54539348405435,0.04888863875373972,15.54539348405435,8.275751668749452,0.5903311342592593,8.275751668749452,0.04918483729394173,0.0,0.0,0.0,-0.0,3.2699999999999996,1699.1664,8.482271 -13.373073638446984,0.05345032332583968,13.373073638446984,3.4988719272612636,0.5920008101851852,3.1188719272612637,0.054060155037491224,0.38,0.38,0.0,-0.0,4.640000000000001,1690.1772,3.118872 -11.870511461385282,0.06209720008771911,11.870511461385282,7.655456331939451,0.5943310185185184,1.1454563319394513,0.06307129721500801,6.51,6.51,0.0,-0.0,6.92,1683.0594,1.1454685 -10.735806195025445,0.06563954936099207,10.735806195025445,3.2852805982801803,0.5959997685185184,0.4152805982801801,0.06690774565403405,2.87,2.87,0.0,-0.0,7.785,1677.0592,0.42142016 -9.323647436287569,0.062005786320083967,9.323647436287569,0.13965061582748264,0.5987809027777777,0.13965061582748264,0.06352279407093477,0.0,0.0,0.0,-0.0,6.915000000000001,1668.6368,0.16616094 -8.123881529768672,0.0721033891227246,8.123881529768672,0.8931055427349591,0.5999998842592592,0.05310554273495919,0.07423340314074514,0.84,0.84,0.0,-0.0,9.295,1660.4106,0.07755742 -7.194717560856389,0.060998434451159746,7.194717560856389,0.024492891930260514,0.6027810185185185,0.024492891930260514,0.06307594909560764,0.0,0.0,0.0,-0.0,6.705,1653.157,0.04078293 -6.417902502367727,0.04789727149426584,6.417902502367727,0.012667714268804014,0.6039996527777778,0.012667714268804014,0.049733855544799296,0.0,0.0,0.0,-0.0,3.0949999999999998,1646.3336,0.022757115 -5.791377298186885,0.05121200478831378,5.791377298186885,0.006973801213923353,0.6063304398148148,0.006973801213923353,0.05337457255209809,0.0,0.0,0.0,-0.0,4.09,1640.1991,0.013091843 -5.27469413504077,0.06850569905864418,5.27469413504077,0.003962982473730023,0.6079995370370371,0.003962982473730023,0.07164230501980291,0.0,0.0,0.0,-0.0,8.535,1634.6183,0.007634666 -4.840875148263987,0.05856119909904244,4.840875148263987,0.0022434070039441846,0.6098476851851852,0.0022434070039441846,0.061435120783261944,0.0,0.0,0.0,-0.0,6.125,1629.4928,0.0043904493 -4.531535057411512,0.07586550982832599,4.531535057411512,0.21129034393053284,0.6120002314814815,0.0012903439305328517,0.07978173277469015,0.21,0.21,0.0,-0.0,10.114999999999998,1625.5492,0.0025482224 -4.6292099745201565,0.0660597075678702,4.6292099745201565,8.850643927441165,0.6133524305555556,0.00064392744116626,0.06941536469072665,8.85,8.85,0.0,-0.0,7.91,1626.8228,0.0012796673 -5.272053282649668,0.046461792360122704,5.272053282649668,17.64029830638781,0.6159914351851852,0.00029830638780719535,0.04858998372409811,17.64,17.64,0.0,-0.0,2.46,1634.5884,0.0005948436 -6.081251070541812,0.04338329044575622,6.081251070541812,13.080172657080094,0.6162851851851852,0.00017265708010609883,0.045135006127205744,13.08,13.079999999999988,1.1617373729677638e-14,-0.0,1.37,1643.1158,0.00034472224 -6.117556114083588,0.052554537480628556,6.117556114083588,9.485781158748376e-5,0.6195356481481481,9.485781158748376e-5,0.05466474056942646,0.0,0.0,0.0,-0.0,4.125,1643.4713,0.000189536 -5.566194820179668,0.05869063870081875,5.566194820179668,5.377770883545534e-5,0.6199998842592592,5.377770883545534e-5,0.06125746666636331,0.0,0.0,0.0,-0.0,5.83,1637.8307,0.00010749764 -5.085917527109915,0.06607541000360641,5.085917527109915,2.3765164683394844e-5,0.6227818287037037,2.3765164683394844e-5,0.06919287374092788,0.0,0.0,0.0,-0.0,7.625000000000001,1632.4418,4.751904e-5 -4.681048645957515,0.08370694096405808,4.681048645957515,8.325997513686326e-6,0.6240006944444445,8.325997513686326e-6,0.08792308789114918,0.0,0.0,0.0,-0.0,11.345,1627.4878,1.6650609e-5 -4.5787221115857495,0.09607792521873094,4.5787221115857495,4.674858035359472e-6,0.6253526620370371,4.674858035359472e-6,0.1009990868401773,0.0,0.0,0.0,-0.0,13.535,1626.1678,9.349279e-6 -4.976825655804562,0.09748250160102896,4.976825655804562,14.190002298257026,0.6278895833333333,2.2982570256989114e-6,0.10216280408583267,14.19,14.19,0.0,-0.0,13.655000000000001,1631.1469,4.5964084e-6 -5.527385470532479,0.08210901797186597,5.527385470532479,10.870001224717258,0.6280518518518519,1.2247172585619382e-6,0.08572191546318134,10.87,10.87,0.0,-0.0,10.84,1637.4128,2.4494045e-6 -5.6536396148408725,0.09295945145496552,5.6536396148408725,3.760000729395003,0.6303303240740741,7.293950029672655e-7,0.0969699061535363,3.76,3.76,0.0,-0.0,12.75,1638.7616,1.4587794e-6 -5.509641942524575,0.09821162653305701,5.509641942524575,4.780000424236371,0.6319916666666667,4.242363707778495e-7,0.10254508383618455,4.78,4.78,0.0,-0.0,13.610000000000001,1637.2208,8.4846914e-7 -5.369904565084593,0.09447038957512739,5.369904565084593,3.4800002246552313,0.6322856481481481,2.2465523151889001e-7,0.09873128725117501,3.48,3.48,0.0,-0.0,12.99,1635.6866,4.4930945e-7 -5.150234318415386,0.06832496535346204,5.150234318415386,2.530000128537005,0.6347809027777778,1.2853700505568093e-7,0.07151568583229204,2.53,2.53,0.0,-0.0,7.84,1633.1923,2.5707368e-7 -4.809294993474215,0.05582845356966894,4.809294993474215,6.758218111689502e-8,0.6360001157407408,6.758218111689502e-8,0.058582316565423814,0.0,0.0,0.0,-0.0,4.7700000000000005,1629.1019,1.3516427e-7 -4.450143040116894,0.059662169631299965,4.450143040116894,3.49408340000618e-8,0.6362856481481481,3.49408340000618e-8,0.06278377203598344,0.0,0.0,0.0,-0.0,5.81,1624.4668,6.9881644e-8 -4.103502903385566,0.0649419099504977,4.103502903385566,1.9643137200655623e-8,0.6387810185185185,1.9643137200655623e-8,0.06854410556271993,0.0,0.0,0.0,-0.0,7.09,1619.6238,3.9286267e-8 -3.8358839452858122,0.07599014988257619,3.8358839452858122,0.3500000097171027,0.6399917824074074,9.717102734095177e-9,0.08040511573328304,0.35,0.35,0.0,-0.0,9.535,1615.5962,1.9434204e-8 -3.783887210768168,0.08043388299352586,3.783887210768168,4.930000005457787,0.6400512731481481,5.4577874090149345e-9,0.08514998403454903,4.93,4.93,0.0,-0.0,10.435,1614.7811,1.0915574e-8 -3.9576209001253972,0.07620124169813963,3.9576209001253972,7.470000002933475,0.6418483796296296,2.9334757706383697e-9,0.08053546177133643,7.47,7.47,0.0,-0.0,9.515,1617.462,5.8669514e-9 -3.9362979020158795,0.07670390264025372,3.9362979020158795,0.020000001604586155,0.6435354166666667,1.6045861563793792e-9,0.08108288680213115,0.02,0.02,0.0,-0.0,9.58,1617.1394,3.2091723e-9 -3.709799365601941,0.09515717634133211,3.709799365601941,9.346410399716218e-10,0.6439998842592592,9.346410399716218e-10,0.10081027584425646,0.0,0.0,0.0,-0.0,13.03,1613.6002,1.869282e-9 -3.481322406546355,0.12652708847144226,3.481322406546355,5.458090675906219e-10,0.6442856481481481,5.458090675906219e-10,0.13435990637228487,0.0,0.0,0.0,-0.0,17.745,1609.8041,1.0916181e-9 -3.2651009207961494,0.13344818366623673,3.2651009207961494,2.6716265382520007e-10,0.6458482638888889,2.6716265382520007e-10,0.14204735792741188,0.0,0.0,0.0,-0.0,18.64,1605.9747,5.343253e-10 -3.1715172703487293,0.13215545602631745,3.1715172703487293,3.3900000000751636,0.6471538194444444,7.516327149668804e-11,0.14082361518095207,3.39,3.39,0.0,-0.0,18.46,1604.238,1.5032654e-10 -3.3385615924433742,0.12927274565858313,3.3385615924433742,9.700000000012508,0.6479927083333333,1.250860266217492e-11,0.1374891074214835,9.7,9.7,0.0,-0.0,18.035,1607.3035,2.5017205e-11 -3.695714245949934,0.11869307520585938,3.695714245949934,9.730000000007179,0.6480521990740741,7.1782423760204e-12,0.12576210146059294,9.73,9.73,0.0,-0.0,16.545,1613.373,1.4356485e-11 -3.7734601385083906,0.11371901346233017,3.7734601385083906,0.27000000000408475,0.6487947916666666,4.084724746112084e-12,0.12039901752757322,0.27,0.27,0.0,-0.0,15.805,1614.6163,8.1694495e-12 -3.607420005579747,0.0964287577808942,3.607420005579747,1.16000000000237,0.6498487268518519,2.370111485600731e-12,0.10226331727090741,1.16,1.16,0.0,-0.0,13.115,1611.929,4.740223e-12 -3.4284647976991747,0.10337524524350242,3.4284647976991747,1.3611868793760736e-12,0.6507814814814814,1.3611868793760736e-12,0.10983716091673086,0.0,0.0,0.0,-0.0,14.25,1608.8904,2.7223738e-12 -3.2301573228281772,0.11464874562700544,3.2301573228281772,7.13518437047795e-13,0.6515357638888889,7.13518437047795e-13,0.12208536449148918,0.0,0.0,0.0,-0.0,15.965,1605.3322,1.4270369e-12 -3.0503639620248193,0.14903534142244848,3.0503639620248193,2.4024944360381263e-13,0.6519921296296297,2.4024944360381263e-13,0.1590412632141896,0.0,0.0,0.0,-0.0,20.4,1601.912,4.804989e-13 -2.9084504930156747,0.16671749701417726,2.9084504930156747,0.050000000000039575,0.6520001157407407,3.9569394852752685e-14,0.17822710396844213,0.05,0.05,0.0,-0.0,22.365000000000002,1599.0669,7.913879e-14 -3.3043106340930706,0.1620177179961595,3.3043106340930706,19.520000000000024,0.6520517361111111,2.34603528552708e-14,0.1723813446056274,19.52,19.52,0.0,-0.0,21.785,1606.6876,4.6920706e-14 -4.058076654358264,0.1487198631419722,4.058076654358264,13.050000000000015,0.6522856481481482,1.4054819387858475e-14,0.15703350773613503,13.05,13.05,0.0,-0.0,20.175,1618.959,2.8109639e-14 -4.357484260335463,0.12054454201240336,4.357484260335463,4.050000000000009,0.6527943287037037,8.442234236716237e-15,0.12694979029614667,4.05,4.05,0.0,-0.0,16.58,1623.2102,1.6884468e-14 -4.21449600607336,0.10235231649461637,4.21449600607336,0.45000000000000473,0.653352662037037,4.72238528731245e-15,0.10792338381890713,0.45,0.45,0.0,-0.0,13.9,1621.2177,9.4447706e-15 -4.021175664770352,0.10951891093407808,4.021175664770352,2.5100000000000025,0.653848611111111,2.6652897536982135e-15,0.11568014860388867,2.51,2.51,0.0,-0.0,15.02,1618.4135,5.3305795e-15 -3.860606601758378,0.10134707705203644,3.860606601758378,0.9900000000000015,0.653848611111111,1.5900318256191953e-15,0.10720979986493187,0.99,0.99,0.0,-0.0,13.78,1615.9799,3.1800637e-15 -3.620147311423744,0.10182507567421921,3.620147311423744,8.934135068306383e-16,0.653848611111111,8.934135068306383e-16,0.1079720587008438,0.0,0.0,0.0,-0.0,13.895,1612.1393,1.786827e-15 -3.3306413338272924,0.11685139313892387,3.3306413338272924,3.198098094416137e-16,0.6543310185185185,3.198098094416137e-16,0.12428924290979987,0.0,0.0,0.0,-0.0,16.19,1607.1616,6.396196e-16 -3.148516152776079,0.09666431260985654,3.148516152776079,0.06999999999999998,0.6543310185185185,-2.9510363184543795e-17,0.10303250363684434,0.07,0.07,0.0,-0.0,13.125,1603.8033,-5.9020726e-17 -3.1851732423528416,0.07573436636967028,3.1851732423528416,7.91,0.653848611111111,-6.742386230611166e-17,0.08068892501867204,7.91,7.91,0.0,-0.0,9.254999999999999,1604.4946,-1.3484772e-16 -3.2783958240035505,0.08380007750263584,3.2783958240035505,3.68,0.653848611111111,-3.9605513608157353e-17,0.08918653533464552,3.68,3.68,0.0,-0.0,10.83,1606.2174,-7.921103e-17 -3.3906568384447318,0.09035206317402691,3.3906568384447318,4.95,0.653352662037037,-2.2898321427880776e-17,0.09603943922825209,4.95,4.95,0.0,-0.0,12.02,1608.2281,-4.5796643e-17 -3.6990849507591577,0.0978536539904905,3.6990849507591577,10.63,0.653352662037037,-1.0870072246607329e-17,0.10367804421613216,10.63,10.63,0.0,-0.0,13.25,1613.4275,-2.1740144e-17 -4.057570698640017,0.09002777077377573,4.057570698640017,9.09,0.6527943287037037,-4.6954518696684716e-18,0.09506088402564444,9.09,9.09,0.0,-0.0,11.87,1618.9515,-9.390904e-18 -4.101104714734884,0.09882833141467136,4.101104714734884,0.72,0.6522856481481482,-2.7488342924624776e-18,0.10431238640474176,0.72,0.72,0.0,-0.0,13.375,1619.5889,-5.4976686e-18 -3.8436305300149174,0.10456056531278655,3.8436305300149174,-1.5762407370928989e-18,0.6520517361111111,-1.5762407370928989e-18,0.11062719899834962,0.0,0.0,0.0,-0.0,14.335,1615.7167,-3.1524815e-18 -3.6044569906059225,0.11209525136572498,3.6044569906059225,-9.20626068979801e-19,0.6519921296296297,-9.20626068979801e-19,0.1188813535174709,0.0,0.0,0.0,-0.0,15.515,1611.8799,-1.8412521e-18 -3.3929655271953507,0.12793642605283112,3.3929655271953507,-5.253010997005885e-19,0.6518894675925926,-5.253010997005885e-19,0.1359861814735845,0.0,0.0,0.0,-0.0,17.75,1608.2688,-1.0506022e-18 -3.2636196292186197,0.1382522242746565,3.2636196292186197,1.26,0.6511538194444445,-2.1221586156277298e-19,0.14716344602369075,1.26,1.26,0.0,-0.0,19.1,1605.9476,-4.2443172e-19 -3.2649874647910497,0.1441411832340018,3.2649874647910497,1.4704245619608478e-19,0.6503311342592593,1.4704245619608478e-19,0.15342959448005714,0.0,0.0,0.0,-0.0,19.83,1605.9727,2.940849e-19 -3.3893541284447,0.14953822436152467,3.3893541284447,2.22,0.6493528935185184,4.546123125033381e-19,0.1589534499498597,2.22,2.22,0.0,-0.0,20.46,1608.2052,9.092246e-19 -3.6424519246740004,0.1339002532598083,3.6424519246740004,13.68,0.6482863425925927,6.12553765073907e-19,0.1419512536090385,13.68,13.68,0.0,-0.0,18.564999999999998,1612.5061,1.2251075e-18 -4.042958447281306,0.12033963170687109,4.042958447281306,11.36,0.6480008101851852,5.22926677752255e-19,0.12708427951763615,11.36,11.36,0.0,-0.0,16.72,1618.7361,1.0458534e-18 -4.510963254553539,0.11630010231585362,4.510963254553539,12.14,0.647890162037037,2.9945657159130064e-19,0.12232403089962185,12.14,12.14,0.0,-0.0,16.09,1625.2775,5.9891314e-19 -4.88967396288858,0.10310712221595397,4.88967396288858,7.63,0.64678125,1.5560739445118854e-19,0.10812741106661103,7.63,7.63,0.0,-0.0,14.094999999999999,1630.0918,3.112148e-19 -5.182750050348603,0.11615405783527735,5.182750050348603,8.43,0.645352199074074,8.732148938522229e-20,0.1215503851671184,8.43,8.43,0.0,-0.0,16.05,1633.5681,1.7464298e-19 -5.5743243058510625,0.12175365535778991,5.5743243058510625,6.49,0.6440515046296297,3.6116608705708914e-20,0.12707177450310206,6.49,6.49,0.0,-0.0,16.82,1637.9178,7.223322e-20 -5.846064132651022,0.12727451323576044,5.846064132651022,9.84,0.6438894675925926,3.817264851315329e-21,0.13260365240727992,9.84,9.84,0.0,-0.0,17.535,1640.7604,7.63453e-21 -5.713643931166584,0.12279769790520212,5.713643931166584,0.33,0.6427809027777778,-2.087739444546878e-21,0.12804616943143687,0.33,0.33,0.0,-0.0,16.98,1639.3921,-4.175479e-21 -5.276570482507881,0.124763965371703,5.276570482507881,0.01,0.6407940972222222,-1.1852209747145607e-21,0.13047472023004758,0.01,0.01,0.0,-0.0,17.345,1634.6395,-2.370442e-21 -4.908058693000612,0.13047306992810287,4.908058693000612,0.09,0.6399997685185186,-6.866400819305324e-22,0.13680699801259988,0.09,0.09,0.0,-0.0,18.16,1630.3159,-1.3732802e-21 -5.562828090551201,0.14291113899103222,5.562828090551201,19.16,0.6395354166666667,-4.0474221517161427e-22,0.1491646311007313,19.16,19.16,0.0,-0.0,19.634999999999998,1637.7946,-8.0948443e-22 -6.0135744435989285,0.14676284250709243,6.0135744435989285,3.82,0.6378482638888888,-2.428788626334164e-22,0.15275091363635748,3.82,3.82,0.0,-0.0,20.085,1642.4475,-4.8575773e-22 -6.2013043353568795,0.1476633002896814,6.2013043353568795,13.58,0.6360001157407408,-1.4621376581735513e-22,0.15351652073797248,13.58,13.58,0.0,-0.0,20.22,1644.2833,-2.9242753e-22 -6.221720422503134,0.1439012285080298,6.221720422503134,-8.79210911744402e-23,0.6355359953703703,-8.79210911744402e-23,0.14958746707000412,0.0,0.0,0.0,-0.0,19.79,1644.4796,-1.7584218e-22 -5.641818371720154,0.13964410577819797,5.641818371720154,-5.262248760659286e-23,0.6338483796296296,-5.262248760659286e-23,0.1456797408809665,0.0,0.0,0.0,-0.0,19.384999999999998,1638.6366,-1.05244975e-22 -5.395562405716921,0.1295199329583355,5.395562405716921,6.3,0.6319996527777777,-3.1433118867948343e-23,0.13533811640448434,6.3,6.3,0.0,-0.0,18.19,1635.9713,-6.286624e-23 -6.421970511456574,0.10949418178840893,6.421970511456574,27.95,0.6315355324074073,-1.8726675943454783e-23,0.11369003878447277,27.95,27.95,0.0,-0.0,15.305,1646.3715,-3.7453352e-23 -7.656472174068146,0.09329249035651924,7.656472174068146,9.74,0.6287943287037038,-1.1222805398773626e-23,0.0962535983397122,9.74,9.74,0.0,-0.0,12.67,1656.8718,-2.2445611e-23 -7.266204721572189,0.09439629709442554,7.266204721572189,-6.715974416347231e-24,0.628,-6.715974416347231e-24,0.09757644140782999,0.0,0.0,0.0,-0.0,12.91,1653.7474,-1.3431949e-23 -6.48000204672673,0.11349223911182733,6.48000204672673,-4.027101000134341e-24,0.6267813657407407,-4.027101000134341e-24,0.11780286258679391,0.0,0.0,0.0,-0.0,16.015,1646.9087,-8.054202e-24 -5.970974507382006,0.12478276046960297,5.970974507382006,2.8,0.624052199074074,-2.401969043718987e-24,0.12990760236838328,2.8,2.8,0.0,-0.0,17.715,1642.023,-4.803938e-24 -5.5377669550660045,0.12665371969663375,5.5377669550660045,0.31,0.6238902777777778,-1.377027707544746e-24,0.13221759004473646,0.31,0.31,0.0,-0.0,18.015,1637.5249,-2.7540554e-24 -5.070378768129708,0.12457654854433785,5.070378768129708,-7.453521201582587e-25,0.6207944444444444,-7.453521201582587e-25,0.1304687238899165,0.0,0.0,0.0,-0.0,17.875,1632.259,-1.4907042e-24 -4.7201345773620496,0.12614000107063122,4.7201345773620496,1.71,0.6199998842592592,-4.375272550655073e-25,0.13245299990198148,1.71,1.71,0.0,-0.0,18.15,1627.9844,-8.750545e-25 -4.4461243032410405,0.11956542585539819,4.4461243032410405,0.61,0.6183303240740741,-2.478384767012582e-25,0.1258254237977974,0.61,0.61,0.0,-0.0,17.335,1624.4128,-4.9567695e-25 -4.1549883433117225,0.10308347240212741,4.1549883433117225,-1.4407428935237992e-25,0.615999537037037,-1.4407428935237992e-25,0.10875130400603016,0.0,0.0,0.0,-0.0,14.985000000000001,1620.3684,-2.8814858e-25 -3.8797348428938325,0.11427192578708699,3.8797348428938325,-7.59862809753395e-26,0.6151532407407407,-7.59862809753395e-26,0.12086024920963867,0.0,0.0,0.0,-0.0,16.75,1616.275,-1.5197256e-25 -3.6537490665161423,0.12087010946598255,3.6537490665161423,-4.2409257790806836e-26,0.6120002314814815,-4.2409257790806836e-26,0.12812295404448631,0.0,0.0,0.0,-0.0,17.81,1612.691,-8.4818516e-26 -3.5647009621074157,0.12084804128070208,3.5647009621074157,3.36,0.6115356481481482,-1.65463374573393e-26,0.12821671285976094,3.36,3.36,0.0,-0.0,17.835,1611.2175,-3.3092675e-26 -3.5230926582429904,0.1104014609515264,3.5230926582429904,3.02,0.6080510416666667,2.546354794461973e-27,0.11718415191870177,3.02,3.02,0.0,-0.0,16.43,1610.5164,5.0927096e-27 -3.4186327936144187,0.11972674262196766,3.4186327936144187,9.31568539277415e-27,0.6078891203703704,9.31568539277415e-27,0.12722434138029254,0.0,0.0,0.0,-0.0,17.805,1608.7189,1.8631371e-26 -3.229444323703049,0.13282398674984336,3.229444323703049,5.650622219677774e-27,0.6042853009259259,5.650622219677774e-27,0.141440692776719,0.0,0.0,0.0,-0.0,19.695,1605.319,1.13012444e-26 -3.0569240619964186,0.14116850933133024,3.0569240619964186,3.1162469020628838e-27,0.6039916666666666,3.1162469020628838e-27,0.15063420425675725,0.0,0.0,0.0,-0.0,20.78,1602.0403,6.2324938e-27 -2.8897366770200166,0.14798375282126625,2.8897366770200166,1.6818568425350415e-27,0.6002854166666667,1.6818568425350415e-27,0.15823819358732583,0.0,0.0,0.0,-0.0,21.735,1598.6814,3.3637137e-27 -2.7271851013936463,0.15156237139811182,2.7271851013936463,3.0132553427260972e-28,0.5999998842592592,3.0132553427260972e-28,0.16241605268652612,0.0,0.0,0.0,-0.0,22.195,1595.2239,6.0265107e-28 -2.632431852590062,0.15055459299725882,2.632431852590062,-7.684842293716546e-28,0.5962851851851851,-7.684842293716546e-28,0.16154997111104558,0.0,0.0,0.0,-0.0,22.21,1593.112,-1.5369685e-27 -2.6659396924623158,0.14417265363742335,2.6659396924623158,8.31,0.5959997685185184,-1.1780076653255885e-27,0.15462862590057794,8.31,8.31,0.0,-0.0,21.46,1593.8674,-2.3560153e-27 -2.847531216459613,0.1175894995063655,2.847531216459613,6.95,0.5920523148148148,-7.950634589034081e-28,0.1258069352710946,6.95,6.95,0.0,-0.0,18.06,1597.8027,-1.5901269e-27 -2.868562189403993,0.08772052324275131,2.868562189403993,-4.720760998036759e-28,0.591992824074074,-4.720760998036759e-28,0.09382483823271294,0.0,0.0,0.0,-0.0,13.23,1598.2422,-9.441522e-28 -2.7342571171897516,0.08638219175349521,2.7342571171897516,-2.7194795260578584e-28,0.5880002314814815,-2.7194795260578584e-28,0.09255921744392961,0.0,0.0,0.0,-0.0,13.12,1595.3785,-5.438959e-28 -2.6104681044415514,0.10436871783245825,2.6104681044415514,-1.4837768736847586e-28,0.5879922453703703,-1.4837768736847586e-28,0.11202621138262776,0.0,0.0,0.0,-0.0,16.240000000000002,1592.6117,-2.9675537e-28 -2.482171387098503,0.10647020904035923,2.482171387098503,-7.736385956818181e-29,0.5840005787037037,-7.736385956818181e-29,0.11449826170263362,0.0,0.0,0.0,-0.0,16.715,1589.602,-1.5472772e-28 -2.3501620162701293,0.0920696809605479,2.3501620162701293,-9.344899475025757e-30,0.5835359953703704,-9.344899475025757e-30,0.09921561021177681,0.0,0.0,0.0,-0.0,14.370000000000001,1586.3384,-1.8689799e-29 -2.2635797235382062,0.09643197541425355,2.2635797235382062,0.59,0.5800003472222222,4.028856762708858e-29,0.10406353645197008,0.59,0.59,0.0,-0.0,15.25,1584.0967,8.0577135e-29 -2.2668532703548316,0.10804020372157178,2.2668532703548316,3.98,0.5787818287037036,5.422907148252978e-29,0.11658408040621744,3.98,3.98,0.0,-0.0,17.165,1584.183,1.0845814e-28 -2.4092149918437262,0.09758171426666731,2.4092149918437262,8.16,0.5760005787037037,3.404418515371261e-29,0.10505730540045537,8.16,8.16,0.0,-0.0,15.52,1587.8204,6.808837e-29 -2.6748368466419916,0.0858389884905115,2.6748368466419916,9.76,0.5738478009259259,2.0211563467812475e-29,0.09205288049245164,9.76,9.76,0.0,-0.0,13.425,1594.0664,4.0423127e-29 -2.7565241800459583,0.09165807655396735,2.7565241800459583,1.1293486931965771e-29,0.5719994212962963,1.1293486931965771e-29,0.09818256136057744,0.0,0.0,0.0,-0.0,14.524999999999999,1595.8629,2.2586974e-29 -2.7262766130162266,0.10166635567926718,2.7262766130162266,5.03,0.5680513888888888,5.804707337241865e-30,0.10894824348805623,5.03,5.03,0.0,-0.0,16.35,1595.204,1.1609415e-29 -2.804657730298063,0.10790799135535219,2.804657730298063,4.54,0.5679997685185185,3.4160881462014785e-30,0.11551436053125252,4.54,4.54,0.0,-0.0,17.325,1596.8967,6.832176e-30 -2.918777397208389,0.11485252696525827,2.918777397208389,6.21,0.5639996527777777,2.0247408710427806e-30,0.12276530285921924,6.21,6.21,0.0,-0.0,18.465,1599.2786,4.0494817e-30 -3.083261730354242,0.10155787618070003,3.083261730354242,8.11,0.5639916666666667,1.1115436965556324e-30,0.10833293631928267,8.11,8.11,0.0,-0.0,16.375,1602.5526,2.2230874e-30 -3.2558039538928036,0.10199260990415121,3.2558039538928036,5.4,0.56,5.207370855074905e-31,0.10857635322299937,5.4,5.4,0.0,-0.0,16.53,1605.8044,1.0414742e-30 -3.375650654738549,0.09229405599666081,3.375650654738549,6.69,0.558330324074074,2.836226657093391e-31,0.09811983574362011,6.69,6.69,0.0,-0.0,14.91,1607.9633,5.6724533e-31 -3.3050536735577056,0.08290019478755298,3.3050536735577056,0.3,0.5560002314814815,1.3872538982006036e-31,0.0882022521504265,0.3,0.3,0.0,-0.0,13.245,1606.701,2.7745078e-31 -3.1356582185162463,0.08176986797590045,3.1356582185162463,5.334985813184355e-32,0.5520519675925926,5.334985813184355e-32,0.08717010412258484,0.0,0.0,0.0,-0.0,13.17,1603.559,1.0669972e-31 -2.986142597758382,0.09220002975208512,2.986142597758382,2.9020892529216585e-32,0.5520004629629629,2.9020892529216585e-32,0.09846825944629116,0.0,0.0,0.0,-0.0,15.155,1600.6412,5.8041785e-32 -2.883240669848639,0.0824828489867565,2.883240669848639,1.24,0.5479999999999999,1.565835176301678e-32,0.08820586132744805,1.24,1.24,0.0,-0.0,13.48,1598.547,3.1316704e-32 -2.7772235881160854,0.08810509451177125,2.7772235881160854,0.17,0.5479921296296296,8.852740526222774e-33,0.09435025359392792,0.17,0.17,0.0,-0.0,14.575,1596.3097,1.7705481e-32 -2.6593813795922605,0.10760929895762844,2.6593813795922605,0.02,0.5439997685185185,4.2790709027197696e-33,0.11542420408321942,0.02,0.02,0.0,-0.0,18.035,1593.7203,8.558142e-33 -2.54206165023656,0.10708078448640874,2.54206165023656,1.2899484705065112e-33,0.540794212962963,1.2899484705065112e-33,0.11505182219975611,0.0,0.0,0.0,-0.0,18.08,1591.0259,2.579897e-33 -2.4337101933782974,0.08801790168855024,2.4337101933782974,4.364356140278796e-34,0.54,4.364356140278796e-34,0.09472478284198571,0.0,0.0,0.0,-0.0,14.879999999999999,1588.4246,8.728712e-34 -2.3344056789284027,0.08709586730837506,2.3344056789284027,1.591698788717554e-34,0.5359994212962963,1.591698788717554e-34,0.09387953179151551,0.0,0.0,0.0,-0.0,14.855,1585.9366,3.1833976e-34 -2.242583900029464,0.10676886046022332,2.242583900029464,-7.762585297436884e-35,0.5359994212962963,-7.762585297436884e-35,0.11525896788254486,0.0,0.0,0.0,-0.0,18.26,1583.5402,-1.5525171e-34 -2.1577673123894443,0.10450461601877338,2.1577673123894443,-2.0623361914843253e-34,0.5319998842592593,-2.0623361914843253e-34,0.11297894697267938,0.0,0.0,0.0,-0.0,18.05,1581.2377,-4.1246724e-34 -2.0866458135996355,0.07662286508524078,2.0866458135996355,-1.6724264372321255e-34,0.5298482638888888,-1.6724264372321255e-34,0.08294124105267071,0.0,0.0,0.0,-0.0,13.030000000000001,1579.2361,-3.3448529e-34 -2.159995797094342,0.07532465610597916,2.159995797094342,0.46,0.5279998842592593,-8.147222201882803e-35,0.08142959510922367,0.46,0.46,0.0,-0.0,12.79,1581.2993,-1.6294444e-34 -2.41160457466099,0.0752753030407193,2.41160457466099,13.62,0.5240002314814816,-2.1066694041728924e-35,0.08103901127421127,13.62,13.62,0.0,-0.0,12.834999999999999,1587.8796,-4.2133388e-35 -2.841112663296411,0.08089593423095508,2.841112663296411,13.78,0.5240002314814816,-1.7129150689779155e-37,0.08655643634641888,13.78,13.78,0.0,-0.0,13.9,1597.668,-3.4258301e-37 -3.069371306508146,0.08466547774466662,3.069371306508146,3.06,0.520000462962963,-1.0189203229628926e-37,0.09032882282702297,3.06,3.06,0.0,-0.0,14.719999999999999,1602.283,-2.0378406e-37 -2.9807273425982594,0.07561551671569096,2.9807273425982594,0.05,0.5183310185185186,-6.087134030343717e-38,0.08076171570698927,0.05,0.05,0.0,-0.0,12.955,1600.5328,-1.2174268e-37 -2.8609498133052,0.07374929970268189,2.8609498133052,0.93,0.5159998842592592,-3.567687953550641e-38,0.07888921513390683,0.93,0.93,0.0,-0.0,12.650000000000002,1598.0835,-7.135376e-38 -3.408515449441832,0.0691958769052923,3.408515449441832,25.01,0.511999537037037,-2.130935657169481e-38,0.07353719301053593,25.01,25.01,0.0,-0.0,11.649999999999999,1608.5419,-4.2618713e-38 -4.954769109504927,0.061958155138326865,4.954769109504927,29.51,0.511999537037037,-1.2738516301630929e-38,0.06494343384769981,29.51,29.51,0.0,-0.0,9.685,1630.8816,-2.5477033e-38 -5.756819706673698,0.06584325626804773,5.756819706673698,1.06,0.5079996527777778,-7.62994402138684e-39,0.0686386261675463,1.06,1.06,0.0,-0.0,10.68,1639.8417,-1.5259888e-38 -5.284752246337893,0.06690164718000835,5.284752246337893,-4.558544416116562e-39,0.5067805555555556,-4.558544416116562e-39,0.06995994071153831,0.0,0.0,0.0,-0.0,11.02,1634.732,-9.117089e-39 -4.850205165972859,0.07049220387642834,4.850205165972859,-2.6913191169483683e-39,0.503999537037037,-2.6913191169483683e-39,0.07394642764301232,0.0,0.0,0.0,-0.0,11.989999999999998,1629.6078,-5.382638e-39 -4.480710964344473,0.06757817121137226,4.480710964344473,-1.3865624096739773e-39,0.4999997685185186,-1.3865624096739773e-39,0.0710960570857738,0.0,0.0,0.0,-0.0,11.489999999999998,1624.8756,-2.773125e-39 -4.163515524880205,0.06408213493785965,4.163515524880205,-6.817751431464176e-40,0.4999997685185186,-6.817751431464176e-40,0.06760045068488185,0.0,0.0,0.0,-0.0,10.69,1620.4908,-1.36355e-39 -3.8968464796894784,0.06755715215848924,3.8968464796894784,-3.0765998238713872e-40,0.4959997685185185,-3.0765998238713872e-40,0.0714405285873115,0.0,0.0,0.0,-0.0,11.695,1616.5378,-6.1532e-40 -3.680884986260565,0.05127243471717306,3.680884986260565,8.286578468784806e-41,0.49366840277777774,8.286578468784806e-41,0.054334163300984624,0.0,0.0,0.0,-0.0,7.48,1613.1329,1.65732e-40 -3.5069483413557023,0.04628928752329873,3.5069483413557023,0.02,0.4919994212962963,3.846564284571623e-40,0.049141513646949464,0.02,0.02,0.0,-0.0,5.994999999999999,1610.2421,7.69313e-40 -3.3682069099481984,0.048597360211511155,3.3682069099481984,3.28,0.48800034722222224,4.919587564151387e-40,0.05166915612774191,3.28,3.28,0.0,-0.0,6.885,1607.8314,9.83918e-40 -3.2560901312641457,0.045009466590900264,3.2560901312641457,3.2527150148677303e-40,0.48800034722222224,3.2527150148677303e-40,0.047914724146992264,0.0,0.0,0.0,-0.0,5.734999999999999,1605.8097,6.50543e-40 -3.1503572995473252,0.046853380710678905,3.1503572995473252,5.123217250494747e-41,0.4840002314814815,5.123217250494747e-41,0.049938968224806285,0.0,0.0,0.0,-0.0,6.49,1603.8383,1.02464e-40 -3.065377420577497,0.04855311296705172,3.065377420577497,-2.1781643199618524e-40,0.48167002314814816,-2.1781643199618524e-40,0.05180338558628324,0.0,0.0,0.0,-0.0,7.125,1602.2052,-4.35633e-40 -3.020372062803331,0.059063959706793207,3.020372062803331,3.11,0.4800005787037037,-4.0525271328580845e-40,0.06305261705796862,3.11,3.11,0.0,-0.0,10.235,1601.3219,-8.10505e-40 -3.034462485889024,0.07065921504316079,3.034462485889024,7.1,0.4760001157407408,-4.344557732823376e-40,0.0754178224989495,7.1,7.1,0.0,-0.0,13.225,1601.5999,-8.68912e-40 -3.097487253024423,0.05844097536405844,3.097487253024423,2.11,0.4760001157407408,-2.7418856726827614e-40,0.06232895813829716,2.11,2.11,0.0,-0.0,10.184999999999999,1602.8275,-5.48377e-40 -3.0937033951609236,0.04734714316052992,3.0937033951609236,1.28,0.4719996527777777,-1.1279541793812966e-40,0.050499371279994106,1.28,1.28,0.0,-0.0,7.045,1602.7545,-2.25591e-40 -3.0701619221522916,0.06262169449665589,3.0701619221522916,3.72,0.4701513888888889,-7.29866305143581e-42,0.06680987102920692,3.72,3.72,0.0,-0.0,11.48,1602.2983,-1.4597e-41 -3.0891473978523836,0.061686680335428797,3.0891473978523836,4.2,0.46799976851851854,1.4491528068815096e-41,0.06579720417264748,4.2,4.2,0.0,-0.0,11.31,1602.6665,2.8983e-41 -3.0341399696858753,0.03364570786263283,3.0341399696858753,7.096175409324674e-42,0.463999537037037,7.096175409324674e-42,0.035911750205548036,0.0,0.0,0.0,-0.0,2.1799999999999997,1601.5935,1.4192e-41 -2.8985215102557422,0.03143715340248507,2.8985215102557422,1.809018012511642e-42,0.463999537037037,1.809018012511642e-42,0.033611759872988194,0.0,0.0,0.0,-0.0,1.21,1598.8627,3.618e-42 -2.753956069182247,0.037876944525864,2.753956069182247,-1.233142648605839e-43,0.46,-1.233142648605839e-43,0.04057454933523995,0.0,0.0,0.0,-0.0,4.12,1595.8073,-2.47e-43 -2.651592316049521,0.0528430371041316,2.651592316049521,-6.445972935894159e-44,0.45920532407407405,-6.445972935894159e-44,0.05668688517287105,0.0,0.0,0.0,-0.0,9.26,1593.5452,-1.29e-43 -2.6356138254179275,0.05802360257762645,2.6356138254179275,3.58,0.45599953703703705,-2.0318827732709848e-44,0.06225839190531091,3.58,3.58,0.0,-0.0,10.844999999999999,1593.1842,-4.0e-44 -2.7636722766433137,0.05249688730821795,2.7636722766433137,8.16,0.45200810185185186,7.006492321624085e-46,0.05622831696357315,8.16,8.16,0.0,-0.0,9.379999999999999,1596.0176,1.0e-45 -3.0698732610951653,0.043928647024230105,3.0698732610951653,10.48,0.452,1.401298464324817e-45,0.04686678556062499,10.48,10.48,0.0,-0.0,6.5649999999999995,1602.2927,3.0e-45 -3.420128515054647,0.034157588716201,3.420128515054647,12.33,0.4480001157407407,1.4012984643215763e-45,0.03629603601190757,12.33,12.33,0.0,-0.0,2.855,1608.745,3.0e-45 -3.6184827554659273,0.033360129967838964,3.6184827554659273,1.4012984641799506e-45,0.4480001157407407,1.4012984641799506e-45,0.0353746192137475,0.0,0.0,0.0,-0.0,2.475,1612.1118,3.0e-45 -3.6407101365320305,0.038079724873847316,3.6407101365320305,4.77,0.4440001157407408,1.401298464324817e-45,0.04037005388094566,4.77,4.77,0.0,-0.0,4.575,1612.4775,3.0e-45 -3.898336277767186,0.04178573386577951,3.898336277767186,8.71,0.44166932870370373,1.401298464324817e-45,0.04418707222001069,8.71,8.71,0.0,-0.0,6.02,1616.5607,3.0e-45 -3.9425948681430705,0.03080019173711819,3.9425948681430705,0.28024753899766947,0.4400003472222222,0.0002475389976695167,0.03255663616000846,0.28,0.27999999999999997,6.217248937900877e-17,-0.0,1.52,1617.2349,0.00049385923 -3.739338309015048,0.02648908558521613,3.739338309015048,-0.0009790202415686407,0.43611064814814815,-0.0009790202415686407,0.028054515014720838,0.0,0.0,0.0,-0.0,-0.51,1614.0739,0.003248215 -3.5117831352163718,0.029356661601388667,3.5117831352163718,0.001486158535350385,0.43600011574074077,0.001486158535350385,0.03116395080543664,0.0,0.0,0.0,-0.0,1.015,1610.3243,0.002930067 -3.315202719884206,0.030231917421991217,3.315202719884206,0.0008665792083891815,0.43200000000000005,0.0008665792083891815,0.03216179839224256,0.0,0.0,0.0,-0.0,1.6100000000000003,1606.8842,0.0017183954 -3.129421660989187,0.03299181783455042,3.129421660989187,0.0004918176174772379,0.43194837962962956,0.0004918176174772379,0.03517326758061889,0.0,0.0,0.0,-0.0,2.9299999999999997,1603.4401,0.0009788446 -2.934192599165972,0.03454243695379388,2.934192599165972,0.00017885402782377648,0.428,0.00017885402782377648,0.03691498036093348,0.0,0.0,0.0,-0.0,3.7849999999999997,1599.5931,0.00035707056 -2.7838107496905566,0.03798193116274261,2.7838107496905566,-3.642842649109708e-5,0.4261517361111111,-3.642842649109708e-5,0.04067060223386897,0.0,0.0,0.0,-0.0,5.305,1596.4512,-7.288341e-5 -2.729979344805199,0.038467768693958106,2.729979344805199,2.999911471725157,0.42400011574074076,-8.85282748430081e-5,0.041220941403849444,3.0,3.0,0.0,-0.0,5.585,1595.285,-0.00017721357 -2.9288476065066447,0.03832865622149001,2.9288476065066447,9.99994786927678,0.42121863425925926,-5.2130723220194815e-5,0.04096404415858582,10.0,10.0,0.0,-0.0,5.59,1599.4843,-0.000104315855 -3.1135853444255748,0.03921172048128164,3.1135853444255748,3.1599692738809346,0.41999976851851856,-3.072611906535865e-5,0.04181233665083688,3.16,3.16,0.0,-0.0,5.945,1603.1371,-6.147113e-5 -3.122565561101426,0.040394753664483016,3.122565561101426,2.599981874717823,0.4164640046296296,-1.812528217673889e-5,0.04306921065555106,2.6,2.6,0.0,-0.0,6.525,1603.3091,-3.6257137e-5 -3.076261518145199,0.03661666426751659,3.076261518145199,-1.0302808415304168e-5,0.4159996527777778,-1.0302808415304168e-5,0.039062719091371954,0.0,0.0,0.0,-0.0,5.06,1602.4169,-2.060774e-5 -3.155345384789038,0.03401542202134097,3.155345384789038,-3.467431539004646e-6,0.4121109953703704,-3.467431539004646e-6,0.03625341414326496,0.0,0.0,0.0,-0.0,4.08,1603.9327,-6.9351036e-6 -3.365866907676832,0.03454652475693701,3.365866907676832,11.000001359592442,0.41200046296296294,1.3595924418291606e-6,0.036731128023365464,11.0,11.0,0.0,-0.0,4.28,1607.7899,2.719148e-6 -3.703843928455071,0.030729341727319105,3.703843928455071,10.990002654837763,0.4080084490740741,2.654837763838493e-6,0.03255684697961438,10.99,10.99,0.0,-0.0,2.63,1613.5043,5.3095346e-6 -3.7901960155360075,0.024816822613145807,3.7901960155360075,0.17890335957678985,0.40794895833333333,-0.0010966197492187947,0.02627029538476817,0.18,0.17999997932600864,2.067399135885495e-8,-0.0,-0.4950000000000001,1614.8806,0.00036666443 -3.6987598386262297,0.028069202050282432,3.6987598386262297,5.040261085970177,0.40399999999999997,0.0002610859701794287,0.029740018081753097,5.04,5.039999999999997,2.2382096176443156e-15,-0.0,1.4449999999999998,1613.4222,0.0005208173 -3.6008412861347066,0.02699404478477899,3.6008412861347066,0.13015463893928977,0.4037145833333334,0.00015463893930280152,0.028629294049242453,0.13,0.12999999999998696,1.3054557435054904e-14,-0.0,0.8999999999999999,1611.82,0.00030902168 -3.4135005991826604,0.023433512652670612,3.4135005991826604,0.3999792742674734,0.40000023148148145,-1.4857143031611673e-5,0.024902368774382934,0.4,0.399994131410505,5.868589495028331e-6,-0.0,-0.98,1608.6292,0.0010021231 -3.2405002699515206,0.022362864105728915,3.2405002699515206,0.08928657653932363,0.39971435185185183,-4.215432510087523e-8,0.02381058550706038,0.09,0.08928661869364873,0.0007133813063512734,-0.0,-1.61,1605.5231,0.0010020011 -3.0746962037242374,0.019697543907974877,3.0746962037242374,3.3746169041355276e-6,0.3960082175925926,-1.0818471169268525e-14,0.021013771605968096,0.34,3.374616914953999e-6,0.3399966253830851,-0.0,-3.245,1602.3865,0.17509276 -2.9262325940437792,0.024117207591503875,2.9262325940437792,-0.008059535952086166,0.39571446759259266,-0.008059535952086166,0.0257763095341547,0.0,0.0,0.0,-0.0,-0.32999999999999985,1599.4309,0.27968806 -2.7859283172511264,0.021691892378619217,2.7859283172511264,-3.71263843987168e-8,0.3921108796296296,-3.71263843987168e-8,0.023226760883913584,0.0,0.0,0.0,-0.0,-1.69,1596.4966,0.28008518 -2.7164975279756858,0.027893062661679707,2.7164975279756858,2.441860313810587,0.3919487268518519,0.15186031381058715,0.029894934606145722,2.29,2.29,0.0,-0.0,1.9650000000000003,1594.9894,0.17757805 -2.716925114213992,0.04726528638456935,2.716925114213992,3.106872535478525,0.3884644675925926,0.05687253547852549,0.05065719515650661,3.05,3.05,0.0,-0.0,10.12,1594.9988,0.08193683 -2.8547694231417005,0.06420716405507937,2.8547694231417005,8.415904298614056,0.38799999999999996,0.02590429861405441,0.06868759682090388,8.39,8.39,0.0,-0.0,15.030000000000001,1597.9543,0.042790603 -3.16347595628935,0.04304785634803565,3.16347595628935,9.413319549887355,0.3848466435185185,0.013319549887353998,0.04587572778096841,9.4,9.4,0.0,-0.0,8.715,1604.0864,0.02381634 -3.2340287484489556,0.028961523792568195,3.2340287484489556,0.007336792015254618,0.3840003472222222,0.007336792015254618,0.03083872067442614,0.0,0.0,0.0,-0.0,2.725,1605.4037,0.013732197 -3.069647371373425,0.02146037888667848,3.069647371373425,0.06979473671161379,0.38166932870370374,-1.1671559158312634e-7,0.02289580494673966,0.07,0.06979485342720537,0.00020514657279462615,-0.0,-1.51,1602.2883,0.016920641 -2.9190816841322706,0.016268115939423795,2.9190816841322706,0.0,0.3799997685185186,-0.0,0.01738884166169418,0.0,0.0,0.0,-0.0,-5.305000000000001,1599.2848,0.04331643 -2.7823885576005827,0.012307229427996511,2.7823885576005827,0.0,0.37920590277777777,-0.0,0.013178687492669061,0.0,0.0,0.0,-0.0,-9.035,1596.4207,0.045784783 -2.6580118897374065,0.011263077551519831,2.6580118897374065,0.0,0.37611087962962964,-0.0,0.012081268700578145,0.0,0.0,0.0,-0.0,-10.08,1593.6896,0.045715775 -2.5442345385730696,0.013339030821907101,2.5442345385730696,0.0,0.3759486111111111,-0.0,0.014331521692227976,0.0,0.0,0.0,-0.0,-7.795,1591.0769,0.045670226 -2.43966210928765,0.017362273201157692,2.43966210928765,0.0,0.37321898148148147,-0.0,0.01868354623960153,0.0,0.0,0.0,-0.0,-4.0600000000000005,1588.5704,0.045670226 -2.3398803648780206,0.02319483444386193,2.3398803648780206,-0.03405064826061632,0.3719998842592593,-0.03405064826061632,0.024999213013396717,0.0,0.0,0.0,-0.0,0.1200000000000001,1586.0765,0.052038673 -2.359471004445118,0.02310458610990333,2.359471004445118,5.7416533292087815,0.37120578703703705,-0.048346668876046564,0.024894128921393744,5.79,5.789999998084828,1.9151716079690574e-9,-0.0,0.08999999999999986,1586.5745,0.08845506 -2.585440740384349,0.023649423780532863,2.585440740384349,10.167829362002468,0.3684645833333333,0.037829362066984284,0.025393746377458042,10.13,10.129999999935484,6.451701173304515e-11,-0.0,0.485,1592.0364,0.061027694 -2.8107755942432053,0.022849407342614637,2.8107755942432053,5.35090820575432,0.3680003472222222,-0.039091787703827416,0.024458055250792737,5.39,5.389999993458147,6.541852433650241e-9,-0.0,-0.040000000000000036,1597.0269,0.063527405 -2.8133909395892367,0.02142332872919189,2.8133909395892367,0.45995415794303407,0.36615196759259255,-4.2957461536886694e-5,0.02293078011022206,0.46,0.45999711540457094,2.8845954291145673e-6,-0.0,-0.895,1597.0824,0.070958495 -2.695716190019347,0.01865257284142833,2.695716190019347,0.00016351271056122045,0.3644642361111111,-9.825441190078805e-13,0.019997009068360428,0.15,0.00016351271154376457,0.14983648728845625,-0.0,-2.775,1594.5308,0.14689851 -2.5786640237632414,0.011578436686263308,2.5786640237632414,0.0,0.36400011574074076,-0.0,0.01243365745058864,0.54,0.0,0.54,-0.0,-9.265,1591.8796,0.49272716 -2.4714890194829615,0.010318132852181916,2.4714890194829615,0.0,0.3621513888888889,-0.0,0.01109793757959755,0.0,0.0,0.0,-0.0,-10.7,1589.3445,0.7648425 -2.3728439515672655,0.011765160418957494,2.3728439515672655,0.0,0.3604638888888889,-0.0,0.012673723074956757,0.02,0.0,0.02,-0.0,-8.879999999999999,1586.912,0.776779 -2.2817245324216495,0.011958677335297842,2.2817245324216495,0.0,0.3599998842592593,-0.0,0.012901195729979886,0.71,0.0,0.71,-0.0,-8.625,1584.5735,1.1425881 -2.197308695968306,0.012562476719994818,2.197308695968306,0.0,0.35920578703703704,-0.0,0.01357186606542235,0.0,0.0,0.0,-0.0,-7.914999999999999,1582.3221,1.4913704 -2.1189374906490253,0.010087967875227819,2.1189374906490253,0.0,0.3572189814814815,-0.0,0.010913491060523885,0.0,0.0,0.0,-0.0,-10.74,1580.1532,1.4914439 -2.0459903864122366,0.010170271136292675,2.0459903864122366,0.0,0.35611041666666665,-0.0,0.011017116342239992,0.0,0.0,0.0,-0.0,-10.575,1578.061,1.4937545 -1.9777323212128006,0.01580238667032791,1.9777323212128006,1.6011427628193075e-10,0.3559483796296296,-0.0,0.017140209226296572,12.37,1.6011427628193075e-10,12.369999999839886,-0.0,-4.6,1576.0347,7.677909 -2.4274056033347153,0.029602631064590833,2.4274056033347153,27.291227607727052,0.3546476851851852,8.76122760772705,0.03186143086002813,18.53,18.53,0.0,-0.0,4.3950000000000005,1588.2697,8.761228 -3.231306374764819,0.026396879640012843,3.231306374764819,13.58183442105234,0.35321898148148145,3.2218344210523404,0.028108724747721407,10.36,10.36,0.0,-0.0,2.59,1605.3534,3.2218344 -3.397511229690154,0.019761957783285294,3.397511229690154,-1.0131393605350626e-7,0.35211030092592593,-1.0131393605350626e-7,0.0210043352276935,0.0,0.0,0.0,-0.0,-1.59,1608.3488,1.990076 -3.2138769296425544,0.015506240640932263,3.2138769296425544,0.0,0.35199988425925927,-0.0,0.016515147587903293,0.0,0.0,0.0,-0.0,-4.960000000000001,1605.0304,1.9900812 -3.0490424140600014,0.01314868795857193,3.0490424140600014,0.0,0.35171423611111113,-0.0,0.014031690109386914,0.0,0.0,0.0,-0.0,-7.18,1601.8861,1.9885147 -2.9002757507407035,0.014562002269524432,2.9002757507407035,4.996003610813204e-17,0.3506474537037037,-0.0,0.015568949781135703,0.3,4.996003610813204e-17,0.29999999999999993,-0.0,-5.72,1598.8988,2.1366735 -2.8367198992038745,0.019803575147541042,2.8367198992038745,10.043074785913175,0.34966921296296294,-8.387533507715984e-7,0.021190509223902917,10.05,10.043075624666526,0.006924375333474031,-0.0,-1.365,1597.5756,5.7803917 -3.1133880575426973,0.020182743779742284,3.1133880575426973,7.049611521110367,0.3488465277777778,-8.964125041182238e-6,0.021521362977357916,7.05,7.049620485235408,0.0003795147645913543,-0.0,-1.1099999999999999,1603.1333,5.782574 -3.06200829686382,0.01675921302893404,3.06200829686382,0.0,0.3481105324074074,-0.0,0.01788185163872976,0.0,0.0,0.0,-0.0,-3.7,1602.1395,7.156521 -2.911948249083377,0.013830003519704228,2.911948249083377,0.0,0.3480079861111111,-0.0,0.014784116143302911,0.0,0.0,0.0,-0.0,-6.325,1599.1387,7.1793942 -2.7759125666570306,0.014830292440907875,2.7759125666570306,9.525713551283843e-16,0.34794849537037037,-0.0,0.015881789560198853,0.12,9.525713551283843e-16,0.11999999999999904,-0.0,-5.34,1596.2815,7.23184 -2.6519608990910903,0.015257490465686295,2.6519608990910903,0.0,0.34771435185185184,-0.0,0.01636724821681149,0.0,0.0,0.0,-0.0,-4.915,1593.5535,7.274438 -2.53827653089129,0.017177258513986462,2.53827653089129,-1.6132997790610387e-14,0.3472057870370371,-1.6132997790610387e-14,0.018456957007719814,0.0,0.0,0.0,-0.0,-3.22,1590.9369,7.275324 -2.440649689229292,0.020365199551381136,2.440649689229292,0.4197832921404087,0.3466476851851852,-0.00021602507952007678,0.021914662556033346,0.42,0.4199993172199288,6.827800711817211e-7,-0.0,-0.76,1588.5946,7.322563 -2.354484626591743,0.019867616662853707,2.354484626591743,-1.0293319120655236e-5,0.3466476851851852,-1.0293319120655236e-5,0.021408147997681794,0.0,0.0,0.0,-0.0,-1.095,1586.4481,7.3218937 -2.344519500848132,0.022450625261992298,2.344519500848132,5.137426543587946,0.3461518518518519,1.3674265435910369,0.02419530568488179,3.77,3.769999999996909,3.0910218828950065e-12,-0.0,0.6900000000000001,1586.1948,7.14183 -2.5575879872130782,0.02677625713714501,2.5575879872130782,7.514150714874076,0.3461518518518519,3.4141507148740766,0.028762893650591693,4.1,4.1,0.0,-0.0,3.23,1591.3895,3.4141507 -2.732502755488894,0.02331239841473892,2.732502755488894,6.095028390578542,0.3456693287037037,1.2550283905785733,0.024980023701101202,4.84,4.839999999999969,3.116618074727739e-14,-0.0,1.175,1595.3402,1.2550902 -2.8004529851260305,0.016198856807104808,2.8004529851260305,3.976777561476297e-8,0.3456693287037037,-0.0,0.01734167746250012,10.28,3.976777561476297e-8,10.279999960232225,-0.0,-4.03,1596.8071,4.5360713 -2.674415884202006,0.011079744341403653,2.674415884202006,0.0,0.3461518518518519,-0.0,0.011881878080001292,0.0,0.0,0.0,-0.0,-9.2,1594.057,9.683814 -2.5592928223649785,0.0122027675780279,2.5592928223649785,0.0,0.3461518518518519,-0.0,0.013107811431328836,0.0,0.0,0.0,-0.0,-7.885,1591.4293,9.701778 -2.453584848885151,0.014515946471355555,2.453584848885151,2.736699755701011e-16,0.3461518518518519,-0.0,0.01561727237037026,0.17,2.736699755701011e-16,0.16999999999999973,-0.0,-5.5,1588.9103,9.77874 -2.365280037458723,0.01859567287098702,2.365280037458723,5.582668692145869,0.3466476851851852,-1.4123297036291035e-9,0.02003412795344353,8.87,5.582668693558198,3.2873313064418017,-0.0,-2.04,1586.7213,14.069088 -2.2869167294553923,0.015476765687414682,2.2869167294553923,1.0586814425117552e-10,0.3472057870370371,-0.0,0.016695130630183123,9.99,1.0586814425117552e-10,9.989999999894133,-0.0,-4.62,1584.7092,23.160803 -2.20214674790938,0.00856093564072127,2.20214674790938,0.0,0.34771435185185184,-0.0,0.009248035288884394,0.0,0.0,0.0,-0.0,-12.545,1582.4535,28.118849 -2.1235074903152937,0.010076727300615594,2.1235074903152937,0.0,0.34794849537037037,-0.0,0.010900443086372173,2.27,0.0,2.27,-0.0,-10.41,1580.2819,29.252592 -2.050218657644202,0.012066833173389413,2.050218657644202,0.0,0.34800000000000003,-0.0,0.01307057771537609,0.37,0.0,0.37,-0.0,-7.995,1578.1843,30.563915 -1.9816899042272325,0.017412458797045727,1.9816899042272325,0.001125416244920616,0.3480079861111111,-2.7020499152964585e-13,0.01888515874270308,4.86,0.0011254162451908212,4.858874583754809,-0.0,-2.93,1576.154,33.2122 -1.9176102550046221,0.010716378669700188,1.9176102550046221,0.0,0.3484641203703704,-0.0,0.011637235311271657,5.37,0.0,5.37,-0.0,-9.565,1574.191,38.330296 -1.8575836409882305,0.013681619237803744,1.8575836409882305,0.0,0.3482361111111111,-0.0,0.014875225757657694,5.12,0.0,5.12,-0.0,-6.25,1572.2917,43.52996 -1.801305484908132,0.004360258721801322,1.801305484908132,0.0,0.34921886574074074,-0.0,0.0047462008311522745,0.0,0.0,0.0,-0.0,-20.884999999999998,1570.4545,46.07873 -1.7484076727618847,0.006168750458872976,1.7484076727618847,0.0,0.35015162037037034,-0.0,0.00672238812723171,0.03,0.0,0.03,-0.0,-16.675,1568.6744,46.185345 -1.6984722217877584,0.00835229618292904,1.6984722217877584,0.0,0.35120578703703703,-0.0,0.009111956130085528,1.3,0.0,1.3,-0.0,-12.865,1566.944,46.87871 -1.6512551619499398,0.009909370240075679,1.6512551619499398,0.0,0.3519482638888889,-0.0,0.01082227831846879,0.93,0.0,0.93,-0.0,-10.655,1565.2603,47.932293 -1.606529178992211,0.012717949883748848,1.606529178992211,0.0,0.35200787037037035,-0.0,0.013904167568223508,11.63,0.0,11.63,-0.0,-7.315,1563.6204,54.291855 -1.564101278070959,0.013827713435021989,1.564101278070959,0.0,0.35284641203703704,-0.0,0.01513290943248707,19.36,0.0,19.36,-0.0,-6.195,1562.022,69.73247 -1.523855668363249,0.01221917484974186,1.523855668363249,0.0,0.3541518518518519,-0.0,0.013385881920190376,3.02,0.0,3.02,-0.0,-7.91,1560.4652,80.61224 -1.4856777596149768,0.009152452088492408,1.4856777596149768,0.0,0.35571446759259256,-0.0,0.010036088730861476,0.0,0.0,0.0,-0.0,-11.78,1558.95,82.15391 -1.4493922253855434,0.009637100470500625,1.4493922253855434,0.0,0.35600000000000004,-0.0,0.010577547560675703,0.0,0.0,0.0,-0.0,-11.105,1557.4733,82.116844 -1.4148082008783434,0.011192146741538168,1.4148082008783434,0.0,0.3564643518518519,-0.0,0.012295730905601163,17.62,0.0,17.62,-0.0,-9.135,1556.031,90.92439 -1.381792015403681,0.013491290942985554,1.381792015403681,0.0,0.35815185185185183,-0.0,0.014835022902755565,21.21,0.0,21.21,-0.0,-6.67,1554.6208,108.60249 -1.3502775085596435,0.01090990750251579,1.3502775085596435,0.0,0.3599482638888889,-0.0,0.01200717534126933,1.57,0.0,1.57,-0.0,-9.58,1553.243,118.501785 -1.3201831781898845,0.010763347642452294,1.3201831781898845,0.0,0.36000787037037035,-0.0,0.011856149931249275,2.15,0.0,2.15,-0.0,-9.75,1551.897,120.82549 -1.29137974034651,0.011971833559249028,1.29137974034651,0.0,0.36121863425925926,-0.0,0.013198537425394062,0.0,0.0,0.0,-0.0,-8.365,1550.5796,121.61087 -1.2638090712229484,0.010584400488612186,1.2638090712229484,0.0,0.3637142361111111,-0.0,0.01167864698832098,0.02,0.0,0.02,-0.0,-10.085,1549.2908,121.71223 -1.2373251705583703,0.01613196075457675,1.2373251705583703,9.73857644526177e-10,0.36400011574074076,-0.0,0.017814273137571453,7.93,9.73857644526177e-10,7.929999999026142,-0.0,-4.375,1548.026,126.0546 -1.2119981086282254,0.0067133931546818106,1.2119981086282254,0.0,0.36521898148148146,-0.0,0.0074194152060998485,12.64,0.0,12.64,-0.0,-15.969999999999999,1546.7909,136.20567 -1.1878035761222885,0.0026286417448581063,1.1878035761222885,0.0,0.36771435185185186,-0.0,0.002907349469741251,0.0,0.0,0.0,-0.0,-27.165,1545.5867,142.40202 -1.1645870584689053,0.0026416189582989954,1.1645870584689053,0.0,0.3680083333333333,-0.0,0.0029239327318618877,0.0,0.0,0.0,-0.0,-27.11,1544.4078,142.59978 -1.142237506449511,0.005550202003014565,1.142237506449511,0.0,0.3696696759259259,-0.0,0.0061479670805812394,2.88,0.0,2.88,-0.0,-18.445,1543.2506,144.06848 -1.1206787381270502,0.007867779572165433,1.1206787381270502,0.0,0.3719483796296296,-0.0,0.008721582220963395,1.83,0.0,1.83,-0.0,-14.16,1542.1127,146.36745 -1.0998910249920988,0.008100341617554966,1.0998910249920988,0.0,0.37211041666666667,-0.0,0.008985897186502109,0.31,0.0,0.31,-0.0,-13.785,1540.9945,147.43463 -1.0798111075194088,0.013067035689806866,1.0798111075194088,0.0,0.3746479166666667,-0.0,0.014505924238482865,7.9,0.0,7.9,-0.0,-7.585000000000001,1539.8942,151.67447 -1.060483549940105,0.005524017970480435,1.060483549940105,0.0,0.3760002314814815,-0.0,0.006136598603977413,0.53,0.0,0.53,-0.0,-18.675,1538.8156,155.65744 -1.0418553893878417,0.009088122187510268,1.0418553893878417,0.0,0.3772188657407407,-0.0,0.010102889167028383,8.61,0.0,8.61,-0.0,-12.455,1537.7572,160.38153 -1.0238055391543044,0.012650158955963492,1.0238055391543044,0.0,0.3799997685185186,-0.0,0.014072209006448047,4.88,0.0,4.88,-0.0,-8.185,1536.7135,167.10825 -1.0064098251975506,0.004978004915070643,1.0064098251975506,0.0,0.3804640046296296,-0.0,0.0055412908744926085,0.0,0.0,0.0,-0.0,-20.055,1535.6901,169.49031 -0.9896312661132493,0.007122179089015823,0.9896312661132493,0.0,0.383714699074074,-0.0,0.007933275742149559,6.69,0.0,6.69,-0.0,-15.75,1534.686,172.77051 -0.9733850853752783,0.007154343476601295,0.9733850853752783,0.0,0.38400833333333334,-0.0,0.007974239498529564,6.03,0.0,6.03,-0.0,-15.695,1533.6975,179.11707 -0.9576991997921402,0.0030011485517220013,0.9576991997921402,0.0,0.3866476851851852,-0.0,0.0033472010750966452,0.18,0.0,0.18,-0.0,-26.14,1532.7273,182.09799 -0.942528065291011,0.004280251875106591,0.942528065291011,0.0,0.38799999999999996,-0.0,0.004776765525203753,4.99,0.0,4.99,-0.0,-22.060000000000002,1531.7737,184.64716 -0.9277755057244043,0.010392853456260351,0.9277755057244043,0.0,0.3901519675925926,-0.0,0.011605573388977232,6.74,0.0,6.74,-0.0,-11.09,1530.8315,190.48904 -0.9133994713297816,0.013862545280009193,0.9133994713297816,0.0,0.39200034722222227,-0.0,0.015489572759028344,2.01,0.0,2.01,-0.0,-7.31,1529.8989,194.86269 -0.8994557632798575,0.010868430764020364,0.8994557632798575,0.0,0.3936696759259259,-0.0,0.012151340080324516,0.0,0.0,0.0,-0.0,-10.605,1528.9802,195.79446 -0.8859766054501751,0.007289433803042378,0.8859766054501751,0.0,0.39600023148148145,-0.0,0.008154687720163718,0.0,0.0,0.0,-0.0,-15.8,1528.0785,195.93234 -0.8728921202213668,0.010697919248336159,0.8728921202213668,0.0,0.3972188657407407,-0.0,0.011974722593974994,8.99,0.0,8.99,-0.0,-10.915,1527.19,200.9005 -0.8601485466374901,0.013299851591419004,0.8601485466374901,0.0,0.40000023148148145,-0.0,0.014895763828921217,7.53,0.0,7.53,-0.0,-8.11,1526.3116,208.76387 -0.8477677542019189,0.010954933809026235,0.8477677542019189,0.0,0.4012189814814815,-0.0,0.012276432410017349,0.0,0.0,0.0,-0.0,-10.72,1525.4458,212.2861 -0.8357957704585092,0.004964984592468757,0.8357957704585092,0.0,0.40399999999999997,-0.0,0.005567012622495436,0.0,0.0,0.0,-0.0,-20.72,1524.5964,212.36145 -0.8241680355485088,0.005008511256348147,0.8241680355485088,0.0,0.40521898148148144,-0.0,0.005618900648951061,0.0,0.0,0.0,-0.0,-20.645,1523.7598,212.36145 -0.8128416201331216,0.009997892133665316,0.8128416201331216,0.0,0.4080003472222223,-0.0,0.01122242601034365,0.0,0.0,0.0,-0.0,-12.110000000000001,1522.9333,212.36145 -0.8018216316816995,0.006488296791257069,0.8018216316816995,0.0,0.40966990740740744,-0.0,0.007286878693307626,0.0,0.0,0.0,-0.0,-17.619999999999997,1522.1182,212.36145 -0.7910997989052898,0.007957379714894838,0.7910997989052898,0.0,0.41200046296296294,-0.0,0.00894149960858234,0.0,0.0,0.0,-0.0,-15.139999999999999,1521.3142,212.27766 -0.7806473849299586,0.008695872274783105,0.7806473849299586,0.0,0.41464768518518513,-0.0,0.009776428884609828,0.14,0.0,0.14,-0.0,-14.09,1520.5199,212.30788 -0.7704842492444838,0.005991519193228097,0.7704842492444838,0.0,0.4159996527777778,-0.0,0.006739499287051968,2.27,0.0,2.27,-0.0,-18.765,1519.7373,213.55042 -0.76055291391142,0.013338828877354299,0.76055291391142,0.0,0.419205324074074,-0.0,0.015011698830680046,8.57,0.0,8.57,-0.0,-8.635,1518.9625,218.97148 -0.7508631570476351,0.007309427037731797,0.7508631570476351,0.0,0.41999976851851856,-0.0,0.008230277358940991,0.0,0.0,0.0,-0.0,-16.42,1518.1968,222.9973 -0.7414741560457965,0.003664955499675873,0.7414741560457965,0.0,0.42400011574074076,-0.0,0.004128714555178245,0.0,0.0,0.0,-0.0,-24.795,1517.4453,223.0698 -0.7323222996406539,0.006908934590411678,0.7323222996406539,0.0,0.42400011574074076,-0.0,0.007786988989854583,2.53,0.0,2.53,-0.0,-17.225,1516.7036,224.25777 -0.7232996654446412,0.019742405051203917,0.7232996654446412,4.695746656747901e-6,0.428,-1.0988774061149451e-15,0.02226232834152694,7.78,4.695746657846778e-6,7.779995304253343,-0.0,-3.5250000000000004,1515.9633,229.43968 -0.7144378451508953,0.015034447013314169,0.7144378451508953,0.0,0.42846388888888887,-0.0,0.01696168309435371,7.93,0.0,7.93,-0.0,-7.285,1515.227,237.26045 -0.7058158742704712,0.014895887938083264,0.7058158742704712,0.0,0.43200000000000005,-0.0,0.016813408303251228,5.87,0.0,5.87,-0.0,-7.515,1514.502,243.89093 -0.6973877549778846,0.016494364262414896,0.6973877549778846,0.0,0.4336695601851852,-0.0,0.018626476766594794,13.81,0.0,13.81,-0.0,-6.175,1513.7845,253.89143 -0.6891884579525063,0.01000852568564371,0.6891884579525063,0.0,0.43600011574074077,-0.0,0.011307534498206958,8.44,0.0,8.44,-0.0,-12.870000000000001,1513.0782,264.89017 -0.6812317545152073,0.006886857955000419,0.6812317545152073,0.0,0.4399488425925926,-0.0,0.007784272532691554,0.0,0.0,0.0,-0.0,-17.685000000000002,1512.3848,268.79037 -0.6734729017945764,0.006823295383025489,0.6734729017945764,0.0,0.4400003472222222,-0.0,0.007715917296129343,0.0,0.0,0.0,-0.0,-17.795,1511.7007,268.97696 -0.6658786343940899,0.009112527924819105,0.6658786343940899,0.0,0.4440001157407408,-0.0,0.01030924527640036,2.23,0.0,2.23,-0.0,-14.285,1511.0234,270.3633 -0.6583861510786714,0.019751319414214315,0.6583861510786714,3.2208967645774855e-8,0.4440081018518519,-0.0,0.022355191133440085,5.05,3.2208967645774855e-8,5.049999967791032,-0.0,-3.9799999999999995,1510.3477,273.90085 -0.6507518063620299,0.020243335502212245,0.6507518063620299,2.7170293481704187e-7,0.4480001157407407,-0.0,0.022922642408104765,4.49,2.7170293481704187e-7,4.489999728297065,-0.0,-3.755,1509.6511,278.62497 -0.6369703621700215,0.01800518617437525,0.6369703621700215,0.0,0.4501516203703704,-0.0,0.020405541506128378,0.0,0.0,0.0,-0.0,-5.435,1508.3728,280.9534 -0.642793290391233,0.025799727562178392,0.642793290391233,2.856371263274794,0.452,-0.0036285564478448777,0.029228678649148777,2.86,2.8599998197226393,1.802773608738928e-7,-0.0,-0.43499999999999983,1508.9163,281.18738 -0.643379554991542,0.01672791411640575,0.643379554991542,0.0,0.45599953703703705,-0.0,0.018950478617672007,0.09,0.0,0.09,-0.0,-6.625,1508.9707,281.93796 -0.6363899377970537,0.009401012236871143,0.6363899377970537,0.0,0.45599953703703705,-0.0,0.01065468958895942,0.0,0.0,0.0,-0.0,-14.205,1508.3184,281.93512 -0.6295624682972691,0.013280490405097446,0.6295624682972691,0.0,0.46,-0.0,0.015057948655541631,2.36,0.0,2.36,-0.0,-9.83,1507.6742,283.1418 -0.6228489856572837,0.015280688672023403,0.6228489856572837,0.0,0.4604638888888889,-0.0,0.01733321390516467,10.29,0.0,10.29,-0.0,-7.965,1507.0339,289.4208 -0.6162788924292238,0.012232625464553703,0.6162788924292238,0.0,0.463999537037037,-0.0,0.013881563682429217,10.33,0.0,10.33,-0.0,-11.015,1506.4006,299.6789 -0.6098902908434846,0.006805611615830653,0.6098902908434846,0.0,0.46799976851851854,-0.0,0.007726188897499351,0.0,0.0,0.0,-0.0,-18.535,1505.7783,304.73474 -0.6036579842220768,0.006505287669551999,0.6036579842220768,0.0,0.46799976851851854,-0.0,0.0073882506407881325,0.0,0.0,0.0,-0.0,-19.08,1505.1649,304.726 -0.5975418817682979,0.009091138531569653,0.5975418817682979,0.0,0.4719996527777777,-0.0,0.010329252632411226,4.38,0.0,4.38,-0.0,-15.035,1504.5568,307.1349 -0.5914889550672074,0.018579021126246008,0.5914889550672074,1.393885007416884e-15,0.4719996527777777,-0.0,0.02111781583291072,2.79,1.393885007416884e-15,2.7899999999999987,-0.0,-5.615,1503.9487,310.6866 -0.5855320504229002,0.013666767499058655,0.5855320504229002,0.0,0.4760001157407408,-0.0,0.015540556610919768,0.31,0.0,0.31,-0.0,-9.865,1503.3442,312.18237 -0.5797346695128274,0.009774348894650259,0.5797346695128274,0.0,0.4800005787037037,-0.0,0.011118861009757418,0.0,0.0,0.0,-0.0,-14.315,1502.75,312.32022 -0.5740639157593751,0.0102697269388838,0.5740639157593751,0.0,0.4800005787037037,-0.0,0.011686946262821933,0.39,0.0,0.39,-0.0,-13.68,1502.163,312.55563 -0.5684707083947891,0.016687819840837483,0.5684707083947891,0.0,0.4840002314814815,-0.0,0.018998129134404927,5.42,0.0,5.42,-0.0,-7.4,1501.5782,315.65332 -0.5629757232686906,0.012530864596472508,0.5629757232686906,0.0,0.4840002314814815,-0.0,0.014271186304620945,0.0,0.0,0.0,-0.0,-11.205,1500.9982,318.31693 -0.5575999560745253,0.00991407041321462,0.5575999560745253,0.0,0.48800034722222224,-0.0,0.011295276299055444,0.04,0.0,0.04,-0.0,-14.325000000000001,1500.4252,318.33923 -0.5523218069960518,0.012496497541201756,0.5523218069960518,0.0,0.4919994212962963,-0.0,0.014242873046750204,0.0,0.0,0.0,-0.0,-11.445,1499.8572,318.32776 -0.54713947146897,0.012757608412456121,0.54713947146897,0.0,0.4919994212962963,-0.0,0.014545933932875834,0.0,0.0,0.0,-0.0,-11.17,1499.2942,318.29614 -0.5420500779393133,0.01466532025099622,0.5420500779393133,0.0,0.4959997685185185,-0.0,0.01672729008760519,0.0,0.0,0.0,-0.0,-9.435,1498.7361,318.25787 -0.537051933479891,0.016552656325003863,0.537051933479891,0.0,0.4959997685185185,-0.0,0.01888696060586558,0.0,0.0,0.0,-0.0,-7.81,1498.1829,318.2266 -0.5321422954003145,0.013080010510089555,0.5321422954003145,0.0,0.4999997685185186,-0.0,0.01493005773073618,0.0,0.0,0.0,-0.0,-11.04,1497.6344,318.21588 -0.5273184975066985,0.012831654497838295,0.5273184975066985,0.0,0.503999537037037,-0.0,0.014651894461919099,0.0,0.0,0.0,-0.0,-11.39,1497.0906,318.2393 -0.5225790156739213,0.01453644394033647,0.5225790156739213,0.0,0.503999537037037,-0.0,0.016604497748750908,0.0,0.0,0.0,-0.0,-9.745000000000001,1496.5514,318.3104 -0.5179202417896611,0.014448757062233149,0.5179202417896611,0.0,0.5079996527777778,-0.0,0.016510235840495522,0.2,0.0,0.2,-0.0,-9.925,1496.0166,318.53574 -0.5144678967911054,0.02499778362568427,0.5144678967911054,0.2294948257651353,0.5079996527777778,-3.5275965455324267e-11,0.028571974785167153,6.58,0.22949482580041128,6.350505174199589,-0.0,-2.425,1495.6172,321.78387 -0.5309330386364309,0.028632459442536073,0.5309330386364309,-0.0007447626041426463,0.511999537037037,-0.0007447626041426463,0.03268522274412575,0.0,0.0,0.0,-0.0,-0.6200000000000001,1497.4985,322.43564 -0.5291940686221005,0.028592305034434315,0.5291940686221005,-0.00023619108983262492,0.5159998842592592,-0.00023619108983262492,0.03264365558684244,0.0,0.0,0.0,-0.0,-0.75,1497.3026,322.22653 -0.5784846578529648,0.03645006742922588,0.5784846578529648,10.344868035017196,0.5159998842592592,6.844868035017197,0.04146751933907684,3.5,3.5,0.0,-0.0,2.7350000000000003,1502.6211,318.34656 -0.6956337621639307,0.037164854408514074,0.6956337621639307,13.028713710161622,0.520000462962963,7.018713710161621,0.041973068272913465,6.01,6.01,0.0,-0.0,2.8000000000000003,1513.6342,311.48395 -0.745455688300626,0.026105306825997127,0.745455688300626,-7.252599677757474e-11,0.520000462962963,-7.252599677757474e-11,0.029402443911798005,0.0,0.0,0.0,-0.0,-2.3499999999999996,1517.7651,309.5284 -0.7360244697316264,0.02549536535167644,0.7360244697316264,-1.0971739876798368e-12,0.5240002314814816,-1.0971739876798368e-12,0.028729859167053437,0.0,0.0,0.0,-0.0,-2.785,1517.0048,309.53995 -0.7267675342979287,0.02403114717583147,0.7267675342979287,0.0,0.5279998842592593,-0.0,0.02709338104434537,0.0,0.0,0.0,-0.0,-3.7150000000000003,1516.2489,309.53995 -0.7177385127059113,0.02507870088723126,0.7177385127059113,-4.731900361568419e-14,0.5279998842592593,-4.731900361568419e-14,0.0282883509491117,0.0,0.0,0.0,-0.0,-3.11,1515.5023,309.53995 -0.7115623965928741,0.03014029729194209,0.7115623965928741,-0.0008867232504347375,0.5319998842592593,-0.0008867232504347375,0.0340093282666002,0.0,0.0,0.0,-0.0,-0.6000000000000001,1514.9862,309.2578 -0.7408863351221117,0.037148913601940246,0.7408863351221117,6.002385146874222,0.5319998842592593,6.002385146874222,0.04185099866835603,0.0,0.0,0.0,-0.0,2.42,1517.398,305.97614 -0.8500912475534058,0.042447828116934615,0.8500912475534058,12.649827585869755,0.5359994212962963,10.789827585869755,0.04756323232700325,1.86,1.86,0.0,-0.0,4.210000000000001,1525.6093,297.88388 -1.0278839424800261,0.04216239107970749,1.0278839424800261,12.080717442989755,0.5395353009259259,9.960717442989754,0.04689477233745497,2.12,2.12,0.0,-0.0,3.9,1536.9509,287.5397 -1.1677144176875343,0.03919703231915092,1.1677144176875343,6.831495290774611,0.54,6.831495290774611,0.0433815791534185,0.0,0.0,0.0,-0.0,2.7300000000000004,1544.568,279.85522 -1.164220524836721,0.021821512666559455,1.164220524836721,0.0,0.5439997685185185,-0.0,0.024153904406136014,0.0,0.0,0.0,-0.0,-5.720000000000001,1544.389,278.82013 -1.144403899102346,0.022150755262392244,1.144403899102346,0.0,0.5439997685185185,-0.0,0.024534625809809082,0.0,0.0,0.0,-0.0,-5.505,1543.3638,278.82388 -1.145332941558868,0.024101177794056815,1.145332941558868,0.0,0.5479999999999999,-0.0,0.02669411516581185,0.0,0.0,0.0,-0.0,-4.44,1543.4122,278.85202 -1.16336176498382,0.028166647285379657,1.16336176498382,-1.0648227091562149e-10,0.5498481481481481,-1.0648227091562149e-10,0.03117812818446256,0.0,0.0,0.0,-0.0,-2.31,1544.345,278.89474 -1.1910590121757516,0.03340412927798933,1.1910590121757516,4.4059737139973505,0.5520004629629629,-0.07402628400234758,0.036941971360973554,4.48,4.479999997999698,2.000301861926346e-9,-0.0,0.06000000000000005,1545.7501,278.93634 -1.2206501030148353,0.030969405693394157,1.2206501030148353,3.2597444818355488,0.5559922453703704,-6.488874201272453e-6,0.03421694321659438,3.26,3.25975097070975,0.0002490292902498603,-0.0,-1.145,1547.2157,278.9611 -1.2265626944362278,0.028298987234139365,1.2265626944362278,-3.362029197110071e-11,0.5560002314814815,-3.362029197110071e-11,0.031260666805018496,0.0,0.0,0.0,-0.0,-2.4299999999999997,1547.5043,278.96307 -1.2019815932587714,0.03359637058395989,1.2019815932587714,-0.05185613429773259,0.56,-0.05185613429773259,0.037141473689584426,0.0,0.0,0.0,-0.0,-0.07000000000000028,1546.2953,278.88104 -1.2659627739501234,0.04162829163463652,1.2659627739501234,7.647232689466831,0.5600517361111111,7.647232689466831,0.045928932590562466,0.0,0.0,0.0,-0.0,3.035,1549.3925,274.5218 -1.376495073380617,0.0395166695024663,1.376495073380617,5.386647729685911,0.5639996527777777,5.186647729685911,0.04345893994425046,0.2,0.2,0.0,-0.0,2.115,1554.3915,268.27478 -1.4425116380045473,0.0381844942686367,1.4425116380045473,3.6086589449600672,0.5663305555555556,3.6086589449600672,0.04191841882162365,0.0,0.0,0.0,-0.0,1.5250000000000001,1557.1891,264.11685 -1.5890110301583527,0.04625302453886219,1.5890110301583527,10.936927772509753,0.5679997685185185,10.936927772509753,0.05058828132906262,0.0,0.0,0.0,-0.0,4.265,1562.9656,256.79767 -1.8663563213054601,0.04790028580543563,1.8663563213054601,11.846274380829753,0.5715351851851852,11.846274380829753,0.052069865715145984,0.0,0.0,0.0,-0.0,4.6049999999999995,1572.5731,245.41498 -2.2257464676685843,0.04954313964424166,2.2257464676685843,13.062721175789754,0.5719994212962963,12.902721175789754,0.05349794457710194,0.16,0.16,0.0,-0.0,5.0,1583.0901,232.94493 -2.6736506676729808,0.050669578796016385,2.6736506676729808,13.840412526029754,0.5760005787037037,13.250412526029754,0.05433845707057358,0.59,0.59,0.0,-0.0,5.13,1594.0399,219.88293 -3.120874616712932,0.047571013241603156,3.120874616712932,10.482254468349756,0.5760005787037037,10.482254468349756,0.05072161959725763,0.0,0.0,0.0,-0.0,4.095000000000001,1603.2767,207.95288 -3.3502102274847236,0.0416139851209304,3.3502102274847236,4.798838088946283,0.5800003472222222,4.798838088946283,0.04425317415560407,0.0,0.0,0.0,-0.0,1.9699999999999998,1607.5115,200.42091 -3.4194085300755175,0.041433696014213525,3.4194085300755175,4.544755836243741,0.5807946759259259,4.544755836243741,0.044028010550757966,0.0,0.0,0.0,-0.0,1.8749999999999996,1608.7324,195.77275 -3.5568912296667956,0.044682154617470424,3.5568912296667956,7.246050362257339,0.5840005787037037,7.246050362257339,0.047410489204708715,0.0,0.0,0.0,-0.0,2.885,1611.0865,189.89804 -3.944037661515057,0.049784633208045374,3.944037661515057,12.611364611229755,0.5853530092592593,11.311364611229754,0.05262299354548665,1.3,1.3,0.0,-0.0,4.405,1617.2567,180.65114 -5.1035481412940715,0.045298561308324825,5.1035481412940715,26.53196822167878,0.5880002314814815,6.99196822167878,0.047429760635267625,19.54,19.54,0.0,-0.0,2.79,1632.6484,171.5445 -6.35196909507809,0.04885340275130908,6.35196909507809,11.44941688306975,0.5903311342592593,9.51941688306975,0.05074565770823905,1.93,1.93,0.0,-0.0,3.7349999999999994,1645.7169,163.27667 -7.783211634447436,0.0700389123400281,7.783211634447436,26.52150773138975,0.5920008101851852,23.80150773138975,0.07221921430818576,2.72,2.72,0.0,-0.0,9.075,1657.8523,146.51662 -10.674100933697142,0.07050164374657551,10.674100933697142,29.38044363690976,0.5943310185185184,23.44044363690976,0.07187853268741269,5.94,5.94,0.0,-0.0,8.940000000000001,1676.715,122.81369 -12.365893946669027,0.04853429248502375,12.365893946669027,11.958060318508693,0.5959997685185184,7.9280603185086935,0.04922422237579929,4.03,4.03,0.0,-0.0,3.1399999999999997,1685.5011,107.146866 -12.978312112815395,0.05332628229263953,12.978312112815395,18.821719309389753,0.5987809027777777,11.431719309389754,0.05399186118000954,7.39,7.39,0.0,-0.0,4.45,1688.3878,97.42453 -13.1587529273703,0.05084638491536871,13.1587529273703,9.46580767338975,0.5999998842592592,9.42580767338975,0.051455881241404086,0.04,0.04,0.0,-0.0,3.6999999999999993,1689.2124,87.01602 -13.099310684004248,0.06015221039755012,13.099310684004248,16.228570583709754,0.6027810185185185,16.018570583709753,0.06088300109177026,0.21,0.21,0.0,-0.0,6.165,1688.942,74.20892 -14.621816312238828,0.05942384563104733,14.621816312238828,24.453069650509754,0.6039996527777778,15.283069650509756,0.05991284902214054,9.17,9.17,0.0,-0.0,5.890000000000001,1695.5085,58.567886 -15.947997276204328,0.04769562042574714,15.947997276204328,16.942976311024733,0.6063304398148148,6.202976311024732,0.04794150765309972,10.74,10.74,0.0,-0.0,2.495,1700.6934,47.826126 -15.064381925844454,0.0494226102642455,15.064381925844454,7.580368968266034,0.6079995370370371,7.580368968266034,0.04977703281091558,0.0,0.0,0.0,-0.0,3.0100000000000002,1697.2893,40.91925 -14.179494055558637,0.058316223027465114,14.179494055558637,14.173131878589754,0.6098476851851852,14.173131878589754,0.05885979565958795,0.0,0.0,0.0,-0.0,5.475,1693.6741,30.014944 -14.318099399038168,0.06056368226729902,14.318099399038168,15.152031898498535,0.6120002314814815,15.152031898498535,0.0611072438696768,0.0,0.0,0.0,-0.0,5.99,1694.255,15.152032 -13.306786827474447,0.0626015838802875,13.306786827474447,5.711810245513916,0.6133524305555556,5.571810245513916,0.0633269438599374,0.14,0.14,0.0,-0.0,6.5,1689.8805,5.5718102 -11.716210466793758,0.07825020614144951,11.716210466793758,4.757569987535341,0.6159914351851852,2.047569987535341,0.07951460505204548,2.71,2.71,0.0,-0.0,9.959999999999999,1682.2781,2.04757 -10.892948053539895,0.07660707817955562,10.892948053539895,9.341505360679438,0.6162851851851852,0.7515053606794384,0.07804678836956098,8.59,8.59,0.0,-0.0,9.66,1677.927,0.75191313 -10.185059260189218,0.06567150330455639,10.185059260189218,4.29404061797599,0.6195356481481481,0.2640406179759898,0.0670660872166516,4.03,4.03,0.0,-0.0,7.225,1673.9142,0.28008354 -10.589217978418157,0.07390390583054247,10.589217978418157,20.780595787775184,0.6199998842592592,0.09059578777518205,0.07536867310989355,20.69,20.69,0.0,-0.0,9.02,1676.2382,0.118339576 -13.623315541981553,0.059057740873021354,13.623315541981553,32.767644696104384,0.6227818287037037,0.03764469610438774,0.05969244689659704,32.73,32.73,0.0,-0.0,5.37,1691.2844,0.05859654 -14.490752434706696,0.06123088980250769,14.490752434706696,3.6284250301515772,0.6240006944444445,0.01842503015157755,0.06175434849687549,3.61,3.61,0.0,-0.0,5.8549999999999995,1694.9708,0.031827454 -12.043966773918147,0.061913486935782525,12.043966773918147,0.00982511945921451,0.6253526620370371,0.00982511945921451,0.06285234978756997,0.0,0.0,0.0,-0.0,6.09,1683.9258,0.018029341 -10.51616025945165,0.07102637327997288,10.51616025945165,6.385526270234465,0.6278895833333333,0.005526270234464494,0.07245197880752285,6.38,6.38,0.0,-0.0,8.21,1675.8247,0.010501626 -9.611546565116699,0.06619909402589126,9.611546565116699,3.543174536115198,0.6280518518518519,0.0031745361151982337,0.06774495916204105,3.54,3.54,0.0,-0.0,7.17,1670.453,0.0061594388 -8.73475747420798,0.06352275712188207,8.73475747420798,3.4518555014663614,0.6303303240740741,0.0018555014663613658,0.06522919233753216,3.45,3.45,0.0,-0.0,6.535,1664.7405,0.003644595 -7.888375574728577,0.06458777360132827,7.888375574728577,3.811066524849224,0.6319916666666667,0.001066524849223696,0.06656619991770649,3.81,3.81,0.0,-0.0,6.805,1658.6538,0.0021107737 -7.099991066949449,0.06227951757309272,7.099991066949449,1.4905524685623144,0.6322856481481481,0.0005524685623143847,0.06443151270616591,1.49,1.49,0.0,-0.0,6.3,1652.3655,0.0010988993 -6.959167705563924,0.07102396506994252,6.959167705563924,10.310313159623135,0.6347809027777778,0.0003131596231338368,0.07353135533857465,10.31,10.31,0.0,-0.0,8.27,1651.1691,0.00062437006 -7.112628322582988,0.06283460445116522,7.112628322582988,6.930187486183832,0.6360001157407408,0.00018748618383215992,0.06500160215909141,6.93,6.93,0.0,-0.0,6.345,1652.4717,0.00037427197 -6.64011122535175,0.05778452965255106,6.64011122535175,0.00011072639066311007,0.6362856481481481,0.00011072639066311007,0.059926242567027346,0.0,0.0,0.0,-0.0,5.1049999999999995,1648.3663,0.00022120812 -5.9745882550041856,0.0775575092339283,5.9745882550041856,6.602032685840534e-5,0.6387810185185185,6.602032685840534e-5,0.08074102808280062,0.0,0.0,0.0,-0.0,9.63,1642.0591,0.0001319536 -5.424091736508105,0.0855860843970872,5.424091736508105,3.888638216629495e-5,0.6399917824074074,3.888638216629495e-5,0.08941349612070078,0.0,0.0,0.0,-0.0,11.209999999999999,1636.2863,7.7742545e-5 -4.966348508311264,0.10456576194895188,4.966348508311264,0.380004808437729,0.6400512731481481,4.808437728975383e-6,0.10959459993685401,0.38,0.38,0.0,-0.0,14.485000000000001,1631.021,9.616413e-6 -4.575279260186492,0.11852153426738084,4.575279260186492,3.6599397433257232,0.6418483796296296,-6.02566742768896e-5,0.12459571117134902,3.66,3.66,0.0,-0.0,16.55,1626.1229,-0.00012058605 -4.238963303961034,0.10111561430431956,4.238963303961034,-0.00014202973532410258,0.6435354166666667,-0.00014202973532410258,0.10659663724032649,0.0,0.0,0.0,-0.0,13.945,1621.5634,-0.00028446407 -3.9478850024389347,0.071678419617563,3.9478850024389347,-0.00022590195303459198,0.6439998842592592,-0.00022590195303459198,0.07576227784459497,0.0,0.0,0.0,-0.0,8.51,1617.315,-0.00045282918 -3.6943018824217346,0.07921799525736443,3.6943018824217346,-0.00029735691451283485,0.6442856481481481,-0.00029735691451283485,0.08393718420410354,0.0,0.0,0.0,-0.0,10.105,1613.3502,-0.00059649284 -3.4718923172677063,0.08345020953403529,3.4718923172677063,-0.00034195588805776216,0.6458482638888889,-0.00034195588805776216,0.08862521724059932,0.0,0.0,0.0,-0.0,10.925,1609.6421,-0.0006862666 -3.275408462340434,0.08583710090521478,3.275408462340434,-0.00034528044144083105,0.6471538194444444,-0.00034528044144083105,0.09135759006968318,0.0,0.0,0.0,-0.0,11.375,1606.163,-0.00069296185 -3.100508798580651,0.07570356675900097,3.100508798580651,-0.00029283256919866935,0.6479927083333333,-0.00029283256919866935,0.08073706856631573,0.0,0.0,0.0,-0.0,9.405,1602.8857,-0.00058739027 -2.9434314357888307,0.08820492888853607,2.9434314357888307,-0.00018166397910664836,0.6480521990740741,-0.00018166397910664836,0.09425221215837519,0.0,0.0,0.0,-0.0,11.85,1599.7809,-0.0003639904 -2.8008021854990464,0.09912632713630219,2.8008021854990464,-7.632003170867788e-5,0.6487947916666666,-7.632003170867788e-5,0.10611914146570137,0.0,0.0,0.0,-0.0,13.74,1596.8146,-0.00015275674 -2.6704664409955083,0.12118004168570641,2.6704664409955083,-5.915127757595747e-6,0.6498487268518519,-5.915127757595747e-6,0.12996023733701806,0.0,0.0,0.0,-0.0,17.044999999999998,1593.9688,-1.1830955e-5 -2.5488932627112177,0.14211817958497275,2.5488932627112177,1.0499808843582576e-5,0.6507814814814814,1.0499808843582576e-5,0.1526820016752369,0.0,0.0,0.0,-0.0,19.735,1591.1862,2.0997413e-5 -2.3970036547387217,0.11816365178507972,2.3970036547387217,0.7800052458231396,0.6515357638888889,5.245823139494173e-6,0.1272403131539044,0.78,0.78,0.0,-0.0,16.65,1587.517,1.0491096e-5 -2.2913009804161013,0.10052457652525823,2.2913009804161013,1.4316832777981716e-6,0.6519921296296297,1.4316832777981716e-6,0.10843026549369174,0.0,0.0,0.0,-0.0,14.01,1584.8236,2.8633256e-6 -2.343254676825734,0.1093399001723536,2.343254676825734,6.899999929992483,0.6520001157407407,-7.000751695594154e-8,0.11783930411977696,6.9,6.9,0.0,-0.0,15.37,1586.1626,-1.4001513e-7 -2.640542421463507,0.10454158315122633,2.640542421463507,11.589999957895962,0.6520517361111111,-4.210403762580552e-8,0.11216358161123827,11.59,11.59,0.0,-0.0,14.56,1593.2958,-8.420811e-8 -2.787329528905149,0.08078827534081556,2.787329528905149,-2.4815670466534004e-8,0.6522856481481482,-2.4815670466534004e-8,0.08650304115464959,0.0,0.0,0.0,-0.0,10.385,1596.5266,-4.9631353e-8 -2.682546139713702,0.09209627234626239,2.682546139713702,-1.4600073683374534e-8,0.6527943287037037,-1.4600073683374534e-8,0.09875248201875916,0.0,0.0,0.0,-0.0,12.48,1594.2383,-2.9200152e-8 -2.532104733355063,0.11160271721353368,2.532104733355063,-8.655285516340042e-9,0.653352662037037,-8.655285516340042e-9,0.11992803191124443,0.0,0.0,0.0,-0.0,15.625,1590.7915,-1.7310573e-8 -2.374833362643232,0.10778433180443461,2.374833362643232,-4.856173449572696e-9,0.653848611111111,-4.856173449572696e-9,0.11610429805649458,0.0,0.0,0.0,-0.0,15.080000000000002,1586.962,-9.712347e-9 -2.5311474053035994,0.11148258800599471,2.5311474053035994,13.999999997158117,0.653848611111111,-2.841883758603195e-9,0.11980064203160391,14.0,14.0,0.0,-0.0,15.595,1590.7689,-5.6837677e-9 -2.6988532911207934,0.09802024464526211,2.6988532911207934,0.2099999983080007,0.653848611111111,-1.6919992898030525e-9,0.10508074991396346,0.21,0.21,0.0,-0.0,13.454999999999998,1594.6002,-3.3839986e-9 -2.572814704991381,0.10855227884041845,2.572814704991381,0.20999999899113023,0.6543310185185185,-1.0088697553282219e-9,0.11658023313044996,0.21,0.21,0.0,-0.0,15.135000000000002,1591.744,-2.0177395e-9 -2.65504708059949,0.13012124533325753,2.65504708059949,8.799999999397256,0.6543310185185185,-6.027442397723336e-10,0.13957956594262477,8.8,8.8,0.0,-0.0,18.125,1593.6229,-1.2054885e-9 -2.989733787780497,0.11577065432280313,2.989733787780497,11.039999999646191,0.653848611111111,-3.5380784288161367e-10,0.12363579147309867,11.04,11.04,0.0,-0.0,16.115,1600.713,-7.076157e-10 -3.0952467518494395,0.10350004061954521,3.0952467518494395,-2.114089593357288e-10,0.653848611111111,-2.114089593357288e-10,0.11038870563929677,0.0,0.0,0.0,-0.0,14.255,1602.7843,-4.2281792e-10 -2.951432192742239,0.09784972187592994,2.951432192742239,0.029999999873963665,0.653352662037037,-1.2603633398824334e-10,0.10454765300399835,0.03,0.03,0.0,-0.0,13.385,1599.943,-2.5207267e-10 -3.335512588198412,0.1066746940340901,3.335512588198412,17.22999999992527,0.653352662037037,-7.473001378788105e-11,0.11345861277815211,17.23,17.23,0.0,-0.0,14.715,1607.2489,-1.4946003e-10 -4.063687864415989,0.12881831665261684,4.063687864415989,14.869999999955274,0.6527943287037037,-4.4725244321400204e-11,0.13601250480872476,14.87,14.87,0.0,-0.0,17.73,1619.0415,-8.945049e-11 -4.289560974798737,0.11560620563097608,4.289560974798737,-2.6658003922207563e-11,0.6522856481481482,-2.6658003922207563e-11,0.1218194636591324,0.0,0.0,0.0,-0.0,15.91,1622.272,-5.3316008e-11 -3.992959136245627,0.15486260276936134,3.992959136245627,-1.5825131133566966e-11,0.6520517361111111,-1.5825131133566966e-11,0.16361726856532652,0.0,0.0,0.0,-0.0,20.885,1617.9929,-3.1650262e-11 -3.912097959154436,0.16749796432436426,3.912097959154436,6.409999999990537,0.6519921296296297,-9.463933975876483e-12,0.1771006649534334,6.41,6.41,0.0,-0.0,22.255000000000003,1616.7711,-1.8927868e-11 -3.851975360880772,0.17230177060966972,3.851975360880772,-5.609075269909633e-12,0.6518894675925926,-5.609075269909633e-12,0.1822841562762642,0.0,0.0,0.0,-0.0,22.76,1615.8462,-1.12181505e-11 -3.59818521035934,0.17434856745312957,3.59818521035934,-3.337805942984663e-12,0.6511538194444445,-3.337805942984663e-12,0.18491533654447914,0.0,0.0,0.0,-0.0,23.03,1611.7759,-6.675612e-12 -3.5646572440160944,0.15898178168007435,3.5646572440160944,4.44999999999801,0.6503311342592593,-1.9902640733002977e-12,0.16867572284775081,4.45,4.45,0.0,-0.0,21.455,1611.2168,-3.980528e-12 -4.0720027021389535,0.13644058692272124,4.0720027021389535,16.69999999999885,0.6493528935185184,-1.1462909614436575e-12,0.1440495993869239,16.7,16.7,0.0,-0.0,18.785,1619.1636,-2.292582e-12 -4.828551864056178,0.12555015973048406,4.828551864056178,14.299999999999319,0.6482863425925927,-6.812725839149763e-13,0.1317239051337818,14.3,14.3,0.0,-0.0,17.31,1629.3406,-1.3625452e-12 -4.991526724425204,0.11671733617918442,4.991526724425204,-4.023743686317379e-13,0.6480008101851852,-4.023743686317379e-13,0.12230792811224234,0.0,0.0,0.0,-0.0,16.085,1631.323,-8.0474874e-13 -4.597365843820609,0.13012838752288486,4.597365843820609,-2.3813335201251976e-13,0.647890162037037,-2.3813335201251976e-13,0.13677322074785506,0.0,0.0,0.0,-0.0,17.95,1626.4105,-4.762667e-13 -4.261786463610589,0.12846753044377676,4.261786463610589,-1.374725122148102e-13,0.64678125,-1.374725122148102e-13,0.1354044003708729,0.0,0.0,0.0,-0.0,17.810000000000002,1621.884,-2.7494502e-13 -4.0022089574639885,0.1173735269947882,4.0022089574639885,9.259999999999984,0.645352199074074,-1.606785247931007e-14,0.12399827687305998,9.26,9.26,0.0,-0.0,16.38,1618.1311,-3.2135705e-14 -3.80120541309896,0.10505426052054431,3.80120541309896,6.930000000000126,0.6440515046296297,1.2609494882720393e-13,0.11119515594416436,6.93,6.93,0.0,-0.0,14.620000000000001,1615.0538,2.521899e-13 -3.6325556726797523,0.11721774568374223,3.6325556726797523,2.5173163250146824e-13,0.6438894675925926,2.5173163250146824e-13,0.12427820164479243,0.0,0.0,0.0,-0.0,16.455,1612.3436,5.0346327e-13 -3.4747747687201835,0.12338838937627797,3.4747747687201835,3.2355793933986406e-13,0.6427809027777778,3.2355793933986406e-13,0.13103605357659737,0.0,0.0,0.0,-0.0,17.365,1609.6917,6.471159e-13 -3.3099348636533077,0.1371719403710423,3.3099348636533077,3.0428957964549364e-13,0.6407940972222222,3.0428957964549364e-13,0.14593705675141744,0.0,0.0,0.0,-0.0,19.23,1606.7892,6.0857916e-13 -3.1317765191588633,0.1422143773436177,3.1317765191588633,1.8945630654612442e-13,0.6399997685185186,1.8945630654612442e-13,0.15161347693449848,0.0,0.0,0.0,-0.0,19.9,1603.485,3.789126e-13 -2.969173610372807,0.1105980380975215,2.969173610372807,9.623614296963114e-14,0.6395354166666667,9.623614296963114e-14,0.11814217818094636,0.0,0.0,0.0,-0.0,15.73,1600.3009,1.9247229e-13 -2.829591077774832,0.12920264633153358,2.829591077774832,0.28000000000004754,0.6378482638888888,4.751165688092996e-14,0.13826429812446334,0.28,0.28,0.0,-0.0,18.395,1597.4253,9.5023314e-14 -2.7341173974506994,0.15076834624373003,2.7341173974506994,10.400000000000018,0.6360001157407408,1.728602815900246e-14,0.16154981199901844,10.4,10.4,0.0,-0.0,21.095,1595.3755,3.4572056e-14 -2.681000313565271,0.145082151052507,2.681000313565271,5.219999999999981,0.6355359953703703,-1.8709229857631596e-14,0.15557124645130646,5.22,5.22,0.0,-0.0,20.46,1594.2039,-3.741846e-14 -2.644193569397653,0.10950502862303613,2.644193569397653,3.299999999999949,0.6338483796296296,-5.072438847531323e-14,0.11748282116017428,3.3,3.3,0.0,-0.0,15.785,1593.3783,-1.0144878e-13 -2.599780884478792,0.09042625044395244,2.599780884478792,0.10999999999993099,0.6319996527777777,-6.900971222414354e-14,0.09707572379050854,0.11,0.11,0.0,-0.0,12.725,1592.3667,-1.3801942e-13 -2.5255452496767457,0.09836076125737138,2.5255452496767457,-6.381548257488899e-14,0.6315355324074073,-6.381548257488899e-14,0.10570854909674791,0.0,0.0,0.0,-0.0,14.114999999999998,1590.6366,-1.2763097e-13 -2.421092601313452,0.09548820239588385,2.421092601313452,-3.724224975717312e-14,0.6287943287037038,-3.724224975717312e-14,0.10278440051281815,0.0,0.0,0.0,-0.0,13.73,1588.1141,-7.44845e-14 -2.3233427317187334,0.08727377895488046,2.3233427317187334,-1.552890066156538e-14,0.628,-1.552890066156538e-14,0.09408813093002932,0.0,0.0,0.0,-0.0,12.325000000000001,1585.653,-3.10578e-14 -2.232845912069877,0.10251827411602538,2.232845912069877,-3.670109057158023e-15,0.6267813657407407,-3.670109057158023e-15,0.11068854697844312,0.0,0.0,0.0,-0.0,14.99,1583.2803,-7.340218e-15 -2.1537794417504403,0.12174190398075398,2.1537794417504403,-8.517430857157374e-16,0.624052199074074,-8.517430857157374e-16,0.13162321102747424,0.0,0.0,0.0,-0.0,17.935,1581.1272,-1.7034862e-15 -2.098626872087712,0.14045918898008009,2.098626872087712,4.083748279587543e-15,0.6238902777777778,4.083748279587543e-15,0.15200864238083,0.0,0.0,0.0,-0.0,20.38,1579.578,8.1674966e-15 -2.0630698286376754,0.15778671686764048,2.0630698286376754,6.72000000000001,0.6207944444444444,1.0855774998820791e-14,0.1708713442522094,6.72,6.72,0.0,-0.0,22.485,1578.5575,2.171155e-14 -2.0424971469609257,0.14711086148924643,2.0424971469609257,19.380000000000017,0.6199998842592592,1.8322635550182118e-14,0.15937060791129387,19.38,19.38,0.0,-0.0,21.3,1577.959,3.664527e-14 -2.032854975928211,0.11350915496393225,2.032854975928211,4.320000000000026,0.6183303240740741,2.534262947066022e-14,0.12299066924583861,4.32,4.32,0.0,-0.0,16.955000000000002,1577.6764,5.068526e-14 -2.030375811827823,0.10739698969929813,2.030375811827823,3.077405545021023e-14,0.615999537037037,3.077405545021023e-14,0.11637332523728144,0.0,0.0,0.0,-0.0,16.1,1577.6035,6.154811e-14 -2.031405315015099,0.11902910681426536,2.031405315015099,3.347520624955625e-14,0.6151532407407407,3.347520624955625e-14,0.12897519003454644,0.0,0.0,0.0,-0.0,17.835,1577.6338,6.695041e-14 -2.0323356375332056,0.1285953166527073,2.0323356375332056,2.0400000000000325,0.6120002314814815,3.2304386487883754e-14,0.13933833822570904,2.04,2.04,0.0,-0.0,19.225,1577.6611,6.460877e-14 -2.0295459473780153,0.135706269893559,2.0295459473780153,2.050000000000026,0.6115356481481482,2.6119892314049585e-14,0.14705099582286563,2.05,2.05,0.0,-0.0,20.155,1577.5791,5.2239785e-14 -2.0140362893799133,0.10262859492737708,2.0140362893799133,1.6100000000000148,0.6080510416666667,1.470663156956158e-14,0.11124040907637464,1.61,1.61,0.0,-0.0,15.57,1577.121,2.9413263e-14 -1.971004833512046,0.07963019297135572,1.971004833512046,2.1073705389236976e-15,0.6078891203703704,2.1073705389236976e-15,0.08638280071443241,0.0,0.0,0.0,-0.0,11.48,1575.8312,4.214741e-15 -1.911165407934725,0.08925354131300149,1.911165407934725,-8.224664506850162e-15,0.6042853009259259,-8.224664506850162e-15,0.0969354635492623,0.0,0.0,0.0,-0.0,13.425,1573.99,-1.6449329e-14 -1.8464502317538858,0.0897843118172055,1.8464502317538858,-1.3012214156376014e-14,0.6039916666666666,-1.3012214156376014e-14,0.09763953442599806,0.0,0.0,0.0,-0.0,13.55,1571.9327,-2.6024428e-14 -1.7866888919701915,0.09356263716686428,1.7866888919701915,-9.601346308989384e-15,0.6002854166666667,-9.601346308989384e-15,0.1018757652019443,0.0,0.0,0.0,-0.0,14.34,1569.9679,-1.9202693e-14 -1.7293247577075936,0.11072529603579193,1.7293247577075936,-4.302276003715222e-15,0.5999998842592592,-4.302276003715222e-15,0.12071318763396717,0.0,0.0,0.0,-0.0,17.145,1568.019,-8.604552e-15 -1.6756817377506232,0.12640907064917,1.6756817377506232,-4.213762595974532e-16,0.5962851851851851,-4.213762595974532e-16,0.13797729678280038,0.0,0.0,0.0,-0.0,19.5,1566.1372,-8.427525e-16 -1.6295844912962267,0.1408184302047127,1.6295844912962267,1.014500995926261e-15,0.5959997685185184,1.014500995926261e-15,0.15386898727693493,0.0,0.0,0.0,-0.0,21.375,1564.4713,2.029002e-15 -1.6293013862676107,0.1309397728102898,1.6293013862676107,2.8700000000000006,0.5920523148148148,5.318446289822488e-16,0.14307575955832863,2.87,2.87,0.0,-0.0,20.240000000000002,1564.4609,1.0636893e-15 -1.7094749523468993,0.09302317251570891,1.7094749523468993,16.37,0.591992824074074,7.41243230528118e-17,0.10145886859896316,16.37,16.37,0.0,-0.0,14.5,1567.3296,1.4824865e-16 -1.8444999911347442,0.07942645180914398,1.8444999911347442,0.5299999999999998,0.5880002314814815,-2.261466531396854e-16,0.0863789339972074,0.53,0.53,0.0,-0.0,12.01,1571.8696,-4.522933e-16 -2.005085791026436,0.08414249716712252,2.005085791026436,7.17,0.5879922453703703,-2.5516388433024943e-16,0.09121848260845473,7.17,7.17,0.0,-0.0,12.885000000000002,1576.855,-5.1032777e-16 -2.179131299203062,0.08349698026362819,2.179131299203062,1.7199999999999998,0.5840005787037037,-1.4207490088577253e-16,0.09023421548059643,1.72,1.72,0.0,-0.0,12.819999999999999,1581.826,-2.841498e-16 -2.369770923245264,0.09507694878826865,2.369770923245264,10.36,0.5835359953703704,-6.743014226132216e-17,0.10242424630697151,10.36,10.36,0.0,-0.0,14.89,1586.8346,-1.3486028e-16 -2.544177333512597,0.1100494046441592,2.544177333512597,4.96,0.5800003472222222,-3.6187841545104664e-17,0.1182377327089496,4.96,4.96,0.0,-0.0,17.365000000000002,1591.0756,-7.237568e-17 -2.553737989322882,0.08888748873236367,2.553737989322882,-1.6179497271582058e-17,0.5787818287037036,-1.6179497271582058e-17,0.09548780159092583,0.0,0.0,0.0,-0.0,13.879999999999999,1591.2996,-3.2358995e-17 -2.451770008280597,0.08753938669582263,2.451770008280597,-2.648635630117245e-18,0.5760005787037037,-2.648635630117245e-18,0.09418362559440793,0.0,0.0,0.0,-0.0,13.735,1588.8661,-5.2972713e-18 -2.342531542592886,0.0827304735678944,2.342531542592886,9.850234238355496e-19,0.5738478009259259,9.850234238355496e-19,0.08916246229945973,0.0,0.0,0.0,-0.0,12.91,1586.1442,1.9700468e-18 -2.363110240316409,0.08577260390543348,2.363110240316409,5.37,0.5719994212962963,5.623982373184253e-19,0.09241067494044658,5.37,5.37,0.0,-0.0,13.54,1586.6665,1.1247965e-18 -2.625880825507626,0.085307598041966,2.625880825507626,12.46,0.5680513888888888,3.1681686960089245e-19,0.0915463759193603,12.46,12.46,0.0,-0.0,13.5,1592.9633,6.3363374e-19 -2.997664321025974,0.09433801028984223,2.997664321025974,10.83,0.5679997685185185,1.7258977431842019e-19,0.10073711690825689,10.83,10.83,0.0,-0.0,15.06,1600.8712,3.4517955e-19 -3.223502192450576,0.09455947149137169,3.223502192450576,5.12,0.5639996527777777,7.258094992376834e-20,0.10070073846268794,5.12,5.12,0.0,-0.0,15.17,1605.209,1.451619e-19 -3.2154999551124517,0.09056220238425905,3.2154999551124517,0.69,0.5639916666666667,3.2308149612066866e-20,0.0964527816161489,0.69,0.69,0.0,-0.0,14.465,1605.0605,6.46163e-20 -3.10333029831108,0.09461658018289244,3.10333029831108,1.6898697300457413e-20,0.56,1.6898697300457413e-20,0.10090418156027402,0.0,0.0,0.0,-0.0,15.32,1602.9401,3.3797395e-20 -3.072390545702452,0.09530828999241794,3.072390545702452,4.7,0.558330324074074,6.635741020818772e-21,0.10167981567864573,4.7,4.7,0.0,-0.0,15.495000000000001,1602.3417,1.3271482e-20 -3.2409109662354467,0.09711164505790448,3.2409109662354467,9.09,0.5560002314814815,3.0452807731917434e-21,0.10339794659126281,9.09,9.09,0.0,-0.0,15.84,1605.5306,6.0905615e-21 -3.4822476047965925,0.10107013951556311,3.4822476047965925,7.54,0.5520519675925926,1.663467683934633e-21,0.10732595510494577,7.54,7.54,0.0,-0.0,16.575,1609.82,3.3269354e-21 -3.7340070484652528,0.1012308862626966,3.7340070484652528,8.32,0.5520004629629629,8.705880057180632e-22,0.10721900296647977,8.32,8.32,0.0,-0.0,16.560000000000002,1613.9886,1.741176e-21 -3.937368159162388,0.09714009446128197,3.937368159162388,3.28,0.5479999999999999,3.069573397669226e-22,0.10268473881158345,3.28,3.28,0.0,-0.0,15.965,1617.1556,6.139147e-22 -4.017396496574432,0.10812387261105191,4.017396496574432,0.07,0.5479921296296296,-4.592284213766716e-22,0.11421059184008765,0.07,0.07,0.0,-0.0,17.735,1618.3573,-9.184568e-22 -3.9879835589440527,0.10782041805570479,3.9879835589440527,-1.2275239121251889e-21,0.5439997685185185,-1.2275239121251889e-21,0.1139209460688348,0.0,0.0,0.0,-0.0,17.814999999999998,1617.9185,-2.4550478e-21 -3.8728732473446223,0.08701048852615864,3.8728732473446223,5.05,0.540794212962963,-1.794675371581414e-21,0.09203307906605798,5.05,5.05,0.0,-0.0,14.385000000000002,1616.1693,-3.5893507e-21 -3.699894074750849,0.0669497382077134,3.699894074750849,-1.9574292155529742e-21,0.54,-1.9574292155529742e-21,0.07093410866973263,0.0,0.0,0.0,-0.0,10.235,1613.4406,-3.9148584e-21 -3.4965553356612444,0.06936228611066086,3.4965553356612444,-1.5137882817666863e-21,0.5359994212962963,-1.5137882817666863e-21,0.07364431704454927,0.0,0.0,0.0,-0.0,10.945,1610.0648,-3.0275766e-21 -3.3322007229462276,0.0787866283709844,3.3322007229462276,-8.55371901220083e-22,0.5359994212962963,-8.55371901220083e-22,0.08380011405133932,0.0,0.0,0.0,-0.0,13.01,1607.1896,-1.7107438e-21 -3.2251696327530346,0.08712464190008322,3.2251696327530346,2.73,0.5319998842592593,-4.389307904716198e-22,0.09278126074975224,2.73,2.73,0.0,-0.0,14.785,1605.2399,-8.778616e-22 -3.153417527472072,0.07469003439141964,3.153417527472072,-2.3947605747620403e-22,0.5298482638888888,-2.3947605747620403e-22,0.07960596128243524,0.0,0.0,0.0,-0.0,12.37,1603.8962,-4.789521e-22 -3.114807528805386,0.07612905462625498,3.114807528805386,2.34,0.5279998842592593,-6.563342926277992e-23,0.08117693092430753,2.34,2.34,0.0,-0.0,12.74,1603.1605,-1.3126686e-22 -3.0693901283238865,0.07662119085209224,3.0693901283238865,2.28,0.5240002314814816,6.191637347536369e-23,0.08174642812847112,2.28,2.28,0.0,-0.0,12.975,1602.2833,1.2383275e-22 -2.976641924773273,0.0791109244530349,2.976641924773273,1.0180073908123112e-22,0.5240002314814816,1.0180073908123112e-22,0.08449933632424281,0.0,0.0,0.0,-0.0,13.51,1600.4509,2.0360148e-22 -2.8356937732711227,0.08166708969838136,2.8356937732711227,0.15,0.520000462962963,6.025847815340224e-23,0.08738778781406721,0.15,0.15,0.0,-0.0,14.18,1597.554,1.2051696e-22 -2.70741199329885,0.09249200334624423,2.70741199329885,0.08,0.5183310185185186,2.624638839283459e-23,0.09914254708210393,0.08,0.08,0.0,-0.0,16.305,1594.7893,5.2492777e-23 -2.5944722543645855,0.09179044484263425,2.5944722543645855,0.34,0.5159998842592592,8.748304933554545e-24,0.0985477885491614,0.34,0.34,0.0,-0.0,16.28,1592.2446,1.749661e-23 -2.5002126093564354,0.0880012861578416,2.5002126093564354,2.521800367880906e-24,0.511999537037037,2.521800367880906e-24,0.09461100599653154,0.0,0.0,0.0,-0.0,15.735,1590.0345,5.0436007e-24 -2.4312241628479425,0.07149731803419063,2.4312241628479425,0.29,0.511999537037037,-7.5890635781405e-24,0.07694830301926467,0.29,0.29,0.0,-0.0,12.375,1588.3635,-1.5178127e-23 -2.3893578428007833,0.057673310486680965,2.3893578428007833,-1.940782893612054e-23,0.5079996527777778,-1.940782893612054e-23,0.06211091181500134,0.0,0.0,0.0,-0.0,9.11,1587.3262,-3.8815658e-23 -2.3769118931246416,0.07301089143197764,2.3769118931246416,2.94,0.5067805555555556,-3.041159448278507e-23,0.07864407647186222,2.94,2.94,0.0,-0.0,12.889999999999999,1587.0143,-6.082319e-23 -2.3971163475578434,0.0806846039500219,2.3971163475578434,-3.807746076979698e-23,0.503999537037037,-3.807746076979698e-23,0.08688218383253783,0.0,0.0,0.0,-0.0,14.594999999999999,1587.5198,-7.615492e-23 -2.4545981338889287,0.07081061855710673,2.4545981338889287,8.11,0.4999997685185186,-3.988252598223646e-23,0.07618184299997863,8.11,8.11,0.0,-0.0,12.594999999999999,1588.9349,-7.976505e-23 -2.555962653879341,0.046536007593836054,2.555962653879341,8.22,0.4999997685185186,-3.330388988290549e-23,0.04998989076331566,8.22,8.22,0.0,-0.0,6.01,1591.3516,-6.660778e-23 -2.692280046292711,0.04252827351928033,2.692280046292711,-1.7957743242421465e-23,0.4959997685185185,-1.7957743242421465e-23,0.04559579562788986,0.0,0.0,0.0,-0.0,4.74,1594.4546,-3.5915486e-23 -2.808156940145671,0.05034807888675127,2.808156940145671,4.06,0.49366840277777774,-6.59363421868387e-25,0.053894571486450334,4.06,4.06,0.0,-0.0,7.3549999999999995,1596.9712,-1.3187268e-24 -2.87705917190024,0.04064595899604556,2.87705917190024,4.74,0.4919994212962963,1.3755192477217824e-23,0.043469634685665004,4.74,4.74,0.0,-0.0,4.1450000000000005,1598.4188,2.7510385e-23 -2.874778316166925,0.04488965190204129,2.874778316166925,1.38,0.48800034722222224,2.068622220924188e-23,0.048009559620975445,1.38,1.38,0.0,-0.0,5.765000000000001,1598.3715,4.1372444e-23 -2.781455994261665,0.04962297316737565,2.781455994261665,1.5962955404554523e-23,0.48800034722222224,1.5962955404554523e-23,0.053137374309847864,0.0,0.0,0.0,-0.0,7.315,1596.4006,3.192591e-23 -2.617713625003001,0.04124950161990314,2.617713625003001,0.07,0.4840002314814815,7.53928724388196e-24,0.04427136070733213,0.07,0.07,0.0,-0.0,4.665,1592.7772,1.5078574e-23 -2.487977358950114,0.05013960114567065,2.487977358950114,1.2084278189307063e-24,0.48167002314814816,1.2084278189307063e-24,0.053915488339882696,0.0,0.0,0.0,-0.0,7.74,1589.7416,2.4168556e-24 -2.4926553502172735,0.055585947953174515,2.4926553502172735,4.34,0.4800005787037037,-1.4401903211115951e-24,0.05976776821396388,4.34,4.34,0.0,-0.0,9.395,1589.8538,-2.8803806e-24 -2.6419407118752862,0.06350262162320304,2.6419407118752862,14.55,0.4760001157407408,-8.792537153371193e-25,0.06813116784461413,14.55,14.55,0.0,-0.0,11.594999999999999,1593.3274,-1.7585074e-24 -2.755977692851838,0.04714133414779967,2.755977692851838,2.17,0.4760001157407408,-4.134829472376939e-25,0.05049736421063153,2.17,2.17,0.0,-0.0,6.915,1595.8511,-8.269659e-25 -2.7473272356572482,0.03871889146946869,2.7473272356572482,1.0,0.4719996527777777,-1.9539178664878623e-25,0.041480200906686346,1.0,1.0,0.0,-0.0,4.0649999999999995,1595.6633,-3.9078357e-25 -2.633341364432475,0.0379433204881213,2.633341364432475,-1.0063633537074949e-25,0.4701513888888889,-1.0063633537074949e-25,0.04071388877005586,0.0,0.0,0.0,-0.0,3.8449999999999998,1593.1327,-2.0127267e-25 -2.5194095579111835,0.041281892357932344,2.5194095579111835,-3.07368681622404e-26,0.46799976851851854,-3.07368681622404e-26,0.044369802052209695,0.0,0.0,0.0,-0.0,5.205,1590.4913,-6.1473736e-26 -2.4789010334017876,0.04871771167865575,2.4789010334017876,3.27,0.463999537037037,-9.141892556080557e-28,0.052393713288917246,3.27,3.27,0.0,-0.0,7.875,1589.5233,-1.8283785e-27 -2.477426982354585,0.05801767526490822,2.477426982354585,3.25,0.463999537037037,-4.158300380015758e-28,0.0623968013375239,3.25,3.25,0.0,-0.0,10.605,1589.4878,-8.316601e-28 -2.418871604338712,0.055973961280561944,2.418871604338712,-1.806978733232047e-28,0.46,-1.806978733232047e-28,0.060252978643371,0.0,0.0,0.0,-0.0,10.19,1588.0593,-3.6139575e-28 -2.330953581166813,0.04218691746984722,2.330953581166813,-7.599396967286348e-29,0.45920532407407405,-7.599396967286348e-29,0.045475277979948964,0.0,0.0,0.0,-0.0,5.864999999999999,1585.8483,-1.5198794e-28 -2.2463688346749873,0.04419001567079938,2.2463688346749873,-3.615753215581303e-29,0.45599953703703705,-3.615753215581303e-29,0.04770090903404355,0.0,0.0,0.0,-0.0,6.7,1583.6409,-7.2315064e-29 -2.17190961820979,0.05976523475503605,2.17190961820979,0.48,0.45200810185185186,-2.1884736924174037e-30,0.064595689563638,0.48,0.48,0.0,-0.0,11.57,1581.6278,-4.3769474e-30 -2.1015673598845748,0.051051518007236174,2.1015673598845748,1.7185853798174444e-29,0.452,1.7185853798174444e-29,0.055246375948233145,0.0,0.0,0.0,-0.0,9.105,1579.6616,3.4371708e-29 -2.030579180363955,0.03699548908679514,2.030579180363955,1.4580517459350922e-29,0.4480001157407407,1.4580517459350922e-29,0.040087452846967485,0.0,0.0,0.0,-0.0,4.335,1577.6095,2.9161035e-29 -1.9622896900356555,0.04206280352295951,1.9622896900356555,3.7355634366306714e-30,0.4480001157407407,3.7355634366306714e-30,0.04563737646848875,0.0,0.0,0.0,-0.0,6.295,1575.5665,7.471127e-30 -1.8982746582586976,0.049461098664496606,1.8982746582586976,-7.03470362469935e-30,0.4440001157407408,-7.03470362469935e-30,0.05373194083027342,0.0,0.0,0.0,-0.0,8.95,1573.5858,-1.4069407e-29 -1.8382557682890492,0.0500792022593902,1.8382557682890492,-1.4693155773074964e-29,0.44166932870370373,-1.4693155773074964e-29,0.054469832159817315,0.0,0.0,0.0,-0.0,9.245,1571.6671,-2.9386312e-29 -1.781962079979367,0.048227460447129215,1.781962079979367,-1.6202663552299222e-29,0.4400003472222222,-1.6202663552299222e-29,0.05251780765965445,0.0,0.0,0.0,-0.0,8.735,1569.8097,-3.2405327e-29 -1.7291409573615821,0.03487385205365827,1.7291409573615821,-1.0412727571109338e-29,0.43611064814814815,-1.0412727571109338e-29,0.03801977541816096,0.0,0.0,0.0,-0.0,3.945,1568.0127,-2.0825455e-29 -1.6794502212874007,0.035757701804283386,1.6794502212874007,-5.12776101738298e-30,0.43600011574074077,-5.12776101738298e-30,0.03902669658115518,0.0,0.0,0.0,-0.0,4.34,1566.2714,-1.0255522e-29 -1.6325383752144178,0.03721339261935729,1.6325383752144178,-2.1614739977722368e-30,0.43200000000000005,-2.1614739977722368e-30,0.040659388180014085,0.0,0.0,0.0,-0.0,5.095,1564.5795,-4.322948e-30 -1.586644999267819,0.037279446732624906,1.586644999267819,-1.273088405725861e-30,0.43194837962962956,-1.273088405725861e-30,0.04077593930562579,0.0,0.0,0.0,-0.0,5.140000000000001,1562.8766,-2.5461768e-30 -1.5816163470989255,0.03415471988512317,1.5816163470989255,2.82,0.428,-9.26350908451098e-20,0.03736267191319793,2.82,2.82,0.0,-0.0,3.965,1562.687,-1.8527018e-19 -1.6007338796039492,0.02738306783729355,1.6007338796039492,1.8602843809614507,0.4261517361111111,0.0002843809621708144,0.029941250463903994,1.86,1.8599999999992798,7.203804219813038e-13,-0.0,0.7650000000000001,1563.4045,0.0005687144 -1.599523710262481,0.021343314645684102,1.599523710262481,0.003485410857476128,0.42400011574074076,-1.8232900749989786e-12,0.02333792530439491,2.04,0.003485410859299418,2.0365145891407006,-0.0,-2.7299999999999995,1563.3594,0.37377328 -1.55728718774201,0.021061759311998787,1.55728718774201,-8.617444802573457e-13,0.42121863425925926,-8.617444802573457e-13,0.02305362417043018,0.0,0.0,0.0,-0.0,-2.8099999999999996,1561.7612,1.3927785 -1.5171703920918491,0.022302824897582913,1.5171703920918491,-3.4952972297706096e-9,0.41999976851851856,-3.4952972297706096e-9,0.024436447413633048,0.0,0.0,0.0,-0.0,-1.945,1560.2026,1.3992057 -1.4905049635166079,0.022874336522867404,1.4905049635166079,-3.6093112265348384e-7,0.4164640046296296,-3.6093112265348384e-7,0.025079655655048695,0.0,0.0,0.0,-0.0,-1.455,1559.1437,1.4079884 -1.5675291082848049,0.02256588789534373,1.5675291082848049,9.396224086349282,0.4159996527777778,-5.2305483239031456e-8,0.024693812186207524,9.52,9.396224138654764,0.12377586134523513,-0.0,-1.6600000000000001,1562.1527,1.431957 -1.8079082318446433,0.02394631043352346,1.8079082318446433,11.259756701421821,0.4121109953703704,-0.00022588631402511354,0.026062257915164103,11.26,11.259982587735847,1.741226415282071e-5,-0.0,-0.7549999999999999,1570.673,1.4411942 -1.9882587770210474,0.025058476872259428,1.9882587770210474,4.007711235924716,0.41200046296296294,-0.03228874934479103,0.027174449539211266,4.04,4.039999985269507,1.4730492843284537e-8,-0.0,-0.15000000000000002,1576.3517,1.4477713 -2.010322273107115,0.027878940820712378,2.010322273107115,0.7614087546678239,0.4080084490740741,0.7614087546678239,0.030220442510361534,0.0,0.0,0.0,-0.0,1.5350000000000001,1577.0107,0.761784 -1.9584308964618542,0.02527462389350033,1.9584308964618542,-0.04891592790438717,0.40794895833333333,-0.04891592790438717,0.027424553197883825,0.0,0.0,0.0,-0.0,0.125,1575.449,0.31565335 -1.9149271577784222,0.030580170247755445,1.9149271577784222,0.9986107528261303,0.40399999999999997,0.1086107528261303,0.03320968324279462,0.89,0.89,0.0,-0.0,3.0700000000000003,1574.1074,0.1363809 -2.0433490137329593,0.042435801718578414,2.0433490137329593,10.863625418602952,0.4037145833333334,0.04362541860295245,0.04597153956307116,10.82,10.82,0.0,-0.0,8.004999999999999,1577.9839,0.06614141 -2.2411358451099828,0.049121932143671145,2.2411358451099828,4.7008452945045205,0.40000023148148145,0.020845294504520433,0.05302932985670472,4.68,4.68,0.0,-0.0,10.379999999999999,1583.5016,0.035466377 -2.2574343718593175,0.0372363354812859,2.2574343718593175,0.6310097734325534,0.39971435185185183,0.01100977343255341,0.04018731256400104,0.62,0.62,0.0,-0.0,6.095000000000001,1583.9343,0.020021845 -2.400479970095056,0.034995336419443,2.400479970095056,11.046129904163342,0.3960082175925926,0.006129904163342578,0.037681425322553926,11.04,11.04,0.0,-0.0,5.26,1587.6035,0.011589031 -2.506506477125018,0.02809533965247266,2.506506477125018,0.003513270165238034,0.39571446759259266,0.003513270165238034,0.03020271045819103,0.0,0.0,0.0,-0.0,1.9749999999999999,1590.1847,0.00679572 -2.406404723770862,0.027345986082537802,2.406404723770862,0.0020303820214786286,0.3921108796296296,0.0020303820214786286,0.029442214177741607,0.0,0.0,0.0,-0.0,1.735,1587.7507,0.003981513 -2.31916736218109,0.027436672105743493,2.31916736218109,0.001180167303481718,0.3919487268518519,0.001180167303481718,0.02958093627260433,0.0,0.0,0.0,-0.0,1.81,1585.5455,0.0023331188 -2.3416506740407486,0.02608290178249843,2.3416506740407486,4.1106112375294295,0.3884644675925926,0.0006112375294511501,0.028111149125540268,4.11,4.109999999999978,2.167432899824462e-14,-0.0,1.1949999999999998,1586.1217,0.0012151381 -2.4215726836108615,0.028012165504736584,2.4215726836108615,4.670263053622488,0.38799999999999996,0.0002630536224882563,0.030152333997913467,4.67,4.67,0.0,-0.0,2.24,1588.126,0.00052473054 -2.44761397541745,0.026528531963560243,2.44761397541745,1.670138527642014,0.3848466435185185,0.0001385276420145237,0.028543867549626435,1.67,1.6699999999999995,2.781108676686017e-16,-0.0,1.555,1588.7648,0.00027667283 -2.4161932930213648,0.02099680001820376,2.4161932930213648,1.667088718286348,0.3840003472222222,-8.480242419216357e-9,0.022602875052085514,1.74,1.6670887267665906,0.07291127323340936,-0.0,-1.7799999999999998,1587.9932,0.0021037455 -2.3269880766606943,0.01614846165003541,2.3269880766606943,0.0,0.38166932870370374,-0.0,0.017408308462249677,0.0,0.0,0.0,-0.0,-5.35,1585.7466,0.72746664 -2.2391623154139593,0.013745035187211421,2.2391623154139593,0.0,0.3799997685185186,-0.0,0.014838875252129667,0.0,0.0,0.0,-0.0,-7.47,1583.449,0.73275787 -2.1577276176800484,0.015049020664230944,2.1577276176800484,0.0,0.37920590277777777,-0.0,0.016269364490205235,0.0,0.0,0.0,-0.0,-6.1899999999999995,1581.2366,0.73275787 -2.081950865499399,0.015835102580827064,2.081950865499399,0.0,0.37611087962962964,-0.0,0.01714233661297498,0.0,0.0,0.0,-0.0,-5.359999999999999,1579.1016,0.73275787 -2.011300495918966,0.015243013100232065,2.011300495918966,0.0,0.3759486111111111,-0.0,0.016522941735450537,0.0,0.0,0.0,-0.0,-5.86,1577.0398,0.73275787 -1.9453048427028679,0.013413248704222013,1.9453048427028679,0.0,0.37321898148148147,-0.0,0.01455792776707273,0.0,0.0,0.0,-0.0,-7.484999999999999,1575.0474,0.73275787 -1.8834948013506847,0.01493607868368513,1.8834948013506847,0.0,0.3719998842592593,-0.0,0.016230586449962645,0.0,0.0,0.0,-0.0,-5.96,1573.119,0.73275787 -1.8254015292886328,0.019048052781430045,1.8254015292886328,-1.2834372197058668e-11,0.37120578703703705,-1.2834372197058668e-11,0.020723592119193533,0.0,0.0,0.0,-0.0,-2.53,1571.248,0.7329686 -1.7709814258387135,0.018992857335900493,1.7709814258387135,0.025457741041767026,0.3684645833333333,-2.7737058859010074e-11,0.020687339283296965,0.93,0.025457741069504086,0.9045422589304959,-0.0,-2.4499999999999997,1569.4406,1.1897706 -1.7195117943238276,0.014799776678046573,1.7195117943238276,0.0,0.3680003472222222,-0.0,0.01613827706231916,0.0,0.0,0.0,-0.0,-5.89,1567.6792,1.651226 -1.6710402339456722,0.010595984808020122,1.6710402339456722,0.0,0.36615196759259255,-0.0,0.011566891401529918,0.27,0.0,0.27,-0.0,-10.3,1565.9716,1.7884773 -1.6252400892173606,0.012994902370778568,1.6252400892173606,0.0,0.3644642361111111,-0.0,0.01420067132620814,5.74,0.0,5.74,-0.0,-7.5,1564.3119,4.7980824 -1.5818523655248167,0.012285773243952382,1.5818523655248167,0.0,0.36400011574074076,-0.0,0.013439627052550791,1.06,0.0,1.06,-0.0,-8.225,1562.6959,8.186065 -1.5406869998894523,0.014877963798220137,1.5406869998894523,2.2148949341271872e-15,0.3621513888888889,-0.0,0.016291687562694723,2.1,2.2148949341271872e-15,2.099999999999998,-0.0,-5.54,1561.1212,9.774587 -1.5015716810077002,0.01470290408153756,1.5015716810077002,2.5224267119483555e-15,0.3604638888888889,-0.0,0.016115847546066393,5.68,2.5224267119483555e-15,5.679999999999997,-0.0,-5.625,1559.5854,13.687316 -1.464460856545098,0.008859608747976097,1.464460856545098,0.0,0.3599998842592593,-0.0,0.009720328480734492,0.52,0.0,0.52,-0.0,-12.35,1558.091,16.787268 -1.4291637614110628,0.011634598503085389,1.4291637614110628,0.0,0.35920578703703704,-0.0,0.012776859365557598,0.0,0.0,0.0,-0.0,-8.725,1556.6339,17.055565 -1.3954673902254449,0.014148314251390893,1.3954673902254449,0.0,0.3572189814814815,-0.0,0.015551602314361238,0.0,0.0,0.0,-0.0,-5.99,1555.209,17.056223 -1.3632814702125673,0.014319640562368296,1.3632814702125673,4.163336342344337e-16,0.35611041666666665,-0.0,0.015754037978052783,3.75,4.163336342344337e-16,3.7499999999999996,-0.0,-5.77,1553.8154,18.94271 -1.3325295576163743,0.015100841770770826,1.3325295576163743,1.972284557894e-12,0.3559483796296296,-0.0,0.016628073301990683,10.16,1.972284557894e-12,10.159999999998028,-0.0,-5.0200000000000005,1552.4529,25.920513 -1.303267596565509,0.018643979378444173,1.303267596565509,-1.9725329283231825e-9,0.3546476851851852,-1.9725329283231825e-9,0.02054709858267585,0.0,0.0,0.0,-0.0,-2.0050000000000003,1551.1268,30.996035 -1.275122496608561,0.015548722743861137,1.275122496608561,0.0,0.35321898148148145,-0.0,0.017150303871584775,0.0,0.0,0.0,-0.0,-4.485,1549.823,30.98613 -1.2481412613540261,0.015813575767885182,1.2481412613540261,3.268925197197348e-9,0.35211030092592593,-0.0,0.01745682413494148,4.4,3.268925197197348e-9,4.399999996731076,-0.0,-4.195,1548.5458,33.209724 -1.240477963297047,0.018320468315098325,1.240477963297047,6.6219417383733505,0.35199988425925927,-6.575131705420152e-10,0.020229021983138386,15.3,6.621941739030864,8.678058260969136,-0.0,-2.12,1548.178,42.289333 -1.3047709204710571,0.018218741046781034,1.3047709204710571,2.7526026044032705,0.35171423611111113,-2.6481000998547583e-10,0.02007756209566913,12.08,2.7526026046680805,9.32739739533192,-0.0,-2.215,1551.1957,51.655457 -1.2792603431613327,0.011466553520395469,1.2792603431613327,0.0,0.3506474537037037,-0.0,0.012646076012010465,1.24,0.0,1.24,-0.0,-8.540000000000001,1550.0165,58.092823 -1.2522171477958906,0.009315978299800938,1.2522171477958906,0.0,0.34966921296296294,-0.0,0.010282743907719862,0.13,0.0,0.13,-0.0,-11.24,1548.7405,58.77207 -1.2263170189454493,0.008739941967477717,1.2263170189454493,0.0,0.3488465277777778,-0.0,0.009654710381671663,0.0,0.0,0.0,-0.0,-12.030000000000001,1547.4923,58.829266 -1.2014854020874142,0.0069483509172962666,1.2014854020874142,0.0,0.3481105324074074,-0.0,0.0076816663151376375,0.0,0.0,0.0,-0.0,-14.930000000000001,1546.2706,58.82933 -1.1776547787271678,0.00650833375503399,1.1776547787271678,0.0,0.3480079861111111,-0.0,0.007200782131903116,0.0,0.0,0.0,-0.0,-15.739999999999998,1545.0742,58.83825 -1.1547381167755968,0.010589910616557256,1.1547381167755968,0.0,0.34794849537037037,-0.0,0.011725521023629485,0.0,0.0,0.0,-0.0,-9.445,1543.9006,58.87829 -1.1326863873195394,0.011904965139249817,1.1326863873195394,0.0,0.34771435185185184,-0.0,0.013191434167855483,0.12,0.0,0.12,-0.0,-7.859999999999999,1542.7491,58.935287 -1.1114510056963522,0.006055013243855906,1.1114510056963522,0.0,0.3472057870370371,-0.0,0.006714246373915844,0.0,0.0,0.0,-0.0,-16.585,1541.6189,58.992332 -1.0909905506287592,0.005298171264163572,1.0909905506287592,0.0,0.3466476851851852,-0.0,0.0058792357566957425,0.0,0.0,0.0,-0.0,-18.205,1540.5093,59.032505 -1.0712548514151357,0.011444539715956806,1.0712548514151357,0.0,0.3466476851851852,-0.0,0.012708686603647407,0.0,0.0,0.0,-0.0,-8.32,1539.4191,59.03105 -1.0521707670806892,0.01242284946138524,1.0521707670806892,0.0,0.3461518518518519,-0.0,0.013804685443235836,0.0,0.0,0.0,-0.0,-7.185,1538.3456,59.010925 -1.0337646938223153,0.01000287348562655,1.0337646938223153,0.0,0.3461518518518519,-0.0,0.011123147991386022,0.81,0.0,0.81,-0.0,-10.075,1537.2916,59.473877 -1.016006604676501,0.009757730359629744,1.016006604676501,0.0,0.3456693287037037,-0.0,0.010857858695541449,0.0,0.0,0.0,-0.0,-10.375,1536.2568,59.857197 -0.9988781504388115,0.006397889528853411,0.9988781504388115,0.0,0.3456693287037037,-0.0,0.007123923531165375,0.0,0.0,0.0,-0.0,-15.79,1535.2415,59.859253 -0.9823516508998452,0.005194310632318769,0.9823516508998452,0.0,0.3461518518518519,-0.0,0.005787518191373703,0.0,0.0,0.0,-0.0,-18.38,1534.2451,59.859253 -0.9663652106117813,0.005927149972061407,0.9663652106117813,0.0,0.3461518518518519,-0.0,0.006608270649332729,0.0,0.0,0.0,-0.0,-16.745,1533.2653,59.924625 -0.9508663030429909,0.008128578679862964,0.9508663030429909,0.0,0.3461518518518519,-0.0,0.009068388199919373,3.63,0.0,3.63,-0.0,-12.74,1532.2997,61.816345 -0.9358244512970413,0.009628904205398482,0.9358244512970413,0.0,0.3466476851851852,-0.0,0.010748858310097566,3.16,0.0,3.16,-0.0,-10.545,1531.3474,65.16345 -0.9212069447376955,0.013927522267820161,0.9212069447376955,6.1367577686155534e-15,0.3472057870370371,-0.0,0.015557007271757446,10.05,6.1367577686155534e-15,10.049999999999994,-0.0,-5.595,1530.4072,71.80146 -0.9070031386869384,0.013678050130049049,0.9070031386869384,1.609823385706477e-16,0.34771435185185184,-0.0,0.015287617330142373,2.9,1.609823385706477e-16,2.9,-0.0,-5.8549999999999995,1529.4792,78.20682 -0.8932775762916143,0.008094143809996414,0.8932775762916143,0.0,0.34794849537037037,-0.0,0.009052013276452855,0.0,0.0,0.0,-0.0,-12.83,1528.5686,79.63617 -0.880013312915028,0.005739326969354359,0.880013312915028,0.0,0.34800000000000003,-0.0,0.006422278697296207,0.0,0.0,0.0,-0.0,-17.165,1527.6752,79.597176 -0.8671214633143045,0.010458602236235732,0.8671214633143045,0.0,0.3480079861111111,-0.0,0.011709880222249771,9.42,0.0,9.42,-0.0,-9.465,1526.7938,84.32695 -0.8545686835268613,0.009546515841335446,0.8545686835268613,0.0,0.3484641203703704,-0.0,0.010694770930010165,5.57,0.0,5.57,-0.0,-10.68,1525.923,91.84499 -0.8424214454751787,0.0040586088958700604,0.8424214454751787,0.0,0.34921886574074074,-0.0,0.004549327448822598,0.0,0.0,0.0,-0.0,-21.39,1525.068,94.63868 -0.8306285227734375,0.007057550619337138,0.8306285227734375,0.0,0.35015162037037034,-0.0,0.007915235048927844,1.64,0.0,1.64,-0.0,-14.625,1524.2261,95.45709 -0.8190793724027894,0.014876561029875683,0.8190793724027894,3.5088887351264473e-12,0.35120578703703703,-0.0,0.01669362599931819,1.64,3.5088887351264473e-12,1.639999999996491,-0.0,-4.78,1523.3899,97.05569 -0.8078030752779907,0.013877721458000746,0.8078030752779907,2.142730437526552e-16,0.3519482638888889,-0.0,0.015581252932155426,1.93,2.142730437526552e-16,1.9299999999999997,-0.0,-5.76,1522.562,98.83739 -0.7968937460409286,0.006337871617295854,0.7968937460409286,0.0,0.35200787037037035,-0.0,0.00711966121100198,3.48,0.0,3.48,-0.0,-16.025,1521.75,101.61782 -0.7862988804221139,0.008826764621330306,0.7862988804221139,0.0,0.35284641203703704,-0.0,0.009920775322637423,9.19,0.0,9.19,-0.0,-11.825,1520.9507,108.03772 -0.7759590659174381,0.010077941000446074,0.7759590659174381,0.0,0.3541518518518519,-0.0,0.011332915930536619,7.94,0.0,7.94,-0.0,-10.129999999999999,1520.1602,116.60668 -0.7658741868438862,0.010586332452352847,0.7658741868438862,0.0,0.35571446759259256,-0.0,0.0119107370417507,15.6,0.0,15.6,-0.0,-9.53,1519.3789,128.3443 -0.7560362713274873,0.011949022553359947,0.7560362713274873,0.0,0.35600000000000004,-0.0,0.013450741869011651,16.16,0.0,16.16,-0.0,-7.914999999999999,1518.6068,144.12622 -0.7464238924528771,0.01381948753108572,0.7464238924528771,0.0,0.3564643518518519,-0.0,0.015564113421368531,8.37,0.0,8.37,-0.0,-5.95,1517.8427,156.37433 -0.7370421902576433,0.013389574151599146,0.7370421902576433,0.0,0.35815185185185183,-0.0,0.015087434531443024,0.45,0.0,0.45,-0.0,-6.4399999999999995,1517.0873,160.76111 -0.7279212298580212,0.00866774535863141,0.7279212298580212,0.0,0.3599482638888889,-0.0,0.009771645757339286,0.0,0.0,0.0,-0.0,-12.280000000000001,1516.3436,161.38397 -0.7190483476980793,0.008522136885057353,0.7190483476980793,0.0,0.36000787037037035,-0.0,0.009612135824346378,3.19,0.0,3.19,-0.0,-12.495,1515.6112,163.50563 -0.7103983254425907,0.007901193083044992,0.7103983254425907,0.0,0.36121863425925926,-0.0,0.008916023979174122,3.19,0.0,3.19,-0.0,-13.505,1514.8884,166.59099 -0.7019743142395439,0.004766728023793983,0.7019743142395439,0.0,0.3637142361111111,-0.0,0.005381498312708827,0.0,0.0,0.0,-0.0,-19.865000000000002,1514.176,168.17802 -0.6937579611432091,0.005715979573893072,0.6937579611432091,0.0,0.36400011574074076,-0.0,0.006456173904127769,0.0,0.0,0.0,-0.0,-17.655,1513.4729,168.18071 -0.6857050513881355,0.006824646078504186,0.6857050513881355,0.0,0.36521898148148146,-0.0,0.007711960811811348,0.0,0.0,0.0,-0.0,-15.485,1512.7756,168.21928 -0.6777927202889317,0.011787432580410288,0.6777927202889317,0.0,0.36771435185185186,-0.0,0.013326095767179988,0.0,0.0,0.0,-0.0,-8.475,1512.0825,168.45267 -0.6700251000043798,0.01644069730113593,0.6700251000043798,1.0936188958865501e-8,0.3680083333333333,-0.0,0.018595235938985655,1.04,1.0936188958865501e-8,1.039999989063811,-0.0,-3.9299999999999997,1511.3942,169.04036 -0.6624114865905188,0.01729847395072426,0.6624114865905188,1.1617573298145265e-5,0.3696696759259259,-9.734115751602584e-15,0.01957426253236357,1.58,1.1617573307879381e-5,1.5799883824266923,-0.0,-3.275,1510.7117,170.14139 -0.6549714034543962,0.014309029783567687,0.6549714034543962,0.0,0.3719483796296296,-0.0,0.016198759901739815,0.77,0.0,0.77,-0.0,-5.984999999999999,1510.0371,171.30571 -0.6477552187701503,0.0067093668381472335,0.6477552187701503,0.0,0.37211041666666667,-0.0,0.007598772561363707,0.0,0.0,0.0,-0.0,-15.905000000000001,1509.3755,172.85724 -0.6407442583700355,0.0037822642069205792,0.6407442583700355,0.0,0.3746479166666667,-0.0,0.004285493180751603,0.19,0.0,0.19,-0.0,-22.925,1508.7256,177.2083 -0.6338830305089347,0.008303414854923016,0.6338830305089347,0.0,0.3760002314814815,-0.0,0.00941219240531047,16.0,0.0,16.0,-0.0,-13.325000000000001,1508.0826,184.4413 -0.6271247564377527,0.012610201648211333,0.6271247564377527,0.0,0.3772188657407407,-0.0,0.01430014613431762,6.47,0.0,6.47,-0.0,-7.87,1507.4425,193.58711 -0.6205095604427359,0.0070028117035868444,0.6205095604427359,0.0,0.3799997685185186,-0.0,0.007944624687772062,0.0,0.0,0.0,-0.0,-15.61,1506.8092,196.88611 -0.614073336420761,0.004055955693021669,0.614073336420761,0.0,0.3804640046296296,-0.0,0.004603346284073667,0.0,0.0,0.0,-0.0,-22.265,1506.1865,196.96378 -0.6077647414583104,0.007745537249314943,0.6077647414583104,0.0,0.383714699074074,-0.0,0.008794473530847308,0.0,0.0,0.0,-0.0,-14.45,1505.5698,196.96031 -0.601557844075098,0.009327628797283806,0.601557844075098,0.0,0.38400833333333334,-0.0,0.010595133314076454,1.01,0.0,1.01,-0.0,-12.07,1504.9568,197.32489 -0.5954459798199868,0.013579520266373917,0.5954459798199868,0.0,0.3866476851851852,-0.0,0.015431055250670915,5.8,0.0,5.8,-0.0,-7.175,1504.3469,200.38951 -0.5894407899033792,0.01473463174412317,0.5894407899033792,0.0,0.38799999999999996,-0.0,0.016750403739401048,2.05,0.0,2.05,-0.0,-6.1049999999999995,1503.7416,203.00793 -0.5835581866752334,0.009961832816685341,0.5835581866752334,0.0,0.3901519675925926,-0.0,0.01132917468102955,0.0,0.0,0.0,-0.0,-11.405,1503.1426,204.07655 -0.5778039696965819,0.011747289293668178,0.5778039696965819,0.0,0.39200034722222227,-0.0,0.013364961324466141,0.0,0.0,0.0,-0.0,-9.29,1502.5508,204.16139 -0.5721544403557027,0.016204811703747515,0.5721544403557027,0.0,0.3936696759259259,-0.0,0.018443513999733544,0.0,0.0,0.0,-0.0,-4.9799999999999995,1501.964,204.16139 -0.5666296383623537,0.010184780216892926,0.5666296383623537,0.0,0.39600023148148145,-0.0,0.011596286279752283,0.0,0.0,0.0,-0.0,-11.295,1501.3845,204.16139 -0.561222421977603,0.006716786271559722,0.561222421977603,0.0,0.3972188657407407,-0.0,0.007650581899379946,0.0,0.0,0.0,-0.0,-16.635,1500.8119,204.16139 -0.5559258916983744,0.006895634884186931,0.5559258916983744,0.0,0.40000023148148145,-0.0,0.007857259481529032,0.0,0.0,0.0,-0.0,-16.39,1500.2456,204.16139 -0.5507311278998154,0.007539591735304619,0.5507311278998154,0.0,0.4012189814814815,-0.0,0.008594230579122723,0.0,0.0,0.0,-0.0,-15.305,1499.6849,204.16139 -0.5456317460830369,0.007886400161281401,0.5456317460830369,0.0,0.40399999999999997,-0.0,0.008992881917718439,0.0,0.0,0.0,-0.0,-14.82,1499.1294,204.16139 -0.5406204662545177,0.008045898608993714,0.5406204662545177,0.0,0.40521898148148144,-0.0,0.00917813194554846,0.0,0.0,0.0,-0.0,-14.6,1498.5784,204.16139 -0.5356902498139421,0.009150928590267447,0.5356902498139421,0.0,0.4080003472222223,-0.0,0.01044247620075423,0.0,0.0,0.0,-0.0,-13.040000000000001,1498.0312,204.16139 -0.53083103506328,0.01278404607918372,0.53083103506328,0.0,0.40966990740740744,-0.0,0.014593667592925486,0.0,0.0,0.0,-0.0,-8.705,1497.487,203.93248 -0.5261212779038476,0.020191721290906545,0.5261212779038476,0.16659644006599816,0.41200046296296294,-1.79892013539057e-11,0.02305811744545293,9.45,0.16659644008398736,9.283403559916012,-0.0,-2.495,1496.9548,208.58588 -0.5215716328801193,0.019453893706881695,0.5215716328801193,0.000166224378902547,0.41464768518518513,-4.9682409197755746e-14,0.022223248697427152,4.13,0.0001662243789522294,4.129833775621048,-0.0,-3.105,1496.4362,215.34698 -0.5169482556833723,0.008382851830347347,0.5169482556833723,0.0,0.4159996527777778,-0.0,0.009579594937358138,0.0,0.0,0.0,-0.0,-14.389999999999999,1495.9044,217.37303 -0.5124496521532653,0.006108687076115849,0.5124496521532653,0.0,0.419205324074074,-0.0,0.006983205156225165,0.0,0.0,0.0,-0.0,-18.425,1495.3824,217.40826 -0.5080358860804259,0.007051142833981712,0.5080358860804259,0.0,0.41999976851851856,-0.0,0.008063368246996895,0.0,0.0,0.0,-0.0,-16.675,1494.8658,217.40826 -0.5036673426590084,0.01321339052964954,0.5036673426590084,0.0,0.42400011574074076,-0.0,0.015115451206402656,0.0,0.0,0.0,-0.0,-8.695,1494.3501,217.40826 -0.4993261573176019,0.017497438025686343,0.4993261573176019,0.0,0.42400011574074076,-0.0,0.02002311206582748,0.0,0.0,0.0,-0.0,-4.87,1493.8331,217.57272 -0.4950507218060381,0.020740520414372313,0.4950507218060381,0.06588386069666807,0.428,-5.395155373317876e-12,0.023742480546144203,12.88,0.06588386070206323,12.814116139297937,-0.0,-2.62,1493.3196,224.22127 -0.49709289655918204,0.021490777077994728,0.49709289655918204,2.489510351604981,0.42846388888888887,-5.696245124842616e-10,0.024597279012124867,6.28,2.489510352174605,3.790489647825395,-0.0,-2.1350000000000002,1493.5654,233.01714 -0.497437466377689,0.020886521996885177,0.497437466377689,0.007400660855982715,0.43200000000000005,-3.849693027788496e-12,0.023905016244668408,2.05,0.007400660859832408,2.0425993391401676,-0.0,-2.6550000000000002,1493.6068,236.63443 -0.49317719453797865,0.018934723835284693,0.49317719453797865,0.0,0.4336695601851852,-0.0,0.02167860220282832,0.0,0.0,0.0,-0.0,-4.08,1493.0931,237.69814 -0.48900038549197083,0.01486016357535378,0.48900038549197083,0.0,0.43600011574074077,-0.0,0.01701937699915809,0.0,0.0,0.0,-0.0,-7.475,1492.5852,237.70236 -0.484902559715942,0.01637311301386515,0.484902559715942,0.0,0.4399488425925926,-0.0,0.018758477319559697,0.01,0.0,0.01,-0.0,-6.275,1492.0826,237.45778 -0.4808518510202103,0.01972838252176822,0.4808518510202103,1.9681712180363856e-6,0.4400003472222222,-0.0,0.02261016047625321,17.85,1.9681712180363856e-6,17.849998031828783,-0.0,-3.6950000000000003,1491.5817,246.73402 -0.5438501914836303,0.02532456586526428,0.5438501914836303,13.832713306794254,0.4440001157407408,-0.0072863203327306275,0.028881428868308624,13.84,13.839999627126984,3.728730155838633e-7,-0.0,-0.35,1498.9341,254.65105 -0.6166254070438381,0.02753811970466826,0.6166254070438381,4.64934705934679,0.4440081018518519,1.6393470593476986,0.031249517525134426,3.01,3.0099999999990916,9.079592633298716e-13,-0.0,0.79,1506.4342,254.20885 -0.6798587766846641,0.03113521436660864,0.6798587766846641,8.458894169687802,0.4480001157407407,5.9488941696878035,0.03519519423881459,2.51,2.51,0.0,-0.0,2.4,1512.2643,250.58418 -0.7551698163224565,0.0326606963914157,0.7551698163224565,13.926759758584542,0.4501516203703704,7.48675975858454,0.036767058228292404,6.44,6.44,0.0,-0.0,2.975,1518.5383,246.43988 -0.8198146898648329,0.029896984234050218,0.8198146898648329,6.935642442969465,0.452,3.7156424429694654,0.033547505789772954,3.22,3.2199999999999998,3.5749181392930043e-16,-0.0,1.565,1523.4435,243.43802 -0.8594736709912643,0.026017792628577882,0.8594736709912643,0.009151065004022014,0.45599953703703705,-0.000848931545528648,0.02914068584581839,0.01,0.00999999654955066,3.450449339581496e-9,-0.0,-0.6050000000000001,1526.2648,241.69621 -0.8611196088901274,0.02315271917626342,0.8611196088901274,0.018913888769713127,0.45599953703703705,-1.5629695171071006e-10,0.025929778966250053,0.13,0.018913888926010078,0.11108611107398993,-0.0,-2.27,1526.379,241.29517 -0.8486745306742073,0.020943867356013838,0.8486745306742073,0.0,0.46,-0.0,0.023469353274627992,0.0,0.0,0.0,-0.0,-3.795,1525.5096,241.34764 -0.8365033475807044,0.019840078594170075,0.8365033475807044,0.0,0.4604638888888889,-0.0,0.022245045246232543,0.0,0.0,0.0,-0.0,-4.555,1524.647,241.33815 -0.824705608675708,0.014978012328927497,0.824705608675708,0.0,0.463999537037037,-0.0,0.01680295964076767,0.66,0.0,0.66,-0.0,-8.485,1523.7987,241.64746 -0.8132354865749626,0.020317341255731234,0.8132354865749626,8.289923747462069e-11,0.46799976851851854,-0.0,0.02280535982735426,1.23,8.289923747462069e-11,1.2299999999171007,-0.0,-4.435,1522.9623,242.55852 -0.931227690804812,0.029490344408601533,0.931227690804812,19.515824218091126,0.46799976851851854,1.6258242180967994,0.03292673913620623,17.89,17.889999999994327,5.672555758451381e-12,-0.0,0.7850000000000001,1531.0533,243.20045 -1.3049602915416056,0.03570913969355418,1.3049602915416056,23.002497157229477,0.4719996527777777,8.30249715722948,0.039352250626689914,14.7,14.7,0.0,-0.0,3.28,1551.2043,238.20486 -1.4589871709783702,0.01867858515372374,1.4589871709783702,0.0,0.4719996527777777,-0.0,0.0204961699494519,0.41,0.0,0.41,-0.0,-6.025,1557.8673,237.81506 -1.4238685714387018,0.009681328771963755,1.4238685714387018,0.0,0.4760001157407408,-0.0,0.010633335934209006,0.0,0.0,0.0,-0.0,-14.774999999999999,1556.4122,238.14267 -1.3904874637813962,0.009788552545806361,1.3904874637813962,0.0,0.4800005787037037,-0.0,0.010760898760789154,0.0,0.0,0.0,-0.0,-14.73,1554.9955,238.16089 -1.3585996756635654,0.01251296652500204,1.3585996756635654,0.0,0.4800005787037037,-0.0,0.013768209948554511,1.38,0.0,1.38,-0.0,-11.565,1553.61,238.83885 -1.3280348057982585,0.01929444490929183,1.3280348057982585,1.0047518372857667e-16,0.4840002314814815,-0.0,0.021248560498717227,1.81,1.0047518372857667e-16,1.81,-0.0,-5.875,1552.2511,240.41101 -1.2987865926922129,0.014808811313523322,1.2987865926922129,0.0,0.4840002314814815,-0.0,0.016322613009760976,0.0,0.0,0.0,-0.0,-9.435,1550.9211,241.17941 -1.270842165444641,0.013628651719007066,1.270842165444641,0.0,0.48800034722222224,-0.0,0.015034405750753444,0.0,0.0,0.0,-0.0,-10.629999999999999,1549.6222,241.18419 -1.244035412310236,0.017982760697900405,1.244035412310236,0.0,0.4919994212962963,-0.0,0.019853940148198853,0.0,0.0,0.0,-0.0,-7.0249999999999995,1548.349,241.18529 -1.2182596857790977,0.020147635155291197,1.2182596857790977,0.0,0.4919994212962963,-0.0,0.022262056285190908,0.0,0.0,0.0,-0.0,-5.46,1547.0986,242.1748 -1.1935082727801718,0.01963419731333415,1.1935082727801718,0.0,0.4959997685185185,-0.0,0.021711938271113826,3.84,0.0,3.84,-0.0,-5.915,1545.8728,244.31631 -1.1697832651657334,0.015888313366012152,1.1697832651657334,0.0,0.4959997685185185,-0.0,0.017583294249678652,0.5,0.0,0.5,-0.0,-8.77,1544.6737,246.04295 -1.1469822672605305,0.018692969075713935,1.1469822672605305,0.0,0.4999997685185186,-0.0,0.020702908842042005,9.7,0.0,9.7,-0.0,-6.675,1543.4982,251.06825 -1.1250441541519058,0.01667733333037756,1.1250441541519058,0.0,0.503999537037037,-0.0,0.018484355938759182,5.38,0.0,5.38,-0.0,-8.315,1542.3448,257.10495 -1.103940765057169,0.016205087697833766,1.103940765057169,0.0,0.503999537037037,-0.0,0.01797412030852581,0.0,0.0,0.0,-0.0,-8.69,1541.214,259.7029 -1.0836097045390638,0.016722834508428024,1.0836097045390638,0.0,0.5079996527777778,-0.0,0.018561756768235772,0.0,0.0,0.0,-0.0,-8.365,1540.1039,259.82147 -1.063935754229462,0.02538841205193792,1.063935754229462,0.04271504280398291,0.5079996527777778,-5.941236679482396e-12,0.028200278547508544,7.56,0.04271504280992414,7.517284957190076,-0.0,-2.6099999999999994,1539.0096,263.61685 -1.2626316457430784,0.04309660798885324,1.2626316457430784,22.021893546749755,0.511999537037037,12.621893546749755,0.04755377081421924,9.4,9.4,0.0,-0.0,4.8950000000000005,1549.2351,260.81873 -1.7226603763356658,0.047735757995806226,1.7226603763356658,18.275079606749756,0.5159998842592592,15.965079606749756,0.05204938026139971,2.31,2.31,0.0,-0.0,6.1450000000000005,1567.7885,246.65187 -2.2333023614719005,0.047813390157886534,2.2333023614719005,16.600761000749753,0.5159998842592592,15.630761000749752,0.05162351711901847,0.97,0.97,0.0,-0.0,6.02,1583.2925,230.90479 -2.784419670030557,0.0441403128232595,2.784419670030557,14.282665171149752,0.520000462962963,11.752665171149753,0.04726453770946132,2.53,2.53,0.0,-0.0,4.569999999999999,1596.4642,217.14384 -3.449806999066719,0.041518846416363955,3.449806999066719,16.61450711346973,0.520000462962963,8.984507113469732,0.044104001737152045,7.63,7.63,0.0,-0.0,3.535,1609.261,206.60483 -4.059810653205139,0.035728054328185044,4.059810653205139,10.565271458719101,0.5240002314814816,2.5252714587191902,0.03772470713978791,8.04,8.03999999999991,8.926193117986257e-14,-0.0,1.1199999999999999,1618.9845,200.8471 -4.486759821752875,0.03424541620742928,4.486759821752875,9.548104585135132,0.5279998842592593,0.368104585384381,0.036026327839716654,9.18,9.17999999975075,2.4925029040723243e-10,-0.0,0.3400000000000001,1624.9562,199.28171 -4.8424388020565186,0.03159732004293043,4.8424388020565186,9.289870978550029,0.5279998842592593,-8.796886308612528e-5,0.03314758281965275,9.29,9.289958947413115,4.1052586883233986e-5,-0.0,-0.8600000000000001,1629.5121,199.22762 -4.849431934372485,0.029788496312774655,4.849431934372485,1.6146744444928534,0.5319998842592593,-1.2624581573538189e-8,0.031248359909191066,1.71,1.614674457117435,0.09532554288256515,-0.0,-1.81,1629.5983,199.24727 -4.548666193388618,0.031443780447714204,4.548666193388618,-2.3524267302646597e-5,0.5319998842592593,-2.3524267302646597e-5,0.033062343913593924,0.0,0.0,0.0,-0.0,-1.0050000000000001,1625.7745,199.254 -4.237239396651919,0.03611724494165702,4.237239396651919,2.0028186738676905,0.5359994212962963,2.0028186738676905,0.03807556883753371,0.0,0.0,0.0,-0.0,0.925,1621.5391,199.10233 -4.072593702059996,0.03620281251799704,4.072593702059996,2.285377178221193,0.5395353009259259,1.8953771782212385,0.03822156473395691,0.39,0.38999999999995455,4.548528220738035e-14,-0.0,0.8849999999999999,1619.1722,197.54605 -3.9896631421357296,0.03752059084542904,3.9896631421357296,3.287702991416927,0.54,3.287702991416927,0.0396429066938163,0.0,0.0,0.0,-0.0,1.405,1617.9436,194.88501 -3.8793383463928404,0.03612513167807347,3.8793383463928404,1.558113558173484,0.5439997685185185,1.558113558173484,0.03820806269731436,0.0,0.0,0.0,-0.0,0.7600000000000002,1616.2689,192.57317 -3.6501212209440976,0.03158254946348013,3.6501212209440976,-6.488874201272453e-6,0.5439997685185185,-6.488874201272453e-6,0.033478900729701805,0.0,0.0,0.0,-0.0,-1.145,1612.6317,192.40875 -3.439498967678857,0.03530488218136441,3.439498967678857,0.49821585564100085,0.5479999999999999,0.49821585564100085,0.0375072926047609,0.0,0.0,0.0,-0.0,0.38500000000000023,1609.0823,192.38258 -3.3999635760023637,0.0397011996687251,3.3999635760023637,5.026174783779085,0.5498481481481481,5.026174783779085,0.042195969386270696,0.0,0.0,0.0,-0.0,2.0549999999999997,1608.3918,189.63712 -3.6623029260925932,0.046477239043185375,3.6623029260925932,11.017164237949753,0.5520004629629629,11.017164237949753,0.04926185296251317,0.0,0.0,0.0,-0.0,4.295,1612.8307,181.6448 -4.138138587877144,0.04764047845437789,4.138138587877144,11.538701263309754,0.5559922453703704,11.538701263309754,0.05026742000570848,0.0,0.0,0.0,-0.0,4.49,1620.1257,170.40628 -4.730247003606928,0.05008818584040749,4.730247003606928,13.357394479949754,0.5560002314814815,13.357394479949754,0.052590848419678,0.0,0.0,0.0,-0.0,5.17,1628.1122,157.95244 -5.542545811131492,0.05381093634520882,5.542545811131492,15.737742954669752,0.56,15.737742954669752,0.05617307196362515,0.0,0.0,0.0,-0.0,6.06,1637.5764,143.40016 -7.32910807892511,0.060233708076535324,7.32910807892511,30.026784646029753,0.5600517361111111,19.936784646029754,0.06224356411461116,10.09,10.09,0.0,-0.0,7.63,1654.2622,125.54757 -9.283711591848771,0.054081641863236274,9.283711591848771,15.865260067549755,0.5639996527777777,14.895260067549755,0.055413293772731215,0.97,0.97,0.0,-0.0,5.745,1668.3805,108.24155 -10.37191387971786,0.057745141984100336,10.37191387971786,17.235490309549753,0.5663305555555556,17.235490309549753,0.05893317983370207,0.0,0.0,0.0,-0.0,6.62,1674.9999,92.08906 -11.976798944299617,0.054009055458989395,11.976798944299617,22.236504622829756,0.5679997685185185,14.186504622829753,0.05483893122756179,8.05,8.05,0.0,-0.0,5.4799999999999995,1683.5918,76.407425 -12.907780295463127,0.04465487454151685,12.907780295463127,12.079721799552646,0.5715351851851852,6.229721799552646,0.04522093979255703,5.85,5.85,0.0,-0.0,2.505,1688.0624,66.216194 -12.89483223725369,0.05395811416954127,12.89483223725369,13.758576807149755,0.5719994212962963,13.758576807149755,0.0546440516631639,0.0,0.0,0.0,-0.0,5.32,1688.0024,56.190582 -13.507881936834444,0.06061592339480653,13.507881936834444,18.144836917869753,0.5760005787037037,18.144836917869753,0.06128579002153316,0.0,0.0,0.0,-0.0,6.96,1690.7762,40.229546 -14.661560944000653,0.05534523576083244,14.661560944000653,19.910232065229756,0.5760005787037037,14.320232065229755,0.055795341306038006,5.59,5.59,0.0,-0.0,5.53,1695.6707,24.007128 -14.661890604779162,0.04395601419616313,14.661890604779162,10.022329079230762,0.5800003472222222,4.852329079230761,0.04431345966257155,5.17,5.17,0.0,-0.0,1.9900000000000002,1695.672,14.46159 -12.852912929625408,0.0392077586407236,12.852912929625408,1.9844271273026486,0.5807946759259259,0.4544271273334234,0.03971075829780818,1.53,1.529999999969225,3.077487764624465e-11,-0.0,0.3700000000000001,1687.808,11.7788 -10.845824881016622,0.03855620079124362,10.845824881016622,1.4664667895380648,0.5840005787037037,-0.04353321014346164,0.03928686639495874,1.51,1.5099999996815263,3.184736985240022e-10,-0.0,0.1349999999999998,1677.6681,11.605578 -9.914352531576174,0.04777431502381731,9.914352531576174,7.593361968993918,0.5853530092592593,7.473361968993918,0.04883577370415972,0.12,0.12,0.0,-0.0,3.2899999999999996,1672.3054,7.473362 -9.141895541675108,0.05995871538785012,9.141895541675108,2.7481229305235413,0.5880002314814815,2.7481229305235413,0.06146894907872032,0.0,0.0,0.0,-0.0,6.69,1667.4612,2.748123 -8.135497100482594,0.07294338235293335,8.135497100482594,1.0097632831990873,0.5903311342592593,1.0097632831990873,0.07509435166436658,0.0,0.0,0.0,-0.0,9.73,1660.496,1.0098048 -7.223378238011997,0.08514559882381942,7.223378238011997,0.3637420844584673,0.5920008101851852,0.3637420844584673,0.08803288615229057,0.0,0.0,0.0,-0.0,12.204999999999998,1653.3944,0.37251198 -6.6519571357356995,0.07773265961572862,6.6519571357356995,3.7623670963252622,0.5943310185185184,0.12236709632526227,0.08060852017268376,3.64,3.64,0.0,-0.0,10.74,1648.4728,0.14974155 -6.429089162249201,0.0773884207787424,6.429089162249201,5.337811391671438,0.5959997685185184,0.04781139167143774,0.08035074427376418,5.29,5.29,0.0,-0.0,10.645,1646.4376,0.071257204 -6.1304117578430715,0.09589148356276755,6.1304117578430715,1.762466098103454,0.5987809027777777,0.022466098103453933,0.09973417131277691,1.74,1.74,0.0,-0.0,14.035,1643.5967,0.037852477 -5.651871782209221,0.10414486152479936,5.651871782209221,0.4317471850988345,0.5999998842592592,0.011747185098834517,0.10863911509543267,0.42,0.42,0.0,-0.0,15.4,1638.7429,0.021245884 -5.224722033296427,0.109910292504533,5.224722033296427,1.1365024499576937,0.6027810185185185,0.006502449957693703,0.11498263984657309,1.13,1.13,0.0,-0.0,16.26,1634.0498,0.012254923 -4.9990314794169555,0.10583911635759322,4.9990314794169555,3.753682468235385,0.6039996527777778,0.003682468235384883,0.11090255769593321,3.75,3.75,0.0,-0.0,15.629999999999999,1631.4127,0.007112131 -4.902513981539388,0.1040946911817897,4.902513981539388,4.052123348225382,0.6063304398148148,0.0021233482253820548,0.10915257761661963,4.05,4.05,0.0,-0.0,15.305,1630.2484,0.0041601737 -4.888244930830587,0.09030567435048989,4.888244930830587,5.631221496718068,0.6079995370370371,0.0012214967180675079,0.09470367447030749,5.63,5.63,0.0,-0.0,12.95,1630.0743,0.0024138612 -4.732655151716159,0.08033514320168081,4.732655151716159,0.9206989831073169,0.6098476851851852,0.0006989831073169032,0.0843475241559417,0.92,0.92,0.0,-0.0,11.05,1628.1426,0.0013883291 -4.408829710980744,0.07897561281511938,4.408829710980744,0.0003960100418575579,0.6120002314814815,0.0003960100418575579,0.08313622595989982,0.0,0.0,0.0,-0.0,10.765,1623.9098,0.0007889082 -4.1019011603639814,0.0728446214066658,4.1019011603639814,0.0002324572532321164,0.6133524305555556,0.0002324572532321164,0.07688627116702351,0.0,0.0,0.0,-0.0,9.5,1619.6005,0.00046383878 -3.833328727793158,0.08110275907432135,3.833328727793158,0.00013156505448206647,0.6159914351851852,0.00013156505448206647,0.08581687717506477,0.0,0.0,0.0,-0.0,11.165000000000001,1615.5564,0.00026278483 -3.596324917810839,0.09690118793350365,3.596324917810839,-1.05994681241807e-5,0.6162851851851852,-1.05994681241807e-5,0.10277606171035068,0.0,0.0,0.0,-0.0,14.055000000000001,1611.745,-2.1201184e-5 -3.3858503842279917,0.11198264910144326,3.3858503842279917,-0.00019133196518704735,0.6195356481481481,-0.00019133196518704735,0.11903787256326856,0.0,0.0,0.0,-0.0,16.38,1608.1434,-0.0003833989 -3.198181917481386,0.10699628518190296,3.198181917481386,-0.0003663840334922319,0.6199998842592592,-0.0003663840334922319,0.11397871430638924,0.0,0.0,0.0,-0.0,15.65,1604.738,-0.00073547265 -3.030148570464562,0.09682346612298766,3.030148570464562,-0.0004920976352984384,0.6227818287037037,-0.0004920976352984384,0.10334961069763916,0.0,0.0,0.0,-0.0,13.975,1601.5149,-0.0009890867 -2.879047577736587,0.09464488086629214,2.879047577736587,-0.000525165366855967,0.6240006944444445,-0.000525165366855967,0.10121725017105422,0.0,0.0,0.0,-0.0,13.605,1598.4601,-0.0010559054 -2.7425805026168506,0.08268324554866728,2.7425805026168506,-0.0004220004800215034,0.6253526620370371,-0.0004220004800215034,0.08858568757586764,0.0,0.0,0.0,-0.0,11.43,1595.56,-0.000847593 -2.666740858270921,0.09269988065887123,2.666740858270921,-0.00023588637783491744,0.6278895833333333,-0.00023588637783491744,0.0994217240900409,0.0,0.0,0.0,-0.0,13.215,1593.8854,-0.00047289088 -2.7647966678781986,0.11091209112578182,2.7647966678781986,7.849901716708096,0.6280518518518519,-9.828329190378583e-5,0.11879381075242741,7.85,7.85,0.0,-0.0,16.119999999999997,1596.0419,-0.00019676016 -3.152096433068092,0.08435636932770724,3.152096433068092,14.899966051702666,0.6303303240740741,-3.394829733417514e-5,0.08990991502949511,14.9,14.9,0.0,-0.0,11.54,1603.8712,-6.791966e-5 -3.6238786959442613,0.06833346846558011,3.6238786959442613,10.589981164299568,0.6319916666666667,-1.8835700432447135e-5,0.07245586278784041,10.59,10.59,0.0,-0.0,8.11,1612.2008,-3.76785e-5 -3.79997021278257,0.0758432508405367,3.79997021278257,3.8899917182906245,0.6322856481481481,-8.281709375491532e-6,0.08027759572792932,3.89,3.89,0.0,-0.0,9.7,1615.0344,-1.656479e-5 -3.756552438432812,0.0943342616529042,3.756552438432812,2.0199962079476683,0.6347809027777778,-3.79205233181394e-6,0.09989217209480776,2.02,2.02,0.0,-0.0,13.114999999999998,1614.3481,-7.5843923e-6 -3.6420498996167487,0.10060293471812565,3.6420498996167487,2.9399979832773266,0.6360001157407408,-2.016722673202259e-6,0.10665230819940973,2.94,2.94,0.0,-0.0,14.145,1612.4995,-4.0335267e-6 -3.493055009483985,0.07228965816602666,3.493055009483985,-8.436496038054642e-7,0.6362856481481481,-8.436496038054642e-7,0.07675525979591209,0.0,0.0,0.0,-0.0,8.9,1610.005,-1.6873134e-6 -3.308068073365378,0.08696726662942224,3.308068073365378,-4.066881389874528e-7,0.6387810185185185,-4.066881389874528e-7,0.09252630690644084,0.0,0.0,0.0,-0.0,11.785,1606.7555,-8.133796e-7 -3.1421255666456056,0.12042997743307571,3.1421255666456056,1.4399999031282145,0.6399917824074074,-9.687178556537985e-8,0.12837354948276475,1.44,1.44,0.0,-0.0,17.095,1603.682,-1.9374376e-7 -3.0149193841890187,0.10494123985419739,3.0149193841890187,0.3500002012542026,0.6400512731481481,2.0125420265794293e-7,0.11203559274401927,0.35,0.35,0.0,-0.0,14.845,1601.214,4.025076e-7 -2.9313211505929013,0.06463360090450211,2.9313211505929013,1.8900004024519734,0.6418483796296296,4.024519735941456e-7,0.06907547752348793,1.89,1.89,0.0,-0.0,7.135,1599.5347,8.049007e-7 -2.8967860942184607,0.0792393121915886,2.8967860942184607,4.630000421482738,0.6435354166666667,4.214827385936961e-7,0.08472243911013332,4.63,4.63,0.0,-0.0,10.27,1598.8269,8.429619e-7 -2.9216305862982783,0.06785836391577822,2.9216305862982783,2.4019696239117955e-7,0.6439998842592592,2.4019696239117955e-7,0.0725308261415971,0.0,0.0,0.0,-0.0,7.834999999999999,1599.3369,4.8039277e-7 -3.0054684479121705,0.07739733494436525,3.0054684479121705,6.440000040947767,0.6442856481481481,4.094776684674978e-8,0.08263931149173145,6.44,6.44,0.0,-0.0,9.86,1601.0265,8.18955e-8 -3.118840317067515,0.06427951686143764,3.118840317067515,4.799999886056544,0.6458482638888889,-1.1394345540234942e-7,0.06853838439910369,4.8,4.8,0.0,-0.0,6.92,1603.2378,-2.2788717e-7 -3.2276493194403075,0.07019208802293227,3.2276493194403075,5.469999826162341,0.6471538194444444,-1.738376587187132e-7,0.07474721356975267,5.47,5.47,0.0,-0.0,8.225,1605.2858,-3.4767592e-7 -3.279997795842902,0.08079639499674503,3.279997795842902,3.619999886287236,0.6479927083333333,-1.1371276401751528e-7,0.08598822182383299,3.62,3.62,0.0,-0.0,10.395,1606.2466,-2.2742579e-7 -3.2063311129930656,0.08338245655738273,3.2063311129930656,0.6799999574351261,0.6480521990740741,-4.2564873937751864e-8,0.0888154686730985,0.68,0.68,0.0,-0.0,10.905,1604.89,-8.5129784e-8 -3.0584490705685874,0.09081341709846708,3.0584490705685874,7.543348737347263e-9,0.6487947916666666,7.543348737347263e-9,0.09690087795457154,0.0,0.0,0.0,-0.0,12.275,1602.0701,1.5086696e-8 -2.8995585174184524,0.0873534245780491,2.8995585174184524,2.1460381192379106e-8,0.6498487268518519,2.1460381192379106e-8,0.09339468700788944,0.0,0.0,0.0,-0.0,11.66,1598.884,4.2920753e-8 -2.759574101978522,0.10203983295654946,2.759574101978522,1.1179169951596218e-8,0.6507814814814814,1.1179169951596218e-8,0.10929879795795455,0.0,0.0,0.0,-0.0,14.170000000000002,1595.929,2.2358337e-8 -2.6330076608769164,0.11861678531485617,2.6330076608769164,0.1100000027691481,0.6515357638888889,2.769148098678933e-9,0.1272786220060761,0.11,0.11,0.0,-0.0,16.655,1593.1251,5.538296e-9 -2.5245078371172873,0.12293472672279761,2.5245078371172873,0.21999999818723665,0.6519921296296297,-1.81276335098495e-9,0.1321202874886086,0.22,0.22,0.0,-0.0,17.265,1590.612,-3.6255268e-9 -2.4545529786217,0.11438612455171504,2.4545529786217,0.7999999984278031,0.6520001157407407,-1.5721969034831766e-9,0.12306278330485855,0.8,0.8,0.0,-0.0,16.085,1588.9338,-3.1443939e-9 -2.5169851809858312,0.11709061869598754,2.5169851809858312,4.789999999212829,0.6520517361111111,-7.871710998794622e-10,0.12585361497872385,4.79,4.79,0.0,-0.0,16.455,1590.4338,-1.5743422e-9 -2.730704865690093,0.11028601092191331,2.730704865690093,11.699999999658408,0.6522856481481482,-3.4159081002571745e-10,0.11817810406706772,11.7,11.7,0.0,-0.0,15.41,1595.3009,-6.831816e-10 -3.0073304441523008,0.12482552556394143,3.0073304441523008,4.089999999817518,0.6527943287037037,-1.8248136302030952e-10,0.1332766456496667,4.09,4.09,0.0,-0.0,17.39,1601.0635,-3.6496273e-10 -3.1320902072960473,0.12186421170420686,3.1320902072960473,6.19999999994817,0.653352662037037,-5.183083820559402e-11,0.12991786255471804,6.2,6.2,0.0,-0.0,16.95,1603.491,-1.03661676e-10 -3.1522897293802723,0.12453633268688186,3.1522897293802723,1.6600000000311588,0.653848611111111,3.115879430442539e-11,0.13273479659092688,1.66,1.66,0.0,-0.0,17.295,1603.8749,6.231759e-11 -3.139762926777945,0.13478476073143816,3.139762926777945,3.520000000039121,0.653848611111111,3.912131037318612e-11,0.1436792002675025,3.52,3.52,0.0,-0.0,18.625,1603.6371,7.824262e-11 -3.073257320474767,0.14307435531664664,3.073257320474767,1.2100000000218771,0.653848611111111,2.1877244812186195e-11,0.1526375212100187,1.21,1.21,0.0,-0.0,19.65,1602.3585,4.375449e-11 -2.9462364573055444,0.13556448145514446,2.9462364573055444,1.1661018506331271e-11,0.6543310185185185,1.1661018506331271e-11,0.14485355991790255,0.0,0.0,0.0,-0.0,18.75,1599.8378,2.3322037e-11 -2.801466358805013,0.1315510014906722,2.801466358805013,6.0242717935831e-12,0.6543310185185185,6.0242717935831e-12,0.14082994848098127,0.0,0.0,0.0,-0.0,18.275,1596.8287,1.2048544e-11 -2.6692167274707814,0.1485857329784965,2.6692167274707814,9.325994837581608e-13,0.653848611111111,9.325994837581608e-13,0.1593544243083192,0.0,0.0,0.0,-0.0,20.384999999999998,1593.9408,1.865199e-12 -2.5485077488246404,0.1573970440961444,2.5485077488246404,-2.412195660173133e-12,0.653848611111111,-2.412195660173133e-12,0.16909752327147684,0.0,0.0,0.0,-0.0,21.405,1591.1771,-4.8243913e-12 -2.4383060853259804,0.14323872714856703,2.4383060853259804,-2.7528988202843324e-12,0.653352662037037,-2.7528988202843324e-12,0.15414244945075253,0.0,0.0,0.0,-0.0,19.83,1588.5372,-5.5057976e-12 -2.37088528396732,0.15396598591583183,2.37088528396732,6.7599999999986125,0.653352662037037,-1.3875476288590188e-12,0.16586113933232655,6.76,6.76,0.0,-0.0,21.085,1586.8627,-2.7750953e-12 -2.3411098700363984,0.12847505006002582,2.3411098700363984,1.5999999999997185,0.6527943287037037,-2.815996676285412e-13,0.13846667560982792,1.6,1.6,0.0,-0.0,18.03,1586.1079,-5.6319934e-13 -2.304904655388918,0.10062321105650511,2.304904655388918,3.0053013571743175e-13,0.6522856481481482,3.0053013571743175e-13,0.1085124519515014,0.0,0.0,0.0,-0.0,14.015,1585.1771,6.0106027e-13 -2.2539025933900705,0.10600757053310306,2.2539025933900705,0.6300000000002424,0.6520517361111111,2.42345016667857e-13,0.11441541775987793,0.63,0.63,0.0,-0.0,14.885,1583.8408,4.8469003e-13 -2.4767940680699976,0.1326240661404772,2.4767940680699976,15.220000000000145,0.6519921296296297,1.4354161847876313e-13,0.1426357900766956,15.22,15.22,0.0,-0.0,18.55,1589.4725,2.8708324e-13 -3.2574015445809796,0.11457326089118544,3.2574015445809796,21.900000000000084,0.6518894675925926,8.522783851281472e-14,0.12196687486857742,21.9,21.9,0.0,-0.0,15.94,1605.8337,1.7045568e-13 -3.881575116983324,0.10387906857857129,3.881575116983324,6.1300000000000505,0.6511538194444445,5.075058212222561e-14,0.1098662689704578,6.13,6.13,0.0,-0.0,14.245,1616.3033,1.01501164e-13 -3.8339007604570314,0.12354146613256163,3.8339007604570314,3.0430119416043304e-14,0.6503311342592593,3.0430119416043304e-14,0.13072162362847595,0.0,0.0,0.0,-0.0,17.13,1615.5653,6.086024e-14 -3.7810265576937305,0.13462480813353664,3.7810265576937305,6.500000000000018,0.6493528935185184,1.786708598455554e-14,0.14252228635778896,6.5,6.5,0.0,-0.0,18.605,1614.736,3.5734172e-14 -4.3920456715497345,0.12233157521393893,4.3920456715497345,20.64000000000001,0.6482863425925927,1.0443474935481094e-14,0.12879434387480973,20.64,20.64,0.0,-0.0,16.935000000000002,1623.682,2.088695e-14 -4.605821695336867,0.10812174409016137,4.605821695336867,0.040000000000006176,0.6480008101851852,6.1738012299047956e-15,0.11363516983101297,0.04,0.04,0.0,-0.0,14.875,1626.5203,1.23476025e-14 -4.289183965798834,0.13123423295497824,4.289183965798834,3.6904120133875056e-15,0.647890162037037,3.6904120133875056e-15,0.13828786709474608,0.0,0.0,0.0,-0.0,18.135,1622.2667,7.380824e-15 -3.9937345797108477,0.13031603803529654,3.9937345797108477,2.2006055730103505e-15,0.64678125,2.2006055730103505e-15,0.13768205487985935,0.0,0.0,0.0,-0.0,18.09,1618.0045,4.401211e-15 -3.9313848936635827,0.13854003042046492,3.9313848936635827,3.8100000000000014,0.645352199074074,1.2609853601157814e-15,0.1464559603231952,3.81,3.81,0.0,-0.0,19.17,1617.0648,2.5219707e-15 -4.523650154877276,0.1283975060222582,4.523650154877276,23.15,0.6440515046296297,6.881418483271335e-16,0.13503410158681242,23.15,23.15,0.0,-0.0,17.835,1625.4452,1.3762837e-15 -5.680386106727044,0.10352748242722755,5.680386106727044,15.14,0.6438894675925926,4.1493698278353154e-16,0.1079752915831742,15.14,15.14,0.0,-0.0,14.145,1639.0435,8.2987397e-16 -6.205146267340679,0.11596045573229705,6.205146267340679,7.87,0.6427809027777778,2.289131421547577e-16,0.12055429641601237,7.87,7.87,0.0,-0.0,15.98,1644.3203,4.578263e-16 -6.10306803926876,0.11570734667173156,6.10306803926876,2.9,0.6407940972222222,1.0402287217265946e-16,0.12036367190977855,2.9,2.9,0.0,-0.0,16.005000000000003,1643.3297,2.0804574e-16 -5.664154027944648,0.15173617674827225,5.664154027944648,0.17000000000000007,0.6399997685185186,5.397707861082926e-17,0.15827165898664533,0.17,0.17,0.0,-0.0,20.634999999999998,1638.8726,1.0795416e-16 -5.172685178642275,0.17628894184269492,5.172685178642275,3.2412910175490335e-17,0.6395354166666667,3.2412910175490335e-17,0.18449214827931898,0.0,0.0,0.0,-0.0,23.305,1633.452,6.482582e-17 -5.097959726653155,0.18637890385873004,5.097959726653155,7.49,0.6378482638888888,1.8411402617817544e-17,0.19515544915038327,7.49,7.49,0.0,-0.0,24.34,1632.583,3.6822805e-17 -5.343254594023853,0.17799159313684232,5.343254594023853,9.06,0.6360001157407408,9.785976780420845e-18,0.18605334359763842,9.06,9.06,0.0,-0.0,23.55,1635.3895,1.9571954e-17 -5.365636480458843,0.15472997019548018,5.365636480458843,2.84,0.6355359953703703,5.811313139328524e-18,0.16171345021845626,2.84,2.84,0.0,-0.0,21.125,1635.6392,1.1622626e-17 -5.0279197993787195,0.12700546024783688,5.0279197993787195,3.4708697026072054e-18,0.6338483796296296,3.4708697026072054e-18,0.13305345392413925,0.0,0.0,0.0,-0.0,17.855,1631.7568,6.941739e-18 -4.641403977579134,0.1412870990182223,4.641403977579134,1.9768512353899603e-18,0.6319996527777777,1.9768512353899603e-18,0.14844977118023295,0.0,0.0,0.0,-0.0,19.755,1626.9799,3.9537025e-18 -4.307273806663584,0.1285514368870695,4.307273806663584,0.38,0.6315355324074073,1.1415129676359347e-18,0.13543989082809746,0.38,0.38,0.0,-0.0,18.215,1622.5181,2.283026e-18 -4.015401543799234,0.14635452660920756,4.015401543799234,6.174825724525925e-19,0.6287943287037038,6.174825724525925e-19,0.1545962337481237,0.0,0.0,0.0,-0.0,20.535,1618.3276,1.2349651e-18 -3.7537584874189203,0.12341550404498763,3.7537584874189203,2.9920244619748786e-19,0.628,2.9920244619748786e-19,0.130690396969328,0.0,0.0,0.0,-0.0,17.71,1614.3037,5.984049e-19 -3.510957736120315,0.11797057294688806,3.510957736120315,1.5845056931289815e-19,0.6267813657407407,1.5845056931289815e-19,0.12523430734280297,0.0,0.0,0.0,-0.0,17.03,1610.3103,3.1690114e-19 -3.2697359626048335,0.1082759450808358,3.2697359626048335,2.929533810129853e-20,0.624052199074074,2.929533810129853e-20,0.1152469836534086,0.0,0.0,0.0,-0.0,15.725000000000001,1606.0594,5.8590676e-20 -3.0703690218050097,0.10096218959182027,3.0703690218050097,-6.796424812995676e-20,0.6238902777777778,-6.796424812995676e-20,0.10771433065658656,0.0,0.0,0.0,-0.0,14.620000000000001,1602.3024,-1.359285e-19 -2.9465496297383527,0.10427227574712891,2.9465496297383527,-1.0095138377795895e-19,0.6207944444444444,-1.0095138377795895e-19,0.11141672399759285,0.0,0.0,0.0,-0.0,15.254999999999999,1599.8441,-2.0190277e-19 -3.018261373727226,0.12381283957823747,3.018261373727226,6.53,0.6199998842592592,-6.47940461206046e-20,0.13217750949746962,6.53,6.53,0.0,-0.0,18.115,1601.2802,-1.2958809e-19 -3.407867566658015,0.1322334532932078,3.407867566658015,12.9,0.6183303240740741,-3.642375443808178e-20,0.14053070850275812,12.9,12.9,0.0,-0.0,19.195,1608.5305,-7.284751e-20 -3.6218126331020914,0.12111356694476702,3.6218126331020914,1.75,0.615999537037037,-2.150067786430497e-20,0.12842277098848343,1.75,1.75,0.0,-0.0,17.740000000000002,1612.1667,-4.3001356e-20 -3.4776311794631107,0.11173822890482264,3.4776311794631107,0.4,0.6151532407407407,-1.2531522131681978e-20,0.11866019384957183,0.4,0.4,0.0,-0.0,16.445,1609.7407,-2.5063044e-20 -3.2907559266399526,0.09712660894607521,3.2907559266399526,-7.381419705331535e-21,0.6120002314814815,-7.381419705331535e-21,0.10335520185603102,0.0,0.0,0.0,-0.0,14.260000000000002,1606.4421,-1.476284e-20 -3.113648988022317,0.10936418472219722,3.113648988022317,-4.202361451208162e-21,0.6115356481481482,-4.202361451208162e-21,0.11661739324631354,0.0,0.0,0.0,-0.0,16.255,1603.1383,-8.404723e-21 -2.9547158868454617,0.1190037453137763,2.9547158868454617,0.16,0.6080510416666667,-2.1890212078157822e-21,0.1271444176061642,0.16,0.16,0.0,-0.0,17.79,1600.0094,-4.3780424e-21 -2.810574514563077,0.10790547650605989,2.810574514563077,-3.6759418716490506e-22,0.6078891203703704,-3.6759418716490506e-22,0.1155025654331686,0.0,0.0,0.0,-0.0,16.195,1597.0226,-7.3518837e-22 -2.6793677489911087,0.11246117940741339,2.6793677489911087,8.3193659815262e-22,0.6042853009259259,8.3193659815262e-22,0.12059460768912768,0.0,0.0,0.0,-0.0,17.01,1594.1675,1.6638732e-21 -2.5595020828496104,0.1144901977289285,2.5595020828496104,9.623942494724913e-22,0.6039916666666666,9.623942494724913e-22,0.12298122606189414,0.0,0.0,0.0,-0.0,17.345,1591.4342,1.9247885e-21 -2.4337450158432916,0.11384478526356041,2.4337450158432916,4.666157945205915e-22,0.6002854166666667,4.666157945205915e-22,0.1225195846947067,0.0,0.0,0.0,-0.0,17.385,1588.4254,9.332316e-22 -2.3113115139366873,0.1293636587228321,2.3113115139366873,3.8763858109760645e-23,0.5999998842592592,3.8763858109760645e-23,0.13949167209886829,0.0,0.0,0.0,-0.0,19.58,1585.3429,7.7527716e-23 -2.220806633666283,0.16328310385719955,2.220806633666283,-2.1230657718423783e-22,0.5962851851851851,-2.1230657718423783e-22,0.1763320357830203,0.0,0.0,0.0,-0.0,23.740000000000002,1582.9574,-4.2461315e-22 -2.203272354783115,0.16986062307073974,2.203272354783115,2.54,0.5959997685185184,-1.928113251048789e-22,0.18349007731536837,2.54,2.54,0.0,-0.0,24.45,1582.484,-3.8562265e-22 -2.516157001291968,0.146631924502565,2.516157001291968,15.23,0.5920523148148148,-1.097791962351023e-22,0.15760772314746438,15.23,15.23,0.0,-0.0,21.905,1590.4142,-2.195584e-22 -3.0199954867436434,0.09376652768161052,3.0199954867436434,13.26,0.591992824074074,-6.310026436748317e-23,0.10009915496036502,13.26,13.26,0.0,-0.0,14.28,1601.3145,-1.2620053e-22 -3.1211234152033027,0.08063445326882156,3.1211234152033027,-3.698729286410499e-23,0.5880002314814815,-3.698729286410499e-23,0.08597458077863873,0.0,0.0,0.0,-0.0,11.935,1603.2815,-7.3974586e-23 -2.969853428639639,0.09547204928156343,2.969853428639639,-2.1951099139613166e-23,0.5879922453703703,-2.1951099139613166e-23,0.10198354048551535,0.0,0.0,0.0,-0.0,14.695,1600.3146,-4.3902198e-23 -2.8226359458593815,0.11051001707375385,2.8226359458593815,-1.2740501994076477e-23,0.5840005787037037,-1.2740501994076477e-23,0.118271539500772,0.0,0.0,0.0,-0.0,17.255,1597.2783,-2.5481004e-23 -2.733133972524446,0.11411149386372428,2.733133972524446,0.7,0.5835359953703704,-7.199071256982768e-24,0.12227326953504893,0.7,0.7,0.0,-0.0,17.825,1595.354,-1.4398143e-23 -2.756845362243014,0.09649977481768512,2.756845362243014,1.74,0.5800003472222222,-2.5318453282175376e-24,0.10336845490551225,1.74,1.74,0.0,-0.0,15.14,1595.8699,-5.0636907e-24 -2.803333758225574,0.10297735239291873,2.803333758225574,4.74,0.5787818287037036,5.567601296232029e-25,0.1102381104056627,4.74,4.74,0.0,-0.0,16.235,1596.8685,1.1135203e-24 -2.7712297327133824,0.07746561083128921,2.7712297327133824,0.5,0.5760005787037037,1.1107478075950066e-24,0.08296331655980105,0.5,0.5,0.0,-0.0,11.695,1596.1807,2.2214956e-24 -2.6605122837131163,0.08131240626508357,2.6605122837131163,6.423260477716828e-25,0.5738478009259259,6.423260477716828e-25,0.08721616387366614,0.0,0.0,0.0,-0.0,12.555,1593.7457,1.2846521e-24 -2.5674246889967844,0.09183515839382267,2.5674246889967844,1.28,0.5719994212962963,3.711985236036504e-25,0.0986345635049345,1.28,1.28,0.0,-0.0,14.600000000000001,1591.6188,7.4239705e-25 -2.4530332359455076,0.08365483751956834,2.4530332359455076,1.9814985391461683e-25,0.5680513888888888,1.9814985391461683e-25,0.09000249663980739,0.0,0.0,0.0,-0.0,13.225,1588.8969,3.962997e-25 -2.344102608437249,0.08740740481061236,2.344102608437249,8.351386906687038e-26,0.5679997685185185,8.351386906687038e-26,0.09420062976273218,0.0,0.0,0.0,-0.0,13.965,1586.1842,1.6702774e-25 -2.3467106019163477,0.10134799379806632,2.3467106019163477,3.67,0.5639996527777777,4.146778311530467e-26,0.10922009625443642,3.67,3.67,0.0,-0.0,16.51,1586.2506,8.2935566e-26 -2.6957878229619308,0.10628521234684943,2.6957878229619308,15.46,0.5639916666666667,2.278967694335389e-26,0.1139459021535193,15.46,15.46,0.0,-0.0,17.215,1594.5323,4.5579354e-26 -3.3260967159872163,0.10572763525638246,3.3260967159872163,16.19,0.56,1.239579973055739e-26,0.11246313929159879,16.19,16.19,0.0,-0.0,17.115000000000002,1607.0801,2.47916e-26 -3.6892535133859052,0.11193191354844775,3.6892535133859052,4.52,0.558330324074074,7.187630641467429e-27,0.11860594566816317,4.52,4.52,0.0,-0.0,18.055,1613.2686,1.4375261e-26 -3.644172199546553,0.10074246213052097,3.644172199546553,1.96,0.5560002314814815,4.08503723455929e-27,0.1067979213710423,1.96,1.96,0.0,-0.0,16.375,1612.5343,8.1700745e-27 -3.531672688649168,0.10069731721459482,3.531672688649168,1.69,0.5520519675925926,2.3821887185953996e-27,0.1068741788089199,1.69,1.69,0.0,-0.0,16.505000000000003,1610.6616,4.7643774e-27 -3.4295722280334195,0.10638707559734843,3.4295722280334195,2.0,0.5520004629629629,1.3614333295255261e-27,0.11303590366457873,2.0,2.0,0.0,-0.0,17.44,1608.9097,2.7228667e-27 -3.275703058564089,0.09048529649525268,3.275703058564089,1.07,0.5479999999999999,6.8281795062858675e-28,0.09630440559837862,1.07,1.07,0.0,-0.0,14.91,1606.1683,1.3656359e-27 -3.078242876961214,0.08947851510945995,3.078242876961214,0.87,0.5479921296296296,1.055508072692612e-28,0.09545354003595452,0.87,0.87,0.0,-0.0,14.765,1602.4553,2.1110161e-28 -2.949158685515899,0.08733819997175812,2.949158685515899,-2.2825592070142813e-28,0.5439997685185185,-2.2825592070142813e-28,0.0933192890065385,0.0,0.0,0.0,-0.0,14.515,1599.897,-4.5651184e-28 -2.9863135089509543,0.0965626807203051,2.9863135089509543,6.65,0.540794212962963,-2.06588992159953e-28,0.10312728553013868,6.65,6.65,0.0,-0.0,16.255000000000003,1600.6447,-4.13178e-28 -3.1784938455792817,0.09823251138461152,3.1784938455792817,7.24,0.54,-1.165199412675187e-28,0.10466708165140647,7.24,7.24,0.0,-0.0,16.525,1604.3693,-2.3303988e-28 -3.203088587647537,0.08479718947445103,3.203088587647537,-6.66331677341016e-29,0.5359994212962963,-6.66331677341016e-29,0.09032578318938884,0.0,0.0,0.0,-0.0,14.225000000000001,1604.8296,-1.3326634e-28 -3.083608376995599,0.09392747676392023,3.083608376995599,0.71,0.5359994212962963,-3.7967355607943557e-29,0.10019308311586295,0.71,0.71,0.0,-0.0,15.925,1602.5593,-7.593471e-29 -2.945766761065281,0.08403105379081971,2.945766761065281,-2.1533619582769862e-29,0.5319998842592593,-2.1533619582769862e-29,0.08978952007368884,0.0,0.0,0.0,-0.0,14.25,1599.8282,-4.306724e-29 -3.1713292773354524,0.07704279704730516,3.1713292773354524,11.2,0.5298482638888888,-1.21274604891849e-29,0.08209626353219662,11.2,11.2,0.0,-0.0,12.864999999999998,1604.2345,-2.4254921e-29 -3.817229378232242,0.07058653057055037,3.817229378232242,18.44,0.5279998842592593,-6.294459661195579e-30,0.07470101199600086,18.44,18.44,0.0,-0.0,11.41,1615.305,-1.2588919e-29 -4.372714850641784,0.0662651764566084,4.372714850641784,7.14,0.5240002314814816,-3.727424125666482e-30,0.06977728188090494,7.14,7.14,0.0,-0.0,10.45,1623.4186,-7.454848e-30 -4.371240328258478,0.06368507866498023,4.371240328258478,0.64,0.5240002314814816,-2.234060867975061e-30,0.06706126894063365,0.64,0.64,0.0,-0.0,9.825,1623.3984,-4.4681217e-30 -4.268595394417965,0.06712968348470157,4.268595394417965,3.96,0.520000462962963,-1.2931126228537004e-30,0.07075033072590536,3.96,3.96,0.0,-0.0,10.790000000000001,1621.9794,-2.5862252e-30 -4.171889652859439,0.0664364664623746,4.171889652859439,3.56,0.5183310185185186,-7.638912422999409e-31,0.07007885335552498,3.56,3.56,0.0,-0.0,10.690000000000001,1620.6108,-1.5277825e-30 -3.96966022800497,0.07046172491820045,3.96966022800497,-4.29874616553336e-31,0.5159998842592592,-4.29874616553336e-31,0.07446113857269458,0.0,0.0,0.0,-0.0,11.725000000000001,1617.6434,-8.597492e-31 -3.8768255012320183,0.07414674313863438,3.8768255012320183,5.62,0.511999537037037,-2.534757965288286e-31,0.07842383149055918,5.62,5.62,0.0,-0.0,12.68,1616.2302,-5.069516e-31 -3.852699799619428,0.07181030530022466,3.852699799619428,2.07,0.511999537037037,-1.4631690866182331e-31,0.07597014174897802,2.07,2.07,0.0,-0.0,12.17,1615.8574,-2.9263382e-31 -3.6833009436397925,0.0623747636552146,3.6833009436397925,-8.653609726078365e-32,0.5079996527777778,-8.653609726078365e-32,0.06609786117877559,0.0,0.0,0.0,-0.0,10.085,1613.1721,-1.730722e-31 -3.4891445096252065,0.05282073839762513,3.4891445096252065,0.76,0.5067805555555556,-4.96588528900356e-32,0.05608600261940256,0.76,0.76,0.0,-0.0,7.565,1609.9381,-9.93177e-32 -3.3976779053939183,0.06427321129871359,3.3976779053939183,3.18,0.503999537037037,-2.89043363868608e-32,0.06831375878675564,3.18,3.18,0.0,-0.0,10.73,1608.3517,-5.780867e-32 -3.4261879797202455,0.0699541355619684,3.4261879797202455,4.83,0.4999997685185186,-1.5565971131353596e-32,0.07432875343001025,4.83,4.83,0.0,-0.0,12.2,1608.8507,-3.1131942e-32 -3.5622535745068413,0.07660573601349528,3.5622535745068413,6.75,0.4999997685185186,-8.784223164565251e-33,0.08127881590205537,6.75,6.75,0.0,-0.0,13.639999999999999,1611.1765,-1.7568446e-32 -3.765016036992205,0.07659635642288821,3.765016036992205,12.5,0.4959997685185185,-3.5280332356420094e-33,0.08110244715065038,12.5,12.5,0.0,-0.0,13.735,1614.4825,-7.0560665e-33 -3.872398297877206,0.05032700507816586,3.872398297877206,-1.6629484400567698e-34,0.49366840277777774,-1.6629484400567698e-34,0.0532323206823527,0.0,0.0,0.0,-0.0,7.164999999999999,1616.162,-3.3258969e-34 -3.7202254208375374,0.04711253427483129,3.7202254208375374,4.42086940872702e-34,0.4919994212962963,4.42086940872702e-34,0.04990621299389067,0.0,0.0,0.0,-0.0,6.23,1613.7678,8.841739e-34 -3.498986194531138,0.058097541937741255,3.498986194531138,2.5335069288950343e-34,0.48800034722222224,2.5335069288950343e-34,0.06168256193784135,0.0,0.0,0.0,-0.0,9.63,1610.1063,5.067014e-34 -3.304108015959999,0.06769525679771603,3.304108015959999,1.4518752280140554e-34,0.48800034722222224,1.4518752280140554e-34,0.07202561628792435,0.0,0.0,0.0,-0.0,12.084999999999999,1606.684,2.9037505e-34 -3.1685690085852656,0.07583758572438716,3.1685690085852656,8.18,0.4840002314814815,4.598008716173135e-35,0.08081461845030913,8.18,8.18,0.0,-0.0,14.075,1604.1825,9.1960174e-35 -3.1077166383189114,0.07243308459011386,3.1077166383189114,4.38,0.48167002314814816,-4.7715318861636596e-35,0.07724245071801461,4.38,4.38,0.0,-0.0,13.419999999999998,1603.0244,-9.543064e-35 -3.128737292708671,0.05559636299695183,3.128737292708671,3.44,0.4800005787037037,-1.092908411042959e-34,0.059272929171898865,3.44,3.44,0.0,-0.0,9.265,1603.427,-2.1858168e-34 -3.245060590939272,0.05676336829582141,3.245060590939272,5.2,0.4760001157407408,-1.1213862540184415e-34,0.060434939445168985,5.2,5.2,0.0,-0.0,9.7,1605.607,-2.2427725e-34 -3.552444508513051,0.06074532093535911,3.552444508513051,13.99,0.4760001157407408,-6.668767714981961e-35,0.06445747656937423,13.99,13.99,0.0,-0.0,10.715,1611.0118,-1.3337535e-34 -3.966991571266202,0.04672149688608406,3.966991571266202,7.94,0.4719996527777777,-3.546567475476615e-35,0.04937463894710977,7.94,7.94,0.0,-0.0,6.7,1617.6033,-7.093135e-35 -3.996118990977942,0.04389550445892477,3.996118990977942,-2.0501812469931493e-35,0.4701513888888889,-2.0501812469931493e-35,0.04637564345359367,0.0,0.0,0.0,-0.0,5.805,1618.0402,-4.1003625e-35 -3.755677186233971,0.04191461948276078,3.755677186233971,-1.203237351986247e-35,0.46799976851851854,-1.203237351986247e-35,0.044384494052524835,0.0,0.0,0.0,-0.0,5.21,1614.3342,-2.4064747e-35 -3.5293056888793477,0.04033506148163261,3.5293056888793477,0.02,0.463999537037037,-7.047024778811191e-36,0.0428103136762396,0.02,0.02,0.0,-0.0,4.795,1610.6216,-1.409405e-35 -3.3305187926959867,0.03428228942361583,3.3305187926959867,-3.870396222800586e-36,0.463999537037037,-3.870396222800586e-36,0.036464482866937674,0.0,0.0,0.0,-0.0,2.4050000000000002,1607.1594,-7.7407924e-36 -3.1681480521252063,0.0329132505072202,3.1681480521252063,0.27,0.46,-2.0002681886956215e-36,0.035073439015166234,0.27,0.27,0.0,-0.0,1.9600000000000004,1604.1746,-4.0005364e-36 -3.0644063822805596,0.04259348673837583,3.0644063822805596,7.76,0.45920532407407405,1.5132642294941586e-37,0.04544534303721959,7.76,7.76,0.0,-0.0,5.8549999999999995,1602.1863,3.0265285e-37 -3.0071706236611915,0.047496424293737356,3.0071706236611915,2.1,0.45599953703703705,2.155792533926968e-36,0.050712197125477886,2.1,2.1,0.0,-0.0,7.64,1601.0603,4.311585e-36 -2.984714650904293,0.046535861933767166,2.984714650904293,2.28,0.45200810185185186,3.421471315004641e-36,0.04970049483023566,2.28,2.28,0.0,-0.0,7.465,1600.6127,6.8429426e-36 -2.9870644132803266,0.04817840534540309,2.9870644132803266,4.13,0.452,3.356703255141997e-36,0.051453227285565686,4.13,4.13,0.0,-0.0,8.0,1600.6597,6.7134065e-36 -2.962141781223539,0.048875576718186015,2.962141781223539,1.43,0.4480001157407407,1.9635605720873045e-36,0.05221410949122254,1.43,1.43,0.0,-0.0,8.365,1600.1593,3.927121e-36 -2.8372070041373414,0.04593143726257385,2.8372070041373414,7.128707968488639e-37,0.4480001157407407,7.128707968488639e-37,0.04914790842842459,0.0,0.0,0.0,-0.0,7.43,1597.5858,1.4257416e-36 -2.703900144923857,0.03987086105266985,2.703900144923857,-5.513493446313238e-38,0.4440001157407408,-5.513493446313238e-38,0.04273981226342802,0.0,0.0,0.0,-0.0,5.4350000000000005,1594.7118,-1.1026987e-37 -2.6398948158038498,0.04032526084943496,2.6398948158038498,2.76,0.44166932870370373,-1.451316411710427e-37,0.04326572387848993,2.76,2.76,0.0,-0.0,5.7,1593.2811,-2.9026328e-37 -2.5926538920641384,0.03977657950138781,2.5926538920641384,1.64,0.4400003472222222,-7.567702267237231e-38,0.04270593779110446,1.64,1.64,0.0,-0.0,5.56,1592.2028,-1.5135405e-37 -2.5203521430607854,0.0385715274656428,2.5203521430607854,-3.387483493375705e-38,0.43611064814814815,-3.387483493375705e-38,0.04145611801864482,0.0,0.0,0.0,-0.0,5.245,1590.5137,-6.774967e-38 -2.424648456582741,0.050761344219180875,2.424648456582741,-1.7786387134997395e-38,0.43600011574074077,-1.7786387134997395e-38,0.05463697370370199,0.0,0.0,0.0,-0.0,9.495000000000001,1588.2018,-3.5572774e-38 -2.3511133664009694,0.0570215606669034,2.3511133664009694,0.09,0.43200000000000005,-3.566053759281545e-39,0.061446316320652034,0.09,0.09,0.0,-0.0,11.495000000000001,1586.3625,-7.132108e-39 -2.292500273256806,0.039527601861133556,2.292500273256806,1.34,0.43194837962962956,7.308645201046428e-39,0.042635383322314126,1.34,1.34,0.0,-0.0,5.8149999999999995,1584.8549,1.461729e-38 -2.238640605209657,0.033669946989231654,2.238640605209657,0.7,0.428,1.1278336677133623e-38,0.0363497457270682,0.7,0.7,0.0,-0.0,3.5549999999999997,1583.435,2.2556673e-38 -2.1810162544070915,0.031264919126422666,2.1810162544070915,0.73,0.4261517361111111,6.953092340000336e-39,0.03378653158336348,0.73,0.73,0.0,-0.0,2.5349999999999997,1581.8777,1.3906185e-38 -2.119413975566152,0.02915880122357543,2.119413975566152,0.029999999999999995,0.42400011574074076,1.6318236087907846e-39,0.03154466947751865,0.03,0.029999999999999995,3.3306690738754695e-18,-0.0,1.5999999999999999,1580.1666,3.26365e-39 -2.058183905326452,0.03611112710770117,2.058183905326452,0.18,0.42121863425925926,-2.560245862490818e-39,0.039109188047583524,0.18,0.18,0.0,-0.0,4.89,1578.4159,-5.120492e-39 -2.0012696469374873,0.03551718628650757,2.0012696469374873,1.0,0.41999976851851856,-4.295664327455387e-39,0.038506791665055294,1.0,1.0,0.0,-0.0,4.7,1576.7412,-8.591329e-39 -1.9598244750660976,0.02495853520798106,1.9598244750660976,-0.003499323686479347,0.4164640046296296,-0.003499323686479347,0.02708084692686121,0.0,0.0,0.0,-0.0,-0.355,1575.4915,-5.428839e-39 -1.9748480350311948,0.02521641258318879,1.9748480350311948,-0.011875711555203415,0.4159996527777778,-0.011875711555203415,0.02735273477193887,0.0,0.0,0.0,-0.0,-0.1949999999999994,1575.9475,1.13322e-40 -2.0452753744560197,0.0323746801732305,2.0452753744560197,6.51,0.4121109953703704,2.8983385442769262e-39,0.03507087778393565,6.51,6.51,0.0,-0.0,3.585,1578.0402,5.796677e-39 -2.1664116443747092,0.03289661125896754,2.1664116443747092,5.36,0.41200046296296294,5.0239121328726715e-39,0.03555884427689349,5.36,5.36,0.0,-0.0,3.7950000000000004,1581.4764,1.0047824e-38 -2.3354699926970217,0.031602086491671254,2.3354699926970217,6.81,0.4080084490740741,5.646681400283148e-39,0.034062903933600994,6.81,6.81,0.0,-0.0,3.3,1585.9639,1.1293363e-38 -2.546414489207242,0.03370573533022321,2.546414489207242,8.3,0.40794895833333333,-4.853940812406974e-19,0.03621244717876103,8.3,8.3,0.0,-0.0,4.215,1591.128,-9.707882e-19 -2.7167696205225207,0.03141689893782636,2.7167696205225207,-8.996626446002005e-18,0.40399999999999997,-8.996626446002005e-18,0.03367154867565825,0.0,0.0,0.0,-0.0,3.275,1594.9954,-1.7993253e-17 -2.8051049270037076,0.028067449685540424,2.8051049270037076,5.579999999999999,0.4037145833333334,-1.910489071542399e-17,0.0300457281245567,5.58,5.579999999999999,6.195044477408374e-16,-0.0,1.605,1596.9062,-3.8209805e-17 -2.8080191838464246,0.02894086086481254,2.8080191838464246,1.36,0.40000023148148145,-1.8924324046950056e-17,0.03097949694735336,1.36,1.36,0.0,-0.0,2.19,1596.9683,-3.7848648e-17 -2.7304034720677017,0.02747819428156269,2.7304034720677017,0.3099999999999999,0.39971435185185183,3.1498480695692554e-18,0.0294446620586707,0.31,0.3099999999999999,1.2045919817182948e-16,-0.0,1.455,1595.2943,6.2997137e-18 -2.6178152905192,0.02658231912927534,2.6178152905192,2.2290720082081924e-17,0.3960082175925926,2.2290720082081924e-17,0.02852964711664335,0.0,0.0,0.0,-0.0,1.13,1592.7795,4.4584638e-17 -2.506455243640423,0.027498500926962717,2.506455243640423,2.1862213634727073e-17,0.39571446759259266,2.1862213634727073e-17,0.02956112684024484,0.0,0.0,0.0,-0.0,1.6600000000000001,1590.1835,4.3724443e-17 -2.404374121230974,0.026066351718384746,2.404374121230974,7.111665683325436e-10,0.3921108796296296,7.111665683325436e-10,0.028065379579509907,0.0,0.0,0.0,-0.0,1.0350000000000001,1587.7003,1.4225969e-9 -2.310437662504393,0.02084492513258032,2.310437662504393,-2.4673156917165704e-10,0.3919487268518519,-2.4673156917165704e-10,0.022477215862166507,0.0,0.0,0.0,-0.0,-2.15,1585.3203,5.8796727e-9 -2.2236046768029594,0.021196888809234916,2.2236046768029594,-9.675301305027366e-9,0.3884644675925926,-9.675301305027366e-9,0.022889771963060794,0.0,0.0,0.0,-0.0,-1.765,1583.0326,1.068694e-8 -2.184023074859072,0.020751531348308587,2.184023074859072,-7.061682881741953e-10,0.38799999999999996,-7.061682881741953e-10,0.0224240402522333,0.0,0.0,0.0,-0.0,-2.04,1581.96,9.732457e-7 -2.407418207619699,0.024448551319459992,2.407418207619699,11.560002572455678,0.3848466435185185,2.5726768593041754e-6,0.0263222573847347,11.56,11.55999999977882,2.2118101794532663e-10,-0.0,0.375,1587.7759,5.846697e-6 -2.630000855348585,0.028132185774407386,2.630000855348585,4.950002412119757,0.3840003472222222,2.412119756184085e-6,0.030187795117662907,4.95,4.95,0.0,-0.0,2.41,1593.0569,4.824123e-6 -2.6530778016272376,0.019849263885968558,2.6530778016272376,0.021608174654019187,0.38166932870370374,-1.0385089163022028e-11,0.021292669534290553,1.91,0.021608174664404275,1.8883918253355956,-0.0,-2.54,1593.5786,0.2094578 -2.53957394738423,0.015318157223106633,2.53957394738423,0.0,0.3799997685185186,-0.0,0.016459037737416356,0.85,0.0,0.85,-0.0,-6.06,1590.9674,1.5858219 -2.4353125425683873,0.019643940465037583,2.4353125425683873,0.048676202077744965,0.37920590277777777,-1.0592580132558104e-11,0.02114026708421119,4.75,0.04867620208833755,4.701323797911662,-0.0,-2.55,1588.4639,4.385886 -2.3393256246532728,0.01789991660008423,2.3393256246532728,2.2326692666885252e-8,0.37611087962962964,-0.0,0.019292563789033934,0.26,2.2326692666885252e-8,0.25999997767330735,-0.0,-3.72,1586.0624,6.893088 -2.250546541695651,0.014353057922526382,2.250546541695651,0.0,0.3759486111111111,-0.0,0.015492321766255628,0.0,0.0,0.0,-0.0,-6.74,1583.7518,7.0423975 -2.1683343502866927,0.012872676489929822,2.1683343502866927,0.0,0.37321898148148147,-0.0,0.013913960976405328,0.0,0.0,0.0,-0.0,-8.094999999999999,1581.5294,7.0409336 -2.091907147884124,0.013808107054750501,2.091907147884124,0.0,0.3719998842592593,-0.0,0.014945310144485356,3.92,0.0,3.92,-0.0,-7.085,1579.3865,9.001246 -2.020596735039534,0.017109396525003637,2.020596735039534,1.4373090682640031e-8,0.37120578703703705,-0.0,0.018542804011317242,6.77,1.4373090682640031e-8,6.769999985626909,-0.0,-4.09,1577.3152,14.34576 -1.9952327510188193,0.02190581379266526,1.9952327510188193,1.677513688921609,0.3684645833333333,-0.0024861449985420264,0.023752420391152187,1.68,1.679999833920151,1.6607984911320982e-7,-0.0,-0.47999999999999987,1576.5608,17.3165 -1.9558745776366437,0.0189599406286832,1.9558745776366437,-1.5570171651280645e-11,0.3680003472222222,-1.5570171651280645e-11,0.02057374417461245,0.0,0.0,0.0,-0.0,-2.51,1575.371,17.34558 -1.8932139397653358,0.022987135248887867,1.8932139397653358,0.35395775413040953,0.36615196759259255,0.35395775413040953,0.024974547118475517,0.0,0.0,0.0,-0.0,0.3350000000000002,1573.4264,17.346249 -1.9992825654234216,0.02806417685894943,1.9992825654234216,9.955988134189528,0.3644642361111111,8.355988134189529,0.030427581316170616,1.6,1.6,0.0,-0.0,3.3,1576.6819,12.947214 -2.0319867166705197,0.01883421943434822,2.0319867166705197,-2.288211141923808e-11,0.36400011574074076,-2.288211141923808e-11,0.020407787490534443,0.0,0.0,0.0,-0.0,-2.4699999999999998,1577.6509,10.701068 -1.9645331202901308,0.015616002617286065,1.9645331202901308,1.2518253100779476e-12,0.3621513888888889,-0.0,0.01694234493093298,5.28,1.2518253100779476e-12,5.279999999998748,-0.0,-5.0,1575.6348,13.33656 -2.0022270941412463,0.02022684608868998,2.0022270941412463,15.783720019895268,0.3604638888888889,-1.4018760562817791e-6,0.0219290129635157,15.79,15.783721421771325,0.0062785782286734065,-0.0,-1.31,1576.7698,20.782864 -2.1939517047020822,0.019121971137397796,2.1939517047020822,-5.430159028957621e-10,0.3599998842592593,-5.430159028957621e-10,0.020659605075983592,0.0,0.0,0.0,-0.0,-2.14,1582.2308,21.037804 -2.115406182077612,0.015170961467729211,2.115406182077612,0.0,0.35920578703703704,-0.0,0.016413473170706606,0.0,0.0,0.0,-0.0,-5.324999999999999,1580.0536,21.058712 -2.0425305468095707,0.015017934671198016,2.0425305468095707,4.0542014190236837e-14,0.3572189814814815,-0.0,0.016269471014319796,6.89,4.0542014190236837e-14,6.889999999999959,-0.0,-5.37,1577.96,24.567875 -2.0656184685876453,0.02318489723114525,2.0656184685876453,6.476877130976518,0.35611041666666665,1.706877130977639,0.025106356260445502,4.77,4.769999999998879,1.1205836258909585e-12,-0.0,0.815,1578.6312,27.680447 -2.1607288311958692,0.023301742718771376,2.1607288311958692,3.31504293028898,0.3559483796296296,1.8550429302891778,0.025189987692008347,1.46,1.4599999999998021,1.9783397142703053e-13,-0.0,0.8699999999999999,1581.3196,25.964237 -2.108542220352038,0.015782852305351678,2.108542220352038,9.06063002403812e-13,0.3546476851851852,-0.0,0.017077576057575712,0.07,9.06063002403812e-13,0.06999999999909394,-0.0,-4.6,1579.8595,26.008194 -2.0359862792840397,0.016250007516626138,2.0359862792840397,2.6894858190518177e-9,0.35321898148148145,-0.0,0.017606358397134286,1.71,2.6894858190518177e-9,1.709999997310514,-0.0,-4.12,1577.7683,26.941034 -1.9683355391105424,0.016524086827996103,1.9683355391105424,3.0049819299549085e-8,0.35211030092592593,-0.0,0.017926243290122233,1.0,3.0049819299549085e-8,0.9999999699501807,-0.0,-3.825,1575.7502,28.307837 -1.9050225644757384,0.015962830309125597,1.9050225644757384,2.54935162979919e-9,0.35199988425925927,-0.0,0.01733884576851912,8.44,2.54935162979919e-9,8.439999997450647,-0.0,-4.285,1573.7977,33.115746 -1.9231213802263591,0.02129083191281806,1.9231213802263591,4.087075438840151,0.35171423611111113,-0.022924536452566306,0.0231178326624783,4.11,4.109999975292718,2.4707281965352658e-8,-0.0,-0.20000000000000018,1574.3624,36.911793 -1.908362598493282,0.015618986855226554,1.908362598493282,4.9836498261512925e-11,0.3506474537037037,-0.0,0.01696423493416457,2.01,4.9836498261512925e-11,2.009999999950163,-0.0,-4.535,1573.9023,38.480206 -1.848810626105537,0.014412863033458184,1.848810626105537,1.3988810110276973e-16,0.34966921296296294,-0.0,0.015673082628557523,0.21,1.3988810110276973e-16,0.20999999999999985,-0.0,-5.59,1572.009,39.58833 -1.7928862124850249,0.013552558718473811,1.7928862124850249,0.0,0.3488465277777778,-0.0,0.014754772853752382,0.0,0.0,0.0,-0.0,-6.385,1570.1747,39.709774 -1.7402925585746,0.012234067702862506,1.7402925585746,0.0,0.3481105324074074,-0.0,0.013334421731703286,0.0,0.0,0.0,-0.0,-7.7299999999999995,1568.3966,39.745487 -1.6906856400382713,0.011815387832332666,1.6906856400382713,0.0,0.3480079861111111,-0.0,0.012892281466410936,0.0,0.0,0.0,-0.0,-8.18,1566.6696,39.748257 -1.6437421619206398,0.01775833035860792,1.6437421619206398,-1.0592580132558104e-11,0.34794849537037037,-1.0592580132558104e-11,0.01939770470289765,0.0,0.0,0.0,-0.0,-2.55,1564.9879,39.74744 -1.5992817862042095,0.01502250117506548,1.5992817862042095,1.1888379169988638e-13,0.34771435185185184,-0.0,0.016426503656915285,0.13,1.1888379169988638e-13,0.12999999999988113,-0.0,-4.865,1563.3503,39.818546 -1.5572139768260906,0.01335766913233618,1.5572139768260906,0.0,0.3472057870370371,-0.0,0.014620964611994846,0.0,0.0,0.0,-0.0,-6.445,1561.7584,39.878937 -1.5166742879778925,0.020594055951532436,1.5166742879778925,-0.007895158846573562,0.3466476851851852,-0.007895158846573562,0.022564489813069938,0.0,0.0,0.0,-0.0,-0.3400000000000001,1560.1831,39.87834 -1.4869507177975447,0.01549412256110973,1.4869507177975447,8.414804503198426e-10,0.3466476851851852,-0.0,0.016989467488558428,5.61,8.414804503198426e-10,5.6099999991585205,-0.0,-4.355,1559.0011,42.335186 -1.4504977026902968,0.012315680319349081,1.4504977026902968,0.0,0.3461518518518519,-0.0,0.013517124412861266,4.37,0.0,4.37,-0.0,-7.470000000000001,1557.5188,47.21137 -1.4158612533910595,0.0086568892975003,1.4158612533910595,0.0,0.3461518518518519,-0.0,0.009510216786435753,0.49,0.0,0.49,-0.0,-12.125,1556.0754,49.56334 -1.3828600658602892,0.009792504938909572,1.3828600658602892,0.0,0.3456693287037037,-0.0,0.010767518392287293,1.34,0.0,1.34,-0.0,-10.485,1554.667,50.5325 -1.351335010854835,0.010724777751681529,1.351335010854835,0.0,0.3456693287037037,-0.0,0.01180307082488818,4.24,0.0,4.24,-0.0,-9.27,1553.2898,53.356403 -1.3211468970981366,0.015513033550166687,1.3211468970981366,4.089559346720506e-9,0.3461518518518519,-0.0,0.017087591434066348,10.03,4.089559346720506e-9,10.02999999591044,-0.0,-4.254999999999999,1551.9406,60.54802 -1.2923118668737827,0.00786295191236779,1.2923118668737827,0.0,0.3461518518518519,-0.0,0.00866839491297527,0.0,0.0,0.0,-0.0,-13.32,1550.6227,65.56558 -1.2647885125243146,0.006590499338038687,1.2647885125243146,0.0,0.3461518518518519,-0.0,0.007271627428387815,0.01,0.0,0.01,-0.0,-15.55,1549.337,65.84569 -1.2384131800359257,0.007551107333927274,1.2384131800359257,0.0,0.3466476851851852,-0.0,0.008338287548541623,0.0,0.0,0.0,-0.0,-13.834999999999999,1548.0785,65.8331 -1.2130886431873835,0.008552164273299984,1.2130886431873835,0.0,0.3472057870370371,-0.0,0.009451234711376573,0.0,0.0,0.0,-0.0,-12.245,1546.8446,65.832855 -1.188736262873589,0.011372395743830253,1.188736262873589,0.0,0.34771435185185184,-0.0,0.01257779842777182,0.0,0.0,0.0,-0.0,-8.5,1545.6335,65.832855 -1.165310944148786,0.012230368546437312,1.165310944148786,0.0,0.34794849537037037,-0.0,0.013537121073465398,0.0,0.0,0.0,-0.0,-7.52,1544.445,65.83329 -1.1427909833031311,0.010515699057544398,1.1427909833031311,0.0,0.34800000000000003,-0.0,0.011648037252223502,1.65,0.0,1.65,-0.0,-9.535,1543.2795,66.66115 -1.1211438493070958,0.00985386737847471,1.1211438493070958,0.0,0.3480079861111111,-0.0,0.010923022534523335,7.03,0.0,7.03,-0.0,-10.385,1542.1375,71.08506 -1.100361003736087,0.0045751413930758085,1.100361003736087,0.0,0.3484641203703704,-0.0,0.005075226635897241,2.08,0.0,2.08,-0.0,-20.055,1541.02,75.54251 -1.0803873345834822,0.002903437031655382,1.0803873345834822,0.0,0.34921886574074074,-0.0,0.00322308496206055,0.0,0.0,0.0,-0.0,-25.41,1539.926,76.64532 -1.0611318817748405,0.0035581373666085858,1.0611318817748405,0.0,0.35015162037037034,-0.0,0.003952619818873527,0.0,0.0,0.0,-0.0,-23.08,1538.852,76.68533 -1.042528558676211,0.005814099875322121,1.042528558676211,0.0,0.35120578703703703,-0.0,0.006463131988604412,13.86,0.0,13.86,-0.0,-17.2,1537.7958,83.63798 -1.0244963631246922,0.011406354595507179,1.0244963631246922,0.0,0.3519482638888889,-0.0,0.012688251498071923,14.79,0.0,14.79,-0.0,-8.545,1536.7538,98.04462 -1.0070662676384603,0.007030887659639109,1.0070662676384603,0.0,0.35200787037037035,-0.0,0.007826269038630047,0.0,0.0,0.0,-0.0,-14.834999999999999,1535.729,105.43016 -0.9902524748528797,0.004412779198816579,0.9902524748528797,0.0,0.35284641203703704,-0.0,0.004915200656913032,0.71,0.0,0.71,-0.0,-20.59,1534.7235,105.9935 -0.9740020687857918,0.0066696027285770365,0.9740020687857918,0.0,0.3541518518518519,-0.0,0.007433763483657605,0.0,0.0,0.0,-0.0,-15.56,1533.7354,106.25117 -0.9582827351380716,0.0050000590748328225,0.9582827351380716,0.0,0.35571446759259256,-0.0,0.0055764670170371415,0.0,0.0,0.0,-0.0,-19.165,1532.7637,106.37926 -0.943040671073974,0.009323668457393589,0.943040671073974,0.0,0.35600000000000004,-0.0,0.010405003087572669,14.1,0.0,14.1,-0.0,-11.32,1531.8062,113.43462 -0.9282516269461789,0.007994016268766104,0.9282516269461789,0.0,0.3564643518518519,-0.0,0.008926642332602874,8.53,0.0,8.53,-0.0,-13.32,1530.8622,123.58698 -0.9139410692416399,0.00568531441056663,0.9139410692416399,0.0,0.35815185185185183,-0.0,0.006352444792319492,0.0,0.0,0.0,-0.0,-17.655,1529.9343,128.12238 -0.9000847583266485,0.0050722097416351485,0.9000847583266485,0.0,0.3599482638888889,-0.0,0.005670778424567375,2.78,0.0,2.78,-0.0,-19.105,1529.022,129.71564 -0.8866469185679454,0.004654169615491539,0.8866469185679454,0.0,0.36000787037037035,-0.0,0.005206464461992645,3.87,0.0,3.87,-0.0,-20.14,1528.1237,133.17241 -0.8736203884183885,0.0029888921578072225,0.8736203884183885,0.0,0.36121863425925926,-0.0,0.003345509200424537,2.09,0.0,2.09,-0.0,-25.369999999999997,1527.2397,136.8291 -0.8609629685977578,0.005748474106904613,0.8609629685977578,0.0,0.3637142361111111,-0.0,0.006438022367641574,17.45,0.0,17.45,-0.0,-17.68,1526.3682,147.51859 -0.848601675345877,0.013055033307416716,0.848601675345877,0.0,0.36400011574074076,-0.0,0.014629304761595964,13.86,0.0,13.86,-0.0,-7.08,1525.5045,162.7795 -0.8365118968581109,0.015719251014665456,0.8365118968581109,8.736095180594817e-13,0.36521898148148146,-0.0,0.01762469379419342,0.05,8.736095180594817e-13,0.04999999999912639,-0.0,-4.57,1524.6476,169.56346 -0.8247460672285811,0.01530102259190471,0.8247460672285811,7.72804042981079e-13,0.36771435185185186,-0.0,0.017165293038785518,4.4,7.72804042981079e-13,4.399999999999228,-0.0,-5.029999999999999,1523.8016,171.79008 -0.8634126290059246,0.02194748932758501,0.8634126290059246,8.986382347408544,0.3680083333333333,-0.0736176471309357,0.024577430283989923,9.06,9.05999999453948,5.460520349220843e-9,-0.0,0.029999999999999805,1526.5378,174.94655 -0.9175986998398746,0.018849345556604353,0.9175986998398746,-1.986378239902848e-10,0.3696696759259259,-1.986378239902848e-10,0.021057896403256438,0.0,0.0,0.0,-0.0,-2.245,1530.1729,174.97974 -0.9043299801725271,0.011289520077418855,0.9043299801725271,0.0,0.3719483796296296,-0.0,0.012619470910296233,0.0,0.0,0.0,-0.0,-9.355,1529.303,174.99052 -0.8927591724334962,0.008193526796021203,0.8927591724334962,0.0,0.37211041666666667,-0.0,0.009163365174581413,0.0,0.0,0.0,-0.0,-13.535,1528.5339,174.9918 -0.8929106466644985,0.010719986410410023,0.8929106466644985,0.0,0.3746479166666667,-0.0,0.011988793284385084,5.18,0.0,5.18,-0.0,-10.129999999999999,1528.5441,175.00018 -0.9008007289170672,0.022136845050259472,0.9008007289170672,4.653623503409975,0.3760002314814815,-0.026376473555985054,0.024748433375824407,4.68,4.67999997696596,2.3034039435820827e-8,-0.0,-0.18000000000000016,1529.0695,175.01329 -0.9105045778692484,0.01795026719218011,0.9105045778692484,9.378436248938129e-7,0.3772188657407407,-1.7116070713975496e-14,0.020059550503572308,0.07,9.378436420098836e-7,0.069999062156358,-0.0,-3.2150000000000003,1529.7094,175.02745 -0.9159065870804999,0.008444578531994826,0.9159065870804999,0.0,0.3799997685185186,-0.0,0.009434697364881912,0.0,0.0,0.0,-0.0,-13.43,1530.0626,175.03902 -0.9107930953517073,0.008764847376131524,0.9107930953517073,0.0,0.3804640046296296,-0.0,0.009794657764534179,0.0,0.0,0.0,-0.0,-12.965,1529.7283,175.04433 -0.8970816903588875,0.005829718000603795,0.8970816903588875,0.0,0.383714699074074,-0.0,0.0065185306878578035,0.0,0.0,0.0,-0.0,-18.185000000000002,1528.8224,175.04437 -0.883728424378878,0.004809232940137413,0.883728424378878,0.0,0.38400833333333334,-0.0,0.0053806219317664465,0.0,0.0,0.0,-0.0,-20.52,1527.9268,175.04437 -0.8707732503289632,0.0054279800813785885,0.8707732503289632,0.0,0.3866476851851852,-0.0,0.006076390385206787,0.0,0.0,0.0,-0.0,-19.135,1527.0448,175.04437 -0.8581781307258416,0.005961875769584462,0.8581781307258416,0.0,0.38799999999999996,-0.0,0.006677868739704506,0.0,0.0,0.0,-0.0,-18.025,1526.1747,175.04437 -0.8459104204725311,0.009818159379778887,0.8459104204725311,0.0,0.3901519675925926,-0.0,0.011003473175521614,0.0,0.0,0.0,-0.0,-11.785,1525.3148,175.0973 -0.8339493237972934,0.011413110877516756,0.8339493237972934,0.0,0.39200034722222227,-0.0,0.01279811366857982,2.19,0.0,2.19,-0.0,-9.865,1524.4644,176.23563 -0.8222850856105026,0.015031789893083,0.8222850856105026,0.0,0.3936696759259259,-0.0,0.016865232382678952,12.16,0.0,12.16,-0.0,-6.21,1523.6232,183.60986 -0.8108966947273515,0.01762758601407587,0.8108966947273515,0.0,0.39600023148148145,-0.0,0.019788457683245154,0.0,0.0,0.0,-0.0,-4.085,1522.7903,189.53168 -0.7998098828083613,0.01729538891376357,0.7998098828083613,0.0,0.3972188657407407,-0.0,0.019426026286050564,0.0,0.0,0.0,-0.0,-4.385,1521.9681,189.54662 -0.7890697885916231,0.010771296940925948,0.7890697885916231,0.0,0.40000023148148145,-0.0,0.012104645745392545,0.0,0.0,0.0,-0.0,-10.864999999999998,1521.1608,189.54662 -0.7786441961477873,0.010067775256794908,0.7786441961477873,0.0,0.4012189814814815,-0.0,0.011319948063697668,0.0,0.0,0.0,-0.0,-11.78,1520.3665,189.55579 -0.7685039979750242,0.009584878262102782,0.7685039979750242,0.0,0.40399999999999997,-0.0,0.010782543011605859,0.0,0.0,0.0,-0.0,-12.5,1519.5836,189.6543 -0.7586245483001978,0.008451987087679467,0.7586245483001978,0.0,0.40521898148148144,-0.0,0.00951293034648739,0.0,0.0,0.0,-0.0,-14.145,1518.8109,189.91168 -0.748980792559895,0.012686431362114744,0.748980792559895,0.0,0.4080003472222223,-0.0,0.014286093657686627,1.39,0.0,1.39,-0.0,-8.934999999999999,1518.0469,190.39035 -0.7395548594890541,0.012179916469384976,0.7395548594890541,0.0,0.40966990740740744,-0.0,0.013722548183847542,0.0,0.0,0.0,-0.0,-9.525,1517.2905,190.986 -0.7297611082771118,0.016658405601621296,0.7297611082771118,2.3965829321070943e-14,0.41200046296296294,-0.0,0.018778107742502683,3.69,2.3965829321070943e-14,3.689999999999976,-0.0,-5.36,1516.4944,192.81868 -0.7243797423579955,0.0232801676511937,0.7243797423579955,1.059740379933203,0.41464768518518513,-0.00025820922394219597,0.026250108411870567,1.06,1.0599985891571453,1.4108428547221497e-6,-0.0,-0.74,1516.0524,194.82744 -0.7164076334963339,0.012535269768632751,0.7164076334963339,0.0,0.4159996527777778,-0.0,0.01414060674880298,0.0,0.0,0.0,-0.0,-9.33,1515.3915,195.30614 -0.7077937188214204,0.008061168569477863,0.7077937188214204,0.0,0.419205324074074,-0.0,0.0090978641484219,0.0,0.0,0.0,-0.0,-15.139999999999999,1514.6691,195.31003 -0.6993920158727972,0.010788680080683316,0.6993920158727972,0.0,0.41999976851851856,-0.0,0.012181879012391678,0.0,0.0,0.0,-0.0,-11.42,1513.9559,195.30989 -0.691153614057587,0.013883884657192598,0.691153614057587,0.0,0.42400011574074076,-0.0,0.015684114562784807,0.42,0.0,0.42,-0.0,-8.200000000000001,1513.2483,195.33131 -0.6830862530372946,0.014306736105036291,0.6830862530372946,0.0,0.42400011574074076,-0.0,0.016169286440046882,9.62,0.0,9.62,-0.0,-7.79,1512.5471,200.05574 -0.6751944792345594,0.015157083263249879,0.6751944792345594,0.0,0.428,-0.0,0.017138200856132466,0.4,0.0,0.4,-0.0,-7.13,1511.8531,204.00345 -0.6674893794411153,0.01317811626558,0.6674893794411153,0.0,0.42846388888888887,-0.0,0.014907330033778728,0.0,0.0,0.0,-0.0,-9.02,1511.1677,204.36565 -0.6599949604603197,0.011242413471357142,0.6599949604603197,0.0,0.43200000000000005,-0.0,0.012723304477480669,0.0,0.0,0.0,-0.0,-11.22,1510.4934,204.38747 -0.6526994134163392,0.005792923626133688,0.6526994134163392,0.0,0.4336695601851852,-0.0,0.006558870728432868,0.0,0.0,0.0,-0.0,-19.6,1509.8296,204.39238 -0.6455755557164159,0.005928273303716526,0.6455755557164159,0.0,0.43600011574074077,-0.0,0.006715031397305237,0.0,0.0,0.0,-0.0,-19.38,1509.1742,204.39053 -0.6385960186869175,0.008449157379070035,0.6385960186869175,0.0,0.4399488425925926,-0.0,0.009574587703462136,0.0,0.0,0.0,-0.0,-15.105,1508.525,204.36357 -0.6317358422664712,0.011287314357473497,0.6317358422664712,0.0,0.4400003472222222,-0.0,0.012796259513800156,0.63,0.0,0.63,-0.0,-11.385000000000002,1507.88,204.70119 -0.624981298283267,0.016002282649110754,0.624981298283267,0.0,0.4440001157407408,-0.0,0.0181492754735201,4.13,0.0,4.13,-0.0,-6.85,1507.238,207.26271 -0.618333098446752,0.017828959195466277,0.618333098446752,5.299094496535872e-15,0.4440081018518519,-0.0,0.020229605418646948,0.86,5.299094496535872e-15,0.8599999999999947,-0.0,-5.364999999999999,1506.5994,209.66742 -0.6118293996162677,0.015520377593027362,0.6118293996162677,0.0,0.4480001157407407,-0.0,0.017617560448998412,0.0,0.0,0.0,-0.0,-7.375000000000001,1505.9679,209.90143 -0.6101945469855264,0.0245483592920282,0.6101945469855264,8.119720666230554,0.4501516203703704,-1.4204578490969532e-5,0.027868400388821057,8.12,8.119734870809046,0.0002651291909544251,-0.0,-1.06,1505.8081,213.39282 -0.6860891997952038,0.031745632821130784,0.6860891997952038,10.50007649787966,0.452,6.350076497879659,0.035872287090821776,4.15,4.15,0.0,-0.0,2.5500000000000003,1512.8091,211.7184 -0.7438316276474379,0.02425111474181389,0.7438316276474379,3.2782308283427475,0.45599953703703705,-1.7833309314565402e-7,0.027316408944959365,3.29,3.2782310066758407,0.011768993324159505,-0.0,-1.5299999999999998,1517.6349,209.87912 -0.8148944758688726,0.029969517135776023,0.8148944758688726,10.224928573831363,0.45599953703703705,3.4749285738313667,0.03363683270755854,6.75,6.749999999999997,2.248201624865942e-15,-0.0,1.4749999999999999,1523.084,208.79623 -0.8540849643532545,0.0225684582673037,0.8540849643532545,5.597053001222681e-5,0.46,-1.538561763957208e-12,0.025283553081050507,0.04,5.5970531550788575e-5,0.03994402946844921,-0.0,-2.7500000000000004,1525.8892,208.48665 -0.8418138186347861,0.010728251949383951,0.8418138186347861,0.0,0.4604638888888889,-0.0,0.0120257239330219,0.0,0.0,0.0,-0.0,-12.780000000000001,1525.0249,208.7736 -0.8299615402285472,0.010481968062600417,0.8299615402285472,0.0,0.463999537037037,-0.0,0.011756182401913598,4.57,0.0,4.57,-0.0,-13.17,1524.1781,211.23923 -0.8183915522436502,0.01045186760743443,0.8183915522436502,0.0,0.46799976851851854,-0.0,0.011728874363723437,0.46,0.0,0.46,-0.0,-13.31,1523.3397,213.80264 -0.8059328030646056,0.011987372128688575,0.8059328030646056,0.0,0.46799976851851854,-0.0,0.013460081374107901,0.0,0.0,0.0,-0.0,-11.53,1522.4236,216.49721 -0.7939281949546398,0.015100375614839586,0.7939281949546398,0.0,0.4719996527777777,-0.0,0.016965520555026127,6.07,0.0,6.07,-0.0,-8.585,1521.5273,221.14047 -0.784718958681646,0.022076947804851785,0.784718958681646,2.669826404573825e-5,0.4719996527777777,-3.690180271546757e-15,0.02481517825602592,9.87,2.669826404942843e-5,9.86997330173595,-0.0,-3.375,1520.8306,227.62602 -0.8067255725486464,0.030878320650246635,0.8067255725486464,4.290101792047411,0.4760001157407408,2.9801017920474133,0.03467054123850088,1.31,1.3099999999999974,2.690625500179067e-15,-0.0,1.29,1522.4823,230.4272 -0.8483363266793272,0.029745017508482675,0.8483363266793272,3.7746457993776277,0.4800005787037037,1.1046457993832883,0.033332297483962055,2.67,2.669999999994339,5.660470425716824e-12,-0.0,0.5950000000000002,1525.4858,228.40965 -0.8452311667874876,0.025440676067235383,0.8452311667874876,-5.7491638567023595e-8,0.4800005787037037,-5.7491638567023595e-8,0.02851294123038139,0.0,0.0,0.0,-0.0,-1.6500000000000004,1525.2668,228.01816 -0.9146175834974742,0.025695777395315315,0.9146175834974742,10.477465385201537,0.4840002314814815,-4.758580127656388e-8,0.028710161128939725,10.63,10.477465432787339,0.15253456721266184,-0.0,-1.67,1529.9785,228.00006 -0.9417519790626281,0.022890000651789616,0.9417519790626281,4.529018569174124e-5,0.4840002314814815,-6.228034914170952e-15,0.025546084868313113,9.66,4.529018569796928e-5,9.659954709814302,-0.0,-3.32,1531.7245,235.44873 -0.9260438044453302,0.02400949002664296,0.9260438044453302,-1.466350669960666e-12,0.48800034722222224,-1.466350669960666e-12,0.026813060504936457,0.0,0.0,0.0,-0.0,-2.755,1530.72,240.57835 -0.9014988418348266,0.0227122132489133,0.9014988418348266,4.3798354959534395e-7,0.4919994212962963,-5.65770104470911e-16,0.025390912236478196,2.18,4.3798355016111405e-7,2.17999956201645,-0.0,-3.635,1529.1157,243.84312 -0.8934510532132474,0.02501658555759678,0.8934510532132474,1.210488891108348,0.4919994212962963,-1.5629695171071006e-10,0.027976862276287175,8.32,1.210488891264645,7.109511108735355,-0.0,-2.27,1528.5802,248.11404 -0.9147540683047696,0.026462777163738623,0.9147540683047696,-9.219181501117164e-8,0.4959997685185185,-9.219181501117164e-8,0.029566965792591576,0.0,0.0,0.0,-0.0,-1.6,1529.9874,249.80362 -0.901069594920659,0.025876999164004162,0.901069594920659,-4.878207866251408e-9,0.4959997685185185,-4.878207866251408e-9,0.028929493971163178,0.0,0.0,0.0,-0.0,-1.9100000000000001,1529.0873,249.9166 -0.9246309087072788,0.03222003183316076,0.9246309087072788,6.711889565898689,0.4999997685185186,2.511889565898738,0.03598448486669864,4.2,4.19999999999995,4.919398222114069e-14,-0.0,1.1149999999999998,1530.6288,249.56859 -1.0337287724786202,0.032563227587215936,1.0337287724786202,8.86497354866274,0.503999537037037,2.4449735486628357,0.03621020389726121,6.42,6.419999999999903,9.657941113516699e-14,-0.0,1.09,1537.2896,247.16263 -1.0899696753236234,0.030363319171630983,1.0899696753236234,-0.07445264409981651,0.503999537037037,-0.07445264409981651,0.033694567748494414,0.0,0.0,0.0,-0.0,0.04499999999999993,1540.4534,246.0796 -1.069585421380641,0.03122273061375346,1.069585421380641,0.3823322713211095,0.5079996527777778,0.3823322713211095,0.03467364500552267,0.0,0.0,0.0,-0.0,0.34499999999999975,1539.3259,246.07182 -1.0495437707519617,0.027038669626575862,1.0495437707519617,-3.258898899778592e-8,0.5079996527777778,-3.258898899778592e-8,0.030049189399791856,0.0,0.0,0.0,-0.0,-1.71,1538.1963,246.11191 -1.046617364685629,0.03441233171613714,1.046617364685629,3.969726602130243,0.511999537037037,3.969726602130243,0.03824799064986676,0.0,0.0,0.0,-0.0,1.6599999999999997,1538.0295,245.2047 -1.1794928855474114,0.04354990149883016,1.1794928855474114,12.835857454589755,0.5159998842592592,12.835857454589755,0.048180450107685575,0.0,0.0,0.0,-0.0,4.9750000000000005,1545.1674,236.92842 -1.4536617064480235,0.04642387046195507,1.4536617064480235,15.105851231149755,0.5159998842592592,15.095851231149755,0.05094844891336394,0.01,0.01,0.0,-0.0,5.82,1557.6489,223.0985 -1.7367496130663875,0.04114580792137761,1.7367496130663875,9.653144325469752,0.520000462962963,9.653144325469752,0.0448500160699862,0.0,0.0,0.0,-0.0,3.7849999999999997,1568.2749,210.82959 -1.8374255551074032,0.0330389540318251,1.8374255551074032,0.9065369326747994,0.520000462962963,0.9065369326747994,0.035936218841864015,0.0,0.0,0.0,-0.0,0.5249999999999997,1571.6401,205.61911 -1.790549637310957,0.031024931265327467,1.790549637310957,-0.002486144998542027,0.5240002314814816,-0.002486144998542027,0.033778752005452925,0.0,0.0,0.0,-0.0,-0.48,1570.0968,205.31598 -1.743653824159557,0.030224046376382444,1.743653824159557,-3.8874024646808046e-5,0.5279998842592593,-3.8874024646808046e-5,0.032940031213890414,0.0,0.0,0.0,-0.0,-0.9499999999999997,1568.5118,205.13698 -1.70185707076843,0.026052102873067817,1.70185707076843,0.0001745355678650387,0.5279998842592593,-8.846226510642017e-14,0.02841944326583526,2.38,0.00017453556795350098,2.3798254644320465,-0.0,-3.0450000000000004,1567.0629,206.10666 -1.7037226569011152,0.02856606166348912,1.7037226569011152,10.532382894826943,0.5319998842592593,-8.632975705617652e-9,0.03116054307335757,11.46,10.532382903459919,0.9276170965400822,-0.0,-1.85,1567.1283,211.18666 -1.795897483508564,0.028382608691960083,1.795897483508564,-2.7542320685352056e-9,0.5319998842592593,-2.7542320685352056e-9,0.030898387913153177,0.0,0.0,0.0,-0.0,-1.97,1570.2749,211.87086 -1.7727089877688489,0.03648739540863887,1.7727089877688489,3.675523696702087,0.5359994212962963,3.675523696702087,0.039741209622285396,0.0,0.0,0.0,-0.0,1.5499999999999998,1569.4988,210.8258 -1.9147236307817617,0.04165864172160676,1.9147236307817617,9.409833809309635,0.5395353009259259,8.529833809309634,0.04524094743806952,0.88,0.88,0.0,-0.0,3.365,1574.1011,204.79735 -2.170068018831492,0.03944923517428102,2.170068018831492,9.709485333954019,0.54,6.149485333954019,0.04263903892935203,3.56,3.56,0.0,-0.0,2.475,1581.5771,197.49074 -2.456244359444347,0.04118926488822075,2.456244359444347,9.419777804662086,0.5439997685185185,7.379777804662086,0.044312493050406514,2.04,2.04,0.0,-0.0,2.935,1588.975,190.54945 -2.6114714469001874,0.037169074490548785,2.6114714469001874,3.247582532660286,0.5439997685185185,3.247582532660286,0.03989558061063385,0.0,0.0,0.0,-0.0,1.39,1592.6346,185.29607 -2.603487422267675,0.03606470224213444,2.603487422267675,1.7877538181202903,0.5479999999999999,1.7877538181202903,0.03871464316132156,0.0,0.0,0.0,-0.0,0.845,1592.4518,182.83415 -2.5646814933213995,0.036054234131331575,2.5646814933213995,1.6663752861145387,0.5498481481481481,1.6663752861145387,0.038725215478211714,0.0,0.0,0.0,-0.0,0.8000000000000003,1591.5549,181.10071 -2.5371664689121065,0.03616827650194965,2.5371664689121065,2.222864009830917,0.5520004629629629,1.6528640098310807,0.03886343593732693,0.57,0.5699999999998364,1.6355417020719187e-13,-0.0,0.7949999999999999,1590.9108,179.54448 -2.5394389851767123,0.03527007144295176,2.5394389851767123,2.995938921964814,0.5559922453703704,0.32593892204904035,0.03789702550333276,2.67,2.6699999999157735,8.422645414452034e-11,-0.0,0.32499999999999996,1590.9642,178.57077 -2.5906302771717806,0.03766692582625442,2.5906302771717806,4.666602206177817,0.5560002314814815,2.926602206177821,0.040442102458008555,1.74,1.7399999999999958,4.346523141407488e-15,-0.0,1.27,1592.1561,176.98643 -2.7654579556528027,0.04360648216644143,2.7654579556528027,8.525869901469495,0.56,8.315869901469494,0.04670486132668945,0.21,0.21,0.0,-0.0,3.285,1596.0562,171.37355 -3.147158514002625,0.04919111600500226,3.147158514002625,12.942839408509753,0.5600517361111111,12.942839408509753,0.0524326413648753,0.0,0.0,0.0,-0.0,5.015,1603.7776,160.78297 -3.7756127086627176,0.053594812494247974,3.7756127086627176,15.858097652829755,0.5639996527777777,15.858097652829755,0.05674184522984457,0.0,0.0,0.0,-0.0,6.105,1614.6504,146.42004 -4.479145090949792,0.05058045707773213,4.479145090949792,13.089939595149755,0.5663305555555556,13.089939595149755,0.05321418435881827,0.0,0.0,0.0,-0.0,5.07,1624.8547,132.01729 -5.086281393879576,0.048519159841745194,5.086281393879576,11.770773447629754,0.5679997685185185,11.110773447629754,0.050808179840324444,0.66,0.66,0.0,-0.0,4.33,1632.446,119.9549 -5.626639512252245,0.048952474065325505,5.626639512252245,11.070655214909753,0.5715351851851852,11.070655214909753,0.05107329061608126,0.0,0.0,0.0,-0.0,4.3149999999999995,1638.4757,108.87199 -6.19977076320961,0.050998738181207114,6.19977076320961,12.541657081309753,0.5719994212962963,12.541657081309753,0.05302075168100174,0.0,0.0,0.0,-0.0,4.864999999999999,1644.2686,97.12925 -6.716142922541063,0.04861919385365179,6.716142922541063,10.228172327789755,0.5760005787037037,10.228172327789755,0.05040041523108162,0.0,0.0,0.0,-0.0,4.0,1649.0463,85.82329 -6.687703834993014,0.04036847941417855,6.687703834993014,2.886476420473034,0.5760005787037037,2.886476420473034,0.041853858070973665,0.0,0.0,0.0,-0.0,1.2550000000000001,1648.7928,79.26577 -6.442968213034368,0.04353285284184567,6.442968213034368,5.627948305140335,0.5800003472222222,5.627948305140335,0.04519569603897786,0.0,0.0,0.0,-0.0,2.28,1646.5664,74.9095 -7.000914247025003,0.0553114454803575,7.000914247025003,17.518987509949753,0.5807946759259259,15.028987509949754,0.057251745172999,2.49,2.49,0.0,-0.0,5.795,1651.5262,64.541725 -8.05773015810895,0.05353206263867068,8.05773015810895,14.457158014509753,0.5840005787037037,13.277158014509753,0.05512967121694254,1.18,1.18,0.0,-0.0,5.14,1659.9224,50.37273 -8.697379569160685,0.051770328365849785,8.697379569160685,11.725919682669753,0.5853530092592593,11.725919682669753,0.053169233309966556,0.0,0.0,0.0,-0.0,4.56,1664.4844,37.92546 -9.541586220044598,0.06022752966813547,9.541586220044598,17.543063427069754,0.5880002314814815,17.543063427069754,0.06165004969140094,0.0,0.0,0.0,-0.0,6.735,1670.0167,23.286417 -10.237615816565278,0.05932321447734837,10.237615816565278,8.989386558532715,0.5903311342592593,8.989386558532715,0.06057186515854093,0.0,0.0,0.0,-0.0,6.404999999999999,1674.2216,8.989387 -9.523270635850457,0.06763997768940348,9.523270635850457,3.303113698959336,0.5920008101851852,3.303113698959336,0.06924233067015471,0.0,0.0,0.0,-0.0,8.420000000000002,1669.902,3.3031137 -8.472463105438814,0.07794428567476971,8.472463105438814,1.2129553655195509,0.5943310185185184,1.2129553655195509,0.0801257688432533,0.0,0.0,0.0,-0.0,10.645,1662.9197,1.2129619 -7.4987539091193325,0.09185411167643442,7.4987539091193325,0.4408058416402257,0.5959997685185184,0.4408058416402257,0.09484071820853246,0.0,0.0,0.0,-0.0,13.295,1655.6288,0.44590732 -6.680230557762998,0.1039637341777974,6.680230557762998,0.14843939577068396,0.5987809027777777,0.14843939577068396,0.10779349785863089,0.0,0.0,0.0,-0.0,15.305,1648.7261,0.17439169 -6.00669486741613,0.11264536427285872,6.00669486741613,0.05576762840819822,0.5999998842592592,0.05576762840819822,0.1172462879226922,0.0,0.0,0.0,-0.0,16.66,1642.3792,0.08066064 -5.451089178690857,0.11638136088268458,5.451089178690857,0.025492184441226015,0.6027810185185185,0.025492184441226015,0.1215639097012288,0.0,0.0,0.0,-0.0,17.185,1636.5828,0.042207092 -4.987263740790462,0.11749833220132257,4.987263740790462,0.013119717631733396,0.6039996527777778,0.013119717631733396,0.12313018404810544,0.0,0.0,0.0,-0.0,17.365000000000002,1631.272,0.023492556 -4.601775244816767,0.1139926502498944,4.601775244816767,0.00720312072780979,0.6063304398148148,0.00720312072780979,0.11980931610275927,0.0,0.0,0.0,-0.0,16.845,1626.4678,0.013496803 -4.468272354838352,0.11322545118520022,4.468272354838352,5.6440937896493955,0.6079995370370371,0.004093789649395754,0.11913174842760771,5.64,5.64,0.0,-0.0,16.705,1624.7096,0.007877467 -4.797581621151762,0.0764093350487905,4.797581621151762,12.192376714807672,0.6098476851851852,0.0023767148076720922,0.08018556393559971,12.19,12.19,0.0,-0.0,10.25,1628.9563,0.0046455436 -4.902333607986872,0.05059257756387637,4.902333607986872,0.001339244779099951,0.6120002314814815,0.001339244779099951,0.05305090614811948,0.0,0.0,0.0,-0.0,3.8600000000000003,1630.2462,0.0026435498 -4.514228525235464,0.049610841748467,4.514228525235464,0.0007181635569750833,0.6133524305555556,0.0007181635569750833,0.05217911825105241,0.0,0.0,0.0,-0.0,3.58,1625.3207,0.0014261577 -4.190169933438889,0.05181150490225447,4.190169933438889,0.0004278837391423192,0.6159914351851852,0.0004278837391423192,0.05464327262553839,0.0,0.0,0.0,-0.0,4.205,1620.872,0.0008521368 -3.911730138055384,0.058351647631997815,3.911730138055384,0.00023106196656192548,0.6162851851851852,0.00023106196656192548,0.0616971766203348,0.0,0.0,0.0,-0.0,6.03,1616.7655,0.00046106105 -3.66661734128809,0.06990458514714057,3.66661734128809,1.9179192266570144e-5,0.6195356481481481,1.9179192266570144e-5,0.07408958330761264,0.0,0.0,0.0,-0.0,8.765,1612.901,3.835103e-5 -3.4493980336810894,0.09150593742056917,3.4493980336810894,-0.00016283815190671393,0.6199998842592592,-0.00016283815190671393,0.09720394777602713,0.0,0.0,0.0,-0.0,13.055,1609.2539,-0.00032620836 -3.255650892600453,0.110553630101732,3.255650892600453,-0.0002589316654634696,0.6227818287037037,-0.0002589316654634696,0.11769020314784594,0.0,0.0,0.0,-0.0,16.105,1605.8016,-0.00051921123 -3.0832302189556016,0.11882441533409173,3.0832302189556016,-0.0002145870796786775,0.6240006944444445,-0.0002145870796786775,0.1267513973938048,0.0,0.0,0.0,-0.0,17.305,1602.552,-0.00043009908 -3.0377267892291626,0.12218797527526024,3.0377267892291626,-0.00011713123572869107,0.6253526620370371,-0.00011713123572869107,0.13041160448390923,0.0,0.0,0.0,-0.0,17.744999999999997,1601.6641,-0.00023453751 -3.074903609239695,0.10527860244137359,3.074903609239695,5.909947271824171,0.6278895833333333,-5.272817582886981e-5,0.1123132384135885,5.91,5.91,0.0,-0.0,15.2,1602.3905,-0.000105512016 -3.0457223717189637,0.07255546300167431,3.0457223717189637,-2.772771947381048e-5,0.6280518518518519,-2.772771947381048e-5,0.07743108121836821,0.0,0.0,0.0,-0.0,9.24,1601.821,-5.5470824e-5 -2.9144492213669553,0.08207233035128932,2.9144492213669553,-1.5432161205351172e-5,0.6303303240740741,-1.5432161205351172e-5,0.087731573037758,0.0,0.0,0.0,-0.0,11.15,1599.19,-3.0869087e-5 -2.8082200807080295,0.09606365889745086,2.8082200807080295,1.459991263088708,0.6319916666666667,-8.736911291904897e-6,0.10283024681310694,1.46,1.46,0.0,-0.0,13.655000000000001,1596.9725,-1.747535e-5 -2.8872569112779747,0.10221132773143628,2.8872569112779747,5.1099952041134005,0.6322856481481481,-4.795886600056675e-6,0.10929750234426931,5.11,5.11,0.0,-0.0,14.64,1598.6301,-9.592233e-6 -3.2340485799672445,0.09196707813269277,3.2340485799672445,15.58999761153297,0.6347809027777778,-2.38846703027025e-6,0.09792807889298971,15.59,15.59,0.0,-0.0,12.795000000000002,1605.404,-4.777048e-6 -3.760985572875071,0.084525104302398,3.760985572875071,11.709998677394942,0.6360001157407408,-1.3226050586205761e-6,0.08950118170355137,11.71,11.71,0.0,-0.0,11.325,1614.4186,-2.645245e-6 -3.984121571730007,0.0762375341976536,3.984121571730007,6.009999502556905,0.6362856481481481,-4.974430946599113e-7,0.08055396919657261,6.01,6.01,0.0,-0.0,9.655000000000001,1617.8606,-9.948911e-7 -3.9202067924888686,0.08615442807930451,3.9202067924888686,-2.9218693277129334e-9,0.6387810185185185,-2.9218693277129334e-9,0.09108671653392637,0.0,0.0,0.0,-0.0,11.535,1616.8948,-5.843739e-9 -3.695049537040906,0.10116408550125491,3.695049537040906,5.4568948050603165e-8,0.6399917824074074,5.4568948050603165e-8,0.10718984804595322,0.0,0.0,0.0,-0.0,14.125,1613.3623,1.0913784e-7 -3.4731841548702924,0.12681400317762498,3.4731841548702924,2.9894684116691774e-8,0.6400512731481481,2.9894684116691774e-8,0.13467627609924715,0.0,0.0,0.0,-0.0,17.895,1609.6643,5.978935e-8 -3.275408462340434,0.14248675309275796,3.275408462340434,1.641385785807898e-8,0.6418483796296296,1.641385785807898e-8,0.15165058281479682,0.0,0.0,0.0,-0.0,19.855,1606.163,3.282771e-8 -3.116030192932656,0.15950686288604227,3.116030192932656,2.350000002643822,0.6435354166666667,2.6438221200724995e-9,0.17008077085257478,2.35,2.35,0.0,-0.0,21.78,1603.184,5.287644e-9 -2.995661347908842,0.12780656838211435,2.995661347908842,6.439999984489345,0.6439998842592592,-1.5510655241350307e-8,0.13647930688892254,6.44,6.44,0.0,-0.0,18.015,1600.8313,-3.1021315e-8 -2.903520334073773,0.10053149729517205,2.903520334073773,2.879999966551521,0.6442856481481481,-3.34484790118017e-8,0.10747865868201886,2.88,2.88,0.0,-0.0,14.059999999999999,1598.9656,-6.689698e-8 -2.8306381390440363,0.09765508706042081,2.8306381390440363,1.469999953431438,0.6458482638888889,-4.656856196959614e-8,0.10450269945169612,1.47,1.47,0.0,-0.0,13.565000000000001,1597.4474,-9.313717e-8 -2.7692252229397805,0.09432468498008291,2.7692252229397805,-5.026982168120304e-8,0.6471538194444444,-5.026982168120304e-8,0.10102160788672873,0.0,0.0,0.0,-0.0,12.985,1596.1375,-1.00539694e-7 -2.7122641725273144,0.10929944452094838,2.7122641725273144,1.4199999600488304,0.6479927083333333,-3.9951169509982235e-8,0.11715065510610234,1.42,1.42,0.0,-0.0,15.375,1594.8962,-7.990237e-8 -2.7479843450696273,0.12762533153956487,2.7479843450696273,5.079999978656443,0.6480521990740741,-2.1343557029309464e-8,0.1367259445836465,5.08,5.08,0.0,-0.0,17.939999999999998,1595.6776,-4.2687123e-8 -2.932321941847105,0.12701753057424875,2.932321941847105,6.809999993190091,0.6487947916666666,-6.809908173246931e-9,0.13574494746805232,6.81,6.81,0.0,-0.0,17.8,1599.555,-1.3619817e-8 -3.1843725363597426,0.09488810553183234,3.1843725363597426,11.010000000550539,0.6498487268518519,5.505398389727179e-10,0.10109665199386525,11.01,11.01,0.0,-0.0,12.93,1604.4796,1.1010797e-9 -3.3363853965054346,0.09974167238733947,3.3363853965054346,6.066538974668467e-10,0.6507814814814814,6.066538974668467e-10,0.10608365811596729,0.0,0.0,0.0,-0.0,13.684999999999999,1607.2645,1.2133078e-9 -3.225868500469851,0.12438851709342157,3.225868500469851,2.8810384716541293e-10,0.6515357638888889,2.8810384716541293e-10,0.13246344729993081,0.0,0.0,0.0,-0.0,17.32,1605.2528,5.762077e-10 -3.0353495822257397,0.153593665157392,3.0353495822257397,1.244151727635408e-10,0.6519921296296297,1.244151727635408e-10,0.16393577989486555,0.0,0.0,0.0,-0.0,20.92,1601.6173,2.4883035e-10 -2.8525995298655817,0.16693235104077486,2.8525995298655817,7.036306264817582e-11,0.6520001157407407,7.036306264817582e-11,0.17858611332493426,0.0,0.0,0.0,-0.0,22.4,1597.9089,1.4072613e-10 -2.696311352249261,0.1700725821547649,2.696311352249261,3.4167370333587734e-11,0.6520517361111111,3.4167370333587734e-11,0.18232953050220094,0.0,0.0,0.0,-0.0,22.759999999999998,1594.544,6.833474e-11 -2.644253023293042,0.13387981376478295,2.644253023293042,4.190000000018357,0.6522856481481482,1.8356729334406856e-11,0.14363326653095665,4.19,4.19,0.0,-0.0,18.66,1593.3796,3.671346e-11 -2.5332436488474865,0.08244509101857246,2.5332436488474865,9.437334595243886e-12,0.6527943287037037,9.437334595243886e-12,0.08859381597138934,0.0,0.0,0.0,-0.0,10.75,1590.8184,1.887467e-11 -2.4288349980678072,0.08724332591743904,2.4288349980678072,3.992543708995575e-12,0.653352662037037,3.992543708995575e-12,0.09389826409651689,0.0,0.0,0.0,-0.0,11.66,1588.3048,7.985087e-12 -2.4159117979904883,0.09867435426257444,2.4159117979904883,6.760000000002185,0.653848611111111,2.1850785070698434e-12,0.10622256109595013,6.76,6.76,0.0,-0.0,13.63,1587.9862,4.370157e-12 -2.3840353964693883,0.09368413535713697,2.3840353964693883,0.14000000000114826,0.653848611111111,1.148246103247625e-12,0.10090101065639892,0.14,0.14,0.0,-0.0,12.8,1587.193,2.2964922e-12 -2.307421873026294,0.10684950069827924,2.307421873026294,6.17768856906939e-13,0.653848611111111,6.17768856906939e-13,0.11522216812736544,0.0,0.0,0.0,-0.0,14.955,1585.2423,1.2355377e-12 -2.2118231850110908,0.11956392610629117,2.2118231850110908,2.472688124140068e-13,0.6543310185185185,2.472688124140068e-13,0.12913874424703553,0.0,0.0,0.0,-0.0,16.825,1582.7153,4.945376e-13 -2.129497179638111,0.1345173113809274,2.129497179638111,-9.4626970105046e-14,0.6543310185185185,-9.4626970105046e-14,0.14549785756697767,0.0,0.0,0.0,-0.0,18.825,1580.4501,-1.8925394e-13 -2.078986829840317,0.14286499963743102,2.078986829840317,1.5799999999996868,0.653848611111111,-3.133632134150083e-13,0.15466725677664836,1.58,1.58,0.0,-0.0,19.875,1579.0165,-6.267264e-13 -2.0778737501814573,0.1542555558001533,2.0778737501814573,3.1899999999996855,0.653848611111111,-3.143846402817005e-13,0.16700218366727693,3.19,3.19,0.0,-0.0,21.189999999999998,1578.9845,-6.287693e-13 -2.1346571107968146,0.1426480343502146,2.1346571107968146,3.0399999999998295,0.653352662037037,-1.7060269483978217e-13,0.15427817663999752,3.04,3.04,0.0,-0.0,19.845,1580.5946,-3.412054e-13 -2.213279444305548,0.14665766272219538,2.213279444305548,6.0099999999999385,0.653352662037037,-6.151095664716533e-14,0.15839824496422544,6.01,6.01,0.0,-0.0,20.295,1582.7546,-1.2302191e-13 -2.2615124667287163,0.14678017924921694,2.2615124667287163,-9.01604400133793e-15,0.6527943287037037,-9.01604400133793e-15,0.15840171921111587,0.0,0.0,0.0,-0.0,20.31,1584.0421,-1.8032088e-14 -2.444728933290718,0.15947547929446015,2.444728933290718,14.259999999999994,0.6522856481481482,-4.667834247926464e-15,0.17159821655777857,14.26,14.26,0.0,-0.0,21.7,1588.6943,-9.3356685e-15 -2.9708066502033437,0.13963699155255577,2.9708066502033437,14.889999999999999,0.6520517361111111,-2.6393984975993505e-15,0.14915888311897949,14.89,14.89,0.0,-0.0,19.305,1600.3337,-5.278797e-15 -3.4484251730047815,0.13182487512228322,3.4484251730047815,9.589999999999998,0.6519921296296297,-1.5681971161839424e-15,0.14003498325610578,9.59,9.59,0.0,-0.0,18.24,1609.237,-3.1363942e-15 -3.528288655261407,0.12816045041793395,3.528288655261407,-9.270868781322428e-16,0.6518894675925926,-9.270868781322428e-16,0.13602675971775607,0.0,0.0,0.0,-0.0,17.755,1610.6044,-1.8541738e-15 -3.5548415592478824,0.1518927701276699,3.5548415592478824,6.209999999999999,0.6511538194444445,-5.2492008169888e-16,0.16117092992940982,6.21,6.21,0.0,-0.0,20.65,1611.0521,-1.0498402e-15 -3.6069997284401705,0.14416655865908298,3.6069997284401705,2.4199999999999995,0.6503311342592593,-2.844582805830228e-16,0.15289022182359543,2.42,2.42,0.0,-0.0,19.77,1611.922,-5.6891656e-16 -3.569527819434736,0.14773910480053187,3.569527819434736,3.65,0.6493528935185184,-1.678544280447959e-16,0.15673958931280174,3.65,3.65,0.0,-0.0,20.22,1611.2983,-3.3570886e-16 -3.465865369184825,0.1413247146695559,3.465865369184825,-9.77997343440717e-17,0.6482863425925927,-9.77997343440717e-17,0.15009837645300314,0.0,0.0,0.0,-0.0,19.51,1609.5383,-1.9559947e-16 -3.2764865456143415,0.10618422487922961,3.2764865456143415,-5.638063716905923e-17,0.6480008101851852,-5.638063716905923e-17,0.11301192709760623,0.0,0.0,0.0,-0.0,14.785,1606.1826,-1.1276127e-16 -3.2148427610589123,0.11617898553942872,3.2148427610589123,4.83,0.647890162037037,-3.136287056230325e-17,0.12373673839707283,4.83,4.83,0.0,-0.0,16.28,1605.0483,-6.272574e-17 -3.2262971263302056,0.10960381965991267,3.2262971263302056,4.21,0.64678125,-1.824833719494251e-17,0.1167183946381133,4.21,4.21,0.0,-0.0,15.345,1605.2607,-3.6496674e-17 -3.1633595655154156,0.1045834466842663,3.1633595655154156,-1.0028391985096859e-17,0.645352199074074,-1.0028391985096859e-17,0.11145382626604561,0.0,0.0,0.0,-0.0,14.625,1604.0842,-2.0056784e-17 -3.2685932884640057,0.10247023580845009,3.2685932884640057,9.88,0.6440515046296297,-5.890080172387967e-18,0.10906890788573527,9.88,9.88,0.0,-0.0,14.305,1606.0386,-1.178016e-17 -3.6650962298629723,0.09427558429768382,3.6650962298629723,11.08,0.6438894675925926,-3.3284027313459723e-18,0.09992114333050282,11.08,11.08,0.0,-0.0,12.89,1612.8762,-6.6568055e-18 -3.847379925508446,0.1078836704879157,3.847379925508446,2.64,0.6427809027777778,-1.9784419037078998e-18,0.11413899831386454,2.64,2.64,0.0,-0.0,15.08,1615.7749,-3.956884e-18 -3.682390069502399,0.12651800973771501,3.682390069502399,-1.1726936442236976e-18,0.6407940972222222,-1.1726936442236976e-18,0.13407099160247102,0.0,0.0,0.0,-0.0,17.8,1613.1573,-2.3453873e-18 -3.4656103412741435,0.12751321968194992,3.4656103412741435,-6.798555578554824e-19,0.6399997685185186,-6.798555578554824e-19,0.1354298117792471,0.0,0.0,0.0,-0.0,17.990000000000002,1609.5339,-1.3597111e-18 -3.293306234546944,0.14237737599230735,3.293306234546944,0.99,0.6395354166666667,-3.92988881982392e-19,0.15150347377161733,0.99,0.99,0.0,-0.0,19.9,1606.4884,-7.8597776e-19 -3.1442586041503278,0.1452014410610962,3.1442586041503278,2.6,0.6378482638888888,-2.1324504226585087e-19,0.15477502967352647,2.6,2.6,0.0,-0.0,20.310000000000002,1603.7225,-4.2649008e-19 -3.0235903065986807,0.18043829761459235,3.0235903065986807,-9.628312536753058e-20,0.6360001157407408,-9.628312536753058e-20,0.19261585405969767,0.0,0.0,0.0,-0.0,24.16,1601.3855,-1.9256625e-19 -2.9631409814575562,0.17181403357538472,2.9631409814575562,4.03,0.6355359953703703,-5.1330482885650726e-20,0.1835477848724362,4.03,4.03,0.0,-0.0,23.325,1600.1794,-1.02660966e-19 -2.9058239937902544,0.13946919102598207,2.9058239937902544,1.63,0.6338483796296296,-2.661034214469408e-20,0.14910269890251465,1.63,1.63,0.0,-0.0,19.78,1599.013,-5.3220684e-20 -2.809804799600377,0.10609519127396436,2.809804799600377,-1.2594308694466447e-20,0.6319996527777777,-1.2594308694466447e-20,0.11356599019848385,0.0,0.0,0.0,-0.0,15.275,1597.0062,-2.5188617e-20 -2.746507473345244,0.09943114792771457,2.746507473345244,0.02,0.6315355324074073,-6.957113209595911e-21,0.1065234541299503,0.02,0.02,0.0,-0.0,14.24,1595.6455,-1.3914226e-20 -2.7876315082317573,0.13108588177615832,2.7876315082317573,5.68,0.6287943287037038,-2.7369974655282273e-21,0.14035800897104353,5.68,5.68,0.0,-0.0,18.89,1596.5331,-5.473995e-21 -2.7809841453601294,0.14139347521740664,2.7809841453601294,-5.602976844503711e-22,0.628,-5.602976844503711e-22,0.15140821322599113,0.0,0.0,0.0,-0.0,20.200000000000003,1596.3905,-1.1205954e-21 -2.641530325976907,0.13090510119773874,2.641530325976907,-2.851544865240622e-22,0.6267813657407407,-2.851544865240622e-22,0.14044726224006238,0.0,0.0,0.0,-0.0,18.955,1593.3181,-5.7030897e-22 -2.595586166771451,0.13597395075968954,2.595586166771451,3.66,0.624052199074074,-1.5825596103838182e-22,0.1459816044941973,3.66,3.66,0.0,-0.0,19.685,1592.2703,-3.1651192e-22 -2.8409849044816347,0.13536097565241315,2.8409849044816347,16.28,0.6238902777777778,-9.259177251118552e-23,0.14483278397728402,16.28,16.28,0.0,-0.0,19.555,1597.6653,-1.8518355e-22 -3.1685495785944378,0.1336560767892096,3.1685495785944378,6.76,0.6207944444444444,-5.0970805353120934e-23,0.14242762624763836,6.76,6.76,0.0,-0.0,19.355,1604.1821,-1.0194161e-22 -3.3206825821093724,0.13633923329892353,3.3206825821093724,3.48,0.6199998842592592,-2.960205280007278e-23,0.1450336654925241,3.48,3.48,0.0,-0.0,19.685000000000002,1606.9828,-5.9204106e-23 -3.440961617446234,0.13103766174732878,3.440961617446234,5.7,0.6183303240740741,-1.6666016642280077e-23,0.13920993541002755,5.7,5.7,0.0,-0.0,19.035,1609.1077,-3.3332033e-23 -3.4059664284456996,0.14582282442879563,3.4059664284456996,0.45,0.615999537037037,-9.688027598290023e-24,0.15497598294774584,0.45,0.45,0.0,-0.0,20.93,1608.4972,-1.9376055e-23 -3.2335924858123115,0.16485660115833833,3.2335924858123115,-5.3090753073349336e-24,0.6151532407407407,-5.3090753073349336e-24,0.17554297987353729,0.0,0.0,0.0,-0.0,23.115000000000002,1605.3956,-1.0618151e-23 -3.1937853975334978,0.16515814410006804,3.1937853975334978,5.44,0.6120002314814815,-2.9170394029192633e-24,0.1759451428191267,5.44,5.44,0.0,-0.0,23.245,1604.6559,-5.834079e-24 -3.1288588051189197,0.11798785660166322,3.1288588051189197,-1.6910134776996603e-24,0.6115356481481482,-1.6910134776996603e-24,0.12579016638026944,0.0,0.0,0.0,-0.0,17.515,1603.4293,-3.382027e-24 -2.9727504695947524,0.0969052017521271,2.9727504695947524,0.09,0.6080510416666667,-9.752066143284507e-25,0.10351067217771633,0.09,0.09,0.0,-0.0,14.39,1600.3728,-1.9504132e-24 -3.067000680942805,0.09758865507501951,3.067000680942805,8.68,0.6078891203703704,-5.528763701715736e-25,0.1041194408022698,8.68,8.68,0.0,-0.0,14.489999999999998,1602.2368,-1.1057527e-24 -3.478989152572551,0.10569526612318755,3.478989152572551,13.03,0.6042853009259259,-2.974831204924335e-25,0.1122412556330157,13.03,13.03,0.0,-0.0,15.82,1609.764,-5.9496624e-25 -3.984862717899534,0.1076977786212968,3.984862717899534,15.38,0.6039916666666666,-1.7299022002633734e-25,0.11379465595972255,15.38,15.38,0.0,-0.0,16.055,1617.8717,-3.4598044e-25 -4.254518761887288,0.10526764348185179,4.254518761887288,2.85,0.6002854166666667,-9.372586453720686e-26,0.1109587608438254,2.85,2.85,0.0,-0.0,15.740000000000002,1621.7821,-1.8745173e-25 -4.270087661318247,0.09430048626231768,4.270087661318247,7.88,0.5999998842592592,-5.193518154817019e-26,0.09938531485633925,7.88,7.88,0.0,-0.0,13.945,1622.0002,-1.0387036e-25 -4.137876381972181,0.08390486456004503,4.137876381972181,3.81,0.5962851851851851,-1.5428042383270964e-26,0.08853166583532443,3.81,3.81,0.0,-0.0,12.18,1620.122,-3.0856085e-26 -3.940475967104967,0.08220924544541809,3.940475967104967,0.1,0.5959997685185184,1.1183595542028754e-26,0.08689912220205334,0.1,0.1,0.0,-0.0,11.89,1617.2028,2.2367191e-26 -3.748222786716385,0.08727084359476814,3.748222786716385,1.9368613686771823e-26,0.5920523148148148,1.9368613686771823e-26,0.09242018666751725,0.0,0.0,0.0,-0.0,12.985000000000001,1614.2156,3.8737227e-26 -3.6521810367320153,0.10483723868193595,3.6521810367320153,6.92,0.591992824074074,1.1509312666083412e-26,0.11112979286402715,6.92,6.92,0.0,-0.0,15.995,1612.6654,2.3018625e-26 -3.856253095805725,0.11219453720645091,3.856253095805725,9.6,0.5880002314814815,5.679976858704135e-27,0.11868971268437672,9.6,9.6,0.0,-0.0,17.2,1615.9125,1.1359954e-26 -4.607083409273341,0.1180367347321695,4.607083409273341,21.36,0.5879922453703703,2.976877174230296e-27,0.12405450559536471,21.36,21.36,0.0,-0.0,17.939999999999998,1626.5366,5.9537543e-27 -4.796650098727642,0.10165375469696517,4.796650098727642,1.706942850432663e-27,0.5840005787037037,1.706942850432663e-27,0.10667834853672033,0.0,0.0,0.0,-0.0,15.545000000000002,1628.9447,3.4138857e-27 -4.457416900200436,0.0982628520122644,4.457416900200436,9.875381049470491e-28,0.5835359953703704,9.875381049470491e-28,0.10339788429838777,0.0,0.0,0.0,-0.0,15.045,1624.5643,1.9750762e-27 -4.167483258081142,0.10897255724767935,4.167483258081142,0.9,0.5800003472222222,5.789431598193042e-28,0.11495146667363963,0.9,0.9,0.0,-0.0,16.895,1620.5477,1.1578863e-27 -3.991539240730839,0.10811492535646723,3.991539240730839,3.19,0.5787818287037036,3.3899371471928595e-28,0.11422835909724456,3.19,3.19,0.0,-0.0,16.825000000000003,1617.9717,6.7798743e-28 -3.7789017977576025,0.08741137728452042,3.7789017977576025,0.02,0.5760005787037037,1.639163910863459e-28,0.09254110381093925,0.02,0.02,0.0,-0.0,13.45,1614.7024,3.2783278e-28 -3.5481846577180876,0.09652469255858703,3.5481846577180876,5.795415101418389e-29,0.5738478009259259,5.795415101418389e-29,0.10242788676709923,0.0,0.0,0.0,-0.0,15.165,1610.9402,1.159083e-28 -3.3424262994461866,0.09632294155288598,3.3424262994461866,2.917453749317132e-29,0.5719994212962963,2.917453749317132e-29,0.10244066476961591,0.0,0.0,0.0,-0.0,15.219999999999999,1607.3726,5.8349075e-29 -3.1601798753436317,0.0994241846170931,3.1601798753436317,1.4425409381087604e-29,0.5680513888888888,1.4425409381087604e-29,0.10595960505966781,0.0,0.0,0.0,-0.0,15.89,1604.0242,2.885082e-29 -2.9962431134458756,0.10934600646250617,2.9962431134458756,6.283958829100361e-30,0.5679997685185185,6.283958829100361e-30,0.11676519645876776,0.0,0.0,0.0,-0.0,17.505,1600.8429,1.2567918e-29 -2.8494002001634406,0.12220065277453412,2.8494002001634406,1.9893135401790543e-30,0.5639996527777777,1.9893135401790543e-30,0.13073712076818242,0.0,0.0,0.0,-0.0,19.53,1597.8419,3.978627e-30 -2.719497604147351,0.12499515010896381,2.719497604147351,-4.927832185878741e-30,0.5639916666666667,-4.927832185878741e-30,0.13396045670839896,0.0,0.0,0.0,-0.0,19.945,1595.0553,-9.855664e-30 -2.6032107120159327,0.13067192449000242,2.6032107120159327,-1.2881252918457604e-29,0.56,-1.2881252918457604e-29,0.140273918227507,0.0,0.0,0.0,-0.0,20.855,1592.4454,-2.5762506e-29 -2.497663752049985,0.13928234595078665,2.497663752049985,-2.0116220907768692e-29,0.558330324074074,-2.0116220907768692e-29,0.1497494899078562,0.0,0.0,0.0,-0.0,22.035,1589.9736,-4.0232442e-29 -2.400367119145893,0.13002293204839419,2.400367119145893,0.45,0.5560002314814815,-2.487800896826045e-29,0.14000317099356585,0.45,0.45,0.0,-0.0,20.945,1587.6007,-4.9756018e-29 -2.3091912249905526,0.10584250504102853,2.3091912249905526,-2.541189029053951e-29,0.5520519675925926,-2.541189029053951e-29,0.11413296908150268,0.0,0.0,0.0,-0.0,17.6,1585.2881,-5.082378e-29 -2.222259722846218,0.08004125062881219,2.222259722846218,-1.9963133551314212e-29,0.5520004629629629,-1.9963133551314212e-29,0.08643569395295747,0.0,0.0,0.0,-0.0,13.035,1582.9965,-3.9926267e-29 -2.13953651373419,0.07504794507347488,2.13953651373419,-8.677781416414324e-30,0.5479999999999999,-8.677781416414324e-30,0.08115962794826849,0.0,0.0,0.0,-0.0,12.14,1580.731,-1.7355563e-29 -2.0622266013404014,0.092405940438821,2.0622266013404014,4.377127940767094e-30,0.5479921296296296,4.377127940767094e-30,0.10007034672281531,0.0,0.0,0.0,-0.0,15.540000000000001,1578.5331,8.754256e-30 -1.989860670096853,0.10499091488365404,1.989860670096853,1.5634500677010066e-29,0.5439997685185185,1.5634500677010066e-29,0.11385302013405392,0.0,0.0,0.0,-0.0,17.805,1576.3998,3.1269e-29 -1.9220053177956,0.12940187707707257,1.9220053177956,2.1535158822092603e-29,0.540794212962963,2.1535158822092603e-29,0.14050915566732147,0.0,0.0,0.0,-0.0,21.485,1574.3278,4.3070318e-29 -1.8582634240891482,0.12789272453965034,1.8582634240891482,1.8519925910425484e-29,0.54,1.8519925910425484e-29,0.13904835962289663,0.0,0.0,0.0,-0.0,21.33,1572.3136,3.7039852e-29 -1.791219534546384,0.13964654636293472,1.791219534546384,1.0208222399038025e-29,0.5359994212962963,1.0208222399038025e-29,0.15203962598137755,0.0,0.0,0.0,-0.0,23.01,1570.1191,2.0416445e-29 -1.7315035720158884,0.13768116876386535,1.7315035720158884,4.2330198565201266e-30,0.5359994212962963,4.2330198565201266e-30,0.15009339665671917,0.0,0.0,0.0,-0.0,22.785,1568.0942,8.46604e-30 -1.7066469628782868,0.13100422825177513,1.7066469628782868,1.82,0.5319998842592593,1.624079357977436e-30,0.1428932059297897,1.82,1.82,0.0,-0.0,22.060000000000002,1567.2307,3.2481587e-30 -1.9401544352233984,0.13312795812439074,1.9401544352233984,15.88,0.5298482638888888,9.55761542811779e-31,0.144503548451126,15.88,15.88,0.0,-0.0,22.325,1574.889,1.911523e-30 -2.484293082792132,0.12223928845316168,2.484293082792132,19.27,0.5279998842592593,5.654091152031457e-31,0.1314521396173024,19.27,19.27,0.0,-0.0,20.75,1589.6531,1.1308182e-30 -3.207399571907471,0.124634067173609,3.207399571907471,19.52,0.5240002314814816,3.3485068600828738e-31,0.13275329497725474,19.52,19.52,0.0,-0.0,21.049999999999997,1604.9099,6.6970137e-31 -5.4966609895665455,0.11598042640565678,5.4966609895665455,49.75,0.5240002314814816,2.020951970631436e-31,0.12110832871068623,49.75,49.75,0.0,-0.0,19.48,1637.08,4.041904e-31 -7.377264702807966,0.08796893627563403,7.377264702807966,1.2232412856605977e-31,0.520000462962963,1.2232412856605977e-31,0.09088276392895088,0.0,0.0,0.0,-0.0,14.82,1654.6533,2.4464826e-31 -6.557362902206151,0.0831853513002621,6.557362902206151,7.261352453722921e-32,0.5183310185185186,7.261352453722921e-32,0.0863077267428999,0.0,0.0,0.0,-0.0,14.03,1647.6174,1.4522705e-31 -5.899036236503427,0.08935024112527472,5.899036236503427,4.312736840522129e-32,0.5159998842592592,4.312736840522129e-32,0.09306089089154591,0.0,0.0,0.0,-0.0,15.335,1641.2991,8.6254737e-32 -5.467235877377713,0.09484757775874415,5.467235877377713,2.64,0.511999537037037,2.4160035309470295e-32,0.09906051958754444,2.64,2.64,0.0,-0.0,16.495,1636.7594,4.832007e-32 -5.59186464512856,0.0917952395068092,5.59186464512856,10.54,0.511999537037037,1.378696328713976e-32,0.09579382176119615,10.54,10.54,0.0,-0.0,15.94,1638.1055,2.7573927e-32 -7.614753424969662,0.07505153187194047,7.614753424969662,38.33,0.5079996527777778,8.283233349716546e-33,0.07744892328958042,38.33,38.33,0.0,-0.0,12.605,1656.5455,1.6566467e-32 -10.141309366676351,0.06602898578186121,10.141309366676351,14.54,0.5067805555555556,4.863760323450837e-33,0.06744151878608891,14.54,14.54,0.0,-0.0,10.44,1673.6571,9.727521e-33 -9.65464887105028,0.05951514120575387,9.65464887105028,2.823893385058243e-33,0.503999537037037,2.823893385058243e-33,0.06089518328056575,0.0,0.0,0.0,-0.0,8.925,1670.7202,5.6477868e-33 -8.318331533199782,0.06913652333788799,8.318331533199782,1.6983744418771957e-33,0.4999997685185186,1.6983744418771957e-33,0.0711183887422261,0.0,0.0,0.0,-0.0,11.495,1661.8232,3.396749e-33 -7.775960419131539,0.07471115788344654,7.775960419131539,7.96,0.4999997685185186,1.0078882336847186e-33,0.07703949290876286,7.96,7.96,0.0,-0.0,12.774999999999999,1657.7966,2.0157765e-33 -8.122221145160507,0.07068408645213585,8.122221145160507,13.35,0.4959997685185185,5.930099003539736e-34,0.07277270770788467,13.35,13.35,0.0,-0.0,11.989999999999998,1660.3984,1.1860198e-33 -8.211932920141251,0.06750432083862443,8.211932920141251,6.01,0.49366840277777774,3.47221424354474e-34,0.06947153675727788,6.01,6.01,0.0,-0.0,11.325,1661.0544,6.9444285e-34 -7.808197278869545,0.07567834599046577,7.808197278869545,3.34,0.4919994212962963,2.048123959687655e-34,0.07802519442578446,3.34,3.34,0.0,-0.0,13.24,1658.0437,4.096248e-34 -7.562526452428366,0.07127541251694813,7.562526452428366,6.22,0.48800034722222224,1.178987428713027e-34,0.07357043612408957,6.22,6.22,0.0,-0.0,12.425,1656.1345,2.3579749e-34 -7.047072888874799,0.060025804195859386,7.047072888874799,6.934521847735807e-35,0.48800034722222224,6.934521847735807e-35,0.062116720450014894,0.0,0.0,0.0,-0.0,9.74,1651.9187,1.3869044e-34 -6.325847848637299,0.061783158663303875,6.325847848637299,4.0575683007203767e-35,0.4840002314814815,4.0575683007203767e-35,0.06418582420380574,0.0,0.0,0.0,-0.0,10.385,1645.4708,8.1151366e-35 -5.7107016012480445,0.06879638615959813,5.7107016012480445,2.3892420601043725e-35,0.48167002314814816,2.3892420601043725e-35,0.0717381446634633,0.0,0.0,0.0,-0.0,12.23,1639.3613,4.778484e-35 -5.205949164312114,0.07386552150084467,5.205949164312114,1.3017011468259226e-35,0.4800005787037037,1.3017011468259226e-35,0.07728457390827044,0.0,0.0,0.0,-0.0,13.485000000000001,1633.8348,2.6034023e-35 -4.793474477109874,0.07596663890399538,4.793474477109874,0.01,0.4760001157407408,7.191310540177229e-36,0.07972349251763707,0.01,0.01,0.0,-0.0,14.125,1628.9052,1.4382621e-35 -4.51187618550004,0.059278784547643584,4.51187618550004,8.54,0.4760001157407408,1.3975933863435914e-36,0.06234874958254125,8.54,8.54,0.0,-0.0,10.19,1625.2896,2.7951868e-36 -4.313361836491776,0.052587544197231204,4.313361836491776,2.87,0.4719996527777777,-4.061896191969785e-36,0.055402577820879116,2.87,2.87,0.0,-0.0,8.475,1622.6024,-8.1237924e-36 -4.14505497466319,0.05337555474476465,4.14505497466319,1.04,0.4701513888888889,-7.604271807525676e-36,0.05631526724212305,1.04,1.04,0.0,-0.0,8.790000000000001,1620.2255,-1.5208544e-35 -3.962833992688905,0.04205351917229805,3.962833992688905,0.88,0.46799976851851854,-7.646645996889638e-36,0.04444330446634499,0.88,0.88,0.0,-0.0,5.23,1617.5406,-1.5293292e-35 -3.7657626080022713,0.033152291848702206,3.7657626080022713,-4.5684504870755586e-36,0.463999537037037,-4.5684504870755586e-36,0.035102352171689846,0.0,0.0,0.0,-0.0,1.8450000000000002,1614.4944,-9.1369015e-36 -3.59719979724162,0.034275628848402406,3.59719979724162,1.2,0.463999537037037,-2.3139929865012663e-36,0.03635334583101532,1.2,1.2,0.0,-0.0,2.36,1611.7595,-4.627986e-36 -3.4224782579758184,0.034637438089219034,3.4224782579758184,-1.234134184960268e-36,0.46,-1.234134184960268e-36,0.03680498815729995,0.0,0.0,0.0,-0.0,2.67,1608.786,-2.4682684e-36 -3.3043241424103846,0.0306908386817753,3.3043241424103846,-5.510411225672921e-37,0.45920532407407405,-5.510411225672921e-37,0.03265400414573176,0.0,0.0,0.0,-0.0,0.94,1606.6879,-1.1026108e-36 -3.277906674801834,0.04031255170305709,3.277906674801834,4.19,0.45599953703703705,-1.5785435222729452e-38,0.04290397897853337,4.19,4.19,0.0,-0.0,5.090000000000001,1606.2085,-3.157087e-38 -3.351436237580266,0.047317039519041655,3.351436237580266,5.88,0.45200810185185186,2.3030750561368723e-37,0.05031723643625769,5.88,5.88,0.0,-0.0,7.655,1607.5333,4.60615e-37 -3.4613555625979973,0.049614580129186785,3.4613555625979973,7.52,0.452,1.5621855767535266e-37,0.0526972775968711,7.52,7.52,0.0,-0.0,8.370000000000001,1609.4606,3.1243712e-37 -3.391412362366268,0.03887377795030475,3.391412362366268,8.257387179695377e-38,0.4480001157407407,8.257387179695377e-38,0.04132041721843591,0.0,0.0,0.0,-0.0,4.79,1608.2415,1.6514774e-37 -3.2855806427975898,0.03763174399366727,3.2855806427975898,1.18,0.4480001157407407,4.560152546234221e-38,0.04004735804168206,1.18,1.18,0.0,-0.0,4.319999999999999,1606.3481,9.120305e-38 -3.719495480470228,0.04127609987703994,3.719495480470228,16.6,0.4440001157407408,2.610851374322519e-38,0.04372400726313528,16.6,16.6,0.0,-0.0,5.779999999999999,1613.7561,5.221703e-38 -4.408496286004811,0.032916588889215566,4.408496286004811,12.74,0.44166932870370373,1.5115142315159267e-38,0.0346508052983805,12.74,12.74,0.0,-0.0,2.38,1623.9053,3.0230285e-38 -4.649389589596554,0.03565181251334129,4.649389589596554,4.19,0.4400003472222222,8.945237792463707e-39,0.0374568486072876,4.19,4.19,0.0,-0.0,3.59,1627.0825,1.7890476e-38 -4.6246513953793436,0.04646935852586326,4.6246513953793436,2.76,0.43611064814814815,5.296828321135342e-39,0.04883164422935117,2.76,2.76,0.0,-0.0,7.745,1626.7639,1.0593657e-38 -4.663895567882205,0.039062832223999866,4.663895567882205,6.1,0.43600011574074077,2.957118810959964e-39,0.041035874889893166,6.1,6.1,0.0,-0.0,5.095000000000001,1627.2686,5.914238e-39 -4.592416184700093,0.027926997238223217,4.592416184700093,1.6499999999183683,0.43200000000000005,-7.789217470491894e-16,0.029354213326177433,1.65,1.6499999999183692,8.163069387112642e-11,-0.0,0.28,1626.3462,-2.1070364e-15 -4.344401925786477,0.030076371579521765,4.344401925786477,0.5599999999999951,0.43194837962962956,-4.628410275541826e-15,0.03167801237503639,0.56,0.5599999999999997,4.0412118096355704e-16,-0.0,1.39,1623.0306,-9.25687e-15 -4.065490740588138,0.03381970949249887,4.065490740588138,1.269999999999996,0.428,-3.910905700985709e-15,0.035707873393921105,1.27,1.27,0.0,-0.0,3.2900000000000005,1619.068,-7.821811e-15 -3.738879735592957,0.032555225817921765,3.738879735592957,-2.2478672586036133e-15,0.4261517361111111,-2.2478672586036133e-15,0.034479303296236004,0.0,0.0,0.0,-0.0,2.835,1614.0665,-4.4957345e-15 -4.012981018821841,0.03680034119438225,4.012981018821841,16.44,0.42400011574074076,-1.3304404736038242e-15,0.03887355505070511,16.44,16.44,0.0,-0.0,4.7,1618.2916,-2.660881e-15 -5.008041844324597,0.036056620040360345,5.008041844324597,19.51,0.42121863425925926,-7.91975911561883e-16,0.03777911170587827,19.51,19.51,0.0,-0.0,4.37,1631.5203,-1.5839518e-15 -5.354220425531711,0.028407746894225167,5.354220425531711,0.41999999999979826,0.41999976851851856,-1.3559181588292283e-13,0.02969219237860924,0.42,0.41999999999993387,6.614375713809295e-14,-0.0,0.855,1635.512,-2.714879e-13 -4.92535463512578,0.02688018734231791,4.92535463512578,1.773114098703435e-13,0.4164640046296296,1.773114098703435e-13,0.028181477823762364,0.0,0.0,0.0,-0.0,0.21999999999999975,1630.526,5.8241796e-13 -4.548880044550491,0.02861043732658805,4.548880044550491,3.078180077264767e-13,0.4159996527777778,3.078180077264767e-13,0.03008310296605036,0.0,0.0,0.0,-0.0,1.1849999999999998,1625.7773,6.156615e-13 -4.207601356725466,0.022554852276300785,4.207601356725466,-5.833775522680871e-10,0.4121109953703704,-5.833775522680871e-10,0.02378395410880595,0.0,0.0,0.0,-0.0,-2.0599999999999996,1621.1199,2.9421837e-13 -3.8958509428605805,0.024984280142580955,3.8958509428605805,-0.0006548348914661871,0.41200046296296294,-0.0006548348914661871,0.026420696710659174,0.0,0.0,0.0,-0.0,-0.5549999999999997,1616.5226,-4.045892e-14 -3.6447234550758534,0.02901749419431399,3.6447234550758534,-1.5176771732449892e-13,0.4080084490740741,-1.5176771732449892e-13,0.03076151443667728,0.0,0.0,0.0,-0.0,1.795,1612.5433,-3.0353546e-13 -3.477844438573797,0.034719762135184816,3.477844438573797,1.2399999999997962,0.40794895833333333,-2.0375750240657468e-13,0.036870499678005174,1.24,1.24,0.0,-0.0,4.485,1609.7444,-4.07515e-13 -3.3821428585350177,0.037884028566477206,3.3821428585350177,3.4799999999998548,0.40399999999999997,-1.4538821806599586e-13,0.04027246800687117,3.48,3.48,0.0,-0.0,5.965000000000001,1608.078,-2.9077644e-13 -3.2050795680067345,0.038243955244256805,3.2050795680067345,-8.270590294430948e-14,0.4037145833333334,-8.270590294430948e-14,0.040736436603293694,0.0,0.0,0.0,-0.0,6.15,1604.8667,-1.654118e-13 -3.368048564387518,0.04844039816218536,3.368048564387518,12.769999999999952,0.40000023148148145,-4.826554669712652e-14,0.05150236258101004,12.77,12.77,0.0,-0.0,9.92,1607.8286,-9.6531093e-14 -3.773313592350522,0.039030715395884985,3.773313592350522,8.969999999999972,0.39971435185185183,-2.8218811158210748e-14,0.04132349019137459,8.97,8.97,0.0,-0.0,6.52,1614.614,-5.6437622e-14 -3.85134552487875,0.029576745579710923,3.85134552487875,-1.6776148204498184e-14,0.3960082175925926,-1.6776148204498184e-14,0.03129047762037158,0.0,0.0,0.0,-0.0,2.4850000000000003,1615.8364,-3.3552296e-14 -3.6971044782732396,0.03237462831141321,3.6971044782732396,2.25999999999999,0.39571446759259266,-9.745862835285147e-15,0.03430229271464406,2.26,2.26,0.0,-0.0,3.86,1613.3955,-1.9491726e-14 -3.543147656266877,0.025623079660626966,3.543147656266877,1.3467432894703343e-5,0.3921108796296296,1.3467432894703343e-5,0.027191551280110703,0.0,0.0,0.0,-0.0,0.5749999999999997,1610.8553,2.7428094e-5 -3.342959242205592,0.022000081452412317,3.342959242205592,-5.568707259765238e-8,0.3919487268518519,-5.568707259765238e-8,0.02339722585926523,0.0,0.0,0.0,-0.0,-1.58,1607.3821,7.014905e-5 -3.1644266412503375,0.01841911508953671,3.1644266412503375,0.0,0.3884644675925926,-0.0,0.019628871888218213,0.0,0.0,0.0,-0.0,-3.93,1604.1044,7.092365e-5 -3.004197053947535,0.019831832827696117,3.004197053947535,-2.927727564392068e-13,0.38799999999999996,-2.927727564392068e-13,0.02117533992888201,0.0,0.0,0.0,-0.0,-2.85,1601.0012,7.092387e-5 -2.8594706777665393,0.016522729675609114,2.8594706777665393,0.0,0.3848466435185185,-0.0,0.017674613479153802,0.0,0.0,0.0,-0.0,-5.255000000000001,1598.0526,7.092375e-5 -2.728116197939488,0.014578036441661458,2.728116197939488,0.0,0.3840003472222222,-0.0,0.01562179883986165,0.0,0.0,0.0,-0.0,-6.915,1595.2443,0.00014790837 -2.6082546438086136,0.01734540135373896,2.6082546438086136,1.4173210272083736e-10,0.38166932870370374,-0.0,0.018618619160700376,1.81,1.4173210272083736e-10,1.8099999998582679,-0.0,-4.42,1592.561,0.9066737 -2.703546447644852,0.02430460559562326,2.703546447644852,12.33162235168292,0.3799997685185186,0.5716223518414802,0.02605359758611699,11.76,11.75999999984144,1.5855999180303115e-10,-0.0,0.4099999999999999,1594.704,2.9308372 -3.1757597976587806,0.0259925677801457,3.1757597976587806,11.789647009278317,0.37920590277777777,1.4196470092783326,0.027696058306457435,10.37,10.369999999999985,1.4391265956703592e-14,-0.0,1.33,1604.3179,1.4196618 -3.5571820587489538,0.023177895477238565,3.5571820587489538,8.706856382726919,0.37611087962962964,-0.0131435062992717,0.02459308514337563,8.72,8.719999889026191,1.1097380952840297e-7,-0.0,-0.27499999999999997,1611.0914,0.7867287 -3.5566803934508258,0.017597604193141204,3.5566803934508258,4.483568011304229e-9,0.3759486111111111,-0.0,0.018672171563910166,4.7,4.483568011304229e-9,4.699999995516432,-0.0,-4.17,1611.083,3.8677905 -3.3558988630063866,0.014049061876706764,3.3558988630063866,0.0,0.37321898148148147,-0.0,0.01493912195809442,0.0,0.0,0.0,-0.0,-7.135,1607.6128,6.2160573 -3.1766492414872447,0.013122506024540605,3.1766492414872447,0.0,0.3719998842592593,-0.0,0.013982377829281993,0.0,0.0,0.0,-0.0,-7.984999999999999,1604.3346,6.232384 -3.0504699600150005,0.02762546138365307,3.0504699600150005,5.537434100860058,0.37120578703703705,5.537434100860058,0.029480139017596576,0.0,0.0,0.0,-0.0,2.56,1601.9141,5.537434 -3.135389034746986,0.03225174339141218,3.135389034746986,4.583766734264902,0.3684645833333333,2.0437667342649024,0.03438181921837257,2.54,2.54,0.0,-0.0,4.965,1603.5538,2.0437667 -3.1350493834456667,0.0313241722462742,3.1350493834456667,1.9704510407551075,0.3680003472222222,0.7504510407551074,0.03339312109408452,1.22,1.22,0.0,-0.0,4.545,1603.5474,0.75086254 -3.0596558662065227,0.035198405459439475,3.0596558662065227,1.4538863074088588,0.36615196759259255,0.26388630740885893,0.037557294326693184,1.19,1.19,0.0,-0.0,6.3999999999999995,1602.0936,0.27994248 -2.9512391479512683,0.031295093058752596,2.9512391479512683,0.36059428679732164,0.3644642361111111,0.09059428679732161,0.033437361448503816,0.27,0.27,0.0,-0.0,4.71,1599.9391,0.11833804 -2.816693770028858,0.030128021614788704,2.816693770028858,0.03765734942181585,0.36400011574074076,0.03765734942181585,0.03224656350081542,0.0,0.0,0.0,-0.0,4.1850000000000005,1597.1525,0.058612823 -2.990950151418845,0.02367920165704948,2.990950151418845,12.898285886922654,0.3621513888888889,0.018285886934923053,0.025287517183809144,12.88,12.879999999987731,1.2269119054053591e-11,-0.0,0.6750000000000003,1600.7373,0.031804573 -3.73939945638739,0.03458030982389478,3.73939945638739,20.639823983796525,0.3604638888888889,0.00982398379652649,0.03662388537678511,20.63,20.63,0.0,-0.0,6.255,1614.0748,0.018027415 -4.438279150408814,0.02944400737319833,4.438279150408814,8.79548586958606,0.3599998842592593,0.005485869586060301,0.03098759727688718,8.79,8.79,0.0,-0.0,3.7550000000000003,1624.3074,0.010428467 -4.432413431425018,0.02145631613453348,4.432413431425018,-5.446423145136671e-5,0.35920578703703704,-5.446423145136671e-5,0.022582252657969877,0.0,0.0,0.0,-0.0,-0.8400000000000001,1624.2284,0.006756964 -4.1278995462441905,0.01486169450745723,4.1278995462441905,0.0,0.3572189814814815,-0.0,0.01568261468814985,0.0,0.0,0.0,-0.0,-5.875,1619.9778,0.0069023483 -3.8600542547302217,0.012172479407484777,3.8600542547302217,0.0,0.35611041666666665,-0.0,0.0128767007368583,0.0,0.0,0.0,-0.0,-8.505,1615.9713,0.006900986 -3.6246417338218118,0.013687005134929358,3.6246417338218118,0.0,0.3559483796296296,-0.0,0.014512596159039262,0.0,0.0,0.0,-0.0,-6.885,1612.2134,0.0068966066 -3.4162647418272956,0.01639802880721832,3.4162647418272956,0.0,0.3546476851851852,-0.0,0.017425364088797312,0.0,0.0,0.0,-0.0,-4.32,1608.6775,0.006894703 -3.230447849081638,0.020292754542399868,3.230447849081638,-1.5268785330828914e-6,0.35321898148148145,-1.5268785330828914e-6,0.02160895901929299,0.0,0.0,0.0,-0.0,-1.23,1605.3375,0.0069012134 -3.086862451344982,0.02453385615806641,3.086862451344982,0.003477824860574062,0.35211030092592593,0.003477824860574062,0.026169403902343395,0.0,0.0,0.0,-0.0,1.5849999999999997,1602.6223,0.0067293216 -3.043183393955067,0.029131316868478786,3.043183393955067,3.02308472574148,0.35199988425925927,0.0030847257414800783,0.031089864302339256,3.02,3.02,0.0,-0.0,4.14,1601.7712,0.0059900987 -3.148586946212742,0.025331338351223177,3.148586946212742,8.402288906622323,0.35171423611111113,0.002288906622322371,0.027000130194587926,8.4,8.4,0.0,-0.0,2.06,1603.8047,0.004477586 -3.2749666176807204,0.0204534206233738,3.2749666176807204,3.53991204383504,0.3506474537037037,-1.047579931322819e-5,0.021768962023363838,3.54,3.5399225196343536,7.74803656463019e-5,-0.0,-1.02,1606.1549,0.0043589952 -3.194549291407733,0.01934078685900207,3.194549291407733,-1.0016931271201862e-8,0.34966921296296294,-1.0016931271201862e-8,0.020603811197525815,0.0,0.0,0.0,-0.0,-1.7650000000000001,1604.6702,0.0070648463 -3.088920089886625,0.020719137664061103,3.088920089886625,2.6798500379667076,0.3488465277777778,-0.00014673444464985153,0.022099828712455815,2.68,2.6799967724113576,3.2275886426025304e-6,-0.0,-0.7300000000000001,1602.6621,0.007956779 -3.384404242729421,0.022006926162944047,3.384404242729421,14.56992138430052,0.3481105324074074,-0.03007861212186345,0.023393795858803704,14.6,14.599999996422383,3.577615437233561e-9,-0.0,0.12,1608.1179,0.021713043 -3.8643172649747326,0.02267317808528786,3.8643172649747326,8.608732896575052,0.3480079861111111,0.008732896629824675,0.02398392392747516,8.6,8.599999999945227,5.4772586466356185e-11,-0.0,0.485,1616.0372,0.01684331 -4.044685986182775,0.022833080616098678,4.044685986182775,4.785139072565776,0.34794849537037037,0.005139072579454565,0.024112421029528774,4.78,4.779999999986321,1.3679243293651668e-11,-0.0,0.565,1618.7616,0.009989229 -3.939638388906725,0.020109919083610248,3.939638388906725,0.15996697276068506,0.34771435185185184,-1.4277570023612759e-6,0.021257317531579344,0.16,0.1599684005176874,3.159948231261645e-5,-0.0,-1.24,1617.1901,0.012319478 -3.696749314858562,0.015882279214323124,3.696749314858562,0.0,0.3472057870370371,-0.0,0.016828008732003265,0.0,0.0,0.0,-0.0,-4.51,1613.3898,0.058003046 -3.4803405419897535,0.016429690482018075,3.4803405419897535,1.3529307532067491e-8,0.3466476851851852,-0.0,0.017446973624154125,2.23,1.3529307532067491e-8,2.2299999864706925,-0.0,-3.985,1609.7872,1.1755526 -3.2877640224378846,0.017777806322825558,3.2877640224378846,0.0007470630642557201,0.3466476851851852,-5.853379407369815e-13,0.01891851177669169,1.45,0.000747063064841058,1.449252936935159,-0.0,-2.8499999999999996,1606.3878,3.0190475 -3.1154633775037475,0.011897026066714703,3.1154633775037475,0.0,0.3461518518518519,-0.0,0.012685780662111153,0.0,0.0,0.0,-0.0,-8.325000000000001,1603.1731,3.7458277 -2.9604832475414664,0.009106562348028008,2.9604832475414664,0.0,0.3461518518518519,-0.0,0.00972880556296064,0.0,0.0,0.0,-0.0,-11.829999999999998,1600.1259,3.7517605 -2.820207996549729,0.01039803457838737,2.820207996549729,0.0,0.3456693287037037,-0.0,0.011128684612599625,3.37,0.0,3.37,-0.0,-10.05,1597.2269,5.4425178 -2.6924781662449164,0.014850348215366339,2.6924781662449164,4.2404357802894307e-13,0.3456693287037037,-0.0,0.015921445193709065,15.37,4.2404357802894307e-13,15.369999999999576,-0.0,-5.215,1594.459,14.840804 -2.575756131212824,0.012160475059010677,2.575756131212824,0.0,0.3461518518518519,-0.0,0.013059239844862104,0.0,0.0,0.0,-0.0,-7.9350000000000005,1591.8123,22.442757 -2.468833188191609,0.008965132168066584,2.468833188191609,0.0,0.3461518518518519,-0.0,0.009643071893470492,0.0,0.0,0.0,-0.0,-11.945,1589.2803,22.450853 -2.3705315388107646,0.00602409291941507,2.3705315388107646,0.0,0.3461518518518519,-0.0,0.006489540660633142,0.0,0.0,0.0,-0.0,-16.97,1586.8538,22.450853 -2.279808459103384,0.0056162949341232345,2.279808459103384,0.0,0.3466476851851852,-0.0,0.006059132828867293,0.0,0.0,0.0,-0.0,-17.835,1584.5233,22.450853 -2.195732784164348,0.007994715357926252,2.195732784164348,0.0,0.3472057870370371,-0.0,0.008637321019992063,0.0,0.0,0.0,-0.0,-13.405,1582.2793,22.423473 -2.1175562900833875,0.010176431218322709,2.1175562900833875,0.0,0.34771435185185184,-0.0,0.011009464887453664,0.73,0.0,0.73,-0.0,-10.27,1580.1143,22.772757 -2.0447779404917554,0.006102290743487816,2.0447779404917554,0.0,0.34794849537037037,-0.0,0.006610556823899212,0.0,0.0,0.0,-0.0,-16.805,1578.0256,23.113405 -1.9768754830923034,0.00681252266719927,1.9768754830923034,0.0,0.34800000000000003,-0.0,0.00738938893881964,1.95,0.0,1.95,-0.0,-15.415,1576.0088,24.092793 -1.9133073691052114,0.007472623614413706,1.9133073691052114,0.0,0.3480079861111111,-0.0,0.008115436533610841,3.54,0.0,3.54,-0.0,-14.23,1574.0569,26.826786 -1.8537147597761823,0.005511248008901495,1.8537147597761823,0.0,0.3484641203703704,-0.0,0.005992532726491177,0.0,0.0,0.0,-0.0,-18.035,1572.1672,28.538078 -1.7977301907409597,0.006336947289609102,1.7977301907409597,0.0,0.34921886574074074,-0.0,0.006898374372702268,0.0,0.0,0.0,-0.0,-16.32,1570.3358,28.498917 -1.7449231051910383,0.012893735067435755,1.7449231051910383,0.0,0.35015162037037034,-0.0,0.0140519989736477,3.98,0.0,3.98,-0.0,-7.1,1568.5553,30.49543 -1.6949797690854669,0.01641760152376321,1.6949797690854669,2.889996382604565e-7,0.35120578703703703,-0.0,0.017912224153254972,7.49,2.889996382604565e-7,7.489999711000362,-0.0,-3.8000000000000003,1566.821,36.22869 -1.647775593316821,0.014644154841599791,1.647775593316821,1.7795764861716636e-14,0.3519482638888889,-0.0,0.01599454574710603,4.11,1.7795764861716636e-14,4.109999999999983,-0.0,-5.4,1565.1343,42.065296 -1.6031471350299196,0.014341706680051223,1.6031471350299196,9.46465128492946e-16,0.35200787037037035,-0.0,0.015680636133303186,3.41,9.46465128492946e-16,3.4099999999999993,-0.0,-5.675,1563.4945,45.829807 -1.5609776507881323,0.006812984792125814,1.5609776507881323,0.0,0.35284641203703704,-0.0,0.007456631411089337,0.0,0.0,0.0,-0.0,-15.475000000000001,1561.9026,47.509373 -1.520998942144756,0.010864904784382262,1.520998942144756,0.0,0.3541518518518519,-0.0,0.011903158696839217,1.43,0.0,1.43,-0.0,-9.48,1560.3531,48.18171 -1.4829562586798473,0.011188767287122951,1.4829562586798473,0.0,0.35571446759259256,-0.0,0.01226986471445386,1.85,0.0,1.85,-0.0,-9.135,1558.8405,49.78222 -1.4467519792042347,0.011579387718688291,1.4467519792042347,0.0,0.35600000000000004,-0.0,0.012710263659784556,2.73,0.0,2.73,-0.0,-8.675,1557.3644,52.041306 -1.4122540471979774,0.012474162016170935,1.4122540471979774,0.0,0.3564643518518519,-0.0,0.013705107739789422,0.0,0.0,0.0,-0.0,-7.68,1555.9231,53.43462 -1.379308743258892,0.015604119894273417,1.379308743258892,8.696666886631732e-11,0.35815185185185183,-0.0,0.017159475213747923,13.53,8.696666886631732e-11,13.529999999913032,-0.0,-4.67,1554.5134,60.257652 -1.3478178120239224,0.01623679259828961,1.3478178120239224,0.0,0.3599482638888889,-0.0,0.017871066617893044,0.0,0.0,0.0,-0.0,-4.175,1553.1342,66.99915 -1.3178133193424304,0.008069680838128306,1.3178133193424304,0.0,0.36000787037037035,-0.0,0.008889609872788744,0.0,0.0,0.0,-0.0,-13.5,1551.7897,67.01252 -1.2892249602949795,0.0048374886199965186,1.2892249602949795,0.0,0.36121863425925926,-0.0,0.005333508953113487,0.0,0.0,0.0,-0.0,-19.89,1550.4799,67.01252 -1.2618911532022639,0.003773607076345859,1.2618911532022639,0.0,0.3637142361111111,-0.0,0.004163977458018692,0.0,0.0,0.0,-0.0,-22.915,1549.2001,67.1005 -1.2356999999712222,0.004037335350279622,1.2356999999712222,0.0,0.36400011574074076,-0.0,0.0044585926475177225,9.01,0.0,9.01,-0.0,-22.12,1547.9475,71.947914 -1.2105373394180237,0.007208687228164727,1.2105373394180237,0.0,0.36521898148148146,-0.0,0.007967168441787667,8.6,0.0,8.6,-0.0,-15.075,1546.7189,80.8096 -1.1863622676119927,0.005250479922911276,1.1863622676119927,0.0,0.36771435185185186,-0.0,0.005807446459985601,0.0,0.0,0.0,-0.0,-19.075,1545.5142,85.02502 -1.1631644111619264,0.004203417554086079,1.1631644111619264,0.0,0.3680083333333333,-0.0,0.004652863004597907,0.0,0.0,0.0,-0.0,-21.744999999999997,1544.3348,85.04747 -1.1408631486618719,0.004197919959492175,1.1408631486618719,0.0,0.3696696759259259,-0.0,0.00465025888704921,0.0,0.0,0.0,-0.0,-21.805,1543.1787,85.23865 -1.119385232485832,0.005316474069047182,1.119385232485832,0.0,0.3719483796296296,-0.0,0.0058936754849346525,4.55,0.0,4.55,-0.0,-19.035,1542.0437,87.84873 -1.0986956210547283,0.0051980845318597415,1.0986956210547283,0.0,0.37211041666666667,-0.0,0.005766598979759934,5.25,0.0,5.25,-0.0,-19.305,1540.9296,92.607925 -1.0787610018905165,0.004554034833557909,1.0787610018905165,0.0,0.3746479166666667,-0.0,0.005055697300069482,0.0,0.0,0.0,-0.0,-20.97,1539.836,95.09368 -1.0595258718812288,0.006223440274713125,1.0595258718812288,0.0,0.3760002314814815,-0.0,0.006913825086198562,2.45,0.0,2.45,-0.0,-17.21,1538.7616,96.427376 -1.0409358105690896,0.007959583423549793,1.0409358105690896,0.0,0.3772188657407407,-0.0,0.008848642794086866,7.09,0.0,7.09,-0.0,-14.155000000000001,1537.7045,101.27738 -1.022937436895998,0.011942760905557613,1.022937436895998,0.0,0.3799997685185186,-0.0,0.013285727762925565,11.53,0.0,11.53,-0.0,-8.955,1536.6628,110.340256 -1.0055359192913926,0.00971726738991822,1.0055359192913926,0.0,0.3804640046296296,-0.0,0.010817189851662664,3.31,0.0,3.31,-0.0,-11.68,1535.6382,117.320885 -0.9887476769197459,0.006978387280161366,0.9887476769197459,0.0,0.383714699074074,-0.0,0.007773378657578066,2.28,0.0,2.28,-0.0,-16.005,1534.6327,120.0453 -0.9725199772660119,0.008018162952256231,0.9725199772660119,0.0,0.38400833333333334,-0.0,0.008937363118045574,0.0,0.0,0.0,-0.0,-14.254999999999999,1533.6444,121.03163 -0.9567952265898363,0.009807011941119576,0.9567952265898363,0.0,0.3866476851851852,-0.0,0.010938228555180615,0.0,0.0,0.0,-0.0,-11.745,1532.6709,121.1256 -0.9415402551526835,0.011933499113508318,0.9415402551526835,0.0,0.38799999999999996,-0.0,0.013318341850193505,6.47,0.0,6.47,-0.0,-9.200000000000001,1531.711,124.59693 -0.9267217002875815,0.014912648683741658,0.9267217002875815,0.0,0.3901519675925926,-0.0,0.016653512245964196,9.35,0.0,9.35,-0.0,-6.26,1530.7637,132.1134 -0.9123564000843855,0.012436248442495208,0.9123564000843855,0.0,0.39200034722222227,-0.0,0.013896493282188283,1.07,0.0,1.07,-0.0,-8.77,1529.8307,136.77142 -0.8984690175239943,0.008775975171514294,0.8984690175239943,0.0,0.3936696759259259,-0.0,0.009812311759904302,0.0,0.0,0.0,-0.0,-13.38,1528.9147,137.452 -0.8850263550622166,0.005634185141603749,0.8850263550622166,0.0,0.39600023148148145,-0.0,0.006303225822858535,0.0,0.0,0.0,-0.0,-18.98,1528.0144,137.65793 -0.8719933329222445,0.005867820417805304,0.8719933329222445,0.0,0.3972188657407407,-0.0,0.00656841306155593,0.0,0.0,0.0,-0.0,-18.515,1527.1284,137.76314 -0.8593454342307784,0.00695910400386192,0.8593454342307784,0.0,0.40000023148148145,-0.0,0.007794444765508642,0.0,0.0,0.0,-0.0,-16.49,1526.2559,137.81366 -0.8470593058752643,0.008316095610716478,0.8470593058752643,0.0,0.4012189814814815,-0.0,0.009319574994021525,0.22,0.0,0.22,-0.0,-14.28,1525.3959,137.85556 -0.8351126895746045,0.006754768250533864,0.8351126895746045,0.0,0.40399999999999997,-0.0,0.00757405864758416,0.0,0.0,0.0,-0.0,-16.97,1524.5476,137.91945 -0.8234793086386063,0.00990801269713029,0.8234793086386063,0.0,0.40521898148148144,-0.0,0.011115870626957052,0.0,0.0,0.0,-0.0,-12.145,1523.7098,137.92479 -0.812168998690181,0.0068638369210572035,0.812168998690181,0.0,0.4080003472222223,-0.0,0.0077047643251657106,0.0,0.0,0.0,-0.0,-16.88,1522.8839,137.88333 -0.801174505375663,0.007677832566046679,0.801174505375663,0.0,0.40966990740740744,-0.0,0.008623096122063235,6.55,0.0,6.55,-0.0,-15.525,1522.07,141.10115 -0.7904645573470367,0.00797291833444587,0.7904645573470367,0.0,0.41200046296296294,-0.0,0.008959242473007502,4.24,0.0,4.24,-0.0,-15.115,1521.2662,146.32388 -0.7800396694648386,0.007163553941953026,0.7800396694648386,0.0,0.41464768518518513,-0.0,0.008053949700043696,0.36,0.0,0.36,-0.0,-16.53,1520.4734,148.6371 -0.769871856242201,0.01019576117540467,0.769871856242201,0.0,0.4159996527777778,-0.0,0.011468956379020137,27.34,0.0,27.34,-0.0,-12.08,1519.6898,162.64864 -0.7599204544286207,0.013958788982277901,0.7599204544286207,0.0,0.419205324074074,-0.0,0.015709924180762624,18.59,0.0,18.59,-0.0,-8.025,1518.9128,185.6968 -0.7502126859984959,0.011680660185628978,0.7502126859984959,0.0,0.41999976851851856,-0.0,0.013152652058866357,3.69,0.0,3.69,-0.0,-10.415000000000001,1518.145,197.02011 -0.7407757920459113,0.009351631116617612,0.7407757920459113,0.0,0.42400011574074076,-0.0,0.010535365960389483,1.35,0.0,1.35,-0.0,-13.419999999999998,1517.389,199.85834 -0.7316071325673706,0.004597985031059085,0.7316071325673706,0.0,0.42400011574074076,-0.0,0.005182540931898226,0.0,0.0,0.0,-0.0,-22.145000000000003,1516.6453,200.66357 -0.722664209601791,0.00741062656338135,0.722664209601791,0.0,0.428,-0.0,0.008356809309576935,0.0,0.0,0.0,-0.0,-16.465,1515.9108,200.9328 -0.7139283682667954,0.00845352914304938,0.7139283682667954,0.0,0.42846388888888887,-0.0,0.009537438511842107,0.0,0.0,0.0,-0.0,-14.82,1515.1844,200.94356 -0.7053932849664959,0.008931991805138382,0.7053932849664959,0.0,0.43200000000000005,-0.0,0.010082028844918845,0.0,0.0,0.0,-0.0,-14.22,1514.4662,200.90906 -0.69707279309016,0.006145300585197265,0.69707279309016,0.0,0.4336695601851852,-0.0,0.006939784807970932,0.0,0.0,0.0,-0.0,-18.915,1513.7576,200.9291 -0.6889194432036263,0.01371633383583,0.6889194432036263,0.0,0.43600011574074077,-0.0,0.015496818701520854,4.61,0.0,4.61,-0.0,-8.735,1513.0549,203.43301 -0.6808614594180668,0.026021102898738328,0.6808614594180668,-0.06445264410500406,0.4399488425925926,-0.07445264409981651,0.029412499403781128,0.01,0.009999999994812457,5.187542617690611e-12,-0.0,0.04499999999999993,1512.3523,205.88133 -0.6729761303687684,0.01881038280556735,0.6729761303687684,0.0,0.4400003472222222,-0.0,0.0212717727945013,0.0,0.0,0.0,-0.0,-4.545,1511.6566,206.03853 -0.6652881863449486,0.015296583678796709,0.6652881863449486,0.0,0.4440001157407408,-0.0,0.01730603884814843,0.0,0.0,0.0,-0.0,-7.494999999999999,1510.9705,206.01689 -0.6591226978473598,0.026943948324970147,0.6591226978473598,0.6451337818600958,0.4440081018518519,0.6451337818600958,0.030494696274201108,0.0,0.0,0.0,-0.0,0.43500000000000005,1510.4144,205.9273 -0.8039468911607633,0.04058682155299837,0.8039468911607633,23.92277095698975,0.4480001157407407,16.312770956989752,0.045577528645118784,7.61,7.61,0.0,-0.0,6.2749999999999995,1522.2762,197.23642 -1.0315420377275428,0.027886939807417067,1.0315420377275428,7.936703622478952,0.4501516203703704,0.776703622526892,0.031012738247846127,7.16,7.15999999995206,4.793961894122845e-11,-0.0,0.48,1537.1631,188.84482 -1.0717498352989154,0.02435824103835846,1.0717498352989154,-1.5484250722793349e-7,0.452,-1.5484250722793349e-7,0.02704833149392298,0.0,0.0,0.0,-0.0,-1.5450000000000002,1539.4467,188.75797 -1.112423783336364,0.02787619667442921,1.112423783336364,6.743472072984736,0.45599953703703705,0.12347207344949786,0.030910140395907768,6.62,6.6199999995352385,4.6476193338307324e-10,-0.0,0.24499999999999988,1541.6711,188.76462 -1.2599735703156771,0.027606820136664312,1.2599735703156771,10.725979813344548,0.45599953703703705,-0.07402018046368243,0.030464463808794154,10.8,10.79999999380823,6.1917708960024246e-9,-0.0,0.03500000000000003,1549.1093,188.80917 -1.4238249154319802,0.025982825384090046,1.4238249154319802,6.659820192999176,0.46,-1.8708656424770247e-5,0.02853786317703013,6.66,6.6598389016556006,0.00016109834439984928,-0.0,-1.03,1556.4104,188.82452 -1.4725624170108982,0.023828050039327482,1.4725624170108982,0.30791169322681916,0.4604638888888889,-1.2296855588927268e-10,0.02613744169432148,2.63,0.30791169334978774,2.3220883066502123,-0.0,-2.295,1558.4204,189.84497 -1.4448044833911122,0.023968089700797165,1.4448044833911122,0.1454639576527237,0.463999537037037,-1.0648227091562149e-10,0.026310240549131045,1.42,0.14546395775920598,1.2745360422407939,-0.0,-2.31,1557.2839,191.53902 -1.409341483146466,0.022202262701015937,1.409341483146466,-1.089969368980342e-15,0.46799976851851854,-1.089969368980342e-15,0.024395106888317687,0.0,0.0,0.0,-0.0,-3.495,1555.7998,192.19974 -1.376312200767835,0.02341460892979509,1.376312200767835,-1.778727537311889e-12,0.46799976851851854,-1.778727537311889e-12,0.02575063360502015,0.0,0.0,0.0,-0.0,-2.735,1554.3835,192.22131 -1.3971084797845499,0.029250098906991755,1.3971084797845499,5.048343400273824,0.4719996527777777,0.29834340043942403,0.0321497931538084,4.75,4.7499999998344,1.656000475636077e-10,-0.0,0.31499999999999995,1555.2792,192.46317 -1.3986228454915348,0.020397846306885757,1.3986228454915348,4.2203740502344544e-12,0.4719996527777777,-0.0,0.022419044224071493,2.18,4.2203740502344544e-12,2.1799999999957795,-0.0,-4.79,1555.3439,194.39714 -1.3662217154493406,0.013279956922308492,1.3662217154493406,0.0,0.4760001157407408,-0.0,0.014608999615497881,0.0,0.0,0.0,-0.0,-10.68,1553.9441,195.64903 -1.335329781263242,0.017036284450935642,1.335329781263242,0.0,0.4800005787037037,-0.0,0.018757743234055668,12.3,0.0,12.3,-0.0,-7.46,1552.5782,196.57108 -1.3057981213853347,0.01724316656706664,1.3057981213853347,0.0,0.4800005787037037,-0.0,0.019001876032521212,8.01,0.0,8.01,-0.0,-7.285,1551.2427,197.63336 -1.2775252538655069,0.011541106837965609,1.2775252538655069,0.0,0.4840002314814815,-0.0,0.012728963990185757,0.0,0.0,0.0,-0.0,-12.69,1549.9354,198.8601 -1.2504113857352275,0.018559105897348962,1.2504113857352275,0.0,0.4840002314814815,-0.0,0.020486217013567246,0.0,0.0,0.0,-0.0,-6.375,1548.6543,200.27557 -1.2243709041931226,0.029953627386256242,1.2243709041931226,2.614574173498632,0.48800034722222224,0.1345741736642512,0.03309076017458295,2.48,2.479999999834381,1.6561886972965566e-10,-0.0,0.25,1547.3975,201.90396 -1.1993359718916528,0.02104524981443038,1.1993359718916528,1.7530976670343534e-12,0.4919994212962963,-0.0,0.02326793352802848,1.65,1.7530976670343534e-12,1.6499999999982469,-0.0,-4.8500000000000005,1546.1637,203.66187 -1.1754134280863242,0.012439716910130788,1.1754134280863242,0.0,0.4919994212962963,-0.0,0.013764243030466028,0.0,0.0,0.0,-0.0,-11.89,1544.9604,204.32042 -1.1524744202551416,0.013534371267849956,1.1524744202551416,0.0,0.4959997685185185,-0.0,0.014986868842197618,0.0,0.0,0.0,-0.0,-10.885,1543.7834,204.35051 -1.1303365272038834,0.02023066226022606,1.1303365272038834,0.0,0.4959997685185185,-0.0,0.022418621314214487,0.0,0.0,0.0,-0.0,-5.475,1542.6251,204.35051 -1.1047940515323,0.02840995564666435,1.1047940515323,-0.00014437232564342307,0.4999997685185186,-0.00014437232564342307,0.03151039244621264,0.0,0.0,0.0,-0.0,-0.8049999999999997,1541.2601,204.57173 -1.1085694967716284,0.03419435892860536,1.1085694967716284,4.250555119943458,0.503999537037037,4.250555119943458,0.03792104684751448,0.0,0.0,0.0,-0.0,1.7649999999999997,1541.4639,203.23512 -1.219759692124707,0.03884485993462445,1.219759692124707,9.144980044349742,0.503999537037037,9.144980044349742,0.0429194482435864,0.0,0.0,0.0,-0.0,3.5949999999999998,1547.1721,196.33588 -1.4009232440111679,0.04041835967748391,1.4009232440111679,10.201426839309756,0.5079996527777778,10.201426839309756,0.044420563043466726,0.0,0.0,0.0,-0.0,3.99,1555.442,186.7208 -1.4848398431825125,0.031207702415784504,1.4848398431825125,-0.024868356366893937,0.5079996527777778,-0.024868356366893937,0.0342214344826486,0.0,0.0,0.0,-0.0,0.1549999999999998,1558.9163,181.75238 -1.5740533651514101,0.03971629773028228,1.5740533651514101,11.251252601949734,0.511999537037037,9.011252601949733,0.043454576127794214,2.24,2.24,0.0,-0.0,3.545,1562.4008,177.60078 -1.7429019614012622,0.0389183519573803,1.7429019614012622,7.740841899147671,0.5159998842592592,7.740841899147671,0.042416318588041305,0.0,0.0,0.0,-0.0,3.0700000000000003,1568.4861,170.19356 -2.025525914050335,0.0403581739207498,2.025525914050335,13.587761624989728,0.5159998842592592,8.957761624989727,0.04373530525644236,4.63,4.63,0.0,-0.0,3.525,1577.4607,161.70221 -2.512564522649932,0.0426847222125805,2.512564522649932,17.662490933789755,0.520000462962963,10.562490933789755,0.04588225147143535,7.1,7.1,0.0,-0.0,4.125,1590.3289,152.16127 -3.000981049471653,0.038806460809971556,3.000981049471653,9.790549428895268,0.520000462962963,6.510549428895269,0.041437059223886775,3.28,3.28,0.0,-0.0,2.61,1600.9373,143.76399 -3.270016680512929,0.0387284012187106,3.270016680512929,6.762385146874222,0.5240002314814816,6.002385146874222,0.04122168752063606,0.76,0.76,0.0,-0.0,2.42,1606.0646,137.48434 -3.4416861406076324,0.039524478755173606,3.4416861406076324,6.430312963397127,0.5279998842592593,6.430312963397127,0.04198912792329852,0.0,0.0,0.0,-0.0,2.58,1609.1202,131.3918 -3.706828027915076,0.04289861128586537,3.706828027915076,9.572907860029753,0.5279998842592593,9.572907860029753,0.04544848065530494,0.0,0.0,0.0,-0.0,3.755,1613.5524,123.3557 -4.211628320138811,0.04693738734002234,4.211628320138811,13.638757267949753,0.5319998842592593,12.688757267949754,0.049493444396914006,0.95,0.95,0.0,-0.0,4.92,1621.177,112.20708 -5.2114429052703235,0.046867868591655905,5.2114429052703235,21.914320429229754,0.5319998842592593,12.314320429229754,0.049035375947225644,9.6,9.6,0.0,-0.0,4.78,1633.8978,99.79481 -6.384628829969444,0.043203856656849546,6.384628829969444,14.532970088109602,0.5359994212962963,8.462970088109602,0.04486893559610236,6.07,6.07,0.0,-0.0,3.34,1646.0232,89.45195 -6.612115727048424,0.038109063639877136,6.612115727048424,3.2074617482481464,0.5395353009259259,3.2074617482481464,0.039527580052173474,0.0,0.0,0.0,-0.0,1.3749999999999998,1648.114,83.67898 -6.311034178944296,0.038548981099178634,6.311034178944296,3.6888966200732263,0.54,3.6888966200732263,0.040051508143286126,0.0,0.0,0.0,-0.0,1.5550000000000006,1645.3308,80.16735 -6.6032150530701585,0.041622311917793864,6.6032150530701585,14.230076497879658,0.5439997685185185,6.350076497879659,0.04317370768503735,7.88,7.88,0.0,-0.0,2.5500000000000003,1648.0336,75.10216 -8.387993878102403,0.05388861538717951,8.387993878102403,28.876261933949756,0.5439997685185185,16.366261933949755,0.05541677638542772,12.51,12.51,0.0,-0.0,6.295,1662.3213,63.665615 -10.101050373579376,0.041125504028420204,10.101050373579376,12.146056545772758,0.5479999999999999,4.986056545772758,0.042011249134059334,7.16,7.16,0.0,-0.0,2.04,1673.4196,52.949757 -9.225203095938456,0.028724016261809496,9.225203095938456,-4.3059231811103483e-14,0.5498481481481481,-4.3059231811103483e-14,0.029437949490285806,0.0,0.0,0.0,-0.0,-3.12,1668.0029,52.090187 -8.17893192658871,0.031901534797563545,8.17893192658871,5.535975720299032,0.5520004629629629,-6.945121823673111e-8,0.03283596550215148,5.59,5.53597578975025,0.05402421024975077,-0.0,-1.6300000000000001,1660.814,53.41015 -7.402414723085963,0.029520653427500446,7.402414723085963,0.002219128239054106,0.5559922453703704,-1.1514914295946003e-12,0.03049473118473861,2.14,0.002219128240205597,2.1377808717597944,-0.0,-2.7800000000000002,1654.8566,55.34504 -6.584009471421743,0.03055229170480457,6.584009471421743,0.009729872192650523,0.5560002314814815,-2.186218349706611e-10,0.03169441800843976,0.05,0.009729872411272357,0.040270127588727646,-0.0,-2.2350000000000003,1647.8596,56.429924 -6.2787765759732554,0.04148189862707993,6.2787765759732554,9.896529493966453,0.56,5.146529493966453,0.04310676008138198,4.75,4.75,0.0,-0.0,2.1,1645.0248,55.27633 -7.107919407862206,0.041601747881278586,7.107919407862206,19.389665766718267,0.5600517361111111,5.079665766718265,0.04303751114182031,14.31,14.31,0.0,-0.0,2.075,1652.4321,50.40428 -7.219422334371353,0.03252859147693938,7.219422334371353,-9.664569403604574e-8,0.5639996527777777,-9.664569403604574e-8,0.033632301506188636,0.0,0.0,0.0,-0.0,-1.5949999999999998,1653.3617,49.121136 -6.441243214848621,0.03140392487999762,6.441243214848621,-8.350698506458307e-10,0.5663305555555556,-8.350698506458307e-10,0.032603790816250776,0.0,0.0,0.0,-0.0,-2.095,1646.5504,49.12131 -5.904513049925893,0.04144128517512431,5.904513049925893,4.638365099147751,0.5679997685185185,4.638365099147751,0.043160853889617774,0.0,0.0,0.0,-0.0,1.9099999999999997,1641.3545,48.154453 -6.196628759142806,0.050703168288702,6.196628759142806,13.101065917709754,0.5715351851851852,12.341065917709754,0.05271443349477747,0.76,0.76,0.0,-0.0,4.79,1644.2383,39.632713 -6.626674336581325,0.04624556362465089,6.626674336581325,8.529833809309633,0.5719994212962963,8.529833809309633,0.04796311883404409,0.0,0.0,0.0,-0.0,3.3649999999999993,1648.2454,29.25217 -7.262240208184125,0.04470421357341427,7.262240208184125,16.008004313802928,0.5760005787037037,6.778004313802929,0.04621117757925763,9.23,9.23,0.0,-0.0,2.71,1653.7148,21.552588 -8.601608441104926,0.04097425005136236,8.601608441104926,20.073845040898124,0.5760005787037037,3.113845040898144,0.042098154686498364,16.96,16.95999999999998,2.071232074740692e-14,-0.0,1.34,1663.8231,16.610922 -11.133518839562099,0.042286471128987514,11.133518839562099,30.36564244296946,0.5800003472222222,3.7156424429694654,0.043047710191388984,26.65,26.649999999999995,2.958744360626042e-15,-0.0,1.5650000000000002,1679.2316,13.203273 -12.071743642932617,0.03811959410508548,12.071743642932617,4.311863604031706,0.5807946759259259,-0.06813639222216222,0.03869448251839491,4.38,4.3799999962538685,3.746131564952293e-9,-0.0,-0.004999999999999893,1684.0634,11.617168 -10.58941278332631,0.0419393661081824,10.58941278332631,3.1940880731198944,0.5840005787037037,3.1940880731198944,0.04277057169589902,0.0,0.0,0.0,-0.0,1.3699999999999997,1676.2393,10.243815 -9.829943991237121,0.04438112808103763,9.829943991237121,8.237357137281018,0.5853530092592593,5.427357137281018,0.04538105290500908,2.81,2.81,0.0,-0.0,2.205,1671.7948,5.9355807 -9.355012225337175,0.04344091548461538,9.355012225337175,5.333641544471138,0.5880002314814815,2.1936415444711375,0.04449837436083753,3.14,3.14,0.0,-0.0,1.85,1668.8374,2.1936417 -8.537096934061774,0.05349273357796454,8.537096934061774,2.015722677689078,0.5903311342592593,0.805722677689078,0.05497486926694552,1.21,1.21,0.0,-0.0,4.935,1663.3735,0.8059773 -7.667576167064336,0.05791965038208937,7.667576167064336,1.535202705755773,0.5920008101851852,0.28520270575577295,0.0597549014403974,1.25,1.25,0.0,-0.0,6.155,1656.9584,0.29947662 -7.173512980975405,0.04613758425353714,7.173512980975405,5.327193430369566,0.5943310185185184,0.09719343036956549,0.047714048320488985,5.23,5.23,0.0,-0.0,2.72,1652.9807,0.12503114 -6.834172380343833,0.05227340165449181,6.834172380343833,3.0398208114368015,0.5959997685185184,0.03982081143680161,0.05415433254425422,3.0,3.0,0.0,-0.0,4.565,1650.0867,0.061376233 -6.275325159087911,0.04910074045224349,6.275325159087911,0.019280600129276633,0.5987809027777777,0.019280600129276633,0.05102505331383656,0.0,0.0,0.0,-0.0,3.605,1644.992,0.03312462 -5.677159182496014,0.06350095420725964,5.677159182496014,0.010248258109592264,0.5999998842592592,0.010248258109592264,0.06623049116535926,0.0,0.0,0.0,-0.0,7.5249999999999995,1639.0095,0.018744804 -5.2625141296080615,0.08340364860746717,5.2625141296080615,1.9057089004122054,0.6027810185185185,0.005708900412205575,0.08722974047440574,1.9,1.9,0.0,-0.0,11.77,1634.4802,0.010831741 -4.867466368073478,0.07099650005834493,4.867466368073478,0.0032438345569203737,0.6039996527777778,0.0032438345569203737,0.07446574041968476,0.0,0.0,0.0,-0.0,9.24,1629.82,0.006289919 -4.837937241464213,0.0857831419053894,4.837937241464213,9.251891546867672,0.6063304398148148,0.00189154686767245,0.0899949970830786,9.25,9.25,0.0,-0.0,12.174999999999999,1629.4565,0.003714128 -4.952521259307165,0.09717890011866298,4.952521259307165,3.2211233963325667,0.6079995370370371,0.001123396332566507,0.10186288355536134,3.22,3.22,0.0,-0.0,14.129999999999999,1630.8545,0.002222105 -4.922788059828475,0.06907190003061038,4.922788059828475,5.870669296258391,0.6098476851851852,0.0006692962583908643,0.07241710617198072,5.87,5.87,0.0,-0.0,8.655,1630.4949,0.0013297515 -5.0124455347370045,0.04894614841730954,5.0124455347370045,7.650395411643399,0.6120002314814815,0.00039541164339850805,0.05128274687933553,7.65,7.65,0.0,-0.0,3.355,1631.5728,0.0007877208 -5.666365811903538,0.04845186246975357,5.666365811903538,18.020236249759023,0.6133524305555556,0.00023624975902187102,0.05053803070041829,18.02,18.02,0.0,-0.0,3.105,1638.8959,0.00047138848 -6.455610330676057,0.05606983672967458,6.455610330676057,9.92014127397501,0.6159914351851852,0.000141273975010811,0.0582074221641537,9.92,9.92,0.0,-0.0,5.155,1646.6835,0.0002821499 -6.281973073730809,0.0656566138370497,6.281973073730809,8.469819954339753e-5,0.6162851851851852,8.469819954339753e-5,0.06822714726151576,0.0,0.0,0.0,-0.0,7.569999999999999,1645.0552,0.00016925317 -6.087307652162099,0.07970289609744623,6.087307652162099,8.080049905801475,0.6195356481481481,4.9905801474730534e-5,0.08291811241575865,8.08,8.08,0.0,-0.0,10.53,1643.1753,9.976184e-5 -5.907265437823979,0.08099662143026085,5.907265437823979,2.9100887265039485e-5,0.6199998842592592,2.9100887265039485e-5,0.08435607270697743,0.0,0.0,0.0,-0.0,10.79,1641.3823,5.8184847e-5 -5.38154105935504,0.06887775205732907,5.38154105935504,1.7472622452611825e-5,0.6227818287037037,1.7472622452611825e-5,0.0719786564303927,0.0,0.0,0.0,-0.0,8.235,1635.8159,3.493914e-5 -5.094772070154893,0.06889681712528217,5.094772070154893,1.0046297114167413e-5,0.6240006944444445,1.0046297114167413e-5,0.07214280508680761,0.0,0.0,0.0,-0.0,8.24,1632.5457,2.0090576e-5 -5.316910767329146,0.07867218942424263,5.316910767329146,12.230004957974625,0.6253526620370371,4.957974624439407e-6,0.0822503239241324,12.23,12.23,0.0,-0.0,10.255,1635.0944,9.915458e-6 -6.023034416777106,0.056707664406596574,6.023034416777106,16.5900026301148,0.6278895833333333,2.6301147997934768e-6,0.059018020871064183,16.59,16.59,0.0,-0.0,5.075,1642.5414,5.2600913e-6 -5.99280007095709,0.05848371253674259,5.99280007095709,1.4739901078432107e-6,0.6280518518518519,1.4739901078432107e-6,0.06087756671931663,0.0,0.0,0.0,-0.0,5.54,1642.2408,2.9479368e-6 -5.450320417847924,0.07593589494710515,5.450320417847924,8.16014229530989e-7,0.6303303240740741,8.16014229530989e-7,0.07931778521356163,0.0,0.0,0.0,-0.0,9.559999999999999,1636.5743,1.6320151e-6 -4.987488017555712,0.0869190043017943,4.987488017555712,4.895580992908341e-7,0.6319916666666667,4.895580992908341e-7,0.0910849982063738,0.0,0.0,0.0,-0.0,11.705,1631.2747,9.791114e-7 -4.7244202988182655,0.09367923052364871,4.7244202988182655,0.13000028226117,0.6322856481481481,2.822611700057778e-7,0.09836437233818165,0.13,0.13,0.0,-0.0,12.93,1628.0386,5.6452075e-7 -4.878323193497343,0.07006614450257942,4.878323193497343,10.130000132796678,0.6347809027777778,1.3279667725591315e-7,0.07348392394334755,10.13,10.13,0.0,-0.0,8.26,1629.953,2.65593e-7 -5.363651715940261,0.07055838783072639,5.363651715940261,12.53000005847348,0.6360001157407408,5.847348072064532e-8,0.07374391954402258,12.53,12.53,0.0,-0.0,8.285,1635.6171,1.1694689e-7 -5.640503864864138,0.07419072264485105,5.640503864864138,5.2900000351038505,0.6362856481481481,3.5103850381397753e-8,0.07739801818479251,5.29,5.29,0.0,-0.0,9.03,1638.6227,7.0207676e-8 -5.508414528738841,0.0785201768113624,5.508414528738841,3.150000020998633,0.6387810185185185,2.099863302313497e-8,0.08198544139863329,3.15,3.15,0.0,-0.0,9.870000000000001,1637.2075,4.1997257e-8 -5.188123866218079,0.07089209731907234,5.188123866218079,0.5500000124251256,0.6399917824074074,1.2425125584597312e-8,0.07418281757577873,0.55,0.55,0.0,-0.0,8.280000000000001,1633.63,2.4850248e-8 -4.802948749902554,0.0756315923463194,4.802948749902554,6.315730559961701e-9,0.6400512731481481,6.315730559961701e-9,0.07936613108622059,0.0,0.0,0.0,-0.0,9.33,1629.0231,1.263146e-8 -4.447233184606182,0.07805737315839634,4.447233184606182,1.588917467310162e-9,0.6418483796296296,1.588917467310162e-9,0.0821434118144539,0.0,0.0,0.0,-0.0,9.825,1624.4277,3.1778349e-9 -4.1305920164348855,0.10350130866565259,4.1305920164348855,-6.667181762189741e-10,0.6435354166666667,-6.667181762189741e-10,0.10921581832109374,0.0,0.0,0.0,-0.0,14.34,1620.0167,-1.3334364e-9 -3.9523742710923293,0.111268054720732,3.9523742710923293,-4.6431369644457715e-10,0.6439998842592592,-4.6431369644457715e-10,0.11760258628318894,0.0,0.0,0.0,-0.0,15.54,1617.3828,-9.286274e-10 -4.05944553925378,0.08527581807538374,4.05944553925378,5.64999999980817,0.6442856481481481,-1.9183032903107878e-10,0.09004173320281042,5.65,5.65,0.0,-0.0,11.215,1618.9791,-3.8366066e-10 -4.2882284402703,0.0800515142286064,4.2882284402703,11.139999999960976,0.6458482638888889,-3.902498461747782e-11,0.08435484940254664,11.14,11.14,0.0,-0.0,10.145,1622.2534,-7.804997e-11 -4.370480919878716,0.07151223465183872,4.370480919878716,-1.6184824311472144e-11,0.6471538194444444,-1.6184824311472144e-11,0.07530385379213006,0.0,0.0,0.0,-0.0,8.34,1623.3881,-3.236965e-11 -4.100727504992398,0.06746003861598528,4.100727504992398,-9.106757014324402e-12,0.6479927083333333,-9.106757014324402e-12,0.07120368604299623,0.0,0.0,0.0,-0.0,7.455,1619.5834,-1.8213514e-11 -3.8117870665952815,0.07450739178222283,3.8117870665952815,-5.340215248886985e-12,0.6480521990740741,-5.340215248886985e-12,0.07885457926290981,0.0,0.0,0.0,-0.0,9.035,1615.2198,-1.06804305e-11 -3.5593131069490958,0.08132240025788756,3.5593131069490958,-2.963861794792329e-12,0.6487947916666666,-2.963861794792329e-12,0.08628584578736093,0.0,0.0,0.0,-0.0,10.43,1611.1272,-5.9277236e-12 -3.457975292014252,0.07955466491902839,3.457975292014252,3.309999999998286,0.6498487268518519,-1.7142156834346412e-12,0.08450069001304872,3.31,3.31,0.0,-0.0,10.075,1609.4022,-3.4284314e-12 -3.5180697040864,0.08961378512187414,3.5180697040864,5.589999999999093,0.6507814814814814,-9.07134014164438e-13,0.09512438445411533,5.59,5.59,0.0,-0.0,11.93,1610.4312,-1.814268e-12 -3.4767214208406867,0.08190563751545735,3.4767214208406867,-4.60079619798957e-13,0.6515357638888889,-4.60079619798957e-13,0.08698037599417197,0.0,0.0,0.0,-0.0,10.49,1609.7251,-9.201592e-13 -3.2817212917403804,0.07179475615844985,3.2817212917403804,-2.694257306399091e-13,0.6519921296296297,-2.694257306399091e-13,0.0764066620107152,0.0,0.0,0.0,-0.0,8.45,1606.278,-5.3885146e-13 -3.1071894422442297,0.0699594113657124,3.1071894422442297,-1.543269228770258e-13,0.6520001157407407,-1.543269228770258e-13,0.07460500364096605,0.0,0.0,0.0,-0.0,8.08,1603.0143,-3.0865385e-13 -2.949327479942663,0.08424522383505355,2.949327479942663,-2.2066128153750373e-14,0.6520517361111111,-2.2066128153750373e-14,0.09001430757180695,0.0,0.0,0.0,-0.0,11.020000000000001,1599.9004,-4.4132256e-14 -2.8052998812152774,0.09403239165343263,2.8052998812152774,1.9232948296080348e-13,0.6522856481481482,1.9232948296080348e-13,0.10065981638007633,0.0,0.0,0.0,-0.0,12.8,1596.9104,3.8465897e-13 -2.673721714271089,0.11183695055464651,2.673721714271089,4.381155269321301e-13,0.6527943287037037,4.381155269321301e-13,0.11993471094771113,0.0,0.0,0.0,-0.0,15.64,1594.0415,8.7623105e-13 -2.5533726193863413,0.13789991843701097,2.5533726193863413,6.645170524998993e-13,0.653352662037037,6.645170524998993e-13,0.14814042951606954,0.0,0.0,0.0,-0.0,19.155,1591.291,1.3290341e-12 -2.443170327331107,0.15488539815235502,2.443170327331107,8.207591507545439e-13,0.653848611111111,8.207591507545439e-13,0.1666632098254131,0.0,0.0,0.0,-0.0,21.155,1588.6562,1.6415183e-12 -2.3421580904704244,0.10743285711668529,2.3421580904704244,8.560669534436471e-13,0.653848611111111,8.560669534436471e-13,0.11578605997751588,0.0,0.0,0.0,-0.0,15.035,1586.1346,1.7121339e-12 -2.249470350338745,0.09290005755251475,2.249470350338745,7.196654296850069e-13,0.653848611111111,7.196654296850069e-13,0.10027574262898918,0.0,0.0,0.0,-0.0,12.7,1583.7233,1.4393309e-12 -2.260860770783731,0.12034800624164842,2.260860770783731,4.365611604875326e-13,0.6543310185185185,4.365611604875326e-13,0.12987815065197064,0.0,0.0,0.0,-0.0,16.92,1584.0249,8.731223e-13 -2.574045590718776,0.11506972059006157,2.574045590718776,14.760000000000229,0.6543310185185185,2.283394556339492e-13,0.12357745286952691,14.76,14.76,0.0,-0.0,16.095,1591.7726,4.566789e-13 -2.9587833070756657,0.13416834381071205,2.9587833070756657,9.240000000000126,0.653848611111111,1.2544150017784525e-13,0.14333901882025823,9.24,9.24,0.0,-0.0,18.585,1600.0916,2.50883e-13 -3.0978671596889717,0.1334849823340297,3.0978671596889717,2.6600000000000756,0.653848611111111,7.55166599826372e-14,0.14236486995083047,2.66,2.66,0.0,-0.0,18.47,1602.8348,1.5103332e-13 -2.9875956547371785,0.10913075676895632,2.9875956547371785,4.341149225578812e-14,0.653352662037037,4.341149225578812e-14,0.11654790847467919,0.0,0.0,0.0,-0.0,15.155,1600.6703,8.6822985e-14 -2.929398433151935,0.12369385889061284,2.929398433151935,3.740000000000024,0.653352662037037,2.4160078302668435e-14,0.13219782847973272,3.74,3.74,0.0,-0.0,17.240000000000002,1599.4955,4.8320157e-14 -3.5083679608288714,0.14258133097652423,3.5083679608288714,23.040000000000013,0.6527943287037037,1.457022538373571e-14,0.15136455166245597,23.04,23.04,0.0,-0.0,19.535,1610.2662,2.914045e-14 -3.897619191567417,0.1585106208953955,3.897619191567417,8.78319718523815e-15,0.6522856481481482,8.78319718523815e-15,0.1676210324977005,0.0,0.0,0.0,-0.0,21.295,1616.5497,1.7566394e-14 -3.647234957336941,0.1217979934078721,3.647234957336941,5.299171525712376e-15,0.6520517361111111,5.299171525712376e-15,0.12911504790383013,0.0,0.0,0.0,-0.0,16.88,1612.5845,1.0598343e-14 -3.6226566884651383,0.12223276607651146,3.6226566884651383,6.680000000000003,0.6519921296296297,3.1849548429923606e-15,0.12960839502743865,6.68,6.68,0.0,-0.0,16.945,1612.1807,6.3699097e-15 -3.911282402524865,0.11881979687292134,3.911282402524865,10.470000000000002,0.6518894675925926,1.902470092609322e-15,0.12563273338893408,10.47,10.47,0.0,-0.0,16.43,1616.7587,3.80494e-15 -4.040653456711475,0.11263005809587934,4.040653456711475,3.1700000000000013,0.6511538194444445,1.117174094627693e-15,0.11894511175981917,3.17,3.17,0.0,-0.0,15.545000000000002,1618.702,2.2343482e-15 -3.876532309946761,0.13793923158368615,3.876532309946761,6.623266134354271e-16,0.6503311342592593,6.623266134354271e-16,0.14589654010764466,0.0,0.0,0.0,-0.0,18.975,1616.2257,1.3246532e-15 -3.7036849449182365,0.14596222306471288,3.7036849449182365,3.3000000000000003,0.6493528935185184,3.7905820238505593e-16,0.1546429908332231,3.3,3.3,0.0,-0.0,19.990000000000002,1613.5017,7.581164e-16 -4.041909059187768,0.13204410163096642,4.041909059187768,16.0,0.6482863425925927,2.241988214681363e-16,0.13944608269066608,16.0,16.0,0.0,-0.0,18.265,1618.7206,4.4839764e-16 -4.627194944838567,0.11158878109194512,4.627194944838567,9.55,0.6480008101851852,1.3396710151465474e-16,0.1172590679471894,9.55,9.55,0.0,-0.0,15.39,1626.7968,2.679342e-16 -4.838362484563027,0.09952676688137845,4.838362484563027,5.58,0.647890162037037,7.977914147846114e-17,0.10441308214088234,5.58,5.58,0.0,-0.0,13.5,1629.4618,1.5955828e-16 -4.893173356608253,0.10345897401929675,4.893173356608253,2.94,0.64678125,4.7223363976293044e-17,0.10849355093519555,2.94,2.94,0.0,-0.0,14.150000000000002,1630.1345,9.444673e-17 -5.174969489359637,0.09749371181354935,5.174969489359637,10.08,0.645352199074074,2.5433229649939342e-17,0.10202871382352807,10.08,10.08,0.0,-0.0,13.19,1633.4784,5.086646e-17 -5.258557118526545,0.10000798704683084,5.258557118526545,3.05,0.6440515046296297,1.4154636887029833e-17,0.10459866766165068,3.05,3.05,0.0,-0.0,13.625,1634.4353,2.8309274e-17 -5.131351483355258,0.11577848864016096,5.131351483355258,3.88,0.6438894675925926,8.389913454932436e-18,0.12120152922233504,3.88,3.88,0.0,-0.0,16.04,1632.9729,1.6779827e-17 -4.988191496470445,0.10011107773955517,4.988191496470445,3.69,0.6427809027777778,4.890105665775675e-18,0.10490882088641407,3.69,3.69,0.0,-0.0,13.704999999999998,1631.2831,9.780211e-18 -4.760957740948303,0.09886576440578802,4.760957740948303,1.32,0.6407940972222222,2.4287240808008877e-18,0.1037809698030082,1.32,1.32,0.0,-0.0,13.58,1628.4987,4.857448e-18 -4.453464418506339,0.12785902915722305,4.453464418506339,1.189087536783886e-18,0.6399997685185186,1.189087536783886e-18,0.1345450897701655,0.0,0.0,0.0,-0.0,17.880000000000003,1624.5114,2.378175e-18 -4.084339894899286,0.13284967730654373,4.084339894899286,5.171589541360759e-19,0.6395354166666667,5.171589541360759e-19,0.14024278398761528,0.0,0.0,0.0,-0.0,18.59,1619.3442,1.0343179e-18 -3.7323969462763604,0.13707009588667687,3.7323969462763604,-1.4069089816380807e-19,0.6378482638888888,-1.4069089816380807e-19,0.14518052837624298,0.0,0.0,0.0,-0.0,19.22,1613.9629,-2.813818e-19 -3.475932682218932,0.1211051111768465,3.475932682218932,0.07,0.6360001157407408,-6.058906184446392e-19,0.12860966708623647,0.07,0.07,0.0,-0.0,17.23,1609.7115,-1.2117812e-18 -3.3740433452672405,0.11851303751782845,3.3740433452672405,1.15,0.6355359953703703,-6.998687274871083e-19,0.12599603888473812,1.15,1.15,0.0,-0.0,16.9,1607.9348,-1.3997375e-18 -3.5848609137128187,0.11540288127883505,3.5848609137128187,13.02,0.6338483796296296,-4.37247413301589e-19,0.12241394780105375,13.02,13.02,0.0,-0.0,16.465,1611.5543,-8.744948e-19 -4.231864272527751,0.10775276210678777,4.231864272527751,14.78,0.6319996527777777,-2.5717169321365513e-19,0.11360056745261207,14.78,14.78,0.0,-0.0,15.28,1621.4633,-5.143434e-19 -4.4062620883565184,0.09217645241503414,4.4062620883565184,-1.5056621975616653e-19,0.6315355324074073,-1.5056621975616653e-19,0.09703459435270785,0.0,0.0,0.0,-0.0,12.73,1623.875,-3.0113244e-19 -4.08716268191874,0.09697887328149213,4.08716268191874,-8.735792410626584e-20,0.6287943287037038,-8.735792410626584e-20,0.10237315534397677,0.0,0.0,0.0,-0.0,13.665,1619.3855,-1.7471585e-19 -4.339210152314274,0.11469671188249234,4.339210152314274,13.98,0.628,-5.1798893294554485e-20,0.12080990949546844,13.98,13.98,0.0,-0.0,16.400000000000002,1622.9592,-1.03597787e-19 -5.140022459499671,0.1107464678730694,5.140022459499671,20.67,0.6267813657407407,-3.0815550664328945e-20,0.11592665159314118,20.67,20.67,0.0,-0.0,15.75,1633.0737,-6.16311e-20 -5.324621752046331,0.11171897688021504,5.324621752046331,0.95,0.624052199074074,-1.7524112082619992e-20,0.11679394900854001,0.95,0.95,0.0,-0.0,15.945,1635.1809,-3.5048224e-20 -4.96512033866596,0.127318471712443,4.96512033866596,-1.0303104023812657e-20,0.6238902777777778,-1.0303104023812657e-20,0.13344275482677112,0.0,0.0,0.0,-0.0,18.17,1631.0062,-2.0606208e-20 -4.578563009759543,0.13477106332268612,4.578563009759543,-5.816402064316876e-21,0.6207944444444444,-5.816402064316876e-21,0.14167428852590505,0.0,0.0,0.0,-0.0,19.265,1626.1658,-1.1632804e-20 -4.242499940495036,0.13276490690096027,4.242499940495036,-3.326445239122521e-21,0.6199998842592592,-3.326445239122521e-21,0.1399571970802856,0.0,0.0,0.0,-0.0,19.08,1621.6132,-6.6528905e-21 -3.9525681673648165,0.12449893874820289,3.9525681673648165,-1.326205387902093e-21,0.6183303240740741,-1.326205387902093e-21,0.1315864710857908,0.0,0.0,0.0,-0.0,18.085,1617.3857,-2.6524108e-21 -3.6994630240564295,0.1261770950918351,3.6994630240564295,7.770774689986721e-23,0.615999537037037,7.770774689986721e-23,0.13368683153802094,0.0,0.0,0.0,-0.0,18.415,1613.4336,1.554155e-22 -3.476486912286915,0.12846283980478326,3.476486912286915,4.749858485387016e-22,0.6151532407407407,4.749858485387016e-22,0.13642252729726664,0.0,0.0,0.0,-0.0,18.78,1609.7211,9.499717e-22 -3.3367741424484723,0.11846661659202914,3.3367741424484723,1.7403363352668346e-22,0.6120002314814815,1.7403363352668346e-22,0.12599866582077462,0.0,0.0,0.0,-0.0,17.53,1607.2715,3.4806727e-22 -3.3033921980570398,0.12429418913649028,3.3033921980570398,-1.8679330089645228e-22,0.6115356481481482,-1.8679330089645228e-22,0.13224615867703296,0.0,0.0,0.0,-0.0,18.355,1606.671,-3.735866e-22 -3.335614858609886,0.1242559107651168,3.335614858609886,5.79,0.6080510416666667,-5.098119496678706e-22,0.13215774679798495,5.79,5.79,0.0,-0.0,18.439999999999998,1607.2507,-1.0196239e-21 -3.3971223515111433,0.13280973577813288,3.3971223515111433,4.93,0.6078891203703704,-6.973392572376384e-22,0.14115970183382912,4.93,4.93,0.0,-0.0,19.56,1608.3419,-1.3946785e-21 -3.450660341573933,0.12713215107089462,3.450660341573933,5.5,0.6042853009259259,-6.516923068953422e-22,0.13504674701375058,5.5,5.5,0.0,-0.0,18.91,1609.2758,-1.3033846e-21 -3.423121921447155,0.10497399079578226,3.423121921447155,-3.89340671562922e-22,0.6039916666666666,-3.89340671562922e-22,0.11154230020887396,0.0,0.0,0.0,-0.0,15.725,1608.7972,-7.7868134e-22 -3.2645737174734517,0.1062170503205797,3.2645737174734517,-1.8457615999067432e-22,0.6002854166666667,-1.8457615999067432e-22,0.1130621755232642,0.0,0.0,0.0,-0.0,16.05,1605.9651,-3.6915232e-22 -3.089267372689133,0.11347782789439528,3.089267372689133,0.22,0.5999998842592592,-8.07375786210911e-23,0.12103930646127886,0.22,0.22,0.0,-0.0,17.19,1602.6688,-1.6147516e-22 -3.1570291935538806,0.1176891709543998,3.1570291935538806,5.21,0.5962851851851851,-4.5738761129889474e-23,0.12542985654621858,5.21,5.21,0.0,-0.0,17.89,1603.9646,-9.147752e-23 -3.5405703220001357,0.11701301847122039,3.5405703220001357,13.44,0.5959997685185184,-2.2608133498962695e-23,0.1241791140290645,13.44,13.44,0.0,-0.0,17.73,1610.8119,-4.5216267e-23 -3.9570142313152927,0.11029275436718834,3.9570142313152927,9.71,0.5920523148148148,-1.2542937302390211e-23,0.11656671180894307,9.71,9.71,0.0,-0.0,16.785,1617.4529,-2.5085875e-23 -3.928854396743892,0.0989523202649912,3.928854396743892,-7.010023107629268e-24,0.591992824074074,-7.010023107629268e-24,0.10460876660348409,0.0,0.0,0.0,-0.0,15.0,1617.0264,-1.4020046e-23 -3.6926711610424996,0.10837430372842825,3.6926711610424996,-4.0253442068984136e-24,0.5880002314814815,-4.0253442068984136e-24,0.11483227435083845,0.0,0.0,0.0,-0.0,16.65,1613.3239,-8.0506884e-24 -3.47158007701048,0.10682993369384809,3.47158007701048,-2.2634612404107343e-24,0.5879922453703703,-2.2634612404107343e-24,0.11345516957794505,0.0,0.0,0.0,-0.0,16.45,1609.6367,-4.5269225e-24 -3.275328122514058,0.10677277185944745,3.275328122514058,-1.2641369788421879e-24,0.5840005787037037,-1.2641369788421879e-24,0.11363981210369621,0.0,0.0,0.0,-0.0,16.59,1606.1615,-2.528274e-24 -3.1172214781977297,0.11453648025846966,3.1172214781977297,3.92,0.5835359953703704,5.011141525398489e-26,0.12212750680166208,3.92,3.92,0.0,-0.0,17.805,1603.2068,1.0022283e-25 -3.00605826251319,0.1181356673342616,3.00605826251319,10.36,0.5800003472222222,2.0749927066073456e-24,0.12613585158608767,10.36,10.36,0.0,-0.0,18.45,1601.0382,4.1499854e-24 -2.940803402199416,0.10472995684037435,2.940803402199416,12.37,0.5787818287037036,4.351884106714241e-24,0.11191391905784896,12.37,12.37,0.0,-0.0,16.485,1599.7275,8.703768e-24 -2.9220964340768467,0.08877088444866524,2.9220964340768467,6.4221627777672125e-24,0.5760005787037037,6.4221627777672125e-24,0.09488273638486211,0.0,0.0,0.0,-0.0,13.855,1599.3464,1.28443256e-23 -2.9526088323918827,0.092955900320492,2.9526088323918827,7.82720490820862e-24,0.5738478009259259,7.82720490820862e-24,0.09931736584938754,0.0,0.0,0.0,-0.0,14.66,1599.9668,1.565441e-23 -3.037546726702637,0.09131696008270193,3.037546726702637,8.44,0.5719994212962963,8.108388855848313e-24,0.09746308976251694,8.44,8.44,0.0,-0.0,14.405000000000001,1601.6605,1.6216778e-23 -3.1854206556428206,0.08413690069522349,3.1854206556428206,10.87,0.5680513888888888,6.807090217482974e-24,0.08964089580328073,10.87,10.87,0.0,-0.0,13.16,1604.4993,1.361418e-23 -3.3804219004958567,0.08415872871771983,3.3804219004958567,4.0351095160441445e-24,0.5679997685185185,4.0351095160441445e-24,0.08946629760891116,0.0,0.0,0.0,-0.0,13.129999999999999,1608.0476,8.070219e-24 -3.5514788814827303,0.09352117862641098,3.5514788814827303,1.6391429149529842e-24,0.5639996527777777,1.6391429149529842e-24,0.09923727190564455,0.0,0.0,0.0,-0.0,14.93,1610.9956,3.2782858e-24 -3.729598090588034,0.10059306338638543,3.729598090588034,14.52,0.5639916666666667,1.97961316158269e-25,0.10654810874016973,14.52,14.52,0.0,-0.0,16.1,1613.9181,3.9592263e-25 -3.9265020950948877,0.09916701350798363,3.9265020950948877,1.76,0.56,-2.0182873756099413e-26,0.10483805131857159,1.76,1.76,0.0,-0.0,15.95,1616.9906,-4.0365748e-26 -3.9398558199808913,0.11260558222832491,3.9398558199808913,-8.316999042344015e-27,0.558330324074074,-8.316999042344015e-27,0.1190302024026936,0.0,0.0,0.0,-0.0,18.115000000000002,1617.1934,-1.6633998e-26 -3.7948007150633094,0.11268175041578164,3.7948007150633094,1.92,0.5560002314814815,7.529962377966327e-29,0.11927594458058265,1.92,1.92,0.0,-0.0,18.22,1614.9531,1.5059925e-28 -3.5813966334003067,0.07673788073700276,3.5813966334003067,2.6012742275701307e-27,0.5520519675925926,2.6012742275701307e-27,0.08140285059014904,0.0,0.0,0.0,-0.0,12.069999999999999,1611.4966,5.2025485e-27 -3.3868955886470666,0.07929350497652625,3.3868955886470666,1.4076986927250768e-27,0.5520004629629629,1.4076986927250768e-27,0.08428825383216325,0.0,0.0,0.0,-0.0,12.63,1608.1619,2.8153974e-27 -3.2237394040665004,0.09555050510121711,3.2237394040665004,0.62,0.5479999999999999,5.286789882762223e-28,0.10175585724645826,0.62,0.62,0.0,-0.0,15.815000000000001,1605.2134,1.057358e-27 -3.067257723734734,0.09723785781940279,3.067257723734734,1.3297296818942442e-28,0.5479921296296296,1.3297296818942442e-28,0.10374484357838595,0.0,0.0,0.0,-0.0,16.134999999999998,1602.2418,2.6594594e-28 -2.9134366644073064,0.10312431683070847,2.9134366644073064,0.28,0.5439997685185185,6.358987943982273e-29,0.1102366156647191,0.28,0.28,0.0,-0.0,17.265,1599.1692,1.2717976e-28 -2.7741201370189943,0.08203730431952042,2.7741201370189943,-2.9491697529927135e-30,0.540794212962963,-2.9491697529927135e-30,0.08785603479248322,0.0,0.0,0.0,-0.0,13.63,1596.2429,-5.8983395e-30 -2.647525047049393,0.07496774932148946,2.647525047049393,-4.9970713986337004e-29,0.54,-4.9970713986337004e-29,0.08042559481920528,0.0,0.0,0.0,-0.0,12.23,1593.4535,-9.994143e-29 -2.5320685035413955,0.07364117743213756,2.5320685035413955,-5.992169910096312e-29,0.5359994212962963,-5.992169910096312e-29,0.07913468812838759,0.0,0.0,0.0,-0.0,12.09,1590.7906,-1.198434e-28 -2.4262299615634535,0.05657869890681541,2.4262299615634535,-2.399424184649868e-29,0.5359994212962963,-2.399424184649868e-29,0.06089699041267903,0.0,0.0,0.0,-0.0,7.97,1588.2407,-4.7988484e-29 -2.3285725163286957,0.052269728191768276,2.3285725163286957,3.7713939338448654e-29,0.5319998842592593,3.7713939338448654e-29,0.056346186194875886,0.0,0.0,0.0,-0.0,6.890000000000001,1585.7872,7.542788e-29 -2.2382654151394847,0.06614488707016598,2.2382654151394847,1.085351921998972e-28,0.5298482638888888,1.085351921998972e-28,0.07140982509510616,0.0,0.0,0.0,-0.0,10.64,1583.425,2.1707038e-28 -2.1545588097341892,0.08275500245868275,2.1545588097341892,1.7229319930533387e-28,0.5279998842592593,1.7229319930533387e-28,0.08947067484561051,0.0,0.0,0.0,-0.0,14.315,1581.1488,3.445864e-28 -2.0767994716693177,0.08307692582762771,2.0767994716693177,2.1281164773614384e-28,0.5240002314814816,2.1281164773614384e-28,0.08994359603335576,0.0,0.0,0.0,-0.0,14.524999999999999,1578.9536,4.256233e-28 -2.0043891710416,0.07167379732007369,2.0043891710416,2.139141944810569e-28,0.5240002314814816,2.139141944810569e-28,0.07770224675488985,0.0,0.0,0.0,-0.0,12.16,1576.8342,4.278284e-28 -1.9367666764796876,0.07844902991024087,1.9367666764796876,1.595183133912189e-28,0.520000462962963,1.595183133912189e-28,0.08515802891902864,0.0,0.0,0.0,-0.0,13.76,1574.7847,3.1903663e-28 -1.8698081863183103,0.08771726253399471,1.8698081863183103,1.14,0.5183310185185186,6.340762628177294e-29,0.09534610323349581,1.14,1.14,0.0,-0.0,15.66,1572.6835,1.2681525e-28 -1.8185081367546463,0.08612480370436333,1.8185081367546463,5.23,0.5159998842592592,-3.669111706543659e-29,0.09371414625633363,5.23,5.23,0.0,-0.0,15.45,1571.0221,-7.3382234e-29 -1.806294046611008,0.06657490102474528,1.806294046611008,-1.1331537439599063e-28,0.511999537037037,-1.1331537439599063e-28,0.072460063394559,0.0,0.0,0.0,-0.0,11.415,1570.6196,-2.2663075e-28 -1.8577013509811515,0.07163914240757362,1.8577013509811515,3.76,0.511999537037037,-1.3900259743693907e-28,0.07788886922572114,3.76,3.76,0.0,-0.0,12.57,1572.2955,-2.780052e-28 -1.9822570770028138,0.06829310911127,1.9822570770028138,8.99,0.5079996527777778,-9.592460014710062e-29,0.0740683574677683,8.99,8.99,0.0,-0.0,11.89,1576.1711,-1.918492e-28 -2.024118715690403,0.05977160418966566,2.024118715690403,1.23,0.5067805555555556,-5.084778248301095e-29,0.0647749360787654,1.23,1.23,0.0,-0.0,9.805,1577.4192,-1.0169556e-28 -1.998016116187504,0.05808396704517481,1.998016116187504,1.1,0.503999537037037,-2.5294432638056196e-29,0.06297697803323328,1.1,1.1,0.0,-0.0,9.45,1576.644,-5.0588865e-29 -1.9524274425183499,0.07425367087778958,1.9524274425183499,-1.4113756300266523e-29,0.4999997685185186,-1.4113756300266523e-29,0.08057927093167042,0.0,0.0,0.0,-0.0,13.5,1575.2656,-2.8227513e-29 -1.8916473168705203,0.09186701369090798,1.8916473168705203,-6.077126366293517e-30,0.4999997685185186,-6.077126366293517e-30,0.09981274872316111,0.0,0.0,0.0,-0.0,17.015,1573.377,-1.2154253e-29 -1.8297049302836137,0.09167459602424342,1.8297049302836137,0.02,0.4959997685185185,-2.364224768034834e-30,0.09972971727123686,0.02,0.02,0.0,-0.0,17.134999999999998,1571.3887,-4.7284495e-30 -1.7527158464829355,0.06474510768647257,1.7527158464829355,-1.3473465467769104e-30,0.49366840277777774,-1.3473465467769104e-30,0.07054929051617327,0.0,0.0,0.0,-0.0,11.57,1568.8214,-2.694693e-30 -1.7427844008121722,0.055388484075783145,1.7427844008121722,2.98,0.4919994212962963,-7.038367875689733e-31,0.060366934939151844,2.98,2.98,0.0,-0.0,9.165,1568.482,-1.4076736e-30 -1.941487386347919,0.054601395178725864,1.941487386347919,15.3,0.48800034722222224,-4.1167650638961195e-31,0.05926546147412097,15.3,15.3,0.0,-0.0,9.004999999999999,1574.93,-8.23353e-31 -2.127591515826377,0.04642832346680513,2.127591515826377,-2.413418031122396e-31,0.48800034722222224,-2.413418031122396e-31,0.05021993127208061,0.0,0.0,0.0,-0.0,6.45,1580.3966,-4.826836e-31 -2.0540861539357422,0.0422398727243318,2.0540861539357422,-1.4407571113254554e-31,0.4840002314814815,-1.4407571113254554e-31,0.045750211411149794,0.0,0.0,0.0,-0.0,5.16,1578.2969,-2.8815142e-31 -1.9843042994034457,0.04707033038318064,1.9843042994034457,-7.381580840430674e-32,0.48167002314814816,-7.381580840430674e-32,0.05104886496551568,0.0,0.0,0.0,-0.0,6.9,1576.2328,-1.4763162e-31 -1.918802205913827,0.04361596753145331,1.918802205913827,6.887365987272934e-32,0.4800005787037037,6.887365987272934e-32,0.04736276387528507,0.0,0.0,0.0,-0.0,5.8100000000000005,1574.2281,1.3774732e-31 -1.8572419445569952,0.03273871526550703,1.8572419445569952,2.6952835836213515e-31,0.4760001157407408,2.6952835836213515e-31,0.035595142286413584,0.0,0.0,0.0,-0.0,1.6749999999999998,1572.2808,5.390569e-31 -1.7993514346584372,0.04402154399588121,1.7993514346584372,4.879722493483767e-31,0.4760001157407408,4.879722493483767e-31,0.04792002631699801,0.0,0.0,0.0,-0.0,6.115,1570.3896,9.759445e-31 -1.7448731721958797,0.06452350047768454,1.7448731721958797,6.840288614016852e-31,0.4719996527777777,6.840288614016852e-31,0.07031982165020882,0.0,0.0,0.0,-0.0,12.235,1568.5536,1.3680577e-30 -1.6935841072430062,0.06294614617393621,1.6935841072430062,8.17521996561857e-31,0.4701513888888889,8.17521996561857e-31,0.06867878235659766,0.0,0.0,0.0,-0.0,11.92,1566.7719,1.635044e-30 -1.6452682534336527,0.06357497134678236,1.6452682534336527,8.482752797680696e-31,0.46799976851851854,8.482752797680696e-31,0.06944148613608776,0.0,0.0,0.0,-0.0,12.17,1565.0433,1.6965506e-30 -1.5997264315675674,0.052350041936152586,1.5997264315675674,7.36112524038597e-31,0.463999537037037,7.36112524038597e-31,0.05724206732372785,0.0,0.0,0.0,-0.0,9.25,1563.367,1.47222505e-30 -1.5613127104087583,0.0426661210887997,1.5613127104087583,-2.6620112067966694e-16,0.463999537037037,-2.6620112067966694e-16,0.04669655630280684,0.0,0.0,0.0,-0.0,6.11,1561.9154,-5.3240224e-16 -1.5598772467876056,0.03795986931314109,1.5598772467876056,0.7499999999999978,0.46,-2.1717192084100412e-15,0.041547191839983226,0.75,0.75,0.0,-0.0,4.4750000000000005,1561.8605,-4.3434384e-15 -1.5983307910011086,0.03684404545334122,1.5983307910011086,6.189999999999996,0.45920532407407405,-4.7599173172048386e-15,0.04028840420263452,6.19,6.19,0.0,-0.0,4.04,1563.3148,-9.519835e-15 -1.6760345665133662,0.03574396284908763,1.6760345665133662,5.199999999999994,0.45599953703703705,-6.6467717221565605e-15,0.039014730124634404,5.2,5.2,0.0,-0.0,3.665,1566.1498,-1.32935434e-14 -1.7947598689286588,0.030784280145666684,1.7947598689286588,5.409999999999993,0.45200810185185186,-6.4482516036342304e-15,0.03351374649476678,5.41,5.409999999999999,9.009459844833146e-16,-0.0,1.5500000000000003,1570.237,-1.2896517e-14 -1.958386862723547,0.029918174318793424,1.958386862723547,10.899999999999824,0.452,-2.780041146855029e-15,0.03246312451423807,10.9,10.899999999999828,1.7184031975148172e-13,-0.0,1.085,1575.4476,-5.5607078e-15 -2.1540039764894288,0.03032648213518567,2.1540039764894288,7.329999999999998,0.4480001157407407,5.089196116615148e-15,0.03278783319797093,7.33,7.329999999999993,7.324141293452158e-15,-0.0,1.3599999999999999,1581.1334,1.01784654e-14 -2.1733484833103267,0.036598668378503826,2.1733484833103267,9.602516061491385e-15,0.4480001157407407,9.602516061491385e-15,0.03955572356081023,0.0,0.0,0.0,-0.0,4.135,1581.6674,1.9205032e-14 -2.0945770386456015,0.04588974907984038,2.0945770386456015,8.88080333284912e-15,0.4440001157407408,8.88080333284912e-15,0.049666725081931394,0.0,0.0,0.0,-0.0,7.73,1579.4626,1.7761607e-14 -2.0957633223486014,0.04617019178462126,2.0957633223486014,3.8100000000000054,0.44166932870370373,5.347525248539341e-15,0.04996917999603193,3.81,3.81,0.0,-0.0,7.905,1579.4965,1.06950505e-14 -2.181658313223373,0.0399911176758376,2.181658313223373,5.290000000000003,0.4400003472222222,2.999248586779238e-15,0.04321604481856648,5.29,5.29,0.0,-0.0,5.74,1581.8953,5.998497e-15 -2.1887602906064703,0.028124675662823118,2.1887602906064703,1.8897297806510545e-15,0.43611064814814815,1.8897297806510545e-15,0.030388951445078517,0.0,0.0,0.0,-0.0,0.645,1582.0894,3.81409e-15 -2.1180584406347673,0.026840823380864836,2.1180584406347673,-0.03353369795323192,0.43600011574074077,-0.03353369795323192,0.02903772924929217,0.0,0.0,0.0,-0.0,-0.010000000000000231,1580.1284,8.3349424e-13 -2.151460619533633,0.02969537296649699,2.151460619533633,6.020000000001342,0.43200000000000005,1.3431926588474695e-12,0.032106934832873975,6.02,6.019999999999999,6.683542608243442e-16,-0.0,1.5850000000000004,1581.0629,2.6863874e-12 -2.328820033705687,0.03689642840532616,2.328820033705687,7.420000000000798,0.43194837962962956,7.984440474299773e-13,0.03977378063756441,7.42,7.42,0.0,-0.0,4.765000000000001,1585.7936,1.5968881e-12 -2.3866439122543053,0.03938098504822894,2.3866439122543053,4.738957165075195e-13,0.428,4.738957165075195e-13,0.04241291958536943,0.0,0.0,0.0,-0.0,5.875,1587.2583,9.477914e-13 -2.3024372461094655,0.0448513401088673,2.3024372461094655,2.821387600553443e-13,0.4261517361111111,2.821387600553443e-13,0.0483698068763071,0.0,0.0,0.0,-0.0,7.955,1585.1132,5.642775e-13 -2.2150399929381535,0.03869897850304332,2.2150399929381535,1.6639978511871007e-13,0.42400011574074076,1.6639978511871007e-13,0.04179574570137235,0.0,0.0,0.0,-0.0,5.795,1582.8021,3.3279957e-13 -2.1346440208600095,0.028768235253151662,2.1346440208600095,9.429488614198678e-14,0.42121863425925926,9.429488614198678e-14,0.031113726372359894,0.0,0.0,0.0,-0.0,1.4949999999999997,1580.5942,1.8859012e-13 -2.0587898041221506,0.03408123343523146,2.0587898041221506,4.937790763295823e-14,0.41999976851851856,4.937790763295823e-14,0.036910355074164035,0.0,0.0,0.0,-0.0,4.0649999999999995,1578.4335,9.8755815e-14 -1.9864145398646125,0.03867308186940968,1.9864145398646125,7.260292932446874e-15,0.4164640046296296,7.260292932446874e-15,0.04194016522674674,0.0,0.0,0.0,-0.0,6.12,1576.2963,1.4520586e-14 -1.9200812397013411,0.04279882272752656,1.9200812397013411,-2.230991101223363e-14,0.4159996527777778,-2.230991101223363e-14,0.04647424804896503,0.0,0.0,0.0,-0.0,7.71,1574.268,-4.4619822e-14 -1.862065674491577,0.0491980293829933,1.862065674491577,-2.877851020096534e-14,0.4121109953703704,-2.877851020096534e-14,0.05348524897140103,0.0,0.0,0.0,-0.0,10.045,1572.4357,-5.755702e-14 -1.8776826785821754,0.03935902769697236,1.8776826785821754,1.649842452452335,0.41200046296296294,-0.00015754754766485158,0.042775287623378344,1.65,1.65,0.0,-0.0,6.585000000000001,1572.9344,-0.0003155931 -2.0998412022577364,0.02257705834736811,2.0998412022577364,15.381946764602084,0.4080084490740741,-8.493315224731377e-8,0.024432954211992354,15.44,15.381946849535236,0.05805315046476354,-0.0,-1.5350000000000001,1579.6125,-0.00031343912 -2.4814307434181044,0.02491644542602924,2.4814307434181044,10.219296009983669,0.40794895833333333,-0.010703922050875591,0.02679549238353139,10.23,10.229999932034545,6.796545568343859e-8,-0.0,-0.20999999999999996,1589.5842,0.00062300765 -2.589730223502019,0.029710899733324247,2.589730223502019,0.00026239886547933463,0.40399999999999997,0.00026239886547933463,0.03190031801381151,0.0,0.0,0.0,-0.0,2.475,1592.1354,0.00052342785 -2.4847653812857833,0.029284092500413042,2.4847653812857833,0.0001532973370200722,0.4037145833333334,0.0001532973370200722,0.03149093203884781,0.0,0.0,0.0,-0.0,2.295,1589.6644,0.0003061261 -2.3839379371621288,0.03321014147043283,2.3839379371621288,8.89065006096926e-5,0.40000023148148145,8.89065006096926e-5,0.035768510645092594,0.0,0.0,0.0,-0.0,4.325,1587.1906,0.0001776552 -2.2887826358832317,0.03375957430604581,2.2887826358832317,4.0423747469020194e-5,0.39971435185185183,4.0423747469020194e-5,0.03641608279742011,0.0,0.0,0.0,-0.0,4.605,1584.7579,8.081484e-5 -2.2150716865855014,0.03182693366721694,2.2150716865855014,-1.268446507207893e-6,0.3960082175925926,-1.268446507207893e-6,0.03437376797339736,0.0,0.0,0.0,-0.0,3.88,1582.803,-2.5369252e-6 -2.184509730323445,0.03141603418274333,2.184509730323445,2.7899748424037205,0.39571446759259266,-2.5157596279635666e-5,0.033947783325489776,2.79,2.79,0.0,-0.0,3.705,1581.9733,-5.0327857e-5 -2.2121577684758145,0.029145589835142316,2.2121577684758145,3.9599782334430786,0.3921108796296296,-2.176655692136237e-5,0.03147942287157377,3.96,3.96,0.0,-0.0,2.7199999999999998,1582.7244,-4.3542594e-5 -2.1950551755552103,0.03127962059025335,2.1950551755552103,0.6999881371920021,0.3919487268518519,-1.1862807997849673e-5,0.03379423277849386,0.7,0.7,0.0,-0.0,3.78,1582.2609,-2.3728431e-5 -2.1278698625626182,0.034765506682752495,2.1278698625626182,-5.972974746934299e-6,0.3884644675925926,-5.972974746934299e-6,0.03760447492329105,0.0,0.0,0.0,-0.0,5.52,1580.4044,-1.1946663e-5 -2.0533934959155706,0.03483781662841944,2.0533934959155706,-3.358028840746923e-6,0.38799999999999996,-3.358028840746923e-6,0.03773349002349345,0.0,0.0,0.0,-0.0,5.59,1578.2767,-6.716283e-6 -1.9840690654401452,0.0320715613605721,1.9840690654401452,-1.4709192648554177e-6,0.3848466435185185,-1.4709192648554177e-6,0.034782508340998726,0.0,0.0,0.0,-0.0,4.485,1576.2257,-2.9418818e-6 -1.920528710355411,0.03234686593498133,1.920528710355411,0.0899994759129618,0.3840003472222222,-5.240870382024545e-7,0.03512440031604867,0.09,0.09,0.0,-0.0,4.665,1574.2819,-1.0481796e-6 -1.8728988845694479,0.03208784487773068,1.8728988845694479,-2.8739782289955516e-7,0.38166932870370374,-2.8739782289955516e-7,0.034876363176549935,0.0,0.0,0.0,-0.0,4.65,1572.7821,-5.747973e-7 -1.8741511509911903,0.029494674802657706,1.8741511509911903,3.6099998844463093,0.3799997685185186,-1.1555369076009874e-7,0.03205702618384089,3.61,3.61,0.0,-0.0,3.455,1572.822,-2.3110765e-7 -1.9586630907284999,0.030345237429963586,1.9586630907284999,4.809999967254428,0.37920590277777777,-3.2745571523020736e-8,0.0329263391530975,4.81,4.81,0.0,-0.0,3.885,1575.456,-6.5491164e-8 -2.42839318554805,0.03057727438196991,2.42839318554805,22.529999980721428,0.37611087962962964,-1.9278573240413857e-8,0.032909940036730055,22.53,22.53,0.0,-0.0,4.0,1588.294,-3.8557154e-8 -2.995563377459675,0.025233202198123108,2.995563377459675,8.569999988388522,0.3759486111111111,-1.1611294418781578e-8,0.026945517682497064,8.57,8.569999999999817,1.8268053736392176e-13,-0.0,1.055,1600.8293,-2.3226118e-8 -3.0578427260775674,0.02458316827852231,3.0578427260775674,0.20999999299465152,0.37321898148148147,-7.005271102311681e-9,0.026231236215347793,0.21,0.20999999999992264,7.736977725159022e-14,-0.0,0.77,1602.0582,-1.4047323e-8 -2.9133949784272235,0.020986061268193964,2.9133949784272235,-2.1828118853752495e-7,0.3719998842592593,-2.1828118853752495e-7,0.022433444192262193,0.0,0.0,0.0,-0.0,-1.435,1599.1683,0.0005173851 -2.776990850808302,0.017985085737172612,2.776990850808302,-2.7803547593012075e-16,0.37120578703703705,-2.7803547593012075e-16,0.01925998411197995,0.0,0.0,0.0,-0.0,-3.56,1596.3047,0.00051778083 -2.650465203539871,0.01952428103078591,2.650465203539871,-8.616625478186185e-11,0.3684645833333333,-8.616625478186185e-11,0.020944827785303734,0.0,0.0,0.0,-0.0,-2.275,1593.5198,0.031613525 -2.577841895418101,0.020470763530629515,2.577841895418101,2.168386635615355,0.3680003472222222,-1.0041622923257329e-7,0.021983063276616928,2.18,2.168386736031584,0.01161326396841579,-0.0,-1.5700000000000003,1591.8606,0.15215929 -2.496995043886537,0.018161530616194164,2.496995043886537,2.7582042006757062e-5,0.36615196759259255,-2.5371154224596658e-14,0.019526575896600503,1.38,2.7582042032128217e-5,1.3799724179579678,-0.0,-3.175,1589.9576,1.2684958 -2.396107200624277,0.016105245462782063,2.396107200624277,1.8146667501994785e-12,0.3644642361111111,-0.0,0.01734260308937237,0.73,1.8146667501994785e-12,0.7299999999981853,-0.0,-4.765000000000001,1587.4946,2.323369 -2.303148003322922,0.012213826260492775,2.303148003322922,0.0,0.36400011574074076,-0.0,0.01317181484764147,0.0,0.0,0.0,-0.0,-8.495,1585.1316,2.6862226 -2.217223386721729,0.009883758500278702,2.217223386721729,0.0,0.3621513888888889,-0.0,0.010674279197251836,0.0,0.0,0.0,-0.0,-11.21,1582.861,2.6834955 -2.137433990502256,0.014004852879052057,2.137433990502256,0.0,0.3604638888888889,-0.0,0.015145929303603907,0.4,0.0,0.4,-0.0,-6.4750000000000005,1580.6722,2.8798969 -2.0702511957450036,0.01931011843537461,2.0702511957450036,5.052567604755302,0.3599998842592593,-2.7542320685352056e-9,0.020908681376915615,6.53,5.052567607509534,1.4774323924904662,-0.0,-1.97,1578.765,6.1373234 -2.1613339924946886,0.02281350351719986,2.1613339924946886,3.6304417721041906,0.35920578703703704,0.630441772137307,0.02466192345467545,3.0,2.9999999999668834,3.3116842601543794e-11,-0.0,0.43000000000000005,1581.3363,6.184808 -2.173615044398638,0.02270000261980929,2.173615044398638,1.6551337818494902,0.3572189814814815,0.6451337818600956,0.024533976515797695,1.01,1.0099999999893945,1.0605606393099265e-11,-0.0,0.435,1581.6747,5.668582 -2.1177683908779223,0.021771226673543514,2.1177683908779223,-0.04149769398016561,0.35611041666666665,-0.04149769398016561,0.023553310895271958,0.0,0.0,0.0,-0.0,-0.1100000000000001,1580.1202,5.546931 -2.0447152473181687,0.01703009944199923,2.0447152473181687,1.0982448008704226e-8,0.3559483796296296,-5.568620673363082e-16,0.018448575369528285,0.03,1.0982448565566294e-8,0.029999989017551434,-0.0,-3.575,1578.0238,5.5608535 -1.976532043771911,0.01346859131224899,1.976532043771911,0.0,0.3546476851851852,-0.0,0.01460917192814576,0.0,0.0,0.0,-0.0,-6.745,1575.9984,5.5761414 -1.912818571827496,0.01117237963407335,1.912818571827496,0.0,0.35321898148148145,-0.0,0.01213357201870641,0.0,0.0,0.0,-0.0,-9.190000000000001,1574.0416,5.5781465 -1.8530858811710555,0.013364072969900396,1.8530858811710555,0.0,0.35211030092592593,-0.0,0.014531314273411214,0.0,0.0,0.0,-0.0,-6.720000000000001,1572.147,5.5780115 -1.7969109342314569,0.01390833163994112,1.7969109342314569,0.0,0.35199988425925927,-0.0,0.015140814243009592,0.0,0.0,0.0,-0.0,-6.155,1570.3086,5.5779896 -1.744045919137143,0.012279500008416537,1.744045919137143,0.0,0.35171423611111113,-0.0,0.013382842450107693,0.0,0.0,0.0,-0.0,-7.82,1568.5253,5.577353 -1.6942835260461855,0.0077457463677722774,1.6942835260461855,0.0,0.3506474537037037,-0.0,0.008451034562247165,0.67,0.0,0.67,-0.0,-13.809999999999999,1566.7965,5.915024 -1.647361366619414,0.005787560234632842,1.647361366619414,0.0,0.34966921296296294,-0.0,0.006321312904954721,0.74,0.0,0.74,-0.0,-17.42,1565.1193,6.6200185 -1.603006234620385,0.0042839529642225305,1.603006234620385,0.0,0.3488465277777778,-0.0,0.004683914869155014,0.0,0.0,0.0,-0.0,-21.03,1563.4893,6.9886446 -1.5609808414929742,0.0052444307843439765,1.5609808414929742,0.0,0.3481105324074074,-0.0,0.005739890144582767,0.0,0.0,0.0,-0.0,-18.549999999999997,1561.9027,6.986148 -1.521039359466986,0.009377047676729304,1.521039359466986,0.0,0.3480079861111111,-0.0,0.010273111021463393,3.1,0.0,3.1,-0.0,-11.19,1560.3547,8.5461 -1.4829532274602517,0.01635706685339252,1.4829532274602517,2.1615593218116125e-6,0.34794849537037037,-0.0,0.0179375446805303,12.5,2.1615593218116125e-6,12.499997838440677,-0.0,-3.65,1558.8403,16.372976 -1.4467431075724009,0.007634713405000637,1.4467431075724009,0.0,0.34771435185185184,-0.0,0.008380343202983689,6.34,0.0,6.34,-0.0,-13.809999999999999,1557.364,25.768805 -1.4123550854699036,0.006954278089261983,1.4123550854699036,0.0,0.3472057870370371,-0.0,0.0076405027151682115,10.59,0.0,10.59,-0.0,-14.965,1555.9274,34.2349 -1.3795427702368848,0.008846083277216822,1.3795427702368848,0.0,0.3466476851851852,-0.0,0.009727761541308189,10.53,0.0,10.53,-0.0,-11.850000000000001,1554.5236,44.749153 -1.3481952990856583,0.008899662550161816,1.3481952990856583,0.0,0.3466476851851852,-0.0,0.009795330500582629,0.0,0.0,0.0,-0.0,-11.76,1553.1509,49.95807 -1.3181662365525395,0.015997618906906208,1.3181662365525395,5.841684871832343e-7,0.3461518518518519,-0.0,0.017622893437951547,19.44,5.841684871832343e-7,19.439999415831515,-0.0,-3.825,1551.8057,59.68379 -1.6870747034791564,0.021332089202535,1.6870747034791564,31.862583644957635,0.3461518518518519,-0.0474163479671758,0.02327826377057391,31.91,31.90999999292481,7.0751907066402e-9,-0.0,0.1299999999999999,1566.5419,69.28762 -1.8061943616294351,0.010132293717486555,1.8061943616294351,0.0,0.3456693287037037,-0.0,0.01102800266275248,0.01,0.0,0.01,-0.0,-10.17,1570.6163,79.262375 -1.7528734889496538,0.010392324222493058,1.7528734889496538,0.0,0.3456693287037037,-0.0,0.011323922637513015,14.28,0.0,14.28,-0.0,-9.82,1568.8268,86.40637 -1.702622549130465,0.008738359954133117,1.702622549130465,0.0,0.3461518518518519,-0.0,0.009532246603351184,6.79,0.0,6.79,-0.0,-12.094999999999999,1567.0897,96.94003 -1.6552021431916144,0.007705719368707357,1.6552021431916144,0.0,0.3461518518518519,-0.0,0.008414847976378693,0.0,0.0,0.0,-0.0,-13.7,1565.4028,100.33541 -1.6103692520952655,0.007439507003257876,1.6103692520952655,0.0,0.3461518518518519,-0.0,0.0081326567295017,0.0,0.0,0.0,-0.0,-14.135,1563.763,100.47339 -1.5679200563777826,0.0059292987091287015,1.5679200563777826,0.0,0.3466476851851852,-0.0,0.006488359490409985,0.0,0.0,0.0,-0.0,-16.990000000000002,1562.1676,100.517525 -1.5276573716455146,0.005746510686245997,1.5276573716455146,0.0,0.3472057870370371,-0.0,0.006294596808922315,0.0,0.0,0.0,-0.0,-17.384999999999998,1560.614,100.52806 -1.4894116164544369,0.005772664014159702,1.4894116164544369,0.0,0.34771435185185184,-0.0,0.006329385550673789,0.14,0.0,0.14,-0.0,-17.335,1559.0999,100.56523 -1.4530140978760557,0.007178126143140276,1.4530140978760557,0.0,0.34794849537037037,-0.0,0.007877857609377415,0.01,0.0,0.01,-0.0,-14.605,1557.6223,100.62742 -1.4183001650659812,0.009879368153446975,1.4183001650659812,0.0,0.34800000000000003,-0.0,0.010852481075286633,0.0,0.0,0.0,-0.0,-10.469999999999999,1556.1782,100.632675 -1.3851288758642202,0.013144126498168074,1.3851288758642202,0.0,0.3480079861111111,-0.0,0.014451941854429115,0.0,0.0,0.0,-0.0,-6.635,1554.7649,100.63353 -1.353430368805741,0.013987872734569726,1.353430368805741,0.0,0.3484641203703704,-0.0,0.015393327675821487,0.0,0.0,0.0,-0.0,-5.79,1553.3823,100.621124 -1.3231359445592235,0.01354488096011045,1.3231359445592235,0.0,0.3482361111111111,-0.0,0.014918809593641127,0.0,0.0,0.0,-0.0,-6.21,1552.0304,100.60699 -1.2941411044534261,0.016197353681054245,1.2941411044534261,2.1080420624652875e-7,0.34921886574074074,-0.0,0.017855560029269833,3.85,2.1080420624652875e-7,3.849999789195794,-0.0,-3.765,1550.7072,102.43893 -1.2663975787098671,0.01207150560986554,1.2663975787098671,0.0,0.35015162037037034,-0.0,0.013318442993347638,0.0,0.0,0.0,-0.0,-7.825,1549.413,103.97468 -1.2399050529220763,0.007116468377890153,1.2399050529220763,0.0,0.35120578703703703,-0.0,0.007857973831322855,0.0,0.0,0.0,-0.0,-14.755,1548.1504,104.04856 -1.2145351130476587,0.007922794648608235,1.2145351130476587,0.0,0.3519482638888889,-0.0,0.008755298013834494,3.34,0.0,3.34,-0.0,-13.405,1546.9158,104.48792 -1.1901780227701078,0.007303562582765574,1.1901780227701078,0.0,0.35200787037037035,-0.0,0.008077316158520921,0.0,0.0,0.0,-0.0,-14.435,1545.7059,105.39287 -1.1667672203864177,0.008531709686811833,1.1667672203864177,0.0,0.35284641203703704,-0.0,0.009442823354327647,1.28,0.0,1.28,-0.0,-12.465,1544.5195,106.58137 -1.1442167777661536,0.011823015182326972,1.1442167777661536,0.0,0.3541518518518519,-0.0,0.013095494282443823,1.11,0.0,1.11,-0.0,-8.205,1543.354,107.77258 -1.1225128074902957,0.008813373806197768,1.1225128074902957,0.0,0.35571446759259256,-0.0,0.009769172639489879,0.0,0.0,0.0,-0.0,-12.129999999999999,1542.2103,108.705246 -1.1016325259291646,0.00935864454734915,1.1016325259291646,0.0,0.35600000000000004,-0.0,0.010381125372026982,1.15,0.0,1.15,-0.0,-11.35,1541.089,109.39341 -1.0815296578550673,0.00783705905647917,1.0815296578550673,0.0,0.3564643518518519,-0.0,0.00869950743051649,0.0,0.0,0.0,-0.0,-13.65,1539.9891,109.98055 -1.0621669976801018,0.0064382545460799825,1.0621669976801018,0.0,0.35815185185185183,-0.0,0.007151778311067624,1.97,0.0,1.97,-0.0,-16.185000000000002,1538.9103,111.07561 -1.043483670761869,0.00744207403369653,1.043483670761869,0.0,0.3599482638888889,-0.0,0.008272543872280363,1.04,0.0,1.04,-0.0,-14.415,1537.8505,112.54882 -1.0254433391789373,0.006426645891469783,1.0254433391789373,0.0,0.36000787037037035,-0.0,0.0071486442979593,0.0,0.0,0.0,-0.0,-16.255,1536.809,113.092476 -1.0079971324758745,0.009012636376027037,1.0079971324758745,0.0,0.36121863425925926,-0.0,0.010031846095929997,0.0,0.0,0.0,-0.0,-11.985,1535.7842,113.12054 -0.9911333569594091,0.006762122707407248,0.9911333569594091,0.0,0.3637142361111111,-0.0,0.007531770461993039,0.0,0.0,0.0,-0.0,-15.73,1534.7766,113.164185 -0.9748286426944304,0.008542730448024026,0.9748286426944304,0.0,0.36400011574074076,-0.0,0.009521187806038242,2.4,0.0,2.4,-0.0,-12.760000000000002,1533.786,114.49426 -0.9590214755571318,0.010274746746234242,0.9590214755571318,0.0,0.36521898148148146,-0.0,0.011458877830020229,2.0,0.0,2.0,-0.0,-10.39,1532.8097,116.693474 -0.9437425834234016,0.005399912754830144,0.9437425834234016,0.0,0.36771435185185186,-0.0,0.006026005684577915,0.0,0.0,0.0,-0.0,-18.625,1531.8506,117.74306 -0.9289653175311332,0.006920534892855975,0.9289653175311332,0.0,0.3680083333333333,-0.0,0.007727691001627081,0.16,0.0,0.16,-0.0,-15.555,1530.9081,117.8355 -0.9146306701989517,0.0069919316007968635,0.9146306701989517,0.0,0.3696696759259259,-0.0,0.0078121540228305785,0.48,0.0,0.48,-0.0,-15.475000000000001,1529.9794,118.15847 -0.900743651256351,0.005409873150948137,0.900743651256351,0.0,0.3719483796296296,-0.0,0.006048116445180609,0.0,0.0,0.0,-0.0,-18.72,1529.0657,118.411674 -0.8872796516675779,0.005391331301000932,0.8872796516675779,0.0,0.37211041666666667,-0.0,0.00603093453942886,0.0,0.0,0.0,-0.0,-18.759999999999998,1528.1663,118.42085 -0.8742009387614762,0.006840708501036767,0.8742009387614762,0.0,0.3746479166666667,-0.0,0.0076567027306482455,0.0,0.0,0.0,-0.0,-15.895,1527.2794,118.40238 -0.8614523440364372,0.012591223738903092,0.8614523440364372,0.0,0.3760002314814815,-0.0,0.014101268675079576,0.0,0.0,0.0,-0.0,-8.015,1526.4021,118.40636 -0.849037165681602,0.010743776945929602,0.849037165681602,0.0,0.3772188657407407,-0.0,0.01203909838962285,1.28,0.0,1.28,-0.0,-10.165,1525.5352,119.18161 -0.8370027718581884,0.008382097530133026,0.8370027718581884,0.0,0.3799997685185186,-0.0,0.009397935537641199,0.0,0.0,0.0,-0.0,-13.48,1524.6826,119.77286 -0.8253143823938326,0.009016816862718222,0.8253143823938326,0.0,0.3804640046296296,-0.0,0.010115149131455723,0.0,0.0,0.0,-0.0,-12.55,1523.8428,119.77686 -0.8139439289330278,0.00953829584692367,0.8139439289330278,0.0,0.383714699074074,-0.0,0.010705969793017904,0.0,0.0,0.0,-0.0,-11.925,1523.0143,119.77686 -0.8028909433208318,0.006968782136591086,0.8028909433208318,0.0,0.38400833333333334,-0.0,0.007826093130120703,0.0,0.0,0.0,-0.0,-15.93,1522.1978,119.77686 -0.7921256668757841,0.010318410758688742,0.7921256668757841,0.0,0.3866476851851852,-0.0,0.011593938674710343,0.0,0.0,0.0,-0.0,-10.985,1521.3916,119.6132 -0.7816133654039611,0.012559147812247436,0.7816133654039611,0.0,0.38799999999999996,-0.0,0.014119072610064018,4.51,0.0,4.51,-0.0,-8.42,1520.5938,121.433975 -0.7713777357916151,0.010452804594368585,0.7713777357916151,0.0,0.3901519675925926,-0.0,0.011757195230665813,2.4,0.0,2.4,-0.0,-10.92,1519.8065,123.73908 -0.7614099816036176,0.010196492153731565,0.7614099816036176,0.0,0.39200034722222227,-0.0,0.011474762375883608,1.13,0.0,1.13,-0.0,-11.3,1519.0298,125.610794 -0.7516877943128049,0.011462613876691317,0.7516877943128049,0.0,0.3936696759259259,-0.0,0.012906130367995877,1.6,0.0,1.6,-0.0,-9.809999999999999,1518.2623,127.10976 -0.7422262764473566,0.008041042733680042,0.7422262764473566,0.0,0.39600023148148145,-0.0,0.009058185171579124,0.0,0.0,0.0,-0.0,-14.475000000000001,1517.5059,127.84297 -0.7330126941377113,0.008544317744322818,0.7330126941377113,0.0,0.3972188657407407,-0.0,0.00962985519473778,0.8,0.0,0.8,-0.0,-13.735,1516.7599,128.25502 -0.7239948726335176,0.013407988397863746,0.7239948726335176,0.0,0.40000023148148145,-0.0,0.01511881369153408,14.77,0.0,14.77,-0.0,-7.91,1516.0206,135.60373 -0.7151566937874241,0.014801661461646465,0.7151566937874241,0.0,0.4012189814814815,-0.0,0.016698395353174387,4.88,0.0,4.88,-0.0,-6.6049999999999995,1515.2871,143.90492 -0.70652893604751,0.013324481162617953,0.70652893604751,0.0,0.40399999999999997,-0.0,0.015039118401688298,0.0,0.0,0.0,-0.0,-8.115,1514.5623,146.53561 -0.698136538311776,0.010175271031894554,0.698136538311776,0.0,0.40521898148148144,-0.0,0.011490071575892458,6.5,0.0,6.5,-0.0,-11.715,1513.8486,149.95818 -0.6899270274832575,0.015342185661978062,0.6899270274832575,0.0,0.4080003472222223,-0.0,0.01733271867478177,11.24,0.0,11.24,-0.0,-6.324999999999999,1513.1422,158.51796 -0.6819311308597953,0.0071026460597045215,0.6819311308597953,0.0,0.40966990740740744,-0.0,0.008027854337795844,0.0,0.0,0.0,-0.0,-16.419999999999998,1512.446,163.6752 -0.674151910571086,0.006250465061941189,0.674151910571086,0.0,0.41200046296296294,-0.0,0.007067868074659881,0.0,0.0,0.0,-0.0,-18.065,1511.7609,163.66478 -0.6665309123794558,0.00975598630815984,0.6665309123794558,0.0,0.41464768518518513,-0.0,0.01103677977703183,0.0,0.0,0.0,-0.0,-12.535,1511.0819,163.60031 -0.6590661147889244,0.010211896718952652,0.6590661147889244,0.0,0.4159996527777778,-0.0,0.011557687912766243,1.1,0.0,1.1,-0.0,-11.98,1510.4093,164.16766 -0.6517515259498551,0.012160588825284846,0.6517515259498551,0.0,0.419205324074074,-0.0,0.013769267550639421,3.97,0.0,3.97,-0.0,-9.785,1509.7428,166.60944 -0.644603755512514,0.008995663069322384,0.644603755512514,0.0,0.41999976851851856,-0.0,0.010190110684681798,0.0,0.0,0.0,-0.0,-13.725,1509.0842,168.57155 -0.6376138716672253,0.010649620485747172,0.6376138716672253,0.0,0.42400011574074076,-0.0,0.012068888556561387,0.0,0.0,0.0,-0.0,-11.665,1508.4331,168.56636 -0.6307655353604011,0.007310832130803018,0.6307655353604011,0.0,0.42400011574074076,-0.0,0.008288685671132657,0.0,0.0,0.0,-0.0,-16.45,1507.7882,168.68477 -0.6240468769567387,0.009339614709304661,0.6240468769567387,0.0,0.428,-0.0,0.010593319315581533,0.0,0.0,0.0,-0.0,-13.47,1507.1487,169.11568 -0.6174628857081998,0.01928582069020821,0.6174628857081998,3.487434775073517e-8,0.42846388888888887,-0.0,0.02188385309730703,0.74,3.487434775073517e-8,0.7399999651256522,-0.0,-3.78,1506.5153,169.82965 -0.6110157977925437,0.016646298857503218,0.6110157977925437,0.0,0.43200000000000005,-0.0,0.018896618379459523,4.09,0.0,4.09,-0.0,-5.925,1505.8884,170.7928 -0.604711420203982,0.005732591726374478,0.604711420203982,0.0,0.4336695601851852,-0.0,0.006510226272787412,0.0,0.0,0.0,-0.0,-19.69,1505.269,171.97124 -0.5985528336486879,0.006314843502687978,0.5985528336486879,0.0,0.43600011574074077,-0.0,0.0071743750603054214,1.42,0.0,1.42,-0.0,-18.575,1504.6577,173.33109 -0.592536900022359,0.0093548379791922,0.592536900022359,0.0,0.4399488425925926,-0.0,0.010632414868807661,1.61,0.0,1.61,-0.0,-13.774999999999999,1504.0544,174.79475 -0.5866329904329316,0.007684159220640489,0.5866329904329316,0.0,0.4400003472222222,-0.0,0.008737047804078024,2.7,0.0,2.7,-0.0,-16.255,1503.4564,176.95967 -0.5808199601654602,0.014726316706596054,0.5808199601654602,0.0,0.4440001157407408,-0.0,0.016750752513918252,7.5,0.0,7.5,-0.0,-7.9350000000000005,1502.8617,182.12878 -0.5750927436639398,0.012898826458449981,0.5750927436639398,0.0,0.4440081018518519,-0.0,0.014677815888635362,0.0,0.0,0.0,-0.0,-9.700000000000001,1502.2699,185.8179 -0.5695127939138837,0.007622666220914462,0.5695127939138837,0.0,0.4480001157407407,-0.0,0.008677337778842347,0.0,0.0,0.0,-0.0,-16.565,1501.6876,185.83664 -0.5640573106486337,0.004872663549223607,0.5640573106486337,0.0,0.4501516203703704,-0.0,0.0055489690152701904,0.0,0.0,0.0,-0.0,-22.045,1501.1128,185.83627 -0.5586849190729535,0.004050293058202342,0.5586849190729535,0.0,0.452,-0.0,0.004614213729386879,0.0,0.0,0.0,-0.0,-24.25,1500.5413,185.83516 -0.5533976310799832,0.004919710987068107,0.5533976310799832,0.0,0.45599953703703705,-0.0,0.005606802227942612,0.0,0.0,0.0,-0.0,-22.075,1499.9734,185.83368 -0.5481928753387161,0.007105654623408157,0.5481928753387161,0.0,0.45599953703703705,-0.0,0.008101084559322402,0.0,0.0,0.0,-0.0,-17.634999999999998,1499.409,185.83215 -0.5430725916397144,0.013143025808178062,0.5430725916397144,0.0,0.46,-0.0,0.014989832693152183,0.0,0.0,0.0,-0.0,-9.89,1498.8486,185.83095 -0.5380331247396628,0.018853314367036727,0.5380331247396628,0.0,0.4604638888888889,-0.0,0.02151049909352303,0.0,0.0,0.0,-0.0,-5.0200000000000005,1498.2919,185.83044 -0.5330774680016502,0.021236437964355565,0.5330774680016502,-1.621591997768609e-15,0.463999537037037,-1.621591997768609e-15,0.02423843977392526,0.0,0.0,0.0,-0.0,-3.4650000000000003,1497.7393,185.83096 -0.5282030841446617,0.016334393799932588,0.5282030841446617,0.0,0.46799976851851854,-0.0,0.018650269396380162,0.0,0.0,0.0,-0.0,-7.194999999999999,1497.1907,185.83287 -0.5234107151596374,0.018776861239396925,0.5234107151596374,0.0,0.46799976851851854,-0.0,0.021446824768534767,0.0,0.0,0.0,-0.0,-5.285,1496.6464,185.83652 -0.5186936331277754,0.01972035830135129,0.5186936331277754,7.40734695803269e-13,0.4719996527777777,-0.0,0.022532621476899717,0.19,7.40734695803269e-13,0.18999999999925926,-0.0,-4.72,1496.1057,185.97318 -0.5140495328836215,0.022179102075001376,0.5140495328836215,3.857316229916842e-5,0.4719996527777777,-6.61200941630693e-14,0.025351100749103385,0.71,3.8573162365288516e-5,0.7099614268376346,-0.0,-3.075,1495.5686,186.40288 -0.5095042897715963,0.01595802331423433,0.5095042897715963,0.0,0.4760001157407408,-0.0,0.018246770273848502,0.3,0.0,0.3,-0.0,-7.72,1495.0382,186.63254 -0.5050632387182828,0.014999421162581553,0.5050632387182828,0.0,0.4800005787037037,-0.0,0.017156682395771075,6.39,0.0,6.39,-0.0,-8.66,1494.5154,190.01486 -0.5006834123827626,0.019385174951918435,0.5006834123827626,4.736877556865692e-13,0.4800005787037037,-0.0,0.022180928009999195,10.94,4.736877556865692e-13,10.939999999999525,-0.0,-5.17,1493.9952,198.72238 -0.4963496835941117,0.02264664841515102,0.4963496835941117,0.00017954106695747238,0.4840002314814815,-4.49481746693338e-14,0.0259217829159825,4.93,0.00017954106700242056,4.929820458932998,-0.0,-3.1149999999999998,1493.4761,206.65034 -0.4920866577126274,0.019413195813659082,0.4920866577126274,0.0,0.4840002314814815,-0.0,0.022228378912299174,0.0,0.0,0.0,-0.0,-5.255,1492.9609,209.12624 -0.4879001357917495,0.021160565206144955,0.4879001357917495,0.0,0.48800034722222224,-0.0,0.024237424842854433,0.0,0.0,0.0,-0.0,-4.17,1492.4507,209.1422 -0.48374428752171816,0.023744017859084983,0.48374428752171816,-3.4955206688808967e-12,0.4919994212962963,-3.4955206688808967e-12,0.027205837892064523,0.0,0.0,0.0,-0.0,-2.6650000000000005,1491.9398,209.14622 -0.4795130689619211,0.028956049971896953,0.4795130689619211,0.01901514558086104,0.4919994212962963,-0.0009848544163114192,0.033189443064097775,0.02,0.01999999999717246,2.8275404240218906e-12,-0.0,0.17500000000000027,1491.4152,209.17456 -0.47531886005983487,0.027808145544550664,0.47531886005983487,-0.0017689966125202497,0.4959997685185185,-0.0017689966125202497,0.03188493092849034,0.0,0.0,0.0,-0.0,-0.52,1490.8905,209.20488 -0.47029921352293436,0.028648574080502146,0.47029921352293436,-0.04788364625228485,0.4959997685185185,-0.04788364625228485,0.03286254515301232,0.0,0.0,0.0,-0.0,-0.08500000000000085,1490.2565,209.33936 -0.47643163784204506,0.032027076529941884,0.47643163784204506,3.3010764125797745,0.4999997685185186,3.3010764125797745,0.036718934692337016,0.0,0.0,0.0,-0.0,1.4100000000000001,1491.0302,208.12257 -0.5045081290854363,0.027134912926952286,0.5045081290854363,6.329555350552952,0.503999537037037,-7.1170159455714604e-6,0.031038900523585513,6.33,6.3295624675688975,0.0004375324311022938,-0.0,-1.135,1494.4497,207.38222 -0.5453875514883062,0.025319546673059957,0.5453875514883062,2.222386619105969,0.503999537037037,-4.2746673532936084e-10,0.02887245755561655,6.79,2.222386619533436,4.567613380466564,-0.0,-2.165,1499.1027,208.82857 -0.5424291369526139,0.019703740809580747,0.5424291369526139,1.4765966227514583e-16,0.5079996527777778,-0.0,0.02247349543327148,1.33,1.4765966227514583e-16,1.3299999999999998,-0.0,-5.7700000000000005,1498.7778,212.66475 -0.5373901487554175,0.01567735854914368,0.5373901487554175,0.0,0.5079996527777778,-0.0,0.01788777686035963,0.0,0.0,0.0,-0.0,-8.86,1498.2205,213.47812 -0.5324523860325963,0.017112450067663734,0.5324523860325963,0.0,0.511999537037037,-0.0,0.01953239504946152,0.0,0.0,0.0,-0.0,-7.785,1497.6692,213.47057 -0.5275740123021834,0.02209249305151231,0.5275740123021834,4.4922808528635727e-10,0.5159998842592592,-0.0,0.025225945840178884,4.25,4.4922808528635727e-10,4.249999999550772,-0.0,-4.390000000000001,1497.1195,215.7653 -0.5227723906996303,0.019523510897508395,0.5227723906996303,0.0,0.5159998842592592,-0.0,0.022300729673558332,0.0,0.0,0.0,-0.0,-6.09,1496.5735,217.87842 -0.5180494131905443,0.023561104577566445,0.5180494131905443,-5.590890766199589e-16,0.520000462962963,-5.590890766199589e-16,0.026922421020838427,0.0,0.0,0.0,-0.0,-3.59,1496.0315,217.89606 -0.5135874159691842,0.02547819974079706,0.5135874159691842,0.13457518261434298,0.520000462962963,-1.9806545851806497e-11,0.029123072866357593,6.92,0.13457518263414953,6.7854248173658505,-0.0,-2.4850000000000003,1495.5149,221.32753 -0.5093168637182043,0.025019060466897863,0.5093168637182043,0.0030818023453856066,0.5240002314814816,-6.1441889994547e-13,0.02860778865724637,5.69,0.0030818023460000257,5.686918197654,-0.0,-2.8449999999999998,1495.0162,227.62917 -0.5055920887048112,0.02478528188379349,0.5055920887048112,0.00015865424567236495,0.5279998842592593,-6.332156968783433e-14,0.02834878909205353,3.07,0.00015865424573568654,3.069841345754264,-0.0,-3.08,1494.5779,231.83478 -0.5098762221867342,0.028799048950029667,0.5098762221867342,1.7799425189989275,0.5279998842592593,-3.714237874805161e-5,0.03292853399300412,1.78,1.7799796613776755,2.033862232471262e-5,-0.0,-0.9550000000000001,1495.0818,233.2018 -0.5128604240996834,0.028551171541733592,0.5128604240996834,-4.27846352392621e-6,0.5319998842592593,-4.27846352392621e-6,0.032637505575011196,0.0,0.0,0.0,-0.0,-1.1900000000000004,1495.4303,233.20184 -0.5080774256161923,0.03183033950687466,0.5080774256161923,0.48358884494691706,0.5319998842592593,0.48358884494691706,0.03639961869531939,0.0,0.0,0.0,-0.0,0.3799999999999999,1494.8707,233.20181 -0.5025443644456619,0.027928269007120865,0.5025443644456619,-9.219181501117164e-8,0.5359994212962963,-9.219181501117164e-8,0.03195137893239718,0.0,0.0,0.0,-0.0,-1.6,1494.2168,233.20174 -0.4977761701561842,0.026337010985132858,0.4977761701561842,-1.414089389176016e-11,0.5395353009259259,-1.414089389176016e-11,0.03014238279657563,0.0,0.0,0.0,-0.0,-2.5199999999999996,1493.6475,233.2017 -0.49523593482835476,0.028328233228279584,0.49523593482835476,-2.478740349637901e-7,0.54,-2.478740349637901e-7,0.03242794547800071,0.0,0.0,0.0,-0.0,-1.4949999999999997,1493.3419,233.20183 -0.5076704845787399,0.031212836036612,0.5076704845787399,3.760861851410439,0.5439997685185185,-0.019138119412027914,0.03569461454576503,3.78,3.7799999708224665,2.917753313957938e-8,-0.0,-0.22499999999999987,1494.8229,233.41989 -0.5363772377545006,0.03612776258952128,0.5363772377545006,4.531383082871836,0.5439997685185185,4.531383082871836,0.04122467168057959,0.0,0.0,0.0,-0.0,1.8699999999999999,1498.1078,231.3633 -0.5565318883302589,0.03354826882971716,0.5565318883302589,1.2850447229409294,0.5479999999999999,1.2850447229409294,0.03822505489843424,0.0,0.0,0.0,-0.0,0.6600000000000001,1500.3107,228.56218 -0.5700333876398219,0.03452588762046398,0.5700333876398219,3.204135639687163,0.5498481481481481,2.244135639687194,0.039301458923324206,0.96,0.9599999999999694,3.05355740692903e-14,-0.0,1.0150000000000001,1501.7422,226.75287 -0.6493314144447199,0.034828610829507375,0.6493314144447199,12.500740020582189,0.5520004629629629,2.230740020582531,0.03944176133867859,10.27,10.269999999999657,3.4319991293330076e-13,-0.0,1.01,1509.5206,224.41577 -0.7254065679003443,0.03205397643947962,0.7254065679003443,3.183278251998533,0.5559922453703704,-0.006721653018661126,0.03614120916526448,3.19,3.1899999050171943,9.49828057461577e-8,-0.0,-0.3600000000000001,1516.137,223.7004 -0.7325274031722061,0.03245863733451183,0.7325274031722061,-0.025477171219364787,0.5560002314814815,-0.025477171219364787,0.036583392318893515,0.0,0.0,0.0,-0.0,-0.18500000000000005,1516.7203,223.9151 -0.7428181971783648,0.037264364767309384,0.7428181971783648,4.1034545747427185,0.56,4.1034545747427185,0.04197676076145887,0.0,0.0,0.0,-0.0,1.7100000000000002,1517.5535,222.27652 -0.7768509616817352,0.03619015712387394,0.7768509616817352,2.886476420473034,0.5600517361111111,2.886476420473034,0.04069496931470032,0.0,0.0,0.0,-0.0,1.255,1520.2288,218.80226 -0.7746896458823711,0.03042436226670019,0.7746896458823711,-9.650050775296264e-7,0.5639996527777777,-9.650050775296264e-7,0.034215215083473874,0.0,0.0,0.0,-0.0,-1.35,1520.0624,218.15634 -0.7621714186307114,0.032827368532765855,0.7621714186307114,-0.01001736322684606,0.5663305555555556,-0.01001736322684606,0.03694127802314262,0.0,0.0,0.0,-0.0,-0.31000000000000005,1519.0895,218.32886 -0.7699883150960554,0.037477299983120584,0.7699883150960554,3.7156424429694668,0.5679997685185185,3.7156424429694668,0.04215702549328472,0.0,0.0,0.0,-0.0,1.5650000000000004,1519.6989,216.92204 -0.8871617731867126,0.04990108265143272,0.8871617731867126,14.654550671229755,0.5715351851851852,14.654550671229755,0.05582141195220361,0.0,0.0,0.0,-0.0,5.655,1528.1583,207.58157 -1.149047264766546,0.05358999629018945,1.149047264766546,18.405135611389753,0.5719994212962963,17.115135611389753,0.05934806792413179,1.29,1.29,0.0,-0.0,6.575,1543.6056,191.7229 -1.5069402064658726,0.053049766155281536,1.5069402064658726,16.851825095229753,0.5760005787037037,15.991825095229752,0.05813988294929025,0.86,0.86,0.0,-0.0,6.154999999999999,1559.7986,175.2153 -2.099566521951596,0.06855154400249536,2.099566521951596,26.104874252189756,0.5760005787037037,26.074874252189755,0.0741870350824146,0.03,0.03,0.0,-0.0,9.925,1579.6047,153.9828 -3.05779272365073,0.06127816654805218,3.05779272365073,23.56518539258975,0.5800003472222222,20.52518539258975,0.06538632543919295,3.04,3.04,0.0,-0.0,7.85,1602.0573,130.57002 -3.8535267711859937,0.045617956216358765,3.8535267711859937,8.16876971482931,0.5807946759259259,8.16876971482931,0.048260136142899875,0.0,0.0,0.0,-0.0,3.23,1615.8702,114.88303 -4.585025115887468,0.056484468627032394,4.585025115887468,16.286025468509752,0.5840005787037037,16.286025468509752,0.05937463309509759,0.0,0.0,0.0,-0.0,6.265,1626.25,100.554214 -5.255397948933318,0.04974493420830829,5.255397948933318,10.856691307069752,0.5853530092592593,10.856691307069752,0.052029525335837566,0.0,0.0,0.0,-0.0,4.234999999999999,1634.3994,87.41263 -5.430825760649278,0.04209019319860849,5.430825760649278,4.0098450204681315,0.5880002314814815,4.0098450204681315,0.04397047650178978,0.0,0.0,0.0,-0.0,1.6750000000000003,1636.3604,80.01286 -5.835212038407363,0.05694410760291477,5.835212038407363,15.817979420109753,0.5903311342592593,15.817979420109753,0.0593324394272082,0.0,0.0,0.0,-0.0,6.09,1640.6494,70.11853 -7.482049958577189,0.0760540483241503,7.482049958577189,27.318539466509755,0.5920008101851852,27.318539466509755,0.0785332381515133,0.0,0.0,0.0,-0.0,10.39,1655.4956,48.57425 -10.326052643839793,0.10173266958386015,10.326052643839793,20.261192321777344,0.5943310185185184,20.261192321777344,0.10384210563135854,0.0,0.0,0.0,-0.0,14.815,1674.7352,20.261192 -10.686544609465914,0.12184177401159942,10.686544609465914,7.5267525482177735,0.5959997685185184,7.446752548217773,0.1242161750481001,0.08,0.08,0.0,-0.0,17.735,1676.7845,7.4467525 -9.727466097238628,0.10902447067019651,9.727466097238628,2.7353918552362595,0.5987809027777777,2.7353918552362595,0.11152258592075565,0.0,0.0,0.0,-0.0,15.865,1671.169,2.7353919 -8.57846650403372,0.07446904484557255,8.57846650403372,1.00418155044263,0.5999998842592592,1.00418155044263,0.07651909539185665,0.0,0.0,0.0,-0.0,9.77,1663.6622,1.0042253 -7.5675056024393434,0.055623784729571316,7.5675056024393434,0.36127236022146886,0.6027810185185185,0.36127236022146886,0.05741347308307893,0.0,0.0,0.0,-0.0,5.275,1656.1738,0.37018755 -6.732939590802628,0.07184051467359265,6.732939590802628,0.12148708477861088,0.6039996527777778,0.12148708477861088,0.07446574041968476,0.0,0.0,0.0,-0.0,9.24,1649.1954,0.14889556 -6.050452401303268,0.08989211194951051,6.050452401303268,0.04751060489050483,0.6063304398148148,0.04751060489050483,0.09353900674323339,0.0,0.0,0.0,-0.0,12.795,1642.8126,0.07089375 -5.488465265296232,0.09893187842039987,5.488465265296232,0.02231481478398218,0.6079995370370371,0.02231481478398218,0.10331162806756114,0.0,0.0,0.0,-0.0,14.360000000000001,1636.9908,0.037631407 -5.019673919191611,0.10314199601825133,5.019673919191611,0.011660938877065916,0.6098476851851852,0.011660938877065916,0.10806010407703322,0.0,0.0,0.0,-0.0,15.045,1631.6588,0.021103349 -4.622969071917421,0.10259764495242082,4.622969071917421,0.006449853196866424,0.6120002314814815,0.006449853196866424,0.1078146713257075,0.0,0.0,0.0,-0.0,14.95,1626.7422,0.012161149 -4.337170641844836,0.11080881084278749,4.337170641844836,0.5636787304612888,0.6133524305555556,0.0036787304612887774,0.11671680710589571,0.56,0.56,0.0,-0.0,16.22,1622.9312,0.007105151 -4.359016512071526,0.08925924889206015,4.359016512071526,7.832088017192214,0.6159914351851852,0.0020880171922137616,0.09400090763349143,7.83,7.83,0.0,-0.0,12.620000000000001,1623.2312,0.004092311 -4.329181461017945,0.05847399049667201,4.329181461017945,1.0512277404339718,0.6162851851851852,0.0012277404339718426,0.061595828731906464,1.05,1.05,0.0,-0.0,6.005000000000001,1622.821,0.0024260536 -4.271353442562904,0.06363549444373139,4.271353442562904,6.680727749408333,0.6195356481481481,0.0007277494083329637,0.0670660872166516,6.68,6.68,0.0,-0.0,7.225,1622.018,0.001445058 -4.196993125011593,0.07026174452141976,4.196993125011593,0.30043442644845786,0.6199998842592592,0.00043442644845788223,0.07409747163228925,0.3,0.3,0.0,-0.0,8.755,1620.9691,0.00086511084 -3.9329602475811045,0.07281855029260016,3.9329602475811045,0.0002569019307207994,0.6227818287037037,0.0002569019307207994,0.07697813324710015,0.0,0.0,0.0,-0.0,9.280000000000001,1617.0887,0.00051249063 -3.696084419782671,0.07221354672905901,3.696084419782671,0.00015148548167811092,0.6240006944444445,0.00015148548167811092,0.07651409911825055,0.0,0.0,0.0,-0.0,9.155,1613.379,0.0003025134 -3.538927888357134,0.08222141363587497,3.538927888357134,1.6000793414012742,0.6253526620370371,7.93414012741663e-5,0.08725830746362674,1.6,1.6,0.0,-0.0,11.190000000000001,1610.7842,0.0001585571 -3.4017709686983513,0.08463930530836303,3.4017709686983513,0.8700401501186025,0.6278895833333333,4.0150118602528935e-5,0.08995614973694313,0.87,0.87,0.0,-0.0,11.610000000000001,1608.4236,8.026802e-5 -3.236912204949926,0.10305760414958182,3.236912204949926,2.3239289761944123e-5,0.6280518518518519,2.3239289761944123e-5,0.10973384311076177,0.0,0.0,0.0,-0.0,14.815000000000001,1605.4569,4.6467783e-5 -3.0649889683402782,0.10243555591284816,3.0649889683402782,0.010012814009026127,0.6303303240740741,1.28140090261267e-5,0.10929337673668313,0.01,0.01,0.0,-0.0,14.690000000000001,1602.1976,2.5624735e-5 -2.9105379334803017,0.10434027546913241,2.9105379334803017,7.196750530513991e-6,0.6319916666666667,7.196750530513991e-6,0.11154058324588406,0.0,0.0,0.0,-0.0,14.98,1599.1097,1.4392465e-5 -2.7706180335986073,0.10432399767718988,2.7706180335986073,3.036291999325623e-6,0.6322856481481481,3.036291999325623e-6,0.11172875599854584,0.0,0.0,0.0,-0.0,15.0,1596.1675,6.0723996e-6 -2.643426193657731,0.09394783940622088,2.643426193657731,9.41868851232443e-7,0.6347809027777778,9.41868851232443e-7,0.10079333732106165,0.0,0.0,0.0,-0.0,13.26,1593.361,1.88372e-6 -2.5513692340370318,0.10962984066224431,2.5513692340370318,1.5585986679598993e-7,0.6360001157407408,1.5585986679598993e-7,0.11777447213044215,0.0,0.0,0.0,-0.0,15.77,1591.2441,3.1171925e-7 -2.526825828803529,0.11851172507480234,2.526825828803529,-1.299953095541469e-6,0.6362856481481481,-1.299953095541469e-6,0.1273624148724788,0.0,0.0,0.0,-0.0,17.060000000000002,1590.6669,-2.59994e-6 -2.56159039298655,0.11722806049986968,2.56159039298655,7.929996868584341,0.6387810185185185,-3.131415658328072e-6,0.12591828539893898,7.93,7.93,0.0,-0.0,16.805,1591.4829,-6.2630274e-6 -2.650931163106743,0.10334812377859919,2.650931163106743,9.26999499426625,0.6399917824074074,-5.005733750034244e-6,0.1108667914992322,9.27,9.27,0.0,-0.0,14.675,1593.5303,-1.0011969e-5 -2.7929414266066708,0.08532503079472918,2.7929414266066708,7.149993409839666,0.6400512731481481,-6.590160334605684e-6,0.09135384248891887,7.15,7.15,0.0,-0.0,11.55,1596.6467,-1.3181189e-5 -2.9876017615100174,0.06993343309128572,2.9876017615100174,10.61999244801272,0.6418483796296296,-7.55198727908454e-6,0.07468650432726755,10.62,10.62,0.0,-0.0,8.34,1600.6704,-1.5105115e-5 -3.2359463576353265,0.07554356797117617,3.2359463576353265,-7.55851555486963e-6,0.6435354166666667,-7.55851555486963e-6,0.08043829593619517,0.0,0.0,0.0,-0.0,9.454999999999998,1605.4391,-1.5118174e-5 -3.5393329994159872,0.08883863696650093,3.5393329994159872,6.03999372299978,0.6439998842592592,-6.277000220487865e-6,0.0942805025896211,6.04,6.04,0.0,-0.0,11.954999999999998,1610.791,-1.2554789e-5 -3.914617663586184,0.07938785473050276,3.914617663586184,15.019996237583815,0.6442856481481481,-3.7624161849533547e-6,0.08393718420410354,15.02,15.02,0.0,-0.0,10.105,1616.8096,-7.5251155e-6 -4.368516004884748,0.08770338938477208,4.368516004884748,12.249998477930806,0.6458482638888889,-1.5220691938318066e-6,0.09235500052449945,12.25,12.25,0.0,-0.0,11.58,1623.3612,-3.0441847e-6 -4.744908266146294,0.09081013885289443,4.744908266146294,7.0099998840986695,0.6471538194444444,-1.1590133009436591e-7,0.09533665689678633,7.01,7.01,0.0,-0.0,12.055,1628.297,-2.3180293e-7 -4.8343488877403535,0.09752803916520662,4.8343488877403535,4.3100001231572165,0.6479927083333333,1.2315721666729093e-7,0.10231933798264817,4.31,4.31,0.0,-0.0,13.17,1629.4122,2.4631413e-7 -4.627838145369953,0.09615107268800836,4.627838145369953,5.9473918967156997e-8,0.6480521990740741,5.9473918967156997e-8,0.10103639027653734,0.0,0.0,0.0,-0.0,12.965,1626.805,1.1894777e-7 -4.2976966500214635,0.09326417323611041,4.2976966500214635,1.687320079701065e-8,0.6487947916666666,1.687320079701065e-8,0.09826980358413415,0.0,0.0,0.0,-0.0,12.5,1622.3851,3.3746396e-8 -3.9944856790223433,0.09643354017587547,3.9944856790223433,0.03000000424659481,0.6498487268518519,4.246594811831896e-9,0.10188366693438099,0.03,0.03,0.0,-0.0,13.055,1618.0157,8.493189e-9 -3.7805165063789214,0.0986698462514498,3.7805165063789214,3.300000002099386,0.6507814814814814,2.099385820407158e-9,0.10445862424996886,3.3,3.3,0.0,-0.0,13.434999999999999,1614.7279,4.1987716e-9 -3.60517172410766,0.09533689377063718,3.60517172410766,6.000819877044238e-10,0.6515357638888889,6.000819877044238e-10,0.10110772380218891,0.0,0.0,0.0,-0.0,12.89,1611.8917,1.200164e-9 -3.4169002524365757,0.10658050074445731,3.4169002524365757,8.450128104388677e-11,0.6519921296296297,8.450128104388677e-11,0.11325697909257999,0.0,0.0,0.0,-0.0,14.719999999999999,1608.6886,1.6900256e-10 -3.2261850186826626,0.12087127281928363,3.2261850186826626,4.0549688623337337e-11,0.6520001157407407,4.0549688623337337e-11,0.12871740422068695,0.0,0.0,0.0,-0.0,16.83,1605.2587,8.109938e-11 -3.0547690974679846,0.1240859201771626,3.0547690974679846,4.63388225382212e-12,0.6520517361111111,4.63388225382212e-12,0.1324096663561808,0.0,0.0,0.0,-0.0,17.3,1601.9982,9.2677645e-12 -2.899475543193983,0.15398136463912604,2.899475543193983,-1.4185284021792144e-11,0.6522856481481482,-1.4185284021792144e-11,0.16463071478115393,0.0,0.0,0.0,-0.0,20.985,1598.8823,-2.8370568e-11 -2.8357053658408105,0.18350664485009344,2.8357053658408105,-1.1062884114507324e-11,0.6527943287037037,-1.1062884114507324e-11,0.19636107214271187,0.0,0.0,0.0,-0.0,24.04,1597.5542,-2.2125768e-11 -3.1789811556991094,0.15716373635883585,3.1789811556991094,14.15999999999374,0.653352662037037,-6.259011104150659e-12,0.16745755070509868,14.16,14.16,0.0,-0.0,21.25,1604.3784,-1.2518022e-11 -3.5597351040173226,0.12346099876753411,3.5597351040173226,7.369999999996307,0.653848611111111,-3.6926039481712625e-12,0.13099576319238898,7.37,7.37,0.0,-0.0,17.075,1611.1343,-7.385208e-12 -3.6038749927601996,0.1151053237226212,3.6038749927601996,1.0399999999977967,0.653848611111111,-2.2034592032441268e-12,0.12207438212481526,1.04,1.04,0.0,-0.0,15.905000000000001,1611.8702,-4.4069184e-12 -3.456427693508331,0.13217231928621248,3.456427693508331,-1.1395903751774157e-12,0.653848611111111,-1.1395903751774157e-12,0.14039198976691983,0.0,0.0,0.0,-0.0,18.235,1609.3755,-2.2791808e-12 -3.256123409335145,0.10171911993490913,3.256123409335145,-5.178031939828242e-13,0.6543310185185185,-5.178031939828242e-13,0.10828481403609456,0.0,0.0,0.0,-0.0,13.93,1605.8103,-1.0356064e-12 -3.088736992855782,0.1021146908373667,3.088736992855782,-3.0083729019108865e-13,0.6543310185185185,-3.0083729019108865e-13,0.10891969530202904,0.0,0.0,0.0,-0.0,14.025,1602.6586,-6.016746e-13 -3.1434167809085634,0.11964825806258889,3.1434167809085634,8.599999999999824,0.653848611111111,-1.7662954432364651e-13,0.12753831651271172,8.6,8.6,0.0,-0.0,16.630000000000003,1603.7065,-3.532591e-13 -3.8081657648839804,0.14532305035619075,3.8081657648839804,18.299999999999894,0.653848611111111,-1.053382912579865e-13,0.153807433644136,18.3,18.3,0.0,-0.0,19.78,1615.1631,-2.1067658e-13 -4.1278236085969935,0.14487785595349503,4.1278236085969935,-6.327031184124608e-14,0.653352662037037,-6.327031184124608e-14,0.15288062417699322,0.0,0.0,0.0,-0.0,19.69,1619.9767,-1.2654062e-13 -3.845571584505696,0.1523604121989471,3.845571584505696,-3.8102401550713845e-14,0.653352662037037,-3.8102401550713845e-14,0.16119739841947536,0.0,0.0,0.0,-0.0,20.595,1615.7468,-7.62048e-14 -3.603189976483327,0.1796019347629032,3.603189976483327,-2.2829638570207375e-14,0.6527943287037037,-2.2829638570207375e-14,0.19047728571373881,0.0,0.0,0.0,-0.0,23.505,1611.8589,-4.5659277e-14 -3.4002763252361032,0.12990795573202765,3.4002763252361032,-1.0218467409304432e-14,0.6522856481481482,-1.0218467409304432e-14,0.13807072450061084,0.0,0.0,0.0,-0.0,17.995,1608.3973,-2.0436935e-14 -3.266522792004781,0.09359796958651925,3.266522792004781,0.3700000000000022,0.6520517361111111,2.2439139440869912e-15,0.09962765076079674,0.37,0.37,0.0,-0.0,12.64,1606.0007,4.487828e-15 -3.2291472871857088,0.11749995897794781,3.2291472871857088,3.9500000000000113,0.6519921296296297,1.1193155845008778e-14,0.1251229757112681,3.95,3.95,0.0,-0.0,16.36,1605.3135,2.2386312e-14 -3.3205061089445684,0.1465398360272241,3.3205061089445684,8.240000000000013,0.6518894675925926,1.3264911189599736e-14,0.15588507446544556,8.24,8.24,0.0,-0.0,20.060000000000002,1606.9796,2.6529822e-14 -3.496047928323691,0.10161787824144032,3.496047928323691,6.160000000000008,0.6511538194444445,8.360988530481488e-15,0.10789176577965164,6.16,6.16,0.0,-0.0,13.95,1610.0562,1.6721977e-14 -3.4683883224854295,0.09880489935495544,3.4683883224854295,0.17000000000000484,0.6503311342592593,4.8373700099022325e-15,0.1049360305210869,0.17,0.17,0.0,-0.0,13.52,1609.5818,9.67474e-15 -3.3965391176989472,0.1188815396615179,3.3965391176989472,2.7450220238144496e-15,0.6493528935185184,2.7450220238144496e-15,0.12635662274895604,0.0,0.0,0.0,-0.0,16.59,1608.3317,5.490044e-15 -3.527855963894899,0.13134240825597002,3.527855963894899,8.240000000000002,0.6482863425925927,1.2519483656015248e-15,0.13940465562231832,8.24,8.24,0.0,-0.0,18.26,1610.597,2.5038967e-15 -3.645341854415363,0.11295424661302347,3.645341854415363,4.250000000000001,0.6480008101851852,5.54965663826976e-16,0.11974231245008517,4.25,4.25,0.0,-0.0,15.735,1612.5535,1.1099313e-15 -3.5586511089175166,0.10949010148314699,3.5586511089175166,0.7600000000000003,0.647890162037037,3.2705678511030516e-16,0.11617354038431602,0.76,0.76,0.0,-0.0,15.24,1611.1161,6.5411357e-16 -3.448707133363757,0.12723826660899118,3.448707133363757,2.34,0.64678125,1.9342566450813424e-16,0.13516230873909849,2.34,2.34,0.0,-0.0,17.78,1609.242,3.8685133e-16 -3.5149860842311114,0.1326849589606392,3.5149860842311114,6.15,0.645352199074074,1.0903312499522786e-16,0.140848703949877,6.15,6.15,0.0,-0.0,18.509999999999998,1610.3788,2.1806625e-16 -3.61305792314797,0.12436821174455205,3.61305792314797,4.4,0.6440515046296297,6.215581368255753e-17,0.13188565719957826,4.4,4.4,0.0,-0.0,17.44,1612.0222,1.2431163e-16 -3.8592416592181547,0.11666829984197082,3.8592416592181547,9.73,0.6438894675925926,3.566601300131439e-17,0.12341893719220422,9.73,9.73,0.0,-0.0,16.34,1615.9587,7.1332026e-17 -4.1961696387018375,0.11518070836075917,4.1961696387018375,8.68,0.6427809027777778,2.0464223361435293e-17,0.12146952839798324,8.68,8.68,0.0,-0.0,16.105,1620.9574,4.0928447e-17 -4.392216247729688,0.11652176798113525,4.392216247729688,5.84,0.6407940972222222,1.1760385765052246e-17,0.1226774296899512,5.84,5.84,0.0,-0.0,16.32,1623.6843,2.3520772e-17 -4.405487590699698,0.1207814732333977,4.405487590699698,3.55,0.6399997685185186,6.685463962194457e-18,0.12714805919978134,3.55,3.55,0.0,-0.0,16.935,1623.8645,1.3370928e-17 -4.450306776038098,0.12359606532387417,4.450306776038098,4.11,0.6395354166666667,3.3162291142710294e-18,0.13006259647961382,4.11,4.11,0.0,-0.0,17.325,1624.469,6.6324582e-18 -4.704549662403945,0.1227840655914524,4.704549662403945,7.85,0.6378482638888888,5.703201977436339e-19,0.12894475184352183,7.85,7.85,0.0,-0.0,17.225,1627.7869,1.1406404e-18 -5.224668635851393,0.12077944772517497,5.224668635851393,16.01,0.6360001157407408,-8.8189199262851e-19,0.12635345252461855,16.01,16.01,0.0,-0.0,16.935,1634.0492,-1.763784e-18 -5.907953735247832,0.12032612063767967,5.907953735247832,14.19,0.6355359953703703,-6.997396873115501e-19,0.12531628818562515,14.19,14.19,0.0,-0.0,16.810000000000002,1641.3893,-1.3994794e-18 -5.8017090733854735,0.12634473906992597,5.8017090733854735,-3.725316714581899e-19,0.6338483796296296,-3.725316714581899e-19,0.13167144800844335,0.0,0.0,0.0,-0.0,17.68,1640.3055,-7.4506334e-19 -5.305468245678956,0.13949860026582153,5.305468245678956,-1.987487278802532e-19,0.6319996527777777,-1.987487278802532e-19,0.14585469227756628,0.0,0.0,0.0,-0.0,19.455,1634.9657,-3.9749746e-19 -4.830318873566093,0.14851374520613433,4.830318873566093,-1.174106236065391e-19,0.6315355324074073,-1.174106236065391e-19,0.15581460174376915,0.0,0.0,0.0,-0.0,20.595,1629.3624,-2.3482125e-19 -4.7455775294920555,0.1546735807921092,4.7455775294920555,7.28,0.6287943287037038,-6.973871210259639e-20,0.1623825930808789,7.28,7.28,0.0,-0.0,21.38,1628.3054,-1.3947742e-19 -5.175466672067511,0.17227450836269553,5.175466672067511,12.29,0.628,-3.9820610397622e-20,0.18028736879701734,12.29,12.29,0.0,-0.0,23.22,1633.4841,-7.964122e-20 -5.636193510128081,0.17645553555530344,5.636193510128081,9.85,0.6267813657407407,-2.3427624181815658e-20,0.18408891010848488,9.85,9.85,0.0,-0.0,23.62,1638.577,-4.6855248e-20 -5.646940950674517,0.14034966813853697,5.646940950674517,2.86,0.624052199074074,-1.362682477718226e-20,0.1464109560824594,2.86,2.86,0.0,-0.0,19.735,1638.6908,-2.725365e-20 -5.30100215454078,0.09717526677098112,5.30100215454078,-7.851386732438799e-21,0.6238902777777778,-7.851386732438799e-21,0.10160607064524801,0.0,0.0,0.0,-0.0,13.67,1634.9154,-1.5702773e-20 -4.9015620849237616,0.08591496496844467,4.9015620849237616,-3.573390761763886e-21,0.6207944444444444,-3.573390761763886e-21,0.09009015238804896,0.0,0.0,0.0,-0.0,11.815,1630.2368,-7.1467815e-21 -4.538264727091912,0.09522448784347412,4.538264727091912,0.68,0.6199998842592592,-1.2320844116815802e-21,0.10013457358160589,0.68,0.68,0.0,-0.0,13.535,1625.6378,-2.4641688e-21 -4.23562874028683,0.10678106209941615,4.23562874028683,-6.741406881723886e-22,0.6183303240740741,-6.741406881723886e-22,0.11257244613274936,0.0,0.0,0.0,-0.0,15.49,1621.5164,-1.3482814e-21 -3.9521399924535947,0.11817357603370986,3.9521399924535947,-3.315398864042922e-22,0.615999537037037,-3.315398864042922e-22,0.12490151485952365,0.0,0.0,0.0,-0.0,17.275,1617.3793,-6.6307977e-22 -3.698132377407897,0.12890987040412535,3.698132377407897,-1.6711965265654304e-22,0.6151532407407407,-1.6711965265654304e-22,0.13658407335861614,0.0,0.0,0.0,-0.0,18.8,1613.4121,-3.342393e-22 -3.4741568991609477,0.13039508268139222,3.4741568991609477,-7.164191140969697e-23,0.6120002314814815,-7.164191140969697e-23,0.13847793829916516,0.0,0.0,0.0,-0.0,19.119999999999997,1609.681,-1.4328382e-22 -3.274518139370154,0.15150494551276877,3.274518139370154,1.4192104667296292e-23,0.6115356481481482,1.4192104667296292e-23,0.1612503971994722,0.0,0.0,0.0,-0.0,21.740000000000002,1606.1467,2.838421e-23 -3.0963288254238117,0.15850613105743047,3.0963288254238117,6.704736461663634e-23,0.6080510416666667,6.704736461663634e-23,0.1690536415625717,0.0,0.0,0.0,-0.0,22.66,1602.8052,1.3409473e-22 -2.9370728640277735,0.12348884667112765,2.9370728640277735,6.358844936095739e-23,0.6078891203703704,6.358844936095739e-23,0.13196583028927655,0.0,0.0,0.0,-0.0,18.42,1599.6517,1.271769e-22 -2.7928329598890698,0.12639549112225268,2.7928329598890698,-9.978385209396532e-24,0.6042853009259259,-9.978385209396532e-24,0.13532641538905932,0.0,0.0,0.0,-0.0,18.945,1596.6444,-1.995677e-23 -2.6611105524117513,0.16082995351015952,2.6611105524117513,-1.344746572670016e-22,0.6039916666666666,-1.344746572670016e-22,0.17250569802857735,0.0,0.0,0.0,-0.0,23.130000000000003,1593.7592,-2.6894931e-22 -2.541084975423906,0.17518989754961653,2.541084975423906,-2.836515865927586e-22,0.6002854166666667,-2.836515865927586e-22,0.18823365720749272,0.0,0.0,0.0,-0.0,24.775,1591.0029,-5.6730317e-22 -2.4320094739262696,0.12708032456780927,2.4320094739262696,-4.31260386656681e-22,0.5999998842592592,-4.31260386656681e-22,0.13676732014009796,0.0,0.0,0.0,-0.0,19.245,1588.3828,-8.625208e-22 -2.3331987712135955,0.1429817399097309,2.3331987712135955,-5.510523356153767e-22,0.5962851851851851,-5.510523356153767e-22,0.1541212070303968,0.0,0.0,0.0,-0.0,21.395,1585.9058,-1.1021047e-21 -2.2440420643811874,0.1605949928423075,2.2440420643811874,0.21,0.5959997685185184,-6.167786106512575e-22,0.1733610277879311,0.21,0.21,0.0,-0.0,23.45,1583.579,-1.2335572e-21 -2.1639863311728327,0.11631379431680738,2.1639863311728327,-6.021905151644802e-22,0.5920523148148148,-6.021905151644802e-22,0.12573207073841736,0.0,0.0,0.0,-0.0,18.05,1581.4095,-1.204381e-21 -2.0925315287229496,0.10713814962726356,2.0925315287229496,-4.810391506068097e-22,0.591992824074074,-4.810391506068097e-22,0.11596048609556171,0.0,0.0,0.0,-0.0,16.7,1579.4043,-9.620783e-22 -2.0338275341815826,0.12461611400583303,2.0338275341815826,1.27,0.5880002314814815,-1.7280761746222518e-22,0.1350229571861616,1.27,1.27,0.0,-0.0,19.37,1577.705,-3.4561523e-22 -1.9946292484911348,0.10529788017407708,1.9946292484911348,3.95,0.5879922453703703,3.912314133805557e-22,0.11417554266683513,3.95,3.95,0.0,-0.0,16.555,1576.5427,7.8246283e-22 -1.9684039373783377,0.09881322490066374,1.9684039373783377,1.0752118097483684e-21,0.5840005787037037,1.0752118097483684e-21,0.1071979102688537,0.0,0.0,0.0,-0.0,15.625,1575.7523,2.1504236e-21 -1.9487394024171167,0.1146296774928864,1.9487394024171167,1.7359964390848666e-21,0.5835359953703704,1.7359964390848666e-21,0.12440378865930514,0.0,0.0,0.0,-0.0,18.115000000000002,1575.1527,3.471993e-21 -1.9295828803015989,0.12006299797066747,1.9295828803015989,0.96,0.5800003472222222,2.230448093103057e-21,0.13034921290919976,0.96,0.96,0.0,-0.0,19.005000000000003,1574.5627,4.460896e-21 -1.9051354921792139,0.12192720070968525,1.9051354921792139,2.54,0.5787818287037036,2.415429386811104e-21,0.13243717635541571,2.54,2.54,0.0,-0.0,19.31,1573.8013,4.8308588e-21 -1.8699266709472213,0.11748444116401671,1.8699266709472213,2.1478033391139547e-21,0.5760005787037037,2.1478033391139547e-21,0.12770184999636436,0.0,0.0,0.0,-0.0,18.775,1572.6873,4.2956067e-21 -1.8366557830751762,0.10396566591436689,1.8366557830751762,0.54,0.5738478009259259,1.3646087018682878e-21,0.11308446412079874,0.54,0.54,0.0,-0.0,16.799999999999997,1571.6151,2.7292174e-21 -1.895703860951835,0.10110235631401737,1.895703860951835,8.16,0.5719994212962963,5.88858084290423e-22,0.10983794110287894,8.16,8.16,0.0,-0.0,16.369999999999997,1573.5049,1.1777162e-21 -1.9912928945398454,0.1136880645283875,1.9912928945398454,3.22,0.5680513888888888,6.173292229413273e-23,0.12328092111335749,3.22,3.22,0.0,-0.0,18.415,1576.4427,1.2346584e-22 -2.031135435082538,0.11927678290762972,2.031135435082538,1.91,0.5679997685185185,-7.569428356893007e-23,0.12924421198766622,1.91,1.91,0.0,-0.0,19.215,1577.6259,-1.5138857e-22 -1.9918506014473443,0.09235779115301945,1.9918506014473443,-4.0326575785785365e-23,0.5639996527777777,-4.0326575785785365e-23,0.10014976353408937,0.0,0.0,0.0,-0.0,15.079999999999998,1576.4595,-8.065315e-23 -1.9256388268571978,0.07284648114112473,1.9256388268571978,-1.6431939523595657e-23,0.5639916666666667,-1.6431939523595657e-23,0.0790936307195935,0.0,0.0,0.0,-0.0,11.27,1574.4406,-3.286388e-23 -1.8759870223856112,0.08755289468790003,1.8759870223856112,0.61,0.56,-7.522161862490517e-24,0.09515551936071615,0.61,0.61,0.0,-0.0,14.36,1572.8805,-1.5044324e-23 -1.9242616901963925,0.0999703693275211,1.9242616901963925,8.34,0.558330324074074,-3.36584623494188e-24,0.10854654781255406,8.34,8.34,0.0,-0.0,16.575,1574.3978,-6.7316925e-24 -2.040064602581568,0.1020500205174595,2.040064602581568,4.9,0.5560002314814815,-2.138285383615943e-25,0.1105595275739578,4.9,4.9,0.0,-0.0,16.95,1577.8878,-4.276571e-25 -2.1526351186118133,0.095850176063567,2.1526351186118133,5.11,0.5520519675925926,1.0990852879722192e-24,0.10363203456849167,5.11,5.11,0.0,-0.0,15.995000000000001,1581.0955,2.1981706e-24 -2.1496187835081835,0.07369389748794168,2.1496187835081835,7.001972289053422e-25,0.5520004629629629,7.001972289053422e-25,0.07968115815020282,0.0,0.0,0.0,-0.0,11.729999999999999,1581.0117,1.4003945e-24 -2.1421621030546674,0.09372741815616711,2.1421621030546674,3.8,0.5479999999999999,3.9761772183853496e-25,0.10135560587057837,3.8,3.8,0.0,-0.0,15.75,1580.8042,7.9523544e-25 -2.687529538436931,0.09837923922670541,2.687529538436931,25.31,0.5479921296296296,2.385163101690352e-25,0.10548221334862999,25.31,25.31,0.0,-0.0,16.41,1594.3491,4.770326e-25 -3.244835075573432,0.0692119640961692,3.244835075573432,4.12,0.5439997685185185,1.438190312197827e-25,0.07368892644961404,4.12,4.12,0.0,-0.0,10.719999999999999,1605.6029,2.8763806e-25 -3.1778831890446657,0.07601753804809219,3.1778831890446657,8.670267287587913e-26,0.540794212962963,8.670267287587913e-26,0.08099752979946395,0.0,0.0,0.0,-0.0,12.32,1604.3578,1.7340535e-25 -3.0412743332168923,0.0902846767239352,3.0412743332168923,0.5,0.54,5.208852871257416e-26,0.09635692180424293,0.5,0.5,0.0,-0.0,15.16,1601.7338,1.0417706e-25 -3.2279858067256066,0.07141344162894518,3.2279858067256066,9.49,0.5359994212962963,3.054488838389597e-26,0.0760475321659743,9.49,9.49,0.0,-0.0,11.455,1605.292,6.1089777e-26 -3.2984195233898945,0.0664868658550244,3.2984195233898945,1.8222295561640673e-26,0.5359994212962963,1.8222295561640673e-26,0.07074445752804331,0.0,0.0,0.0,-0.0,10.31,1606.581,3.644459e-26 -3.1225336480117245,0.09067530133992947,3.1225336480117245,1.0960674543569775e-26,0.5319998842592593,1.0960674543569775e-26,0.09667877105495275,0.0,0.0,0.0,-0.0,15.46,1603.3085,2.1921349e-26 -2.9621660002739425,0.12344201781145814,2.9621660002739425,6.479533993650285e-27,0.5298482638888888,6.479533993650285e-27,0.13187390307843694,0.0,0.0,0.0,-0.0,20.744999999999997,1600.1598,1.2959068e-26 -2.816774375289242,0.14613008687199774,2.816774375289242,2.744448437414861e-27,0.5279998842592593,2.744448437414861e-27,0.15640549332489545,0.0,0.0,0.0,-0.0,23.770000000000003,1597.1542,5.488897e-27 -2.686694668405429,0.13240473476140582,2.686694668405429,0.96,0.5240002314814816,-3.909170941687569e-27,0.14196599942647334,0.96,0.96,0.0,-0.0,22.21,1594.3306,-7.818342e-27 -2.5696087522103688,0.10444781436733969,2.5696087522103688,2.4,0.5240002314814816,-1.2098231228197918e-26,0.11217747184240842,2.4,2.4,0.0,-0.0,18.185,1591.6696,-2.4196462e-26 -2.463328670332481,0.06830543512306701,2.463328670332481,-2.006431196797898e-26,0.520000462962963,-2.006431196797898e-26,0.07347682779794872,0.0,0.0,0.0,-0.0,11.39,1589.147,-4.0128624e-26 -2.3659715046514447,0.07357945260289658,2.3659715046514447,-2.6048994440230497e-26,0.5183310185185186,-2.6048994440230497e-26,0.07927026688006743,0.0,0.0,0.0,-0.0,12.655000000000001,1586.7388,-5.209799e-26 -2.2758927481315254,0.05998973493588684,2.2758927481315254,-2.829385530192035e-26,0.5159998842592592,-2.829385530192035e-26,0.06472404464999301,0.0,0.0,0.0,-0.0,9.51,1584.4207,-5.658771e-26 -2.1916657880364867,0.05281982795414324,2.1916657880364867,-2.5040477372992232e-26,0.511999537037037,-2.5040477372992232e-26,0.05706941592651801,0.0,0.0,0.0,-0.0,7.675000000000001,1582.1686,-5.0080955e-26 -2.1122131760355987,0.06331447407483008,2.1122131760355987,-1.5421162961509613e-26,0.511999537037037,-1.5421162961509613e-26,0.06850388215394988,0.0,0.0,0.0,-0.0,10.525,1579.9634,-3.0842326e-26 -2.0378015624276125,0.07458928723552624,2.0378015624276125,-4.6183083620466604e-27,0.5079996527777778,-4.6183083620466604e-27,0.08081235804084709,0.0,0.0,0.0,-0.0,13.29,1577.8215,-9.236617e-27 -1.9682872594112983,0.07491247527725706,1.9682872594112983,4.043213354700988e-27,0.5067805555555556,4.043213354700988e-27,0.08126927192084814,0.0,0.0,0.0,-0.0,13.42,1575.7488,8.086427e-27 -1.9033878100945625,0.05469048823973487,1.9033878100945625,7.92940024843224e-27,0.503999537037037,7.92940024843224e-27,0.05940681038257161,0.0,0.0,0.0,-0.0,8.540000000000001,1573.7465,1.58588e-26 -1.8510226890448311,0.05967675331715883,1.8510226890448311,5.5022038951874715e-27,0.4999997685185186,5.5022038951874715e-27,0.06489177043388969,0.0,0.0,0.0,-0.0,10.045,1572.0804,1.1004408e-26 -1.866936277405082,0.07310343221516953,1.866936277405082,3.95,0.4999997685185186,2.4355473780766258e-27,0.079465934760241,3.95,3.95,0.0,-0.0,13.274999999999999,1572.5917,4.8710948e-27 -1.9733590656144937,0.08554990659566274,1.9733590656144937,6.77,0.4959997685185185,4.246039489009721e-28,0.09280030543390994,6.77,6.77,0.0,-0.0,15.940000000000001,1575.9025,8.492079e-28 -2.18031199061003,0.08825111204049797,2.18031199061003,10.37,0.49366840277777774,-5.451324244582412e-29,0.0953700000661526,10.37,10.37,0.0,-0.0,16.47,1581.8584,-1.0902648e-28 -2.222400541364681,0.08570780301920583,2.222400541364681,-3.1356576999710065e-29,0.4919994212962963,-3.1356576999710065e-29,0.09255472226548574,0.0,0.0,0.0,-0.0,16.03,1583.0002,-6.2713154e-29 -2.2396933032307085,0.0837833785651295,2.2396933032307085,2.78,0.48800034722222224,-1.833020977384119e-29,0.09045011293128385,2.78,2.78,0.0,-0.0,15.785,1583.4631,-3.666042e-29 -2.9536410408874025,0.08550834070902243,2.9536410408874025,30.96,0.48800034722222224,-1.0881733642285163e-29,0.09135893829565012,30.96,30.96,0.0,-0.0,15.95,1599.9877,-2.1763467e-29 -3.687187862358516,0.07234633033973296,3.687187862358516,4.98,0.4840002314814815,-6.528030576783064e-30,0.07666162899946337,4.98,4.98,0.0,-0.0,13.219999999999999,1613.2351,-1.3056061e-29 -3.796802478269631,0.05128340797083296,3.796802478269631,6.56,0.48167002314814816,-3.921402886885503e-30,0.05428348084771796,6.56,6.56,0.0,-0.0,7.845,1614.9846,-7.842806e-30 -3.7598864057334414,0.04646674515415753,3.7598864057334414,-2.3575883971278317e-30,0.4800005787037037,-2.3575883971278317e-30,0.04920282091049195,0.0,0.0,0.0,-0.0,6.39,1614.4011,-4.7151768e-30 -3.552175849072247,0.04680277799204349,3.552175849072247,-1.3809155621313087e-30,0.4760001157407408,-1.3809155621313087e-30,0.04966304197896654,0.0,0.0,0.0,-0.0,6.66,1611.0073,-2.7618311e-30 -3.348218062074476,0.05523687059818384,3.348218062074476,-8.147506510803583e-31,0.4760001157407408,-8.147506510803583e-31,0.058741330936859695,0.0,0.0,0.0,-0.0,9.255,1607.476,-1.6295013e-30 -3.1674422660441897,0.06045425411017594,3.1674422660441897,-4.45895476080467e-31,0.4719996527777777,-4.45895476080467e-31,0.06442256991165068,0.0,0.0,0.0,-0.0,10.84,1604.1613,-8.9179095e-31 -3.0052657258721176,0.05406156267756358,3.0052657258721176,-2.422131265448431e-31,0.4701513888888889,-2.422131265448431e-31,0.05772319630866295,0.0,0.0,0.0,-0.0,9.175,1601.0225,-4.8442625e-31 -2.897852096983806,0.060521253669202316,2.897852096983806,1.8,0.46799976851851854,-5.882817902418977e-32,0.06470825680760088,1.8,1.8,0.0,-0.0,11.045,1598.8489,-1.1765636e-31 -2.8538242668049687,0.06290349407996289,2.8538242668049687,1.69,0.463999537037037,1.8303842354097443e-31,0.06729378839081662,1.69,1.69,0.0,-0.0,11.805,1597.9346,3.6607685e-31 -2.8482588680661545,0.05662748574280313,2.8482588680661545,4.88,0.463999537037037,4.207752088231687e-31,0.06058417145691179,4.88,4.88,0.0,-0.0,10.14,1597.818,8.415504e-31 -2.858763535470303,0.04324815784788586,2.858763535470303,3.3,0.46,5.917707044949123e-31,0.046263635239324,3.3,3.3,0.0,-0.0,6.1,1598.0378,1.1835414e-30 -2.8632899287790474,0.03495757645989082,2.8632899287790474,0.87,0.45920532407407405,6.334133912082584e-31,0.037392782331887434,0.87,0.87,0.0,-0.0,2.9299999999999997,1598.1323,1.2668268e-30 -2.8396437837340787,0.03573511301944544,2.8396437837340787,2.09,0.45599953703703705,4.838250112391208e-31,0.038236332361335064,2.09,2.09,0.0,-0.0,3.3649999999999998,1597.6371,9.6765e-31 -2.750085903029817,0.04597344240503856,2.750085903029817,2.767265810804661e-31,0.45200810185185186,2.767265810804661e-31,0.04925027362929617,0.0,0.0,0.0,-0.0,7.324999999999999,1595.7233,5.5345316e-31 -2.6248826775934644,0.059067369026561324,2.6248826775934644,1.5065016875209004e-31,0.452,1.5065016875209004e-31,0.06338803070717286,0.0,0.0,0.0,-0.0,11.27,1592.9406,3.0130034e-31 -2.5032552280648868,0.0662507672360011,2.5032552280648868,8.341886256655557e-32,0.4480001157407407,8.341886256655557e-32,0.07122356617819252,0.0,0.0,0.0,-0.0,13.280000000000001,1590.1072,1.6683773e-31 -2.3863073266058925,0.059483175635708686,2.3863073266058925,3.175802230889865e-32,0.4480001157407407,3.175802230889865e-32,0.06406311395044649,0.0,0.0,0.0,-0.0,11.579999999999998,1587.2499,6.3516045e-32 -2.3010681272991484,0.058154667560617455,2.3010681272991484,4.5017598586174054e-33,0.4440001157407408,4.5017598586174054e-33,0.06271815003393438,0.0,0.0,0.0,-0.0,11.385000000000002,1585.0776,9.00352e-33 -2.309894624086388,0.05903189447592117,2.309894624086388,4.09,0.44166932870370373,1.7244682124135427e-33,0.06365503239144056,4.09,4.09,0.0,-0.0,11.705,1585.3063,3.4489364e-33 -2.513982398867911,0.04934773472885039,2.513982398867911,9.93,0.4400003472222222,8.189207209633202e-34,0.05304326913362706,9.93,9.93,0.0,-0.0,8.89,1590.3625,1.6378414e-33 -2.899872655635507,0.049936392307795126,2.899872655635507,13.2,0.43611064814814815,3.5539170702341392e-34,0.053389719760988295,13.2,13.2,0.0,-0.0,9.13,1598.8905,7.107834e-34 -3.1794425447868497,0.04049664380939597,3.1794425447868497,5.7,0.43600011574074077,1.997287272845697e-34,0.043148835140485446,5.7,5.7,0.0,-0.0,5.855,1604.3871,3.9945745e-34 -3.130445294720323,0.03387502280936014,3.130445294720323,9.373751259835431e-35,0.43200000000000005,9.373751259835431e-35,0.03611443098740008,0.0,0.0,0.0,-0.0,3.32,1603.4596,1.8747503e-34 -3.011261010823556,0.03975003227514183,3.011261010823556,1.31,0.43194837962962956,4.830050038287383e-35,0.04243917941648596,1.31,1.31,0.0,-0.0,5.745,1601.1415,9.6601e-35 -2.9918979131641708,0.04072043604346158,2.9918979131641708,3.81,0.428,2.73962274606077e-35,0.04348569558404717,3.81,3.81,0.0,-0.0,6.255,1600.7562,5.4792455e-35 -3.0920407208170393,0.04169957711578296,3.0920407208170393,6.36,0.4261517361111111,1.555768782214776e-35,0.044476698449358476,6.36,6.36,0.0,-0.0,6.665,1602.7224,3.1115376e-35 -3.253854624079022,0.0330165669501358,3.253854624079022,4.83,0.42400011574074076,4.840730434743702e-36,0.03514860818206579,4.83,4.83,0.0,-0.0,3.1950000000000003,1605.7687,9.681461e-36 -3.426131954041643,0.04304001483933732,3.426131954041643,6.69,0.42121863425925926,-6.524383947922367e-36,0.04573157207589066,6.69,6.69,0.0,-0.0,7.2700000000000005,1608.8497,-1.3048768e-35 -3.582897654435444,0.051288197039562396,3.582897654435444,4.71,0.41999976851851856,-1.5403399883813452e-35,0.054405211210393795,4.71,4.71,0.0,-0.0,10.015,1611.5216,-3.08068e-35 -3.6937129277571263,0.038617085013507385,3.6937129277571263,6.5,0.4164640046296296,-1.8662061930891063e-35,0.04091783057072663,6.5,6.5,0.0,-0.0,5.745,1613.3407,-3.7324124e-35 -3.722636762395971,0.034065700702121754,3.722636762395971,3.0,0.4159996527777778,-1.3611943336315103e-35,0.036084863104338664,3.0,3.0,0.0,-0.0,3.87,1613.8065,-2.7223887e-35 -3.6053043706558774,0.028870761773410136,3.6053043706558774,-6.841396064070128e-36,0.4121109953703704,-6.841396064070128e-36,0.030618293849937885,0.0,0.0,0.0,-0.0,1.58,1611.8939,-1.3682803e-35 -3.405096297934996,0.027689970696037288,3.405096297934996,-2.283916520141969e-36,0.41200046296296294,-2.283916520141969e-36,0.029428322707741036,0.0,0.0,0.0,-0.0,1.005,1608.4819,-4.5689766e-36 -3.211132137215,0.027597618824648056,3.211132137215,-3.976165353026941e-6,0.4080084490740741,-3.976165353026941e-6,0.029394180614372222,0.0,0.0,0.0,-0.0,1.1300000000000001,1604.9794,-7.953217e-6 -3.0250615856324816,0.02323290611734419,3.0250615856324816,-6.380552882636758e-7,0.40794895833333333,-6.380552882636758e-7,0.024800416140455066,0.0,0.0,0.0,-0.0,-1.32,1601.4146,-0.00014048669 -2.8695943435493536,0.027193492638856766,2.8695943435493536,-0.0001433485332022318,0.40399999999999997,-0.0001433485332022318,0.029085448381167233,0.0,0.0,0.0,-0.0,1.12,1598.2637,-0.00028713202 -2.7834864259308643,0.03954274809569565,2.7834864259308643,2.0098722581856276,0.4037145833333334,-0.00012774181437228915,0.04234209107239169,2.01,2.01,0.0,-0.0,6.74,1596.4442,-0.00025581082 -2.7077108490234023,0.05003962907798868,2.7077108490234023,1.7599362009137887,0.40000023148148145,-6.379908621137314e-5,0.053637456177113685,1.76,1.76,0.0,-0.0,10.56,1594.7959,-0.00012767968 -2.6102706835108385,0.03771172986870968,2.6102706835108385,-1.5783285669831707e-5,0.39971435185185183,-1.5783285669831707e-5,0.04047874009363685,0.0,0.0,0.0,-0.0,6.205,1592.6072,-3.1571555e-5 -2.5091156452186296,0.0329859933649237,2.5091156452186296,5.079338863382812e-6,0.3960082175925926,5.079338863382812e-6,0.035458816059470794,0.0,0.0,0.0,-0.0,4.345000000000001,1590.2468,1.0158162e-5 -2.3980621960860056,0.03271938551745177,2.3980621960860056,1.5300028708374096,0.39571446759259266,2.8708374096175922e-6,0.03523211791772328,1.53,1.53,0.0,-0.0,4.26,1587.5433,5.74151e-6 -2.2779405563559005,0.031886588688248764,2.2779405563559005,2.5383567020958704e-7,0.3921108796296296,2.5383567020958704e-7,0.03440186945267386,0.0,0.0,0.0,-0.0,4.04,1584.4744,5.0767005e-7 -2.19967693277224,0.025605278522751445,2.19967693277224,-1.6249240160172123e-6,0.3919487268518519,-1.6249240160172123e-6,0.027661526507717193,0.0,0.0,0.0,-0.0,0.8300000000000001,1582.3865,-3.2545831e-6 -2.2093470332673744,0.02599013604100208,2.2093470332673744,6.669997897063246,0.3884644675925926,-2.102936711367027e-6,0.028072642845950745,6.67,6.669999999999957,4.295008793064881e-14,-0.0,1.1749999999999998,1582.6484,-4.2061542e-6 -2.23992221612222,0.023120021318800442,2.23992221612222,-0.0010110291923322945,0.38799999999999996,-0.0010110291923322945,0.024959610300581254,0.0,0.0,0.0,-0.0,-0.51,1583.4692,0.009901177 -2.1871323913202683,0.02043934468130311,2.1871323913202683,0.6690637651634639,0.3848466435185185,-4.0180056491889327e-10,0.022085506183620214,1.74,0.6690637655652645,1.0709362344347355,-0.0,-2.14,1582.0449,0.10456699 -2.1103876842676463,0.017269160059466604,2.1103876842676463,0.0,0.3840003472222222,-0.0,0.01868519302498007,0.0,0.0,0.0,-0.0,-4.455,1579.9117,0.939892 -2.0378015624276125,0.01567556056839017,2.0378015624276125,1.5765166949677222e-16,0.38166932870370374,-0.0,0.016983390780283186,0.71,1.5765166949677222e-16,0.7099999999999999,-0.0,-5.69,1577.8215,1.2982683 -1.9700180212544633,0.017807960046254272,1.9700180212544633,4.1086527892142396e-8,0.3799997685185186,-0.0,0.019318434401823265,1.67,4.1086527892142396e-8,1.669999958913472,-0.0,-3.8449999999999998,1575.8013,2.4927523 -1.9448396733417752,0.02790741899473657,1.9448396733417752,2.124066351538032,0.37920590277777777,2.124066351538032,0.030289297015162954,0.0,0.0,0.0,-0.0,2.6449999999999996,1575.0331,2.1240664 -1.9461201513066169,0.03185668182335799,1.9461201513066169,2.1104969670516325,0.37611087962962964,0.7804969670516323,0.03457476371862098,1.33,1.33,0.0,-0.0,4.74,1575.0724,0.7808142 -1.9173907658746074,0.021530309931813076,1.9173907658746074,-2.5148514286955257e-5,0.3759486111111111,-2.5148514286955257e-5,0.02338050742308629,0.0,0.0,0.0,-0.0,-0.9950000000000001,1574.1842,0.3687446 -1.8570938956237784,0.021095910265234784,1.8570938956237784,-5.261277970546986e-6,0.37321898148148147,-5.261277970546986e-6,0.022936581205817663,0.0,0.0,0.0,-0.0,-1.1649999999999998,1572.276,0.3686736 -1.8065968273203536,0.03209422513291625,1.8065968273203536,0.20746103549912004,0.3719998842592593,0.15746103549912002,0.03493110362908113,0.05,0.05,0.0,-0.0,5.06,1570.6296,0.18277645 -1.7926187070016475,0.03042792552765218,1.7926187070016475,2.518764356305063,0.37120578703703705,0.058764356305062826,0.03312729993322385,2.46,2.46,0.0,-0.0,4.295,1570.1658,0.084106535 -1.8218826775222374,0.020623529384147434,1.8218826775222374,3.0089687810024337,0.3684645833333333,-1.0094798023072608e-6,0.022439299334477494,3.01,3.008969790482236,0.001030209517763298,-0.0,-1.295,1571.1328,0.05155653 -1.8091725133905596,0.019309039043285143,1.8091725133905596,-2.1340107242285168e-10,0.3680003472222222,-2.1340107242285168e-10,0.02101466868936631,0.0,0.0,0.0,-0.0,-2.21,1570.7147,0.119800106 -1.7553833452237415,0.021281586616048884,1.7553833452237415,-0.0002078718688605625,0.36615196759259255,-0.0002078718688605625,0.023188067457392016,0.0,0.0,0.0,-0.0,-0.735,1568.9122,0.12082976 -1.7057646117922933,0.025208948061636528,1.7057646117922933,0.05546845692193132,0.3644642361111111,0.05546845692193132,0.027497268146865508,0.0,0.0,0.0,-0.0,1.8050000000000002,1567.1998,0.08031393 -1.6619656080754626,0.03337486798370524,1.6619656080754626,0.23545837891316226,0.36400011574074076,0.025458378913162282,0.03644056350945794,0.21,0.21,0.0,-0.0,6.03,1565.6464,0.04215913 -1.6682076280713596,0.04139838793313162,1.6682076280713596,3.423150586290263,0.3621513888888889,0.013150586290262854,0.045194632659394454,3.41,3.41,0.0,-0.0,9.43,1565.8702,0.023542626 -1.6855649587183492,0.025687030335982217,1.6855649587183492,1.2972542574162982,0.3604638888888889,0.007254257416298073,0.028031472724222347,1.29,1.29,0.0,-0.0,2.25,1566.4884,0.013586911 -1.6747024278731242,0.01576740107024877,1.6747024278731242,1.8523194089681284e-11,0.3599998842592593,-0.0,0.017210725969087563,3.89,1.8523194089681284e-11,3.8899999999814767,-0.0,-4.7,1566.1023,1.2919133 -1.6286587539286126,0.011275466126058084,1.6286587539286126,0.0,0.35920578703703704,-0.0,0.012320703941475162,9.73,0.0,9.73,-0.0,-9.21,1564.4374,8.105659 -1.5850760827989545,0.015222837588517404,1.5850760827989545,2.005645649560961e-12,0.3572189814814815,-0.0,0.016651238749209193,13.95,2.005645649560961e-12,13.949999999997994,-0.0,-5.05,1562.8175,19.955906 -1.6725096194032467,0.023047223081003747,1.6725096194032467,9.82775381811889,0.35611041666666665,1.7877538181202897,0.025158189246860477,8.04,8.0399999999986,1.399180771244346e-12,-0.0,0.8449999999999998,1566.024,26.126745 -1.8448996791028993,0.025057744511951866,1.8448996791028993,5.472565560493905,0.3559483796296296,4.932565560493905,0.027250914431680765,0.54,0.54,0.0,-0.0,2.02,1571.8826,22.76544 -1.9061443503101048,0.02270483367413865,1.9061443503101048,2.240471269917319,0.3546476851851852,1.1604712699191937,0.02466146715424351,1.08,1.0799999999981256,1.8745804908348874e-12,-0.0,0.6150000000000001,1573.8329,19.717115 -1.919559322373421,0.02231737002216131,1.919559322373421,2.461037004008743,0.35321898148148145,0.6010370040314346,0.024234163947534967,1.86,1.8599999999773082,2.2691828416299132e-11,-0.0,0.41999999999999993,1574.2517,18.842772 -1.9413484945547,0.022256846449529428,1.9413484945547,2.751037004005205,0.35211030092592593,0.6010370040314346,0.024158097972155936,2.15,2.1499999999737702,2.6229801664001683e-11,-0.0,0.41999999999999993,1574.9258,18.221823 -2.1623414980204383,0.029715375413241034,2.1623414980204383,14.133138102029754,0.35199988425925927,11.913138102029754,0.032122440788240204,2.22,2.22,0.0,-0.0,4.63,1581.3641,11.923736 -2.4043544627587528,0.028136872428172838,2.4043544627587528,4.355727195739745,0.35171423611111113,4.355727195739745,0.030294697787558337,0.0,0.0,0.0,-0.0,3.7649999999999997,1587.6998,4.355727 -2.3707399028566547,0.017657409942993474,2.3707399028566547,-2.5724655354369386e-13,0.3506474537037037,-2.5724655354369386e-13,0.019021635669103792,0.0,0.0,0.0,-0.0,-2.935,1586.859,2.7689464 -2.279636044850524,0.013548793928720243,2.279636044850524,0.0,0.34966921296296294,-0.0,0.014617141203086647,0.0,0.0,0.0,-0.0,-6.545,1584.5188,2.7689464 -2.195266064426799,0.014845315122315026,2.195266064426799,0.0,0.3488465277777778,-0.0,0.016038692488312044,0.0,0.0,0.0,-0.0,-5.24,1582.2666,2.7689464 -2.1168292486159745,0.019733054301726585,2.1168292486159745,-4.0847002541312e-6,0.3481105324074074,-4.0847002541312e-6,0.021348661771290245,0.0,0.0,0.0,-0.0,-1.1949999999999998,1580.0938,2.7689464 -2.043779257906496,0.01588658231955521,2.043779257906496,0.0,0.3480079861111111,-0.0,0.017210110305025762,0.0,0.0,0.0,-0.0,-4.23,1577.9965,2.772604 -1.9756151511727196,0.01682268938682932,1.9756151511727196,5.261047603036185e-6,0.34794849537037037,-2.6618248260807515e-15,0.01824763088375636,2.76,5.26104760569801e-6,2.7599947389523942,-0.0,-3.41,1575.9707,4.165585 -1.9843935333747513,0.023666394438906713,1.9843935333747513,5.801674760201911,0.34771435185185184,3.501674760201912,0.025666709914656013,2.3,2.2999999999999994,6.38378239159465e-16,-0.0,1.4849999999999999,1576.2355,4.443197 -1.9696556428869552,0.017116989654207448,1.9696556428869552,-3.686523462619153e-14,0.3472057870370371,-3.686523462619153e-14,0.018568985238662076,0.0,0.0,0.0,-0.0,-3.135,1575.7903,4.0271225 -1.9062807234588157,0.013833343589830457,1.9062807234588157,0.0,0.3466476851851852,-0.0,0.015025418259227095,0.0,0.0,0.0,-0.0,-6.05,1573.8372,4.0271287 -1.846922069417954,0.011844059307200543,1.846922069417954,0.0,0.3466476851851852,-0.0,0.01288017012659695,0.0,0.0,0.0,-0.0,-8.14,1571.948,4.031879 -1.7911499707160923,0.013183744037908545,1.7911499707160923,0.0,0.3461518518518519,-0.0,0.014353770470429348,1.25,0.0,1.25,-0.0,-6.655,1570.1168,4.6602836 -1.7385930337391784,0.01471249509110262,1.7385930337391784,0.0,0.3461518518518519,-0.0,0.01603635993829472,0.0,0.0,0.0,-0.0,-5.135,1568.3383,5.289147 -1.6890069406253476,0.01408586759807975,1.6890069406253476,6.217248937900877e-17,0.3456693287037037,-0.0,0.015370282325536867,0.28,6.217248937900877e-17,0.27999999999999997,-0.0,-5.7,1566.6102,5.4272957 -1.642183918707198,0.013218537356255756,1.642183918707198,0.0,0.3456693287037037,-0.0,0.014439339704742583,2.08,0.0,2.08,-0.0,-6.555000000000001,1564.9313,6.616342 -1.5978832674157748,0.013300973211445473,1.5978832674157748,0.0,0.3461518518518519,-0.0,0.01454456781404748,0.0,0.0,0.0,-0.0,-6.4750000000000005,1563.2981,7.6545424 -1.555919031098611,0.011917218742926127,1.555919031098611,0.0,0.3461518518518519,-0.0,0.013044699260120791,0.0,0.0,0.0,-0.0,-7.949999999999999,1561.7087,7.6529493 -1.516088473980626,0.01399130798594776,1.516088473980626,6.317169010117141e-16,0.3461518518518519,-0.0,0.015330219353690493,5.69,6.317169010117141e-16,5.6899999999999995,-0.0,-5.755000000000001,1560.16,10.489192 -1.4789181156128124,0.017909597268154404,1.4789181156128124,0.7151306830760598,0.3466476851851852,-9.673684694824321e-11,0.01964213643833087,7.64,0.7151306831727966,6.924869316827203,-0.0,-2.3200000000000003,1558.6776,17.08561 -1.4433994253118871,0.01335310186129733,1.4433994253118871,0.0,0.3472057870370371,-0.0,0.014658507854359524,0.0,0.0,0.0,-0.0,-6.41,1557.2258,20.908173 -1.4090303963652155,0.012760733466840738,1.4090303963652155,0.0,0.34771435185185184,-0.0,0.014021187795685222,0.6,0.0,0.6,-0.0,-7.035,1555.7866,21.4874 -1.376275629160821,0.011607789027318318,1.376275629160821,0.0,0.34794849537037037,-0.0,0.012765885958929602,0.0,0.0,0.0,-0.0,-8.31,1554.382,21.758259 -1.3450133945449105,0.01165555951584109,1.3450133945449105,0.0,0.34800000000000003,-0.0,0.012829748428738326,0.0,0.0,0.0,-0.0,-8.245,1553.0098,21.7583 -1.3151466003084809,0.01171096822987157,1.3151466003084809,0.0,0.3480079861111111,-0.0,0.012901880164077305,0.0,0.0,0.0,-0.0,-8.17,1551.6687,21.7583 -1.2865950534993977,0.009769757314590153,1.2865950534993977,0.0,0.3484641203703704,-0.0,0.010772363688343278,0.0,0.0,0.0,-0.0,-10.585,1550.3579,21.7583 -1.2592680981407334,0.008748103640997788,1.2592680981407334,0.0,0.34921886574074074,-0.0,0.009653847845783452,0.0,0.0,0.0,-0.0,-12.045,1549.0758,21.7583 -1.2330759363646715,0.009038283886901508,1.2330759363646715,0.0,0.35015162037037034,-0.0,0.00998216096877187,0.0,0.0,0.0,-0.0,-11.645,1547.8206,21.7583 -1.2079247353039388,0.011001341382450607,1.2079247353039388,0.0,0.35120578703703703,-0.0,0.012159891183822808,0.0,0.0,0.0,-0.0,-9.085,1546.5898,21.7583 -1.183799418849321,0.007254919822504719,1.183799418849321,0.0,0.3519482638888889,-0.0,0.008025186296716726,0.0,0.0,0.0,-0.0,-14.515,1545.385,21.7583 -1.1606564206056407,0.0066957675707289286,1.1606564206056407,0.0,0.35200787037037035,-0.0,0.007412323308629516,0.0,0.0,0.0,-0.0,-15.52,1544.2059,21.765915 -1.1383567057210813,0.011173062698599395,1.1383567057210813,0.0,0.35284641203703704,-0.0,0.012378048500592289,1.96,0.0,1.96,-0.0,-8.91,1543.0474,22.825592 -1.116832375099952,0.013901789821149856,1.116832375099952,0.0,0.3541518518518519,-0.0,0.015412448587816388,3.18,0.0,3.18,-0.0,-5.994999999999999,1541.9073,25.4004 -1.0961339331784792,0.008060293887506807,1.0961339331784792,0.0,0.35571446759259256,-0.0,0.0089426571623519,0.0,0.0,0.0,-0.0,-13.270000000000001,1540.7902,26.989904 -1.0762083955323143,0.011269513895737871,1.0762083955323143,0.0,0.35600000000000004,-0.0,0.012512088379103834,0.95,0.0,0.95,-0.0,-8.885,1539.6946,27.435612 -1.0572543109006276,0.0176599039162338,1.0572543109006276,0.005381884413227991,0.3564643518518519,-1.866699002100781e-12,0.019620604118619836,3.15,0.0053818844150946895,3.144618115584905,-0.0,-2.73,1538.6334,29.265528 -1.0405571461927374,0.018390594554030366,1.0405571461927374,0.5924475802101079,0.35815185185185183,-2.6481000998547583e-10,0.02044505256523871,2.6,0.592447580474918,2.0075524195250822,-0.0,-2.215,1537.6827,31.57293 -1.0239018078807594,0.01410234770924386,1.0239018078807594,0.0,0.3599482638888889,-0.0,0.015687586218337792,2.45,0.0,2.45,-0.0,-5.975,1536.7191,34.174225 -1.0064345112099424,0.012070584411536524,1.0064345112099424,0.0,0.36000787037037035,-0.0,0.013436418121259931,6.96,0.0,6.96,-0.0,-8.08,1535.6915,38.872196 -0.9895483328854173,0.012956561545454713,0.9895483328854173,0.0,0.36121863425925926,-0.0,0.014432143496591401,9.01,0.0,9.01,-0.0,-7.16,1534.681,46.800266 -0.973241841939619,0.009370741165058498,0.973241841939619,0.0,0.3637142361111111,-0.0,0.01044469877562851,0.54,0.0,0.54,-0.0,-11.549999999999999,1533.6887,51.4349 -0.9574780192514422,0.010208755760836033,0.9574780192514422,0.0,0.36400011574074076,-0.0,0.011385996126273256,3.77,0.0,3.77,-0.0,-10.43,1532.7135,53.63168 -0.9422198652014577,0.009032675173787785,0.9422198652014577,0.0,0.36521898148148146,-0.0,0.010080603383258883,2.84,0.0,2.84,-0.0,-12.065,1531.7542,56.900314 -0.9274493804102685,0.008408184006133324,0.9274493804102685,0.0,0.36771435185185186,-0.0,0.009389445868904847,3.55,0.0,3.55,-0.0,-13.07,1530.8105,60.056232 -0.9131530572032961,0.0066773658745952974,0.9131530572032961,0.0,0.3680083333333333,-0.0,0.007461157516280052,0.41,0.0,0.41,-0.0,-15.995,1529.8828,61.926483 -0.8992921495236742,0.008047162816257537,0.8992921495236742,0.0,0.3696696759259259,-0.0,0.008997113658698054,0.0,0.0,0.0,-0.0,-13.684999999999999,1528.9694,62.173077 -0.8858154435940544,0.010161565239487377,0.8858154435940544,0.0,0.3719483796296296,-0.0,0.011367821241602467,1.34,0.0,1.34,-0.0,-10.735,1528.0676,62.881687 -0.8727012288222186,0.01305352253378916,0.8727012288222186,0.0,0.37211041666666667,-0.0,0.014611593571039975,4.43,0.0,4.43,-0.0,-7.395,1527.1769,65.820465 -0.8599657155084774,0.01047533708134073,0.8599657155084774,0.0,0.3746479166666667,-0.0,0.01173242001984236,0.0,0.0,0.0,-0.0,-10.415000000000001,1526.299,67.95705 -0.8475840897051534,0.015572111213212819,0.8475840897051534,0.0,0.3760002314814815,-0.0,0.01745073002888827,0.0,0.0,0.0,-0.0,-5.11,1525.4329,67.98011 -0.8355463812105661,0.010392178995125505,0.8355463812105661,0.0,0.3772188657407407,-0.0,0.011652416410875943,0.58,0.0,0.58,-0.0,-10.595,1524.5786,68.28032 -0.8238800136676327,0.00953078467145379,0.8238800136676327,0.0,0.3799997685185186,-0.0,0.010692451920738998,2.04,0.0,2.04,-0.0,-11.815000000000001,1523.7389,69.566216 -0.8125309825182851,0.010594205355431312,0.8125309825182851,0.0,0.3804640046296296,-0.0,0.011891953448945045,2.64,0.0,2.64,-0.0,-10.44,1522.9105,71.87798 -0.8014726100568277,0.012189055394880497,0.8014726100568277,0.0,0.383714699074074,-0.0,0.013689522561484471,3.04,0.0,3.04,-0.0,-8.684999999999999,1522.0922,74.68826 -0.7906713993282363,0.015334227522147956,0.7906713993282363,4.1189274213593307e-16,0.38400833333333334,-0.0,0.017231037079607454,0.53,4.1189274213593307e-16,0.5299999999999996,-0.0,-5.575,1521.2819,76.28849 -0.780189560537947,0.008429169930400396,0.780189560537947,0.0,0.3866476851851852,-0.0,0.009476804230549179,0.04,0.0,0.04,-0.0,-13.594999999999999,1520.4849,76.60813 -0.7700418291245119,0.005308041974084029,0.7700418291245119,0.0,0.38799999999999996,-0.0,0.005970831671180235,0.0,0.0,0.0,-0.0,-19.39,1519.703,76.604675 -0.7601674705716904,0.0062442387577851975,0.7601674705716904,0.0,0.3901519675925926,-0.0,0.007027491000946909,8.19,0.0,8.19,-0.0,-17.465,1518.9323,80.78195 -0.7505271122231729,0.008536187163655245,0.7505271122231729,0.0,0.39200034722222227,-0.0,0.009611755436229455,9.29,0.0,9.29,-0.0,-13.59,1518.17,88.6212 -0.741130193918639,0.005484939586041348,0.741130193918639,0.0,0.3936696759259259,-0.0,0.006179110072453868,0.0,0.0,0.0,-0.0,-19.15,1517.4176,92.833626 -0.7319691172695019,0.00694585894268369,0.7319691172695019,0.0,0.39600023148148145,-0.0,0.007828754747892956,3.9,0.0,3.9,-0.0,-16.31,1516.6748,94.963745 -0.7230158580039392,0.00784407694953248,0.7230158580039392,0.0,0.3972188657407407,-0.0,0.008845432762469303,1.79,0.0,1.79,-0.0,-14.815000000000001,1515.9398,97.48748 -0.7142786858317718,0.00696443350324964,0.7142786858317718,0.0,0.40000023148148145,-0.0,0.007857259481529032,0.0,0.0,0.0,-0.0,-16.39,1515.2137,98.41064 -0.7057653810078578,0.005224598949228411,0.7057653810078578,0.0,0.4012189814814815,-0.0,0.005897168636666281,0.41,0.0,0.41,-0.0,-19.945,1514.4977,98.6234 -0.6974462024691781,0.008039399938003634,0.6974462024691781,0.0,0.40399999999999997,-0.0,0.009078567605991203,4.44,0.0,4.44,-0.0,-14.7,1513.7896,101.11223 -0.6893039834233249,0.007790258942043471,0.6893039834233249,0.0,0.40521898148148144,-0.0,0.008801300187225245,0.0,0.0,0.0,-0.0,-15.13,1513.0883,103.244736 -0.6813473389408127,0.00830901785593939,0.6813473389408127,0.0,0.4080003472222223,-0.0,0.009391688719337363,0.68,0.0,0.68,-0.0,-14.395000000000001,1512.3949,103.57513 -0.67356101033551,0.010189898586451071,0.67356101033551,0.0,0.40966990740740744,-0.0,0.011522879196189583,5.64,0.0,5.64,-0.0,-11.82,1511.7085,106.43987 -0.6659739170146306,0.005350496834409677,0.6659739170146306,0.0,0.41200046296296294,-0.0,0.0060531251857716085,0.0,0.0,0.0,-0.0,-19.95,1511.032,108.46983 -0.6585503552448633,0.008688794702399779,0.6585503552448633,0.0,0.41464768518518513,-0.0,0.009834165858134765,0.0,0.0,0.0,-0.0,-14.015,1510.3625,108.58959 -0.6512295101531297,0.005768935818016055,0.6512295101531297,0.0,0.4159996527777778,-0.0,0.006532293761184347,0.0,0.0,0.0,-0.0,-19.145,1509.695,108.609924 -0.6440176917849751,0.013241705046131489,0.6440176917849751,0.0,0.419205324074074,-0.0,0.015000483714794934,0.11,0.0,0.11,-0.0,-8.645,1509.0299,108.64852 -0.6369378131707975,0.023031369651744987,0.6369378131707975,-2.3524267302646587e-5,0.41999976851851856,-2.3524267302646587e-5,0.026101841750818793,0.0,0.0,0.0,-0.0,-1.005,1508.3698,108.690384 -0.6300194662598262,0.02118981559531904,0.6300194662598262,-9.673684694824318e-11,0.42400011574074076,-9.673684694824318e-11,0.024025165836023418,0.0,0.0,0.0,-0.0,-2.32,1507.7175,108.720474 -0.623283273835063,0.01176384543699399,0.623283273835063,0.0,0.42400011574074076,-0.0,0.013343614397607709,0.0,0.0,0.0,-0.0,-10.350000000000001,1507.0756,108.72664 -0.6167249872621416,0.011597847327746127,0.6167249872621416,0.0,0.428,-0.0,0.013160840940437079,0.0,0.0,0.0,-0.0,-10.655,1506.4438,108.72664 -0.6162562182637676,0.017227480925214075,0.6162562182637676,0.0,0.42846388888888887,-0.0,0.01954974613302438,0.0,0.0,0.0,-0.0,-5.345000000000001,1506.3984,108.721275 -0.6383624098367463,0.023766089360086347,0.6383624098367463,2.8299305188129744,0.43200000000000005,-3.548717413920305e-5,0.026932129772703328,2.83,2.8299660059871137,3.399401288625814e-5,-0.0,-0.9600000000000002,1508.5032,108.70106 -0.6655506941921372,0.02415719430800491,0.6655506941921372,3.119847673076007,0.4336695601851852,-0.00014437232564342312,0.02733020871969764,3.12,3.1199920454016503,7.954598349759756e-6,-0.0,-0.805,1510.994,108.69361 -0.6743269385041318,0.015977006871945806,0.6743269385041318,0.0,0.43600011574074077,-0.0,0.01806621070204297,0.0,0.0,0.0,-0.0,-6.665,1511.7764,108.7297 -0.6666399145872206,0.012715973531798737,0.6666399145872206,0.0,0.4399488425925926,-0.0,0.014385269525881962,0.0,0.0,0.0,-0.0,-9.844999999999999,1511.0917,108.70143 -0.6591186560392315,0.01691889372727975,0.6591186560392315,0.0,0.4400003472222222,-0.0,0.019148516927763166,3.42,0.0,3.42,-0.0,-5.995,1510.4141,110.515755 -0.6663483736089297,0.02461335014037978,0.6663483736089297,4.709899005761739,0.4440001157407408,-7.681238487369332e-5,0.02784496176527735,4.71,4.709975818146613,2.418185338693313e-5,-0.0,-0.8750000000000002,1511.0656,113.17127 -0.7797877897741823,0.031565525980602104,0.7797877897741823,17.190904127116443,0.4440081018518519,6.630904127116442,0.035489421236955934,10.56,10.56,0.0,-0.0,2.6550000000000002,1520.4541,110.67394 -0.8967975163217944,0.019502617172094044,0.8967975163217944,8.86970135116627e-10,0.4480001157407407,-0.0,0.021807226677746608,15.29,8.86970135116627e-10,15.289999999113029,-0.0,-4.45,1528.8035,114.35589 -0.8832877783548473,0.013584014562744771,0.8832877783548473,0.0,0.4501516203703704,-0.0,0.015198238976698891,0.0,0.0,0.0,-0.0,-9.42,1527.897,121.92104 -0.870210984859709,0.014313268282947891,0.870210984859709,0.0,0.452,-0.0,0.016023493366928904,0.0,0.0,0.0,-0.0,-8.77,1527.0062,121.92234 -0.8574697463002562,0.02016108647754057,0.8574697463002562,2.9159023462455022e-9,0.45599953703703705,-0.0,0.022583066972386375,4.56,2.9159023462455022e-9,4.559999997084097,-0.0,-4.21,1526.1254,124.16592 -0.8450411426076425,0.022778599339822982,0.8450411426076425,0.12202299437234908,0.45599953703703705,-1.8876095830186918e-11,0.025529611728121317,6.59,0.12202299439122517,6.467977005608775,-0.0,-2.4899999999999998,1525.2534,129.6927 -0.8330395500055651,0.010188528968409188,0.8330395500055651,0.0,0.46,-0.0,0.011425414953870833,0.0,0.0,0.0,-0.0,-13.424999999999999,1524.3992,132.87827 -0.8214249743347075,0.011912260837812154,0.8214249743347075,0.0,0.4604638888888889,-0.0,0.01336575951179405,0.0,0.0,0.0,-0.0,-11.41,1523.5607,132.89432 -0.8100965145331984,0.014967520606587934,0.8100965145331984,0.0,0.463999537037037,-0.0,0.01680295964076767,0.0,0.0,0.0,-0.0,-8.485,1522.7313,132.89432 -0.7990598414023639,0.014583650417196775,0.7990598414023639,0.0,0.46799976851851854,-0.0,0.016380828886908845,0.0,0.0,0.0,-0.0,-8.940000000000001,1521.9121,132.78558 -0.7882943694522524,0.01853027782447459,0.7882943694522524,1.2212453270876722e-15,0.46799976851851854,-0.0,0.02082489305815404,5.5,1.2212453270876722e-15,5.499999999999999,-0.0,-5.6899999999999995,1521.102,135.54222 -0.8300870888752919,0.028135233339362357,0.8300870888752919,12.23554734951432,0.4719996527777777,-0.07445264409981651,0.031555235886294,12.31,12.309999993614136,6.385864962377142e-9,-0.0,0.04499999999999993,1524.1871,140.55789 -0.8573628380877417,0.01641816165001299,0.8573628380877417,0.0,0.4719996527777777,-0.0,0.018390588900300736,2.12,0.0,2.12,-0.0,-7.5,1526.1179,145.0837 -0.8449996884642317,0.01582169761728625,0.8449996884642317,0.0,0.4760001157407408,-0.0,0.017732546539517616,0.1,0.0,0.1,-0.0,-8.105,1525.2505,146.25594 -0.8329714421258646,0.018860218141656213,0.8329714421258646,0.0,0.4800005787037037,-0.0,0.021149913719955952,0.0,0.0,0.0,-0.0,-5.824999999999999,1524.3943,146.3003 -0.8212184801035353,0.024154818883011277,0.8212184801035353,-5.984942782507354e-11,0.4800005787037037,-5.984942782507354e-11,0.02710238520810851,0.0,0.0,0.0,-0.0,-2.37,1523.5457,146.29868 -0.8098001680015102,0.01742951192870638,0.8098001680015102,0.0,0.4840002314814815,-0.0,0.019567141130754116,0.19,0.0,0.19,-0.0,-7.0,1522.7095,146.43063 -0.7987397766236106,0.01670837359699424,0.7987397766236106,0.0,0.4840002314814815,-0.0,0.018767681880984592,2.87,0.0,2.87,-0.0,-7.565,1521.8882,147.90804 -0.7879931128769859,0.014594373990425968,0.7879931128769859,0.0,0.48800034722222224,-0.0,0.01640185007285704,0.0,0.0,0.0,-0.0,-9.48,1521.0792,149.32108 -0.7775436011509487,0.014172336709099733,0.7775436011509487,0.0,0.4919994212962963,-0.0,0.01593589700843829,0.0,0.0,0.0,-0.0,-9.969999999999999,1520.282,149.32588 -0.767336171327654,0.02002656174101115,0.767336171327654,0.0,0.4919994212962963,-0.0,0.022530298668841358,0.0,0.0,0.0,-0.0,-5.295,1519.4928,149.34174 -0.7573494285112671,0.02018631836733797,0.7573494285112671,8.609779555968089e-15,0.4959997685185185,-0.0,0.022721727043554657,0.66,8.609779555968089e-15,0.6599999999999914,-0.0,-5.29,1518.7104,149.69267 -0.7496087439611753,0.025872444459158143,0.7496087439611753,6.392600031050877,0.4959997685185185,-1.2624581573538189e-8,0.02913380198028185,6.77,6.392600043675459,0.37739995632454154,-0.0,-1.81,1518.0969,153.25803 -0.7420669937790307,0.016333059546246132,0.7420669937790307,0.0,0.4999997685185186,-0.0,0.018399246505490796,3.89,0.0,3.89,-0.0,-8.27,1517.493,158.39598 -0.7327819910715333,0.012841566585766016,0.7327819910715333,0.0,0.503999537037037,-0.0,0.014473239771126084,0.0,0.0,0.0,-0.0,-11.55,1516.7411,160.22746 -0.723732982161287,0.01515310532744779,0.723732982161287,0.0,0.503999537037037,-0.0,0.01708684663577472,0.0,0.0,0.0,-0.0,-9.365,1515.999,160.26091 -0.7148980003472709,0.01419791071848068,0.7148980003472709,0.0,0.5079996527777778,-0.0,0.01601750638470095,0.0,0.0,0.0,-0.0,-10.325,1515.2655,160.26091 -0.7062690325830071,0.015252936786333094,0.7062690325830071,0.0,0.5079996527777778,-0.0,0.01721598368143161,0.0,0.0,0.0,-0.0,-9.37,1514.5403,160.10484 -0.7114853142623261,0.02701998092745315,0.7114853142623261,12.911550193004809,0.511999537037037,-8.002051707530321e-8,0.0304885952689209,13.02,12.911550273025325,0.10844972697467385,-0.0,-1.615,1514.9797,165.49734 -0.7873008205234491,0.030125289706677525,0.7873008205234491,0.530861876342564,0.5159998842592592,-0.019138119412027862,0.033857398550835305,0.55,0.5499999957545918,4.24540826104991e-9,-0.0,-0.2250000000000001,1521.0267,165.46568 -0.7800221309023412,0.029802333212740617,0.7800221309023412,-0.005951252206707612,0.5159998842592592,-0.005951252206707612,0.03350665138543613,0.0,0.0,0.0,-0.0,-0.375,1520.472,165.56891 -0.8152343449001411,0.03804692228875093,0.8152343449001411,8.180723666427344,0.520000462962963,7.7007236664273435,0.042701957135494156,0.48,0.48,0.0,-0.0,3.0549999999999997,1523.1089,162.3508 -0.9545760967726076,0.040641244816115286,0.9545760967726076,12.601072141149755,0.520000462962963,10.081072141149756,0.045333221977362836,2.52,2.52,0.0,-0.0,3.9450000000000003,1532.5322,153.39467 -1.1889233741305458,0.03927567077327941,1.1889233741305458,16.09516050514913,0.5240002314814816,8.07516050514913,0.04343838159449035,8.02,8.02,0.0,-0.0,3.195,1545.643,144.60365 -1.497381840669067,0.034109606834458794,1.497381840669067,14.471935403002353,0.5279998842592593,1.8819354030038977,0.03739152777959002,12.59,12.589999999998456,1.5438378353493932e-12,-0.0,0.8799999999999999,1559.4186,139.88144 -1.7842546247320483,0.036396223734584156,1.7842546247320483,10.576945703725936,0.5279998842592593,4.1569457037259365,0.039632117719194074,6.42,6.42,0.0,-0.0,1.73,1569.8865,137.05713 -1.879994612536645,0.033240683609710685,1.879994612536645,1.3914214448374738,0.5319998842592593,0.18142144490363205,0.03612419969023997,1.21,1.2099999999338418,6.615834602374804e-11,-0.0,0.27,1573.0079,135.53886 -1.8450618413669773,0.029078982196722006,1.8450618413669773,-6.319007382928435e-8,0.5319998842592593,-6.319007382928435e-8,0.031624003870671435,0.0,0.0,0.0,-0.0,-1.64,1571.8878,135.40138 -1.7890058018089325,0.025569591884451445,1.7890058018089325,-5.524080487690067e-16,0.5359994212962963,-5.524080487690067e-16,0.027840101701281386,0.0,0.0,0.0,-0.0,-3.545,1570.0453,135.40138 -1.7363130196010144,0.022274730931169943,1.7363130196010144,0.0,0.5395353009259259,-0.0,0.024280276786526826,0.0,0.0,0.0,-0.0,-5.535,1568.2599,135.40138 -1.7033152556741238,0.030052447793736274,1.7033152556741238,-1.0595054959146985e-6,0.54,-1.0595054959146985e-6,0.03278222736860267,0.0,0.0,0.0,-0.0,-1.3399999999999999,1567.114,135.08714 -1.8569800198597421,0.04070130261015316,1.8569800198597421,12.116286827700456,0.5439997685185185,7.326286827700456,0.044252696146715,4.79,4.79,0.0,-0.0,2.915,1572.2723,131.17058 -2.254782715218744,0.044235995625984396,2.254782715218744,16.448527025949755,0.5439997685185185,10.348527025949755,0.04774381102258875,6.1,6.1,0.0,-0.0,4.045,1583.8641,122.80578 -2.5242653195392526,0.03622147583847337,2.5242653195392526,2.00281867386769,0.5479999999999999,2.00281867386769,0.03892804897532573,0.0,0.0,0.0,-0.0,0.9249999999999998,1590.6063,116.63334 -2.7669959197646197,0.04928809812058945,2.7669959197646197,13.959167970749753,0.5498481481481481,13.959167970749753,0.05278907596993375,0.0,0.0,0.0,-0.0,5.395,1596.0894,108.52652 -3.5896783816131173,0.06303970338336908,3.5896783816131173,23.507307358109752,0.5520004629629629,23.507307358109752,0.06686622425522289,0.0,0.0,0.0,-0.0,8.965,1611.6345,89.800995 -4.7750309166706675,0.05647167752279472,4.7750309166706675,19.005073383309757,0.5559922453703704,18.225073383309756,0.0592728048985459,0.78,0.78,0.0,-0.0,6.99,1628.6749,68.90581 -5.725428418446432,0.04900384619263399,5.725428418446432,13.293965731069752,0.5560002314814815,12.193965731069753,0.051094474686594074,1.1,1.1,0.0,-0.0,4.734999999999999,1639.5151,53.675987 -7.088129622391231,0.06145528873154331,7.088129622391231,24.819385765869754,0.56,20.819385765869754,0.06358264595145958,4.0,4.0,0.0,-0.0,7.96,1652.2656,37.13943 -9.582964356274928,0.07227041257577685,9.582964356274928,21.859991874694824,0.5600517361111111,15.769991874694824,0.07396592896463361,6.09,6.09,0.0,-0.0,10.32,1670.2751,15.769992 -10.960375815289396,0.050935444121714385,10.960375815289396,16.64789161682129,0.5639996527777777,5.797891616821289,0.051881301198642114,10.85,10.85,0.0,-0.0,4.75,1678.2955,5.7978916 -10.80166509214544,0.05440190593715048,10.80166509214544,4.500065439935853,0.5663305555555556,2.130065439935853,0.0554409100094646,2.37,2.37,0.0,-0.0,5.6899999999999995,1677.4244,2.1300654 -9.687186553137202,0.045087144445421994,9.687186553137202,3.2517084760942496,0.5679997685185185,0.7817084760942494,0.04612708149003448,2.47,2.47,0.0,-0.0,2.8899999999999997,1670.9211,0.78202236 -8.538440703060823,0.035428334982761746,8.538440703060823,-0.0005605081515734457,0.5715351851851852,-0.0005605081515734457,0.036409750407254665,0.0,0.0,0.0,-0.0,-0.6499999999999999,1663.3829,0.38374344 -7.466314107475903,0.0332510050437396,7.466314107475903,-2.3150322532904075e-7,0.5719994212962963,-2.3150322532904075e-7,0.03433752042811984,0.0,0.0,0.0,-0.0,-1.5,1655.3699,0.38376626 -6.645787020127754,0.04102752797584899,6.645787020127754,0.2456956165950539,0.5760005787037037,0.2456956165950539,0.04254684607584887,0.0,0.0,0.0,-0.0,1.495,1648.4174,0.26334456 -5.990424133983678,0.04390033651094905,5.990424133983678,0.08541945068844313,0.5760005787037037,0.08541945068844313,0.04569792320878415,0.0,0.0,0.0,-0.0,2.545,1642.2172,0.11301001 -5.444919867460884,0.050704215186863265,5.444919867460884,0.036022427148077435,0.5800003472222222,0.036022427148077435,0.05296430030699429,0.0,0.0,0.0,-0.0,4.64,1636.5151,0.056496795 -5.102849254583001,0.051776311172619355,5.102849254583001,2.8277388553236764,0.5807946759259259,0.017738855323676365,0.05421254619541829,2.81,2.81,0.0,-0.0,4.97,1632.6403,0.030778248 -4.96250261091589,0.0425270541038371,4.96250261091589,4.049521561329913,0.5840005787037037,0.009521561329912503,0.044573554495772334,4.04,4.04,0.0,-0.0,1.9749999999999996,1630.9747,0.01751343 -4.721688184552406,0.03955930942349011,4.721688184552406,0.005337020540589718,0.5853530092592593,0.005337020540589718,0.04153865473511785,0.0,0.0,0.0,-0.0,0.9099999999999999,1628.004,0.0101647815 -4.493551585029496,0.04164254044019706,4.493551585029496,2.653053235319761,0.5880002314814815,0.0030532353197608476,0.043805699752632786,2.65,2.65,1.4710455076283324e-16,-0.0,1.6199999999999999,1625.0465,0.0059306617 -4.268700097885841,0.040574755458361686,4.268700097885841,0.1517886239173178,0.5903311342592593,0.0017886239173184517,0.042763120965543466,0.15,0.14999999999999933,6.744604874597826e-16,-0.0,1.21,1621.9808,0.0035155732 -4.001137432203837,0.05009198691620394,4.001137432203837,0.11105781734071754,0.5920008101851852,0.001057817340717536,0.052919781878297364,0.11,0.11,0.0,-0.0,4.319999999999999,1618.1151,0.0020937172 -3.941539303569443,0.04939602217113443,3.941539303569443,5.110611872312206,0.5943310185185184,0.0006118723122055802,0.052213448442839296,5.11,5.11,0.0,-0.0,4.0600000000000005,1617.2189,0.0012163472 -4.070305095036951,0.052378590202527914,4.070305095036951,7.390358519512894,0.5959997685185184,0.0003585195128945751,0.055300487553789336,7.39,7.39,0.0,-0.0,4.88,1619.1387,0.0007144866 -4.183888027234329,0.04965915899905399,4.183888027234329,4.760192823856511,0.5987809027777777,0.00019282385651117696,0.0523761851294699,4.76,4.76,0.0,-0.0,3.995,1620.7823,0.00038490695 -4.066080795379956,0.05828976484168947,4.066080795379956,0.00010846162498682263,0.5999998842592592,0.00010846162498682263,0.06154376937332268,0.0,0.0,0.0,-0.0,6.3999999999999995,1619.0767,0.00021668848 -3.8328194554727126,0.07402736802907234,3.8328194554727126,1.3700634828310558,0.6027810185185185,6.348283105564516e-5,0.07833061196989836,1.37,1.37,0.0,-0.0,10.065,1615.5485,0.00012688516 -3.881091167247153,0.08412997481684227,3.881091167247153,8.460037750539701,0.6039996527777778,3.775053970087361e-5,0.08897932134911302,8.46,8.46,0.0,-0.0,12.055,1616.2959,7.54726e-5 -4.101649634509667,0.06537185900366205,4.101649634509667,6.660022017302094,0.6063304398148148,2.2017302093646864e-5,0.06899905230953136,6.66,6.66,0.0,-0.0,7.995,1619.5968,4.4024913e-5 -4.06870799368728,0.0518910820688185,4.06870799368728,0.7600130743319401,0.6079995370370371,1.307433194014057e-5,0.05478657722410498,0.76,0.76,0.0,-0.0,4.44,1619.1152,2.6145246e-5 -3.9927142906438626,0.07095885827733438,3.9927142906438626,5.510007686589499,0.6098476851851852,7.68658949877139e-6,0.07497046182989563,5.51,5.51,0.0,-0.0,9.195,1617.9893,1.5371998e-5 -3.895357250956782,0.05824242313161229,3.895357250956782,0.5900045501552642,0.6120002314814815,4.550155264238249e-6,0.06159123228699401,0.59,0.59,0.0,-0.0,6.11,1616.515,9.0998965e-6 -3.6538909690838484,0.04565853395547399,3.6538909690838484,2.7016651516703844e-6,0.6133524305555556,2.7016651516703844e-6,0.04839821739526814,0.0,0.0,0.0,-0.0,2.465,1612.6934,5.4031843e-6 -3.399025500886092,0.052907030888087916,3.399025500886092,1.5137528125431471e-6,0.6159914351851852,1.5137528125431471e-6,0.056232213339386376,0.0,0.0,0.0,-0.0,4.635,1608.3754,3.0274598e-6 -3.489900578525374,0.05226568619648639,3.489900578525374,10.150000876602325,0.6162851851851852,8.766023246126304e-7,0.0554961922512838,10.15,10.15,0.0,-0.0,4.43,1609.951,1.7531893e-6 -3.8961933788296244,0.044396504390671804,3.8961933788296244,10.780000517109507,0.6195356481481481,5.171095064359203e-7,0.046948831906447885,10.78,10.78,0.0,-0.0,1.87,1616.5278,1.0342137e-6 -4.164945516665696,0.05506125394001515,4.164945516665696,5.280000307476974,0.6199998842592592,3.074769740532025e-7,0.05808355918025089,5.28,5.28,0.0,-0.0,5.0249999999999995,1620.5114,6.1495206e-7 -4.158284920627407,0.06918183332443714,4.158284920627407,3.0000001789123805,0.6227818287037037,1.7891238037323348e-7,0.0729835200912777,3.0,3.0,0.0,-0.0,8.45,1620.4158,3.5782412e-7 -4.0212167622104955,0.06004276386644587,4.0212167622104955,1.037540410935372e-7,0.6240006944444445,1.037540410935372e-7,0.06342058342225995,0.0,0.0,0.0,-0.0,6.26,1618.4141,2.0750787e-7 -3.8881183215651474,0.060811696511720754,3.8881183215651474,3.890000056370528,0.6253526620370371,5.6370527603068804e-8,0.06431265259302513,3.89,3.89,0.0,-0.0,6.4399999999999995,1616.4039,1.1274099e-7 -3.8316757981400387,0.05763167117935866,3.8316757981400387,1.8800000328876056,0.6278895833333333,3.2887605685573955e-8,0.06098249868653179,1.88,1.88,0.0,-0.0,5.57,1615.5306,6.577519e-8 -3.735281887148992,0.06454773047717575,3.735281887148992,2.1800000179939722,0.6280518518518519,1.7993972219329272e-8,0.06836506276453576,2.18,2.18,0.0,-0.0,7.3100000000000005,1614.009,3.5987938e-8 -3.578718325101745,0.06484773985591856,3.578718325101745,1.0168255716630475e-8,0.6303303240740741,1.0168255716630475e-8,0.06879180377581529,0.0,0.0,0.0,-0.0,7.35,1611.4519,2.033651e-8 -3.4025011496139164,0.09702220891899539,3.4025011496139164,3.876206617162656e-9,0.6319916666666667,3.876206617162656e-9,0.1031160968473661,0.0,0.0,0.0,-0.0,13.7,1608.4364,7.752413e-9 -3.2592130950560474,0.11045887688648973,3.2592130950560474,1.4499999994330313,0.6322856481481481,-5.669688020233412e-10,0.11758455118524837,1.45,1.45,0.0,-0.0,15.84,1605.867,-1.1339376e-9 -3.1921929073541535,0.06902194949682433,3.1921929073541535,3.0999999981682733,0.6347809027777778,-1.8317268477328448e-9,0.07353135533857465,3.1,3.1,0.0,-0.0,8.27,1604.6261,-3.6634538e-9 -3.1971426694305607,0.06358559238622337,3.1971426694305607,1.2599999989645605,0.6360001157407408,-1.0354395011880807e-9,0.06773591918738066,1.26,1.26,0.0,-0.0,6.9750000000000005,1604.7186,-2.070879e-9 -3.1934720580194034,0.07439389965231785,3.1934720580194034,3.709999999497826,0.6362856481481481,-5.021739110417664e-10,0.07925308900668031,3.71,3.71,0.0,-0.0,9.4,1604.65,-1.0043478e-9 -3.1243468284754106,0.09194074616978147,3.1243468284754106,0.17999999972868108,0.6387810185185185,-2.713189110458641e-10,0.09802587941450526,0.18,0.18,0.0,-0.0,12.709999999999999,1603.3431,-5.426378e-10 -3.0750733150676712,0.11765238474186457,3.0750733150676712,-1.329493874333486e-10,0.6399917824074074,-1.329493874333486e-10,0.12551356925188087,0.0,0.0,0.0,-0.0,16.72,1602.3938,-2.6589878e-10 -3.1624609142981144,0.12607207710391904,3.1624609142981144,9.589999999954522,0.6400512731481481,-4.547874574863971e-11,0.13435552620749003,9.59,9.59,0.0,-0.0,17.855,1604.0673,-9.095749e-11 -3.543053507131523,0.1219394636902268,3.543053507131523,10.289999999979145,0.6418483796296296,-2.085487511414301e-11,0.12940390032598603,10.29,10.29,0.0,-0.0,17.18,1610.8538,-4.170975e-11 -4.398730027329326,0.11340245758400666,4.398730027329326,20.41999999998788,0.6435354166666667,-1.2121012525541843e-11,0.1193868237008803,20.42,20.42,0.0,-0.0,15.8,1623.7728,-2.4242025e-11 -5.0970219736461075,0.08058561084960682,5.0970219736461075,7.609999999992785,0.6439998842592592,-7.215869394540116e-12,0.08438093897512156,7.61,7.61,0.0,-0.0,10.195,1632.572,-1.4431739e-11 -4.984318495894256,0.061366946536013545,4.984318495894256,-4.25227951790467e-12,0.6442856481481481,-4.25227951790467e-12,0.06430973694814421,0.0,0.0,0.0,-0.0,5.984999999999999,1631.2367,-8.504559e-12 -4.591383721448268,0.06244905439662265,4.591383721448268,-2.480204409843304e-12,0.6458482638888889,-2.480204409843304e-12,0.0656410706955291,0.0,0.0,0.0,-0.0,6.26,1626.3328,-4.960409e-12 -4.384080865045112,0.07959277902593181,4.384080865045112,3.7399999999985862,0.6471538194444444,-1.413963781110019e-12,0.08380325481796681,3.74,3.74,0.0,-0.0,10.01,1623.5736,-2.8279276e-12 -4.425596474359313,0.07858997613404378,4.425596474359313,6.969999999999179,0.6479927083333333,-8.205056642731479e-13,0.0827187262100251,6.97,6.97,0.0,-0.0,9.785,1624.1365,-1.6410113e-12 -4.369721643429721,0.07719450812848065,4.369721643429721,-4.569703990188401e-13,0.6480521990740741,-4.569703990188401e-13,0.08128792417969202,0.0,0.0,0.0,-0.0,9.51,1623.3777,-9.139408e-13 -4.073842575493069,0.07993410281220618,4.073842575493069,0.1199999999997298,0.6487947916666666,-2.7020033888203724e-13,0.08439045816943888,0.12,0.12,0.0,-0.0,10.08,1619.1906,-5.404007e-13 -3.9500159615011867,0.09594632812391508,3.9500159615011867,4.529999999999842,0.6498487268518519,-1.579434689587201e-13,0.10141082304934053,4.53,4.53,0.0,-0.0,12.98,1617.3472,-3.1588694e-13 -3.817713168323257,0.1009232786840949,3.817713168323257,-9.062675197955952e-14,0.6507814814814814,-9.062675197955952e-14,0.10680558553137522,0.0,0.0,0.0,-0.0,13.795,1615.3126,-1.812535e-13 -3.586106822337467,0.09846951186072095,3.586106822337467,0.3199999999999502,0.6515357638888889,-4.979173066148782e-14,0.1044504810770835,0.32,0.32,0.0,-0.0,13.415,1611.5751,-9.958346e-14 -3.4074496431210335,0.08808698433150315,3.4074496431210335,0.9499999999999709,0.6519921296296297,-2.914157901534442e-14,0.09361460640746741,0.95,0.95,0.0,-0.0,11.645,1608.5232,-5.828316e-14 -3.2442713557222485,0.08342520297537,3.2442713557222485,-1.6330002400221614e-14,0.6520001157407407,-1.6330002400221614e-14,0.08882211990442561,0.0,0.0,0.0,-0.0,10.809999999999999,1605.5925,-3.2660005e-14 -3.0639241098797543,0.08101943517954362,3.0639241098797543,-9.179051256872254e-15,0.6520517361111111,-9.179051256872254e-15,0.08644461646886302,0.0,0.0,0.0,-0.0,10.379999999999999,1602.1769,-1.8358103e-14 -2.9248631881627936,0.08773696663462797,2.9248631881627936,0.37999999999999623,0.6522856481481482,-3.802422379782713e-15,0.09377431975577577,0.38,0.38,0.0,-0.0,11.665000000000001,1599.403,-7.604845e-15 -2.9174651504380744,0.07920958076728346,2.9174651504380744,5.669999999999999,0.6527943287037037,-1.0027019328501065e-15,0.08466815422204924,5.67,5.67,0.0,-0.0,10.035,1599.2517,-2.0054039e-15 -3.099558309455016,0.074422945485461,3.099558309455016,6.679999999999999,0.653352662037037,-5.415960428479489e-16,0.07937220597129845,6.68,6.68,0.0,-0.0,9.01,1602.8674,-1.0831921e-15 -3.3202414167817578,0.09046324947439707,3.3202414167817578,7.35,0.653848611111111,-2.94401732699739e-16,0.09623261865509795,7.35,7.35,0.0,-0.0,12.04,1606.9749,-5.8880347e-16 -3.3476158536170257,0.09878052784862294,3.3476158536170257,-1.7099676146043171e-16,0.653848611111111,-1.7099676146043171e-16,0.10504828369034887,0.0,0.0,0.0,-0.0,13.450000000000001,1607.4652,-3.4199352e-16 -3.192741052031457,0.11245443070922023,3.192741052031457,-9.413510585478009e-17,0.653848611111111,-9.413510585478009e-17,0.11980064203160391,0.0,0.0,0.0,-0.0,15.595,1604.6364,-1.8827021e-16 -3.013773355220201,0.1425300093844808,3.013773355220201,-5.4004759382847677e-17,0.6543310185185185,-5.4004759382847677e-17,0.15216763725714325,0.0,0.0,0.0,-0.0,19.585,1601.1913,-1.0800952e-16 -2.8535851101956182,0.1444284572728078,2.8535851101956182,-2.9406939138195064e-17,0.6543310185185185,-2.9406939138195064e-17,0.15450919896964763,0.0,0.0,0.0,-0.0,19.845,1597.9296,-5.881388e-17 -2.8194010652915815,0.10301348784778112,2.8194010652915815,4.51,0.653848611111111,-1.5579620928274927e-17,0.11025322860511198,4.51,4.51,0.0,-0.0,14.235,1597.2098,-3.1159242e-17 -2.8980298022461555,0.10849262456513539,2.8980298022461555,6.28,0.653848611111111,-8.945856581545649e-18,0.11599813464841388,6.28,6.28,0.0,-0.0,15.065,1598.8525,-1.7891713e-17 -2.9030040425301613,0.10254267162032955,2.9030040425301613,-4.7637376971862554e-18,0.653352662037037,-4.7637376971862554e-18,0.1096295419987459,0.0,0.0,0.0,-0.0,14.155000000000001,1598.955,-9.527475e-18 -2.8692307014297307,0.12344997228413976,2.8692307014297307,0.5,0.653352662037037,-2.788865077821522e-18,0.1320394863241042,0.5,0.5,0.0,-0.0,17.22,1598.2561,-5.57773e-18 -3.1299206406123505,0.14979871613618226,3.1299206406123505,14.98,0.6527943287037037,-1.592370965832836e-18,0.1597025985310872,14.98,14.98,0.0,-0.0,20.45,1603.4496,-3.184742e-18 -3.383034783704115,0.14206892962146903,3.383034783704115,0.85,0.6522856481481482,-9.357088802690929e-19,0.15102433961370723,0.85,0.85,0.0,-0.0,19.509999999999998,1608.0938,-1.8714178e-18 -3.234531184396883,0.11523250607790077,3.234531184396883,-5.20088517673009e-19,0.6520517361111111,-5.20088517673009e-19,0.12270081358158146,0.0,0.0,0.0,-0.0,16.035,1605.413,-1.040177e-18 -3.0654087495159867,0.12016929010931596,3.0654087495159867,-3.0735583624845234e-19,0.6519921296296297,-3.0735583624845234e-19,0.12821368845990133,0.0,0.0,0.0,-0.0,16.765,1602.2058,-6.1471167e-19 -3.0796022605215208,0.1224300094611799,3.0796022605215208,6.8,0.6518894675925926,-1.8088891617825593e-19,0.13060325719627527,6.8,6.8,0.0,-0.0,17.075000000000003,1602.4817,-3.6177783e-19 -3.700158779889675,0.16135210442266715,3.700158779889675,19.54,0.6511538194444445,-1.0804367558642836e-19,0.1709541770864811,19.54,19.54,0.0,-0.0,21.665,1613.4448,-2.1608735e-19 -4.2327293711474985,0.20702865936229148,4.2327293711474985,5.04,0.6503311342592593,-6.490711137058294e-20,0.21826258247749844,5.04,5.04,0.0,-0.0,25.985,1621.4755,-1.2981422e-19 -4.705646047218823,0.17761372343320703,4.705646047218823,17.52,0.6493528935185184,-3.913731720638772e-20,0.18652389127427776,17.52,17.52,0.0,-0.0,23.23,1627.8008,-7.8274634e-20 -5.732091303754708,0.13875277961664545,5.732091303754708,17.22,0.6482863425925927,-2.35616775242504e-20,0.14466619669422986,17.22,17.22,0.0,-0.0,18.884999999999998,1639.5846,-4.7123355e-20 -6.4704723823974515,0.10967197865789095,6.4704723823974515,10.29,0.6480008101851852,-1.4035033562715777e-20,0.11384357779828644,10.29,10.29,0.0,-0.0,14.905000000000001,1646.8208,-2.8070067e-20 -6.473409200204551,0.10802496782052685,6.473409200204551,3.95,0.647890162037037,-8.193574549745794e-21,0.11213207430511256,3.95,3.95,0.0,-0.0,14.66,1646.8479,-1.6387149e-20 -5.965314112023592,0.12092343926038077,5.965314112023592,-4.216548325727657e-21,0.64678125,-4.216548325727657e-21,0.12589412105074188,0.0,0.0,0.0,-0.0,16.595,1641.9663,-8.433097e-21 -5.5910874592810424,0.14368750399412283,5.5910874592810424,4.26,0.645352199074074,-2.2984645133883286e-21,0.14994726272873676,4.26,4.26,0.0,-0.0,19.57,1638.0972,-4.596929e-21 -5.250598357788576,0.11572970981617574,5.250598357788576,-1.3716430692234522e-21,0.6440515046296297,-1.3716430692234522e-21,0.12104876603827619,0.0,0.0,0.0,-0.0,16.015,1634.3448,-2.7432861e-21 -4.776651410794997,0.0873948656092118,4.776651410794997,-7.854294991228197e-22,0.6438894675925926,-7.854294991228197e-22,0.09172871421735893,0.0,0.0,0.0,-0.0,11.52,1628.6952,-1.570859e-21 -4.383426743404372,0.11212696398183165,4.383426743404372,-3.8178795317326775e-22,0.6427809027777778,-3.8178795317326775e-22,0.11805915340489258,0.0,0.0,0.0,-0.0,15.635,1623.5647,-7.635759e-22 -4.239760523294346,0.1286648776010559,4.239760523294346,4.91,0.6407940972222222,-1.9900186372694647e-22,0.13563828287556084,4.91,4.91,0.0,-0.0,17.995,1621.5746,-3.9800373e-22 -4.24490272083996,0.12533124340792423,4.24490272083996,4.96,0.6399997685185186,-1.1556418462123937e-22,0.1321180738964311,4.96,4.96,0.0,-0.0,17.575,1621.647,-2.3112837e-22 -4.378519466074209,0.13158063083704297,4.378519466074209,8.03,0.6395354166666667,-6.768388701472831e-23,0.1385477444848957,8.03,8.03,0.0,-0.0,18.384999999999998,1623.4978,-1.3536777e-22 -4.475036132997906,0.11592572817165105,4.475036132997906,6.19,0.6378482638888888,-3.459024749572594e-23,0.12196610159895913,6.19,6.19,0.0,-0.0,16.3,1624.7999,-6.9180495e-23 -4.386142434570842,0.11512157152094536,4.386142434570842,-1.4671474929015565e-23,0.6360001157407408,-1.4671474929015565e-23,0.12120943232001667,0.0,0.0,0.0,-0.0,16.244999999999997,1623.6017,-2.934295e-23 -4.084122838203992,0.12210590728918877,4.084122838203992,-8.123140554775946e-24,0.6355359953703703,-8.123140554775946e-24,0.12890137401818158,0.0,0.0,0.0,-0.0,17.28,1619.3411,-1.6246281e-23 -3.832835124381342,0.09888870694589742,3.832835124381342,1.01,0.6338483796296296,-4.306884325236814e-24,0.10463713580050309,1.01,1.01,0.0,-0.0,13.889999999999999,1615.5487,-8.613769e-24 -3.7845833724933033,0.11484634382781778,3.7845833724933033,5.94,0.6319996527777777,-2.3920449763160803e-24,0.12157933256887066,5.94,5.94,0.0,-0.0,16.4,1614.7921,-4.78409e-24 -3.650009307724191,0.11705055085575572,3.650009307724191,-1.3288855972589839e-24,0.6315355324074073,-1.3288855972589839e-24,0.12407890713473409,0.0,0.0,0.0,-0.0,16.75,1612.6299,-2.6577712e-24 -3.4791740485510334,0.14784645692889056,3.4791740485510334,1.53,0.6287943287037038,-7.166411330822874e-25,0.15700267247045127,1.53,1.53,0.0,-0.0,20.8,1609.7672,-1.4332823e-24 -3.4731841548702924,0.15773581373991924,3.4731841548702924,6.59,0.628,-4.1385275043891955e-25,0.16751519130124695,6.59,6.59,0.0,-0.0,21.939999999999998,1609.6643,-8.277055e-25 -3.4959621766115636,0.09490250101575058,3.4959621766115636,1.37,0.6267813657407407,-2.243272169782446e-25,0.10076187285559114,1.37,1.37,0.0,-0.0,13.459999999999999,1610.0547,-4.4865443e-25 -3.3401315171438135,0.08766435683291886,3.3401315171438135,-1.3141138316820744e-25,0.624052199074074,-1.3141138316820744e-25,0.0932345296566094,0.0,0.0,0.0,-0.0,12.28,1607.3315,-2.6282277e-25 -3.1579069365538994,0.10020504998982471,3.1579069365538994,-7.371180393333684e-26,0.6238902777777778,-7.371180393333684e-26,0.10679465964973997,0.0,0.0,0.0,-0.0,14.48,1603.9812,-1.4742361e-25 -3.0099933189911003,0.10381624756724787,3.0099933189911003,2.06,0.6207944444444444,-4.2505027353593414e-26,0.1108413075809482,2.06,2.06,0.0,-0.0,15.17,1601.1163,-8.5010055e-26 -2.8784709162827187,0.10975470625667813,2.8784709162827187,0.24,0.6199998842592592,-2.0571752908238217e-26,0.11737721681252485,0.24,0.24,0.0,-0.0,16.135,1598.4481,-4.1143506e-26 -2.8539292687208775,0.13612280958303244,2.8539292687208775,4.4,0.6183303240740741,-9.35487806714243e-27,0.14562318169018884,4.4,4.4,0.0,-0.0,19.8,1597.9368,-1.8709756e-26 -2.8691661890927995,0.1377202371873708,2.8691661890927995,2.85,0.615999537037037,-5.362086328757478e-27,0.14730278440655942,2.85,2.85,0.0,-0.0,20.06,1598.2548,-1.0724173e-26 -2.7936494181248523,0.14093328518562875,2.7936494181248523,-2.8238169733880313e-27,0.6151532407407407,-2.8238169733880313e-27,0.1508897794745944,0.0,0.0,0.0,-0.0,20.494999999999997,1596.6619,-5.647634e-27 -2.694741069320721,0.1294712824111177,2.694741069320721,-1.5595973652178814e-27,0.6120002314814815,-1.5595973652178814e-27,0.13880516716500532,0.0,0.0,0.0,-0.0,19.16,1594.5092,-3.1191947e-27 -2.6867990129745682,0.12867341111141387,2.6867990129745682,0.36,0.6115356481481482,-4.926822020576582e-28,0.1379650272092543,0.36,0.36,0.0,-0.0,19.07,1594.3329,-9.853644e-28 -2.6965428397121736,0.13483559195075454,2.6965428397121736,4.2,0.6080510416666667,2.484373554026731e-28,0.1445525834753776,4.2,4.2,0.0,-0.0,19.96,1594.5491,4.968747e-28 -2.638621654640938,0.13651658704974914,2.638621654640938,4.228696971343e-28,0.6078891203703704,4.228696971343e-28,0.14647383884535492,0.0,0.0,0.0,-0.0,20.189999999999998,1593.2523,8.457394e-28 -2.51863206184304,0.13919986246129318,2.51863206184304,2.4302505892470748e-28,0.6042853009259259,2.4302505892470748e-28,0.1496138275053286,0.0,0.0,0.0,-0.0,20.655,1590.4729,4.860501e-28 -2.4198952851105653,0.10761628240039894,2.4198952851105653,0.41,0.6039916666666666,1.2890095043388219e-28,0.11584133487195497,0.41,0.41,0.0,-0.0,16.35,1588.0846,2.578019e-28 -2.3487885234257515,0.09846208107540089,2.3487885234257515,1.86,0.6002854166666667,7.071290124648354e-29,0.10610648755249803,1.86,1.86,0.0,-0.0,15.004999999999999,1586.3035,1.414258e-28 -2.268313305428358,0.08952800496598495,2.268313305428358,1.997868393098237e-29,0.5999998842592592,1.997868393098237e-29,0.09660558227912533,0.0,0.0,0.0,-0.0,13.485,1584.2214,3.9957368e-29 -2.1831794980293293,0.09053341932912082,2.1831794980293293,-1.5948200058397058e-29,0.5962851851851851,-1.5948200058397058e-29,0.0978315582059493,0.0,0.0,0.0,-0.0,13.79,1581.9369,-3.18964e-29 -2.1008930449388736,0.12134451389560072,2.1008930449388736,-2.5211750058131222e-29,0.5959997685185184,-2.5211750058131222e-29,0.13131687812870094,0.0,0.0,0.0,-0.0,18.67,1579.6425,-5.04235e-29 -2.0251823018632114,0.13373522655742076,2.0251823018632114,-1.27061618123885e-29,0.5920523148148148,-1.27061618123885e-29,0.1449269864351985,0.0,0.0,0.0,-0.0,20.46,1577.4506,-2.5412324e-29 -1.9541921912355547,0.14835548569770554,1.9541921912355547,-3.458064344172732e-31,0.591992824074074,-3.458064344172732e-31,0.16098823525639192,0.0,0.0,0.0,-0.0,22.275,1575.3196,-6.9161287e-31 -1.8875338627658147,0.1557531477395491,1.8875338627658147,8.457201500154839e-30,0.5880002314814815,8.457201500154839e-30,0.16923848752529544,0.0,0.0,0.0,-0.0,23.265,1573.247,1.6914403e-29 -1.8248904271803204,0.16284362606377684,1.8248904271803204,1.0488615981765656e-29,0.5879922453703703,1.0488615981765656e-29,0.17716985791935877,0.0,0.0,0.0,-0.0,24.07,1571.2313,2.0977232e-29 -1.7660615098890151,0.1682518890894782,1.7660615098890151,-3.524759495629913e-30,0.5840005787037037,-3.524759495629913e-30,0.18328218603525367,0.0,0.0,0.0,-0.0,24.79,1569.2744,-7.049519e-30 -1.7109781343673198,0.16103073445878238,1.7109781343673198,0.06,0.5835359953703704,-4.544854621748071e-29,0.17562773383270064,0.06,0.06,0.0,-0.0,24.05,1567.3821,-9.089709e-29 -1.659334920383182,0.15494571168932492,1.659334920383182,-1.0902995156554814e-28,0.5800003472222222,-1.0902995156554814e-28,0.16918869162424308,0.0,0.0,0.0,-0.0,23.5,1565.5518,-2.180599e-28 -1.610840028277518,0.1259792778865498,1.610840028277518,3.16,0.5787818287037036,-1.873746270690956e-28,0.1377154137905501,3.16,3.16,0.0,-0.0,19.975,1563.7804,-3.7474925e-28 -1.565227057436033,0.1272690423942323,1.565227057436033,21.63,0.5760005787037037,-2.7358821899117184e-28,0.1392781187403531,21.63,21.63,0.0,-0.0,20.25,1562.065,-5.4717644e-28 -1.5222586017781894,0.1080679885287887,1.5222586017781894,-3.6077636757629447e-28,0.5738478009259259,-3.6077636757629447e-28,0.11839125030493768,0.0,0.0,0.0,-0.0,17.565,1560.4026,-7.2155274e-28 -1.4817139779991895,0.09292905554407892,1.4817139779991895,-4.420447371431054e-28,0.5719994212962963,-4.420447371431054e-28,0.10191145459707017,0.0,0.0,0.0,-0.0,15.135,1558.7904,-8.840895e-28 -1.4433846735526572,0.09870804739383544,1.4433846735526572,2.68,0.5680513888888888,-5.104989318249359e-28,0.10835783851237855,2.68,2.68,0.0,-0.0,16.259999999999998,1557.2252,-1.0209979e-27 -1.407090535261172,0.07831843730141842,1.407090535261172,3.18,0.5679997685185185,-5.592446520516144e-28,0.08605897109709904,3.18,3.18,0.0,-0.0,12.505,1555.7043,-1.1184893e-27 -1.3726542347064952,0.08459923267351917,1.3726542347064952,-5.813875501047205e-28,0.5639996527777777,-5.813875501047205e-28,0.0930490286165594,0.0,0.0,0.0,-0.0,13.88,1554.2246,-1.1627751e-27 -1.3399204312758812,0.09582100991716087,1.3399204312758812,-5.7003318196933695e-28,0.5639916666666667,-5.7003318196933695e-28,0.10548947241421745,0.0,0.0,0.0,-0.0,15.934999999999999,1552.7832,-1.1400664e-27 -1.3087374393024485,0.08953079446550974,1.3087374393024485,-5.182872962235407e-28,0.56,-5.182872962235407e-28,0.09865391030366488,0.0,0.0,0.0,-0.0,14.950000000000001,1551.377,-1.0365746e-27 -1.2789753551717105,0.08986762591560064,1.2789753551717105,-4.192554970006629e-28,0.558330324074074,-4.192554970006629e-28,0.09911283125563329,0.0,0.0,0.0,-0.0,15.075,1550.0032,-8.38511e-28 -1.2505136255767495,0.07513631414106936,1.2505136255767495,-2.6270630554527077e-28,0.5560002314814815,-2.6270630554527077e-28,0.08293793852103043,0.0,0.0,0.0,-0.0,12.255,1548.6592,-5.254126e-28 -1.223370247825832,0.08323097447759203,1.223370247825832,-2.3242260995079915e-29,0.5520519675925926,-2.3242260995079915e-29,0.09195090433581969,0.0,0.0,0.0,-0.0,14.035,1547.3486,-4.6484522e-29 -1.197422884589425,0.08418273740544502,1.197422884589425,2.4590714086411006e-28,0.5520004629629629,2.4590714086411006e-28,0.09307939513668409,0.0,0.0,0.0,-0.0,14.235,1546.0684,4.918143e-28 -1.1725218664224015,0.06327703171181534,1.1725218664224015,4.7315871317366455e-28,0.5479999999999999,4.7315871317366455e-28,0.07002115727554975,0.0,0.0,0.0,-0.0,9.8,1544.8134,9.463174e-28 -1.148516581337421,0.0764067720109706,1.148516581337421,5.869291727784517e-28,0.5479921296296296,5.869291727784517e-28,0.08461794466288276,0.0,0.0,0.0,-0.0,12.809999999999999,1543.578,1.1738583e-27 -1.1252787414621666,0.09180385966920755,1.1252787414621666,5.156353388383681e-28,0.5439997685185185,5.156353388383681e-28,0.10175017108611227,0.0,0.0,0.0,-0.0,15.935,1542.3573,1.0312707e-27 -1.1036497149744775,0.09573488817616746,1.1036497149744775,2.3192638206356563e-28,0.540794212962963,2.3192638206356563e-28,0.10618689707318826,0.0,0.0,0.0,-0.0,16.74,1541.1982,4.6385276e-28 -1.0848086510341235,0.10170233388066707,1.0848086510341235,9.21,0.54,-1.5145915120537114e-28,0.11288116488592496,9.21,9.21,0.0,-0.0,17.785,1540.1699,-3.029183e-28 -1.0676064883304026,0.09465003584512041,1.0676064883304026,-5.285338213066641e-28,0.5359994212962963,-5.285338213066641e-28,0.10511885048082471,0.0,0.0,0.0,-0.0,16.72,1539.2153,-1.0570676e-27 -1.0509198157344914,0.07954964460443965,1.0509198157344914,-7.946779358767904e-28,0.5359994212962963,-7.946779358767904e-28,0.08840230596955923,0.0,0.0,0.0,-0.0,13.875,1538.2745,-1.5893559e-27 -1.0336907394751995,0.09447731358239322,1.0336907394751995,-8.452716821816056e-28,0.5319998842592593,-8.452716821816056e-28,0.10505861770194395,0.0,0.0,0.0,-0.0,16.835,1537.2874,-1.6905434e-27 -1.0177463394869823,0.10328458206822246,1.0177463394869823,-5.8783392651807625e-28,0.5298482638888888,-5.8783392651807625e-28,0.11492168528718906,0.0,0.0,0.0,-0.0,18.405,1536.359,-1.1756679e-27 -1.0526999673231097,0.1290668916080624,1.0526999673231097,5.28,0.5279998842592593,-1.8256382258688643e-28,0.1434206432074102,5.28,5.28,0.0,-0.0,22.255,1538.3756,-3.6512765e-28 -1.1717336230462791,0.13416292775997826,1.1717336230462791,2.0509726312152785e-28,0.5240002314814816,2.0509726312152785e-28,0.14846599853612888,0.0,0.0,0.0,-0.0,22.990000000000002,1544.7732,4.1019453e-28 -1.4147937413257283,0.09359829835825377,1.4147937413257283,21.99,0.5240002314814816,4.65313581989949e-28,0.10282745284134136,21.99,21.99,0.0,-0.0,16.73,1556.0304,9.306272e-28 -1.868005089388844,0.05724530049851865,1.868005089388844,28.67,0.520000462962963,4.8824938540115935e-28,0.06222624994663906,28.67,28.67,0.0,-0.0,8.775,1572.6259,9.764988e-28 -2.372460817555222,0.059645786535336386,2.372460817555222,5.8,0.5183310185185186,3.0090727043693742e-28,0.06425231344118082,5.8,5.8,0.0,-0.0,9.325,1586.9023,6.0181454e-28 -2.52447687612916,0.06227277136236901,2.52447687612916,7.17,0.5159998842592592,1.7792022493503651e-28,0.06692576184872522,7.17,7.17,0.0,-0.0,10.035,1590.6113,3.5584045e-28 -2.6852287811381865,0.0749335069755362,2.6852287811381865,5.81,0.511999537037037,1.06512363905183e-28,0.08034627843126886,5.81,5.81,0.0,-0.0,13.07,1594.298,2.1302473e-28 -2.777144114647273,0.06191279647913428,2.777144114647273,6.04,0.511999537037037,6.092119053825825e-29,0.06630143619615811,6.04,6.04,0.0,-0.0,10.01,1596.308,1.2184238e-28 -2.7323072753583744,0.06283109039734366,2.7323072753583744,2.670178788932394e-29,0.5079996527777778,2.670178788932394e-29,0.0673258196217371,0.0,0.0,0.0,-0.0,10.375,1595.3359,5.3403576e-29 -2.6209528086563365,0.060030321800398245,2.6209528086563365,8.60544393909297e-30,0.5067805555555556,8.60544393909297e-30,0.06442504041755283,0.0,0.0,0.0,-0.0,9.719999999999999,1592.8511,1.7210888e-29 -2.5081516284519667,0.06525547002730551,2.5081516284519667,4.8411924217711584e-30,0.503999537037037,4.8411924217711584e-30,0.0701484134679912,0.0,0.0,0.0,-0.0,11.15,1590.2239,9.682385e-30 -2.404624780841367,0.08874427981503612,2.404624780841367,0.03,0.4999997685185186,2.7437232450452626e-30,0.09554970175054672,0.03,0.03,0.0,-0.0,16.29,1587.7065,5.4874465e-30 -2.3179067393490334,0.11092723319719458,2.3179067393490334,1.149007171714079e-30,0.4999997685185186,1.149007171714079e-30,0.11959900252743194,0.0,0.0,0.0,-0.0,20.064999999999998,1585.5131,2.2980143e-30 -2.2587313590460556,0.11006146448929525,2.2587313590460556,4.32,0.4959997685185185,-1.1060015698299236e-30,0.11878125581576161,4.32,4.32,0.0,-0.0,20.085,1583.9686,-2.2120031e-30 -2.2153795913318652,0.09215527170502197,2.2153795913318652,3.5,0.49366840277777774,-3.460845328707907e-30,0.09952913930234884,3.5,3.5,0.0,-0.0,17.18,1582.8113,-6.921691e-30 -2.1768385763322002,0.06463094670774576,2.1768385763322002,-5.306951871589561e-30,0.4919994212962963,-5.306951871589561e-30,0.06984868841643871,0.0,0.0,0.0,-0.0,11.465,1581.7632,-1.0613904e-29 -2.1329473722107726,0.06046461454168221,2.1329473722107726,-6.0357489651445724e-30,0.48800034722222224,-6.0357489651445724e-30,0.06539629476598344,0.0,0.0,0.0,-0.0,10.55,1580.5468,-1.2071498e-29 -2.074376955094943,0.06575856165135824,2.074376955094943,-5.038664564121727e-30,0.48800034722222224,-5.038664564121727e-30,0.07119693648966133,0.0,0.0,0.0,-0.0,11.9,1578.8839,-1.0077329e-29 -2.0745592878620833,0.06542417232527142,2.0745592878620833,0.42,0.4840002314814815,-2.943859527792535e-30,0.07083465695440298,0.42,0.42,0.0,-0.0,11.95,1578.8892,-5.887719e-30 -2.1824031598121185,0.059883377634521666,2.1824031598121185,8.22,0.48167002314814816,-1.5617605719883663e-30,0.06471160428222242,8.22,8.22,0.0,-0.0,10.59,1581.9156,-3.1235211e-30 -2.2400046304905175,0.04175055911836354,2.2400046304905175,-9.000286284924004e-31,0.4800005787037037,-9.000286284924004e-31,0.045072460143650295,0.0,0.0,0.0,-0.0,5.0600000000000005,1583.4714,-1.8000573e-30 -2.17488165610998,0.04243796856447886,2.17488165610998,0.29,0.4760001157407408,-4.893682194196392e-31,0.04586559925884595,0.29,0.29,0.0,-0.0,5.449999999999999,1581.7095,-9.787364e-31 -2.183009929334762,0.062378916736126666,2.183009929334762,5.4,0.4760001157407408,-2.764493760026552e-31,0.06740764419747547,5.4,5.4,0.0,-0.0,11.424999999999999,1581.9323,-5.5289875e-31 -2.17505948522957,0.08534114579828364,2.17505948522957,0.61,0.4719996527777777,-1.580662920817668e-31,0.09223369644031738,0.61,0.61,0.0,-0.0,16.66,1581.7144,-3.1613258e-31 -2.116067853860339,0.0591822896508471,2.116067853860339,-9.128919691339006e-32,0.4701513888888889,-9.128919691339006e-32,0.06402860118334094,0.0,0.0,0.0,-0.0,10.805,1580.0723,-1.8257839e-31 -2.1173485384731787,0.03739820812725408,2.1173485384731787,-4.554277125855504e-32,0.46799976851851854,-4.554277125855504e-32,0.040459742437680454,0.0,0.0,0.0,-0.0,3.8200000000000003,1580.1084,-9.108554e-32 -2.1487094369637143,0.06256850707388337,2.1487094369637143,4.19,0.463999537037037,-1.420909653283149e-32,0.067652966662897,4.19,4.19,0.0,-0.0,11.89,1580.9865,-2.8418193e-32 -2.1297453024689323,0.04916577826794773,2.1297453024689323,-3.81240111481126e-33,0.463999537037037,-3.81240111481126e-33,0.05317890936567711,0.0,0.0,0.0,-0.0,8.104999999999999,1580.457,-7.624802e-33 -2.0646391485868847,0.04152972524334462,2.0646391485868847,-2.1540239702467464e-33,0.46,-2.1540239702467464e-33,0.04497232713179499,0.0,0.0,0.0,-0.0,5.67,1578.6029,-4.308048e-33 -1.9934513136717078,0.037818546848148844,1.9934513136717078,-1.1816004929618323e-33,0.45920532407407405,-1.1816004929618323e-33,0.041007945527336075,0.0,0.0,0.0,-0.0,4.305000000000001,1576.5074,-2.363201e-33 -1.9591355709415124,0.029822911320280598,1.9591355709415124,-6.005284998817309e-34,0.45599953703703705,-6.005284998817309e-34,0.03235928923014321,0.0,0.0,0.0,-0.0,0.9099999999999997,1575.4705,-1.2018345e-33 -1.9671972581646766,0.0329321464538843,1.9671972581646766,3.8,0.45200810185185186,-9.673129236731464e-35,0.03572739712245539,3.8,3.8,0.0,-0.0,2.49,1575.7157,-1.9346258e-34 -1.9725646012777747,0.040202758479972345,1.9725646012777747,0.73,0.452,2.0783757200657993e-34,0.04361062854427404,0.73,0.73,0.0,-0.0,5.470000000000001,1575.8784,4.1567514e-34 -1.93437306491291,0.04797437322376126,1.93437306491291,2.0284936632064036e-34,0.4480001157407407,2.0284936632064036e-34,0.05207960721518369,0.0,0.0,0.0,-0.0,8.325,1574.7108,4.0569873e-34 -1.9109544686008832,0.0467138486200737,1.9109544686008832,0.69,0.4480001157407407,1.1051324043478088e-34,0.050734653971509766,0.69,0.69,0.0,-0.0,7.92,1573.9834,2.2102648e-34 -1.944895328773666,0.04107545591829826,1.944895328773666,6.25,0.4440001157407408,5.473836955369686e-35,0.04458116799054353,6.25,6.25,0.0,-0.0,6.075,1575.0348,1.0947674e-34 -2.0199814316825524,0.02958134122669698,2.0199814316825524,-9.995732803191078e-17,0.44166932870370373,-9.995732803191078e-17,0.03206000499105531,0.0,0.0,0.0,-0.0,1.2399999999999998,1577.297,-1.9991943e-16 -2.0973617984190622,0.029572207651484467,2.0973617984190622,0.699999999999998,0.4400003472222222,-3.846147910161784e-16,0.03200455344507014,0.7,0.6999999999999983,1.7486012637846214e-15,-0.0,1.2699999999999996,1579.542,-7.692432e-16 -2.2443218835140595,0.03490323949539204,2.2443218835140595,14.09,0.43611064814814815,-5.436134635700717e-16,0.03767759450523539,14.09,14.09,0.0,-0.0,3.8099999999999996,1583.5864,-1.0872269e-15 -2.4967296521196007,0.03543572247982472,2.4967296521196007,4.490000000000015,0.43600011574074077,1.530736258234756e-14,0.038099271561524345,4.49,4.49,0.0,-0.0,3.98,1589.9513,3.0614725e-14 -2.6944216149799756,0.028791645973729917,2.6944216149799756,7.649999999999828,0.43200000000000005,8.37693287114202e-14,0.03086743950693461,7.65,7.649999999999745,2.556455047653117e-13,-0.0,1.0099999999999998,1594.5021,1.6757856e-13 -2.9284764556664302,0.029036976613139358,2.9284764556664302,9.630400342060847,0.43194837962962956,0.0004003420609917015,0.031033637434335744,9.63,9.629999999999855,1.448691167027505e-13,-0.0,1.0899999999999999,1599.4767,0.0007975891 -2.9419337101740304,0.026008675870397104,2.9419337101740304,-0.0031516020635400438,0.428,-0.0031516020635400438,0.027792344979986935,0.0,0.0,0.0,-0.0,-0.3749999999999999,1599.7505,0.011841645 -2.807135408380079,0.026799747385822862,2.807135408380079,-0.02029285330999665,0.4261517361111111,-0.02029285330999665,0.02868789804092259,0.0,0.0,0.0,-0.0,0.14500000000000002,1596.9495,0.03330057 -2.7057522842761776,0.027543560852584487,2.7057522842761776,1.1526169165220224,0.42400011574074076,0.012616916523642515,0.029524730648518713,1.14,1.1399999999983799,1.6200374375330282e-12,-0.0,0.635,1594.7527,0.022882648 -2.6488620617134964,0.028374484770576427,2.6488620617134964,1.7270283872436702,0.42121863425925926,0.007028387243681299,0.030439644461950306,1.72,1.7199999999999889,1.1075584893660562e-14,-0.0,1.175,1593.4836,0.013188936 -2.6187518691153278,0.029807690954817504,2.6187518691153278,2.2439946983507655,0.41999976851851856,0.003994698350765444,0.031990869372442575,2.24,2.24,0.0,-0.0,1.9449999999999998,1592.8009,0.0076935864 -2.6192390224016404,0.028283537169301393,2.6192390224016404,2.9423031518835274,0.4164640046296296,0.0023031518835326045,0.030354871636767575,2.94,2.9399999999999946,5.385691892456634e-15,-0.0,1.3,1592.812,0.00450491 -2.7566819490806043,0.027135964829922896,2.7566819490806043,8.701317313193183,0.4159996527777778,0.0013173132006826219,0.029067518389046188,8.7,8.6999999999925,7.49871831295934e-12,-0.0,0.6849999999999999,1595.8663,0.0026165778 -2.794803143484089,0.02724989435606509,2.794803143484089,0.0007819509564143829,0.4121109953703704,0.0007819509564143829,0.029174563310194565,0.0,0.0,0.0,-0.0,0.875,1596.6865,0.0015532755 -2.672612509718608,0.0248083771636858,2.672612509718608,-0.0015447720527128814,0.41200046296296294,-0.0015447720527128814,0.026605086996882854,0.0,0.0,0.0,-0.0,-0.45500000000000007,1594.0167,0.001317027 -2.5571436616661822,0.02184350370406291,2.5571436616661822,-3.645787227320703e-10,0.4080084490740741,-3.645787227320703e-10,0.023464312702562364,0.0,0.0,0.0,-0.0,-2.1100000000000003,1591.3792,0.0015642268 -2.4513190132117595,0.019456301978170738,2.4513190132117595,0.0,0.40794895833333333,-0.0,0.020933179919679024,0.0,0.0,0.0,-0.0,-3.715,1588.8551,0.0005214942 -2.353907177974609,0.0200871273257889,2.353907177974609,0.00012059834540272965,0.40399999999999997,-4.7318997063850274e-14,0.02164487933453692,3.15,0.00012059834545004865,3.14987940165455,-0.0,-3.1100000000000003,1586.4335,1.5792677 -2.2639499016990916,0.01716907490270769,2.2639499016990916,4.107270079600767e-14,0.4037145833333334,-0.0,0.01852770960981969,2.45,4.107270079600767e-14,2.4499999999999593,-0.0,-5.265000000000001,1584.1064,4.380969 -2.1806863810203843,0.015008331189798078,2.1806863810203843,0.0,0.40000023148148145,-0.0,0.01621889215084663,1.91,0.0,1.91,-0.0,-6.96,1581.8687,6.566025 -2.10337232387073,0.013326495022420375,2.10337232387073,0.0,0.39971435185185183,-0.0,0.014421053244938722,0.0,0.0,0.0,-0.0,-8.535,1579.7129,7.5288258 -2.0313139670236136,0.016244762773059192,2.0313139670236136,3.5749181392930043e-16,0.3960082175925926,-0.0,0.01760220662269223,1.61,3.5749181392930043e-16,1.6099999999999997,-0.0,-5.705,1577.6311,8.342444 -1.9687379159942098,0.0210070324739611,1.9687379159942098,3.516262388956833,0.39571446759259266,-8.759517105623921e-10,0.022789414120363866,6.93,3.516262389832785,3.4137376101672148,-0.0,-2.09,1575.7625,12.468886 -1.9121422823969103,0.017822731731086176,1.9121422823969103,2.5605615849855215e-9,0.3921108796296296,-0.0,0.019356332985417873,6.28,2.5605615849855215e-9,6.279999997439439,-0.0,-4.255,1574.0205,18.85455 -1.852351197015427,0.012787933626650502,1.852351197015427,0.0,0.3919487268518519,-0.0,0.013905063376450755,0.0,0.0,0.0,-0.0,-8.76,1572.1233,22.016756 -1.7961471211895947,0.020499783885241755,1.7961471211895947,-6.268079050483858e-10,0.3884644675925926,-6.268079050483858e-10,0.0223167268795885,0.0,0.0,0.0,-0.0,-2.125,1570.2832,22.058187 -1.7909156703214857,0.0283883737009298,1.7909156703214857,6.497176684646701,0.38799999999999996,6.497176684646701,0.030907929226148656,0.0,0.0,0.0,-0.0,2.605,1570.109,20.429857 -2.100386377402377,0.04426595308005689,2.100386377402377,9.254498443603516,0.3848466435185185,9.044498443603516,0.04790426518316746,0.21,0.21,0.0,-0.0,9.39,1579.628,9.044498 -2.28565494904104,0.03802326236411926,2.28565494904104,6.254804306030262,0.3840003472222222,3.3248043060302614,0.04101739006529422,2.93,2.93,0.0,-0.0,7.02,1584.6763,3.3248043 -2.4585549505379904,0.026712023987032752,2.4585549505379904,7.5512737748671785,0.38166932870370374,1.2212737748671787,0.028736481516929663,6.33,6.33,0.0,-0.0,1.775,1589.0311,1.22128 -2.5254626539578817,0.02656760285119509,2.5254626539578817,0.9040395487484416,0.3799997685185186,0.44403954874844165,0.028552302390840893,0.46,0.46,0.0,-0.0,1.7449999999999999,1590.6346,0.44902098 -2.4499264633792133,0.025217609309184853,2.4499264633792133,0.5396492254703192,0.37920590277777777,0.1496492254703299,0.027132392808664387,0.39,0.38999999999998936,1.0673129047233943e-14,-0.0,1.0300000000000002,1588.8212,0.17554678 -2.35912378448244,0.017206978498288984,2.35912378448244,0.0,0.37611087962962964,-0.0,0.018539830663167868,0.0,0.0,0.0,-0.0,-4.275,1586.5657,0.19970544 -2.268865118932099,0.015407713040663401,2.268865118932099,9.114931032172536e-16,0.3759486111111111,-0.0,0.01662560717375633,8.21,9.114931032172536e-16,8.209999999999999,-0.0,-5.775,1584.236,4.3225827 -2.185228750082057,0.017489874646780704,2.185228750082057,2.5933405896738647e-7,0.37321898148148147,-0.0,0.01889911041282347,18.27,2.5933405896738647e-7,18.26999974066594,-0.0,-3.9,1581.9929,17.574177 -2.107546857893635,0.014016913958763469,2.107546857893635,0.0,0.3719998842592593,-0.0,0.01516704219044739,5.55,0.0,5.55,-0.0,-6.885,1579.8313,29.463728 -2.035170761516459,0.017935317741669746,2.035170761516459,1.484532506111447e-6,0.37120578703703705,-2.1443065894222727e-15,0.019432632286361644,1.0,1.4845325082557537e-6,0.9999985154674917,-0.0,-3.435,1577.7444,32.76248 -1.9704489356201196,0.021057255934333326,1.9704489356201196,-1.706869942625992e-5,0.3684645833333333,-1.706869942625992e-5,0.022843146805580732,0.0,0.0,0.0,-0.0,-1.04,1575.8143,33.17584 -2.059425347916773,0.023604426428995122,2.059425347916773,9.688631437848704,0.3680003472222222,1.1186314378659863,0.025563557972187442,8.57,8.569999999982718,1.7282340003532682e-11,-0.0,0.6,1578.4519,32.88965 -2.4360095451474626,0.02397091312462454,2.4360095451474626,14.989881097732287,0.36615196759259255,1.6798810977357406,0.025796558214384275,13.31,13.309999999996545,3.455617458847371e-12,-0.0,0.8049999999999999,1588.481,31.525772 -2.6462968877946706,0.019358960967212017,2.6462968877946706,0.2784518429200028,0.3644642361111111,-2.0839083916309186e-10,0.020768704418975045,1.49,0.27845184312839366,1.2115481568716064,-0.0,-2.24,1593.4258,31.212208 -2.535123979475638,0.018526715989681218,2.535123979475638,-7.823491401708384e-13,0.36400011574074076,-7.823491401708384e-13,0.019907877216360354,0.0,0.0,0.0,-0.0,-2.82,1590.8627,31.90889 -2.4312191933323017,0.01515961262166292,2.4312191933323017,0.0,0.3621513888888889,-0.0,0.016315388987849077,0.0,0.0,0.0,-0.0,-5.52,1588.3634,31.909908 -2.3355225050358452,0.014575124113268167,2.3355225050358452,0.0,0.3604638888888889,-0.0,0.01571005864689305,0.0,0.0,0.0,-0.0,-5.975,1585.9652,31.909908 -2.2471633338678942,0.010575671925729948,2.2471633338678942,0.0,0.3599998842592593,-0.0,0.011415756019524312,0.0,0.0,0.0,-0.0,-10.25,1583.662,31.910904 -2.165326998853152,0.00897951516717612,2.165326998853152,0.0,0.35920578703703704,-0.0,0.009706386393473586,0.15,0.0,0.15,-0.0,-12.34,1581.4465,31.979984 -2.089202226267815,0.012289806034701025,2.089202226267815,0.0,0.3572189814814815,-0.0,0.013302616260116529,2.79,0.0,2.79,-0.0,-8.11,1579.3092,33.4811 -2.0181201450555424,0.01577043651049944,2.0181201450555424,7.02354718828957e-11,0.35611041666666665,-0.0,0.017092460999871363,8.51,7.02354718828957e-11,8.509999999929764,-0.0,-4.645,1577.242,39.144203 -1.9517211914601662,0.011459143549788348,1.9517211914601662,0.0,0.3559483796296296,-0.0,0.012435507726368063,4.13,0.0,4.13,-0.0,-8.965,1575.244,45.28898 -1.889664788745835,0.0073609290720955305,1.889664788745835,0.0,0.3546476851851852,-0.0,0.007997906733927824,0.0,0.0,0.0,-0.0,-14.655000000000001,1573.3143,47.409615 -1.831489775982626,0.006807460014320549,1.831489775982626,0.0,0.35321898148148145,-0.0,0.007405332951429274,0.0,0.0,0.0,-0.0,-15.575,1571.4469,47.441113 -1.776797367144045,0.00670843167955478,1.776797367144045,0.0,0.35211030092592593,-0.0,0.0073060249970889205,0.0,0.0,0.0,-0.0,-15.705,1569.6364,47.438175 -1.7252503943345951,0.00804387978257706,1.7252503943345951,0.0,0.35199988425925927,-0.0,0.008770259786248897,0.0,0.0,0.0,-0.0,-13.385,1567.8782,47.438896 -1.6765416738357646,0.01140185020559599,1.6765416738357646,0.0,0.35171423611111113,-0.0,0.01244503803769021,0.04,0.0,0.04,-0.0,-8.795,1566.1678,47.424496 -1.6304041077832268,0.01489405373331332,1.6304041077832268,1.1682654843525597e-13,0.3506474537037037,-0.0,0.01627406990094314,1.48,1.1682654843525597e-13,1.4799999999998832,-0.0,-5.11,1564.5013,48.208702 -1.5868071658886072,0.006588445823337569,1.5868071658886072,0.0,0.34966921296296294,-0.0,0.007206357427465442,0.0,0.0,0.0,-0.0,-15.79,1562.8827,48.951283 -1.5455065407412,0.008376118924789898,1.5455065407412,0.0,0.3488465277777778,-0.0,0.00917093305752689,0.0,0.0,0.0,-0.0,-12.695,1561.3077,49.05107 -1.5062349949986678,0.012831595298601539,1.5062349949986678,0.0,0.3481105324074074,-0.0,0.014063036899768159,0.0,0.0,0.0,-0.0,-7.01,1559.7706,49.072334 -1.4688647951542486,0.014003313605117048,1.4688647951542486,0.0,0.3480079861111111,-0.0,0.015361981324317531,0.0,0.0,0.0,-0.0,-5.8,1558.2703,49.063393 -1.4332740431489037,0.013916574929787175,1.4332740431489037,0.0,0.34794849537037037,-0.0,0.015281191856328058,0.0,0.0,0.0,-0.0,-5.87,1556.8054,49.0582 -1.3993320179850424,0.016303884271620418,1.3993320179850424,1.0330041565742576e-6,0.34771435185185184,-0.0,0.01791906766349601,6.28,1.0330041565742576e-6,6.279998966995843,-0.0,-3.6550000000000002,1555.3741,52.19295 -1.3670681391405017,0.017570893111636746,1.3670681391405017,0.09078109592077495,0.3472057870370371,-8.735991903458549e-12,0.019328907653393616,10.8,0.09078109592951095,10.70921890407049,-0.0,-2.57,1553.9811,60.73672 -1.336203496798573,0.013365393450379938,1.336203496798573,0.0,0.3466476851851852,-0.0,0.014715550904094925,0.0,0.0,0.0,-0.0,-6.335,1552.6173,66.12547 -1.3067166161397978,0.0088140770083156,1.3067166161397978,0.0,0.3466476851851852,-0.0,0.009712802131057272,0.0,0.0,0.0,-0.0,-11.870000000000001,1551.2847,66.12788 -1.2785466855222625,0.00879408529269695,1.2785466855222625,0.0,0.3461518518518519,-0.0,0.009698909261546037,0.0,0.0,0.0,-0.0,-11.87,1549.9832,66.12788 -1.2515595078182333,0.009679869967809453,1.2515595078182333,0.0,0.3461518518518519,-0.0,0.010684614864969725,0.0,0.0,0.0,-0.0,-10.604999999999999,1548.7091,66.04684 -1.2256253809540105,0.01440737719513084,1.2256253809540105,2.3027191264901603e-13,0.3456693287037037,-0.0,0.01591567577600001,8.77,2.3027191264901603e-13,8.76999999999977,-0.0,-5.22,1547.4586,70.45581 -1.258467840074832,0.018949022121501576,1.258467840074832,16.165687950120414,0.3456693287037037,-6.638209582022495e-7,0.020911441744705404,16.18,16.165688613941374,0.01431138605862716,-0.0,-1.39,1549.0378,80.11071 -1.4014588290712469,0.0188019445464917,1.4014588290712469,-1.1133509494127436e-7,0.3461518518518519,-1.1133509494127436e-7,0.020663399328866648,0.0,0.0,0.0,-0.0,-1.5799999999999998,1555.4648,80.12284 -1.3690675548628646,0.017562007382232275,1.3690675548628646,-1.2239092163224066e-11,0.3461518518518519,-1.2239092163224066e-11,0.01931804787348097,0.0,0.0,0.0,-0.0,-2.5349999999999997,1554.0684,80.139496 -1.3380538357929885,0.012636219559141642,1.3380538357929885,0.0,0.3461518518518519,-0.0,0.013911976165794315,2.18,0.0,2.18,-0.0,-7.08,1552.7,81.27018 -1.308502050585251,0.008740201129990102,1.308502050585251,0.0,0.3466476851851852,-0.0,0.009630887271902146,0.0,0.0,0.0,-0.0,-11.98,1551.3662,82.3085 -1.280246525305017,0.010435043451495084,1.280246525305017,0.0,0.3472057870370371,-0.0,0.011508116588951666,0.0,0.0,0.0,-0.0,-9.665,1550.0625,82.31403 -1.2531901670238794,0.00926771873417854,1.2531901670238794,0.0,0.34771435185185184,-0.0,0.01022916982942382,0.0,0.0,0.0,-0.0,-11.235,1548.7869,82.31403 -1.2272498442600228,0.009014314746937205,1.2272498442600228,0.0,0.34794849537037037,-0.0,0.009957508266455374,0.0,0.0,0.0,-0.0,-11.595,1547.5377,82.31403 -1.2023329811810601,0.011783666958011729,1.2023329811810601,0.0,0.34800000000000003,-0.0,0.013026937373952588,0.0,0.0,0.0,-0.0,-8.04,1546.3127,82.29195 -1.1784156914578736,0.008483307592924223,1.1784156914578736,0.0,0.3480079861111111,-0.0,0.009385647231936906,0.0,0.0,0.0,-0.0,-12.364999999999998,1545.1128,82.25813 -1.155460604143244,0.0072702739908153645,1.155460604143244,0.0,0.3484641203703704,-0.0,0.008049707986978655,1.37,0.0,1.37,-0.0,-14.35,1543.938,82.94237 -1.1333858107523516,0.012755741985136017,1.1333858107523516,0.0,0.34921886574074074,-0.0,0.01413380954271085,5.66,0.0,5.66,-0.0,-6.984999999999999,1542.786,83.895 -1.112128223498388,0.008763151960574589,1.112128223498388,0.0,0.35015162037037034,-0.0,0.009717001526366452,0.0,0.0,0.0,-0.0,-11.995,1541.6553,84.53156 -1.0916463761642443,0.0074623892416650515,1.0916463761642443,0.0,0.35120578703703703,-0.0,0.008280616348545562,0.0,0.0,0.0,-0.0,-14.09,1540.5452,84.87864 -1.0718922402652593,0.009221103510850422,1.0718922402652593,0.0,0.3519482638888889,-0.0,0.0102394166551404,0.0,0.0,0.0,-0.0,-11.38,1539.4546,84.96591 -1.052811864862415,0.011348087673571787,1.052811864862415,0.0,0.35200787037037035,-0.0,0.012610076042424893,0.0,0.0,0.0,-0.0,-8.629999999999999,1538.382,84.96591 -1.0343861192631683,0.011998075830857192,1.0343861192631683,0.0,0.35284641203703704,-0.0,0.013341492097443187,0.0,0.0,0.0,-0.0,-7.904999999999999,1537.3275,84.96429 -1.0166194332326992,0.010462038340696896,1.0166194332326992,0.0,0.3541518518518519,-0.0,0.01164130049782461,0.0,0.0,0.0,-0.0,-9.775,1536.2928,84.95998 -0.9994745186422621,0.00812268344525393,0.9994745186422621,0.0,0.35571446759259256,-0.0,0.009044237480244044,0.2,0.0,0.2,-0.0,-13.125,1535.2771,84.95828 -0.9829140424658868,0.006429014094242122,0.9829140424658868,0.0,0.35600000000000004,-0.0,0.0071630693195020205,0.0,0.0,0.0,-0.0,-16.09,1534.2793,84.96471 -0.9669026387834126,0.005496155803068359,0.9669026387834126,0.0,0.3564643518518519,-0.0,0.006127615928071002,0.0,0.0,0.0,-0.0,-18.04,1533.2985,84.984764 -0.9514087246797793,0.004944504853281351,0.9514087246797793,0.0,0.35815185185185183,-0.0,0.005516055715036294,0.0,0.0,0.0,-0.0,-19.38,1532.3337,85.023964 -0.9364004002515391,0.006042785349179023,0.9364004002515391,0.0,0.3599482638888889,-0.0,0.006745470064361635,0.0,0.0,0.0,-0.0,-16.975,1531.3842,85.087814 -0.9218454976358613,0.0068139862388872175,0.9218454976358613,0.0,0.36000787037037035,-0.0,0.007610999656050959,0.49,0.0,0.49,-0.0,-15.47,1530.4486,85.31639 -0.9077376005631318,0.0057627919167773,0.9077376005631318,0.0,0.36121863425925926,-0.0,0.006440726010619936,2.08,0.0,2.08,-0.0,-17.59,1529.5276,86.52593 -0.8940721940816239,0.004256559915319758,0.8940721940816239,0.0,0.3637142361111111,-0.0,0.004760120318668051,0.0,0.0,0.0,-0.0,-21.335,1528.6217,87.47294 -0.8808195367289563,0.004529634986675953,0.8808195367289563,0.0,0.36400011574074076,-0.0,0.005068457868605146,0.0,0.0,0.0,-0.0,-20.595,1527.7299,87.46198 -0.8679531322251586,0.0045745126838062184,0.8679531322251586,0.0,0.36521898148148146,-0.0,0.005121620063430888,0.29,0.0,0.29,-0.0,-20.509999999999998,1526.8511,87.58092 -0.8554617508667003,0.0035591568490253352,0.8554617508667003,0.0,0.36771435185185186,-0.0,0.003987089308196324,0.0,0.0,0.0,-0.0,-23.55,1525.9854,87.71776 -0.8433190559462055,0.00523464316398793,0.8433190559462055,0.0,0.3680083333333333,-0.0,0.005867309066577525,0.0,0.0,0.0,-0.0,-18.96,1525.1316,87.69866 -0.8314948718278837,0.006820437149537737,0.8314948718278837,0.0,0.3696696759259259,-0.0,0.00764899342357027,1.0,0.0,1.0,-0.0,-15.739999999999998,1524.2883,88.1545 -0.8199906608653346,0.005860256735707278,0.8199906608653346,0.0,0.3719483796296296,-0.0,0.0065757583169853435,0.0,0.0,0.0,-0.0,-17.695,1523.4563,88.593994 -0.8088191908837329,0.00401022832934111,0.8088191908837329,0.0,0.37211041666666667,-0.0,0.004502273757789815,0.0,0.0,0.0,-0.0,-22.265,1522.6371,88.59907 -0.7979515926863814,0.005241556770828192,0.7979515926863814,0.0,0.3746479166666667,-0.0,0.005887807132689162,0.0,0.0,0.0,-0.0,-19.134999999999998,1521.8292,88.59907 -0.7873619753402795,0.005249068902687176,0.7873619753402795,0.0,0.3760002314814815,-0.0,0.005899338316723266,0.0,0.0,0.0,-0.0,-19.155,1521.0314,88.59907 -0.7770478880785876,0.005326523147736727,0.7770478880785876,0.0,0.3772188657407407,-0.0,0.005989488717966779,0.0,0.0,0.0,-0.0,-19.009999999999998,1520.2439,88.59908 -0.7669755088798659,0.008883052745952033,0.7669755088798659,0.0,0.3799997685185186,-0.0,0.009993803835476506,0.0,0.0,0.0,-0.0,-12.69,1519.4647,89.13789 -0.7571466607267676,0.00766786800536495,0.7571466607267676,0.0,0.3804640046296296,-0.0,0.008631045800043187,2.97,0.0,2.97,-0.0,-14.58,1518.6945,90.5909 -0.7475935099155078,0.004521457619242821,0.7475935099155078,0.0,0.383714699074074,-0.0,0.005091950339461261,0.0,0.0,0.0,-0.0,-21.17,1517.9362,91.89223 -0.738286137706424,0.006126428767786521,0.738286137706424,0.0,0.38400833333333334,-0.0,0.006902830249512972,0.0,0.0,0.0,-0.0,-17.490000000000002,1517.188,91.894905 -0.7291900255768593,0.0071054821400521545,0.7291900255768593,0.0,0.3866476851851852,-0.0,0.0080098675722104,0.0,0.0,0.0,-0.0,-15.725,1516.4476,91.894905 -0.7202943160381502,0.009470024706121422,0.7202943160381502,0.0,0.38799999999999996,-0.0,0.010680531843114453,0.0,0.0,0.0,-0.0,-12.1,1515.7146,91.894905 -0.7115769413652877,0.01330860806631298,0.7115769413652877,0.0,0.3901519675925926,-0.0,0.015016987105935568,0.0,0.0,0.0,-0.0,-7.664999999999999,1514.9874,91.84286 -0.7030297318561808,0.01576910709909154,0.7030297318561808,6.810552122260561e-14,0.39200034722222227,-0.0,0.017801811788591585,17.28,6.810552122260561e-14,17.279999999999934,-0.0,-5.409999999999999,1514.2657,100.47969 -0.6946675393696009,0.0157771402539219,0.6946675393696009,4.443945211818345e-14,0.3936696759259259,-0.0,0.017819289581003574,17.79,4.443945211818345e-14,17.789999999999957,-0.0,-5.455,1513.5511,117.84159 -0.686531096193338,0.010780441315507474,0.686531096193338,0.0,0.39600023148148145,-0.0,0.012181494656266188,10.02,0.0,10.02,-0.0,-10.649999999999999,1512.8475,131.56912 -0.6786078462832466,0.010440030384554445,0.6786078462832466,0.0,0.3972188657407407,-0.0,0.011802251248231295,13.01,0.0,13.01,-0.0,-11.105,1512.1543,143.26648 -0.670892591601739,0.0061970141263256355,0.670892591601739,0.0,0.40000023148148145,-0.0,0.007008768944763445,0.0,0.0,0.0,-0.0,-17.805,1511.4714,149.67455 -0.6633735216136638,0.006105367523972805,0.6633735216136638,0.0,0.4012189814814815,-0.0,0.006908193826555299,0.0,0.0,0.0,-0.0,-18.02,1510.7983,149.69545 -0.6560191729181145,0.006340390428338301,0.6560191729181145,0.0,0.40399999999999997,-0.0,0.00717728395785723,0.0,0.0,0.0,-0.0,-17.634999999999998,1510.1326,149.69545 -0.6488060322542847,0.009807862175978533,0.6488060322542847,0.0,0.40521898148148144,-0.0,0.011107297656914586,0.0,0.0,0.0,-0.0,-12.155,1509.4723,149.71518 -0.6417377859301804,0.00817580802574214,0.6417377859301804,0.0,0.4080003472222223,-0.0,0.009263028422719649,0.0,0.0,0.0,-0.0,-14.57,1508.8181,150.16795 -0.6348321800746216,0.0072781723210226575,0.6348321800746216,0.0,0.40966990740740744,-0.0,0.008249557654835737,1.14,0.0,1.14,-0.0,-16.08,1508.172,150.9368 -0.6280933142647314,0.004632667644030642,0.6280933142647314,0.0,0.41200046296296294,-0.0,0.00525318913136029,0.49,0.0,0.49,-0.0,-21.645,1507.5347,151.63826 -0.621509822980935,0.004458236163064199,0.621509822980935,0.0,0.41464768518518513,-0.0,0.005057504564746195,0.0,0.0,0.0,-0.0,-22.17,1506.9054,151.90054 -0.615073281549633,0.0028930430190115424,0.615073281549633,0.0,0.4159996527777778,-0.0,0.0032832754440174747,0.0,0.0,0.0,-0.0,-27.185,1506.2837,151.94725 -0.6087730788598528,0.003031514396046535,0.6087730788598528,0.0,0.419205324074074,-0.0,0.003441829701496883,0.0,0.0,0.0,-0.0,-26.740000000000002,1505.6688,151.94124 -0.6025977611742246,0.0034039157028153233,0.6025977611742246,0.0,0.41999976851851856,-0.0,0.003866198980586915,0.0,0.0,0.0,-0.0,-25.439999999999998,1505.0599,151.94116 -0.5965411727983918,0.003999404901191761,0.5965411727983918,0.0,0.42400011574074076,-0.0,0.00454438264701345,0.0,0.0,0.0,-0.0,-23.685,1504.4567,151.94116 -0.5905852935744588,0.007748812514186819,0.5905852935744588,0.0,0.42400011574074076,-0.0,0.00880821061416255,0.0,0.0,0.0,-0.0,-15.690000000000001,1503.8574,152.15999 -0.5847091954950138,0.011546938410489002,0.5847091954950138,0.0,0.428,-0.0,0.013130820830288532,0.71,0.0,0.71,-0.0,-10.685,1503.2603,152.67094 -0.5789022119451949,0.017779749596236922,0.5789022119451949,5.212930087594714e-13,0.42846388888888887,-0.0,0.020226600928749845,0.63,5.212930087594714e-13,0.6299999999994788,-0.0,-4.875,1502.6642,153.25233 -0.5731739881456263,0.017958287436726363,0.5731739881456263,0.0,0.43200000000000005,-0.0,0.020437786443001815,0.0,0.0,0.0,-0.0,-4.845,1502.0703,153.5354 -0.5675882913302296,0.011668301790368556,0.5675882913302296,0.0,0.4336695601851852,-0.0,0.013284515482943432,1.96,0.0,1.96,-0.0,-10.705,1501.4855,154.42764 -0.5621328586233041,0.012093081004496914,0.5621328586233041,0.0,0.43600011574074077,-0.0,0.01377342315811073,9.99,0.0,9.99,-0.0,-10.3,1500.9087,160.43301 -0.5567867631914848,0.010365545501329274,0.5567867631914848,0.0,0.4399488425925926,-0.0,0.011810335926834566,7.22,0.0,7.22,-0.0,-12.424999999999999,1500.338,169.18718 -0.5515602789609855,0.007920855222038373,0.5515602789609855,0.0,0.4400003472222222,-0.0,0.009028284370180632,0.61,0.0,0.61,-0.0,-15.844999999999999,1499.7748,173.21844 -0.5464554537397975,0.004944057449034147,0.5464554537397975,0.0,0.4440001157407408,-0.0,0.005637382360714248,0.0,0.0,0.0,-0.0,-21.695,1499.2195,173.66246 -0.5414532097115069,0.005200295014963289,0.5414532097115069,0.0,0.4440081018518519,-0.0,0.005931726054255923,0.0,0.0,0.0,-0.0,-21.09,1498.6703,173.6619 -0.5365296557829611,0.007656681541353876,0.5365296557829611,0.0,0.4480001157407407,-0.0,0.008736788139987971,0.0,0.0,0.0,-0.0,-16.48,1498.1248,173.6619 -0.5316769546425708,0.009952852575382132,0.5316769546425708,0.0,0.4501516203703704,-0.0,0.01136098839581927,0.0,0.0,0.0,-0.0,-13.22,1497.5822,173.68312 -0.5269090695915666,0.01635980211559912,0.5269090695915666,0.0,0.452,-0.0,0.018681107830188667,2.6,0.0,2.6,-0.0,-6.7,1497.0442,174.3679 -0.5222309073731513,0.009553473647697803,0.5222309073731513,0.0,0.45599953703703705,-0.0,0.010912906251313722,5.55,0.0,5.55,-0.0,-13.899999999999999,1496.5116,176.03172 -0.5176366012958991,0.005612463424373114,0.5176366012958991,0.0,0.45599953703703705,-0.0,0.006413362809089533,0.0,0.0,0.0,-0.0,-20.475,1495.9839,178.69398 -0.5131183725898457,0.008872950167083274,0.5131183725898457,0.0,0.46,-0.0,0.010142671205186067,4.56,0.0,4.56,-0.0,-14.940000000000001,1495.4603,182.38463 -0.5086666139677184,0.010025156446204418,0.5086666139677184,0.0,0.4604638888888889,-0.0,0.011463747565632305,5.03,0.0,5.03,-0.0,-13.395,1494.94,187.27412 -0.5042967701834544,0.007666218814201279,0.5042967701834544,0.0,0.463999537037037,-0.0,0.008769329326377048,0.0,0.0,0.0,-0.0,-16.87,1494.4247,189.67497 -0.49998797212080326,0.013142336309028196,0.49998797212080326,0.0,0.46799976851851854,-0.0,0.015038575288032319,0.0,0.0,0.0,-0.0,-10.075,1493.9122,189.49374 -0.4957180156987993,0.015470477464520233,0.4957180156987993,0.0,0.46799976851851854,-0.0,0.01770870341281103,6.64,0.0,6.64,-0.0,-7.895,1493.4,192.96326 -0.49154681524250465,0.007604072982347255,0.49154681524250465,0.0,0.4719996527777777,-0.0,0.008707151514220185,1.16,0.0,1.16,-0.0,-17.17,1492.8954,196.82568 -0.4874714905056695,0.008361089730139272,0.4874714905056695,0.0,0.4719996527777777,-0.0,0.009577173840191161,0.0,0.0,0.0,-0.0,-15.985,1492.3982,197.87962 -0.48345861075226254,0.014959785236089625,0.48345861075226254,0.0,0.4760001157407408,-0.0,0.017141290847240576,1.15,0.0,1.15,-0.0,-8.56,1491.9045,198.72534 -0.4795052278728605,0.011082077590743745,0.4795052278728605,0.0,0.4800005787037037,-0.0,0.01270229276519827,0.0,0.0,0.0,-0.0,-12.61,1491.4142,199.3841 -0.4756084764190141,0.007883379817307322,0.4756084764190141,0.0,0.4800005787037037,-0.0,0.009038894291840748,0.0,0.0,0.0,-0.0,-16.915,1490.9269,199.87709 -0.47176460659468616,0.007924089850020634,0.47176460659468616,0.0,0.4840002314814815,-0.0,0.009088525624080253,0.0,0.0,0.0,-0.0,-16.95,1490.4423,200.22557 -0.46797093358343206,0.014453192625535682,0.46797093358343206,0.0,0.4840002314814815,-0.0,0.01658243708500021,0.0,0.0,0.0,-0.0,-9.225,1489.9601,200.45074 -0.46422389810778164,0.020593422080016067,0.46422389810778164,1.1637943275744078e-10,0.48800034722222224,-0.0,0.023634860939956263,4.04,1.1637943275744078e-10,4.039999999883621,-0.0,-4.5200000000000005,1489.48,200.57384 -0.4605209847197014,0.01796716615225057,0.4605209847197014,0.0,0.4919994212962963,-0.0,0.020627357176271854,0.0,0.0,0.0,-0.0,-6.505,1489.0017,200.61609 -0.45687749092935637,0.01394468595776918,0.45687749092935637,0.0,0.4919994212962963,-0.0,0.016014416605320995,0.0,0.0,0.0,-0.0,-9.905,1488.5273,200.61676 -0.4532906187686755,0.01755179536155247,0.4532906187686755,0.0,0.4959997685185185,-0.0,0.02016328484729568,0.0,0.0,0.0,-0.0,-6.925000000000001,1488.0566,200.60526 -0.47488767821989314,0.03059107183969302,0.47488767821989314,12.348137744105042,0.4959997685185185,1.8281377441066184,0.035077120530839334,10.52,10.519999999998424,1.5755707849507416e-12,-0.0,0.8599999999999999,1490.8363,202.5645 -0.5520385086683941,0.031919722056075246,0.5520385086683941,6.8199772500599565,0.4999997685185186,2.9399772500599664,0.03638122081379638,3.88,3.8799999999999906,9.261480471423056e-15,-0.0,1.275,1499.8265,200.22644 -0.5872868649499801,0.0312629031961659,0.5872868649499801,2.280367738005466,0.503999537037037,1.7203677380055913,0.03554499401378212,0.56,0.5599999999998749,1.2512213487525514e-13,-0.0,0.8199999999999998,1503.523,198.17467 -0.5890902854653588,0.0285888700710483,0.5890902854653588,-0.0025934951330031557,0.503999537037037,-0.0025934951330031557,0.03250073955412372,0.0,0.0,0.0,-0.0,-0.47499999999999964,1503.706,197.6452 -0.5913475157753896,0.032396970378008656,0.5913475157753896,2.7928450824672644,0.5079996527777778,2.7928450824672644,0.03682431633243447,0.0,0.0,0.0,-0.0,1.22,1503.9344,196.75684 -0.6315796150536559,0.03231510725179225,0.6315796150536559,6.302175330566127,0.5079996527777778,2.5921753305661595,0.03663551276542286,3.71,3.709999999999968,3.212763388660278e-14,-0.0,1.145,1507.8652,194.07158 -0.7111407274928399,0.033584879641762225,0.7111407274928399,8.368658944960066,0.511999537037037,3.6086589449600672,0.03789696815659551,4.76,4.759999999999999,7.926992395823617e-16,-0.0,1.5250000000000001,1514.9508,190.77234 -0.7527502523590486,0.031077634906041506,0.7527502523590486,0.1345741736642512,0.5159998842592592,0.1345741736642512,0.034989377604603,0.0,0.0,0.0,-0.0,0.25,1518.3467,188.94238 -0.8181941826380611,0.040734742981209264,0.8181941826380611,11.382963864669755,0.5159998842592592,10.722963864669754,0.04571213665775564,0.66,0.66,0.0,-0.0,4.1850000000000005,1523.3253,183.49988 -0.9937035201481424,0.036842809429312756,0.9937035201481424,13.892739845410214,0.520000462962963,6.122739845410214,0.041032030197265194,7.77,7.77,0.0,-0.0,2.465,1534.9313,175.23631 -1.0948351887235912,0.023928871447025296,1.0948351887235912,3.3487309244573105e-7,0.520000462962963,-0.0,0.026549593601720264,7.47,3.3487309244573105e-7,7.469999665126907,-0.0,-3.7849999999999997,1540.7194,175.991 -1.074263320344715,0.016861865235037923,1.074263320344715,0.0,0.5240002314814816,-0.0,0.018722364975002525,0.45,0.0,0.45,-0.0,-8.665,1539.5865,179.90785 -1.0549833071467105,0.016826928073311535,1.0549833071467105,0.0,0.5279998842592593,-0.0,0.018696707161980373,0.0,0.0,0.0,-0.0,-8.785,1538.505,180.12173 -1.0363543136458844,0.02003354148390845,1.0363543136458844,0.0,0.5279998842592593,-0.0,0.022275038370418828,0.0,0.0,0.0,-0.0,-6.42,1537.441,180.06927 -1.0183727068995445,0.01572285368987051,1.0183727068995445,0.0,0.5319998842592593,-0.0,0.017493933703744427,0.0,0.0,0.0,-0.0,-9.77,1536.3958,180.07115 -1.001052933761598,0.013595659120327591,1.001052933761598,0.0,0.5319998842592593,-0.0,0.015137217079588889,0.79,0.0,0.79,-0.0,-11.670000000000002,1535.3713,180.46375 -0.9842771675389764,0.019535894921765693,0.9842771675389764,0.0,0.5359994212962963,-0.0,0.021765300133914957,3.49,0.0,3.49,-0.0,-6.9399999999999995,1534.362,182.79561 -0.9680140071608135,0.018489997855684077,0.9680140071608135,0.0,0.5395353009259259,-0.0,0.020613414240032737,0.0,0.0,0.0,-0.0,-7.765000000000001,1533.3671,184.49612 -0.9522764643778171,0.019155687375801846,0.9522764643778171,0.0,0.54,-0.0,0.021369194264905755,0.0,0.0,0.0,-0.0,-7.29,1532.3882,184.50285 -0.9369901102956347,0.024669274749651318,0.9369901102956347,0.0,0.5439997685185185,-0.0,0.027537262920666522,0.0,0.0,0.0,-0.0,-3.905,1531.4218,184.50285 -0.9270115668884807,0.031228306375066295,0.9270115668884807,-0.0012543616494599809,0.5439997685185185,-0.0012543616494599809,0.0348733916094148,0.0,0.0,0.0,-0.0,-0.5600000000000005,1530.7823,184.18587 -0.9991681206530825,0.042448448618422736,0.9991681206530825,9.653144325469755,0.5479999999999999,9.653144325469755,0.047264974854653134,0.0,0.0,0.0,-0.0,3.7850000000000006,1535.2588,178.73398 -1.1734881272779552,0.045785406340828574,1.1734881272779552,12.300947684989753,0.5498481481481481,12.300947684989753,0.0506636446426588,0.0,0.0,0.0,-0.0,4.7749999999999995,1544.8625,168.01007 -1.3057687615683184,0.038036948801831866,1.3057687615683184,4.611619597199366,0.5520004629629629,4.611619597199366,0.04191654755627574,0.0,0.0,0.0,-0.0,1.9000000000000004,1551.2413,160.3276 -1.304029703796679,0.028235323068630545,1.304029703796679,-1.7989201353905698e-11,0.5559922453703704,-1.7989201353905698e-11,0.031116796326667136,0.0,0.0,0.0,-0.0,-2.4949999999999997,1551.1617,159.05672 -1.280950658455543,0.042832912826221925,1.280950658455543,9.051370834669738,0.5560002314814815,9.051370834669738,0.04723657499743788,0.0,0.0,0.0,-0.0,3.5600000000000005,1550.0953,158.96481 -1.2685738435908125,0.03629440637386219,1.2685738435908125,3.45753029137847,0.56,2.2575302913785062,0.04004082091555576,1.2,1.1999999999999638,3.630429290524262e-14,-0.0,1.02,1549.5155,158.7054 -1.25730824062282,0.018480508118582734,1.25730824062282,0.0,0.5600517361111111,-0.0,0.02039513183044838,0.0,0.0,0.0,-0.0,-8.41,1548.9828,158.43564 -1.237757729568138,0.021872846675541766,1.237757729568138,0.0,0.5639996527777777,-0.0,0.02415351839970027,0.0,0.0,0.0,-0.0,-6.215,1548.0469,158.31648 -1.2457428412105909,0.04333374925672502,1.2457428412105909,8.824034182589715,0.5663305555555556,8.824034182589715,0.04784027146172098,0.0,0.0,0.0,-0.0,3.4750000000000005,1548.4309,156.67036 -1.4897952624871103,0.05211848597290206,1.4897952624871103,16.088097652829756,0.5679997685185185,15.858097652829755,0.057144281556081124,0.23,0.23,0.0,-0.0,6.105,1559.1152,144.6265 -1.9171713018672567,0.05654855775371987,1.9171713018672567,18.546019245069754,0.5715351851851852,18.546019245069754,0.0614082992739261,0.0,0.0,0.0,-0.0,7.109999999999999,1574.1774,127.80119 -2.64858594265423,0.0642569604483656,2.64858594265423,24.40334345026975,0.5719994212962963,23.293343450269752,0.06893399784492614,1.11,1.11,0.0,-0.0,8.885,1593.4774,106.73422 -3.8160591719049055,0.058669446929587976,3.8160591719049055,26.079746687469758,0.5760005787037037,18.679746687469756,0.062089986636852786,7.4,7.4,0.0,-0.0,7.16,1615.2867,85.846695 -4.9689073245167386,0.04508542175725924,4.9689073245167386,14.630605433706968,0.5760005787037037,7.6606054337069684,0.047252805111612756,6.97,6.97,0.0,-0.0,3.04,1631.0518,72.72329 -5.583595446848754,0.041587952251722224,5.583595446848754,9.896590619084702,0.5800003472222222,4.0365906190847,0.04340185673812607,5.86,5.86,3.252953462151709e-16,-0.0,1.6849999999999998,1638.0171,66.802795 -5.946249863924564,0.043746759697062536,5.946249863924564,9.072030448136807,0.5807946759259259,5.882030448136807,0.04555031813877769,3.19,3.19,0.0,-0.0,2.375,1641.7751,61.746143 -6.7581305061274595,0.0511321095161477,6.7581305061274595,19.245801449949752,0.5840005787037037,11.685801449949754,0.052993433812962946,7.56,7.56,0.0,-0.0,4.545,1649.4185,53.016514 -7.811166453794503,0.053294956381248024,7.811166453794503,14.269821362429754,0.5853530092592593,13.049821362429753,0.05494692485563346,1.22,1.22,0.0,-0.0,5.055,1658.0664,40.843014 -8.983937135856662,0.058987341507079384,8.983937135856662,19.100817005389754,0.5880002314814815,16.780817005389753,0.060510881561976884,2.32,2.32,0.0,-0.0,6.449999999999999,1666.4203,25.925766 -9.657471316107888,0.04852559495404921,9.657471316107888,8.650188507469677,0.5903311342592593,8.650188507469677,0.04965029175347448,0.0,0.0,0.0,-0.0,3.41,1670.7377,13.236806 -9.391126771097404,0.043076299802505005,9.391126771097404,7.166116844375123,0.5920008101851852,3.876116844375123,0.04411879984926355,3.29,3.29,1.8263168755083825e-16,-0.0,1.625,1669.0675,6.970853 -9.585236829907808,0.047655390926350995,9.585236829907808,12.612647581097779,0.5943310185185184,2.812647581097777,0.048773007537854976,9.8,9.8,0.0,-0.0,3.045,1670.2893,2.8126476 -9.418058692222205,0.04659593109658058,9.418058692222205,4.883410705320292,0.5959997685185184,1.033410705320292,0.04771872111482125,3.85,3.85,0.0,-0.0,2.6799999999999997,1669.2385,1.0334443 -8.452121527537468,0.055456577993686376,8.452121527537468,0.3726981623914354,0.5987809027777777,0.3726981623914354,0.057013603209432946,0.0,0.0,0.0,-0.0,5.27,1662.7761,0.38095635 -7.424053121144639,0.060192241190646104,7.424053121144639,0.1254233254584128,0.5999998842592592,0.1254233254584128,0.06217182454342711,0.0,0.0,0.0,-0.0,6.555000000000001,1655.0309,0.15267135 -6.604956426497933,0.0663450264488817,6.604956426497933,0.048754740227900537,0.6027810185185185,0.048754740227900537,0.06881725875826288,0.0,0.0,0.0,-0.0,8.045,1648.0493,0.07239311 -6.801506598943987,0.06285632668911752,6.801506598943987,16.65281224027147,0.6039996527777778,0.02281224027147041,0.06512935206665343,16.63,16.63,0.0,-0.0,7.165,1649.8005,0.03835705 -7.092709443374424,0.05559933396829963,7.092709443374424,2.611938111145534,0.6063304398148148,0.011938111145533847,0.057522636524020836,2.6,2.6,0.0,-0.0,5.215,1652.3042,0.021560837 -6.457616362721127,0.05724049424841074,6.457616362721127,0.006609466733297185,0.6079995370370371,0.006609466733297185,0.05942203982882017,0.0,0.0,0.0,-0.0,5.665,1646.702,0.0124454815 -6.003221218650788,0.05470760662719005,6.003221218650788,3.533777955113667,0.6098476851851852,0.003777955113667314,0.05694329953490702,3.53,3.53,0.0,-0.0,4.9750000000000005,1642.3446,0.0072902865 -5.825368310139383,0.056499419642371373,5.825368310139383,4.7921991019906125,0.6120002314814815,0.002199101990612507,0.05887271866962216,4.79,4.79,0.0,-0.0,5.425000000000001,1640.5486,0.0043055303 -5.82318968376163,0.06228189106924928,5.82318968376163,6.9412868435420245,0.6133524305555556,0.0012868435420244186,0.06489897070543542,6.94,6.94,0.0,-0.0,6.875,1640.5262,0.0025413954 -5.903173535791336,0.05018043095494009,5.903173535791336,6.660719532956179,0.6159914351851852,0.0007195329561790886,0.05226305407871947,6.66,6.66,0.0,-0.0,3.54,1641.341,0.0014288579 -5.810716985848576,0.05724796292739944,5.810716985848576,3.200393967508155,0.6162851851851852,0.00039396750815486617,0.05965817397795376,3.2,3.2,0.0,-0.0,5.5200000000000005,1640.3982,0.00078485504 -5.4161038513761754,0.058781462694815934,5.4161038513761754,0.00023272604646455136,0.6195356481481481,0.00023272604646455136,0.06141347441317545,0.0,0.0,0.0,-0.0,5.88,1636.1982,0.00046437388 -4.961062434917812,0.06395084024787877,4.961062434917812,0.00013783130399730754,0.6199998842592592,0.00013783130399730754,0.06702901525841973,0.0,0.0,0.0,-0.0,7.205000000000001,1630.9574,0.0002752837 -4.575223148193188,0.07796830930306729,4.575223148193188,7.879413531102739e-5,0.6227818287037037,7.879413531102739e-5,0.08196418804404242,0.0,0.0,0.0,-0.0,10.265,1626.1222,0.0001574643 -4.24312435905276,0.09932427887715257,4.24312435905276,4.47838428891035e-5,0.6240006944444445,4.47838428891035e-5,0.10470441817066613,0.0,0.0,0.0,-0.0,14.155000000000001,1621.622,8.952761e-5 -3.9505731062866967,0.11540770124112205,3.9505731062866967,1.0517831539365672e-5,0.6253526620370371,1.0517831539365672e-5,0.12197995742074481,0.0,0.0,0.0,-0.0,16.63,1617.3556,2.1033451e-5 -3.6950570898796293,0.12240465743675395,3.6950570898796293,-2.3470747882564506e-5,0.6278895833333333,-2.3470747882564506e-5,0.12969558883496385,0.0,0.0,0.0,-0.0,17.585,1613.3624,-4.695252e-5 -3.4761174157568173,0.11011551816369232,3.4761174157568173,-4.758270196500182e-5,0.6280518518518519,-4.758270196500182e-5,0.11693884817735636,0.0,0.0,0.0,-0.0,15.86,1609.7147,-9.521073e-5 -3.2931244849741526,0.0699343742130644,3.2931244849741526,0.7299477664985331,0.6303303240740741,-5.223350146692729e-5,0.07441717683739484,0.73,0.73,0.0,-0.0,8.565000000000001,1606.4851,-0.00010452163 -3.146740402008312,0.07316963124558984,3.146740402008312,0.28996720813840193,0.6319916666666667,-3.279186159803524e-5,0.07799164414746537,0.29,0.29,0.0,-0.0,9.254999999999999,1603.7697,-6.560524e-5 -3.03274486188254,0.07485188139382189,3.03274486188254,-1.0773669146497848e-5,0.6322856481481481,-1.0773669146497848e-5,0.07989453443894297,0.0,0.0,0.0,-0.0,9.625,1601.566,-2.154966e-5 -2.9289613556963716,0.08490609593825814,2.9289613556963716,1.4600057043705406,0.6347809027777778,5.7043705406137315e-6,0.09074390711308722,1.46,1.46,0.0,-0.0,11.575000000000001,1599.4866,1.140809e-5 -2.8146621280935427,0.07967839600086378,2.8146621280935427,1.1556812903623834e-5,0.6360001157407408,1.1556812903623834e-5,0.0852835214878183,0.0,0.0,0.0,-0.0,10.559999999999999,1597.1094,2.3110955e-5 -2.703469082532728,0.09862338766646858,2.703469082532728,6.794595299056633e-6,0.6362856481481481,6.794595299056633e-6,0.10572057210991093,0.0,0.0,0.0,-0.0,13.995000000000001,1594.7023,1.3588267e-5 -2.6639786701055104,0.09176490852360476,2.6639786701055104,2.1799901336994747e-6,0.6387810185185185,2.1799901336994747e-6,0.09842277705891993,0.0,0.0,0.0,-0.0,12.775,1593.8235,4.359885e-6 -2.7001168803319864,0.09683761638974546,2.7001168803319864,6.759999262480781,0.6399917824074074,-7.375192188079638e-7,0.10381111579534744,6.76,6.76,0.0,-0.0,13.604999999999999,1594.6282,-1.4750493e-6 -2.815249024186007,0.08304695612280677,2.815249024186007,5.619998958275052,0.6400512731481481,-1.041724947710134e-6,0.08888835627938882,5.62,5.62,0.0,-0.0,11.115,1597.1218,-2.0834716e-6 -2.936568613657626,0.08870216015951995,2.936568613657626,8.109999865322973,0.6418483796296296,-1.346770266728769e-7,0.0947917934630715,8.11,8.11,0.0,-0.0,12.095,1599.6415,-2.6935442e-7 -3.022169162226977,0.08880837615976644,3.022169162226977,5.20000095315112,0.6435354166666667,9.53151119429419e-7,0.0948036052268827,5.2,5.2,0.0,-0.0,12.055,1601.3574,1.9062841e-6 -3.0612385527376236,0.08057603154667092,3.0612385527376236,9.250001938604619,0.6439998842592592,1.9386046188724765e-6,0.08597433199787681,9.25,9.25,0.0,-0.0,10.49,1602.1245,3.877134e-6 -3.04453974118864,0.07067993064710038,3.04453974118864,2.5385071231856023e-6,0.6442856481481481,2.5385071231856023e-6,0.07543060809218935,0.0,0.0,0.0,-0.0,8.435,1601.7979,5.0768854e-6 -2.9657647282355946,0.07279038397749683,2.9657647282355946,2.4696751635474574e-6,0.6458482638888889,2.4696751635474574e-6,0.07775891268511376,0.0,0.0,0.0,-0.0,8.87,1600.2323,4.9392283e-6 -2.8356358111335527,0.0872463879539505,2.8356358111335527,1.5446272365297608e-6,0.6471538194444444,1.5446272365297608e-6,0.09335798167889132,0.0,0.0,0.0,-0.0,11.72,1597.5527,3.0892068e-6 -2.7351403111123593,0.09668156714712187,2.7351403111123593,21.310000333586373,0.6479927083333333,3.335863753154124e-7,0.10359382913446352,21.31,21.31,0.0,-0.0,13.370000000000001,1595.3978,6.671705e-7 -2.6693040246929614,0.08837958680824495,2.6693040246929614,-7.530934581414409e-7,0.6480521990740741,-7.530934581414409e-7,0.0947847457275779,0.0,0.0,0.0,-0.0,11.94,1593.9427,-1.5061983e-6 -2.629017262735737,0.110074039676399,2.629017262735737,-1.3936146570902831e-6,0.6487947916666666,-1.3936146570902831e-6,0.11811876903412977,0.0,0.0,0.0,-0.0,15.490000000000002,1593.0345,-2.7872682e-6 -2.606469243461824,0.10898397134438619,2.606469243461824,2.339998733812279,0.6498487268518519,-1.2661877206833554e-6,0.11698680940119455,2.34,2.34,0.0,-0.0,15.305,1592.5201,-2.5324075e-6 -2.5770621697950813,0.09766290070651355,2.5770621697950813,3.219999546910153,0.6507814814814814,-4.530898470762824e-7,0.10487904318233285,3.22,3.22,0.0,-0.0,13.5,1591.8425,-9.061838e-7 -2.5390185719686125,0.08535813754165544,2.5390185719686125,6.700000555185762,0.6515357638888889,5.551857625510768e-7,0.09171627635611374,6.7,6.7,0.0,-0.0,11.330000000000002,1590.9543,1.1103654e-6 -2.5197958206611553,0.08891939490950644,2.5197958206611553,9.720001487211597,0.6519921296296297,1.4872115964467644e-6,0.09557006753229719,9.72,9.72,0.0,-0.0,11.975000000000001,1590.5005,2.974379e-6 -2.546315596613697,0.0852134855560078,2.546315596613697,2.071574210916776e-6,0.6520001157407407,2.071574210916776e-6,0.09155098716713976,0.0,0.0,0.0,-0.0,11.29,1591.1257,4.1430626e-6 -2.6484722549371154,0.09367994605210857,2.6484722549371154,7.560002036852142,0.6520517361111111,2.0368521421128512e-6,0.10049874041630898,7.56,7.56,0.0,-0.0,12.780000000000001,1593.4749,4.0736213e-6 -2.8174193004183,0.07274158332383264,2.8174193004183,7.1900012620350955,0.6522856481481482,1.262035095203759e-6,0.07785587539842595,7.19,7.19,0.0,-0.0,8.735,1597.1678,2.5240383e-6 -2.8525295607751358,0.07744821034442939,2.8525295607751358,2.79000042335296,0.6527943287037037,4.23352959717731e-7,0.08285504554720201,2.79,2.79,0.0,-0.0,9.695,1597.9075,8.4670233e-7 -2.774641864160179,0.10969488266218093,2.774641864160179,-1.9725917778971787e-7,0.653352662037037,-1.9725917778971787e-7,0.11747447949319928,0.0,0.0,0.0,-0.0,15.285,1596.2542,-3.9451913e-7 -2.6504597858871155,0.13508937339408764,2.6504597858871155,-4.085352508250629e-7,0.653848611111111,-4.085352508250629e-7,0.14491821100342084,0.0,0.0,0.0,-0.0,18.77,1593.5197,-8.1707384e-7 -2.542742427469845,0.130705482267997,2.542742427469845,-2.3075613639776656e-7,0.653848611111111,-2.3075613639776656e-7,0.14043371867231727,0.0,0.0,0.0,-0.0,18.24,1591.0419,-4.6151334e-7 -2.4658828113911406,0.11053061313601116,2.4658828113911406,2.139999944028001,0.653848611111111,-5.5971999237271845e-8,0.11889423637245762,2.14,2.14,0.0,-0.0,15.469999999999999,1589.2089,-1.1194406e-7 -2.3963080163881716,0.11619132551818162,2.3963080163881716,6.034574884312907e-8,0.6543310185185185,6.034574884312907e-8,0.12511785012537407,0.0,0.0,0.0,-0.0,16.3,1587.4996,1.2069142e-7 -2.3127812739281146,0.14166286381490015,2.3127812739281146,7.706411763461439e-8,0.6543310185185185,7.706411763461439e-8,0.15275013668343065,0.0,0.0,0.0,-0.0,19.65,1585.3809,1.5412812e-7 -2.2487347892568503,0.14849606858387687,2.2487347892568503,0.7200000334512512,0.653848611111111,3.3451251190058626e-8,0.1602877068851218,0.72,0.72,0.0,-0.0,20.485,1583.7037,6.690248e-8 -2.218869147501748,0.1578077762535729,2.218869147501748,4.479999990739259,0.653848611111111,-9.260741537542788e-9,0.17042475370840768,4.48,4.48,0.0,-0.0,21.54,1582.9053,-1.8521485e-8 -2.19384407871322,0.17796488848989586,2.19384407871322,-3.9473063446390184e-8,0.653352662037037,-3.9473063446390184e-8,0.1922757384687409,0.0,0.0,0.0,-0.0,23.655,1582.2279,-7.894616e-8 -2.1461196898635824,0.19258987345188588,2.1461196898635824,-4.558695163746653e-8,0.653352662037037,-4.558695163746653e-8,0.2082496525876035,0.0,0.0,0.0,-0.0,25.065,1580.9144,-9.1173945e-8 -2.0596737262770635,0.1979874483626031,2.0596737262770635,-2.749528204075577e-8,0.6527943287037037,-2.749528204075577e-8,0.21441912752328984,0.0,0.0,0.0,-0.0,25.6,1578.4591,-5.499058e-8 -1.969245027985616,0.15644974323111002,1.969245027985616,-1.2462152422381559e-8,0.6522856481481482,-1.2462152422381559e-8,0.16972236277470296,0.0,0.0,0.0,-0.0,21.509999999999998,1575.7778,-2.4924308e-8 -1.915193341109821,0.1293049254464946,1.915193341109821,-4.484207914858967e-9,0.6520517361111111,-4.484207914858967e-9,0.14042279478999548,0.0,0.0,0.0,-0.0,18.285,1574.1157,-8.968416e-9 -1.9147353721358615,0.14255829569072145,1.9147353721358615,9.679999997589645,0.6519921296296297,-2.4103549685848508e-9,0.15481711825484884,9.68,9.68,0.0,-0.0,19.94,1574.1014,-4.82071e-9 -1.9607420547917804,0.11617367763425372,1.9607420547917804,4.619999999141726,0.6518894675925926,-8.582747772100955e-10,0.1260500960685306,4.62,4.62,0.0,-0.0,16.485,1575.5194,-1.7165496e-9 -2.079955949248192,0.1073594306833306,2.079955949248192,5.1000000000092145,0.6511538194444445,9.215119120015021e-12,0.11622647952715444,5.1,5.1,0.0,-0.0,15.165,1579.0443,1.8430238e-11 -2.2926267977617827,0.12007123530412087,2.2926267977617827,12.600000000067327,0.6503311342592593,6.732774065024689e-11,0.1295113352692115,12.6,12.6,0.0,-0.0,16.975,1584.8582,1.3465548e-10 -2.5110345251302673,0.14636841872597836,2.5110345251302673,9.110000000025444,0.6493528935185184,2.5445421817740107e-11,0.1573365331926266,9.11,9.11,0.0,-0.0,20.285,1590.2925,5.0890844e-11 -2.651559796475999,0.1571981293514516,2.651559796475999,3.639999999996756,0.6482863425925927,-3.2442590279848606e-12,0.16863293428926182,3.64,3.64,0.0,-0.0,21.505,1593.5444,-6.488518e-12 -2.6305600009249916,0.14093134063065307,2.6305600009249916,-1.0061305954032431e-11,0.6480008101851852,-1.0061305954032431e-11,0.15122794108464005,0.0,0.0,0.0,-0.0,19.645,1593.0696,-2.0122612e-11 -2.583359388819304,0.11822418208671476,2.583359388819304,-5.4273621184593795e-12,0.647890162037037,-5.4273621184593795e-12,0.1269479384288026,0.0,0.0,0.0,-0.0,16.705,1591.9883,-1.0854724e-11 -2.651489338768222,0.12934208504653952,2.651489338768222,6.7199999999978015,0.64678125,-2.1978920419290934e-12,0.1387507417491595,6.72,6.72,0.0,-0.0,18.22,1593.5428,-4.395784e-12 -2.84315177434615,0.11676927857011264,2.84315177434615,8.3199999999991,0.645352199074074,-9.012868576382208e-13,0.12493658272670505,8.32,8.32,0.0,-0.0,16.505,1597.7108,-1.8025737e-12 -3.0352689263890693,0.1006305776527757,3.0352689263890693,4.621754977971826e-14,0.6440515046296297,4.621754977971826e-14,0.10740656886725085,0.0,0.0,0.0,-0.0,14.055,1601.6157,9.24351e-14 -3.152489481355657,0.10750323811910864,3.152489481355657,1.0600000000014125,0.6438894675925926,1.4124293098152428e-12,0.11458011063579195,1.06,1.06,0.0,-0.0,15.115,1603.8787,2.8248586e-12 -3.19660030303694,0.10743915664043571,3.19660030303694,3.7100000000028808,0.6427809027777778,2.8806852737370216e-12,0.11445259385638182,3.71,3.71,0.0,-0.0,15.125,1604.7085,5.7613705e-12 -3.175565062177604,0.12951029372258693,3.175565062177604,6.0400000000041345,0.6407940972222222,4.134322658698682e-12,0.13799840263218527,6.04,6.04,0.0,-0.0,18.285,1604.3142,8.268645e-12 -3.1014912768840577,0.12351305334140796,3.1014912768840577,0.5500000000048567,0.6399997685185186,4.8566788613951315e-12,0.1317238351058639,0.55,0.55,0.0,-0.0,17.525,1602.9047,9.713358e-12 -2.9885179188145523,0.1303107530090016,2.9885179188145523,4.731090519573666e-12,0.6395354166666667,4.731090519573666e-12,0.13916581607842607,0.0,0.0,0.0,-0.0,18.46,1600.6887,9.462181e-12 -2.8513753185298873,0.1337956457514947,2.8513753185298873,3.4482603405795456e-12,0.6378482638888888,3.4482603405795456e-12,0.14313838831478098,0.0,0.0,0.0,-0.0,18.98,1597.8833,6.8965207e-12 -2.734536578088229,0.14032330897278755,2.734536578088229,1.3500000000016097,0.6360001157407408,1.6096105568459264e-12,0.15035698579265996,1.35,1.35,0.0,-0.0,19.865,1595.3846,3.2192211e-12 -2.64357208598084,0.12959319042257708,2.64357208598084,1.2900000000000427,0.6355359953703703,4.264774975230258e-14,0.1390356949144871,1.29,1.29,0.0,-0.0,18.55,1593.3643,8.52955e-14 -2.5558372691648414,0.10886918311596253,2.5558372691648414,-8.450138917514487e-13,0.6338483796296296,-8.450138917514487e-13,0.11694962400709978,0.0,0.0,0.0,-0.0,15.71,1591.3486,-1.6900278e-12 -2.4654392992134486,0.11714680472262788,2.4654392992134486,-7.095470586899635e-13,0.6319996527777777,-7.095470586899635e-13,0.12601191328516248,0.0,0.0,0.0,-0.0,16.995,1589.1981,-1.4190941e-12 -2.5423786306969385,0.12268679552953855,2.5423786306969385,12.739999999999789,0.6315355324074073,-2.1092177483705765e-13,0.13181891962399755,12.74,12.74,0.0,-0.0,17.759999999999998,1591.0333,-4.2184355e-13 -2.8270935795160943,0.12477903400497045,2.8270935795160943,21.120000000000264,0.6287943287037038,2.616462005829757e-13,0.1335348431856371,21.12,21.12,0.0,-0.0,18.05,1597.3726,5.232924e-13 -3.3290146273610457,0.12235478834172017,3.3290146273610457,10.030000000000573,0.628,5.735125373771829e-13,0.13014530392420876,10.03,10.03,0.0,-0.0,17.64,1607.1324,1.1470251e-12 -4.076524784068745,0.11812652002057422,4.076524784068745,19.23000000000059,0.6267813657407407,5.900327969300798e-13,0.12470908917929542,19.23,19.23,0.0,-0.0,16.96,1619.2299,1.1800656e-12 -4.7963167557063,0.13281658284460574,4.7963167557063,11.34000000000035,0.624052199074074,3.5041406083338e-13,0.13938186404246866,11.34,11.34,0.0,-0.0,18.9,1628.9406,7.008281e-13 -5.004889951316978,0.13891858719537703,5.004889951316978,5.250000000000177,0.6238902777777778,1.7694320401277165e-13,0.14555834028524145,5.25,5.25,0.0,-0.0,19.64,1631.4827,3.538864e-13 -5.150286955122724,0.1299053924856259,5.150286955122724,8.400000000000096,0.6207944444444444,9.52795649453725e-14,0.13597181816237802,8.4,8.4,0.0,-0.0,18.57,1633.1929,1.9055913e-13 -5.362270490107912,0.113808216676881,5.362270490107912,7.410000000000053,0.6199998842592592,5.328441003317191e-14,0.11894748668402795,7.41,7.41,0.0,-0.0,16.355,1635.6017,1.0656882e-13 -5.215726930132817,0.10662254113294663,5.215726930132817,2.9307604249286924e-14,0.6183303240740741,2.9307604249286924e-14,0.11155018406801814,0.0,0.0,0.0,-0.0,15.34,1633.9469,5.861521e-14 -5.020033046630071,0.10930927378261421,5.020033046630071,0.3700000000000167,0.615999537037037,1.669018113819033e-14,0.11452115557420789,0.37,0.37,0.0,-0.0,15.835,1631.6631,3.3380362e-14 -5.161405341009807,0.11946029896684225,5.161405341009807,12.920000000000009,0.6151532407407407,8.728325543882058e-15,0.1250290922579325,12.92,12.92,0.0,-0.0,17.315,1633.3217,1.7456651e-14 -5.290166944496253,0.12998715400265942,5.290166944496253,4.999992712478549e-15,0.6120002314814815,4.999992712478549e-15,0.1359242077017445,0.0,0.0,0.0,-0.0,18.805,1634.7932,9.9999854e-15 -4.967211453772685,0.12572987183775775,4.967211453772685,2.492240710815914e-15,0.6115356481481482,2.492240710815914e-15,0.13177570830828128,0.0,0.0,0.0,-0.0,18.295,1631.0314,4.9844814e-15 -4.548787064549118,0.13220647102092473,4.548787064549118,1.2227793037551647e-15,0.6080510416666667,1.2227793037551647e-15,0.13901164184737008,0.0,0.0,0.0,-0.0,19.295,1625.7761,2.4455586e-15 -4.4510800548420075,0.1395591582864592,4.4510800548420075,4.740000000000001,0.6078891203703704,7.038031169449514e-16,0.14685993849198964,4.74,4.74,0.0,-0.0,20.235,1624.4794,1.4076062e-15 -5.195531254510713,0.12611675801832828,5.195531254510713,25.22,0.6042853009259259,3.8924059720223684e-16,0.13196405337725645,25.22,25.22,0.0,-0.0,18.52,1633.7152,7.784812e-16 -6.460283238424842,0.12455679879915363,6.460283238424842,14.4,0.6039916666666666,2.2719914451620904e-16,0.12930196230828153,14.4,14.4,0.0,-0.0,18.185,1646.7267,4.543983e-16 -6.7729552351677444,0.1418752442437493,6.7729552351677444,4.77,0.6002854166666667,1.26025148547631e-16,0.1470281589135359,4.77,4.77,0.0,-0.0,20.47,1649.5493,2.520503e-16 -6.809936767454684,0.1589795916071003,6.809936767454684,7.38,0.5999998842592592,7.386026714895017e-17,0.16472126340678145,7.38,7.38,0.0,-0.0,22.44,1649.8745,1.4772053e-16 -7.44841864727714,0.1486272605800387,7.44841864727714,16.87,0.5962851851851851,4.1045039484571173e-17,0.1534971184513132,16.87,16.87,0.0,-0.0,21.325,1655.2266,8.209008e-17 -8.770610669370708,0.14230503080271312,8.770610669370708,17.07,0.5959997685185184,2.4129402753014883e-17,0.14610635333086713,17.07,17.07,0.0,-0.0,20.485,1664.9851,4.8258806e-17 -10.327488010757941,0.1485779255709869,10.327488010757941,20.08,0.5920523148148148,1.3707265351717266e-17,0.1516579505231495,20.08,20.08,0.0,-0.0,21.240000000000002,1674.7435,2.741453e-17 -10.149002834201326,0.13771039124211845,10.149002834201326,8.171155615775437e-18,0.591992824074074,8.171155615775437e-18,0.14065257134882803,0.0,0.0,0.0,-0.0,19.95,1673.7024,1.6342311e-17 -8.629133108748421,0.1370296426948066,8.629133108748421,4.8952395622474855e-18,0.5880002314814815,4.8952395622474855e-18,0.1407721593140522,0.0,0.0,0.0,-0.0,20.08,1664.0139,9.790479e-18 -7.523933610878565,0.12485763326696929,7.523933610878565,2.926174991553793e-18,0.5879922453703703,2.926174991553793e-18,0.12890175201578427,0.0,0.0,0.0,-0.0,18.585,1655.829,5.85235e-18 -6.655098754335078,0.11299902620433806,6.655098754335078,1.6491059398793528e-18,0.5840005787037037,1.6491059398793528e-18,0.11717762547649649,0.0,0.0,0.0,-0.0,17.1,1648.501,3.2982119e-18 -6.148696361921139,0.12812972964600225,6.148696361921139,3.6,0.5835359953703704,7.438530225838499e-19,0.1332498909538001,3.6,3.6,0.0,-0.0,19.275,1643.7745,1.487706e-18 -6.266032457615349,0.11435264781315513,6.266032457615349,11.61,0.5800003472222222,3.378881066335503e-19,0.11884064946416473,11.61,11.61,0.0,-0.0,17.450000000000003,1644.9034,6.757762e-19 -6.087494295576536,0.09857892289787222,6.087494295576536,2.0172118848676543e-19,0.5787818287037036,2.0172118848676543e-19,0.10255548420853,0.0,0.0,0.0,-0.0,15.045000000000002,1643.1771,4.0344238e-19 -5.523872846959572,0.10616607419422187,5.523872846959572,1.202609199763349e-19,0.5760005787037037,1.202609199763349e-19,0.1108400815212784,0.0,0.0,0.0,-0.0,16.405,1637.3749,2.4052184e-19 -5.048660887963873,0.1250263660571169,5.048660887963873,7.019933538151479e-20,0.5738478009259259,7.019933538151479e-20,0.13096038414308223,0.0,0.0,0.0,-0.0,19.265,1632.0027,1.4039867e-19 -4.6480497834328585,0.13796895764285766,4.6480497834328585,3.68,0.5719994212962963,3.7785843025969585e-20,0.14495580064702748,3.68,3.68,0.0,-0.0,21.055,1627.0653,7.5571686e-20 -4.303014660594804,0.13874663278113678,4.303014660594804,1.2410038057148921e-20,0.5680513888888888,1.2410038057148921e-20,0.14618672150485273,0.0,0.0,0.0,-0.0,21.32,1622.459,2.4820076e-20 -4.0483666983371505,0.1009107889862233,4.0483666983371505,-6.696049777810829e-22,0.5679997685185185,-6.696049777810829e-22,0.10656125742900568,0.0,0.0,0.0,-0.0,15.985,1618.8159,-1.33921e-21 -3.8821305434978113,0.06729679578490282,3.8821305434978113,5.26,0.5639996527777777,-9.57991774532634e-22,0.07117515472445743,5.26,5.26,0.0,-0.0,9.605,1616.3119,-1.9159835e-21 -3.7134637536388984,0.06212909034670715,3.7134637536388984,-4.907567052687822e-22,0.5639916666666667,-4.907567052687822e-22,0.06581765169623782,0.0,0.0,0.0,-0.0,8.385,1613.6592,-9.815134e-22 -3.5141455661821372,0.07694107584854082,3.5141455661821372,-2.5917357349166164e-22,0.56,-2.5917357349166164e-22,0.08167577555001715,0.0,0.0,0.0,-0.0,11.895,1610.3645,-5.1834715e-22 -3.344702148157802,0.10044851565059502,3.344702148157802,4.82,0.558330324074074,-1.2442446836029003e-22,0.10682556337341916,4.82,4.82,0.0,-0.0,16.31,1607.4132,-2.4884894e-22 -3.216847622954125,0.08594304062178282,3.216847622954125,0.46,0.5560002314814815,-2.059587870293235e-23,0.09153174141083889,0.46,0.46,0.0,-0.0,13.845,1605.0856,-4.1191757e-23 -3.1014278817933194,0.07143658426492897,3.1014278817933194,2.6569292827168706e-23,0.5520519675925926,2.6569292827168706e-23,0.07618553470951604,0.0,0.0,0.0,-0.0,11.014999999999999,1602.9034,5.3138586e-23 -2.9775668937199606,0.07492884299091386,2.9775668937199606,2.81,0.5520004629629629,1.7048536872943556e-23,0.08003147663784067,2.81,2.81,0.0,-0.0,11.8,1600.4695,3.4097074e-23 -2.8481715400565464,0.06694275360339792,2.8481715400565464,6.643742367560669e-24,0.5479999999999999,6.643742367560669e-24,0.07162027161540632,0.0,0.0,0.0,-0.0,10.155000000000001,1597.8162,1.3287485e-23 -2.720003498657863,0.07861269573201209,2.720003498657863,5.904471526816953e-25,0.5479921296296296,5.904471526816953e-25,0.08425062311598135,0.0,0.0,0.0,-0.0,12.739999999999998,1595.0664,1.1808943e-24 -2.5996002128023057,0.06844619597481745,2.5996002128023057,-1.3184350638094553e-25,0.5439997685185185,-1.3184350638094553e-25,0.07347956263484672,0.0,0.0,0.0,-0.0,10.675,1592.3625,-2.6368701e-25 -2.4937765217700294,0.0688008037108376,2.4937765217700294,-7.996381010410117e-27,0.540794212962963,-7.996381010410117e-27,0.07397554924399541,0.0,0.0,0.0,-0.0,10.875,1589.8806,-1.5992762e-26 -2.3991113971140856,0.07787230104987,2.3991113971140856,1.1309761980090397e-25,0.54,1.1309761980090397e-25,0.08385123694691364,0.0,0.0,0.0,-0.0,12.899999999999999,1587.5695,2.2619524e-25 -2.3115571965423727,0.08203455095717062,2.3115571965423727,0.4,0.5359994212962963,1.968405790050312e-25,0.08845676581926602,0.4,0.4,0.0,-0.0,13.885000000000002,1585.3492,3.9368116e-25 -2.2276262110872502,0.08219813584253811,2.2276262110872502,2.0863455490210272e-25,0.5359994212962963,2.0863455490210272e-25,0.08875681499428721,0.0,0.0,0.0,-0.0,13.940000000000001,1583.1405,4.172691e-25 -2.1453696857345714,0.08214844048682933,2.1453696857345714,1.2576057528888302e-25,0.5319998842592593,1.2576057528888302e-25,0.08882922954483263,0.0,0.0,0.0,-0.0,14.075,1580.8936,2.5152115e-25 -2.0685845860644974,0.06126050101934179,2.0685845860644974,3.942232610670887e-27,0.5298482638888888,3.942232610670887e-27,0.06633389241301986,0.0,0.0,0.0,-0.0,9.479999999999999,1578.7169,7.884465e-27 -1.9972647967147839,0.055219276744657854,1.9972647967147839,-1.1585892879201697e-25,0.5279998842592593,-1.1585892879201697e-25,0.05987181829001357,0.0,0.0,0.0,-0.0,7.94,1576.6216,-2.3171786e-25 -1.9306954499856983,0.06370446074880723,1.9306954499856983,-1.9954366020057756e-25,0.5240002314814816,-1.9954366020057756e-25,0.06916073161249642,0.0,0.0,0.0,-0.0,10.31,1574.5972,-3.9908732e-25 -1.8682418376328358,0.0721778686445051,1.8682418376328358,-2.1301270827417605e-25,0.5240002314814816,-2.1301270827417605e-25,0.0784577326163177,0.0,0.0,0.0,-0.0,12.315,1572.6334,-4.260254e-25 -1.8086215920208752,0.07726194905145235,1.8086215920208752,-1.061553480121196e-25,0.520000462962963,-1.061553480121196e-25,0.08408771971822625,0.0,0.0,0.0,-0.0,13.555,1570.6965,-2.123107e-25 -1.748543483049625,0.09249914475133449,1.748543483049625,2.1307973679921655e-25,0.5183310185185186,2.1307973679921655e-25,0.10080052967920448,0.0,0.0,0.0,-0.0,16.58,1568.6791,4.2615947e-25 -1.6908791775929866,0.10090744707670966,1.6908791775929866,6.855758892422971e-25,0.5159998842592592,6.855758892422971e-25,0.11010400605097038,0.0,0.0,0.0,-0.0,18.13,1566.6764,1.3711518e-24 -1.6390149078456056,0.11815215121000193,1.6390149078456056,1.2295724466342503e-24,0.511999537037037,1.2295724466342503e-24,0.1290736463072693,0.0,0.0,0.0,-0.0,20.965,1564.8159,2.4591449e-24 -1.5959215236004933,0.11059004141604976,1.5959215236004933,2.12,0.511999537037037,1.76330863535864e-24,0.12093549996050977,2.12,2.12,0.0,-0.0,19.85,1563.2247,3.5266173e-24 -1.5643186950558037,0.07578384268870463,1.5643186950558037,12.16,0.5079996527777778,2.2050240022737722e-24,0.08293662859564091,12.16,12.16,0.0,-0.0,13.709999999999999,1562.0303,4.410048e-24 -1.546852894062229,0.07503520988982344,1.546852894062229,2.472957453288468e-24,0.5067805555555556,2.472957453288468e-24,0.08215260242300981,0.0,0.0,0.0,-0.0,13.594999999999999,1561.3597,4.945915e-24 -1.5463502447769335,0.07826739370665503,1.5463502447769335,2.485348485957227e-24,0.503999537037037,2.485348485957227e-24,0.08569243715950152,0.0,0.0,0.0,-0.0,14.370000000000001,1561.3403,4.970697e-24 -1.566129544802921,0.08245199010144556,1.566129544802921,3.98,0.4999997685185186,2.1604362034040965e-24,0.09023015169488877,3.98,3.98,0.0,-0.0,15.344999999999999,1562.0994,4.3208724e-24 -1.6105107996964054,0.07506573743700644,1.6105107996964054,3.36,0.4999997685185186,1.4232751711513936e-24,0.0820594463146107,3.36,3.36,0.0,-0.0,13.795,1563.7682,2.8465503e-24 -1.6802262278483506,0.06789734557738641,1.6802262278483506,4.081073532066785e-25,0.4959997685185185,4.081073532066785e-25,0.07410326443240701,0.0,0.0,0.0,-0.0,12.28,1566.299,8.162147e-25 -1.7590038530734182,0.07619432878479014,1.7590038530734182,-5.923835103811734e-25,0.49366840277777774,-5.923835103811734e-25,0.08301357937670334,0.0,0.0,0.0,-0.0,14.19,1569.0353,-1.184767e-24 -1.824606957799635,0.07407960978022875,1.824606957799635,7.55,0.4919994212962963,-1.2961907640040333e-24,0.08059726838500549,7.55,7.55,0.0,-0.0,13.764999999999999,1571.222,-2.5923815e-24 -1.8517530612221396,0.07033959342360946,1.8517530612221396,-1.421307554838546e-24,0.48800034722222224,-1.421307554838546e-24,0.07648526590469854,0.0,0.0,0.0,-0.0,13.049999999999999,1572.104,-2.8426151e-24 -1.8145388903633854,0.06716559812723508,1.8145388903633854,2.54,0.48800034722222224,-9.104427117316161e-25,0.07309032108482963,2.54,2.54,0.0,-0.0,12.32,1570.8916,-1.8208854e-24 -1.8098419791953388,0.07524373330832419,1.8098419791953388,2.53,0.4840002314814815,-5.190942893740021e-25,0.08188910285296944,2.53,2.53,0.0,-0.0,14.29,1570.7368,-1.0381886e-24 -2.149842884492307,0.08903582580310916,2.149842884492307,20.92,0.48167002314814816,-3.0883270885488107e-25,0.09626916234190809,20.92,20.92,0.0,-0.0,17.035,1581.018,-6.176654e-25 -3.6959635426177604,0.07589814458451272,3.6959635426177604,51.14,0.4800005787037037,-1.841214048516035e-25,0.0804182241540473,51.14,51.14,0.0,-0.0,14.13,1613.3771,-3.682428e-25 -4.920625123799754,0.06089837230175722,4.920625123799754,-1.1014294128039867e-25,0.4760001157407408,-1.1014294128039867e-25,0.06384875583837309,0.0,0.0,0.0,-0.0,10.565000000000001,1630.4686,-2.2028588e-25 -4.576420353319727,0.046020397663968565,4.576420353319727,-6.623170773349058e-26,0.4760001157407408,-6.623170773349058e-26,0.04837847989290778,0.0,0.0,0.0,-0.0,6.26,1626.1378,-1.3246342e-25 -4.419404232951737,0.045366172775793856,4.419404232951737,3.83,0.4719996527777777,-3.9662786163985396e-26,0.04775195798104578,3.83,3.83,0.0,-0.0,6.1899999999999995,1624.0529,-7.932557e-26 -4.601577718539129,0.044532665237526484,4.601577718539129,8.88,0.4701513888888889,-2.2974556973551332e-26,0.04680509281807852,8.88,8.88,0.0,-0.0,5.945,1626.4652,-4.5949114e-26 -4.563436207183755,0.03997807066068846,4.563436207183755,-1.3723811627385987e-26,0.46799976851851854,-1.3723811627385987e-26,0.04203093011658809,0.0,0.0,0.0,-0.0,4.39,1625.9681,-2.7447623e-26 -4.635914127711261,0.04174160959146654,4.635914127711261,12.27,0.463999537037037,-8.21347029299749e-27,0.04385964206906022,12.27,12.27,0.0,-0.0,5.16,1626.9092,-1.642694e-26 -4.724729329934798,0.0417430253552954,4.724729329934798,0.79,0.463999537037037,-4.924978038951329e-27,0.04383059738864334,0.79,0.79,0.0,-0.0,5.15,1628.0425,-9.849956e-27 -4.401041368259439,0.04050257006354326,4.401041368259439,-2.9240477602977874e-27,0.46,-2.9240477602977874e-27,0.04263910917599861,0.0,0.0,0.0,-0.0,4.865,1623.8042,-5.8480955e-27 -4.121660446499312,0.05162182333469914,4.121660446499312,0.89,0.45920532407407405,-1.7325394223585415e-27,0.05447631219690359,0.89,0.89,0.0,-0.0,8.64,1619.8875,-3.465079e-27 -3.8683398571377223,0.0513392753075086,3.8683398571377223,-9.718603611242565e-28,0.45599953703703705,-9.718603611242565e-28,0.05430513219947359,0.0,0.0,0.0,-0.0,8.700000000000001,1616.0994,-1.9437207e-27 -3.6308631463530046,0.04491810093262771,3.6308631463530046,-5.388274353769278e-28,0.45200810185185186,-5.388274353769278e-28,0.047624505452031854,0.0,0.0,0.0,-0.0,6.8100000000000005,1612.3158,-1.0776549e-27 -3.382585334649054,0.061627392739609585,3.382585334649054,-2.847590941511039e-28,0.452,-2.847590941511039e-28,0.06551243990440073,0.0,0.0,0.0,-0.0,11.795,1608.0858,-5.695182e-28 -3.1894601146441355,0.06865337549459229,3.1894601146441355,-9.722304406001326e-29,0.4480001157407407,-9.722304406001326e-29,0.07314103268934226,0.0,0.0,0.0,-0.0,13.71,1604.575,-1.9444609e-28 -3.1718479057836735,0.06105074474444705,3.1718479057836735,6.16,0.4480001157407407,-1.4712827341897556e-29,0.0650548488806843,6.16,6.16,0.0,-0.0,11.825,1604.2443,-2.9425655e-29 -3.1571582581043462,0.048632768178644314,3.1571582581043462,-8.440695678678332e-30,0.4440001157407408,-8.440695678678332e-30,0.051831377532722725,0.0,0.0,0.0,-0.0,8.389999999999999,1603.967,-1.6881391e-29 -3.1694758740213693,0.050870971726226726,3.1694758740213693,7.37,0.44166932870370373,-4.855983714207329e-30,0.05420892997130988,7.37,7.37,0.0,-0.0,9.17,1604.1996,-9.7119674e-30 -3.800506193803857,0.04296184513801959,3.800506193803857,18.42,0.4400003472222222,-2.8974677498616267e-30,0.04547346811689727,18.42,18.42,0.0,-0.0,6.515,1615.0428,-5.7949355e-30 -4.150430123462784,0.035772361719222316,4.150430123462784,-1.737955984470407e-30,0.43611064814814815,-1.737955984470407e-30,0.0377407578652583,0.0,0.0,0.0,-0.0,3.8349999999999995,1620.3029,-3.475912e-30 -3.881614787670291,0.031517620416403554,3.881614787670291,-1.0435541252695446e-30,0.43600011574074077,-1.0435541252695446e-30,0.033334165407524305,0.0,0.0,0.0,-0.0,2.0,1616.304,-2.0871083e-30 -3.642831655753392,0.03147466951523289,3.642831655753392,-6.2111983453314515e-31,0.43200000000000005,-6.2111983453314515e-31,0.033367013402172095,0.0,0.0,0.0,-0.0,2.15,1612.5123,-1.2422397e-30 -3.424507607823373,0.029407558468151542,3.424507607823373,-6.496914231564189e-12,0.43194837962962956,-6.496914231564189e-12,0.031247144275784487,0.0,0.0,0.0,-0.0,1.1900000000000002,1608.8214,-1.299434e-11 -3.366520568134979,0.024190637942522047,3.366520568134979,4.709219926731635,0.428,-1.3605034456260538e-7,0.02572018507202419,4.72,4.709220062781979,0.010779937218020636,-0.0,-1.485,1607.8015,-0.00014897462 -3.3784393926040552,0.022810543461400445,3.3784393926040552,0.7617579433102676,0.4261517361111111,-1.7202644292121926e-10,0.024249645448732607,4.81,0.761757943482294,4.048242056517705,-0.0,-2.2600000000000002,1608.0126,1.1377428 -3.5073856376343597,0.024960201225981762,3.5073856376343597,7.959883813980856,0.42400011574074076,-4.8806557168048074e-5,0.02649806170524932,7.96,7.959932620538024,6.737946197607814e-5,-0.0,-0.9249999999999999,1610.2495,1.8523282 -3.7902812369509675,0.026145424732764832,3.7902812369509675,8.537878660087928,0.42121863425925926,-0.022121285815264635,0.027676688119307142,8.56,8.559999945903193,5.409680769119518e-8,-0.0,-0.20499999999999996,1614.882,1.8571924 -3.815684781650757,0.02507157751328146,3.815684781650757,-0.0001975581071874675,0.41999976851851856,-0.0001975581071874675,0.026533394144409493,0.0,0.0,0.0,-0.0,-0.7700000000000002,1615.2809,1.8619457 -3.7196779521340257,0.031648241659180974,3.7196779521340257,3.7095951154339994,0.4164640046296296,0.9895951154339993,0.0335251014535198,2.72,2.72,0.0,-0.0,2.76,1613.759,0.98964494 -4.332359425913422,0.042129481582797106,4.332359425913422,22.4164560042178,0.4159996527777778,0.356456004217801,0.0443775127311903,22.06,22.06,0.0,-0.0,7.0,1622.8649,0.36565977 -5.672206289613218,0.043163309013952246,5.672206289613218,19.910264750149352,0.4121109953703704,0.12026475014935387,0.045020080541482196,19.79,19.79,0.0,-0.0,7.365,1638.9574,0.14771867 -7.137313819604866,0.03931562884654317,7.137313819604866,20.407207065957476,0.41200046296296294,0.04720706595747784,0.0406664279709961,20.36,20.36,0.0,-0.0,5.815,1652.6786,0.07052634 -9.212841397648367,0.04718105481935552,9.212841397648367,26.382237785940507,0.4080084490740741,0.022237785940506336,0.04835605782648148,26.36,26.36,0.0,-0.0,8.625,1667.9229,0.037518717 -9.771747350918655,0.03632757668555556,9.771747350918655,0.011649293792718746,0.40794895833333333,0.011649293792718746,0.03715393266858759,0.0,0.0,0.0,-0.0,4.6,1671.4402,0.02108409 -8.784048638679392,0.045056484652453474,8.784048638679392,4.836456530303508,0.40399999999999997,0.00645653030350781,0.04625751563039548,4.83,4.83,0.0,-0.0,8.09,1665.0765,0.0121730575 -7.933182394279747,0.03320795282885819,7.933182394279747,0.0037831831978836507,0.4037145833333334,0.0037831831978836507,0.03421818701356412,0.0,0.0,0.0,-0.0,3.5249999999999995,1658.9921,0.0073000323 -7.017834952242226,0.024620629913730763,7.017834952242226,-0.000296921625313358,0.40000023148148145,-0.000296921625313358,0.02548208573784644,0.0,0.0,0.0,-0.0,-0.6499999999999999,1651.6704,0.007428253 -6.258173263538437,0.022694051236376477,6.258173263538437,-1.2246709266992055e-8,0.39971435185185183,-1.2246709266992055e-8,0.02358580002005997,0.0,0.0,0.0,-0.0,-1.745,1644.8285,0.00943019 -5.995458807753041,0.023859008625735915,5.995458807753041,6.669924933941783,0.3960082175925926,-4.0821267962937586e-5,0.024835204511613532,6.67,6.669965755209747,3.4244790252833115e-5,-0.0,-0.8749999999999998,1642.2673,0.012593106 -5.844224185087685,0.027447001813663382,5.844224185087685,2.1561569462426013,0.39571446759259266,0.006156946242615385,0.028596568912842905,2.15,2.149999999999986,1.3844481117075701e-14,-0.0,1.175,1640.7416,0.011638003 -5.415085439445167,0.02471971214368742,5.415085439445167,-0.014681014723675301,0.3921108796296296,-0.014681014723675301,0.025826744686883934,0.0,0.0,0.0,-0.0,-0.17000000000000015,1636.187,0.007886321 -4.964988404625337,0.019562855554335394,4.964988404625337,-8.377518851317388e-16,0.3919487268518519,-8.377518851317388e-16,0.020503889516491076,0.0,0.0,0.0,-0.0,-3.4450000000000003,1631.0046,0.0077946596 -4.58258904920878,0.015465136737305223,4.58258904920878,0.0,0.3884644675925926,-0.0,0.01625676513811022,0.0,0.0,0.0,-0.0,-6.53,1626.2183,0.0077946596 -4.248965384220059,0.017521055906911952,4.248965384220059,0.0,0.38799999999999996,-0.0,0.018469190517335032,0.0,0.0,0.0,-0.0,-4.76,1621.7041,0.0077181156 -3.9683702883577467,0.02287847595230334,3.9683702883577467,-5.000880347656239e-5,0.3848466435185185,-5.000880347656239e-5,0.024177350333835865,0.0,0.0,0.0,-0.0,-0.8499999999999999,1617.624,0.0077643776 -3.8379622942196208,0.02681679107658336,3.8379622942196208,4.08321135952569,0.3840003472222222,0.0032113595256903736,0.028374256678896478,4.08,4.079999999999999,9.059419880941278e-16,-0.0,1.5000000000000002,1615.6285,0.006228803 -4.1014484249311085,0.02577552600519831,4.1014484249311085,11.741553804702939,0.38166932870370374,0.0015538047034947286,0.02720574435780052,11.74,11.739999999999444,5.565525817985418e-13,-0.0,0.9750000000000001,1619.5939,0.0030617905 -4.851990017166992,0.02250523211603922,4.851990017166992,17.309645776693532,0.3799997685185186,-1.141058974856012e-5,0.02360770394765843,17.31,17.309657187283282,0.00034281271671635246,-0.0,-1.0100000000000002,1629.6298,0.00311027 -5.04968263842002,0.02001877447910159,5.04968263842002,0.00013070626311222845,0.37920590277777777,-3.495485671960014e-12,0.020968752954026827,0.04,0.00013070626660771411,0.03986929373339229,-0.0,-2.665,1632.0148,1.1511723 -4.654543363010519,0.01870794257694338,4.654543363010519,-1.6193516390209724e-15,0.37611087962962964,-1.6193516390209724e-15,0.019654318543218793,0.0,0.0,0.0,-0.0,-3.46,1627.1487,1.170606 -4.316819362572116,0.015530174429076265,4.316819362572116,0.0,0.3759486111111111,-0.0,0.01636102877935771,0.0,0.0,0.0,-0.0,-5.995,1622.6503,1.1706929 -4.024736260354696,0.017286956299406273,4.024736260354696,0.0,0.37321898148148147,-0.0,0.018258877373555114,0.0,0.0,0.0,-0.0,-4.38,1618.4663,1.1706665 -3.770491761053419,0.0241892340445219,3.770491761053419,0.7475883413696331,0.3719998842592593,0.7475883413696331,0.02561088685473564,0.0,0.0,0.0,-0.0,0.46999999999999975,1614.5693,1.1535985 -4.053649608637849,0.0385030575892975,4.053649608637849,15.330482718068097,0.37120578703703705,0.4204827180680977,0.04065706839747546,14.91,14.91,0.0,-0.0,7.404999999999999,1618.8938,0.42639735 -4.732490701011553,0.03028854160129972,4.732490701011553,12.082002120501935,0.3684645833333333,0.1420021205019347,0.03180135926565275,11.94,11.94,0.0,-0.0,3.795,1628.1405,0.1683699 -4.8214015905835,0.024633924905424976,4.8214015905835,0.0536399068071272,0.3680003472222222,0.0536399068071272,0.02584666603368505,0.0,0.0,0.0,-0.0,0.76,1629.2521,0.078365706 -4.460488412418427,0.0215654504325488,4.460488412418427,-1.106011887862357e-5,0.36615196759259255,-1.106011887862357e-5,0.022691845801628297,0.0,0.0,0.0,-0.0,-1.045,1624.6055,0.07464691 -4.146961761684113,0.02179298697837357,4.146961761684113,-0.00011206976390915951,0.3644642361111111,-0.00011206976390915951,0.022992867938907254,0.0,0.0,0.0,-0.0,-0.7899999999999996,1620.2529,0.07469444 -3.9425384567807926,0.0219223688223096,3.9425384567807926,2.009643400034527,0.36400011574074076,-0.00035539788492939774,0.023172549337031462,2.01,2.0099987979194562,1.202080543783457e-6,-0.0,-0.6599999999999999,1617.234,0.074341595 -3.749740074551809,0.01865707271941065,3.749740074551809,-4.930586423113844e-13,0.3621513888888889,-4.930586423113844e-13,0.019757621843366668,0.0,0.0,0.0,-0.0,-2.855,1614.2397,0.20278001 -3.5202492753163277,0.019785880599991694,3.5202492753163277,-3.7488225701375746e-9,0.3604638888888889,-3.7488225701375746e-9,0.021002086722755133,0.0,0.0,0.0,-0.0,-1.925,1610.4681,0.20552325 -3.7910018218654975,0.02315653352121542,3.7910018218654975,16.239488774800314,0.3599998842592593,0.1394887753903896,0.024512573702873984,16.1,16.099999999409924,5.900750943421684e-10,-0.0,0.31000000000000005,1614.8933,0.19977883 -5.048660887963873,0.029766511201622388,5.048660887963873,26.765437949316595,0.35920578703703704,0.06543794931659593,0.03117929333227972,26.7,26.7,0.0,-0.0,3.88,1632.0027,0.09161644 -5.854339101316535,0.02253720283061973,5.854339101316535,2.4454659522175928,0.3572189814814815,-0.014534032994106714,0.023479654190457538,2.46,2.4599999852116996,1.4788300154444655e-8,-0.0,-0.20000000000000018,1640.8448,0.054939248 -5.504677668556333,0.01891241276565636,5.504677668556333,0.013773466154936423,0.35611041666666665,-5.134642542509415e-12,0.019747547120578166,2.83,0.013773466160071066,2.816226533839929,-0.0,-2.625,1637.167,0.6666897 -5.038835817452061,0.013496312181695249,5.038835817452061,0.0,0.3559483796296296,-0.0,0.014137883734967606,2.11,0.0,2.11,-0.0,-7.24,1631.8864,3.1362987 -4.645884105233992,0.010242034896856038,4.645884105233992,0.0,0.3546476851851852,-0.0,0.010760882667524138,0.0,0.0,0.0,-0.0,-10.83,1627.0375,4.1895537 -4.309792556092589,0.009154329148173244,4.309792556092589,0.0,0.35321898148148145,-0.0,0.009644658143364052,0.0,0.0,0.0,-0.0,-12.205,1622.553,4.1900206 -4.019022746448353,0.008075144908629865,4.019022746448353,0.0,0.35211030092592593,-0.0,0.008529599275571788,0.0,0.0,0.0,-0.0,-13.745000000000001,1618.3815,4.1900206 -3.7651314764424035,0.007330130076910576,3.7651314764424035,0.0,0.35199988425925927,-0.0,0.007761345848489603,0.0,0.0,0.0,-0.0,-14.94,1614.4844,4.1851215 -3.5413302958205737,0.010117597176341994,3.5413302958205737,0.0,0.35171423611111113,-0.0,0.010737132267052559,10.24,0.0,10.24,-0.0,-10.75,1610.8247,9.299966 -3.342467292026452,0.012913096940202125,3.342467292026452,0.0,0.3506474537037037,-0.0,0.013733235413065438,9.42,0.0,9.42,-0.0,-7.43,1607.3733,19.055174 -3.1647306620198514,0.009597477833318248,3.1647306620198514,0.0,0.34966921296296294,-0.0,0.010227798031116926,0.0,0.0,0.0,-0.0,-11.31,1604.1101,23.726683 -3.0050200205193236,0.00855591183627291,3.0050200205193236,0.0,0.3488465277777778,-0.0,0.009135438568397575,0.0,0.0,0.0,-0.0,-12.745000000000001,1601.0176,23.728367 -2.860540489773928,0.013880636958480725,2.860540489773928,0.0,0.3481105324074074,-0.0,0.014848119436757854,0.0,0.0,0.0,-0.0,-6.27,1598.075,23.702803 -2.773808281779725,0.019276013737802213,2.773808281779725,8.831428953145577,0.3480079861111111,-4.758580127656389e-8,0.020643306976992844,8.96,8.83142900073138,0.12857099926862234,-0.0,-1.6700000000000002,1596.2362,27.22592 -2.6666372926805963,0.010303223878722994,2.6666372926805963,0.0,0.34794849537037037,-0.0,0.011050346181994245,0.0,0.0,0.0,-0.0,-10.229999999999999,1593.883,31.316875 -2.5522924741131447,0.0072362213200513805,2.5522924741131447,0.0,0.34771435185185184,-0.0,0.007773709869212112,0.0,0.0,0.0,-0.0,-14.765,1591.2657,31.328995 -2.447353832090652,0.00946036258430003,2.447353832090652,0.0,0.3472057870370371,-0.0,0.010179093808736026,26.17,0.0,26.17,-0.0,-11.28,1588.7584,44.444027 -2.3505895957117224,0.012570910515995473,2.3505895957117224,0.0,0.3466476851851852,-0.0,0.013546500899944214,19.27,0.0,19.27,-0.0,-7.459999999999999,1586.3492,67.10916 -2.261077981896271,0.014030055540865286,2.261077981896271,0.0,0.3466476851851852,-0.0,0.015141015827015165,1.35,0.0,1.35,-0.0,-5.944999999999999,1584.0306,77.37947 -2.287393583312526,0.01983839889158214,2.287393583312526,13.8094374365484,0.3461518518518519,-1.1817957424714105e-5,0.021399953026367616,13.81,13.809449254505825,0.000550745494174389,-0.0,-1.08,1584.7217,82.0382 -2.294638068744066,0.014432124518999286,2.294638068744066,1.7386092565629952e-15,0.3461518518518519,-0.0,0.015566275748202666,1.74,1.7386092565629952e-15,1.7399999999999982,-0.0,-5.545,1584.9105,87.27483 -2.209324453408385,0.008348261317455807,2.209324453408385,0.0,0.3456693287037037,-0.0,0.009017184379506783,0.0,0.0,0.0,-0.0,-12.795000000000002,1582.6478,88.17522 -2.130219863475682,0.00797198042102684,2.130219863475682,0.0,0.3456693287037037,-0.0,0.008622616586843082,0.0,0.0,0.0,-0.0,-13.370000000000001,1580.4703,88.17498 -2.0565816579949763,0.008082007279523247,2.0565816579949763,0.0,0.3461518518518519,-0.0,0.00875325921843241,1.31,0.0,1.31,-0.0,-13.195,1578.3694,88.833534 -1.9877833363370525,0.012580181289429275,1.9877833363370525,0.0,0.3461518518518519,-0.0,0.013642592914395707,1.24,0.0,1.24,-0.0,-7.345000000000001,1576.3374,90.10825 -1.9390601957274702,0.0204571802868254,1.9390601957274702,2.6186321281380023,0.3461518518518519,-0.001367350289065581,0.02220569162169997,2.62,2.6199994784270677,5.215729323360119e-7,-0.0,-0.5500000000000003,1574.8553,91.52311 -2.23466313410944,0.028216257025914807,2.23466313410944,20.022018002909753,0.3466476851851852,10.402018002909754,0.030464038565911893,9.62,9.62,0.0,-0.0,4.0649999999999995,1583.3289,87.119446 -2.7465972983754305,0.023678610336251647,2.7465972983754305,9.450471017828516,0.3472057870370371,3.100471017828526,0.02536754656032615,6.35,6.349999999999991,8.107403637325205e-15,-0.0,1.3350000000000002,1595.6475,80.25703 -2.7824966186834583,0.0162907711477441,2.7824966186834583,8.085082785491693e-9,0.34771435185185184,-0.0,0.017444273003653647,2.09,8.085082785491693e-9,2.089999991914917,-0.0,-4.029999999999999,1596.423,80.88251 -2.65799015749015,0.012965229193797716,2.65799015749015,0.0,0.34794849537037037,-0.0,0.01390707512483093,0.0,0.0,0.0,-0.0,-7.154999999999999,1593.6891,81.94048 -2.5441097291902897,0.01652546564225038,2.5441097291902897,0.0,0.34800000000000003,-0.0,0.017755075955588135,0.0,0.0,0.0,-0.0,-3.795,1591.074,81.95079 -2.4814307434181044,0.020955014492210607,2.4814307434181044,2.925715160522727,0.3480079861111111,-0.004284688266098416,0.022535314392647762,2.93,2.9299998487888255,1.5121117483918313e-7,-0.0,-0.41500000000000004,1589.5842,82.3971 -2.45546627994143,0.017359573621481387,2.45546627994143,0.0001815186316874979,0.3484641203703704,-4.9682409197755746e-14,0.01867610765911401,4.51,0.0001815186317371803,4.509818481368263,-0.0,-3.105,1588.956,84.23593 -2.357937835097619,0.011601899456968351,2.357937835097619,0.0,0.34921886574074074,-0.0,0.012500818932118494,0.0,0.0,0.0,-0.0,-8.64,1586.5356,86.561905 -2.26799804368463,0.008687498144512109,2.26799804368463,0.0,0.35015162037037034,-0.0,0.00937433169188147,0.0,0.0,0.0,-0.0,-12.459999999999999,1584.2131,86.634315 -2.1846704843891156,0.010240112523696655,2.1846704843891156,0.0,0.35120578703703703,-0.0,0.011065309946246507,2.58,0.0,2.58,-0.0,-10.335,1581.9777,87.872406 -2.10712472487834,0.015809712082095553,2.10712472487834,1.0496261804160411e-10,0.3519482638888889,-0.0,0.017107074111533737,2.21,1.0496261804160411e-10,2.2099999998950373,-0.0,-4.47,1579.8193,90.19569 -2.034867106251265,0.011076654708211514,2.034867106251265,0.0,0.35200787037037035,-0.0,0.012001447464893957,0.0,0.0,0.0,-0.0,-9.290000000000001,1577.7355,91.18715 -1.9674948369579968,0.009032699671787364,1.9674948369579968,0.0,0.35284641203703704,-0.0,0.00979933083550748,3.31,0.0,3.31,-0.0,-11.985,1575.7247,92.25262 -1.9045047404035478,0.0064122169888224095,1.9045047404035478,0.0,0.3541518518518519,-0.0,0.006965029772508649,0.0,0.0,0.0,-0.0,-16.375,1573.7815,93.17723 -1.8454880566612084,0.004114631929949337,1.8454880566612084,0.0,0.35571446759259256,-0.0,0.00447470937406803,0.0,0.0,0.0,-0.0,-21.805,1571.9016,93.34984 -1.7900556114128363,0.0029954285517098415,1.7900556114128363,0.0,0.35600000000000004,-0.0,0.003261341639500907,0.0,0.0,0.0,-0.0,-25.494999999999997,1570.0803,93.34984 -1.737868218925078,0.0030647907229467567,1.737868218925078,0.0,0.3564643518518519,-0.0,0.003340620830017452,0.0,0.0,0.0,-0.0,-25.235,1568.3134,93.34984 -1.6886341227249648,0.0033928396779490705,1.6886341227249648,0.0,0.35815185185185183,-0.0,0.0037022456890137023,0.0,0.0,0.0,-0.0,-24.104999999999997,1566.597,93.34984 -1.6420966470736837,0.004242368824390467,1.6420966470736837,0.0,0.3599482638888889,-0.0,0.004634183585706936,0.0,0.0,0.0,-0.0,-21.53,1564.9281,93.38453 -1.5980302503925978,0.00499370384425175,1.5980302503925978,0.0,0.36000787037037035,-0.0,0.005460578548527359,1.76,0.0,1.76,-0.0,-19.564999999999998,1563.3036,94.41367 -1.5562816345614912,0.003192513569623778,1.5562816345614912,0.0,0.36121863425925926,-0.0,0.003494524117511878,0.39,0.0,0.39,-0.0,-24.87,1561.7227,95.46767 -1.5166928889542244,0.0024078362664088464,1.5166928889542244,0.0,0.3637142361111111,-0.0,0.002638216169124059,0.0,0.0,0.0,-0.0,-28.130000000000003,1560.1838,95.76294 -1.479048108973823,0.004212222944108331,1.479048108973823,0.0,0.36400011574074076,-0.0,0.004619689539221719,0.0,0.0,0.0,-0.0,-21.7,1558.6829,95.76772 -1.4431457160566628,0.00917927936736083,1.4431457160566628,0.0,0.36521898148148146,-0.0,0.010076718294205894,0.0,0.0,0.0,-0.0,-12.07,1557.2153,95.71457 -1.408874878725592,0.009867657760075511,1.408874878725592,0.0,0.36771435185185186,-0.0,0.010842391554437723,4.41,0.0,4.41,-0.0,-11.204999999999998,1555.78,97.915215 -1.3761574813795316,0.01172994179539139,1.3761574813795316,0.0,0.3680083333333333,-0.0,0.012900268330579102,17.31,0.0,17.31,-0.0,-8.92,1554.3768,108.75976 -1.3448951814788852,0.012071266975096168,1.3448951814788852,0.0,0.3696696759259259,-0.0,0.013287379447382551,5.08,0.0,5.08,-0.0,-8.584999999999999,1553.0045,119.7259 -1.3150552042440962,0.008127372129283833,1.3150552042440962,0.0,0.3719483796296296,-0.0,0.00895388491179555,0.0,0.0,0.0,-0.0,-13.825,1551.6646,122.68503 -1.2865687552438556,0.006076238006025365,1.2865687552438556,0.0,0.37211041666666667,-0.0,0.006699807895707958,0.78,0.0,0.78,-0.0,-17.47,1550.3567,123.79825 -1.2593092827346317,0.006346851385826755,1.2593092827346317,0.0,0.3746479166666667,-0.0,0.007003970556359244,0.0,0.0,0.0,-0.0,-17.005,1549.0778,124.05422 -1.2331918828461823,0.004515902872220491,1.2331918828461823,0.0,0.3760002314814815,-0.0,0.004987485059924993,0.0,0.0,0.0,-0.0,-21.175,1547.8262,124.05521 -1.2081642566182866,0.00337850237207292,1.2081642566182866,0.0,0.3772188657407407,-0.0,0.0037342634187989055,0.0,0.0,0.0,-0.0,-24.605,1546.6017,124.05521 -1.184145491385314,0.002907849452532821,1.184145491385314,0.0,0.3799997685185186,-0.0,0.003216544160200611,0.0,0.0,0.0,-0.0,-26.395,1545.4025,124.05521 -1.1610598035762751,0.0037074319415225116,1.1610598035762751,0.0,0.3804640046296296,-0.0,0.004104132141429733,0.0,0.0,0.0,-0.0,-23.61,1544.2267,124.05521 -1.1388501042322812,0.0056854682500303315,1.1388501042322812,0.0,0.383714699074074,-0.0,0.006298525604441886,0.0,0.0,0.0,-0.0,-18.605,1543.0732,124.05521 -1.1174534831187188,0.0069861911544818215,1.1174534831187188,0.0,0.38400833333333334,-0.0,0.007745189273548793,0.0,0.0,0.0,-0.0,-16.06,1541.9406,124.05521 -1.0968219954926077,0.007757607433186261,1.0968219954926077,0.0,0.3866476851851852,-0.0,0.0086066261797761,0.0,0.0,0.0,-0.0,-14.82,1540.8276,124.05521 -1.0769037611724375,0.0075425636498596725,1.0769037611724375,0.0,0.38799999999999996,-0.0,0.008373995504746526,0.0,0.0,0.0,-0.0,-15.21,1539.7332,124.05521 -1.0576541845734273,0.010753196108555445,1.0576541845734273,0.0,0.3901519675925926,-0.0,0.011946900063577482,0.0,0.0,0.0,-0.0,-10.71,1538.656,124.05521 -1.0390268750219656,0.014642194156982044,1.0390268750219656,0.0,0.39200034722222227,-0.0,0.016278839713646166,0.0,0.0,0.0,-0.0,-6.635,1537.5948,124.052246 -1.02103437610904,0.012164401213220875,1.02103437610904,0.0,0.3936696759259259,-0.0,0.013533270969299748,0.0,0.0,0.0,-0.0,-9.18,1536.5516,123.99586 -1.0036365110405059,0.016036741242053773,1.0036365110405059,7.389644451905042e-15,0.39600023148148145,-0.0,0.017853293932920553,5.12,7.389644451905042e-15,5.119999999999993,-0.0,-5.51,1535.5253,126.47591 -0.9868376200718897,0.010247343125409586,0.9868376200718897,0.0,0.3972188657407407,-0.0,0.011415599280483647,0.0,0.0,0.0,-0.0,-11.54,1534.5172,129.14981 -0.9706412689912771,0.00902458681294929,0.9706412689912771,0.0,0.40000023148148145,-0.0,0.010059920634519425,5.68,0.0,5.68,-0.0,-13.265,1533.5289,132.6422 -0.9549586070671471,0.011471233811040865,0.9549586070671471,0.0,0.4012189814814815,-0.0,0.012795372596256968,5.03,0.0,5.03,-0.0,-10.175,1532.5562,137.88948 -0.939777099000595,0.008795832496814943,0.939777099000595,0.0,0.40399999999999997,-0.0,0.009817276949752759,3.19,0.0,3.19,-0.0,-13.704999999999998,1531.5991,142.04109 -0.925088397746369,0.007799850241681828,0.925088397746369,0.0,0.40521898148148144,-0.0,0.008710983824095459,0.0,0.0,0.0,-0.0,-15.26,1530.6583,143.62767 -0.9107707552497061,0.018395604591477058,0.9107707552497061,0.0,0.4080003472222223,-0.0,0.020556983613004502,0.0,0.0,0.0,-0.0,-3.9699999999999998,1529.7268,143.48125 -0.8968378452188605,0.016137485527059684,0.8968378452188605,1.6209256159527285e-16,0.40966990740740744,-0.0,0.018044408276578217,2.92,1.6209256159527285e-16,2.92,-0.0,-5.83,1528.8062,144.87723 -0.8833888907986299,0.009741069170851371,0.8833888907986299,0.0,0.41200046296296294,-0.0,0.010898577448612369,0.0,0.0,0.0,-0.0,-12.614999999999998,1527.9038,145.87268 -0.8703657495675977,0.01049453172807251,0.8703657495675977,0.0,0.41464768518518513,-0.0,0.01174839223961537,0.0,0.0,0.0,-0.0,-11.725000000000001,1527.0168,145.92342 -0.857701134299076,0.012291096153941932,0.857701134299076,0.0,0.4159996527777778,-0.0,0.013767497960786362,1.84,0.0,1.84,-0.0,-9.684999999999999,1526.1415,146.84459 -0.8454557959097682,0.0035887810987520214,0.8454557959097682,0.0,0.419205324074074,-0.0,0.004022127386603147,0.0,0.0,0.0,-0.0,-24.965,1525.2827,147.67397 -0.8336050603791608,0.0036885117495349218,0.8336050603791608,0.0,0.41999976851851856,-0.0,0.00413618659400518,0.0,0.0,0.0,-0.0,-24.665,1524.4397,147.68811 -0.8220632520453943,0.0045414291551030125,0.8220632520453943,0.0,0.42400011574074076,-0.0,0.005095405711185369,0.0,0.0,0.0,-0.0,-22.345,1523.607,147.68811 -0.8107889640132151,0.009462066037031024,0.8107889640132151,0.0,0.42400011574074076,-0.0,0.010622025548288226,0.0,0.0,0.0,-0.0,-13.315,1522.7823,147.68811 -0.7997837257350585,0.012207736575252951,0.7997837257350585,0.0,0.428,-0.0,0.013711638235836173,0.0,0.0,0.0,-0.0,-10.115,1521.9662,147.68811 -0.7890472084459328,0.01334004072410159,0.7890472084459328,0.0,0.42846388888888887,-0.0,0.014991383999044582,0.0,0.0,0.0,-0.0,-8.944999999999999,1521.159,147.68811 -0.7785773526447567,0.013934384581667939,0.7785773526447567,0.0,0.43200000000000005,-0.0,0.015667517168274084,0.0,0.0,0.0,-0.0,-8.465,1520.3613,147.68811 -0.7683689164629052,0.015255123525844063,0.7683689164629052,0.0,0.4336695601851852,-0.0,0.01716142421921011,1.67,0.0,1.67,-0.0,-7.29,1519.5731,147.68811 -0.758418338641483,0.016062968511804877,0.758418338641483,0.0,0.43600011574074077,-0.0,0.018079480300170876,0.0,0.0,0.0,-0.0,-6.655,1518.7947,147.68811 -0.7487221071840554,0.013818662816429671,0.7487221071840554,0.0,0.4399488425925926,-0.0,0.01556130234249872,0.0,0.0,0.0,-0.0,-8.8,1518.0262,147.68811 -0.7392752515394861,0.013274897525390305,0.7392752515394861,0.0,0.4400003472222222,-0.0,0.014956435270704086,0.0,0.0,0.0,-0.0,-9.33,1517.268,147.68811 -0.7300774089959869,0.012144193801768732,0.7300774089959869,0.0,0.4440001157407408,-0.0,0.01368925055604801,0.0,0.0,0.0,-0.0,-10.62,1516.5203,147.68811 -0.7208716931462225,0.01092123281360065,0.7208716931462225,0.0,0.4440081018518519,-0.0,0.012316851968562265,0.0,0.0,0.0,-0.0,-12.0,1515.7625,147.68602 -0.7114198735552868,0.012709861198691356,0.7114198735552868,0.0,0.4480001157407407,-0.0,0.014341506017849268,0.0,0.0,0.0,-0.0,-10.125,1514.9742,147.67993 -0.7023790625139054,0.012978735622283558,0.7023790625139054,0.0,0.4501516203703704,-0.0,0.014652284681916313,0.0,0.0,0.0,-0.0,-9.905000000000001,1514.2104,147.67558 -0.6944034828485577,0.0192568752469754,0.6944034828485577,0.0,0.452,-0.0,0.02174975810404815,0.0,0.0,0.0,-0.0,-4.609999999999999,1513.5284,147.679 -0.6878823964173144,0.026261557468929376,0.6878823964173144,0.3224149576136621,0.45599953703703705,-0.007585033929186952,0.029672272458719035,0.33,0.3299999915428491,8.45715091624122e-9,-0.0,-0.34499999999999975,1512.965,147.76724 -0.7048974620588563,0.02893428736081128,0.7048974620588563,5.38449038186157,0.45599953703703705,2.3244903818616423,0.03266062205365308,3.06,3.059999999999928,7.202238805348316e-14,-0.0,1.0449999999999997,1514.4242,147.26143 -0.7159801661368788,0.02268433537430269,0.7159801661368788,-7.933577858773373e-12,0.46,-7.933577858773373e-12,0.02559002056078498,0.0,0.0,0.0,-0.0,-2.58,1515.3558,147.0873 -0.7070764899750235,0.02088231785690422,0.7070764899750235,2.6400418300376317e-7,0.4604638888888889,-0.0,0.023568801968212604,4.15,2.6400418300376317e-7,4.149999735995817,-0.0,-3.7499999999999996,1514.6085,149.10121 -0.6986590228199793,0.02307895327932839,0.6986590228199793,0.36898402442305334,0.463999537037037,-2.9103844696635005e-11,0.02606033768903209,12.84,0.36898402445215717,12.471015975547843,-0.0,-2.445,1513.8933,157.59914 -0.6909120767068175,0.020903169493362614,0.6909120767068175,2.4967310946477637e-9,0.46799976851851854,-0.0,0.023613868568325824,0.29,2.4967310946477637e-9,0.2899999975032689,-0.0,-3.9499999999999997,1513.2274,164.24803 -0.6828154330757735,0.01404376921137003,0.6828154330757735,0.0,0.46799976851851854,-0.0,0.015872333198469438,0.0,0.0,0.0,-0.0,-9.36,1512.5234,164.62303 -0.674937824799006,0.014709696966088835,0.674937824799006,0.0,0.4719996527777777,-0.0,0.01663258839653657,0.0,0.0,0.0,-0.0,-8.85,1511.8304,164.62517 -0.6672424731809411,0.013892203005797545,0.6672424731809411,0.0,0.4719996527777777,-0.0,0.015715347999066355,0.0,0.0,0.0,-0.0,-9.605,1511.1456,164.62517 -0.6596847504026401,0.019977173145613755,0.6596847504026401,0.0,0.4760001157407408,-0.0,0.022609058253860736,0.0,0.0,0.0,-0.0,-4.790000000000001,1510.4653,164.61711 -0.6522392959730803,0.023292957568262634,0.6522392959730803,-1.466350669960666e-12,0.4800005787037037,-1.466350669960666e-12,0.026373515167451594,0.0,0.0,0.0,-0.0,-2.755,1509.7875,164.48067 -0.6449609229974572,0.020011109268366595,0.6449609229974572,1.9834067721546943e-12,0.4800005787037037,-0.0,0.022667695177996397,2.28,1.9834067721546943e-12,2.279999999998016,-0.0,-4.87,1509.1173,165.69133 -0.6378824097707062,0.015259801764096857,0.6378824097707062,0.0,0.4840002314814815,-0.0,0.01729317744032761,0.0,0.0,0.0,-0.0,-8.665,1508.4583,166.83864 -0.6309770176973298,0.0200876227932709,0.6309770176973298,1.4773737788686958e-12,0.4840002314814815,-0.0,0.02277412168334411,2.8,1.4773737788686958e-12,2.799999999998523,-0.0,-4.92,1507.8082,167.01682 -0.6242242073651857,0.01656653930034255,0.6242242073651857,0.0,0.48800034722222224,-0.0,0.018790139689297467,0.0,0.0,0.0,-0.0,-7.66,1507.1656,167.08792 -0.6176206707600962,0.012883038756447569,0.6176206707600962,0.0,0.4919994212962963,-0.0,0.014618391231984544,0.0,0.0,0.0,-0.0,-11.104999999999999,1506.5305,167.09438 -0.6111656891012508,0.011166463951062753,0.6111656891012508,0.0,0.4919994212962963,-0.0,0.012675872107433015,0.0,0.0,0.0,-0.0,-12.955,1505.9031,167.07858 -0.6048511105114334,0.01269222152991892,0.6048511105114334,0.0,0.4959997685185185,-0.0,0.01441380806787126,0.0,0.0,0.0,-0.0,-11.395,1505.2828,167.07553 -0.5986482716240495,0.014935263145734252,0.5986482716240495,0.0,0.4959997685185185,-0.0,0.016968037503563568,0.0,0.0,0.0,-0.0,-9.245000000000001,1504.6672,167.07553 -0.5920260068957726,0.02070676891182714,0.5920260068957726,1.1093348462054564e-12,0.4999997685185186,-0.0,0.023535468916099322,2.0,1.1093348462054564e-12,1.9999999999988907,-0.0,-4.915,1504.0029,167.07549 -0.5850594849820535,0.015328321915951688,0.5850594849820535,0.0,0.503999537037037,-0.0,0.01743047835105564,0.0,0.0,0.0,-0.0,-9.1,1503.296,167.0754 -0.5784917525729809,0.010523508512541533,0.5784917525729809,0.0,0.503999537037037,-0.0,0.01197209253178563,0.0,0.0,0.0,-0.0,-13.995000000000001,1502.6218,167.07532 -0.5730380997165526,0.01718700727017509,0.5730380997165526,0.0,0.5079996527777778,-0.0,0.0195602000944117,0.0,0.0,0.0,-0.0,-7.66,1502.0562,167.07535 -0.5693859203599043,0.026939519041683235,0.5693859203599043,0.2896533561290633,0.5079996527777778,-5.011931448305659e-7,0.030667140711854012,0.29,0.2896538573222081,0.00034614267779189907,-0.0,-1.42,1501.6743,167.07553 -0.6326145324833008,0.03763020697042879,0.6326145324833008,14.555751668749451,0.511999537037037,8.275751668749452,0.04265845465755252,6.28,6.28,0.0,-0.0,3.2699999999999996,1507.963,163.46463 -0.8449755078196933,0.03953643098746684,0.8449755078196933,21.45929865034975,0.5159998842592592,9.479298650349751,0.044311451589208295,11.98,11.98,0.0,-0.0,3.7199999999999998,1525.2488,154.65002 -0.9850017189599382,0.029950318188861198,0.9850017189599382,-0.003628556447844879,0.5159998842592592,-0.003628556447844879,0.03336724513276957,0.0,0.0,0.0,-0.0,-0.43500000000000005,1534.406,150.5907 -0.9724325149082802,0.03165587715349643,0.9724325149082802,0.15752958921600785,0.520000462962963,0.15752958921600785,0.035285022450308165,0.0,0.0,0.0,-0.0,0.2599999999999998,1533.639,150.56898 -1.0248712777714606,0.03880450926221875,1.0248712777714606,8.128651482109243,0.520000462962963,8.128651482109243,0.04316491899618525,0.0,0.0,0.0,-0.0,3.2150000000000003,1536.7756,146.40877 -1.1686026656300996,0.04122147553690852,1.1686026656300996,10.027581164189755,0.5240002314814816,10.027581164189755,0.04562080405339355,0.0,0.0,0.0,-0.0,3.925,1544.6134,137.43861 -1.3522302547314446,0.04171460451310305,1.3522302547314446,9.974090187229754,0.5279998842592593,9.974090187229754,0.04590751495717993,0.0,0.0,0.0,-0.0,3.905,1553.3293,127.46987 -1.5846905744760287,0.04129933531368099,1.5846905744760287,11.90219846370975,0.5279998842592593,9.33219846370975,0.04517498663280452,2.57,2.57,0.0,-0.0,3.665,1562.803,117.828674 -1.8863497682427772,0.03993490973896688,1.8863497682427772,11.683268781623429,0.5319998842592593,7.43326878162343,0.04339356743196031,4.25,4.25,0.0,-0.0,2.955,1573.2095,109.377625 -2.096538838154219,0.036884371795608474,2.096538838154219,5.223572924090856,0.5319998842592593,4.143572924090856,0.03991874325264438,1.08,1.08,0.0,-0.0,1.725,1579.5186,103.53312 -2.1661592497858804,0.031195559804977912,2.1661592497858804,4.199870945700315,0.5359994212962963,-0.00011530482017557172,0.03372027972746236,4.2,4.199986250520491,1.3749479509705954e-5,-0.0,-0.8300000000000001,1581.4695,102.126595 -2.1807131256524266,0.027539201782881044,2.1807131256524266,0.010049376701231343,0.5395353009259259,-2.493406643947029e-12,0.029760479775028173,4.36,0.010049376703724749,4.349950623296276,-0.0,-2.7,1581.8694,103.77523 -2.140179485331002,0.030762773474386874,2.140179485331002,-7.453371564450801e-6,0.54,-7.453371564450801e-6,0.03326762518845174,0.0,0.0,0.0,-0.0,-1.13,1580.7489,104.87859 -2.127056670419874,0.0387395105365329,2.127056670419874,5.1732749844929655,0.5439997685185185,5.1732749844929655,0.04190360312099636,0.0,0.0,0.0,-0.0,2.1100000000000003,1580.3816,103.09299 -2.1965003948308346,0.037117794636531115,2.1965003948308346,3.448182320468502,0.5439997685185185,3.448182320468502,0.040100749567572896,0.0,0.0,0.0,-0.0,1.4649999999999999,1582.3002,98.96744 -2.1589982106489045,0.03327227492215895,2.1589982106489045,-0.019850150915218055,0.5479999999999999,-0.019850150915218055,0.0359695654036547,0.0,0.0,0.0,-0.0,-0.2200000000000002,1581.2717,97.76805 -2.079730631197698,0.032911850921950425,2.079730631197698,-0.0046538264244200414,0.5498481481481481,-0.0046538264244200414,0.03563025824545341,0.0,0.0,0.0,-0.0,-0.4049999999999998,1579.0378,97.777626 -2.009812799331008,0.03342453362090835,2.009812799331008,-0.019850150915218055,0.5520004629629629,-0.019850150915218055,0.03623214736385762,0.0,0.0,0.0,-0.0,-0.2200000000000002,1576.9956,97.78948 -2.1703696678693,0.03758319567912953,2.1703696678693,13.970471017828512,0.5559922453703704,3.100471017828526,0.040621901184235254,10.87,10.869999999999985,1.3878342919326769e-14,-0.0,1.335,1581.5854,96.55863 -2.983702077002907,0.04848027117649238,2.983702077002907,28.868875500669752,0.5560002314814815,12.728875500669753,0.05177778752333605,16.14,16.14,0.0,-0.0,4.935,1600.5924,88.559074 -4.020970183869879,0.04383179517014002,4.020970183869879,13.918178551228838,0.56,7.968178551228837,0.046297740698363406,5.95,5.95,0.0,-0.0,3.155,1618.4104,78.216545 -4.327509318807404,0.0393118161312421,4.327509318807404,3.5685399700301073,0.5600517361111111,3.5685399700301073,0.04141120348749719,0.0,0.0,0.0,-0.0,1.5099999999999998,1622.798,72.48399 -4.398721036156069,0.042273104951751427,4.398721036156069,7.132739845410215,0.5639996527777777,6.122739845410215,0.0445039041930106,1.01,1.01,0.0,-0.0,2.4650000000000003,1623.7727,67.63623 -5.08476372181604,0.04978122562129792,5.08476372181604,19.77082945226975,0.5663305555555556,12.260829452269753,0.05213035605330119,7.51,7.51,0.0,-0.0,4.76,1632.4282,58.470135 -6.906324994114545,0.057751240614664356,6.906324994114545,28.90690910218975,0.5679997685185185,17.716909102189753,0.05980654573821402,11.19,11.19,0.0,-0.0,6.8,1650.7139,43.502113 -9.321284554509853,0.06180149865719948,9.321284554509853,23.313057203629754,0.5715351851851852,19.803057203629756,0.06331408273269531,3.51,3.51,0.0,-0.0,7.58,1668.6217,24.713701 -10.008155920607921,0.04307325644151268,10.008155920607921,5.13315674862833,0.5719994212962963,5.13315674862833,0.04401546420489893,0.0,0.0,0.0,-0.0,2.0949999999999998,1672.8678,12.255818 -9.652261292599098,0.06107866867066288,9.652261292599098,6.031257629394531,0.5760005787037037,5.031257629394531,0.062495518461724416,1.0,1.0,0.0,-0.0,7.26,1670.7054,5.0312576 -8.7842641007388,0.05470662041998183,8.7842641007388,1.8492325372219365,0.5760005787037037,1.8492325372219365,0.05616483714625768,0.0,0.0,0.0,-0.0,5.63,1665.078,1.8492326 -7.833343190083766,0.04210128714801161,7.833343190083766,1.3383686373705304,0.5800003472222222,0.6783686373705303,0.04340185673812607,0.66,0.66,3.663735981263017e-17,-0.0,1.685,1658.2357,0.679131 -7.0511073039993155,0.034156273483505646,7.0511073039993155,1.2295333083214113,0.5807946759259259,-1.4506692018488002e-6,0.03534532892206723,1.23,1.2295347589906132,0.0004652410093867765,-0.0,-1.3049999999999997,1651.9529,0.43826044 -6.471887709299069,0.03821558974637285,6.471887709299069,2.281269954899343,0.5840005787037037,0.19126995500804336,0.03966888362693353,2.09,2.0899999998912997,1.0870021938114148e-10,-0.0,0.27500000000000036,1646.8339,0.43685025 -6.163595113723514,0.047920054534169795,6.163595113723514,4.389137005156405,0.5853530092592593,0.1491370051564043,0.04983059488035093,4.24,4.24,0.0,-0.0,3.59,1643.9191,0.1750422 -5.791116872224515,0.05174243218946689,5.791116872224515,0.3161616701547189,0.5880002314814815,0.05616167015471891,0.05392748700631836,0.26,0.26,0.0,-0.0,4.705,1640.1964,0.08111654 -5.289334384713146,0.04679925870766076,5.289334384713146,0.02566923171338179,0.5903311342592593,0.02566923171338179,0.04893705677297637,0.0,0.0,0.0,-0.0,3.1950000000000003,1634.7838,0.042458043 -4.855482291176007,0.08126256320955365,4.855482291176007,0.013221909484255636,0.5920008101851852,0.013221909484255636,0.08524115380453827,0.0,0.0,0.0,-0.0,11.69,1629.6727,0.023658238 -4.484210974946409,0.10963307014747807,4.484210974946409,0.007259534952952483,0.5943310185185184,0.007259534952952483,0.11533687866331888,0.0,0.0,0.0,-0.0,16.545,1624.9222,0.013596207 -4.1585229191192985,0.12090919027443632,4.1585229191192985,0.004115106874364978,0.5959997685185184,0.004115106874364978,0.1275531346917224,0.0,0.0,0.0,-0.0,18.18,1620.4192,0.007916984 -3.9948449503651426,0.1071019321010402,3.9948449503651426,3.1323866283196273,0.5987809027777777,0.002386628319627642,0.11315462789858399,3.13,3.13,0.0,-0.0,16.105,1618.0211,0.004664489 -4.294631894825582,0.06433944214167046,4.294631894825582,13.671397523688814,0.5999998842592592,0.001397523688814406,0.06779441830678119,13.67,13.67,0.0,-0.0,7.885,1622.3425,0.0027570433 -4.508713991128449,0.04797349600634316,4.508713991128449,2.6908229292803942,0.6027810185185185,0.0008229292803943646,0.05045927593177288,2.69,2.69,0.0,-0.0,3.34,1625.2477,0.001632533 -4.301194369693723,0.06024122175096403,4.301194369693723,0.25048995811033004,0.6039996527777778,0.0004899581103300199,0.06347255920231892,0.25,0.25,0.0,-0.0,6.77,1622.4337,0.00097516156 -4.119849503641413,0.05686047021159497,4.119849503641413,3.240292026490865,0.6063304398148148,0.00029202649086442005,0.060005608355811715,3.24,3.24,0.0,-0.0,5.8549999999999995,1619.8612,0.0005823573 -3.9223628987582058,0.048874673247128846,3.9223628987582058,0.00017138611578167173,0.6079995370370371,0.00017138611578167173,0.051671669097012436,0.0,0.0,0.0,-0.0,3.5649999999999995,1616.9276,0.00034218677 -3.681208527236772,0.05914534673220049,3.681208527236772,0.00010146852492122529,0.6098476851851852,0.00010146852492122529,0.06267700156480638,0.0,0.0,0.0,-0.0,6.43,1613.1382,0.00020273155 -3.4674242809121423,0.06292914586537536,3.4674242809121423,0.08005727320343871,0.6120002314814815,5.7273203438704066e-5,0.0668347716079342,0.08,0.08,0.0,-0.0,7.359999999999999,1609.5652,0.00011448088 -3.2809298465754977,0.07401656243361864,3.2809298465754977,3.262867003176539e-5,0.6133524305555556,3.262867003176539e-5,0.07877189765027647,0.0,0.0,0.0,-0.0,9.879999999999999,1606.2635,6.523606e-5 -3.1584298259099413,0.062364912724057656,3.1584298259099413,1.146787841276673e-5,0.6159914351851852,1.146787841276673e-5,0.0664656978119169,0.0,0.0,0.0,-0.0,7.175,1603.9911,2.2933127e-5 -3.093874138560688,0.062042822349157215,3.093874138560688,0.819994280879194,0.6162851851851852,-5.719120805976366e-6,0.06617330780688675,0.82,0.82,0.0,-0.0,7.1,1602.7578,-1.1438896e-5 -3.072911837456846,0.06744261254313147,3.072911837456846,6.039986095835293,0.6195356481481481,-1.3904164706304804e-5,0.07195081405621093,6.04,6.04,0.0,-0.0,8.31,1602.3518,-2.7812197e-5 -3.0722837860138914,0.10098163634951784,3.0722837860138914,1.1999900524873885,0.6199998842592592,-9.947512611390464e-6,0.10773257467548746,1.2,1.2,0.0,-0.0,14.725,1602.3396,-1.9897005e-5 -3.0192856759583884,0.09140554591650095,3.0192856759583884,3.8299954341931075,0.6227818287037037,-4.565806892385569e-6,0.09757957709343322,3.83,3.83,0.0,-0.0,13.045,1601.3004,-9.132031e-6 -2.9431426582846902,0.08189428757400358,2.9431426582846902,-1.081733679539895e-6,0.6240006944444445,-1.081733679539895e-6,0.08750923712553457,0.0,0.0,0.0,-0.0,11.27,1599.775,-2.1634908e-6 -2.891722022971488,0.0874856277733285,2.891722022971488,2.989999782422326,0.6253526620370371,-2.1757767409639534e-7,0.09354548914716458,2.99,2.99,0.0,-0.0,12.3,1598.7224,-4.351563e-7 -2.900981302006484,0.08127813653032696,2.900981302006484,7.299999890355403,0.6278895833333333,-1.096445961976403e-7,0.08689764676841642,7.3,7.3,0.0,-0.0,11.06,1598.9133,-2.1928943e-7 -2.9103535123410453,0.07970826151138537,2.9103535123410453,-4.0101005089438865e-8,0.6280518518518519,-4.0101005089438865e-8,0.08520896631521678,0.0,0.0,0.0,-0.0,10.745,1599.106,-8.020204e-8 -2.84676301816372,0.08509738486226442,2.84676301816372,2.3299999814917083,0.6303303240740741,-1.850829191521006e-8,0.0910451120193456,2.33,2.33,0.0,-0.0,11.739999999999998,1597.7866,-3.701659e-8 -2.726739179704095,0.06642139132159318,2.726739179704095,-9.400612737153715e-9,0.6319916666666667,-9.400612737153715e-9,0.07117839431083585,0.0,0.0,0.0,-0.0,7.835000000000001,1595.2141,-1.8801227e-8 -2.6060643675245005,0.07796578457228785,2.6060643675245005,-3.9393087239157806e-9,0.6322856481481481,-3.9393087239157806e-9,0.08369140344441496,0.0,0.0,0.0,-0.0,10.355,1592.5109,-7.878618e-9 -2.5697243072659783,0.07138907467826278,2.5697243072659783,1.7399999978753253,0.6347809027777778,-2.1246746132900442e-9,0.07667209171567181,1.74,1.74,0.0,-0.0,8.92,1591.6722,-4.2493493e-9 -2.718191608460196,0.06805631078175096,2.718191608460196,10.17999999911475,0.6360001157407408,-8.852492549464429e-10,0.07293897749408418,10.18,10.18,0.0,-0.0,8.115,1595.0266,-1.7704985e-9 -2.9333110831465117,0.06230197489607848,2.9333110831465117,4.339999999854765,0.6362856481481481,-1.4523450476701182e-10,0.06658192597288182,4.34,4.34,0.0,-0.0,6.705,1599.5752,-2.90469e-10 -3.0616578202560607,0.06921484254623275,3.0616578202560607,6.719999999974989,0.6387810185185185,-2.501140613438464e-11,0.07385160773444746,6.72,6.72,0.0,-0.0,8.24,1602.1327,-5.0022812e-11 -3.074319138627819,0.08543544823104218,3.074319138627819,2.1399999999864,0.6399917824074074,-1.3600304908194475e-11,0.09114482550176335,2.14,2.14,0.0,-0.0,11.515,1602.3792,-2.720061e-11 -3.0561431021862946,0.06550519478476952,3.0561431021862946,3.1599999999924693,0.6400512731481481,-7.53097931181962e-12,0.06989814457205545,3.16,3.16,0.0,-0.0,7.36,1602.025,-1.5061959e-11 -2.9627654848757277,0.061768778055770884,2.9627654848757277,-3.8907470993483906e-12,0.6418483796296296,-3.8907470993483906e-12,0.06598748526968569,0.0,0.0,0.0,-0.0,6.4350000000000005,1600.1719,-7.781494e-12 -2.8206807349608978,0.06831469073234181,2.8206807349608978,-1.37388191099652e-12,0.6435354166666667,-1.37388191099652e-12,0.07311457539299436,0.0,0.0,0.0,-0.0,7.970000000000001,1597.2369,-2.7477638e-12 -2.7241876812603163,0.07511397727826903,2.7241876812603163,1.4399999999995337,0.6439998842592592,-4.663701608036596e-13,0.08049635176451189,1.44,1.44,0.0,-0.0,9.455,1595.1582,-9.327403e-13 -2.8755070527759745,0.06978302695874615,2.8755070527759745,8.829999999999739,0.6442856481481481,-2.616433816559581e-13,0.07463236012018201,8.83,8.83,0.0,-0.0,8.27,1598.3866,-5.2328676e-13 -3.2013082325484983,0.067888449595696,3.2013082325484983,10.36999999999986,0.6458482638888889,-1.392739683344985e-13,0.07231612615350046,10.37,10.37,0.0,-0.0,7.745,1604.7964,-2.7854794e-13 -3.373988172267635,0.07307709542905698,3.373988172267635,2.659999999999919,0.6471538194444444,-8.125937395830885e-14,0.07769128479147355,2.66,2.66,0.0,-0.0,8.825,1607.9338,-1.6251875e-13 -3.260772367425512,0.07660031919410028,3.260772367425512,-4.4975640236807786e-14,0.6479927083333333,-4.4975640236807786e-14,0.08154033606908842,0.0,0.0,0.0,-0.0,9.56,1605.8955,-8.995128e-14 -3.1174827299531653,0.09665440805265281,3.1174827299531653,-2.6263826928696894e-14,0.6480521990740741,-2.6263826928696894e-14,0.10305995958811985,0.0,0.0,0.0,-0.0,13.285,1603.2118,-5.2527654e-14 -3.065759655503199,0.09439504669554197,3.065759655503199,3.3799999999999857,0.6487947916666666,-1.4261170166332768e-14,0.10071363042178261,3.38,3.38,0.0,-0.0,12.895,1602.2126,-2.852234e-14 -3.0382111483001886,0.10094831891255045,3.0382111483001886,2.559999999999992,0.6498487268518519,-8.140316118929646e-15,0.10774181296135785,2.56,2.56,0.0,-0.0,13.959999999999999,1601.6736,-1.6280632e-14 -2.930740009501432,0.12732793262422346,2.930740009501432,-3.809537880056122e-15,0.6507814814814814,-3.809537880056122e-15,0.13607941896627734,0.0,0.0,0.0,-0.0,17.79,1599.5228,-7.619076e-15 -2.7860820743543866,0.09445584661171583,2.7860820743543866,-1.1535287487238217e-15,0.6515357638888889,-1.1535287487238217e-15,0.10113911667249084,0.0,0.0,0.0,-0.0,12.895000000000001,1596.4999,-2.3070575e-15 -2.6555409857021015,0.07301556329957545,2.6555409857021015,-5.066250700106938e-16,0.6519921296296297,-5.066250700106938e-16,0.07832241050852343,0.0,0.0,0.0,-0.0,8.834999999999999,1593.634,-1.0132501e-15 -2.539267697319066,0.0767724862221592,2.539267697319066,-2.5692528934406475e-16,0.6520001157407407,-2.5692528934406475e-16,0.08249079505729132,0.0,0.0,0.0,-0.0,9.645,1590.9602,-5.138506e-16 -2.4324071965180343,0.08864312327684405,2.4324071965180343,-1.159462770384722e-16,0.6520517361111111,-1.159462770384722e-16,0.09539956656589152,0.0,0.0,0.0,-0.0,11.945,1588.3926,-2.3189255e-16 -2.352589201109392,0.11394312028726443,2.352589201109392,-5.405047269221981e-17,0.6522856481481482,-5.405047269221981e-17,0.12278197116800771,0.0,0.0,0.0,-0.0,16.04,1586.4,-1.08100945e-16 -2.3239601846228504,0.12537455868305858,2.3239601846228504,7.65,0.6527943287037037,1.6803476003577766e-17,0.13516247352539626,7.65,7.65,0.0,-0.0,17.625,1585.6688,3.3606952e-17 -2.327972871780095,0.11094697988582473,2.327972871780095,6.42,0.653352662037037,8.001506000660616e-17,0.11960077155911676,6.42,6.42,0.0,-0.0,15.579999999999998,1585.7719,1.6003012e-16 -2.346936061010176,0.10717919847625637,2.346936061010176,1.1623798724457294e-16,0.653848611111111,1.1623798724457294e-16,0.11550381606656437,0.0,0.0,0.0,-0.0,14.995000000000001,1586.2563,2.3247597e-16 -2.3632165091540256,0.11406283471908117,2.3632165091540256,1.0612594910157349e-16,0.653848611111111,1.0612594910157349e-16,0.12289012133642255,0.0,0.0,0.0,-0.0,16.015,1586.6692,2.122519e-16 -2.658446571998747,0.09826799047828023,2.658446571998747,17.57,0.653848611111111,6.413849281895323e-17,0.10540589083669037,17.57,17.57,0.0,-0.0,13.505,1593.6993,1.2827699e-16 -3.1913121577032264,0.07682022023657074,3.1913121577032264,10.21,0.6543310185185185,3.8392612058525985e-17,0.0818399504101583,10.21,10.21,0.0,-0.0,9.465,1604.6096,7.6785224e-17 -3.3731055269630374,0.09186531822758973,3.3731055269630374,3.14,0.6543310185185185,2.3044095467231008e-17,0.09766677115891083,3.14,3.14,0.0,-0.0,12.265,1607.9182,4.608819e-17 -3.5351683564622087,0.10741235338922968,3.5351683564622087,6.59,0.653848611111111,1.2968286180700155e-17,0.1139969395637933,6.59,6.59,0.0,-0.0,14.780000000000001,1610.7207,2.5936572e-17 -3.8404813496534445,0.10107795038330647,3.8404813496534445,10.66,0.653848611111111,6.5840946324873084e-18,0.10694576182001929,10.66,10.66,0.0,-0.0,13.74,1615.6677,1.3168189e-17 -4.023971247735223,0.09788545223782937,4.023971247735223,3.57,0.653352662037037,3.833576407092826e-18,0.10338957158506158,3.57,3.57,0.0,-0.0,13.204999999999998,1618.455,7.667153e-18 -4.001775405051356,0.10428324672541182,4.001775405051356,4.31,0.653352662037037,2.2945433913259046e-18,0.11016960070453809,4.31,4.31,0.0,-0.0,14.235,1618.1246,4.5890868e-18 -3.839531605065623,0.0897318897907591,3.839531605065623,0.010000000000000002,0.6527943287037037,1.3513479061277474e-18,0.09494190383533113,0.01,0.01,0.0,-0.0,11.850000000000001,1615.653,2.7026958e-18 -3.634182131622399,0.1011279638308228,3.634182131622399,0.43,0.6522856481481482,8.028396856553126e-19,0.10721749533570153,0.43,0.43,0.0,-0.0,13.82,1612.3704,1.6056794e-18 -3.557291125785345,0.09224256458953589,3.557291125785345,3.8,0.6520517361111111,4.585349580644295e-19,0.09787457488414368,3.8,3.8,0.0,-0.0,12.355,1611.0933,9.170699e-19 -3.586913229236957,0.09494243704811668,3.586913229236957,4.85,0.6519921296296297,2.600572610817581e-19,0.10070833510198117,4.85,4.85,0.0,-0.0,12.815000000000001,1611.5885,5.201145e-19 -3.6674118670903053,0.11086111857401999,3.6674118670903053,14.9,0.6518894675925926,9.44225376759574e-20,0.11749713083333667,14.9,14.9,0.0,-0.0,15.325000000000001,1612.914,1.8884508e-19 -3.828019952303309,0.10983626503511684,3.828019952303309,3.21,0.6511538194444445,-1.7902815400327228e-20,0.11622647952715444,3.21,3.21,0.0,-0.0,15.165,1615.4736,-3.580563e-20 -4.113799151532133,0.12146926866672572,4.113799151532133,9.97,0.6503311342592593,-4.222058447206511e-20,0.12819507623659784,9.97,9.97,0.0,-0.0,16.805,1619.7734,-8.444117e-20 -4.227722901361375,0.11787673632988485,4.227722901361375,3.81,0.6493528935185184,-2.3323989113937847e-20,0.12427845728354245,3.81,3.81,0.0,-0.0,16.314999999999998,1621.4048,-4.6647978e-20 -4.052531176706759,0.11971658576199297,4.052531176706759,-1.0988381156047359e-20,0.6482863425925927,-1.0988381156047359e-20,0.12641528407660854,0.0,0.0,0.0,-0.0,16.625,1618.8773,-2.1976762e-20 -3.8045090204562872,0.13497364706800818,3.8045090204562872,-6.00508810127133e-21,0.6480008101851852,-6.00508810127133e-21,0.14285887658844176,0.0,0.0,0.0,-0.0,18.68,1615.1057,-1.2010176e-20 -3.6325556726797523,0.12431331007991725,3.6325556726797523,1.5,0.647890162037037,-3.2732883834496188e-21,0.1318011579827401,1.5,1.5,0.0,-0.0,17.33,1612.3436,-6.5465768e-21 -3.463627431331958,0.10669114928524677,3.463627431331958,-1.810806201319765e-21,0.64678125,-1.810806201319765e-21,0.1133174203256044,0.0,0.0,0.0,-0.0,14.86,1609.4998,-3.6216124e-21 -3.6075822309064587,0.120533983564455,3.6075822309064587,9.57,0.645352199074074,-1.0217593016299637e-21,0.1278268511474809,9.57,9.57,0.0,-0.0,16.885,1611.9316,-2.0435186e-21 -4.295237647255245,0.11498473699832619,4.295237647255245,20.23,0.6440515046296297,-5.505262600549029e-22,0.12115869563140137,20.23,20.23,0.0,-0.0,16.03,1622.351,-1.1010525e-21 -5.163093636541529,0.10579517389550973,5.163093636541529,13.43,0.6438894675925926,-3.115928126637461e-22,0.1107256260000791,13.43,13.43,0.0,-0.0,14.555,1633.3412,-6.2318563e-22 -5.402393521529443,0.10398727078158501,5.402393521529443,4.13,0.6427809027777778,-1.4529363845750534e-22,0.10865347941657733,4.13,4.13,0.0,-0.0,14.274999999999999,1636.0469,-2.9058728e-22 -5.131508816123084,0.12818689681704856,5.131508816123084,-7.071028561329268e-23,0.6407940972222222,-7.071028561329268e-23,0.13419099421619599,0.0,0.0,0.0,-0.0,17.815,1632.9747,-1.4142057e-22 -4.795101230393954,0.13361389256943268,4.795101230393954,1.29,0.6399997685185186,-4.0139571575037293e-23,0.14021988870765212,1.29,1.29,0.0,-0.0,18.575,1628.9254,-8.027914e-23 -4.478293705344037,0.12537473190367987,4.478293705344037,-2.223455737324261e-23,0.6395354166666667,-2.223455737324261e-23,0.13190392292186665,0.0,0.0,0.0,-0.0,17.56,1624.8434,-4.4469115e-23 -4.321825331260815,0.11813969855484177,4.321825331260815,5.93,0.6378482638888888,-1.2091269469079585e-23,0.12445478789836179,5.93,5.93,0.0,-0.0,16.634999999999998,1622.7195,-2.4182539e-23 -4.391471147891304,0.1199405175612657,4.391471147891304,6.13,0.6360001157407408,-4.6712236786176644e-24,0.12627757440818527,6.13,6.13,0.0,-0.0,16.925,1623.6742,-9.342447e-24 -4.483661054130954,0.14135668763411063,4.483661054130954,5.14,0.6355359953703703,-1.3568526885013318e-24,0.14871163049407005,5.14,5.14,0.0,-0.0,19.69,1624.9149,-2.7137054e-24 -4.408415186445123,0.1402740427836924,4.408415186445123,-7.840013741334306e-25,0.6338483796296296,-7.840013741334306e-25,0.14766450587147792,0.0,0.0,0.0,-0.0,19.615,1623.9042,-1.5680027e-24 -4.3488353730756115,0.14248766914997804,4.3488353730756115,7.87,0.6319996527777777,-4.293214253217852e-25,0.15006985596084116,7.87,7.87,0.0,-0.0,19.94,1623.0916,-8.5864285e-25 -4.378519466074209,0.14359177697410103,4.378519466074209,1.72,0.6315355324074073,-2.5006427239724257e-25,0.15119487343831134,1.72,1.72,0.0,-0.0,20.080000000000002,1623.4978,-5.0012854e-25 -4.17832435387808,0.14347632899040125,4.17832435387808,1.05,0.6287943287037038,-1.3503256287196298e-25,0.15133384032386785,1.05,1.05,0.0,-0.0,20.17,1620.7029,-2.7006513e-25 -4.021364716472861,0.15331767395264587,4.021364716472861,-7.786605639379548e-26,0.628,-7.786605639379548e-26,0.16194263061252512,0.0,0.0,0.0,-0.0,21.355,1618.4163,-1.5573211e-25 -4.393033309706621,0.14357481874177644,4.393033309706621,14.73,0.6267813657407407,-4.1115217757453275e-26,0.15115861641854597,14.73,14.73,0.0,-0.0,20.205000000000002,1623.6954,-8.2230436e-26 -5.352940102139811,0.1081710000291349,5.352940102139811,20.03,0.624052199074074,-2.1819264014879339e-26,0.11306289803375885,20.03,20.03,0.0,-0.0,15.41,1635.4977,-4.3638528e-26 -5.585490342143079,0.09957466658228452,5.585490342143079,-1.279965799543166e-26,0.6238902777777778,-1.279965799543166e-26,0.10391644014631744,0.0,0.0,0.0,-0.0,14.035,1638.0374,-2.5599316e-26 -5.109748428988284,0.10547902681713632,5.109748428988284,-7.565108288335461e-27,0.6207944444444444,-7.565108288335461e-27,0.11043668212011941,0.0,0.0,0.0,-0.0,15.110000000000001,1632.721,-1.5130217e-26 -4.698677776596382,0.11394458382514838,4.698677776596382,-4.5169204764263165e-27,0.6199998842592592,-4.5169204764263165e-27,0.11966723252021497,0.0,0.0,0.0,-0.0,16.455,1627.7123,-9.033841e-27 -4.334883983884599,0.127662487828059,4.334883983884599,-2.5284132162860506e-27,0.6183303240740741,-2.5284132162860506e-27,0.1344716815466014,0.0,0.0,0.0,-0.0,18.45,1622.8997,-5.0568264e-27 -4.034537978004641,0.13488445718439854,4.034537978004641,0.25,0.615999537037037,-1.0953640854819879e-27,0.14245525303109985,0.25,0.25,0.0,-0.0,19.490000000000002,1618.6116,-2.1907282e-27 -3.8530148154785606,0.1436719464035516,3.8530148154785606,2.32,0.6151532407407407,-4.42730897834042e-28,0.1519941337907125,2.32,2.32,0.0,-0.0,20.62,1615.8623,-8.854618e-28 -4.176573884467088,0.1529475791976834,4.176573884467088,14.03,0.6120002314814815,-2.6293255416548766e-28,0.16132627649428694,14.03,14.03,0.0,-0.0,21.735,1620.6779,-5.258651e-28 -4.838233918754136,0.15220041910137572,4.838233918754136,13.81,0.6115356481481482,-1.5723347436463295e-28,0.15967292856224657,13.81,13.81,0.0,-0.0,21.57,1629.4602,-3.1446695e-28 -4.9702278641925774,0.1322464353327042,4.9702278641925774,-9.395445205489647e-29,0.6080510416666667,-9.395445205489647e-29,0.13860254586517728,0.0,0.0,0.0,-0.0,19.244999999999997,1631.0676,-1.879089e-28 -4.593279877708626,0.1348511952141338,4.593279877708626,-5.579887892460659e-29,0.6078891203703704,-5.579887892460659e-29,0.14174182006003969,0.0,0.0,0.0,-0.0,19.630000000000003,1626.3574,-1.1159776e-28 -4.252840686016054,0.11537262842287434,4.252840686016054,-3.291976405760304e-29,0.6042853009259259,-3.291976405760304e-29,0.1216118213802817,0.0,0.0,0.0,-0.0,17.15,1621.7585,-6.583953e-29 -3.9554534977810603,0.09842349360429502,3.9554534977810603,-1.668132033805575e-29,0.6039916666666666,-1.668132033805575e-29,0.10402378828062236,0.0,0.0,0.0,-0.0,14.579999999999998,1617.4293,-3.336264e-29 -3.7266718344996086,0.0939014235320523,3.7266718344996086,0.68,0.6002854166666667,-7.283526250350336e-30,0.09946321689581415,0.68,0.68,0.0,-0.0,13.950000000000001,1613.8712,-1.4567053e-29 -3.6268502629387633,0.09826844635605005,3.6268502629387633,2.63,0.5999998842592592,-4.106207149795226e-30,0.10419358256360536,2.63,2.63,0.0,-0.0,14.715,1612.2498,-8.212414e-30 -3.679854359274256,0.09864272090213011,3.679854359274256,5.73,0.5962851851851851,-2.0644891310610334e-30,0.10453424536457681,5.73,5.73,0.0,-0.0,14.87,1613.1162,-4.1289783e-30 -3.747295857516233,0.10261617860531902,3.747295857516233,4.66,0.5959997685185184,-1.0874603563750815e-30,0.10867195470262758,4.66,4.66,0.0,-0.0,15.515,1614.2008,-2.1749207e-30 -3.593246153211242,0.11675358444089409,3.593246153211242,-6.278616254295648e-31,0.5920523148148148,-6.278616254295648e-31,0.12383598861127357,0.0,0.0,0.0,-0.0,17.795,1611.6938,-1.25572325e-30 -3.6819460059617786,0.12410970159839214,3.6819460059617786,11.03,0.591992824074074,-3.662627632684749e-31,0.1315194973810143,11.03,11.03,0.0,-0.0,18.810000000000002,1613.1501,-7.3252553e-31 -4.129925065584483,0.132238284470687,4.129925065584483,14.79,0.5880002314814815,-2.1648919591862357e-31,0.1395402494057111,14.79,14.79,0.0,-0.0,19.93,1620.0071,-4.329784e-31 -6.382828123219786,0.12920732099214682,6.382828123219786,45.75,0.5879922453703703,-1.3006720389447424e-31,0.13418835134091073,45.75,45.75,0.0,-0.0,19.265,1646.0063,-2.601344e-31 -11.111943034470865,0.1324627821385815,11.111943034470865,38.42,0.5840005787037037,-7.843108134427924e-32,0.1348566742297728,38.42,38.42,0.0,-0.0,19.465,1679.1157,-1.5686216e-31 -12.592603617379195,0.10791300013881797,12.592603617379195,-4.732786228603439e-32,0.5835359953703704,-4.732786228603439e-32,0.10937661064031128,0.0,0.0,0.0,-0.0,15.969999999999999,1686.586,-9.4655725e-32 -10.424369190113122,0.10497130299758624,10.424369190113122,-2.8527731506744357e-32,0.5800003472222222,-2.8527731506744357e-32,0.10711169776257219,0.0,0.0,0.0,-0.0,15.725,1675.3011,-5.7055463e-32 -8.860146265192926,0.1138649244775684,8.860146265192926,-1.7174486744292105e-32,0.5787818287037036,-1.7174486744292105e-32,0.11686396630983846,0.0,0.0,0.0,-0.0,17.205,1665.5917,-3.4348973e-32 -7.7300188683719036,0.11412210597990784,7.7300188683719036,-8.95843510077696e-33,0.5760005787037037,-8.95843510077696e-33,0.11770378870539928,0.0,0.0,0.0,-0.0,17.405,1657.4427,-1.791687e-32 -6.937097405037597,0.1149574384990869,6.937097405037597,1.66,0.5738478009259259,-3.346285278615575e-33,0.11902950639807232,1.66,1.66,0.0,-0.0,17.655,1650.9794,-6.6925706e-33 -6.41484663061645,0.11156133546851393,6.41484663061645,2.76,0.5719994212962963,-1.327686706449203e-33,0.11584107039829994,2.76,2.76,0.0,-0.0,17.255000000000003,1646.3052,-2.6553734e-33 -6.005209421863442,0.10257409876864544,6.005209421863442,5.95,0.5680513888888888,-6.797131698091755e-34,0.10676462856937409,5.95,5.95,0.0,-0.0,16.015,1642.3644,-1.3594263e-33 -5.605001690178866,0.07983975493763971,5.605001690178866,-2.4228300031677888e-34,0.5679997685185185,-2.4228300031677888e-34,0.08331043163335518,0.0,0.0,0.0,-0.0,11.985000000000001,1638.2456,-4.84566e-34 -5.17778396182427,0.08787976907684852,5.17778396182427,0.44,0.5639996527777777,-9.385156080514759e-35,0.09196574233519464,0.44,0.44,0.0,-0.0,13.690000000000001,1633.5109,-1.8770312e-34 -4.826311949209909,0.07732794288788428,4.826311949209909,1.9,0.5639916666666667,-4.927738899381744e-35,0.08113181113238135,1.9,1.9,0.0,-0.0,11.674999999999999,1629.3129,-9.855478e-35 -4.5238165953756235,0.0737627508542218,4.5238165953756235,-2.093464177290187e-35,0.56,-2.093464177290187e-35,0.07757528659431845,0.0,0.0,0.0,-0.0,11.075000000000001,1625.4474,-4.1869284e-35 -4.20773896709884,0.08884389757583512,4.20773896709884,-1.1003802331061508e-35,0.558330324074074,-1.1003802331061508e-35,0.09368523504811599,0.0,0.0,0.0,-0.0,14.155000000000001,1621.1218,-2.2007605e-35 -3.915577977815053,0.11055200240050456,3.915577977815053,-5.426467273747136e-36,0.5560002314814815,-5.426467273747136e-36,0.11688613767794537,0.0,0.0,0.0,-0.0,17.880000000000003,1616.8242,-1.08529345e-35 -3.6705241674218096,0.1259521453543216,3.6705241674218096,-2.183585865247611e-36,0.5520519675925926,-2.183585865247611e-36,0.13348729556183045,0.0,0.0,0.0,-0.0,20.25,1612.9646,-4.3671717e-36 -3.523164672420737,0.11763770930714114,3.523164672420737,1.42,0.5520004629629629,-1.2057070631779443e-36,0.1248648761652028,1.42,1.42,0.0,-0.0,19.115000000000002,1610.5176,-2.4114141e-36 -3.6456101084385515,0.09935427142798231,3.6456101084385515,8.86,0.5479999999999999,-6.073478208653056e-37,0.10532475004647568,8.86,8.86,0.0,-0.0,16.384999999999998,1612.5579,-1.2146956e-36 -4.196426960815443,0.09092771394777537,4.196426960815443,16.7,0.5479921296296296,-3.128929297151809e-37,0.09589211366866357,16.7,16.7,0.0,-0.0,14.84,1620.961,-6.2578586e-37 -4.4339810942413544,0.08245477981318079,4.4339810942413544,2.03,0.5439997685185185,-1.7966809917473072e-37,0.08678052883752295,2.03,2.03,0.0,-0.0,13.334999999999999,1624.2495,-3.593362e-37 -4.188106306370514,0.06456441696815192,4.188106306370514,-1.01923387750727e-37,0.540794212962963,-1.01923387750727e-37,0.0680944334617991,0.0,0.0,0.0,-0.0,9.57,1620.8425,-2.0384678e-37 -4.2147372217939445,0.06646555229703469,4.2147372217939445,8.26,0.54,-5.99991721392414e-38,0.0700831445145011,8.26,8.26,0.0,-0.0,10.045,1621.2211,-1.1999834e-37 -4.508400658216265,0.07282506571625992,4.508400658216265,9.56,0.5359994212962963,-3.5430716236875397e-38,0.07659874255017919,9.56,9.56,0.0,-0.0,11.57,1625.2435,-7.086143e-38 -4.422431472145104,0.06270181159754062,4.422431472145104,-2.031694298627533e-38,0.5359994212962963,-2.031694298627533e-38,0.06599760789416903,0.0,0.0,0.0,-0.0,9.219999999999999,1624.0938,-4.0633886e-38 -4.119335846164676,0.07454340848332014,4.119335846164676,-1.1842925433603973e-38,0.5319998842592593,-1.1842925433603973e-38,0.07866700926501763,0.0,0.0,0.0,-0.0,12.114999999999998,1619.8538,-2.368585e-38 -3.825235398015996,0.09221538801398414,3.825235398015996,-6.832606596484483e-39,0.5298482638888888,-6.832606596484483e-39,0.09758305444354314,0.0,0.0,0.0,-0.0,15.68,1615.4302,-1.3665213e-38 -3.814062848284813,0.09213497080706574,3.814062848284813,5.21,0.5279998842592593,-4.0130742752442514e-39,0.09750850028333227,5.21,5.21,0.0,-0.0,15.725000000000001,1615.2555,-8.026149e-39 -4.8342698355463005,0.07483042076746402,4.8342698355463005,27.25,0.5240002314814816,-2.27140812107649e-39,0.07850669169903711,27.25,27.25,0.0,-0.0,12.325000000000001,1629.4113,-4.542816e-39 -7.151216030244474,0.07569149478937648,7.151216030244474,35.72,0.5240002314814816,-1.3179156005036332e-39,0.07828658435082508,35.72,35.72,0.0,-0.0,12.28,1652.7948,-2.635831e-39 -8.1492278352987,0.06848949993767489,8.1492278352987,5.18,0.520000462962963,-7.65993180852339e-40,0.0705048561835815,5.18,5.18,0.0,-0.0,10.735,1660.5967,-1.531986e-39 -7.623022855023637,0.08464782120341488,7.623022855023637,1.45,0.5183310185185186,-4.547297594641891e-40,0.08734833161910788,1.45,1.45,0.0,-0.0,14.225,1656.6104,-9.0946e-40 -6.914107737321497,0.06798907432758051,6.914107737321497,1.37,0.5159998842592592,-2.6785680015722446e-40,0.07040586425572866,1.37,1.37,0.0,-0.0,10.834999999999999,1650.7811,-5.35714e-40 -6.2688636704111405,0.05500418683450653,6.2688636704111405,-1.532235792831328e-40,0.511999537037037,-1.532235792831328e-40,0.05716200023818087,0.0,0.0,0.0,-0.0,7.699999999999999,1644.9304,-3.06447e-40 -5.676578994972228,0.07519149412321156,5.676578994972228,-7.472283931165655e-41,0.511999537037037,-7.472283931165655e-41,0.07842383149055918,0.0,0.0,0.0,-0.0,12.680000000000001,1639.0034,-1.49446e-40 -5.173531102055686,0.09577269102876558,5.173531102055686,-3.919011415177216e-41,0.5079996527777778,-3.919011415177216e-41,0.10022865696518113,0.0,0.0,0.0,-0.0,16.82,1633.4618,-7.838e-41 -4.753567473882263,0.10040334708239111,4.753567473882263,-1.9727479780764775e-41,0.5067805555555556,-1.9727479780764775e-41,0.10540099942005285,0.0,0.0,0.0,-0.0,17.7,1628.4059,-3.9455e-41 -4.396851271533392,0.07319095492017824,4.396851271533392,-6.704512502562087e-42,0.503999537037037,-6.704512502562087e-42,0.07705452872684587,0.0,0.0,0.0,-0.0,12.649999999999999,1623.7473,-1.3409e-41 -4.0909740306191225,0.05310596502771514,4.0909740306191225,-2.4494697156397802e-42,0.4999997685185186,-2.4494697156397802e-42,0.056057965551885296,0.0,0.0,0.0,-0.0,7.765000000000001,1619.4412,-4.899e-42 -3.824437949659362,0.0514822921182938,3.824437949659362,-3.461207206882298e-43,0.4999997685185186,-3.461207206882298e-43,0.054479389447299784,0.0,0.0,0.0,-0.0,7.325,1615.4177,-6.92e-43 -3.590015920093781,0.053697485212784064,3.590015920093781,2.0662145856469428e-42,0.4959997685185185,2.0662145856469428e-42,0.05695673338198354,0.0,0.0,0.0,-0.0,8.135,1611.6401,4.132e-42 -3.382585334649054,0.060616246303790824,3.382585334649054,4.147142805169296e-42,0.49366840277777774,4.147142805169296e-42,0.0644375498730957,0.0,0.0,0.0,-0.0,10.135,1608.0858,8.294e-42 -3.1978550735110707,0.06242382354958241,3.1978550735110707,5.2576718381467137e-42,0.4919994212962963,5.2576718381467137e-42,0.0664977685876006,0.0,0.0,0.0,-0.0,10.685,1604.7319,1.0515e-41 -3.0322179881147213,0.060114297454383514,3.0322179881147213,4.756006987918429e-42,0.48800034722222224,4.756006987918429e-42,0.06416451844184673,0.0,0.0,0.0,-0.0,10.25,1601.5557,9.512e-42 -2.884631862116664,0.07461852337223575,2.884631862116664,2.212650275168886e-42,0.48800034722222224,2.212650275168886e-42,0.07979443717948355,0.0,0.0,0.0,-0.0,13.735,1598.5758,4.425e-42 -2.7561016289005766,0.06643810022815413,2.7561016289005766,-1.6234042709203006e-42,0.4840002314814815,-1.6234042709203006e-42,0.0711677630582968,0.0,0.0,0.0,-0.0,12.024999999999999,1595.8538,-3.247e-42 -2.6419569126266165,0.07190597324869352,2.6419569126266165,-5.696978906712544e-42,0.48167002314814816,-5.696978906712544e-42,0.07714700088304159,0.0,0.0,0.0,-0.0,13.4,1593.3278,-1.1394e-41 -2.53800156376049,0.07062514682188167,2.53800156376049,0.83,0.4800005787037037,-8.958501082428556e-42,0.07588699899055708,0.83,0.83,0.0,-0.0,13.190000000000001,1590.9304,-1.7917e-41 -2.4406347229145458,0.051140950102180366,2.4406347229145458,-1.0359799546753373e-41,0.4760001157407408,-1.0359799546753373e-41,0.05503196370919977,0.0,0.0,0.0,-0.0,8.24,1588.5942,-2.072e-41 -2.3467585701223532,0.05271977679399667,2.3467585701223532,-8.85200239913987e-42,0.4760001157407408,-8.85200239913987e-42,0.05681468817528,0.0,0.0,0.0,-0.0,8.735,1586.2518,-1.7704e-41 -2.2560827904416287,0.060030739360626785,2.2560827904416287,-3.983891534075455e-42,0.4719996527777777,-3.983891534075455e-42,0.06478963442359391,0.0,0.0,0.0,-0.0,10.93,1583.8986,-7.968e-42 -2.1719007392853764,0.06200824563944642,2.1719007392853764,2.558770995857116e-42,0.4701513888888889,2.558770995857116e-42,0.06701999950998463,0.0,0.0,0.0,-0.0,11.53,1581.6276,5.118e-42 -2.093750891345353,0.05308868482424969,2.093750891345353,8.973214716303966e-42,0.46799976851851854,8.973214716303966e-42,0.05745902947228687,0.0,0.0,0.0,-0.0,9.175,1579.4391,1.7946e-41 -2.0211130737022773,0.04741300170154927,2.0211130737022773,1.3475586682179603e-41,0.463999537037037,1.3475586682179603e-41,0.051384716692671084,0.0,0.0,0.0,-0.0,7.574999999999999,1577.3304,2.6951e-41 -1.953517246101481,0.041982683125412354,1.953517246101481,1.4279932000702048e-41,0.463999537037037,1.4279932000702048e-41,0.045558184431655144,0.0,0.0,0.0,-0.0,5.734999999999999,1575.299,2.856e-41 -1.8904915555587702,0.03009551127712125,1.8904915555587702,9.825155233187755e-42,0.46,9.825155233187755e-42,0.032699282040713755,0.0,0.0,0.0,-0.0,0.935,1573.3405,1.966e-41 -1.8309994248841381,0.043483629592571696,1.8309994248841381,2.8593495164547892e-42,0.45920532407407405,2.8593495164547892e-42,0.04730311029977095,0.0,0.0,0.0,-0.0,6.465,1571.4309,5.719e-42 -1.7747066549571469,0.059253490068922915,1.7747066549571469,-3.857074023054059e-42,0.45599953703703705,-3.857074023054059e-42,0.06453473679450436,0.0,0.0,0.0,-0.0,11.415000000000001,1569.566,-7.714e-42 -1.721548040323392,0.07412746871229574,1.721548040323392,-8.412695330574039e-42,0.45200810185185186,-8.412695330574039e-42,0.08082795584180874,0.0,0.0,0.0,-0.0,15.195,1567.7499,-1.6825e-41 -1.671463831197266,0.06623684603305387,1.671463831197266,-8.903149793087725e-42,0.452,-8.903149793087725e-42,0.0723054074850095,0.0,0.0,0.0,-0.0,13.38,1565.9867,-1.7806e-41 -1.6334496235057312,0.050439718369586106,1.6334496235057312,-4.817664120348721e-42,0.4480001157407407,-4.817664120348721e-42,0.055109310461907354,0.0,0.0,0.0,-0.0,9.205,1564.6128,-9.635e-42 -1.6331424793609866,0.04090112700829591,1.6331424793609866,7.01,0.4480001157407407,2.221058065954835e-43,0.04468797920572538,7.01,7.01,0.0,-0.0,5.9750000000000005,1564.6016,4.44e-43 -1.6740350447587844,0.04112460330437703,1.6740350447587844,10.63,0.4440001157407408,4.660018043112179e-42,0.04488977180946659,10.63,10.63,0.0,-0.0,6.18,1566.0785,9.32e-42 -1.7613100631560499,0.042284055976956975,1.7613100631560499,7.130507235716832e-42,0.44166932870370373,7.130507235716832e-42,0.04606610298046543,0.0,0.0,0.0,-0.0,6.655,1569.1135,1.4261e-41 -1.9043529239447663,0.04678691690504103,1.9043529239447663,7.31,0.4400003472222222,6.267307381692744e-42,0.050820684258370746,7.31,7.31,0.0,-0.0,8.225,1573.7767,1.2535e-41 -2.234932647139186,0.05247404212305785,2.234932647139186,15.14,0.43611064814814815,3.629363022601276e-42,0.05665400517258398,15.14,15.14,0.0,-0.0,10.06,1583.336,7.259e-42 -2.7884179475303768,0.04948458518912687,2.7884179475303768,16.59,0.43600011574074077,1.994748363966377e-42,0.052984230437468124,16.59,16.59,0.0,-0.0,9.015,1596.5499,3.99e-42 -3.213049305092656,0.03952379904292362,3.213049305092656,6.83,0.43200000000000005,1.1883010977474449e-42,0.04209580160430559,6.83,6.83,0.0,-0.0,5.62,1605.015,2.377e-42 -3.230639346580722,0.03393354355529195,3.230639346580722,7.0835637371618085e-43,0.43194837962962956,7.0835637371618085e-43,0.03613442096078013,0.0,0.0,0.0,-0.0,3.33,1605.3411,1.417e-42 -3.0912697456526512,0.029599851763057208,3.0912697456526512,4.000698005659615e-43,0.428,4.000698005659615e-43,0.03157144520887032,0.0,0.0,0.0,-0.0,1.475,1602.7075,8.0e-43 -2.933964698890663,0.02813266885427971,2.933964698890663,2.280662220147115e-43,0.4261517361111111,2.280662220147115e-43,0.030065045244408475,0.0,0.0,0.0,-0.0,0.8250000000000002,1599.5885,4.57e-43 -2.795168779616609,0.03181560279101569,2.795168779616609,1.2751816025252902e-43,0.42400011574074076,1.2751816025252902e-43,0.034062582559380626,0.0,0.0,0.0,-0.0,2.7299999999999995,1596.6943,2.55e-43 -2.6687911943951077,0.03211128250962025,2.6687911943951077,6.796297551971288e-44,0.42121863425925926,6.796297551971288e-44,0.03443874053605362,0.0,0.0,0.0,-0.0,2.99,1593.9313,1.36e-43 -2.5531847352030423,0.03329371473911146,2.5531847352030423,2.662467082217149e-44,0.41999976851851856,2.662467082217149e-44,0.03576622001127781,0.0,0.0,0.0,-0.0,3.5949999999999998,1591.2866,5.3e-44 -2.4469986810426105,0.03310490021474389,2.4469986810426105,-2.872661851865873e-44,0.4164640046296296,-2.872661851865873e-44,0.03562016995682163,0.0,0.0,0.0,-0.0,3.6599999999999997,1588.7498,-5.7e-44 -2.3492350606275028,0.03385720294046014,2.3492350606275028,-8.337725862732662e-44,0.4159996527777778,-8.337725862732662e-44,0.03648554990357379,0.0,0.0,0.0,-0.0,4.035,1586.3148,-1.67e-43 -2.259013009849448,0.0341349572016783,2.259013009849448,-1.226136156284215e-43,0.4121109953703704,-1.226136156284215e-43,0.03683917928731541,0.0,0.0,0.0,-0.0,4.32,1583.9761,-2.45e-43 -2.175548590284881,0.028790482271407295,2.175548590284881,-1.3172204612461281e-43,0.41200046296296294,-1.3172204612461281e-43,0.031115472313669977,0.0,0.0,0.0,-0.0,1.8200000000000003,1581.7278,-2.63e-43 -2.0987684362486307,0.025476401774842353,2.0987684362486307,-1.0547203272082364e-14,0.4080084490740741,-1.0547203272082364e-14,0.027571164254195684,0.0,0.0,0.0,-0.0,0.20000000000000018,1579.582,-3.7644634e-14 -2.048040635746569,0.02612531804425915,2.048040635746569,1.0899999999967096,0.40794895833333333,-6.058359731222267e-13,0.028299615148099463,1.09,1.0899999999973153,2.684823474652376e-12,-0.0,0.5800000000000001,1578.1208,-1.2329388e-12 -2.0227207639862144,0.03614623625442831,2.0227207639862144,6.589999999998354,0.40399999999999997,-1.6454820361909283e-12,0.03917297215396336,6.59,6.59,0.0,-0.0,5.545,1577.3779,-3.290964e-12 -2.010466099558802,0.03742009346633596,2.010466099558802,1.0999999999974512,0.4037145833333334,-2.5488777754450824e-12,0.04056282937332585,1.1,1.1,0.0,-0.0,6.085000000000001,1577.015,-5.0977556e-12 -1.9996953561054036,0.02583212918676661,1.9996953561054036,-2.7571290586239e-12,0.40000023148148145,-2.7571290586239e-12,0.028007344347964296,0.0,0.0,0.0,-0.0,0.7150000000000001,1576.6942,-5.5393485e-12 -1.9791355888710889,0.026080079725384654,1.9791355888710889,3.6999999999977495,0.39971435185185183,-1.7491992117138115e-12,0.028287246633750658,3.7,3.699999999999499,5.013600645753514e-13,-0.0,0.8700000000000001,1576.077,-3.501777e-12 -1.9395120893849491,0.02484139927370494,1.9395120893849491,1.0704923157243863e-12,0.3960082175925926,1.0704923157243863e-12,0.02696439928211592,0.0,0.0,0.0,-0.0,0.31000000000000005,1574.8693,2.700132e-12 -2.1059707520285484,0.02571138968256678,2.1059707520285484,13.319999999998165,0.39571446759259266,2.832119565122878e-12,0.027821870192438373,13.32,13.319999999995334,4.667886077669437e-12,-0.0,0.7750000000000001,1579.7866,5.6783835e-12 -2.3818629998677405,0.023127535647701015,2.3818629998677405,5.999784315553069,0.3921108796296296,-0.000210840749409671,0.02490999955084759,6.0,5.999995156302479,4.8436975220722545e-6,-0.0,-0.6900000000000001,1587.1385,0.009568057 -2.477877715894813,0.021077469146375916,2.477877715894813,2.54434705316374,0.3919487268518519,-1.2441110765866376e-9,0.02266822412009071,3.9,2.5443470544078512,1.3556529455921487,-0.0,-2.0300000000000002,1589.4987,0.13905391 -2.415309410064914,0.02036793504382093,2.415309410064914,0.11021318292893814,0.3884644675925926,-5.704226569086792e-11,0.02192620900514655,1.96,0.1102131829859804,1.8497868170140195,-0.0,-2.375,1587.9713,2.1211796 -2.320917256224537,0.015828474477153465,2.320917256224537,0.0,0.38799999999999996,-0.0,0.017065035862500803,0.0,0.0,0.0,-0.0,-5.85,1585.5906,3.0962582 -2.2335488829459265,0.013760278843660744,2.2335488829459265,0.0,0.3848466435185185,-0.0,0.01485673847146738,0.0,0.0,0.0,-0.0,-7.625,1583.2991,3.100861 -2.15247232205135,0.017824414767043818,2.15247232205135,0.0,0.3840003472222222,-0.0,0.019271593646302928,0.0,0.0,0.0,-0.0,-4.025,1581.091,3.1006157 -2.077028717684476,0.015152646855931595,2.077028717684476,0.0,0.38166932870370374,-0.0,0.01640501070956107,0.0,0.0,0.0,-0.0,-6.165,1578.9602,3.1006103 -2.006697139455009,0.012774719140239178,2.006697139455009,0.0,0.3799997685185186,-0.0,0.01384859118375822,0.0,0.0,0.0,-0.0,-8.4,1576.903,3.1006103 -1.9409596503917932,0.013087556879234437,1.9409596503917932,0.0,0.37920590277777777,-0.0,0.014205646052399535,0.0,0.0,0.0,-0.0,-8.03,1574.9138,3.1006103 -1.8793760259138725,0.01733139681669227,1.8793760259138725,0.0,0.37611087962962964,-0.0,0.01883507178456962,0.0,0.0,0.0,-0.0,-4.055,1572.9883,3.1006103 -1.8215475481663894,0.017013775431509046,1.8215475481663894,0.0,0.3759486111111111,-0.0,0.018511859063784525,0.0,0.0,0.0,-0.0,-4.29,1571.1218,3.1006103 -1.767173709553381,0.014678246886077558,1.767173709553381,0.0,0.37321898148148147,-0.0,0.015989102634098532,0.0,0.0,0.0,-0.0,-6.21,1569.312,3.1006103 -1.715912945099831,0.01876931473964099,1.715912945099831,-1.7787275373118282e-12,0.3719998842592593,-1.7787275373118282e-12,0.02046845610841588,0.0,0.0,0.0,-0.0,-2.7350000000000003,1567.5541,3.1006103 -1.6824188366479063,0.02521903990687627,1.6824188366479063,2.5629149525944808,0.37120578703703705,2.5629149525944808,0.027522729334234556,0.0,0.0,0.0,-0.0,1.5499999999999998,1566.3768,2.5629177 -1.6799205895550626,0.023532969727713918,1.6799205895550626,0.9342582865864403,0.3684645833333333,0.9342582865864403,0.02568409648128254,0.0,0.0,0.0,-0.0,0.6499999999999999,1566.2881,0.9424772 -1.6363937892359597,0.02034172841467582,1.6363937892359597,-5.251072189767085e-7,0.3680003472222222,-5.251072189767085e-7,0.022223390903952884,0.0,0.0,0.0,-0.0,-1.415,1564.7203,0.82906985 -1.5920085125212413,0.022228250625154856,1.5920085125212413,-0.05584433376445711,0.36615196759259255,-0.05584433376445711,0.02430993516421427,0.0,0.0,0.0,-0.0,-0.05499999999999994,1563.0781,0.835755 -1.5503348200599734,0.020041391011187494,1.5503348200599734,-3.443050081405732e-7,0.3644642361111111,-3.443050081405732e-7,0.021940510954827318,0.0,0.0,0.0,-0.0,-1.46,1561.494,0.8415416 -1.5572203428560596,0.023769615198020254,1.5572203428560596,3.9201198447233008,0.36400011574074076,0.6501198447234044,0.026017611671605594,3.27,3.269999999999896,1.040117991735201e-13,-0.0,1.015,1561.7587,0.6512328 -1.8567409034837232,0.03140170431976957,1.8567409034837232,20.58621706280001,0.3621513888888889,0.22621706280001086,0.03414182809016903,20.36,20.36,0.0,-0.0,5.12,1572.2646,0.2456179 -2.3154064800726806,0.02109814879775731,2.3154064800726806,10.029844843080962,0.3604638888888889,-0.00013422033141270132,0.02274842758534335,10.03,10.029979063412375,2.0936587625325353e-5,-0.0,-0.7850000000000001,1585.4486,0.124834865 -2.3076671421796573,0.014422860131201098,2.3076671421796573,0.0,0.3599998842592593,-0.0,0.015552965149468249,0.0,0.0,0.0,-0.0,-6.095000000000001,1585.2487,2.9827292 -2.2212242994626,0.017986429428829085,2.2212242994626,-1.663260315084307e-13,0.35920578703703704,-1.663260315084307e-13,0.019423695053164228,0.0,0.0,0.0,-0.0,-2.98,1582.9686,2.9900718 -2.5803618102216417,0.022666409373485727,2.5803618102216417,24.762083833607182,0.3572189814814815,0.3120838344180158,0.024340022642546144,24.45,24.449999999189167,8.108319599076096e-10,-0.0,0.32000000000000006,1591.919,3.923873 -2.996500351066458,0.018578192659968316,2.996500351066458,-9.619677523320234e-12,0.35611041666666665,-9.619677523320234e-12,0.019838670277115538,0.0,0.0,0.0,-0.0,-2.5599999999999996,1600.848,4.3008213 -2.8529144120118786,0.018094162330538427,2.8529144120118786,0.004247657865663076,0.3559483796296296,-3.607508531619005e-13,0.01935725923794902,13.59,0.004247657866023827,13.585752342133976,-0.0,-2.9,1597.9155,11.085359 -2.7221170423903143,0.015906536180971088,2.7221170423903143,2.195555337536348e-10,0.3546476851851852,-0.0,0.01704682177017044,21.78,2.195555337536348e-10,21.779999999780447,-0.0,-4.625,1595.1128,28.75763 -2.6029446722012395,0.008343239255072183,2.6029446722012395,0.0,0.35321898148148145,-0.0,0.008956348896455218,0.0,0.0,0.0,-0.0,-13.16,1592.4393,39.655796 -2.4939039595330166,0.007564965222393343,2.4939039595330166,0.0,0.35211030092592593,-0.0,0.00813393671247506,0.0,0.0,0.0,-0.0,-14.35,1589.8837,39.798965 -2.393576406395375,0.010675836632399413,2.393576406395375,0.0,0.35199988425925927,-0.0,0.011496512644659933,2.07,0.0,2.07,-0.0,-9.86,1587.4315,40.883133 -2.3009928729056055,0.007906251761741583,2.3009928729056055,0.0,0.35171423611111113,-0.0,0.00852667749645213,0.0,0.0,0.0,-0.0,-13.735,1585.0757,41.857567 -2.215366006396513,0.0062860003247153014,2.215366006396513,0.0,0.3506474537037037,-0.0,0.006788980545015184,0.0,0.0,0.0,-0.0,-16.57,1582.8109,41.85467 -2.135857362655458,0.00923485496925775,2.135857362655458,0.0,0.34966921296296294,-0.0,0.009987563685450137,11.36,0.0,11.36,-0.0,-11.620000000000001,1580.6282,47.54021 -2.0617587589192232,0.011505144089537346,2.0617587589192232,0.0,0.3488465277777778,-0.0,0.012459519761182408,2.97,0.0,2.97,-0.0,-8.67,1578.5195,54.689686 -1.9925795195690048,0.01129996584453453,1.9925795195690048,0.0,0.3481105324074074,-0.0,0.012253142994638429,0.0,0.0,0.0,-0.0,-8.865,1576.4813,56.22595 -1.927836414637519,0.014289019901632161,1.927836414637519,6.271649866107509e-15,0.3480079861111111,-0.0,0.015513742779874147,18.83,6.271649866107509e-15,18.82999999999999,-0.0,-5.665,1574.5087,65.58863 -1.867081294586701,0.015806774994946465,1.867081294586701,4.0763443454050474e-9,0.34794849537037037,-0.0,0.017182455150872078,9.51,4.0763443454050474e-9,9.509999995923655,-0.0,-4.25,1572.5963,79.01411 -1.8100380575048745,0.013742803543486086,1.8100380575048745,0.0,0.34771435185185184,-0.0,0.014956477676395373,2.25,0.0,2.25,-0.0,-6.154999999999999,1570.7433,84.976585 -1.756420605150583,0.011884604096532553,1.756420605150583,0.0,0.3472057870370371,-0.0,0.01294897837899409,1.43,0.0,1.43,-0.0,-8.09,1568.9475,87.02564 -1.7059738237409596,0.006990666064279917,1.7059738237409596,0.0,0.3466476851851852,-0.0,0.007625201990976081,0.0,0.0,0.0,-0.0,-14.969999999999999,1567.2072,87.74354 -1.6584024518311502,0.006886961725291312,1.6584024518311502,0.0,0.3466476851851852,-0.0,0.007520188949474407,0.0,0.0,0.0,-0.0,-15.145,1565.5182,87.77705 -1.6133476636748876,0.011476286197001227,1.6133476636748876,0.0,0.3461518518518519,-0.0,0.0125446632815217,2.3,0.0,2.3,-0.0,-8.475,1563.8733,89.0109 -1.5706658454999667,0.007380020529274303,1.5706658454999667,0.0,0.3461518518518519,-0.0,0.008075326588293305,0.0,0.0,0.0,-0.0,-14.225,1562.2721,90.18957 -1.5302075341705077,0.00897620080494023,1.5302075341705077,0.0,0.3456693287037037,-0.0,0.009831698213091128,0.0,0.0,0.0,-0.0,-11.675,1560.7136,90.20013 -1.4917393686722928,0.010733213747039748,1.4917393686722928,0.0,0.3456693287037037,-0.0,0.011767631787848475,3.17,0.0,3.17,-0.0,-9.31,1559.1931,91.68842 -1.4551927540310203,0.006131589907757551,1.4551927540310203,0.0,0.3461518518518519,-0.0,0.006728917352467182,1.86,0.0,1.86,-0.0,-16.52,1557.7118,94.09439 -1.4204151573951687,0.007787562763624054,1.4204151573951687,0.0,0.3461518518518519,-0.0,0.008554144715230371,0.18,0.0,0.18,-0.0,-13.49,1556.2672,95.09201 -1.3869420677187105,0.017378886467824657,1.3869420677187105,0.026791224329964725,0.3461518518518519,-2.7463992940239126e-12,0.019107092204801675,10.52,0.026791224332711125,10.49320877566729,-0.0,-2.6900000000000004,1554.843,100.512856 -1.4209175320180376,0.01832274261348909,1.4209175320180376,13.186431683470486,0.3466476851851852,-2.62601169568658e-9,0.020126099759461964,17.24,13.186431686096498,4.053568313903502,-0.0,-1.9749999999999996,1556.2883,111.53391 -1.39746549368626,0.006215098531050226,1.39746549368626,0.0,0.3472057870370371,-0.0,0.006831162263382272,0.0,0.0,0.0,-0.0,-16.37,1555.2944,119.67626 -1.3653841884997249,0.005068359653240233,1.3653841884997249,0.0,0.34771435185185184,-0.0,0.005575726612146775,0.0,0.0,0.0,-0.0,-18.89,1553.9075,119.74184 -1.3347458028031292,0.00560045185046066,1.3347458028031292,0.0,0.34794849537037037,-0.0,0.006166462276278836,1.04,0.0,1.04,-0.0,-17.665,1552.5521,120.24225 -1.3054431787650824,0.00572037513988188,1.3054431787650824,0.0,0.34800000000000003,-0.0,0.006303888354362078,0.0,0.0,0.0,-0.0,-17.395,1551.2264,120.89828 -1.277363362693596,0.008060088757468708,1.277363362693596,0.0,0.3480079861111111,-0.0,0.008889708931312896,1.24,0.0,1.24,-0.0,-13.065,1549.9279,121.86438 -1.2504573926294507,0.0072295811377343444,1.2504573926294507,0.0,0.3484641203703704,-0.0,0.007980263639157919,0.0,0.0,0.0,-0.0,-14.459999999999999,1548.6565,122.43375 -1.2246612476080831,0.007624129732268386,1.2246612476080831,0.0,0.3482361111111111,-0.0,0.00842255051787903,0.62,0.0,0.62,-0.0,-13.765,1547.4116,122.66838 -1.1998459905009844,0.015914754994960242,1.1998459905009844,4.3138625012151266e-8,0.34921886574074074,-0.0,0.01759529507575237,6.12,4.3138625012151266e-8,6.119999956861375,-0.0,-3.97,1546.1891,125.47239 -1.1759974031271234,0.00899407899387342,1.1759974031271234,0.0,0.35015162037037034,-0.0,0.009951537736977392,2.59,0.0,2.59,-0.0,-11.685,1544.9901,129.22368 -1.1531012080127643,0.009955236834756237,1.1531012080127643,0.0,0.35120578703703703,-0.0,0.011023392793163483,5.56,0.0,5.56,-0.0,-10.385000000000002,1543.8159,133.4142 -1.1310691783566322,0.009972623033608017,1.1310691783566322,0.0,0.3519482638888889,-0.0,0.011050891380452748,0.0,0.0,0.0,-0.0,-10.379999999999999,1542.6638,135.8305 -1.1098958768047236,0.0065393080104252654,1.1098958768047236,0.0,0.35200787037037035,-0.0,0.007251661552033847,0.0,0.0,0.0,-0.0,-15.795,1541.5353,135.87344 -1.0895397672858633,0.005212730405577976,1.0895397672858633,0.0,0.35284641203703704,-0.0,0.005784722779758666,0.31,0.0,0.31,-0.0,-18.62,1540.4298,136.02747 -1.0699002914547067,0.007862452216984814,1.0699002914547067,0.0,0.3541518518518519,-0.0,0.008731355604564917,3.68,0.0,3.68,-0.0,-13.52,1539.3435,137.6475 -1.0508897424470698,0.011748258649140253,1.0508897424470698,0.0,0.35571446759259256,-0.0,0.013055675040474387,0.0,0.0,0.0,-0.0,-8.305,1538.2728,138.73549 -1.0325398470010263,0.009306592550724697,1.0325398470010263,0.0,0.35600000000000004,-0.0,0.010349363531379378,0.0,0.0,0.0,-0.0,-11.389999999999999,1537.2208,138.8494 -1.0148297646006808,0.00981642353447881,1.0148297646006808,0.0,0.3564643518518519,-0.0,0.010923661340471317,1.46,0.0,1.46,-0.0,-10.7,1536.1876,139.57503 -0.997710953385,0.009578455395944869,0.997710953385,0.0,0.35815185185185183,-0.0,0.010665905853222503,4.1,0.0,4.1,-0.0,-11.075,1535.1716,142.41913 -0.9811957427437802,0.005523705375121926,0.9811957427437802,0.0,0.3599482638888889,-0.0,0.006154812977156318,0.45,0.0,0.45,-0.0,-18.105,1534.1748,144.70555 -0.9652123296986453,0.010872768123092512,0.9652123296986453,0.0,0.36000787037037035,-0.0,0.012122780025593366,2.37,0.0,2.37,-0.0,-9.455,1533.194,145.86856 -0.9497066760008815,0.0224135657306073,0.9497066760008815,7.737812247358067,0.36121863425925926,0.9778122473805438,0.025006165312835286,6.76,6.7599999999775235,2.247629637963655e-11,-0.0,0.5499999999999998,1532.2268,147.37227 -0.9346774369410019,0.010950318786909748,0.9346774369410019,0.0,0.3637142361111111,-0.0,0.012224553535699848,2.99,0.0,2.99,-0.0,-9.48,1531.2742,149.16753 -0.9201173417106192,0.008112604577936583,0.9201173417106192,0.0,0.36400011574074076,-0.0,0.00906217738546638,0.0,0.0,0.0,-0.0,-13.395,1530.3365,151.20523 -0.9060229285607984,0.007580912141855725,0.9060229285607984,0.0,0.36521898148148146,-0.0,0.008473355195736556,2.89,0.0,2.89,-0.0,-14.295000000000002,1529.4147,153.43625 -0.8923851594344152,0.005184171136480167,0.8923851594344152,0.0,0.36771435185185186,-0.0,0.005797897799845445,2.27,0.0,2.27,-0.0,-19.095,1528.5089,155.77675 -0.8791808704134267,0.0038427739233896593,0.8791808704134267,0.0,0.3680083333333333,-0.0,0.004300204243653752,0.41,0.0,0.41,-0.0,-22.674999999999997,1527.6187,157.09459 -0.8663561109064063,0.005731115123596193,0.8663561109064063,0.0,0.3696696759259259,-0.0,0.006417013302192497,5.72,0.0,5.72,-0.0,-17.919999999999998,1526.7411,160.36478 -0.8538964404606051,0.004281610742392304,0.8538964404606051,0.0,0.3719483796296296,-0.0,0.004796750691372495,2.46,0.0,2.46,-0.0,-21.509999999999998,1525.876,164.40091 -0.8418086565459281,0.003235308143662942,0.8418086565459281,0.0,0.37211041666666667,-0.0,0.0036265863348851476,0.0,0.0,0.0,-0.0,-24.785,1525.0245,165.52374 -0.8300582449383742,0.003786919201634881,0.8300582449383742,0.0,0.3746479166666667,-0.0,0.004247247212961426,0.0,0.0,0.0,-0.0,-23.03,1524.185,165.53848 -0.8186207614287864,0.004588266330046189,0.8186207614287864,0.0,0.3760002314814815,-0.0,0.00514880311944463,0.0,0.0,0.0,-0.0,-20.795,1523.3564,165.53848 -0.8074861104923856,0.005723790165735251,0.8074861104923856,0.0,0.3772188657407407,-0.0,0.00642650131303603,0.0,0.0,0.0,-0.0,-18.15,1522.5386,165.53848 -0.7966461942662054,0.00483947674318362,0.7966461942662054,0.0,0.3799997685185186,-0.0,0.00543650251228965,0.0,0.0,0.0,-0.0,-20.27,1521.7314,165.53848 -0.7860996095563845,0.003500665602398796,0.7860996095563845,0.0,0.3804640046296296,-0.0,0.003934585779225039,0.0,0.0,0.0,-0.0,-24.1,1520.9355,165.53848 -0.7758353606204802,0.004040114070738095,0.7758353606204802,0.0,0.383714699074074,-0.0,0.004543245479843219,0.0,0.0,0.0,-0.0,-22.52,1520.1506,165.53848 -0.7658256585672263,0.005297981730887486,0.7658256585672263,0.0,0.38400833333333334,-0.0,0.005960801316,0.0,0.0,0.0,-0.0,-19.285,1519.3751,165.53848 -0.7560563613885314,0.0091886169485609,0.7560563613885314,0.0,0.3866476851851852,-0.0,0.010343405496436534,0.0,0.0,0.0,-0.0,-12.47,1518.6084,165.53848 -0.7465200190453394,0.00783700902735131,0.7465200190453394,0.0,0.38799999999999996,-0.0,0.00882633882771361,0.0,0.0,0.0,-0.0,-14.545,1517.8503,165.53848 -0.7372019012345395,0.008637083152040467,0.7372019012345395,0.0,0.3901519675925926,-0.0,0.009732222525409463,0.0,0.0,0.0,-0.0,-13.370000000000001,1517.1002,165.53848 -0.7280968232918116,0.010375020757896055,0.7280968232918116,0.0,0.39200034722222227,-0.0,0.011696243986254778,0.0,0.0,0.0,-0.0,-11.05,1516.358,165.53848 -0.7191923989939393,0.011980706518732053,0.7191923989939393,0.0,0.3936696759259259,-0.0,0.013512957010403028,0.0,0.0,0.0,-0.0,-9.2,1515.6232,165.53848 -0.7104796467429696,0.014119557442036638,0.7104796467429696,0.0,0.39600023148148145,-0.0,0.015933004462441024,0.0,0.0,0.0,-0.0,-7.0649999999999995,1514.8953,165.53848 -0.7019527916102823,0.01587395086060131,0.7019527916102823,0.0,0.3972188657407407,-0.0,0.017921253876687863,0.0,0.0,0.0,-0.0,-5.5,1514.1742,165.53848 -0.6936119153706669,0.016772307410968888,0.6936119153706669,0.0,0.40000023148148145,-0.0,0.01894440517292452,0.0,0.0,0.0,-0.0,-4.83,1513.4603,165.53848 -0.6854752260495827,0.018633411395752593,0.6854752260495827,-2.6544014618019157e-15,0.4012189814814815,-2.6544014618019157e-15,0.02105633589240435,0.0,0.0,0.0,-0.0,-3.4,1512.7556,165.53804 -0.6868707781664857,0.024725996058657686,0.6868707781664857,2.6551200376336093,0.40399999999999997,0.9351200376402534,0.027938903307039766,1.72,1.7199999999933557,6.644300665215042e-12,-0.0,0.5350000000000001,1512.8771,165.50581 -0.7255949029183226,0.023329424502787976,0.7255949029183226,6.444286238766273,0.40521898148148144,-0.005713526663482862,0.02630391242896827,6.45,6.449999765429756,2.3457024402873117e-7,-0.0,-0.3800000000000001,1516.1525,165.54648 -0.7390048125821195,0.016385437594252338,0.7390048125821195,1.5658585539313207e-14,0.4080003472222223,-0.0,0.018461254832998156,6.56,1.5658585539313207e-14,6.559999999999984,-0.0,-5.460000000000001,1517.2461,170.07336 -0.7297909421125354,0.013413446308163591,0.7297909421125354,0.0,0.40966990740740744,-0.0,0.015120218614953137,16.15,0.0,16.15,-0.0,-8.23,1516.4968,180.9147 -0.7208186494234607,0.013378125064278072,0.7208186494234607,0.0,0.41200046296296294,-0.0,0.015087753055961422,0.96,0.0,0.96,-0.0,-8.335,1515.758,188.2152 -0.7120730960678426,0.011880414422420452,0.7120730960678426,0.0,0.41464768518518513,-0.0,0.013405092965390303,0.0,0.0,0.0,-0.0,-9.995000000000001,1515.029,188.8987 -0.7035716976661445,0.007902999697777559,0.7035716976661445,0.0,0.4159996527777778,-0.0,0.008921458694410186,0.0,0.0,0.0,-0.0,-15.290000000000001,1514.3118,188.79874 -0.6952485329935819,0.014639629704637678,0.6952485329935819,0.0,0.419205324074074,-0.0,0.01653399741872624,4.07,0.0,4.07,-0.0,-7.335000000000001,1513.6011,190.82065 -0.6994677880152004,0.024491485744766294,0.6994677880152004,3.462699698485127,0.41999976851851856,-0.027300285175516737,0.02765408177593576,3.49,3.4899999836606437,1.6339356859185196e-8,-0.0,-0.17500000000000004,1513.9624,193.5234 -0.7112555712019689,0.017088992300646,0.7112555712019689,2.434719093002968e-14,0.42400011574074076,-0.0,0.01928298929431084,5.1,2.434719093002968e-14,5.099999999999976,-0.0,-5.390000000000001,1514.9604,196.09686 -0.7027179673896624,0.01002012253297661,0.7027179673896624,0.0,0.42400011574074076,-0.0,0.011311956645736074,0.0,0.0,0.0,-0.0,-12.504999999999999,1514.2393,198.63753 -0.6944460658200022,0.007615600215442912,0.6944460658200022,0.0,0.428,-0.0,0.00860145063027466,0.0,0.0,0.0,-0.0,-16.105,1513.5321,198.59657 -0.6863865717771388,0.005864070966384319,0.6863865717771388,0.0,0.42846388888888887,-0.0,0.006626235488380883,0.0,0.0,0.0,-0.0,-19.33,1512.835,198.59657 -0.6785260122034162,0.004976058481215793,0.6785260122034162,0.0,0.43200000000000005,-0.0,0.005625364100928749,0.0,0.0,0.0,-0.0,-21.395,1512.1471,198.61226 -0.6708295133115314,0.00829860498034274,0.6708295133115314,0.0,0.4336695601851852,-0.0,0.009385684745320757,3.54,0.0,3.54,-0.0,-15.174999999999999,1511.4658,200.71242 -0.6632731879871788,0.011335719174047406,0.6632731879871788,0.0,0.43600011574074077,-0.0,0.012826388113714341,2.12,0.0,2.12,-0.0,-11.235000000000001,1510.7893,203.42723 -0.6558891156236085,0.00809309670847388,0.6558891156236085,0.0,0.4399488425925926,-0.0,0.009161408794319757,0.0,0.0,0.0,-0.0,-15.66,1510.1207,204.29364 -0.6486734272248178,0.008505790972804022,0.6486734272248178,0.0,0.4400003472222222,-0.0,0.00963279402577759,0.0,0.0,0.0,-0.0,-15.03,1509.4601,204.32974 -0.6416131829144934,0.008157263207139184,0.6416131829144934,0.0,0.4440001157407408,-0.0,0.009242088544962022,0.0,0.0,0.0,-0.0,-15.665,1508.8065,204.32974 -0.6346972416565189,0.01000638577091673,0.6346972416565189,0.0,0.4440081018518519,-0.0,0.011341989109834603,0.0,0.0,0.0,-0.0,-13.065,1508.1593,204.32974 -0.6279110342768542,0.011573666403267402,0.6279110342768542,0.0,0.4480001157407407,-0.0,0.013124049104437003,0.0,0.0,0.0,-0.0,-11.29,1507.5173,204.22647 -0.6212443679121085,0.01411956937480499,0.6212443679121085,0.0,0.4501516203703704,-0.0,0.016017768682243656,6.04,0.0,6.04,-0.0,-8.719999999999999,1506.8799,207.23436 -0.6146912009188568,0.016894508682088978,0.6146912009188568,0.0,0.452,-0.0,0.019173822071458787,10.76,0.0,10.76,-0.0,-6.345000000000001,1506.2466,215.57614 -0.6082805129273651,0.01268749842014693,0.6082805129273651,0.0,0.45599953703703705,-0.0,0.0144052131106506,2.69,0.0,2.69,-0.0,-10.3,1505.6205,222.24887 -0.6020326602899311,0.010279090558434982,0.6020326602899311,0.0,0.45599953703703705,-0.0,0.011675520911492107,0.0,0.0,0.0,-0.0,-13.035,1505.0039,223.53429 -0.5959171899508627,0.011412722968706554,0.5959171899508627,0.0,0.46,-0.0,0.012968413095043043,0.0,0.0,0.0,-0.0,-11.79,1504.3942,223.5283 -0.5899024246297603,0.014668689756586936,0.5899024246297603,0.0,0.4604638888888889,-0.0,0.016674922114013533,1.92,0.0,1.92,-0.0,-8.485,1503.7883,224.48767 -0.5840080518387841,0.01111069154679138,0.5840080518387841,0.0,0.463999537037037,-0.0,0.012635336687761461,5.95,0.0,5.95,-0.0,-12.24,1503.1886,228.40297 -0.5782316697264118,0.013899195821042933,0.5782316697264118,0.0,0.46799976851851854,-0.0,0.015812733211003283,21.65,0.0,21.65,-0.0,-9.41,1502.595,242.17609 -0.5725568921923251,0.013465736660471045,0.5725568921923251,0.0,0.46799976851851854,-0.0,0.01532560598539112,32.59,0.0,32.59,-0.0,-9.825,1502.006,269.2038 -0.5670270450412275,0.006888886474701595,0.5670270450412275,0.0,0.4719996527777777,-0.0,0.007843396740016986,4.08,0.0,4.08,-0.0,-18.455,1501.4264,287.35324 -0.5616206281784222,0.00787306934921563,0.5616206281784222,0.0,0.4719996527777777,-0.0,0.008967363178929547,0.0,0.0,0.0,-0.0,-16.805,1500.8542,289.75516 -0.5562919120259945,0.01276294119560176,0.5562919120259945,0.0,0.4760001157407408,-0.0,0.01454240473560673,1.18,0.0,1.18,-0.0,-10.74,1500.2849,290.62863 -0.5510396606794373,0.013222414218132332,0.5510396606794373,0.0,0.4800005787037037,-0.0,0.015071630697072326,0.0,0.0,0.0,-0.0,-10.38,1499.7184,291.14087 -0.5458593133797385,0.018086703275572623,0.5458593133797385,0.0,0.4800005787037037,-0.0,0.020623970597232127,1.21,0.0,1.21,-0.0,-6.17,1499.1543,291.7669 -0.5444752987908346,0.02468453002809383,0.5444752987908346,2.864273320091696,0.4840002314814815,-3.3326713921674254e-9,0.02815021091254991,3.55,2.8642733234243676,0.685726676575632,-0.0,-1.9499999999999997,1499.0027,293.73065 -0.5542919750520731,0.025379920115812356,0.5542919750520731,-1.2824781025304622e-7,0.4840002314814815,-1.2824781025304622e-7,0.02892264300056254,0.0,0.0,0.0,-0.0,-1.565,1500.0698,293.87143 -0.5489766845418697,0.023889241039784525,0.5489766845418697,-1.2239092163224068e-11,0.48800034722222224,-1.2239092163224068e-11,0.02723433088536224,0.0,0.0,0.0,-0.0,-2.535,1499.4944,293.595 -0.5437701584411249,0.022200213082029945,0.5437701584411249,6.491283546783411e-7,0.4919994212962963,-0.0,0.025318405771417182,4.82,6.491283546783411e-7,4.819999350871646,-0.0,-3.6750000000000003,1498.9253,296.0803 -0.5386603541240116,0.02297327471953615,0.5386603541240116,0.0001068306735221431,0.4919994212962963,-2.1487192982738744e-14,0.026209909174327053,6.21,0.0001068306735436303,6.209893169326457,-0.0,-3.19,1498.3615,301.8477 -0.5336487410269788,0.02115433342560242,0.5336487410269788,0.0,0.4959997685185185,-0.0,0.024143697745052945,0.0,0.0,0.0,-0.0,-4.449999999999999,1497.8032,304.87714 -0.5287345482453176,0.021584356149017502,0.5287345482453176,0.0,0.4959997685185185,-0.0,0.02464357810728019,0.0,0.0,0.0,-0.0,-4.165,1497.2507,304.8874 -0.5238977336824819,0.026427481895695812,0.5238977336824819,-5.011931448305659e-7,0.4999997685185186,-5.011931448305659e-7,0.030184200271017595,0.0,0.0,0.0,-0.0,-1.42,1496.7019,304.8874 -0.5191444269987655,0.027175423288869384,0.5191444269987655,0.039989916643439344,0.503999537037037,-7.453371564450801e-6,0.031049754987595084,0.04,0.039997370015003794,2.6299849962074795e-6,-0.0,-1.13,1496.1576,304.8874 -0.5144773612172403,0.023717264838266038,0.5144773612172403,-8.058272524451799e-14,0.503999537037037,-8.058272524451799e-14,0.02710834709588844,0.0,0.0,0.0,-0.0,-3.0549999999999997,1495.6183,304.8874 -0.5098928977820106,0.02575900688591503,0.5098928977820106,-2.1699893845262984e-9,0.5079996527777778,-2.1699893845262984e-9,0.029452542938956286,0.0,0.0,0.0,-0.0,-1.9949999999999997,1495.0837,304.8874 -0.5053895729336185,0.017582091348348993,0.5053895729336185,0.0,0.5079996527777778,-0.0,0.020110280809902428,0.0,0.0,0.0,-0.0,-7.284999999999999,1494.554,304.8874 -0.5009444517901827,0.021687745237206298,0.5009444517901827,0.0,0.511999537037037,-0.0,0.02481506069805746,0.0,0.0,0.0,-0.0,-4.51,1494.0264,304.8874 -0.49301089034547557,0.027950098854378443,0.49301089034547557,0.009981875681449552,0.5159998842592592,-1.7870027524764664e-5,0.032000849536129694,0.01,0.009999745708974318,2.542910256836395e-7,-0.0,-1.0349999999999997,1493.073,304.88873 -0.5303776819831065,0.03333043034446512,0.5303776819831065,11.30155545590879,0.5159998842592592,3.4615554559087935,0.03804975301071265,7.84,7.839999999999997,2.611244553918368e-15,-0.0,1.4699999999999998,1497.436,303.99207 -0.604243136902473,0.03555818239145525,0.604243136902473,5.494220860247649,0.520000462962963,5.494220860247649,0.04038294360007158,0.0,0.0,0.0,-0.0,2.23,1505.2228,299.51566 -0.6357398666345634,0.033087109698386574,0.6357398666345634,2.5921753305661595,0.520000462962963,2.5921753305661595,0.03750097759857914,0.0,0.0,0.0,-0.0,1.145,1508.2573,295.68735 -0.6848338046090826,0.0347691476725881,0.6848338046090826,7.606827359681028,0.5240002314814816,4.116827359681028,0.03929167315548338,3.49,3.49,1.9373391779708983e-16,-0.0,1.715,1512.6997,292.29398 -0.8184066078116335,0.03526895576373836,0.8184066078116335,15.463454574742718,0.5279998842592593,4.1034545747427185,0.03957808004219445,11.36,11.36,6.306066779870889e-16,-0.0,1.71,1523.3408,288.31424 -1.1596841322864395,0.040656224975446416,1.1596841322864395,28.125098277069746,0.5279998842592593,9.185098277069745,0.04500855926673331,18.94,18.94,0.0,-0.0,3.6100000000000003,1544.1559,281.6388 -1.6625941950529908,0.0414235507951397,1.6625941950529908,22.328116323149736,0.5319998842592593,9.078116323149738,0.04522791705051661,13.25,13.25,0.0,-0.0,3.57,1565.669,273.13757 -2.085000100115531,0.04005964473886933,2.085000100115531,10.91652329314279,0.5319998842592593,7.40652329314279,0.04336428538976186,3.51,3.51,0.0,-0.0,2.945,1579.189,265.21033 -2.377796305393507,0.04147379352226545,2.377796305393507,8.289124412989466,0.5359994212962963,8.289124412989466,0.04467309555520518,0.0,0.0,0.0,-0.0,3.275,1587.0365,257.26334 -2.6544176204628456,0.04010712902967324,2.6544176204628456,9.617294917391225,0.5395353009259259,6.537294917391225,0.043022839118813716,3.08,3.08,0.0,-0.0,2.62,1593.6088,249.91211 -3.128775664538926,0.0383049270056169,3.128775664538926,14.291146552671368,0.54,4.451146552671368,0.04083799849205336,9.84,9.84,0.0,-0.0,1.8399999999999999,1603.4277,244.61734 -3.489986181553852,0.04044073547286279,3.489986181553852,6.136112589682877,0.5439997685185185,6.136112589682877,0.04294031040032428,0.0,0.0,0.0,-0.0,2.4699999999999998,1609.9525,239.22575 -3.6123933129678707,0.03967632889041316,3.6123933129678707,5.3337479243066745,0.5439997685185185,5.3337479243066745,0.042074854178749684,0.0,0.0,0.0,-0.0,2.17,1612.0112,233.57922 -3.5040248759930965,0.03240538081425662,3.5040248759930965,-8.796886308612524e-5,0.5479999999999999,-8.796886308612524e-5,0.03440318061935476,0.0,0.0,0.0,-0.0,-0.8599999999999999,1610.1923,231.77583 -3.3185994395836738,0.033065375380003564,3.3185994395836738,0.27903261243877125,0.5498481481481481,-0.0009673044060052205,0.03517479388923318,0.28,0.2799999168447765,8.315522351587391e-8,-0.0,-0.5900000000000001,1606.9453,231.82452 -3.2050337091471035,0.03476573460338471,3.2050337091471035,1.9733937704518492,0.5520004629629629,-0.06660622890628475,0.037031548872203994,2.04,2.039999999358134,6.418663534013546e-10,-0.0,0.09499999999999997,1604.8658,232.09956 -3.1409247639709355,0.03715324546586794,3.1409247639709355,2.3301284533378332,0.5559922453703704,2.1101284533378446,0.03960444058755873,0.22,0.21999999999998848,1.1528555887707626e-14,-0.0,0.9650000000000001,1603.6592,231.1936 -3.0299132172387266,0.03465535839675417,3.0299132172387266,-0.06358296276799127,0.5560002314814815,-0.06358296276799127,0.036991323655659894,0.0,0.0,0.0,-0.0,-0.02499999999999991,1601.5103,230.34465 -3.0324349250505565,0.041595980987469444,3.0324349250505565,6.309958265111752,0.56,6.309958265111752,0.04439840574003996,0.0,0.0,0.0,-0.0,2.535,1601.5599,227.25702 -3.5062029127583445,0.055220824017207605,3.5062029127583445,17.476199705869757,0.5600517361111111,17.476199705869757,0.058623850505671815,0.0,0.0,0.0,-0.0,6.710000000000001,1610.2294,215.32207 -4.472631077691722,0.058332207527231415,4.472631077691722,19.067556270429755,0.5639996527777777,19.067556270429755,0.061372851751608296,0.0,0.0,0.0,-0.0,7.305,1624.7678,196.76971 -5.452905667575174,0.05356997824221446,5.452905667575174,15.122596719629755,0.5663305555555556,15.122596719629755,0.05595480904086857,0.0,0.0,0.0,-0.0,5.83,1636.6027,179.90036 -6.600286801639181,0.06048348537960247,6.600286801639181,19.682702505469752,0.5679997685185185,19.682702505469752,0.06273890540740361,0.0,0.0,0.0,-0.0,7.534999999999999,1648.0071,162.4548 -7.265150276486108,0.04351031354414721,7.265150276486108,6.015757891164399,0.5715351851851852,6.015757891164399,0.044976380867716374,0.0,0.0,0.0,-0.0,2.4250000000000003,1653.7388,149.60986 -7.047303364684937,0.04236067515680232,7.047303364684937,4.972683799597749,0.5719994212962963,4.972683799597749,0.04383619913055383,0.0,0.0,0.0,-0.0,2.035,1651.9207,144.12462 -7.291095349830546,0.04621414881506526,7.291095349830546,13.26853324938916,0.5760005787037037,8.08853324938916,0.04776517212921399,5.18,5.18,0.0,-0.0,3.2,1653.9517,137.58719 -8.52998023180254,0.048517665932890926,8.52998023180254,21.250244512109752,0.5760005787037037,9.800244512109753,0.04986344926834968,11.45,11.45,0.0,-0.0,3.84,1663.3237,128.67181 -11.25598490010981,0.061961547993695965,11.25598490010981,31.117438037709757,0.5800003472222222,19.027438037709757,0.06305244573608308,12.09,12.09,0.0,-0.0,7.290000000000001,1679.8849,114.138054 -14.56127021635894,0.06090376005735737,14.56127021635894,26.480754777309755,0.5807946759259259,17.890754777309755,0.061413917572717254,8.59,8.59,0.0,-0.0,6.865,1695.2607,95.71733 -15.92552026717561,0.0603584435440926,15.92552026717561,17.168626588349753,0.5840005787037037,17.168626588349753,0.060672616824398805,0.0,0.0,0.0,-0.0,6.595,1700.6091,78.17965 -18.47527769248962,0.06008136588968094,18.726605111533605,34.653835051469756,0.5853530092592593,16.673835051469755,0.06008076314345419,17.98,17.98,0.0,0.25132741904398537,6.41,1709.7295,61.29991 -18.46996175,0.04669735540713299,31.03873190624991,40.79682198638799,0.5880002314814815,6.376821986387987,0.04669735540713299,34.42,34.42,0.0,12.568770156249911,2.56,1722.0298,49.913006 -18.46996175,0.05532243709334922,30.06802878124991,19.962957641229753,0.5903311342592593,12.982957641229753,0.05532243709334922,6.98,6.98,0.0,11.598067031249911,5.029999999999999,1721.0591,40.229073 -18.46996175,0.06684730961956432,26.23807272656241,26.582049113789758,0.5920008101851852,20.592049113789756,0.06684730961956432,5.99,5.99,0.0,7.7681109765624115,7.875,1717.2291,23.443367 -18.469961750762906,0.06241571107641656,20.525792451463285,10.611580047607422,0.5943310185185184,8.701580047607422,0.06241571107632803,1.91,1.91,0.0,2.055830700700379,6.76,1711.5168,8.70158 -15.892481338381325,0.05773354013661809,15.892481338381325,3.657736024856526,0.5959997685185184,3.197736024856526,0.05803828312916916,0.46,0.46,0.0,-0.0,5.61,1700.4851,3.197736 -12.962192987997401,0.05472566694997437,12.962192987997401,1.1742701201776988,0.5987809027777777,1.1742701201776988,0.055411147695909435,0.0,0.0,0.0,-0.0,4.84,1688.3136,1.1742795 -10.760808015670404,0.05489354323714507,10.760808015670404,0.4262302652726542,0.5999998842592592,0.4262302652726542,0.055949485641302664,0.0,0.0,0.0,-0.0,4.955,1677.1981,0.4319045 -9.14608225479323,0.062458520975659924,9.14608225479323,0.14338213222109533,0.6027810185185185,0.14338213222109533,0.06403066949887312,0.0,0.0,0.0,-0.0,6.9350000000000005,1667.4885,0.16966388 -7.933247257530212,0.06953808237469274,7.933247257530212,0.07423996710128945,0.6039996527777778,0.05423996710128945,0.07165351080780571,0.02,0.02,0.0,-0.0,8.64,1658.9926,0.078884855 -7.250226262733163,0.06193866562170461,7.250226262733163,4.414919858334108,0.6063304398148148,0.024919858334108744,0.06403042564140345,4.39,4.39,0.0,-0.0,6.845,1653.616,0.041393053 -6.815980635302705,0.06885846344180689,6.815980635302705,2.5628698747819696,0.6079995370370371,0.012869874781969588,0.07134304962083551,2.55,2.55,0.0,-0.0,8.469999999999999,1649.9275,0.023086574 -6.236388185966184,0.0973046190556914,6.236388185966184,0.007079937308257396,0.6098476851851852,0.007079937308257396,0.10114094967613686,0.0,0.0,0.0,-0.0,13.965,1644.6202,0.013279449 -5.643548452743238,0.10648081857429234,5.643548452743238,0.0040032891919257125,0.6120002314814815,0.0040032891919257125,0.11108184364828785,0.0,0.0,0.0,-0.0,15.440000000000001,1638.6549,0.0077095404 -5.361207407775653,0.06241953039242487,5.361207407775653,4.352303624900329,0.6133524305555556,0.0023036249003291296,0.06523869916911006,4.35,4.35,0.0,-0.0,6.955,1635.5898,0.0045057577 -5.093585021516526,0.043706284741025545,5.093585021516526,0.0013494978713002735,0.6159914351851852,0.0013494978713002735,0.045765842172191144,0.0,0.0,0.0,-0.0,1.5799999999999998,1632.5317,0.002663528 -4.693503916114319,0.051931322247201823,4.693503916114319,0.0008022121476561996,0.6162851851851852,0.0008022121476561996,0.0545416782398435,0.0,0.0,0.0,-0.0,4.17,1627.6465,0.0015917561 -4.453264155650485,0.06358815470574931,4.453264155650485,3.370465103025996,0.6195356481481481,0.0004651030259957664,0.0669134450889267,3.37,3.37,0.0,-0.0,7.19,1624.5087,0.00092591945 -4.71099699064314,0.05945719732764413,4.71099699064314,13.420273629859237,0.6199998842592592,0.00027362985923680904,0.06243732302752581,13.42,13.42,0.0,-0.0,6.12,1627.8687,0.0005457704 -5.055982836488671,0.061854092248867384,5.055982836488671,6.0501623765282035,0.6227818287037037,0.00016237652820405823,0.06478638370616538,6.05,6.05,0.0,-0.0,6.615,1632.0892,0.00032422744 -4.877724940764897,0.06529305927378837,4.877724940764897,9.669318504037895e-5,0.6240006944444445,9.669318504037895e-5,0.0684783185332276,0.0,0.0,0.0,-0.0,7.435,1629.9457,0.00019319974 -4.50195452341106,0.06656808612314476,4.50195452341106,0.010057517260433219,0.6253526620370371,5.751726043321826e-5,0.07002121787243488,0.01,0.01,0.0,-0.0,7.745,1625.1581,0.00011496843 -4.210328601143496,0.06877602355494955,4.210328601143496,0.9500338191412016,0.6278895833333333,3.3819141201644665e-5,0.07252216609635369,0.95,0.95,0.0,-0.0,8.225,1621.1586,6.761542e-5 -4.107052445882304,0.06370766597617909,4.107052445882304,3.240019886280321,0.6280518518518519,1.9886280320569887e-5,0.06723925691018379,3.24,3.24,0.0,-0.0,7.055,1619.6754,3.9764655e-5 -4.365704141739068,0.06071610450186032,4.365704141739068,11.080010496574001,0.6303303240740741,1.049657400143707e-5,0.06393787888381339,11.08,11.08,0.0,-0.0,6.2299999999999995,1623.3228,2.0990945e-5 -4.9953032189968445,0.06713897317598708,4.9953032189968445,15.550005722428804,0.6319916666666667,5.722428802055708e-6,0.07035288524061427,15.55,15.55,0.0,-0.0,7.654999999999999,1631.3682,1.1444203e-5 -5.151402979919908,0.07459499144280714,5.151402979919908,2.1000032174826324,0.6322856481481481,3.217482632188123e-6,0.07807786928154423,2.1,2.1,0.0,-0.0,9.265,1633.2058,6.4347582e-6 -4.815570876059297,0.0723941660696416,4.815570876059297,1.7462364455204063e-6,0.6347809027777778,1.7462364455204063e-6,0.075961538365816,0.0,0.0,0.0,-0.0,8.775,1629.1798,3.492412e-6 -4.58828772418933,0.0792029888223135,4.58828772418933,3.9100010395700724,0.6360001157407408,1.0395700721713813e-6,0.08325342660638796,3.91,3.91,0.0,-0.0,10.18,1626.2925,2.0791185e-6 -4.716633599229752,0.07401477449404725,4.716633599229752,10.690000617446463,0.6362856481481481,6.174464640279086e-7,0.07772114856697347,10.69,10.69,0.0,-0.0,9.095,1627.9401,1.2348853e-6 -4.598296260965321,0.08090422289180334,4.598296260965321,0.4400003369019605,0.6387810185185185,3.3690196048111384e-7,0.08503485770013912,0.44,0.44,0.0,-0.0,10.445,1626.4226,6.7380165e-7 -4.448924306485608,0.08754120261839513,4.448924306485608,4.510000178547373,0.6399917824074074,1.78547373265127e-7,0.0921223999500667,4.51,4.51,0.0,-0.0,11.685,1624.4504,3.570941e-7 -4.484660126978446,0.0879878262830354,4.484660126978446,5.150000105903985,0.6400512731481481,1.0590398449463275e-7,0.09256517102002522,5.15,5.15,0.0,-0.0,11.76,1624.9282,2.1180774e-7 -4.351520738945127,0.09384255499449039,4.351520738945127,6.285334961751794e-8,0.6418483796296296,6.285334961751794e-8,0.09883394778574041,0.0,0.0,0.0,-0.0,12.765,1623.1284,1.2570662e-7 -4.074833620839358,0.1042135248506638,4.074833620839358,3.582610692645257e-8,0.6435354166666667,3.582610692645257e-8,0.11002247978016202,0.0,0.0,0.0,-0.0,14.46,1619.2051,7.165219e-8 -3.8023943811484546,0.12481733393316337,3.8023943811484546,2.073678192851125e-8,0.6439998842592592,2.073678192851125e-8,0.1321119423832823,0.0,0.0,0.0,-0.0,17.47,1615.0725,4.1473555e-8 -3.5499257167159186,0.15085332353257985,3.5499257167159186,1.1130187789000572e-8,0.6442856481481481,1.1130187789000572e-8,0.16007620155190203,0.0,0.0,0.0,-0.0,20.715,1610.9695,2.2260373e-8 -3.346610133337178,0.1428172527743615,3.346610133337178,5.3195952697110885e-9,0.6458482638888889,5.3195952697110885e-9,0.15188089283429526,0.0,0.0,0.0,-0.0,19.775000000000002,1607.4473,1.063919e-8 -3.2116769692213807,0.12558041969797518,3.2116769692213807,3.2600000030013763,0.6471538194444444,3.001376348720428e-9,0.13375466410203124,3.26,3.26,0.0,-0.0,17.595,1604.9895,6.0027525e-9 -3.1904707795271556,0.09313640558465373,3.1904707795271556,3.900000001439175,0.6479927083333333,1.4391750221064797e-9,0.09922327212852351,3.9,3.9,0.0,-0.0,12.675,1604.5939,2.87835e-9 -3.4617234900057468,0.09424447627215166,3.4617234900057468,12.530000000648236,0.6480521990740741,6.482365797310331e-10,0.10009976357383583,12.53,12.53,0.0,-0.0,12.815000000000001,1609.4669,1.2964732e-9 -3.616611968912892,0.10405921472024726,3.616611968912892,3.7645223191658724e-10,0.6487947916666666,3.7645223191658724e-10,0.11034506222152453,0.0,0.0,0.0,-0.0,14.375,1612.0809,7.5290446e-10 -3.3913499732813137,0.08844493302514829,3.3913499732813137,2.1032033103821651e-10,0.6498487268518519,2.1032033103821651e-10,0.09401154769860315,0.0,0.0,0.0,-0.0,11.765,1608.2404,4.2064066e-10 -3.202126287523624,0.1290117021975378,3.202126287523624,1.2410665566201856e-10,0.6507814814814814,1.2410665566201856e-10,0.13742452330952198,0.0,0.0,0.0,-0.0,17.955,1604.8116,2.482133e-10 -3.0318833158567253,0.1667614435973448,3.0318833158567253,7.206488883057806e-11,0.6515357638888889,7.206488883057806e-11,0.17799778450216705,0.0,0.0,0.0,-0.0,22.355,1601.5491,1.4412978e-10 -2.9436961733919538,0.16578602704251186,2.9436961733919538,5.140000000024734,0.6519921296296297,2.4733562426504537e-11,0.1771516345986294,5.14,5.14,0.0,-0.0,22.259999999999998,1599.7863,4.9467125e-11 -2.980154681231556,0.15759954207784038,2.980154681231556,8.449999999966854,0.6520001157407407,-3.31449208247401e-11,0.16832657127173867,8.45,8.45,0.0,-0.0,21.375,1600.5214,-6.628984e-11 -3.12471725534209,0.11253271403465206,3.12471725534209,8.149999999914,0.6520517361111111,-8.599980442601025e-11,0.11998020469114239,8.15,8.15,0.0,-0.0,15.665000000000001,1603.3502,-1.7199961e-10 -3.370307413826877,0.082425528067606,3.370307413826877,7.77999999988174,0.6522856481481482,-1.1826033194276525e-10,0.08763354311744907,7.78,7.78,0.0,-0.0,10.59,1607.8687,-2.3652066e-10 -3.7142912070885714,0.07811263968543758,3.7142912070885714,13.629999999885644,0.6527943287037037,-1.143557608409681e-10,0.08274945103987802,13.63,13.63,0.0,-0.0,9.675,1613.6725,-2.2871152e-10 -4.130988861078719,0.07687504483517818,4.130988861078719,6.149999999927809,0.653352662037037,-7.219085740646092e-11,0.08111917911068034,6.15,6.15,0.0,-0.0,9.35,1620.0225,-1.4438171e-10 -4.454948464785483,0.07397465350640593,4.454948464785483,8.57999999996019,0.653848611111111,-3.981062006244664e-11,0.0778420152073615,8.58,8.58,0.0,-0.0,8.695,1624.5312,-7.962124e-11 -4.513804090951134,0.08611740343323714,4.513804090951134,2.579999999977148,0.653848611111111,-2.285180898153482e-11,0.09057588106471696,2.58,2.58,0.0,-0.0,11.075,1625.3151,-4.5703618e-11 -4.284285863050398,0.1095074221753249,4.284285863050398,-1.1542526481889106e-11,0.653848611111111,-1.1542526481889106e-11,0.11539812830524329,0.0,0.0,0.0,-0.0,14.98,1622.1985,-2.3085053e-11 -3.986956589595124,0.14351032773852565,3.986956589595124,-4.749506343545226e-12,0.6543310185185185,-4.749506343545226e-12,0.15163164847881222,0.0,0.0,0.0,-0.0,19.525,1617.9031,-9.499013e-12 -3.7807947076569,0.12132410318210585,3.7807947076569,2.769999999997386,0.6543310185185185,-2.613726075782437e-12,0.12844161511770938,2.77,2.77,0.0,-0.0,16.735,1614.7323,-5.227452e-12 -3.5922474072945025,0.08696813006222157,3.5922474072945025,-1.4246752648930029e-12,0.653848611111111,-1.4246752648930029e-12,0.09224466514567232,0.0,0.0,0.0,-0.0,11.365,1611.6772,-2.8493505e-12 -3.3916549974963717,0.11730376781259233,3.3916549974963717,0.039999999999198836,0.653848611111111,-8.011671838037066e-13,0.12468630542863847,0.04,0.04,0.0,-0.0,16.255000000000003,1608.2457,-1.6023344e-12 -3.2032719156945095,0.16126576901571202,3.2032719156945095,-2.884890677032352e-13,0.653352662037037,-2.884890677032352e-13,0.17177958319920306,0.0,0.0,0.0,-0.0,21.689999999999998,1604.833,-5.7697814e-13 -3.033092028742389,0.1570254898795848,3.033092028742389,1.236637203230892e-13,0.653352662037037,1.236637203230892e-13,0.16760333378320494,0.0,0.0,0.0,-0.0,21.265,1601.5729,2.4732744e-13 -2.8791358524387936,0.1375884777077311,2.8791358524387936,3.14997702402113e-13,0.6527943287037037,3.14997702402113e-13,0.14714278562746316,0.0,0.0,0.0,-0.0,19.055,1598.4619,6.299954e-13 -2.7416893020800717,0.18003780004061076,2.7416893020800717,1.563281432474821e-13,0.6522856481481482,1.563281432474821e-13,0.19289235940733468,0.0,0.0,0.0,-0.0,23.740000000000002,1595.5406,3.126563e-13 -2.629242972773117,0.17694975495562626,2.629242972773117,-4.2761543546367464e-13,0.6520517361111111,-4.2761543546367464e-13,0.18988146551867557,0.0,0.0,0.0,-0.0,23.47,1593.0397,-8.5523087e-13 -2.5375347066792413,0.1457794271414983,2.5375347066792413,-1.3140326500343219e-12,0.6519921296296297,-1.3140326500343219e-12,0.15664165150368006,0.0,0.0,0.0,-0.0,20.14,1590.9194,-2.6280653e-12 -2.4610940807175816,0.13268944446149897,2.4610940807175816,-2.360182795674099e-12,0.6518894675925926,-2.360182795674099e-12,0.14274020762064804,0.0,0.0,0.0,-0.0,18.565,1589.0928,-4.7203656e-12 -2.3952061858707077,0.1299905767759489,2.3952061858707077,0.6099999999965766,0.6511538194444445,-3.423325208259324e-12,0.13997966565938777,0.61,0.61,0.0,-0.0,18.255,1587.4722,-6.8466504e-12 -2.3357230175541095,0.10477561284558347,2.3357230175541095,-4.3607192507829854e-12,0.6503311342592593,-4.3607192507829854e-12,0.11293390633696539,0.0,0.0,0.0,-0.0,14.715,1585.9703,-8.7214385e-12 -2.2789139106403065,0.13691425816553884,2.2789139106403065,-5.02962428624814e-12,0.6493528935185184,-5.02962428624814e-12,0.14771196261462893,0.0,0.0,0.0,-0.0,19.21,1584.4999,-1.0059249e-11 -2.2214013771476573,0.14187971695235818,2.2214013771476573,1.2399999999947127,0.6482863425925927,-5.287299677662281e-12,0.1532166280778616,1.24,1.24,0.0,-0.0,19.86,1582.9734,-1.0574599e-11 -2.1601459163549652,0.12392608333522316,2.1601459163549652,8.529999999995008,0.6480008101851852,-4.9910050048680755e-12,0.13396973613946916,8.53,8.53,0.0,-0.0,17.6,1581.3035,-9.98201e-12 -2.092475925611468,0.10134029408551531,2.092475925611468,-3.99799898032741e-12,0.647890162037037,-3.99799898032741e-12,0.10968531388179528,0.0,0.0,0.0,-0.0,14.3,1579.4027,-7.995998e-12 -2.0006438713260906,0.10963616360467088,2.0006438713260906,-2.4656394546992887e-12,0.64678125,-2.4656394546992887e-12,0.11886602966187329,0.0,0.0,0.0,-0.0,15.645,1576.7225,-4.931279e-12 -2.0077761950532276,0.11937744639570685,2.0077761950532276,4.969999999998581,0.645352199074074,-1.4187288496579579e-12,0.12940995228154537,4.97,4.97,0.0,-0.0,17.09,1576.935,-2.8374577e-12 -2.734111808809644,0.13592425772174463,2.734111808809644,32.409999999999144,0.6440515046296297,-8.527376938179957e-13,0.14564423175217395,32.41,32.41,0.0,-0.0,19.11,1595.3754,-1.7054754e-12 -3.3716992882355012,0.14461186370382964,3.3716992882355012,1.8099999999994847,0.6438894675925926,-5.153517044506426e-13,0.1537467328750252,1.81,1.81,0.0,-0.0,20.035,1607.8933,-1.0307034e-12 -3.4809879722990216,0.13672100496027736,3.4809879722990216,7.879999999999688,0.6427809027777778,-3.113761418833979e-13,0.14518540746780806,7.88,7.88,0.0,-0.0,19.09,1609.7983,-6.227523e-13 -3.47019662292042,0.13075084970763046,3.47019662292042,-1.876879456970351e-13,0.6407940972222222,-1.876879456970351e-13,0.13886163447433206,0.0,0.0,0.0,-0.0,18.39,1609.6129,-3.753759e-13 -3.582201981120847,0.13499234818532202,3.582201981120847,10.689999999999886,0.6399997685185186,-1.1319188587722112e-13,0.1431974701663044,10.69,10.69,0.0,-0.0,18.93,1611.51,-2.2638377e-13 -3.862027285640283,0.12942596653526917,3.862027285640283,5.859999999999932,0.6395354166666667,-6.829235663298307e-14,0.13691113454762535,5.86,5.86,0.0,-0.0,18.185000000000002,1616.0018,-1.3658471e-13 -3.804952310805328,0.1284392497405968,3.804952310805328,-4.09587457266518e-14,0.6378482638888888,-4.09587457266518e-14,0.1359421507759354,0.0,0.0,0.0,-0.0,18.11,1615.1127,-8.191749e-14 -3.591836239667417,0.1432594285318224,3.591836239667417,-2.2237901353255786e-14,0.6360001157407408,-2.2237901353255786e-14,0.1519519168206275,0.0,0.0,0.0,-0.0,20.045,1611.6704,-4.4475803e-14 -3.3828204236293744,0.1736511421179608,3.3828204236293744,-1.128559339757306e-14,0.6355359953703703,-1.128559339757306e-14,0.18459779239369276,0.0,0.0,0.0,-0.0,23.425,1608.09,-2.2571187e-14 -3.316402361226041,0.19098389296721643,3.316402361226041,4.569999999999993,0.6338483796296296,-6.665941771818822e-15,0.20317278542282774,4.57,4.57,0.0,-0.0,25.165,1606.9058,-1.33318835e-14 -3.4691257115945753,0.1629480970744782,3.4691257115945753,8.049999999999997,0.6319996527777777,-3.923852599584607e-15,0.17305813511371562,8.05,8.05,0.0,-0.0,22.395,1609.5945,-7.847705e-15 -3.4439239806456294,0.13518994495023146,3.4439239806456294,-2.179218626366794e-15,0.6315355324074073,-2.179218626366794e-15,0.14361659241730163,0.0,0.0,0.0,-0.0,19.205,1609.159,-4.3584373e-15 -3.257814382907833,0.145989682849465,3.257814382907833,0.42999999999999894,0.6287943287037038,-1.0758424866916849e-15,0.1554099213215033,0.43,0.43,0.0,-0.0,20.625,1605.8413,-2.151685e-15 -3.2125567726222863,0.1322388939577383,3.2125567726222863,5.119999999999999,0.628,-6.196347235257036e-16,0.14084511440693487,5.12,5.12,0.0,-0.0,18.97,1605.0059,-1.2392694e-15 -3.1839429722257093,0.11495737364589692,3.1839429722257093,0.5799999999999996,0.6267813657407407,-3.670023559770031e-16,0.12247967108017502,0.58,0.58,0.0,-0.0,16.66,1604.4716,-7.340047e-16 -3.0913961218486357,0.1029153239510529,3.0913961218486357,2.1,0.624052199074074,-2.1489023378027602e-16,0.1097701633036031,2.1,2.1,0.0,-0.0,14.925,1602.71,-4.2978047e-16 -2.9894221360365756,0.12248521350122772,2.9894221360365756,-1.2474856401700005e-16,0.6238902777777778,-1.2474856401700005e-16,0.13080702792071902,0.0,0.0,0.0,-0.0,17.835,1600.7068,-2.4949713e-16 -3.029492104457734,0.14120610204474107,3.029492104457734,6.42,0.6207944444444444,-7.16986589198918e-17,0.15072496543296818,6.42,6.42,0.0,-0.0,20.32,1601.502,-1.4339732e-16 -3.0446206433775584,0.10382245977646434,3.0446206433775584,0.059999999999999956,0.6199998842592592,-4.0288179150252467e-17,0.11080066780274897,0.06,0.06,0.0,-0.0,15.185,1601.7994,-8.057636e-17 -2.893336120864923,0.10356672885958675,2.893336120864923,-2.3930828120804166e-17,0.6183303240740741,-2.3930828120804166e-17,0.11073817050690492,0.0,0.0,0.0,-0.0,15.22,1598.7557,-4.7861656e-17 -2.759342843735623,0.09983673280163753,2.759342843735623,-1.345566926942252e-17,0.615999537037037,-1.345566926942252e-17,0.10693930783386296,0.0,0.0,0.0,-0.0,14.709999999999999,1595.924,-2.6911339e-17 -2.679187022789672,0.08921680790525485,2.679187022789672,1.0452922168564694e-18,0.6151532407407407,1.0452922168564694e-18,0.09566939625371368,0.0,0.0,0.0,-0.0,12.925,1594.1635,2.0905844e-18 -2.641427739463215,0.10030556910829726,2.641427739463215,4.98,0.6120002314814815,1.8402573291959153e-17,0.10761737278913688,4.98,4.98,0.0,-0.0,14.920000000000002,1593.3158,3.6805147e-17 -2.624432025490828,0.112668268224641,2.624432025490828,7.54,0.6115356481481482,3.4247904485320826e-17,0.1209105083991156,7.54,7.54,0.0,-0.0,16.855,1592.9303,6.849581e-17 -2.60805739027449,0.1040744704843181,2.60805739027449,4.421300888175126e-17,0.6080510416666667,4.421300888175126e-17,0.11171424553972625,0.0,0.0,0.0,-0.0,15.64,1592.5565,8.842602e-17 -2.5728094460592286,0.102612833214435,2.5728094460592286,4.3929613495168143e-17,0.6078891203703704,4.3929613495168143e-17,0.11020154586815195,0.0,0.0,0.0,-0.0,15.42,1591.7439,8.785923e-17 -2.5018791992704346,0.12677081601544285,2.5018791992704346,1.11,0.6042853009259259,3.018965382973971e-17,0.13628907923030667,1.11,1.11,0.0,-0.0,19.064999999999998,1590.0743,6.037931e-17 -2.4079251095978402,0.11899625057269403,2.4079251095978402,1.6470507682884345e-17,0.6039916666666666,1.6470507682884345e-17,0.128114958267863,0.0,0.0,0.0,-0.0,18.03,1587.7885,3.2941015e-17 -2.3106643597797607,0.11000145722819725,2.3106643597797607,8.55169426631617e-18,0.6002854166666667,8.55169426631617e-18,0.11861483526912972,0.0,0.0,0.0,-0.0,16.845,1585.3262,1.7103389e-17 -2.2306197770927616,0.1335052443610003,2.2306197770927616,4.0911046151504915e-18,0.5999998842592592,4.0911046151504915e-18,0.14415047130365868,0.0,0.0,0.0,-0.0,20.14,1583.2207,8.182209e-18 -2.1840364675951682,0.14829987204418507,2.1840364675951682,-4.814771225463174e-19,0.5962851851851851,-4.814771225463174e-19,0.16025234352494308,0.0,0.0,0.0,-0.0,22.07,1581.9603,-9.629542e-19 -2.1745171518660764,0.15890163272107416,2.1745171518660764,0.81,0.5959997685185184,-3.979806222960563e-18,0.17173688980085872,0.81,0.81,0.0,-0.0,23.285,1581.6995,-7.9596124e-18 -2.2072119999662005,0.13979259579432168,2.2072119999662005,9.11,0.5920523148148148,-5.181110700403974e-18,0.15099924001921294,9.11,9.11,0.0,-0.0,21.165,1582.5907,-1.0362221e-17 -2.2728988201540936,0.10431238685859034,2.2728988201540936,-3.3401580018261165e-18,0.591992824074074,-3.3401580018261165e-18,0.1125501653683631,0.0,0.0,0.0,-0.0,16.205000000000002,1584.342,-6.680316e-18 -2.2824988773971375,0.11821884315825276,2.2824988773971375,3.94,0.5880002314814815,-8.064835196511852e-19,0.12753458330719314,3.94,3.94,0.0,-0.0,18.405,1584.5938,-1.612967e-18 -2.2393042050034664,0.11827242635461635,2.2393042050034664,1.3652404045155755e-18,0.5879922453703703,1.3652404045155755e-18,0.12768432836436053,0.0,0.0,0.0,-0.0,18.424999999999997,1583.4528,2.7304808e-18 -2.166872229581427,0.09947441729191228,2.166872229581427,2.5207288987933233e-18,0.5840005787037037,2.5207288987933233e-18,0.10752374740188343,0.0,0.0,0.0,-0.0,15.675,1581.4891,5.041458e-18 -2.088053800654419,0.10144530984542037,2.088053800654419,2.0468499471611883e-18,0.5835359953703704,2.0468499471611883e-18,0.10980776128764348,0.0,0.0,0.0,-0.0,16.035,1579.2764,4.0937e-18 -2.0225884635701528,0.10304801748679383,2.0225884635701528,4.72,0.5800003472222222,9.514505409162833e-19,0.11167710761638022,4.72,4.72,0.0,-0.0,16.415,1577.374,1.902901e-18 -1.9721332242405378,0.07850261335399958,1.9721332242405378,8.5221613852074e-20,0.5787818287037036,8.5221613852074e-20,0.08515775574062362,0.0,0.0,0.0,-0.0,12.035,1575.8654,1.7044323e-19 -1.9339500399224423,0.07391948965943719,1.9339500399224423,-3.2887669764282103e-19,0.5760005787037037,-3.2887669764282103e-19,0.08024554903189793,0.0,0.0,0.0,-0.0,11.165000000000001,1574.6978,-6.577534e-19 -1.9313230327027033,0.08820427846901516,1.9313230327027033,2.86,0.5738478009259259,-2.2025971480605954e-19,0.09575777213780168,2.86,2.86,0.0,-0.0,14.065000000000001,1574.6166,-4.4051943e-19 -2.041073986094415,0.10863640270345101,2.041073986094415,7.87,0.5719994212962963,-6.632626249603984e-20,0.11769291607253923,7.87,7.87,0.0,-0.0,17.52,1577.9174,-1.3265252e-19 -2.2306608127652434,0.10737864269532413,2.2306608127652434,7.72,0.5680513888888888,4.5193878721538433e-20,0.11594054814522474,7.72,7.72,0.0,-0.0,17.384999999999998,1583.2218,9.038776e-20 -2.449280548922274,0.09613979788406343,2.449280548922274,8.13,0.5679997685185185,7.852722176763674e-20,0.1034407576988674,8.13,8.13,0.0,-0.0,15.495000000000001,1588.8054,1.5705444e-19 -2.5847485313839225,0.09455682568602292,2.5847485313839225,4.11,0.5639996527777777,4.7207772707420955e-20,0.10153212148539853,4.11,4.11,0.0,-0.0,15.305,1592.0204,9.4415545e-20 -2.556615798723059,0.09397147228432566,2.556615798723059,2.614936828336763e-20,0.5639916666666667,2.614936828336763e-20,0.10094502803701995,0.0,0.0,0.0,-0.0,15.21,1591.3668,5.2298737e-20 -2.4401358982685646,0.09837260419675634,2.4401358982685646,1.491324087930567e-20,0.56,1.491324087930567e-20,0.10585800953952491,0.0,0.0,0.0,-0.0,16.11,1588.582,2.9826482e-20 -2.317442472109903,0.1070925961505108,2.317442472109903,6.681832913955162e-21,0.558330324074074,6.681832913955162e-21,0.1154654627942549,0.0,0.0,0.0,-0.0,17.605,1585.5011,1.3363666e-20 -2.2436246941232856,0.11304580579406574,2.2436246941232856,2.2746184472920734e-21,0.5560002314814815,2.2746184472920734e-21,0.1220329115295469,0.0,0.0,0.0,-0.0,18.605,1583.5679,4.549237e-21 -2.318882951297189,0.11928565103767862,2.318882951297189,9.8,0.5520519675925926,1.25257369161039e-21,0.12860880240408634,9.8,9.8,0.0,-0.0,19.615000000000002,1585.5382,2.5051474e-21 -2.8209574966531403,0.12551734939674736,2.8209574966531403,20.11,0.5520004629629629,6.065718864974011e-22,0.13433587917158596,20.11,20.11,0.0,-0.0,20.36,1597.2428,1.2131438e-21 -4.348150958864688,0.12533446073444424,4.348150958864688,38.64,0.5479999999999999,3.0241781759972295e-22,0.13200463945912044,38.64,38.64,0.0,-0.0,20.185000000000002,1623.0822,6.0483564e-22 -7.73246832951408,0.12229584894483912,7.73246832951408,42.08,0.5479921296296296,1.8159590659962175e-22,0.12613262186472493,42.08,42.08,0.0,-0.0,19.41,1657.4617,3.6319181e-22 -9.137393227116096,0.11359566366484447,9.137393227116096,1.0941133461777963e-22,0.5439997685185185,1.0941133461777963e-22,0.11645895373506042,0.0,0.0,0.0,-0.0,18.185,1667.4318,2.1882267e-22 -7.939314314991487,0.10728195569718238,7.939314314991487,6.608184304485651e-23,0.540794212962963,6.608184304485651e-23,0.1105425541088122,0.0,0.0,0.0,-0.0,17.41,1659.0382,1.3216369e-22 -6.995121033530393,0.08654586451549055,6.995121033530393,3.674800295255887e-23,0.54,3.674800295255887e-23,0.08958453476537223,0.0,0.0,0.0,-0.0,13.969999999999999,1651.4768,7.3496006e-23 -6.249915110961402,0.0735373478295104,6.249915110961402,1.1682490425464014e-23,0.5359994212962963,1.1682490425464014e-23,0.07643061696353293,0.0,0.0,0.0,-0.0,11.535,1644.7496,2.3364981e-23 -5.6491575602291535,0.0824485907385485,5.6491575602291535,-4.19350923593845e-24,0.5359994212962963,-4.19350923593845e-24,0.08600807189972694,0.0,0.0,0.0,-0.0,13.43,1638.7142,-8.3870185e-24 -5.166799269697553,0.09384638821953807,5.166799269697553,-5.9486020821844396e-24,0.5319998842592593,-5.9486020821844396e-24,0.09821740558174367,0.0,0.0,0.0,-0.0,15.72,1633.384,-1.1897204e-23 -5.005728897850904,0.10143284224240215,5.005728897850904,0.7,0.5298482638888888,-3.118107031455163e-24,0.10628027451670918,0.7,0.7,0.0,-0.0,17.095,1631.4927,-6.236214e-24 -5.005861914483759,0.080088723254902,5.005861914483759,7.82,0.5279998842592593,-1.2847262484684563e-24,0.08391604756194418,7.82,7.82,0.0,-0.0,13.275,1631.4943,-2.5694525e-24 -4.872941559349855,0.06310953939763628,4.872941559349855,-6.534276379870515e-25,0.5240002314814816,-6.534276379870515e-25,0.06619065717515725,0.0,0.0,0.0,-0.0,9.620000000000001,1629.8871,-1.3068553e-24 -4.526008633162357,0.0615075748619298,4.526008633162357,-3.7714086489126055e-25,0.5240002314814816,-3.7714086489126055e-25,0.06468553258271256,0.0,0.0,0.0,-0.0,9.26,1625.4763,-7.5428173e-25 -4.220659948700007,0.07945634997555746,4.220659948700007,1.01,0.520000462962963,-2.219386940686551e-25,0.08377667274469189,1.01,1.01,0.0,-0.0,13.495000000000001,1621.3049,-4.438774e-25 -3.95348122348394,0.07743778373833445,3.95348122348394,-1.2132849587836685e-25,0.5183310185185186,-1.2132849587836685e-25,0.08184549916787759,0.0,0.0,0.0,-0.0,13.17,1617.3995,-2.42657e-25 -3.7076236885013327,0.09167980827658358,3.7076236885013327,-6.811616701357132e-26,0.5159998842592592,-6.811616701357132e-26,0.09712843305947808,0.0,0.0,0.0,-0.0,16.04,1613.5652,-1.3623233e-25 -3.519666485456132,0.1044637910325925,3.519666485456132,-2.467729474854342e-26,0.511999537037037,-2.467729474854342e-26,0.11088569233803476,0.0,0.0,0.0,-0.0,18.380000000000003,1610.4583,-4.935459e-26 -3.4248716184498966,0.08043234961369396,3.4248716184498966,0.14,0.511999537037037,1.2525887053837015e-26,0.08546344707089779,0.14,0.14,0.0,-0.0,14.07,1608.8278,2.5051774e-26 -3.452896958914127,0.07875454846647786,3.452896958914127,7.95,0.5079996527777778,3.2845665925219184e-26,0.08365539133507988,7.95,7.95,0.0,-0.0,13.850000000000001,1609.3145,6.569133e-26 -3.628095932866548,0.07043471188326035,3.628095932866548,7.56,0.5067805555555556,2.6904612699555837e-26,0.07468065173699402,7.56,7.56,0.0,-0.0,12.06,1612.2703,5.3809225e-26 -3.6580758364427366,0.07081767502422426,3.6580758364427366,2.25,0.503999537037037,1.489217779852048e-26,0.07506381954594031,2.25,2.25,0.0,-0.0,12.23,1612.7617,2.9784356e-26 -3.581338069720229,0.06486339039353753,3.581338069720229,2.64,0.4999997685185186,7.8375773012877e-27,0.06880654021158492,2.64,2.64,0.0,-0.0,10.97,1611.4956,1.5675155e-26 -3.586458686687236,0.0671516529633893,3.586458686687236,5.06,0.4999997685185186,4.534149075336827e-27,0.07123013837555191,5.06,5.06,0.0,-0.0,11.52,1611.5809,9.068298e-27 -3.6694364371012775,0.06509632707858289,3.6694364371012775,5.17,0.4959997685185185,2.4183680829726916e-27,0.06899150455662924,5.17,5.17,0.0,-0.0,11.14,1612.9469,4.836736e-27 -3.7129628163825363,0.06879998587040134,3.7129628163825363,5.17,0.49366840277777774,1.3962747503704523e-27,0.07288495759599546,5.17,5.17,0.0,-0.0,12.09,1613.6511,2.7925495e-27 -3.5860261916194562,0.053417228742275245,3.5860261916194562,7.44472168159272e-28,0.4919994212962963,7.44472168159272e-28,0.05666180103202402,0.0,0.0,0.0,-0.0,8.18,1611.5737,1.4889443e-27 -3.453567520843641,0.05049849089127183,3.453567520843641,1.1,0.48800034722222224,4.114046361753628e-28,0.05364059166595761,1.1,1.1,0.0,-0.0,7.46,1609.326,8.228093e-28 -4.166537811321599,0.06203361002719365,4.166537811321599,24.55,0.48800034722222224,2.321655103402856e-28,0.06543770522732814,24.55,24.55,0.0,-0.0,10.56,1620.5342,4.64331e-28 -6.213738988533241,0.0632260591957688,6.213738988533241,33.95,0.4840002314814815,1.2903897942558399e-28,0.06572749280075399,33.95,33.95,0.0,-0.0,10.76,1644.403,2.5807796e-28 -7.119508358722618,0.060277453625486185,7.119508358722618,7.747712230450501e-29,0.48167002314814816,7.747712230450501e-29,0.06235408330703312,0.0,0.0,0.0,-0.0,10.004999999999999,1652.5294,1.5495424e-28 -6.485912182794911,0.06683856041127537,6.485912182794911,2.41,0.4800005787037037,4.663961351746269e-29,0.06937490640193192,2.41,2.41,0.0,-0.0,11.75,1646.9631,9.327923e-29 -6.631850620126096,0.055081699118482264,6.631850620126096,14.95,0.4760001157407408,2.8024119352078064e-29,0.05712581128180001,14.95,14.95,0.0,-0.0,8.82,1648.292,5.604824e-29 -6.671415467340819,0.049227827840955515,6.671415467340819,1.6679465125851508e-29,0.4760001157407408,1.6679465125851508e-29,0.05104369915520461,0.0,0.0,0.0,-0.0,7.08,1648.6472,3.335893e-29 -6.004755268054331,0.06443972986523713,6.004755268054331,1.0027224857034005e-29,0.4719996527777777,1.0027224857034005e-29,0.06707251466902778,0.0,0.0,0.0,-0.0,11.48,1642.3599,2.005445e-29 -5.449306710629796,0.07704644955462103,5.449306710629796,5.700805673691327e-30,0.4701513888888889,5.700805673691327e-30,0.08047834587049855,0.0,0.0,0.0,-0.0,14.48,1636.5632,1.1401611e-29 -4.986509429318802,0.08648367283959248,4.986509429318802,2.5040335522233297e-30,0.46799976851851854,2.5040335522233297e-30,0.09062945254114624,0.0,0.0,0.0,-0.0,16.51,1631.263,5.008067e-30 -4.595374068560322,0.0980453124910655,4.595374068560322,9.03276002166208e-31,0.463999537037037,9.03276002166208e-31,0.10305350586725044,0.0,0.0,0.0,-0.0,18.805,1626.3846,1.806552e-30 -4.24771491998903,0.08243044592854759,4.24771491998903,5.264223874451295e-31,0.463999537037037,5.264223874451295e-31,0.0868920298265945,0.0,0.0,0.0,-0.0,15.954999999999998,1621.6865,1.0528448e-30 -4.057819521437515,0.0730095436307037,4.057819521437515,2.74,0.46,3.0225507401591793e-31,0.07709105758119351,2.74,2.74,0.0,-0.0,14.135000000000002,1618.9552,6.0451015e-31 -5.01752995004352,0.052163596261438724,5.01752995004352,28.46,0.45920532407407405,1.8201962258711675e-31,0.05465176162341904,28.46,28.46,0.0,-0.0,8.69,1631.6333,3.6403925e-31 -5.835235893275908,0.04319757585484484,5.835235893275908,2.46,0.45599953703703705,1.100186657885163e-31,0.04500934827685195,2.46,2.46,0.0,-0.0,5.815,1640.6497,2.2003733e-31 -5.607373760050681,0.04645236292944145,5.607373760050681,3.82,0.45200810185185186,6.631703606682366e-32,0.0484709242785301,3.82,3.82,0.0,-0.0,7.08,1638.2709,1.3263407e-31 -5.388079079940412,0.046915630887492926,5.388079079940412,2.62,0.452,3.9620710064981046e-32,0.0490256185181117,2.62,2.62,0.0,-0.0,7.255,1635.8884,7.924142e-32 -5.042679027413456,0.04140084272709564,5.042679027413456,2.326262471848616e-32,0.4480001157407407,2.326262471848616e-32,0.04336769646502776,0.0,0.0,0.0,-0.0,5.52,1631.9319,4.652525e-32 -4.577402669540996,0.043698877842440205,4.577402669540996,1.3465508193860083e-32,0.4480001157407407,1.3465508193860083e-32,0.04593764345925153,0.0,0.0,0.0,-0.0,6.3950000000000005,1626.1506,2.6931016e-32 -4.272078162059527,0.04851857448123241,4.272078162059527,7.442184774118462e-33,0.4440001157407408,7.442184774118462e-33,0.05113389391803106,0.0,0.0,0.0,-0.0,8.18,1622.0281,1.488437e-32 -4.793778226472388,0.05472462934526408,4.793778226472388,22.76,0.44166932870370373,4.4321481851876634e-33,0.057430847350988606,22.76,22.76,0.0,-0.0,10.075,1628.9089,8.8642964e-33 -8.192769461434468,0.04958499978000425,8.192769461434468,58.15,0.4400003472222222,2.6436438159871227e-33,0.05103429633000253,58.15,58.15,0.0,-0.0,8.29,1660.9149,5.2872876e-33 -11.990736772509825,0.046240775196795175,11.990736772509825,17.42,0.43611064814814815,1.562406296014528e-33,0.0469493505733742,17.42,17.42,0.0,-0.0,7.140000000000001,1683.6613,3.1248126e-33 -11.596864894307496,0.04857288344855255,11.596864894307496,0.01,0.43600011574074077,9.312983482439156e-34,0.04937569037693241,0.01,0.01,0.0,-0.0,7.92,1681.6666,1.8625967e-33 -10.217943280486658,0.04581267920327766,10.217943280486658,6.38,0.43200000000000005,5.465522054753171e-34,0.04678016615314245,6.38,6.38,0.0,-0.0,7.23,1674.1067,1.0931044e-33 -9.89166109441659,0.04122691270825979,9.89166109441659,8.6,0.43194837962962956,3.2754217955377038e-34,0.04214634871410156,8.6,8.6,0.0,-0.0,5.64,1672.1686,6.5508436e-34 -9.082981097712786,0.03511655004844441,9.082981097712786,1.961634437349744e-34,0.428,1.961634437349744e-34,0.03600940008800135,0.0,0.0,0.0,-0.0,3.415,1667.0751,3.923269e-34 -7.885393169175329,0.03304934984942299,7.885393169175329,1.1610690606546897e-34,0.4261517361111111,1.1610690606546897e-34,0.03406216780871614,0.0,0.0,0.0,-0.0,2.655,1658.6312,2.3221381e-34 -6.959964341123302,0.035122382641063314,6.959964341123302,6.872690730088181e-35,0.42400011574074076,6.872690730088181e-35,0.036362173017469974,0.0,0.0,0.0,-0.0,3.7,1651.1759,1.3745381e-34 -6.232272124925659,0.03558872058292862,6.232272124925659,0.32000000000000695,0.42121863425925926,6.96145208535899e-15,0.036992727885481136,0.32,0.32,0.0,-0.0,4.055,1644.5808,1.3922904e-14 -5.530662919800671,0.03249510504648328,5.530662919800671,19.180000000000085,0.41999976851851856,8.695848945406872e-14,0.033924196090060074,19.18,19.18,0.0,-0.0,2.8099999999999996,1637.4482,1.7391698e-13 -4.886916205941366,0.02900442307562635,4.886916205941366,30.86000000000016,0.4164640046296296,2.0220384290952753e-13,0.030417277975555077,30.86,30.859999999999957,4.2826853174915414e-14,-0.0,1.33,1630.0581,4.044116e-13 -4.361110866548702,0.02825438142397281,4.361110866548702,9.410000000000014,0.4159996527777778,2.8394113062148213e-13,0.029754793987916014,9.41,9.40999999999973,2.7058244533861853e-13,-0.0,1.025,1623.2599,5.6799866e-13 -3.9869647391043026,0.02798417630709902,3.9869647391043026,2.6360050011505353e-13,0.4121109953703704,2.6360050011505353e-13,0.029567812515512125,0.0,0.0,0.0,-0.0,1.0699999999999998,1617.9032,5.272699e-13 -3.733442289010307,0.026422460004152926,3.733442289010307,1.142859047437503e-13,0.41200046296296294,1.142859047437503e-13,0.027985586000270964,0.0,0.0,0.0,-0.0,0.2749999999999999,1613.9796,3.1328255e-13 -3.5120056673052997,0.03164752658532846,3.5120056673052997,8.6717342562414e-14,0.4080084490740741,8.6717342562414e-14,0.033595769755803695,0.0,0.0,0.0,-0.0,3.0949999999999998,1610.3281,1.7343469e-13 -3.3343060341192694,0.039652555332168306,3.3343060341192694,0.189971258399515,0.40794895833333333,-2.8741600484998827e-5,0.04217480483292004,0.19,0.19,0.0,-0.0,6.5200000000000005,1607.2273,-5.7499732e-5 -3.2308572713363857,0.04585457927658508,3.2308572713363857,-0.0001329327368597755,0.40399999999999997,-0.0001329327368597755,0.04882851418390439,0.0,0.0,0.0,-0.0,8.93,1605.3451,-0.00026621984 -3.187087940831278,0.04075414097153865,3.187087940831278,-0.0002496443826014963,0.4037145833333334,-0.0002496443826014963,0.043419314514388734,0.0,0.0,0.0,-0.0,7.125,1604.5305,-0.0005005415 -3.1899817081480784,0.027933393487695597,3.1899817081480784,2.9496892611669554,0.40000023148148145,-0.000310738833044537,0.029759131246864124,2.95,2.9499999999999997,3.275157922644212e-16,-0.0,1.6,1604.5847,-0.00062342134 -3.2289294777702926,0.024012539784612083,3.2289294777702926,7.369515362879435,0.39971435185185183,-0.00048244835628844456,0.025570459750223814,7.37,7.369997811235724,2.188764276114252e-6,-0.0,-0.5900000000000001,1605.3094,-0.0004978161 -3.2942757350256002,0.023890604338632142,3.2942757350256002,4.629254005582171,0.3960082175925926,-0.0007451604192615492,0.02542166491340372,4.63,4.629999166001432,8.339985676475426e-7,-0.0,-0.5399999999999999,1606.506,1.3121376e-5 -3.400394482433416,0.027511198470010705,3.400394482433416,3.730216284222405,0.39571446759259266,0.00021628422240604648,0.029239827401841778,3.73,3.729999999999999,8.282263763703668e-16,-0.0,1.5,1608.3994,0.00043163766 -3.726976545686752,0.03186437638241597,3.726976545686752,15.740202344098648,0.3921108796296296,0.00020234409864830692,0.03375160536745764,15.74,15.74,0.0,-0.0,3.755,1613.8761,0.00040387263 -3.92944068432999,0.02666473036382247,3.92944068432999,0.0001206660204814357,0.3919487268518519,0.0001206660204814357,0.028188820394685322,0.0,0.0,0.0,-0.0,1.105,1617.0353,0.00024106371 -3.6814267453475438,0.02360607330185614,3.6814267453475438,-0.0010964896231753726,0.3884644675925926,-0.0010964896231753726,0.025015571437752238,0.0,0.0,0.0,-0.0,-0.4950000000000001,1613.1417,0.00034288864 -3.7411961066115276,0.025704671868678638,3.7411961066115276,9.281956558489924,0.38799999999999996,0.0019565584943132125,0.027223244381484917,9.28,9.27999999999561,4.39005276575699e-12,-0.0,0.745,1614.1035,0.0038521222 -3.7890573314204734,0.023468218256619627,3.7890573314204734,-0.0015789883795013246,0.3848466435185185,-0.0015789883795013246,0.02484298196012089,0.0,0.0,0.0,-0.0,-0.4600000000000002,1614.8627,0.014632126 -3.5607757588236146,0.021627248313890273,3.5607757588236146,-6.882356010915356e-8,0.3840003472222222,-6.882356010915356e-8,0.022946900088880083,0.0,0.0,0.0,-0.0,-1.5650000000000002,1611.1517,0.0146843735 -3.3104220256527674,0.023271167820693398,3.3104220256527674,-0.002812124618196418,0.38166932870370374,-0.002812124618196418,0.024758031075342093,0.0,0.0,0.0,-0.0,-0.3900000000000001,1606.798,0.013677536 -3.1065226355828925,0.030293754353891415,3.1065226355828925,0.005769940566148967,0.3799997685185186,0.005769940566148967,0.03230564238505649,0.0,0.0,0.0,-0.0,3.5699999999999994,1603.0015,0.010941857 -3.0938678145630254,0.023942439099350434,3.0938678145630254,5.464236220751396,0.37920590277777777,-0.015763778253810715,0.025536402968922026,5.48,5.479999999005207,9.947935986076573e-10,-0.0,0.1499999999999999,1602.7577,0.010087912 -3.404435147420364,0.022694274998580656,3.404435147420364,12.509260955973254,0.37611087962962964,-0.000736425929444845,0.024119175519390107,12.51,12.509997381902698,2.618097301344546e-6,-0.0,-0.5550000000000002,1608.4703,0.025049746 -3.9193014210964736,0.027973166119788735,3.9193014210964736,11.799764317996974,0.3759486111111111,0.0097643179969745,0.029574865124056778,11.79,11.79,0.0,-0.0,2.42,1616.881,0.017926184 -4.04485960745268,0.0192128029992311,4.04485960745268,0.00022596207785951966,0.37321898148148147,-3.207843668227277e-13,0.020289266666795026,0.76,0.00022596207818030402,0.7597740379218197,-0.0,-2.905,1618.7642,0.2627818 -3.787268661796488,0.013890726608605332,3.787268661796488,0.0,0.3719998842592593,-0.0,0.014704699465806315,0.0,0.0,0.0,-0.0,-7.305000000000001,1614.8345,0.6441761 -3.5604628026689875,0.01916153834963193,3.5604628026689875,-9.479249083807961e-13,0.37120578703703705,-9.479249083807961e-13,0.020330803631942864,0.0,0.0,0.0,-0.0,-2.8000000000000003,1611.1465,0.6446731 -3.3746503078122783,0.028222062915628704,3.3746503078122783,0.38450672602148367,0.3684645833333333,0.38450672602148367,0.03000382451874714,0.0,0.0,0.0,-0.0,2.93,1607.9456,0.39212614 -4.114581241679192,0.030206239755329684,4.114581241679192,30.669754681458507,0.3680003472222222,0.1297546814585093,0.03187854929186857,30.54,30.54,0.0,-0.0,3.85,1619.7848,0.1568028 -6.457457969109048,0.02090013769353074,6.457457969109048,33.10996527100628,0.36615196759259255,-3.096320866954475e-8,0.021696701531557897,33.67,33.10996530196949,0.5600346980305143,-0.0,-1.6849999999999998,1646.7006,0.10980258 -6.1164433119032555,0.015467246153295144,6.1164433119032555,5.406786129924512e-16,0.3644642361111111,-0.0,0.016088403174555146,9.74,5.406786129924512e-16,9.74,-0.0,-5.8,1643.4604,18.59523 -5.5468979272140135,0.014269594216948232,5.5468979272140135,0.0,0.36400011574074076,-0.0,0.014895559404638263,8.3,0.0,8.3,-0.0,-6.835,1637.6233,27.62758 -5.0744638523925065,0.01056079464190572,5.0744638523925065,0.0,0.3621513888888889,-0.0,0.011059969296253429,0.0,0.0,0.0,-0.0,-10.745,1632.3071,31.850111 -4.676171379475611,0.012242878938426306,4.676171379475611,0.0,0.3604638888888889,-0.0,0.012860019570405569,2.35,0.0,2.35,-0.0,-8.685,1627.4255,33.307255 -4.335681518310016,0.014371108290740219,4.335681518310016,0.0,0.3599998842592593,-0.0,0.015137524328986952,0.48,0.0,0.48,-0.0,-6.465,1622.9106,34.677586 -4.115657909985096,0.02418671379060816,4.115657909985096,4.8262387306402905,0.35920578703703704,2.0162387306404996,0.025525517787332114,2.81,2.809999999999791,2.0902168884617823e-13,-0.0,0.9300000000000002,1619.8004,35.22611 -5.040370689280647,0.03589457207321227,5.040370689280647,28.193536357949753,0.3572189814814815,17.703536357949755,0.037600466244843055,10.49,10.49,0.0,-0.0,6.795,1631.9045,25.327843 -6.9313711675764536,0.028606104844255298,6.9313711675764536,21.978887947549367,0.35611041666666665,8.208887947549368,0.02962028640301147,13.77,13.77,0.0,-0.0,3.2449999999999997,1650.93,12.386802 -9.360750591812119,0.026940651043474845,9.360750591812119,29.927357137281017,0.3559483796296296,5.427357137281018,0.02759584727832158,24.5,24.5,0.0,-0.0,2.205,1668.874,5.5562334 -10.093290100495194,0.01908820713923771,10.093290100495194,0.0059571430818379885,0.3546476851851852,-1.6148538364256337e-12,0.01949985635895164,4.05,0.0059571430834528425,4.044042856916547,-0.0,-2.745,1673.3737,5.1704383 -8.631867478043047,0.013496215090477336,8.631867478043047,0.0,0.35321898148148145,-0.0,0.013864662424577623,0.0,0.0,0.0,-0.0,-7.4,1664.0328,7.195282 -7.539498084229125,0.013865872042848193,7.539498084229125,0.0,0.35211030092592593,-0.0,0.014313918565813554,0.0,0.0,0.0,-0.0,-6.925,1655.9524,7.1953545 -6.692544744135812,0.01166287000043926,6.692544744135812,0.0,0.35199988425925927,-0.0,0.01209169430341037,0.0,0.0,0.0,-0.0,-9.190000000000001,1648.836,7.1953545 -6.016955691044486,0.010518549348956146,6.016955691044486,0.0,0.35171423611111113,-0.0,0.010947492957562591,0.0,0.0,0.0,-0.0,-10.495,1642.4811,7.1953545 -5.465325243268315,0.009585752837949,5.465325243268315,0.0,0.3506474537037037,-0.0,0.01001166070309772,0.0,0.0,0.0,-0.0,-11.625,1636.7385,7.1953545 -5.006332617105389,0.009368648109476525,5.006332617105389,0.0,0.34966921296296294,-0.0,0.00981632847360457,0.0,0.0,0.0,-0.0,-11.844999999999999,1631.4999,7.186902 -4.618378877688991,0.010149345742610947,4.618378877688991,0.0,0.3488465277777778,-0.0,0.010665822630346086,1.0,0.0,1.0,-0.0,-10.73,1626.6829,7.6869617 -4.285993867940116,0.01498556194449338,4.285993867940116,0.0,0.3481105324074074,-0.0,0.01579144491434782,0.0,0.0,0.0,-0.0,-5.425000000000001,1622.2223,8.1753845 -3.9980471580922914,0.013719522856473204,3.9980471580922914,0.0,0.3480079861111111,-0.0,0.014494431267355497,0.0,0.0,0.0,-0.0,-6.595,1618.069,8.175693 -3.7463691575441156,0.007383211586509112,3.7463691575441156,0.0,0.34794849537037037,-0.0,0.00781899489758125,0.0,0.0,0.0,-0.0,-14.7,1614.186,8.175693 -3.5246701056591077,0.007663449585269448,3.5246701056591077,0.0,0.34771435185185184,-0.0,0.008134130891067006,0.0,0.0,0.0,-0.0,-14.190000000000001,1610.5431,8.175693 -3.3278172259738703,0.008501773842692503,3.3278172259738703,0.0,0.3472057870370371,-0.0,0.009043215612891033,0.0,0.0,0.0,-0.0,-12.815000000000001,1607.111,8.180725 -3.1517292027288164,0.008510494447646077,3.1517292027288164,0.0,0.3466476851851852,-0.0,0.009070816564281655,1.43,0.0,1.43,-0.0,-12.755,1603.8643,8.908565 -2.993237520744847,0.011847630989266243,2.993237520744847,0.0,0.3466476851851852,-0.0,0.012651973325044757,14.51,0.0,14.51,-0.0,-8.379999999999999,1600.783,16.866022 -2.8497496789627332,0.014989336033797008,2.8497496789627332,0.0,0.3461518518518519,-0.0,0.01603635993829472,0.0,0.0,0.0,-0.0,-5.135,1597.8492,24.08582 -2.719353080141514,0.012285127095855417,2.719353080141514,0.0,0.3461518518518519,-0.0,0.013166306930278362,0.0,0.0,0.0,-0.0,-7.825,1595.0521,24.094437 -2.6004133342357942,0.0118754288255223,2.6004133342357942,0.0,0.3456693287037037,-0.0,0.012748569430142425,0.0,0.0,0.0,-0.0,-8.24,1592.3812,24.066044 -2.491529589936931,0.006641240200587314,2.491529589936931,0.0,0.3456693287037037,-0.0,0.007140992554078707,0.0,0.0,0.0,-0.0,-15.760000000000002,1589.8268,24.08009 -2.3914881916445507,0.00629116087642538,2.3914881916445507,0.0,0.3461518518518519,-0.0,0.006774999281452939,0.87,0.0,0.87,-0.0,-16.435,1587.3794,24.514818 -2.2990935148863447,0.010474646235987331,2.2990935148863447,0.0,0.3461518518518519,-0.0,0.01129697256589464,1.32,0.0,1.32,-0.0,-9.87,1585.0264,25.600391 -2.213392548017443,0.01580403013987417,2.213392548017443,1.540621479279025e-9,0.3461518518518519,-0.0,0.0170691784139526,4.39,1.540621479279025e-9,4.389999998459378,-0.0,-4.2700000000000005,1582.7577,28.444757 -2.1337192018887334,0.016904860151720675,2.1337192018887334,5.523428095784771e-5,0.3466476851851852,-5.725363406070144e-15,0.01828342268272447,13.02,5.523428096357308e-5,13.019944765719035,-0.0,-3.33,1580.5684,37.15597 -2.059551638255097,0.01630437708310324,2.059551638255097,9.546446409719467e-7,0.3472057870370371,-0.0,0.017657574651202452,36.91,9.546446409719467e-7,36.909999045355356,-0.0,-3.84,1578.4556,62.247536 -1.99043831845629,0.011668338046759095,1.99043831845629,0.0,0.34771435185185184,-0.0,0.012653103560200116,31.23,0.0,31.23,-0.0,-8.42,1576.4171,96.20167 -1.9259458658695983,0.007195775296515966,1.9259458658695983,0.0,0.34794849537037037,-0.0,0.007812821474080456,0.0,0.0,0.0,-0.0,-14.71,1574.4501,111.56136 -1.865490538074749,0.011636215224663635,1.865490538074749,0.0,0.34800000000000003,-0.0,0.012649336648876483,11.93,0.0,11.93,-0.0,-8.434999999999999,1572.5454,117.562195 -1.8085994107818972,0.014043144269305747,1.8085994107818972,9.769962616701378e-16,0.3480079861111111,-0.0,0.015283804568942225,17.6,9.769962616701378e-16,17.6,-0.0,-5.87,1570.6958,132.33792 -1.755146548266734,0.006896863531398414,1.755146548266734,0.0,0.3484641203703704,-0.0,0.0075147478871158855,4.79,0.0,4.79,-0.0,-15.219999999999999,1568.9042,143.3145 -1.7048478687518434,0.005618773577512167,1.7048478687518434,0.0,0.34921886574074074,-0.0,0.006128938359334351,0.0,0.0,0.0,-0.0,-17.785,1567.1677,146.3709 -1.6573248323985845,0.00805823768652752,1.6573248323985845,0.0,0.35015162037037034,-0.0,0.008799377007243097,1.83,0.0,1.83,-0.0,-13.275,1565.4794,148.2179 -1.61238830435352,0.0062933996694066715,1.61238830435352,0.0,0.35120578703703703,-0.0,0.006879435708096197,0.0,0.0,0.0,-0.0,-16.425,1563.8378,148.93283 -1.5698441713106013,0.005684004766033694,1.5698441713106013,0.0,0.3519482638888889,-0.0,0.006219645702778614,0.0,0.0,0.0,-0.0,-17.7,1562.2408,148.91818 -1.52948518148609,0.006140154173992955,1.52948518148609,0.0,0.35200787037037035,-0.0,0.006725477165165462,0.0,0.0,0.0,-0.0,-16.735,1560.6854,148.88945 -1.4910839399220086,0.011001271343472887,1.4910839399220086,0.0,0.35284641203703704,-0.0,0.012061726578175749,3.32,0.0,3.32,-0.0,-9.255,1559.1669,150.58226 -1.4544909476984758,0.011110471028647956,1.4544909476984758,0.0,0.3541518518518519,-0.0,0.01219305679280343,1.92,0.0,1.92,-0.0,-9.16,1557.683,153.21165 -1.4197156136502393,0.005832903382214119,1.4197156136502393,0.0,0.35571446759259256,-0.0,0.006407196240322192,0.0,0.0,0.0,-0.0,-17.465,1556.2378,154.11574 -1.3866075820948913,0.006675825346003123,1.3866075820948913,0.0,0.35600000000000004,-0.0,0.007339756339997918,0.67,0.0,0.67,-0.0,-15.785,1554.8286,154.47882 -1.354950011423318,0.010813893676434453,1.354950011423318,0.0,0.3564643518518519,-0.0,0.011899924364741798,5.18,0.0,5.18,-0.0,-9.57,1553.4493,157.32834 -1.3246242799339947,0.013429882160757523,1.3246242799339947,0.0,0.35815185185185183,-0.0,0.014791506000293084,0.0,0.0,0.0,-0.0,-6.71,1552.0975,159.77449 -1.3238853152335524,0.0200141099570827,1.3238853152335524,10.938313845076289,0.3599482638888889,-3.393065528292982e-6,0.022043766310379905,10.94,10.938317238141817,0.0016827618581818648,-0.0,-1.2149999999999999,1552.0642,163.99522 -1.4559901311682608,0.025338599766860214,1.4559901311682608,5.320256944911485,0.36000787037037035,5.280256944911485,0.02780645239707311,0.04,0.04,0.0,-0.0,2.1500000000000004,1557.7445,162.44038 -1.7901287918329825,0.02742870240106417,1.7901287918329825,22.708178551228837,0.36121863425925926,7.968178551228837,0.02986358332920027,14.74,14.74,0.0,-0.0,3.155,1570.0828,156.09734 -2.2059220506490926,0.016711466281802798,2.2059220506490926,2.3063909280196525e-8,0.3637142361111111,-0.0,0.01805155961170737,26.72,2.3063909280196525e-8,26.71999997693609,-0.0,-4.18,1582.5558,162.267 -2.1269175456887237,0.008653115371239464,2.1269175456887237,0.0,0.36400011574074076,-0.0,0.009359891322631797,2.84,0.0,2.84,-0.0,-12.98,1580.3777,177.03802 -2.0534606525261196,0.009772601673544651,2.0534606525261196,0.0,0.36521898148148146,-0.0,0.010584874343609945,1.83,0.0,1.83,-0.0,-11.43,1578.2787,179.11577 -1.9848235351222097,0.013707487234923033,1.9848235351222097,0.0,0.36771435185185186,-0.0,0.014865940448964964,8.98,0.0,8.98,-0.0,-7.0,1576.2484,184.5634 -1.9400592594548576,0.02107025082950017,1.9400592594548576,14.989694087117194,0.3680083333333333,-2.3524267302646587e-5,0.022870715651896144,14.99,14.989717611384496,0.00028238861550397787,-0.0,-1.005,1574.8861,195.62871 -1.9433892186272093,0.014757463262315211,1.9433892186272093,0.0,0.3696696759259259,-0.0,0.01601745518810415,2.23,0.0,2.23,-0.0,-6.055,1574.9885,201.8994 -1.8816592750816399,0.017981874421459237,1.8816592750816399,1.4587564675659902e-5,0.3719483796296296,-3.171919698460394e-15,0.019541084156235202,5.96,1.4587564678831822e-5,5.959985412435321,-0.0,-3.385,1573.0608,205.45177 -1.8238090042330497,0.010353814853311813,1.8238090042330497,0.0,0.37211041666666667,-0.0,0.011264949578116128,8.4,0.0,8.4,-0.0,-10.86,1571.1959,208.76845 -1.7694544623065878,0.008728103247421928,1.7694544623065878,0.0,0.3746479166666667,-0.0,0.009507108737397508,0.0,0.0,0.0,-0.0,-13.149999999999999,1569.389,211.34476 -1.71823290049767,0.012622309129989859,1.71823290049767,0.0,0.3760002314814815,-0.0,0.013764268214856516,2.0,0.0,2.0,-0.0,-8.34,1567.6348,213.26831 -1.6698110436278442,0.015236640460468173,1.6698110436278442,5.551115123125783e-17,0.3772188657407407,-0.0,0.016633235573646717,1.0,5.551115123125783e-17,1.0,-0.0,-5.815,1565.9276,214.61235 -1.6240180320627824,0.013065074586808532,1.6240180320627824,0.0,0.3799997685185186,-0.0,0.014277764681054895,0.0,0.0,0.0,-0.0,-7.99,1564.267,215.1001 -1.5807275527470843,0.009401542674641692,1.5807275527470843,0.0,0.3804640046296296,-0.0,0.01028479523818926,0.0,0.0,0.0,-0.0,-12.334999999999999,1562.6534,215.10611 -1.539676429701618,0.013861461024145861,1.539676429701618,0.0,0.383714699074074,-0.0,0.015178976349337393,0.0,0.0,0.0,-0.0,-7.295,1561.082,215.10611 -1.500638911738988,0.014607310317819113,1.500638911738988,0.0,0.38400833333333334,-0.0,0.01601144824072643,0.0,0.0,0.0,-0.0,-6.58,1559.5483,215.05652 -1.4635331911090677,0.012307000012317349,1.4635331911090677,0.0,0.3866476851851852,-0.0,0.01350296515872863,0.0,0.0,0.0,-0.0,-8.97,1558.0531,215.03685 -1.4282175837156599,0.013523311399542989,1.4282175837156599,0.0,0.38799999999999996,-0.0,0.014851379537314167,0.56,0.0,0.56,-0.0,-7.74,1556.5944,215.30237 -1.394523567826939,0.015588141490202548,1.394523567826939,2.375877272697835e-16,0.3901519675925926,-0.0,0.017134682716647802,4.28,2.375877272697835e-16,4.28,-0.0,-5.87,1555.1686,217.75842 -1.362390048956444,0.012368703999775632,1.362390048956444,0.0,0.39200034722222227,-0.0,0.013608018335330692,0.0,0.0,0.0,-0.0,-9.05,1553.7764,219.89027 -1.3316854643054707,0.016550272538498414,1.3316854643054707,6.340927782844119e-14,0.3936696759259259,-0.0,0.018224537240552393,1.14,6.340927782844119e-14,1.1399999999999364,-0.0,-5.145,1552.415,220.23982 -1.397956893953217,0.02394574826621286,1.397956893953217,11.470197749226784,0.39600023148148145,-0.05980223677923426,0.0263189847890337,11.53,11.529999986006018,1.3993981179960534e-8,-0.0,-0.040000000000000036,1555.3154,222.35806 -1.6779130020202877,0.025702060740625577,1.6779130020202877,13.964284969579833,0.3972188657407407,1.7742849695820642,0.028052741072202222,12.19,12.189999999997768,2.2303403568457724e-12,-0.0,0.8399999999999999,1566.2167,221.73047 -2.0026732408727055,0.022571623886449062,2.0026732408727055,12.467768586473545,0.40000023148148145,-2.9519377129960896e-6,0.024470906329942543,12.47,12.467771538411258,0.00222846158874348,-0.0,-1.23,1576.7831,221.61781 -1.96503513258514,0.013756247419544513,1.96503513258514,0.0,0.4012189814814815,-0.0,0.014924487235133645,0.0,0.0,0.0,-0.0,-8.125,1575.65,227.08086 -1.9020654650255113,0.010376790630731419,1.9020654650255113,0.0,0.40399999999999997,-0.0,0.011271947118044271,0.0,0.0,0.0,-0.0,-11.925,1573.705,227.10857 -1.8430753935876885,0.00787079460241655,1.8430753935876885,0.0,0.40521898148148144,-0.0,0.008560004763215992,0.0,0.0,0.0,-0.0,-15.48,1571.8235,227.10857 -1.7876934920310437,0.00611813374713981,1.7876934920310437,0.0,0.4080003472222223,-0.0,0.006661593227451063,0.0,0.0,0.0,-0.0,-18.67,1570.0015,227.10857 -1.7355643221944006,0.005487377382530394,1.7355643221944006,0.0,0.40966990740740744,-0.0,0.005981541611320539,0.0,0.0,0.0,-0.0,-20.025,1568.2341,227.16689 -1.6863644725112483,0.005802819559226376,1.6863644725112483,0.0,0.41200046296296294,-0.0,0.006332325511707799,0.0,0.0,0.0,-0.0,-19.405,1566.5167,227.53386 -1.639835915564302,0.009534943185816653,1.639835915564302,0.0,0.41464768518518513,-0.0,0.010416114734088306,0.79,0.0,0.79,-0.0,-13.280000000000001,1564.8458,228.04063 -1.5957388548721252,0.011746559725419083,1.5957388548721252,0.0,0.4159996527777778,-0.0,0.012845481086595372,0.25,0.0,0.25,-0.0,-10.6,1563.2179,228.45435 -1.5538499926345182,0.016286528888211242,1.5538499926345182,0.0,0.419205324074074,-0.0,0.017828294266150693,0.1,0.0,0.1,-0.0,-6.31,1561.6293,228.62921 -1.5140166957797057,0.01800310043594196,1.5140166957797057,4.930722496965245e-14,0.41999976851851856,-0.0,0.019726956640854616,0.12,4.930722496965245e-14,0.11999999999995069,-0.0,-4.945,1560.0784,228.70473 -1.476160719052441,0.01648869581185306,1.476160719052441,0.0,0.42400011574074076,-0.0,0.01808507291112261,11.63,0.0,11.63,-0.0,-6.27,1558.5662,234.52164 -1.4402548142367102,0.009286251923069113,1.4402548142367102,0.0,0.42400011574074076,-0.0,0.010194933330427257,9.59,0.0,9.59,-0.0,-13.84,1557.0956,245.37903 -1.4061675939066849,0.005616531904613383,1.4061675939066849,0.0,0.428,-0.0,0.0061717923434428485,0.0,0.0,0.0,-0.0,-20.175,1555.6652,250.27385 -1.3736787195534397,0.0068788421509208405,1.3736787195534397,0.0,0.42846388888888887,-0.0,0.007565686014907456,0.0,0.0,0.0,-0.0,-17.71,1554.2692,250.32365 -1.3426017073427337,0.010736174766826373,1.3426017073427337,0.0,0.43200000000000005,-0.0,0.011818559874413099,0.0,0.0,0.0,-0.0,-12.18,1552.9026,250.27397 -1.3128394514583168,0.012228378221711283,1.3128394514583168,0.0,0.4336695601851852,-0.0,0.013472817083262555,0.0,0.0,0.0,-0.0,-10.52,1551.5638,250.24641 -1.2843169906097045,0.014006303132788852,1.2843169906097045,0.0,0.43600011574074077,-0.0,0.015444732861756282,0.42,0.0,0.42,-0.0,-8.78,1550.2521,250.47165 -1.2569664785433052,0.016134167297887466,1.2569664785433052,0.0,0.4399488425925926,-0.0,0.01780589126120156,2.94,0.0,2.94,-0.0,-6.984999999999999,1548.9666,252.157 -1.2308096101435153,0.008998051727511499,1.2308096101435153,0.0,0.4400003472222222,-0.0,0.009938432747884807,0.0,0.0,0.0,-0.0,-14.635,1547.7107,253.35524 -1.205793361210017,0.007359010157691806,1.205793361210017,0.0,0.4440001157407408,-0.0,0.008134541271109283,0.0,0.0,0.0,-0.0,-17.255,1546.4844,253.37315 -1.181785495462894,0.0070929456325787375,1.181785495462894,0.0,0.4440081018518519,-0.0,0.007846531340053994,0.0,0.0,0.0,-0.0,-17.7,1545.2833,253.41202 -1.1587245007972382,0.007425891144720221,1.1587245007972382,0.0,0.4480001157407407,-0.0,0.008221111602810416,2.51,0.0,2.51,-0.0,-17.235,1544.1064,254.58577 -1.136550180373892,0.005462263802709867,1.136550180373892,0.0,0.4501516203703704,-0.0,0.006051726761342185,1.8,0.0,1.8,-0.0,-21.015,1542.9525,256.73502 -1.115205888105496,0.006951017468418161,1.115205888105496,0.0,0.452,-0.0,0.00770679519559439,2.83,0.0,2.83,-0.0,-18.14,1541.8203,259.23953 -1.0946181351549555,0.009141122293677086,1.0946181351549555,0.0,0.45599953703703705,-0.0,0.010142348236959722,0.52,0.0,0.52,-0.0,-14.83,1540.7075,260.86887 -1.0747245452580896,0.012566294852054093,1.0747245452580896,0.0,0.45599953703703705,-0.0,0.013952598839576015,0.0,0.0,0.0,-0.0,-10.719999999999999,1539.6122,261.11963 -1.0554470411941774,0.01977113955569131,1.0554470411941774,0.0,0.46,-0.0,0.021967699578789003,0.0,0.0,0.0,-0.0,-4.715,1538.5312,261.1224 -1.0367674742732953,0.020955982959693087,1.0367674742732953,0.0,0.4604638888888889,-0.0,0.02330032848960853,0.0,0.0,0.0,-0.0,-3.9099999999999997,1537.4648,261.1224 -1.0187641219770969,0.016668202532075606,1.0187641219770969,0.0,0.463999537037037,-0.0,0.018545493098316584,0.0,0.0,0.0,-0.0,-7.155,1536.4187,261.1224 -1.001417222341274,0.014488326131011578,1.001417222341274,0.0,0.46799976851851854,-0.0,0.016130871784865095,0.0,0.0,0.0,-0.0,-9.145000000000001,1535.3931,261.1224 -0.9881718481689586,0.012506784728008822,0.9881718481689586,0.0,0.46799976851851854,-0.0,0.013931897671752526,0.0,0.0,0.0,-0.0,-11.08,1534.5979,261.0632 -1.0100761436163814,0.019603912089495485,1.0100761436163814,1.6933121571582888e-13,0.4719996527777777,-0.0,0.021819106570312132,3.72,1.6933121571582888e-13,3.719999999999831,-0.0,-5.165,1535.9072,260.34854 -1.0523342314336253,0.03277402579592446,1.0523342314336253,6.53013871003741,0.4719996527777777,5.24013871003741,0.03641937300543589,1.29,1.29,0.0,-0.0,2.135,1538.3549,259.03372 -1.0847909120363834,0.030193813760696447,1.0847909120363834,1.97286400983099,0.4760001157407408,1.6528640098310818,0.03351265306002415,0.32,0.3199999999999082,9.181988502859894e-14,-0.0,0.7950000000000004,1540.169,257.38327 -1.1775007296615523,0.0349120633367054,1.1775007296615523,9.998359011986388,0.4800005787037037,6.898359011986387,0.03862669655225941,3.1,3.1,0.0,-0.0,2.755,1545.0664,253.05795 -1.3882382523932384,0.03310846628601023,1.3882382523932384,12.958128589197479,0.4800005787037037,4.558128589197479,0.03639956005323294,8.4,8.4,0.0,-0.0,1.88,1554.8988,247.74873 -1.6088327803173748,0.02649375389527204,1.6088327803173748,10.416552031306843,0.4840002314814815,-1.5484250722793349e-7,0.028963271469572054,10.46,10.41655218614935,0.04344781385065109,-0.0,-1.5450000000000002,1563.7059,246.77138 -1.597047354772602,0.02031265925645149,1.597047354772602,2.2128965326828623e-14,0.4840002314814815,-0.0,0.022212266066619427,1.32,2.2128965326828623e-14,1.3199999999999779,-0.0,-5.265,1563.2668,251.37312 -1.5549652151072317,0.01742166315988116,1.5549652151072317,0.0,0.48800034722222224,-0.0,0.01907036286507257,0.0,0.0,0.0,-0.0,-7.46,1561.6721,252.05142 -1.5151157170525587,0.015581505244997062,1.5151157170525587,0.0,0.4919994212962963,-0.0,0.017073011484497958,0.0,0.0,0.0,-0.0,-9.055,1560.1217,252.13351 -1.4772835935341921,0.014176313539136653,1.4772835935341921,0.0,0.4919994212962963,-0.0,0.015548360966128355,0.0,0.0,0.0,-0.0,-10.295,1558.6116,252.1676 -1.4412590474508862,0.016040495680436178,1.4412590474508862,0.0,0.4959997685185185,-0.0,0.017609624831494534,0.0,0.0,0.0,-0.0,-8.75,1557.1372,252.172 -1.4068345811863154,0.024166351826443944,1.4068345811863154,-4.3059231811103483e-14,0.4959997685185185,-4.3059231811103483e-14,0.026554997378853643,0.0,0.0,0.0,-0.0,-3.12,1555.6935,252.16502 -1.3860805058268508,0.031147388971743354,1.3860805058268508,0.5275372551105658,0.4999997685185186,0.5275372551105658,0.034245590967538354,0.0,0.0,0.0,-0.0,0.395,1554.8059,251.78154 -1.4465390750544167,0.03496132300317491,1.4465390750544167,6.078601598172964,0.503999537037037,4.718601598172964,0.038375961828518525,1.36,1.36,0.0,-0.0,1.94,1557.3556,248.73111 -1.543028653013673,0.03526325146457235,1.543028653013673,4.959311053329303,0.503999537037037,4.959311053329303,0.038611768907122784,0.0,0.0,0.0,-0.0,2.0300000000000002,1561.2119,243.98392 -1.6370428198254383,0.036074411749210285,1.6370428198254383,5.454102626518279,0.5079996527777778,5.454102626518279,0.03941079166501231,0.0,0.0,0.0,-0.0,2.215,1564.744,238.82076 -1.7003792802020574,0.034774996344258305,1.7003792802020574,3.956353790050162,0.5079996527777778,3.956353790050162,0.03793623724781548,0.0,0.0,0.0,-0.0,1.655,1567.011,234.81805 -1.6960160033048413,0.029979479738595945,1.6960160033048413,-0.0008127163446313701,0.511999537037037,-0.0008127163446313701,0.03270798424601444,0.0,0.0,0.0,-0.0,-0.6099999999999999,1566.8575,233.21288 -1.6489717098688983,0.029024657078203224,1.6489717098688983,-5.14919982441723e-6,0.5159998842592592,-5.14919982441723e-6,0.031700248814492724,0.0,0.0,0.0,-0.0,-1.1700000000000004,1565.1776,233.19128 -1.6262270395788605,0.0355282646373942,1.6262270395788605,4.250555119943461,0.5159998842592592,4.250555119943461,0.03882395586976403,0.0,0.0,0.0,-0.0,1.7650000000000006,1564.3481,232.35638 -1.7495123307685745,0.0403369694719386,1.7495123307685745,8.850779671069716,0.520000462962963,8.850779671069716,0.04395610527715155,0.0,0.0,0.0,-0.0,3.4849999999999994,1568.7122,226.2643 -2.09020174216648,0.048763474667295276,2.09020174216648,16.219161747309755,0.520000462962963,16.219161747309755,0.05278114698413539,0.0,0.0,0.0,-0.0,6.24,1579.3378,213.6828 -2.67004070868744,0.051901267155115755,2.67004070868744,18.077973196669753,0.5240002314814816,18.077973196669753,0.05566214696306495,0.0,0.0,0.0,-0.0,6.935,1593.9592,196.6541 -3.3600102758348616,0.044849713836506086,3.3600102758348616,15.088583030589753,0.5279998842592593,11.498583030589753,0.047688940180018215,3.59,3.59,0.0,-0.0,4.475,1607.6859,181.99878 -3.7403932413432113,0.03880869849082571,3.7403932413432113,5.587830071792396,0.5279998842592593,5.587830071792396,0.04110175294684807,0.0,0.0,0.0,-0.0,2.265,1614.0907,173.6135 -3.9634577566579554,0.04273875295692663,3.9634577566579554,9.024625346189735,0.5319998842592593,9.024625346189735,0.04516721573005571,0.0,0.0,0.0,-0.0,3.5500000000000003,1617.55,166.36763 -4.261629663738645,0.036475692573864515,4.261629663738645,8.022449602983198,0.5319998842592593,2.6724496029832334,0.03844532509614297,5.35,5.349999999999965,3.44502204541186e-14,-0.0,1.1749999999999998,1621.8818,161.01733 -4.406622366216077,0.036169383050781954,4.406622366216077,4.632818673867485,0.5359994212962963,2.0028186738676905,0.03807556883753371,2.63,2.6299999999997943,2.057060077831352e-13,-0.0,0.925,1623.8799,158.5493 -4.562839263922954,0.04031585263741584,4.562839263922954,8.208894169687802,0.5395353009259259,5.9488941696878035,0.04238626073430364,2.26,2.26,0.0,-0.0,2.4,1625.9603,154.46344 -4.72087754309916,0.03763759714455126,4.72087754309916,5.607340591077367,0.54,3.16734059107737,0.03952103873372769,2.44,2.4399999999999977,2.438049762076844e-15,-0.0,1.3599999999999999,1627.9938,150.0023 -4.525721850551208,0.03418892274988738,4.525721850551208,-0.03906461647695486,0.5439997685185185,-0.03906461647695486,0.035955471013402136,0.0,0.0,0.0,-0.0,-0.1200000000000001,1625.4725,148.94405 -4.261525133695689,0.03690398605314202,4.261525133695689,2.2575302913785062,0.5439997685185185,2.2575302913785062,0.038896780909560336,0.0,0.0,0.0,-0.0,1.02,1621.8804,148.1409 -4.339511726521333,0.04364032350368877,4.339511726521333,8.54320655354964,0.5479999999999999,8.54320655354964,0.045966183021221144,0.0,0.0,0.0,-0.0,3.37,1622.9634,142.7545 -4.8967553274156135,0.05197757575166757,4.8967553274156135,15.256324162029756,0.5498481481481481,15.256324162029756,0.054505475638672723,0.0,0.0,0.0,-0.0,5.880000000000001,1630.1782,130.91493 -6.1946404910220645,0.06443813514088137,6.1946404910220645,23.58754382354975,0.5520004629629629,23.58754382354975,0.06699501229281808,0.0,0.0,0.0,-0.0,8.995,1644.2191,111.339355 -7.663032391343062,0.053245054624420675,7.663032391343062,15.782596719629755,0.5559922453703704,15.122596719629755,0.05493335934767687,0.66,0.66,0.0,-0.0,5.83,1656.923,91.934105 -8.484004786277605,0.0482541500344585,8.484004786277605,12.733791493709752,0.5560002314814815,11.003791493709752,0.04960224886119757,1.73,1.73,0.0,-0.0,4.289999999999999,1663.001,78.85134 -9.77106826369764,0.04503962881122588,9.77106826369764,22.56758738762786,0.56,7.767587387627861,0.04606427524799889,14.8,14.8,0.0,-0.0,3.08,1671.436,69.4345 -11.113078755601375,0.04561835085862736,11.113078755601375,14.468533249389157,0.5600517361111111,8.088533249389158,0.04644260538212606,6.38,6.38,0.0,-0.0,3.1999999999999997,1679.1218,61.436775 -11.623871970521826,0.05288555348088844,11.623871970521826,13.66496759746975,0.5639996527777777,13.66496759746975,0.05375519920405655,0.0,0.0,0.0,-0.0,5.284999999999999,1681.8055,50.550697 -12.588048498230393,0.06197759751734556,12.588048498230393,19.856548180589755,0.5663305555555556,19.856548180589755,0.06281899666683574,0.0,0.0,0.0,-0.0,7.6,1686.5645,33.80131 -13.88615690601069,0.06386892424240181,13.88615690601069,14.559528350830078,0.5679997685185185,14.559528350830078,0.06451180615832436,0.0,0.0,0.0,-0.0,7.965,1692.4257,14.559528 -12.904535468179402,0.052907593766202,12.904535468179402,5.344181060791016,0.5715351851851852,5.344181060791016,0.053578750755532166,0.0,0.0,0.0,-0.0,5.035,1688.0474,5.344181 -11.154384112087978,0.05427004308372354,11.154384112087978,1.9615703761806111,0.5719994212962963,1.9615703761806111,0.0552433313100477,0.0,0.0,0.0,-0.0,5.485,1679.3434,1.9615704 -9.569262583793494,0.06571721543487953,9.569262583793494,0.7192367198637969,0.5760005787037037,0.7192367198637969,0.06726243012048484,0.0,0.0,0.0,-0.0,8.395,1670.1897,0.7197749 -8.302805292997352,0.06749889323474309,8.302805292997352,0.40138489106796316,0.5760005787037037,0.25138489106796313,0.06943847637891683,0.15,0.15,0.0,-0.0,8.889999999999999,1661.7117,0.2685296 -7.613928531828378,0.05778297031433528,7.613928531828378,5.056633409214465,0.5800003472222222,0.08663340921446504,0.059628980275409874,4.97,4.97,0.0,-0.0,6.4350000000000005,1656.5391,0.11426664 -7.1311599335387195,0.04411065730520784,7.1311599335387195,2.0363253195912416,0.5807946759259259,0.03632531959124173,0.04562762533729282,2.0,2.0,0.0,-0.0,2.3999999999999995,1652.6271,0.05689068 -6.464312043769191,0.041912015277196936,6.464312043769191,0.017809538693494487,0.5840005787037037,0.017809538693494487,0.04350772778031455,0.0,0.0,0.0,-0.0,1.6199999999999999,1646.7639,0.030886713 -5.8309793437757635,0.039375213556187935,5.8309793437757635,0.009494733311242504,0.5853530092592593,0.009494733311242504,0.041027760038816675,0.0,0.0,0.0,-0.0,0.73,1640.6061,0.017531067 -5.3092760633215175,0.04596544553016579,5.3092760633215175,0.005330340675662288,0.5880002314814815,0.005330340675662288,0.04805854832684009,0.0,0.0,0.0,-0.0,2.9850000000000003,1635.0085,0.010146378 -4.857884687534156,0.059879977351193436,4.857884687534156,0.00305448910990276,0.5903311342592593,0.00305448910990276,0.06281054442481213,0.0,0.0,0.0,-0.0,6.96,1629.7023,0.005933026 -4.482891278285809,0.07291560956901692,4.482891278285809,0.0017243300136187648,0.5920008101851852,0.0017243300136187648,0.07670997245245958,0.0,0.0,0.0,-0.0,10.02,1624.9047,0.0033911655 -4.43965831205963,0.06680144218709586,4.43965831205963,7.561013778744645,0.5943310185185184,0.0010137787446452765,0.07030267707657428,7.56,7.56,0.0,-0.0,8.595,1624.3259,0.0020074097 -4.785280515522956,0.0690769506758994,4.785280515522956,11.790598541729942,0.5959997685185184,0.000598541729942999,0.0724976291013058,11.79,11.79,0.0,-0.0,9.03,1628.803,0.001190003 -4.68203427978337,0.08677727705791204,4.68203427978337,0.00034884130842932436,0.5987809027777777,0.00034884130842932436,0.09114736635280618,0.0,0.0,0.0,-0.0,12.58,1627.5004,0.00069526565 -4.56818655283723,0.09407026788751083,4.56818655283723,6.380207649444955,0.5999998842592592,0.00020764944495561577,0.09889696289869675,6.38,6.38,0.0,-0.0,13.865,1626.0303,0.0004144401 -4.47553010664109,0.07736286462825438,4.47553010664109,0.0001242905939029982,0.6027810185185185,0.0001242905939029982,0.08139356876064387,0.0,0.0,0.0,-0.0,10.67,1624.8065,0.000248273 -4.507110693284664,0.061477864281560934,4.507110693284664,6.990073696578193,0.6039996527777778,7.369657819310057e-5,0.06466422749497233,6.99,6.99,0.0,-0.0,7.055,1625.2264,0.00014728469 -4.421880089142153,0.054415060627456956,4.421880089142153,4.408477054703751e-5,0.6063304398148148,4.408477054703751e-5,0.05727554290615785,0.0,0.0,0.0,-0.0,5.15,1624.0863,8.8130706e-5 -4.111949637535115,0.0727010533127992,4.111949637535115,2.6252174940700762e-5,0.6079995370370371,2.6252174940700762e-5,0.07672781518193635,0.0,0.0,0.0,-0.0,9.604999999999999,1619.7466,5.2490574e-5 -3.9098835592725436,0.07892142020094874,3.9098835592725436,1.8700154745631328,0.6098476851851852,1.547456313265642e-5,0.08344775041114844,1.87,1.87,0.0,-0.0,10.88,1616.7373,3.094434e-5 -3.815107668637964,0.08305685652411493,3.815107668637964,2.7100091102814603,0.6120002314814815,9.110281460322537e-6,0.08790003874884525,2.71,2.71,0.0,-0.0,11.65,1615.2719,1.8218903e-5 -3.817892654432378,0.08094689494233583,3.817892654432378,5.170004627171521,0.6133524305555556,4.627171521434849e-6,0.08566473064396717,5.17,5.17,0.0,-0.0,11.204999999999998,1615.3154,9.253915e-6 -3.7523086017831457,0.07997301070691457,3.7523086017831457,2.0126470068610336e-6,0.6159914351851852,2.0126470068610336e-6,0.08468833776351384,0.0,0.0,0.0,-0.0,10.955,1614.2806,4.025213e-6 -3.5334634252547756,0.08850174285032095,3.5334634252547756,1.1572524041941074e-6,0.6162851851851852,1.1572524041941074e-6,0.09392875178415656,0.0,0.0,0.0,-0.0,12.6,1610.6919,2.314478e-6 -3.3323505716885733,0.09134859391649557,3.3323505716885733,6.744386394105774e-7,0.6195356481481481,6.744386394105774e-7,0.09716128175181944,0.0,0.0,0.0,-0.0,13.059999999999999,1607.1923,1.3488682e-6 -3.331792078805919,0.09269952615812847,3.331792078805919,3.250000391953479,0.6199998842592592,3.9195347916512466e-7,0.09859879051053823,3.25,3.25,0.0,-0.0,13.285,1607.1823,7.839039e-7 -3.878426558209708,0.08325421988387618,3.878426558209708,22.950000216347217,0.6227818287037037,2.163472165752723e-7,0.08805532143424594,22.95,22.95,0.0,-0.0,11.399999999999999,1616.2549,4.326935e-7 -4.901281561188096,0.07222352604938499,4.901281561188096,14.94000012880397,0.6240006944444445,1.2880397085937045e-7,0.07573351292250191,14.94,14.94,0.0,-0.0,8.995000000000001,1630.2334,2.576076e-7 -5.51038528013788,0.07551080489471279,5.51038528013788,8.670000076769867,0.6253526620370371,7.676986722422533e-8,0.07884223068068119,8.67,8.67,0.0,-0.0,9.59,1637.2289,1.5353962e-7 -6.267979579771359,0.08086349198299254,6.267979579771359,15.03000004354255,0.6278895833333333,4.354255031781859e-8,0.08403619583657498,15.03,15.03,0.0,-0.0,10.530000000000001,1644.922,8.708506e-8 -6.600718535877612,0.07993964937156567,6.600718535877612,4.39000002482835,0.6280518518518519,2.48283499898004e-8,0.08292039026871664,4.39,4.39,0.0,-0.0,10.315,1648.011,4.9656688e-8 -6.514584989303639,0.07572560489283409,6.514584989303639,6.000000014829864,0.6303303240740741,1.4829863982275815e-8,0.07858662089878309,6.0,6.0,0.0,-0.0,9.415,1647.2266,2.9659724e-8 -6.195235638131619,0.06991626676980292,6.195235638131619,0.2000000086637496,0.6319916666666667,8.663749580068185e-9,0.07269026015618629,0.2,0.2,0.0,-0.0,8.16,1644.2249,1.7327498e-8 -5.648545596707108,0.07318629164621444,5.648545596707108,4.536653481078874e-9,0.6322856481481481,4.536653481078874e-9,0.07634620105862565,0.0,0.0,0.0,-0.0,8.915,1638.7078,9.0733066e-9 -5.1524876507728825,0.08088710756133302,5.1524876507728825,2.552411014411634e-9,0.6347809027777778,2.552411014411634e-9,0.08466311570129201,0.0,0.0,0.0,-0.0,10.475000000000001,1633.2184,5.104822e-9 -4.799680660775264,0.0994656604432482,4.799680660775264,1.120000001467431,0.6360001157407408,1.4674308650382906e-9,0.10437968303135434,1.12,1.12,0.0,-0.0,13.795,1628.9824,2.9348617e-9 -4.47705811096356,0.11585328754611501,4.47705811096356,8.583649420539547e-10,0.6362856481481481,8.583649420539547e-10,0.12188786263689487,0.0,0.0,0.0,-0.0,16.33,1624.8269,1.7167299e-9 -4.166887005411563,0.10039783436577832,4.166887005411563,4.4926301769664214e-10,0.6387810185185185,4.4926301769664214e-10,0.10590683981778086,0.0,0.0,0.0,-0.0,13.96,1620.5392,8.9852603e-10 -3.8870614515311783,0.11532937936704764,3.8870614515311783,2.1944857090812705e-10,0.6399917824074074,2.1944857090812705e-10,0.12197016748138363,0.0,0.0,0.0,-0.0,16.245,1616.3877,4.3889714e-10 -3.7053962691245275,0.09448163466358464,3.7053962691245275,1.1390559342057545e-10,0.6400512731481481,1.1390559342057545e-10,0.10009900124136573,0.0,0.0,0.0,-0.0,13.015,1613.5293,2.2781119e-10 -3.640315744664898,0.1160124476496955,3.640315744664898,3.9500000000210878,0.6418483796296296,2.108773919818389e-11,0.12299058276658338,3.95,3.95,0.0,-0.0,16.335,1612.4711,4.217548e-11 -3.5850587643991667,0.1322120898236462,3.5850587643991667,1.7999999999621878,0.6435354166666667,-3.781214923073359e-11,0.14024407868186425,1.8,1.8,0.0,-0.0,18.485,1611.5576,-7.56243e-11 -3.445895610457652,0.10393011546498643,3.445895610457652,-4.110375232933247e-11,0.6439998842592592,-4.110375232933247e-11,0.1104059329564555,0.0,0.0,0.0,-0.0,14.505,1609.1932,-8.2207505e-11 -3.389153223060509,0.10838648661479451,3.389153223060509,3.8599999999767225,0.6442856481481481,-2.3277525734854434e-11,0.11521097012349113,3.86,3.86,0.0,-0.0,15.195,1608.2017,-4.655505e-11 -3.4407576530065382,0.08541694521029441,3.4407576530065382,5.119999999987363,0.6458482638888889,-1.263685596976276e-11,0.09074424426621357,5.12,5.12,0.0,-0.0,11.3,1609.1041,-2.5273712e-11 -3.414491524351787,0.09589272859012238,3.414491524351787,-7.1187348545593245e-12,0.6471538194444444,-7.1187348545593245e-12,0.10190236496272771,0.0,0.0,0.0,-0.0,13.125,1608.6465,-1.423747e-11 -3.2484916828375883,0.12237997779423276,3.2484916828375883,-3.242038798776189e-12,0.6479927083333333,-3.242038798776189e-12,0.13029064466890694,0.0,0.0,0.0,-0.0,17.135,1605.6702,-6.4840776e-12 -3.067289071890402,0.13351325192266372,3.067289071890402,-1.5094113025215558e-12,0.6480521990740741,-1.5094113025215558e-12,0.14244766874259113,0.0,0.0,0.0,-0.0,18.63,1602.2424,-3.0188226e-12 -3.0553748324843046,0.11150411479159313,3.0553748324843046,4.569999999999168,0.6487947916666666,-8.322152103661238e-13,0.11898298767571368,4.57,4.57,0.0,-0.0,15.61,1602.01,-1.6644304e-12 -3.242938713651729,0.0890756252742161,3.242938713651729,8.989999999999595,0.6498487268518519,-4.043535525925399e-13,0.0948395268474074,8.99,8.99,0.0,-0.0,11.905000000000001,1605.568,-8.087071e-13 -3.6443882221833657,0.10140369705734033,3.6443882221833657,10.20999999999977,0.6507814814814814,-2.313415843434507e-13,0.10749866601780449,10.21,10.21,0.0,-0.0,13.9,1612.5378,-4.6268317e-13 -4.560004849624062,0.10817478143346228,4.560004849624062,24.739999999999863,0.6515357638888889,-1.3571626732571435e-13,0.11373265947938332,24.74,24.74,0.0,-0.0,14.8,1625.9232,-2.7143253e-13 -5.224615238952088,0.11625210409901045,5.224615238952088,3.069999999999919,0.6519921296296297,-8.074601778216494e-14,0.12161721616894125,3.07,3.07,0.0,-0.0,15.89,1634.0486,-1.6149204e-13 -4.965607510110102,0.1251177674271804,4.965607510110102,1.569999999999952,0.6520001157407407,-4.805154551706882e-14,0.13113572098745316,1.57,1.57,0.0,-0.0,17.14,1631.0121,-9.610309e-14 -4.637013473615915,0.10806247138753831,4.637013473615915,-2.85584510412688e-14,0.6520517361111111,-2.85584510412688e-14,0.11354473655734208,0.0,0.0,0.0,-0.0,14.760000000000002,1626.9233,-5.71169e-14 -4.312779974438606,0.1053660018210684,4.312779974438606,-9.251691955395823e-15,0.6522856481481482,-9.251691955395823e-15,0.11100683992301662,0.0,0.0,0.0,-0.0,14.385,1622.5944,-1.8503384e-14 -4.020477072547778,0.12084070388880502,4.020477072547778,9.139325411647706e-15,0.6527943287037037,9.139325411647706e-15,0.12763969332762998,0.0,0.0,0.0,-0.0,16.669999999999998,1618.4031,1.827865e-14 -3.7587568274982073,0.14365823483040793,3.7587568274982073,2.1413455386582498e-14,0.653352662037037,2.1413455386582498e-14,0.1521188743569468,0.0,0.0,0.0,-0.0,19.605,1614.3832,4.282691e-14 -3.526168974523023,0.16622613464957017,3.526168974523023,2.236955229612568e-14,0.653848611111111,2.236955229612568e-14,0.17643279384343868,0.0,0.0,0.0,-0.0,22.14,1610.5685,4.4739105e-14 -3.4495743059192914,0.17766609264988717,3.4495743059192914,1.3381337562265767e-14,0.653848611111111,1.3381337562265767e-14,0.18872887736234709,0.0,0.0,0.0,-0.0,23.315,1609.257,2.6762675e-14 -3.766855793382147,0.16605803097005872,3.766855793382147,13.810000000000008,0.653848611111111,6.944750289705027e-15,0.17582388958486958,13.81,13.81,0.0,-0.0,22.08,1614.5117,1.3889501e-14 -4.3693375891182615,0.12580368069353373,4.3693375891182615,15.700000000000003,0.6543310185185185,3.883483009318771e-15,0.13247513808332373,15.7,15.7,0.0,-0.0,17.25,1623.3724,7.766966e-15 -4.402678927898537,0.11090907098418307,4.402678927898537,2.2437695249694844e-15,0.6543310185185185,2.2437695249694844e-15,0.11675800515829539,0.0,0.0,0.0,-0.0,15.16,1623.8264,4.487539e-15 -4.235325728237777,0.12651032935386486,4.235325728237777,4.050000000000001,0.653848611111111,1.3301812815219998e-15,0.13337210251532106,4.05,4.05,0.0,-0.0,17.375,1621.5121,2.6603626e-15 -4.068841061527764,0.10810436307517649,4.068841061527764,7.885850269157998e-16,0.653848611111111,7.885850269157998e-16,0.11413639213710078,0.0,0.0,0.0,-0.0,14.8,1619.1172,1.5771701e-15 -3.792846523340245,0.12714933046029112,3.792846523340245,4.615098188388888e-16,0.653352662037037,4.615098188388888e-16,0.1345927386029798,0.0,0.0,0.0,-0.0,17.54,1614.9224,9.230196e-16 -3.564540665060476,0.13790577907081816,3.564540665060476,2.619981961349517e-16,0.653352662037037,2.619981961349517e-16,0.14631478475960794,0.0,0.0,0.0,-0.0,18.945,1611.2148,5.239964e-16 -3.39958831489266,0.14877470278654076,3.39958831489266,8.82,0.6527943287037037,1.4811955299050625e-16,0.15812415204263458,8.82,8.82,0.0,-0.0,20.28,1608.3853,2.962391e-16 -3.3020622691367123,0.16461672343151595,3.3020622691367123,7.026278587306315e-17,0.6522856481481482,7.026278587306315e-17,0.1751510293876001,0.0,0.0,0.0,-0.0,22.055,1606.647,1.4052557e-16 -3.344633781789095,0.15344749375145858,3.344633781789095,5.98,0.6520517361111111,3.6441193731839887e-17,0.16318934441780594,5.98,5.98,0.0,-0.0,20.84,1607.412,7.288239e-17 -3.8460275207736085,0.1385782446841379,3.8460275207736085,15.27,0.6519921296296297,2.1075587589089564e-17,0.14661521528638713,15.27,15.27,0.0,-0.0,19.015,1615.7539,4.2151175e-17 -4.321498486133757,0.11184060333601176,4.321498486133757,7.19,0.6518894675925926,1.2445980353696409e-17,0.1178193061159958,7.19,7.19,0.0,-0.0,15.370000000000001,1622.715,2.489196e-17 -4.500611205949365,0.10304434182476638,4.500611205949365,6.43,0.6511538194444445,7.440560747447163e-18,0.1083908199388443,6.43,6.43,0.0,-0.0,14.025,1625.1403,1.4881121e-17 -4.873120851468783,0.12065648761982158,4.873120851468783,12.19,0.6503311342592593,4.3419475494975034e-18,0.1265469771732902,12.19,12.19,0.0,-0.0,16.59,1629.8893,8.683895e-18 -5.254678267706411,0.128507256364446,5.254678267706411,6.76,0.6493528935185184,2.48531543561355e-18,0.1344097668587764,6.76,6.76,0.0,-0.0,17.62,1634.3912,4.970631e-18 -5.356267390260538,0.1467628065605789,5.356267390260538,5.88,0.6482863425925927,1.4817753669708477e-18,0.1533964901237618,5.88,5.88,0.0,-0.0,19.88,1635.5348,2.9635507e-18 -5.161795710274054,0.12490060124166859,5.161795710274054,8.828297052504155e-19,0.6480008101851852,8.828297052504155e-19,0.13072263963516123,0.0,0.0,0.0,-0.0,17.189999999999998,1633.3262,1.7656594e-18 -4.7682425382941025,0.12362425652984044,4.7682425382941025,5.016851449109879e-19,0.647890162037037,5.016851449109879e-19,0.12976307817276472,0.0,0.0,0.0,-0.0,17.07,1628.59,1.0033703e-18 -4.401554164826299,0.14045748166063454,4.401554164826299,2.946753125543793e-19,0.64678125,2.946753125543793e-19,0.14786607918991612,0.0,0.0,0.0,-0.0,19.295,1623.8112,5.893506e-19 -4.089703186310634,0.15163061290383947,4.089703186310634,1.654866580761537e-19,0.645352199074074,1.654866580761537e-19,0.16006113552553594,0.0,0.0,0.0,-0.0,20.685000000000002,1619.4226,3.3097332e-19 -3.8378210877088303,0.16288262134723414,3.8378210877088303,9.447934171958506e-20,0.6440515046296297,9.447934171958506e-20,0.1723427526788909,0.0,0.0,0.0,-0.0,21.994999999999997,1615.6263,1.8895868e-19 -3.763784903063676,0.15554473119478165,3.763784903063676,2.38,0.6438894675925926,3.7017327613422466e-20,0.1646972720807168,2.38,2.38,0.0,-0.0,21.215,1614.463,7.4034655e-20 -3.8380015191724235,0.15575015670572612,3.8380015191724235,6.46,0.6427809027777778,-5.463828445119652e-21,0.16479575210945302,6.46,6.46,0.0,-0.0,21.255,1615.6292,-1.0927657e-20 -4.013161482187864,0.1543557453005216,4.013161482187864,8.76,0.6407940972222222,-2.0640498884542185e-20,0.16305138512420064,8.76,8.76,0.0,-0.0,21.125,1618.2943,-4.1280998e-20 -4.061063907647537,0.15807933043990732,4.061063907647537,1.34,0.6399997685185186,-1.2640249530205818e-20,0.16691165143010847,1.34,1.34,0.0,-0.0,21.55,1619.0029,-2.5280499e-20 -3.8735224391587884,0.15251602602434663,3.8735224391587884,1.16,0.6395354166666667,-7.248288863150246e-21,0.16131885689726308,1.16,1.16,0.0,-0.0,20.975,1616.1793,-1.4496578e-20 -3.956973790034671,0.16478445018365018,3.956973790034671,9.13,0.6378482638888888,-4.28318806382646e-21,0.17415821078832816,9.13,9.13,0.0,-0.0,22.345,1617.4523,-8.566376e-21 -4.124213963991669,0.18226866960962199,4.124213963991669,3.75,0.6360001157407408,-2.5010906439275756e-21,0.19234303622617527,3.75,3.75,0.0,-0.0,24.134999999999998,1619.9244,-5.0021813e-21 -4.176403146231366,0.1637588478356427,4.176403146231366,5.33,0.6355359953703703,-1.481047802653177e-21,0.1727300628112515,5.33,5.33,0.0,-0.0,22.265,1620.6754,-2.9620956e-21 -4.076183162527212,0.12446060059160997,4.076183162527212,-8.808708139285063e-22,0.6338483796296296,-8.808708139285063e-22,0.1313965408528051,0.0,0.0,0.0,-0.0,17.645,1619.2249,-1.7617416e-21 -3.8280277769392277,0.13367229948473064,3.8280277769392277,-5.041167020983114e-22,0.6319996527777777,-5.041167020983114e-22,0.14144927088037262,0.0,0.0,0.0,-0.0,18.935,1615.4738,-1.0082334e-21 -3.611691912628805,0.14442193952595211,3.611691912628805,-2.9565345524431037e-22,0.6315355324074073,-2.9565345524431037e-22,0.15315367953899212,0.0,0.0,0.0,-0.0,20.3,1611.9996,-5.913069e-22 -3.589465601924996,0.1383475629072312,3.589465601924996,5.33,0.6287943287037038,-1.6116700923994116e-22,0.14674560617969662,5.33,5.33,0.0,-0.0,19.645,1611.631,-3.2233402e-22 -3.7374508758317737,0.12902792188220918,3.7374508758317737,7.7,0.628,-8.988903407570247e-23,0.13665565693417017,7.7,7.7,0.0,-0.0,18.46,1614.0437,-1.7977807e-22 -3.750153986911524,0.11482478208147118,3.750153986911524,3.09,0.6267813657407407,-4.8803883332569336e-23,0.12159760497312976,3.09,3.09,0.0,-0.0,16.54,1614.2463,-9.7607767e-23 -3.7043814947656553,0.12863163384969697,3.7043814947656553,3.19,0.624052199074074,-2.316632516460984e-23,0.13628075609752463,3.19,3.19,0.0,-0.0,18.52,1613.513,-4.633265e-23 -3.8097540412163746,0.14358375028655265,3.8097540412163746,10.2,0.6238902777777778,-1.3228962300006612e-23,0.15196424520438973,10.2,10.2,0.0,-0.0,20.375,1615.188,-2.6457925e-23 -3.8717334664734717,0.16173019581499642,3.8717334664734717,-7.734060945685554e-24,0.6207944444444444,-7.734060945685554e-24,0.17106776485193595,0.0,0.0,0.0,-0.0,22.505,1616.1517,-1.5468122e-23 -4.638738834837264,0.16988343719541493,4.638738834837264,27.48,0.6199998842592592,-4.665542302378263e-24,0.17849958887340386,27.48,27.48,0.0,-0.0,23.27,1626.9456,-9.3310846e-24 -5.367183131885488,0.15827072963717467,5.367183131885488,1.23,0.6183303240740741,-2.823940997113474e-24,0.16541227531055322,1.23,1.23,0.0,-0.0,21.990000000000002,1635.6564,-5.647882e-24 -4.963791009808044,0.12282046168991792,4.963791009808044,-1.6514584141900683e-24,0.615999537037037,-1.6514584141900683e-24,0.12872964330388634,0.0,0.0,0.0,-0.0,17.78,1630.9902,-3.3029168e-24 -4.57153996655565,0.1222455557262814,4.57153996655565,-9.531952257052952e-25,0.6151532407407407,-9.531952257052952e-25,0.128514446050027,0.0,0.0,0.0,-0.0,17.775,1626.0741,-1.9063905e-24 -4.209803662850585,0.1256215026791825,4.209803662850585,-5.605896548875983e-25,0.6120002314814815,-5.605896548875983e-25,0.13246455461362394,0.0,0.0,0.0,-0.0,18.369999999999997,1621.1511,-1.1211793e-24 -4.230826387572178,0.14165781821740692,4.230826387572178,10.06,0.6115356481481482,-3.313485247231189e-25,0.14934701997851324,10.06,10.06,0.0,-0.0,20.419999999999998,1621.4486,-6.6269705e-25 -4.23327447407812,0.14338199565339885,4.23327447407812,-1.9815547454856653e-25,0.6080510416666667,-1.9815547454856653e-25,0.15116156536863332,0.0,0.0,0.0,-0.0,20.725,1621.4832,-3.9631095e-25 -3.9286616637686675,0.14149850909636214,3.9286616637686675,-1.1762729609653795e-25,0.6078891203703704,-1.1762729609653795e-25,0.14958730923209265,0.0,0.0,0.0,-0.0,20.55,1617.0234,-2.352546e-25 -4.011611402392755,0.11526267617488699,4.011611402392755,11.6,0.6042853009259259,-6.964518282609177e-26,0.12175774153719847,11.6,11.6,0.0,-0.0,17.169999999999998,1618.2712,-1.3929037e-25 -4.049392931561236,0.10262273854600956,4.049392931561236,-4.154796651223731e-26,0.6039916666666666,-4.154796651223731e-26,0.10836805378113169,0.0,0.0,0.0,-0.0,15.25,1618.831,-8.309593e-26 -3.93556578843538,0.1226923541023389,3.93556578843538,-2.4332180428460872e-26,0.6002854166666667,-2.4332180428460872e-26,0.129697684907553,0.0,0.0,0.0,-0.0,18.34,1617.1283,-4.866436e-26 -4.079275463693942,0.12265064130142699,4.079275463693942,9.74,0.5999998842592592,-1.3162840619880472e-26,0.12948209466899985,9.74,9.74,0.0,-0.0,18.32,1619.2701,-2.632568e-26 -4.0886918095811655,0.10144206316279485,4.0886918095811655,-7.720889828189144e-27,0.5962851851851851,-7.720889828189144e-27,0.10708312526658956,0.0,0.0,0.0,-0.0,15.264999999999999,1619.4078,-1.544178e-26 -3.96781874403013,0.10510425102687872,3.96781874403013,4.7,0.5959997685185184,-4.638131573778249e-27,0.11107188012872934,4.7,4.7,0.0,-0.0,15.875,1617.6157,-9.276263e-27 -4.099554185432646,0.08605048559247701,4.099554185432646,7.31,0.5920523148148148,-2.765828763506487e-27,0.0908267552116059,7.31,7.31,0.0,-0.0,12.705,1619.5663,-5.5316575e-27 -4.137022213456735,0.08050640840430753,4.137022213456735,2.31,0.591992824074074,-1.642272434016073e-27,0.08494645362196723,2.31,2.31,0.0,-0.0,11.635000000000002,1620.1096,-3.284545e-27 -4.003730852730786,0.0823808458494886,4.003730852730786,2.23,0.5880002314814815,-9.619779330971195e-28,0.08702933158425176,2.23,2.23,0.0,-0.0,12.13,1618.1538,-1.9239559e-27 -3.80723179401413,0.08772279119597602,3.80723179401413,0.19,0.5879922453703703,-5.674986100142747e-28,0.09284514549549334,0.19,0.19,0.0,-0.0,13.17,1615.1484,-1.1349972e-27 -3.6387386043880166,0.11280179390241618,3.6387386043880166,2.25,0.5840005787037037,-3.3620595519890973e-28,0.11958872787909114,2.25,2.25,0.0,-0.0,17.44,1612.4452,-6.724119e-28 -3.5264644998300945,0.10827646023331791,3.5264644998300945,2.11,0.5835359953703704,-1.9358667799353018e-28,0.11492452171992677,2.11,2.11,0.0,-0.0,16.79,1610.5735,-3.8717336e-28 -3.492234012191074,0.10029917601015913,3.492234012191074,4.8,0.5800003472222222,-1.1349809699946437e-28,0.1064959585252271,4.8,4.8,0.0,-0.0,15.63,1609.991,-2.269962e-28 -3.369067613829168,0.10570652736464628,3.369067613829168,-6.206751607821969e-29,0.5787818287037036,-6.206751607821969e-29,0.11238707635731442,0.0,0.0,0.0,-0.0,16.555,1607.8467,-1.2413503e-28 -3.1917427160566314,0.11986973902071232,3.1917427160566314,-3.3912605018058966e-29,0.5760005787037037,-3.3912605018058966e-29,0.12770184999636436,0.0,0.0,0.0,-0.0,18.775,1604.6177,-6.782521e-29 -3.1315780796240564,0.11671400422335132,3.1315780796240564,2.31,0.5738478009259259,-1.9198781609268297e-29,0.12442805065538051,2.31,2.31,0.0,-0.0,18.4,1603.4812,-3.8397563e-29 -3.2111846471181456,0.1057990452022133,3.2111846471181456,7.73,0.5719994212962963,-1.0130109388832663e-29,0.11268632888344102,7.73,7.73,0.0,-0.0,16.795,1604.9803,-2.0260219e-29 -3.26329943832865,0.10247431264512291,3.26329943832865,0.16,0.5680513888888888,-5.834649153187818e-30,0.10907982189000573,0.16,0.16,0.0,-0.0,16.37,1605.9418,-1.1669298e-29 -3.1226102399749576,0.08550973438114073,3.1226102399749576,-2.9777077465651406e-30,0.5679997685185185,-2.9777077465651406e-30,0.09117111669907525,0.0,0.0,0.0,-0.0,13.434999999999999,1603.3099,-5.9554155e-30 -2.9541542612396654,0.06619367107200345,2.9541542612396654,-1.6140716692722752e-30,0.5639996527777777,-1.6140716692722752e-30,0.07072227391672775,0.0,0.0,0.0,-0.0,9.504999999999999,1599.998,-3.2281433e-30 -2.811798450692131,0.06617626649434624,2.811798450692131,-9.135846174251791e-31,0.5639916666666667,-9.135846174251791e-31,0.07083425565433042,0.0,0.0,0.0,-0.0,9.530000000000001,1597.0486,-1.8271692e-30 -2.682414545348913,0.07005298441138215,2.682414545348913,-5.128583111112171e-31,0.56,-5.128583111112171e-31,0.07511616507455533,0.0,0.0,0.0,-0.0,10.565,1594.2354,-1.0257166e-30 -2.5664120401725725,0.07196581658702642,2.5664120401725725,5.400397371830212e-32,0.558330324074074,5.400397371830212e-32,0.07729525492462566,0.0,0.0,0.0,-0.0,11.065000000000001,1591.5952,1.0800795e-31 -2.462739628965501,0.07623796997760465,2.462739628965501,3.98,0.5560002314814815,9.323107126315185e-31,0.08201067055276336,3.98,3.98,0.0,-0.0,12.075,1589.1327,1.8646214e-30 -2.3689718132211737,0.08363651905235475,2.3689718132211737,1.56,0.5520519675925926,1.9273288767042624e-30,0.09010087377811563,1.56,1.56,0.0,-0.0,13.704999999999998,1586.8145,3.8546578e-30 -2.283002809200745,0.0910263904699954,2.283002809200745,2.8443254370123643e-30,0.5520004629629629,2.8443254370123643e-30,0.09819852642681785,0.0,0.0,0.0,-0.0,15.11,1584.6069,5.688651e-30 -2.2030111627429623,0.07676542728698636,2.2030111627429623,3.488567059003123e-30,0.5479999999999999,3.488567059003123e-30,0.08292538290199049,0.0,0.0,0.0,-0.0,12.485,1582.4769,6.977134e-30 -2.127382779668877,0.07898551088675512,2.127382779668877,3.6653215365984155e-30,0.5479921296296296,3.6653215365984155e-30,0.08543624534696084,0.0,0.0,0.0,-0.0,12.965,1580.3907,7.330643e-30 -2.054716045796939,0.07431658119599124,2.054716045796939,3.1798547829291554e-30,0.5439997685185185,3.1798547829291554e-30,0.08049171641126306,0.0,0.0,0.0,-0.0,12.125,1578.3152,6.3597096e-30 -1.9887018112589012,0.07886598342935622,1.9887018112589012,1.9052967271461224e-30,0.540794212962963,1.9052967271461224e-30,0.08552481494915437,0.0,0.0,0.0,-0.0,13.194999999999999,1576.365,3.8105935e-30 -1.949667732903153,0.08051227121276001,1.949667732903153,13.0,0.54,2.7726286511319826e-31,0.08737572098455672,13.0,13.0,0.0,-0.0,13.565000000000001,1575.1812,5.5452573e-31 -1.9253908695432398,0.08380609044337033,1.9253908695432398,0.8,0.5359994212962963,-1.2255924154215643e-30,0.09099355580755272,0.8,0.8,0.0,-0.0,14.344999999999999,1574.4329,-2.4511848e-30 -1.8999089046163022,0.0931579951856642,1.8999089046163022,-2.160746883986592e-30,0.5359994212962963,-2.160746883986592e-30,0.10119865004074487,0.0,0.0,0.0,-0.0,16.09,1573.6372,-4.3214938e-30 -1.8582102477295235,0.0747633700462889,1.8582102477295235,-2.085678498189408e-30,0.5319998842592593,-2.085678498189408e-30,0.08128480569635985,0.0,0.0,0.0,-0.0,12.639999999999999,1572.3119,-4.171357e-30 -1.822910792063026,0.08039239837070553,1.822910792063026,-1.1881127654608504e-30,0.5298482638888888,-1.1881127654608504e-30,0.0874685595545708,0.0,0.0,0.0,-0.0,13.89,1571.1665,-2.3762255e-30 -1.8510907944747983,0.08043055214169596,1.8510907944747983,3.72,0.5279998842592593,-4.932472567378047e-31,0.08745907477299211,3.72,3.72,0.0,-0.0,13.945,1572.0826,-9.864945e-31 -1.9421859642840664,0.05630269808476751,1.9421859642840664,7.2,0.5240002314814816,-1.4339837953265823e-31,0.06111125649757833,7.2,7.2,0.0,-0.0,8.375,1574.9515,-2.8679676e-31 -2.0500677969139067,0.05538979190389213,2.0500677969139067,-6.210277714716244e-32,0.5240002314814816,-6.210277714716244e-32,0.059997398262587834,0.0,0.0,0.0,-0.0,8.09,1578.1799,-1.2420555e-31 -2.093892126594004,0.05879905719887281,2.093892126594004,3.130267987842825e-32,0.520000462962963,3.130267987842825e-32,0.06363932643773164,0.0,0.0,0.0,-0.0,9.125,1579.4431,6.260536e-32 -2.0848509415864562,0.06585167992706341,2.0848509415864562,1.1749223552711774e-31,0.5183310185185186,1.1749223552711774e-31,0.0712841760375198,0.0,0.0,0.0,-0.0,10.959999999999999,1579.1847,2.3498447e-31 -2.040452447093726,0.07113609287614217,2.040452447093726,1.52,0.5159998842592592,1.7095226098952035e-31,0.07706726757274683,1.52,1.52,0.0,-0.0,12.275,1577.8992,3.4190452e-31 -1.9792610012783773,0.08164912813859078,1.9792610012783773,0.21,0.511999537037037,1.6616916272108096e-31,0.08855891178145225,0.21,0.21,0.0,-0.0,14.65,1576.0808,3.3233833e-31 -1.9184453271439246,0.08633624835829433,1.9184453271439246,9.958233306832832e-32,0.511999537037037,9.958233306832832e-32,0.09375355932790784,0.0,0.0,0.0,-0.0,15.584999999999999,1574.217,1.9916467e-31 -1.8648614763480662,0.0881491676364877,1.8648614763480662,3.7927974689909936e-32,0.5079996527777778,3.7927974689909936e-32,0.09582521094734,0.0,0.0,0.0,-0.0,16.075000000000003,1572.5253,7.585595e-32 -1.8163460683215376,0.09426059181527692,1.8163460683215376,0.68,0.5067805555555556,-9.80943056263491e-34,0.10257150086189985,0.68,0.68,0.0,-0.0,17.245,1570.951,-1.9618861e-33 -1.7712819078252129,0.09672669141353388,1.7712819078252129,0.23,0.503999537037037,-6.805766255111521e-33,0.1053556571161252,0.23,0.23,0.0,-0.0,17.785,1569.4507,-1.3611533e-32 -1.7364159463828148,0.08608197842891431,1.7364159463828148,10.67,0.4999997685185186,-2.0529790268630395e-33,0.09383231389313772,10.67,10.67,0.0,-0.0,15.989999999999998,1568.2634,-4.105958e-33 -1.712272628014928,0.05914171719650013,1.712272628014928,2.86,0.4999997685185186,2.4870541931331703e-33,0.064500894800399,2.86,2.86,0.0,-0.0,9.95,1567.4272,4.9741084e-33 -1.6965222207513828,0.047309309178141946,1.6965222207513828,5.525145240443289e-33,0.4959997685185185,5.525145240443289e-33,0.051614456025424506,0.0,0.0,0.0,-0.0,6.62,1566.8754,1.10502905e-32 -1.687054012911634,0.04980771610041216,1.687054012911634,0.44,0.49366840277777774,5.7721055832915125e-33,0.05435181168948194,0.44,0.44,0.0,-0.0,7.484999999999999,1566.5411,1.1544211e-32 -1.7378788757769645,0.061704991475910895,1.7378788757769645,4.83,0.4919994212962963,3.4527273941084874e-33,0.06725840370234466,4.83,4.83,0.0,-0.0,10.865,1568.3137,6.905455e-33 -1.917218327754058,0.056277870921107524,1.917218327754058,9.36,0.48800034722222224,1.7062756006246447e-33,0.061114292944096524,9.36,9.36,0.0,-0.0,9.485,1574.1788,3.4125512e-33 -2.0837091670374477,0.05088689025878822,2.0837091670374477,5.01,0.48800034722222224,8.68247127153212e-34,0.055085993184484316,5.01,5.01,0.0,-0.0,7.87,1579.152,1.7364943e-33 -2.183474043383531,0.04964973333342513,2.183474043383531,4.21,0.4840002314814815,5.122815860320549e-34,0.05365185668296166,4.21,4.21,0.0,-0.0,7.59,1581.945,1.0245632e-33 -2.2185018057770205,0.06005331319794777,2.2185018057770205,3.0235236876498053e-34,0.48167002314814816,3.0235236876498053e-34,0.06485507422547832,0.0,0.0,0.0,-0.0,10.625,1582.8954,6.0470474e-34 -2.4441793113307777,0.06265723334059532,2.4441793113307777,12.32,0.4800005787037037,1.5962160619791953e-34,0.06742077477638517,12.32,12.32,0.0,-0.0,11.295,1588.6809,3.1924321e-34 -3.0864208059049747,0.053297816076402486,3.0864208059049747,21.88,0.4760001157407408,8.245242818707034e-35,0.056851214247272644,21.88,21.88,0.0,-0.0,8.745,1602.6138,1.6490486e-34 -3.408515449441832,0.05020038493950116,3.408515449441832,4.917424625219499e-35,0.4760001157407408,4.917424625219499e-35,0.053349932996035986,0.0,0.0,0.0,-0.0,7.76,1608.5419,9.834849e-35 -3.3754712603701975,0.05194539451025692,3.3754712603701975,5.39,0.4719996527777777,2.9528885879714417e-35,0.0552243975223406,5.39,5.39,0.0,-0.0,8.424999999999999,1607.9601,5.905777e-35 -3.4117846065915485,0.05109916911736221,3.4117846065915485,2.1,0.4701513888888889,1.7765619779652224e-35,0.05430317371156374,2.1,2.1,0.0,-0.0,8.225,1608.5991,3.553124e-35 -3.6148234259601844,0.0547775181644647,3.6148234259601844,11.04,0.46799976851851854,1.0487085607139688e-35,0.05808749788527276,11.04,11.04,0.0,-0.0,9.344999999999999,1612.0514,2.0974171e-35 -4.486943247880397,0.04954642356974747,4.486943247880397,21.95,0.463999537037037,6.286388672304864e-36,0.05212297628899311,21.95,21.95,0.0,-0.0,7.795,1624.9586,1.2572777e-35 -5.013490699152537,0.040347031802875494,5.013490699152537,3.774594940690426e-36,0.463999537037037,3.774594940690426e-36,0.042272801765616805,0.0,0.0,0.0,-0.0,4.605,1631.5852,7.54919e-36 -4.6334889072267345,0.04313965137535186,4.6334889072267345,2.2777558125432903e-36,0.46,2.2777558125432903e-36,0.045329493308093875,0.0,0.0,0.0,-0.0,5.790000000000001,1626.8779,4.5555116e-36 -4.296502101471885,0.053489781141836154,4.296502101471885,1.3655655776922885e-36,0.45920532407407405,1.3655655776922885e-36,0.05636123596864876,0.0,0.0,0.0,-0.0,9.17,1622.3685,2.7311312e-36 -3.997311730402423,0.06977406646338165,3.997311730402423,7.41474101102662e-37,0.45599953703703705,7.41474101102662e-37,0.07371555760112634,0.0,0.0,0.0,-0.0,13.55,1618.058,1.4829482e-36 -3.7355796666527423,0.05056340307922623,3.7355796666527423,2.8350108678953786e-37,0.45200810185185186,2.8350108678953786e-37,0.05355354872053647,0.0,0.0,0.0,-0.0,8.62,1614.0138,5.6700217e-37 -3.5241226009776825,0.03656919953929183,3.5241226009776825,7.788119228923508e-38,0.452,7.788119228923508e-38,0.038815466300102665,0.0,0.0,0.0,-0.0,3.7199999999999998,1610.5338,1.5576238e-37 -3.7259177814393545,0.04578478904975423,3.7259177814393545,13.21,0.4480001157407407,4.538600856112598e-38,0.04849699113383995,13.21,13.21,0.0,-0.0,7.2250000000000005,1613.8591,9.0772017e-38 -4.542273900447801,0.045612535212457644,4.542273900447801,19.0,0.4480001157407407,2.5793417770537114e-38,0.04796291068844639,19.0,19.0,0.0,-0.0,7.055,1625.6906,5.1586836e-38 -4.840133084271458,0.03694605265651524,4.840133084271458,1.5424090795524797e-38,0.4440001157407408,1.5424090795524797e-38,0.038759417415521503,0.0,0.0,0.0,-0.0,3.965,1629.4836,3.0848182e-38 -4.481709379837503,0.03622147423876664,4.481709379837503,9.254795132971553e-39,0.44166932870370373,9.254795132971553e-39,0.03810672687018499,0.0,0.0,0.0,-0.0,3.79,1624.8889,1.850959e-38 -4.16865045664158,0.03564031541248078,4.16865045664158,5.534351213435322e-39,0.4400003472222222,5.534351213435322e-39,0.037595375884281544,0.0,0.0,0.0,-0.0,3.6450000000000005,1620.5645,1.1068702e-38 -4.0440246400908855,0.035262064899324784,4.0440246400908855,2.7290049371986854e-39,0.43611064814814815,2.7290049371986854e-39,0.03723802753293019,0.0,0.0,0.0,-0.0,3.6350000000000002,1618.7518,5.45801e-39 -4.1718555429527795,0.03922646697490592,4.1718555429527795,10.13,0.43600011574074077,5.6385517672425206e-40,0.04137707499223054,10.13,10.13,0.0,-0.0,5.22,1620.6104,1.12771e-39 -4.559501552326348,0.0470917355870388,4.559501552326348,9.24,0.43200000000000005,-4.4110563514479105e-40,0.04951144777573078,9.24,9.24,0.0,-0.0,8.105,1625.9166,-8.82211e-40 -5.459452272891318,0.05049900842744853,5.459452272891318,21.58,0.43194837962962956,-3.061563891349182e-40,0.05274481632511434,21.58,21.58,0.0,-0.0,9.09,1636.6743,-6.12313e-40 -7.909849883211766,0.04752291908419807,7.909849883211766,37.43,0.428,-1.8223115814388867e-40,0.04897382805224898,37.43,37.43,0.0,-0.0,8.08,1658.8162,-3.64462e-40 -8.957550838895058,0.035814356863078316,8.957550838895058,3.97,0.4261517361111111,-1.0771501035572002e-40,0.03674325232479099,3.97,3.97,0.0,-0.0,3.78,1666.2446,-2.1543e-40 -8.193204878177557,0.03669076408300697,8.193204878177557,1.88,0.42400011574074076,-6.464189815930381e-41,0.037763108943852305,1.88,1.88,0.0,-0.0,4.265,1660.9181,-1.29284e-40 -7.407560995276973,0.03550185786962502,7.407560995276973,2.1,0.42121863425925926,-3.870456423388361e-41,0.03667237459580936,2.1,2.1,0.0,-0.0,3.925,1654.8981,-7.7409e-41 -6.765511152119014,0.035639155155120415,6.765511152119014,2.0,0.41999976851851856,-2.1953442391344747e-41,0.03693504122901848,2.0,2.0,0.0,-0.0,4.075,1649.4836,-4.3907e-41 -6.421602972470636,0.031660054768401266,6.421602972470636,5.079999999999969,0.4164640046296296,-3.0984593956193264e-14,0.032873347865679504,5.08,5.08,0.0,-0.0,2.4699999999999998,1646.368,-6.196919e-14 -6.0285031269184035,0.026751309293916257,6.0285031269184035,-0.03759243492271924,0.4159996527777778,-0.03759243492271924,0.02784027965592981,0.0,0.0,0.0,-0.0,0.06000000000000005,1642.5956,0.003130457 -5.562612052471127,0.025452235340198963,5.562612052471127,1.8986494214901106,0.4121109953703704,-0.0013503906814886356,0.026566009469077993,1.9,1.8999998121715993,1.8782840078279683e-7,-0.0,-0.48,1637.7922,0.017309692 -6.075200514932205,0.032409342573848914,6.075200514932205,21.246467840223772,0.41200046296296294,0.006467840223773449,0.03371917590310257,21.24,21.24,0.0,-0.0,3.005,1643.0564,0.012193226 -6.418952064404512,0.032051192747612596,6.418952064404512,2.583630946831998,0.4080084490740741,0.0036309468319981396,0.03327997368337252,2.58,2.58,0.0,-0.0,2.955,1646.3434,0.0070158816 -5.937929942566951,0.02943716533297847,5.937929942566951,0.23212367941805095,0.40794895833333333,0.002123679418050931,0.03065233977318659,0.23,0.23,0.0,-0.0,1.745,1641.6915,0.0041608103 -5.51860245650535,0.03257761350131829,5.51860245650535,2.4012571045373945,0.40399999999999997,0.0012571045373946327,0.03401304122151889,2.4,2.4,0.0,-0.0,3.425,1637.3179,0.002483375 -5.1515503974996815,0.03003520269313588,5.1515503974996815,0.0007476242168705474,0.4037145833333334,0.0007476242168705474,0.03143752858563567,0.0,0.0,0.0,-0.0,2.27,1633.2075,0.0014842339 -4.740613649184966,0.023686125053222755,4.740613649184966,-1.2372530658743636e-5,0.40000023148148145,-1.2372530658743636e-5,0.024867608438206432,0.0,0.0,0.0,-0.0,-1.0,1628.2429,0.00096983055 -4.390340274055208,0.02181044432661297,4.390340274055208,-3.1489412896501696e-10,0.39971435185185183,-3.1489412896501696e-10,0.022963016605896676,0.0,0.0,0.0,-0.0,-2.125,1623.6588,0.0009509693 -4.08829902821586,0.020408484389005607,4.08829902821586,-1.9074230368509894e-13,0.3960082175925926,-1.9074230368509894e-13,0.021543450170069922,0.0,0.0,0.0,-0.0,-2.8949999999999996,1619.4021,0.00138742 -3.827065466713213,0.02109229416769804,3.827065466713213,0.20256919771693058,0.39571446759259266,-5.181630980957379e-11,0.022319638192282464,3.96,0.20256919776874688,3.7574308022312533,-0.0,-2.385,1615.4587,1.9585236 -3.6707342490379022,0.023113834658383316,3.6707342490379022,-4.663715803352509e-5,0.3921108796296296,-4.663715803352509e-5,0.024496579488903804,0.0,0.0,0.0,-0.0,-0.9300000000000002,1612.968,2.6575055 -3.6368201761586385,0.031779695575252814,3.6368201761586385,5.017870918329093,0.3919487268518519,1.3778709183290927,0.03369243934078036,3.64,3.64,0.0,-0.0,3.735,1612.4137,1.3778723 -3.876841350041298,0.038545802887989915,3.876841350041298,10.323732922698756,0.3884644675925926,0.5037329226987552,0.04076927678504587,9.82,9.82,0.0,-0.0,6.75,1616.2305,0.5069007 -4.0159843287748185,0.03700297463705554,4.0159843287748185,2.0112709809425424,0.38799999999999996,0.17127098094254214,0.039086525115967906,1.84,1.84,0.0,-0.0,6.125,1618.3363,0.19551358 -3.848048440623628,0.03013434440325811,3.848048440623628,0.7227518985535846,0.3848466435185185,0.06275189855358454,0.031881393933421626,0.66,0.66,0.0,-0.0,3.185,1615.7853,0.08861955 -4.117180867146181,0.028440370816918487,4.117180867146181,14.84805505615807,0.3840003472222222,0.028055056158069795,0.030014217527265036,14.82,14.82,0.0,-0.0,2.325,1619.8225,0.04580103 -4.596050423749089,0.029749003752874287,4.596050423749089,6.754308655282926,0.38166932870370374,0.014308655282925192,0.03126842566548732,6.74,6.74,0.0,-0.0,3.0199999999999996,1626.3934,0.025406986 -5.487029466517896,0.036621281967987376,5.487029466517896,24.007811535124464,0.3799997685185186,0.00781153512446528,0.03824288424723615,24.0,24.0,0.0,-0.0,6.109999999999999,1636.9752,0.014564341 -7.051842392517386,0.0464519477640978,7.051842392517386,19.50445443582957,0.37920590277777777,0.004454435829568478,0.04806886167080212,19.5,19.5,0.0,-0.0,9.675,1651.9591,0.0085440865 -7.539590551033981,0.04865475454136102,7.539590551033981,3.1525953100604505,0.37611087962962964,0.002595310060450721,0.05022690849588564,3.15,3.15,0.0,-0.0,10.495,1655.9531,0.005062503 -7.674836125169121,0.05463133256602573,7.674836125169121,12.291520446512754,0.3759486111111111,0.0015204465127542201,0.05636046702864364,12.29,12.29,0.0,-0.0,12.335,1657.0149,0.0029960158 -7.739330950756901,0.036359315666089215,7.739330950756901,4.730899757107225,0.37321898148148147,0.0008997571072241155,0.037498813492749625,4.73,4.73,0.0,-0.0,6.085,1657.5146,0.0017836083 -7.102894194216921,0.02587865019831897,7.102894194216921,0.0005295540187691719,0.3719998842592593,0.0005295540187691719,0.026772460805739706,0.0,0.0,0.0,-0.0,1.1150000000000002,1652.3899,0.0010536455 -6.564980520252928,0.022793180048514473,6.564980520252928,4.049709562513369,0.37120578703703705,-0.00028824587745377437,0.023647730544127114,4.05,4.049997808390823,2.1916091768381384e-6,-0.0,-0.65,1647.6868,0.0013641176 -6.085752512900609,0.019661035841094732,6.085752512900609,-4.936736752196293e-12,0.3684645833333333,-4.936736752196293e-12,0.020454352336805797,0.0,0.0,0.0,-0.0,-2.61,1643.16,0.15922147 -5.521028242616069,0.02165419571831155,5.521028242616069,-4.279038355782807e-6,0.3680003472222222,-4.279038355782807e-6,0.022607955789584706,0.0,0.0,0.0,-0.0,-1.17,1637.3441,0.15928048 -5.052026220689416,0.021671741457676842,5.052026220689416,-1.4184422707641281e-5,0.36615196759259255,-1.4184422707641281e-5,0.02269977503184679,0.0,0.0,0.0,-0.0,-1.04,1632.0425,0.15928702 -4.656332352875486,0.02114203259242099,4.656332352875486,-1.4707129299984729e-6,0.3644642361111111,-1.4707129299984729e-6,0.022211228249791506,0.0,0.0,0.0,-0.0,-1.2850000000000001,1627.1716,0.15929163 -4.318134302107506,0.019578189768867372,4.318134302107506,-8.039086567670388e-11,0.36400011574074076,-8.039086567670388e-11,0.020625379145769698,0.0,0.0,0.0,-0.0,-2.32,1622.6685,0.15929185 -4.025254577340765,0.022843523754079883,4.025254577340765,-0.05707307624331507,0.3621513888888889,-0.05707307624331507,0.024127735957691163,0.0,0.0,0.0,-0.0,-0.004999999999999893,1618.474,0.16406977 -3.7668942916083883,0.02249363669920208,3.7668942916083883,-0.03386791680806615,0.3604638888888889,-0.03386791680806615,0.02381647654821989,0.0,0.0,0.0,-0.0,-0.125,1614.5123,0.21334323 -3.5417791188637735,0.016506669448555295,3.5417791188637735,1.0042876086302499e-10,0.3599998842592593,-0.0,0.01751734698943384,1.82,1.0042876086302499e-10,1.8199999998995713,-0.0,-4.455,1610.8323,1.1789547 -3.3425766080317127,0.018076388663351883,3.3425766080317127,0.000111050070909479,0.35920578703703704,-4.0674298472623293e-14,0.019224435504174384,3.37,0.0001110500709501533,3.3698889499290496,-0.0,-3.125,1607.3752,3.7692258 -3.425228666455842,0.027841322947786806,3.425228666455842,7.884987916945956,0.3572189814814815,3.044987916945956,0.029582701911754813,4.84,4.84,0.0,-0.0,3.1799999999999997,1608.834,3.044988 -3.851502974223809,0.026309884140327047,3.851502974223809,13.679540691924842,0.35611041666666665,1.1195406919248414,0.027834286054363708,12.56,12.56,0.0,-0.0,2.3249999999999997,1615.8389,1.1195561 -4.273309593933108,0.01835435789855836,4.273309593933108,0.0030855905228341853,0.3559483796296296,-3.275638955310996e-13,0.019343516185030534,10.91,0.003085590523161749,10.906914409476839,-0.0,-2.91,1622.0453,2.495207 -3.9868995434972914,0.01445350036205729,3.9868995434972914,0.0,0.3546476851851852,-0.0,0.015271439193385913,1.96,0.0,1.96,-0.0,-6.14,1617.9022,8.931827 -3.736526610507091,0.014162611420961532,3.736526610507091,0.0,0.35321898148148145,-0.0,0.014999998844361827,1.81,0.0,1.81,-0.0,-6.33,1614.0289,10.849613 -3.5157980574639427,0.010882868529332698,3.5157980574639427,0.0,0.35211030092592593,-0.0,0.0115523629051528,0.0,0.0,0.0,-0.0,-9.8,1610.3926,11.747919 -3.3197867384796242,0.009108593982991239,3.3197867384796242,0.0,0.35199988425925927,-0.0,0.009689551475782524,0.0,0.0,0.0,-0.0,-12.100000000000001,1606.9667,11.755244 -3.1443550105084888,0.014811162312360166,3.1443550105084888,2.168265567092931e-15,0.35171423611111113,-0.0,0.01578769089544681,2.79,2.168265567092931e-15,2.789999999999998,-0.0,-5.57,1603.7244,13.155424 -2.9863562382775224,0.01486158300934087,2.9863562382775224,0.0,0.3506474537037037,-0.0,0.015871907084770067,0.0,0.0,0.0,-0.0,-5.455,1600.6455,14.511332 -2.8435411726790263,0.010730468015395477,2.8435411726790263,0.0,0.34966921296296294,-0.0,0.011480940523517667,0.0,0.0,0.0,-0.0,-9.79,1597.719,14.516419 -2.7137059898719524,0.01660579112290436,2.7137059898719524,0.0,0.3488465277777778,-0.0,0.01779826608487825,0.0,0.0,0.0,-0.0,-3.795,1594.928,14.516419 -2.594970803663525,0.019670315355278578,2.594970803663525,-9.650050775296264e-7,0.3481105324074074,-9.650050775296264e-7,0.02111823416996852,0.0,0.0,0.0,-0.0,-1.35,1592.2561,14.516419 -2.486223470777771,0.013996896376501748,2.486223470777771,0.0,0.3480079861111111,-0.0,0.01505136615138351,0.0,0.0,0.0,-0.0,-6.08,1589.6995,14.516419 -2.386336593038675,0.012389140018543769,2.386336593038675,0.0,0.34794849537037037,-0.0,0.01334304219696349,0.0,0.0,0.0,-0.0,-7.715,1587.2506,14.526015 -2.3064693439955555,0.019885470029237972,2.3064693439955555,1.9998782564099444,0.34771435185185184,-8.560100270332672e-6,0.021444017955903553,2.0,1.9998868165102148,0.00011318348978517356,-0.0,-1.1150000000000002,1585.2177,15.217551 -2.3158466708860366,0.02484699191215496,2.3158466708860366,5.24013871003741,0.3472057870370371,5.24013871003741,0.026790310105802545,0.0,0.0,0.0,-0.0,2.135,1585.46,13.647138 -2.3858976342324203,0.023275620213993573,2.3858976342324203,3.079205615830217,0.3466476851851852,2.6992056158302193,0.02506790074639697,0.38,0.3799999999999978,2.2148949341271872e-15,-0.0,1.185,1587.2396,9.676678 -2.322464331571639,0.019926889413302888,2.322464331571639,-1.6303028520563454e-5,0.3466476851851852,-1.6303028520563454e-5,0.021483090399410286,0.0,0.0,0.0,-0.0,-1.0450000000000002,1585.6304,9.091455 -2.2347453549781955,0.020942287543893472,2.2347453549781955,-0.011711463379374962,0.3461518518518519,-0.011711463379374962,0.022610574090124066,0.0,0.0,0.0,-0.0,-0.29000000000000004,1583.331,9.092913 -2.1534668931455108,0.014298461891292363,2.1534668931455108,0.0,0.3461518518518519,-0.0,0.015459096019449198,0.0,0.0,0.0,-0.0,-5.640000000000001,1581.1185,9.094383 -2.0780988670574314,0.009885413433703355,2.0780988670574314,0.0,0.3456693287037037,-0.0,0.010702232778667355,0.0,0.0,0.0,-0.0,-10.565,1578.991,9.094383 -2.007825443368168,0.013897346944878304,2.007825443368168,0.0,0.3456693287037037,-0.0,0.015065268931949115,0.0,0.0,0.0,-0.0,-5.975,1576.9365,9.094383 -1.942058931420353,0.014535423797343823,1.942058931420353,0.0,0.3461518518518519,-0.0,0.01577686763406678,0.0,0.0,0.0,-0.0,-5.36,1574.9476,9.10466 -1.8804442721691361,0.014607458468478432,1.8804442721691361,1.5487944260428324e-13,0.3461518518518519,-0.0,0.015874461602292795,10.22,1.5487944260428324e-13,10.219999999999846,-0.0,-5.2749999999999995,1573.0222,14.2425585 -2.033960569761393,0.021174078207979372,2.033960569761393,18.640799788902022,0.3461518518518519,-0.04920017725729747,0.02294229441813934,18.69,18.68999996615932,3.384067950029657e-8,-0.0,-0.08000000000000007,1577.7089,22.100847 -2.2761486234500112,0.02104515215981998,2.2761486234500112,-0.015897403864261753,0.3466476851851852,-0.015897403864261753,0.022705911230024977,0.0,0.0,0.0,-0.0,-0.25,1584.4274,22.132105 -2.3222602104599224,0.019441874825071537,2.3222602104599224,6.9217278824030695,0.3472057870370371,-5.011931448305659e-7,0.020960267726192073,6.93,6.921728383596214,0.008271616403785726,-0.0,-1.42,1585.6251,22.206316 -2.2603478656663882,0.01278787989426915,2.2603478656663882,0.0,0.34771435185185184,-0.0,0.013800647393539653,12.33,0.0,12.33,-0.0,-7.25,1584.0114,31.155907 -2.1775417181797714,0.008275666618717918,2.1775417181797714,0.0,0.34794849537037037,-0.0,0.008943663063573234,0.0,0.0,0.0,-0.0,-12.985000000000001,1581.7825,37.297943 -2.1006740465170326,0.006962358945846323,2.1006740465170326,0.0,0.34800000000000003,-0.0,0.0075345709099296585,0.0,0.0,0.0,-0.0,-15.17,1579.6362,37.294132 -2.0290481915262726,0.007825573882343293,2.0290481915262726,0.0,0.3480079861111111,-0.0,0.00847985224652376,0.0,0.0,0.0,-0.0,-13.670000000000002,1577.5645,37.294132 -1.9620771185686379,0.010609053971708105,1.9620771185686379,0.0,0.3484641203703704,-0.0,0.011510677788349629,0.0,0.0,0.0,-0.0,-9.71,1575.56,37.28099 -1.8993264702899235,0.011018031022058079,1.8993264702899235,0.0,0.34921886574074074,-0.0,0.011969158820059904,2.1,0.0,2.1,-0.0,-9.219999999999999,1573.6189,38.305542 -1.840372441193829,0.016145481187218834,1.840372441193829,1.1775339636699301e-8,0.35015162037037034,-0.0,0.01756024769449191,3.2,1.1775339636699301e-8,3.199999988224661,-0.0,-4.035,1571.7358,40.940407 -1.7849148699267086,0.013964948628778038,1.7849148699267086,0.0,0.35120578703703703,-0.0,0.015206322026429676,0.0,0.0,0.0,-0.0,-6.065,1569.9086,42.52713 -1.7319637374036438,0.018770650528156782,1.7319637374036438,-3.177591587757554e-9,0.3519482638888889,-3.177591587757554e-9,0.02046265447317884,0.0,0.0,0.0,-0.0,-1.955,1568.1101,42.520206 -1.7690458069638677,0.025664615336211213,1.7690458069638677,9.116821986387986,0.35200787037037035,6.376821986387987,0.02795549346533017,2.74,2.74,0.0,-0.0,2.56,1569.3752,40.894165 -2.1730108861924937,0.028815437055005562,2.1730108861924937,19.585863678029753,0.35284641203703704,10.575863678029755,0.03114381475095517,9.01,9.01,0.0,-0.0,4.13,1581.6581,32.523285 -2.7362922455738548,0.02591359316027372,2.7362922455738548,13.028657703816009,0.3541518518518519,5.868657703816009,0.027765851437622488,7.16,7.16,0.0,-0.0,2.3699999999999997,1595.423,24.31572 -3.013483836208176,0.020757148257122774,3.013483836208176,6.429882246828534,0.35571446759259256,-3.23928834763154e-5,0.022160789420925666,6.43,6.42991463971201,8.536028798922068e-5,-0.0,-0.97,1601.1855,22.422901 -3.322312008096532,0.020725972264221838,3.322312008096532,11.569625774917938,0.35600000000000004,-1.4872438756269997e-5,0.02204727762487221,11.57,11.569640647356694,0.00035935264330642534,-0.0,-1.055,1607.0121,22.421947 -3.265901898858988,0.014858397540748563,3.265901898858988,4.2299497238218465e-16,0.3564643518518519,-0.0,0.015815703179266942,2.54,4.2299497238218465e-16,2.5399999999999996,-0.0,-5.73,1605.9894,27.11296 -3.0959554356646626,0.009931843018212335,3.0959554356646626,0.0,0.35815185185185183,-0.0,0.010592787566515518,2.45,0.0,2.45,-0.0,-11.165,1602.798,29.633337 -2.9428358632296217,0.011963801007127873,2.9428358632296217,0.0,0.3599482638888889,-0.0,0.012784129449133048,1.88,0.0,1.88,-0.0,-8.745000000000001,1599.7688,31.842066 -2.8039928003798504,0.015461809939744033,2.8039928003798504,4.296563105299356e-14,0.36000787037037035,-0.0,0.016551850359596137,2.0,4.296563105299356e-14,1.999999999999957,-0.0,-5.24,1596.8826,33.83007 -2.677763545694731,0.00753377185052337,2.677763545694731,0.0,0.36121863425925926,-0.0,0.008078811281617271,0.0,0.0,0.0,-0.0,-14.76,1594.1317,34.787064 -2.5625173316976713,0.008157893916505631,2.5625173316976713,0.0,0.3637142361111111,-0.0,0.008762527199452091,1.18,0.0,1.18,-0.0,-13.815,1591.5045,35.377003 -2.456781629138647,0.007124672871870448,2.456781629138647,0.0,0.36400011574074076,-0.0,0.007664847207564143,7.39,0.0,7.39,-0.0,-15.52,1588.988,39.64044 -2.3594902959414075,0.004183689260804094,2.3594902959414075,0.0,0.36521898148148146,-0.0,0.004507731377541457,0.0,0.0,0.0,-0.0,-22.03,1586.575,43.20343 -2.2696490175513455,0.004215024360843473,2.2696490175513455,0.0,0.36771435185185186,-0.0,0.004548139398280661,0.0,0.0,0.0,-0.0,-22.005,1584.2566,43.24288 -2.1863233646962064,0.008478953138644675,2.1863233646962064,0.0,0.3680083333333333,-0.0,0.009161966306548737,1.06,0.0,1.06,-0.0,-13.395,1582.0228,43.80176 -2.108787901571823,0.0107722517410944,2.108787901571823,0.0,0.3696696759259259,-0.0,0.011655886695977816,2.3,0.0,2.3,-0.0,-10.325,1579.8665,45.331635 -2.036585643428072,0.006907496819841335,2.036585643428072,0.0,0.3719483796296296,-0.0,0.007483966366751376,0.0,0.0,0.0,-0.0,-16.09,1577.7859,46.285145 -1.9692088013690265,0.005908363897366427,1.9692088013690265,0.0,0.37211041666666667,-0.0,0.006409612181034493,0.0,0.0,0.0,-0.0,-18.015,1575.7767,46.32876 -1.9061287654286048,0.006563646348910475,1.9061287654286048,0.0,0.3746479166666667,-0.0,0.007129283631351878,0.0,0.0,0.0,-0.0,-16.785,1573.8324,46.32876 -1.846948495891938,0.008310278549080662,1.846948495891938,0.0,0.3760002314814815,-0.0,0.009037251549564102,0.0,0.0,0.0,-0.0,-13.845,1571.9489,46.32876 -1.7913367007885268,0.006217994406081185,1.7913367007885268,0.0,0.3772188657407407,-0.0,0.006769800016527042,0.0,0.0,0.0,-0.0,-17.509999999999998,1570.123,46.32876 -1.7389982089712903,0.004315769544869103,1.7389982089712903,0.0,0.3799997685185186,-0.0,0.00470407088049878,0.0,0.0,0.0,-0.0,-21.995,1568.3522,46.32876 -1.6896561162937176,0.004693404812733169,1.6896561162937176,0.0,0.3804640046296296,-0.0,0.005121296206417892,0.0,0.0,0.0,-0.0,-21.0,1566.6332,46.32876 -1.6430300226035566,0.0066149503411952575,1.6430300226035566,0.0,0.383714699074074,-0.0,0.007225734211660183,0.0,0.0,0.0,-0.0,-16.915,1564.962,46.32876 -1.5988993593113314,0.006061470632646852,1.5988993593113314,0.0,0.38400833333333334,-0.0,0.006628036036554523,0.0,0.0,0.0,-0.0,-17.990000000000002,1563.336,46.32876 -1.5570739307508532,0.004820963775583546,1.5570739307508532,0.0,0.3866476851851852,-0.0,0.005276922378868696,0.0,0.0,0.0,-0.0,-20.835,1561.753,46.32876 -1.5173781838906197,0.004484884308859251,1.5173781838906197,0.0,0.38799999999999996,-0.0,0.004913909586422565,0.0,0.0,0.0,-0.0,-21.725,1560.2108,46.32876 -1.479646830509721,0.005808402081965287,1.479646830509721,0.0,0.3901519675925926,-0.0,0.006370175228247847,0.0,0.0,0.0,-0.0,-18.67,1558.707,46.32876 -1.443732855279902,0.009818416146803007,1.443732855279902,0.0,0.39200034722222227,-0.0,0.010778174002945642,0.0,0.0,0.0,-0.0,-12.115,1557.2396,46.32876 -1.4095085766153872,0.013471874019881334,1.4095085766153872,0.0,0.3936696759259259,-0.0,0.014802379177958057,6.28,0.0,6.28,-0.0,-7.9799999999999995,1555.8069,46.32876 -1.3768665202354933,0.009360395258311118,1.3768665202354933,0.0,0.39600023148148145,-0.0,0.010294102302037565,0.0,0.0,0.0,-0.0,-12.84,1554.4076,46.32876 -1.3457008856594799,0.006103028538048657,1.3457008856594799,0.0,0.3972188657407407,-0.0,0.006717719734679984,0.0,0.0,0.0,-0.0,-18.24,1553.0403,46.32876 -1.3159129642009162,0.004947074182404151,1.3159129642009162,0.0,0.40000023148148145,-0.0,0.005450029919397326,0.0,0.0,0.0,-0.0,-20.855,1551.7035,46.32876 -1.2874158291512452,0.005302034929495799,1.2874158291512452,0.0,0.4012189814814815,-0.0,0.005846004527215819,0.0,0.0,0.0,-0.0,-20.05,1550.396,46.32876 -1.2601203787792037,0.00567587885254456,1.2601203787792037,0.0,0.40399999999999997,-0.0,0.006263373629287596,0.0,0.0,0.0,-0.0,-19.299999999999997,1549.1162,46.32876 -1.2339533674986622,0.006358801572267881,1.2339533674986622,0.0,0.40521898148148144,-0.0,0.007022664880099817,0.0,0.0,0.0,-0.0,-17.939999999999998,1547.863,46.32876 -1.2088386282785082,0.007813345653074462,1.2088386282785082,0.0,0.4080003472222223,-0.0,0.008635915847187857,0.0,0.0,0.0,-0.0,-15.454999999999998,1546.635,46.32876 -1.184724118199381,0.006194808027711379,1.184724118199381,0.0,0.40966990740740744,-0.0,0.006852313968736233,0.0,0.0,0.0,-0.0,-18.375,1545.4316,46.32876 -1.1615440482022625,0.007940667329241638,1.1615440482022625,0.0,0.41200046296296294,-0.0,0.008790187653003304,0.0,0.0,0.0,-0.0,-15.355,1544.2516,46.32876 -1.1392435798147595,0.007340511459818202,1.1392435798147595,0.0,0.41464768518518513,-0.0,0.008131921458468588,0.0,0.0,0.0,-0.0,-16.41,1543.0939,46.275658 -1.1177755904829,0.007898332429799646,1.1177755904829,0.0,0.4159996527777778,-0.0,0.008756330225349733,4.19,0.0,4.19,-0.0,-15.525,1541.9578,48.4285 -1.0970663951162631,0.011175538531234248,1.0970663951162631,0.0,0.419205324074074,-0.0,0.012398520129684482,25.62,0.0,25.62,-0.0,-11.165,1540.841,63.403473 -1.0770974872692165,0.008718354749834109,1.0770974872692165,0.0,0.41999976851851856,-0.0,0.009679328876581605,3.53,0.0,3.53,-0.0,-14.379999999999999,1539.7439,77.736565 -1.0578487723929677,0.010566316290786552,1.0578487723929677,0.0,0.42400011574074076,-0.0,0.011739191041967785,0.0,0.0,0.0,-0.0,-12.025,1538.667,79.72242 -1.0392775151864533,0.012029540048960181,1.0392775151864533,0.0,0.42400011574074076,-0.0,0.013374028351414312,0.0,0.0,0.0,-0.0,-10.32,1537.6093,80.6881 -1.0213558301896684,0.009451527704449602,1.0213558301896684,0.0,0.428,-0.0,0.01051498699925669,1.0,0.0,1.0,-0.0,-13.565,1536.5704,81.353096 -1.0040468896585009,0.005746711515426442,1.0040468896585009,0.0,0.42846388888888887,-0.0,0.006397565257106788,0.0,0.0,0.0,-0.0,-19.755000000000003,1535.5497,81.75698 -0.9873157971391869,0.00892663248102986,0.9873157971391869,0.0,0.43200000000000005,-0.0,0.009944132534142022,0.21,0.0,0.21,-0.0,-14.395,1534.5461,81.95062 -0.9711135830297541,0.009259589749535072,0.9711135830297541,0.0,0.4336695601851852,-0.0,0.010321688428530238,0.0,0.0,0.0,-0.0,-13.97,1533.558,82.047005 -0.9554350075377861,0.008899049376690026,0.9554350075377861,0.0,0.43600011574074077,-0.0,0.009926084800717187,0.0,0.0,0.0,-0.0,-14.535,1532.5859,81.944305 -0.9402190196420969,0.013094713227417539,0.9402190196420969,0.0,0.4399488425925926,-0.0,0.01461511117381456,1.7,0.0,1.7,-0.0,-9.635,1531.6272,82.85912 -0.9254250424203159,0.015631289358322722,0.9254250424203159,0.0,0.4400003472222222,-0.0,0.01745699874213114,0.0,0.0,0.0,-0.0,-7.255000000000001,1530.68,83.665726 -0.9110891534407317,0.01297188820530982,0.9110891534407317,0.0,0.4440001157407408,-0.0,0.014495813563377542,0.0,0.0,0.0,-0.0,-9.865,1529.7477,83.67105 -0.8971825479513277,0.014422984811248337,0.8971825479513277,0.0,0.4440081018518519,-0.0,0.016127067590201955,0.0,0.0,0.0,-0.0,-8.445,1528.8291,83.67105 -0.8836615909677586,0.017054495667113236,0.8836615909677586,0.0,0.4480001157407407,-0.0,0.01908081097786156,0.0,0.0,0.0,-0.0,-6.29,1527.9222,83.67105 -0.8705721453281705,0.01178880092090161,0.8705721453281705,0.0,0.4501516203703704,-0.0,0.013197175113373733,0.0,0.0,0.0,-0.0,-11.28,1527.031,83.70973 -0.857909787604132,0.009725621242092277,0.857909787604132,0.0,0.452,-0.0,0.010893755485141774,2.69,0.0,2.69,-0.0,-13.81,1526.156,85.033394 -0.845580231571785,0.015567975396794146,0.845580231571785,0.0,0.45599953703703705,-0.0,0.017447712096437713,15.35,0.0,15.35,-0.0,-7.745,1525.2915,92.36269 -0.8335113499078328,0.02154738423165815,0.8335113499078328,3.681168091350323e-5,0.45599953703703705,-1.0727581384958062e-14,0.024162697685227146,4.53,3.6811680924230816e-5,4.529963188319075,-0.0,-3.265,1524.433,99.37672 -0.8217742859812348,0.017512791711621394,0.8217742859812348,0.0,0.46,-0.0,0.019649323060408525,3.61,0.0,3.61,-0.0,-6.25,1523.586,104.01375 -0.8104559180484096,0.008243186852961444,0.8104559180484096,0.0,0.4604638888888889,-0.0,0.009253872446967418,0.0,0.0,0.0,-0.0,-16.105,1522.7578,105.73206 -0.7995172992945107,0.005194426966671556,0.7995172992945107,0.0,0.463999537037037,-0.0,0.0058344177180257115,0.0,0.0,0.0,-0.0,-21.81,1521.9463,105.748405 -0.7888940030965715,0.005740900731809156,0.7888940030965715,0.0,0.46799976851851854,-0.0,0.0064516072530958575,0.0,0.0,0.0,-0.0,-20.715,1521.1475,105.748344 -0.7785359762090187,0.006905328510908046,0.7785359762090187,0.0,0.46799976851851854,-0.0,0.007764216511618293,0.0,0.0,0.0,-0.0,-18.475,1520.3582,105.74828 -0.7683783399839225,0.014625275937904438,0.7683783399839225,0.0,0.4719996527777777,-0.0,0.016452862101891497,0.0,0.0,0.0,-0.0,-8.995000000000001,1519.5739,105.748405 -0.7606399765490292,0.027007887713139934,0.7606399765490292,0.33781073500264935,0.4719996527777777,-0.0021892259464781,0.030394906143745067,0.34,0.33999996094912743,3.905087256672602e-8,-0.0,-0.4950000000000001,1518.9694,105.74919 -0.7531165406295087,0.024100992099486053,0.7531165406295087,-2.1862183497066104e-10,0.4760001157407408,-2.1862183497066104e-10,0.027134065394458787,0.0,0.0,0.0,-0.0,-2.235,1518.3757,105.74986 -0.7418061474536394,0.026158480724769395,0.7418061474536394,-4.693811093219468e-6,0.4800005787037037,-4.693811093219468e-6,0.02946802422587432,0.0,0.0,0.0,-0.0,-1.1800000000000002,1517.472,105.74965 -0.7904467843893478,0.03302659022828216,0.7904467843893478,10.33037517950041,0.4800005787037037,5.3203751795004095,0.03711231931340248,5.01,5.01,0.0,-0.0,2.165,1521.2649,103.783585 -0.9331559932764583,0.03340504209330305,0.9331559932764583,11.476647729685912,0.4840002314814815,5.186647729685911,0.03729459209657477,6.29,6.29,0.0,-0.0,2.115,1531.1769,98.60882 -0.960852160728338,0.015403274324494867,0.960852160728338,0.0,0.4840002314814815,-0.0,0.0171771751939742,5.32,0.0,5.32,-0.0,-8.754999999999999,1532.9236,101.61225 -0.9453856319556987,0.01677674207096752,0.9453856319556987,0.0,0.48800034722222224,-0.0,0.018720652037858568,26.75,0.0,26.75,-0.0,-7.71,1531.9545,117.63832 -0.9303772295796191,0.019120277164913962,0.9303772295796191,0.0,0.4919994212962963,-0.0,0.02134904929475267,25.69,0.0,25.69,-0.0,-6.035,1530.9988,143.66895 -0.9158410641679151,0.015822557470977053,0.9158410641679151,0.0,0.4919994212962963,-0.0,0.01767778670737469,3.09,0.0,3.09,-0.0,-8.59,1530.0583,157.93443 -0.9017568567741041,0.017428247518590196,0.9017568567741041,0.0,0.4959997685185185,-0.0,0.019483533051711577,4.89,0.0,4.89,-0.0,-7.390000000000001,1529.1328,162.14754 -0.8886645352588085,0.013109809082986337,0.8886645352588085,0.0,0.4959997685185185,-0.0,0.014664203963051266,0.05,0.0,0.05,-0.0,-11.17,1528.2594,165.11928 -0.8822304028020532,0.020989175474312668,0.8822304028020532,7.806977286861638e-13,0.4999997685185186,-0.0,0.023484474262435842,1.9,7.806977286861638e-13,1.8999999999992192,-0.0,-4.945,1527.8254,166.77736 -0.8892950726616824,0.03411101698472131,0.8892950726616824,6.521264820042591,0.503999537037037,4.491264820042591,0.03815441120793233,2.03,2.03,0.0,-0.0,1.855,1528.3018,167.1628 -0.892556638622474,0.02353283761785202,0.892556638622474,-1.6238190070522593e-15,0.503999537037037,-1.6238190070522593e-15,0.026318568502774784,0.0,0.0,0.0,-0.0,-3.4699999999999998,1528.5204,166.9815 -0.8790730521453098,0.023152875511068455,0.8790730521453098,0.0,0.5079996527777778,-0.0,0.02590903677043242,0.0,0.0,0.0,-0.0,-3.8,1527.6113,166.98164 -0.8659612975539559,0.027765381883826972,0.8659612975539559,-3.092248753392392e-6,0.5079996527777778,-3.092248753392392e-6,0.03108888896412985,0.0,0.0,0.0,-0.0,-1.2249999999999996,1526.7139,166.98164 -0.8532003101981742,0.03429107200347426,0.8532003101981742,4.143572924090856,0.511999537037037,4.143572924090856,0.03841801223869072,0.0,0.0,0.0,-0.0,1.725,1525.8273,166.98164 -0.840785467724178,0.03093357270545087,0.840785467724178,-0.05428663088520156,0.5159998842592592,-0.05428663088520156,0.0346763307391115,0.0,0.0,0.0,-0.0,0.11999999999999966,1524.9519,166.98164 -0.8287138733495842,0.025196506362671633,0.8287138733495842,-9.494280302598478e-13,0.5159998842592592,-9.494280302598478e-13,0.028261122771594982,0.0,0.0,0.0,-0.0,-2.8,1524.0883,166.98166 -0.8169825746188608,0.029313058870094257,0.8169825746188608,-0.00023619108983262492,0.520000462962963,-0.00023619108983262492,0.03289674384778117,0.0,0.0,0.0,-0.0,-0.75,1523.2368,166.98166 -0.8055869318467951,0.025844569250538317,0.8055869318467951,-1.2239092163224068e-11,0.520000462962963,-1.2239092163224068e-11,0.029020193836923554,0.0,0.0,0.0,-0.0,-2.535,1522.398,166.98166 -0.7945256178968186,0.02431207061667338,0.7945256178968186,-1.089969368980342e-15,0.5240002314814816,-1.089969368980342e-15,0.027314205083817548,0.0,0.0,0.0,-0.0,-3.4949999999999997,1521.5723,166.98166 -0.7958291682087891,0.028612554113410266,0.7958291682087891,-1.5388847000895815e-6,0.5279998842592593,-1.5388847000895815e-6,0.03214365825711437,0.0,0.0,0.0,-0.0,-1.3000000000000003,1521.6702,166.9488 -0.8181991999196501,0.028334234848132488,0.8181991999196501,5.0015179808640475,0.5279998842592593,-3.609313997354617e-7,0.03179639809424642,5.01,5.001518341795447,0.008481658204552342,-0.0,-1.455,1523.3257,166.95258 -0.8266109974585905,0.026486417756843055,0.8266109974585905,-1.3476248370110797e-11,0.5319998842592593,-1.3476248370110797e-11,0.029710882235564378,0.0,0.0,0.0,-0.0,-2.525,1523.9365,167.31805 -0.8894805030186633,0.02888429728745103,0.8894805030186633,12.32370430877199,0.5319998842592593,-1.1101532835949174e-6,0.03230787220867394,12.33,12.323705418925273,0.0062945810747266915,-0.0,-1.335,1528.3142,168.38885 -1.1293711700329716,0.028379750020818266,1.1293711700329716,18.23896710701849,0.5359994212962963,-1.0948158848405816e-8,0.03145007839847587,19.49,18.23896711796665,1.251032882033349,-0.0,-1.825,1542.5741,168.93091 -1.1453446471534339,0.024220156119993216,1.1453446471534339,0.0,0.5395353009259259,-0.0,0.026825883226512037,0.0,0.0,0.0,-0.0,-4.155,1543.4128,176.7388 -1.1233368215282957,0.02477619453794309,1.1233368215282957,0.0,0.54,-0.0,0.02746235998258923,0.0,0.0,0.0,-0.0,-3.84,1542.2542,176.7671 -1.1021483046041458,0.027253766603145005,1.1021483046041458,0.024332134082200224,0.5439997685185185,-6.865667287493128e-12,0.030230834668801092,3.71,0.024332134089065892,3.685667865910934,-0.0,-2.595,1541.117,176.94865 -1.0817396938401627,0.024701024714905394,1.0817396938401627,0.0,0.5439997685185185,-0.0,0.027419103050864542,0.0,0.0,0.0,-0.0,-3.9650000000000003,1540.0007,177.26973 -1.0620541058355675,0.02466068882235718,1.0620541058355675,0.0,0.5479999999999999,-0.0,0.027393838760730593,0.0,0.0,0.0,-0.0,-4.08,1538.9039,177.55984 -1.0404082709752875,0.026773143155022085,1.0404082709752875,-1.9258067055455358e-13,0.5498481481481481,-1.9258067055455358e-13,0.029764201442093945,0.0,0.0,0.0,-0.0,-2.965,1537.6742,177.87146 -1.141702967000392,0.03210102971203167,1.141702967000392,15.68771411498382,0.5520004629629629,-0.0022841708218766586,0.03555900285148812,15.69,15.689998285805697,1.7141943021464767e-6,-0.0,-0.4900000000000002,1543.2227,179.07925 -1.341792373349143,0.034247611559581906,1.341792373349143,6.434574173243526,0.5559922453703704,0.1345741736642512,0.0377012150815146,6.3,6.299999999579274,4.207253545551737e-10,-0.0,0.25,1552.8666,179.08112 -1.3890472083457408,0.034151780923355066,1.3890472083457408,0.020428119632911978,0.5560002314814815,0.020428119632911978,0.03754574363558488,0.0,0.0,0.0,-0.0,0.18999999999999995,1554.9336,178.99097 -1.4755875372187237,0.03572402793333468,1.4755875372187237,9.678451295609094,0.56,1.4084512956149284,0.03918328482132627,8.27,8.269999999994164,5.8362487065366506e-12,-0.0,0.7049999999999998,1558.543,178.2992 -1.7905679371845955,0.03494075184658017,1.7905679371845955,16.983693382723057,0.5600517361111111,0.19369338359630153,0.038042132071457235,16.79,16.789999999126756,8.73242432253285e-10,-0.0,0.275,1570.0974,177.50568 -2.087208894456002,0.04160430411362427,2.087208894456002,6.5907858943789,0.5639996527777777,6.5907858943789,0.04503456513252679,0.0,0.0,0.0,-0.0,2.64,1579.2522,173.90208 -2.3313347774201683,0.04668336213833715,2.3313347774201683,10.843318562829754,0.5663305555555556,10.843318562829754,0.0503218989360413,0.0,0.0,0.0,-0.0,4.23,1585.858,165.18774 -2.757679483744947,0.051568749515858825,2.757679483744947,14.480704996109754,0.5679997685185185,14.480704996109754,0.055238694842113696,0.0,0.0,0.0,-0.0,5.59,1595.888,152.57904 -3.3693293114007226,0.05395793058379697,3.3693293114007226,15.764488443149755,0.5715351851851852,15.764488443149755,0.05736785343883429,0.0,0.0,0.0,-0.0,6.07,1607.8513,137.51138 -4.061611809232447,0.05201007471058652,4.061611809232447,13.959167970749753,0.5719994212962963,13.959167970749753,0.054915745387638666,0.0,0.0,0.0,-0.0,5.395,1619.011,122.58381 -5.33557115602834,0.07346744717391865,5.33557115602834,27.53250337434975,0.5760005787037037,27.53250337434975,0.0767990345464751,0.0,0.0,0.0,-0.0,10.469999999999999,1635.3036,101.632416 -7.506682548065824,0.0697322454243037,7.506682548065824,26.047836293629754,0.5760005787037037,24.817836293629753,0.07199682225599578,1.23,1.23,0.0,-0.0,9.455,1655.6919,75.409386 -8.397240341048924,0.04212035724485783,8.397240341048924,3.956353790050162,0.5800003472222222,3.956353790050162,0.043313082313587145,0.0,0.0,0.0,-0.0,1.6549999999999998,1662.3871,61.070084 -8.040684953389253,0.045919693376746784,8.040684953389253,7.366405060421706,0.5807946759259259,7.366405060421706,0.04729372191014496,0.0,0.0,0.0,-0.0,2.9299999999999997,1659.7959,55.43868 -8.267478590443922,0.05219523622266918,8.267478590443922,12.220711219549752,0.5840005787037037,12.220711219549752,0.05370329765569665,0.0,0.0,0.0,-0.0,4.744999999999999,1661.457,45.693848 -9.143147616543349,0.05261022741246405,9.143147616543349,17.070947684989754,0.5853530092592593,12.300947684989755,0.05393510363088774,4.77,4.77,0.0,-0.0,4.775,1667.4694,33.73769 -10.192056737270267,0.05412071062179192,10.192056737270267,15.333312339389755,0.5880002314814815,13.103312339389754,0.055268650499878995,2.23,2.23,0.0,-0.0,5.075,1673.9552,21.020224 -11.020604348711888,0.04914937745316125,11.020604348711888,15.281134369229733,0.5903311342592593,8.971134369229732,0.050052307481369476,6.31,6.31,0.0,-0.0,3.5300000000000002,1678.6228,9.970694 -11.440857979152801,0.047112376582260904,11.440857979152801,12.01361305235824,0.5920008101851852,3.693613052358239,0.04791408985473097,8.32,8.32,0.0,-0.0,2.84,1680.8578,3.693613 -10.572240442198705,0.05129855469356999,10.572240442198705,1.355253125652637,0.5943310185185184,1.355253125652637,0.052318277270670406,0.0,0.0,0.0,-0.0,4.09,1676.1423,1.3552549 -9.094164697927633,0.052568273400556524,9.094164697927633,0.4940046266307781,0.5959997685185184,0.4940046266307781,0.053902463273743324,0.0,0.0,0.0,-0.0,4.495,1667.1486,0.4974202 -7.923183585236728,0.05177022301189194,7.923183585236728,0.16715122375120636,0.5987809027777777,0.16715122375120636,0.05334757038343223,0.0,0.0,0.0,-0.0,4.27,1658.9167,0.19172439 -7.008903867604811,0.053147597964448075,7.008903867604811,0.20136437545906816,0.5999998842592592,0.06136437545906813,0.05500972208562034,0.14,0.14,0.0,-0.0,4.7,1651.5944,0.087058134 -6.278507066208177,0.052425831760474155,6.278507066208177,0.027546830061697832,0.6027810185185185,0.027546830061697832,0.05447945605742876,0.0,0.0,0.0,-0.0,4.484999999999999,1645.0222,0.045094818 -5.677669796569184,0.06725580865951582,5.677669796569184,0.014034895396790089,0.6039996527777778,0.014034895396790089,0.07014651511487807,0.0,0.0,0.0,-0.0,8.31,1639.0149,0.024968704 -5.1785460371192595,0.10382832899818413,5.1785460371192595,0.007662071365158732,0.6063304398148148,0.007662071365158732,0.10865524654951068,0.0,0.0,0.0,-0.0,15.229999999999999,1633.5197,0.014303003 -4.757290344538194,0.10567067011128668,4.757290344538194,0.004339979376175353,0.6079995370370371,0.004339979376175353,0.110927322607399,0.0,0.0,0.0,-0.0,15.525,1628.4526,0.008332968 -4.398361404295657,0.11391427500630599,4.398361404295657,0.002464594568977217,0.6098476851851852,0.002464594568977217,0.119926019905704,0.0,0.0,0.0,-0.0,16.765,1623.7678,0.004813369 -4.111932827586064,0.11691071309258041,4.111932827586064,0.4114014811363502,0.6120002314814815,0.0014014811363502629,0.12338617571926974,0.41,0.41,0.0,-0.0,17.18,1619.7463,0.0027647456 -3.8870614515311783,0.07330586080209095,3.8870614515311783,0.900728922543541,0.6133524305555556,0.0007289225435409711,0.07752689009919984,0.9,0.9,0.0,-0.0,9.629999999999999,1616.3877,0.0014473709 -3.6640999817921576,0.054392836554693534,3.6640999817921576,0.0004169808786288218,0.6159914351851852,0.0004169808786288218,0.05765065438414216,0.0,0.0,0.0,-0.0,5.01,1612.86,0.000830513 -3.438810050103956,0.05748465763390796,3.438810050103956,0.00022913464794578687,0.6162851851851852,0.00022913464794578687,0.06107115420774244,0.0,0.0,0.0,-0.0,5.875,1609.0703,0.00045722403 -3.3103678930011022,0.07060790590164538,3.3103678930011022,2.8201317910710877,0.6195356481481481,0.00013179107108767993,0.07511929802565433,2.82,2.82,0.0,-0.0,8.98,1606.797,0.00026323568 -3.2109549226310685,0.06385984856584065,3.2109549226310685,1.4900750171522197,0.6199998842592592,7.501715221962745e-5,0.06801716443047082,1.49,1.49,0.0,-0.0,7.43,1604.9761,0.00014992192 -3.1814578451384667,0.05006075175198754,3.1814578451384667,4.710043743680064,0.6227818287037037,4.374368006394886e-5,0.05333805407433281,4.71,4.71,0.0,-0.0,3.6799999999999997,1604.4249,8.744912e-5 -3.110799030843029,0.046158759415299636,3.110799030843029,1.3400242278646404,0.6240006944444445,2.422786464031542e-5,0.049221761626874465,1.34,1.34,0.0,-0.0,2.46,1603.0836,4.8443995e-5 -3.1950847789172596,0.058305474150888964,3.1950847789172596,8.000013526298181,0.6253526620370371,1.3526298180840312e-5,0.06211264806926989,8.0,8.0,0.0,-0.0,5.91,1604.6802,2.7048938e-5 -3.4451068231191946,0.07129919140659305,3.4451068231191946,8.630007911502595,0.6278895833333333,7.911502594697994e-6,0.07574244088666901,8.63,8.63,0.0,-0.0,8.9,1609.1796,1.5821754e-5 -3.821437281876085,0.05455717391418216,3.821437281876085,12.580004650649578,0.6280518518518519,4.650649576625871e-6,0.05773495412364417,12.58,12.58,0.0,-0.0,4.739999999999999,1615.3708,9.300867e-6 -3.829506920334974,0.05814153161617456,3.829506920334974,2.490024979846037e-6,0.6303303240740741,2.490024979846037e-6,0.06152329118823415,0.0,0.0,0.0,-0.0,5.645,1615.4968,4.979926e-6 -3.58845323689812,0.06496180631798891,3.58845323689812,1.2112778964177798e-6,0.6319916666666667,1.2112778964177798e-6,0.06890587076753435,0.0,0.0,0.0,-0.0,7.335,1611.6141,2.4225264e-6 -3.402250784216866,0.0952559242941301,3.402250784216866,0.9000007099215885,0.6322856481481481,7.099215884729899e-7,0.10123914989041645,0.9,0.9,0.0,-0.0,13.395,1608.432,1.4198331e-6 -3.236812960775422,0.148897590741242,3.236812960775422,4.1609007196626703e-7,0.6347809027777778,4.1609007196626703e-7,0.158543599299488,0.0,0.0,0.0,-0.0,20.805,1605.4551,8.321767e-7 -3.007551748085627,0.15003649893797422,3.007551748085627,2.359135061690855e-7,0.6360001157407408,2.359135061690855e-7,0.1601940494792039,0.0,0.0,0.0,-0.0,20.950000000000003,1601.0679,4.718259e-7 -2.850402154075973,0.08569032510919539,2.850402154075973,1.2104061837563105e-7,0.6362856481481481,1.2104061837563105e-7,0.0916751172820505,0.0,0.0,0.0,-0.0,11.7,1597.8629,2.4208094e-7 -2.947435124193977,0.09817519190144547,2.947435124193977,11.450000070203298,0.6387810185185185,7.02032987209251e-8,0.10490070821374262,11.45,11.45,0.0,-0.0,13.805,1599.862,1.404065e-7 -3.0635546278415275,0.09657723349999103,3.0635546278415275,0.07000004101394686,0.6399917824074074,4.1013946851400674e-8,0.10304465119964523,0.07,0.07,0.0,-0.0,13.485,1602.1697,8.202786e-8 -2.9156587945215215,0.08362849995849786,2.9156587945215215,2.4402997582485767e-8,0.6400512731481481,2.4402997582485767e-8,0.08939366207924086,0.0,0.0,0.0,-0.0,11.205,1599.2147,4.8805983e-8 -2.788640242323045,0.08430541020830183,2.788640242323045,0.6100000144203124,0.6418483796296296,1.4420312358659692e-8,0.09026738215296806,0.61,0.61,0.0,-0.0,11.315,1596.5547,2.884062e-8 -2.670313606203453,0.10186815473864189,2.670313606203453,7.076397302617811e-9,0.6435354166666667,7.076397302617811e-9,0.1092493266298227,0.0,0.0,0.0,-0.0,14.345,1593.9653,1.4152794e-8 -2.5529707728328224,0.10117838576947084,2.5529707728328224,1.7690159650333003e-9,0.6439998842592592,1.7690159650333003e-9,0.1086925810438156,0.0,0.0,0.0,-0.0,14.25,1591.2816,3.5380319e-9 -2.4440344315793654,0.09358377478651797,2.4440344315793654,-2.511133517036077e-10,0.6442856481481481,-2.511133517036077e-10,0.10069874339493425,0.0,0.0,0.0,-0.0,13.005,1588.6774,-5.022267e-10 -2.489788465274497,0.09373067290101385,2.489788465274497,1.8199999998570942,0.6458482638888889,-1.4290582585735824e-10,0.10078653892768376,1.82,1.82,0.0,-0.0,12.98,1589.785,-2.8581165e-10 -2.804279388770676,0.09799960834612743,2.804279388770676,15.539999999928355,0.6471538194444444,-7.164405175093781e-11,0.1049080708652475,15.54,15.54,0.0,-0.0,13.594999999999999,1596.8887,-1.432881e-10 -3.263879807449602,0.1027127527358732,3.263879807449602,12.599999999959502,0.6479927083333333,-4.04964984992745e-11,0.1093329088438518,12.6,12.6,0.0,-0.0,14.245000000000001,1605.9524,-8.0993e-11 -3.3284907112492865,0.07413389985091516,3.3284907112492865,-2.3056688497571004e-11,0.6480521990740741,-2.3056688497571004e-11,0.0788545792629098,0.0,0.0,0.0,-0.0,9.034999999999998,1607.123,-4.6113377e-11 -3.1513298077793754,0.08808840088675647,3.1513298077793754,-1.3583652430191362e-11,0.6487947916666666,-1.3583652430191362e-11,0.09388849276860696,0.0,0.0,0.0,-0.0,11.77,1603.8567,-2.7167305e-11 -2.9730725374290996,0.1119786740777432,2.9730725374290996,-7.805395218442305e-12,0.6498487268518519,-7.805395218442305e-12,0.11961113289910183,0.0,0.0,0.0,-0.0,15.67,1600.3793,-1.561079e-11 -2.9209438949075834,0.11572058343142294,2.9209438949075834,6.079999999995402,0.6507814814814814,-4.597879802375563e-12,0.12368973706343173,6.08,6.08,0.0,-0.0,16.2,1599.3229,-9.19576e-12 -2.8654562397035495,0.13705575186516392,2.8654562397035495,-2.55492025099247e-12,0.6515357638888889,-2.55492025099247e-12,0.14659915192564255,0.0,0.0,0.0,-0.0,19.025,1598.1775,-5.1098405e-12 -2.741392299593636,0.1411447705098691,2.741392299593636,-1.481983589643707e-12,0.6519921296296297,-1.481983589643707e-12,0.15122301090723114,0.0,0.0,0.0,-0.0,19.54,1595.5342,-2.9639672e-12 -2.6157827301943386,0.11438251900353265,2.6157827301943386,-7.790418158600359e-13,0.6520001157407407,-7.790418158600359e-13,0.12276535872096861,0.0,0.0,0.0,-0.0,16.045,1592.7332,-1.5580836e-12 -2.501459891128631,0.10561424565674044,2.501459891128631,-4.020172053310698e-13,0.6520517361111111,-4.020172053310698e-13,0.11354473655734208,0.0,0.0,0.0,-0.0,14.76,1590.0643,-8.040344e-13 -2.376960478663589,0.11894038116609484,2.376960478663589,-2.120185944123208e-13,0.6522856481481482,-2.120185944123208e-13,0.12811717613176185,0.0,0.0,0.0,-0.0,16.745,1587.0155,-4.240372e-13 -2.268016587280106,0.1391644483673657,2.268016587280106,-6.846717068076896e-14,0.6527943287037037,-6.846717068076896e-14,0.15016674247533154,0.0,0.0,0.0,-0.0,19.4,1584.2136,-1.3693434e-13 -2.2315318589583835,0.14284532947466821,2.2315318589583835,2.169999999999998,0.653352662037037,-1.6666955071257079e-15,0.15423292278681133,2.17,2.17,0.0,-0.0,19.84,1583.2451,-3.333391e-15 -2.3870293367260844,0.10665991598856579,2.3870293367260844,9.8,0.653848611111111,-8.004671786300966e-17,0.11487094469227116,9.8,9.8,0.0,-0.0,14.905,1587.268,-1.6009344e-16 -2.4953929149409144,0.10644722383298487,2.4953929149409144,-4.7888172343324326e-17,0.653848611111111,-4.7888172343324326e-17,0.1144507007233644,0.0,0.0,0.0,-0.0,14.845,1589.9193,-9.5776345e-17 -2.4359846487635095,0.12519979279295093,2.4359846487635095,1.72,0.653848611111111,-2.8620621247902156e-17,0.1347351670500617,1.72,1.72,0.0,-0.0,17.545,1588.4803,-5.724124e-17 -2.551390094530769,0.11282384742120165,2.551390094530769,8.37,0.6543310185185185,-1.6953116285111052e-17,0.12120573117750053,8.37,8.37,0.0,-0.0,15.774999999999999,1591.2446,-3.3906233e-17 -2.708596541160636,0.10407816437893751,2.708596541160636,3.97,0.6543310185185185,-1.0027522618273066e-17,0.11155997189807591,3.97,3.97,0.0,-0.0,14.415,1594.8154,-2.0055045e-17 -2.7686083071311134,0.0966081449297084,2.7686083071311134,3.89,0.653848611111111,-5.9703915516510465e-18,0.10346805287897207,3.89,3.89,0.0,-0.0,13.205,1596.1241,-1.1940783e-17 -2.7478439238732455,0.09769294971739005,2.7478439238732455,1.69,0.653848611111111,-3.3544105305755584e-18,0.1046593667100878,1.69,1.69,0.0,-0.0,13.39,1595.6746,-6.708821e-18 -2.649473957476391,0.09933928159505807,2.649473957476391,-1.2719281241674233e-18,0.653352662037037,-1.2719281241674233e-18,0.10656849848177406,0.0,0.0,0.0,-0.0,13.695,1593.4974,-2.5438562e-18 -2.6056116202559276,0.13566087438474278,2.6056116202559276,3.45,0.653352662037037,-8.233634325200369e-20,0.14562443008844655,3.45,3.45,0.0,-0.0,18.865000000000002,1592.5005,-1.6467269e-19 -2.7428776338332215,0.14290822539546771,2.7428776338332215,8.14,0.6527943287037037,4.074136258579582e-20,0.15310927855422035,8.14,8.14,0.0,-0.0,19.73,1595.5665,8.1482725e-20 -3.2472701436124973,0.12422705937410229,3.2472701436124973,18.84,0.6522856481481482,2.4394175034061067e-20,0.13225897208739537,18.84,18.84,0.0,-0.0,17.275,1605.6477,4.878835e-20 -3.5624501774801858,0.0988588142956956,3.5624501774801858,3.49,0.6520517361111111,1.408585993394804e-20,0.10488915515437466,3.49,3.49,0.0,-0.0,13.469999999999999,1611.1798,2.817172e-20 -3.544531212771775,0.09677368701291368,3.544531212771775,3.09,0.6519921296296297,8.15136168131788e-21,0.10269603112736209,3.09,3.09,0.0,-0.0,13.13,1610.8787,1.6302723e-20 -3.3979140433047803,0.08784321453250389,3.3979140433047803,4.844463632876718e-21,0.6518894675925926,4.844463632876718e-21,0.09336525376503138,0.0,0.0,0.0,-0.0,11.605,1608.3558,9.688927e-21 -3.3034462166389473,0.08948375199802915,3.3034462166389473,3.01,0.6511538194444445,2.8762039250749108e-21,0.09520859627571192,3.01,3.01,0.0,-0.0,11.934999999999999,1606.672,5.752408e-21 -3.3210016150933463,0.0904566696792026,3.3210016150933463,4.23,0.6503311342592593,1.6321769923254004e-21,0.09622480056336531,4.23,4.23,0.0,-0.0,12.125,1606.9885,3.264354e-21 -3.272129521531171,0.10446466182397354,3.272129521531171,9.643795031374578e-22,0.6493528935185184,9.643795031374578e-22,0.11118729634419208,0.0,0.0,0.0,-0.0,14.485,1606.1031,1.928759e-21 -3.2295631459603453,0.11697376251388006,3.2295631459603453,4.79,0.6482863425925927,5.540643958781278e-22,0.12456204459697348,4.79,4.79,0.0,-0.0,16.38,1605.3212,1.1081288e-21 -3.3416680273864987,0.11622563932716669,3.3416680273864987,6.76,0.6480008101851852,3.273622557550845e-22,0.12360847718950133,6.76,6.76,0.0,-0.0,16.259999999999998,1607.359,6.547245e-22 -3.4280583623743905,0.11652691824370619,3.4280583623743905,3.24,0.647890162037037,1.8792727898137663e-22,0.12381148081963451,3.24,3.24,0.0,-0.0,16.29,1608.8833,3.7585456e-22 -3.3997967881732696,0.10875270336978365,3.3997967881732696,3.82,0.64678125,1.097499768271729e-22,0.11558678677483392,3.82,3.82,0.0,-0.0,15.184999999999999,1608.3889,2.1949995e-22 -3.3328819078946332,0.09589569717142017,3.3328819078946332,0.81,0.645352199074074,6.062919860264542e-23,0.1019971217264864,0.81,0.81,0.0,-0.0,13.185,1607.2018,1.212584e-22 -3.358458466932173,0.11240114627757658,3.358458466932173,4.62,0.6440515046296297,3.443355132095646e-23,0.11951878990175728,4.62,4.62,0.0,-0.0,15.805,1607.6583,6.88671e-23 -3.7106411719043413,0.13667478537108307,3.7106411719043413,11.08,0.6438894675925926,1.509149129622601e-23,0.14479314798685103,11.08,11.08,0.0,-0.0,19.015,1613.6138,3.0182983e-23 -4.267705518625176,0.14447867400294137,4.267705518625176,16.06,0.6427809027777778,4.812755580206082e-24,0.1522723169147753,16.06,16.06,0.0,-0.0,19.9,1621.9669,9.625511e-24 -4.475438625926851,0.1168840736084628,4.475438625926851,2.7250685239119196e-24,0.6407940972222222,2.7250685239119196e-24,0.12297397563404024,0.0,0.0,0.0,-0.0,16.36,1624.8053,5.450137e-24 -4.233906189082563,0.11643084530172343,4.233906189082563,2.7,0.6399997685185186,1.6231846532708157e-24,0.1227474344341297,2.7,2.7,0.0,-0.0,16.35,1621.4921,3.2463693e-24 -4.357769289638757,0.13073977876733273,4.357769289638757,8.9,0.6395354166666667,9.651434115833858e-25,0.13768642925954808,8.9,8.9,0.0,-0.0,18.28,1623.2141,1.9302868e-24 -4.577187477478412,0.1233604637370877,4.577187477478412,10.71,0.6378482638888888,5.652297347321083e-25,0.12968064774324062,10.71,10.71,0.0,-0.0,17.32,1626.1478,1.1304595e-24 -4.46291430533265,0.1185416224062885,4.46291430533265,2.9835116331101606e-25,0.6360001157407408,2.9835116331101606e-25,0.12473073368372328,0.0,0.0,0.0,-0.0,16.72,1624.638,5.9670233e-25 -4.268054467411845,0.12481716078442949,4.268054467411845,2.56,0.6355359953703703,1.685948349738656e-25,0.13154980261230753,2.56,2.56,0.0,-0.0,17.62,1621.9718,3.3718967e-25 -4.288105727648001,0.13124165519305597,4.288105727648001,6.78,0.6338483796296296,9.7762527418981e-26,0.13829696825350202,6.78,6.78,0.0,-0.0,18.505,1622.2517,1.9552505e-25 -4.596679899244901,0.12431301159318374,4.596679899244901,11.98,0.6319996527777777,5.702381509895983e-26,0.13066160626971815,11.98,11.98,0.0,-0.0,17.6,1626.4016,1.1404763e-25 -4.892803302349953,0.11634220287663778,4.892803302349953,8.64,0.6315355324074073,2.7939906355996906e-26,0.12200404852441846,8.64,8.64,0.0,-0.0,16.47,1630.13,5.587981e-26 -4.877904408880721,0.11620892582412327,4.877904408880721,1.148627546246063e-26,0.6287943287037038,1.148627546246063e-26,0.12187790248957753,0.0,0.0,0.0,-0.0,16.525,1629.9479,2.2972551e-26 -4.516212823423897,0.11869633128234605,4.516212823423897,6.577522227732796e-27,0.628,6.577522227732796e-27,0.1248390408078517,0.0,0.0,0.0,-0.0,16.945,1625.3469,1.3155044e-26 -4.189844480746489,0.14165618770800853,4.189844480746489,3.751489279350753e-27,0.6267813657407407,3.751489279350753e-27,0.14939886133218247,0.0,0.0,0.0,-0.0,20.005,1620.8673,7.5029786e-27 -3.904548572765404,0.15865537785458755,3.904548572765404,2.0315481351304263e-27,0.624052199074074,2.0315481351304263e-27,0.1677631006456,0.0,0.0,0.0,-0.0,22.075,1616.6558,4.0630963e-27 -3.6529201669138645,0.1727670136451185,3.6529201669138645,5.567653542859561e-28,0.6238902777777778,5.567653542859561e-28,0.1831354851126376,0.0,0.0,0.0,-0.0,23.61,1612.6775,1.1135307e-27 -3.432454624496578,0.16865335135116638,3.432454624496578,-3.6630287169996225e-28,0.6207944444444444,-3.6630287169996225e-28,0.1791880208687514,0.0,0.0,0.0,-0.0,23.314999999999998,1608.9598,-7.3260574e-28 -3.24081159945837,0.1740674515462519,3.24081159945837,0.14,0.6199998842592592,-4.313297296010098e-28,0.18533552360193845,0.14,0.14,0.0,-0.0,23.93,1605.5288,-8.626595e-28 -3.0738038911107903,0.15590130167571498,3.0738038911107903,25.18,0.6183303240740741,-1.5606878026782692e-28,0.1663207251348079,25.18,25.18,0.0,-0.0,22.085,1602.3691,-3.1213756e-28 -2.929344543365562,0.14187339754294906,2.929344543365562,1.01757170650118e-28,0.615999537037037,1.01757170650118e-28,0.15162731702919097,0.0,0.0,0.0,-0.0,20.555,1599.4944,2.0351434e-28 -2.8066247818578733,0.13118481015027347,2.8066247818578733,2.6977249436297893e-28,0.6151532407407407,2.6977249436297893e-28,0.140428266248972,0.0,0.0,0.0,-0.0,19.27,1596.9386,5.39545e-28 -2.7049781016280687,0.12131809241218176,2.7049781016280687,2.7560148985853703e-28,0.6120002314814815,2.7560148985853703e-28,0.1300457266719212,0.0,0.0,0.0,-0.0,18.06,1594.7356,5.51203e-28 -2.7431523686906467,0.14066397219460436,2.7431523686906467,6.58,0.6115356481481482,1.5828476729890102e-28,0.15070426145474358,6.58,6.58,0.0,-0.0,20.575,1595.5725,3.1656953e-28 -3.0524409463083866,0.16089209900799725,3.0524409463083866,11.86,0.6080510416666667,7.439065706828541e-29,0.1716897020370392,11.86,11.86,0.0,-0.0,22.93,1601.9526,1.4878131e-28 -3.536859651317398,0.13509531220270707,3.536859651317398,12.97,0.6078891203703704,3.6612196067434245e-29,0.14337437499941647,12.97,12.97,0.0,-0.0,19.825,1610.7493,7.322439e-29 -3.831848108227926,0.10697754394733984,3.831848108227926,5.37,0.6042853009259259,2.1521326733046703e-29,0.11319725690976869,5.37,5.37,0.0,-0.0,15.96,1615.5333,4.3042653e-29 -3.8100655456171317,0.09810699247883967,3.8100655456171317,0.01,0.6039916666666666,1.270033286504119e-29,0.10383284989854336,0.01,0.01,0.0,-0.0,14.55,1615.1929,2.5400666e-29 -3.795483368385816,0.10562246336888981,3.795483368385816,4.34,0.6002854166666667,6.77435024582273e-30,0.11180280073499606,4.34,4.34,0.0,-0.0,15.864999999999998,1614.9639,1.35487e-29 -3.684415377027046,0.10324022077347947,3.684415377027046,0.25,0.5999998842592592,3.5597369412956924e-30,0.10940131806742147,0.25,0.25,0.0,-0.0,15.515,1613.1902,7.119474e-30 -4.138409269464998,0.09346462504486075,4.138409269464998,16.83,0.5962851851851851,2.1272829108073833e-30,0.0986181160951782,16.83,16.83,0.0,-0.0,13.920000000000002,1620.1296,4.254566e-30 -4.3903671962381,0.10281046210909198,4.3903671962381,1.2800772368590138e-30,0.5959997685185184,1.2800772368590138e-30,0.10824345349585834,0.0,0.0,0.0,-0.0,15.45,1623.6592,2.5601545e-30 -4.076999768905077,0.11570020745294618,4.076999768905077,7.711300305518526e-31,0.5920523148148148,7.711300305518526e-31,0.12214704610483715,0.0,0.0,0.0,-0.0,17.565,1619.2368,1.5422601e-30 -3.810229095623415,0.11557236331033004,3.810229095623415,4.592456124425297e-31,0.591992824074074,4.592456124425297e-31,0.1223173649837512,0.0,0.0,0.0,-0.0,17.59,1615.1954,9.184912e-31 -3.6231232245000142,0.11654473767694952,3.6231232245000142,0.19,0.5880002314814815,8.246452572289698e-32,0.12357655667653089,0.19,0.19,0.0,-0.0,17.875,1612.1884,1.6492905e-31 -3.5092357889458445,0.09850248884852082,3.5092357889458445,-3.994852663981379e-31,0.5879922453703703,-3.994852663981379e-31,0.10456942853719761,0.0,0.0,0.0,-0.0,15.105,1610.281,-7.989705e-31 -3.4329106997570347,0.0912166954284268,3.4329106997570347,2.76,0.5840005787037037,-8.627092219215905e-31,0.09691392663439287,2.76,2.76,0.0,-0.0,13.975,1608.9678,-1.7254184e-30 -3.3632397855526963,0.08874706506688686,3.3632397855526963,2.26,0.5835359953703704,-1.1833125167298325e-30,0.09436186065029477,2.26,2.26,0.0,-0.0,13.555,1607.7433,-2.366625e-30 -3.272055950339398,0.08445956681567773,3.272055950339398,1.31,0.5800003472222222,-1.2374007733930886e-30,0.08989488475651454,1.31,1.31,0.0,-0.0,12.870000000000001,1606.1018,-2.4748015e-30 -3.1353569905994547,0.08877517772876409,3.1353569905994547,0.08,0.5787818287037036,-9.094817659826171e-31,0.09463839633313524,0.08,0.08,0.0,-0.0,13.735,1603.5532,-1.8189635e-30 -2.979837937104036,0.07268251141293297,2.979837937104036,-5.259278804816256e-31,0.5760005787037037,-5.259278804816256e-31,0.07762996197820317,0.0,0.0,0.0,-0.0,10.64,1600.515,-1.0518558e-30 -2.8344478483696065,0.07172887839466932,2.8344478483696065,-3.0432088778805302e-31,0.5738478009259259,-3.0432088778805302e-31,0.07675467567843391,0.0,0.0,0.0,-0.0,10.520000000000001,1597.5277,-6.0864178e-31 -2.699565021901761,0.07324135107271512,2.699565021901761,-1.517434372730723e-31,0.5719994212962963,-1.517434372730723e-31,0.07851623020947936,0.0,0.0,0.0,-0.0,10.93,1594.616,-3.0348687e-31 -2.5771253820045263,0.08059546400628739,2.5771253820045263,-4.102471757886731e-32,0.5680513888888888,-4.102471757886731e-32,0.08655044351815601,0.0,0.0,0.0,-0.0,12.595,1591.844,-8.2049435e-32 -2.4718325673709587,0.08307728400946905,2.4718325673709587,2.4096772774902932e-33,0.5679997685185185,2.4096772774902932e-33,0.08935547837280876,0.0,0.0,0.0,-0.0,13.11,1589.3528,4.8193546e-33 -2.517551174782563,0.08954662233589473,2.517551174782563,9.59,0.5639996527777777,1.3687617851447954e-33,0.09624742876840098,9.59,9.59,0.0,-0.0,14.43,1590.4473,2.7375236e-33 -2.789472580190166,0.11067034858926596,2.789472580190166,9.73,0.5639916666666667,6.354674706087284e-34,0.11849549285900131,9.73,9.73,0.0,-0.0,17.869999999999997,1596.5725,1.2709349e-33 -3.1593015005782847,0.11694446580472462,3.1593015005782847,11.75,0.56,3.2641652891848784e-34,0.12463283163785385,11.75,11.75,0.0,-0.0,18.84,1604.0076,6.5283306e-34 -3.202237559147276,0.09242311169454026,3.202237559147276,1.9006461399681283e-34,0.558330324074074,1.9006461399681283e-34,0.09844987258557623,0.0,0.0,0.0,-0.0,14.965,1604.8137,3.8012923e-34 -3.0282662564186125,0.09274689176458879,3.0282662564186125,1.1251616112654965e-34,0.5560002314814815,1.1251616112654965e-34,0.09900055898176617,0.0,0.0,0.0,-0.0,15.125,1601.4778,2.2503232e-34 -2.845779794069597,0.10689886582499035,2.845779794069597,6.428007760451214e-35,0.5520519675925926,6.428007760451214e-35,0.11437184461351545,0.0,0.0,0.0,-0.0,17.634999999999998,1597.766,1.2856016e-34 -2.913984592725788,0.10672818429572734,2.913984592725788,8.22,0.5520004629629629,3.794005592493601e-35,0.11408823418698076,8.22,8.22,0.0,-0.0,17.595,1599.1804,7.588011e-35 -3.228111173702418,0.08555602539230918,3.228111173702418,9.94,0.5479999999999999,2.1830521431726742e-35,0.09110771087683338,9.94,9.94,0.0,-0.0,14.004999999999999,1605.2943,4.3661043e-35 -3.3197120957537862,0.08330104947120445,3.3197120957537862,1.2976038487676488e-35,0.5479921296296296,1.2976038487676488e-35,0.08861416842117736,0.0,0.0,0.0,-0.0,13.555,1606.9653,2.5952077e-35 -3.1411751608742455,0.07123138560831013,3.1411751608742455,7.639972139192281e-36,0.5439997685185185,7.639972139192281e-36,0.07593066955737109,0.0,0.0,0.0,-0.0,11.195,1603.664,1.5279944e-35 -2.980313065920802,0.08688422086642711,2.980313065920802,4.5010323693852936e-36,0.540794212962963,4.5010323693852936e-36,0.0927978203624877,0.0,0.0,0.0,-0.0,14.52,1600.5245,9.002065e-36 -2.8342392818975406,0.08025308633642839,2.8342392818975406,2.6133600236749044e-36,0.54,2.6133600236749044e-36,0.08587638195981728,0.0,0.0,0.0,-0.0,13.285,1597.5233,5.22672e-36 -2.686041234057973,0.06182851628046133,2.686041234057973,4.423159366284284e-37,0.5359994212962963,4.423159366284284e-37,0.0662939063161855,0.0,0.0,0.0,-0.0,9.29,1594.316,8.846319e-37 -2.5399996444088466,0.06231349060555001,2.5399996444088466,-2.2298912236922267e-36,0.5359994212962963,-2.2298912236922267e-36,0.06695411371717766,0.0,0.0,0.0,-0.0,9.445,1590.9774,-4.4597824e-36 -2.4096976444256994,0.08721246365506986,2.4096976444256994,-4.709082098607154e-36,0.5319998842592593,-4.709082098607154e-36,0.09389297439631945,0.0,0.0,0.0,-0.0,14.98,1587.8324,-9.418164e-36 -2.306012081197265,0.12193269170048784,2.306012081197265,-6.301077329436447e-36,0.5298482638888888,-6.301077329436447e-36,0.13149029705113766,0.0,0.0,0.0,-0.0,20.695,1585.2058,-1.2602155e-35 -2.23818306476049,0.08560769131434849,2.23818306476049,-6.311697243609342e-36,0.5279998842592593,-6.311697243609342e-36,0.0924219394343233,0.0,0.0,0.0,-0.0,14.845,1583.4229,-1.2623394e-35 -2.213569001349337,0.07622942997525718,2.213569001349337,2.92,0.5240002314814816,-4.293517151449665e-36,0.08233152021131934,2.92,2.92,0.0,-0.0,13.09,1582.7625,-8.587034e-36 -2.2446613830711803,0.07927448017877087,2.2446613830711803,4.12,0.5240002314814816,-2.4562171134805445e-36,0.08557528539322248,4.12,4.12,0.0,-0.0,13.715,1583.5955,-4.9124342e-36 -2.36889433809777,0.07097540644599586,2.36889433809777,8.76,0.520000462962963,-1.4321366266318467e-36,0.07646126454335948,8.76,8.76,0.0,-0.0,12.024999999999999,1586.8125,-2.8642733e-36 -2.3510172529454754,0.05354517464004916,2.3510172529454754,0.04,0.5183310185185186,-7.535825305563016e-37,0.0577002586993247,0.04,0.04,0.0,-0.0,7.655,1586.3601,-1.507165e-36 -2.2733959855316286,0.05722856140991147,2.2733959855316286,-3.6021094490283157e-37,0.5159998842592592,-3.6021094490283157e-37,0.0617475176606534,0.0,0.0,0.0,-0.0,8.775,1584.3551,-7.204219e-37 -2.361439549760771,0.06398509246176866,2.361439549760771,8.8,0.511999537037037,-2.102320553982613e-37,0.06893883028243676,8.8,8.8,0.0,-0.0,10.625,1586.6243,-4.204641e-37 -2.654895128280512,0.05256718650570984,2.654895128280512,10.55,0.511999537037037,-1.2011025757903764e-37,0.05638833837956795,10.55,10.55,0.0,-0.0,7.49,1593.6195,-2.4022052e-37 -2.7719492183434102,0.05292327960026801,2.7719492183434102,-7.074606637377986e-38,0.5079996527777778,-7.074606637377986e-38,0.056678674672601036,0.0,0.0,0.0,-0.0,7.69,1596.1962,-1.4149213e-37 -2.6414169411145885,0.0622446266395188,2.6414169411145885,-4.053430409848188e-38,0.5067805555555556,-4.053430409848188e-38,0.0667819770641777,0.0,0.0,0.0,-0.0,10.284999999999998,1593.3156,-8.106861e-38 -2.5263248798304674,0.07382256257066519,2.5263248798304674,-2.3915753498458933e-38,0.503999537037037,-2.3915753498458933e-38,0.07933636798529076,0.0,0.0,0.0,-0.0,13.12,1590.655,-4.7831507e-38 -2.4206620930019755,0.08230636299897383,2.4206620930019755,-1.3923759766129217e-38,0.4999997685185186,-1.3923759766129217e-38,0.0885959368824971,0.0,0.0,0.0,-0.0,15.045,1588.1035,-2.784752e-38 -2.318536965087654,0.07372766205151685,2.318536965087654,-4.2526984145914916e-39,0.4999997685185186,-4.2526984145914916e-39,0.07949052991488134,0.0,0.0,0.0,-0.0,13.280000000000001,1585.5293,-8.505397e-39 -2.2202665085264375,0.07878802617709238,2.2202665085264375,7.432916552758145e-39,0.4959997685185185,7.432916552758145e-39,0.08508523059046151,0.0,0.0,0.0,-0.0,14.515,1582.9429,1.4865833e-38 -2.1307032406963486,0.0765148662644618,2.1307032406963486,1.80026551321905e-38,0.49366840277777774,1.80026551321905e-38,0.08275894619754012,0.0,0.0,0.0,-0.0,14.14,1580.4839,3.600531e-38 -2.0539308103023206,0.061843200763269934,2.0539308103023206,2.4326087319976383e-38,0.4919994212962963,2.4326087319976383e-38,0.06698286295633177,0.0,0.0,0.0,-0.0,10.8,1578.2924,4.8652175e-38 -1.9934757619932741,0.07309079938159366,1.9934757619932741,2.3272784513685062e-38,0.48800034722222224,2.3272784513685062e-38,0.07925482010514204,0.0,0.0,0.0,-0.0,13.625,1576.5082,4.654557e-38 -1.980183633505795,0.0960636191669167,1.980183633505795,1.92,0.48800034722222224,1.4518077069520194e-38,0.1041914291244748,1.92,1.92,0.0,-0.0,18.14,1576.1086,2.9036154e-38 -2.156466588260595,0.07413290494789912,2.156466588260595,11.02,0.4840002314814815,7.59579647975894e-39,0.08014620407406561,11.02,11.02,0.0,-0.0,13.94,1581.2017,1.5191593e-38 -2.644388150754192,0.059936797389983795,2.644388150754192,19.36,0.48167002314814816,4.072722646325934e-39,0.06430320795972798,19.36,19.36,0.0,-0.0,10.49,1593.3827,8.145445e-39 -2.852996053797536,0.051406544622868824,2.852996053797536,0.16,0.4800005787037037,2.3694443629391186e-39,0.0549950159812951,0.16,0.16,0.0,-0.0,8.1,1597.9172,4.738889e-39 -2.735006136700028,0.04432732174768833,2.735006136700028,1.3916771490687629e-39,0.4760001157407408,1.3916771490687629e-39,0.04749659695391511,0.0,0.0,0.0,-0.0,5.98,1595.3949,2.783354e-39 -2.6134418947445646,0.049915091904759144,2.6134418947445646,8.27416997088321e-40,0.4760001157407408,8.27416997088321e-40,0.05357505614029993,0.0,0.0,0.0,-0.0,7.825,1592.6797,1.654834e-39 -2.501500796146236,0.06465678095825528,2.501500796146236,3.5063079979565924e-40,0.4719996527777777,3.5063079979565924e-40,0.0695117652552053,0.0,0.0,0.0,-0.0,12.049999999999999,1590.0653,7.01262e-40 -2.398214154726197,0.06582461780888864,2.398214154726197,-3.2853232301325688e-40,0.4701513888888889,-3.2853232301325688e-40,0.07087954531546878,0.0,0.0,0.0,-0.0,12.425,1587.5471,-6.57065e-40 -2.3028279000753447,0.06850189245876907,2.3028279000753447,-1.0398167098706586e-39,0.46799976851851854,-1.0398167098706586e-39,0.07387520912455883,0.0,0.0,0.0,-0.0,13.165,1585.1233,-2.079633e-39 -2.2146823389260684,0.06851277639943976,2.2146823389260684,-1.5996992054485498e-39,0.463999537037037,-1.5996992054485498e-39,0.07399575227295042,0.0,0.0,0.0,-0.0,13.329999999999998,1582.7925,-3.199398e-39 -2.1331784557638556,0.06427508630276452,2.1331784557638556,-1.8246580557173986e-39,0.463999537037037,-1.8246580557173986e-39,0.0695172757837798,0.0,0.0,0.0,-0.0,12.325,1580.5532,-3.649316e-39 -2.0577842780533446,0.044285248489892265,2.0577842780533446,-1.531170105349209e-39,0.46,-1.531170105349209e-39,0.04796230343704756,0.0,0.0,0.0,-0.0,6.65,1578.4043,-3.06234e-39 -1.9968810795019383,0.043143419551163506,1.9968810795019383,-8.538945315717384e-40,0.45920532407407405,-8.538945315717384e-40,0.04677884115376155,0.0,0.0,0.0,-0.0,6.295,1576.6101,-1.707789e-39 -1.9530620893339001,0.04635420784830794,1.9530620893339001,1.08,0.45599953703703705,-3.1720843012304803e-40,0.050302459223929084,1.08,1.08,0.0,-0.0,7.515,1575.285,-6.34417e-40 -1.9066197504125684,0.045727988856506606,1.9066197504125684,-3.3636067688420747e-41,0.45200810185185186,-3.3636067688420747e-41,0.049668217804379765,0.0,0.0,0.0,-0.0,7.455,1573.8478,-6.7272e-41 -1.9138158507749166,0.04990119386146159,1.9138158507749166,-9.353667249368154e-42,0.452,-9.353667249368154e-42,0.054193267303835516,0.0,0.0,0.0,-0.0,8.805,1574.0728,-1.8707e-41 -2.3017737569450474,0.048759896388345214,2.3017737569450474,24.76,0.4480001157407407,-5.3361445521489034e-42,0.052585549862204914,24.76,24.76,0.0,-0.0,8.475,1585.096,-1.0672e-41 -3.2847815526484236,0.042813903988029714,3.2847815526484236,25.95,0.4480001157407407,-3.162730633981112e-42,0.045562577374891694,25.95,25.95,0.0,-0.0,6.27,1606.3336,-6.325e-42 -3.9091084159557865,0.03657101186644076,3.9091084159557865,1.91,0.4440001157407408,-1.8441087790514593e-42,0.03866872914541944,1.91,1.91,0.0,-0.0,3.93,1616.7255,-3.688e-42 -3.7189481191848066,0.038379054374933406,3.7189481191848066,-1.1035225406557934e-42,0.44166932870370373,-1.1035225406557934e-42,0.04065537191536536,0.0,0.0,0.0,-0.0,4.76,1613.7473,-2.207e-42 -3.4993509690928626,0.041122194694858005,3.4993509690928626,-6.5300508437536476e-43,0.4400003472222222,-6.5300508437536476e-43,0.043659549596867075,0.0,0.0,0.0,-0.0,5.8950000000000005,1610.1125,-1.306e-42 -3.3034529690237946,0.040364689998719706,3.3034529690237946,-3.440187729917426e-43,0.43611064814814815,-3.440187729917426e-43,0.04294707246944659,0.0,0.0,0.0,-0.0,5.78,1606.6721,-6.88e-43 -3.128628575078543,0.04238972771252692,3.128628575078543,-1.80066852665739e-43,0.43600011574074077,-1.80066852665739e-43,0.04519300264812154,0.0,0.0,0.0,-0.0,6.56,1603.4249,-3.6e-43 -3.078607837679851,0.04716742149615535,3.078607837679851,-1.0159413866354924e-43,0.43200000000000005,-1.0159413866354924e-43,0.0503168549276541,0.0,0.0,0.0,-0.0,8.354999999999999,1602.4624,-2.03e-43 -3.2299262410575205,0.0588108944630208,3.2299262410575205,12.51,0.43194837962962956,-5.184804318001823e-44,0.06262579286170149,12.51,12.51,0.0,-0.0,11.8,1605.3279,-1.04e-43 -3.4345600928882307,0.06269009615400603,3.4345600928882307,1.91,0.428,-2.942726775082116e-44,0.0666044196296594,1.91,1.91,0.0,-0.0,12.935,1608.9965,-5.9e-44 -3.33603760957823,0.06497198914154471,3.33603760957823,-1.5414283107572988e-44,0.4261517361111111,-1.5414283107572988e-44,0.06910344308098267,0.0,0.0,0.0,-0.0,13.600000000000001,1607.2583,-3.1e-44 -3.195032532282226,0.06458006680509001,3.195032532282226,1.92,0.42400011574074076,-7.707141553786494e-45,0.06879699481562711,1.92,1.92,0.0,-0.0,13.61,1604.6792,-1.5e-44 -3.4492288208066406,0.0430087482461207,3.4492288208066406,11.09,0.42121863425925926,-4.203895392974451e-45,0.045686955920164724,11.09,11.09,0.0,-0.0,7.255,1609.251,-8.0e-45 -3.560077103857509,0.03410714514925574,3.560077103857509,-2.101947696487225e-45,0.41999976851851856,-2.101947696487225e-45,0.03618855868235734,0.0,0.0,0.0,-0.0,3.7699999999999996,1611.14,-4.0e-45 -3.369053840835837,0.034424053588999914,3.369053840835837,-1.401298464324817e-45,0.4164640046296296,-1.401298464324817e-45,0.03659962561577019,0.0,0.0,0.0,-0.0,4.0649999999999995,1607.8464,-3.0e-45 -3.6373331450723674,0.04128852347224803,3.6373331450723674,14.13,0.4159996527777778,-1.401298464324817e-45,0.04377335215442106,14.13,14.13,0.0,-0.0,6.79,1612.4221,-3.0e-45 -4.290446637901498,0.04140885331131107,4.290446637901498,21.20999999999999,0.4121109953703704,-1.1020144283331936e-14,0.0436340414160696,21.21,21.21,0.0,-0.0,6.885,1622.2843,-2.2040289e-14 -4.478412706504862,0.028543114742572085,4.478412706504862,-2.2415540447520254e-14,0.41200046296296294,-2.2415540447520254e-14,0.030029536835126016,0.0,0.0,0.0,-0.0,1.2999999999999998,1624.845,-4.483167e-14 -4.349937773050339,0.0268092291836017,4.349937773050339,4.589999999983985,0.4080084490740741,2.8044720874029394e-14,0.028235563582704914,4.59,4.589999999983957,1.6043496531281676e-11,-0.0,0.5450000000000002,1623.1067,5.748646e-14 -4.174585216963032,0.028960904040925984,4.174585216963032,3.679600657593403e-14,0.40794895833333333,3.679600657593403e-14,0.030547961815515574,0.0,0.0,0.0,-0.0,1.6950000000000003,1620.6494,7.359203e-14 -3.9070634147876375,0.035960617499569865,3.9070634147876375,2.2205039863043985e-14,0.40399999999999997,2.2205039863043985e-14,0.0380240574646428,0.0,0.0,0.0,-0.0,5.095000000000001,1616.6942,4.441008e-14 -3.6651711466809385,0.030590131266367723,3.6651711466809385,1.2024655054941537e-14,0.4037145833333334,1.2024655054941537e-14,0.03242195315100621,0.0,0.0,0.0,-0.0,2.7250000000000005,1612.8774,2.404931e-14 -3.473702444567137,0.02491185383024455,3.473702444567137,-0.020748846990056722,0.40000023148148145,-0.020748846990056722,0.02645620394497703,0.0,0.0,0.0,-0.0,-0.10999999999999988,1609.6732,-2.516734e-13 -3.443065266257025,0.024903120871188504,3.443065266257025,40.73799705795305,0.39971435185185183,-0.022002851905845607,0.02645562480108559,40.76,40.7599999098589,9.014109907168333e-8,-0.0,-0.10000000000000009,1609.1442,-1.930214e-12 -3.5488011851006367,0.025923896605124692,3.5488011851006367,-1.9569484013649154e-12,0.3960082175925926,-1.9569484013649154e-12,0.027509156185055755,0.0,0.0,0.0,-0.0,0.5999999999999996,1610.9506,-3.9701398e-12 -3.7541881907424957,0.025173558236838565,3.7541881907424957,4.547565821029449,0.39571446759259266,-0.012434178183136984,0.0266573346113682,4.56,4.559999999212587,7.874131213725376e-10,-0.0,0.15500000000000025,1614.3105,-4.9822e-12 -4.017470402745513,0.027065995233383395,4.017470402745513,9.269999999998145,0.3921108796296296,-1.8379066391059666e-12,0.028589627444894797,9.27,9.269999999999984,1.646682790124032e-14,-0.0,1.3050000000000002,1618.3584,-3.675859e-12 -4.033177492183345,0.02591333620355206,4.033177492183345,3.079167828858322e-12,0.3919487268518519,3.079167828858322e-12,0.02736814069896947,0.0,0.0,0.0,-0.0,0.675,1618.5914,6.200138e-12 -3.778801384122226,0.02143916453154261,3.778801384122226,-3.0943331601950244e-9,0.3884644675925926,-3.0943331601950244e-9,0.022697341719458905,0.0,0.0,0.0,-0.0,-1.8850000000000002,1614.7008,5.182237e-8 -3.5525897382925167,0.019667303305540403,3.5525897382925167,-4.029137899191918e-14,0.38799999999999996,-4.029137899191918e-14,0.02086914352151832,0.0,0.0,0.0,-0.0,-3.0549999999999997,1611.0143,8.1256424e-8 -3.3520939473721225,0.017903672551522514,3.3520939473721225,0.0,0.3848466435185185,-0.0,0.019038738831877174,0.0,0.0,0.0,-0.0,-4.225,1607.545,8.125647e-8 -3.173034587291409,0.01699365630494443,3.173034587291409,0.0,0.3840003472222222,-0.0,0.018107958444885514,0.0,0.0,0.0,-0.0,-4.89,1604.2666,0.0001558972 -3.0351262328512876,0.02130877259107227,3.0351262328512876,3.3545052586257946,0.38166932870370374,-8.794211004365766e-8,0.022743645284010565,3.38,3.3545053465679047,0.025494653432095313,-0.0,-1.605,1601.6129,1.2341313 -2.989342700591988,0.027315641101807942,2.989342700591988,0.7923039051772186,0.3799997685185186,0.7923039051772186,0.029171532370591887,0.0,0.0,0.0,-0.0,2.0599999999999996,1600.7052,0.79259014 -3.2835396555492022,0.03291952014327466,3.2835396555492022,16.69057598006384,0.37920590277777777,0.28057598006384193,0.035033461817661773,16.41,16.41,0.0,-0.0,4.815,1606.311,0.29522783 -4.918071065751171,0.026325950987137272,4.918071065751171,39.18594949222974,0.37611087962962964,0.0959494922297658,0.02760190655939806,39.09,39.089999999999975,2.6039170819558424e-14,-0.0,1.4,1630.4376,0.12377805 -6.700976828498471,0.02059874927440741,6.700976828498471,1.4558236317815199,0.3759486111111111,-1.353099062218271e-10,0.02135515706990645,11.39,1.4558236319168298,9.93417636808317,-0.0,-2.2849999999999997,1648.9113,0.8102089 -6.027726859104477,0.016386654762011885,6.027726859104477,0.0,0.37321898148148147,-0.0,0.017053789110343925,0.0,0.0,0.0,-0.0,-5.325,1642.5879,6.4471116 -5.473810875820898,0.013279280659928797,5.473810875820898,0.0,0.3719998842592593,-0.0,0.013868511864709264,0.0,0.0,0.0,-0.0,-8.095,1636.8312,6.448234 -5.013101298705232,0.014461101948277995,5.013101298705232,0.0,0.37120578703703705,-0.0,0.015151375619147044,0.0,0.0,0.0,-0.0,-6.87,1631.5806,6.4481897 -4.623658939523618,0.017973018759436573,4.623658939523618,2.1212128457404055e-7,0.3684645833333333,-0.0,0.01888683211398617,2.73,2.1212128457404055e-7,2.7299997878787154,-0.0,-3.73,1626.7511,7.8125477 -4.543453196686019,0.021290623065433573,4.543453196686019,12.365079914609774,0.3680003472222222,-1.4018760562817791e-6,0.0223874974264118,12.37,12.365081316485831,0.004918683514166564,-0.0,-1.31,1625.706,11.893775 -4.4623396325393205,0.017283156032333123,4.4623396325393205,1.5473079392203103e-8,0.36615196759259255,-0.0,0.018185603444965358,16.22,1.5473079392203103e-8,16.21999998452692,-0.0,-4.17,1624.6302,22.64224 -4.151134325929354,0.011632816042708629,4.151134325929354,0.0,0.3644642361111111,-0.0,0.012272842138216103,0.0,0.0,0.0,-0.0,-9.455,1620.313,30.692532 -3.879251122600641,0.012453736643598388,3.879251122600641,0.0,0.36400011574074076,-0.0,0.01317181484764147,0.49,0.0,0.49,-0.0,-8.495,1616.2676,30.934597 -3.5828463896861233,0.019926543557768364,3.5828463896861233,-5.365405192593287e-9,0.3621513888888889,-5.365405192593287e-9,0.021137580347271413,0.0,0.0,0.0,-0.0,-1.9000000000000004,1611.5208,31.150167 -3.863614333837238,0.022390178169357282,3.863614333837238,16.207878611425507,0.3604638888888889,-0.022121286005427742,0.023684722895972066,16.23,16.229999897430936,1.0256906411543199e-7,-0.0,-0.20499999999999996,1616.0264,31.19516 -3.8063058324405312,0.013184268087861448,3.8063058324405312,0.0,0.3599998842592593,-0.0,0.013954256146909939,0.0,0.0,0.0,-0.0,-7.57,1615.1339,36.14129 -3.577526171330169,0.011488268709931417,3.577526171330169,0.0,0.35920578703703704,-0.0,0.012187140013454847,0.69,0.0,0.69,-0.0,-9.355,1611.432,36.4832 -3.3746296141097427,0.01421686151195394,3.3746296141097427,0.0,0.3572189814814815,-0.0,0.01511442719253679,3.68,0.0,3.68,-0.0,-6.38,1607.9452,38.65814 -3.1934981684713835,0.010567948485143454,3.1934981684713835,0.0,0.35611041666666665,-0.0,0.011258212178262195,6.06,0.0,6.06,-0.0,-10.290000000000001,1604.6505,43.513462 -3.030941473736213,0.007983793639098648,3.030941473736213,0.0,0.3559483796296296,-0.0,0.008521838221654962,0.0,0.0,0.0,-0.0,-13.895,1601.5305,46.561584 -2.8841484056707074,0.008810302985817418,2.8841484056707074,0.0,0.3546476851851852,-0.0,0.00942148863890107,1.67,0.0,1.67,-0.0,-12.56,1598.5658,47.490593 -2.750794276413341,0.012999817884276225,2.750794276413341,0.0,0.35321898148148145,-0.0,0.013926266629331597,10.09,0.0,10.09,-0.0,-7.34,1595.7386,53.323074 -2.6291623598210556,0.010700715583653826,2.6291623598210556,0.0,0.35211030092592593,-0.0,0.011482750530411832,0.0,0.0,0.0,-0.0,-9.879999999999999,1593.0378,58.273308 -2.5178753921853385,0.009671270667681742,2.5178753921853385,0.0,0.35199988425925927,-0.0,0.010394925118109717,0.0,0.0,0.0,-0.0,-11.185,1590.455,58.28161 -2.41568465047475,0.007079453080923662,2.41568465047475,0.0,0.35171423611111113,-0.0,0.007621030835842278,0.0,0.0,0.0,-0.0,-15.16,1587.9806,58.28161 -2.32146763114745,0.008764874298654616,2.32146763114745,0.0,0.3506474537037037,-0.0,0.009449524570431725,1.28,0.0,1.28,-0.0,-12.375,1585.6047,58.93257 -2.234320579716594,0.006746832480734974,2.234320579716594,0.0,0.34966921296296294,-0.0,0.00728434509145703,0.0,0.0,0.0,-0.0,-15.655,1583.3197,59.620872 -2.153519715076576,0.005918570919813863,2.153519715076576,0.0,0.3488465277777778,-0.0,0.006398986973271822,0.0,0.0,0.0,-0.0,-17.240000000000002,1581.12,59.662846 -2.0783240083225722,0.008017670304311986,2.0783240083225722,0.0,0.3481105324074074,-0.0,0.008680124805345805,0.0,0.0,0.0,-0.0,-13.375,1578.9974,59.79301 -2.0081168539504546,0.010830641379732008,2.0081168539504546,0.0,0.3480079861111111,-0.0,0.011740775341121916,5.64,0.0,5.64,-0.0,-9.43,1576.9452,62.758514 -1.9425035827981743,0.007417054315367992,1.9425035827981743,0.0,0.34794849537037037,-0.0,0.008050461410311694,0.0,0.0,0.0,-0.0,-14.33,1574.9613,65.47098 -1.8811016604868134,0.006113286700374722,1.8811016604868134,0.0,0.34771435185185184,-0.0,0.006643445019906525,3.24,0.0,3.24,-0.0,-16.735,1573.0431,67.19993 -1.8234697932857402,0.006240925957529135,1.8234697932857402,0.0,0.3472057870370371,-0.0,0.006790174856425773,2.2,0.0,2.2,-0.0,-16.445,1571.1848,69.90428 -1.769262780348117,0.006329443675790413,1.769262780348117,0.0,0.3466476851851852,-0.0,0.006894391099114298,0.96,0.0,0.96,-0.0,-16.235,1569.3826,71.452736 -1.7181415873443275,0.008821638176633699,1.7181415873443275,0.0,0.3466476851851852,-0.0,0.009619764382335189,23.33,0.0,23.33,-0.0,-11.995000000000001,1567.6316,83.67891 -1.669879308252115,0.006840825215674928,1.669879308252115,0.0,0.3461518518518519,-0.0,0.007467845699054404,0.0,0.0,0.0,-0.0,-15.215,1565.93,95.382614 -1.6242968989314068,0.005270071107428545,1.6242968989314068,0.0,0.3461518518518519,-0.0,0.005759197269876066,0.0,0.0,0.0,-0.0,-18.44,1564.2772,95.66567 -1.581131488246233,0.006822473697962602,1.581131488246233,0.0,0.3456693287037037,-0.0,0.007463355990802038,3.44,0.0,3.44,-0.0,-15.205000000000002,1562.6687,97.19997 -1.5401957988481658,0.006721567624803618,1.5401957988481658,0.0,0.3456693287037037,-0.0,0.0073603496389345454,1.49,0.0,1.49,-0.0,-15.379999999999999,1561.1022,98.81655 -1.5012831970263714,0.008689746901421547,1.5012831970263714,0.0,0.3461518518518519,-0.0,0.00952489833764881,0.0,0.0,0.0,-0.0,-12.104999999999999,1559.574,99.569016 -1.4641795023455348,0.015192392135643346,1.4641795023455348,3.75368958138722e-12,0.3461518518518519,-0.0,0.016668470779342394,0.29,3.75368958138722e-12,0.2899999999962463,-0.0,-4.6,1558.0795,99.71929 -1.531164942259196,0.021445083497384262,1.531164942259196,11.677529588519894,0.3461518518518519,0.1575295892160089,0.023488394210676458,11.52,11.519999999303884,6.961151655104914e-10,-0.0,0.26000000000000023,1560.751,101.51288 -1.6027015388790369,0.015510692938783136,1.6027015388790369,0.0,0.3466476851851852,-0.0,0.016958938022119566,0.0,0.0,0.0,-0.0,-4.38,1563.4779,102.936134 -1.5604417049494583,0.013675238132827082,1.5604417049494583,0.0,0.3472057870370371,-0.0,0.014967382465736442,0.0,0.0,0.0,-0.0,-6.125,1561.8821,103.06501 -1.5203368728001037,0.01556621196303456,1.5203368728001037,0.0,0.34771435185185184,-0.0,0.017054008531916586,0.0,0.0,0.0,-0.0,-4.345,1560.3271,103.091576 -1.4822350031319258,0.013787877869667545,1.4822350031319258,0.0,0.34794849537037037,-0.0,0.015120392163609728,7.16,0.0,7.16,-0.0,-6.015000000000001,1558.8114,106.77449 -1.4459980846796312,0.01448634301560316,1.4459980846796312,4.91151563863923e-14,0.34800000000000003,-0.0,0.015901438310672197,5.33,4.91151563863923e-14,5.329999999999951,-0.0,-5.325,1557.3333,113.062126 -1.4114777371308944,0.013966651756274952,1.4114777371308944,3.5638159090467525e-16,0.3480079861111111,-0.0,0.015345199671097235,6.42,3.5638159090467525e-16,6.42,-0.0,-5.8149999999999995,1555.8903,119.26802 -1.3786040825758648,0.01090138757593236,1.3786040825758648,0.0,0.3484641203703704,-0.0,0.011988228978721009,4.84,0.0,4.84,-0.0,-9.17,1554.4829,124.86509 -1.347288956914432,0.008054435827936177,1.347288956914432,0.0,0.34921886574074074,-0.0,0.008865268836348781,4.02,0.0,4.02,-0.0,-13.145000000000001,1553.1107,129.25998 -1.3174066388679835,0.007517782251782638,1.3174066388679835,0.0,0.35015162037037034,-0.0,0.008281733380198684,4.96,0.0,4.96,-0.0,-14.049999999999999,1551.7712,132.5956 -1.2888508122109354,0.004398571971287161,1.2888508122109354,0.0,0.35120578703703703,-0.0,0.004849641438079059,0.0,0.0,0.0,-0.0,-20.695,1550.4625,134.85663 -1.2615120447324661,0.004782116478968683,1.2615120447324661,0.0,0.3519482638888889,-0.0,0.005276875802690555,0.49,0.0,0.49,-0.0,-19.705,1549.1821,136.02774 -1.2352757349136796,0.008965419058909036,1.2352757349136796,0.0,0.35200787037037035,-0.0,0.009901005890461943,0.0,0.0,0.0,-0.0,-11.82,1547.927,136.29546 -1.2100054630110528,0.01519660781353653,1.2100054630110528,0.0,0.35284641203703704,-0.0,0.01679584434863437,0.0,0.0,0.0,-0.0,-4.76,1546.6926,136.29169 -1.1827327969708177,0.020609146150852742,1.1827327969708177,-0.0020981046015979042,0.3541518518518519,-0.0020981046015979042,0.02279804641697297,0.0,0.0,0.0,-0.0,-0.5,1545.3312,136.28206 -1.2725369642194755,0.025128078855134697,1.2725369642194755,11.937948305140335,0.35571446759259256,5.627948305140335,0.027718540223256073,6.31,6.31,0.0,-0.0,2.28,1549.7018,134.01027 -1.5911268875170743,0.02914622568532804,1.5911268875170743,17.410891680349753,0.35600000000000004,11.150891680349753,0.03187645598344201,6.26,6.26,0.0,-0.0,4.345,1563.045,125.561035 -1.8227095935762105,0.021903173602855854,1.8227095935762105,2.5055473545617977,0.3564643518518519,-0.07445264409981651,0.02383119699673997,2.58,2.5799999986616142,1.3383859953641774e-9,-0.0,0.04499999999999993,1571.1599,120.10577 -1.851522187059351,0.01680469007977679,1.851522187059351,4.5308885277484113e-7,0.35815185185185183,-0.0,0.01827302681972465,11.17,4.5308885277484113e-7,11.169999546911148,-0.0,-3.7950000000000004,1572.0966,124.15314 -1.7953322558402036,0.01769545132492712,1.7953322558402036,0.0002939366862724911,0.3599482638888889,-4.0674298472623293e-14,0.01926417233154987,8.92,0.0002939366863131654,8.919706063313686,-0.0,-3.125,1570.2561,134.20334 -1.7425101236073193,0.01219594456661402,1.7425101236073193,0.0,0.36000787037037035,-0.0,0.013292225206892407,0.0,0.0,0.0,-0.0,-8.225,1568.4727,138.48357 -1.6928157720721335,0.008808545342536592,1.6928157720721335,0.0,0.36121863425925926,-0.0,0.009610924084820107,1.57,0.0,1.57,-0.0,-12.54,1566.7448,139.3075 -1.6458871608908343,0.010619526794703762,1.6458871608908343,0.0,0.3637142361111111,-0.0,0.011599299595498951,4.62,0.0,4.62,-0.0,-10.174999999999999,1565.0658,142.40533 -1.6014636941016323,0.010717765238503296,1.6014636941016323,0.0,0.36400011574074076,-0.0,0.011718836907571606,0.04,0.0,0.04,-0.0,-10.05,1563.4318,144.81544 -1.5594054272162632,0.007590671907906769,1.5594054272162632,0.0,0.36521898148148146,-0.0,0.008308109476463963,0.0,0.0,0.0,-0.0,-14.545,1561.8424,144.87349 -1.5194949382304856,0.01205927321204437,1.5194949382304856,0.0,0.36771435185185186,-0.0,0.013212161640659434,12.64,0.0,12.64,-0.0,-8.59,1560.2941,149.61745 -1.4815716367158707,0.012664763308049226,1.4815716367158707,0.0,0.3680083333333333,-0.0,0.013888973624255983,8.64,0.0,8.64,-0.0,-7.93,1558.7847,154.84535 -1.4455193440004164,0.006429124412382247,1.4455193440004164,0.0,0.3696696759259259,-0.0,0.007057241659406624,2.19,0.0,2.19,-0.0,-16.744999999999997,1557.3135,158.65845 -1.4112209850105903,0.003405434289862371,1.4112209850105903,0.0,0.3719483796296296,-0.0,0.0037415863839612073,0.0,0.0,0.0,-0.0,-24.42,1555.8794,161.13467 -1.3785505430858191,0.004321707691044943,1.3785505430858191,0.0,0.37211041666666667,-0.0,0.004752578359417402,3.24,0.0,3.24,-0.0,-21.625,1554.4806,163.13426 -1.347322004278491,0.0069480851233798165,1.347322004278491,0.0,0.3746479166666667,-0.0,0.0076475355613425345,2.7,0.0,2.7,-0.0,-15.91,1553.1122,166.10298 -1.3174658825163725,0.005140812071133347,1.3174658825163725,0.0,0.3760002314814815,-0.0,0.005663207555584802,0.0,0.0,0.0,-0.0,-19.65,1551.7739,167.48816 -1.2889403870754998,0.003468581959959794,1.2889403870754998,0.0,0.3772188657407407,-0.0,0.0038242715785107005,0.0,0.0,0.0,-0.0,-24.330000000000002,1550.4667,167.55164 -1.2616229286204366,0.004581387106700271,1.2616229286204366,0.0,0.3799997685185186,-0.0,0.005055361775535467,0.0,0.0,0.0,-0.0,-21.14,1549.1874,167.55147 -1.2354247161631609,0.005227728260357294,1.2354247161631609,0.0,0.3804640046296296,-0.0,0.005773241287914728,0.0,0.0,0.0,-0.0,-19.560000000000002,1547.9342,167.55147 -1.2102701350754235,0.00665197904591312,1.2102701350754235,0.0,0.383714699074074,-0.0,0.007351947391352524,0.0,0.0,0.0,-0.0,-16.7,1546.7057,167.55147 -1.1860591847638546,0.010626890856559816,1.1860591847638546,0.0,0.38400833333333334,-0.0,0.011754298637079996,0.0,0.0,0.0,-0.0,-10.715,1545.4989,167.9808 -1.1626985036783781,0.01674111548781614,1.1626985036783781,6.027427668087171e-11,0.3866476851851852,-0.0,0.018531426561538424,8.92,6.027427668087171e-11,8.919999999939725,-0.0,-4.664999999999999,1544.3109,172.81407 -1.1402266983055953,0.01204970268165443,1.1402266983055953,0.0,0.38799999999999996,-0.0,0.013348383870339087,7.83,0.0,7.83,-0.0,-9.17,1543.1454,181.08244 -1.1186418570764123,0.007961786808665864,1.1186418570764123,0.0,0.3901519675925926,-0.0,0.008826412842760971,18.39,0.0,18.39,-0.0,-14.615,1542.004,188.53078 -1.0978739735521814,0.010201523449127638,1.0978739735521814,0.0,0.39200034722222227,-0.0,0.01131759209863856,21.67,0.0,21.67,-0.0,-11.479999999999999,1540.8849,195.13313 -1.0778727402162869,0.009671042243559498,1.0778727402162869,0.0,0.3936696759259259,-0.0,0.010736726012574914,0.0,0.0,0.0,-0.0,-12.22,1539.7869,200.87343 -1.0585950240762272,0.008743368464833435,1.0585950240762272,0.0,0.39600023148148145,-0.0,0.009713627785658634,0.0,0.0,0.0,-0.0,-13.585,1538.7091,205.73561 -1.0399957852508874,0.009356712822694468,1.0399957852508874,0.0,0.3972188657407407,-0.0,0.010402191959023019,7.29,0.0,7.29,-0.0,-12.745000000000001,1537.6505,209.70358 -1.022034555738536,0.01268917001289787,1.022034555738536,0.0,0.40000023148148145,-0.0,0.0141165552308843,6.93,0.0,6.93,-0.0,-8.83,1536.6101,212.76129 -1.0046792009383931,0.009011381552895777,1.0046792009383931,0.0,0.4012189814814815,-0.0,0.0100317355150418,0.07,0.0,0.07,-0.0,-13.34,1535.5873,214.86296 -0.9879335330404694,0.00647186874057773,0.9879335330404694,0.0,0.40399999999999997,-0.0,0.007209387651031338,0.65,0.0,0.65,-0.0,-17.58,1534.5835,215.77907 -0.9717350854202846,0.008494112346468973,0.9717350854202846,0.0,0.40521898148148144,-0.0,0.009468172909326455,0.89,0.0,0.89,-0.0,-14.205,1533.5962,216.61502 -0.9560073926503666,0.012234397503861537,0.9560073926503666,0.0,0.4080003472222223,-0.0,0.01364604554332912,7.26,0.0,7.26,-0.0,-9.545000000000002,1532.6217,221.3375 -0.94075344459645,0.01226289325993662,0.94075344459645,0.0,0.40966990740740744,-0.0,0.013686407201882113,8.81,0.0,8.81,-0.0,-9.56,1531.6611,229.3736 -0.926007840593433,0.008273931634533029,0.926007840593433,0.0,0.41200046296296294,-0.0,0.0092400865420063,0.0,0.0,0.0,-0.0,-14.725,1530.7177,233.63832 -0.9117374654915101,0.0089081936729653,0.9117374654915101,0.0,0.41464768518518513,-0.0,0.009954443547164222,12.06,0.0,12.06,-0.0,-13.86,1529.7902,239.45316 -0.897866845084712,0.01074582441668381,0.897866845084712,0.0,0.4159996527777778,-0.0,0.012015091040414582,11.55,0.0,11.55,-0.0,-11.475,1528.8746,247.5305 -0.8844006520595946,0.011583397822972099,0.8844006520595946,0.0,0.419205324074074,-0.0,0.01295924586501477,1.84,0.0,1.84,-0.0,-10.584999999999999,1527.9722,252.80667 -0.8713661573977587,0.0065820964766388785,0.8713661573977587,0.0,0.41999976851851856,-0.0,0.007368177942851469,0.14,0.0,0.14,-0.0,-17.79,1527.0854,254.77199 diff --git a/data/symhyd/sample.csv b/data/symhyd/sample.csv deleted file mode 100644 index 6fb174e..0000000 --- a/data/symhyd/sample.csv +++ /dev/null @@ -1,7671 +0,0 @@ -,isodate,precip,tmax,tmin,wind,pet,q,qsim -0,1986/1/1,0.109548383,6.900245599,-6.689077088,0.802659942,4.982696392,104.4785615,0.0 -1,1986/1/2,0.035025622,9.163251395,-4.446106044,1.276787307,5.613827288,68.01639681,0.0 -2,1986/1/3,0.001940387,9.040750314,-4.94150866,0.783543141,5.602994064,44.26938143,0.0 -3,1986/1/4,0.508165933,9.646989868,-4.389903951,0.740919795,5.777585447,29.46220706,0.0 -4,1986/1/5,0.175202965,6.911336151,-4.643093611,1.139571396,4.858279276,19.30686517,0.0 -5,1986/1/6,0.105111104,6.529528218,-7.449335237,0.696234784,4.893679004,12.63860352,0.0 -6,1986/1/7,0.010798221,7.117327267,-7.736318725,0.528057863,5.088001959,8.122618684,0.0 -7,1986/1/8,0.009452738,7.417943106,-7.416057159,0.624991155,5.174594473,5.28300177,0.0 -8,1986/1/9,0.0,6.915793449,-6.79277762,0.534291708,4.991022838,3.42744378,0.0 -9,1986/1/10,0.010610574,6.230152826,-7.263897189,0.644866929,4.791102157,2.250660869,0.0 -10,1986/1/11,0.000432693,7.613824759,-7.522288472,0.620968978,5.238975622,1.457203716,0.0 -11,1986/1/12,0.005738817,8.372136864,-6.623949246,0.746770259,5.45619523,0.956770681,0.0 -12,1986/1/13,0.073279443,8.528414313,-6.065185691,1.10205644,5.484930871,0.739865474,0.0 -13,1986/1/14,0.004569175,9.382720846,-7.749762241,0.88287907,5.812599449,0.438821781,0.0 -14,1986/1/15,0.046566335,10.29283992,-6.191923457,0.809183483,6.078808292,0.348571508,0.0 -15,1986/1/16,0.941998795,9.528441241,-2.397246699,1.383768457,5.564199305,3.11751478,0.0 -16,1986/1/17,0.010742724,9.848961539,-5.145087409,1.244594647,5.883788743,0.872997828,0.0 -17,1986/1/18,0.0,9.790556706,-5.48859859,1.041743074,5.87929339,0.400169103,0.0 -18,1986/1/19,0.0,10.80360494,-6.620186179,0.955311542,6.258650306,0.246370334,0.0 -19,1986/1/20,0.00390548,10.85029294,-5.745260257,0.790997652,6.248457647,0.171679042,0.0 -20,1986/1/21,0.0,11.24104621,-4.580975997,1.252688635,6.332967827,0.10666868,0.0 -21,1986/1/22,0.029428853,11.52826834,-4.760644197,1.232856072,6.440789295,0.144093234,0.0 -22,1986/1/23,0.005375973,11.90193665,-4.63900187,1.570521079,6.564920181,0.075389583,0.0 -23,1986/1/24,0.000199614,11.6884083,-5.250582937,1.420260438,6.514119609,0.040504856,0.0 -24,1986/1/25,0.046002451,11.06814279,-5.203677859,0.979762341,6.296016158,0.11406897,0.0 -25,1986/1/26,0.429932317,11.68676315,-3.265723993,1.142740845,6.405963372,1.130990547,0.0 -26,1986/1/27,0.753678185,11.56108719,-4.249899499,1.486328279,6.419615473,3.483192133,0.0 -27,1986/1/28,0.040154762,11.4421724,-4.884215178,1.378764984,6.40724004,1.099510295,0.0 -28,1986/1/29,0.067789909,12.35558993,-3.066316779,1.625858909,6.628896852,0.780967535,0.0 -29,1986/1/30,0.068603088,12.1324454,-0.896983505,1.700034492,6.355450383,0.654001006,0.0 -30,1986/1/31,0.566979022,11.29529262,-1.784269985,1.498252298,6.131450897,3.107013685,0.0 -31,1986/2/1,0.509345727,10.12735149,-4.160905438,1.432836053,5.903201724,4.022888876,0.0 -32,1986/2/2,0.384770619,9.73099318,-4.462317742,1.401754421,5.783020033,3.894692315,0.0 -33,1986/2/3,0.021994867,9.848096458,-4.709636518,1.481789186,5.836291978,1.398494162,0.0 -34,1986/2/4,0.179765947,10.76239549,-4.375177975,1.738528568,6.13183042,1.894024594,0.0 -35,1986/2/5,0.042660351,11.48946587,-4.268683033,1.476759414,6.378339979,0.990904269,0.0 -36,1986/2/6,0.285667653,12.01220377,-3.882116406,1.681779276,6.539635733,2.243954538,0.0 -37,1986/2/7,0.177416702,11.51527067,-4.068346466,1.169200813,6.372011301,1.826040373,0.0 -38,1986/2/8,0.182094764,11.46383617,-2.728743344,1.710864609,6.260700491,1.765556311,0.0 -39,1986/2/9,0.0,11.23475681,-5.535420335,1.065723274,6.337197872,0.623834673,0.0 -40,1986/2/10,0.418067108,10.88957928,-5.502944599,0.804183727,6.215666356,2.811461324,0.0 -41,1986/2/11,1.091575937,12.73036218,-3.615296123,1.441674486,6.768793012,9.374537353,0.0 -42,1986/2/12,0.014283727,12.56194746,-2.799404496,1.59827423,6.654239357,2.585748123,0.0 -43,1986/2/13,0.000859487,12.70329262,-3.066457037,1.53794285,6.720748837,1.192972675,0.0 -44,1986/2/14,0.019330311,12.8372652,-3.100997425,1.525240807,6.768659803,0.864645936,0.0 -45,1986/2/15,0.862783779,12.83146822,-1.415514545,1.63495423,6.633812848,7.051737741,0.0 -46,1986/2/16,1.368383117,11.54558148,-3.90346523,1.586697743,6.350839535,16.2343586,0.0 -47,1986/2/17,0.015272361,11.28668767,-4.994059049,1.38168258,6.31337791,4.524761345,0.0 -48,1986/2/18,0.002542974,11.08894487,-6.912794745,1.538182705,6.300536541,2.142664069,0.0 -49,1986/2/19,0.224345735,11.00844718,-7.504184908,1.311050169,6.278605677,3.462100265,0.0 -50,1986/2/20,0.375220117,12.76123886,-5.367729299,0.786481567,6.828085405,4.949126408,0.0 -51,1986/2/21,1.112177232,13.31886176,-4.517551868,1.467661681,6.991342782,13.8440187,0.0 -52,1986/2/22,0.011921981,14.56494429,-1.22321296,1.983777482,7.246941704,3.948195816,0.0 -53,1986/2/23,0.081625754,14.73170493,-1.611978864,1.693534885,7.33644046,2.705027943,0.0 -54,1986/2/24,0.034357533,14.6987236,-1.719460215,1.665565591,7.328451072,1.675000407,0.0 -55,1986/2/25,0.326526266,13.83456791,-1.476547129,1.505901098,6.983189473,3.702253033,0.0 -56,1986/2/26,0.09784089,13.93718058,-0.534435416,1.776916436,6.93355457,2.048156094,0.0 -57,1986/2/27,0.037373041,14.0714374,-0.93283752,1.681561097,7.018476976,1.13880696,0.0 -58,1986/2/28,1.017796796,12.95958181,-0.763952412,1.533344215,6.579097714,9.103725675,0.0 -59,1986/3/1,3.717773373,9.252476568,-3.676805988,0.745317737,5.498617442,60.47351376,0.0 -60,1986/3/2,2.255191765,1.929984692,-5.329797383,0.29372441,3.220504554,69.66827382,0.0 -61,1986/3/3,1.437286656,1.74604225,-7.951755529,0.487383484,3.396089088,62.07366905,0.0 -62,1986/3/4,0.023025851,4.522860918,-8.672582459,0.489258873,4.236329657,20.79805627,0.0 -63,1986/3/5,0.167976249,9.765532023,-6.990680493,0.534316827,5.821829161,15.59808044,0.0 -64,1986/3/6,0.352536599,10.92971062,-3.795102621,1.089491878,6.07433808,17.20857191,0.0 -65,1986/3/7,0.975673789,10.66643374,-2.757265797,1.139761568,5.901722409,32.21269865,0.0 -66,1986/3/8,0.790965044,11.22643114,-2.253099555,1.021190091,6.055360849,30.77791661,0.0 -67,1986/3/9,0.29616755,13.2061017,-2.224193683,1.606620119,6.766993786,17.69408008,0.0 -68,1986/3/10,0.007207516,14.08711291,-2.747491318,1.469714461,7.118598799,7.483712435,0.0 -69,1986/3/11,0.077652814,15.47412059,-1.179221805,1.622021966,7.521782179,5.881618202,0.0 -70,1986/3/12,0.206868826,16.07405192,0.206040131,1.898667848,7.630178983,6.825885329,0.0 -71,1986/3/13,0.198900374,16.38842828,0.339405739,1.511823886,7.735476897,6.051659373,0.0 -72,1986/3/14,0.151678881,15.85295681,0.159439074,1.694473857,7.540498906,4.631818881,0.0 -73,1986/3/15,0.228044247,16.51015536,1.016300624,1.800907068,7.707809976,4.954101585,0.0 -74,1986/3/16,0.548083019,15.83574995,1.454923027,1.90790394,7.38864246,8.873921447,0.0 -75,1986/3/17,0.088664484,15.89873339,-1.851161485,1.968828086,7.700900961,3.812787838,0.0 -76,1986/3/18,0.07540729,16.1924908,-1.951735399,1.870404958,7.811786094,2.48489686,0.0 -77,1986/3/19,0.056838396,16.57365746,1.354830981,2.147483822,7.679304269,1.743146705,0.0 -78,1986/3/20,0.030542687,16.48206823,2.367791958,1.959363482,7.518327196,1.121694639,0.0 -79,1986/3/21,0.072740615,16.53209616,1.156971157,1.633580159,7.675214561,1.141073737,0.0 -80,1986/3/22,0.0,16.78423976,0.961268103,1.693269623,7.789903286,0.502168549,0.0 -81,1986/3/23,0.000239726,17.49416245,1.892170594,1.923191634,7.96858724,0.299146026,0.0 -82,1986/3/24,0.005787709,17.69185771,2.022009312,1.873987635,8.028763492,0.220786178,0.0 -83,1986/3/25,0.021651471,18.0608583,2.808385428,1.783301476,8.081825241,0.225953278,0.0 -84,1986/3/26,1.079801401,16.88413219,1.284727905,1.843690605,7.777800252,6.234849321,0.0 -85,1986/3/27,0.338710923,16.20208069,-0.95702801,1.729169995,7.709250841,3.960933295,0.0 -86,1986/3/28,0.174568874,17.93428815,1.280849406,1.723979955,8.182996989,2.498540675,0.0 -87,1986/3/29,0.056525915,18.54656116,3.398362681,2.290074106,8.18824759,1.336850938,0.0 -88,1986/3/30,0.069519967,18.80859025,2.830450308,1.996063737,8.359922315,1.045063569,0.0 -89,1986/3/31,0.996493062,19.77016182,4.249883637,1.875333836,8.576933668,7.216936262,0.0 -90,1986/4/1,1.14592083,18.7973678,4.951804823,2.046060312,8.059408055,12.529208,0.0 -91,1986/4/2,0.564086405,19.41472583,5.15897723,1.818138418,8.286633315,9.497606267,0.0 -92,1986/4/3,0.637420469,19.68574294,5.314288287,1.559600869,8.374191642,10.24899493,0.0 -93,1986/4/4,2.796356997,18.86387906,5.203959528,1.550399186,8.033921096,46.68669013,0.0 -94,1986/4/5,3.112438267,18.00787669,5.184327586,1.100609143,7.66532928,84.47856338,0.0 -95,1986/4/6,5.168287482,15.42752504,3.727791444,0.793920484,6.81499186,201.064555,0.0 -96,1986/4/7,2.366429137,14.35775396,2.677832894,0.962883636,6.541766096,155.7998367,0.0 -97,1986/4/8,3.251907706,15.22889426,1.586047878,1.140465443,7.036362638,206.2005963,0.0 -98,1986/4/9,0.68745974,16.66419351,2.434882383,1.185447881,7.494766817,97.58870147,0.0 -99,1986/4/10,0.045241197,18.28175545,2.718641575,1.09697894,8.105879764,43.4075075,0.0 -100,1986/4/11,0.589238772,18.8612916,4.698616749,1.218859442,8.077547498,47.40897439,0.0 -101,1986/4/12,1.603423356,19.2226364,5.388336386,1.436830007,8.120473829,79.56874383,0.0 -102,1986/4/13,2.665977744,18.12196592,6.05618281,1.244669227,7.524817387,129.2960941,0.0 -103,1986/4/14,3.249051721,18.0446304,6.646092384,1.100370407,7.37225533,180.6886088,0.0 -104,1986/4/15,5.045750552,17.00568766,6.73243893,0.840611631,6.884360482,319.5240032,0.0 -105,1986/4/16,2.737590126,17.61258619,6.745586345,1.558918118,7.150406699,254.5566586,0.0 -106,1986/4/17,4.108367286,18.36057217,6.792107374,1.339883466,7.471084396,348.4679238,0.0 -107,1986/4/18,6.911482347,16.5874991,5.334917222,1.089269966,6.972645658,632.9449265,0.0 -108,1986/4/19,0.536787781,16.92934888,3.402995396,1.280332302,7.429218242,225.0343255,0.0 -109,1986/4/20,0.364494226,16.79719593,2.996629837,1.015134849,7.427732494,126.5278391,0.0 -110,1986/4/21,1.750626034,16.14544632,2.276443321,0.825839671,7.257666228,178.5834211,0.0 -111,1986/4/22,0.20440714,18.19352229,3.152659382,0.809264018,7.962789781,81.01455485,0.0 -112,1986/4/23,3.088650025,17.60780188,4.393632259,1.529151949,7.545338774,214.1980611,0.0 -113,1986/4/24,1.215346877,18.41115817,5.544248607,1.679774146,7.693903199,134.9951076,0.0 -114,1986/4/25,1.266583829,17.62917113,7.084955031,1.706738411,7.049838861,117.1257449,0.0 -115,1986/4/26,1.47526572,18.57213873,7.095657535,1.795773603,7.46716964,118.97038,0.0 -116,1986/4/27,2.165172452,18.34693652,7.475371686,1.680403337,7.282152579,151.0913441,0.0 -117,1986/4/28,11.65470064,19.72106125,8.202056907,1.771276002,7.748132307,858.240262,0.0009683598261878217 -118,1986/4/29,3.25492869,17.78702169,7.617453165,1.367655221,6.987837838,498.7701833,0.00048405989461822554 -119,1986/4/30,0.646137858,15.42755703,7.231641288,0.964331782,5.987799625,221.2186616,0.00024202994730911277 -120,1986/5/1,0.538632871,16.24664551,6.050932721,1.143504717,6.633602719,144.7821447,0.00012101497365455638 -121,1986/5/2,0.168473068,19.01302063,6.373955806,1.005000393,7.775946281,85.04272963,6.050748682727819e-05 -122,1986/5/3,0.381076152,19.56650408,7.942727087,1.050071246,7.712689374,70.20101388,3.0253743413639096e-05 -123,1986/5/4,9.288096347,17.90229992,9.398045872,0.976968518,6.571936904,662.8582981,0.0087425123472396 -124,1986/5/5,9.175177719,18.00498729,8.435171321,0.928093104,6.872776157,1034.453488,0.01796872723351887 -125,1986/5/6,3.031952731,17.16072606,6.900000404,0.611945015,6.840262244,602.3480309,0.008944128949893913 -126,1986/5/7,4.044790403,15.54052452,6.235057198,0.210856716,6.261544968,634.8432759,0.004472064474946956 -127,1986/5/8,4.979155471,15.5126493,6.161355603,0.33731129,6.262840591,761.1564069,0.002236032237473478 -128,1986/5/9,11.89203779,15.31161269,6.504974257,0.454228339,6.089976768,1796.212695,0.0418452198742138 -129,1986/5/10,7.027296899,16.99609386,6.595496802,0.433834002,6.81962005,1575.943384,0.023425540464372716 -130,1986/5/11,1.181600792,20.11350922,8.598015047,1.529087654,7.792945911,677.5928112,0.011695915594038429 -131,1986/5/12,1.001467262,19.61045109,9.725184022,1.381995114,7.287056539,435.0885424,0.0058479577970192145 -132,1986/5/13,3.524056011,20.05707235,10.35249437,1.257358091,7.336283685,625.6507065,0.0029239788985096072 -133,1986/5/14,4.544999021,19.60904638,9.963095332,1.242671229,7.218123923,752.1935886,0.0014619894492548036 -134,1986/5/15,0.885816549,19.78145887,10.19848137,1.224631328,7.236404983,350.2520204,0.0007309947246274018 -135,1986/5/16,0.188776013,21.29414958,10.30933589,1.755498752,7.936051936,178.4788306,0.0003654973623137009 -136,1986/5/17,0.161230665,21.32125142,9.563742194,1.384906991,8.119240111,114.7225816,0.00018274868115685045 -137,1986/5/18,1.039567467,21.32693038,11.10622327,1.679231796,7.743119077,140.2753635,9.137434057842523e-05 -138,1986/5/19,3.166845779,21.00242527,10.54404658,1.682801579,7.727412646,274.015735,4.568717028921261e-05 -139,1986/5/20,0.963491797,23.13344599,11.38975952,1.810699598,8.548102157,149.4286798,2.2843585144606307e-05 -140,1986/5/21,5.39828047,23.51757787,12.02203039,1.502531438,8.576541456,419.0050149,1.1421792572303153e-05 -141,1986/5/22,3.045547278,22.81664098,12.62692569,1.617977297,8.060742892,336.2580074,5.710896286151577e-06 -142,1986/5/23,6.268027411,22.75377425,11.77152932,1.921278556,8.257075697,596.5396567,2.8554481430757883e-06 -143,1986/5/24,4.79485723,21.12531326,10.91753001,1.503887031,7.675973964,585.733369,1.4277240715378942e-06 -144,1986/5/25,3.407846693,21.66273932,11.24870926,1.429930319,7.849858023,486.6225448,7.138620357689471e-07 -145,1986/5/26,0.266527195,22.41208133,10.68911235,1.581722202,8.348703521,192.8268324,3.5693101788447354e-07 -146,1986/5/27,0.657436749,23.43853726,10.36468679,1.260383868,8.903637889,145.3198897,1.7846550894223677e-07 -147,1986/5/28,1.126779234,24.57957658,12.09357686,2.184588389,9.057917438,142.1673339,8.923275447111839e-08 -148,1986/5/29,0.319138879,23.5884008,12.37771449,2.26388406,8.496114342,78.80173462,4.461637723555919e-08 -149,1986/5/30,1.841057289,23.96973121,12.41228393,2.24152288,8.673860211,130.5069885,2.2308188617779596e-08 -150,1986/5/31,2.9483425,24.85180556,11.67828984,2.206917806,9.276604497,193.0988639,1.1154094308889798e-08 -151,1986/6/1,2.488899034,24.85958368,12.91170621,1.597093467,8.983820436,186.7560603,5.577047154444899e-09 -152,1986/6/2,1.224259065,25.29627166,13.29064647,1.977277383,9.10292018,121.4650312,2.7885235772224495e-09 -153,1986/6/3,2.837366707,24.40121184,13.02412495,1.586229238,8.720176647,182.9974255,1.3942617886112248e-09 -154,1986/6/4,3.894814591,24.26121439,12.64870001,1.77897654,8.74531732,262.5168484,6.971308943056124e-10 -155,1986/6/5,2.127331666,24.06095479,12.22069583,1.741789463,8.751778115,195.2636444,3.485654471528062e-10 -156,1986/6/6,0.501357739,24.12682969,13.20022591,1.579385591,8.527374002,94.01419151,1.742827235764031e-10 -157,1986/6/7,2.106011022,23.0684409,13.23540589,1.695772758,7.973887893,142.4432173,8.714136178820155e-11 -158,1986/6/8,2.511271003,23.01676228,14.34550806,1.426448936,7.596394371,171.0807859,4.3570680894100774e-11 -159,1986/6/9,1.180681788,22.14320965,13.62121439,1.599378044,7.364079363,113.0060491,2.1785340447050387e-11 -160,1986/6/10,3.193348931,21.58234874,12.2918036,1.543253711,7.483618304,200.9577028,1.0892670223525194e-11 -161,1986/6/11,11.91466706,23.91273485,13.0515989,0.780216513,8.449562657,908.0739724,0.009144808294331555 -162,1986/6/12,9.130892156,23.370519,13.6355644,0.974239951,8.002448957,1132.051436,0.011427990125195832 -163,1986/6/13,6.083553374,22.94975476,13.66945201,1.335936023,7.770164466,1002.581364,0.005693096953223 -164,1986/6/14,7.544506947,20.77540118,13.86341345,1.37042649,6.520674652,1237.714699,0.009850245532375974 -165,1986/6/15,2.537028978,20.53236662,13.17874362,1.213406028,6.635732258,707.7463106,0.004901167782208446 -166,1986/6/16,5.028457627,22.22710087,13.52306802,1.285083086,7.43046562,898.3499034,0.002450583891104223 -167,1986/6/17,7.33941286,22.21543566,14.13311677,1.173066571,7.219053862,1258.691386,0.0020780490820438225 -168,1986/6/18,10.79132775,21.48667834,13.68767731,0.994192801,6.974597529,1991.825018,0.028530861017161152 -169,1986/6/19,12.48068528,20.25984951,13.5694052,0.75408921,6.33623515,2792.106835,0.08154466393158305 -170,1986/6/20,3.376901719,19.6624792,13.02600493,1.040093054,6.206104988,1450.43019,0.04040290665207596 -171,1986/6/21,2.86606585,20.64315534,11.40846046,1.01119646,7.251671267,1059.665118,0.02020145332603798 -172,1986/6/22,8.505619408,22.04836393,13.06165885,0.794472578,7.476179159,1881.326157,0.025872749642256103 -173,1986/6/23,4.378300481,22.73013745,13.61777738,0.870577667,7.659246654,1338.335584,0.012815553477150472 -174,1986/6/24,7.027610845,22.90475505,14.61420647,1.394918615,7.423899891,1641.556792,0.006407776738575236 -175,1986/6/25,10.6799637,22.97194602,14.15332254,1.736788509,7.614797757,2428.061353,0.0495089310468673 -176,1986/6/26,2.454675088,22.01849021,13.87343697,1.435449551,7.193544403,1170.187161,0.024404703550143243 -177,1986/6/27,3.214208484,23.81029675,14.58336357,1.982639526,7.923784023,987.8978485,0.012202351775071622 -178,1986/6/28,1.865183274,23.25396216,14.37359429,2.144509119,7.692616374,666.8740701,0.006101175887535811 -179,1986/6/29,0.755045127,23.30846764,14.46827403,1.74661441,7.690457035,391.6791821,0.0030505879437679054 -180,1986/6/30,0.02239658,24.42434972,14.39655027,1.670935917,8.306986917,204.6609082,0.0015252939718839527 -181,1986/7/1,0.072318192,25.43726393,15.12491002,1.464646094,8.62087097,132.6778357,0.0007626469859419764 -182,1986/7/2,4.783927535,25.52800418,15.57209163,1.404745867,8.530228061,471.8020086,0.0003813234929709882 -183,1986/7/3,9.035900218,22.92474439,15.29172505,1.328796217,7.188215943,1000.453899,0.02351956247033412 -184,1986/7/4,7.238549797,20.05335786,13.46290325,0.738841454,6.253990649,1094.524365,0.025817077351967532 -185,1986/7/5,0.330192489,19.74845765,12.50418127,0.587389041,6.437057169,370.6354145,0.0128060715677457 -186,1986/7/6,2.158712186,21.41379353,13.72194812,0.911115694,6.91489022,402.110507,0.00640303578387285 -187,1986/7/7,4.386093105,22.48816834,13.81451083,1.053598948,7.464306598,609.5676439,0.003201517891936425 -188,1986/7/8,8.052907262,22.99177958,14.42877844,1.34474059,7.532128757,1096.612806,0.00846961771342148 -189,1986/7/9,9.615190059,21.14932181,15.06534634,0.75932679,6.244346014,1569.479633,0.05035904646572687 -190,1986/7/10,11.26723403,22.10616336,15.12209289,0.710671085,6.785141964,2233.762081,0.10095073190216292 -191,1986/7/11,5.641258474,24.38944451,15.39495973,0.598679535,7.970823094,1612.91821,0.049829541243234576 -192,1986/7/12,7.796288908,23.37452584,15.18345471,0.77427877,7.483326644,1871.965687,0.031249665520279184 -193,1986/7/13,12.74958532,22.41008099,15.29785402,0.818750837,6.893778514,3000.084544,0.13585153262659644 -194,1986/7/14,13.83808988,21.74483931,15.43078032,0.769180264,6.448889995,3937.19427,0.2599905236969232 -195,1986/7/15,5.13477865,21.48592818,14.15032665,0.700238939,6.804700324,2355.174792,0.12746690992437487 -196,1986/7/16,4.780145899,20.93754169,13.59331647,0.863063242,6.703808947,1894.847509,0.06373345496218744 -197,1986/7/17,4.279084421,20.60705492,13.30773733,0.859239287,6.62538862,1586.3652,0.03186672748109372 -198,1986/7/18,6.896705061,20.12791293,12.67828573,0.865905003,6.587389149,1945.877063,0.024729374240744784 -199,1986/7/19,5.076348376,20.18577312,11.69182142,0.811263884,6.939476951,1630.878636,0.012239621131656633 -200,1986/7/20,8.4280483,20.09921241,12.58508069,0.555363748,6.605994068,2183.930568,0.05584823775406455 -201,1986/7/21,8.995180295,20.02886737,12.89001554,0.668563387,6.462077433,2505.216084,0.10074719310088356 -202,1986/7/22,10.72832105,20.73152866,13.15467125,0.916751731,6.752499703,3117.173337,0.1741666679055735 -203,1986/7/23,5.414295186,21.28151139,13.06644417,1.021587298,7.079128457,2149.970513,0.0851227475649091 -204,1986/7/24,16.46062711,20.70719972,12.53759386,0.859659019,6.949484495,4648.157819,0.36089821207246636 -205,1986/7/25,17.81767963,19.61169127,11.89685371,0.844816974,6.584273122,6411.197466,0.6509127739013172 -206,1986/7/26,12.31448583,20.60916388,11.91525079,0.769707782,7.096867116,5707.963614,0.5901243863811392 -207,1986/7/27,10.1658199,22.03747282,12.97023503,0.761942333,7.51344985,4932.045346,0.4399143857959991 -208,1986/7/28,7.298334047,23.16333271,13.25867615,0.838461263,8.011837652,3750.01299,0.2155969251101589 -209,1986/7/29,16.47516489,21.61221832,13.51294609,0.692631147,7.11615585,6040.192061,0.6598208669126885 -210,1986/7/30,5.524958966,21.35752622,11.85352194,0.474587447,7.501793395,3437.225685,0.31363046548054907 -211,1986/7/31,7.337684973,22.38599806,12.47270898,0.536271919,7.847044387,3188.130554,0.15681523274027453 -212,1986/8/1,7.550553357,21.72226371,12.28080178,0.677569826,7.56699193,2979.748021,0.07840761637013727 -213,1986/8/2,5.483854889,19.88789348,10.78403969,0.207546931,7.07675303,2307.076781,0.039203808185068634 -214,1986/8/3,8.636928417,20.18686907,11.06906597,0.153826942,7.146560023,2746.585782,0.11375591374412393 -215,1986/8/4,2.428661796,20.51829548,11.02581372,0.171577025,7.325439465,1449.936108,0.05390386752302562 -216,1986/8/5,1.042108952,23.23531182,11.61844613,0.388693657,8.50573999,825.5310774,0.02695193376151281 -217,1986/8/6,5.893625716,24.64009196,12.48754995,0.345125247,8.983131042,1332.999908,0.013475966880756404 -218,1986/8/7,9.258991793,22.8380894,12.58320604,0.201811802,8.060897945,1922.395131,0.07297593364262081 -219,1986/8/8,1.900073046,23.26839237,12.73989141,0.066524948,8.237859479,898.4854607,0.03465694746739299 -220,1986/8/9,1.83855412,23.93123097,13.08490366,0.086799844,8.481725796,630.5134681,0.017328473733696496 -221,1986/8/10,0.862592024,24.86220299,13.10859303,0.179194389,8.948417493,388.484519,0.008664236866848248 -222,1986/8/11,4.10552247,24.41363406,12.97153759,0.59377688,8.761761693,616.8405954,0.004332118433424124 -223,1986/8/12,6.532405352,24.65025724,13.08022439,1.098508109,8.85539846,907.7126344,0.002166059216712062 -224,1986/8/13,15.70468703,23.09845348,13.97823181,1.531119107,7.794885425,2359.096326,0.34600359470788067 -225,1986/8/14,9.05251704,22.37926989,14.46973957,0.81867928,7.239002384,2099.515151,0.2576835895820607 -226,1986/8/15,10.51456521,20.68600132,14.53433385,0.255515071,6.242917771,2529.286838,0.35065488519155447 -227,1986/8/16,5.040149057,22.46529651,14.12736806,0.582496906,7.411752552,1733.758154,0.16944606553873143 -228,1986/8/17,4.118360418,22.11594602,13.15651805,0.754590727,7.545450804,1356.125764,0.08472303276936571 -229,1986/8/18,6.495898673,21.07798579,12.37759248,0.647641081,7.247824304,1617.656321,0.04236151638468286 -230,1986/8/19,1.137413165,21.67682941,12.1760653,0.569362239,7.620511466,743.5106507,0.02118075819234143 -231,1986/8/20,2.914872555,23.11453173,12.54235892,0.752272225,8.2509058,753.3280358,0.010590379096170714 -232,1986/8/21,5.171645211,22.52836598,13.65808079,1.282656737,7.61701916,984.1264464,0.005295189548085357 -233,1986/8/22,8.890612748,20.50615289,13.7474648,0.936529462,6.472589328,1574.866274,0.10732137799407028 -234,1986/8/23,6.968287853,20.21021741,13.88403521,0.7957738,6.250472449,1546.047617,0.0840572534766196 -235,1986/8/24,11.77876049,20.34302345,13.81251496,0.563890575,6.358976156,2550.481094,0.2914420180786186 -236,1986/8/25,6.873467135,20.29985308,13.44159751,0.349060961,6.480784248,2062.47737,0.16000894080928457 -237,1986/8/26,2.315619823,22.10262541,13.63305845,0.402167062,7.412433864,1115.647241,0.07949203870931656 -238,1986/8/27,1.281864309,22.89839867,13.7087098,0.992180042,7.819015621,680.7670928,0.03974601935465828 -239,1986/8/28,3.827165245,23.82888747,13.75321428,1.123162291,8.301654213,870.4246762,0.01987300967732914 -240,1986/8/29,11.9711578,23.23573903,14.27906031,1.128990285,7.823573091,2127.34117,0.19286172052632286 -241,1986/8/30,6.936154101,22.18384214,12.76940996,1.028364463,7.743666763,1751.013891,0.09239699032654909 -242,1986/8/31,5.959451282,22.14361766,13.44029874,0.830423647,7.515633512,1547.483646,0.046198495163274546 -243,1986/9/1,9.377840087,22.84873923,13.83062682,0.992548185,7.771853351,2127.755352,0.09622004980009861 -244,1986/9/2,9.237940872,19.87993226,13.60141667,0.793125424,6.200908355,2341.054224,0.18916534713423291 -245,1986/9/3,7.624944176,18.99196992,12.26333967,0.386344259,6.215572967,2220.448266,0.16134759194514747 -246,1986/9/4,10.24808154,20.03787548,11.84912287,0.460784375,6.925149027,2863.557811,0.2484793148782728 -247,1986/9/5,1.816623306,21.79301541,12.07579133,0.444356704,7.769293211,1272.811648,0.11991409213702162 -248,1986/9/6,8.436520018,21.40096817,12.43688623,0.36738225,7.462637709,2122.404654,0.10993258679993365 -249,1986/9/7,3.392068234,20.4087462,13.01914949,0.785469561,6.739114806,1316.167143,0.053684026205914066 -250,1986/9/8,8.224370999,19.38866003,12.74254994,0.608820994,6.274327577,1976.983715,0.12353037674551272 -251,1986/9/9,8.757873542,18.27491502,11.47869627,0.558659504,6.125288808,2312.32399,0.19453593510206213 -252,1986/9/10,3.591450693,18.90073385,11.07327298,0.498884266,6.599273245,1425.846672,0.09379793130969206 -253,1986/9/11,3.756523446,19.73757248,12.17156725,0.703056221,6.683166964,1218.333878,0.04689896565484603 -254,1986/9/12,2.283622822,19.42929032,12.3220239,1.112107266,6.46573736,848.8276757,0.023449482827423016 -255,1986/9/13,3.887210006,19.61389476,11.92633423,0.889815163,6.707084353,951.986066,0.011724741413711508 -256,1986/9/14,3.957555907,19.56414993,12.41353726,0.927066675,6.514322738,931.9797487,0.005862370706855754 -257,1986/9/15,6.946572257,20.70678124,12.52601171,0.781108439,7.101106422,1369.067802,0.002931185353427877 -258,1986/9/16,4.931233029,20.94746812,12.35777883,0.789358401,7.288116773,1175.560104,0.0014655926767139385 -259,1986/9/17,7.697035447,20.2345997,11.44628709,0.522283514,7.202130063,1585.977463,0.02020109732322434 -260,1986/9/18,13.63353371,18.74513017,9.808120477,0.224776582,6.929068776,2917.496143,0.2765161469508162 -261,1986/9/19,4.39299342,17.04702616,8.886375113,0.114413118,6.354455103,1665.425584,0.13294956279458225 -262,1986/9/20,0.004642572,19.50308126,8.519774679,0.18478606,7.62659786,620.9285385,0.06647478139729113 -263,1986/9/21,1.054801945,19.78765375,8.386934335,0.430947946,7.793135761,500.3668893,0.033237390698645564 -264,1986/9/22,3.09525875,19.15150879,8.836560058,0.418597294,7.395304201,650.2009492,0.016618695349322782 -265,1986/9/23,0.50703224,18.19383769,8.015790694,0.559399939,7.144711206,312.946232,0.008309347674661391 -266,1986/9/24,0.680353785,19.03970708,7.890344109,0.3079262,7.569384052,226.9734346,0.0041546738373306955 -267,1986/9/25,0.609895584,18.69600519,7.339964809,0.556727097,7.534348836,168.2928964,0.0020773369186653477 -268,1986/9/26,0.512204683,19.61412685,7.615390925,0.2526936,7.899172674,122.9708997,0.0010386684593326739 -269,1986/9/27,0.098027593,19.69096832,8.249045544,0.305961398,7.8054832,67.5596974,0.0005193342296663369 -270,1986/9/28,2.344582256,19.52776079,9.424563305,0.651145168,7.455860957,180.9451746,0.00025966711483316847 -271,1986/9/29,1.054416673,19.35222016,10.40374272,0.676952388,7.10837604,120.2278449,0.00012983355741658423 -272,1986/9/30,7.716328769,16.46491967,8.666230284,0.510078538,6.170033798,563.9514075,0.04081429543878854 -273,1986/10/1,3.161009828,14.79257776,9.00119859,0.63645495,5.202980906,400.4494529,0.019870215280136338 -274,1986/10/2,0.85111712,15.00531684,9.463934317,0.531718775,5.150353156,198.2653399,0.009935107640068169 -275,1986/10/3,0.318758293,16.66465729,8.892652003,0.663114808,6.213643952,110.0440607,0.0049675538200340845 -276,1986/10/4,0.662169006,16.33784901,6.817832417,0.584067851,6.610831855,101.2639052,0.0024837769100170422 -277,1986/10/5,5.624180698,17.24157331,6.648401657,0.33255414,7.064806344,439.8735329,0.0012418884550085211 -278,1986/10/6,10.1254092,17.08866521,8.621107768,0.45799676,6.513409712,1041.64978,0.0783715628014253 -279,1986/10/7,12.27641205,15.97872643,8.687564257,0.390909015,5.944681403,1801.876545,0.19653976407873142 -280,1986/10/8,13.98185714,15.58285104,9.493493315,0.473261245,5.472892699,2809.53633,0.3600982065605184 -281,1986/10/9,33.15222606,15.07158781,9.009733934,0.406905063,5.374138056,9865.364002,1.259101054443104 -282,1986/10/10,18.30874154,13.93679771,7.410821127,0.407965053,5.32379847,9709.030286,1.4478668701775175 -283,1986/10/11,0.202661327,13.68164696,4.748096175,0.583618461,5.913213323,2989.872617,0.6968001316129462 -284,1986/10/12,0.825384903,14.77784093,5.323477731,0.493002864,6.275019994,1740.056575,0.3484000658064731 -285,1986/10/13,1.797210929,16.44945878,5.92726379,0.429090919,6.894372775,1414.261913,0.17420003290323655 -286,1986/10/14,0.55414129,16.90680578,6.594182023,0.807217331,6.961793426,845.6576389,0.08710001645161827 -287,1986/10/15,0.10008125,16.44902152,5.872873014,1.252330843,6.91355755,501.3069517,0.043550008225809136 -288,1986/10/16,0.069755318,16.5539484,4.179521445,1.259453895,7.277406653,322.1130753,0.021775004112904568 -289,1986/10/17,0.0,16.44172001,3.224622021,1.272282238,7.382919311,204.4407002,0.010887502056452284 -290,1986/10/18,0.0,17.2406358,3.960964549,0.763111997,7.610347211,132.5003249,0.005443751028226142 -291,1986/10/19,0.001114128,16.86107242,4.323259908,0.766125756,7.396727129,86.29935126,0.002721875514113071 -292,1986/10/20,0.0,17.0356773,4.219842243,0.904959897,7.491955846,56.13620149,0.0013609377570565355 -293,1986/10/21,0.00795607,17.20712992,4.146265741,0.64675155,7.580581846,37.02068473,0.0006804688785282678 -294,1986/10/22,1.366305737,16.08391292,2.655193782,0.738187759,7.337927573,98.80193637,0.0003402344392641339 -295,1986/10/23,2.755385949,15.44219302,3.181519252,0.586473681,7.000603298,184.8604931,0.00017011721963206694 -296,1986/10/24,2.237407915,13.9848442,5.430780683,0.737241678,5.936157789,181.2245383,8.505860981603347e-05 -297,1986/10/25,0.448157678,15.12374108,5.484802643,1.020718844,6.441585659,82.6018012,4.2529304908016735e-05 -298,1986/10/26,1.830281331,15.51147472,2.875165329,1.293610482,7.08783334,133.139909,2.1264652454008367e-05 -299,1986/10/27,0.104026936,14.54032021,0.650676537,1.607732505,6.995021161,50.32182525,1.0632326227004184e-05 -300,1986/10/28,0.233378744,15.19511567,0.310237068,0.757884189,7.290105775,35.73880554,5.316163113502092e-06 -301,1986/10/29,0.189788322,14.32812221,1.428701274,0.55624893,6.823613156,25.73844955,2.658081556751046e-06 -302,1986/10/30,0.0,13.80209514,1.004182264,0.852044306,6.674517962,13.19981302,1.329040778375523e-06 -303,1986/10/31,0.049615688,14.64732107,0.734008069,0.8347535,7.04246762,9.667968552,6.645203891877615e-07 -304,1986/11/1,0.000970971,14.65350573,1.160773489,1.215320037,6.997822598,5.675135168,3.3226019459388074e-07 -305,1986/11/2,0.345528375,15.25366664,1.609531391,1.237327671,7.184322131,11.80761723,1.6613009729694037e-07 -306,1986/11/3,0.291064793,15.32447654,1.440516225,0.854371819,7.237398609,10.66026845,8.306504864847019e-08 -307,1986/11/4,0.251068383,14.68357658,2.050535657,0.947588987,6.903163664,8.924723773,4.153252432423509e-08 -308,1986/11/5,0.438616814,14.81437673,3.012058559,1.376712481,6.815090024,11.61082203,2.0766262162117546e-08 -309,1986/11/6,0.030724747,13.76418809,1.648778511,1.613801258,6.596316265,4.433966486,1.0383131081058773e-08 -310,1986/11/7,0.014678915,14.89942847,1.181572942,1.167431577,7.114487479,2.453668864,5.1915655405293866e-09 -311,1986/11/8,3.88804274,14.53811942,1.0690402,0.743746155,6.988509369,80.88844186,2.5957827702646933e-09 -312,1986/11/9,6.07378124,11.09882735,2.735599992,0.65794911,5.318806658,233.973817,0.012964946146244804 -313,1986/11/10,9.942365476,11.87138256,4.133132731,1.249586063,5.343392724,668.3468011,0.08870176797160917 -314,1986/11/11,1.492990296,11.0387878,0.683776664,1.086608167,5.670994435,286.8782352,0.04361394437332111 -315,1986/11/12,0.254953585,11.23584512,0.257910945,0.688969098,5.813588092,126.6283414,0.021806972186660556 -316,1986/11/13,0.022143945,12.95802328,-1.169332936,0.796761493,6.639386681,68.23397655,0.010903486093330278 -317,1986/11/14,0.071100482,12.23506858,-1.38906165,0.597473755,6.393298045,46.25161454,0.005451743046665139 -318,1986/11/15,0.109670158,13.84133647,-0.560324529,0.684303136,6.920940761,33.69756409,0.0027258715233325695 -319,1986/11/16,0.178787467,14.08809243,-0.243035474,1.015338777,6.98675063,27.27315146,0.0013629357616662847 -320,1986/11/17,0.655340087,13.36139862,0.713136787,1.162254219,6.597082576,40.11330996,0.0006814678808331424 -321,1986/11/18,0.521160039,12.72690334,-0.555876849,1.007136335,6.504279236,34.25315467,0.0003407339404165712 -322,1986/11/19,0.000123748,12.93956088,-1.101212928,0.764320795,6.643538859,13.08694886,0.0001703669702082856 -323,1986/11/20,0.007659684,13.72530763,-0.294906566,0.935940632,6.864331724,7.660180556,8.51834851041428e-05 -324,1986/11/21,0.029826897,13.50209567,0.04111441,1.096748884,6.744274022,5.581763592,4.25917425520714e-05 -325,1986/11/22,0.011276129,13.57786277,0.152685722,1.219220614,6.763691624,3.557631993,2.12958712760357e-05 -326,1986/11/23,0.000558655,13.66308212,0.442968166,1.326498931,6.76559259,2.180743586,1.064793563801785e-05 -327,1986/11/24,0.252884415,13.20828709,-0.636582825,0.924051521,6.712482308,6.011285697,5.323967819008925e-06 -328,1986/11/25,0.161557093,12.41173426,-0.321709106,1.00340451,6.375458397,4.731153299,2.6619839095044624e-06 -329,1986/11/26,0.0,12.48130858,-0.33773631,1.029119054,6.406404733,1.731081074,1.3309919547522312e-06 -330,1986/11/27,0.0,12.57840146,-1.041834988,1.12464645,6.521973026,0.970088522,6.654959773761156e-07 -331,1986/11/28,0.012921634,12.99189213,-0.572998992,0.90144156,6.632885377,0.774417872,3.327479886880578e-07 -332,1986/11/29,0.041355692,12.69020877,-0.775718871,0.961173038,6.541482267,0.882967877,1.663739943440289e-07 -333,1986/11/30,0.12640642,11.87238699,-0.849272004,1.206380153,6.240956365,1.623445028,8.318699717201445e-08 -334,1986/12/1,0.038387558,11.31042558,-2.32973993,1.234193131,6.181256762,0.871187834,4.1593498586007225e-08 -335,1986/12/2,6.13e-05,12.27008189,-2.545963402,0.725251839,6.551701969,0.360686417,2.0796749293003612e-08 -336,1986/12/3,0.026375263,11.96059234,-2.554123326,0.608103224,6.441282434,0.40307059,1.0398374646501806e-08 -337,1986/12/4,0.017291424,11.63505397,-1.932518009,0.767670654,6.270429699,0.294906131,5.199187323250903e-09 -338,1986/12/5,0.123799296,11.321018,-1.08076222,1.004145481,6.067913583,0.886616908,2.5995936616254516e-09 -339,1986/12/6,0.094667842,12.47740183,-1.445672096,0.846865451,6.542173145,0.811047707,1.2997968308127258e-09 -340,1986/12/7,0.238386346,13.5391204,-1.354021756,0.875089012,6.935489999,1.625344028,6.498984154063629e-10 -341,1986/12/8,0.352979999,12.84551794,-1.613240886,0.773065147,6.699104234,2.592686103,3.2494920770318144e-10 -342,1986/12/9,0.916909555,11.22285435,-0.638302956,0.646224211,5.985170739,7.60577052,1.6247460385159072e-10 -343,1986/12/10,0.827781246,10.58952585,0.452451184,0.92522384,5.589278052,9.981481779,8.123730192579536e-11 -344,1986/12/11,1.848875988,10.79106944,-0.947570076,1.349668211,5.861449785,27.4319652,4.061865096289768e-11 -345,1986/12/12,0.463279389,9.088052296,-2.216832915,1.379118793,5.377122467,14.61990744,2.030932548144884e-11 -346,1986/12/13,0.001517508,10.0263379,-4.17018271,1.211977143,5.882955323,5.267780579,1.015466274072442e-11 -347,1986/12/14,0.048646722,11.50936479,-2.672373854,1.399296339,6.303969478,3.607252715,5.07733137036221e-12 -348,1986/12/15,0.035672263,11.54636625,-1.427097348,1.790149067,6.204642813,2.476266769,2.538665685181105e-12 -349,1986/12/16,0.090991802,12.08039055,-1.388815645,1.470478121,6.402402255,2.409034594,1.2693328425905525e-12 -350,1986/12/17,0.004634495,11.25856298,-3.384425926,1.275141763,6.270351848,1.174436138,6.346664212952763e-13 -351,1986/12/18,0.024754199,12.47257209,-3.514997002,1.008437988,6.716306423,0.914974416,3.1733321064763813e-13 -352,1986/12/19,0.03949808,12.76714189,-2.32097135,1.391888357,6.743664405,0.816590196,1.5866660532381906e-13 -353,1986/12/20,0.14914176,11.50488737,-2.936588054,1.253496778,6.329424062,1.502430746,7.933330266190953e-14 -354,1986/12/21,1.453606124,10.03073689,-2.786653786,1.42379936,5.784911079,14.23611659,3.9666651330954766e-14 -355,1986/12/22,0.429678273,9.51164072,-2.98350832,1.250656683,5.616978241,8.544991338,1.9833325665477383e-14 -356,1986/12/23,0.182478117,10.08331297,-3.970441162,1.425310622,5.898958689,4.9083564,9.916662832738692e-15 -357,1986/12/24,0.000558735,9.954275744,-5.202345555,0.883352266,5.926787297,2.03401941,4.958331416369346e-15 -358,1986/12/25,0.097013095,9.757992696,-4.959249714,1.187777543,5.847565468,2.130031862,2.479165708184673e-15 -359,1986/12/26,0.049229491,8.801308966,-5.498898442,0.75262972,5.551077976,1.431298183,1.2395828540923364e-15 -360,1986/12/27,0.0,8.206658133,-6.142953522,0.627816477,5.383984608,0.702577079,6.197914270461682e-16 -361,1986/12/28,0.156749203,9.650274028,-3.813998027,0.941692043,5.737983894,1.636041012,3.098957135230841e-16 -362,1986/12/29,0.856632297,8.968794953,-3.143799316,1.33518199,5.441142482,8.00756525,1.5494785676154206e-16 -363,1986/12/30,1.189703716,9.193817118,-3.015582808,1.131314618,5.509644206,15.58730916,7.747392838077103e-17 -364,1986/12/31,3.072187982,7.098147882,-2.801965831,1.455984846,4.737949258,58.42182165,3.8736964190385514e-17 -365,1987/1/1,0.248013353,7.923158005,-4.038974862,1.263013387,5.15435701,20.44390344,1.9368482095192757e-17 -366,1987/1/2,0.023840033,8.897209731,-4.113121353,0.991154647,5.498002342,8.765336288,9.684241047596378e-18 -367,1987/1/3,0.03408779,9.017609517,-6.17069122,1.372207187,5.65542711,5.637796888,4.842120523798189e-18 -368,1987/1/4,0.0,9.462557039,-7.051357792,0.66953537,5.830154635,3.353102121,2.4210602618990946e-18 -369,1987/1/5,0.005305443,10.52060687,-5.13170259,0.873966204,6.120523782,2.225772822,1.2105301309495473e-18 -370,1987/1/6,0.0,10.91090764,-5.910029637,0.82944287,6.284613341,1.413662694,6.052650654747737e-19 -371,1987/1/7,0.035749091,11.22120766,-6.05704365,0.554744023,6.394798172,1.342934861,3.0263253273738683e-19 -372,1987/1/8,0.324321598,9.621728289,-4.20156144,0.845958795,5.755423721,4.348253334,1.5131626636869341e-19 -373,1987/1/9,0.000743587,9.365379775,-5.239247478,0.965556093,5.728842337,1.318716825,7.565813318434671e-20 -374,1987/1/10,2.54e-05,9.456085261,-6.402533839,1.098537283,5.808099159,0.667776613,3.7829066592173353e-20 -375,1987/1/11,0.0,10.62445918,-6.350362004,0.578727551,6.198226159,0.419404746,1.8914533296086677e-20 -376,1987/1/12,1.179868273,11.03965231,-4.947502353,0.854231593,6.288850727,11.83562711,9.457266648043338e-21 -377,1987/1/13,0.001764451,10.400506,-2.33639815,1.151369533,5.878152471,2.976916777,4.728633324021669e-21 -378,1987/1/14,0.025601438,11.49817439,-2.159159161,1.482397933,6.263819036,1.586121503,2.3643166620108346e-21 -379,1987/1/15,0.0,11.25083408,-3.40344501,1.529945622,6.272237121,0.884475752,1.1821583310054173e-21 -380,1987/1/16,0.026635894,11.8434462,-3.508348472,1.069826249,6.490932561,0.765354198,5.910791655027086e-22 -381,1987/1/17,0.008503084,13.39301794,-2.175803685,1.590309667,6.96440879,0.471518624,2.955395827513543e-22 -382,1987/1/18,0.0,13.21982473,-2.5408876,1.479202421,6.925522573,0.272321226,1.4776979137567716e-22 -383,1987/1/19,0.0,13.16090322,-2.842445914,1.343338319,6.923090143,0.17344942,7.388489568783858e-23 -384,1987/1/20,0.0,13.05672781,-1.683141055,1.877421372,6.795624735,0.112617632,3.694244784391929e-23 -385,1987/1/21,0.0,13.86786699,-1.959547367,1.917369926,7.120667855,0.073290309,1.8471223921959645e-23 -386,1987/1/22,0.000213969,14.39308525,-1.994613721,1.545648881,7.318891893,0.04849442,9.235611960979823e-24 -387,1987/1/23,0.009271019,14.44782364,-1.749592482,1.422870472,7.32017677,0.061241269,4.617805980489911e-24 -388,1987/1/24,0.022308427,13.70284469,-2.148756376,1.811446874,7.068506065,0.091875407,2.3089029902449556e-24 -389,1987/1/25,2.114795755,11.70005791,-2.170808501,1.490168119,6.326763478,13.2871229,1.1544514951224778e-24 -390,1987/1/26,1.707908208,9.732724201,-2.881976642,0.800585708,5.674025228,23.54885984,5.772257475612389e-25 -391,1987/1/27,1.206302843,8.808583724,-3.328565974,0.943415417,5.384532101,25.14255141,2.8861287378061946e-25 -392,1987/1/28,0.331768777,9.666582325,-3.469436445,1.104961193,5.698032104,13.08364166,1.4430643689030973e-25 -393,1987/1/29,0.019718197,10.34938166,-3.762445605,0.737022603,5.959355078,5.506324692,7.215321844515486e-26 -394,1987/1/30,0.872118126,10.52866171,-3.75018408,0.544109501,6.020058864,16.67954283,3.607660922257743e-26 -395,1987/1/31,0.235641487,11.00076114,-3.898664194,0.991027038,6.19466654,8.951817814,1.8038304611288716e-26 -396,1987/2/1,0.058094823,12.22632375,-3.389338934,0.960642614,6.597507574,4.452832723,9.019152305644358e-27 -397,1987/2/2,1.033378237,11.71073661,-0.58620453,1.113738753,6.154117503,17.60800164,4.509576152822179e-27 -398,1987/2/3,2.880282494,10.39973483,0.318019056,1.061741816,5.522048852,62.79947561,2.2547880764110895e-27 -399,1987/2/4,1.684579775,8.25993606,0.184276565,1.140063604,4.698105433,59.91498412,1.1273940382055448e-27 -400,1987/2/5,1.929359355,9.123398099,-1.780072034,1.049099889,5.32081929,76.03595227,5.636970191027724e-28 -401,1987/2/6,2.037990967,11.38444435,-4.589841418,1.036924224,6.355848423,92.79582975,2.818485095513862e-28 -402,1987/2/7,0.130684211,13.76763593,-4.136158811,0.989874216,7.176514928,33.15295499,1.409242547756931e-28 -403,1987/2/8,0.027521607,13.72977597,-1.501746158,1.405226234,6.996789076,16.80055582,7.046212738784655e-29 -404,1987/2/9,0.183767246,13.11103928,-0.339023164,1.707406167,6.647245333,14.93363151,3.5231063693923273e-29 -405,1987/2/10,0.574150884,11.37249218,-1.269091833,1.867894024,6.086558236,21.80024368,1.7615531846961637e-29 -406,1987/2/11,0.967895733,10.96254885,-3.276741902,1.564324401,6.11569539,32.019505,8.807765923480818e-30 -407,1987/2/12,0.025158664,14.31926067,-3.378171127,1.297266517,7.327873712,10.89204306,4.403882961740409e-30 -408,1987/2/13,0.019580634,15.3149431,-1.733633791,1.552717668,7.597263707,5.975649905,2.2019414808702046e-30 -409,1987/2/14,0.02272428,15.78044902,-0.677187669,1.796393651,7.69229734,4.002498991,1.1009707404351023e-30 -410,1987/2/15,0.059295299,16.41122997,-0.511258717,1.604980215,7.919460894,3.340310302,5.5048537021755115e-31 -411,1987/2/16,0.071984197,15.51909463,0.642474317,1.886865827,7.459898661,2.760671554,2.7524268510877557e-31 -412,1987/2/17,0.050550445,15.01215876,1.261435693,1.776597834,7.184492984,1.957465401,1.3762134255438779e-31 -413,1987/2/18,0.31307407,14.84387636,1.007456499,1.715308606,7.145062738,4.510404878,6.881067127719389e-32 -414,1987/2/19,0.66847753,13.55993846,-1.347277673,1.643028767,6.888841828,9.19408553,3.4405335638596947e-32 -415,1987/2/20,0.24137428,14.69717299,-1.1177239,1.570483203,7.295017621,5.440864246,1.7202667819298473e-32 -416,1987/2/21,1.447702054,14.65407475,-0.713179697,1.582835131,7.240574654,21.00912745,8.601333909649237e-33 -417,1987/2/22,0.081142494,15.07356788,-1.155761237,1.590597802,7.433980217,6.815050377,4.300666954824618e-33 -418,1987/2/23,0.043777591,14.7136522,-2.794015453,1.502260054,7.406155786,3.52935793,2.150333477412309e-33 -419,1987/2/24,0.004562644,15.36149949,-2.605058104,1.457416254,7.63107076,1.990878342,1.0751667387061546e-33 -420,1987/2/25,0.098935901,16.37323165,-1.277383434,1.783304446,7.925770275,2.185345611,5.375833693530773e-34 -421,1987/2/26,0.006254561,15.83853178,0.389683793,2.025722171,7.57689588,1.081464777,2.6879168467653865e-34 -422,1987/2/27,0.114425976,16.33344449,0.694988282,1.525885251,7.737126554,1.496568676,1.3439584233826932e-34 -423,1987/2/28,0.421448737,13.39844752,1.134306332,1.451411147,6.523569586,3.754968235,6.719792116913466e-35 -424,1987/3/1,2.093747999,13.46646227,0.237018663,1.058588723,6.659996233,24.07414117,3.359896058456733e-35 -425,1987/3/2,10.62951644,10.81553368,-2.115349421,1.03465937,5.913210683,349.4260085,0.00035478188313114415 -426,1987/3/3,1.263010498,10.57199141,-3.249339513,0.996794025,5.920263886,147.0283108,0.0001773775974153957 -427,1987/3/4,0.001452491,12.09007979,-2.154890183,1.305969625,6.37281304,52.87797749,8.868879870769786e-05 -428,1987/3/5,0.709032385,11.74673983,0.059456623,1.778524774,6.006434076,59.42161104,4.434439935384893e-05 -429,1987/3/6,0.04775314,15.30801967,-0.386778789,1.966883204,7.413891367,28.04287088,2.2172199676924464e-05 -430,1987/3/7,0.087828795,15.95644299,0.251531095,2.146388328,7.601096583,18.91953958,1.1086099838462232e-05 -431,1987/3/8,0.062305921,15.52030587,1.099368446,2.109555011,7.337674652,12.71522371,5.543049919231116e-06 -432,1987/3/9,0.39788092,14.75488903,-0.239346625,1.632234876,7.176719719,17.81220461,2.771524959615558e-06 -433,1987/3/10,0.719710066,15.77583768,0.170100444,1.700913759,7.526448091,25.09858132,1.385762479807779e-06 -434,1987/3/11,0.32587083,15.05479938,1.149190934,1.687970992,7.136283795,16.04114716,6.928812399038895e-07 -435,1987/3/12,1.433264642,13.83166348,1.248004876,1.63799134,6.637582899,40.01533299,3.4644061995194475e-07 -436,1987/3/13,0.379515498,14.21906908,0.136301229,1.60035227,6.917612554,20.7743588,1.7322030997597237e-07 -437,1987/3/14,0.079583469,15.0923478,0.029956755,1.641538808,7.259920198,9.797983054,8.661015498798619e-08 -438,1987/3/15,0.020297901,13.84029264,-0.341385924,1.783925453,6.815159971,5.463182101,4.3305077493993093e-08 -439,1987/3/16,0.169786037,14.74765543,-0.688592115,1.727588398,7.187254435,6.162669752,2.1652538746996547e-08 -440,1987/3/17,0.113957822,15.15364022,1.394119597,1.806432116,7.121687948,4.547843151,1.0826269373498273e-08 -441,1987/3/18,0.023283955,14.64850113,0.207114662,1.457427404,7.055218317,2.40980656,5.413134686749137e-09 -442,1987/3/19,0.024642735,14.61097894,-0.77149747,1.563648067,7.130719436,1.6351046,2.7065673433745683e-09 -443,1987/3/20,0.066744761,16.3529363,-0.250812214,1.890784405,7.742952682,1.637495477,1.3532836716872842e-09 -444,1987/3/21,0.130436898,15.36106807,-0.494077897,1.677671453,7.381346707,2.015856934,6.766418358436421e-10 -445,1987/3/22,0.091362036,16.52826512,-0.587300594,2.00349704,7.827775426,1.561080098,3.3832091792182104e-10 -446,1987/3/23,0.094587265,17.68472173,0.962383081,2.026283448,8.138823337,1.368726488,1.6916045896091052e-10 -447,1987/3/24,0.076030683,18.54779717,1.997498796,1.892026881,8.375264577,1.076646545,8.458022948045526e-11 -448,1987/3/25,0.001933776,20.0639871,2.185891287,1.68121513,8.963764409,0.449461381,4.229011474022763e-11 -449,1987/3/26,0.174571729,19.9642807,4.809677396,2.020750955,8.607834025,1.227058346,2.1145057370113815e-11 -450,1987/3/27,1.220378537,19.26756944,4.812806946,2.093546783,8.305258343,9.108943116,1.0572528685056908e-11 -451,1987/3/28,0.853253045,17.56143322,3.224152934,1.605776263,7.810186569,10.37581077,5.286264342528454e-12 -452,1987/3/29,0.201501669,19.64629548,4.205156374,1.652371187,8.540938321,4.977310184,2.643132171264227e-12 -453,1987/3/30,1.002515695,20.48525058,4.856377125,1.801304066,8.802877801,12.47456442,1.3215660856321134e-12 -454,1987/3/31,1.826905914,18.22816015,5.212952438,1.875979558,7.778038392,28.55740803,6.607830428160567e-13 -455,1987/4/1,0.800232709,19.77403824,4.498001714,1.863788158,8.540092335,20.6485402,3.3039152140802836e-13 -456,1987/4/2,1.240198839,19.44387086,4.538866883,1.4482159,8.390017599,28.03695369,1.6519576070401418e-13 -457,1987/4/3,0.891320353,19.73473214,5.484424345,2.077824948,8.3689736,24.90398699,8.259788035200709e-14 -458,1987/4/4,0.452952424,19.70540635,6.098229747,2.348374525,8.251659243,16.43853406,4.1298940176003545e-14 -459,1987/4/5,0.794125563,20.40385327,6.38082909,1.779180418,8.50561581,20.16355338,2.0649470088001773e-14 -460,1987/4/6,0.592889483,18.7360763,4.198344509,1.035382866,8.121022489,17.07127924,1.0324735044000886e-14 -461,1987/4/7,0.896653231,18.83930466,3.356116148,0.956094229,8.270261066,21.5330999,5.162367522000443e-15 -462,1987/4/8,1.449616041,18.35870175,4.757623425,1.391778313,7.870206842,34.05746655,2.5811837610002216e-15 -463,1987/4/9,1.366837079,18.19737162,6.303121592,1.734574867,7.52892145,38.59258758,1.2905918805001108e-15 -464,1987/4/10,2.416539727,18.92373351,6.508177859,2.013016932,7.806789764,71.18804372,6.452959402500554e-16 -465,1987/4/11,0.90828519,16.40923635,5.726097624,1.831319638,6.846529786,44.61122984,3.226479701250277e-16 -466,1987/4/12,2.28587439,15.79518292,5.310437097,1.41598354,6.657822141,82.13719431,1.6132398506251385e-16 -467,1987/4/13,0.388667063,17.06826743,5.017730012,1.248377454,7.256870294,36.4771212,8.066199253125692e-17 -468,1987/4/14,0.270502451,17.25608139,5.670222658,1.159281511,7.21506944,22.84037984,4.033099626562846e-17 -469,1987/4/15,4.79333632,17.94208951,4.26758781,1.363232138,7.73806139,168.6801613,2.016549813281423e-17 -470,1987/4/16,2.733873123,17.2028325,2.016928065,1.204831961,7.728318142,156.8302709,1.0082749066407116e-17 -471,1987/4/17,1.377772348,18.21426919,2.550679771,1.32751797,8.065570717,106.1970352,5.041374533203558e-18 -472,1987/4/18,1.17692782,18.82709056,4.064745338,1.676256272,8.120958949,86.522698,2.520687266601779e-18 -473,1987/4/19,0.594852676,18.91323889,3.425649661,1.992294439,8.23477616,55.62837556,1.2603436333008894e-18 -474,1987/4/20,2.0480625,19.17715605,3.63224824,1.645861767,8.312339935,99.52608148,6.301718166504447e-19 -475,1987/4/21,7.96434171,18.84648644,4.929665148,1.42290083,7.990733931,426.4233487,3.1508590832522236e-19 -476,1987/4/22,2.256906914,19.42829114,5.993956438,1.647512094,8.064186188,246.1206802,1.5754295416261118e-19 -477,1987/4/23,0.980519018,20.19437249,6.924205486,2.000787645,8.23303394,139.7765131,7.877147708130559e-20 -478,1987/4/24,0.345947835,20.46237133,7.271946334,1.804845037,8.284320431,77.20770054,3.9385738540652795e-20 -479,1987/4/25,0.134303464,20.14240346,7.839623751,1.79963307,8.027660466,45.52686002,1.9692869270326397e-20 -480,1987/4/26,0.206726659,20.61519509,8.416340916,1.276201393,8.121259366,33.85275747,9.846434635163199e-21 -481,1987/4/27,3.147845979,18.82240611,7.983686579,0.884758908,7.387603736,138.4252465,4.923217317581599e-21 -482,1987/4/28,4.495049372,15.16569103,6.493633214,0.981322529,6.05989431,249.6775869,2.4616086587907997e-21 -483,1987/4/29,9.630087997,16.7038526,6.135925282,1.39473807,6.823910579,722.3101252,0.0007223880427915061 -484,1987/4/30,0.493027107,17.08845209,6.531214149,1.934988699,6.907885374,229.1628783,0.0003611010400181287 -485,1987/5/1,0.353605108,18.93931562,7.413593498,1.989800955,7.547029376,123.6128672,0.00018055052000906434 -486,1987/5/2,0.185803263,20.50918812,8.454965535,2.038522028,8.039327925,77.01184064,9.027526000453217e-05 -487,1987/5/3,2.137349041,20.4040703,9.345584478,2.125622882,7.789874252,160.8865929,4.5137630002266086e-05 -488,1987/5/4,5.613395148,18.80323875,9.073066777,1.929499977,7.094048276,399.2136881,2.2568815001133043e-05 -489,1987/5/5,1.270502109,16.5780211,7.898725599,1.504257808,6.338057148,195.4884985,1.1284407500566521e-05 -490,1987/5/6,0.773328565,16.97201531,7.190891611,1.351255848,6.689925269,122.4966279,5.642203750283261e-06 -491,1987/5/7,0.610429678,19.07454026,7.621213891,1.64838387,7.542400226,88.8221887,2.8211018751416304e-06 -492,1987/5/8,0.573545125,20.84550446,7.994938833,1.771703884,8.260333809,69.7335057,1.4105509375708152e-06 -493,1987/5/9,0.427747517,21.58531999,8.231197533,1.571263982,8.544138458,50.5684087,7.052754687854076e-07 -494,1987/5/10,0.166936427,22.397935,10.00679991,2.096474482,8.551961366,29.94717523,3.526377343927038e-07 -495,1987/5/11,0.264372991,22.2913096,10.38286478,2.17392503,8.413090295,24.55454579,1.763188671963519e-07 -496,1987/5/12,1.445269882,22.23801303,9.260969662,1.878638944,8.627374626,57.1723536,8.815943359817595e-08 -497,1987/5/13,1.569448377,23.34857845,9.99082868,1.787974295,8.989077059,67.76852927,4.4079716799087975e-08 -498,1987/5/14,2.105733373,22.54769169,9.432856789,1.747642465,8.727561945,90.53669711,2.2039858399543987e-08 -499,1987/5/15,0.549058645,22.34073439,10.63431148,1.703226059,8.363341388,45.41895697,1.1019929199771994e-08 -500,1987/5/16,0.070038892,22.36716815,9.972216148,1.599721015,8.522370033,20.60172449,5.509964599885997e-09 -501,1987/5/17,1.57841778,22.77484898,10.27720113,1.314040466,8.643740937,53.92924004,2.7549822999429984e-09 -502,1987/5/18,4.777917801,21.71931808,10.50266481,1.657207776,8.086433032,180.011075,1.3774911499714992e-09 -503,1987/5/19,6.125284666,21.50430399,9.976653191,1.958382989,8.104913456,343.237733,6.887455749857496e-10 -504,1987/5/20,3.98193261,22.3813213,10.07606334,2.010082453,8.492319716,326.9500002,3.443727874928748e-10 -505,1987/5/21,1.455354946,24.64118151,10.50382752,1.95236343,9.45835836,186.667581,1.721863937464374e-10 -506,1987/5/22,0.639905239,25.14211426,11.71943316,1.892425728,9.436186759,106.5916864,8.60931968732187e-11 -507,1987/5/23,3.847059164,25.3112559,12.23798055,2.200841375,9.397405142,247.183261,4.304659843660935e-11 -508,1987/5/24,2.233574218,24.74680026,12.11994683,2.33511426,9.146022294,195.5644867,2.1523299218304675e-11 -509,1987/5/25,3.380971941,23.16377711,11.22225988,2.229464104,8.586781166,250.6178089,1.0761649609152338e-11 -510,1987/5/26,0.532495888,23.86256902,10.87153611,2.049812011,8.997539369,109.2759847,5.380824804576169e-12 -511,1987/5/27,1.150380534,23.91437506,10.86976677,1.62359569,9.01937466,103.1581549,2.6904124022880844e-12 -512,1987/5/28,1.097364952,25.03503758,11.58664915,1.169085149,9.393824501,89.7721525,1.3452062011440422e-12 -513,1987/5/29,8.637558909,23.07835666,12.15080078,1.252268294,8.301764287,497.0456942,0.0002323198172024569 -514,1987/5/30,3.654600559,24.12619126,12.0451818,1.549434804,8.842199814,373.9755707,0.00011607954326239272 -515,1987/5/31,8.696765279,22.01887661,11.81251737,1.423058402,7.859827188,802.9223995,0.0008747423779244602 -516,1987/6/1,3.934091065,23.76358685,12.92022753,0.958081132,8.431648925,579.8508873,0.0004369727107747161 -517,1987/6/2,11.79604867,21.79499229,12.46654892,1.0619853,7.556205596,1448.218787,0.007513437874989544 -518,1987/6/3,9.829811457,20.82696538,12.54054954,1.532869054,7.028523741,1712.646387,0.020406442886399558 -519,1987/6/4,4.576473919,22.45378307,13.05301185,1.719162843,7.71627848,1162.319801,0.010153704514949263 -520,1987/6/5,0.900570499,20.77590225,13.53248999,1.019238412,6.657306822,534.7433147,0.005076852257474632 -521,1987/6/6,8.991577588,19.84166486,11.87499909,0.751940373,6.721170582,1450.048308,0.020393599767790826 -522,1987/6/7,13.51100251,19.65829903,10.4530614,0.323993969,7.050698894,2638.213877,0.07537011603318168 -523,1987/6/8,5.184779196,20.73749452,12.23088364,0.849153369,7.070829501,1666.091309,0.03735560619343893 -524,1987/6/9,6.305222002,20.64474815,13.38886136,1.48927195,6.630254638,1680.905765,0.018677803096719466 -525,1987/6/10,6.382057011,21.88129771,13.98290728,2.182562961,7.097830737,1703.964424,0.009338901548359733 -526,1987/6/11,5.985249025,22.25096962,14.24930816,1.997963374,7.206102218,1627.256746,0.004669450774179866 -527,1987/6/12,8.41460451,21.80106354,14.41854938,1.782234279,6.893315267,2058.710161,0.023387792421312968 -528,1987/6/13,1.322714062,22.07679971,13.53492602,1.294350156,7.350629077,895.4108402,0.011548219892498397 -529,1987/6/14,4.082400368,21.88717104,13.39541903,0.703579861,7.29377074,1031.930806,0.005774109946249198 -530,1987/6/15,10.62435187,21.92808024,14.32930795,0.83821224,6.993240459,2104.053086,0.05308677332010978 -531,1987/6/16,5.223969311,22.09237604,13.85031618,1.08071904,7.25009879,1517.139599,0.026196383850600656 -532,1987/6/17,1.677309755,23.42475038,14.64442976,1.242888864,7.704265752,796.2985635,0.013098191925300328 -533,1987/6/18,1.336903817,23.29008699,14.31267474,1.378405717,7.739747441,539.7443863,0.006549095962650164 -534,1987/6/19,0.575321223,25.48866129,15.32726168,1.740619576,8.594526032,327.1105819,0.003274547981325082 -535,1987/6/20,1.733021087,24.94134825,14.97061085,2.146473685,8.411671726,348.7689454,0.001637273990662541 -536,1987/6/21,0.470694328,24.44727721,15.11024916,1.895879182,8.100754467,192.6633749,0.0008186369953312705 -537,1987/6/22,1.046633907,24.0636186,14.93450381,2.12014623,7.949516386,179.3967607,0.00040931849766563525 -538,1987/6/23,2.318013248,24.36771882,15.3551062,2.13505486,7.97451648,246.0972792,0.00020465924883281763 -539,1987/6/24,1.941553457,24.76760499,15.83156483,2.014203828,8.032176697,220.3669213,0.00010232962441640881 -540,1987/6/25,2.181369377,23.54509387,15.83085912,1.502997488,7.342451043,222.7549494,5.1164812208204406e-05 -541,1987/6/26,2.653460326,24.50402389,15.75228633,1.091375572,7.911845866,251.8059294,2.5582406104102203e-05 -542,1987/6/27,8.612612322,24.64611335,16.00520171,0.846990976,7.901991361,747.4029134,0.007028228328869949 -543,1987/6/28,10.04728744,23.95701033,15.52387344,0.771166223,7.686134951,1216.517892,0.028434322695235888 -544,1987/6/29,8.279272765,21.40560905,14.70396403,0.910477482,6.543810074,1342.37815,0.03643879254053117 -545,1987/6/30,5.074204439,22.1243531,14.50599995,1.17033458,7.027422695,1073.991398,0.018075434908666393 -546,1987/7/1,3.616052888,21.39100457,14.0504547,1.213543497,6.784363032,837.3722001,0.009037717454333197 -547,1987/7/2,2.02803225,21.67977259,14.11727774,1.243845332,6.92049271,562.197474,0.004518858727166598 -548,1987/7/3,0.873880331,21.04166512,14.09506598,1.310819175,6.571292062,333.8566195,0.002259429363583299 -549,1987/7/4,10.45937024,22.42895607,14.13763391,1.074944301,7.324321235,1410.316827,0.03833821795605176 -550,1987/7/5,6.314521793,19.64059676,13.46429116,1.089528851,6.018318139,1248.222644,0.023370514094525344 -551,1987/7/6,11.12311318,19.39811733,13.66405516,1.324611956,5.795352327,2126.144736,0.09272507288108717 -552,1987/7/7,5.353909196,20.87060231,14.44954795,1.634217381,6.334554583,1539.465745,0.04574569163186861 -553,1987/7/8,4.311253081,22.07607539,14.85720775,1.508798365,6.869600199,1254.400005,0.022872845815934306 -554,1987/7/9,5.179246415,22.56373561,15.21735272,1.44329297,7.011339613,1303.630103,0.011436422907967153 -555,1987/7/10,9.325574987,21.23000715,15.28516916,1.313318024,6.198711191,2035.616084,0.06047410005380665 -556,1987/7/11,6.05024514,21.3221757,14.76479154,1.150271001,6.47200791,1712.874592,0.029757622790547257 -557,1987/7/12,2.541151779,22.55277539,15.03101468,1.285028223,7.076868294,1019.665186,0.014878811395273629 -558,1987/7/13,5.997373365,23.09549278,15.26167587,1.128725097,7.299120293,1393.06198,0.007439405697636814 -559,1987/7/14,8.895098214,21.81075128,14.90897311,0.978610804,6.700111035,1976.064333,0.043553143800211074 -560,1987/7/15,6.659644234,21.91632966,15.44846627,0.916896589,6.544611182,1795.114266,0.023746106579325642 -561,1987/7/16,6.249547794,22.68130188,14.79875123,0.813819106,7.237219119,1720.176143,0.011849436455328067 -562,1987/7/17,11.44502685,24.04691992,15.58253461,1.036007368,7.721090154,2764.134625,0.07811788486978358 -563,1987/7/18,5.077082388,24.34456903,14.84493192,1.175544002,8.132886955,1812.078881,0.03835916505744401 -564,1987/7/19,4.569534204,23.03172324,15.4740547,1.273801435,7.188830486,1465.1298,0.019179582528722004 -565,1987/7/20,8.203334735,23.29134369,15.43218654,1.14640921,7.353469164,1999.623148,0.027205717837572748 -566,1987/7/21,15.27109957,21.62919585,13.9906354,0.972488016,6.947913455,3727.84251,0.19272582547004788 -567,1987/7/22,11.37473099,19.55729089,13.29280604,0.440030504,6.048367962,3701.583297,0.2516196124058249 -568,1987/7/23,2.271621651,19.04576442,12.37283682,0.11106732,6.112977155,1685.627542,0.1234903912137632 -569,1987/7/24,2.728948729,19.65267237,11.69382043,0.335594642,6.670125092,1288.779413,0.0617451956068816 -570,1987/7/25,6.932437691,20.14543189,12.44715604,1.021754671,6.683447305,1898.349316,0.03863150771025389 -571,1987/7/26,7.441701108,19.82017707,13.19490734,1.012038198,6.239899951,2100.186776,0.05692564986821801 -572,1987/7/27,3.110768091,21.87115418,14.18079118,1.406991254,7.021844085,1289.855459,0.02787054218722546 -573,1987/7/28,7.680531022,22.27109705,14.66349839,1.430648991,7.071575603,1914.507965,0.03274991474064043 -574,1987/7/29,11.69379653,20.9749349,14.63913939,1.123261112,6.337455113,2937.556277,0.18464029951107788 -575,1987/7/30,18.44163247,20.95838497,14.32731988,1.11021566,6.45511408,5383.82837,0.52709239157383 -576,1987/7/31,3.051216374,21.09247704,14.48813603,1.213226569,6.470517614,2300.517847,0.25556472652128104 -577,1987/8/1,4.083678441,22.49035117,14.71078965,1.65121354,7.184408618,1856.314779,0.12778236326064052 -578,1987/8/2,7.421980731,22.30153347,14.92418691,1.434658562,7.00046108,2335.386815,0.08200710382345865 -579,1987/8/3,7.056437934,22.13945386,14.12604843,1.289221601,7.201799019,2291.810523,0.040614262069453566 -580,1987/8/4,4.220753815,21.69931117,14.74202582,1.0017867,6.72879898,1633.079864,0.020307131034726783 -581,1987/8/5,3.659164774,22.64428307,14.61219363,0.78993071,7.313847296,1306.570731,0.010153565517363392 -582,1987/8/6,3.128924557,22.74409216,14.5990428,0.760169194,7.376085595,1045.844235,0.005076782758681696 -583,1987/8/7,17.65226827,22.33082043,14.41978229,0.454576723,7.21254213,3740.131051,0.389375486909287 -584,1987/8/8,5.166109263,19.53168649,13.09997763,0.245621723,6.135034311,2101.572075,0.18752074805307423 -585,1987/8/9,6.486925279,19.42217346,12.81610351,0.282660752,6.183810045,2066.901873,0.1076326835460399 -586,1987/8/10,9.406511389,17.05083083,12.29557986,0.51447027,5.024548258,2707.762837,0.2552523733411623 -587,1987/8/11,6.745545559,17.81428751,12.50181905,0.491955202,5.391923604,2380.502836,0.19070273113627068 -588,1987/8/12,3.812652369,18.2731288,12.62510103,0.519084992,5.61067058,1652.809632,0.09365733787455252 -589,1987/8/13,2.220860146,20.40740585,12.69323018,0.600481603,6.776687318,1094.978415,0.04682866893727626 -590,1987/8/14,2.195174368,22.04691624,11.74437001,0.57913159,7.913127146,868.8243462,0.02341433446863813 -591,1987/8/15,13.86330317,21.93690185,11.62167537,0.297350873,7.894391222,2907.712983,0.2781081724189541 -592,1987/8/16,6.265824082,21.80970713,12.45435606,0.261506607,7.597708777,2032.931665,0.13310915887752303 -593,1987/8/17,10.706923,20.78545216,13.17022351,0.076701495,6.827183343,2805.603749,0.2556823174456107 -594,1987/8/18,7.583173147,18.04956269,12.26958629,0.525728589,5.639155524,2452.071401,0.22482233697204168 -595,1987/8/19,5.742735728,19.30312393,12.10810753,0.801515889,6.398497358,2039.553501,0.10975668694544014 -596,1987/8/20,2.81682261,21.98583555,12.78641165,0.84021813,7.601063657,1295.155778,0.05487834347272007 -597,1987/8/21,9.766755349,21.44090596,13.59177219,0.566839645,7.050019815,2397.713527,0.16512655892741476 -598,1987/8/22,9.310685842,21.61398556,12.8853959,0.185934363,7.381492321,2642.700078,0.18157134034301317 -599,1987/8/23,15.85487509,22.02223593,12.9887287,0.443145955,7.567377069,4460.011621,0.5427081440807437 -600,1987/8/24,5.979482494,19.97372535,13.04123305,1.356545946,6.444637658,2707.492422,0.25888333987211676 -601,1987/8/25,0.657423225,21.05172118,13.31582741,1.376263866,6.945119382,1137.420283,0.12944166993605838 -602,1987/8/26,0.591704412,21.45915796,13.91454158,1.17174641,6.960483752,701.7662921,0.06472083496802919 -603,1987/8/27,0.450631598,22.88908745,13.20017976,1.292143879,7.971008516,467.8170066,0.032360417484014595 -604,1987/8/28,3.431106944,24.23712385,13.3363441,1.301304155,8.633862863,719.6323744,0.016180208742007297 -605,1987/8/29,6.884527261,22.5246971,13.20322508,1.13367884,7.786247006,1164.219467,0.008090104371003649 -606,1987/8/30,1.58726404,21.04810424,14.07551665,0.92646127,6.680270211,567.623969,0.004045052185501824 -607,1987/8/31,19.4531312,21.45073463,14.3451807,0.890856859,6.8110427,3235.27783,0.5957055674679507 -608,1987/9/1,19.29438524,20.73504953,14.1772942,1.154658158,6.465396964,5117.771383,1.03368303878406 -609,1987/9/2,4.140487057,20.68433922,14.04063494,0.837160363,6.493528378,2411.367786,0.4949319458490654 -610,1987/9/3,4.020489493,20.88768314,13.59927555,0.88592872,6.781651594,1804.054418,0.2474659729245327 -611,1987/9/4,11.60929957,21.02212849,13.68908787,0.465335441,6.827579921,3283.702618,0.4331222099013755 -612,1987/9/5,13.29307515,20.92557782,13.38685869,0.109241834,6.886900104,4276.101839,0.6478442985159427 -613,1987/9/6,7.034074183,19.83324502,11.31393117,0.284322305,6.99323887,3059.738682,0.3117625949652245 -614,1987/9/7,7.8574434,21.09524357,10.9650466,0.36051858,7.734115495,2967.201166,0.16495293421600488 -615,1987/9/8,10.61767566,20.47541291,11.43048965,0.373939159,7.295226514,3558.225036,0.32992295674953115 -616,1987/9/9,2.388177134,19.2770342,11.99802181,0.709188539,6.486698219,1710.851155,0.15572143577801506 -617,1987/9/10,2.388609053,21.90549609,13.43633814,0.921488946,7.426368,1225.663006,0.07786071788900753 -618,1987/9/11,4.733976115,22.28148558,13.71106603,1.125712709,7.543194419,1399.608687,0.038930358944503765 -619,1987/9/12,4.568139469,21.72202174,14.13691037,0.634195665,7.08693076,1296.838199,0.019465179472251883 -620,1987/9/13,4.182121447,20.58395832,13.43030059,0.380568015,6.708400135,1147.491135,0.009732589736125941 -621,1987/9/14,1.272995978,19.7984717,12.42538114,0.169411109,6.638983061,619.6790519,0.004866294868062971 -622,1987/9/15,2.64262066,19.00649875,12.31677483,0.278114654,6.243308925,639.5941455,0.0024331474340314853 -623,1987/9/16,0.335534094,20.71908555,12.77085963,0.226975065,7.029497022,301.4390745,0.0012165737170157427 -624,1987/9/17,3.199209808,20.79341776,12.56738764,0.154161544,7.141903489,512.7739281,0.0006082868585078713 -625,1987/9/18,5.930288375,20.39025971,11.72507814,0.487169506,7.201715716,852.6099313,0.00030414342925393566 -626,1987/9/19,6.575969652,19.82658973,11.14761006,0.442090574,7.089984423,1058.10622,0.00015207171462696783 -627,1987/9/20,9.888433507,19.19100256,11.66650744,0.571303722,6.59377133,1685.370445,0.16063149450691996 -628,1987/9/21,9.951657283,19.27575022,12.29506687,0.916989136,6.422854017,2091.377988,0.2588899616959761 -629,1987/9/22,10.34875729,20.5634216,13.33102749,1.057645336,6.767652157,2523.284027,0.3212813089634448 -630,1987/9/23,5.948183462,20.04910717,13.39701204,0.958193241,6.452303986,1906.371515,0.1552465379349808 -631,1987/9/24,5.095373363,20.13858467,12.61141358,0.959763131,6.79831261,1618.432885,0.0776232689674904 -632,1987/9/25,21.01453671,19.97677344,11.90418519,0.119131525,6.954816393,5272.231985,0.8244457675728476 -633,1987/9/26,7.528190721,16.97189977,11.44770677,0.592321679,5.461319134,3331.80218,0.5316690695523351 -634,1987/9/27,1.3308412,16.14314856,10.61467591,0.648630827,5.324716866,1466.980699,0.26099802869496014 -635,1987/9/28,2.960718844,16.06206132,11.00563994,0.579911847,5.120612247,1333.220878,0.13049901434748007 -636,1987/9/29,6.395949209,17.83277979,10.54605666,0.563955722,6.279326636,1902.420432,0.07277566900027108 -637,1987/9/30,9.398383722,17.66518552,9.182101075,0.742896236,6.616917111,2657.115696,0.21592898871623156 -638,1987/10/1,2.527823051,17.7482578,6.993917489,0.670668214,7.203327204,1355.334868,0.1021541985744594 -639,1987/10/2,0.640419243,17.24340054,7.133136592,0.491972942,6.94605728,676.1432911,0.0510770992872297 -640,1987/10/3,0.461592085,17.68420895,6.446634953,0.799568123,7.297370282,428.3463478,0.02553854964361485 -641,1987/10/4,0.441120238,18.02689888,7.582161066,1.123661985,7.213596932,298.1759287,0.012769274821807425 -642,1987/10/5,2.715402436,18.17581895,8.104653288,0.721764114,7.165342595,475.8289476,0.006384637410903712 -643,1987/10/6,6.516072721,18.75343349,7.96350724,0.298007793,7.473344053,935.4084627,0.003192318705451856 -644,1987/10/7,20.53966649,15.50740851,7.538489439,0.30117918,6.047739716,3517.360096,0.7398171909011322 -645,1987/10/8,1.812695712,16.72259494,7.836730979,0.466629034,6.554877409,1251.764344,0.3511060476624374 -646,1987/10/9,1.788027436,16.64109654,8.88008833,0.954273113,6.227568175,800.5322192,0.1755530238312187 -647,1987/10/10,0.708840402,16.98043157,8.247195394,1.043152151,6.578270966,474.5611342,0.08777651191560935 -648,1987/10/11,2.698670001,17.99032019,7.058528407,1.158174473,7.34254851,602.6964816,0.04388825595780468 -649,1987/10/12,0.846001758,18.57068402,6.52741819,1.415087529,7.717572985,340.221616,0.02194412797890234 -650,1987/10/13,0.073627222,19.33230707,6.834428106,1.386952377,8.004988852,169.7260499,0.01097206398945117 -651,1987/10/14,0.125363234,20.46030714,7.552136723,1.404842409,8.383323633,111.5624613,0.005486031994725585 -652,1987/10/15,0.052857464,21.16190565,8.054552601,1.642278046,8.612670824,71.16352939,0.0027430159973627923 -653,1987/10/16,0.007443152,20.61386354,7.853205043,1.861821697,8.404637546,44.62347771,0.0013715079986813962 -654,1987/10/17,0.070113313,20.69370188,7.283578314,1.548597393,8.554954057,32.16748252,0.0006857539993406981 -655,1987/10/18,0.25890171,21.04277703,7.807508303,1.383615885,8.620678795,30.62584273,0.00034287699967034904 -656,1987/10/19,0.732905589,21.27675822,10.29607528,1.935827606,8.188578795,43.17421527,0.00017143849983517452 -657,1987/10/20,4.44815147,19.71582266,9.039233851,2.054517328,7.740126463,203.053302,8.571924991758726e-05 -658,1987/10/21,0.228037144,17.37613558,7.110766686,1.173336122,7.090290955,63.90882822,4.285962495879363e-05 -659,1987/10/22,0.320132144,17.34854039,7.007924434,0.969645795,7.104816298,40.36994267,2.1429812479396815e-05 -660,1987/10/23,0.143330813,17.88816948,7.289306083,0.518427431,7.295605762,24.87387519,1.0714906239698407e-05 -661,1987/10/24,0.092995712,16.06644196,5.528204968,0.604626529,6.849715205,16.27030679,5.357453119849204e-06 -662,1987/10/25,0.0,16.57991567,4.396999793,0.567165986,7.289382476,9.109482941,2.678726559924602e-06 -663,1987/10/26,0.33799982,16.68854156,5.315749622,0.682782844,7.174728251,13.95042579,1.339363279962301e-06 -664,1987/10/27,1.442118801,15.09684472,4.084927442,0.664769889,6.717757031,40.77005536,6.696816399811505e-07 -665,1987/10/28,0.090792676,14.46420907,3.355089979,0.970488292,6.583135396,13.8998986,3.3484081999057523e-07 -666,1987/10/29,0.147591331,15.98089004,3.145129306,1.285509496,7.253302703,9.51803354,1.6742040999528762e-07 -667,1987/10/30,0.125709808,16.41383443,4.493272471,1.567649425,7.221329197,7.058787177,8.371020499764381e-08 -668,1987/10/31,11.97817992,16.24886492,4.687975641,1.499546543,7.119108036,471.16804,0.09557198014997827 -669,1987/11/1,1.149612691,15.94783242,2.174351341,1.445211392,7.387623298,178.6419149,0.046846099123847205 -670,1987/11/2,3.465766572,13.19426348,2.121983217,0.688159543,6.281060051,262.4975285,0.023423049561923603 -671,1987/11/3,1.335965997,14.58252961,3.54809572,0.712627681,6.620361225,163.2735258,0.011711524780961801 -672,1987/11/4,1.965813563,14.34475873,3.870045171,0.952060354,6.46371497,176.4907547,0.005855762390480901 -673,1987/11/5,1.466590923,13.49296776,3.338710698,1.113958784,6.203682702,146.8005943,0.0029278811952404503 -674,1987/11/6,0.757995084,15.08859592,3.327378771,0.615428641,6.881770591,96.32295591,0.0014639405976202252 -675,1987/11/7,5.560795286,13.39771152,2.324980376,1.040480514,6.347553814,369.7566343,0.0007319702988101126 -676,1987/11/8,0.555292569,12.67855324,1.946603502,0.745579266,6.118507927,138.1589146,0.0003659851494050563 -677,1987/11/9,0.381562828,13.75504151,1.951805457,0.965169822,6.558033293,80.52986268,0.00018299257470252815 -678,1987/11/10,5.143976986,14.46007631,2.811086339,1.12854796,6.716932971,352.7846256,9.149628735126407e-05 -679,1987/11/11,0.672095827,14.83142521,3.311712156,0.847399692,6.792967091,142.4864979,4.5748143675632037e-05 -680,1987/11/12,0.020424672,15.69766611,4.038702131,0.982429686,7.039815048,60.48037665,2.2874071837816018e-05 -681,1987/11/13,2.184138837,17.01537754,4.63526846,1.334123861,7.508711802,151.4585791,1.1437035918908009e-05 -682,1987/11/14,4.128960107,14.38293679,6.197118501,1.166302591,5.994257389,287.1099299,5.7185179594540046e-06 -683,1987/11/15,8.963380815,14.62303664,6.490791225,1.103110085,6.034104828,762.2503165,0.0349918609136803 -684,1987/11/16,12.93505584,14.14287044,4.890655521,1.408091416,6.202892599,1628.646061,0.11695197216963524 -685,1987/11/17,1.082294307,15.51611342,3.280025318,0.917749404,7.105457609,572.8740856,0.0577382504464482 -686,1987/11/18,0.0,14.8509449,2.758374448,0.569016398,6.912531575,243.2506089,0.0288691252232241 -687,1987/11/19,0.0,14.56276805,2.721190056,1.048052071,6.801475593,145.6945425,0.01443456261161205 -688,1987/11/20,0.0,14.66500921,1.756147835,0.951672375,6.988427577,93.92529114,0.007217281305806025 -689,1987/11/21,0.148598135,15.0738954,1.369028475,0.903780186,7.206633325,71.30109269,0.0036086406529030127 -690,1987/11/22,0.015126118,15.4209346,1.355302542,0.824685384,7.350582631,43.11947835,0.0018043203264515063 -691,1987/11/23,0.080323346,16.02930028,1.694821686,1.00917176,7.557769649,31.32873523,0.0009021601632257532 -692,1987/11/24,0.002193041,15.93893657,1.875517736,1.391070663,7.501549065,18.70062376,0.0004510800816128766 -693,1987/11/25,0.005348879,16.02653568,1.83679059,1.274642436,7.544912479,12.12161086,0.0002255400408064383 -694,1987/11/26,0.0,16.45471006,1.973695147,1.120599971,7.705366071,7.783847049,0.00011277002040321915 -695,1987/11/27,0.0,15.72949629,1.277569752,1.058437474,7.497831641,5.054906779,5.638501020160957e-05 -696,1987/11/28,0.0,15.57185535,1.06020228,1.136518801,7.462387027,3.289587316,2.8192505100804786e-05 -697,1987/11/29,0.072993803,15.40665098,1.447298883,1.235418485,7.352631263,3.732892251,1.4096252550402393e-05 -698,1987/11/30,0.01656937,14.98585484,2.185923606,1.226690684,7.085712604,2.093823029,7.048126275201197e-06 -699,1987/12/1,0.204517948,13.48366256,1.31590094,1.270043929,6.600127753,4.662318255,3.5240631376005983e-06 -700,1987/12/2,0.003863463,13.39663403,1.639458233,1.686758932,6.520340976,1.631490459,1.7620315688002992e-06 -701,1987/12/3,0.097303885,14.19929463,1.742732334,1.637632114,6.833665713,2.213846245,8.810157844001496e-07 -702,1987/12/4,0.978925517,14.76108975,2.174318871,1.316123356,7.003788136,14.75409247,4.405078922000748e-07 -703,1987/12/5,0.431141453,12.05629205,0.930788819,1.21136867,6.091594402,10.19691893,2.202539461000374e-07 -704,1987/12/6,0.0658247,8.653555595,-0.932892526,0.619493277,5.043092136,4.234786685,1.101269730500187e-07 -705,1987/12/7,1.59268355,8.85343251,-2.61380878,0.965076455,5.328546268,27.03248608,5.506348652500935e-08 -706,1987/12/8,0.079323887,10.53881719,-2.727621517,1.073123664,5.948190638,8.592401248,2.7531743262504674e-08 -707,1987/12/9,0.016534289,12.65020308,-1.645408999,0.990639462,6.630530125,4.0138213,1.3765871631252337e-08 -708,1987/12/10,0.066848722,13.61935592,-1.060203226,0.991105702,6.944768698,3.25823284,6.8829358156261686e-09 -709,1987/12/11,0.038009673,13.1462877,-0.652275767,0.775529525,6.725620273,2.185123042,3.4414679078130843e-09 -710,1987/12/12,0.232813176,10.89412735,2.695147221,1.038634597,5.303620666,3.817222032,1.7207339539065421e-09 -711,1987/12/13,0.396115214,11.08848448,2.046597698,1.110008843,5.519335643,5.873903567,8.603669769532711e-10 -712,1987/12/14,1.634409792,7.957594392,-4.446007888,1.014045916,5.189004759,24.40424096,4.3018348847663554e-10 -713,1987/12/15,0.550716786,5.951053532,-5.935858157,0.55745817,4.626572677,15.29960379,2.1509174423831777e-10 -714,1987/12/16,0.703429813,5.195092248,-6.125593296,0.443128462,4.39596199,17.12053525,1.0754587211915888e-10 -715,1987/12/17,0.044618319,7.50847551,-5.53777295,0.678143153,5.114912553,6.435674994,5.377293605957944e-11 -716,1987/12/18,0.03053856,8.067469473,-5.063548283,0.86349801,5.273492733,3.702068306,2.688646802978972e-11 -717,1987/12/19,0.003700429,6.516422606,-7.201634126,0.60169563,4.875741555,2.177604935,1.344323401489486e-11 -718,1987/12/20,0.0,7.423225824,-6.447497682,0.573767858,5.13677179,1.365332244,6.72161700744743e-12 -719,1987/12/21,0.058057872,6.459245144,-5.758910844,0.727519886,4.785413616,1.578707175,3.360808503723715e-12 -720,1987/12/22,0.0,8.865721259,-5.704297141,0.587029693,5.580711727,0.742082669,1.6804042518618576e-12 -721,1987/12/23,0.0,9.475231486,-5.870049605,0.706935975,5.793486312,0.447637463,8.402021259309288e-13 -722,1987/12/24,0.0,8.231463945,-7.149671165,0.754927954,5.427484287,0.288596168,4.201010629654644e-13 -723,1987/12/25,0.53819614,7.914556697,-8.365445312,0.554708206,5.351007947,5.094524854,2.100505314827322e-13 -724,1987/12/26,0.561636097,8.335337645,-7.382917297,0.551451983,5.468244828,6.990786447,1.050252657413661e-13 -725,1987/12/27,0.0,9.689352546,-6.465594805,0.659449776,5.888586276,1.96593941,5.251263287068305e-14 -726,1987/12/28,0.016875808,9.775438131,-6.790356499,0.907955442,5.926697052,1.123457318,2.6256316435341524e-14 -727,1987/12/29,0.053451198,10.54729548,-6.198900924,0.956012144,6.169734321,1.086625496,1.3128158217670762e-14 -728,1987/12/30,0.043126513,10.90123124,-5.286087646,0.872721522,6.258504831,0.842408399,6.564079108835381e-15 -729,1987/12/31,0.010821139,11.29205187,-3.868127034,0.984571323,6.322679478,0.465282415,3.2820395544176906e-15 -730,1988/1/1,0.0,11.9876197,-3.946634968,0.742683797,6.575176966,0.254092857,1.6410197772088453e-15 -731,1988/1/2,0.05124789,12.26416322,-3.061380769,0.901249945,6.620082453,0.442756499,8.205098886044226e-16 -732,1988/1/3,0.005322355,12.44630584,-2.620279502,1.118918292,6.655205146,0.198350998,4.102549443022113e-16 -733,1988/1/4,0.048129736,11.99864007,-1.518721485,0.742917205,6.39441988,0.320636116,2.0512747215110566e-16 -734,1988/1/5,0.218305109,11.87331812,-0.608094876,1.101960455,6.24907353,1.092845404,1.0256373607555283e-16 -735,1988/1/6,0.047525304,12.27489491,-1.313816344,1.410498725,6.477839885,0.509593448,5.1281868037776415e-17 -736,1988/1/7,0.002037723,10.10067044,-2.997933596,0.880107073,5.832659526,0.203167713,2.5640934018888207e-17 -737,1988/1/8,0.234686538,9.619629679,-4.654371101,1.252585125,5.783640381,1.057418488,1.2820467009444104e-17 -738,1988/1/9,0.178918878,9.629067073,-4.249002278,0.935457677,5.760796241,1.069669062,6.410233504722052e-18 -739,1988/1/10,0.53594964,10.10543022,-4.757296736,1.146291405,5.956556916,3.06444034,3.205116752361026e-18 -740,1988/1/11,2.908317781,9.525670967,-4.861639962,0.814749614,5.762103013,31.48049295,1.602558376180513e-18 -741,1988/1/12,0.051107555,10.28373435,-3.373367995,1.287453939,5.926598908,8.49605045,8.012791880902565e-19 -742,1988/1/13,0.036141546,11.55926856,-2.351537474,1.346246213,6.303959531,4.125954732,4.0063959404512824e-19 -743,1988/1/14,0.106306136,10.72469428,-3.36659108,1.434757233,6.082093537,3.581233679,2.0031979702256412e-19 -744,1988/1/15,0.06014127,10.43688773,-2.77650092,1.268876463,5.930264433,2.432664426,1.0015989851128206e-19 -745,1988/1/16,0.054948915,11.24884092,-1.532209067,1.274423736,6.108812758,1.793706796,5.007994925564103e-20 -746,1988/1/17,0.2835797,9.672857978,-5.250795114,1.372098903,5.828916813,3.577626413,2.5039974627820515e-20 -747,1988/1/18,0.174456677,8.895796683,-5.72017739,0.777010581,5.587967567,2.812369593,1.2519987313910258e-20 -748,1988/1/19,0.094571469,8.771630045,-4.205103514,1.324780836,5.453235187,1.86239359,6.259993656955129e-21 -749,1988/1/20,0.002927888,10.78892886,-5.424903104,1.763450857,6.215474948,0.802101681,3.1299968284775644e-21 -750,1988/1/21,7.2e-05,11.57257973,-4.933741117,1.692631158,6.465218135,0.463381048,1.5649984142387822e-21 -751,1988/1/22,0.03667446,11.92629067,-5.042678898,1.580917581,6.591861931,0.535473695,7.824992071193911e-22 -752,1988/1/23,0.000891228,11.27021614,-4.473234891,1.462193927,6.335083988,0.255287572,3.9124960355969555e-22 -753,1988/1/24,0.001342651,11.26211157,-3.572845138,1.524866085,6.277620869,0.158840935,1.9562480177984777e-22 -754,1988/1/25,0.095610787,11.53337985,-3.498857506,1.65927296,6.36815657,0.560377729,9.781240088992389e-23 -755,1988/1/26,0.066256875,11.23502039,-4.741747562,1.208130187,6.33176226,0.477393805,4.8906200444961943e-23 -756,1988/1/27,0.036018834,11.49549605,-4.865557862,1.263872625,6.426656342,0.315718982,2.4453100222480972e-23 -757,1988/1/28,0.030548198,11.60201631,-5.075434438,1.336130966,6.470941002,0.244183756,1.2226550111240486e-23 -758,1988/1/29,0.039566879,12.24167858,-4.28090303,1.491892769,6.658313019,0.242387577,6.113275055620243e-24 -759,1988/1/30,0.117794767,12.42934356,-4.724471741,1.401943132,6.742577657,0.49711944,3.0566375278101215e-24 -760,1988/1/31,0.146235203,12.29813063,-5.321852155,1.469304441,6.716676161,0.657823139,1.5283187639050607e-24 -761,1988/2/1,0.004254944,13.24159509,-4.626694801,1.177769981,7.02207154,0.212697061,7.641593819525304e-25 -762,1988/2/2,0.000306746,14.21881841,-3.299778154,1.371167072,7.313119631,0.106044616,3.820796909762652e-25 -763,1988/2/3,0.015670887,13.98380794,-4.56571642,1.438585809,7.280127707,0.106282356,1.910398454881326e-25 -764,1988/2/4,0.001511186,13.42856565,-4.704387422,1.28583092,7.084673985,0.055787249,9.55199227440663e-26 -765,1988/2/5,0.000588625,15.12287076,-3.030693985,1.562043475,7.624801919,0.034004187,4.775996137203315e-26 -766,1988/2/6,0.0,15.5557877,-3.12073204,1.734212166,7.786790827,0.021307813,2.3879980686016574e-26 -767,1988/2/7,0.000353998,14.90348604,-3.501403505,1.47040532,7.56108265,0.014325165,1.1939990343008287e-26 -768,1988/2/8,0.012839,14.68947016,-2.225555053,1.731354959,7.409691155,0.026453606,5.9699951715041435e-27 -769,1988/2/9,0.063034182,15.84201695,-1.060389352,1.769638656,7.761252817,0.092680926,2.9849975857520717e-27 -770,1988/2/10,0.05045658,15.31099823,-1.585423594,1.817606637,7.59437514,0.092159082,1.4924987928760359e-27 -771,1988/2/11,0.095588825,15.49307823,-0.782425267,1.720375259,7.599470251,0.161452866,7.462493964380179e-28 -772,1988/2/12,0.063677761,15.63742327,-0.409844681,1.908503683,7.620549333,0.140196498,3.7312469821900897e-28 -773,1988/2/13,0.020104659,16.13009771,0.119605825,1.884298235,7.76178598,0.0741574,1.8656234910950448e-28 -774,1988/2/14,0.04311719,15.08569529,-0.186493915,1.744678618,7.380258789,0.088598963,9.328117455475224e-29 -775,1988/2/15,0.20837698,14.49935406,-0.275993294,1.978055723,7.159099267,0.363396913,4.664058727737612e-29 -776,1988/2/16,0.172318343,13.49735193,0.01883589,1.451818037,6.737814467,0.444448138,2.332029363868806e-29 -777,1988/2/17,1.716017669,12.56541091,0.937867341,1.26791003,6.253764028,8.779781159,1.166014681934403e-29 -778,1988/2/18,7.439575846,9.903172441,-1.932507551,1.294144972,5.596137094,154.3072507,0.00033349569449954897 -779,1988/2/19,0.006347263,10.62500948,-3.141520361,0.962516317,5.965242919,37.74571288,0.00016671768097000818 -780,1988/2/20,0.343820832,12.865972,-1.670590374,1.182429006,6.654927903,26.31767096,8.335884048500409e-05 -781,1988/2/21,0.704560706,13.64545771,0.500276112,1.610912385,6.724348024,31.23163133,4.1679420242502044e-05 -782,1988/2/22,1.212000618,13.84983971,1.052248415,1.654391712,6.732605555,44.47261891,2.0839710121251022e-05 -783,1988/2/23,1.770471783,14.12287773,1.434602933,1.644909838,6.787596557,65.445275,1.0419855060625511e-05 -784,1988/2/24,3.54917143,13.01124998,1.633213296,1.729731407,6.309872542,142.7962491,5.2099275303127555e-06 -785,1988/2/25,2.349324967,12.88835961,0.252034434,1.73807479,6.447459116,135.8378556,2.6049637651563777e-06 -786,1988/2/26,0.413395321,12.82027953,-0.850905665,1.962139615,6.54195468,59.396511,1.3024818825781889e-06 -787,1988/2/27,0.073778391,14.08251793,0.698854548,1.891721891,6.852038914,29.06673258,6.512409412890944e-07 -788,1988/2/28,0.085215707,14.61836494,1.022888744,1.876390618,7.020404332,19.30092047,3.256204706445472e-07 -789,1988/2/29,0.291899487,15.40457854,0.734063668,1.997080986,7.359754309,19.6871698,1.628102353222736e-07 -790,1988/3/1,0.871139132,15.07814215,1.591619384,1.81944709,7.12531783,32.9945931,8.14051176611368e-08 -791,1988/3/2,1.000282229,15.52473692,1.565863994,1.921066353,7.30361572,38.36623832,4.07025588305684e-08 -792,1988/3/3,1.139103804,13.77725352,0.427815393,2.092068624,6.747739344,43.648549,2.03512794152842e-08 -793,1988/3/4,3.827413112,13.94857186,0.0742198,1.835712707,6.850343786,139.8970643,1.01756397076421e-08 -794,1988/3/5,1.003560197,14.12886455,0.456647889,1.80388245,6.873725215,74.75901963,5.08781985382105e-09 -795,1988/3/6,0.599564718,14.02706932,0.460306668,1.67869486,6.830119195,47.95516084,2.543909926910525e-09 -796,1988/3/7,0.430299978,12.66319492,-0.007514213,1.500611552,6.355891186,34.18673504,1.2719549634552626e-09 -797,1988/3/8,0.173802315,13.81287549,0.026722099,1.20022157,6.788719501,20.44666305,6.359774817276313e-10 -798,1988/3/9,0.360029981,13.7852382,2.187809716,1.504523814,6.491680358,20.15860743,3.1798874086381564e-10 -799,1988/3/10,0.36684303,15.03759043,1.555462451,1.887268197,7.079552782,18.06243632,1.5899437043190782e-10 -800,1988/3/11,0.841437949,16.47552123,1.436317956,1.627215312,7.6618743,27.83168301,7.949718521595391e-11 -801,1988/3/12,0.248533942,16.77266451,2.368936938,2.005784325,7.666285503,14.88075739,3.9748592607976955e-11 -802,1988/3/13,0.766739885,16.41120252,2.454932828,2.109562287,7.504074687,22.73804042,1.9874296303988478e-11 -803,1988/3/14,2.619042582,15.74958286,2.414793919,1.847382136,7.236492276,72.01646446,9.937148151994239e-12 -804,1988/3/15,0.252610168,15.44925982,0.399145461,1.930011012,7.352506994,26.17977237,4.9685740759971194e-12 -805,1988/3/16,0.193257919,16.4607439,0.246705521,1.763066542,7.754517388,15.51982028,2.4842870379985597e-12 -806,1988/3/17,0.106126911,16.71456928,1.715955261,1.828305427,7.699477411,9.846043226,1.2421435189992799e-12 -807,1988/3/18,0.183762105,18.08013444,1.94997354,1.804525061,8.216286335,8.616874354,6.210717594996399e-13 -808,1988/3/19,0.714623992,17.96218004,3.935513986,1.90772271,7.914487591,16.47516706,3.1053587974981996e-13 -809,1988/3/20,0.25241126,17.60101615,3.415403107,1.940326951,7.832664621,9.621672921,1.5526793987490998e-13 -810,1988/3/21,0.535482758,15.83803634,-0.196781049,1.813279409,7.532548839,12.25912437,7.763396993745499e-14 -811,1988/3/22,0.112996155,14.83937647,-1.467964515,1.335624098,7.255556897,5.937952224,3.8816984968727495e-14 -812,1988/3/23,0.022662207,13.93464701,-2.322089084,1.561979577,6.980016584,3.037381806,1.9408492484363748e-14 -813,1988/3/24,0.102486121,15.14461952,-1.663800629,1.641508087,7.37399096,2.9285132,9.704246242181874e-15 -814,1988/3/25,0.013401309,15.83976799,-1.349810695,1.581819106,7.605980835,1.532088769,4.852123121090937e-15 -815,1988/3/26,0.015851019,16.74869772,0.414185553,1.990603349,7.80544588,1.021106143,2.4260615605454685e-15 -816,1988/3/27,0.050327638,18.1134032,3.456637918,2.220203571,8.006588199,0.992799927,1.2130307802727342e-15 -817,1988/3/28,0.003518667,17.12177329,3.655770852,2.100373654,7.56360693,0.498794627,6.065153901363671e-16 -818,1988/3/29,0.001326051,17.42882417,3.130906985,1.66681178,7.759043642,0.301755029,3.0325769506818356e-16 -819,1988/3/30,0.0,18.28868522,3.1590567,1.747765522,8.102939364,0.190263756,1.5162884753409178e-16 -820,1988/3/31,0.009767059,18.64028619,3.992126044,1.992012859,8.133725041,0.167428013,7.581442376704589e-17 -821,1988/4/1,0.002934119,17.97655086,3.361520813,2.003962585,7.939240905,0.102297066,3.7907211883522945e-17 -822,1988/4/2,0.087487236,17.43805041,0.898574661,1.510324888,7.995844159,0.369576768,1.8953605941761472e-17 -823,1988/4/3,0.052507602,18.72977448,1.315447546,1.500384064,8.459494485,0.284992421,9.476802970880736e-18 -824,1988/4/4,0.698865146,19.1816259,4.351722907,1.888353552,8.291031824,2.968993529,4.738401485440368e-18 -825,1988/4/5,0.198448544,19.96354889,4.86846226,1.863778371,8.543501773,1.720844392,2.369200742720184e-18 -826,1988/4/6,0.09093695,20.15332262,3.997950301,1.591680974,8.73375964,0.995967089,1.184600371360092e-18 -827,1988/4/7,0.039446901,20.93883515,4.478227227,1.146443367,8.997354639,0.577560286,5.92300185680046e-19 -828,1988/4/8,0.703999747,20.57075386,6.87023156,1.426849673,8.47574249,3.671356939,2.96150092840023e-19 -829,1988/4/9,0.906220051,19.53011821,7.900620344,1.674137456,7.803066533,7.110809605,1.480750464200115e-19 -830,1988/4/10,1.053944678,20.96167205,7.559627367,1.472904525,8.516619235,11.51467943,7.403752321000575e-20 -831,1988/4/11,1.55877103,19.8044337,7.724380821,1.011938008,7.955897585,22.08780687,3.7018761605002876e-20 -832,1988/4/12,3.16039312,20.46417999,6.986635271,0.98036903,8.388259239,64.44134127,1.8509380802501438e-20 -833,1988/4/13,6.669265088,16.91954971,6.617084494,0.77309245,6.874679926,235.5302615,9.254690401250719e-21 -834,1988/4/14,6.82884534,14.18780838,5.63188533,0.495892756,5.867774657,418.8262097,0.00011579658628206517 -835,1988/4/15,2.278568439,13.08636866,4.012668214,0.830508156,5.742783227,257.36649,5.7891317145597624e-05 -836,1988/4/16,0.980498344,14.80037898,3.633448721,0.599892749,6.528493494,150.3159417,2.8945658572798812e-05 -837,1988/4/17,1.98466684,15.48344199,5.211224384,0.291834529,6.519791973,182.881233,1.4472829286399406e-05 -838,1988/4/18,4.069778732,15.84487714,5.817596851,1.093769816,6.54864447,326.2812125,7.236414643199703e-06 -839,1988/4/19,0.053042517,16.56022989,4.404277048,1.568657144,7.118442024,102.7968217,3.6182073215998515e-06 -840,1988/4/20,0.461664004,18.03108615,5.956228825,1.426912004,7.469635664,77.46786599,1.8091036607999257e-06 -841,1988/4/21,1.07493193,18.88748625,7.713739077,1.157722056,7.496570423,93.14362751,9.045518303999629e-07 -842,1988/4/22,0.590353107,18.17911344,5.32765718,1.261734403,7.635525142,64.37969807,4.5227591519998144e-07 -843,1988/4/23,2.048367051,16.57393904,3.97536217,0.46370407,7.177835469,119.7315663,2.2613795759999072e-07 -844,1988/4/24,5.181522915,15.14766072,4.466714149,0.778524407,6.495461785,309.1795118,1.1306897879999536e-07 -845,1988/4/25,0.814474393,16.69225032,6.331835996,0.742871905,6.788659599,131.1558886,5.653448939999768e-08 -846,1988/4/26,3.5393931,17.67036185,7.807711082,0.592627303,6.897151489,255.2452517,2.826724469999884e-08 -847,1988/4/27,7.942606745,16.34726547,5.513748859,0.786646875,6.79697643,647.3583873,0.0006694122317623945 -848,1988/4/28,2.547352822,16.62075215,4.687250174,0.982001452,7.061340551,384.0463695,0.00033451054938477763 -849,1988/4/29,0.406813777,16.69821022,4.322255989,0.932949549,7.151000369,166.1152257,0.00016725527469238881 -850,1988/4/30,0.363961366,18.51218217,5.284140753,1.058966832,7.751532934,106.8579937,8.362763734619441e-05 -851,1988/5/1,2.199842588,19.03582431,6.788651629,1.111633821,7.70935525,192.3652173,4.1813818673097203e-05 -852,1988/5/2,0.438298416,18.5909259,6.926417216,1.016909956,7.482332584,93.3224348,2.0906909336548602e-05 -853,1988/5/3,0.455192794,18.46602338,8.091800829,1.277652049,7.1729173,66.58699922,1.0453454668274301e-05 -854,1988/5/4,0.421776871,20.66978829,9.354881591,1.557973169,7.904968199,51.27852691,5.2267273341371504e-06 -855,1988/5/5,10.90799209,20.3399773,9.641260053,1.687563517,7.677867948,686.0299366,0.003901838482418736 -856,1988/5/6,11.8794945,17.21628287,9.809796147,1.252888528,6.097427622,1295.182925,0.027560083238886222 -857,1988/5/7,8.620967556,20.19597183,10.15963166,1.515655749,7.471664142,1412.503465,0.025400737714731295 -858,1988/5/8,0.195245849,20.2936294,10.40620091,1.390296379,7.451218081,446.6616878,0.012641045048721414 -859,1988/5/9,5.992841327,19.00743673,11.04475617,1.412478089,6.618352828,910.8398268,0.006320522524360707 -860,1988/5/10,6.717319335,18.37622056,9.323496521,1.319313379,6.800846593,1144.344309,0.0031602612621803535 -861,1988/5/11,5.823162413,18.36939635,9.728336989,0.977914125,6.683167036,1137.344632,0.0015801306310901768 -862,1988/5/12,12.15022061,17.68562465,7.946091689,1.584858104,6.817519776,2236.595631,0.05197018774039766 -863,1988/5/13,6.282811909,16.50080864,5.415156392,0.84028641,6.829027323,1709.137224,0.02573949553148065 -864,1988/5/14,0.470668232,19.37541231,6.316164129,0.627971299,7.895170124,653.0622038,0.012869747765740324 -865,1988/5/15,8.017826613,17.50003808,8.517042178,0.593994663,6.580033,1518.827974,0.025942751432000685 -866,1988/5/16,9.627501213,16.84077162,9.421195034,0.802696475,6.001328134,2082.514192,0.06711185390291317 -867,1988/5/17,6.490343965,17.31208397,10.15324535,1.022593476,6.007127054,1797.196288,0.04208223911750161 -868,1988/5/18,8.580215098,19.00238243,11.13617211,1.503480471,6.561175469,2222.01338,0.059221229105814344 -869,1988/5/19,9.688296175,19.73139484,11.92130822,1.63010539,6.685646176,2668.483035,0.09198592236489572 -870,1988/5/20,2.565920431,20.61068515,12.14195559,1.469317458,7.072945671,1349.15414,0.04533753354020914 -871,1988/5/21,4.708120263,19.55951635,11.65674948,1.392385622,6.676380398,1406.133588,0.02266876677010457 -872,1988/5/22,2.753504064,20.98221725,12.42108191,1.515662679,7.173671507,995.4588027,0.011334383385052285 -873,1988/5/23,1.757553629,19.33996835,11.30004298,1.667850733,6.671021275,675.9108574,0.005667191692526143 -874,1988/5/24,0.733747109,19.98637326,11.43622079,1.504556852,6.958207903,402.6077572,0.0028335958462630713 -875,1988/5/25,1.844597668,19.74826816,11.70141841,1.294574851,6.750650846,424.1434519,0.0014167979231315356 -876,1988/5/26,0.784325441,20.82723625,11.8641126,1.336312138,7.254065473,264.2436476,0.0007083989615657678 -877,1988/5/27,3.850611761,20.88928754,10.70196232,1.117681451,7.606458465,512.0805221,0.0003541994807828839 -878,1988/5/28,3.186927841,20.98571286,10.85920361,1.212395096,7.609846694,483.2920754,0.00017709974039144196 -879,1988/5/29,1.933035922,20.69597706,11.12971887,1.298506927,7.391863603,345.6755505,8.854987019572098e-05 -880,1988/5/30,1.30854114,19.69373268,10.05808163,1.032963358,7.188195303,245.5203845,4.427493509786049e-05 -881,1988/5/31,1.574394842,21.1507956,9.826213207,0.622683133,7.9364248,227.6642358,2.2137467548930244e-05 -882,1988/6/1,2.053541144,21.00800007,10.16690229,0.214209894,7.785937383,241.8740044,1.1068733774465122e-05 -883,1988/6/2,0.158491293,22.17002633,10.37254661,1.303353255,8.286083858,99.09477991,5.534366887232561e-06 -884,1988/6/3,0.174439803,20.75785617,10.89924065,1.591077935,7.474138291,61.8399362,2.7671834436162806e-06 -885,1988/6/4,2.104516143,18.18114324,10.77747908,0.427622334,6.215488478,146.8841302,1.3835917218081403e-06 -886,1988/6/5,5.989049025,18.78631222,11.51046874,0.999659767,6.287672426,421.5968116,6.917958609040701e-07 -887,1988/6/6,0.410171892,18.81603351,12.2492556,1.079211334,6.041574547,142.8393094,3.4589793045203507e-07 -888,1988/6/7,0.09578526,21.74358209,12.42123049,1.806424854,7.531255399,68.13843721,1.7294896522601753e-07 -889,1988/6/8,0.270336097,22.52678454,13.09805621,1.933697949,7.730793973,53.08175647,8.647448261300877e-08 -890,1988/6/9,2.372072761,22.60612887,13.45044626,1.89328029,7.662477007,145.1453964,4.3237241306504384e-08 -891,1988/6/10,2.581803113,23.67884719,13.89633336,1.74543204,8.086534275,177.7028458,2.1618620653252192e-08 -892,1988/6/11,0.668936906,23.71638673,13.95911108,1.781524675,8.085483621,88.25897372,1.0809310326626096e-08 -893,1988/6/12,1.702160774,24.82968541,14.09495994,1.475543992,8.623663743,115.1008361,5.404655163313048e-09 -894,1988/6/13,6.847044459,23.56690213,14.1771159,1.380939563,7.936087176,413.7900472,2.702327581656524e-09 -895,1988/6/14,6.753555448,22.33542932,13.79167788,1.084604943,7.401895282,591.1611769,1.351163790828262e-09 -896,1988/6/15,4.504494008,22.05466342,13.78886686,0.972749415,7.250467758,535.6490767,6.75581895414131e-10 -897,1988/6/16,9.939605695,21.1067776,13.5135517,0.892970139,6.829143726,1149.788341,0.018929569314597165 -898,1988/6/17,3.81125698,21.0111028,13.64587383,1.00598235,6.728315099,748.937894,0.00940718411673276 -899,1988/6/18,8.941904185,20.24396403,13.02538376,0.965475561,6.528496388,1354.042194,0.025701609626787695 -900,1988/6/19,6.820743651,19.58091932,13.22526681,0.956824064,6.083848467,1345.664845,0.020918480338823747 -901,1988/6/20,2.016679563,20.04801477,11.97581931,1.220976368,6.777106094,710.0762998,0.010414071157939835 -902,1988/6/21,8.605644781,19.16961344,11.2784142,1.212824406,6.543797261,1505.876919,0.02830630099478642 -903,1988/6/22,0.437666741,20.45231844,11.59616597,1.373175094,7.099585946,526.1009903,0.01402375779071276 -904,1988/6/23,0.618681527,21.61442484,12.10078178,1.46839684,7.538976795,328.3815498,0.00701187889535638 -905,1988/6/24,0.705264533,21.95049764,13.70697513,1.532853347,7.213723123,248.2327375,0.00350593944767819 -906,1988/6/25,0.945048664,22.05785569,12.58393312,1.487360037,7.622535211,213.7786703,0.001752969723839095 -907,1988/6/26,7.429607958,22.3867219,12.87965056,1.573905189,7.703232556,803.0415548,0.0008764848619195475 -908,1988/6/27,7.159578742,23.87120094,13.4725192,0.885371131,8.292034612,1004.849558,0.00043824243095977376 -909,1988/6/28,12.50629805,24.19024207,13.964398,0.922691077,8.31384206,1928.309099,0.04201262897221779 -910,1988/6/29,6.15322003,24.71689737,14.39144796,0.997729496,8.46192922,1429.897644,0.02079800015975952 -911,1988/6/30,11.87372891,23.29411855,14.67660675,1.211399437,7.612527758,2340.68382,0.06738883794419165 -912,1988/7/1,4.988315726,21.63176985,14.77440797,1.064149949,6.646186017,1529.218511,0.03331332435769629 -913,1988/7/2,6.468068365,20.59585876,14.18586492,0.95649127,6.280704619,1627.423287,0.019775519742442935 -914,1988/7/3,5.511827074,20.19783357,13.66813361,1.02809943,6.256594434,1495.724876,0.009861801614329037 -915,1988/7/4,8.936321806,19.63742036,13.10170373,1.443861163,6.157992178,2114.994883,0.0496131482358884 -916,1988/7/5,9.418523422,21.23214032,13.52080721,1.736224383,6.88617625,2500.567282,0.07198474363103892 -917,1988/7/6,4.837336555,20.55544477,14.37404433,1.461499414,6.180981438,1727.995523,0.035546182810156195 -918,1988/7/7,2.547279092,22.82806005,14.78458269,1.672585998,7.319267046,1101.677129,0.017773091405078097 -919,1988/7/8,7.793237738,22.51867207,14.68446039,1.050944875,7.183362648,1826.08122,0.020560934343942718 -920,1988/7/9,4.831481624,22.1023279,14.16401964,0.900825575,7.138291417,1436.089257,0.010168730070075186 -921,1988/7/10,4.782787233,22.86727221,13.48311469,0.564983319,7.770774318,1310.121018,0.005084365035037593 -922,1988/7/11,10.97150202,22.58946066,12.97106432,0.067959445,7.7813856,2363.055676,0.059343586575176605 -923,1988/7/12,5.754890215,22.01623794,12.65984239,0.20110651,7.579932771,1735.701784,0.029166106491536937 -924,1988/7/13,5.267110452,21.41597169,13.70005303,0.678448838,6.927178819,1505.57872,0.014583053245768468 -925,1988/7/14,1.266136329,21.90788809,14.12910705,0.868156767,7.046657982,751.9479541,0.007291526622884234 -926,1988/7/15,2.326514543,23.32693002,14.17557096,1.060407808,7.800357642,681.7737244,0.003645763311442117 -927,1988/7/16,4.105717451,23.58027119,14.38835824,1.124537749,7.868439589,827.1702545,0.0018228816557210586 -928,1988/7/17,7.029476896,21.66038127,14.56524456,0.894527532,6.75010293,1222.773832,0.0054257985858581935 -929,1988/7/18,2.497980758,22.88269351,14.75964307,0.983647324,7.366039063,716.9349715,0.00267642591235792 -930,1988/7/19,2.266711746,23.79304044,14.81651346,0.961808462,7.846788568,555.3973906,0.00133821295617896 -931,1988/7/20,15.12004616,23.96400115,14.67368531,0.584781282,7.987067751,2322.44569,0.10643263632151492 -932,1988/7/21,7.172440074,22.65929538,14.36720147,0.978276938,7.383268416,1780.504701,0.05243221903669259 -933,1988/7/22,5.247931425,20.90988106,14.63750436,1.330598278,6.291789991,1417.411641,0.026216109518346294 -934,1988/7/23,5.256283001,21.56263771,14.4844551,1.231309654,6.731942383,1351.38291,0.013108054759173147 -935,1988/7/24,14.32096223,22.26817585,14.87480684,1.265782637,6.98680975,3080.37475,0.14935691997669048 -936,1988/7/25,4.719742783,21.61231467,14.82051622,1.004661166,6.632528426,1800.513082,0.07328820622762032 -937,1988/7/26,6.2029608,22.49322379,15.05567686,0.958417198,7.049729267,1821.743512,0.03664410311381016 -938,1988/7/27,3.55528658,24.19416241,14.88614975,0.776705422,8.053447026,1281.474119,0.01832205155690508 -939,1988/7/28,7.80390972,24.07174587,14.1313156,0.897522078,8.226696132,1835.492549,0.00916102577845254 -940,1988/7/29,6.972617416,21.36217307,12.40867273,0.613006155,7.340523463,1795.988347,0.00458051288922627 -941,1988/7/30,3.193764911,20.35715014,11.64775761,0.389056849,7.057237146,1131.786078,0.002290256444613135 -942,1988/7/31,3.225619417,21.57084309,12.40852803,0.512393241,7.451751954,942.2923285,0.0011451282223065675 -943,1988/8/1,1.020989951,20.63261947,13.33654992,1.331382769,6.650481107,519.9659645,0.0005725641111532837 -944,1988/8/2,3.748200339,22.28975072,14.1243696,1.006506576,7.284803877,723.6858026,0.0002862820555766419 -945,1988/8/3,4.000465573,23.19946388,14.75999114,1.11406184,7.567144762,755.8520865,0.00014314102778832094 -946,1988/8/4,10.70488277,22.95212848,15.38332086,0.943375029,7.204932323,1697.173103,0.060575975872021 -947,1988/8/5,13.42977878,21.6085679,15.16153256,0.623201692,6.510792642,2706.603268,0.17276111851088607 -948,1988/8/6,11.3110821,21.70403778,14.19079634,0.547114065,6.945728544,2998.221415,0.20409081713162214 -949,1988/8/7,11.8156394,20.82107246,14.32063599,0.531252348,6.394618607,3500.77047,0.2708193470834993 -950,1988/8/8,14.83869344,21.46340223,13.52477713,0.652544829,7.053657605,4828.532844,0.4170329562897017 -951,1988/8/9,11.21851861,20.95347975,13.4217401,1.02575807,6.813136141,4487.724862,0.39604216017687244 -952,1988/8/10,4.803688606,21.95344273,13.99067654,1.375314662,7.16489655,2705.391977,0.19380580531022815 -953,1988/8/11,3.438674732,21.41504655,14.47580206,1.033190905,6.685945333,1858.786977,0.09690290265511407 -954,1988/8/12,8.039202331,21.97909539,15.04616032,1.215956465,6.791382144,2538.627998,0.10228528512099302 -955,1988/8/13,15.53057467,21.0820469,14.49838695,0.988577672,6.488812821,4599.497167,0.450393781048168 -956,1988/8/14,13.49652876,20.43469417,13.54975004,0.608023838,6.489266111,5062.205587,0.5845165236526111 -957,1988/8/15,2.411351208,22.24238769,13.96363867,0.70221882,7.345849232,2211.393887,0.2825853887660026 -958,1988/8/16,3.326322068,22.82341281,14.66526368,1.326585468,7.425290272,1710.228771,0.1412926943830013 -959,1988/8/17,3.999437712,22.1948309,15.23674006,0.957716067,6.854805519,1545.592672,0.07064634719150065 -960,1988/8/18,13.03285706,22.22342081,15.2457375,1.017388244,6.870751381,3313.761195,0.34615536235301203 -961,1988/8/19,9.449640716,22.34569808,14.00084761,0.932077053,7.401365673,3123.993126,0.2799387347276713 -962,1988/8/20,5.788502572,20.76907513,13.96223207,1.245154168,6.537253967,2277.609739,0.1367578271110388 -963,1988/8/21,2.467797547,20.19023006,13.03988659,1.232160357,6.559940574,1341.47442,0.0683789135555194 -964,1988/8/22,3.431920674,19.77434342,12.71152788,0.818354519,6.451949561,1217.377534,0.0341894567777597 -965,1988/8/23,6.25613699,20.39097487,12.93843743,0.828285206,6.712613795,1603.155547,0.01709472838887985 -966,1988/8/24,10.52150531,19.93738556,12.362626,0.882313171,6.669328095,2524.65612,0.20521597975039418 -967,1988/8/25,7.660196114,20.99169184,12.7522386,0.996968452,7.106913837,2297.535296,0.12775412173549494 -968,1988/8/26,9.370274659,20.03403187,13.90592492,1.140070571,6.149209754,2680.008417,0.24026917009149917 -969,1988/8/27,4.464528081,20.81157792,13.41118505,1.195495455,6.788083,1786.704709,0.1152596483228294 -970,1988/8/28,8.936389347,21.44751556,13.54441221,1.253261947,7.095454615,2496.052596,0.15993091961514105 -971,1988/8/29,6.272555995,21.8760663,13.7982219,1.204648743,7.24624783,2093.350133,0.07712301407901861 -972,1988/8/30,9.551736085,22.61640118,13.87147175,1.206401413,7.629246249,2693.443868,0.14667948440243234 -973,1988/8/31,6.078604795,21.71260512,13.92382025,1.156105224,7.118515141,2101.333998,0.07029954484616248 -974,1988/9/1,7.249391914,21.82255853,14.17311633,1.079026466,7.093616173,2188.813593,0.044015116420593366 -975,1988/9/2,4.003118788,21.07829143,14.17236485,1.072613366,6.67324069,1520.139311,0.021755290675924226 -976,1988/9/3,2.786882624,21.63700629,13.93156103,1.120466047,7.084141529,1084.256853,0.010877645337962113 -977,1988/9/4,5.855596294,21.74691462,12.8147957,0.775329578,7.523119832,1424.111286,0.005438822668981057 -978,1988/9/5,17.51635843,20.50821149,12.64696119,0.4993974,6.919812804,3859.461672,0.532471209904815 -979,1988/9/6,8.009835742,19.69529005,13.3078528,0.729685205,6.226947261,2821.667568,0.35917612079522937 -980,1988/9/7,10.33183588,19.39486875,13.16774354,0.77111601,6.112017867,3307.629976,0.43439732829718886 -981,1988/9/8,4.295714943,19.91808815,13.44725642,0.680332562,6.307166112,2053.217303,0.20931335554018493 -982,1988/9/9,5.526967871,20.20889164,12.71913989,0.838281457,6.746148625,1986.151081,0.10465667777009247 -983,1988/9/10,9.58850409,20.79816595,13.26780835,1.028612524,6.880419757,2801.914661,0.21920662744312303 -984,1988/9/11,8.919392706,20.92350152,12.8236148,0.928718365,7.10703683,2889.744325,0.22046484161695695 -985,1988/9/12,2.673548069,19.94106242,11.54967342,1.13971081,7.002226559,1513.541799,0.10651991843818806 -986,1988/9/13,2.302663932,19.75148173,10.7702757,0.853416669,7.143417564,1068.021377,0.05325995921909403 -987,1988/9/14,10.68985627,19.34010845,9.918456217,0.244285992,7.180660916,2436.641981,0.23437143730983348 -988,1988/9/15,0.918032128,20.00430258,9.596019467,0.332881555,7.591255186,922.406995,0.11103665756057678 -989,1988/9/16,0.31346457,21.55712653,10.10407435,0.88040689,8.219430757,479.3643505,0.05551832878028839 -990,1988/9/17,1.385833253,21.71411195,10.6999941,0.605202095,8.155187384,449.0900596,0.027759164390144194 -991,1988/9/18,2.333976338,20.63340921,11.60062258,0.355945387,7.369932273,476.2458537,0.013879582195072097 -992,1988/9/19,1.705577746,20.15652956,11.15938738,0.48663847,7.259937119,368.5589296,0.0069397910975360485 -993,1988/9/20,0.386168233,20.40785154,11.31976714,0.353841245,7.34561024,189.8893361,0.0034698955487680243 -994,1988/9/21,1.413365736,20.40445968,11.48563243,0.448114745,7.298620242,214.0019877,0.0017349477743840121 -995,1988/9/22,0.538189055,20.25547767,11.61043283,0.278113411,7.187276147,129.0701826,0.0008674738871920061 -996,1988/9/23,0.215773017,20.78502797,10.92187601,0.493485841,7.663271385,75.73556913,0.00043373694359600303 -997,1988/9/24,1.836940117,21.85314279,10.99247231,0.811222931,8.182235481,149.7440601,0.00021686847179800152 -998,1988/9/25,4.926419178,22.20963499,12.78292315,1.103788037,7.866638068,360.8347686,0.00010843423589900076 -999,1988/9/26,8.008479743,21.29868767,13.12095559,1.148606003,7.271756278,723.3440795,0.026163102420120987 -1000,1988/9/27,1.124741194,20.81366295,13.13389452,1.243620008,7.003456587,292.8303931,0.012618912293216746 -1001,1988/9/28,3.469938127,20.69361132,13.10392535,0.778249994,6.951308478,398.4009718,0.006309456146608373 -1002,1988/9/29,1.979648914,20.78387088,12.10015782,1.198363182,7.341879623,295.0321771,0.0031547280733041864 -1003,1988/9/30,0.0,20.97937234,11.72562769,1.174651026,7.563652093,112.6844272,0.0015773640366520932 -1004,1988/10/1,0.095628324,22.32604482,11.69803579,1.122394901,8.267251638,70.06237575,0.0007886820183260466 -1005,1988/10/2,0.419078807,22.36584105,11.94515204,1.235232387,8.224796088,64.70431178,0.0003943410091630233 -1006,1988/10/3,1.381664765,21.46319786,11.80930337,1.167792814,7.803411704,99.38187823,0.00019717050458151165 -1007,1988/10/4,8.20837126,21.31390995,11.88740279,1.219695997,7.707536612,523.7496584,0.012733227287902354 -1008,1988/10/5,14.70521023,21.34668204,12.30379851,1.479954873,7.602840399,1526.281894,0.18875985892639283 -1009,1988/10/6,11.7959907,20.34325903,11.94723821,1.296286278,7.186236173,1956.379988,0.24159739640941685 -1010,1988/10/7,19.53814084,19.40332956,11.24134085,0.856924441,6.917684022,4113.826777,0.582306621397116 -1011,1988/10/8,6.341640233,19.88182522,11.0511355,1.337355389,7.231057533,2455.267841,0.2826260853173702 -1012,1988/10/9,1.99079853,19.24492752,10.79689572,1.294011908,6.98202963,1244.182324,0.1413130426586851 -1013,1988/10/10,0.185986055,20.49824164,10.41867218,1.176919484,7.73270907,603.8333253,0.07065652132934255 -1014,1988/10/11,0.212682252,21.30555897,10.50606257,1.122143874,8.116522975,383.9133462,0.03532826066467128 -1015,1988/10/12,4.333520753,20.33798168,10.78244441,1.002633989,7.560913935,759.5260777,0.01766413033233564 -1016,1988/10/13,2.051715159,20.39478841,11.08583372,0.974999328,7.507396375,511.8778812,0.00883206516616782 -1017,1988/10/14,4.762113936,18.94614251,11.10149641,0.964997953,6.748400396,736.7313376,0.00441603258308391 -1018,1988/10/15,6.325518294,18.92063672,11.03930693,1.106171183,6.759053982,993.9812575,0.002208016291541955 -1019,1988/10/16,0.9063693,19.18567278,10.35139209,0.590804751,7.113988005,417.5417798,0.0011040081457709774 -1020,1988/10/17,2.073047141,17.97452262,10.29145286,0.55868999,6.508593911,404.656461,0.0005520040728854887 -1021,1988/10/18,1.79318162,18.53100181,10.35442159,1.130861209,6.78340262,341.932688,0.00027600203644274435 -1022,1988/10/19,1.051924567,17.9041491,9.367068021,1.008834086,6.761696803,233.5909065,0.00013800101822137217 -1023,1988/10/20,1.205149216,17.95478611,8.393818351,0.8188882,7.054714063,202.5516094,6.900050911068609e-05 -1024,1988/10/21,0.623210874,18.26964101,7.508272082,1.005618098,7.419754043,131.906148,3.4500254555343044e-05 -1025,1988/10/22,0.067004903,18.0332965,5.430696635,0.708523553,7.731111402,65.71558984,1.7250127277671522e-05 -1026,1988/10/23,0.012654546,18.46985844,5.584279029,0.425387842,7.899974648,38.90727233,8.625063638835761e-06 -1027,1988/10/24,0.017494656,17.97294228,5.82816923,0.621801292,7.641262564,25.43510595,4.3125318194178804e-06 -1028,1988/10/25,0.0,18.05967829,6.004845628,0.60237541,7.650923248,16.14781238,2.1562659097089402e-06 -1029,1988/10/26,0.114062675,17.90732135,6.138489791,0.717800832,7.5614201,14.5221391,1.0781329548544701e-06 -1030,1988/10/27,0.470657967,17.80950552,5.601386728,0.595705325,7.623446302,22.7548033,5.390664774272351e-07 -1031,1988/10/28,0.036054906,16.51052074,4.68749664,0.397976656,7.224846094,9.481241628,2.6953323871361753e-07 -1032,1988/10/29,0.017718723,15.81208767,4.411297053,0.161450812,6.976688886,5.41298481,1.3476661935680876e-07 -1033,1988/10/30,0.363118854,16.17416164,3.556089387,0.601550922,7.278762904,11.36935097,6.738330967840438e-08 -1034,1988/10/31,0.138368008,15.80349097,3.5829021,0.898100798,7.122468297,6.848662215,3.369165483920219e-08 -1035,1988/11/1,0.0,15.96289919,4.226816822,0.784527132,7.085553045,2.884315437,1.6845827419601095e-08 -1036,1988/11/2,0.00125203,15.67414045,4.061470155,0.53600748,6.994481365,1.720909853,8.422913709800548e-09 -1037,1988/11/3,0.194474899,14.88316418,4.672222001,0.663955456,6.540789841,3.870383389,4.211456854900274e-09 -1038,1988/11/4,0.14118931,15.7441097,4.291041501,0.729297826,6.991042392,3.242780771,2.105728427450137e-09 -1039,1988/11/5,0.100858778,14.41221577,3.544900089,0.660052326,6.558887209,2.415017869,1.0528642137250685e-09 -1040,1988/11/6,0.040015049,13.26667001,1.311241724,0.461247268,6.448589612,1.404241261,5.264321068625342e-10 -1041,1988/11/7,0.050309693,12.33063188,-0.117584981,0.540429267,6.273138904,1.159363354,2.632160534312671e-10 -1042,1988/11/8,0.026145099,14.33426929,0.00399302,0.56232935,7.033288827,0.756650468,1.3160802671563356e-10 -1043,1988/11/9,0.013364862,14.12017188,1.12990091,0.587695445,6.821952671,0.475205075,6.580401335781678e-11 -1044,1988/11/10,0.045555705,13.87109368,1.05020279,0.513839063,6.736731728,0.573342138,3.290200667890839e-11 -1045,1988/11/11,0.000766481,12.93999966,-0.97707031,0.842766999,6.610938488,0.239828827,1.6451003339454195e-11 -1046,1988/11/12,0.0,12.23781735,-1.617167538,0.548658159,6.413009506,0.137283354,8.225501669727097e-12 -1047,1988/11/13,0.0,12.74706908,-0.589508806,0.625291871,6.504089525,0.087796439,4.112750834863549e-12 -1048,1988/11/14,0.01274619,13.84509079,0.535051934,0.919151841,6.803083564,0.113773237,2.0563754174317743e-12 -1049,1988/11/15,2.209682208,13.94442105,1.674105524,1.364498189,6.696796796,17.34343128,1.0281877087158872e-12 -1050,1988/11/16,10.90782624,12.72578669,1.119266112,1.123255119,6.290375196,332.5150025,0.032522947876921816 -1051,1988/11/17,6.819482501,12.82774735,2.203429021,0.664727606,6.165363212,473.6679458,0.02373218185015053 -1052,1988/11/18,8.310989048,9.627577722,2.211814551,0.245240974,4.828268847,788.5641433,0.05443373665189086 -1053,1988/11/19,1.24208956,8.927561827,1.665922987,0.244561336,4.654291095,332.9287112,0.026956188380790683 -1054,1988/11/20,0.0,10.1594139,1.579227199,0.571865556,5.186775872,135.911128,0.013478094190395341 -1055,1988/11/21,0.0,12.89266548,1.369078113,0.683480179,6.333870124,80.05680525,0.006739047095197671 -1056,1988/11/22,0.020129662,13.01524593,1.328618755,0.686129913,6.391543186,52.81667603,0.0033695235475988353 -1057,1988/11/23,0.512007592,14.02406579,1.541503995,0.733198507,6.76980844,64.04057578,0.0016847617737994177 -1058,1988/11/24,0.005335769,12.99302501,3.530030626,1.135731221,6.006964882,29.48420613,0.0008423808868997088 -1059,1988/11/25,0.0,14.08968769,2.241245508,1.184666559,6.699283879,17.53170092,0.0004211904434498544 -1060,1988/11/26,0.012593018,13.86955058,2.497259556,0.991669858,6.570202763,11.79248892,0.0002105952217249272 -1061,1988/11/27,0.349364821,13.07470494,2.621246079,1.030705697,6.220070172,20.31360098,0.0001052976108624636 -1062,1988/11/28,0.03063624,11.7757727,2.731309067,1.070671441,5.653566144,8.939700686,5.26488054312318e-05 -1063,1988/11/29,0.051097529,10.72363397,2.367809098,0.925183156,5.282327156,6.281237324,2.63244027156159e-05 -1064,1988/11/30,0.052873843,11.5373482,1.05531634,0.780764186,5.857656452,4.805297512,1.316220135780795e-05 -1065,1988/12/1,0.0,13.02674031,0.452154181,0.71850203,6.535822367,2.44639841,6.581100678903975e-06 -1066,1988/12/2,0.0,12.9982584,-0.158155901,1.143408431,6.600349887,1.511895236,3.2905503394519876e-06 -1067,1988/12/3,0.002604571,13.9116329,0.03566355,0.851916627,6.935461261,1.028255253,1.6452751697259938e-06 -1068,1988/12/4,0.540301622,13.2161717,0.841786687,0.8699648,6.566002022,10.35248334,8.226375848629969e-07 -1069,1988/12/5,0.671277062,13.21051693,-0.279472174,1.187344629,6.701906805,14.81021776,4.1131879243149845e-07 -1070,1988/12/6,0.029308523,13.05163619,-0.247250968,1.701909591,6.638712398,4.695110197,2.0565939621574923e-07 -1071,1988/12/7,0.033057927,12.38582324,-0.594668675,1.242480398,6.423161159,2.698693587,1.0282969810787461e-07 -1072,1988/12/8,0.42459906,12.09633716,-0.507555815,0.528338595,6.303872153,7.522234851,5.141484905393731e-08 -1073,1988/12/9,0.706438192,11.14204405,-1.087115904,0.835744788,6.009085981,12.70716386,2.5707424526968653e-08 -1074,1988/12/10,0.339446219,10.40186857,-2.473655224,0.808193307,5.880004975,8.754320617,1.2853712263484327e-08 -1075,1988/12/11,0.00255449,10.17988375,-2.817541287,0.974765693,5.832284927,3.119183858,6.426856131742163e-09 -1076,1988/12/12,0.0,10.4857767,-3.224291681,0.904209231,5.977266154,1.716588622,3.2134280658710817e-09 -1077,1988/12/13,0.077477683,11.37875241,-1.925377747,0.971037734,6.19049375,1.9687604,1.6067140329355408e-09 -1078,1988/12/14,0.0,11.67990213,-2.691914088,0.8962994,6.368882594,0.920342949,8.033570164677704e-10 -1079,1988/12/15,0.850250973,10.94677499,-2.602735688,0.788933319,6.095815025,9.569031577,4.016785082338852e-10 -1080,1988/12/16,1.416658465,10.43609698,-1.300263444,1.230454442,5.77654721,21.42549776,2.008392541169426e-10 -1081,1988/12/17,0.010824999,10.20021432,-4.424063258,0.995787101,5.964925679,5.88489583,1.004196270584713e-10 -1082,1988/12/18,0.106926428,10.44171276,-3.88748932,1.085726955,6.016404973,4.160164363,5.020981352923565e-11 -1083,1988/12/19,0.005361958,11.6746675,-4.432086515,1.095995902,6.483766603,2.114058566,2.5104906764617826e-11 -1084,1988/12/20,0.004163405,12.26289317,-4.596450869,0.817602181,6.700042321,1.317336361,1.2552453382308913e-11 -1085,1988/12/21,0.064956703,11.91504249,-4.220682924,0.979284179,6.559721203,1.443456392,6.276226691154456e-12 -1086,1988/12/22,0.102981184,10.96511587,-3.872692045,0.911066757,6.203614074,1.576571714,3.138113345577228e-12 -1087,1988/12/23,0.020632028,11.96133966,-3.200927631,1.112284105,6.516756199,0.792591629,1.569056672788614e-12 -1088,1988/12/24,0.030980825,12.91163816,-2.827429908,1.197638464,6.838323283,0.621828476,7.84528336394307e-13 -1089,1988/12/25,0.005601408,13.63195546,-2.838017502,0.934059336,7.104562313,0.337604227,3.922641681971535e-13 -1090,1988/12/26,0.040440386,13.25168242,-2.110013897,1.435810072,6.913285613,0.421930526,1.9613208409857676e-13 -1091,1988/12/27,0.071474838,11.62754794,-2.470704472,1.500411184,6.342044124,0.548118632,9.806604204928838e-14 -1092,1988/12/28,0.16786657,10.95536322,-4.325959602,1.137552901,6.230235536,1.036132916,4.903302102464419e-14 -1093,1988/12/29,0.985190662,10.26401735,-4.567174052,0.961470806,6.002486461,6.687323363,2.4516510512322095e-14 -1094,1988/12/30,0.046390729,10.68478004,-4.822155257,0.735846923,6.162525874,2.035670878,1.2258255256161048e-14 -1095,1988/12/31,0.01602106,11.35458595,-3.978331332,1.050493257,6.351670901,0.963250373,6.129127628080524e-15 -1096,1989/1/1,0.093712938,10.93733106,-4.407594034,0.999110606,6.228997578,1.120985129,3.064563814040262e-15 -1097,1989/1/2,0.058623665,10.61597599,-4.712444213,1.011845136,6.133158894,0.822102362,1.532281907020131e-15 -1098,1989/1/3,0.022726464,10.35801178,-4.694101366,1.014089338,6.042524219,0.486324216,7.661409535100655e-16 -1099,1989/1/4,1.304732931,8.554113008,-4.584432064,0.929393676,5.413519033,9.499650016,3.8307047675503274e-16 -1100,1989/1/5,0.003996061,9.046225685,-4.371701814,1.106563529,5.568089447,2.412643794,1.9153523837751637e-16 -1101,1989/1/6,0.042947506,10.26915501,-4.571106969,1.625341679,6.004382507,1.418936923,9.576761918875818e-17 -1102,1989/1/7,0.001812318,11.39686424,-4.604883213,1.82104906,6.399791524,0.760264015,4.788380959437909e-17 -1103,1989/1/8,0.009725015,12.89257257,-5.091294329,1.777825311,6.945735401,0.531327195,2.3941904797189546e-17 -1104,1989/1/9,0.187232207,12.31282551,-3.80034879,1.79610404,6.681859537,1.422079309,1.1970952398594773e-17 -1105,1989/1/10,0.05154635,10.61439895,-3.674813644,1.3105576,6.067493737,0.758201802,5.9854761992973865e-18 -1106,1989/1/11,0.060928845,10.27738851,-4.128218699,1.080091638,5.978435939,0.635840683,2.9927380996486933e-18 -1107,1989/1/12,0.052173207,9.349289053,-5.903472136,1.441622068,5.752811658,0.518182535,1.4963690498243466e-18 -1108,1989/1/13,0.012441046,9.013450976,-6.968949346,1.306101073,5.676842822,0.271428452,7.481845249121733e-19 -1109,1989/1/14,0.056836904,7.896116339,-5.505999393,0.935987229,5.245537613,0.376596561,3.7409226245608666e-19 -1110,1989/1/15,0.001257086,8.666724749,-4.137679763,1.148603639,5.415207136,0.148764463,1.8704613122804333e-19 -1111,1989/1/16,0.171326394,9.114117198,-3.787230577,1.385462967,5.54296547,0.73903801,9.352306561402166e-20 -1112,1989/1/17,0.083701893,10.71181191,-3.225826637,1.923305818,6.064310679,0.535677696,4.676153280701083e-20 -1113,1989/1/18,0.0,9.105015751,-6.708995009,1.409298407,5.695611826,0.181651727,2.3380766403505416e-20 -1114,1989/1/19,0.0,10.45000772,-6.662436944,1.284510209,6.140765068,0.099030381,1.1690383201752708e-20 -1115,1989/1/20,0.004611088,11.80642821,-5.127725448,1.380462874,6.555899045,0.076499643,5.845191600876354e-21 -1116,1989/1/21,0.0,11.13207045,-6.296787823,1.271214748,6.359764363,0.044155502,2.922595800438177e-21 -1117,1989/1/22,0.138868515,10.45321911,-5.801413284,0.812415046,6.112697167,0.384935927,1.4612979002190885e-21 -1118,1989/1/23,0.750740185,9.743058294,-2.604044626,1.122094594,5.655545523,2.977142284,7.306489501095443e-22 -1119,1989/1/24,0.687963532,10.45659176,-1.947121168,1.438775993,5.848970271,4.760994079,3.6532447505477213e-22 -1120,1989/1/25,0.092189888,11.7085362,-2.212007432,1.29151927,6.333487329,1.900850604,1.8266223752738606e-22 -1121,1989/1/26,0.020772356,13.55320453,-2.330232871,1.294904603,7.022611818,0.899008342,9.133111876369303e-23 -1122,1989/1/27,0.120141595,13.82941911,-1.708328657,1.575443691,7.077231244,1.147922768,4.5665559381846516e-23 -1123,1989/1/28,0.368046071,11.35750499,-1.244583732,1.668336248,6.10388899,2.551294963,2.2832779690923258e-23 -1124,1989/1/29,0.508994381,11.66935435,-0.943417317,1.527586096,6.18670106,4.100492291,1.1416389845461629e-23 -1125,1989/1/30,0.313436183,13.01405875,-0.51405471,1.30175949,6.650779753,3.449033332,5.7081949227308145e-24 -1126,1989/1/31,0.568774883,13.96009624,-0.174149672,1.738125656,6.977882879,5.612496138,2.8540974613654072e-24 -1127,1989/2/1,0.362357339,13.6473027,-0.578225691,1.64551644,6.896717205,4.746284695,1.4270487306827036e-24 -1128,1989/2/2,0.03084236,12.98590978,-1.565847776,1.598863288,6.736948054,1.845569459,7.135243653413518e-25 -1129,1989/2/3,1.146161135,12.13530593,-1.450885385,1.375268066,6.405738757,11.45319389,3.567621826706759e-25 -1130,1989/2/4,0.172145444,12.9978769,-0.664568423,1.763965303,6.650381101,4.876583293,1.7838109133533795e-25 -1131,1989/2/5,0.245362135,13.45602755,0.387699499,1.771014177,6.706897601,4.314341983,8.919054566766898e-26 -1132,1989/2/6,1.393648068,13.40299366,-0.489323428,1.879448874,6.782717205,17.73051817,4.459527283383449e-26 -1133,1989/2/7,0.027660488,12.91077681,-1.885263429,2.023490753,6.72506762,5.168061358,2.2297636416917244e-26 -1134,1989/2/8,0.027922509,13.54205729,-2.36253175,1.962108842,6.992970183,2.704345941,1.1148818208458622e-26 -1135,1989/2/9,0.0,13.30149903,-3.423817031,1.638469734,6.969006278,1.55127072,5.574409104229311e-27 -1136,1989/2/10,0.0,12.71002482,-3.38059666,1.194814917,6.750560308,0.988491122,2.7872045521146555e-27 -1137,1989/2/11,0.019299811,12.07230294,-2.20252969,1.444767866,6.432272721,0.789009463,1.3936022760573278e-27 -1138,1989/2/12,0.366540506,11.23147096,-1.200723588,1.724108673,6.021681585,3.185891759,6.968011380286639e-28 -1139,1989/2/13,0.035944025,10.85971541,-2.002147519,1.845312392,5.965003291,1.208034747,3.4840056901433194e-28 -1140,1989/2/14,0.157392699,11.08356054,-1.323388672,2.154862951,5.975078649,1.62591237,1.7420028450716597e-28 -1141,1989/2/15,0.324970294,10.85704458,-0.26938824,1.987718216,5.759176872,2.868630711,8.710014225358298e-29 -1142,1989/2/16,0.424349457,11.42255192,-1.681242646,1.948446555,6.132900958,4.092445427,4.355007112679149e-29 -1143,1989/2/17,0.00046265,11.16868161,-3.32864423,1.747176972,6.1776195,1.225766557,2.1775035563395746e-29 -1144,1989/2/18,0.006480786,13.05281255,-3.991116286,1.639313111,6.883631613,0.666351667,1.0887517781697873e-29 -1145,1989/2/19,0.628792629,14.15380212,-1.689940016,2.046108761,7.139249729,4.804934399,5.4437588908489366e-30 -1146,1989/2/20,0.750369346,12.49777156,-3.08982063,2.107611636,6.628087946,7.644128285,2.7218794454244683e-30 -1147,1989/2/21,0.766475308,11.8605774,-3.509386281,2.088249992,6.424186136,9.812440214,1.3609397227122341e-30 -1148,1989/2/22,0.630731553,12.58117715,-1.859863244,1.987890223,6.559788371,9.969368424,6.804698613561171e-31 -1149,1989/2/23,0.056652158,11.49319302,-4.001145536,1.98288513,6.318139844,3.797593267,3.4023493067805853e-31 -1150,1989/2/24,0.004264812,10.89951998,-6.81446404,1.10175477,6.218474127,1.865665378,1.7011746533902927e-31 -1151,1989/2/25,2.246916521,12.84925832,-4.62727373,1.137331361,6.817243948,29.97954159,8.505873266951463e-32 -1152,1989/2/26,0.146285554,13.86863146,-1.985623132,1.415038706,7.032150438,9.878061288,4.2529366334757317e-32 -1153,1989/2/27,0.000261278,15.17907772,-2.007458513,1.480329277,7.516638728,4.057372938,2.1264683167378658e-32 -1154,1989/2/28,0.0,15.34438653,-1.420137358,2.00821677,7.534573589,2.411229604,1.0632341583689329e-32 -1155,1989/3/1,0.134626941,16.56352136,-2.323504033,1.989216177,8.04425035,2.959149854,5.3161707918446646e-33 -1156,1989/3/2,0.02452019,16.65718131,0.293720599,2.102715229,7.890808077,1.574812337,2.6580853959223323e-33 -1157,1989/3/3,0.0,16.45228685,0.787929536,1.817083301,7.758905534,0.860384761,1.3290426979611662e-33 -1158,1989/3/4,0.0,16.60067978,-0.968716289,1.635691229,7.962925945,0.542864875,6.645213489805831e-34 -1159,1989/3/5,0.025837119,16.27465235,-0.449520418,1.865954715,7.794218138,0.508598784,3.3226067449029154e-34 -1160,1989/3/6,0.0,16.36861451,1.257154582,1.85833786,7.664247045,0.266760221,1.6613033724514577e-34 -1161,1989/3/7,0.086902586,13.10905242,0.354743351,1.442326702,6.487113571,0.578302038,8.306516862257288e-35 -1162,1989/3/8,0.149569739,11.49615726,0.999549623,1.326614331,5.765783625,0.897224649,4.153258431128644e-35 -1163,1989/3/9,0.375083272,12.65067075,0.684626549,1.483735939,6.260210216,2.175282105,2.076629215564322e-35 -1164,1989/3/10,0.177926627,14.36474455,0.17251359,1.822263207,6.9813497,1.563636173,1.038314607782161e-35 -1165,1989/3/11,0.206118665,16.50513994,1.323498883,1.808286291,7.690372396,1.636100387,5.191573038910805e-36 -1166,1989/3/12,0.482355453,15.32600779,1.891660979,1.708668577,7.147599944,3.37128128,2.5957865194554026e-36 -1167,1989/3/13,0.006535329,13.96857097,0.616109162,1.258580465,6.766777146,1.014560034,1.2978932597277013e-36 -1168,1989/3/14,0.012337336,15.27453559,0.253190443,1.341945956,7.307970745,0.560821563,6.489466298638507e-37 -1169,1989/3/15,0.051986639,15.38402745,0.641426252,1.521067953,7.306196597,0.568803119,3.2447331493192533e-37 -1170,1989/3/16,0.100173242,15.84437355,0.789619545,1.63907153,7.465926114,0.702712524,1.6223665746596266e-37 -1171,1989/3/17,0.192763026,15.23933337,-0.277934736,1.54775317,7.332842261,1.093022597,8.111832873298133e-38 -1172,1989/3/18,0.185000011,15.8534091,-1.072557771,1.545484658,7.626736573,1.157620699,4.0559164366490666e-38 -1173,1989/3/19,0.15933309,16.73921477,0.069220201,1.313418324,7.86892187,1.072667696,2.0279582183245333e-38 -1174,1989/3/20,2.037893259,16.4554473,1.528585927,1.435780579,7.608775942,15.83210304,1.0139791091622667e-38 -1175,1989/3/21,3.254491956,14.51567153,1.391591361,1.071558686,6.854029786,54.32417598,5.069895545811333e-39 -1176,1989/3/22,1.446639766,14.06234862,2.05879671,1.201091842,6.578292914,44.7742934,2.5349477729056666e-39 -1177,1989/3/23,0.653271937,15.22325994,3.760343564,1.705847744,6.780259498,28.45113889,1.2674738864528333e-39 -1178,1989/3/24,0.113279961,17.57534344,3.287809977,1.800004207,7.825750648,13.1150021,6.337369432264167e-40 -1179,1989/3/25,0.08958505,18.88568446,3.301257129,1.414425961,8.359927034,8.331109663,3.1686847161320833e-40 -1180,1989/3/26,0.270095174,18.78337816,4.231275812,1.277364593,8.18919146,8.974684582,1.5843423580660417e-40 -1181,1989/3/27,0.279185951,19.02569888,3.998717748,1.225136188,8.318222199,8.101522749,7.921711790330208e-41 -1182,1989/3/28,2.007806352,18.57519714,4.397888376,1.566164574,8.067796264,37.03460854,3.960855895165104e-41 -1183,1989/3/29,2.937925125,18.95105983,6.710648298,1.722021662,7.835930303,77.02549759,1.980427947582552e-41 -1184,1989/3/30,7.78243294,16.87915373,5.048920737,1.46576759,7.229749882,321.2332358,1.0430751974855402e-05 -1185,1989/3/31,1.438353546,15.2311748,3.438155713,1.367484293,6.805451805,152.5795163,5.215277557970542e-06 -1186,1989/4/1,1.008737003,17.52052627,4.462905652,1.969353786,7.593862593,102.3625739,2.607638778985271e-06 -1187,1989/4/2,0.738631732,16.34187699,5.428560588,2.089559172,6.912623522,74.51812819,1.3038193894926355e-06 -1188,1989/4/3,0.0,17.59053565,5.103606531,1.84696873,7.508832595,32.52303446,6.519096947463177e-07 -1189,1989/4/4,0.219938978,18.65871356,4.479080844,2.112695384,8.057741134,26.88241411,3.2595484737315887e-07 -1190,1989/4/5,0.003220014,18.93899497,4.165338448,1.859534856,8.215256212,14.34743732,1.6297742368657943e-07 -1191,1989/4/6,0.000404504,19.3820124,4.585996209,1.408624857,8.337513345,8.915885116,8.148871184328972e-08 -1192,1989/4/7,0.1006049,18.66653048,4.876747185,1.671205343,7.986926687,7.967887454,4.074435592164486e-08 -1193,1989/4/8,0.449623121,19.19808431,3.525325788,1.581097463,8.391821521,13.18480675,2.037217796082243e-08 -1194,1989/4/9,1.138737178,20.59642875,4.974198095,1.711837301,8.782145984,27.17375343,1.0186088980411215e-08 -1195,1989/4/10,0.175726133,19.70105896,7.903294404,1.997669754,7.880962976,11.32942119,5.093044490205607e-09 -1196,1989/4/11,0.704489397,18.73520257,6.115864974,2.211315548,7.79115133,17.27484856,2.5465222451028036e-09 -1197,1989/4/12,0.290745835,17.78301803,5.09319515,1.710787917,7.553255114,10.78549435,1.2732611225514018e-09 -1198,1989/4/13,0.032153253,19.22264518,5.915113245,1.741614816,8.029403167,4.845403997,6.366305612757009e-10 -1199,1989/4/14,0.117856658,18.38247634,3.415221516,1.959741658,8.042495968,4.220238321,3.1831528063785046e-10 -1200,1989/4/15,0.081488768,18.7337661,3.943477085,1.529105762,8.112658603,3.015352213,1.5915764031892523e-10 -1201,1989/4/16,1.0405063,18.92870483,4.777887193,1.580978517,8.070886908,14.06110969,7.957882015946261e-11 -1202,1989/4/17,0.604453591,19.21133475,4.871582021,1.935061201,8.171489196,11.8283745,3.978941007973131e-11 -1203,1989/4/18,0.054552555,20.33619251,5.229946344,2.000274961,8.590604572,4.48273047,1.9894705039865653e-11 -1204,1989/4/19,0.236889804,21.35470428,5.999967756,1.989411506,8.909203482,4.777211954,9.947352519932827e-12 -1205,1989/4/20,0.93547446,21.18136118,6.854143047,1.680236086,8.694144809,12.50021514,4.973676259966413e-12 -1206,1989/4/21,1.606250728,21.3396605,6.281364028,1.871721191,8.85021967,25.86910418,2.4868381299832067e-12 -1207,1989/4/22,1.173701356,18.35148924,3.309096668,1.749225768,8.00716009,26.20101486,1.2434190649916033e-12 -1208,1989/4/23,2.968996282,20.14084756,5.078656451,1.431154298,8.505746977,70.64815287,6.217095324958017e-13 -1209,1989/4/24,5.263959404,19.35297103,6.344776861,1.55021481,7.962352906,188.2056991,3.1085476624790084e-13 -1210,1989/4/25,3.275154381,18.92033466,5.488169069,1.550472569,7.916602109,187.2473061,1.5542738312395042e-13 -1211,1989/4/26,1.120642624,17.43106264,6.281730082,1.55042379,7.125120137,105.1263887,7.771369156197521e-14 -1212,1989/4/27,3.348243213,16.80829876,5.732717231,1.140961229,6.957504519,194.1444092,3.8856845780987604e-14 -1213,1989/4/28,2.841692226,16.92121834,6.30697382,0.941244725,6.887915261,204.9369484,1.9428422890493802e-14 -1214,1989/4/29,7.279365654,16.45350178,6.361196979,0.802620058,6.66572177,526.2814366,7.923989574581944e-05 -1215,1989/4/30,1.389592053,14.28886123,4.019528239,1.146286955,6.201996086,243.5286355,3.9614831745103364e-05 -1216,1989/5/1,0.886345848,17.10421042,3.889981585,1.81725733,7.381982976,153.0168253,1.9807415872551682e-05 -1217,1989/5/2,1.518875969,18.88907669,6.617971304,1.646027661,7.677005028,162.0016781,9.903707936275841e-06 -1218,1989/5/3,0.189128064,20.21854625,7.562357851,1.475526936,8.082565117,74.12747195,4.9518539681379205e-06 -1219,1989/5/4,0.056236391,21.5824535,8.744690221,1.340034819,8.46313331,41.59776099,2.4759269840689603e-06 -1220,1989/5/5,3.577285628,21.73570017,10.63893229,1.420558965,8.108726003,193.6828445,1.2379634920344801e-06 -1221,1989/5/6,2.304592698,22.09890895,10.58213122,1.774014703,8.293938256,172.5127423,6.189817460172401e-07 -1222,1989/5/7,5.683593491,22.3099686,10.06098869,2.088302748,8.510570146,381.3631575,3.0949087300862003e-07 -1223,1989/5/8,0.096745153,23.47996599,10.58166795,2.167295146,8.94618382,113.7509138,1.5474543650431002e-07 -1224,1989/5/9,1.632926878,22.78588268,9.287233745,2.122388524,8.886576989,138.4127714,7.737271825215501e-08 -1225,1989/5/10,2.756534139,21.03878986,9.021459107,1.77164853,8.13162916,193.9876127,3.8686359126077504e-08 -1226,1989/5/11,3.943146697,21.91802451,10.0072383,1.680999279,8.321623575,281.9724464,1.9343179563038752e-08 -1227,1989/5/12,2.378282132,18.87076216,10.28000184,1.159529826,6.773849467,223.833328,9.671589781519376e-09 -1228,1989/5/13,17.83998674,17.13948686,10.23155316,0.769141415,5.904673034,1689.647643,0.004549934938203608 -1229,1989/5/14,11.55311608,15.8442165,8.775361005,1.142294202,5.709552488,2028.267285,0.07419335811194226 -1230,1989/5/15,0.415745102,15.13499674,6.822488871,1.361365191,5.915200385,641.9395754,0.036654108390417536 -1231,1989/5/16,0.922328797,17.78470332,7.156125975,1.187648188,7.032379348,424.0677094,0.018327054195208768 -1232,1989/5/17,0.003727615,20.9803774,8.414817833,1.041932165,8.205522844,217.7876928,0.009163527097604384 -1233,1989/5/18,0.04214256,22.31342834,10.589641,0.997945707,8.350238128,138.7777611,0.004581763548802192 -1234,1989/5/19,3.320892193,22.55411899,11.58146121,0.882059159,8.22032637,368.7620956,0.002290881774401096 -1235,1989/5/20,0.589081381,21.12720214,11.497281,0.69971003,7.531081351,170.4727597,0.001145440887200548 -1236,1989/5/21,0.000526453,19.99221402,10.75276812,0.797003464,7.17078889,77.88901675,0.000572720443600274 -1237,1989/5/22,0.030629584,21.13793791,10.71561685,0.887515644,7.740274323,49.01481828,0.000286360221800137 -1238,1989/5/23,0.318898231,21.22572983,11.31532477,0.668755918,7.621851843,47.08433748,0.0001431801109000685 -1239,1989/5/24,5.364650206,20.86496753,12.20035509,0.850178327,7.178900845,315.6407283,7.159005545003425e-05 -1240,1989/5/25,0.588562885,21.09747731,12.0207305,1.09565296,7.350657262,118.5406446,3.5795027725017125e-05 -1241,1989/5/26,1.54540641,22.47833989,12.83496858,1.040335436,7.815884633,130.7988904,1.7897513862508563e-05 -1242,1989/5/27,7.764787327,22.18312429,13.14454487,0.840290192,7.565747868,538.9460472,0.0019457672854400509 -1243,1989/5/28,29.58080193,20.49715286,13.10074856,1.282875779,6.674871939,4022.337035,0.22832798707652294 -1244,1989/5/29,18.05708067,20.37786685,12.51449535,0.982800381,6.809940954,4926.101997,0.4772119979249219 -1245,1989/5/30,6.355958392,20.56880607,12.88255818,0.604896281,6.785579053,2892.625468,0.23271007941260125 -1246,1989/5/31,8.064219533,19.22513357,12.1805262,0.47263138,6.301755831,2900.393581,0.19122525108851013 -1247,1989/6/1,4.778614916,19.25166465,12.01265939,0.52889843,6.372699402,2095.573611,0.0940223662537926 -1248,1989/6/2,4.943284913,17.83298076,10.38793745,1.026261562,6.166768944,1858.511893,0.0470111831268963 -1249,1989/6/3,4.636159957,18.65474769,10.38790369,0.993523799,6.579989629,1646.014726,0.02350559156344815 -1250,1989/6/4,5.415129706,20.65325686,11.38665168,1.068307862,7.287496997,1665.075753,0.011752795781724074 -1251,1989/6/5,3.517884278,20.39671227,12.97002206,1.465588386,6.65020408,1230.641664,0.005876397890862037 -1252,1989/6/6,4.061883767,20.91277665,12.87625653,1.843772542,6.958391959,1163.684222,0.0029381989454310186 -1253,1989/6/7,2.981395211,21.21453328,12.85626463,1.613454111,7.12333149,905.6778295,0.0014690994727155093 -1254,1989/6/8,2.227559638,21.36033995,12.64895219,1.500741493,7.264054514,677.1252462,0.0007345497363577546 -1255,1989/6/9,11.67688159,21.82211143,11.73640823,0.838475243,7.76363004,2036.379544,0.11977425231952896 -1256,1989/6/10,1.960990125,21.39632292,12.75868173,1.157683981,7.24503895,884.5186002,0.058065364118417145 -1257,1989/6/11,5.095172915,22.61402029,13.85464143,1.594020815,7.536270995,1087.69375,0.029032682059208573 -1258,1989/6/12,5.153679452,22.06969575,14.33460017,1.954139283,7.074148749,1110.896831,0.014516341029604286 -1259,1989/6/13,1.595324278,21.17261749,13.58487731,1.601224066,6.844835543,598.7273435,0.007258170514802143 -1260,1989/6/14,11.54328771,21.30658794,14.03027384,1.892724807,6.756807864,1902.246138,0.13692896668058457 -1261,1989/6/15,4.667329059,21.17907708,14.21252792,1.97689219,6.615324715,1271.130885,0.06660833237349316 -1262,1989/6/16,3.578869761,21.80907455,14.34541236,1.982150476,6.919676855,980.1940223,0.03330416618674658 -1263,1989/6/17,0.308147959,22.70085679,14.14919737,2.032132788,7.477460774,417.3885483,0.01665208309337329 -1264,1989/6/18,0.951977418,23.13330361,14.52268711,2.081790272,7.585496433,333.841398,0.008326041546686645 -1265,1989/6/19,0.643890663,23.61688881,14.26462548,1.892899868,7.928622927,232.4187321,0.0041630207733433225 -1266,1989/6/20,1.084049671,23.11945468,14.08014206,1.564276294,7.721463366,213.9629962,0.0020815103866716612 -1267,1989/6/21,2.03628482,24.38010507,14.17709523,1.612841586,8.355378671,260.2818518,0.0010407551933358306 -1268,1989/6/22,4.489458514,24.47331948,14.469205,1.298450094,8.315567658,455.8154779,0.0005203775966679153 -1269,1989/6/23,13.24189889,22.86899478,13.84345066,0.866918378,7.661294426,1493.521851,0.12011374882965019 -1270,1989/6/24,7.763024551,21.6875509,14.49407112,0.713944426,6.788803517,1382.921163,0.084898717079747 -1271,1989/6/25,5.564851157,22.80289364,14.42002193,0.684311398,7.434249148,1180.834657,0.042098966653516784 -1272,1989/6/26,8.854560406,22.30734312,14.09441432,0.467723266,7.274967989,1684.703145,0.06268089646911773 -1273,1989/6/27,11.8221346,19.6419571,13.71095816,0.435311768,5.920058333,2500.677577,0.19518367028310232 -1274,1989/6/28,5.873912027,19.46224841,13.83798386,0.858075665,5.760200632,1824.111032,0.09910391023225615 -1275,1989/6/29,6.260763614,19.83556114,13.54360887,1.058642909,6.099208965,1804.44919,0.0549065223240906 -1276,1989/6/30,9.328837098,20.17382162,13.43621702,1.280832581,6.332389804,2460.745602,0.1283074074601205 -1277,1989/7/1,7.993169089,20.53774187,13.65438893,1.39815288,6.454154916,2435.6215,0.11860613250028694 -1278,1989/7/2,10.08094112,20.82037345,14.10712693,1.556738495,6.440936076,2999.611142,0.1962892529085683 -1279,1989/7/3,13.99567624,19.93541484,14.0842463,1.436162297,5.935712723,4366.197819,0.4282771207107846 -1280,1989/7/4,7.166084051,21.30193066,14.21700702,0.986550668,6.672247563,3164.581259,0.2313159981710617 -1281,1989/7/5,6.606747874,22.40442134,14.07067002,0.855511886,7.333791994,2730.342951,0.11507256919882955 -1282,1989/7/6,9.046872346,22.01782958,14.32841629,0.991597016,7.032113054,3133.956766,0.15507528399561687 -1283,1989/7/7,4.338257697,22.61103494,14.8530157,0.965820632,7.173356815,2040.936342,0.07517660153977729 -1284,1989/7/8,7.381228548,22.59880022,15.50570878,1.017189219,6.919447583,2366.801903,0.05962670774974391 -1285,1989/7/9,6.265586,23.09274275,14.90291509,1.038518897,7.424541658,2133.029605,0.029287464525784415 -1286,1989/7/10,3.265660145,22.49538406,13.35918141,1.168859452,7.614082278,1392.963004,0.014643732262892208 -1287,1989/7/11,23.00282909,20.66449565,12.83337277,0.604432109,6.817265181,5711.235207,0.7297705966618842 -1288,1989/7/12,2.978341557,19.04411693,12.96083165,0.72012513,5.879143192,2291.330318,0.34876191297410497 -1289,1989/7/13,3.997719499,20.73160649,13.11162548,0.828705229,6.75943515,1810.532386,0.17438095648705249 -1290,1989/7/14,5.569291982,21.76485893,13.72833823,1.348251867,7.107335533,1899.936458,0.08719047824352624 -1291,1989/7/15,3.978907165,22.44646961,14.17417145,1.404794211,7.325959062,1476.590791,0.04359523912176312 -1292,1989/7/16,6.012559244,22.66967512,14.40766925,1.265230715,7.368537223,1669.263334,0.02179761956088156 -1293,1989/7/17,6.171727337,22.0879504,14.71263766,1.027041141,6.936259173,1684.553462,0.01089880978044078 -1294,1989/7/18,3.841842765,22.52561562,14.51156874,0.713660314,7.254968534,1242.081251,0.00544940489022039 -1295,1989/7/19,9.162072764,23.48707223,14.95037546,0.914306559,7.633234739,2046.169463,0.07167986939690778 -1296,1989/7/20,3.154484729,23.54658903,14.87800517,1.033674625,7.691801578,1176.156833,0.03428489257770657 -1297,1989/7/21,2.273069453,24.27483868,14.98119115,1.010017006,8.0550379,805.3693354,0.017142446288853284 -1298,1989/7/22,3.388985316,24.00289245,15.09889225,0.812624354,7.86946147,807.2828068,0.008571223144426642 -1299,1989/7/23,17.77821045,24.44571536,14.72421223,0.54066424,8.231763361,3155.096446,0.3848584444217032 -1300,1989/7/24,8.65176113,23.19348683,15.19590659,0.696859007,7.389749315,2466.140194,0.24626027384798294 -1301,1989/7/25,3.181664881,21.56232957,15.69115824,1.034811083,6.235615766,1366.996597,0.1216356838627835 -1302,1989/7/26,24.06527287,21.46770892,13.45141442,1.302127193,7.054235904,5930.95372,0.8657397642828503 -1303,1989/7/27,7.720401087,19.45440327,12.20726412,1.033112341,6.398831958,3594.691768,0.4967639766739259 -1304,1989/7/28,0.841394735,17.95830269,11.10525364,0.603026605,5.983409203,1446.679885,0.24577953488801654 -1305,1989/7/29,2.326494347,19.0375988,11.11253494,0.39024102,6.54404855,1206.464443,0.12288976744400827 -1306,1989/7/30,8.276617279,18.84371508,11.48800635,0.413844609,6.323540306,2182.053725,0.17410973231503377 -1307,1989/7/31,5.98049723,19.88643934,12.29837018,0.869597122,6.604813738,1913.819933,0.08380528401509041 -1308,1989/8/1,2.409031395,21.83746946,13.51852308,1.199387647,7.240999578,1120.560879,0.041902642007545204 -1309,1989/8/2,3.015343027,22.35217437,13.99017856,1.116169077,7.362602836,976.5361784,0.020951321003772602 -1310,1989/8/3,11.40941779,21.55899126,13.26426116,0.789204857,7.180078329,2348.208151,0.2348977989382909 -1311,1989/8/4,8.575862385,19.98700748,13.41112303,0.490904292,6.265421493,2300.251694,0.24285605633084736 -1312,1989/8/5,3.785828772,21.41113166,13.70123694,0.600874365,6.954774679,1443.067569,0.11769371370849498 -1313,1989/8/6,3.659905629,21.65992443,13.85306604,0.794789327,7.040147461,1189.141613,0.05884685685424749 -1314,1989/8/7,16.23628483,21.23037794,13.89020466,0.658257799,6.79091753,3589.99322,0.5316048646306809 -1315,1989/8/8,11.1605685,20.62328633,13.8096052,0.694249841,6.481280306,3527.409211,0.5408590435149221 -1316,1989/8/9,8.499467284,20.95810839,13.7359402,0.294212789,6.699804094,3100.561913,0.3798783031976814 -1317,1989/8/10,3.630982701,21.40813179,13.25393407,0.39080691,7.118142525,1861.477397,0.18604854211036842 -1318,1989/8/11,0.298512452,21.85486201,12.9258325,0.617866712,7.463794577,826.4831549,0.09302427105518421 -1319,1989/8/12,17.15797564,22.7151731,13.54027593,1.072018484,7.727100927,3897.639946,0.6195455602275747 -1320,1989/8/13,17.94321501,20.32178274,14.00625566,1.203535206,6.241199628,5581.730658,1.1007511862228152 -1321,1989/8/14,15.2140371,19.94312417,13.77305759,0.911119086,6.117168977,6133.040643,1.243126817563205 -1322,1989/8/15,3.22510121,20.60650986,13.85664311,0.70578968,6.469496589,2817.787403,0.5930167660558081 -1323,1989/8/16,3.295780255,21.12915736,13.81296276,0.996929505,6.784063283,2018.004905,0.29650838302790405 -1324,1989/8/17,4.809526576,22.77799269,14.05303099,0.946555139,7.609811625,1974.545674,0.14825419151395203 -1325,1989/8/18,1.863291787,20.87006792,12.91638101,0.865994899,6.963031425,1162.346006,0.07412709575697601 -1326,1989/8/19,12.9040797,20.45244829,11.79861156,0.336906735,7.105186573,3091.598414,0.4634660259303104 -1327,1989/8/20,2.886149551,18.74364285,11.48096596,0.037242581,6.317267729,1514.018597,0.21605596311212594 -1328,1989/8/21,2.502013409,21.02086472,11.56217327,0.355277756,7.470775334,1067.67678,0.10802798155606297 -1329,1989/8/22,1.264013029,22.52872281,12.27883045,0.488551588,8.034092957,668.8193477,0.054013990778031484 -1330,1989/8/23,2.466321415,20.93887932,12.572591,0.363540571,7.127899669,663.2714892,0.027006995389015742 -1331,1989/8/24,5.972431379,21.16383884,13.01584709,0.383341219,7.105412618,1075.658721,0.013503497694507871 -1332,1989/8/25,5.442648661,21.35103822,13.50403282,0.30751099,7.043557129,1097.436708,0.0067517488472539355 -1333,1989/8/26,5.069618093,21.10232604,13.23117921,0.822940379,7.00531556,1064.14223,0.0033758744236269678 -1334,1989/8/27,7.336678036,21.84586808,13.20160456,0.961133681,7.419631763,1414.285693,0.0016879372118134839 -1335,1989/8/28,6.050482522,22.36332729,13.87638654,1.281551825,7.479333598,1344.781659,0.0008439686059067419 -1336,1989/8/29,8.071227756,22.61133117,14.28897511,1.36343922,7.478066819,1693.02189,0.03493720668982211 -1337,1989/8/30,7.362502386,21.74608802,14.17995795,1.142485585,7.03774735,1728.812457,0.03553232352409026 -1338,1989/8/31,4.560667462,22.12422209,14.00853192,1.001237145,7.313436608,1304.261697,0.017206377592579845 -1339,1989/9/1,4.362890377,22.66773054,14.12188161,0.821050837,7.577157166,1151.188645,0.008603188796289922 -1340,1989/9/2,11.66910845,23.46336146,14.15471497,1.051806109,8.002535305,2342.009011,0.20023318654922295 -1341,1989/9/3,11.75348263,21.93761037,13.9684885,1.135755363,7.234862015,2885.029453,0.35118871976471144 -1342,1989/9/4,9.4870203,20.41871863,13.54887235,0.930062479,6.538537373,2798.495935,0.3474248064036577 -1343,1989/9/5,8.058423797,19.29108798,13.56533828,0.849154033,5.876936077,2613.78791,0.3064573425914747 -1344,1989/9/6,7.622379046,20.05127857,13.55200492,0.800346269,6.332894734,2555.118669,0.23300126496879695 -1345,1989/9/7,3.274739887,22.16081766,13.46001222,0.735739378,7.544919509,1566.110438,0.11375492837205531 -1346,1989/9/8,5.42153634,22.76589646,13.59719055,0.677114317,7.829939317,1672.792771,0.056877464186027654 -1347,1989/9/9,4.297130256,22.09505883,13.40643116,0.61430959,7.534901872,1378.489584,0.028438732093013827 -1348,1989/9/10,1.632785415,22.09021669,13.04584367,0.516995189,7.652159919,789.2717545,0.014219366046506914 -1349,1989/9/11,1.166831345,21.40454203,12.74661612,0.582605718,7.386603274,524.5319026,0.007109683023253457 -1350,1989/9/12,8.167435535,20.67154982,12.93815766,0.532817712,6.930630057,1360.775128,0.06787594826848044 -1351,1989/9/13,1.477918722,21.18648758,12.88985865,0.639343194,7.230908702,621.8872378,0.032265437568054924 -1352,1989/9/14,4.852148101,21.58683143,13.33668084,0.350407028,7.302291922,880.1543994,0.016132718784027462 -1353,1989/9/15,6.645036107,19.66932158,12.61028075,0.154363404,6.504975824,1175.095921,0.01479084074118919 -1354,1989/9/16,3.754738411,19.58570556,11.88264791,0.079874677,6.717745092,877.7479269,0.007233994702850482 -1355,1989/9/17,1.837326532,17.97289872,11.95585503,0.146779364,5.804168277,549.3816731,0.003616997351425241 -1356,1989/9/18,0.666982701,18.02929145,11.69822548,0.319333432,5.938744776,310.513857,0.0018084986757126206 -1357,1989/9/19,0.369078224,20.0753652,10.67919276,1.00871229,7.352774382,194.6303032,0.0009042493378563103 -1358,1989/9/20,3.188384692,21.69066693,11.23205339,1.193458541,8.015355474,409.1339097,0.00045212466892815515 -1359,1989/9/21,12.96500339,21.43400793,12.11868919,1.281892232,7.638470995,1605.578701,0.19863127670051797 -1360,1989/9/22,4.976013952,20.83809553,12.79020424,1.004540048,7.111669847,1072.817169,0.09562049241210689 -1361,1989/9/23,7.333123468,21.05419658,12.23884127,1.153301838,7.411251768,1353.885456,0.047810246206053446 -1362,1989/9/24,10.35872937,20.16774431,12.72273009,1.44048034,6.775005772,2008.003919,0.16724754678392842 -1363,1989/9/25,7.860706839,20.02158386,12.25552491,1.479593427,6.861541612,1929.501455,0.12402186163427092 -1364,1989/9/26,3.955689294,18.93653836,11.73537017,0.801206818,6.454774704,1288.701179,0.06107422714937764 -1365,1989/9/27,2.684319489,18.40598011,11.50152613,0.67371332,6.251132704,913.7967291,0.03053711357468882 -1366,1989/9/28,4.165663797,19.71267386,12.09285865,0.707728003,6.761207434,1005.703793,0.01526855678734441 -1367,1989/9/29,2.65902688,19.8847258,11.55997726,0.827183942,7.033324198,750.32983,0.007634278393672205 -1368,1989/9/30,3.627755645,20.88179701,11.67686648,0.959930785,7.523095072,782.8274301,0.0038171391968361023 -1369,1989/10/1,11.23387728,20.74693072,11.95253528,0.41929067,7.372938238,1907.373641,0.13400319166061192 -1370,1989/10/2,14.94552047,19.57129523,11.8967046,0.531950421,6.767350804,3222.318277,0.3739940892166945 -1371,1989/10/3,2.936930319,20.08720193,11.37097703,0.598020223,7.215184154,1468.253471,0.18114995950811677 -1372,1989/10/4,0.908978079,19.47748628,11.05573051,0.32161711,6.998554678,735.3633695,0.09057497975405839 -1373,1989/10/5,4.860837489,18.60057312,11.1857304,0.370758931,6.496526712,1110.975296,0.04528748987702919 -1374,1989/10/6,0.635918556,17.67603651,10.92459944,0.371311864,6.09027714,500.970508,0.022643744938514596 -1375,1989/10/7,7.179040858,17.79554442,10.85868824,0.404650454,6.182139915,1248.924333,0.048564764291212266 -1376,1989/10/8,7.082874476,16.34160058,10.39071023,0.563947298,5.55796726,1463.395751,0.08196393204831594 -1377,1989/10/9,7.171956455,15.57267492,8.469303743,0.491757903,5.813691087,1635.315235,0.09377799432683467 -1378,1989/10/10,4.106365786,15.49805917,7.656052297,0.175821416,6.021090493,1207.382064,0.04581900776976252 -1379,1989/10/11,0.038225972,16.26099445,7.740816714,0.382703886,6.370336489,447.4010672,0.02290950388488126 -1380,1989/10/12,0.001161486,17.83564788,8.203495849,0.813993426,7.008930569,249.2428218,0.01145475194244063 -1381,1989/10/13,0.102789666,19.22049326,8.714402606,0.79762375,7.549545771,170.237636,0.005727375971220315 -1382,1989/10/14,2.95589836,17.78732042,9.171206813,0.778653753,6.735720076,402.6386284,0.0028636879856101575 -1383,1989/10/15,10.21829945,17.70882677,10.0321882,1.192891993,6.441182713,1304.721998,0.12150926468912927 -1384,1989/10/16,19.12850757,18.2708707,10.44073751,1.321239377,6.608783691,3469.890285,0.5011871014718291 -1385,1989/10/17,1.997274099,18.34153904,9.582655988,1.421386624,6.908167846,1281.964806,0.2427792534361065 -1386,1989/10/18,4.477626238,15.91213041,9.116380276,0.663901596,5.810932606,1268.416956,0.12138962671805326 -1387,1989/10/19,1.365862781,14.2500613,8.108436317,0.412726678,5.283953106,702.1921619,0.06069481335902663 -1388,1989/10/20,0.992422337,13.01108729,6.854863319,0.227847398,5.065622108,470.8843267,0.030347406679513314 -1389,1989/10/21,0.422794673,13.52307411,3.136651368,0.198380595,6.202932902,289.2022165,0.015173703339756657 -1390,1989/10/22,0.064888132,13.81940049,2.024712867,0.329159371,6.510622866,164.7985099,0.0075868516698783285 -1391,1989/10/23,0.101786459,11.02357723,1.902093184,0.510707233,5.403726358,110.8712586,0.0037934258349391643 -1392,1989/10/24,0.048694137,13.17176395,2.164632174,0.79323296,6.234454335,71.70961847,0.0018967129174695821 -1393,1989/10/25,0.21261756,14.97717607,4.4997567,1.057438459,6.580710105,60.95959388,0.0009483564587347911 -1394,1989/10/26,0.789449278,15.35884472,5.296949749,0.85377598,6.590588934,87.97471147,0.00047417822936739553 -1395,1989/10/27,2.6702879,15.62551055,5.942773243,0.54903083,6.573716558,215.163277,0.00023708911468369777 -1396,1989/10/28,1.400466911,15.55406894,4.30798381,0.613587191,6.87687949,156.2624573,0.00011854455734184888 -1397,1989/10/29,2.79498617,13.85546308,2.674622117,0.597020578,6.448471814,238.28941,5.927227867092444e-05 -1398,1989/10/30,0.460170826,14.19948012,2.673020832,0.59527084,6.593946677,103.180363,2.963613933546222e-05 -1399,1989/10/31,0.591079402,14.83960449,2.922275376,0.561439846,6.822114667,79.41814833,1.481806966773111e-05 -1400,1989/11/1,2.129090876,12.51335141,3.279719004,0.753576435,5.786554947,153.487573,7.409034833865555e-06 -1401,1989/11/2,0.768176658,12.80530545,1.91067737,0.957753014,6.157014737,91.49795673,3.7045174169327776e-06 -1402,1989/11/3,0.301437791,12.62522845,2.135605649,1.077228877,6.050031183,51.33219136,1.8522587084663888e-06 -1403,1989/11/4,0.116428988,13.26427118,1.71576472,1.040441285,6.37898236,29.86229846,9.261293542331944e-07 -1404,1989/11/5,0.040655947,13.52094276,1.789395115,0.985237042,6.474636231,17.9403282,4.630646771165972e-07 -1405,1989/11/6,0.133136644,13.34496982,0.559798534,1.044793437,6.575853776,15.45117723,2.315323385582986e-07 -1406,1989/11/7,0.001325692,12.67715429,-1.926406352,0.721640639,6.583482909,8.024934073,1.157661692791493e-07 -1407,1989/11/8,0.000284662,11.17850971,-3.286391545,0.533286306,6.151105945,4.962251915,5.788308463957465e-08 -1408,1989/11/9,0.0,11.86984444,-1.90319973,0.733821686,6.291580609,3.204961089,2.8941542319787325e-08 -1409,1989/11/10,0.041137581,12.43789153,0.480095719,0.968248506,6.245056341,3.006885746,1.4470771159893662e-08 -1410,1989/11/11,0.0,13.2205961,0.622803605,1.260812641,6.535385567,1.578606612,7.235385579946831e-09 -1411,1989/11/12,0.050090785,13.38291345,0.803532293,1.067789757,6.579022593,1.873922468,3.6176927899734156e-09 -1412,1989/11/13,0.017749274,14.00773848,0.859392161,1.029390255,6.821297467,1.131707786,1.8088463949867078e-09 -1413,1989/11/14,0.223653926,13.42074927,1.313497735,0.999804428,6.531433866,3.805417904,9.044231974933539e-10 -1414,1989/11/15,0.696028229,12.94488817,2.433514002,0.939142024,6.166441545,11.15435064,4.5221159874667695e-10 -1415,1989/11/16,1.010263074,12.24527394,1.183251344,0.960185341,6.086649259,18.90505791,2.2610579937333848e-10 -1416,1989/11/17,2.644638105,11.06607468,-1.942030277,0.875185884,6.023525714,59.31786731,1.1305289968666924e-10 -1417,1989/11/18,2.456804371,10.42773612,-1.346306134,0.727682345,5.727696142,81.90393796,5.652644984333462e-11 -1418,1989/11/19,0.682643927,9.23243938,-0.362134173,0.916740514,5.148222994,43.42205954,2.826322492166731e-11 -1419,1989/11/20,0.123101573,9.691319735,-2.106873479,0.824765417,5.546137087,19.86142136,1.4131612460833655e-11 -1420,1989/11/21,1.462251372,9.367544319,-3.20983169,0.606530761,5.53942963,51.54447199,7.065806230416827e-12 -1421,1989/11/22,1.450663789,9.454904375,-3.575832624,0.585264386,5.603009541,60.63092091,3.5329031152084137e-12 -1422,1989/11/23,0.180264001,8.51614107,-3.985870712,0.536225861,5.311791568,24.59723637,1.7664515576042068e-12 -1423,1989/11/24,0.203878535,9.234155907,-2.953265826,0.480056504,5.475433714,17.06653073,8.832257788021034e-13 -1424,1989/11/25,1.104422292,9.633488661,-1.982185596,0.67733609,5.522456996,38.85054806,4.416128894010517e-13 -1425,1989/11/26,0.060591665,10.94359663,-2.054188933,0.877966182,6.011224329,14.0527373,2.2080644470052586e-13 -1426,1989/11/27,0.143903176,9.595121919,-3.522981377,0.40598979,5.658613909,10.40640035,1.1040322235026293e-13 -1427,1989/11/28,1.50025264,8.168686799,-2.291631026,0.414347701,5.031095392,42.48917947,5.5201611175131464e-14 -1428,1989/11/29,1.169557883,7.474371534,-1.714486936,0.526430265,4.703726467,44.05511304,2.7600805587565732e-14 -1429,1989/11/30,0.522584514,7.316385821,-3.286297219,0.674835331,4.842960394,28.24876896,1.3800402793782866e-14 -1430,1989/12/1,0.726226564,5.605454842,-6.250736003,0.40238803,4.51854513,30.75190777,6.900201396891433e-15 -1431,1989/12/2,0.01309253,5.141971271,-7.648113247,0.392981328,4.444702786,11.22434966,3.4501006984457165e-15 -1432,1989/12/3,0.0,6.517956201,-7.628287421,0.607292485,4.873070836,6.069780811,1.7250503492228582e-15 -1433,1989/12/4,0.05418887,7.199088298,-7.225980234,0.580097751,5.076968589,5.074706283,8.625251746114291e-16 -1434,1989/12/5,9.68e-05,7.227051079,-7.103835507,0.705952106,5.083202528,2.795016614,4.3126258730571456e-16 -1435,1989/12/6,0.0,8.041540412,-6.293736254,0.620064763,5.316686547,1.755700889,2.1563129365285728e-16 -1436,1989/12/7,0.0,9.077214114,-6.089913543,0.377065856,5.651810143,1.137822925,1.0781564682642864e-16 -1437,1989/12/8,0.300523895,9.165210749,-4.926411464,0.59890719,5.625908835,5.538234037,5.390782341321432e-17 -1438,1989/12/9,0.005793304,9.610446757,-4.988044819,0.722524898,5.782801367,1.722172491,2.695391170660716e-17 -1439,1989/12/10,0.452696938,10.01282148,-4.462120912,0.613210552,5.892615409,7.277050014,1.347695585330358e-17 -1440,1989/12/11,0.038526727,9.671234004,-4.08793447,0.533076781,5.750977014,2.594034033,6.73847792665179e-18 -1441,1989/12/12,0.594166231,9.005129083,-3.635922372,0.320849915,5.484932327,9.059514367,3.369238963325895e-18 -1442,1989/12/13,2.606135234,8.239040268,-3.156429565,0.395363548,5.172380942,48.61697029,1.6846194816629475e-18 -1443,1989/12/14,0.436323977,6.700801549,-5.727549946,0.674979105,4.857077771,21.55480409,8.423097408314738e-19 -1444,1989/12/15,0.076154364,6.397685722,-6.778233043,0.43546225,4.816844167,9.411937235,4.211548704157369e-19 -1445,1989/12/16,2.760716272,6.003483474,-6.218978925,0.424235901,4.661894851,69.87384177,2.1057743520786844e-19 -1446,1989/12/17,0.384879642,6.071408792,-5.528325523,0.674340576,4.639757619,29.02039026,1.0528871760393422e-19 -1447,1989/12/18,0.023801899,8.052306207,-4.711467429,0.541898031,5.244602599,11.92261619,5.264435880196711e-20 -1448,1989/12/19,0.067808226,8.144828211,-4.613304832,0.633548082,5.269935298,8.296292615,2.6322179400983555e-20 -1449,1989/12/20,0.11934373,8.455309603,-5.64367854,0.77070948,5.438817112,7.215990454,1.3161089700491777e-20 -1450,1989/12/21,0.461264221,8.823898545,-5.752802501,0.714948697,5.568293627,12.95383193,6.580544850245889e-21 -1451,1989/12/22,0.048960151,7.349894569,-6.732697987,0.887919593,5.126440865,5.38224898,3.2902724251229444e-21 -1452,1989/12/23,0.065215527,7.56270653,-6.181475317,0.893579981,5.171897397,3.781843697,1.6451362125614722e-21 -1453,1989/12/24,0.105799674,9.256675148,-4.43505769,1.219098689,5.642826847,3.635596133,8.225681062807361e-22 -1454,1989/12/25,0.007144556,9.96647837,-5.236782509,1.346005949,5.933177481,1.696974129,4.1128405314036804e-22 -1455,1989/12/26,0.210429383,8.798323059,-4.665652005,0.919808027,5.501283906,3.872464593,2.0564202657018402e-22 -1456,1989/12/27,0.261510154,9.105040084,-3.91204048,1.755450417,5.553964994,4.791573433,1.0282101328509201e-22 -1457,1989/12/28,0.004092757,7.594618191,-5.779765608,1.101881879,5.163784362,1.594488532,5.1410506642546005e-23 -1458,1989/12/29,0.085293578,7.284289424,-6.012571616,0.870874262,5.0743098,1.808035386,2.5705253321273003e-23 -1459,1989/12/30,0.51080141,7.95068337,-6.618644175,0.965439458,5.320462112,6.642855599,1.2852626660636501e-23 -1460,1989/12/31,0.005579545,9.008184957,-6.120310954,1.159251737,5.650160374,1.920535953,6.426313330318251e-24 -1461,1990/1/1,0.004999294,8.121400401,-8.205002899,1.006977008,5.416530533,0.971536244,3.2131566651591253e-24 -1462,1990/1/2,0.000293248,8.615396294,-8.18187442,0.710045944,5.574122836,0.587062458,1.6065783325795627e-24 -1463,1990/1/3,0.004262081,9.389054848,-6.451704387,0.913676067,5.789207682,0.412371277,8.032891662897813e-25 -1464,1990/1/4,0.183301014,9.023383109,-5.55366247,0.89462321,5.630131566,1.698008474,4.0164458314489067e-25 -1465,1990/1/5,0.030436664,9.323825629,-5.909960571,0.83392355,5.747195539,0.737700247,2.0082229157244533e-25 -1466,1990/1/6,0.001832023,9.994327336,-7.128628698,0.950328591,6.007323746,0.325640955,1.0041114578622267e-25 -1467,1990/1/7,0.148405048,8.872566634,-7.1824774,0.994797062,5.638941406,1.131166612,5.0205572893111333e-26 -1468,1990/1/8,0.002936408,9.864375829,-4.903904111,1.22165025,5.882231733,0.365449012,2.5102786446555667e-26 -1469,1990/1/9,0.003175531,10.1939,-6.529332461,1.090193232,6.059074311,0.19967916,1.2551393223277833e-26 -1470,1990/1/10,0.005729296,9.450120097,-6.415575232,0.938604976,5.806538252,0.146007999,6.275696611638917e-27 -1471,1990/1/11,0.010365784,9.755155154,-6.37015742,0.690454002,5.906436455,0.127949478,3.1378483058194583e-27 -1472,1990/1/12,0.0,10.22741065,-5.818909089,0.884324507,6.046045537,0.063124893,1.5689241529097292e-27 -1473,1990/1/13,0.0,10.81935884,-3.951435715,1.266743941,6.15668972,0.038657825,7.844620764548646e-28 -1474,1990/1/14,0.002636126,12.11154535,-3.799790141,1.451743934,6.606429523,0.033368711,3.922310382274323e-28 -1475,1990/1/15,0.0,10.91462454,-5.59124467,0.812879137,6.269995815,0.018263649,1.9611551911371615e-28 -1476,1990/1/16,0.001037073,11.55203091,-5.392014075,1.12371821,6.481643441,0.01408416,9.805775955685807e-29 -1477,1990/1/17,0.00011149,12.10338563,-3.325570314,1.647937293,6.57181006,0.008308612,4.9028879778429037e-29 -1478,1990/1/18,0.035656171,12.21668147,-3.1801921,1.402940983,6.602182941,0.078731397,2.4514439889214518e-29 -1479,1990/1/19,0.034604208,12.73834641,-2.320544474,1.044228738,6.730225585,0.088395505,1.2257219944607259e-29 -1480,1990/1/20,0.322893525,14.09313837,0.458221448,1.398209219,6.978110093,0.781206076,6.1286099723036296e-30 -1481,1990/1/21,0.050988111,13.82224086,2.729017339,1.57685855,6.543946578,0.32972211,3.0643049861518148e-30 -1482,1990/1/22,0.087119058,12.63771051,-0.557951085,1.066156874,6.523919232,0.345321504,1.5321524930759074e-30 -1483,1990/1/23,0.113621543,11.14873904,-1.508132677,0.87769005,6.061206487,0.420984785,7.660762465379537e-31 -1484,1990/1/24,0.0,11.24094783,-2.382848344,1.022796232,6.178338197,0.139383867,3.8303812326897685e-31 -1485,1990/1/25,0.234852744,11.41445604,-1.34390394,0.835052981,6.14052327,0.702750433,1.9151906163448842e-31 -1486,1990/1/26,1.376444297,11.10998718,-0.605579018,1.120244562,5.938702016,7.305635406,9.575953081724421e-32 -1487,1990/1/27,0.696710944,11.86166144,-0.138709419,1.26221091,6.167769795,7.397750971,4.7879765408622106e-32 -1488,1990/1/28,0.082600376,13.45925089,0.108040965,1.456589217,6.757452241,2.851184646,2.3939882704311053e-32 -1489,1990/1/29,0.459286082,13.22053107,-0.081182031,1.659243778,6.684411302,5.103303372,1.1969941352155527e-32 -1490,1990/1/30,0.23474484,11.81357365,-0.651858957,1.307727434,6.206588324,3.68840537,5.984970676077763e-33 -1491,1990/1/31,0.268136068,12.51613144,-1.303374398,1.340433824,6.540251492,3.648912864,2.9924853380388816e-33 -1492,1990/2/1,0.071493292,13.14859881,-0.717969258,1.742549744,6.719823683,1.901684945,1.4962426690194408e-33 -1493,1990/2/2,0.085839518,12.30549064,-1.889727808,1.623963612,6.511783339,1.511296279,7.481213345097204e-34 -1494,1990/2/3,0.048953418,11.59329589,-2.431398391,1.363310845,6.294202613,1.016512188,3.740606672548602e-34 -1495,1990/2/4,0.057598166,11.29575072,-1.973802558,1.32001417,6.142308743,0.849104407,1.870303336274301e-34 -1496,1990/2/5,1.083341164,11.15845857,-1.572898623,1.491083896,6.049750743,8.585615865,9.351516681371505e-35 -1497,1990/2/6,1.236483202,11.11442603,-1.262926052,1.356409046,5.998108639,15.39485407,4.6757583406857525e-35 -1498,1990/2/7,0.01491627,12.18810403,-3.610254266,1.236771516,6.584318497,4.360053871,2.3378791703428763e-35 -1499,1990/2/8,0.640993846,12.38779806,-3.229868896,1.359042913,6.630140033,9.365160064,1.1689395851714381e-35 -1500,1990/2/9,0.094399004,12.50724711,-0.770357563,1.362299199,6.463160679,4.097855958,5.844697925857191e-36 -1501,1990/2/10,0.011318744,13.06120526,-2.676913248,0.980497553,6.832952961,1.970125264,2.9223489629285953e-36 -1502,1990/2/11,0.847494474,12.8276654,-2.277055659,1.045297617,6.715679275,10.0403231,1.4611744814642977e-36 -1503,1990/2/12,1.939497619,10.63842421,-1.165688619,1.168340454,5.795846832,30.09795668,7.305872407321488e-37 -1504,1990/2/13,0.020211359,11.9423179,-1.744270091,1.202436116,6.338808209,8.284018508,3.652936203660744e-37 -1505,1990/2/14,0.008048962,13.75095545,-0.949217074,1.607556348,6.939986225,3.952453166,1.826468101830372e-37 -1506,1990/2/15,0.241871642,12.54308559,-1.014283146,1.428421353,6.486801736,5.499831856,9.13234050915186e-38 -1507,1990/2/16,3.185841433,9.210943538,-2.757329425,1.023197602,5.436162429,57.86236027,4.56617025457593e-38 -1508,1990/2/17,0.05442384,10.10969659,-4.601898842,1.135045949,5.88899401,15.84424704,2.283085127287965e-38 -1509,1990/2/18,0.452461469,10.31402923,-4.376567421,0.846052664,5.943704682,15.94798066,1.1415425636439826e-38 -1510,1990/2/19,0.701034245,10.39426635,-2.406775292,1.165783321,5.819551993,20.24054003,5.707712818219913e-39 -1511,1990/2/20,0.21833686,10.19579548,-1.942683422,1.152380215,5.698913378,11.22737749,2.8538564091099564e-39 -1512,1990/2/21,3.312961065,7.334150861,-0.679425459,0.989613959,4.459637084,83.13698489,1.4269282045549782e-39 -1513,1990/2/22,1.141853835,8.505015773,-0.614869191,0.872664325,4.894352775,55.26645907,7.134641022774891e-40 -1514,1990/2/23,0.884051318,8.90308753,-2.041504995,0.768312062,5.23240749,45.02587419,3.5673205113874455e-40 -1515,1990/2/24,1.17558678,9.611278184,-2.665700896,1.006012353,5.550075479,52.88396907,1.7836602556937227e-40 -1516,1990/2/25,0.604049671,10.03004271,-1.396577215,1.131956469,5.564152458,36.66772976,8.918301278468614e-41 -1517,1990/2/26,2.112177409,9.567312393,-0.287066487,1.313670756,5.240188004,83.6703476,4.459150639234307e-41 -1518,1990/2/27,0.067141729,11.45372581,0.210789268,1.307324161,5.891656388,27.07557117,2.2295753196171534e-41 -1519,1990/2/28,6.05e-05,12.62259514,0.881232996,1.280753096,6.252011379,13.07872199,1.1147876598085767e-41 -1520,1990/3/1,0.265253859,14.48092388,2.121365995,1.571623662,6.815796783,15.32717,5.5739382990428836e-42 -1521,1990/3/2,2.054929254,13.85364695,2.941140332,1.440697902,6.424717988,64.69854677,2.7869691495214418e-42 -1522,1990/3/3,1.170372872,11.88793839,1.477959129,1.260167309,5.86135786,53.57133362,1.3934845747607209e-42 -1523,1990/3/4,0.400296088,12.00671619,-0.096399758,1.103375487,6.129002227,29.26735704,6.9674228738036045e-43 -1524,1990/3/5,0.003779989,11.19695843,-1.506323091,0.902195171,5.982616898,12.21147669,3.4837114369018022e-43 -1525,1990/3/6,0.002829131,10.83021264,-1.596663132,0.892145468,5.854346721,7.209623213,1.7418557184509011e-43 -1526,1990/3/7,2.456437446,9.36962188,-0.704385978,0.526774441,5.201466606,69.24038873,8.709278592254506e-44 -1527,1990/3/8,2.666557987,7.626654449,-1.852685746,0.563661894,4.713502945,106.1024318,4.354639296127253e-44 -1528,1990/3/9,2.272517347,9.109874462,-0.738635117,0.719513334,5.103232403,117.9640996,2.1773196480636264e-44 -1529,1990/3/10,0.165753789,11.41284101,-0.416744623,0.913214663,5.923628019,42.41760511,1.0886598240318132e-44 -1530,1990/3/11,0.021725936,12.84069826,-0.172449287,0.845464784,6.432304895,20.84682235,5.443299120159066e-45 -1531,1990/3/12,1.189997723,12.3146584,0.791457215,0.911371199,6.104397386,52.52540472,2.721649560079533e-45 -1532,1990/3/13,1.665515837,11.52067117,0.383784893,0.916166625,5.849870921,75.90510201,1.3608247800397665e-45 -1533,1990/3/14,0.707512903,11.24312389,-0.882557439,0.562890655,5.902341835,48.47886526,6.8041239001988325e-46 -1534,1990/3/15,0.132951001,11.27159206,-1.488016592,0.582170226,5.975273644,22.55698496,3.4020619500994162e-46 -1535,1990/3/16,0.764662837,12.81865217,-2.57869007,0.558910227,6.626142325,35.15259384,1.7010309750497081e-46 -1536,1990/3/17,2.691079147,11.61367974,-2.693890311,0.386774886,6.199857019,103.2604402,8.505154875248541e-47 -1537,1990/3/18,0.008902147,13.41202753,-1.186583778,0.670876863,6.723745739,29.14903438,4.2525774376242703e-47 -1538,1990/3/19,1.714481514,14.75697669,0.492989362,1.232061094,7.062483607,71.32774305,2.1262887188121351e-47 -1539,1990/3/20,1.006791644,14.31017932,1.12573483,1.239888318,6.810860143,56.55541823,1.0631443594060676e-47 -1540,1990/3/21,0.299952202,15.8287349,1.348372812,1.404000719,7.376976082,29.47347929,5.315721797030338e-48 -1541,1990/3/22,0.751016807,14.58590808,2.823560288,1.655437877,6.674068255,35.45442724,2.657860898515169e-48 -1542,1990/3/23,0.273174414,16.93321535,3.989890096,1.927539486,7.460801695,20.91841333,1.3289304492575845e-48 -1543,1990/3/24,0.051873897,17.34214483,4.36153052,1.928106079,7.570287038,10.60914252,6.644652246287922e-49 -1544,1990/3/25,0.111980165,17.55895375,4.888879271,1.876163509,7.57186651,8.322217377,3.322326123143961e-49 -1545,1990/3/26,1.519758229,15.83371769,3.38746053,1.592459842,7.083366274,37.19883831,1.6611630615719806e-49 -1546,1990/3/27,1.609641302,14.92199538,2.377894996,1.291389084,6.857892057,49.62434491,8.305815307859903e-50 -1547,1990/3/28,1.8919921,13.54801375,2.29576987,1.12430553,6.312659904,66.28468684,4.1529076539299515e-50 -1548,1990/3/29,0.314431787,14.83035664,2.948481308,1.337266536,6.726901426,28.58311932,2.0764538269649757e-50 -1549,1990/3/30,0.058401892,15.37532564,2.628577499,1.433588561,6.992667886,13.67851368,1.0382269134824879e-50 -1550,1990/3/31,0.00534151,16.25025749,2.89233249,1.546370625,7.306086996,7.753644637,5.1911345674124393e-51 -1551,1990/4/1,0.003925117,17.1460149,3.930468901,1.479401831,7.51932092,4.950295967,2.5955672837062197e-51 -1552,1990/4/2,0.17641924,16.57001583,3.618811888,1.135089955,7.322825344,6.199836669,1.2977836418531098e-51 -1553,1990/4/3,0.105169035,15.85379372,3.972780621,0.897515541,6.96409133,4.41134073,6.488918209265549e-52 -1554,1990/4/4,3.200925663,15.01423043,3.788271728,0.733823021,6.640392956,64.29423266,3.2444591046327746e-52 -1555,1990/4/5,9.072170763,12.686108,2.72320927,0.955774382,5.862047339,369.9536256,2.5152042487267328e-05 -1556,1990/4/6,2.038004651,12.38919527,1.033322782,1.165035672,6.01114121,202.2893778,1.2575922707665147e-05 -1557,1990/4/7,2.211465577,16.01660291,1.545087711,0.983098909,7.354469894,191.2791475,6.287961353832574e-06 -1558,1990/4/8,2.89410603,16.14578774,5.040177164,1.187658537,6.877852197,232.6791448,3.143980676916287e-06 -1559,1990/4/9,1.178950306,15.70706769,3.915409723,1.640213457,6.88794263,143.9062394,1.5719903384581434e-06 -1560,1990/4/10,0.282147871,14.72910644,3.301345085,1.173006311,6.581493658,71.85264829,7.859951692290717e-07 -1561,1990/4/11,0.013249936,16.33924302,2.469519273,1.258849362,7.351604547,37.2123599,3.9299758461453586e-07 -1562,1990/4/12,0.078355301,17.91897817,3.555790081,0.905546948,7.843261825,26.06713889,1.9649879230726793e-07 -1563,1990/4/13,1.052650062,17.33997232,6.061783701,1.260393205,7.180593819,54.22401876,9.824939615363396e-08 -1564,1990/4/14,0.844243848,18.19114711,6.649641734,1.691275199,7.436809463,49.01827579,4.912469807681698e-08 -1565,1990/4/15,0.529302727,19.16501493,5.656943812,1.848390869,8.038357921,35.11400373,2.456234903840849e-08 -1566,1990/4/16,0.240178423,19.95571914,5.408272991,1.889971044,8.411903922,21.11329347,1.2281174519204246e-08 -1567,1990/4/17,1.26766959,19.38582002,6.029826468,1.77327071,8.062313056,44.98224636,6.140587259602123e-09 -1568,1990/4/18,1.326515504,18.83007918,6.477775467,1.732171239,7.735380246,51.78212857,3.0702936298010614e-09 -1569,1990/4/19,0.270065183,18.03848033,6.618243464,1.784929248,7.354155336,23.80660244,1.5351468149005307e-09 -1570,1990/4/20,0.435606109,17.44279896,7.074696371,1.703443937,6.987100085,21.1898797,7.675734074502654e-10 -1571,1990/4/21,1.138918876,17.82171274,6.518163448,1.709462406,7.269890289,36.57880463,3.837867037251327e-10 -1572,1990/4/22,0.000556543,19.87009576,5.80692523,1.664672587,8.285210179,11.86311167,1.9189335186256634e-10 -1573,1990/4/23,0.106808266,19.63176667,5.555094882,1.134999669,8.218361152,8.381243056,9.594667593128317e-11 -1574,1990/4/24,0.428076493,18.82285545,5.713783523,1.132235673,7.841759584,12.15131702,4.7973337965641584e-11 -1575,1990/4/25,0.402276001,18.70667767,5.049905339,0.955500423,7.895796156,11.42875131,2.3986668982820792e-11 -1576,1990/4/26,0.866341872,18.56745816,5.08764549,1.056650398,7.82685114,18.73887249,1.1993334491410396e-11 -1577,1990/4/27,0.940460824,18.39979698,6.775605174,1.435046317,7.450695868,22.29483505,5.996667245705198e-12 -1578,1990/4/28,0.743009073,18.67963317,7.557132974,1.305666341,7.411493456,20.36860563,2.998333622852599e-12 -1579,1990/4/29,3.324306018,20.69753568,8.334114201,1.483016107,8.16289935,82.67430703,1.4991668114262995e-12 -1580,1990/4/30,0.382401285,20.31556079,8.154488868,1.497565231,8.021304465,31.65418341,7.495834057131498e-13 -1581,1990/5/1,2.611783859,19.60864129,7.208042437,1.494260848,7.886826434,83.52219793,3.747917028565749e-13 -1582,1990/5/2,3.803309201,19.82313436,7.506206682,1.602947019,7.92069076,155.3672719,1.8739585142828744e-13 -1583,1990/5/3,1.332105902,18.09244348,5.127353248,1.619828278,7.59190225,94.39266518,9.369792571414372e-14 -1584,1990/5/4,3.36823009,17.89895174,3.95952505,0.286147642,7.685972117,172.5776104,4.684896285707186e-14 -1585,1990/5/5,1.959453727,16.57666213,4.118618623,0.731062711,7.115483533,139.566315,2.342448142853593e-14 -1586,1990/5/6,1.937963266,19.55591923,6.73156001,0.719734234,7.932604605,136.1589193,1.1712240714267965e-14 -1587,1990/5/7,1.346631168,19.71195139,7.942757664,0.950082609,7.763392189,107.49434,5.8561203571339825e-15 -1588,1990/5/8,7.095317473,19.78323231,8.569484411,1.09512802,7.657946873,423.9666666,2.9280601785669912e-15 -1589,1990/5/9,12.58786033,18.36455003,9.225761321,1.250265797,6.827598795,1162.918369,0.003411103107099692 -1590,1990/5/10,1.116462983,18.14743216,7.372013733,0.987353786,7.167496876,414.8810656,0.0017045415625679646 -1591,1990/5/11,0.328112781,18.28461519,6.538234301,0.381381178,7.394772387,198.9236342,0.0008522707812839823 -1592,1990/5/12,0.0,20.78667927,8.236426146,0.250729976,8.171257743,108.1870011,0.00042613539064199115 -1593,1990/5/13,2.168707018,20.29952651,9.992883946,0.584001742,7.547009728,212.4563708,0.00021306769532099558 -1594,1990/5/14,18.24592974,16.16606512,8.259211296,1.301535135,6.019020708,1867.719741,0.06330188829768786 -1595,1990/5/15,15.88073539,16.12638443,7.258900662,1.325656919,6.261025852,2964.04816,0.19761416489358685 -1596,1990/5/16,6.103194598,16.15570461,6.571317301,0.737159332,6.433811544,1923.767638,0.09737263032200782 -1597,1990/5/17,0.053945833,16.60878424,6.499940287,0.422848167,6.647945971,672.4580312,0.04868631516100391 -1598,1990/5/18,0.047457062,18.65235952,8.867920135,0.877165173,7.028970999,373.8409567,0.024343157580501956 -1599,1990/5/19,0.077743827,19.00431063,10.88195207,1.230188039,6.641558612,244.3438016,0.012171578790250978 -1600,1990/5/20,8.835933045,20.36847328,12.08728132,1.137822744,6.966537818,1240.853427,0.048125076344735 -1601,1990/5/21,12.37779198,18.85258871,12.11146884,1.031741107,6.14528041,2216.822187,0.1748805542609973 -1602,1990/5/22,7.765934638,18.61645983,11.81040635,0.947949065,6.122624872,1968.772586,0.13524519530994156 -1603,1990/5/23,2.873599137,17.85958437,11.69388695,0.617016173,5.748236295,1123.098602,0.0668728164906861 -1604,1990/5/24,2.408036241,17.83199188,10.28977999,0.291956707,6.215600984,838.050419,0.03343640824534305 -1605,1990/5/25,4.342479943,14.48988147,9.376570808,0.269610847,4.77432916,1018.152505,0.016718204122671526 -1606,1990/5/26,3.104271783,16.96640823,10.44541564,0.55757661,5.711035391,841.7861968,0.008359102061335763 -1607,1990/5/27,5.518567943,18.28352298,11.0502719,0.89656806,6.196174523,1157.051007,0.0041795510306678815 -1608,1990/5/28,7.572135854,18.75247872,10.49144367,0.920696895,6.610376604,1592.598714,0.027227133606758096 -1609,1990/5/29,7.20193478,20.12017663,11.01531323,1.010004034,7.139871155,1707.516404,0.014963819635481514 -1610,1990/5/30,16.16479709,19.16336305,11.69035536,0.772819927,6.439089462,3721.194877,0.27110119740408734 -1611,1990/5/31,3.765038674,19.08900794,11.78109608,0.690086464,6.367144356,1840.094886,0.1319772288981309 -1612,1990/6/1,3.904613155,19.37874551,12.29139226,0.505837369,6.343864315,1463.511958,0.06598861444906545 -1613,1990/6/2,5.217224115,18.20473257,11.58922059,0.471811346,5.956351739,1554.191849,0.032994307224532726 -1614,1990/6/3,19.00925778,17.68098914,10.88454382,0.384692531,5.922143084,4771.791658,0.43572505540794326 -1615,1990/6/4,7.486611645,18.14639679,12.25940487,0.607875377,5.668183184,3207.565514,0.29169644054311644 -1616,1990/6/5,7.266491204,19.61049673,13.16993366,1.10803974,6.140325666,2912.079471,0.1958190091327746 -1617,1990/6/6,1.891149484,18.94911535,12.38922961,1.270208419,6.064669545,1470.337559,0.09672026729607787 -1618,1990/6/7,1.425984971,19.11288789,11.60280231,1.138836405,6.427068733,963.2824646,0.048360133648038935 -1619,1990/6/8,2.962134179,19.61244682,10.05476268,0.749479543,7.134106465,1008.225195,0.024180066824019467 -1620,1990/6/9,2.24132519,20.6978759,9.577052916,1.168835116,7.765236264,780.8370283,0.012090033412009734 -1621,1990/6/10,0.824994937,19.75304685,11.6343872,0.96434933,6.745331269,447.1234726,0.006045016706004867 -1622,1990/6/11,3.647875879,19.58687626,13.06673336,0.888669579,6.157828295,689.5371689,0.0030225083530024334 -1623,1990/6/12,5.186044506,19.9553482,12.685675,1.221042186,6.499589239,921.8328199,0.0015112541765012167 -1624,1990/6/13,0.376018428,21.26350161,12.86359628,1.46560156,7.137320691,346.1280013,0.0007556270882506084 -1625,1990/6/14,3.028303101,22.54819777,13.17302487,1.412565909,7.711205931,507.1151557,0.0003778135441253042 -1626,1990/6/15,11.51956215,23.23246695,13.89586188,1.253979266,7.845731136,1618.428538,0.1103418205601906 -1627,1990/6/16,9.812377905,21.68346952,13.98393274,1.148646734,6.980459161,1893.376175,0.14821875977391366 -1628,1990/6/17,4.223168192,21.23487248,14.05827892,1.306000418,6.702760301,1212.637502,0.07252601153436748 -1629,1990/6/18,3.792434689,21.61866084,14.08268865,1.382104946,6.907026657,1003.348287,0.03626300576718374 -1630,1990/6/19,11.88460308,20.86949365,13.37606189,1.152902682,6.745908673,2291.94405,0.18548482805084793 -1631,1990/6/20,9.543313672,20.81036396,12.92746992,0.582240747,6.867774916,2426.284905,0.19002016320904708 -1632,1990/6/21,8.56902614,21.08885474,13.45752876,0.462575333,6.835242817,2430.492398,0.162242849126395 -1633,1990/6/22,8.351737804,19.64201106,12.8723396,0.571740777,6.250588311,2485.665969,0.1668461069913393 -1634,1990/6/23,11.4281176,18.40823525,11.79310909,0.951851319,5.968376882,3339.981843,0.3184879027322713 -1635,1990/6/24,5.956958698,19.38630949,11.5335914,1.116574004,6.573127477,2404.222691,0.15410565775216767 -1636,1990/6/25,1.817330307,20.68015819,12.20416969,0.978332899,7.030059761,1248.36007,0.07705282887608383 -1637,1990/6/26,3.373955919,22.26107497,13.27875415,1.001284851,7.51702613,1193.117741,0.03852641443804192 -1638,1990/6/27,8.242989869,22.77763858,14.14287363,1.364525582,7.512691457,1956.13869,0.05074484247479846 -1639,1990/6/28,6.863408147,20.94297716,13.89845863,1.205406346,6.590796642,1870.709113,0.03662787186883094 -1640,1990/6/29,3.122658439,20.99739562,12.59258769,1.437381212,7.070822925,1176.186974,0.01805272087850017 -1641,1990/6/30,4.77914207,21.54490387,12.40846042,1.268006714,7.410585387,1250.458004,0.009026360439250085 -1642,1990/7/1,14.94827489,20.74856981,12.20873933,0.983327449,7.061733056,3171.505323,0.3178718470093827 -1643,1990/7/2,7.832426537,21.67717015,12.78986193,1.110782472,7.362461596,2487.940835,0.17480152223710613 -1644,1990/7/3,11.91440896,20.25596345,13.51836353,1.388558226,6.347037393,3365.851078,0.35095557306170133 -1645,1990/7/4,6.938354753,21.83622352,14.00241023,1.364616897,7.047564389,2606.149071,0.1692149492889239 -1646,1990/7/5,6.944939442,22.38509669,13.94381624,1.410552924,7.365984139,2423.696301,0.08460747464446194 -1647,1990/7/6,4.301043146,21.4213727,13.67715198,0.976340819,6.934742144,1737.682998,0.04230373732223097 -1648,1990/7/7,5.023251915,22.06136985,13.50733783,0.880609339,7.336987479,1639.042865,0.021151868661115486 -1649,1990/7/8,4.584837007,22.18850822,13.38417763,0.769453079,7.444252801,1438.442869,0.010575934330557743 -1650,1990/7/9,6.237067719,22.56166831,13.15281246,1.04349862,7.711275283,1614.128164,0.0052879671652788715 -1651,1990/7/10,4.182401586,22.76959955,14.8817254,1.654800173,7.252707987,1247.981074,0.0026439835826394358 -1652,1990/7/11,2.788519499,22.44726454,15.25280981,1.859360431,6.931653981,895.2052439,0.0013219917913197179 -1653,1990/7/12,10.57354109,21.98603812,14.63905905,1.356837369,6.902541004,2037.677543,0.14383951637289813 -1654,1990/7/13,9.609217958,21.18183197,14.3388712,0.917078164,6.560268329,2323.258927,0.1983811639279394 -1655,1990/7/14,3.013296651,21.78511713,14.90661397,0.86631117,6.68621495,1259.006427,0.09645087025444221 -1656,1990/7/15,8.813133976,21.51022976,14.88424923,1.178929801,6.536034404,2068.286226,0.14597973651100843 -1657,1990/7/16,7.264498125,20.97180516,13.90590174,1.185226157,6.608077016,2023.562665,0.10044046290664108 -1658,1990/7/17,12.3234863,19.674586,13.81058613,1.003367602,5.901668594,3193.151981,0.3424783192567774 -1659,1990/7/18,5.58972219,19.27114957,13.89401064,1.005742826,5.625934616,2175.912072,0.16455849835558795 -1660,1990/7/19,2.96464151,20.91029431,14.10778372,1.167694181,6.499242752,1393.834053,0.08227924917779397 -1661,1990/7/20,17.34641863,20.32722049,14.41563685,1.087990622,6.036009079,4491.016514,0.5937155954433039 -1662,1990/7/21,12.54446522,19.583012,13.49573959,0.522852065,5.981105467,4622.309159,0.6711739394072558 -1663,1990/7/22,3.412540212,21.8802301,13.31495035,0.744351728,7.314689979,2319.301609,0.32412942626664104 -1664,1990/7/23,10.29002422,22.47614158,14.21584692,0.715026709,7.33647003,3460.050561,0.344161671545747 -1665,1990/7/24,10.9862758,21.19069431,14.77416438,0.973323728,6.402224016,3899.805695,0.46101144921340476 -1666,1990/7/25,20.36825261,20.75139019,13.59186018,1.02695909,6.610810211,7319.768555,1.1602356724454603 -1667,1990/7/26,24.95621161,19.18037398,13.05871044,0.809113041,5.930221954,11942.30745,2.0741559859706484 -1668,1990/7/27,4.195622294,20.17262354,12.78170345,0.652482952,6.58618463,4909.922228,0.9758730120807106 -1669,1990/7/28,5.501185425,21.1743423,13.15343683,1.229379256,7.000170748,3691.259855,0.4879365060403553 -1670,1990/7/29,14.51827024,20.89834799,13.83125455,0.357646889,6.610085344,5857.219919,0.974825388033478 -1671,1990/7/30,7.02687677,20.31239735,13.55891868,0.205475589,6.38444142,4002.605048,0.5171978878199838 -1672,1990/7/31,4.635404505,19.52341673,12.98594182,0.477781935,6.159909935,2764.634194,0.25545502395232456 -1673,1990/8/1,5.48238127,20.28955531,12.21669431,0.638404397,6.846616202,2506.114049,0.12772751197616228 -1674,1990/8/2,6.479084662,21.64680266,12.06506089,0.567509243,7.593142844,2485.602306,0.06386375598808114 -1675,1990/8/3,1.276494678,23.27894808,12.61491306,0.705794396,8.264974304,1195.767112,0.03193187799404057 -1676,1990/8/4,5.309130687,23.46422879,12.23492129,0.533972224,8.460513488,1520.850702,0.015965938997020285 -1677,1990/8/5,0.053687993,22.91270291,12.36462532,0.470333758,8.153751129,598.4323079,0.007982969498510142 -1678,1990/8/6,0.281083622,23.70870596,13.03558406,1.05794361,8.374225604,372.5868216,0.003991484749255071 -1679,1990/8/7,1.387089552,22.44401821,12.99036434,0.849603658,7.741015356,371.3877298,0.0019957423746275356 -1680,1990/8/8,2.723873812,22.58170872,13.03114348,0.823736867,7.802625487,445.6339751,0.0009978711873137678 -1681,1990/8/9,5.537954169,23.6841576,13.51721779,0.926214515,8.232741102,720.944264,0.0004989355936568839 -1682,1990/8/10,10.00687033,23.62032439,13.65097549,1.262428567,8.162910972,1367.617998,0.12673820989614537 -1683,1990/8/11,6.008012223,21.92495491,13.83506479,1.10048612,7.203279612,1148.572013,0.059030776717449204 -1684,1990/8/12,1.746874805,20.07288956,13.82484987,0.855747786,6.167353506,589.9544401,0.029515388358724602 -1685,1990/8/13,5.473684901,20.71926005,13.60276718,1.008475133,6.624589137,916.1265551,0.014757694179362301 -1686,1990/8/14,7.440986258,21.60525246,13.9841662,1.374891693,6.982240522,1285.21365,0.03692194772111408 -1687,1990/8/15,3.774062792,21.83831637,13.64070153,0.971195779,7.232998654,907.1380982,0.01750969003770427 -1688,1990/8/16,5.15236901,23.79748844,14.16567496,0.919906193,8.117329716,1009.794921,0.008754845018852136 -1689,1990/8/17,2.209482185,23.19864506,14.26207422,0.547571788,7.768495404,621.2161337,0.004377422509426068 -1690,1990/8/18,4.357549021,22.13650494,13.46073184,0.242901791,7.462024649,764.6255335,0.002188711254713034 -1691,1990/8/19,1.602241928,22.18006874,12.82652887,0.514665623,7.686839041,448.4647108,0.001094355627356517 -1692,1990/8/20,1.869064801,24.16374049,13.2425518,0.93514948,8.591873666,378.5614453,0.0005471778136782585 -1693,1990/8/21,5.041608502,23.59377418,13.83228078,1.04243773,8.128488041,644.2760239,0.00027358890683912924 -1694,1990/8/22,3.842960654,23.30054358,14.60674428,1.103158725,7.724905082,584.249843,0.00013679445341956462 -1695,1990/8/23,5.494969054,23.00553485,15.03468441,1.157106505,7.413314675,754.2049112,6.839722670978231e-05 -1696,1990/8/24,11.85398563,22.53723501,14.98010274,1.107125568,7.170243166,1678.471829,0.19279499458296054 -1697,1990/8/25,7.877459104,20.61548839,13.5429546,0.778441762,6.620824907,1597.831684,0.14955934334328164 -1698,1990/8/26,5.635391872,21.30217835,13.17206317,0.647016503,7.13395153,1350.555768,0.0734811015731318 -1699,1990/8/27,2.441602745,21.90546906,12.87599261,0.405181386,7.554596787,817.3901458,0.0367405507865659 -1700,1990/8/28,2.770962907,23.11346285,13.17067237,0.297551374,8.100464478,701.9139779,0.01837027539328295 -1701,1990/8/29,9.635118692,23.05632247,12.60496733,0.199251991,8.236948206,1585.028721,0.06610444260455643 -1702,1990/8/30,5.833592065,22.05862185,12.54907554,0.179680331,7.744567717,1306.320764,0.03189363323893378 -1703,1990/8/31,1.682088604,22.97038924,12.84786753,0.859641874,8.131953208,666.1930431,0.01594681661946689 -1704,1990/9/1,20.96316479,22.39193303,13.04837004,0.60685456,7.775234653,3690.003335,0.5101861838787303 -1705,1990/9/2,5.317948436,21.22022673,13.07112139,0.617749852,7.147339283,1987.121891,0.24553064850341247 -1706,1990/9/3,10.4568285,20.99240685,12.75203996,0.390760879,7.134555087,2724.188316,0.28374436114273194 -1707,1990/9/4,2.915781787,20.2002481,12.68851837,0.402587654,6.731152921,1430.347417,0.13797210265830798 -1708,1990/9/5,4.150009337,20.73804114,13.46610583,1.237467246,6.753467151,1319.686779,0.06898605132915399 -1709,1990/9/6,3.6649881,22.22178905,14.05459792,1.132478952,7.373365363,1126.270004,0.034493025664576994 -1710,1990/9/7,8.984348478,21.8118266,14.11213076,0.494216836,7.127810957,1929.337473,0.09916204338593045 -1711,1990/9/8,10.65922608,20.75692613,13.70356001,0.4098358,6.685993497,2556.927742,0.22982365554788178 -1712,1990/9/9,1.880143106,21.82570354,13.73345465,0.60543845,7.277609071,1126.585155,0.11074115187835158 -1713,1990/9/10,2.03717194,22.11879896,13.85287511,0.869674926,7.401859073,810.6279962,0.05537057593917579 -1714,1990/9/11,5.045486186,22.74495639,13.71135273,0.819906308,7.794512321,1112.772496,0.027685287969587895 -1715,1990/9/12,4.647325966,21.17918132,13.64166028,0.72945499,6.962034435,1061.891896,0.013842643984793948 -1716,1990/9/13,13.9673523,19.89310351,13.44216062,0.268606783,6.308261943,2651.479084,0.3153250915643501 -1717,1990/9/14,8.799084171,18.77119099,12.78932877,0.16266779,5.92142961,2425.00092,0.28762709297632805 -1718,1990/9/15,3.694990477,19.04026611,12.15413552,0.171817585,6.32209826,1478.561533,0.1405916038482078 -1719,1990/9/16,6.020941633,16.56621458,10.81868219,0.087678587,5.4494345,1687.757648,0.0974059180034537 -1720,1990/9/17,1.346173255,15.18767258,7.92340616,0.046732272,5.713897515,837.6269674,0.04805995880855532 -1721,1990/9/18,0.0,16.94298929,6.819135242,0.539101947,6.824054144,388.2791754,0.02402997940427766 -1722,1990/9/19,0.0,20.03920511,7.218600904,0.654999338,8.136140789,236.0179768,0.01201498970213883 -1723,1990/9/20,1.264559573,20.96457065,8.586081347,0.704630872,8.290939064,293.5557841,0.006007494851069415 -1724,1990/9/21,5.800716655,19.95122796,10.1253631,1.08245151,7.450654879,755.8187093,0.0030037474255347075 -1725,1990/9/22,2.298390613,20.50568227,11.0163715,0.721682159,7.48737253,473.5713069,0.0015018737127673537 -1726,1990/9/23,11.3710793,19.45617475,10.40917067,0.46578438,7.134444719,1527.490683,0.15131683512211738 -1727,1990/9/24,5.693933045,18.92048391,10.01545792,0.3001844,6.981777072,1192.413211,0.07298293431048103 -1728,1990/9/25,5.905382204,17.90366949,10.16249461,0.596976839,6.425547648,1210.632501,0.036491467155240515 -1729,1990/9/26,7.265689316,17.33950788,10.71147027,0.524460523,5.947681409,1479.615902,0.06789756635205675 -1730,1990/9/27,6.021456675,17.24526817,10.64534208,0.58763428,5.923549463,1421.829038,0.03682139587953654 -1731,1990/9/28,3.976214112,16.72258556,10.0191937,0.491507117,5.865202262,1105.471578,0.018336649596216666 -1732,1990/9/29,6.336503336,15.93161383,9.255634948,0.437504189,5.710584574,1421.369994,0.03238609523390971 -1733,1990/9/30,3.425398513,16.59792164,9.685837368,0.366190753,5.918973904,1021.887174,0.015762428743758675 -1734,1990/10/1,6.347398216,15.90861093,9.506384997,0.389025983,5.619819636,1404.581514,0.03392164172120843 -1735,1990/10/2,2.998585996,16.5499363,9.375984344,0.536114231,6.002236163,943.8414788,0.016494820434550108 -1736,1990/10/3,1.119731043,17.3599661,8.316560004,0.485885029,6.715704889,527.5159422,0.008247410217275054 -1737,1990/10/4,0.380042868,17.75721925,8.930316682,0.318232158,6.748274001,295.9408211,0.004123705108637527 -1738,1990/10/5,2.074234957,18.34591515,9.78619276,0.327603228,6.803487538,400.8019398,0.0020618525543187635 -1739,1990/10/6,4.292135782,17.59207037,9.549195752,0.387324463,6.49618735,640.2454719,0.0010309262771593818 -1740,1990/10/7,19.71254684,18.27085267,10.1654561,0.870666481,6.659922375,3163.444536,0.3688271488794696 -1741,1990/10/8,6.511077348,17.36993434,10.54388744,0.763872421,6.065472842,2008.967044,0.19728368383487935 -1742,1990/10/9,3.023148942,17.3961478,10.67408872,0.842155435,6.037474095,1202.772271,0.09827559897142453 -1743,1990/10/10,1.200241267,17.00813816,10.27992696,0.713256365,5.96954627,683.8613318,0.049137799485712265 -1744,1990/10/11,0.753848075,16.53967896,8.114808152,0.678265898,6.403974702,441.0406537,0.024568899742856132 -1745,1990/10/12,0.194463283,16.68772587,6.05738469,0.483164507,6.969659561,254.740361,0.012284449871428066 -1746,1990/10/13,0.322934378,16.97407347,5.5098438,0.495066856,7.209684584,184.2403665,0.006142224935714033 -1747,1990/10/14,3.306744655,17.35437538,7.099544236,0.689431899,7.05419436,433.4090559,0.0030711124678570166 -1748,1990/10/15,2.447651333,18.05141664,8.022927693,0.776039606,7.168319348,381.2920514,0.0015355562339285083 -1749,1990/10/16,1.019621517,16.56296849,6.54638842,0.741438294,6.823617112,225.2103907,0.0007677781169642541 -1750,1990/10/17,0.004911255,16.56168851,4.122568797,0.655420507,7.294257826,96.29413363,0.00038388905848212707 -1751,1990/10/18,0.0,16.6193678,4.806598911,0.732089218,7.206074492,56.85458759,0.00019194452924106353 -1752,1990/10/19,0.0,17.49535402,4.629599768,0.959992293,7.616955318,36.55752988,9.597226462053177e-05 -1753,1990/10/20,0.019987714,17.52953521,5.022847224,0.73354193,7.569859025,24.77607814,4.7986132310265884e-05 -1754,1990/10/21,11.24342226,16.92766261,6.259405129,0.78696245,7.071727297,749.1518051,0.0923433066875931 -1755,1990/10/22,4.732390644,16.29173925,5.557402402,0.918051572,6.936091041,589.5888373,0.04515014341280624 -1756,1990/10/23,0.093082734,17.08205426,4.314745633,0.733237867,7.509122755,188.6542057,0.02257507170640312 -1757,1990/10/24,0.0240449,16.4675839,3.096273728,0.603332622,7.441744607,97.88260916,0.01128753585320156 -1758,1990/10/25,0.742632336,14.49358855,4.028913478,0.769734878,6.462738579,106.8015328,0.00564376792660078 -1759,1990/10/26,0.867072133,13.54304839,4.429998809,0.865875418,5.973038148,100.1470218,0.00282188396330039 -1760,1990/10/27,11.09927629,12.52876133,1.814617443,0.772504187,6.041063517,867.5383376,0.10363947727403389 -1761,1990/10/28,2.261762977,11.38076537,1.578365282,0.467920153,5.621237128,426.6383093,0.050786698520178614 -1762,1990/10/29,0.057226049,12.56709848,1.835699834,0.460166817,6.059734687,156.8508033,0.025393349260089307 -1763,1990/10/30,0.042888688,12.8179177,1.789760428,0.529831416,6.171451491,89.62951246,0.012696674630044653 -1764,1990/10/31,0.047067485,12.95930888,1.704029223,0.801928872,6.244934681,58.85109055,0.006348337315022327 -1765,1990/11/1,0.001424099,14.04734542,2.155690286,0.90772559,6.619201308,36.87438716,0.0031741686575111634 -1766,1990/11/2,0.232801921,14.5219822,2.8327693,0.95369139,6.712056403,35.75646913,0.0015870843287555817 -1767,1990/11/3,3.000837528,14.37582895,3.19168091,1.081654122,6.595269349,171.8025338,0.0007935421643777908 -1768,1990/11/4,3.961553887,14.28769634,3.398518216,1.1806096,6.525619954,276.2175493,0.0003967710821888954 -1769,1990/11/5,4.498708538,14.17186663,4.416973493,0.936655582,6.284241307,375.413528,0.0001983855410944477 -1770,1990/11/6,0.685273395,15.59722755,6.226003993,1.136970623,6.530367437,156.3162535,9.919277054722385e-05 -1771,1990/11/7,0.076601341,15.95009129,5.439589759,1.189503925,6.867165799,71.3648827,4.959638527361193e-05 -1772,1990/11/8,0.689541992,12.82761023,3.161536755,0.914108883,5.964421188,78.19654383,2.4798192636805964e-05 -1773,1990/11/9,15.68109779,9.28418238,-2.89121933,0.223184939,5.451498712,1294.709489,0.13857016224844235 -1774,1990/11/10,0.015557966,7.387307184,-2.628056359,0.328060639,4.754276907,325.4349346,0.0683467132769901 -1775,1990/11/11,0.003059642,12.19142242,-0.344583723,0.439782423,6.256083606,147.1612843,0.03417335663849505 -1776,1990/11/12,0.091197535,13.6358756,0.954991235,0.351202083,6.659169724,97.79031811,0.017086678319247525 -1777,1990/11/13,0.387127054,14.39474401,1.246806385,0.532657101,6.925862858,87.54842487,0.008543339159623763 -1778,1990/11/14,0.250710051,13.29823502,0.132569514,0.433003704,6.634567288,61.02603822,0.004271669579811881 -1779,1990/11/15,0.000897428,13.36272727,-1.074196376,0.491650108,6.788713736,31.95447573,0.0021358347899059407 -1780,1990/11/16,0.0,14.84413032,0.566690476,0.559585936,7.194484089,19.87454617,0.0010679173949529703 -1781,1990/11/17,0.006376457,14.94816342,1.409247544,0.780054401,7.139078037,13.13101688,0.0005339586974764852 -1782,1990/11/18,0.0,14.97248356,1.657319448,0.949455368,7.120028977,8.433772617,0.0002669793487382426 -1783,1990/11/19,0.0,15.11648995,1.024658617,0.753725015,7.259290648,5.476161946,0.0001334896743691213 -1784,1990/11/20,0.726427495,15.01744216,1.656847248,0.481029013,7.14424812,24.588762,6.674483718456065e-05 -1785,1990/11/21,0.34212045,15.43292178,3.851708939,0.822369198,6.986523019,16.63286201,3.337241859228032e-05 -1786,1990/11/22,0.121028403,14.47737191,4.319282379,0.957142703,6.487629655,8.919628182,1.668620929614016e-05 -1787,1990/11/23,0.120029263,14.03260509,4.055410741,0.97206923,6.348345543,6.686104301,8.34310464807008e-06 -1788,1990/11/24,0.004090443,14.31525598,3.375616819,0.84187193,6.600867797,3.151393156,4.17155232403504e-06 -1789,1990/11/25,0.023345729,13.56491866,2.051433564,0.610407198,6.510629464,2.27911413,2.08577616201752e-06 -1790,1990/11/26,0.239803351,11.58491992,0.23016263,0.792676967,5.987934847,5.151531593,1.04288808100876e-06 -1791,1990/11/27,0.242440096,10.45992962,-0.312313757,0.807409641,5.629246604,5.437035253,5.2144404050438e-07 -1792,1990/11/28,0.757310915,11.31469083,1.11374117,1.059062568,5.753086469,13.53476576,2.6072202025219e-07 -1793,1990/11/29,0.043240737,11.81819049,-0.333034537,0.95652126,6.15780602,4.459628984,1.30361010126095e-07 -1794,1990/11/30,1.584811048,9.604247643,-1.970476632,0.375180343,5.520220556,28.12597323,6.51805050630475e-08 -1795,1990/12/1,2.15504029,3.842941829,-2.657382647,0.51711751,3.520992504,53.45326178,3.259025253152375e-08 -1796,1990/12/2,0.918481975,3.92309706,-3.369651352,0.61242023,3.666518915,37.84892055,1.6295126265761876e-08 -1797,1990/12/3,0.030646299,6.037848486,-4.233611143,0.540219646,4.503291087,13.42641852,8.147563132880938e-09 -1798,1990/12/4,0.001153133,6.045883686,-5.829658399,0.411742203,4.637994795,7.07319706,4.073781566440469e-09 -1799,1990/12/5,0.0,6.547826924,-6.447927966,0.365640522,4.837467745,4.447962602,2.0368907832202345e-09 -1800,1990/12/6,0.027017031,7.66894794,-4.984153464,0.426301895,5.120327722,3.415141535,1.0184453916101173e-09 -1801,1990/12/7,0.037921461,9.045572703,-5.722769219,0.581604707,5.625504525,2.687305007,5.092226958050586e-10 -1802,1990/12/8,0.009753305,8.082978662,-5.852388756,0.549245678,5.312614207,1.601119272,2.546113479025293e-10 -1803,1990/12/9,0.0,8.837528012,-5.143007905,0.500313468,5.528536493,0.939999236,1.2730567395126466e-10 -1804,1990/12/10,0.019980946,10.38676761,-3.561010242,0.61029704,5.963545767,0.869481713,6.365283697563233e-11 -1805,1990/12/11,0.012402452,10.97936658,-3.313836809,0.814259062,6.157879862,0.605103604,3.1826418487816165e-11 -1806,1990/12/12,0.09439478,10.48766382,-4.017872361,0.807983691,6.033361837,1.357555183,1.5913209243908082e-11 -1807,1990/12/13,0.014845342,10.21931054,-4.62754571,0.81715449,5.977825335,0.59752788,7.956604621954041e-12 -1808,1990/12/14,0.005698579,10.95705281,-4.51740795,0.759741296,6.229762938,0.325702289,3.9783023109770206e-12 -1809,1990/12/15,3.605619214,11.35333332,-2.626785763,0.967787408,6.244661212,52.34188487,1.9891511554885103e-12 -1810,1990/12/16,0.163573914,11.33742305,-2.198899604,0.918420625,6.203003056,15.7527711,9.945755777442551e-13 -1811,1990/12/17,0.043486145,11.41382847,-2.226762105,0.838324281,6.234695928,7.075091526,4.972877888721276e-13 -1812,1990/12/18,0.915250249,10.91243068,-1.558459404,0.937700306,5.984591712,19.52814131,2.486438944360638e-13 -1813,1990/12/19,0.78159385,10.96743298,-2.086666342,1.108048097,6.059414819,20.41394765,1.243219472180319e-13 -1814,1990/12/20,0.081894137,11.03925549,-4.033739275,0.995019585,6.237539939,8.116255467,6.216097360901595e-14 -1815,1990/12/21,0.020535702,11.90129908,-3.518072084,0.673538969,6.513680387,4.232470333,3.1080486804507973e-14 -1816,1990/12/22,0.529843696,11.48511708,-1.781074475,0.903387115,6.22400458,10.45718186,1.5540243402253987e-14 -1817,1990/12/23,0.247049615,9.949897526,-2.683095006,0.918944263,5.747557148,7.140549299,7.770121701126993e-15 -1818,1990/12/24,0.130298534,10.58170839,-3.043138958,1.223601305,6.007383946,4.55572847,3.885060850563497e-15 -1819,1990/12/25,0.012910957,11.1660094,-2.336752027,0.912577555,6.159910047,2.170538561,1.9425304252817483e-15 -1820,1990/12/26,0.221767915,11.37236675,-2.204881834,1.138300925,6.224410517,3.834954788,9.712652126408742e-16 -1821,1990/12/27,0.004903159,11.73420283,-2.548233204,1.063993044,6.387101618,1.466536508,4.856326063204371e-16 -1822,1990/12/28,0.081429271,11.72295892,-2.575265305,1.270548397,6.385558328,1.595325392,2.4281630316021854e-16 -1823,1990/12/29,0.109579717,12.85181996,-2.281010368,1.297408296,6.778547024,1.68715287,1.2140815158010927e-16 -1824,1990/12/30,0.038300312,12.99463775,-2.474569153,1.480108931,6.846211037,0.965441271,6.070407579005464e-17 -1825,1990/12/31,0.016147254,12.62821381,-2.488271071,1.390797849,6.712124455,0.564193832,3.035203789502732e-17 -1826,1991/1/1,0.086313268,12.29055335,-0.959328122,1.404970634,6.447849864,0.873716767,1.517601894751366e-17 -1827,1991/1/2,0.325265854,11.61444775,-0.560727624,1.062536224,6.144327487,2.482629781,7.58800947375683e-18 -1828,1991/1/3,3.521175897,9.16773038,-0.414150632,1.253785291,5.182070828,45.2870353,3.794004736878415e-18 -1829,1991/1/4,0.290322667,8.864162468,-5.134026075,1.152037389,5.553986935,16.21633534,1.8970023684392074e-18 -1830,1991/1/5,0.099557776,7.963745061,-6.626096032,1.063999856,5.325097933,7.821674282,9.485011842196037e-19 -1831,1991/1/6,0.002496933,8.378480891,-7.587879885,0.861271426,5.487951181,4.006662,4.742505921098018e-19 -1832,1991/1/7,0.000997614,8.780497249,-7.322236728,1.070199618,5.612201403,2.48938291,2.371252960549009e-19 -1833,1991/1/8,0.015583489,9.29028777,-6.464193597,0.92220998,5.755757297,1.799275064,1.1856264802745046e-19 -1834,1991/1/9,0.016500541,10.77822167,-4.471471808,1.454033543,6.175325926,1.276691666,5.928132401372523e-20 -1835,1991/1/10,0.0,9.545661264,-5.493777687,1.240577739,5.802185052,0.74430494,2.9640662006862615e-20 -1836,1991/1/11,0.00299429,8.961166628,-5.458713802,1.133354552,5.60220223,0.50156219,1.4820331003431307e-20 -1837,1991/1/12,0.02878526,9.079251029,-5.225660315,1.094759124,5.629379499,0.553811496,7.410165501715654e-21 -1838,1991/1/13,0.004800705,9.51728329,-3.724847416,0.849630815,5.681777667,0.297139403,3.705082750857827e-21 -1839,1991/1/14,0.0600871,8.73199547,-2.955444264,0.583514309,5.335150488,0.583301543,1.8525413754289134e-21 -1840,1991/1/15,0.851074108,8.493996642,-4.002576825,0.849387968,5.34470164,6.926147886,9.262706877144567e-22 -1841,1991/1/16,0.009705067,8.170110234,-5.007426615,1.040426857,5.305751185,1.81174979,4.631353438572284e-22 -1842,1991/1/17,0.001196835,8.681963748,-5.279971538,1.182838332,5.494275299,0.810589125,2.315676719286142e-22 -1843,1991/1/18,0.006928674,9.41513352,-5.119966933,1.282211544,5.73337771,0.541436046,1.157838359643071e-22 -1844,1991/1/19,0.061451623,9.013853765,-5.045044097,1.500012433,5.591597231,0.728617685,5.789191798215354e-23 -1845,1991/1/20,0.009953375,8.732716095,-6.167891062,1.194194621,5.551292537,0.367500608,2.894595899107677e-23 -1846,1991/1/21,0.072647135,9.346982462,-5.503499772,0.975844091,5.726530858,0.598044473,1.4472979495538386e-23 -1847,1991/1/22,0.041336235,10.22795881,-6.254668423,1.456180354,6.051657154,0.433902949,7.236489747769193e-24 -1848,1991/1/23,0.001075851,9.478385333,-6.435547051,1.00486323,5.805307714,0.178386463,3.6182448738845966e-24 -1849,1991/1/24,0.007296151,9.783584691,-6.41498291,1.134781193,5.90506721,0.132629875,1.8091224369422983e-24 -1850,1991/1/25,0.015897815,10.15212522,-7.165549434,1.146328677,6.044393401,0.13404689,9.045612184711491e-25 -1851,1991/1/26,0.021054389,10.38039534,-5.699675346,0.719885985,6.078671069,0.13488407,4.522806092355746e-25 -1852,1991/1/27,0.12981904,12.12600913,-4.747948043,1.026032629,6.64223572,0.500069022,2.261403046177873e-25 -1853,1991/1/28,0.031814142,12.89663357,-3.127977778,0.978644849,6.831185037,0.243443786,1.1307015230889364e-25 -1854,1991/1/29,0.012043286,12.21411986,-3.485829761,1.251458025,6.604801364,0.128284515,5.653507615444682e-26 -1855,1991/1/30,0.305040382,10.64968096,-2.84735282,1.126064423,5.994335248,1.038565223,2.826753807722341e-26 -1856,1991/1/31,1.945382237,10.44326755,-3.085306171,1.025059636,5.938183876,13.41594875,1.4133769038611705e-26 -1857,1991/2/1,2.200070205,10.25426218,-2.779106425,1.124948051,5.842655775,31.94832741,7.066884519305853e-27 -1858,1991/2/2,0.591117138,10.30046866,-1.449912533,1.124774916,5.723022494,17.9782814,3.533442259652926e-27 -1859,1991/2/3,0.414970772,10.2475521,-3.295410992,0.963542223,5.879816791,13.02303913,1.766721129826463e-27 -1860,1991/2/4,1.573445172,9.59513242,-3.170171543,1.306487368,5.635958764,33.63765424,8.833605649132316e-28 -1861,1991/2/5,0.013401579,10.70754953,-4.859033693,1.551774555,6.136293088,10.03952092,4.416802824566158e-28 -1862,1991/2/6,0.076441598,11.66412856,-5.316107432,1.190115585,6.483889035,6.250136364,2.208401412283079e-28 -1863,1991/2/7,0.005105429,12.52772986,-4.662330826,1.357565443,6.757447074,3.481730351,1.1042007061415395e-28 -1864,1991/2/8,0.060259216,12.42915596,-4.186183024,1.499281195,6.698834312,2.978202194,5.521003530707697e-29 -1865,1991/2/9,0.089080051,11.81517919,-4.960280614,1.561344564,6.515539658,2.68541686,2.7605017653538487e-29 -1866,1991/2/10,0.02401631,13.20324369,-4.490393349,1.080924616,6.981693259,1.523059365,1.3802508826769243e-29 -1867,1991/2/11,0.106451649,13.73864853,-3.400263195,1.653313507,7.120713236,1.883622574,6.901254413384622e-30 -1868,1991/2/12,0.291236802,13.78254583,-0.929974526,1.813546259,6.955793396,3.515451676,3.450627206692311e-30 -1869,1991/2/13,0.016719944,14.06970193,-1.005933618,1.71339502,7.068977502,1.253995025,1.7253136033461554e-30 -1870,1991/2/14,0.000102543,13.96303886,-2.992385934,1.648783502,7.171385966,0.612825026,8.626568016730777e-31 -1871,1991/2/15,0.0,13.95401916,-3.4993465,1.835511683,7.192333375,0.379816483,4.313284008365389e-31 -1872,1991/2/16,0.0,14.19626898,-3.037287445,1.560700608,7.25313657,0.245879449,2.1566420041826943e-31 -1873,1991/2/17,0.0,15.54978056,-2.733993461,1.72420962,7.732268633,0.159971788,1.0783210020913471e-31 -1874,1991/2/18,0.0,16.66765548,-0.390354976,2.06020567,7.999062828,0.104129363,5.391605010456736e-32 -1875,1991/2/19,0.004559015,15.91761033,-1.594171746,1.621615966,7.796051311,0.085617983,2.695802505228368e-32 -1876,1991/2/20,0.97695976,16.12707769,-1.275170229,1.240288245,7.850363555,5.035508962,1.347901252614184e-32 -1877,1991/2/21,0.0093258,15.1131474,-0.606239569,1.531776489,7.406728936,1.285230731,6.73950626307092e-33 -1878,1991/2/22,2.186594341,12.64470395,-0.367335576,0.687956508,6.435950208,20.28321073,3.36975313153546e-33 -1879,1991/2/23,0.560036875,10.14963409,-0.145737051,0.833430608,5.450402111,12.05096327,1.68487656576773e-33 -1880,1991/2/24,0.028895622,12.68018107,0.040563604,1.185193009,6.39586509,4.332313026,8.42438282883865e-34 -1881,1991/2/25,0.092104812,14.691434,0.828731159,1.662169718,7.082806377,3.261014188,4.212191414419325e-34 -1882,1991/2/26,0.05527422,16.29177698,1.400851177,1.800022186,7.649005988,2.203650296,2.1060957072096624e-34 -1883,1991/2/27,0.208020835,17.26500309,2.767739888,2.033085737,7.874732488,3.046409738,1.0530478536048312e-34 -1884,1991/2/28,0.14381591,15.33079912,3.332409093,1.783634444,6.984126897,2.387343063,5.265239268024156e-35 -1885,1991/3/1,1.311608267,14.78744706,2.260415143,1.625813376,6.920388,14.02068322,2.632619634012078e-35 -1886,1991/3/2,0.20633405,14.60525168,-0.474284611,1.606608604,7.168439522,6.000963782,1.316309817006039e-35 -1887,1991/3/3,0.029417277,14.11838728,-1.505070678,1.50099981,7.070256595,2.588144611,6.581549085030195e-36 -1888,1991/3/4,0.046723509,15.60257503,-0.395862921,1.661021315,7.535518511,1.81481862,3.2907745425150975e-36 -1889,1991/3/5,0.169813107,15.20363277,0.100889747,1.871765646,7.331774574,2.381256969,1.6453872712575487e-36 -1890,1991/3/6,0.84815528,15.08896137,1.844039172,1.818668698,7.081923821,8.556727574,8.226936356287744e-37 -1891,1991/3/7,0.225234135,14.38821788,0.238720127,1.671539826,6.994700189,4.533591907,4.113468178143872e-37 -1892,1991/3/8,0.087972688,15.6772421,0.649566922,1.68863047,7.448435844,2.457998168,2.056734089071936e-37 -1893,1991/3/9,0.093098961,16.86266994,0.999794954,1.738000828,7.874650965,1.889651139,1.028367044535968e-37 -1894,1991/3/10,0.121761217,17.00092409,0.900334795,1.709532993,7.93484348,1.765362685,5.14183522267984e-38 -1895,1991/3/11,0.012488919,16.84271572,0.922274878,1.544046021,7.865890255,0.821482621,2.57091761133992e-38 -1896,1991/3/12,0.045880852,16.9834302,1.109852175,1.205348322,7.898235881,0.717194821,1.28545880566996e-38 -1897,1991/3/13,0.141091702,17.78905133,1.584190732,1.386352237,8.165899703,1.099448498,6.4272940283498e-39 -1898,1991/3/14,0.360151582,18.0695969,3.465452465,1.446599096,8.052422934,2.343073147,3.2136470141749e-39 -1899,1991/3/15,0.143081653,18.41836746,3.481806396,1.181841451,8.190961431,1.467229136,1.60682350708745e-39 -1900,1991/3/16,0.486948423,14.97643605,2.503974514,0.985851559,6.905640864,3.338109562,8.03411753543725e-40 -1901,1991/3/17,0.317229727,15.60599749,2.31356551,1.12064471,7.183902245,3.000076314,4.017058767718625e-40 -1902,1991/3/18,0.274864385,18.24033426,3.163783256,1.452526208,8.144299352,2.780813793,2.0085293838593124e-40 -1903,1991/3/19,0.100286115,18.76898795,4.110217321,1.924393006,8.233728641,1.580357921,1.0042646919296562e-40 -1904,1991/3/20,0.028533837,18.74150545,4.196988584,1.573581594,8.205146539,0.829587393,5.021323459648281e-41 -1905,1991/3/21,0.022348059,18.65877946,2.897291883,1.568371215,8.33497017,0.543877235,2.5106617298241405e-41 -1906,1991/3/22,0.158153663,19.35402708,3.440359194,1.634522244,8.551581326,1.007549093,1.2553308649120703e-41 -1907,1991/3/23,0.211447177,19.19038475,5.312040677,1.765424781,8.214807171,1.296155416,6.276654324560351e-42 -1908,1991/3/24,0.754293752,19.35200369,5.797241141,1.850051822,8.201042959,4.532135154,3.1383271622801757e-42 -1909,1991/3/25,1.068684568,17.48804672,4.070921039,1.991252139,7.672580863,9.434416273,1.5691635811400878e-42 -1910,1991/3/26,0.720825218,17.74037085,3.378463584,1.476484452,7.872366524,9.458322881,7.845817905700439e-43 -1911,1991/3/27,0.188650071,17.41291123,2.356574258,1.69465398,7.864049954,4.719410969,3.9229089528502196e-43 -1912,1991/3/28,0.054551647,18.24094557,3.023770584,1.191592087,8.114650402,2.413299107,1.9614544764251098e-43 -1913,1991/3/29,2.531129582,17.44271149,3.570046459,1.242346886,7.708994138,31.90259654,9.807272382125549e-44 -1914,1991/3/30,2.148072206,16.11936039,3.160082173,0.863088385,7.218498728,47.28750051,4.903636191062774e-44 -1915,1991/3/31,5.997967956,13.93790849,3.475807484,0.507603781,6.261634291,194.2794782,2.451818095531387e-44 -1916,1991/4/1,12.72519861,9.711544704,1.728479589,0.339073066,4.850489175,825.918966,0.00012706871351903976 -1917,1991/4/2,6.080300573,10.74214323,2.528892815,0.823414939,5.108406482,759.7386418,0.007732352686613156 -1918,1991/4/3,0.786459084,12.49899119,3.100597242,1.14987552,5.721540487,302.5747239,0.0038359205824962184 -1919,1991/4/4,0.821116338,16.18710774,4.208639589,1.276388,7.060230366,206.4363357,0.0019179602912481092 -1920,1991/4/5,0.204266627,17.80162498,5.063915472,1.282278037,7.597183062,114.6482755,0.0009589801456240546 -1921,1991/4/6,1.982364378,18.56871117,5.207160245,1.353422082,7.897497439,202.0612465,0.0004794900728120273 -1922,1991/4/7,1.159152595,19.74729126,6.692729861,1.598276251,8.151709002,148.8515154,0.00023974503640601365 -1923,1991/4/8,0.53501663,19.55110024,6.495699636,1.635880859,8.095547907,89.89684555,0.00011987251820300683 -1924,1991/4/9,0.06667588,19.66639671,6.462260615,1.849402229,8.147568583,44.79170901,5.993625910150341e-05 -1925,1991/4/10,0.226638989,20.22352844,6.317572505,2.007686097,8.412242821,35.6551634,2.9968129550751706e-05 -1926,1991/4/11,0.26462368,19.02365454,5.422020384,1.796566756,8.034459412,28.78613502,1.4984064775375853e-05 -1927,1991/4/12,0.024775829,19.43400336,4.691476725,1.394518629,8.315200821,14.95651242,7.4920323876879266e-06 -1928,1991/4/13,0.583877597,19.69132471,4.833470285,1.454445581,8.398609803,25.67592601,3.7460161938439633e-06 -1929,1991/4/14,0.230798454,20.65292653,6.067272409,1.745761219,8.620194958,15.69278144,1.8730080969219816e-06 -1930,1991/4/15,0.195958324,20.65855868,7.422039938,1.894780739,8.386290409,11.3385346,9.365040484609908e-07 -1931,1991/4/16,0.617069861,20.54953324,7.338426822,1.766107313,8.348116376,17.96925805,4.682520242304954e-07 -1932,1991/4/17,0.276667324,21.60346004,7.112013695,1.803779291,8.852209417,11.48989524,2.341260121152477e-07 -1933,1991/4/18,0.001761436,21.85987459,7.531728692,1.638947561,8.889690315,4.665699504,1.1706300605762385e-07 -1934,1991/4/19,4.976844761,20.14933639,7.078288874,1.442306058,8.203431752,117.0883098,5.8531503028811926e-08 -1935,1991/4/20,5.019305958,17.65581546,5.280581889,1.38797118,7.432743327,213.0254985,2.9265751514405963e-08 -1936,1991/4/21,2.017035351,16.22304347,4.532964809,0.864989037,6.951100057,145.2482026,1.4632875757202982e-08 -1937,1991/4/22,2.571701954,16.72443167,5.194196933,0.914833705,7.041932567,167.4611196,7.316437878601491e-09 -1938,1991/4/23,2.240169662,16.75444265,5.214161617,0.745276696,7.047245507,164.1256546,3.6582189393007454e-09 -1939,1991/4/24,0.785383084,18.09406311,6.736210468,0.927823991,7.334847243,92.97306438,1.8291094696503727e-09 -1940,1991/4/25,1.051431212,17.61159344,6.752497475,0.889718005,7.112808083,85.87718037,9.145547348251863e-10 -1941,1991/4/26,1.623095857,19.06645354,7.744884258,0.975712216,7.555029938,104.9071141,4.572773674125932e-10 -1942,1991/4/27,0.393831331,18.40697919,6.933639741,1.183366052,7.422315197,52.85810992,2.286386837062966e-10 -1943,1991/4/28,2.419814221,20.30444996,8.365130521,1.092532558,7.980920786,122.1024111,1.143193418531483e-10 -1944,1991/4/29,2.32492403,19.79046473,9.581704278,1.098515563,7.456649567,137.8394233,5.715967092657415e-11 -1945,1991/4/30,5.136183115,18.97909755,8.267580117,1.444838516,7.384342565,303.5021597,2.8579835463287073e-11 -1946,1991/5/1,3.623409138,18.62275642,7.695047347,1.213003694,7.344468447,299.6618675,1.4289917731643537e-11 -1947,1991/5/2,0.898010472,19.74834494,9.140932021,1.299507742,7.532704371,146.2624104,7.144958865821768e-12 -1948,1991/5/3,2.207333819,20.09995177,9.947902506,1.687212827,7.497849357,185.7576272,3.572479432910884e-12 -1949,1991/5/4,1.814685502,20.28393524,8.845698681,1.797550769,7.843410182,167.1534821,1.786239716455442e-12 -1950,1991/5/5,5.418217378,20.65360436,9.30043033,1.824422986,7.909801433,390.9759038,8.93119858227721e-13 -1951,1991/5/6,5.341051586,18.61787318,9.941213384,1.269579114,6.764405501,494.5322605,4.465599291138605e-13 -1952,1991/5/7,5.404414285,18.25769416,8.619170557,0.80634014,6.939206197,592.5747055,2.2327996455693026e-13 -1953,1991/5/8,8.815342531,17.52676589,7.380166906,0.676302954,6.891969446,1053.93871,0.00282615505341036 -1954,1991/5/9,9.698883334,17.13742262,7.634667606,0.98386661,6.65172305,1488.267973,0.01173203554655289 -1955,1991/5/10,2.830295822,18.50204788,9.187909777,1.069211509,6.900446198,802.8229323,0.00584853858932713 -1956,1991/5/11,0.712300744,20.66786855,9.024123269,1.111934071,7.955689675,391.8677319,0.002924269294663565 -1957,1991/5/12,0.871584171,20.3483966,9.405897335,1.086648842,7.716266758,285.3519552,0.0014621346473317825 -1958,1991/5/13,0.812586198,20.73156226,8.919390452,1.015886762,8.000785774,215.6379565,0.0007310673236658912 -1959,1991/5/14,2.887698566,19.8547955,8.287069902,1.069815341,7.731051596,342.9963975,0.0003655336618329456 -1960,1991/5/15,4.523784076,20.43380058,8.335310037,0.739019508,7.980768556,501.5086854,0.0001827668309164728 -1961,1991/5/16,4.879271052,19.67058835,8.890186864,0.65542401,7.50591126,590.3484045,9.13834154582364e-05 -1962,1991/5/17,4.348230837,19.79740201,8.027122734,1.150806089,7.749696506,590.7020842,4.56917077291182e-05 -1963,1991/5/18,2.103614527,20.38258916,8.782761049,1.249938174,7.852778703,385.5502604,2.28458538645591e-05 -1964,1991/5/19,2.94853501,21.09956968,9.36611362,1.559504884,8.053184178,404.5824334,1.142292693227955e-05 -1965,1991/5/20,1.160009374,22.1247419,10.04315788,1.367516429,8.378990248,240.4158346,5.711463466139775e-06 -1966,1991/5/21,3.885126273,23.34517269,10.63274085,1.941218239,8.821076978,403.0931096,2.8557317330698877e-06 -1967,1991/5/22,4.775621387,21.32181777,11.83341206,2.028010241,7.527861996,515.3691927,1.4278658665349438e-06 -1968,1991/5/23,3.007822221,20.37823196,11.48595425,1.966011365,7.14801975,411.3588364,7.139329332674719e-07 -1969,1991/5/24,3.853342185,20.59727528,9.859397453,1.604601847,7.688149905,469.1286884,3.5696646663373596e-07 -1970,1991/5/25,0.074871726,23.00542071,10.6322959,1.6740537,8.647123708,164.0838076,1.7848323331686798e-07 -1971,1991/5/26,0.427215993,23.29917329,11.65211714,1.617082015,8.545726594,115.0992139,8.924161665843399e-08 -1972,1991/5/27,0.831992772,23.13095519,11.99644476,1.706008839,8.373544694,109.809957,4.4620808329216995e-08 -1973,1991/5/28,1.323146404,21.9344772,12.12292279,1.341079625,7.738839886,119.995766,2.2310404164608498e-08 -1974,1991/5/29,7.232538502,21.37161581,11.8700559,1.141656745,7.523945972,490.7828035,1.1155202082304249e-08 -1975,1991/5/30,2.680865624,21.2132889,12.66906546,1.629050222,7.198935492,321.2607645,5.577601041152124e-09 -1976,1991/5/31,0.685565747,22.26899419,13.14602912,2.059485821,7.600460871,154.6403755,2.788800520576062e-09 -1977,1991/6/1,1.92256055,21.51126836,13.09377344,1.469037557,7.215214762,189.3022669,1.394400260288031e-09 -1978,1991/6/2,3.869073881,19.11353648,12.16447965,0.901462923,6.243201149,319.5065177,6.972001301440155e-10 -1979,1991/6/3,10.44205049,18.70465599,10.61875252,0.772273914,6.535845315,979.6071522,0.007315213740607559 -1980,1991/6/4,2.89290695,18.50207911,9.07468942,0.935023269,6.865436984,546.8132741,0.0036507572112903343 -1981,1991/6/5,2.972805227,20.20111806,9.538321482,0.664284178,7.549333717,478.7581857,0.0018253786056451672 -1982,1991/6/6,4.363820197,19.73512497,11.09372304,0.828371847,6.907690299,594.446167,0.0009126893028225836 -1983,1991/6/7,7.110381634,21.26214672,11.80249512,1.249630413,7.468698662,948.5526925,0.0004563446514112918 -1984,1991/6/8,3.172271072,22.5975969,12.95197658,1.370018291,7.812779851,632.6849057,0.0002281723257056459 -1985,1991/6/9,0.936511115,21.92044646,12.60730202,1.407959315,7.564916106,323.0806776,0.00011408616285282295 -1986,1991/6/10,5.173201744,22.0012669,13.11577194,1.164580362,7.449594822,650.9902126,5.7043081426411474e-05 -1987,1991/6/11,9.252775748,21.98016664,13.74260011,1.440477338,7.232709856,1239.67064,0.008160153090072645 -1988,1991/6/12,9.764825615,21.77914952,14.40560673,1.738635515,6.885782005,1658.705348,0.021422224537061253 -1989,1991/6/13,3.87679143,20.41601783,14.17020204,1.442492676,6.195022145,1037.400867,0.010658782732846215 -1990,1991/6/14,2.059741051,21.71938514,14.33221775,1.41185872,6.87667911,656.7035971,0.005329391366423107 -1991,1991/6/15,1.578363596,21.34102654,13.32983322,1.202415538,7.021973583,472.8354158,0.0026646956832115536 -1992,1991/6/16,10.5351657,20.04573668,13.0770402,0.793283091,6.403792296,1581.922016,0.03276418642153739 -1993,1991/6/17,1.661508882,18.32217847,13.15140563,0.840715566,5.382939197,682.5772223,0.016262525166452206 -1994,1991/6/18,2.287816903,18.28766285,12.73289091,1.141004605,5.540705838,575.0019053,0.008131262583226103 -1995,1991/6/19,5.605223898,20.73867127,13.39014821,1.560764359,6.669198541,966.9360641,0.0040656312916130515 -1996,1991/6/20,6.909293998,22.87936627,14.13875104,1.48858233,7.573888808,1267.041403,0.0020328156458065258 -1997,1991/6/21,15.00652274,22.99918925,14.53540787,1.205254632,7.505052787,2855.935574,0.07236179240704506 -1998,1991/6/22,12.05759897,20.38002274,13.02559435,0.822060608,6.600204379,3160.074933,0.12790956580221882 -1999,1991/6/23,4.403801045,21.76967928,13.85468101,0.918184226,7.066532764,1842.047446,0.06317817542017712 -2000,1991/6/24,20.02321511,20.67093443,13.37859515,1.027940112,6.632268175,5317.985862,0.3133060530331722 -2001,1991/6/25,13.85925208,19.50974655,13.67823808,0.920785036,5.857006152,5348.221277,0.42473619359622317 -2002,1991/6/26,7.09187053,20.80338776,14.30439183,1.033809173,6.355201032,3675.725649,0.23823213568143842 -2003,1991/6/27,5.385179762,21.73401099,14.97585429,1.105226788,6.627063183,2760.546179,0.11848656586491513 -2004,1991/6/28,4.160864069,21.71128884,15.07809696,1.214386666,6.572343086,2080.97593,0.059243282932457564 -2005,1991/6/29,4.603647544,22.1761567,14.75106903,1.220115843,6.966500896,1864.20115,0.029621641466228782 -2006,1991/6/30,9.542199776,22.78418327,15.00390876,1.144883318,7.215540122,2779.880578,0.10043221870694038 -2007,1991/7/1,8.762902072,21.89890923,14.92674737,0.934977678,6.740763337,2827.601836,0.1274205790445059 -2008,1991/7/2,12.37553529,22.82423183,14.66266321,0.902409316,7.359537621,3839.193214,0.2669606069303722 -2009,1991/7/3,10.82451018,21.83985393,15.00241089,1.210085594,6.676648994,3864.408634,0.31778354635180417 -2010,1991/7/4,7.943288767,21.45223305,14.26498887,1.472853065,6.738991701,3234.951535,0.21388554569528143 -2011,1991/7/5,1.635084765,20.11824586,14.26138402,1.336505024,5.96935282,1516.57196,0.10548396706973057 -2012,1991/7/6,4.496808691,21.21244035,13.85501129,1.144535028,6.756372363,1642.107781,0.05274198353486528 -2013,1991/7/7,1.900626593,20.49539301,14.12157126,1.187922067,6.248636606,1014.720154,0.02637099176743264 -2014,1991/7/8,2.659196158,20.1054839,14.2956081,0.910116434,5.947683177,911.8093282,0.01318549588371632 -2015,1991/7/9,2.152014476,19.32674985,14.11304909,0.710146904,5.557156703,722.156235,0.00659274794185816 -2016,1991/7/10,4.970123558,20.5132343,13.38172879,0.574198766,6.54257426,1060.246403,0.00329637397092908 -2017,1991/7/11,2.944334684,21.35191686,14.23307758,1.075339179,6.696171492,791.9035645,0.00164818698546454 -2018,1991/7/12,4.813244328,22.85592162,14.17474913,0.897904678,7.545286014,978.0513437,0.00082409349273227 -2019,1991/7/13,4.307104367,22.01843924,13.51290801,0.614414033,7.315016202,921.8710852,0.000412046746366135 -2020,1991/7/14,10.47703366,22.64021896,13.7902394,0.946696034,7.556697749,1865.920926,0.09401792664659904 -2021,1991/7/15,12.52652533,21.7477047,14.27236899,1.324179149,6.906216243,2716.813975,0.24142274306687278 -2022,1991/7/16,11.80603167,20.05105438,14.46847597,1.039309493,5.843807436,3170.538132,0.3563500795818292 -2023,1991/7/17,11.20195577,19.22118808,13.59562975,0.96935622,5.724514829,3531.750269,0.42309038596748594 -2024,1991/7/18,5.351177937,21.44659812,14.02416205,0.912114201,6.83147977,2369.987164,0.20585330568311758 -2025,1991/7/19,4.598883802,22.62177092,14.13871693,0.729181119,7.436864241,1878.767833,0.10292665284155879 -2026,1991/7/20,2.433027435,24.10829276,14.75818358,1.044444805,8.036132795,1205.178981,0.051463326420779394 -2027,1991/7/21,5.008638166,23.65922022,15.08111845,1.020230638,7.685423998,1394.808559,0.025731663210389697 -2028,1991/7/22,9.084848999,22.73885879,14.70734469,1.120214047,7.308324405,2097.952194,0.08764858145693842 -2029,1991/7/23,9.342871298,21.85580067,14.58852831,0.435919901,6.857798591,2402.762885,0.1509102980658233 -2030,1991/7/24,3.247615097,22.3127957,14.69078507,0.753486708,7.079029976,1361.590563,0.07307956566864533 -2031,1991/7/25,9.38122983,23.64260331,15.3166622,1.026813835,7.599498084,2250.186378,0.11439736589283217 -2032,1991/7/26,10.96058526,24.18258828,14.94237945,1.090007612,8.025329487,2872.233553,0.18854427743927277 -2033,1991/7/27,7.982276365,23.07538755,15.25051925,1.044000035,7.307771428,2496.679617,0.12363462465089087 -2034,1991/7/28,4.29146285,22.60813064,15.70254713,1.118291012,6.865221828,1674.792739,0.06104020772125321 -2035,1991/7/29,6.022836931,22.13571049,15.67208897,1.379780176,6.598248253,1768.246542,0.030520103860626605 -2036,1991/7/30,5.18983027,21.49978909,15.21686311,1.384813782,6.410219467,1582.456396,0.015260051930313302 -2037,1991/7/31,11.55950043,21.01497612,14.97020973,0.972069385,6.225517694,2816.105912,0.24439024334121787 -2038,1991/8/1,21.68884603,20.10982386,14.07474549,0.782112802,6.065633143,6307.570286,0.8865104668829306 -2039,1991/8/2,13.2858302,19.74913479,14.22892247,1.220769977,5.785514052,5769.698273,0.8996721532978488 -2040,1991/8/3,5.836254504,20.85805973,14.4409312,1.219841431,6.35802743,3552.177398,0.4347715582808346 -2041,1991/8/4,6.05898263,21.40006161,14.61248619,0.694575738,6.606665843,3008.591338,0.2173857791404173 -2042,1991/8/5,9.541567109,21.68055339,15.14171017,0.85333761,6.559730728,3666.213571,0.31411259901188016 -2043,1991/8/6,6.258869935,22.72043278,15.17183535,0.939619483,7.154337872,2849.129402,0.14998058312928408 -2044,1991/8/7,6.493240742,22.15086857,15.03030504,0.99236977,6.883442799,2592.008425,0.07499029156464204 -2045,1991/8/8,4.750492145,22.39946014,14.60091303,1.065751251,7.188090673,2008.27588,0.03749514578232102 -2046,1991/8/9,7.833556038,21.8278716,14.40870532,1.54006662,6.939575889,2432.539837,0.0793167087096783 -2047,1991/8/10,5.752978785,20.93150608,14.7507838,1.359040829,6.287187371,2025.595961,0.03760650777977496 -2048,1991/8/11,14.36738607,20.79615162,14.86253199,1.271396842,6.160296946,3959.792409,0.5768438899291388 -2049,1991/8/12,17.25400548,20.51846357,14.5990252,1.061899378,6.108342161,5893.684517,1.1067557173922857 -2050,1991/8/13,4.207821079,19.86101647,14.41240241,0.626362836,5.792512031,2897.57812,0.5219270202954175 -2051,1991/8/14,16.45767019,19.25484279,13.21497223,0.408945859,5.943459478,5959.103274,1.134412292070548 -2052,1991/8/15,12.54846815,18.55820362,12.63180722,0.163149885,5.778832056,5858.234382,1.1531439026695778 -2053,1991/8/16,1.346055485,21.24157337,12.89241556,0.535765939,7.16414886,2301.287472,0.5479769848796736 -2054,1991/8/17,8.119998014,22.63992944,13.54848321,0.587175547,7.699071558,3183.66679,0.31297497822297693 -2055,1991/8/18,4.285038037,23.03354848,13.65753011,0.196523245,7.876501813,2169.194595,0.15468201210706967 -2056,1991/8/19,2.145759761,22.7493543,13.31063314,0.094517551,7.836963204,1322.412151,0.07734100605353483 -2057,1991/8/20,2.525375739,22.11967178,13.82965215,0.459196865,7.336280843,1058.22386,0.03867050302676742 -2058,1991/8/21,0.525517115,22.82681339,13.66472169,1.046421342,7.774194275,564.0810716,0.01933525151338371 -2059,1991/8/22,3.825201795,24.11633484,13.88550674,1.290936719,8.390773968,816.8995259,0.009667625756691854 -2060,1991/8/23,4.242949799,23.60109807,14.48254022,1.053390977,7.933762082,848.539447,0.004833812878345927 -2061,1991/8/24,6.034362487,22.74783378,14.56951597,0.583469232,7.438714136,1063.782166,0.0024169064391729635 -2062,1991/8/25,12.46486412,20.61485571,14.30998225,0.48475976,6.319869241,2162.267732,0.41754972297978327 -2063,1991/8/26,15.91418215,19.52860785,13.17040769,0.479329905,6.149006345,3637.128633,0.9084408722113466 -2064,1991/8/27,7.391197391,17.81578637,12.02371397,0.212609179,5.625727453,2620.512132,0.5719906843565908 -2065,1991/8/28,2.256001879,20.02306883,10.78121985,0.226939402,7.214367941,1358.057232,0.2801344077480597 -2066,1991/8/29,0.735644525,20.45451469,10.70839872,0.457564562,7.452078503,729.250714,0.14006720387402985 -2067,1991/8/30,1.372971103,22.00445832,11.25892207,0.953405779,8.074858811,596.4044484,0.07003360193701492 -2068,1991/8/31,3.769563574,22.05812819,12.47664537,1.01700775,7.769463466,801.0352871,0.03501680096850746 -2069,1991/9/1,3.01774384,22.01544935,13.33771307,0.834676819,7.483890442,681.6600332,0.01750840048425373 -2070,1991/9/2,7.679559878,20.93323878,12.33911907,1.041203717,7.232886759,1247.78711,0.037431822806470415 -2071,1991/9/3,10.65560959,21.04329404,12.23382687,0.895009869,7.327093597,1957.804891,0.2327970310358154 -2072,1991/9/4,12.04893285,20.42365856,11.89895113,0.36982107,7.111385821,2665.666674,0.44276997601871315 -2073,1991/9/5,4.298573895,21.15008014,12.44877867,0.282349063,7.323380585,1564.185752,0.21013455069875592 -2074,1991/9/6,2.475515139,21.8324244,12.74321966,0.785018259,7.594383196,992.3485784,0.10506727534937796 -2075,1991/9/7,13.36553262,21.78920461,12.28400812,0.61648485,7.714614671,2734.049432,0.42174275493172564 -2076,1991/9/8,16.12849293,20.9212075,13.79772427,0.844917827,6.743930055,4198.584389,0.8582891056602586 -2077,1991/9/9,8.253371084,20.34846797,12.50353478,0.601961619,6.89293351,3132.717295,0.5126103411391454 -2078,1991/9/10,8.84015366,19.8846177,13.09930461,0.343919643,6.42630304,3122.239114,0.4441240136047631 -2079,1991/9/11,3.74041504,19.88187068,11.50823462,0.35972528,6.976765406,1908.810881,0.21442621627999559 -2080,1991/9/12,3.776076317,19.62479251,10.33219927,0.253280529,7.196281899,1542.516631,0.10721310813999779 -2081,1991/9/13,0.831555409,20.3690684,10.81532312,0.59161133,7.437354432,788.6806269,0.053606554069998896 -2082,1991/9/14,2.227975508,20.94702861,11.41160012,0.781530704,7.565001765,748.0713654,0.026803277034999448 -2083,1991/9/15,8.356851665,20.41867272,11.99708474,0.376979318,7.119345745,1587.021742,0.09708579303601939 -2084,1991/9/16,5.441471981,20.71965622,11.61546375,0.418823052,7.397574771,1344.523894,0.045713399864983795 -2085,1991/9/17,6.077559281,20.84523415,11.88611693,0.614250364,7.385316671,1400.114291,0.022856699932491897 -2086,1991/9/18,5.134027779,20.63348851,12.83147834,0.694608353,6.96981345,1261.231384,0.011428349966245949 -2087,1991/9/19,10.2236086,19.93258588,12.20727605,0.642547742,6.806239865,2115.479005,0.22305672984191383 -2088,1991/9/20,1.012420171,20.84095825,12.50949964,0.879651131,7.198612716,811.3860295,0.1046169383504574 -2089,1991/9/21,2.146734642,20.24140076,12.36824186,0.85745129,6.926578066,676.3827048,0.0523084691752287 -2090,1991/9/22,2.033652666,20.72250867,12.29905233,0.597095501,7.21194869,562.225086,0.02615423458761435 -2091,1991/9/23,5.85065332,19.41543748,12.11469713,0.544090679,6.571995992,977.5759083,0.013077117293807176 -2092,1991/9/24,7.689056727,18.44333996,11.7292808,0.528814755,6.17852002,1370.200924,0.09169704587412518 -2093,1991/9/25,4.35537214,18.00880428,11.19004117,0.583488509,6.13787577,1045.891311,0.043448062255365016 -2094,1991/9/26,5.615644201,19.11187737,11.03076169,0.586271995,6.783173555,1184.851431,0.021724031127682508 -2095,1991/9/27,6.35732789,19.42205953,9.976274964,0.790390351,7.25477969,1349.400473,0.010862015563841254 -2096,1991/9/28,4.391687132,20.47356383,9.852549847,0.498612587,7.807229781,1093.170327,0.005431007781920627 -2097,1991/9/29,1.727709041,20.40360826,10.14246455,0.914288318,7.703933983,625.9874036,0.0027155038909603135 -2098,1991/9/30,0.091761179,21.13121668,10.27900534,1.313713565,8.030921947,285.586232,0.0013577519454801568 -2099,1991/10/1,0.826977717,21.99152694,10.61382286,1.564697278,8.374638136,248.4311507,0.0006788759727400784 -2100,1991/10/2,0.765963061,21.8827952,10.53705242,1.106974034,8.345028943,191.8566538,0.0003394379863700392 -2101,1991/10/3,2.281745756,22.43142477,10.54153981,1.24588476,8.617339487,270.2160598,0.0001697189931850196 -2102,1991/10/4,3.903275026,20.49426203,10.83769645,0.68069272,7.584592829,396.9311279,8.48594965925098e-05 -2103,1991/10/5,0.817932921,19.52154602,10.00714283,0.657023756,7.330043999,187.1051762,4.24297482962549e-05 -2104,1991/10/6,0.907793438,18.56629194,9.64925051,0.747336514,6.957231764,141.4331635,2.121487414812745e-05 -2105,1991/10/7,0.270396554,18.94342722,9.618367237,0.863525288,7.157445699,79.2149403,1.0607437074063725e-05 -2106,1991/10/8,0.0,19.03216369,9.960324118,0.990131011,7.11117678,41.57053156,5.303718537031862e-06 -2107,1991/10/9,0.224900848,20.02244499,10.01447642,1.130444239,7.594318791,36.25541774,2.651859268515931e-06 -2108,1991/10/10,0.952713313,19.90141573,10.26300335,1.234770263,7.471658648,58.86809068,1.3259296342579656e-06 -2109,1991/10/11,2.32848509,19.96921894,10.77479701,1.377519195,7.366183955,118.8948784,6.629648171289828e-07 -2110,1991/10/12,7.290639129,19.76436257,10.00228998,1.633027603,7.482741769,428.0216893,3.314824085644914e-07 -2111,1991/10/13,1.839867138,19.36057583,10.24359656,1.58656631,7.217533342,226.3512388,1.657412042822457e-07 -2112,1991/10/14,2.944715699,19.43243343,9.771225134,1.341966168,7.388513213,263.8696215,8.287060214112285e-08 -2113,1991/10/15,1.256785069,20.4646651,9.805990793,1.466413249,7.892937021,165.7338347,4.1435301070561425e-08 -2114,1991/10/16,0.911940659,21.16796444,10.06190044,1.279641943,8.178963344,117.4404172,2.0717650535280712e-08 -2115,1991/10/17,18.81993977,20.12916949,9.429852199,1.23377293,7.831625918,1680.566054,0.23342470197209259 -2116,1991/10/18,0.545917078,18.6838093,8.400973587,0.815658636,7.390414756,480.4237929,0.11423303125653057 -2117,1991/10/19,2.774101981,18.46673972,7.307346923,0.946676143,7.542329696,476.3747896,0.05711651562826529 -2118,1991/10/20,1.565213728,17.32111373,7.466900849,0.849862147,6.977676703,331.9031543,0.028558257814132643 -2119,1991/10/21,3.20353353,15.89847172,7.604449844,0.619390134,6.268858968,424.4855902,0.014279128907066322 -2120,1991/10/22,1.832011956,14.76397947,6.387940861,0.478815453,6.052621661,310.8289078,0.007139564453533161 -2121,1991/10/23,0.274178671,13.70711263,5.000239072,0.308715199,5.908521177,144.2860127,0.0035697822267665804 -2122,1991/10/24,0.610434871,13.69732279,4.672728355,0.403662502,5.981358424,119.9733515,0.0017848911133832902 -2123,1991/10/25,0.83974953,14.55460683,4.443268846,0.524674038,6.408492916,114.3415716,0.0008924455566916451 -2124,1991/10/26,0.772055404,15.26106133,4.652438441,0.34297201,6.677981108,96.67859397,0.00044622277834582255 -2125,1991/10/27,0.433480185,14.21022567,5.046756871,0.335676123,6.136469963,64.66606723,0.00022311138917291128 -2126,1991/10/28,0.29071749,12.66074813,3.341056631,0.59994119,5.824524154,44.28084813,0.00011155569458645564 -2127,1991/10/29,0.048822719,13.50994093,3.359929061,0.483886672,6.184070038,23.53321835,5.577784729322782e-05 -2128,1991/10/30,0.396906477,13.72851306,3.528474652,0.6787612,6.248402812,30.12746593,2.788892364661391e-05 -2129,1991/10/31,13.63980119,12.7947928,4.358881935,1.06126551,5.674363273,885.7458197,0.1299189184883746 -2130,1991/11/1,17.12697824,11.7473645,3.562988784,0.955888368,5.396698,2232.212824,0.3456184060471065 -2131,1991/11/2,7.169206435,12.03126621,2.974170978,0.405506703,5.646114441,1687.336659,0.22302379325244695 -2132,1991/11/3,2.327299169,9.349878518,2.478090933,0.49450344,4.611626835,898.0863344,0.11056885019873794 -2133,1991/11/4,1.473733542,8.855954734,2.365660319,0.566889194,4.426780071,588.4782722,0.05528442509936897 -2134,1991/11/5,0.932058333,11.04098162,4.434546876,0.757128054,4.874478775,399.0765011,0.027642212549684485 -2135,1991/11/6,0.133005556,12.35185893,0.338619758,0.786915236,6.217895398,211.0669625,0.013821106274842242 -2136,1991/11/7,0.0,11.30696081,-0.336336193,0.61536466,5.906356234,123.069289,0.006910553137421121 -2137,1991/11/8,0.146836239,12.19593691,1.235773294,0.656075306,6.036295217,92.78696372,0.0034552765687105606 -2138,1991/11/9,0.057268165,12.96427462,1.69689783,0.744686747,6.276850263,59.36854256,0.0017276382843552803 -2139,1991/11/10,0.088178783,12.33506964,2.106785955,0.718815459,5.95720857,42.51753524,0.0008638191421776401 -2140,1991/11/11,0.27144381,12.1131787,2.556761926,0.846748112,5.787241123,42.82540112,0.0004319095710888201 -2141,1991/11/12,0.090231284,13.22750764,2.568363189,0.938477536,6.251871159,25.4991096,0.00021595478554441004 -2142,1991/11/13,0.058260982,12.73879605,0.741781394,0.709141523,6.33678638,16.52975859,0.00010797739277220502 -2143,1991/11/14,0.11690012,11.05496236,0.079027729,0.723124511,5.773986888,14.68535554,5.398869638610251e-05 -2144,1991/11/15,0.224366761,11.16399512,0.101050251,0.872640672,5.81571436,16.76857909,2.6994348193051255e-05 -2145,1991/11/16,0.017775532,10.31662569,-1.145233667,0.789564165,5.657705147,7.340350153,1.3497174096525627e-05 -2146,1991/11/17,0.0,10.49154199,-0.728339758,0.699051653,5.674146263,3.977796357,6.748587048262814e-06 -2147,1991/11/18,0.007700822,10.64191859,-0.362476478,0.786986686,5.685796695,2.756093588,3.374293524131407e-06 -2148,1991/11/19,0.238899862,12.10085427,0.576533384,0.82607116,6.125278429,8.555394424,1.6871467620657034e-06 -2149,1991/11/20,0.260246145,10.7780531,0.608496498,0.770121997,5.602476662,9.629838586,8.435733810328517e-07 -2150,1991/11/21,0.649032209,9.919118557,-1.223615276,0.770128609,5.530811344,19.61478266,4.2178669051642585e-07 -2151,1991/11/22,0.02386739,9.549061376,-2.763377516,0.563571647,5.565434579,6.181570861,2.1089334525821293e-07 -2152,1991/11/23,0.011069107,9.970381564,-2.146346898,0.565453018,5.658506877,3.157748365,1.0544667262910646e-07 -2153,1991/11/24,0.034262614,9.650067073,-1.926244747,0.471178521,5.520247849,2.533896929,5.272333631455323e-08 -2154,1991/11/25,0.509542361,10.1379199,-0.678366434,0.582319308,5.551839539,10.91558448,2.6361668157276616e-08 -2155,1991/11/26,0.373348786,9.910810711,-0.921460741,0.65999065,5.499998057,10.0293864,1.3180834078638308e-08 -2156,1991/11/27,0.114849228,9.933791502,-0.765798192,0.709193464,5.490095768,5.220568524,6.590417039319154e-09 -2157,1991/11/28,0.134160946,10.81573477,-1.326564168,1.055782252,5.892572007,4.362788494,3.295208519659577e-09 -2158,1991/11/29,0.054122737,9.987865095,-2.249394307,0.897916825,5.687843327,2.619070416,1.6476042598297885e-09 -2159,1991/11/30,0.006434444,9.550949618,-2.082846188,0.942199088,5.513081981,1.34032019,8.238021299148942e-10 -2160,1991/12/1,0.006241107,10.28965093,-1.916414282,0.808643798,5.767618102,0.862793122,4.119010649574471e-10 -2161,1991/12/2,0.14041472,9.896994384,-4.211281584,0.501620316,5.823651514,2.106014513,2.0595053247872356e-10 -2162,1991/12/3,0.604349181,8.278667398,-5.380223319,0.64660316,5.34495468,7.629363607,1.0297526623936178e-10 -2163,1991/12/4,1.042164738,7.229782934,-5.535779532,0.759655951,5.007058966,15.80440067,5.148763311968089e-11 -2164,1991/12/5,0.287161867,8.928629446,-3.838044207,0.540299859,5.464911764,8.376270791,2.5743816559840445e-11 -2165,1991/12/6,0.34541035,9.056755496,-3.579861012,0.647139426,5.490171988,7.871909714,1.2871908279920223e-11 -2166,1991/12/7,0.029485341,8.280929792,-3.99990179,0.350777932,5.256198134,3.267719623,6.435954139960111e-12 -2167,1991/12/8,0.092467788,7.745893658,-3.510334344,0.475520707,5.027745824,2.834368352,3.2179770699800556e-12 -2168,1991/12/9,0.059209696,8.46397267,-3.474355972,0.631536105,5.277193233,2.017051933,1.6089885349900278e-12 -2169,1991/12/10,0.437941475,9.153909876,-2.839424709,0.624179466,5.463318915,5.912540749,8.044942674950139e-13 -2170,1991/12/11,0.369670924,8.994355157,-2.51439733,0.918185703,5.374199942,6.058856225,4.0224713374750696e-13 -2171,1991/12/12,0.645738763,9.428271474,-3.500898561,0.550260172,5.622661009,9.831771918,2.0112356687375348e-13 -2172,1991/12/13,0.005268076,9.042155523,-3.464435479,0.712295443,5.484630071,2.984338387,1.0056178343687674e-13 -2173,1991/12/14,0.036006704,9.392286692,-4.671619613,0.465817566,5.69620238,1.892169308,5.028089171843837e-14 -2174,1991/12/15,0.89699294,9.739359538,-3.911835195,0.500211208,5.767184584,11.41232864,2.5140445859219185e-14 -2175,1991/12/16,0.1302774,8.917517497,-4.889602862,0.592743661,5.549102846,4.719584417,1.2570222929609592e-14 -2176,1991/12/17,0.044839899,8.489038927,-5.611235955,0.483493576,5.445905869,2.398481033,6.285111464804796e-15 -2177,1991/12/18,0.0,9.36869647,-4.250066462,0.659728555,5.664736653,1.233041929,3.142555732402398e-15 -2178,1991/12/19,0.010651172,9.570706739,-2.905883694,0.642611469,5.628750247,0.866507421,1.571277866201199e-15 -2179,1991/12/20,0.056707046,10.3589191,-2.397165785,0.777965404,5.866941873,1.001320819,7.856389331005995e-16 -2180,1991/12/21,0.033304122,9.929074434,-1.466000152,0.983803472,5.609697003,0.70808914,3.9281946655029976e-16 -2181,1991/12/22,0.057670955,9.353598264,-1.692439214,0.951427877,5.423269938,0.743497007,1.9640973327514988e-16 -2182,1991/12/23,0.0882711,8.615413114,-1.572384725,1.20713939,5.1344897,0.895031123,9.820486663757494e-17 -2183,1991/12/24,0.143972365,9.342370956,-2.135736262,1.04637643,5.471419995,1.258906662,4.910243331878747e-17 -2184,1991/12/25,0.507845214,9.697682283,-1.408182915,1.259350633,5.518624503,3.983532129,2.4551216659393735e-17 -2185,1991/12/26,5.782336074,7.565114321,1.081786394,1.089319094,4.251199612,102.0936913,0.003697750800228741 -2186,1991/12/27,1.059301446,7.734613373,-3.374409849,1.098894789,5.026044499,54.16093485,0.0018444102981068295 -2187,1991/12/28,0.705555438,7.011264238,-4.527560178,0.760770949,4.882105192,38.00316021,0.0009222051490534147 -2188,1991/12/29,0.206264106,4.975362183,-4.409715108,1.034148917,4.181424011,20.29354029,0.00046110257452670737 -2189,1991/12/30,0.068071124,4.320641984,-5.181584288,1.132236954,4.041634456,11.4888401,0.00023055128726335368 -2190,1991/12/31,0.05453953,6.092603316,-5.222286362,1.046072745,4.630241854,7.699517733,0.00011527564363167684 -2191,1992/1/1,0.084625216,7.11029701,-5.277460496,0.946427885,4.972744121,6.2534005,5.763782181583842e-05 -2192,1992/1/2,0.099950659,5.526645139,-6.747871569,0.789630261,4.546142481,5.295346008,2.881891090791921e-05 -2193,1992/1/3,0.111474096,5.834612095,-6.338720149,0.656654476,4.621791,4.666955295,1.4409455453959605e-05 -2194,1992/1/4,0.03672755,6.306429872,-8.140110384,1.209291154,4.844055756,2.698894583,7.204727726979803e-06 -2195,1992/1/5,0.146721107,7.237082068,-7.046954426,0.781085277,5.105306152,3.854501559,3.6023638634899013e-06 -2196,1992/1/6,0.153856261,8.04965072,-5.589235294,1.134788565,5.304946594,3.902606181,1.8011819317449507e-06 -2197,1992/1/7,0.057843753,6.590213126,-4.347262845,0.64947211,4.723261078,2.260463558,9.005909658724753e-07 -2198,1992/1/8,1.25238469,6.493136107,-3.870769839,0.823205649,4.643585815,20.98448348,4.5029548293623766e-07 -2199,1992/1/9,0.025365324,7.969313401,-5.352438982,0.925624949,5.263579549,5.821766005,2.2514774146811883e-07 -2200,1992/1/10,0.009307673,7.505741271,-5.278258591,0.831896648,5.103319463,2.734353738,1.1257387073405942e-07 -2201,1992/1/11,0.024335907,8.247003529,-4.743889104,1.173566132,5.317466925,1.959886252,5.628693536702971e-08 -2202,1992/1/12,0.65066755,8.597889642,-4.29931719,0.891743432,5.405509021,10.17007057,2.8143467683514854e-08 -2203,1992/1/13,0.0,8.436715015,-4.44237986,0.535997137,5.359941403,2.888100228,1.4071733841757427e-08 -2204,1992/1/14,0.074580489,6.051124018,-3.586509731,0.552455379,4.456966148,2.351063604,7.0358669208787135e-09 -2205,1992/1/15,0.092234068,6.592099192,-3.461893437,0.721968832,4.631222448,2.202560203,3.5179334604393568e-09 -2206,1992/1/16,0.170267041,6.563525261,-3.577662008,0.720623652,4.633279992,2.866696046,1.7589667302196784e-09 -2207,1992/1/17,0.091071047,7.101519195,-3.701367135,1.016987735,4.832668646,2.004122444,8.794833651098392e-10 -2208,1992/1/18,0.044302856,6.598932468,-5.807741409,1.033868614,4.831758343,1.246710794,4.397416825549196e-10 -2209,1992/1/19,0.16178907,7.168472233,-5.049526175,0.701611858,4.96897531,2.137048886,2.198708412774598e-10 -2210,1992/1/20,0.956006621,6.641960271,-3.951418218,0.690337513,4.696103012,11.0613376,1.099354206387299e-10 -2211,1992/1/21,0.769944133,7.418414874,-4.796907325,0.679984243,5.032761487,12.77276484,5.496771031936495e-11 -2212,1992/1/22,0.919001155,6.321214114,-5.43073863,0.810192013,4.711871913,17.15025652,2.7483855159682475e-11 -2213,1992/1/23,0.513225511,5.985896489,-7.200397488,0.91297694,4.702233391,13.23181249,1.3741927579841237e-11 -2214,1992/1/24,0.001314579,6.92236182,-7.631862301,0.808230466,5.011565741,4.571040604,6.870963789920619e-12 -2215,1992/1/25,0.075242223,8.324311138,-5.942312813,0.725399792,5.400203317,3.563390113,3.4354818949603093e-12 -2216,1992/1/26,0.086781078,10.72216668,-3.506180805,0.89649624,6.077859016,2.983570721,1.7177409474801547e-12 -2217,1992/1/27,0.319352918,10.71887967,-3.278517325,1.04654498,6.058408492,5.394065388,8.588704737400773e-13 -2218,1992/1/28,0.017357471,12.36051642,-2.55437273,1.281976352,6.595853772,2.019610761,4.2943523687003867e-13 -2219,1992/1/29,0.03087227,12.29389624,-2.677400698,1.387398365,6.578945129,1.346191218,2.1471761843501933e-13 -2220,1992/1/30,0.012045525,12.76962499,-2.952231447,0.941421092,6.769910928,0.8297428,1.0735880921750967e-13 -2221,1992/1/31,0.6093392,12.31570417,-2.93903499,1.164258009,6.601971646,6.160682018,5.3679404608754833e-14 -2222,1992/2/1,0.51616519,10.8573968,-1.721644922,1.517127632,5.961199063,6.899223171,2.6839702304377417e-14 -2223,1992/2/2,0.233775555,10.19475478,-2.305211289,1.455007677,5.775127037,4.46714617,1.3419851152188708e-14 -2224,1992/2/3,0.376602301,10.25219876,-1.741401613,1.444754534,5.73594822,5.51830509,6.709925576094354e-15 -2225,1992/2/4,0.041961493,10.03104909,-4.88946717,1.307715575,5.907105426,2.268987345,3.354962788047177e-15 -2226,1992/2/5,0.006485429,10.16974951,-4.888996246,1.086708373,5.95269665,1.154448863,1.6774813940235885e-15 -2227,1992/2/6,0.026273576,9.682551565,-5.538046164,1.627128555,5.816278391,0.904517587,8.387406970117943e-16 -2228,1992/2/7,0.417518421,10.25766896,-4.789146256,1.384842662,5.973538287,3.890970815,4.1937034850589713e-16 -2229,1992/2/8,0.209748716,10.59030752,-1.834319878,1.613730545,5.860552736,2.874117054,2.0968517425294857e-16 -2230,1992/2/9,0.023423548,10.84308834,-3.575328479,1.476686784,6.099229086,1.164329673,1.0484258712647428e-16 -2231,1992/2/10,1.196913324,9.402475393,-4.278782884,1.270108645,5.641994929,11.56812174,5.242129356323714e-17 -2232,1992/2/11,0.151770765,9.253654855,-5.332310597,1.312868476,5.651392192,4.590496702,2.621064678161857e-17 -2233,1992/2/12,0.03057441,9.298104232,-6.575772044,1.297276201,5.714519683,2.073279302,1.3105323390809285e-17 -2234,1992/2/13,0.058014833,10.52684977,-4.991941627,1.251575914,6.06251084,1.620396689,6.552661695404643e-18 -2235,1992/2/14,0.078223002,10.65663932,-2.284055133,1.517707279,5.915578384,1.461434955,3.2763308477023214e-18 -2236,1992/2/15,0.523942022,10.28846068,-2.118318569,1.410889289,5.763204097,5.079893134,1.6381654238511607e-18 -2237,1992/2/16,0.001014447,10.84125955,-0.834602592,1.544531972,5.82299041,1.465813884,8.190827119255803e-19 -2238,1992/2/17,0.092358187,11.12417021,-0.902386378,1.405707624,5.935122081,1.438916476,4.0954135596279017e-19 -2239,1992/2/18,1.524206554,8.361964356,-1.876196284,1.266105262,5.027403903,15.55160089,2.0477067798139509e-19 -2240,1992/2/19,0.04213458,9.993073415,-4.245563595,1.42354048,5.822219767,4.442431904,1.0238533899069754e-19 -2241,1992/2/20,0.383861831,11.09650093,-2.657119379,1.084569015,6.091990679,6.17830157,5.119266949534877e-20 -2242,1992/2/21,0.0751819,10.99840686,-1.054856947,1.061488013,5.8950875,2.99350735,2.5596334747674386e-20 -2243,1992/2/22,0.051739997,11.05416649,-0.314144311,0.977989493,5.82255935,1.903570242,1.2798167373837193e-20 -2244,1992/2/23,0.474136291,11.52712703,-0.534944642,0.76381043,6.027394113,5.577863152,6.3990836869185964e-21 -2245,1992/2/24,2.113226797,8.782031966,-0.394089116,0.79438604,4.960916652,29.59109493,3.1995418434592982e-21 -2246,1992/2/25,2.695863693,5.943707411,-1.835048055,0.588333776,4.121254636,62.36414011,1.5997709217296491e-21 -2247,1992/2/26,6.26760967,4.55551083,-4.764648294,0.813162045,4.018646671,235.1299382,0.0003876900788226479 -2248,1992/2/27,0.032743688,5.46727328,-7.455019106,1.042983194,4.491896539,61.90469512,0.00019381162321077192 -2249,1992/2/28,0.021850601,8.680488195,-5.4902569,1.220518005,5.425801223,29.22881855,9.690581160538596e-05 -2250,1992/2/29,0.14810966,10.12666501,-3.731787496,1.375784514,5.806030315,23.06032793,4.845290580269298e-05 -2251,1992/3/1,0.306332898,11.89336998,-2.185721602,1.62185337,6.310482486,22.87483669,2.422645290134649e-05 -2252,1992/3/2,0.234135277,12.69005583,-1.707781489,1.450620089,6.557660156,17.55059325,1.2113226450673245e-05 -2253,1992/3/3,0.420247153,13.56770706,-0.546054321,1.393223195,6.773363169,19.72661553,6.0566132253366225e-06 -2254,1992/3/4,0.436250553,13.95645588,-0.273911828,1.475027162,6.890107514,18.99389111,3.0283066126683113e-06 -2255,1992/3/5,1.243937922,14.36687103,0.539786485,1.363882678,6.95678009,39.24887689,1.5141533063341556e-06 -2256,1992/3/6,0.912226358,14.48386117,1.141685447,1.516913992,6.927265267,35.73047747,7.570766531670778e-07 -2257,1992/3/7,0.173008914,14.20347624,0.377197428,1.567474319,6.904252865,16.01459745,3.785383265835389e-07 -2258,1992/3/8,0.071162026,14.7574485,0.087683668,1.794958095,7.145328906,8.88570921,1.8926916329176945e-07 -2259,1992/3/9,0.019099106,14.3345971,0.476458651,1.423200559,6.936361489,5.184332457,9.463458164588473e-08 -2260,1992/3/10,0.266303827,14.85168609,0.4812982,1.483416444,7.132590155,7.841710872,4.7317290822942363e-08 -2261,1992/3/11,0.069216595,14.77582357,-1.337501993,1.632641485,7.267765707,4.251137642,2.3658645411471182e-08 -2262,1992/3/12,0.161681732,14.2096235,-1.482801007,1.628556089,7.064205204,4.40340064,1.1829322705735591e-08 -2263,1992/3/13,0.145163281,15.5309214,1.052483895,1.82705507,7.322833747,3.746269663,5.9146613528677954e-09 -2264,1992/3/14,0.160736547,16.38972714,1.960325759,1.70446561,7.553642835,3.461381568,2.9573306764338977e-09 -2265,1992/3/15,1.429252442,16.16296302,2.38824366,1.604078065,7.403603416,20.27318809,1.4786653382169489e-09 -2266,1992/3/16,2.431884729,15.43730991,0.522800934,1.82236905,7.331012401,49.32651804,7.393326691084744e-10 -2267,1992/3/17,0.284377106,15.10633639,0.906634033,1.631378844,7.156406077,18.78837887,3.696663345542372e-10 -2268,1992/3/18,1.093272028,14.96149759,1.922069889,1.68022109,6.969456733,29.41223054,1.848331672771186e-10 -2269,1992/3/19,0.300894163,15.16285891,0.913165284,1.642592718,7.16946919,15.66736132,9.24165836385593e-11 -2270,1992/3/20,0.173588716,16.07938436,1.454518169,1.651863752,7.463812889,9.748480581,4.620829181927965e-11 -2271,1992/3/21,0.477877409,16.19116073,2.58924663,1.833311472,7.362624592,12.72742504,2.3104145909639826e-11 -2272,1992/3/22,1.1914543,17.36705288,3.134327196,1.742602994,7.765226616,25.73990017,1.1552072954819913e-11 -2273,1992/3/23,1.531039393,17.81331163,4.188815442,1.802578477,7.796164474,38.03552629,5.7760364774099565e-12 -2274,1992/3/24,0.773962153,16.89483049,4.336575785,1.893746356,7.380408485,27.36421685,2.8880182387049782e-12 -2275,1992/3/25,0.064000961,17.79985916,5.077908041,1.95158786,7.63905422,10.8035281,1.4440091193524891e-12 -2276,1992/3/26,0.315973051,18.55412422,3.901800459,1.685125737,8.134219964,11.11795254,7.220045596762446e-13 -2277,1992/3/27,0.295571426,18.72676946,3.505770516,1.477795393,8.253796667,9.577209955,3.610022798381223e-13 -2278,1992/3/28,0.116376736,18.31894118,4.558743433,1.145973845,7.930598421,5.670948294,1.8050113991906114e-13 -2279,1992/3/29,1.738829358,17.89537418,5.91043692,1.62030041,7.514387697,30.07966419,9.025056995953057e-14 -2280,1992/3/30,0.777535853,18.76901647,5.258699822,1.85828939,8.003333941,22.05599294,4.5125284979765285e-14 -2281,1992/3/31,0.948619141,18.99623087,5.831290621,1.702415166,8.001610261,24.52834056,2.2562642489882642e-14 -2282,1992/4/1,0.930466165,18.10671335,5.299402875,1.40863488,7.70197968,25.53617928,1.1281321244941321e-14 -2283,1992/4/2,0.048007339,16.91335812,1.038484356,1.692889024,7.777665134,9.369593883,5.640660622470661e-15 -2284,1992/4/3,0.16536492,15.87446832,0.824861551,1.463493764,7.391317969,7.387879491,2.8203303112353303e-15 -2285,1992/4/4,0.008652396,17.1742504,2.168107752,1.496306306,7.749055716,3.744037499,1.4101651556176652e-15 -2286,1992/4/5,0.223536398,16.61288136,2.658363594,1.369120756,7.458530876,5.045249705,7.050825778088326e-16 -2287,1992/4/6,0.19376644,17.18261467,3.438076276,1.239980505,7.579784289,4.364934042,3.525412889044163e-16 -2288,1992/4/7,0.331864151,16.7067246,4.491153057,1.301834152,7.21488831,5.413346944,1.7627064445220814e-16 -2289,1992/4/8,0.003782164,17.29521501,5.031420695,1.23881945,7.368463449,1.943255293,8.813532222610407e-17 -2290,1992/4/9,0.0,18.96871397,6.03278998,1.540264533,7.912515289,1.05417691,4.4067661113052036e-17 -2291,1992/4/10,0.007620926,20.18455411,6.525604055,1.705444055,8.355008532,0.727340077,2.2033830556526018e-17 -2292,1992/4/11,0.276762409,20.78805779,6.869176562,1.541844308,8.55735398,2.400631377,1.1016915278263009e-17 -2293,1992/4/12,0.65101335,20.09445609,7.095420329,1.456671383,8.203911074,5.690539938,5.5084576391315045e-18 -2294,1992/4/13,0.504257191,20.57185781,8.008362599,1.139628846,8.239137396,5.804931756,2.7542288195657522e-18 -2295,1992/4/14,1.649346074,19.89917206,8.046842991,0.954086359,7.918921586,19.70101418,1.3771144097828761e-18 -2296,1992/4/15,1.879576472,18.10558224,7.546405289,0.487816575,7.200501507,33.86907979,6.885572048914381e-19 -2297,1992/4/16,8.09927733,17.06579691,5.883725207,0.892727679,7.078884579,260.288548,0.00020005175188580836 -2298,1992/4/17,3.944107584,16.87582536,4.760641085,1.020093883,7.199000603,252.2659603,0.00010000626550202571 -2299,1992/4/18,0.123332782,17.91253495,3.394168415,1.4235953,7.830906412,80.32573144,5.0003132751012855e-05 -2300,1992/4/19,0.496266488,18.49783404,4.339395269,1.397788107,7.936769054,60.24923868,2.5001566375506428e-05 -2301,1992/4/20,0.422738494,18.88662129,5.703344932,1.633906614,7.883886744,45.45108106,1.2500783187753214e-05 -2302,1992/4/21,0.322876853,20.66699303,6.33002693,1.519435234,8.545678543,32.76266321,6.250391593876607e-06 -2303,1992/4/22,0.528234454,21.36632172,7.19081643,1.419470177,8.704418554,31.81078872,3.1251957969383034e-06 -2304,1992/4/23,2.253188921,20.7128201,8.090323695,1.365902636,8.240775705,81.85319657,1.5625978984691517e-06 -2305,1992/4/24,3.445596462,20.26677515,8.259895564,1.055406559,7.998467269,147.51932,7.812989492345759e-07 -2306,1992/4/25,3.285028276,19.72323696,7.027247482,0.999836177,7.992681231,180.5310871,3.9064947461728793e-07 -2307,1992/4/26,2.184336007,19.40259555,6.722336027,1.12986743,7.903369735,153.3154567,1.9532473730864397e-07 -2308,1992/4/27,3.420662712,19.76799084,7.083603629,1.371360441,7.993482447,218.6690432,9.766236865432198e-08 -2309,1992/4/28,0.869422112,20.55084116,7.565240472,1.233007307,8.247264891,110.5783906,4.883118432716099e-08 -2310,1992/4/29,0.261457502,20.91840471,6.089912396,1.273390672,8.655348133,56.93259703,2.4415592163580496e-08 -2311,1992/4/30,0.379197868,20.76240741,6.750473597,1.602231358,8.477100031,43.83892588,1.2207796081790248e-08 -2312,1992/5/1,0.503546428,20.51647482,7.651889183,1.746844082,8.202794935,38.74093065,6.103898040895124e-09 -2313,1992/5/2,0.836930706,20.76757876,8.8578998,1.933320393,8.068756664,43.38529085,3.051949020447562e-09 -2314,1992/5/3,1.336049746,20.5633291,8.606632945,1.783880456,8.024195084,57.10298737,1.525974510223781e-09 -2315,1992/5/4,1.275665803,21.17722258,9.316298897,1.928910255,8.151277049,57.92363555,7.629872551118905e-10 -2316,1992/5/5,0.640037771,20.29328767,9.053299586,1.90680488,7.793534057,38.28429695,3.8149362755594525e-10 -2317,1992/5/6,0.984843619,21.2455454,8.866189617,1.575941532,8.271366497,42.60581907,1.9074681377797262e-10 -2318,1992/5/7,0.504431863,20.79119561,9.058658566,1.876328206,8.016459579,28.58849604,9.537340688898631e-11 -2319,1992/5/8,1.238061562,21.20677469,7.917902175,1.814232193,8.433097828,43.3565426,4.7686703444493156e-11 -2320,1992/5/9,0.550176787,24.02197437,8.354429242,1.691478324,9.612352605,28.01365146,2.3843351722246578e-11 -2321,1992/5/10,0.713687092,23.16219399,10.27646538,1.651910461,8.849493375,27.13605742,1.1921675861123289e-11 -2322,1992/5/11,1.460598431,21.90957809,9.354129494,1.427465824,8.456320111,43.5674141,5.9608379305616445e-12 -2323,1992/5/12,0.805728967,23.08259244,10.10130654,1.394062458,8.841512286,32.43119385,2.9804189652808222e-12 -2324,1992/5/13,1.631233387,23.53608848,9.720992864,1.637349362,9.126733547,50.39080012,1.4902094826404111e-12 -2325,1992/5/14,3.050479652,24.5194498,10.36107793,1.476000271,9.453168909,101.0503084,7.451047413202056e-13 -2326,1992/5/15,9.586855161,21.16507353,10.96694219,1.499725189,7.706739094,467.6424789,0.0005437455841425388 -2327,1992/5/16,4.034457553,20.18206333,10.54723596,1.718611663,7.332658644,372.7070439,0.00027179416414370184 -2328,1992/5/17,1.888516241,20.70365826,11.21567909,1.53342591,7.404059432,237.88482,0.00013589708207185092 -2329,1992/5/18,2.48768582,19.41812963,10.69084973,1.182989137,6.907850002,248.2143366,6.794854103592546e-05 -2330,1992/5/19,11.7242514,18.26753878,10.10706541,1.235207359,6.500862833,1062.204003,0.009744213993148268 -2331,1992/5/20,1.818841663,17.98680986,9.391345525,1.342365766,6.565389548,459.827882,0.004863081365581771 -2332,1992/5/21,0.055831258,19.64362279,9.574813866,1.383175249,7.3106651,181.6344598,0.0024315406827908853 -2333,1992/5/22,0.041932617,21.11949157,10.18210813,1.227647562,7.861386893,106.4499661,0.0012157703413954426 -2334,1992/5/23,1.833184758,20.25346985,10.42960165,0.938076498,7.378869127,190.7940424,0.0006078851706977213 -2335,1992/5/24,4.614330881,17.88446747,9.242803042,0.777776829,6.547029948,397.8724453,0.00030394258534886066 -2336,1992/5/25,0.442855941,20.80854992,9.922060322,0.83427564,7.76772553,150.5335885,0.00015197129267443033 -2337,1992/5/26,3.239392537,21.55068235,11.79548858,1.487874761,7.640366443,285.7020065,7.598564633721517e-05 -2338,1992/5/27,14.54757726,20.99941248,11.02204236,1.365825589,7.575865309,1439.35876,0.03442485592523469 -2339,1992/5/28,2.888114438,20.09804053,11.03365317,1.442758181,7.123577947,691.5014012,0.017127624089313984 -2340,1992/5/29,0.187865774,22.1971189,11.83095854,1.565704871,7.94604139,268.8600773,0.008563812044656992 -2341,1992/5/30,0.317580908,24.05543556,12.02677222,1.963814675,8.809307004,172.6187676,0.004281906022328496 -2342,1992/5/31,0.661235327,24.30289984,12.53974944,1.989502837,8.801276759,146.5004752,0.002140953011164248 -2343,1992/6/1,0.153465286,23.54704023,11.58488971,1.830727553,8.663256111,83.64949448,0.001070476505582124 -2344,1992/6/2,1.000287065,23.79470234,12.0432062,1.202951088,8.669848113,101.8519254,0.000535238252791062 -2345,1992/6/3,0.247409321,24.59354034,12.52876749,1.121006402,8.940097907,55.22501866,0.000267619126395531 -2346,1992/6/4,1.240943719,24.13561639,13.00727854,0.928999375,8.58624721,80.85996691,0.0001338095631977655 -2347,1992/6/5,3.931014354,22.73690486,12.41197354,1.131552857,8.041687254,207.4557732,6.690478159888275e-05 -2348,1992/6/6,2.787446818,23.2343612,11.76777612,1.02924531,8.454912258,199.1114169,3.3452390799441376e-05 -2349,1992/6/7,11.04199406,22.50781026,11.51391622,0.273525083,8.161852964,816.7737933,0.0204263294184816 -2350,1992/6/8,0.034605379,21.7970288,11.77691282,0.43766259,7.740071066,217.1427587,0.010140850213207575 -2351,1992/6/9,0.151330959,22.93056026,12.8977547,1.333938935,7.995569004,111.125078,0.005070425106603787 -2352,1992/6/10,3.430121701,22.45123713,12.8084331,1.312821544,7.774530844,278.7213113,0.0025352125533018937 -2353,1992/6/11,3.432516229,22.06596933,13.23846784,1.534751878,7.441752997,318.1721282,0.0012676062766509468 -2354,1992/6/12,5.519967414,21.54426518,12.6485976,1.474744678,7.351851233,507.0638436,0.0006338031383254734 -2355,1992/6/13,1.734062122,22.79540625,13.39552909,1.609920888,7.772210952,283.3479701,0.0003169015691627367 -2356,1992/6/14,4.093131164,23.16428232,12.82563392,1.641807528,8.126790341,417.959103,0.00015845078458136836 -2357,1992/6/15,1.419662794,23.86272716,13.5683706,1.254283264,8.271193764,241.1140301,7.922539229068418e-05 -2358,1992/6/16,1.797313548,24.06360046,14.09177836,1.296129534,8.219988117,219.533089,3.961269614534209e-05 -2359,1992/6/17,5.430533992,22.30279525,14.2790986,1.067488738,7.215048621,471.2981231,1.9806348072671044e-05 -2360,1992/6/18,9.775364881,23.43106225,14.62944763,1.361011034,7.710405137,1024.743736,0.012281825552648798 -2361,1992/6/19,9.854062156,21.23085967,14.41734567,1.003030356,6.560885282,1413.989938,0.03239527523266078 -2362,1992/6/20,5.061420184,21.55394929,14.22818019,0.826059161,6.814982926,1060.800032,0.01609269219926975 -2363,1992/6/21,5.410859425,22.98662954,14.15098399,1.205244274,7.625646502,1074.03964,0.008046346099634874 -2364,1992/6/22,6.140224109,22.4462745,14.16364925,1.555647372,7.328807249,1191.701055,0.004023173049817437 -2365,1992/6/23,8.328876405,21.36275886,14.69234827,1.497663491,6.525801977,1593.795996,0.01936324543994151 -2366,1992/6/24,2.510190804,21.92520824,13.74336207,1.549181644,7.187805903,865.6239344,0.009598131971494662 -2367,1992/6/25,0.348313794,18.908303,13.1635927,1.077118334,5.718490049,394.3634002,0.004799065985747331 -2368,1992/6/26,1.720281756,20.03188471,13.13121255,1.179797425,6.368110018,415.4144242,0.0023995329928736655 -2369,1992/6/27,2.901153972,21.35560071,13.51110159,0.859279253,6.957458289,504.9375717,0.0011997664964368327 -2370,1992/6/28,1.922847347,22.51722488,14.04879955,1.109587943,7.402815938,386.8402684,0.0005998832482184164 -2371,1992/6/29,10.70335425,22.74745695,14.62526268,1.064618533,7.330658825,1383.663386,0.03002972611680578 -2372,1992/6/30,13.56638698,21.39923911,14.32413125,1.208276913,6.686999618,2393.720068,0.0983193944146518 -2373,1992/7/1,7.628563536,21.5704168,14.50025163,1.48115711,6.717078664,1975.256239,0.06582780935541968 -2374,1992/7/2,3.281774772,22.06392422,14.68061142,1.488583248,6.928688425,1192.877587,0.032752108787480194 -2375,1992/7/3,1.071729767,22.87855212,15.04736026,1.806280617,7.252264894,636.489327,0.016376054393740097 -2376,1992/7/4,0.703996213,22.66982823,14.68420685,1.789736196,7.266525355,405.7994433,0.008188027196870049 -2377,1992/7/5,1.072931441,23.14452233,14.9135184,1.549580681,7.448651784,337.5653343,0.004094013598435024 -2378,1992/7/6,3.944100248,23.11110044,14.49919364,1.383022997,7.572949737,584.0209951,0.002047006799217512 -2379,1992/7/7,6.847079025,19.72749525,13.13627647,1.134181667,6.195883907,966.4262475,0.010959726381078673 -2380,1992/7/8,13.65305625,19.29614127,12.58426472,0.601767748,6.16282367,2219.128384,0.1244232266800873 -2381,1992/7/9,2.648415393,18.43560499,11.64652547,0.534032387,6.033334436,1023.621742,0.06126601101933367 -2382,1992/7/10,0.884030319,19.73161412,12.23286267,0.922256604,6.522985537,521.4796603,0.030633005509666834 -2383,1992/7/11,8.627423968,19.5072647,13.34512317,1.319941068,5.991297648,1490.103209,0.07037849009022336 -2384,1992/7/12,6.784545072,20.64810467,13.60912537,0.934471268,6.535363392,1520.615999,0.0404486853422274 -2385,1992/7/13,14.4253504,20.70183284,12.8575944,0.858488062,6.830799228,3130.04423,0.19978436102558983 -2386,1992/7/14,21.24417512,19.58258756,12.51359353,0.843574185,6.347943252,6058.719384,0.5579393849874876 -2387,1992/7/15,4.600824795,18.7150296,12.12028078,0.963463953,6.017797646,2887.341681,0.27186192782636764 -2388,1992/7/16,3.079218624,20.37788806,12.04976296,0.674152532,6.925515306,1836.378576,0.13593096391318382 -2389,1992/7/17,5.145443972,20.54183233,12.11956363,0.647922293,6.989406583,1907.839705,0.06796548195659191 -2390,1992/7/18,2.44047456,20.95945079,12.56089739,1.023596834,7.06838852,1218.380717,0.033982740978295956 -2391,1992/7/19,2.732238512,22.05382262,13.81387997,1.148011757,7.240188539,1008.581128,0.016991370489147978 -2392,1992/7/20,2.794386858,22.64401642,13.58278702,1.126819242,7.631814425,867.6890034,0.008495685244573989 -2393,1992/7/21,8.001692592,23.53096018,14.11074186,1.49073357,7.936159128,1579.554652,0.006464282428820068 -2394,1992/7/22,15.69053602,21.33107683,14.46003731,1.049102082,6.607765009,3313.301418,0.31094320868407965 -2395,1992/7/23,3.794880479,21.65855068,14.64507543,0.686044838,6.725094054,1671.036435,0.1502579327998518 -2396,1992/7/24,9.538184116,22.76626929,14.63857782,1.341419192,7.351939459,2485.978326,0.1631085986814595 -2397,1992/7/25,14.14393558,20.44134519,13.90686209,1.091563907,6.317401079,3873.53556,0.41050349853024676 -2398,1992/7/26,13.50702082,21.82684429,14.14695796,1.291683337,7.00940673,4566.263716,0.5194754611919727 -2399,1992/7/27,14.55510134,22.23707448,13.79633593,0.875753691,7.356191919,5459.42341,0.6499433533230641 -2400,1992/7/28,9.2475057,20.25681845,13.25995416,0.29685551,6.463736782,4280.687447,0.4858064330055337 -2401,1992/7/29,5.79179707,21.66923802,13.06487727,0.125853444,7.29590127,3033.388156,0.23759914637943574 -2402,1992/7/30,14.34392677,21.16720429,12.88649162,0.397093597,7.089907644,5004.136241,0.573463676698432 -2403,1992/7/31,6.862067748,20.71414807,13.12267896,1.210176617,6.769055301,3413.202414,0.2789058012266271 -2404,1992/8/1,3.861058018,21.07899694,13.39027047,0.877186311,6.876169054,2200.242764,0.13923115877126999 -2405,1992/8/2,1.190926826,21.84261055,12.61613095,0.77310114,7.533422389,1191.746521,0.06961557938563499 -2406,1992/8/3,4.184231339,22.76367809,12.92096796,0.703647179,7.919344341,1374.493378,0.034807789692817497 -2407,1992/8/4,15.38773625,21.71367334,12.72666515,0.513554344,7.437367822,3558.984757,0.4918015787307434 -2408,1992/8/5,3.113753558,21.12513229,12.18783458,0.474933876,7.299594299,1666.470148,0.2317471583410397 -2409,1992/8/6,1.620064916,21.67596295,12.92589308,1.176375403,7.360101872,956.6045896,0.11587357917051985 -2410,1992/8/7,1.639552964,22.9156233,13.35490747,1.287470225,7.87886939,711.0704334,0.057936789585259926 -2411,1992/8/8,0.858460714,23.2999667,13.91609039,1.334333333,7.910939147,455.1594509,0.028968394792629963 -2412,1992/8/9,7.107084654,24.484138,14.32684061,0.967348096,8.413588083,1126.972742,0.014484197396314982 -2413,1992/8/10,13.02848159,23.25739922,14.25107368,0.747548128,7.786558187,2258.938753,0.285173511315718 -2414,1992/8/11,0.25754996,23.85797884,13.91951556,0.813107025,8.212564076,683.2977499,0.13521867106553317 -2415,1992/8/12,3.949710102,25.1877763,14.21775817,0.838449744,8.822850294,838.7037697,0.06760933553276659 -2416,1992/8/13,6.369504027,23.71160161,14.21685854,0.615377028,8.049483227,1130.77687,0.033804667766383294 -2417,1992/8/14,7.620844148,21.7611769,12.96016824,0.392469312,7.414580842,1396.304303,0.027300858707525036 -2418,1992/8/15,1.949336461,23.06277374,12.54999082,0.58014061,8.209476282,703.4512971,0.013388314582552853 -2419,1992/8/16,1.829954567,23.71431753,12.71304783,0.651725698,8.497407657,509.665507,0.006694157291276427 -2420,1992/8/17,0.639857404,23.67741254,13.33462366,1.011558059,8.30934696,291.6595335,0.0033470786456382133 -2421,1992/8/18,3.989785432,22.84331468,14.20499261,1.516765074,7.600719364,521.8285185,0.0016735393228191067 -2422,1992/8/19,3.178007009,23.15823555,14.6663954,1.243453384,7.619655072,477.0336251,0.0008367696614095533 -2423,1992/8/20,3.483222493,22.00022279,14.1424535,1.083810205,7.164749471,488.3968022,0.00041838483070477667 -2424,1992/8/21,9.825094242,21.56475428,13.18609607,0.925294596,7.257959424,1203.187306,0.09569511545163917 -2425,1992/8/22,13.82791907,20.42763746,12.75072535,0.286355873,6.795010775,2253.18797,0.32440075260782014 -2426,1992/8/23,5.020191872,19.26939957,13.07133478,0.292203207,6.033833125,1411.759487,0.1566929077185818 -2427,1992/8/24,3.218424001,19.60304381,12.13147588,0.291381267,6.568579338,986.4018928,0.0783464538592909 -2428,1992/8/25,2.655976063,21.14749734,12.1529711,0.254007155,7.377933234,771.4353608,0.03917322692964545 -2429,1992/8/26,6.127364066,21.49029666,12.68124714,0.299071795,7.39715265,1167.602939,0.019586613464822725 -2430,1992/8/27,4.256542445,20.39560523,13.22797758,0.334483038,6.62314887,975.674605,0.009793306732411362 -2431,1992/8/28,2.670424709,22.83892773,13.28711148,0.319104633,7.925856089,702.3576452,0.004896653366205681 -2432,1992/8/29,7.730013261,22.69019452,13.43286464,0.361466542,7.806102107,1299.571665,0.0024483266831028406 -2433,1992/8/30,10.5773985,21.72915894,12.72549441,0.296206805,7.52294537,1979.016982,0.10956716303428929 -2434,1992/8/31,7.30539526,20.66303621,11.47677795,0.203534996,7.351327427,1768.550755,0.05286209097811309 -2435,1992/9/1,2.762376195,24.24500894,11.44883368,0.458527727,9.136042851,1011.657968,0.026431045489056545 -2436,1992/9/2,0.620844815,25.43298103,12.57651775,0.500918346,9.45968229,496.8574748,0.013215522744528273 -2437,1992/9/3,0.508330863,23.75050321,12.39152149,1.036664051,8.670486485,317.4620371,0.006607761372264136 -2438,1992/9/4,3.427836387,23.92045872,13.34074573,0.913055794,8.502641207,507.777621,0.003303880686132068 -2439,1992/9/5,0.381647041,21.71355272,12.82710748,0.602902226,7.505455262,225.084752,0.001651940343066034 -2440,1992/9/6,2.696564676,22.22570267,12.63455962,0.836712053,7.836953899,331.6397534,0.000825970171533017 -2441,1992/9/7,3.749345453,23.11381437,13.39834358,0.838790126,8.076719621,424.3178027,0.0004129850857665085 -2442,1992/9/8,17.81361998,20.98327586,13.51839257,0.786947346,6.885938994,2126.626516,0.29222367472823807 -2443,1992/9/9,10.63801511,21.69860538,13.54148772,0.979998828,7.277821898,2181.67005,0.2667864133349216 -2444,1992/9/10,7.377239624,21.1071794,13.6432754,1.493300062,6.917295846,1877.302568,0.14956898027861257 -2445,1992/9/11,4.327320197,22.77882078,13.89305656,1.370492081,7.757779219,1341.273954,0.07441303469816131 -2446,1992/9/12,7.780126255,21.84069622,13.92819622,1.403148302,7.233067114,1778.167912,0.05831361984520981 -2447,1992/9/13,12.17627989,21.08139753,13.27106755,0.944839378,7.047450506,2806.549301,0.22922793502639238 -2448,1992/9/14,13.44155312,20.44733082,13.06355605,0.847075364,6.773595169,3695.474193,0.40291383495422317 -2449,1992/9/15,18.27061246,18.39623107,12.403178,0.74775838,5.866277153,5834.095438,0.8142850394497154 -2450,1992/9/16,9.35786135,18.33826131,12.27497164,0.783212758,5.887290372,4395.021438,0.6037983864691889 -2451,1992/9/17,7.837193517,18.39268273,12.44532216,0.835737497,5.853812493,3716.945509,0.42270407246720887 -2452,1992/9/18,2.468552404,19.79167379,12.06906572,0.86982518,6.777009359,1990.581303,0.20726761821633363 -2453,1992/9/19,1.197563433,21.13512242,11.51646087,0.417941833,7.656339562,1169.967291,0.10363380910816682 -2454,1992/9/20,4.805934712,21.64764087,12.14999908,0.363908359,7.740179728,1523.880518,0.05181690455408341 -2455,1992/9/21,1.347369611,21.74250939,11.43691527,0.571793055,7.995431853,827.0678733,0.025908452277041704 -2456,1992/9/22,0.218848839,21.7839652,11.79081953,1.026367944,7.92310198,428.8893718,0.012954226138520852 -2457,1992/9/23,0.73079835,21.15699386,10.96132316,0.789705063,7.839002189,337.7330741,0.006477113069260426 -2458,1992/9/24,2.875573524,21.67709658,11.26185781,0.825580356,8.023615616,487.8879033,0.003238556534630213 -2459,1992/9/25,1.564037546,18.82278671,11.1142009,0.485815885,6.604256983,339.8505099,0.0016192782673151065 -2460,1992/9/26,1.833091883,18.307789,10.25499137,0.559186674,6.61240658,309.9322119,0.0008096391336575533 -2461,1992/9/27,2.342969174,17.47850157,8.462914299,0.504104895,6.714613066,328.8137006,0.0004048195668287766 -2462,1992/9/28,1.561851555,17.52731659,7.481757733,0.310516758,6.984499739,250.6983191,0.0002024097834143883 -2463,1992/9/29,4.035824025,16.16668311,7.857776432,0.612868555,6.252614058,432.755027,0.00010120489170719416 -2464,1992/9/30,2.413158363,18.50084258,9.290367611,1.193109576,7.003100344,341.5658339,5.060244585359708e-05 -2465,1992/10/1,0.810555097,19.99211532,9.934952567,1.45051885,7.568924972,184.8559188,2.530122292679854e-05 -2466,1992/10/2,4.400527597,20.58776448,10.12278681,1.407461967,7.817776356,424.0464488,1.265061146339927e-05 -2467,1992/10/3,10.25820766,20.48676045,9.995521926,1.132150589,7.805231813,1101.127211,0.07496650822459472 -2468,1992/10/4,8.352439808,18.6186923,10.22218258,0.997875699,6.813249551,1267.124268,0.08692219411374978 -2469,1992/10/5,1.121835035,17.673004,9.426076855,0.583164941,6.573654383,508.927386,0.04262989041214232 -2470,1992/10/6,1.189050095,17.57969064,7.941219064,0.885545482,6.931857689,349.9251059,0.02131494520607116 -2471,1992/10/7,0.067885523,18.81793428,7.847250295,0.943116006,7.53830864,171.6636903,0.01065747260303558 -2472,1992/10/8,0.0,18.9751076,6.677725501,0.738193881,7.855976376,101.9464959,0.00532873630151779 -2473,1992/10/9,0.079521022,19.46916061,7.096142794,0.944816466,8.002195529,70.86155515,0.002664368150758895 -2474,1992/10/10,0.103445855,19.21449929,8.858992489,0.974833387,7.50279248,49.83390637,0.0013321840753794474 -2475,1992/10/11,0.540842097,18.42295366,9.586554492,0.76932746,6.927765791,57.24755378,0.0006660920376897237 -2476,1992/10/12,10.70697307,15.44608504,7.972379577,0.659711193,5.914851207,733.4225981,0.11513166359603816 -2477,1992/10/13,20.46434904,13.52064202,4.777172878,0.176490554,5.845946755,2666.421707,0.47312182399804303 -2478,1992/10/14,6.534237489,8.313899862,3.191819007,0.061008176,3.912838332,1734.59583,0.341546077111726 -2479,1992/10/15,0.24729645,9.12655532,2.751256709,0.273107921,4.402390426,607.4551233,0.16842588679305598 -2480,1992/10/16,2.618736141,10.36893142,3.253016099,0.256986172,4.824735676,712.2892687,0.08421294339652799 -2481,1992/10/17,0.135167951,10.28101337,3.397795797,0.601115573,4.753420018,312.8153685,0.042106471698263995 -2482,1992/10/18,0.166598633,13.29210262,4.163283721,0.810505302,5.897079267,196.2382515,0.021053235849131997 -2483,1992/10/19,0.046556308,14.51551011,5.16706022,1.022407811,6.221672566,121.6629106,0.010526617924565999 -2484,1992/10/20,0.2027265,16.37436579,5.013425344,0.997333098,7.074339983,95.61547355,0.005263308962282999 -2485,1992/10/21,2.832375583,13.82047873,4.259000866,0.63435289,6.1166614,309.0157466,0.0026316544811414997 -2486,1992/10/22,10.50717999,12.44552179,6.097980173,0.665264462,5.029654732,1214.029701,0.17238324335561522 -2487,1992/10/23,7.245312292,13.24271105,6.985918172,0.520672282,5.151883158,1272.144148,0.15966153314911255 -2488,1992/10/24,4.168288262,11.61187945,3.922562989,0.759944266,5.233994258,965.8644278,0.07844608111079025 -2489,1992/10/25,0.3175318,11.67165139,3.429014883,0.580500879,5.376056364,376.9518492,0.039223040555395126 -2490,1992/10/26,1.543893029,12.37469724,3.256982452,0.506327569,5.71660706,382.7205079,0.019611520277697563 -2491,1992/10/27,0.007036475,13.93188295,0.063712411,0.4315146,6.828848623,167.6168078,0.009805760138848782 -2492,1992/10/28,0.017670808,13.25037225,0.393468454,0.267670146,6.532076332,100.5144215,0.004902880069424391 -2493,1992/10/29,0.868988234,13.0586613,0.892339195,0.418520416,6.397315792,137.4855935,0.0024514400347121954 -2494,1992/10/30,0.283119491,10.87868736,0.369428162,0.462605997,5.624405253,80.73478753,0.0012257200173560977 -2495,1992/10/31,0.297205542,11.31930469,1.133290204,0.649699088,5.682614769,60.46106798,0.0006128600086780489 -2496,1992/11/1,0.006193785,13.1837597,2.032158371,0.755186831,6.29109759,29.92545695,0.0003064300043390244 -2497,1992/11/2,0.789789951,13.81573868,0.52998152,0.802019161,6.752680438,62.65797435,0.0001532150021695122 -2498,1992/11/3,1.61744727,12.39461886,0.282270287,0.575540394,6.235378408,109.2618776,7.66075010847561e-05 -2499,1992/11/4,0.330718205,12.70499804,1.323847485,0.84063206,6.216686922,50.02626726,3.830375054237805e-05 -2500,1992/11/5,0.096444491,14.50315289,2.692905824,1.243501809,6.740355987,25.47352698,1.9151875271189027e-05 -2501,1992/11/6,0.001783809,14.67755524,2.419101457,1.369159174,6.857573897,13.62425008,9.575937635594513e-06 -2502,1992/11/7,0.080710447,12.86763153,-0.578991866,0.853694521,6.530163162,11.38729259,4.787968817797257e-06 -2503,1992/11/8,3.413131166,12.14361629,-1.82135275,0.269663527,6.384707702,135.1782021,2.3939844088986283e-06 -2504,1992/11/9,1.119558091,5.409894596,-4.781564205,0.364223487,4.305013467,80.95906516,1.1969922044493142e-06 -2505,1992/11/10,0.221196985,8.144205435,-5.041185617,0.575020005,5.233678297,36.12401076,5.984961022246571e-07 -2506,1992/11/11,0.001930248,8.792583994,-4.873401675,0.402958219,5.443134264,17.06666343,2.9924805111232854e-07 -2507,1992/11/12,0.0,9.55236905,-4.191428253,0.364589889,5.660386705,10.40797749,1.4962402555616427e-07 -2508,1992/11/13,0.085564356,10.2837418,-4.541874128,0.421891772,5.936338269,9.290188017,7.481201277808214e-08 -2509,1992/11/14,0.048026277,11.00746218,-4.749669498,0.460635431,6.199170148,6.290368272,3.740600638904107e-08 -2510,1992/11/15,0.540591238,11.05084259,-4.062406264,0.521150322,6.179919056,17.03653684,1.8703003194520534e-08 -2511,1992/11/16,0.043213965,10.97574939,-2.178325032,0.744293492,6.012991718,6.438919149,9.351501597260267e-09 -2512,1992/11/17,0.061347749,12.72071147,-0.648394298,0.936657713,6.511897456,4.371353342,4.6757507986301334e-09 -2513,1992/11/18,0.060908404,13.17980452,0.590661126,1.07674732,6.546960417,3.358576261,2.3378753993150667e-09 -2514,1992/11/19,0.086881659,13.52119854,0.704289588,0.586999401,6.669583354,3.116065308,1.1689376996575334e-09 -2515,1992/11/20,2.791200949,13.14250377,2.125472698,0.809494073,6.315533965,57.60646319,5.844688498287667e-10 -2516,1992/11/21,1.80113349,12.762664,2.68198795,1.14388857,6.064610588,60.52721222,2.9223442491438334e-10 -2517,1992/11/22,0.226948453,13.07889293,3.239249034,1.047809127,6.096601657,23.52106036,1.4611721245719167e-10 -2518,1992/11/23,0.563089832,13.50206607,4.46049886,0.913327446,6.031563799,24.24838165,7.305860622859583e-11 -2519,1992/11/24,0.466643067,12.2200015,0.877388996,0.745627967,6.144310743,20.70910221,3.652930311429792e-11 -2520,1992/11/25,5.860137958,7.882449127,-2.618936073,0.424627937,4.962843983,200.3422977,0.006815372995317974 -2521,1992/11/26,2.820142726,3.589558693,-3.658361908,0.355819919,3.586288965,177.8749518,0.003381803503840629 -2522,1992/11/27,0.014356075,5.526528755,-4.211844087,0.423651166,4.320405924,54.51091344,0.0016909017519203145 -2523,1992/11/28,0.0,6.925487898,-5.27446309,0.409893554,4.881454291,27.96283678,0.0008454508759601573 -2524,1992/11/29,0.0,7.850289897,-5.289505745,0.436195473,5.191460817,17.60725306,0.0004227254379800786 -2525,1992/11/30,0.011592272,8.624485995,-4.3299124,0.216615637,5.390669082,11.83795175,0.0002113627189900393 -2526,1992/12/1,0.163596844,7.823675757,-3.812153908,0.388581108,5.074331367,12.87960082,0.00010568135949501966 -2527,1992/12/2,0.992050156,5.906549405,-3.668165296,0.489352981,4.398338367,37.72812766,5.284067974750983e-05 -2528,1992/12/3,0.427717376,6.946759274,-3.240320577,0.642382147,4.71424636,24.92292815,2.6420339873754914e-05 -2529,1992/12/4,0.15972304,8.471504705,-4.261708784,0.67439908,5.339607091,13.82577166,1.3210169936877457e-05 -2530,1992/12/5,0.182892581,9.090098073,-5.384092127,0.788760699,5.622493957,11.29903793,6.6050849684387285e-06 -2531,1992/12/6,0.121180927,7.988713225,-6.289062518,0.811503261,5.300618384,8.058385796,3.3025424842193643e-06 -2532,1992/12/7,0.012820632,9.029276263,-5.900880329,0.705068237,5.629471761,3.989924757,1.6512712421096821e-06 -2533,1992/12/8,0.00055765,9.063801395,-5.555641713,0.602221283,5.626639312,2.305782209,8.256356210548411e-07 -2534,1992/12/9,0.0,9.192074703,-5.573806176,0.645966887,5.672056364,1.466933884,4.1281781052742053e-07 -2535,1992/12/10,0.005308842,9.879618877,-4.703116026,0.83395752,5.86210868,1.043356926,2.0640890526371027e-07 -2536,1992/12/11,0.006297085,10.142355,-5.123719759,0.823054918,5.976007573,0.738798852,1.0320445263185513e-07 -2537,1992/12/12,0.006081035,10.47730719,-4.351781075,1.107833487,6.051661344,0.520635656,5.1602226315927567e-08 -2538,1992/12/13,0.0,11.01516461,-3.988732356,1.127138869,6.219933495,0.299003972,2.5801113157963783e-08 -2539,1992/12/14,0.0,11.16079696,-4.754299756,0.703108022,6.314088271,0.189930144,1.2900556578981892e-08 -2540,1992/12/15,0.431640773,10.62499487,-5.143122078,0.699211748,6.147664374,4.714507756,6.450278289490946e-09 -2541,1992/12/16,0.027016901,9.978810809,-4.268911862,0.788582582,5.877233338,1.461082515,3.225139144745473e-09 -2542,1992/12/17,0.103562677,10.87898352,-2.441085391,0.715038129,6.058952609,1.580000538,1.6125695723727365e-09 -2543,1992/12/18,0.01321621,10.41576983,-3.954350343,1.045632744,6.011724774,0.709313629,8.062847861863682e-10 -2544,1992/12/19,0.012971148,9.314236534,-4.957188385,0.994914564,5.692129857,0.46382664,4.031423930931841e-10 -2545,1992/12/20,0.0,9.546948036,-5.27406901,0.829796336,5.789254236,0.250610128,2.0157119654659206e-10 -2546,1992/12/21,0.01918219,9.7823381,-5.41211026,0.701763088,5.876772883,0.279639395,1.0078559827329603e-10 -2547,1992/12/22,0.017466849,9.392769555,-5.430048593,0.552998555,5.745933976,0.232635773,5.0392799136648014e-11 -2548,1992/12/23,4.00205103,7.295278311,-5.216227308,0.439301302,5.028154013,49.3863079,2.5196399568324007e-11 -2549,1992/12/24,6.074070154,3.775537382,-5.370348659,0.415123382,3.880182041,186.5411309,0.0044241489001978695 -2550,1992/12/25,0.076681491,7.8286756,-5.62338061,0.715441511,5.232106976,50.10278209,0.0022076136270369777 -2551,1992/12/26,0.079215319,8.297054239,-5.196957545,1.11242672,5.364673473,25.043528,0.0011038068135184888 -2552,1992/12/27,0.03752879,9.054987387,-4.623444673,1.022737463,5.587372867,15.49733806,0.0005519034067592444 -2553,1992/12/28,0.027109465,8.780865322,-4.00619537,0.947404475,5.448831657,10.17484701,0.0002759517033796222 -2554,1992/12/29,0.006626598,8.463327044,-6.205678731,0.968800678,5.472430891,6.406328499,0.0001379758516898111 -2555,1992/12/30,0.051932846,9.865367181,-6.348146514,0.609665968,5.944913476,5.251992195,6.898792584490555e-05 -2556,1992/12/31,0.00908829,10.6065852,-5.113128704,0.836944691,6.149531335,3.104567664,3.4493962922452776e-05 -2557,1993/1/1,0.049105396,11.50051446,-3.705300746,0.923690369,6.386952893,2.794343345,1.7246981461226388e-05 -2558,1993/1/2,0.034204049,11.285924,-3.23140823,1.470992669,6.278025073,1.999552873,8.623490730613194e-06 -2559,1993/1/3,0.033624217,10.16911358,-2.671061495,1.174890274,5.828977716,1.52288863,4.311745365306597e-06 -2560,1993/1/4,0.05460684,10.66552779,-2.618057529,1.486260922,6.004270016,1.4942061,2.1558726826532985e-06 -2561,1993/1/5,0.116323367,9.678127238,-3.077943811,1.123500017,5.688606214,2.090238937,1.0779363413266492e-06 -2562,1993/1/6,0.10846398,9.924232647,-2.092780852,1.261428076,5.682254266,1.985688441,5.389681706633246e-07 -2563,1993/1/7,0.482491548,11.06777001,-0.25654653,1.560390526,5.894234718,6.249588028,2.694840853316623e-07 -2564,1993/1/8,2.138731844,10.77802998,0.946830771,1.472837149,5.599725876,33.58368026,1.3474204266583116e-07 -2565,1993/1/9,1.576963621,10.16480064,0.140417648,1.344605199,5.484489756,39.58199605,6.737102133291558e-08 -2566,1993/1/10,0.353753991,8.978955463,-2.083276547,1.219563911,5.333079887,18.79517217,3.368551066645779e-08 -2567,1993/1/11,0.62214312,8.940940272,-2.277530238,1.07561367,5.34078767,20.37774798,1.6842755333228894e-08 -2568,1993/1/12,1.94304405,9.126047993,-0.969070553,1.205800682,5.244866442,52.77654622,8.421377666614447e-09 -2569,1993/1/13,0.892861367,8.394667961,-2.596060167,1.37836207,5.177061028,38.25202449,4.210688833307224e-09 -2570,1993/1/14,0.188883759,7.962965472,-4.102810208,1.341219507,5.169744814,17.81761014,2.105344416653612e-09 -2571,1993/1/15,0.045437475,7.569565295,-6.21369927,1.196329061,5.174113919,9.328111345,1.052672208326806e-09 -2572,1993/1/16,0.012756817,7.858312868,-5.073332169,1.278555357,5.204801099,5.557882155,5.26336104163403e-10 -2573,1993/1/17,0.044624948,7.797817269,-3.88956814,1.141937781,5.092104194,4.299508157,2.631680520817015e-10 -2574,1993/1/18,0.000689383,7.715973092,-3.98128246,1.374862381,5.071062695,2.432401029,1.3158402604085074e-10 -2575,1993/1/19,0.0,8.085934005,-5.160497482,1.529094065,5.284504531,1.532293871,6.579201302042537e-11 -2576,1993/1/20,0.048503078,7.953333449,-4.621067801,1.258298175,5.202141861,1.717090109,3.2896006510212685e-11 -2577,1993/1/21,0.003616186,9.613213276,-3.895049055,1.370996407,5.72119609,0.869759432,1.6448003255106342e-11 -2578,1993/1/22,0.003193934,10.06642005,-4.244286881,1.504134145,5.902308972,0.548352484,8.224001627553171e-12 -2579,1993/1/23,0.0,9.003996857,-5.190499676,1.192007395,5.592067968,0.335373007,4.1120008137765856e-12 -2580,1993/1/24,0.002239185,8.737040272,-5.045256606,1.013995753,5.492047186,0.23832489,2.0560004068882928e-12 -2581,1993/1/25,0.022596951,8.847844741,-4.2204712,1.089793032,5.473979731,0.351469281,1.0280002034441464e-12 -2582,1993/1/26,0.614022805,7.542593374,-4.000262195,0.564669726,5.004615998,5.892768122,5.140001017220732e-13 -2583,1993/1/27,0.075752382,3.799605344,-4.260380939,0.554606447,3.753343537,2.198709207,2.570000508610366e-13 -2584,1993/1/28,0.0,3.564812432,-5.820387691,0.725261155,3.842300992,0.836587932,1.285000254305183e-13 -2585,1993/1/29,0.0,6.019804928,-7.91157732,0.372392442,4.731105954,0.484060977,6.425001271525915e-14 -2586,1993/1/30,5.62e-06,8.379092048,-5.989084038,0.644445189,5.413511214,0.310691829,3.2125006357629575e-14 -2587,1993/1/31,0.014481484,10.04908753,-6.193419829,0.581970931,5.9761282,0.305768251,1.6062503178814787e-14 -2588,1993/2/1,0.018341953,10.48273441,-5.882824473,0.673869823,6.110061837,0.275447879,8.031251589407394e-15 -2589,1993/2/2,0.0,8.537262953,-5.763545142,0.642597438,5.450501243,0.125156272,4.015625794703697e-15 -2590,1993/2/3,0.003942759,10.05366915,-4.917114986,0.481671084,5.918233462,0.095895172,2.0078128973518484e-15 -2591,1993/2/4,0.614260681,11.27605345,-5.513054781,0.48117839,6.361664173,3.644713887,1.0039064486759242e-15 -2592,1993/2/5,0.683772451,10.99849953,-5.154816981,1.198170296,6.250138649,5.934998367,5.019532243379621e-16 -2593,1993/2/6,0.076515448,13.28620806,-3.386218483,1.309910927,6.968879227,2.208266697,2.5097661216898105e-16 -2594,1993/2/7,0.209289041,15.06658259,-1.245068719,1.32951957,7.484542967,2.457815231,1.2548830608449053e-16 -2595,1993/2/8,0.154412496,15.48729529,-0.565923887,0.81308339,7.587537251,1.997017853,6.274415304224526e-17 -2596,1993/2/9,0.262464574,15.75496705,0.079249665,1.063411445,7.630468632,2.553300193,3.137207652112263e-17 -2597,1993/2/10,0.009599866,15.92065344,0.975762593,1.191449568,7.60148687,0.931399121,1.5686038260561316e-17 -2598,1993/2/11,0.001955858,15.80629082,1.155752442,1.167487563,7.53277821,0.496876054,7.843019130280658e-18 -2599,1993/2/12,0.012582222,15.02202337,1.897481724,1.301151042,7.121131473,0.369139754,3.921509565140329e-18 -2600,1993/2/13,0.160797771,15.02576335,1.087943658,1.562958158,7.222975474,0.943263605,1.9607547825701645e-18 -2601,1993/2/14,0.759999429,12.40058423,-1.337651745,1.419335218,6.468058611,4.529472693,9.803773912850822e-19 -2602,1993/2/15,2.263532705,14.07936909,-1.315279494,0.91562538,7.093562876,24.04469544,4.901886956425411e-19 -2603,1993/2/16,5.381304994,13.20366512,0.310011792,1.166680574,6.589672031,124.5548256,2.4509434782127056e-19 -2604,1993/2/17,3.097266468,13.51417833,-0.418514152,1.440289293,6.788828448,135.8039853,1.2254717391063528e-19 -2605,1993/2/18,0.552019609,12.93599734,0.159849508,1.507581791,6.498145596,59.05830298,6.127358695531764e-20 -2606,1993/2/19,0.178986579,12.87851502,0.199329559,1.559391292,6.468179195,30.41403418,3.063679347765882e-20 -2607,1993/2/20,0.178180407,12.27071431,0.339512566,1.789439093,6.211418244,21.20932695,1.531839673882941e-20 -2608,1993/2/21,0.200567056,13.02085508,0.595910687,1.701734365,6.468019844,16.6468657,7.659198369414705e-21 -2609,1993/2/22,0.610037689,11.79102283,-0.806502344,1.67026827,6.161606571,23.76580457,3.8295991847073525e-21 -2610,1993/2/23,0.534893848,11.29337194,-3.385889848,1.61290166,6.208999743,21.94958232,1.9147995923536762e-21 -2611,1993/2/24,0.460062583,12.36955479,-3.487076828,1.57644662,6.594671262,18.92184788,9.573997961768381e-22 -2612,1993/2/25,0.904507702,14.1788159,-2.564948641,1.670626021,7.189278259,28.10343185,4.786998980884191e-22 -2613,1993/2/26,0.0139185,14.93987141,-0.392583181,1.925970888,7.303487823,9.383660837,2.3934994904420953e-22 -2614,1993/2/27,0.087220146,14.94403704,-0.469686367,1.857993405,7.308553512,6.535256881,1.1967497452210477e-22 -2615,1993/2/28,0.016502972,15.12609189,-0.052111115,1.551886808,7.335679827,3.745429009,5.983748726105238e-23 -2616,1993/3/1,0.524161314,15.93837906,0.35343516,1.624057471,7.608115333,10.43240475,2.991874363052619e-23 -2617,1993/3/2,0.108678672,14.68583906,0.445240655,1.738257342,7.106274061,4.988746625,1.4959371815263096e-23 -2618,1993/3/3,0.0,15.65924337,-0.614541211,1.377654935,7.579802489,2.177744147,7.479685907631548e-24 -2619,1993/3/4,0.002147004,16.26688096,0.024779622,1.665629149,7.754823825,1.328000481,3.739842953815774e-24 -2620,1993/3/5,0.003006626,15.86146535,-0.25490047,1.456537232,7.618755212,0.875382748,1.869921476907887e-24 -2621,1993/3/6,0.026382379,16.33946935,-0.199990367,1.040156559,7.794298751,0.78122713,9.349607384539435e-25 -2622,1993/3/7,0.284421558,16.82829805,0.619540747,1.208131752,7.906867185,2.671134932,4.674803692269717e-25 -2623,1993/3/8,0.950670778,16.02739967,0.033766569,1.078434507,7.644785723,9.320277706,2.3374018461348587e-25 -2624,1993/3/9,0.640788241,15.88871214,1.486091015,0.888108756,7.435009095,9.097317288,1.1687009230674293e-25 -2625,1993/3/10,0.681569202,16.99809937,1.773896851,0.909822319,7.841443754,10.40513798,5.843504615337147e-26 -2626,1993/3/11,0.496516993,17.42318632,2.311775092,1.34538271,7.946319531,9.03279353,2.9217523076685734e-26 -2627,1993/3/12,0.235573889,13.68321779,1.482352829,1.731623079,6.546924199,5.731570132,1.4608761538342867e-26 -2628,1993/3/13,0.072948531,15.67030553,1.555905927,1.927589665,7.323365525,3.082150487,7.304380769171433e-27 -2629,1993/3/14,0.0066188,15.93366442,1.97616309,1.87295697,7.372644619,1.595136604,3.652190384585717e-27 -2630,1993/3/15,0.209544034,16.74154142,3.959413517,1.944380239,7.419211546,2.733828643,1.8260951922928584e-27 -2631,1993/3/16,0.040037332,16.80740167,3.52895008,1.915094149,7.508643472,1.356547985,9.130475961464292e-28 -2632,1993/3/17,0.038089218,17.0468575,3.419190113,1.877554014,7.620023942,0.927337373,4.565237980732146e-28 -2633,1993/3/18,0.030029163,17.02927369,3.331126855,2.004390297,7.62093441,0.656239624,2.282618990366073e-28 -2634,1993/3/19,0.115989591,15.92955099,3.147205063,2.263213652,7.188765826,0.981721636,1.1413094951830365e-28 -2635,1993/3/20,0.732907133,15.20176127,3.183968384,2.075462756,6.878384979,5.008759353,5.706547475915182e-29 -2636,1993/3/21,2.700635379,14.66555621,2.658925718,1.773971173,6.736126994,32.33983563,2.853273737957591e-29 -2637,1993/3/22,2.302376426,14.44846768,2.733284648,1.833161119,6.632061278,50.64507173,1.4266368689787956e-29 -2638,1993/3/23,1.092584545,15.50566061,2.442413404,1.524720517,7.100778697,37.89087204,7.133184344893978e-30 -2639,1993/3/24,4.143144126,16.33444502,3.933937421,1.808046434,7.213866069,130.5050692,3.566592172446989e-30 -2640,1993/3/25,0.644768705,18.25568494,4.149148662,1.898742632,7.983654484,56.14860363,1.7832960862234945e-30 -2641,1993/3/26,0.98577068,19.10726852,5.488166403,2.099074885,8.135977597,52.15149703,8.916480431117472e-31 -2642,1993/3/27,0.416460487,17.46049981,4.249141319,1.934356324,7.624608344,31.86600422,4.458240215558736e-31 -2643,1993/3/28,0.066081411,17.55437342,3.416307053,1.421709349,7.781195587,15.8747634,2.229120107779368e-31 -2644,1993/3/29,0.000329574,18.23984112,3.292109296,1.4089676,8.075513592,8.911319161,1.114560053889684e-31 -2645,1993/3/30,0.0,19.05474648,3.30176074,1.798560496,8.404858971,5.655565806,5.57280026944842e-32 -2646,1993/3/31,0.271841808,19.09550851,3.831757786,2.10123012,8.349853769,8.214603449,2.78640013472421e-32 -2647,1993/4/1,0.081926144,20.03052152,3.398460751,2.041657136,8.785601361,4.698248907,1.393200067362105e-32 -2648,1993/4/2,0.134750564,20.55389855,4.111633356,1.966212355,8.913046812,4.072803699,6.966000336810525e-33 -2649,1993/4/3,0.139257226,19.72585248,4.397219211,2.067055996,8.523413075,3.44299503,3.483000168405263e-33 -2650,1993/4/4,0.21975022,19.532723,4.444872064,1.668278158,8.430626436,3.763845807,1.7415000842026313e-33 -2651,1993/4/5,0.042798132,19.60776585,4.605143369,1.827049769,8.435007432,1.825530331,8.707500421013157e-34 -2652,1993/4/6,0.041124617,19.07579942,3.716631258,1.630576637,8.327055574,1.234011572,4.353750210506578e-34 -2653,1993/4/7,0.279953883,18.99616794,4.559836963,1.298804199,8.173778032,2.720751274,2.176875105253289e-34 -2654,1993/4/8,2.698022625,16.42783171,4.305958711,1.019334679,7.128439158,32.13539386,1.0884375526266446e-34 -2655,1993/4/9,5.115401284,14.92309014,5.300543223,1.142403447,6.289980756,128.4063515,5.442187763133223e-35 -2656,1993/4/10,4.84612753,15.64476154,3.518074843,1.104349359,6.922922102,217.3431395,2.7210938815666115e-35 -2657,1993/4/11,1.701525655,17.78987203,3.991666026,1.062640244,7.733264824,134.988515,1.3605469407833057e-35 -2658,1993/4/12,2.664956235,17.17882556,5.964615928,1.229973966,7.132977492,169.3793187,6.802734703916529e-36 -2659,1993/4/13,0.832825248,16.89292045,7.024667325,0.959978923,6.775497793,93.59572651,3.401367351958264e-36 -2660,1993/4/14,2.073197104,15.74652402,5.285009109,0.745816868,6.634083142,132.9762783,1.700683675979132e-36 -2661,1993/4/15,0.597617716,17.0027169,4.762999669,1.065860751,7.264638129,72.00121229,8.50341837989566e-37 -2662,1993/4/16,0.223105541,19.55675511,5.549392589,1.454169164,8.219367235,39.88691184,4.25170918994783e-37 -2663,1993/4/17,1.107866734,20.2333604,7.05900814,1.43237521,8.25359067,61.01459457,2.125854594973915e-37 -2664,1993/4/18,1.16878366,19.63734605,6.907574379,1.183559159,8.012173165,63.45337868,1.0629272974869576e-37 -2665,1993/4/19,0.3824744,19.98829824,6.550716549,0.969870035,8.226491435,34.84797076,5.314636487434788e-38 -2666,1993/4/20,0.47541357,20.07552321,5.497054796,0.993935562,8.430613447,29.2288316,2.657318243717394e-38 -2667,1993/4/21,5.604668834,19.5501103,5.652673623,0.615718949,8.177026694,213.8978527,1.328659121858697e-38 -2668,1993/4/22,2.789478239,16.40213995,4.451329711,0.80050966,7.036449565,180.5790218,6.643295609293485e-39 -2669,1993/4/23,2.00135319,19.05887414,5.325347905,1.193190523,8.010388323,150.7593881,3.3216478046467425e-39 -2670,1993/4/24,3.48407395,20.00099757,7.484186891,0.977141857,8.038270512,227.1210695,1.6608239023233713e-39 -2671,1993/4/25,0.405786232,19.86797611,6.521901802,0.982301686,8.151744355,90.59246607,8.304119511616856e-40 -2672,1993/4/26,0.474647438,20.27415731,7.626626979,1.514809938,8.124587822,62.05214655,4.152059755808428e-40 -2673,1993/4/27,0.47388694,21.0800948,7.748808347,1.496469596,8.458714744,48.51119752,2.076029877904214e-40 -2674,1993/4/28,0.542373013,21.73481706,7.683901249,1.282462428,8.758877836,41.61157783,1.038014938952107e-40 -2675,1993/4/29,0.380360672,23.2325538,9.316146477,1.623591191,9.131686742,30.04197374,5.190074694760535e-41 -2676,1993/4/30,2.171551581,22.10540767,10.62083585,1.736099518,8.312831178,79.4393985,2.5950373473802676e-41 -2677,1993/5/1,0.76837089,21.47154603,10.33305636,1.428704514,8.072033732,47.56167456,1.2975186736901338e-41 -2678,1993/5/2,0.340489326,20.22201826,9.625768904,1.15500749,7.640639871,27.45735433,6.487593368450669e-42 -2679,1993/5/3,5.692710444,20.50384108,9.901853479,1.357929058,7.703966188,213.0320855,3.2437966842253345e-42 -2680,1993/5/4,1.50886697,20.35147164,10.02281832,1.259191214,7.596592231,119.497525,1.6218983421126672e-42 -2681,1993/5/5,7.319576498,20.11160468,8.876368791,1.361971761,7.752651514,427.4236026,8.109491710563336e-43 -2682,1993/5/6,3.082446653,22.44838693,9.187946507,1.497072138,8.763511755,310.3357413,4.054745855281668e-43 -2683,1993/5/7,2.759891292,21.73928567,9.631621657,1.676513671,8.336843926,276.4071487,2.027372927640834e-43 -2684,1993/5/8,1.30289459,23.04129347,9.258873698,1.527466738,9.013875119,175.4988221,1.013686463820417e-43 -2685,1993/5/9,0.960816775,22.72188919,10.30224681,1.764078686,8.643798109,124.2339372,5.068432319102085e-44 -2686,1993/5/10,0.470645631,20.74408503,10.25598934,1.969003897,7.705380098,77.32644888,2.5342161595510426e-44 -2687,1993/5/11,0.173420332,20.4349838,10.33219881,2.147616349,7.532610403,45.39428947,1.2671080797755213e-44 -2688,1993/5/12,0.122199138,20.80708388,9.866292808,2.193832967,7.824170472,29.68272722,6.335540398877606e-45 -2689,1993/5/13,0.556979286,21.63857578,10.15540192,1.851537838,8.14766131,35.39277469,3.167770199438803e-45 -2690,1993/5/14,1.46763153,21.45686033,9.57258433,1.608928074,8.191102716,61.90925483,1.5838850997194016e-45 -2691,1993/5/15,1.908224302,21.04026688,9.027372594,1.71600151,8.112913511,83.10525801,7.919425498597008e-46 -2692,1993/5/16,1.362271272,19.88762183,9.610794364,1.368202786,7.435605,71.73297814,3.959712749298504e-46 -2693,1993/5/17,1.473916139,20.04808295,9.651409157,1.519665425,7.498788453,74.73280627,1.979856374649252e-46 -2694,1993/5/18,1.939700398,21.4687857,10.29827423,1.907112425,8.015654457,94.20565823,9.89928187324626e-47 -2695,1993/5/19,1.05841429,20.73876124,10.76242032,1.995769094,7.542139018,67.78285539,4.94964093662313e-47 -2696,1993/5/20,2.594767405,19.96336801,10.48815921,1.266096266,7.232408991,121.3017186,2.474820468311565e-47 -2697,1993/5/21,2.176552695,20.69092681,11.22034572,1.453725132,7.387551126,125.4205394,1.2374102341557825e-47 -2698,1993/5/22,2.31929686,19.61015048,9.224918105,1.621561712,7.380736348,139.9995475,6.187051170778913e-48 -2699,1993/5/23,1.995878708,21.58629475,9.92180872,1.000849225,8.143549082,134.5796521,3.093525585389456e-48 -2700,1993/5/24,3.836420111,19.98128969,10.07365136,1.151519968,7.34003967,231.6789669,1.546762792694728e-48 -2701,1993/5/25,5.486478711,20.82076125,10.47836993,0.986969608,7.638713102,392.1689159,7.73381396347364e-49 -2702,1993/5/26,2.049459921,21.93471635,11.26814271,0.695521638,7.975444575,243.0721744,3.86690698173682e-49 -2703,1993/5/27,28.4520127,22.09661915,12.00871879,0.82170147,7.855114423,3422.9472,3.3801113994028013e-05 -2704,1993/5/28,6.941200906,21.54835608,12.35798786,1.182668037,7.473612809,2004.447019,1.6900529261883896e-05 -2705,1993/5/29,5.118255501,19.170558,12.44204165,0.960111411,6.181689028,1498.129864,8.450264630941948e-06 -2706,1993/5/30,3.636972989,18.6720689,12.43758612,1.787946325,5.904000252,1139.169936,4.225132315470974e-06 -2707,1993/5/31,2.163347178,20.54359284,12.37073595,1.536656235,6.94048855,780.865121,2.112566157735487e-06 -2708,1993/6/1,1.113630574,24.29012525,13.71724323,1.855332557,8.478275276,490.743235,1.0562830788677435e-06 -2709,1993/6/2,6.828872713,22.41236074,13.10964273,1.621284088,7.681922553,1106.982518,5.281415394338718e-07 -2710,1993/6/3,0.28237806,20.9333014,12.04588896,1.176342722,7.237960317,389.0365206,2.640707697169359e-07 -2711,1993/6/4,2.037248731,20.71913946,11.99795582,1.397473675,7.140558077,411.3924375,1.3203538485846794e-07 -2712,1993/6/5,1.971472603,21.34471659,12.24860828,1.1662279,7.383965654,368.396449,6.601769242923397e-08 -2713,1993/6/6,3.984808547,20.49724097,11.72722236,0.985825021,7.105107572,531.1101886,3.3008846214616985e-08 -2714,1993/6/7,0.130499475,21.25409923,11.77916853,1.177420846,7.471312563,189.5417221,1.6504423107308492e-08 -2715,1993/6/8,2.319181563,22.93533369,12.34958533,1.638491762,8.154227708,287.3153303,8.252211553654246e-09 -2716,1993/6/9,3.577737619,22.57467022,12.64486478,1.620222965,7.888410303,392.6939858,4.126105776827123e-09 -2717,1993/6/10,0.850363233,21.28635976,12.16571249,1.437868483,7.369827441,192.7873189,2.0630528884135615e-09 -2718,1993/6/11,4.18966115,19.67144038,11.31449388,1.225365359,6.801108488,396.1706936,1.0315264442067808e-09 -2719,1993/6/12,2.497807737,18.67506855,11.03776335,1.306173264,6.376047225,317.6613267,5.157632221033904e-10 -2720,1993/6/13,0.571565289,18.75603339,11.13148115,0.858950417,6.386488068,153.3244975,2.578816110516952e-10 -2721,1993/6/14,2.077317758,20.65720655,12.16946496,1.159716374,7.039395535,215.4269111,1.289408055258476e-10 -2722,1993/6/15,5.469660753,22.08219438,13.28671737,1.343721039,7.430758778,485.0694056,6.44704027629238e-11 -2723,1993/6/16,4.742002974,22.21113792,14.36290168,1.639666604,7.137199072,533.1844773,3.22352013814619e-11 -2724,1993/6/17,3.862937338,22.49834951,14.25589359,1.455337741,7.33132635,502.0348535,1.611760069073095e-11 -2725,1993/6/18,4.04829597,23.04587847,14.67923306,1.741557752,7.484316637,530.1226835,8.058800345365475e-12 -2726,1993/6/19,2.799602003,23.72222524,14.88678157,2.08811624,7.782732496,427.1205734,4.029400172682737e-12 -2727,1993/6/20,0.544904656,23.9497679,14.68639817,1.477043303,7.970819461,199.897891,2.0147000863413687e-12 -2728,1993/6/21,0.631049358,22.29982174,13.9605632,1.150051749,7.319845553,142.5207063,1.0073500431706843e-12 -2729,1993/6/22,5.61096395,22.39361398,13.38548904,0.839013898,7.555909803,483.3401411,5.036750215853422e-13 -2730,1993/6/23,4.800364947,23.20249365,13.17193192,0.417693648,8.038837366,536.670986,2.518375107926711e-13 -2731,1993/6/24,7.468949211,22.78675667,13.84496612,1.086625636,7.616416366,859.1487338,1.2591875539633554e-13 -2732,1993/6/25,5.168969206,22.09776413,14.69283981,1.615744779,6.945686088,783.6232639,6.295937769816777e-14 -2733,1993/6/26,5.841962816,24.0366669,15.20043544,1.375498176,7.843130953,897.9110938,3.1479688849083886e-14 -2734,1993/6/27,5.647503309,24.11037223,15.65741853,0.906891735,7.725017293,939.9167237,1.5739844424541943e-14 -2735,1993/6/28,25.44956458,24.15247617,15.62978101,0.96055379,7.757855199,4550.050549,0.07797092698416704 -2736,1993/6/29,17.96041245,20.5237487,15.01701709,0.845789501,5.884754231,5433.970217,0.30379358980731924 -2737,1993/6/30,8.447003395,18.90501545,14.34095148,0.914900789,5.184419726,3813.623591,0.25826919660610403 -2738,1993/7/1,6.353256389,19.46503069,14.25766731,1.108511,5.57592993,3009.338599,0.15570990653434985 -2739,1993/7/2,2.052225219,21.45275233,14.42838042,1.363108172,6.67758422,1633.772321,0.07733594986313705 -2740,1993/7/3,2.851382499,21.97773638,14.2652655,1.385517706,7.032356904,1363.148609,0.038667974931568524 -2741,1993/7/4,3.819905214,21.8823338,13.95432928,1.059933816,7.089611028,1329.520467,0.019333987465784262 -2742,1993/7/5,10.04389559,20.43551345,13.39506582,1.388082066,6.4934282,2444.605283,0.12310185831748276 -2743,1993/7/6,9.67180551,20.83003515,12.84457479,0.958752652,6.900096635,2766.251566,0.15751503189341182 -2744,1993/7/7,11.68848858,21.17925384,12.88841895,0.955851321,7.070883773,3489.231975,0.25183744351375026 -2745,1993/7/8,5.330158431,22.18152437,13.72081438,0.972114046,7.331337938,2271.139182,0.12261001254752227 -2746,1993/7/9,6.189313706,22.6203877,14.51642242,1.409855029,7.299331911,2135.352177,0.061305006273761134 -2747,1993/7/10,7.241110014,22.38759591,15.00468391,1.346627023,6.99190462,2249.542476,0.040376377881391576 -2748,1993/7/11,6.519901728,23.98559965,15.44023812,1.127441947,7.732315963,2089.080451,0.019998478480321605 -2749,1993/7/12,12.06616777,23.67951434,15.3815557,0.922209076,7.5830916,3233.862427,0.1805230941528997 -2750,1993/7/13,8.582896878,23.02906368,15.14605019,0.932991055,7.303979733,2856.116729,0.14097050650968773 -2751,1993/7/14,3.390835882,22.64058278,15.3258419,1.111259011,7.016553847,1653.82914,0.06934724841433153 -2752,1993/7/15,2.61206097,22.60659713,15.65981086,1.092514866,6.866398547,1162.468218,0.034673624207165764 -2753,1993/7/16,6.481315201,23.62825741,15.2438257,1.262526685,7.606236073,1636.838697,0.017336812103582882 -2754,1993/7/17,4.607598722,24.00910383,15.43734695,1.584482663,7.75100609,1343.750002,0.008668406051791441 -2755,1993/7/18,4.851897742,23.82792389,15.82382434,1.485502223,7.511443889,1263.588786,0.0043342030258957205 -2756,1993/7/19,10.37330144,23.47178374,15.50561361,1.367949265,7.427527416,2175.102942,0.10321001659975394 -2757,1993/7/20,2.424411993,22.15458878,14.25464988,1.403828981,7.142957149,1066.91662,0.04987207315175316 -2758,1993/7/21,0.779455593,20.30335311,13.78400074,1.27850505,6.280640006,553.6801725,0.02493603657587658 -2759,1993/7/22,7.054988753,22.598576,14.31038782,0.992829545,7.369583697,1281.808344,0.01246801828793829 -2760,1993/7/23,9.6862768,23.69156041,14.7980747,1.09786568,7.801761481,1913.530697,0.0686516811527799 -2761,1993/7/24,5.316332584,22.7059117,15.25426312,0.881639349,7.091692093,1423.113915,0.03329216211813608 -2762,1993/7/25,5.766621095,23.44760039,15.44974982,1.128853776,7.442075816,1406.70221,0.01664608105906804 -2763,1993/7/26,11.26845618,23.90826917,15.68223775,1.120491814,7.619288836,2402.204793,0.12320607586114095 -2764,1993/7/27,13.76760491,23.84423224,15.68695999,0.837728601,7.583025827,3441.289879,0.27566742278774364 -2765,1993/7/28,10.71133412,21.97469057,15.64938802,0.656874639,6.509412093,3352.083092,0.30493891673421764 -2766,1993/7/29,5.100704511,22.77714938,15.89929891,0.960156513,6.886934942,2190.995194,0.14899515684625736 -2767,1993/7/30,6.64432648,22.18542164,15.62348163,1.123485179,6.649951498,2220.550307,0.07449757842312868 -2768,1993/7/31,8.346811918,22.45946692,15.75013876,1.161941461,6.762619567,2559.133671,0.10495818795206165 -2769,1993/8/1,12.66066272,21.99064143,15.21499221,0.875105708,6.705261561,3737.680942,0.31421505585576637 -2770,1993/8/2,10.54120581,20.91017095,14.88910981,1.121368193,6.200434424,3736.727867,0.366737598353737 -2771,1993/8/3,6.12882941,21.48404713,14.87686571,0.966408151,6.548121869,2716.927082,0.17802220097871213 -2772,1993/8/4,5.725378425,22.42875014,15.37373445,1.141364683,6.903918158,2327.195366,0.08901110048935607 -2773,1993/8/5,4.746890157,23.22095772,15.81742396,0.989747198,7.193582035,1898.686092,0.04450555024467803 -2774,1993/8/6,10.20616824,22.88802757,15.75124458,1.171207333,7.027156309,2905.945366,0.17964255801773465 -2775,1993/8/7,16.22583897,21.26879236,15.25665961,0.873821039,6.268047791,4870.669215,0.6075247304858167 -2776,1993/8/8,3.562232113,21.07358002,15.01230307,0.875155356,6.257250588,2323.979912,0.2901013989241513 -2777,1993/8/9,3.278498926,21.6664325,15.29512022,1.242997186,6.495771828,1667.378021,0.14505069946207566 -2778,1993/8/10,1.606541057,21.89423856,15.29532929,1.415906951,6.633769316,1040.156668,0.07252534973103783 -2779,1993/8/11,1.686874296,23.14821141,15.55763238,1.694146052,7.265481879,795.2304071,0.036262674865518915 -2780,1993/8/12,7.615945802,23.46773577,15.65566433,1.288703672,7.414741294,1628.161359,0.028245110373422134 -2781,1993/8/13,12.15293988,23.01564843,15.5107877,1.054081675,7.212010771,2733.387764,0.2631264803612499 -2782,1993/8/14,5.825829913,22.56767315,15.32968062,0.862157483,7.025086696,1913.863899,0.1252760008094181 -2783,1993/8/15,3.431216955,22.06032752,15.52705254,0.961225535,6.648671577,1285.568842,0.06263800040470904 -2784,1993/8/16,16.67940498,22.48268575,14.82097447,0.855693661,7.174819545,3856.947941,0.5162256818418166 -2785,1993/8/17,5.625775502,21.22533182,14.83258927,0.738453475,6.44429377,2308.207169,0.24574331194425628 -2786,1993/8/18,9.342583113,21.83889993,14.87290361,0.998528568,6.791102128,2854.582746,0.27279457656938366 -2787,1993/8/19,3.067537702,20.11370626,15.21748114,1.186048396,5.587048235,1587.65494,0.13199261463582845 -2788,1993/8/20,9.169389802,21.34740386,15.09279245,1.276698087,6.416049247,2575.524991,0.2270670329033252 -2789,1993/8/21,22.40002936,21.16141779,14.89300032,1.385054377,6.391396032,6697.169238,1.084400019788224 -2790,1993/8/22,9.732936876,20.69624552,14.38095732,1.044215587,6.330439868,4734.289629,0.7678572665864012 -2791,1993/8/23,14.13557978,18.86535681,13.98393445,1.103188103,5.392463083,5951.818278,1.0560326133290963 -2792,1993/8/24,1.680755794,19.75702861,13.88070309,0.929048726,5.987296374,2407.353529,0.5014411819323082 -2793,1993/8/25,5.601986953,20.82540829,13.59447961,0.795012565,6.719643903,2578.286105,0.2507205909661541 -2794,1993/8/26,15.75046827,21.2302413,13.71195291,0.764591663,6.906083961,5303.578378,0.8330323983982283 -2795,1993/8/27,6.524556502,20.74694527,14.00311468,0.574068947,6.525886566,3392.635762,0.38820445992209407 -2796,1993/8/28,3.408635116,20.73390666,12.82222048,0.401554171,6.951650278,2090.064972,0.19410222996104703 -2797,1993/8/29,8.393721144,20.27898742,11.21214997,0.140300561,7.223030072,2829.904272,0.19533653058582756 -2798,1993/8/30,2.76827902,19.22045165,10.85379043,0.053890918,6.795223011,1586.376001,0.09354248730085811 -2799,1993/8/31,2.008710926,19.02366474,11.17404867,0.237184704,6.597452563,1064.055386,0.046771243650429055 -2800,1993/9/1,16.07055092,18.37060464,11.51608004,0.120982573,6.138950257,3745.884811,0.786777553356495 -2801,1993/9/2,13.46752878,18.21386827,10.71769323,0.098920713,6.329334504,4374.554333,0.973140713488775 -2802,1993/9/3,15.24231306,19.12745289,10.84808135,0.401323399,6.762736354,5601.039738,1.2347729164107237 -2803,1993/9/4,5.414436025,20.5715315,11.41480846,1.025404179,7.333800706,3195.999066,0.5820445683721724 -2804,1993/9/5,5.724750727,20.70849582,12.82115559,1.020566546,6.965466673,2636.171649,0.2910222841860862 -2805,1993/9/6,7.185840028,19.44615163,13.18141499,0.366274945,6.129914935,2703.989772,0.24597420615996168 -2806,1993/9/7,4.013589041,20.30653065,13.14697873,0.561509848,6.635849512,1883.65083,0.11820796329600292 -2807,1993/9/8,1.622343793,20.54523593,12.33223232,0.606914741,7.051691295,1089.966455,0.05910398164800146 -2808,1993/9/9,1.701504765,20.64041082,11.31854019,0.498980901,7.415795392,815.2162003,0.02955199082400073 -2809,1993/9/10,7.266227991,19.95435806,11.6083272,0.390696718,6.979462545,1561.534414,0.03894445299445068 -2810,1993/9/11,3.773131553,19.90428132,11.85931399,0.661772306,6.876600895,1119.017832,0.018453773350128426 -2811,1993/9/12,7.431609065,20.9856255,12.58992789,1.163519548,7.217748134,1604.352335,0.026638701172126338 -2812,1993/9/13,7.37137915,21.06266841,13.19740691,0.843943043,7.05898581,1742.805732,0.038100899899117746 -2813,1993/9/14,1.603943464,22.51190168,13.79795662,0.837207338,7.652267818,822.8988217,0.018010481956232737 -2814,1993/9/15,2.06220555,22.69214693,13.36594832,0.996786591,7.893164259,649.7639561,0.009005240978116369 -2815,1993/9/16,2.760468873,22.12865398,12.88563683,0.593707798,7.747717603,631.8475569,0.004502620489058184 -2816,1993/9/17,12.02220529,21.15400049,12.6848861,0.120131487,7.296897612,1893.008561,0.33389762144650825 -2817,1993/9/18,3.630509719,20.6969765,12.83915398,0.432968319,7.001905855,1070.044069,0.15531049177886394 -2818,1993/9/19,4.288944374,19.39796764,12.80353251,0.217995655,6.294092101,995.3995011,0.07765524588943197 -2819,1993/9/20,2.63457011,20.78198077,13.01870362,0.178252394,6.99419011,723.8041273,0.038827622944715985 -2820,1993/9/21,1.426186227,20.54944519,11.24528115,0.371734279,7.439830555,467.244165,0.019413811472357993 -2821,1993/9/22,2.295141829,20.84302601,10.54334615,0.33073177,7.784759342,467.2271702,0.009706905736178996 -2822,1993/9/23,0.078800103,20.3675835,10.77640851,0.220251236,7.489354819,196.3408159,0.004853452868089498 -2823,1993/9/24,1.277071116,21.37772538,11.23078107,0.598675064,7.876856034,220.8018276,0.002426726434044749 -2824,1993/9/25,7.228827096,20.88232915,12.38816315,0.612136266,7.281009274,746.900927,0.0012133632170223745 -2825,1993/9/26,1.326045058,21.03874746,12.20808664,1.013102035,7.425585611,336.2303531,0.0006066816085111873 -2826,1993/9/27,0.919629255,19.58483778,12.42165258,0.882131061,6.571196635,211.3866761,0.00030334080425559363 -2827,1993/9/28,2.136552246,20.34245352,11.48227605,1.131862487,7.292843939,264.6854787,0.00015167040212779682 -2828,1993/9/29,4.131765864,20.32749191,11.22661871,0.798307183,7.365881644,426.5569536,7.583520106389841e-05 -2829,1993/9/30,10.15935888,18.83081396,10.51611186,0.418948964,6.813137798,1109.832089,0.14518969380872995 -2830,1993/10/1,1.525893557,16.77380798,10.23894437,0.327044287,5.826414155,463.8568939,0.06944666308445399 -2831,1993/10/2,4.972506759,17.02127654,11.01235186,0.676528752,5.681470995,709.3344708,0.034723331542226996 -2832,1993/10/3,1.827828235,15.92936969,9.298786116,0.811868705,5.708368186,428.9059058,0.017361665771113498 -2833,1993/10/4,1.58523742,16.54191947,7.81970915,0.614789676,6.45764384,331.4426219,0.008680832885556749 -2834,1993/10/5,0.056378412,18.17428503,8.138955785,0.427393356,7.156370574,143.3144893,0.0043404164427783744 -2835,1993/10/6,0.047783646,18.52463869,8.05571678,0.611671698,7.345202854,85.87448178,0.0021702082213891872 -2836,1993/10/7,0.087814044,18.82256766,9.000959744,1.057273465,7.26101664,59.3169038,0.0010851041106945936 -2837,1993/10/8,0.0492123,19.42062089,9.17787286,1.050283644,7.510085226,38.80148896,0.0005425520553472968 -2838,1993/10/9,0.057749828,20.5744169,9.438495177,1.126011976,8.007926025,26.66889157,0.0002712760276736484 -2839,1993/10/10,0.251747724,21.02371562,10.21709862,1.175533252,8.040996884,26.95737155,0.0001356380138368242 -2840,1993/10/11,0.170545546,19.90468852,10.40074731,1.418694282,7.439636144,19.35441909,6.78190069184121e-05 -2841,1993/10/12,0.065807254,19.62792955,9.565268408,1.290431682,7.530422377,11.56133529,3.390950345920605e-05 -2842,1993/10/13,0.121681528,20.44805374,9.844540005,1.041656367,7.865918329,9.795578559,1.6954751729603025e-05 -2843,1993/10/14,0.497734959,19.13300232,9.62362848,0.746290079,7.279659509,17.79736833,8.477375864801513e-06 -2844,1993/10/15,0.173859768,19.11234,9.106299628,1.038497683,7.409241003,10.20588886,4.238687932400756e-06 -2845,1993/10/16,0.04236074,18.63849575,9.014777291,0.828783378,7.2061293,5.155838009,2.119343966200378e-06 -2846,1993/10/17,0.439039161,19.04862269,9.055067943,0.519653053,7.399867411,11.20538466,1.059671983100189e-06 -2847,1993/10/18,0.560551426,18.39688486,9.269000699,0.577654073,7.027565284,14.12375244,5.298359915500945e-07 -2848,1993/10/19,0.407745382,16.43586761,8.406530573,0.746455106,6.30059726,11.77685542,2.6491799577504727e-07 -2849,1993/10/20,4.230531253,15.89633022,8.035408711,0.982889676,6.143762527,106.3511625,1.3245899788752363e-07 -2850,1993/10/21,6.12890085,15.31129087,6.244765553,0.926701058,6.338400211,270.3912117,6.622949894376182e-08 -2851,1993/10/22,2.83568011,14.22187836,5.519747242,0.479453757,6.016007294,214.5185792,3.311474947188091e-08 -2852,1993/10/23,3.625173989,14.87066511,5.983372055,0.952650886,6.205386093,273.7879263,1.6557374735940454e-08 -2853,1993/10/24,0.776265673,14.07019257,5.199242887,1.025821076,6.029047433,130.3120155,8.278687367970227e-09 -2854,1993/10/25,0.516420205,14.72565306,5.197713727,1.029462744,6.326319678,82.98283809,4.1393436839851136e-09 -2855,1993/10/26,0.380611785,15.813426,6.491020267,0.962793202,6.52969635,58.13390302,2.0696718419925568e-09 -2856,1993/10/27,1.386661934,15.87987023,6.406877056,0.650617047,6.58384357,92.88862292,1.0348359209962784e-09 -2857,1993/10/28,2.027319573,15.71090743,5.894846385,0.447406212,6.626788792,128.1637873,5.174179604981392e-10 -2858,1993/10/29,48.7426807,14.29226843,6.06721396,0.249011404,5.937097984,7450.953079,0.5091690528314703 -2859,1993/10/30,8.039350906,11.51354459,3.710128494,0.300767348,5.255017151,3858.759024,0.40104219437263444 -2860,1993/10/31,0.805095546,10.14836631,0.989568863,0.508567982,5.238261516,1482.151585,0.19650828020416786 -2861,1993/11/1,0.334651535,11.59675494,0.901976846,0.308623519,5.828391825,820.7408236,0.09825414010208393 -2862,1993/11/2,0.080035005,12.66794509,0.272203805,0.300580964,6.335711372,500.1156521,0.049127070051041964 -2863,1993/11/3,0.583678414,12.72284253,0.584473507,0.406086685,6.320315544,403.6380093,0.024563535025520982 -2864,1993/11/4,0.26171307,12.23278162,-0.544242055,0.543908618,6.273069637,259.8856632,0.012281767512760491 -2865,1993/11/5,0.552720893,12.03681253,-0.202451301,0.714718644,6.161726885,214.7083372,0.0061408837563802455 -2866,1993/11/6,0.552539518,14.0361919,1.127877028,0.697902288,6.775526372,168.5714432,0.0030704418781901228 -2867,1993/11/7,0.736713386,14.32255382,1.250450079,0.807333184,6.876750072,150.6308356,0.0015352209390950614 -2868,1993/11/8,0.001094183,13.71773845,1.180608442,0.844589817,6.649073557,67.0889899,0.0007676104695475307 -2869,1993/11/9,0.090122149,14.34380455,1.37086317,0.885212858,6.876358226,46.30153443,0.00038380523477376535 -2870,1993/11/10,0.084288564,14.19249879,-1.228782121,0.844077406,7.098721839,32.43964418,0.00019190261738688267 -2871,1993/11/11,0.036186086,13.422523,-1.433785215,0.40787165,6.830858681,20.58223746,9.595130869344134e-05 -2872,1993/11/12,0.987009355,13.28764914,-0.343087802,0.676363862,6.677607152,60.62602984,4.797565434672067e-05 -2873,1993/11/13,0.48858745,12.75767977,-0.042777137,0.822039594,6.443423151,41.75191878,2.3987827173360334e-05 -2874,1993/11/14,0.323560842,13.24479632,1.18812647,0.996872421,6.478757633,29.03667505,1.1993913586680167e-05 -2875,1993/11/15,0.04851851,13.09274254,0.207884992,1.159563761,6.5489684,13.86170528,5.9969567933400835e-06 -2876,1993/11/16,0.079310386,13.52641771,0.577087153,0.533633569,6.676100229,10.12282918,2.9984783966700418e-06 -2877,1993/11/17,0.9833178,12.26914019,2.272454547,0.565024683,5.920097271,35.98635237,1.4992391983350209e-06 -2878,1993/11/18,0.98870865,13.18636433,2.967155609,0.92505244,6.180713877,41.64252861,7.496195991675104e-07 -2879,1993/11/19,0.071977994,14.14685555,3.361255337,1.25114987,6.518646261,14.96865941,3.748097995837552e-07 -2880,1993/11/20,0.000595377,13.69648634,0.441659672,0.87545656,6.770677253,7.18583641,1.874048997918776e-07 -2881,1993/11/21,1.638893822,12.36686839,-0.460489776,0.676606802,6.364347178,47.22921833,9.37024498959388e-08 -2882,1993/11/22,0.002440928,12.98955101,0.65448998,0.8491184,6.471905671,13.2227928,4.68512249479694e-08 -2883,1993/11/23,0.743991226,13.31686404,0.481350314,0.582414909,6.625167544,24.42217172,2.34256124739847e-08 -2884,1993/11/24,0.246193054,11.82609076,-0.195033392,1.069337107,6.132632106,13.99537858,1.171280623699235e-08 -2885,1993/11/25,0.011708109,12.11985325,-1.51416931,0.632557001,6.391728825,6.099102028,5.856403118496175e-09 -2886,1993/11/26,0.437161989,11.58139643,-0.691442803,0.423328732,6.103841717,11.99870077,2.9282015592480877e-09 -2887,1993/11/27,0.018819688,12.19594584,0.195048482,0.661961378,6.232974343,4.625793368,1.4641007796240438e-09 -2888,1993/11/28,0.360587478,13.36154946,0.867938426,0.799762845,6.605605075,8.492082775,7.320503898120219e-10 -2889,1993/11/29,0.344238413,13.62024693,1.589548613,0.817978253,6.611877893,8.514944171,3.6602519490601096e-10 -2890,1993/11/30,1.667502292,13.84982448,1.291564824,0.822804155,6.748466062,32.51983844,1.8301259745300548e-10 -2891,1993/12/1,0.197544498,14.56752095,2.483620548,1.162530067,6.871184029,12.41066273,9.150629872650274e-11 -2892,1993/12/2,0.047672745,13.62803673,1.083774439,1.115478413,6.691926058,5.839622183,4.575314936325137e-11 -2893,1993/12/3,0.14558662,13.63930848,0.398041546,0.818047724,6.785259981,5.373392932,2.2876574681625685e-11 -2894,1993/12/4,0.1006192,13.60463442,0.320672306,0.79994484,6.782889006,3.915624046,1.1438287340812842e-11 -2895,1993/12/5,0.344525773,14.14058558,0.040442259,0.633091694,7.026288247,6.320179998,5.719143670406421e-12 -2896,1993/12/6,0.031512073,12.95573257,0.912485826,0.459963224,6.454624855,2.581441658,2.8595718352032106e-12 -2897,1993/12/7,0.00032991,12.81736474,0.745678664,0.593729928,6.424128536,1.295970434,1.4297859176016053e-12 -2898,1993/12/8,0.040154818,13.82215973,0.078081246,0.939795877,6.903527836,1.188798351,7.148929588008027e-13 -2899,1993/12/9,0.000748647,12.82961066,-1.748513369,0.685696613,6.70668885,0.619660892,3.574464794004013e-13 -2900,1993/12/10,1.02718055,12.57911117,-1.730926431,0.736238345,6.613198752,9.959429817,1.7872323970020066e-13 -2901,1993/12/11,0.585516307,12.1947664,0.250872956,1.197757864,6.251026445,8.932384459,8.936161985010033e-14 -2902,1993/12/12,0.013043172,13.11963432,0.417774472,1.212446974,6.594289786,2.846041345,4.4680809925050166e-14 -2903,1993/12/13,0.025824208,12.27083735,0.470883539,0.99225282,6.254287342,1.677825364,2.2340404962525083e-14 -2904,1993/12/14,0.246570463,13.07508984,0.680338357,1.256879131,6.545737062,3.168865765,1.1170202481262541e-14 -2905,1993/12/15,1.542465271,11.86122965,-0.321067832,1.104129979,6.199336474,18.21672026,5.585101240631271e-15 -2906,1993/12/16,2.671835635,10.42940139,-0.716524852,0.665111579,5.700982595,50.37495749,2.7925506203156354e-15 -2907,1993/12/17,0.072784741,8.114413308,-1.828723434,0.88146995,4.978212755,14.62277007,1.3962753101578177e-15 -2908,1993/12/18,0.0,8.170296467,-2.685071985,0.775059362,5.103001381,6.532531463,6.981376550789088e-16 -2909,1993/12/19,0.017823812,9.299440805,-2.579868346,0.901962108,5.499482551,4.287174398,3.490688275394544e-16 -2910,1993/12/20,0.140007443,10.0206037,-1.872868839,0.672101695,5.689284375,4.794506707,1.745344137697272e-16 -2911,1993/12/21,0.671033958,9.685916407,-1.721195406,0.810876443,5.549179969,12.4352313,8.72672068848636e-17 -2912,1993/12/22,0.116435304,8.614014229,-3.21948625,0.902713284,5.319151022,5.544321607,4.36336034424318e-17 -2913,1993/12/23,0.005654212,8.898446446,-4.208002485,0.499521341,5.502419036,2.44001907,2.18168017212159e-17 -2914,1993/12/24,0.0,8.251285357,-5.911448746,0.402281738,5.38670057,1.425415714,1.090840086060795e-17 -2915,1993/12/25,0.0,8.966945841,-6.87662858,0.289195741,5.660442671,0.914151568,5.454200430303975e-18 -2916,1993/12/26,0.005449043,9.226454284,-7.66239899,0.403191333,5.76305582,0.650089467,2.7271002151519876e-18 -2917,1993/12/27,0.0,9.023664408,-6.982767213,0.468608033,5.682872717,0.400158265,1.3635501075759938e-18 -2918,1993/12/28,0.008232967,10.21844506,-5.924079516,0.647366527,6.049012185,0.326519459,6.817750537879969e-19 -2919,1993/12/29,0.003084596,10.8749121,-4.981950271,1.019752304,6.235798984,0.207235596,3.4088752689399846e-19 -2920,1993/12/30,0.007731269,11.63608916,-4.081609765,0.761886994,6.457236279,0.173903696,1.7044376344699923e-19 -2921,1993/12/31,0.090940631,11.56443126,-3.673953189,0.887633603,6.407706655,0.650445904,8.522188172349961e-20 -2922,1994/1/1,0.07915275,11.8027396,-2.792643325,1.170324075,6.432620564,0.646976544,4.261094086174981e-20 -2923,1994/1/2,0.008927442,12.63450508,-2.717609268,1.131478746,6.731427877,0.252194621,2.1305470430874904e-20 -2924,1994/1/3,0.042176087,12.79528449,-2.298871792,1.02957126,6.759597413,0.319692038,1.0652735215437452e-20 -2925,1994/1/4,0.003857096,12.54058169,-3.337276256,1.237641511,6.738286832,0.137986123,5.326367607718726e-21 -2926,1994/1/5,0.68574907,11.56217497,-2.682721652,1.023964668,6.336101994,3.491531057,2.663183803859363e-21 -2927,1994/1/6,0.605635886,11.83951988,-1.930933815,1.149312819,6.373610342,4.850033038,1.3315919019296815e-21 -2928,1994/1/7,0.416103987,9.715314906,-3.070890629,1.031373066,5.700837282,4.482851788,6.657959509648407e-22 -2929,1994/1/8,0.008554119,10.62911287,-3.684134648,0.97627273,6.074234734,1.478916708,3.3289797548242037e-22 -2930,1994/1/9,0.010839552,11.40717466,-4.643172311,1.239946117,6.404489871,0.832790618,1.6644898774121018e-22 -2931,1994/1/10,0.028447961,11.83731647,-4.335590075,1.08199397,6.540344734,0.667459573,8.322449387060509e-23 -2932,1994/1/11,0.008703806,13.00759114,-2.57923491,1.483522096,6.856117655,0.406260253,4.1612246935302546e-23 -2933,1994/1/12,0.007023515,13.66306993,-1.523856459,1.4633199,7.018456466,0.269789573,2.0806123467651273e-23 -2934,1994/1/13,2.86e-07,14.33585485,-1.276880179,1.512813463,7.252483736,0.158587859,1.0403061733825636e-23 -2935,1994/1/14,0.033787894,14.01402816,-1.434316282,1.547891203,7.142296308,0.229313317,5.201530866912818e-24 -2936,1994/1/15,0.634143258,13.74065008,-0.624735715,1.713853691,6.963154982,2.941512992,2.600765433456409e-24 -2937,1994/1/16,0.426222976,12.83414854,1.407823459,1.845243933,6.352788962,3.15884901,1.3003827167282046e-24 -2938,1994/1/17,0.221084456,12.01500208,-1.824107141,1.691619068,6.422202791,2.268826247,6.501913583641023e-25 -2939,1994/1/18,0.001621809,11.62451028,-2.136351127,1.416617324,6.304731078,0.797294846,3.2509567918205114e-25 -2940,1994/1/19,1.61e-05,11.9141375,-1.512427834,1.543527342,6.352778232,0.435965795,1.6254783959102557e-25 -2941,1994/1/20,0.007314874,12.16187527,-3.081557462,1.390014644,6.573346088,0.310942663,8.127391979551278e-26 -2942,1994/1/21,0.000748547,12.34447261,-3.114290457,1.63328736,6.640548403,0.191193143,4.063695989775639e-26 -2943,1994/1/22,0.0,11.68479353,-3.766916754,1.098307045,6.443397318,0.121449162,2.0318479948878196e-26 -2944,1994/1/23,0.005505024,8.938810724,-3.400922471,1.080006757,5.442047799,0.096685684,1.0159239974439098e-26 -2945,1994/1/24,0.006428738,10.56409798,-2.83234313,1.068112565,5.971352546,0.074677403,5.079619987219549e-27 -2946,1994/1/25,0.062275274,10.75488799,-2.441122167,1.021217945,6.004732928,0.213580842,2.5398099936097745e-27 -2947,1994/1/26,0.462082984,12.14845357,-0.997392364,1.04513128,6.379008554,1.640778064,1.2699049968048873e-27 -2948,1994/1/27,1.006012413,12.9095345,-0.320969454,1.318424559,6.594641348,5.957627329,6.349524984024436e-28 -2949,1994/1/28,0.050208973,14.06521188,0.610396465,1.73688912,6.936535146,1.8498567,3.174762492012218e-28 -2950,1994/1/29,0.035958322,14.88090639,0.511569969,1.607138723,7.268655935,0.992849269,1.587381246006109e-28 -2951,1994/1/30,0.173625249,14.44741452,2.25512578,1.908181598,6.865532654,1.479552275,7.936906230030545e-29 -2952,1994/1/31,0.295761561,12.4110925,0.470453519,1.69335548,6.29613768,2.230903459,3.9684531150152727e-29 -2953,1994/2/1,0.823508723,12.30680778,-1.213792561,1.003148519,6.45067278,6.44557254,1.9842265575076364e-29 -2954,1994/2/2,4.637591085,10.37218354,-0.881967179,1.359014771,5.681473152,74.55944307,9.921132787538182e-30 -2955,1994/2/3,3.880331986,10.56030377,-1.362319423,1.067101584,5.808044189,129.5903252,4.960566393769091e-30 -2956,1994/2/4,0.337453907,10.56210038,-2.488152671,1.228426235,5.922114842,45.99758966,2.4802831968845454e-30 -2957,1994/2/5,0.015077402,12.21286117,-2.984856629,1.301729322,6.55751144,19.90424324,1.2401415984422727e-30 -2958,1994/2/6,0.02519553,13.01315012,-2.810658842,1.198038186,6.834344256,12.409546,6.200707992211364e-31 -2959,1994/2/7,0.001260059,13.25209964,-4.797460079,1.254779172,7.018191844,7.736827425,3.100353996105682e-31 -2960,1994/2/8,0.004354955,13.59699205,-3.901359039,1.132320353,7.102308525,5.072815471,1.550176998052841e-31 -2961,1994/2/9,1.539366954,12.90476308,-1.0292832,1.526975552,6.640386469,35.04342441,7.750884990264204e-32 -2962,1994/2/10,0.234754968,12.54398766,-2.019738994,1.748409844,6.593076053,14.71806645,3.875442495132102e-32 -2963,1994/2/11,0.052486364,11.93798703,-3.322869843,1.457619469,6.467201446,6.9318437,1.937721247566051e-32 -2964,1994/2/12,0.119444028,12.62395901,-2.356001045,1.570760189,6.644327639,5.783372032,9.688606237830256e-33 -2965,1994/2/13,0.143395647,12.27085312,-3.239339307,1.708213636,6.576022025,5.092960464,4.844303118915128e-33 -2966,1994/2/14,0.015758719,12.54718087,-2.721469041,1.357115708,6.638019026,2.502416374,2.422151559457564e-33 -2967,1994/2/15,0.175280498,13.28718586,-3.109534035,1.46704227,6.929286471,3.672595674,1.211075779728782e-33 -2968,1994/2/16,0.086485601,13.08499987,-3.615519495,1.501885688,6.882098691,2.46046894,6.05537889864391e-34 -2969,1994/2/17,0.007786605,13.89556352,-1.787759529,1.893041418,7.056599751,1.149178558,3.027689449321955e-34 -2970,1994/2/18,0.065157758,13.40086381,-2.04273416,1.838931006,6.889418789,1.263877234,1.5138447246609774e-34 -2971,1994/2/19,0.017540984,13.33918209,-3.75569858,1.777879685,6.971364226,0.710495663,7.569223623304887e-35 -2972,1994/2/20,0.058887123,14.72875734,-3.595988748,1.41509285,7.461909834,0.813054175,3.7846118116524436e-35 -2973,1994/2/21,0.018593798,15.64718096,-1.51610096,1.948778167,7.681377424,0.461753456,1.8923059058262218e-35 -2974,1994/2/22,0.611525361,15.03348179,0.403793427,2.271187261,7.27469409,4.446181815,9.461529529131109e-36 -2975,1994/2/23,0.142570897,13.61365294,-1.682313698,2.017357539,6.924271671,2.184722776,4.7307647645655545e-36 -2976,1994/2/24,0.057310768,13.81935525,-2.199051862,1.379658131,7.036183341,1.167067527,2.3653823822827773e-36 -2977,1994/2/25,0.371582969,13.84926432,-1.421407264,1.54761753,6.984115974,2.994517235,1.1826911911413886e-36 -2978,1994/2/26,0.007820685,13.45860716,-1.408593275,1.514273864,6.833680068,0.964320528,5.913455955706943e-37 -2979,1994/2/27,0.032386094,14.35096715,0.064652108,1.605710474,7.027940656,0.665650232,2.9567279778534716e-37 -2980,1994/2/28,0.854405251,14.03754914,1.220238995,1.65201143,6.765518436,5.978334663,1.4783639889267358e-37 -2981,1994/3/1,0.227793895,13.74363137,0.768225973,1.811081465,6.703885357,3.289507429,7.391819944633679e-38 -2982,1994/3/2,0.058408732,13.38778576,-0.969755357,1.052926615,6.753798573,1.564424977,3.6959099723168395e-38 -2983,1994/3/3,0.123380311,12.9773746,-0.854441368,1.188626955,6.58485652,1.553781524,1.8479549861584197e-38 -2984,1994/3/4,0.015645175,14.26671531,-0.848933805,1.681060169,7.066759509,0.741829376,9.239774930792099e-39 -2985,1994/3/5,0.008539542,14.57546475,-1.163521394,1.861685889,7.206346136,0.446016159,4.619887465396049e-39 -2986,1994/3/6,0.043924895,15.35617502,-0.567836827,1.810790977,7.448187814,0.47493449,2.3099437326980247e-39 -2987,1994/3/7,0.066617568,16.26489814,0.062024622,1.861032648,7.738387916,0.511851484,1.1549718663490123e-39 -2988,1994/3/8,0.196274132,16.85444749,0.697980397,1.962768372,7.905400076,1.037300904,5.774859331745062e-40 -2989,1994/3/9,0.02259705,16.3105461,-0.643608136,1.522937456,7.806688095,0.407436323,2.887429665872531e-40 -2990,1994/3/10,0.074316174,16.43117453,0.075062357,1.811815883,7.789027321,0.455141789,1.4437148329362654e-40 -2991,1994/3/11,0.160393826,15.76134761,1.39737269,2.05287021,7.386615158,0.747010254,7.218574164681327e-41 -2992,1994/3/12,0.13289932,16.53955488,0.474985677,1.702251309,7.785975891,0.714008179,3.6092870823406635e-41 -2993,1994/3/13,0.386511221,16.69336337,0.959801588,1.685625517,7.79451308,1.778170817,1.8046435411703318e-41 -2994,1994/3/14,0.104949564,16.29212215,1.73316952,1.64585621,7.54606678,0.942109751,9.023217705851659e-42 -2995,1994/3/15,0.163777993,16.94743038,3.36140955,1.687583461,7.595686524,1.026094096,4.5116088529258294e-42 -2996,1994/3/16,1.130609149,16.86515024,3.684970309,1.217788948,7.509395726,6.933850727,2.2558044264629147e-42 -2997,1994/3/17,1.562331455,17.09608324,3.207567637,1.200538993,7.670324167,16.68231464,1.1279022132314574e-42 -2998,1994/3/18,0.146978686,17.87565746,2.855735306,1.451892347,8.033056674,6.011339897,5.639511066157287e-43 -2999,1994/3/19,0.056327075,18.36090086,4.593044741,1.226063532,7.989795017,3.016610305,2.8197555330786434e-43 -3000,1994/3/20,0.621243269,18.71697326,4.760116162,1.383919515,8.111628506,7.546691828,1.4098777665393217e-43 -3001,1994/3/21,4.533946795,16.72508545,4.807875869,1.418617224,7.244644876,80.64226462,7.049388832696608e-44 -3002,1994/3/22,6.442577047,15.49351296,3.940264454,0.681288484,6.867071465,238.8697745,3.524694416348304e-44 -3003,1994/3/23,0.988929053,10.98802865,3.004189539,0.469497566,5.141099062,103.2719775,1.762347208174152e-44 -3004,1994/3/24,0.205959667,9.784994113,2.67774726,0.933989222,4.698308005,46.9723246,8.81173604087076e-45 -3005,1994/3/25,0.666883335,10.96035414,2.519568548,0.761910493,5.225437495,49.7419567,4.40586802043538e-45 -3006,1994/3/26,1.104457099,11.56275782,4.136886333,0.797933746,5.119882763,63.10839728,2.20293401021769e-45 -3007,1994/3/27,1.348882399,10.10477007,2.824497205,0.668845945,4.792848212,74.85443368,1.101467005108845e-45 -3008,1994/3/28,1.371971618,10.22838828,2.202185574,0.884569876,4.977746305,80.2670562,5.507335025544225e-46 -3009,1994/3/29,3.571268792,13.57866612,2.470803939,0.966016772,6.293388819,189.8663042,2.7536675127721127e-46 -3010,1994/3/30,5.014937633,14.91561222,2.971853352,1.096839001,6.754128507,334.3170043,1.3768337563860563e-46 -3011,1994/3/31,0.618221158,15.99361515,4.002015158,0.805472734,7.030224972,130.0556315,6.884168781930282e-47 -3012,1994/4/1,5.508399427,16.70613884,5.478977317,1.029853207,7.06617099,399.6794862,3.442084390965141e-47 -3013,1994/4/2,1.226986655,16.56413993,4.037688109,1.08071802,7.255057304,196.5466932,1.7210421954825704e-47 -3014,1994/4/3,0.32439208,17.36574943,3.607048516,1.1241985,7.649200705,96.28147134,8.605210977412852e-48 -3015,1994/4/4,0.063478708,16.18015156,1.906604966,1.26088758,7.389180932,52.50053947,4.302605488706426e-48 -3016,1994/4/5,0.301318611,17.9695556,2.753029345,1.32048117,7.999213551,45.11557247,2.151302744353213e-48 -3017,1994/4/6,0.067456051,18.72526576,4.191383874,1.515222083,8.11748187,26.13747115,1.0756513721766065e-48 -3018,1994/4/7,0.064326074,19.18117171,5.183578792,1.586070195,8.158649928,17.38604297,5.3782568608830326e-49 -3019,1994/4/8,0.005060045,20.35933095,6.9044469,1.728852012,8.380714868,10.37765657,2.6891284304415163e-49 -3020,1994/4/9,0.098678018,21.53382893,8.024330876,1.853344054,8.699105851,9.032024151,1.3445642152207581e-49 -3021,1994/4/10,0.26401224,21.59632173,8.626301267,2.027632099,8.605536437,10.59756618,6.722821076103791e-50 -3022,1994/4/11,0.725099389,20.69008173,8.205051971,1.935893606,8.26801249,19.05394896,3.3614105380518954e-50 -3023,1994/4/12,6.784251936,20.48829437,7.909825249,1.671991388,8.230159279,214.5927448,1.6807052690259477e-50 -3024,1994/4/13,3.457687159,18.50524566,6.304755151,1.454932135,7.646685596,203.0771071,8.403526345129738e-51 -3025,1994/4/14,3.609972408,18.00566881,5.141074758,1.278398402,7.631451403,239.4616364,4.201763172564869e-51 -3026,1994/4/15,2.13008929,18.76087644,6.439958269,1.592120626,7.725150498,185.9715795,2.1008815862824346e-51 -3027,1994/4/16,2.152089802,19.21869418,7.154800536,1.47939163,7.787127097,178.7475604,1.0504407931412173e-51 -3028,1994/4/17,3.812085104,17.0807248,7.560479364,1.444224313,6.720445399,276.7546465,5.2522039657060865e-52 -3029,1994/4/18,1.136463083,18.07173256,6.484452837,1.546508128,7.399551863,151.6988842,2.6261019828530433e-52 -3030,1994/4/19,2.805133969,17.65435276,5.499360745,1.508520547,7.397796632,220.2800498,1.3130509914265216e-52 -3031,1994/4/20,0.894298754,17.00284765,5.500924901,1.202110701,7.112724667,123.2125209,6.565254957132608e-53 -3032,1994/4/21,0.470220067,18.17591562,5.800388317,1.35096878,7.560665284,75.1534806,3.282627478566304e-53 -3033,1994/4/22,0.591393899,18.47000927,7.036358106,1.47360013,7.449775757,62.83864073,1.641313739283152e-53 -3034,1994/4/23,2.327892745,19.36015508,8.067846218,1.496697691,7.63221187,132.252225,8.20656869641576e-54 -3035,1994/4/24,1.114214793,18.82139689,7.804700813,1.474819586,7.438521954,91.31017123,4.10328434820788e-54 -3036,1994/4/25,0.854420678,18.96689242,6.489574993,1.543447911,7.763280647,69.40635317,2.05164217410394e-54 -3037,1994/4/26,0.562387206,19.57104883,7.184200586,1.087277865,7.895375918,49.13419815,1.02582108705197e-54 -3038,1994/4/27,7.670084618,19.38763402,6.647381375,0.970641989,7.910503741,390.2648552,5.12910543525985e-55 -3039,1994/4/28,0.295587502,19.1047702,6.055110691,1.039444527,7.888133517,117.2705977,2.564552717629925e-55 -3040,1994/4/29,0.687192121,20.04896082,6.421144639,1.327814951,8.23048596,83.87151803,1.2822763588149625e-55 -3041,1994/4/30,0.127776216,21.00953031,7.987343936,1.60122754,8.368689776,44.13251361,6.411381794074813e-56 -3042,1994/5/1,0.09041448,21.60260097,9.202020222,1.893157052,8.390726778,27.94358275,3.2056908970374063e-56 -3043,1994/5/2,0.056050581,22.41392469,9.689375404,2.016236517,8.661432406,18.16725105,1.6028454485187032e-56 -3044,1994/5/3,0.436457787,22.11063479,10.55860911,1.689300377,8.31751289,22.73742076,8.014227242593516e-57 -3045,1994/5/4,6.062719054,20.35794309,10.63867475,1.021778011,7.4385999,221.5187745,4.007113621296758e-57 -3046,1994/5/5,2.010798487,20.64141711,11.15431584,0.705844817,7.433728164,144.6295084,2.003556810648379e-57 -3047,1994/5/6,6.457738371,18.80546204,10.92679852,0.645301399,6.563706287,391.7827575,1.0017784053241895e-57 -3048,1994/5/7,1.956090649,19.46539246,9.916556727,0.702814628,7.183783798,228.583578,5.0088920266209474e-58 -3049,1994/5/8,8.714678699,19.0542642,10.18580969,1.032514631,6.904709782,723.8590554,6.2665238854305665e-06 -3050,1994/5/9,0.963485742,18.58827602,9.954575945,0.933503368,6.736276802,277.9161278,3.133251094650093e-06 -3051,1994/5/10,1.419008119,19.94203024,10.89984806,1.339067343,7.137556516,221.8291946,1.5666255473250466e-06 -3052,1994/5/11,12.1518642,19.51176155,11.49637567,1.348400278,6.733813356,1210.184914,0.008868021112211221 -3053,1994/5/12,1.588929835,20.80703871,9.917905873,1.500703347,7.811750909,489.9510927,0.004426754449762604 -3054,1994/5/13,0.017445367,23.21712798,10.23611318,1.212466469,8.876040964,195.0375915,0.002213377224881302 -3055,1994/5/14,0.964925512,23.85433693,11.61448863,1.532609038,8.866597009,187.7389648,0.001106688612440651 -3056,1994/5/15,6.978310466,21.49795642,11.47200257,1.33000152,7.739240691,646.1604168,0.0005533443062203255 -3057,1994/5/16,3.327256327,20.95217272,11.29711459,1.039323564,7.511714824,476.000916,0.00027667215311016273 -3058,1994/5/17,9.10278279,21.8257172,10.3448274,0.375656642,8.17829627,1058.112004,0.005172212272526999 -3059,1994/5/18,4.909551328,18.797544,10.13002134,0.385893276,6.763128446,836.9337996,0.0025724012801037945 -3060,1994/5/19,1.257101995,19.64131043,10.31702042,0.516129108,7.123845612,411.4911478,0.0012862006400518973 -3061,1994/5/20,6.062707863,20.30274935,10.65786093,0.648383844,7.353119403,819.4077375,0.0006431003200259486 -3062,1994/5/21,11.22258423,19.18950422,10.70572048,0.864064432,6.78328904,1662.803212,0.024526691060857052 -3063,1994/5/22,8.338474625,20.3173052,11.30552396,1.420142883,7.172844143,1701.09098,0.023671229423697232 -3064,1994/5/23,6.292933336,20.7217787,11.54980148,1.031846947,7.303405147,1502.67752,0.01177914323137989 -3065,1994/5/24,7.764008943,21.22380441,11.60710097,1.244268758,7.537222165,1752.384375,0.008256538887399505 -3066,1994/5/25,0.456723427,23.29649345,12.36853554,1.308445844,8.364408051,644.1338137,0.0041159174580267955 -3067,1994/5/26,6.121996188,22.93380361,12.68293198,1.04652878,8.092792552,1158.221444,0.0020579587290133977 -3068,1994/5/27,16.62277133,21.38608648,12.18228781,0.545811015,7.445214424,3115.224901,0.08931517057725913 -3069,1994/5/28,3.150172737,21.08517237,12.41340972,0.782155774,7.217096628,1423.926661,0.04423293787763073 -3070,1994/5/29,1.15820572,21.30538158,13.02666182,1.105036516,7.13435333,737.987567,0.022116468938815366 -3071,1994/5/30,4.804538434,21.66045874,12.88909793,0.935532956,7.364035552,1057.506755,0.011058234469407683 -3072,1994/5/31,4.293904183,22.24834682,13.23345581,0.978650286,7.562412467,991.7648101,0.0055291172347038415 -3073,1994/6/1,2.924556921,22.44775302,12.86050889,0.596801533,7.777378977,747.5932384,0.0027645586173519207 -3074,1994/6/2,3.915034824,21.57249024,13.11072924,0.826279301,7.240074558,779.6453245,0.0013822793086759604 -3075,1994/6/3,1.435979037,20.06737787,13.24995961,0.580718646,6.37051639,452.1092799,0.0006911396543379802 -3076,1994/6/4,7.063230494,21.64793594,13.53653774,0.958142442,7.135113988,1033.423558,0.0003455698271689901 -3077,1994/6/5,6.880696732,21.51127872,13.70930564,1.100681267,6.999377008,1205.608911,0.00017278491358449505 -3078,1994/6/6,7.374180677,20.28489147,13.46311747,1.151260092,6.407176596,1404.18971,0.012477207803607919 -3079,1994/6/7,5.670971466,20.01640911,12.74724482,0.972939664,6.51841065,1278.659351,0.006159218350090407 -3080,1994/6/8,16.54754301,20.49751921,12.60698762,1.006887098,6.823490052,3370.311939,0.13015541781388792 -3081,1994/6/9,13.20341399,20.49268662,13.02219069,1.020397136,6.677475596,3821.076414,0.21134044101552452 -3082,1994/6/10,7.078929511,20.88827568,13.94437467,1.341468713,6.559089613,2769.218474,0.11897080102985629 -3083,1994/6/11,7.131122351,20.98299829,13.64360215,1.357532763,6.722103638,2577.409851,0.07124019440350306 -3084,1994/6/12,5.39477768,22.86128217,14.44941507,1.858544605,7.469996354,2085.09368,0.03544494504094257 -3085,1994/6/13,3.111166807,23.12862757,14.92449072,1.945292423,7.450818971,1394.313911,0.017722472520471284 -3086,1994/6/14,2.834480792,23.20581833,15.09957544,1.799614855,7.430188306,1081.696462,0.008861236260235642 -3087,1994/6/15,2.868315706,23.15491995,15.33914457,1.449044824,7.313154898,912.1887865,0.004430618130117821 -3088,1994/6/16,5.680979553,24.10659944,15.12404605,1.598201321,7.916626541,1225.931019,0.0022153090650589105 -3089,1994/6/17,14.60585239,23.66592452,14.97915439,1.570071083,7.723018387,2883.226594,0.1590210236804655 -3090,1994/6/18,14.46105603,21.72986652,14.63153575,1.089148362,6.765524528,3778.485706,0.3048226430436941 -3091,1994/6/19,3.305928552,20.3637495,13.73025077,0.842478018,6.333270254,1808.241049,0.14905969155658522 -3092,1994/6/20,7.028223793,21.2664055,13.05390325,0.817073778,7.068772857,2144.817851,0.07452984577829261 -3093,1994/6/21,6.932049718,20.22143573,12.47450565,0.509990041,6.705148074,2144.050865,0.04517994610019285 -3094,1994/6/22,13.06804378,21.80784205,12.90509958,0.50400506,7.399385449,3568.951486,0.22139011825087934 -3095,1994/6/23,11.93526864,20.04680401,13.13576496,0.759800514,6.376795259,3903.919547,0.3316118784747699 -3096,1994/6/24,5.999625285,19.76299607,11.56044706,0.991861437,6.758699718,2668.911155,0.16127602786148176 -3097,1994/6/25,10.04890855,20.17529553,11.77509034,0.705228443,6.903119967,3374.832055,0.22135483988319007 -3098,1994/6/26,7.979647913,22.3803959,13.38107448,1.261622455,7.547578393,3029.381149,0.12809773359270282 -3099,1994/6/27,3.439539122,20.88603965,14.200065,1.416792318,6.443559487,1808.301786,0.0635593332376722 -3100,1994/6/28,14.34609184,22.27223831,14.106426,1.109856089,7.250826848,4026.141214,0.3552858394802157 -3101,1994/6/29,3.329969055,21.44421592,12.90350919,0.965457454,7.205818823,1979.884943,0.17026784326323083 -3102,1994/6/30,2.862212518,21.74377659,12.50050028,0.814238107,7.484961694,1375.242,0.08513392163161541 -3103,1994/7/1,1.788972528,18.43096367,12.04962365,0.877758096,5.883865624,918.9211086,0.04256696081580771 -3104,1994/7/2,1.38659226,19.84659013,11.76660431,0.819443303,6.734169376,654.2958334,0.021283480407903854 -3105,1994/7/3,4.926925786,23.42131862,12.7685135,0.968571871,8.258755203,1035.249767,0.010641740203951927 -3106,1994/7/4,6.723930139,24.30358666,13.57687484,1.448920069,8.482512065,1333.597878,0.005320870101975963 -3107,1994/7/5,3.459164136,22.27086113,13.30343689,1.379410225,7.512425332,909.3689413,0.0026604350509879817 -3108,1994/7/6,8.929077883,22.1544124,12.58943141,1.455735843,7.668302847,1612.414282,0.047470184562195136 -3109,1994/7/7,5.507749962,21.84886204,12.94914341,0.934480498,7.402727368,1314.64861,0.02289081138349108 -3110,1994/7/8,6.900609774,22.79059684,13.66587647,0.790079974,7.672596714,1491.559909,0.01144540569174554 -3111,1994/7/9,10.52696999,20.58094684,13.50333243,0.829222858,6.535191781,2213.72767,0.14585955623270716 -3112,1994/7/10,13.00674175,20.45944381,12.8760581,0.796222293,6.692359093,3187.336334,0.3156119250075332 -3113,1994/7/11,6.884825053,20.58404424,12.76269783,0.81349804,6.798107503,2375.235892,0.1569199082577766 -3114,1994/7/12,1.540527765,21.82655448,13.35616192,0.848327968,7.263491855,1120.00222,0.0783734882684036 -3115,1994/7/13,6.661842894,23.52687279,13.92885121,0.925375915,7.980840775,1700.168983,0.0391867441342018 -3116,1994/7/14,14.3591713,23.79687965,14.09107308,0.9147985,8.073776148,3375.31146,0.27842457628581757 -3117,1994/7/15,10.01014055,24.4129432,14.54319556,0.465319084,8.260883371,3103.347991,0.21602490425161575 -3118,1994/7/16,8.673805454,22.57664136,14.27480716,0.613302836,7.363318445,2832.014871,0.16970405319784648 -3119,1994/7/17,11.7817483,22.60971828,14.58171363,0.627251197,7.275738282,3584.734664,0.3074066666500703 -3120,1994/7/18,5.720291306,22.47559094,13.81680922,0.667350408,7.463833998,2419.336727,0.14813073936323867 -3121,1994/7/19,2.574240756,23.41069956,13.53311657,0.672161739,8.045221268,1423.199432,0.07406536968161934 -3122,1994/7/20,4.843903142,23.96874211,14.01480766,1.195140006,8.193247661,1493.276949,0.03703268484080967 -3123,1994/7/21,3.653610735,23.98352946,14.63251195,1.541390772,8.010782137,1177.140152,0.018516342420404834 -3124,1994/7/22,3.510645442,23.40752545,14.8079459,1.23549897,7.642007535,994.6162234,0.009258171210202417 -3125,1994/7/23,10.84251888,22.89673107,14.40272549,1.025788222,7.502046794,2072.342901,0.14627238611819762 -3126,1994/7/24,12.73286676,22.80688136,14.91379285,1.400644623,7.274964397,2932.15987,0.3182787620399471 -3127,1994/7/25,5.809038799,21.8110709,15.30058139,1.182289324,6.553562669,1979.608694,0.1534983658883211 -3128,1994/7/26,12.29151384,22.08418313,14.93378188,0.764010633,6.860654096,3217.922813,0.34662892275275003 -3129,1994/7/27,7.679870702,21.05695974,14.49999313,0.511117391,6.439002659,2654.318854,0.23435802174864817 -3130,1994/7/28,2.8497723,21.70088257,13.65088699,0.619683158,7.115546344,1496.857297,0.11532951614531264 -3131,1994/7/29,2.252783095,22.28795859,13.34726065,0.621567966,7.53058931,1045.436995,0.05766475807265632 -3132,1994/7/30,8.542230717,22.75535354,13.53067884,0.641101326,7.721001887,1956.99408,0.0701203628660548 -3133,1994/7/31,6.876213222,23.11573108,13.49286303,0.52504338,7.923256385,1852.135636,0.03402228703231344 -3134,1994/8/1,5.06457894,22.65811274,13.88919892,0.465096407,7.559069432,1488.806621,0.01701114351615672 -3135,1994/8/2,12.01959152,22.52944622,14.04443643,0.454824747,7.440429507,2706.290719,0.22590152981627135 -3136,1994/8/3,9.052956682,22.56950432,13.55555375,0.653415858,7.623255373,2593.633217,0.18160543479886496 -3137,1994/8/4,5.359143273,22.5724048,13.78571469,0.770973822,7.553154042,1872.443642,0.08889718973729682 -3138,1994/8/5,1.713352181,23.76311215,13.98659784,0.773723991,8.1237,993.41334,0.04444859486864841 -3139,1994/8/6,2.649039166,24.10853503,14.31891685,0.708487768,8.206733686,860.7182976,0.022224297434324206 -3140,1994/8/7,6.080569453,23.32584669,13.78166234,0.652710876,7.961192883,1235.71923,0.011112148717162103 -3141,1994/8/8,11.79744854,23.18933577,13.55706272,0.853142829,7.960661413,2265.731775,0.17397427854320774 -3142,1994/8/9,3.390499735,22.65030069,14.22077642,1.900012634,7.462356562,1212.6316,0.08329072733084641 -3143,1994/8/10,1.097974576,22.10230238,14.62484942,1.557042485,7.016707193,626.808305,0.04164536366542321 -3144,1994/8/11,3.266754099,23.60658596,15.27842647,1.973160112,7.628645118,730.1314839,0.020822681832711604 -3145,1994/8/12,3.691922105,23.22076434,15.29819173,1.385063622,7.406596442,742.8719157,0.010411340916355802 -3146,1994/8/13,10.88624041,21.25400611,13.6886501,0.98226111,6.890939248,1738.265908,0.1594643347423287 -3147,1994/8/14,4.384213572,21.66544398,13.21118731,0.410201949,7.280375366,1142.727597,0.07675420218883271 -3148,1994/8/15,2.924117615,23.02860769,13.76982796,0.653275338,7.829594483,806.7813465,0.038377101094416353 -3149,1994/8/16,9.376389433,23.26963703,13.86102628,0.991290067,7.931933364,1641.36819,0.07433534413625567 -3150,1994/8/17,10.90171825,22.14013606,14.77783797,0.943090687,6.998740316,2243.877762,0.19033922903671602 -3151,1994/8/18,20.85340693,21.45626278,14.69989109,0.8755009,6.636748607,5065.315086,0.705075688784786 -3152,1994/8/19,11.49419003,21.58571039,14.23457871,0.327099816,6.893078227,4312.373944,0.5975951152753527 -3153,1994/8/20,2.40504636,20.79257221,13.67989097,0.33422742,6.655132271,1949.560975,0.2915488819395018 -3154,1994/8/21,9.577287569,21.73277093,13.23270545,0.382363844,7.32954832,3033.386427,0.2743896565024624 -3155,1994/8/22,15.66225144,19.58449921,13.27366732,0.387833238,6.129520712,4938.670976,0.6980213510456641 -3156,1994/8/23,8.972906574,19.00636488,12.3349874,0.166652376,6.165201426,3918.570664,0.5222511067775608 -3157,1994/8/24,2.377297267,20.88629744,12.24559345,0.132449933,7.207221311,1941.013154,0.25469987371648517 -3158,1994/8/25,3.024181263,21.05492958,12.45481624,0.541418424,7.2330121,1524.015787,0.12734993685824259 -3159,1994/8/26,4.915619781,21.15753517,13.23330979,0.537363376,7.034658924,1633.855857,0.06367496842912129 -3160,1994/8/27,1.632981061,21.99415575,12.49324838,0.593290181,7.716924296,923.2130605,0.031837484214560646 -3161,1994/8/28,4.023866942,22.2590104,12.74172705,0.606677505,7.783742544,1059.313921,0.015918742107280323 -3162,1994/8/29,12.94641461,23.656137,13.27052786,0.8106592,8.356800752,2580.449647,0.2612177901132816 -3163,1994/8/30,8.223837557,21.09443839,13.91382378,0.363982981,6.768133005,2240.158268,0.20991242001407048 -3164,1994/8/31,7.805671435,21.65053936,13.15801339,0.461791434,7.343196105,2203.384814,0.13040895420547555 -3165,1994/9/1,4.112049546,22.74868248,13.06530402,0.653322589,7.956996561,1491.326288,0.0643562395832003 -3166,1994/9/2,3.825729451,22.58594486,13.76419221,0.58292013,7.655526758,1213.249232,0.03217811979160015 -3167,1994/9/3,2.408861337,21.88603228,12.6405904,0.541345499,7.642381145,845.9725948,0.016089059895800076 -3168,1994/9/4,4.948917838,23.49759825,13.08739116,0.678365832,8.351735231,1059.552421,0.008044529947900038 -3169,1994/9/5,12.09400779,22.29488503,13.5964002,0.753966489,7.564765569,2219.745778,0.22896205583321244 -3170,1994/9/6,2.623982306,23.56981413,13.85756571,0.738314219,8.169373767,1062.58685,0.10889533531694685 -3171,1994/9/7,2.507916113,23.49056972,14.1809488,0.720632237,8.029140231,773.7409357,0.05444766765847343 -3172,1994/9/8,4.390589673,23.30803861,14.41004468,0.889435241,7.858718723,897.7152193,0.027223833829236713 -3173,1994/9/9,5.615719587,22.55600811,14.42737445,0.920265109,7.439937455,1049.946215,0.013611916914618357 -3174,1994/9/10,11.80049984,21.15796641,13.71587783,0.866650898,6.915591254,2068.963363,0.2230290220961483 -3175,1994/9/11,5.723358312,21.70344077,14.00161297,0.546604882,7.122027275,1516.720692,0.10672911819718676 -3176,1994/9/12,5.908461665,21.59066557,14.04683163,0.634181431,7.045720318,1461.346182,0.05336455909859338 -3177,1994/9/13,2.299992788,22.77316572,13.77767187,0.853237929,7.796695244,858.7548703,0.02668227954929669 -3178,1994/9/14,4.194329466,22.3982384,14.16604218,0.930130397,7.464048675,946.0807795,0.013341139774648346 -3179,1994/9/15,5.565404317,21.46885195,14.19089766,0.651980546,6.933978716,1116.332411,0.006670569887324173 -3180,1994/9/16,1.778937059,21.52263241,13.87338892,0.479005671,7.086267714,615.8129767,0.0033352849436620864 -3181,1994/9/17,5.534767679,21.05619575,13.00719449,0.988551078,7.136612367,965.2302412,0.0016676424718310432 -3182,1994/9/18,11.32200327,21.19777527,13.25341535,1.543528945,7.133539452,1952.039582,0.15454963662047033 -3183,1994/9/19,13.02865483,21.97372197,13.59998953,1.809676408,7.445333294,2840.54328,0.3010615208869435 -3184,1994/9/20,1.386807685,22.12626647,13.7922797,1.452795171,7.46786081,1069.977047,0.14593216253358204 -3185,1994/9/21,2.876834765,23.21337192,13.27897231,1.312269192,8.223532467,915.0343247,0.07296608126679102 -3186,1994/9/22,8.038108562,23.16474316,13.21395393,1.366805425,8.222040564,1592.383468,0.03648304063339551 -3187,1994/9/23,8.103880964,23.04835516,13.024374,1.438719534,8.221865791,1786.38508,0.018241520316697755 -3188,1994/9/24,5.635785638,22.98782203,12.92979262,1.480906006,8.222733232,1459.830267,0.009120760158348878 -3189,1994/9/25,1.256657498,22.91245928,12.61583306,1.344496412,8.279190596,696.9421393,0.004560380079174439 -3190,1994/9/26,7.747869035,21.51155405,12.62033528,0.998839586,7.546789103,1381.496588,0.00971440823038924 -3191,1994/9/27,5.975185956,20.93555156,11.98967802,0.68855515,7.443288602,1301.665288,0.004719777173682495 -3192,1994/9/28,4.296505231,21.11740125,11.66670484,0.429110358,7.639124303,1045.979485,0.0023598885868412476 -3193,1994/9/29,1.46788085,20.01835759,11.1536968,0.825349301,7.228303884,574.8325411,0.0011799442934206238 -3194,1994/9/30,0.209888359,20.81591043,10.94194291,0.943079971,7.700152244,286.2338604,0.0005899721467103119 -3195,1994/10/1,4.524297978,20.39864565,10.41138042,0.947235604,7.63971637,635.2892343,0.00029498607335515595 -3196,1994/10/2,4.869463617,19.59622367,10.32087885,0.837679017,7.267674041,736.0102021,0.00014749303667757797 -3197,1994/10/3,4.255076744,18.93549254,10.09927986,0.853548611,7.002139438,703.8614994,7.374651833878899e-05 -3198,1994/10/4,5.150410533,17.11648816,9.358238587,0.588681136,6.304985333,815.8214374,3.687325916939449e-05 -3199,1994/10/5,3.874878928,16.77819217,7.668832887,0.878984226,6.612700943,715.2990303,1.8436629584697247e-05 -3200,1994/10/6,2.438687199,17.0872291,8.056899342,1.074697917,6.66431818,523.8100026,9.218314792348623e-06 -3201,1994/10/7,0.946450751,17.70758314,8.810407405,1.083296784,6.768605863,301.3711623,4.609157396174312e-06 -3202,1994/10/8,2.33332135,17.74817799,8.935686275,0.952228639,6.758287967,363.1267547,2.304578698087156e-06 -3203,1994/10/9,2.071365294,18.30684838,8.546917524,0.949252595,7.135914797,327.3874328,1.152289349043578e-06 -3204,1994/10/10,4.180598734,17.49549413,8.55970831,0.869352002,6.744649503,502.147772,5.76144674521789e-07 -3205,1994/10/11,4.446869991,18.36873002,8.472516374,1.20508009,7.192579707,583.7645926,2.880723372608945e-07 -3206,1994/10/12,1.951188082,19.08212677,8.447520455,1.586710203,7.54271273,368.5352559,1.4403616863044724e-07 -3207,1994/10/13,0.008753865,20.04643822,8.178162673,1.859640907,8.060645953,142.7746471,7.201808431522362e-08 -3208,1994/10/14,0.004535708,20.74665859,8.570455051,2.004551947,8.30915686,81.88117638,3.600904215761181e-08 -3209,1994/10/15,0.100674178,20.06031669,9.087913745,1.790374121,7.871796011,58.24183343,1.8004521078805905e-08 -3210,1994/10/16,0.200612574,19.25882567,7.888438832,1.383758992,7.770160872,45.63780449,9.002260539402952e-09 -3211,1994/10/17,7.897284858,18.73306292,6.356989484,1.137296239,7.845277284,493.3378428,0.0007048439019969935 -3212,1994/10/18,0.0,17.95367769,5.365985066,1.030986965,7.685702232,128.4499884,0.00034764573723957234 -3213,1994/10/19,0.418634227,18.0747334,5.467192583,0.537665947,7.725219767,82.84622916,0.00017382286861978617 -3214,1994/10/20,2.234746147,15.6831657,5.313303605,0.680089133,6.708492701,159.4283475,8.691143430989308e-05 -3215,1994/10/21,1.707720774,14.41988144,3.600937376,0.529862921,6.495653368,144.6981272,4.345571715494654e-05 -3216,1994/10/22,1.057638216,14.95822319,3.537111504,0.283210064,6.736861707,105.4354215,2.172785857747327e-05 -3217,1994/10/23,0.865793864,15.18305601,2.533772838,0.54682627,6.991756921,83.16373282,1.0863929288736636e-05 -3218,1994/10/24,0.005012513,14.91554521,1.497488323,0.580920935,7.028945065,33.99920172,5.431964644368318e-06 -3219,1994/10/25,0.149520642,15.77775983,1.476753604,0.719449796,7.378043755,25.39888565,2.715982322184159e-06 -3220,1994/10/26,0.30380644,16.26625303,3.373138695,1.035551108,7.325628273,24.33412802,1.3579911610920794e-06 -3221,1994/10/27,0.003615847,16.75157772,3.157310153,1.291147832,7.563053593,11.39646367,6.789955805460397e-07 -3222,1994/10/28,0.229170469,16.9883331,3.544814982,1.119954891,7.609754717,12.89229904,3.3949779027301986e-07 -3223,1994/10/29,0.063284062,17.05630001,4.730199181,1.178796955,7.453387935,7.333453393,1.6974889513650993e-07 -3224,1994/10/30,0.33842103,16.709815,4.948088375,1.060923487,7.268364326,10.97645709,8.487444756825497e-08 -3225,1994/10/31,0.437094257,16.39907604,4.535424069,1.182719164,7.211426524,12.72584513,4.243722378412748e-08 -3226,1994/11/1,0.268350047,16.5291188,5.5886278,0.646200864,7.073868782,9.311705222,2.121861189206374e-08 -3227,1994/11/2,0.021470098,15.92760971,4.465198548,0.829056145,7.02794363,3.926324303,1.060930594603187e-08 -3228,1994/11/3,0.001902469,15.47697065,1.395437141,0.844895097,7.303663108,2.150009407,5.304652973015935e-09 -3229,1994/11/4,0.060305203,15.71207169,1.826765971,0.762099556,7.348507313,2.122390742,2.6523264865079677e-09 -3230,1994/11/5,0.000327656,15.37309913,2.071150089,0.544062442,7.1833609,1.063123456,1.3261632432539838e-09 -3231,1994/11/6,0.012281711,15.384015,1.723680145,0.463927407,7.236966088,0.77271563,6.630816216269919e-10 -3232,1994/11/7,0.058272679,14.68694771,1.556988802,0.729186654,6.982311827,0.963228712,3.3154081081349596e-10 -3233,1994/11/8,0.024622592,15.02018613,0.745761064,0.76090925,7.216714503,0.604060212,1.6577040540674798e-10 -3234,1994/11/9,0.096418542,14.2358244,0.778843817,0.500332437,6.907930377,0.973351739,8.288520270337399e-11 -3235,1994/11/10,3.868248836,13.90637747,1.583316928,0.624384704,6.675758446,51.64007137,4.1442601351686995e-11 -3236,1994/11/11,0.52292701,14.07022874,1.320156715,0.648282783,6.780477487,22.32388049,2.0721300675843497e-11 -3237,1994/11/12,0.01319786,13.64215878,1.398147294,0.830055041,6.6020499,8.122525604,1.0360650337921749e-11 -3238,1994/11/13,0.082712199,13.73557151,1.062627583,0.785702252,6.687696917,5.773322892,5.180325168960874e-12 -3239,1994/11/14,0.262487761,13.72256919,0.933426706,0.785363271,6.702406614,6.929140762,2.590162584480437e-12 -3240,1994/11/15,0.062971367,13.57267202,0.161131541,0.742277014,6.740662523,3.727151191,1.2950812922402186e-12 -3241,1994/11/16,0.001211761,12.55735481,-0.719232861,0.525839255,6.451829712,1.90227947,6.475406461201093e-13 -3242,1994/11/17,0.065695381,12.69221879,-0.301509778,0.405626047,6.45991411,1.868822765,3.2377032306005465e-13 -3243,1994/11/18,1.545942564,12.32911675,0.878668212,0.411854944,6.170075234,19.82909605,1.6188516153002732e-13 -3244,1994/11/19,1.564716548,11.10454793,-0.308509899,0.671500122,5.858093599,30.39147627,8.094258076501366e-14 -3245,1994/11/20,0.000975017,12.25878357,-0.620005181,0.428672024,6.338575399,8.459297816,4.047129038250683e-14 -3246,1994/11/21,0.16498211,13.8656317,-0.201535752,0.654838796,6.911418199,6.682319706,2.0235645191253415e-14 -3247,1994/11/22,2.055844302,14.00698202,0.401870142,0.656301756,6.902490038,39.19609779,1.0117822595626708e-14 -3248,1994/11/23,0.800971252,13.86758696,0.126388764,0.866189622,6.882087891,26.68117184,5.058911297813354e-15 -3249,1994/11/24,0.237127076,13.42189658,1.500560024,0.933221097,6.532713871,13.51214841,2.529455648906677e-15 -3250,1994/11/25,2.084232755,12.68309994,0.492100972,0.68787626,6.380131768,50.26267896,1.2647278244533385e-15 -3251,1994/11/26,7.476281861,10.3607877,1.27680416,0.851024282,5.335775474,282.9496066,0.003938940394971983 -3252,1994/11/27,1.822306839,11.74003427,1.691496014,1.13347668,5.827142295,159.9570688,0.0019658459963321512 -3253,1994/11/28,1.541262992,12.79930397,2.184059407,0.780042564,6.180945244,129.9740553,0.0009829229981660756 -3254,1994/11/29,1.184485564,12.48409524,1.271490721,0.587849531,6.200425927,105.3150126,0.0004914614990830378 -3255,1994/11/30,0.365354635,12.32117545,1.233810203,0.873498165,6.142706086,57.35622429,0.0002457307495415189 -3256,1994/12/1,2.152102293,10.81416413,-0.806590685,0.805709569,5.836793864,124.5634118,0.00012286537477075945 -3257,1994/12/2,0.436808013,11.31579578,-1.783720711,0.802961542,6.134392406,59.61924447,6.143268738537973e-05 -3258,1994/12/3,0.012999816,12.52022059,-0.809224076,0.334204617,6.48875323,26.25475179,3.071634369268986e-05 -3259,1994/12/4,0.016984856,12.27630562,0.679776676,0.712292766,6.213429418,16.08901236,1.535817184634493e-05 -3260,1994/12/5,2.07786015,10.52486397,-0.369147031,0.823294558,5.676617201,84.38228085,7.679085923172466e-06 -3261,1994/12/6,2.849534198,9.86446746,-2.337515208,0.52964383,5.664178277,140.8429519,3.839542961586233e-06 -3262,1994/12/7,0.010764617,11.70459631,-2.659210884,0.913264713,6.363599742,40.54706418,1.9197714807931165e-06 -3263,1994/12/8,0.045771318,13.04563217,-0.621063782,1.379579268,6.678842324,21.66393918,9.598857403965582e-07 -3264,1994/12/9,0.0,12.84307715,-0.365060922,1.532753955,6.574816276,12.90086389,4.799428701982791e-07 -3265,1994/12/10,0.0,13.59344486,-0.655354099,1.645834137,6.89595249,8.278718297,2.3997143509913956e-07 -3266,1994/12/11,0.000985959,13.34725247,-0.882539038,1.526911721,6.825744453,5.405134495,1.1998571754956978e-07 -3267,1994/12/12,0.0,12.45703322,-2.761318692,1.301152859,6.653697396,3.507764215,5.999285877478489e-08 -3268,1994/12/13,0.0,13.08945624,-2.764462473,1.225731735,6.887046096,2.282095234,2.9996429387392445e-08 -3269,1994/12/14,0.014226111,14.30072415,-0.55112564,1.109001166,7.164380082,1.730435494,1.4998214693696222e-08 -3270,1994/12/15,0.177597085,15.23462009,0.146651802,1.419605733,7.461318637,3.763362327,7.499107346848111e-09 -3271,1994/12/16,0.327221817,12.57354464,-0.782198252,1.208389299,6.526841587,5.984913381,3.7495536734240556e-09 -3272,1994/12/17,0.645135686,12.67306095,-0.698624437,1.05309989,6.557115028,11.07804461,1.8747768367120278e-09 -3273,1994/12/18,0.282597944,10.91417123,-0.496332025,0.801882782,5.859983041,7.186163553,9.373884183560139e-10 -3274,1994/12/19,0.483670112,9.455371275,-0.44836373,0.468768019,5.292825305,9.348619707,4.686942091780069e-10 -3275,1994/12/20,0.933667034,8.948446049,-0.690451576,0.685067196,5.134642203,17.26563054,2.3434710458900347e-10 -3276,1994/12/21,0.521845347,8.837711193,-1.196973455,0.823543125,5.165959332,13.55131523,1.1717355229450174e-10 -3277,1994/12/22,0.008198952,8.833446226,-2.716543532,0.761164457,5.347646247,4.70299324,5.858677614725087e-11 -3278,1994/12/23,0.007707332,10.05884502,-3.315618677,0.855902165,5.84159202,2.625903197,2.9293388073625434e-11 -3279,1994/12/24,0.04459769,11.35646337,-2.336067472,1.117503825,6.229154622,2.195905367,1.4646694036812717e-11 -3280,1994/12/25,0.016894326,11.23999551,-2.271050282,1.314595413,6.181172421,1.380818096,7.323347018406359e-12 -3281,1994/12/26,1.099154319,11.46772177,-2.239060774,1.09989915,6.262578397,14.37663214,3.661673509203179e-12 -3282,1994/12/27,0.454801868,12.4639905,-1.652373441,0.994894697,6.580347431,9.938962052,1.8308367546015896e-12 -3283,1994/12/28,0.096487847,13.42614247,-0.448631364,1.461049845,6.828658349,4.489547008,9.154183773007948e-13 -3284,1994/12/29,0.101690877,13.30779806,-0.570209061,1.601626674,6.796065873,3.233538612,4.577091886503974e-13 -3285,1994/12/30,0.050275502,11.73920613,-1.417512746,1.623042516,6.286631519,2.056470969,2.288545943251987e-13 -3286,1994/12/31,0.63470444,10.52491736,-1.496215281,1.492027978,5.840175902,7.806040905,1.1442729716259935e-13 -3287,1995/1/1,1.047416733,8.46052803,-2.653107679,1.173910478,5.210186642,15.29638186,5.721364858129968e-14 -3288,1995/1/2,0.405319349,7.274711512,-3.845056347,1.450365652,4.912392246,9.826910988,2.860682429064984e-14 -3289,1995/1/3,0.0,7.286979777,-5.597023158,1.269244503,5.052037509,3.424367602,1.430341214532492e-14 -3290,1995/1/4,0.0,8.286476011,-5.673681458,0.456496719,5.388866686,1.891761643,7.15170607266246e-15 -3291,1995/1/5,0.008320187,7.398071513,-4.170897274,0.921923363,4.984437758,1.296664314,3.57585303633123e-15 -3292,1995/1/6,0.068613011,8.710857534,-3.870065361,1.142895826,5.413697018,1.500745999,1.787926518165615e-15 -3293,1995/1/7,0.0,9.996167743,-4.010283984,1.209773546,5.873654656,0.686631316,8.939632590828074e-16 -3294,1995/1/8,0.038722217,11.54463866,-3.899289785,1.049544609,6.413461175,0.73768165,4.469816295414037e-16 -3295,1995/1/9,0.046182709,13.18663228,-1.231178972,1.789007116,6.813893493,0.696455592,2.2349081477070186e-16 -3296,1995/1/10,0.000473244,12.79492064,-0.517305074,1.851574184,6.591280371,0.294845784,1.1174540738535093e-16 -3297,1995/1/11,0.000728155,12.92667974,-1.220934607,1.385172662,6.713197834,0.175703935,5.587270369267546e-17 -3298,1995/1/12,0.023472669,12.09118068,-0.905457041,1.559639476,6.3629757,0.237722054,2.793635184633773e-17 -3299,1995/1/13,0.172738186,10.28635026,0.514330151,1.626586225,5.471429917,0.992662496,1.3968175923168866e-17 -3300,1995/1/14,0.000232786,10.51178218,-2.407625485,1.549739336,5.92484153,0.275426588,6.984087961584433e-18 -3301,1995/1/15,0.0,10.75471287,-3.024246646,0.931768999,6.065660939,0.132951195,3.4920439807922166e-18 -3302,1995/1/16,0.002984608,12.80535882,-2.136000989,1.216880898,6.743796516,0.094785937,1.7460219903961083e-18 -3303,1995/1/17,0.031826525,12.93092019,-1.776051523,1.644187242,6.759884646,0.170900036,8.730109951980541e-19 -3304,1995/1/18,0.110609261,11.62256175,-1.789151076,1.514503676,6.271894078,0.442000472,4.365054975990271e-19 -3305,1995/1/19,0.018091622,10.69004606,-2.478230609,1.501188549,5.991878225,0.185526746,2.1825274879951354e-19 -3306,1995/1/20,0.056383024,11.20728127,-1.216822892,2.115653942,6.055295707,0.248927239,1.0912637439975677e-19 -3307,1995/1/21,0.119291439,11.15031651,-1.466394262,2.28028535,6.059868256,0.448673232,5.456318719987838e-20 -3308,1995/1/22,0.008947406,10.55075969,-4.31828775,1.682679099,6.075947848,0.160599866,2.728159359993919e-20 -3309,1995/1/23,0.0,9.928251014,-5.584474841,1.346720419,5.92462206,0.074667883,1.3640796799969596e-20 -3310,1995/1/24,0.435512161,10.15468063,-5.180627284,1.262640177,5.982274838,1.407216573,6.820398399984798e-21 -3311,1995/1/25,0.512828601,10.46637599,-3.934161351,1.438934637,6.01832076,2.604880552,3.410199199992399e-21 -3312,1995/1/26,0.389389055,10.59938471,-3.973949101,1.484946248,6.066260234,2.812880642,1.7050995999961995e-21 -3313,1995/1/27,0.068549774,11.2033981,-4.164404012,1.150451687,6.288858513,1.228221928,8.525497999980997e-22 -3314,1995/1/28,0.274833346,11.23589073,-3.819240895,1.17126559,6.278056897,2.056946182,4.262748999990499e-22 -3315,1995/1/29,0.124738913,11.97586289,-1.996322949,1.44797821,6.406661323,1.383015254,2.1313744999952494e-22 -3316,1995/1/30,0.663146732,11.39778111,-2.228200772,1.525953535,6.212633892,4.750357805,1.0656872499976247e-22 -3317,1995/1/31,1.444714788,9.498461388,-3.092018482,1.506610715,5.601715145,14.70061864,5.328436249988123e-23 -3318,1995/2/1,1.086978444,8.071089539,-3.419516504,1.100550622,5.126363876,17.54744483,2.664218124994062e-23 -3319,1995/2/2,0.254804241,8.038674135,-2.853706424,1.281312506,5.05572918,8.592032763,1.332109062497031e-23 -3320,1995/2/3,0.896496718,10.27315535,-2.595567726,0.890283923,5.829298587,16.40047974,6.660545312485154e-24 -3321,1995/2/4,1.717495925,9.5111455,-1.41302606,1.217906263,5.421280921,35.20439162,3.330272656242577e-24 -3322,1995/2/5,0.873239552,9.553862091,-1.339231432,1.147527173,5.426192951,27.53654299,1.6651363281212886e-24 -3323,1995/2/6,2.441038473,9.601973624,-2.400144259,1.28908165,5.562160416,67.97638926,8.325681640606443e-25 -3324,1995/2/7,0.970365677,8.949960808,-4.361160394,1.547908389,5.498100056,45.74963208,4.162840820303221e-25 -3325,1995/2/8,0.046148463,12.15127818,-3.788261449,1.199415173,6.579153371,16.96991459,2.0814204101516107e-25 -3326,1995/2/9,0.391839311,11.72276557,-1.838813753,1.263117658,6.276227731,18.42910738,1.0407102050758054e-25 -3327,1995/2/10,0.930012698,11.01145846,-1.989136664,1.355080967,6.026377066,30.09478918,5.203551025379027e-26 -3328,1995/2/11,0.669552486,11.56981494,-1.699082752,1.309856889,6.201625248,26.08087099,2.6017755126895134e-26 -3329,1995/2/12,0.053496236,12.28343757,-0.034568093,1.454989945,6.285331487,10.4131772,1.3008877563447567e-26 -3330,1995/2/13,0.001016372,13.43347619,-0.540783074,1.602937601,6.781936998,5.391915934,6.504438781723783e-27 -3331,1995/2/14,0.065808643,13.71842539,-1.441851098,1.722176866,6.971288586,4.547576529,3.252219390861892e-27 -3332,1995/2/15,0.202482995,14.93987527,-1.011785047,1.736723209,7.39453799,5.745409832,1.626109695430946e-27 -3333,1995/2/16,1.375076379,14.18572716,0.150372147,2.181477023,6.990362101,25.54749272,8.13054847715473e-28 -3334,1995/2/17,0.026308018,11.27778306,-2.958507259,1.958252885,6.189286734,7.378435324,4.065274238577365e-28 -3335,1995/2/18,0.045096766,11.56367444,-2.851398579,1.740764875,6.28101788,4.113835805,2.0326371192886823e-28 -3336,1995/2/19,0.054905608,11.51547991,-1.92958586,1.510991915,6.182859409,3.03601896,1.0163185596443412e-28 -3337,1995/2/20,0.114933768,12.29887961,-0.895946447,1.674303257,6.368487468,3.073300377,5.081592798221706e-29 -3338,1995/2/21,0.029485903,12.93263335,-0.573205259,1.557888359,6.571217153,1.701198583,2.540796399110853e-29 -3339,1995/2/22,0.042967302,13.32846531,-0.448851876,1.504836136,6.705809231,1.333665718,1.2703981995554265e-29 -3340,1995/2/23,0.593045166,13.73636575,-0.003335773,1.934431387,6.811331589,6.723206706,6.351990997777132e-30 -3341,1995/2/24,1.168225203,12.98692893,-1.288426796,1.715077054,6.653337709,15.89298552,3.175995498888566e-30 -3342,1995/2/25,0.263186095,12.57420954,-1.905952831,1.679281231,6.551775637,7.678618715,1.587997749444283e-30 -3343,1995/2/26,0.0,12.70497039,-2.404988505,1.334896519,6.636226009,2.863305578,7.939988747221415e-31 -3344,1995/2/27,0.04240068,12.64897043,-3.064467174,1.366675298,6.658669184,2.081557322,3.969994373610708e-31 -3345,1995/2/28,0.047140304,12.74204979,-2.030312144,1.785084355,6.613954654,1.602211679,1.984997186805354e-31 -3346,1995/3/1,0.010377272,13.33594442,-2.546738019,1.872719195,6.866010774,0.923271731,9.92498593402677e-32 -3347,1995/3/2,0.0,13.43627999,-2.856708496,1.229299538,6.919170008,0.539932068,4.962492967013385e-32 -3348,1995/3/3,0.076247079,13.58111498,-2.685552474,1.130521624,6.957294491,0.862063241,2.4812464835066923e-32 -3349,1995/3/4,0.97372126,13.94958281,-0.081690134,1.129417059,6.871083174,7.942837293,1.2406232417533462e-32 -3350,1995/3/5,0.001303827,13.99905937,2.308502843,1.704725325,6.577684599,2.037961758,6.203116208766731e-33 -3351,1995/3/6,0.198349247,16.56022884,2.042279878,2.016944048,7.650086721,2.478924453,3.1015581043833654e-33 -3352,1995/3/7,0.322934549,16.68029965,1.794985046,2.064464096,7.723954602,3.415210885,1.5507790521916827e-33 -3353,1995/3/8,0.679391646,17.35322657,2.640611761,1.840015574,7.890402154,6.77768903,7.753895260958413e-34 -3354,1995/3/9,0.041229742,16.71730714,1.743615172,1.623942021,7.736406524,2.303649264,3.876947630479207e-34 -3355,1995/3/10,0.229359134,17.10323799,1.871315359,1.720417025,7.872651557,2.817234243,1.9384738152396034e-34 -3356,1995/3/11,0.673014299,17.33575288,2.59998939,1.757069118,7.875403294,6.559406228,9.692369076198017e-35 -3357,1995/3/12,0.20968375,16.33653307,1.041021171,1.982231994,7.649739447,3.69553331,4.846184538099008e-35 -3358,1995/3/13,0.301017386,16.13739294,0.69547582,1.463513655,7.602987385,3.85531953,2.423092269049504e-35 -3359,1995/3/14,0.269565467,16.10266017,-0.132978975,1.856380416,7.663286316,3.55544826,1.211546134524752e-35 -3360,1995/3/15,0.138245931,15.91613727,-0.531323505,1.807398829,7.621328491,2.346647282,6.05773067262376e-36 -3361,1995/3/16,0.178434132,16.46221121,1.419038967,1.61676806,7.641258529,2.252006698,3.02886533631188e-36 -3362,1995/3/17,0.423435096,16.77284091,2.609675232,1.002548946,7.618165622,3.945327727,1.51443266815594e-36 -3363,1995/3/18,0.446547331,15.3475616,1.504594015,1.116686865,7.180826654,4.690101569,7.5721633407797e-37 -3364,1995/3/19,0.35050637,15.33686295,2.054880186,1.403561998,7.102086787,4.306688301,3.78608167038985e-37 -3365,1995/3/20,0.174693558,16.45111106,1.670728827,1.328050299,7.590822865,2.840070602,1.893040835194925e-37 -3366,1995/3/21,0.451692533,16.87479266,2.087864233,1.46060624,7.70686184,4.71930972,9.465204175974626e-38 -3367,1995/3/22,0.321386048,17.26222359,1.611719717,1.632449849,7.911214565,4.136645171,4.732602087987313e-38 -3368,1995/3/23,0.208800751,19.31329013,3.12319824,1.677809121,8.567662168,3.077940859,2.3663010439936564e-38 -3369,1995/3/24,0.438581905,19.25124066,3.856755539,1.453606397,8.44621413,4.612218844,1.1831505219968282e-38 -3370,1995/3/25,0.954582109,17.906969,3.523197885,0.749347071,7.926261153,10.12154322,5.915752609984141e-39 -3371,1995/3/26,1.758694124,16.17305702,4.724953295,1.576764578,7.001190271,24.61137272,2.9578763049920706e-39 -3372,1995/3/27,2.406518246,17.61185838,6.033328491,1.921110905,7.378972583,49.72131159,1.4789381524960353e-39 -3373,1995/3/28,4.214720268,15.59426421,5.259092668,1.403668824,6.639089711,127.2771938,7.394690762480176e-40 -3374,1995/3/29,0.0,16.05336059,2.574047928,1.388521903,7.278739504,33.88563735,3.697345381240088e-40 -3375,1995/3/30,0.011590748,16.8036653,2.815059819,1.579272791,7.546062057,16.39381583,1.848672690620044e-40 -3376,1995/3/31,0.208922043,17.64874164,3.985046789,1.589029897,7.725499501,14.98460446,9.24336345310022e-41 -3377,1995/4/1,0.018373015,17.99481455,4.475678403,1.520086521,7.792254887,8.073160552,4.62168172655011e-41 -3378,1995/4/2,0.017461103,18.34983426,4.90609064,1.490360106,7.870941215,5.159077064,2.310840863275055e-41 -3379,1995/4/3,0.58316518,17.8858124,5.066901971,1.744923852,7.641740264,12.82685547,1.1554204316375276e-41 -3380,1995/4/4,2.811656416,17.46251725,4.916806676,1.780916209,7.481418759,61.36704335,5.777102158187638e-42 -3381,1995/4/5,0.904467898,17.01922698,5.126286523,1.534823435,7.250531148,37.44275677,2.888551079093819e-42 -3382,1995/4/6,1.098992184,16.25071822,3.406733456,1.466722543,7.205959302,39.07177241,1.4442755395469095e-42 -3383,1995/4/7,0.8201032,15.70245887,3.102032971,1.465153228,7.023004696,33.12232366,7.221377697734547e-43 -3384,1995/4/8,1.297383653,15.41338241,3.525484079,1.199097564,6.834382122,44.22197979,3.610688848867274e-43 -3385,1995/4/9,1.558228331,15.48559955,1.881004594,1.240589842,7.096286424,56.12597024,1.805344424433637e-43 -3386,1995/4/10,0.230669664,16.69733165,1.872973623,1.11115063,7.571495404,23.75506955,9.026722122168184e-44 -3387,1995/4/11,1.090772368,19.02068179,4.468520512,1.373092357,8.178078261,38.11933922,4.513361061084092e-44 -3388,1995/4/12,1.142336972,19.4073543,6.930585216,2.045405086,7.932954341,41.9414829,2.256680530542046e-44 -3389,1995/4/13,1.904578826,18.91908017,5.58124902,1.83137609,7.954176161,65.39465243,1.128340265271023e-44 -3390,1995/4/14,0.689837975,17.48115397,3.438000848,1.630535828,7.671022848,38.80827468,5.641701326355115e-45 -3391,1995/4/15,0.705497353,18.52384014,4.279922578,1.510054396,7.978686931,33.14391298,2.8208506631775575e-45 -3392,1995/4/16,0.56590492,18.89347115,4.574947952,1.632545383,8.085967426,26.72437481,1.4104253315887788e-45 -3393,1995/4/17,0.260775768,19.79073394,4.494812115,1.599753499,8.468181965,16.51093263,7.052126657943894e-46 -3394,1995/4/18,0.172861167,19.96575375,4.716425502,1.470811468,8.506456475,10.98316623,3.526063328971947e-46 -3395,1995/4/19,0.60732149,20.01381936,6.297145597,1.730658044,8.280979429,16.4300506,1.7630316644859735e-46 -3396,1995/4/20,1.130599971,21.115329,7.838829389,2.093607848,8.490093248,26.88846768,8.815158322429867e-47 -3397,1995/4/21,0.90630315,20.21138537,7.333010274,2.149585433,8.174664641,25.66102514,4.407579161214934e-47 -3398,1995/4/22,0.511163377,21.10772389,6.952025314,1.962933673,8.635646204,18.03838828,2.203789580607467e-47 -3399,1995/4/23,0.81447378,21.64014742,7.875279056,1.884399951,8.705534262,21.60444379,1.1018947903037334e-47 -3400,1995/4/24,3.715659918,20.75854256,7.437627779,1.625151266,8.385906818,93.99704823,5.509473951518667e-48 -3401,1995/4/25,4.369287257,19.41196235,6.941014456,1.487635792,7.87526021,171.6514455,2.7547369757593335e-48 -3402,1995/4/26,1.409005937,20.12400533,7.327286413,1.401280905,8.11451724,101.1030384,1.3773684878796668e-48 -3403,1995/4/27,1.280882893,19.80910844,7.786727218,1.321680492,7.879003978,83.67233592,6.886842439398334e-49 -3404,1995/4/28,2.287547166,19.72356573,7.528146888,1.45706674,7.888114855,119.2260239,3.443421219699167e-49 -3405,1995/4/29,0.211817672,19.80343794,6.585913103,1.31339969,8.095096291,46.71221776,1.7217106098495834e-49 -3406,1995/4/30,1.697108843,21.58106719,7.78892629,1.340837685,8.662289181,82.0100617,8.608553049247917e-50 -3407,1995/5/1,1.483624961,20.12480065,8.615181253,1.223039044,7.832342663,80.13227228,4.304276524623959e-50 -3408,1995/5/2,5.780462234,19.85810173,8.813389445,1.086287943,7.660449569,277.6673631,2.1521382623119793e-50 -3409,1995/5/3,2.610065787,19.91389837,8.48983112,1.026484598,7.754520942,209.6929273,1.0760691311559897e-50 -3410,1995/5/4,3.283455088,19.53548474,8.481919672,0.34596317,7.577908753,247.9104986,5.380345655779948e-51 -3411,1995/5/5,2.891754301,14.7380044,8.029024351,0.497289899,5.413814147,247.4596397,2.690172827889974e-51 -3412,1995/5/6,0.867639997,16.58400414,7.291508987,0.292765698,6.489325316,133.5368437,1.345086413944987e-51 -3413,1995/5/7,3.391335069,16.71206803,6.854954912,0.188331141,6.645687198,259.1609607,6.725432069724935e-52 -3414,1995/5/8,0.579900429,18.53694751,6.962023159,1.002514614,7.433116355,116.5688879,3.362716034862468e-52 -3415,1995/5/9,2.109569363,20.39067468,7.564567659,0.858579377,8.135270323,169.3097703,1.681358017431234e-52 -3416,1995/5/10,19.65232418,19.33890277,8.73483942,0.729529655,7.407430133,1838.866017,1.0807516717897814e-05 -3417,1995/5/11,2.765045787,18.55023833,8.982033933,0.824896695,6.973297787,785.8772102,5.4037535895153305e-06 -3418,1995/5/12,0.758330309,21.48664133,10.11482044,1.068483303,8.088510775,368.2492739,2.7018767947576653e-06 -3419,1995/5/13,2.669771908,20.65244386,11.42147982,0.954601758,7.335433667,440.8118814,1.3509383973788326e-06 -3420,1995/5/14,3.9259512,19.16127082,11.33847564,0.893203674,6.592810413,549.8290269,6.754691986894163e-07 -3421,1995/5/15,9.799599343,18.12707201,11.24968412,1.000950754,6.073952611,1276.473659,0.037160847375744675 -3422,1995/5/16,4.676484358,19.5207593,11.47197759,1.176743552,6.731444885,952.1482989,0.01839509969231891 -3423,1995/5/17,1.991565291,19.62984831,11.99907041,1.71356194,6.614158871,562.542233,0.009197549846159454 -3424,1995/5/18,1.528780996,20.34902946,12.12162227,1.941773629,6.950983672,402.9428896,0.004598774923079727 -3425,1995/5/19,0.270757908,22.82166265,12.52625413,2.48526682,8.10102859,204.3747724,0.0022993874615398636 -3426,1995/5/20,0.002881748,22.632324,10.93804801,1.914797984,8.414193593,112.5213882,0.0011496937307699318 -3427,1995/5/21,0.666853101,21.36182018,11.22113495,1.50279551,7.720498861,118.4091771,0.0005748468653849659 -3428,1995/5/22,0.171845529,22.998621,12.22733484,2.221890745,8.262196392,68.13487331,0.00028742343269248295 -3429,1995/5/23,1.903593464,23.59511244,12.72857143,2.313046239,8.424100402,145.0320316,0.00014371171634624147 -3430,1995/5/24,2.544078951,24.2422817,12.62233125,2.117584804,8.773523305,191.0375525,7.185585817312074e-05 -3431,1995/5/25,3.742500239,24.90589505,12.19944206,1.98696108,9.201692114,277.3096651,3.592792908656037e-05 -3432,1995/5/26,2.716273458,24.83403239,12.36340242,1.929087381,9.124229922,244.7299548,1.7963964543280184e-05 -3433,1995/5/27,3.399838198,25.03595148,12.37832362,1.563310831,9.216584855,285.8586898,8.981982271640092e-06 -3434,1995/5/28,2.027647268,24.29583444,12.82603329,1.526834842,8.735397293,212.983429,4.490991135820046e-06 -3435,1995/5/29,5.785450546,23.92696523,13.37453758,1.583188066,8.39671625,448.6151563,2.245495567910023e-06 -3436,1995/5/30,3.850582943,24.02796997,12.80157332,1.248688098,8.60188032,406.3164151,1.1227477839550115e-06 -3437,1995/5/31,4.150859757,24.75961031,13.42196688,1.07215848,8.803006436,439.8579817,5.613738919775058e-07 -3438,1995/6/1,3.965133029,24.84217575,13.33368866,0.739228626,8.865698392,447.264197,2.806869459887529e-07 -3439,1995/6/2,4.786069448,23.52958819,13.94204508,0.909939688,8.012416081,530.4135296,1.4034347299437644e-07 -3440,1995/6/3,6.300786587,23.90312803,14.41278758,1.19016773,8.061484696,727.4611642,7.017173649718822e-08 -3441,1995/6/4,6.610902726,24.87829961,14.31081427,1.287746638,8.604769912,877.4927368,3.508586824859411e-08 -3442,1995/6/5,9.569998305,24.12019733,14.77642804,1.100207599,8.05740716,1360.173012,0.007388583316858247 -3443,1995/6/6,13.2423107,22.21557296,14.40984208,0.88848917,7.138071065,2280.137343,0.04263690913819268 -3444,1995/6/7,13.51219007,21.8649644,13.64601003,0.591507852,7.20973201,3060.736331,0.09940210939705571 -3445,1995/6/8,8.002982043,20.75121112,13.03399504,0.432132152,6.814993057,2468.319297,0.07126029527478456 -3446,1995/6/9,9.450295421,21.35897287,13.26404137,0.696889791,7.062396682,2764.690756,0.0824682888127274 -3447,1995/6/10,6.986758881,20.84983476,13.81188714,0.843056108,6.587332373,2359.734886,0.04955622420331595 -3448,1995/6/11,6.49817958,20.73344725,13.92127398,0.94582325,6.4787579,2165.833156,0.025116096685980093 -3449,1995/6/12,9.774748358,20.47885354,13.87334919,1.03325095,6.350929959,2846.852384,0.08923233001157754 -3450,1995/6/13,5.464653335,21.04649232,13.98551301,1.099534726,6.62873155,2094.204933,0.0437575197036021 -3451,1995/6/14,2.620511537,20.29407016,13.89999761,1.42272719,6.231909953,1286.811988,0.02187875985180105 -3452,1995/6/15,3.335095201,21.85583584,12.65107093,1.831470131,7.509352214,1157.570648,0.010939379925900525 -3453,1995/6/16,3.548466501,22.02195914,12.26923215,1.669365159,7.704531581,1054.776277,0.005469689962950263 -3454,1995/6/17,5.145738067,22.70890978,12.7378285,0.834418279,7.917817798,1206.096679,0.0027348449814751314 -3455,1995/6/18,2.655032707,20.81885167,13.50995913,1.049869937,6.671226252,806.8395182,0.0013674224907375657 -3456,1995/6/19,5.89972103,20.70449169,13.63709838,1.090678904,6.560341316,1154.420636,0.0006837112453687828 -3457,1995/6/20,5.269698875,21.46602137,14.03242891,1.52933081,6.838525125,1146.301481,0.0003418556226843914 -3458,1995/6/21,4.711274682,21.17455695,13.78384175,1.302295921,6.766134223,1065.711151,0.0001709278113421957 -3459,1995/6/22,5.356522691,22.21481269,13.43336365,1.659475782,7.446553668,1142.51977,8.546390567109786e-05 -3460,1995/6/23,5.586773211,23.7896315,14.5971525,1.978453859,7.910845104,1189.696285,4.273195283554893e-05 -3461,1995/6/24,5.876642268,24.12442759,15.10205742,1.909130818,7.925490013,1240.399691,2.1365976417774464e-05 -3462,1995/6/25,2.806915664,23.62662574,14.77924903,1.383810382,7.761507752,799.3769301,1.0682988208887232e-05 -3463,1995/6/26,5.077130812,22.16433855,13.91645697,1.002377312,7.25793352,974.3877945,5.341494104443616e-06 -3464,1995/6/27,4.672479525,22.35328197,14.07991871,0.881672013,7.304377153,945.4052316,2.670747052221808e-06 -3465,1995/6/28,2.968487732,21.13227916,13.76014974,0.738199882,6.747191002,701.6945305,1.335373526110904e-06 -3466,1995/6/29,7.594060044,21.28008871,14.19781294,0.702050025,6.667819792,1252.063415,0.010683535459641885 -3467,1995/6/30,7.604985357,21.12804363,13.19786695,0.911455803,6.941052853,1474.717635,0.013538539160163907 -3468,1995/7/1,8.094287286,20.54950697,13.47028963,0.90093982,6.529174582,1713.33072,0.027199126665501082 -3469,1995/7/2,9.964477163,20.72635331,13.95924793,0.852457456,6.444541632,2257.032409,0.06489362934859573 -3470,1995/7/3,12.55304928,18.25573928,12.76469273,0.836964233,5.502431844,3193.665086,0.1591820978642009 -3471,1995/7/4,6.225326587,18.58688535,12.81526641,0.886440492,5.673576034,2305.310787,0.09214357835995202 -3472,1995/7/5,9.70352936,18.99232033,13.15814749,0.961192359,5.767997479,2996.813562,0.14567427923399995 -3473,1995/7/6,12.16462031,18.00414796,13.17449483,1.061660864,5.172811625,3992.595674,0.27496585998805867 -3474,1995/7/7,13.07493846,18.81183355,12.51034868,1.077165862,5.921541883,4939.939984,0.3897662001623935 -3475,1995/7/8,18.38532367,19.07995046,12.05960827,1.227808412,6.233357832,7597.254917,0.7047610819974373 -3476,1995/7/9,3.387977598,19.73008661,12.16251278,1.133046587,6.545074031,3309.224548,0.3414917712372605 -3477,1995/7/10,2.6519781,22.22714911,12.9322326,1.699789255,7.605215013,2087.685531,0.17074588561863024 -3478,1995/7/11,3.964689991,21.67880457,14.22677607,1.669142459,6.881937262,1874.373919,0.08537294280931512 -3479,1995/7/12,2.549757459,22.85543471,14.31839105,1.716158047,7.497136484,1321.194404,0.04268647140465756 -3480,1995/7/13,8.294297142,22.4440739,14.33812294,1.151273547,7.266700859,2160.004449,0.0661035144421922 -3481,1995/7/14,10.60703589,21.88238705,14.06922498,1.092303859,7.053060005,2849.845593,0.19022265661514015 -3482,1995/7/15,10.17377936,20.50796151,13.83021579,0.911055654,6.374106378,3080.962193,0.27300043610526686 -3483,1995/7/16,18.87138363,19.6887609,13.50192485,0.955300145,6.035363398,5844.060682,0.7892263534831703 -3484,1995/7/17,16.01343511,19.31278741,13.11956098,0.70358494,5.97264827,6678.904666,1.007795833961822 -3485,1995/7/18,5.649074941,21.14258193,12.47663611,0.586644337,7.189277815,3776.08981,0.484133559289304 -3486,1995/7/19,2.241027824,22.28856118,12.67901641,0.534969994,7.719139126,2046.376583,0.242066779644652 -3487,1995/7/20,1.202947235,22.36541015,13.24486416,1.092949251,7.589812326,1238.866303,0.121033389822326 -3488,1995/7/21,1.799004483,22.67251228,13.67122006,1.463985826,7.618914413,982.9551729,0.060516694911163 -3489,1995/7/22,1.775850084,21.85068447,13.63634325,1.226769019,7.192803249,765.4437446,0.0302583474555815 -3490,1995/7/23,1.572108374,22.82198614,13.76766968,1.255633423,7.670117429,582.425608,0.01512917372779075 -3491,1995/7/24,10.05270034,22.96492276,13.58480949,1.138520167,7.804043852,1672.856971,0.12940433961708733 -3492,1995/7/25,11.35613676,22.24259645,14.13077986,1.05809691,7.240983517,2332.351334,0.2926520900321918 -3493,1995/7/26,6.573397387,22.31266999,14.73744894,1.220386609,7.06464311,1831.157388,0.13982848435833717 -3494,1995/7/27,4.775031609,23.48908858,14.69196681,1.151049995,7.733301475,1434.51967,0.06991424217916858 -3495,1995/7/28,21.08252164,23.88901834,14.95024842,1.117575421,7.866619878,4811.455196,0.7804802132733766 -3496,1995/7/29,12.6673911,21.86574718,14.31444361,0.608228544,6.973712837,4393.880131,0.75739569220998 -3497,1995/7/30,10.18840859,22.27884519,14.27735994,0.495102792,7.21792896,3965.448494,0.5826717429310966 -3498,1995/7/31,6.850297777,22.84539415,14.3792537,0.527490159,7.495207875,3022.258444,0.2833946049120388 -3499,1995/8/1,3.189799446,21.59500807,13.56414702,0.802235519,7.094780677,1830.015525,0.1416973024560194 -3500,1995/8/2,0.791254455,21.43571986,13.97424676,0.881801341,6.864728419,957.3582226,0.0708486512280097 -3501,1995/8/3,3.423566207,21.86234204,14.25422508,1.041792116,7.002773134,1088.971845,0.03542432561400485 -3502,1995/8/4,16.01457048,22.49173707,14.53239667,0.981416689,7.255300194,3451.372282,0.581176841147466 -3503,1995/8/5,12.26211651,21.77403966,13.62415045,0.478124653,7.179374131,3684.227098,0.6384043382761684 -3504,1995/8/6,10.35108369,21.18434964,13.9230691,0.737809437,6.750971182,3560.2849,0.5809826012349886 -3505,1995/8/7,9.391658774,21.98412922,14.52464134,1.172968994,6.980267528,3440.120677,0.4715642279988773 -3506,1995/8/8,12.43545029,21.97249371,15.04551508,1.456008571,6.776167053,4318.21812,0.6893376400517696 -3507,1995/8/9,16.75005801,21.24885477,15.10859932,1.31860291,6.323809178,6191.443723,1.225276567986856 -3508,1995/8/10,10.40045435,20.27379118,14.13441016,0.947001549,6.15412565,5059.053737,0.9771107074139933 -3509,1995/8/11,20.17086944,19.61701706,13.20369141,0.849544089,6.149406658,8721.20861,1.8497629235846698 -3510,1995/8/12,3.54550449,19.0538928,12.69968139,0.924971621,6.027646179,3779.339653,0.8569362281289628 -3511,1995/8/13,7.138059959,19.43720466,13.07594539,0.731487526,6.101188482,3685.792506,0.5397870969513147 -3512,1995/8/14,18.51523132,18.95118439,12.85532971,1.014276742,5.912757818,7333.780009,1.6273370520820927 -3513,1995/8/15,7.25974496,18.28179733,12.28451937,0.938988885,5.759002397,4597.068961,0.9173190967100499 -3514,1995/8/16,10.902625,19.42816289,12.45268586,0.895051382,6.336745293,5162.605006,0.9932337445208975 -3515,1995/8/17,12.8368079,18.72834451,12.54301169,0.82089314,5.915469046,5921.455863,1.314836875812638 -3516,1995/8/18,2.164365502,19.59205086,12.60982341,0.744739027,6.37496997,2612.605116,0.6051321767438219 -3517,1995/8/19,8.658328844,21.65484562,12.8764623,0.65323777,7.396626867,3525.882462,0.4590566302956418 -3518,1995/8/20,11.26348089,20.5726864,11.93313753,0.399124518,7.128898294,4264.063747,0.7366439405143012 -3519,1995/8/21,11.73662606,20.70937519,11.85220925,0.331307256,7.227046796,4615.801846,0.9139909668215199 -3520,1995/8/22,7.024559705,21.41020513,12.70644607,0.843121966,7.33074133,3370.835486,0.4199577185920532 -3521,1995/8/23,7.967724024,21.3095955,13.69832116,0.576837259,6.945877461,3221.957111,0.3441335301227664 -3522,1995/8/24,8.425614189,21.33766738,13.95262127,0.537515198,6.872240548,3212.446721,0.3683953064468326 -3523,1995/8/25,7.095307638,20.98491579,13.48344158,0.165095893,6.848935169,2812.321919,0.2034765118423124 -3524,1995/8/26,1.447331055,21.25049637,12.9649115,0.174476431,7.175237227,1342.194543,0.09955174196982963 -3525,1995/8/27,2.563314059,22.31268423,13.88494804,0.544319121,7.445387594,1121.707261,0.049775870984914816 -3526,1995/8/28,0.892370379,21.67868401,13.96149361,0.32394574,7.072571173,656.4021095,0.024887935492457408 -3527,1995/8/29,7.52379068,22.70127378,14.11734199,0.929000362,7.586119888,1485.245746,0.012443967746228704 -3528,1995/8/30,12.18061391,22.86819711,14.26175758,1.275148599,7.632338631,2558.761905,0.5365531361619134 -3529,1995/8/31,3.142544878,23.68466827,14.22701148,0.860251969,8.090761303,1295.698064,0.23735813044960447 -3530,1995/9/1,1.119040051,24.13280139,14.11308609,1.090361357,8.369633585,678.2612999,0.11867906522480223 -3531,1995/9/2,11.94555499,22.77031473,14.19675011,0.911819195,7.611781007,2140.206254,0.5336348764262466 -3532,1995/9/3,17.39730093,21.31456735,13.88134146,0.69279683,6.917971365,3982.803374,1.4237570583641994 -3533,1995/9/4,8.140299508,21.20848046,13.77215055,0.836810414,6.901841748,2898.934682,0.7951259585314207 -3534,1995/9/5,1.186814272,22.25281601,13.70872121,1.075761537,7.504698585,1219.284268,0.3884779879015532 -3535,1995/9/6,1.030748199,23.31900388,14.28471169,1.527761168,7.898113083,765.3555422,0.1942389939507766 -3536,1995/9/7,10.92041578,23.54672774,14.26889745,1.150128178,8.031183814,2217.214055,0.4154532672305075 -3537,1995/9/8,23.09058214,20.53971533,14.02042801,0.447969852,6.437023844,5717.99714,6.174853397386418 -3538,1995/9/9,6.92568326,20.10361994,13.43856362,0.467226487,6.417535918,3307.478284,0.7570056743234113 -3539,1995/9/10,4.240638767,21.98865826,13.53827199,0.688688642,7.437488079,2166.045017,0.37472517069139316 -3540,1995/9/11,3.529745551,21.98402231,13.2190864,0.493272738,7.544198689,1621.230909,0.18736258534569658 -3541,1995/9/12,1.457655395,21.5539838,13.29210717,0.543671574,7.291500995,957.8529576,0.09368129267284829 -3542,1995/9/13,3.80602532,21.49594399,13.21308316,0.762828968,7.290510623,1084.210701,0.046840646336424145 -3543,1995/9/14,5.679755426,21.43928487,12.47439367,0.617343163,7.503037247,1316.845406,0.023420323168212073 -3544,1995/9/15,2.7191252,21.10107352,12.49696711,0.432689384,7.321165669,861.2074482,0.011710161584106036 -3545,1995/9/16,1.308729516,21.19854059,12.45265869,0.741521776,7.391003447,521.5039536,0.005855080792053018 -3546,1995/9/17,0.473964755,21.1123076,12.46873633,0.694729364,7.344296882,299.2854389,0.002927540396026509 -3547,1995/9/18,2.326704923,21.05106891,12.24829426,0.798968602,7.385588227,400.0621996,0.0014637701980132545 -3548,1995/9/19,19.14214623,19.5694729,11.56318711,0.23754465,6.825885061,2712.955432,1.0508985340058852 -3549,1995/9/20,7.31137726,16.19484193,10.72824626,0.15453675,5.28749575,1932.467492,0.6741038604854781 -3550,1995/9/21,5.227972711,15.48331782,10.77301081,0.075114637,4.858555836,1540.110274,0.36372636665481817 -3551,1995/9/22,4.191053045,14.66441878,8.920549262,0.050284058,5.1364205,1294.257346,0.18011709414429417 -3552,1995/9/23,0.636271872,14.45950279,7.983277763,0.158612867,5.351869256,591.4917081,0.09005854707214708 -3553,1995/9/24,0.164848394,16.02055279,8.214912141,0.34309157,6.060517033,324.2050222,0.04502927353607354 -3554,1995/9/25,0.898841307,17.4632135,9.434360342,0.48481127,6.423739794,308.9818937,0.02251463676803677 -3555,1995/9/26,0.573954751,16.99498557,9.331652169,0.652920273,6.222092946,217.381235,0.011257318384018385 -3556,1995/9/27,1.001682169,18.66086736,9.549119332,0.768068644,6.995076792,211.844217,0.005628659192009193 -3557,1995/9/28,0.864043308,19.13234527,9.833789797,0.653010968,7.154331011,171.3694156,0.0028143295960045963 -3558,1995/9/29,2.98439576,20.00327362,10.45087443,1.10239709,7.42278583,332.6169862,0.0014071647980022982 -3559,1995/9/30,2.632844368,19.94883637,10.86677357,0.813777536,7.281613821,328.8519035,0.0007035823990011491 -3560,1995/10/1,5.064420442,19.76993267,10.20047746,0.821511752,7.383661864,552.833948,0.00035179119950057454 -3561,1995/10/2,7.291778827,19.73837336,10.35266081,0.738954236,7.330193676,886.6673919,0.00017589559975028727 -3562,1995/10/3,5.273764108,19.86505233,10.65777594,0.628166896,7.312206746,829.8240726,8.794779987514364e-05 -3563,1995/10/4,11.33455732,19.16329623,10.4248658,0.992067909,7.027046763,1703.086867,0.25745474052569217 -3564,1995/10/5,9.67268594,18.18005861,10.33816129,1.219773633,6.551420918,1951.917426,0.31944452170708754 -3565,1995/10/6,2.219268955,16.73610968,9.9250531,0.749809469,5.932313377,934.1591456,0.1534161807093434 -3566,1995/10/7,1.944739319,16.01011829,8.991842947,0.746769272,5.864859649,663.828502,0.0767080903546717 -3567,1995/10/8,3.188474333,16.85994377,7.476564299,0.580429699,6.710932326,724.9629127,0.03835404517733585 -3568,1995/10/9,0.732993798,16.86029222,7.659939374,0.520984649,6.669457983,369.8547209,0.019177022588667925 -3569,1995/10/10,1.508667241,17.42822235,8.831442502,0.464868339,6.63741156,347.2695138,0.009588511294333963 -3570,1995/10/11,0.360299636,17.85311761,8.800844867,0.746836617,6.858425153,186.9197782,0.004794255647166981 -3571,1995/10/12,1.171197325,18.13553906,6.407867905,0.803554289,7.546184381,201.6730189,0.0023971278235834907 -3572,1995/10/13,0.0,18.94682343,6.149408515,0.955869859,7.959958146,86.24113135,0.0011985639117917453 -3573,1995/10/14,1.735209917,19.87505157,6.666891271,0.810412209,8.284147043,170.4620336,0.0005992819558958727 -3574,1995/10/15,0.495961211,20.20323039,7.873197221,0.973570185,8.206460185,92.14209455,0.00029964097794793633 -3575,1995/10/16,0.893338795,20.03733077,8.38462476,1.092640457,8.025829385,90.41631982,0.00014982048897396817 -3576,1995/10/17,2.431645711,19.59131117,9.119194073,1.257832415,7.6471307,165.4992178,7.491024448698408e-05 -3577,1995/10/18,2.0663281,18.54313565,8.170206454,1.210548452,7.378736286,162.6190124,3.745512224349204e-05 -3578,1995/10/19,2.41346494,17.00327807,7.992222683,1.018586959,6.691575717,184.5329921,1.872756112174602e-05 -3579,1995/10/20,1.990198631,18.04937138,7.919206837,1.318750019,7.213009373,170.406136,9.36378056087301e-06 -3580,1995/10/21,0.396493303,19.20797677,8.511344319,1.392575601,7.627052718,79.20157344,4.681890280436505e-06 -3581,1995/10/22,0.222264163,19.14929036,9.547546804,1.19345086,7.34189708,47.10205715,2.3409451402182526e-06 -3582,1995/10/23,4.85580155,18.50684468,8.616341769,0.814052464,7.273213791,263.8248405,1.1704725701091263e-06 -3583,1995/10/24,1.332849774,17.00099985,7.629974274,0.845020396,6.802156188,143.8793807,5.852362850545632e-07 -3584,1995/10/25,0.041002768,15.52906047,5.328568578,0.907727017,6.655934553,54.37621784,2.926181425272816e-07 -3585,1995/10/26,0.0,16.49982015,4.943115589,0.614159563,7.16202688,30.00509439,1.463090712636408e-07 -3586,1995/10/27,0.026520448,17.23883443,4.158998793,0.827761148,7.617566152,20.07383175,7.31545356318204e-08 -3587,1995/10/28,0.104965443,18.08516155,5.528894404,0.681822001,7.758001767,16.04116861,3.65772678159102e-08 -3588,1995/10/29,0.0,19.3735078,6.571488157,0.982846347,8.146351187,8.989753272,1.82886339079551e-08 -3589,1995/10/30,0.096366514,19.21662237,7.336589778,0.808529776,7.929359364,8.014832158,9.14431695397755e-09 -3590,1995/10/31,1.680347319,17.90592531,7.683519178,0.950060436,7.245218769,44.72524088,4.572158476988775e-09 -3591,1995/11/1,0.336685503,15.74769398,8.002571942,0.997802913,6.120205822,20.55206828,2.2860792384943873e-09 -3592,1995/11/2,0.465833864,15.74494187,7.034984202,0.886337802,6.387480557,18.68734909,1.1430396192471937e-09 -3593,1995/11/3,0.428930686,14.33682241,6.887403188,0.579269547,5.752802923,16.60576269,5.715198096235968e-10 -3594,1995/11/4,0.263472042,13.73612006,4.938328741,0.661549286,5.974363001,11.86386,2.857599048117984e-10 -3595,1995/11/5,0.006144219,13.56107565,2.768455319,0.539426037,6.334459872,5.051317721,1.428799524058992e-10 -3596,1995/11/6,8.72e-05,15.32476522,2.800976116,0.431754777,7.063210173,2.919549372,7.14399762029496e-11 -3597,1995/11/7,0.061466544,15.96689856,4.155717483,0.543812083,7.117832238,2.79577534,3.57199881014748e-11 -3598,1995/11/8,0.003916329,14.5222459,3.201542231,0.748987839,6.671793819,1.489580736,1.78599940507374e-11 -3599,1995/11/9,0.732826776,15.10736566,4.690505644,0.577515779,6.652107142,10.49112703,8.9299970253687e-12 -3600,1995/11/10,1.267049899,16.02159621,8.103214713,0.692808271,6.255773449,21.86968517,4.46499851268435e-12 -3601,1995/11/11,0.0,15.75157306,6.732248049,1.37282615,6.496177188,5.955752414,2.232499256342175e-12 -3602,1995/11/12,0.310449058,14.76092296,3.52990009,1.295499014,6.728915719,7.274595738,1.1162496281710876e-12 -3603,1995/11/13,16.81948587,10.69277304,1.513711655,0.635236379,5.398943168,743.8788702,0.10782554575690945 -3604,1995/11/14,1.788693921,8.223538597,-1.083338545,0.542472804,4.862512337,308.6853583,0.053403762552893794 -3605,1995/11/15,0.0,10.9822864,-0.506466364,0.733584424,5.826773911,110.2939436,0.026701881276446897 -3606,1995/11/16,0.65625066,11.61255686,0.678640529,0.886294463,5.910929017,103.0896534,0.013350940638223448 -3607,1995/11/17,0.0,12.92758316,0.757753939,0.925266293,6.420408419,49.63395149,0.006675470319111724 -3608,1995/11/18,1.73301244,12.78527567,1.129911779,0.748818952,6.315263233,122.1107607,0.003337735159555862 -3609,1995/11/19,3.773215104,10.67894406,2.528524241,0.933874613,5.207756529,256.7482845,0.001668867579777931 -3610,1995/11/20,1.281917931,8.355229451,0.626386983,1.075276669,4.634133403,151.7087027,0.0008344337898889655 -3611,1995/11/21,0.626755275,10.38034096,0.976123488,1.088923194,5.386293912,92.39272129,0.00041721689494448276 -3612,1995/11/22,0.050976352,11.33280482,0.440933498,0.714653432,5.850550753,42.94693551,0.00020860844747224138 -3613,1995/11/23,0.924202775,11.51168196,-0.075936378,0.547555822,5.993825728,70.8007154,0.00010430422373612069 -3614,1995/11/24,0.064852699,9.002654769,-0.408273049,0.849962155,5.077266815,29.80090809,5.2152111868060345e-05 -3615,1995/11/25,1.572075389,11.06760772,1.487383442,0.977789592,5.583931472,86.48293068,2.6076055934030173e-05 -3616,1995/11/26,1.09946525,10.05340496,1.117881774,1.078449342,5.23975449,76.53610962,1.3038027967015086e-05 -3617,1995/11/27,0.169858019,9.746331457,-1.826630063,0.975463743,5.550561153,33.14146965,6.519013983507543e-06 -3618,1995/11/28,0.001675947,10.1671211,-2.373276567,0.802636839,5.763230296,15.83034398,3.2595069917537716e-06 -3619,1995/11/29,0.011636028,10.59396356,-2.126988732,0.854628163,5.896645351,10.09446481,1.6297534958768858e-06 -3620,1995/11/30,0.107475075,10.75987014,-2.119233078,0.757767833,5.95857169,9.736986983,8.148767479384429e-07 -3621,1995/12/1,0.205028592,10.78300303,-1.425593743,0.931391189,5.897315626,10.80321669,4.0743837396922145e-07 -3622,1995/12/2,9.54e-05,10.69562234,-1.678190956,0.968785139,5.894065566,4.449318373,2.0371918698461072e-07 -3623,1995/12/3,0.231407163,10.95743774,-1.108893398,0.983639858,5.93062866,8.0688916,1.0185959349230536e-07 -3624,1995/12/4,1.020201067,10.84788182,-0.178513257,0.924134044,5.773432195,26.90356537,5.092979674615268e-08 -3625,1995/12/5,2.562978624,9.916033186,-2.646794661,0.855571982,5.71136365,77.59334416,2.546489837307634e-08 -3626,1995/12/6,0.991344851,6.7122872,-3.458066068,0.735722041,4.658854754,50.8168669,1.273244918653817e-08 -3627,1995/12/7,0.058764975,7.495978745,-3.93143597,0.866081988,4.979188301,18.70206933,6.366224593269085e-09 -3628,1995/12/8,0.010552399,8.112050044,-5.100744239,0.710393157,5.279803748,9.90780277,3.1831122966345426e-09 -3629,1995/12/9,0.011322438,8.784522346,-4.808079454,0.975438417,5.49040443,6.381970879,1.5915561483172713e-09 -3630,1995/12/10,0.001333026,9.361977846,-4.414406289,1.062903028,5.664413024,4.038214063,7.957780741586356e-10 -3631,1995/12/11,0.00810841,9.645794817,-4.005173529,1.066394016,5.736293025,2.763878539,3.978890370793178e-10 -3632,1995/12/12,2.14e-05,9.858058026,-3.481510918,1.172601524,5.772975694,1.729487547,1.989445185396589e-10 -3633,1995/12/13,0.044929452,10.28583097,-3.349848044,1.309394107,5.91575838,1.856106923,9.947225926982946e-11 -3634,1995/12/14,0.070267136,10.12469225,-2.312447367,1.153005583,5.7673621,1.954952026,4.973612963491473e-11 -3635,1995/12/15,0.064933193,10.52481336,-2.658238176,1.113731483,5.946383806,1.692236668,2.4868064817457364e-11 -3636,1995/12/16,0.093592025,10.50952835,-2.524544926,1.001405803,5.929894462,1.854487795,1.2434032408728682e-11 -3637,1995/12/17,0.065712265,10.72226782,-2.864299926,0.888830416,6.03768385,1.432892721,6.217016204364341e-12 -3638,1995/12/18,0.054473104,10.07959985,-2.228494863,0.757658863,5.746639812,1.131534333,3.1085081021821705e-12 -3639,1995/12/19,0.125107596,10.9965438,-1.540681525,1.09407081,6.015018754,1.68245991,1.5542540510910852e-12 -3640,1995/12/20,1.30945805,10.27956722,-0.972260724,0.833604783,5.680365515,15.33781789,7.771270255455426e-13 -3641,1995/12/21,0.139747732,9.798949756,-0.200846456,0.880220644,5.390410117,5.602661954,3.885635127727713e-13 -3642,1995/12/22,0.283687465,9.260193888,-0.742531472,0.822482883,5.262977097,5.596735995,1.9428175638638565e-13 -3643,1995/12/23,0.07208159,9.099030552,-1.390542085,0.714547255,5.291283267,2.921770826,9.714087819319283e-14 -3644,1995/12/24,0.137935269,8.19149045,-3.79611717,0.721446476,5.224320861,2.873033159,4.8570439096596414e-14 -3645,1995/12/25,0.027886542,6.016573328,-5.224558255,0.504401917,4.603680106,1.481476263,2.4285219548298207e-14 -3646,1995/12/26,0.12702827,6.518082748,-6.118464734,0.665600187,4.828828224,1.989507127,1.2142609774149103e-14 -3647,1995/12/27,0.007519517,5.343698449,-7.416597164,0.464379047,4.519465493,0.840762711,6.071304887074552e-15 -3648,1995/12/28,0.07012726,3.71658308,-7.931288718,0.403835829,4.042375619,1.049724924,3.035652443537276e-15 -3649,1995/12/29,0.003863886,3.502625664,-8.561108722,0.478868687,4.00350642,0.461929189,1.517826221768638e-15 -3650,1995/12/30,0.0,3.664087769,-8.886991198,0.441448554,4.061749226,0.25713441,7.58913110884319e-16 -3651,1995/12/31,0.014453906,4.394758424,-8.477902297,0.446100626,4.267917614,0.264080462,3.794565554421595e-16 -3652,1996/1/1,0.04353981,5.962950834,-8.533182108,0.748162478,4.746556358,0.415786765,1.8972827772107974e-16 -3653,1996/1/2,0.259494051,5.193551341,-9.610936733,0.583211732,4.52855542,1.847706918,9.486413886053987e-17 -3654,1996/1/3,0.153353771,4.916370097,-8.732538765,0.709887286,4.432048405,1.522240217,4.7432069430269935e-17 -3655,1996/1/4,0.107157325,6.066906012,-6.088561949,1.056783926,4.681823682,1.192664232,2.3716034715134968e-17 -3656,1996/1/5,0.041292614,7.144556132,-7.113778423,1.03068655,5.07800086,0.687082632,1.1858017357567484e-17 -3657,1996/1/6,0.00018221,7.385746601,-6.711692215,0.844859954,5.140250109,0.299525484,5.929008678783742e-18 -3658,1996/1/7,0.022849231,8.321628006,-6.126669649,0.63126105,5.42176413,0.301413614,2.964504339391871e-18 -3659,1996/1/8,0.181180809,7.854057203,-6.17812906,0.83619352,5.269450277,1.096194655,1.4822521696959355e-18 -3660,1996/1/9,0.226988326,7.781719149,-5.555369462,0.780303024,5.212790828,1.557203335,7.411260848479677e-19 -3661,1996/1/10,0.319256823,8.303285192,-4.95752259,1.189359575,5.351273377,2.338719263,3.7056304242398387e-19 -3662,1996/1/11,0.285949651,8.870338855,-2.82715484,1.496237363,5.373587062,2.503041314,1.8528152121199193e-19 -3663,1996/1/12,0.155061693,8.704623159,-3.058888102,1.224564348,5.336775588,1.789997344,9.264076060599597e-20 -3664,1996/1/13,0.16390527,9.653819813,-3.186119333,1.514610829,5.686101023,1.707050169,4.6320380302997984e-20 -3665,1996/1/14,0.036440828,9.739059653,-3.762072429,1.553713877,5.76196747,0.842096087,2.3160190151498992e-20 -3666,1996/1/15,0.047909368,9.823828834,-4.507000566,1.244922937,5.841362799,0.669930644,1.1580095075749496e-20 -3667,1996/1/16,0.114812552,10.88316398,-3.338073776,1.421910318,6.13502029,0.92699068,5.790047537874748e-21 -3668,1996/1/17,0.104513138,10.95449154,-1.575780464,1.419215582,6.00258157,0.876363193,2.895023768937374e-21 -3669,1996/1/18,0.010263216,10.00902108,-4.76347485,1.381174356,5.917699388,0.365020469,1.447511884468687e-21 -3670,1996/1/19,0.029403571,8.853424573,-4.904204709,1.371915334,5.528623049,0.316851814,7.237559422343435e-22 -3671,1996/1/20,0.049895714,9.12084185,-3.472912771,1.444070923,5.515801369,0.354216043,3.6187797111717175e-22 -3672,1996/1/21,0.023642735,8.993481298,-4.274481066,1.289047525,5.532965252,0.230333387,1.8093898555858587e-22 -3673,1996/1/22,0.000578454,9.024783144,-5.455662375,1.180137834,5.614275504,0.103463449,9.046949277929294e-23 -3674,1996/1/23,0.002548942,10.10364128,-5.034662307,1.287517306,5.958944595,0.069159432,4.523474638964647e-23 -3675,1996/1/24,0.038684378,10.3893999,-4.593695743,1.58872075,6.032922768,0.155228537,2.2617373194823234e-23 -3676,1996/1/25,0.026446307,9.813215803,-4.823615275,1.209564045,5.845343016,0.12656721,1.1308686597411617e-23 -3677,1996/1/26,0.299808568,10.84655278,-4.827176931,1.320965104,6.200820811,0.958697742,5.6543432987058085e-24 -3678,1996/1/27,0.023134722,11.87234881,-3.504601731,1.50546813,6.486767245,0.320239701,2.8271716493529043e-24 -3679,1996/1/28,0.24230378,13.01162426,-1.9920602,1.723384063,6.792248299,0.937673267,1.4135858246764521e-24 -3680,1996/1/29,0.094884327,12.42993785,-0.929424547,1.417278797,6.473634236,0.602226741,7.067929123382261e-25 -3681,1996/1/30,0.145124955,11.52949778,-2.596064026,1.244186245,6.292132831,0.722429081,3.5339645616911303e-25 -3682,1996/1/31,1.343415282,10.30616003,-2.907352555,0.978221682,5.874210759,7.893708565,1.7669822808455652e-25 -3683,1996/2/1,0.012418566,9.690473504,-2.426859825,0.929789918,5.605926694,2.060550473,8.834911404227826e-26 -3684,1996/2/2,0.066539368,9.904862669,-1.861089683,1.091691232,5.622870829,1.358108265,4.417455702113913e-26 -3685,1996/2/3,0.065564481,8.437808707,-3.929903546,1.157504098,5.296148997,1.076973997,2.2087278510569565e-26 -3686,1996/2/4,1.338150859,7.26574048,-5.510482542,0.493365026,5.011847992,11.42417238,1.1043639255284782e-26 -3687,1996/2/5,0.101404732,6.396803103,-5.524382524,0.589395915,4.725249818,3.925149742,5.521819627642391e-27 -3688,1996/2/6,0.203924385,8.195530528,-3.746627157,0.875434685,5.191397265,3.529685086,2.7609098138211956e-27 -3689,1996/2/7,0.181136083,8.883645542,-4.496057894,0.996278115,5.484647562,3.093068053,1.3804549069105978e-27 -3690,1996/2/8,0.020553715,10.26600223,-4.843653754,0.716162628,5.977126476,1.395687725,6.902274534552989e-28 -3691,1996/2/9,0.189167954,10.18023373,-4.442228418,0.92843611,5.923046445,2.295748572,3.4511372672764945e-28 -3692,1996/2/10,0.000238604,10.0982979,-4.591085045,0.79104966,5.901227116,0.841466475,1.7255686336382472e-28 -3693,1996/2/11,0.559738125,11.7166047,-3.322961359,1.290218872,6.387982701,4.882721729,8.627843168191236e-29 -3694,1996/2/12,0.059107522,12.08953087,-3.127722293,1.325984065,6.506047772,1.832523395,4.313921584095618e-29 -3695,1996/2/13,0.000413236,11.8076505,-3.716869025,1.464567239,6.440386716,0.77630591,2.156960792047809e-29 -3696,1996/2/14,0.0,12.83623817,-3.091188631,1.439701713,6.767669197,0.462240289,1.0784803960239045e-29 -3697,1996/2/15,0.033831484,14.37193008,-2.483310112,1.544372984,7.288086821,0.491398485,5.3924019801195226e-30 -3698,1996/2/16,0.004057517,13.93176678,-1.719154554,1.739998956,7.067824916,0.260744588,2.6962009900597613e-30 -3699,1996/2/17,2.67e-05,13.52163509,-2.289305648,1.260241607,6.955232148,0.15152626,1.3481004950298807e-30 -3700,1996/2/18,0.019927009,14.86725453,-1.718565875,1.247408956,7.411890037,0.175874421,6.740502475149403e-31 -3701,1996/2/19,1.665046688,12.77485175,1.905692595,1.182649678,6.185901084,10.75615424,3.3702512375747016e-31 -3702,1996/2/20,4.570997641,8.565004034,1.204752463,1.07469635,4.591158447,77.85332572,1.6851256187873508e-31 -3703,1996/2/21,2.429289535,5.538373892,-0.376258995,1.086615416,3.695997352,85.03566779,8.425628093936754e-32 -3704,1996/2/22,3.964813095,5.952357814,-1.007899073,1.04511928,3.986152035,170.2267803,4.212814046968377e-32 -3705,1996/2/23,3.056583872,6.904377943,-1.089940443,1.116966901,4.361622468,190.0958726,2.1064070234841885e-32 -3706,1996/2/24,0.465492643,9.28019397,-0.740506315,1.257919844,5.202079712,80.32364122,1.0532035117420943e-32 -3707,1996/2/25,0.067764315,11.30564234,-0.198570613,1.663564022,5.895223313,38.09293886,5.266017558710471e-33 -3708,1996/2/26,0.064163234,13.22469014,0.167530991,1.357412316,6.584586253,24.36986179,2.6330087793552357e-33 -3709,1996/2/27,0.202355428,13.15934875,0.509885192,1.549551147,6.514396492,21.8638956,1.3165043896776178e-33 -3710,1996/2/28,0.057120181,12.73366839,-1.084113465,1.475989215,6.526225185,12.91701954,6.582521948388089e-34 -3711,1996/2/29,0.015322643,13.08328114,-3.113519478,1.00480197,6.811095764,7.7008967,3.2912609741940446e-34 -3712,1996/3/1,0.086554656,12.26801743,-3.471206885,0.741025057,6.538033801,6.920909286,1.6456304870970223e-34 -3713,1996/3/2,0.105717634,11.3877048,-2.299854896,0.694178675,6.133834573,5.992299028,8.228152435485111e-35 -3714,1996/3/3,0.012176197,13.50599983,-1.641483011,0.840344375,6.850031335,3.040760395,4.1140762177425557e-35 -3715,1996/3/4,0.22650864,14.58671999,0.028348381,0.948227734,7.100930756,5.963606077,2.0570381088712779e-35 -3716,1996/3/5,0.712921335,14.82694078,0.78311,1.148416041,7.108735217,14.92729153,1.0285190544356389e-35 -3717,1996/3/6,0.768221173,13.80925341,-0.354743874,1.127595653,6.834924857,18.24459788,5.1425952721781946e-36 -3718,1996/3/7,0.092078346,14.81043334,-1.078436599,1.268033055,7.276168461,7.06619427,2.5712976360890973e-36 -3719,1996/3/8,0.120331202,14.97691729,-0.071525116,1.533521237,7.245609221,5.049851106,1.2856488180445487e-36 -3720,1996/3/9,0.269275857,14.70066652,0.012471395,1.533568755,7.127202501,6.222647162,6.428244090222743e-37 -3721,1996/3/10,0.206572463,16.31146101,1.757810436,1.532016538,7.56354809,5.114757148,3.2141220451113716e-37 -3722,1996/3/11,0.309833923,15.86399578,2.108807376,1.756120377,7.335848825,5.849073075,1.6070610225556858e-37 -3723,1996/3/12,0.194739859,15.87677675,2.818953713,1.88426398,7.239875715,4.345047173,8.035305112778429e-38 -3724,1996/3/13,1.119641142,15.67978111,3.254292779,2.364168513,7.08941803,15.68604091,4.0176525563892146e-38 -3725,1996/3/14,0.339448685,15.4371958,3.860755286,1.948339831,6.88468496,8.851762201,2.0088262781946073e-38 -3726,1996/3/15,0.171164094,17.32133144,4.506453125,2.363790108,7.573086797,5.333818614,1.0044131390973036e-38 -3727,1996/3/16,0.122008565,17.97884719,4.983601429,2.367415687,7.772435161,3.692974065,5.022065695486518e-39 -3728,1996/3/17,0.425452935,18.75077537,4.78515805,2.139863287,8.131637797,6.299677913,2.511032847743259e-39 -3729,1996/3/18,0.278437779,19.08130471,4.929602679,1.878778992,8.246627611,5.036800521,1.2555164238716295e-39 -3730,1996/3/19,0.123403198,19.12968215,5.519405182,2.237706895,8.169191943,3.029479091,6.277582119358148e-40 -3731,1996/3/20,0.368505325,18.49167031,4.253531824,1.891607946,8.086765196,4.664267395,3.138791059679074e-40 -3732,1996/3/21,0.231018821,17.78467403,3.724726556,1.93460652,7.86121434,3.618514134,1.569395529839537e-40 -3733,1996/3/22,0.331359454,18.35512853,3.768763229,1.846925745,8.088457288,4.172898944,7.846977649197685e-41 -3734,1996/3/23,2.225522422,16.9631466,3.065691237,1.435068258,7.604136025,27.64231142,3.9234888245988423e-41 -3735,1996/3/24,3.740771751,15.82311296,3.571910609,1.532261182,7.054075475,83.19681823,1.9617444122994212e-41 -3736,1996/3/25,1.345946376,14.79153036,1.991934939,1.218053195,6.863794858,56.79307001,9.808722061497106e-42 -3737,1996/3/26,5.423788926,13.9307196,2.461515065,0.874021234,6.444975126,208.959965,4.904361030748553e-42 -3738,1996/3/27,12.17611109,10.82638021,0.854301123,0.877760636,5.461808948,827.2441509,0.00014349170153268116 -3739,1996/3/28,0.91866806,12.08472358,0.143486258,1.137672146,6.042438569,285.5170508,7.174431748201905e-05 -3740,1996/3/29,0.020100378,13.71302949,3.319076112,1.482156776,6.199946088,117.0543394,3.5872158741009525e-05 -3741,1996/3/30,0.073235635,16.42356405,5.026777171,1.931493369,7.032981219,73.38666183,1.7936079370504763e-05 -3742,1996/3/31,0.006101593,17.50766391,5.175707635,1.761098449,7.469539381,45.61404353,8.968039685252381e-06 -3743,1996/4/1,0.02649669,16.45324914,4.330085882,1.619419314,7.1603641,30.55023838,4.484019842626191e-06 -3744,1996/4/2,0.130118732,16.50768222,2.115355258,1.495940226,7.498407419,24.79562371,2.2420099213130953e-06 -3745,1996/4/3,0.640509598,15.74999632,1.589839612,1.31571144,7.257379041,37.99750515,1.1210049606565477e-06 -3746,1996/4/4,2.27188369,14.74142213,2.907410633,1.322420403,6.669342767,100.9928074,5.605024803282738e-07 -3747,1996/4/5,0.665024549,16.32511353,2.859314732,1.590797273,7.315167175,54.55414167,2.802512401641369e-07 -3748,1996/4/6,0.356441368,17.54436717,3.432680679,1.706561859,7.729036009,33.03038375,1.4012562008206846e-07 -3749,1996/4/7,0.09237673,18.02280987,4.099259332,1.841476672,7.828120417,17.57283656,7.006281004103423e-08 -3750,1996/4/8,0.04058843,18.8618727,5.265625177,1.892610919,7.999632776,10.59300254,3.5031405020517114e-08 -3751,1996/4/9,0.321319382,19.10351802,5.285413546,1.800360112,8.095203961,13.87141131,1.7515702510258557e-08 -3752,1996/4/10,0.082007227,19.63817175,4.821629717,1.890929961,8.3875806,7.550851197,8.757851255129279e-09 -3753,1996/4/11,0.218198039,19.00953812,4.386583958,1.686482033,8.180279776,7.838618132,4.378925627564639e-09 -3754,1996/4/12,1.820280896,19.23468828,4.580164656,1.545398634,8.242455777,38.66489901,2.1894628137823197e-09 -3755,1996/4/13,0.292195388,19.83156645,5.437375399,1.643055408,8.364012728,16.27720475,1.0947314068911598e-09 -3756,1996/4/14,4.310283111,18.6572934,5.407494348,1.72509519,7.861376872,115.2398237,5.473657034455799e-10 -3757,1996/4/15,0.417639653,19.59360134,5.30755828,1.28219699,8.272698608,42.11151212,2.7368285172278996e-10 -3758,1996/4/16,1.377115696,21.51776526,6.377307647,1.558575784,8.932846414,55.53982349,1.3684142586139498e-10 -3759,1996/4/17,1.134347258,21.72383801,8.071188342,1.661072753,8.731474217,50.7887404,6.842071293069749e-11 -3760,1996/4/18,3.023614524,21.56906424,8.591377555,1.494416559,8.55565163,111.2285459,3.4210356465348745e-11 -3761,1996/4/19,1.84492231,20.96173026,7.667813474,0.92240277,8.45293945,95.51069743,1.7105178232674372e-11 -3762,1996/4/20,1.647575154,18.39697841,8.115036228,1.098973474,7.184851457,88.98876108,8.552589116337186e-12 -3763,1996/4/21,12.3636051,14.73965634,6.015999702,0.409140154,6.001379029,730.5335684,0.012512328206970822 -3764,1996/4/22,7.333739265,14.39420552,7.259239034,0.942082387,5.510907197,818.3813622,0.02138044799520658 -3765,1996/4/23,2.517278088,16.84220125,8.122660539,1.005723952,6.441039074,477.3481064,0.01062737775708289 -3766,1996/4/24,1.528482831,17.78362198,8.172304129,1.22931678,6.869329377,315.9396445,0.005313688878541445 -3767,1996/4/25,0.767476648,18.50186696,8.338797943,1.511722489,7.161423217,197.23864,0.0026568444392707224 -3768,1996/4/26,8.052415445,17.06125455,7.822690386,1.480136106,6.6104338,811.6594731,0.013811003003491928 -3769,1996/4/27,1.252543998,15.19638406,6.417322411,0.88823814,6.092308433,348.145087,0.006851473482885326 -3770,1996/4/28,0.613103546,17.32982723,7.256967021,1.112688555,6.861316877,194.2638863,0.003425736741442663 -3771,1996/4/29,0.0,18.70142165,7.232842293,1.276190321,7.481278708,95.77802267,0.0017128683707213314 -3772,1996/4/30,0.119918951,20.67710126,8.300538619,1.437615462,8.151967784,66.8138446,0.0008564341853606657 -3773,1996/5/1,3.614183939,20.50753993,10.48508914,1.51172821,7.5608706,266.0396678,0.00042821709268033286 -3774,1996/5/2,1.121667089,19.25576649,10.03438536,1.124696727,7.063437279,149.376211,0.00021410854634016643 -3775,1996/5/3,2.497339785,19.90226513,10.14595526,1.602818785,7.34662699,208.0448218,0.00010705427317008322 -3776,1996/5/4,3.9608855,21.1526454,10.29926999,2.026321288,7.910448508,322.4820042,5.352713658504161e-05 -3777,1996/5/5,1.715617951,21.95400384,10.98556587,2.23974492,8.124730094,208.3081976,2.6763568292520804e-05 -3778,1996/5/6,1.556690348,21.09568469,10.99037838,2.058464195,7.697670257,170.7460157,1.3381784146260402e-05 -3779,1996/5/7,3.681270085,20.22413131,10.7348557,1.442738119,7.331640993,291.9913792,6.690892073130201e-06 -3780,1996/5/8,6.391779947,18.83695589,10.78704034,1.294650277,6.6141836,550.474683,3.3454460365651005e-06 -3781,1996/5/9,1.301044605,19.02959348,9.560526954,1.511132014,7.056556231,257.465906,1.6727230182825502e-06 -3782,1996/5/10,0.234203476,19.85071269,8.919015984,1.117761284,7.599710249,118.646012,8.363615091412751e-07 -3783,1996/5/11,1.788378112,19.40470782,8.781231767,1.148745998,7.420499186,175.7496736,4.1818075457063756e-07 -3784,1996/5/12,4.408595471,16.93241979,8.421213246,1.488935976,6.344188356,356.0247555,2.0909037728531878e-07 -3785,1996/5/13,7.334158575,17.39670776,6.997612049,1.515561226,6.899184121,693.6761032,0.001951353908653144 -3786,1996/5/14,6.919697071,18.11737712,7.03021625,1.361015402,7.210092973,862.2354615,0.0009713004052632784 -3787,1996/5/15,3.313700394,19.17904912,9.010418363,1.158501678,7.247639296,593.4936087,0.0004856502026316392 -3788,1996/5/16,0.589450984,20.79346341,9.792186579,1.171005767,7.818428601,267.0697439,0.0002428251013158196 -3789,1996/5/17,1.128527387,20.63278142,10.67400652,1.074482203,7.516713589,224.5217874,0.0001214125506579098 -3790,1996/5/18,0.89440051,21.06323275,10.44492832,1.169763488,7.781828392,170.0249114,6.07062753289549e-05 -3791,1996/5/19,0.103123152,21.64199314,10.30034187,0.984923073,8.091330381,84.98938632,3.035313766447745e-05 -3792,1996/5/20,2.174100765,21.44056185,10.78290344,1.167838524,7.87311809,178.3111098,1.5176568832238724e-05 -3793,1996/5/21,0.843532524,21.4964438,10.52655603,1.417457245,7.960948464,109.5358025,7.588284416119362e-06 -3794,1996/5/22,0.572933726,23.2335205,11.26202734,1.372178302,8.617286737,74.04538279,3.794142208059681e-06 -3795,1996/5/23,3.147557348,23.41546974,12.09790316,1.664131308,8.497158621,188.2894926,1.8970711040298406e-06 -3796,1996/5/24,3.413973343,22.81600139,11.85623456,1.310738528,8.259878673,238.4969857,9.485355520149203e-07 -3797,1996/5/25,6.297289859,22.39907367,12.43083942,0.61484234,7.892275153,467.6465981,4.7426777600746014e-07 -3798,1996/5/26,18.85993467,21.19027681,12.36293288,0.661512603,7.289763735,2071.242652,0.0307414520582421 -3799,1996/5/27,9.25894657,19.31875278,11.83248718,0.742359538,6.47786132,1850.952091,0.05472592651616607 -3800,1996/5/28,4.949251422,18.14231211,11.75984752,0.855836302,5.867412622,1314.133945,0.027083926880754446 -3801,1996/5/29,2.989339687,19.87448502,11.64315601,1.301513832,6.825415936,916.5372275,0.013541963440377223 -3802,1996/5/30,5.146339656,21.27600621,11.77588252,1.603582144,7.497885559,1110.858864,0.006770981720188612 -3803,1996/5/31,5.642831728,21.40101585,12.04298186,1.187702787,7.481828813,1200.23328,0.003385490860094306 -3804,1996/6/1,4.533391653,20.76606765,12.13096064,1.355315045,7.1279822,1048.152277,0.001692745430047153 -3805,1996/6/2,2.43855401,21.63012691,12.33921048,1.515724909,7.507292212,700.6012902,0.0008463727150235764 -3806,1996/6/3,2.057470846,20.32544169,11.59197358,1.260725047,7.061943276,535.4876221,0.0004231863575117882 -3807,1996/6/4,2.191905709,21.28687908,11.84522796,1.64431696,7.47276438,471.6945715,0.0002115931787558941 -3808,1996/6/5,5.511336094,20.65359052,11.67303649,1.386952272,7.200715439,799.9614281,0.00010579658937794706 -3809,1996/6/6,4.934827617,20.81076518,12.06373971,1.597046015,7.161983296,823.2471065,5.289829468897353e-05 -3810,1996/6/7,1.931727874,19.95688459,11.37999482,1.287874205,6.931042799,485.7944476,2.6449147344486764e-05 -3811,1996/6/8,3.322014297,19.44094968,10.92984789,0.931419426,6.803159892,547.974586,1.3224573672243382e-05 -3812,1996/6/9,2.904209663,19.3732453,10.72691744,1.056200275,6.827316999,499.0327141,6.612286836121691e-06 -3813,1996/6/10,6.263832856,19.5741037,10.61153725,0.495155188,6.958581185,856.3318693,3.3061434180608455e-06 -3814,1996/6/11,7.600141824,18.76978514,10.08125667,0.221881046,6.710980751,1177.335207,0.007316224484134797 -3815,1996/6/12,9.411087598,19.65374962,10.32080448,0.193217957,7.075239207,1661.138536,0.02488650275369505 -3816,1996/6/13,8.849622268,19.43545923,10.99562547,0.390451694,6.773751441,1877.185217,0.036000006241463635 -3817,1996/6/14,2.335637417,21.28469698,11.73412888,1.042984761,7.4867478,947.0509406,0.017865243375875403 -3818,1996/6/15,2.498760889,20.65503878,12.40884563,0.986085018,6.960106468,740.3778342,0.008932621687937702 -3819,1996/6/16,1.583823913,22.96638123,13.1718721,1.070169769,7.92377923,515.2638078,0.004466310843968851 -3820,1996/6/17,13.10785176,22.93997535,14.30253802,1.225346088,7.554419816,2042.252947,0.06614661860684498 -3821,1996/6/18,4.913077856,22.88714452,14.35948124,1.102100129,7.505606037,1318.826046,0.032705524947957774 -3822,1996/6/19,2.215883822,23.08276065,14.27495402,1.147938076,7.638499345,771.8345323,0.016352762473978887 -3823,1996/6/20,4.565181797,23.3870987,14.68497156,1.188835821,7.66591934,931.056339,0.008176381236989444 -3824,1996/6/21,10.59636071,22.2335516,14.56513059,1.546810942,7.071020782,1853.899149,0.055275370383103456 -3825,1996/6/22,7.961592284,21.57297775,14.08617772,1.598813082,6.876084342,1826.124153,0.04674387737988066 -3826,1996/6/23,2.156452682,20.74446018,13.46359481,1.376800728,6.642131906,922.3101419,0.023197188742341224 -3827,1996/6/24,1.992477877,21.65108491,13.52604513,1.338042762,7.113418103,673.0790137,0.011598594371170612 -3828,1996/6/25,9.706011018,22.03185097,13.98340248,1.161648312,7.163092818,1713.363164,0.049381946413255134 -3829,1996/6/26,5.779843108,20.75296291,14.13486318,1.126560017,6.392786504,1413.855215,0.024317495342946756 -3830,1996/6/27,7.299679142,21.23524009,13.95819429,1.299123035,6.732162498,1658.414993,0.02293156938037811 -3831,1996/6/28,3.057901335,20.95976583,13.77614272,1.124958671,6.645255905,1028.905436,0.011363537743955132 -3832,1996/6/29,5.09225168,21.57896011,14.08515468,1.305504959,6.876507017,1184.447529,0.005681768871977566 -3833,1996/6/30,8.572935937,21.13369733,14.52880765,1.823826831,6.455453792,1790.055399,0.04016051090235038 -3834,1996/7/1,3.721383851,21.79846621,14.81749934,1.841646094,6.725354948,1165.260253,0.019751385022945732 -3835,1996/7/2,2.629142312,22.16481919,14.48510656,1.387228604,7.057153348,834.5982165,0.009875692511472866 -3836,1996/7/3,5.967531387,21.98630222,14.72208158,1.166447036,6.869141648,1216.409574,0.004937846255736433 -3837,1996/7/4,14.20481514,20.36562504,14.21991891,0.878199061,6.132770075,2823.325962,0.13858682869439787 -3838,1996/7/5,3.401247925,20.36446552,14.33066627,1.310600666,6.086277956,1424.219342,0.06814574457661281 -3839,1996/7/6,3.969720091,21.72442066,14.60892308,1.123945898,6.763572482,1233.148316,0.034072872288306404 -3840,1996/7/7,8.134080651,21.86648051,14.31758013,0.674907432,6.952315237,1894.492359,0.04334270699516668 -3841,1996/7/8,3.824382449,22.22063969,14.43986291,0.762271673,7.105465437,1269.497386,0.021378562780454226 -3842,1996/7/9,4.800250404,22.36502554,13.31464768,0.917615789,7.559686345,1261.746919,0.010689281390227113 -3843,1996/7/10,11.64809369,21.24448578,12.8124623,0.572174598,7.131220486,2468.674178,0.10069299233299223 -3844,1996/7/11,2.422749521,20.40581995,12.98156329,0.593862153,6.627696607,1158.990249,0.049340124308192713 -3845,1996/7/12,13.31297765,19.56269822,13.61055069,1.145092728,5.916432596,2930.4266,0.20341261863479754 -3846,1996/7/13,8.768869165,20.04358189,13.75083094,1.273271821,6.138885266,2707.605238,0.18162592062871094 -3847,1996/7/14,10.98734507,20.76506661,14.22107816,1.372503986,6.368406594,3367.273523,0.2450862128342142 -3848,1996/7/15,2.897180921,21.42131131,14.33868965,1.320436608,6.698712688,1705.434548,0.11992377447422846 -3849,1996/7/16,3.545382898,20.94141769,14.25615017,1.062333322,6.45759393,1413.71625,0.05996188723711423 -3850,1996/7/17,6.200949845,20.94332868,14.27774848,1.032751285,6.451075129,1764.217848,0.029980943618557115 -3851,1996/7/18,8.350699115,19.97505911,14.34029225,1.041194972,5.856292664,2249.415938,0.09989087959100709 -3852,1996/7/19,11.73622335,20.89325999,14.7162117,1.207939871,6.246061002,3268.782797,0.24814382250696065 -3853,1996/7/20,7.350105708,21.5762199,15.26496253,1.057691365,6.423787643,2668.949568,0.15884896790233605 -3854,1996/7/21,9.954973498,21.01231279,15.16194731,0.812899244,6.128887901,3233.463157,0.24052159955196598 -3855,1996/7/22,13.24826503,20.68607789,14.79067617,0.726489706,6.093734036,4452.885928,0.44467200265546714 -3856,1996/7/23,11.44289179,22.14580734,14.8931287,1.057691456,6.908752385,4565.083433,0.45212396724036336 -3857,1996/7/24,9.289221744,23.23733913,15.01956302,1.20394512,7.478850668,4044.481532,0.32197180734429054 -3858,1996/7/25,14.79424166,22.24377418,14.66986742,1.581138936,7.050760054,5593.581075,0.6073819619120848 -3859,1996/7/26,18.13838996,21.6910586,14.61890128,1.547427615,6.757946966,7585.547093,1.0291449451386434 -3860,1996/7/27,4.561037531,21.25359252,14.88035551,1.023873291,6.401061024,3709.493366,0.4906119063494617 -3861,1996/7/28,11.67667939,21.67876368,14.72688962,0.679290119,6.712217642,4920.47097,0.6077230237104256 -3862,1996/7/29,16.33550608,20.92314618,14.36561794,0.491857306,6.419498533,6843.244566,1.0568266511442894 -3863,1996/7/30,6.313410907,20.64435416,13.87260658,0.655575667,6.454104877,4100.9899,0.4988120520091472 -3864,1996/7/31,9.71049204,20.77938167,13.30417637,0.739523623,6.740888757,4406.265536,0.5035164705839776 -3865,1996/8/1,7.822366587,20.24160327,13.53203116,0.584040461,6.359655975,3754.541304,0.3696830337502318 -3866,1996/8/2,0.521193925,21.41162228,14.16294838,0.799301746,6.783691841,1533.143503,0.17917099622811786 -3867,1996/8/3,5.211557156,22.53973666,14.00083782,0.89737489,7.464769684,1934.842847,0.08958549811405893 -3868,1996/8/4,10.87284753,23.35661234,13.68349391,0.672113284,8.00245386,3103.298642,0.28175341943088195 -3869,1996/8/5,5.319123167,22.49992825,14.12668746,0.945066992,7.405232853,2107.819291,0.1310957587798807 -3870,1996/8/6,11.71204603,21.25869798,14.4597114,1.185728872,6.591028825,3262.509771,0.48999465620718774 -3871,1996/8/7,7.410521278,21.56370956,14.48171388,1.175995078,6.759804353,2679.809158,0.2841439520978693 -3872,1996/8/8,5.315838799,22.06696858,14.78096756,0.936329599,6.935541574,2070.114674,0.13959853584250886 -3873,1996/8/9,5.225359168,21.73934649,14.55651927,0.724533661,6.836074288,1834.403636,0.06979926792125443 -3874,1996/8/10,7.166838688,21.96097705,14.2737973,0.645012516,7.068418434,2101.352886,0.0432163787534893 -3875,1996/8/11,13.72495776,20.38007177,13.53384054,0.545959825,6.457341982,3659.814679,0.6359870623435151 -3876,1996/8/12,6.682469179,20.09875207,12.98905496,0.601080243,6.504548076,2615.056532,0.30812809259032325 -3877,1996/8/13,9.679579088,21.28239231,12.65025332,0.314497855,7.258032133,3143.298532,0.3732626696730166 -3878,1996/8/14,2.783925287,22.01177605,12.66592992,0.474147047,7.635897689,1640.84406,0.1766440768487807 -3879,1996/8/15,4.912420381,23.01554057,13.03244097,0.892139588,8.048879396,1640.535204,0.08832203842439035 -3880,1996/8/16,10.13945319,22.81332657,13.58113383,1.189461039,7.780706451,2563.565857,0.2447633320288439 -3881,1996/8/17,16.22247764,22.26963307,13.86301769,1.43977775,7.400599749,4364.020477,0.8815378321911873 -3882,1996/8/18,19.94095662,21.74124293,13.78717152,1.380666559,7.140890481,6702.289042,1.6153607466460485 -3883,1996/8/19,10.6446934,21.03788388,13.87600566,1.435555836,6.720177918,5071.691149,1.1622510435252402 -3884,1996/8/20,3.103354023,21.31837548,13.55841674,1.064130719,6.994386606,2553.569292,0.559544287283437 -3885,1996/8/21,0.340520285,22.18843866,13.05694078,1.02672759,7.630280253,1217.747887,0.2797721436417185 -3886,1996/8/22,1.393888916,24.01829767,12.79473854,0.935220084,8.650218723,958.5274984,0.13988607182085924 -3887,1996/8/23,9.721188894,22.78354903,13.17900854,1.055336435,7.911505817,2175.74682,0.24000508529579634 -3888,1996/8/24,0.507507991,21.47619844,12.97375425,1.048490817,7.289664653,801.2283374,0.11201188919903715 -3889,1996/8/25,3.945273732,22.76428514,13.05026806,0.788791848,7.947116035,969.5086626,0.056005944599518576 -3890,1996/8/26,6.239442466,21.85120962,13.67867004,0.662797792,7.263606572,1264.039659,0.028002972299759288 -3891,1996/8/27,3.456977541,21.44477312,13.87572314,0.680523821,6.97292795,910.3161322,0.014001486149879644 -3892,1996/8/28,6.616462852,21.36029903,13.31405605,0.876489615,7.12721392,1268.097704,0.007000743074939822 -3893,1996/8/29,8.525638058,20.92106548,12.2320065,0.606872966,7.249549726,1696.536594,0.10767163959297218 -3894,1996/8/30,6.518336199,19.63961534,11.92681955,0.621770473,6.675741024,1557.516445,0.049583898978714944 -3895,1996/8/31,9.898172059,20.84017948,12.58144994,1.089354363,7.102222433,2212.493106,0.2556035143348354 -3896,1996/9/1,11.3612853,21.19945967,12.52786279,0.530725559,7.313411034,2860.038427,0.46196154970399794 -3897,1996/9/2,6.8567471,19.45572161,12.859475,0.436185056,6.251688602,2238.085405,0.26981407523185713 -3898,1996/9/3,4.818387507,21.0370689,12.62960794,0.906449556,7.202063036,1718.50104,0.13254850781846667 -3899,1996/9/4,4.680135305,20.58361369,12.57456219,0.911844305,6.981286384,1507.49971,0.06627425390923333 -3900,1996/9/5,2.588828996,21.21044094,12.86557351,1.051692873,7.224972158,1011.942028,0.033137126954616666 -3901,1996/9/6,3.48538367,21.77759221,13.06509022,0.884089753,7.467499165,967.0796402,0.016568563477308333 -3902,1996/9/7,3.277051388,22.47190125,13.09772101,0.670824584,7.829894314,849.9055855,0.008284281738654167 -3903,1996/9/8,3.528283831,21.80255128,12.81551883,0.369128916,7.567986514,798.6270473,0.004142140869327083 -3904,1996/9/9,3.420434706,23.05405252,13.09163844,0.516859231,8.145768315,729.6474203,0.0020710704346635416 -3905,1996/9/10,5.622169534,20.68793023,12.97546208,0.260952677,6.922881037,960.0269724,0.0010355352173317708 -3906,1996/9/11,2.297920146,18.73615202,10.39456762,0.187668679,6.732174997,594.7770258,0.0005177676086658854 -3907,1996/9/12,1.646868324,20.87698969,10.35582277,0.112066731,7.810491589,419.8260095,0.0002588838043329427 -3908,1996/9/13,0.291951302,21.88202824,10.0552765,0.190681745,8.372801299,209.7569857,0.00012944190216647135 -3909,1996/9/14,2.191803366,22.33785649,10.64196105,0.197633642,8.459537392,302.0314635,6.472095108323568e-05 -3910,1996/9/15,7.553747089,20.89566837,11.81202477,0.722631776,7.429745945,802.3970823,0.006475729300681437 -3911,1996/9/16,11.64309511,19.79620924,12.03899352,0.559509473,6.781973783,1576.379723,0.25620665166011625 -3912,1996/9/17,8.882900925,19.58945865,12.47348865,0.941536357,6.52120805,1690.256113,0.2548103147591402 -3913,1996/9/18,9.516151313,18.39578869,12.36114609,0.708373994,5.892737346,2043.552628,0.33577351856703663 -3914,1996/9/19,9.804992477,19.15846031,12.05906319,0.513490155,6.439501432,2426.268188,0.3695160027419012 -3915,1996/9/20,9.305272701,18.02305726,11.5618959,0.540885548,5.996545073,2613.21923,0.3924762435357779 -3916,1996/9/21,1.630823188,19.2382131,11.8116705,0.379410177,6.577178129,1158.223353,0.189308846171312 -3917,1996/9/22,10.0694902,20.38285744,10.57573369,0.126176935,7.552161503,2452.862469,0.2563479041914909 -3918,1996/9/23,3.643619724,19.40203703,10.60766073,0.045693473,7.053704938,1458.411245,0.1229809906316187 -3919,1996/9/24,0.0,19.27840405,10.41560636,0.316809382,7.051098588,570.94392,0.06149049531580935 -3920,1996/9/25,0.364008877,18.21458683,9.833869905,0.501493559,6.687727937,379.1532019,0.030745247657904675 -3921,1996/9/26,0.534689098,19.17401157,10.2383006,0.408582468,7.05769929,286.8479654,0.015372623828952338 -3922,1996/9/27,0.814073683,19.55604107,10.99549533,0.464311717,7.033105917,242.8762286,0.007686311914476169 -3923,1996/9/28,0.527466925,19.20065278,10.67519408,0.667221638,6.951053078,168.3662675,0.0038431559572380844 -3924,1996/9/29,0.004153239,19.4934552,10.46607535,0.481836129,7.166084423,85.36468081,0.0019215779786190422 -3925,1996/9/30,0.338621622,18.79627425,8.991902363,0.447231823,7.225009792,76.31394303,0.0009607889893095211 -3926,1996/10/1,4.398888496,18.59911825,8.384029085,0.496433407,7.285413517,346.2816537,0.00048039449465476055 -3927,1996/10/2,0.082022193,19.37817352,8.010694482,1.015972931,7.739757173,103.9061691,0.00024019724732738027 -3928,1996/10/3,0.204715972,19.86260591,9.18890649,1.407523484,7.70235558,61.58209104,0.00012009862366369014 -3929,1996/10/4,9.292152958,20.3072864,10.57299983,1.541810507,7.568127068,669.6938659,0.0652094104886488 -3930,1996/10/5,11.0509871,19.35678972,11.99471317,1.643504423,6.632238088,1246.526086,0.2054073796038305 -3931,1996/10/6,14.57973912,18.91091689,11.6086032,1.70557796,6.527031043,2330.429848,0.44926983243761986 -3932,1996/10/7,9.151312687,18.482374,10.51037599,1.107739713,6.666212411,2173.91035,0.34334856412986536 -3933,1996/10/8,11.30912672,17.42760736,9.140851141,0.979608305,6.5453072,2812.871825,0.4212779438726262 -3934,1996/10/9,8.89802805,16.80346847,8.484142755,0.841409622,6.426822156,2699.127945,0.3456325913283146 -3935,1996/10/10,5.113245858,16.21019999,7.737770522,0.813082714,6.346722858,1938.026187,0.16875361206603134 -3936,1996/10/11,1.03274834,16.55952185,7.920689479,0.631120282,6.469824074,921.2445909,0.08437680603301567 -3937,1996/10/12,0.377255279,17.08760937,7.812890973,0.37067466,6.754563061,520.0509114,0.042188403016507836 -3938,1996/10/13,0.002595685,18.20892798,7.637464058,0.574947718,7.32834252,299.6262649,0.021094201508253918 -3939,1996/10/14,0.004923109,18.25513858,7.663823707,1.069619486,7.348166608,191.3151862,0.010547100754126959 -3940,1996/10/15,0.123833842,18.73373693,7.476581233,1.179533694,7.615929381,136.0994013,0.0052735503770634795 -3941,1996/10/16,0.12061899,17.19637592,4.052691248,0.979863927,7.573231892,93.64475935,0.0026367751885317398 -3942,1996/10/17,0.669421712,16.15093271,4.072212591,0.683471033,7.133045581,104.9450348,0.0013183875942658699 -3943,1996/10/18,0.051371586,15.58151484,4.277986723,0.53263551,6.859353102,51.0415904,0.0006591937971329349 -3944,1996/10/19,0.009128847,16.51885509,6.144494874,0.454179127,6.907569056,29.857357,0.00032959689856646747 -3945,1996/10/20,0.000701363,17.57939278,5.929955463,0.938566743,7.430287309,18.89353558,0.00016479844928323373 -3946,1996/10/21,0.0,18.33864406,5.971421438,1.161979298,7.763892522,12.23254811,8.239922464161687e-05 -3947,1996/10/22,0.113423359,18.13275353,5.93116658,0.932696488,7.684382896,12.09732567,4.1199612320808434e-05 -3948,1996/10/23,2.076403128,18.82038109,6.392457958,1.041492823,7.909111702,79.86350443,2.0599806160404217e-05 -3949,1996/10/24,1.336667155,18.82960831,7.049771752,0.662706403,7.788879076,69.94216235,1.0299903080202108e-05 -3950,1996/10/25,2.277366902,15.74379024,7.469687662,0.309329876,6.248192264,107.2927841,5.149951540101054e-06 -3951,1996/10/26,1.02550598,14.55614179,7.234464285,0.593343103,5.738559036,71.95147905,2.574975770050527e-06 -3952,1996/10/27,0.500141962,13.71859988,5.657655829,0.765438938,5.771157175,44.65843068,1.2874878850252636e-06 -3953,1996/10/28,2.919238711,15.26528883,6.231450798,0.613803134,6.348609223,135.4452421,6.437439425126318e-07 -3954,1996/10/29,2.206971772,16.3839659,7.59850796,0.538316387,6.536818696,136.9236202,3.218719712563159e-07 -3955,1996/10/30,0.450309086,16.57944065,7.545948302,0.714554556,6.647911887,62.59436203,1.6093598562815794e-07 -3956,1996/10/31,2.003497509,15.73683808,2.61615996,0.852132491,7.241406858,112.874093,8.046799281407897e-08 -3957,1996/11/1,13.09327519,12.38473293,1.832923968,0.487855846,5.999358101,896.8514365,0.14085683976211444 -3958,1996/11/2,1.570920431,11.62901677,2.392511969,0.497782908,5.593823165,358.6424325,0.06902999375594294 -3959,1996/11/3,2.102146739,12.05037919,2.946736598,0.412371261,5.665558363,307.5321563,0.03451499687797147 -3960,1996/11/4,1.153102627,10.85323434,2.849710619,0.419547685,5.178991751,210.3680114,0.017257498438985736 -3961,1996/11/5,1.593935185,11.10770377,3.412832627,0.501026565,5.164975021,211.7732119,0.008628749219492868 -3962,1996/11/6,5.481832964,12.77569262,4.246579737,0.891205211,5.712038365,536.0274842,0.004314374609746434 -3963,1996/11/7,0.518331077,13.85022932,3.245747794,0.881350487,6.381269594,199.8878484,0.002157187304873217 -3964,1996/11/8,0.189494354,13.19027728,2.033336624,0.858418261,6.315908783,102.7905153,0.0010785936524366085 -3965,1996/11/9,0.071527023,13.36747589,1.886036012,0.931939446,6.413973278,61.73994772,0.0005392968262183043 -3966,1996/11/10,0.000859867,13.35525456,0.865493125,0.993300503,6.556966682,37.26454264,0.00026964841310915213 -3967,1996/11/11,0.0,13.18680002,1.192731154,1.022909752,6.449054745,23.9185879,0.00013482420655457606 -3968,1996/11/12,0.0,13.35897189,0.879631017,0.74772608,6.562729317,15.54340495,6.741210327728803e-05 -3969,1996/11/13,0.201350006,13.08076818,1.034793195,0.839298218,6.434806641,18.23404573,3.3706051638644016e-05 -3970,1996/11/14,0.653732939,13.61901667,1.807766762,0.927025169,6.542817006,32.84032444,1.6853025819322008e-05 -3971,1996/11/15,0.012373015,13.54006158,2.203963388,0.901120982,6.45258725,11.40852506,8.426512909661004e-06 -3972,1996/11/16,0.216511901,13.04585053,1.380713875,0.693170296,6.380405435,12.566045,4.213256454830502e-06 -3973,1996/11/17,0.018227692,11.61100098,0.090133723,0.509194639,5.997969555,5.855353567,2.106628227415251e-06 -3974,1996/11/18,0.009721099,10.98944732,0.324130893,0.784285509,5.726111932,3.501565841,1.0533141137076255e-06 -3975,1996/11/19,0.036738926,11.5278647,1.282312766,0.700563519,5.793751278,2.941189418,5.266570568538128e-07 -3976,1996/11/20,0.263903597,12.19153015,1.134956667,0.892588168,6.085379073,6.945388072,2.633285284269064e-07 -3977,1996/11/21,0.140114023,12.09630312,1.549340866,0.846422282,5.984658319,4.917161747,1.316642642134532e-07 -3978,1996/11/22,0.101539873,11.79479868,-0.399125396,0.773661634,6.143397363,3.59605763,6.58321321067266e-08 -3979,1996/11/23,0.405279889,11.46170873,-0.849355752,0.774348894,6.072291167,8.090518762,3.29160660533633e-08 -3980,1996/11/24,0.262912886,11.06332961,-0.107046048,0.952817048,5.829390223,6.583273716,1.645803302668165e-08 -3981,1996/11/25,0.074509464,11.25778472,0.902419371,0.916394224,5.759973888,3.336529306,8.229016513340824e-09 -3982,1996/11/26,0.004219774,10.85437682,-0.542096875,0.557308956,5.810892437,1.540710124,4.114508256670412e-09 -3983,1996/11/27,0.0,11.0465932,-0.525564739,0.949408191,5.88421253,0.905589431,2.057254128335206e-09 -3984,1996/11/28,0.0,10.9472691,-1.295893279,0.850450693,5.940329724,0.581036543,1.028627064167603e-09 -3985,1996/11/29,0.249379971,9.728543394,-1.275378219,0.583707927,5.484396516,2.905290991,5.143135320838015e-10 -3986,1996/11/30,2.093672024,8.226392445,-1.417766111,0.659983587,4.944320294,28.66458507,2.5715676604190076e-10 -3987,1996/12/1,3.877738136,7.415759583,-0.755604704,0.888458948,4.536667907,94.42271582,1.2857838302095038e-10 -3988,1996/12/2,0.074625459,8.76193164,-0.617475687,1.039041323,5.032732556,26.24110734,6.428919151047519e-11 -3989,1996/12/3,0.004627858,10.86255332,0.317823241,1.391971123,5.708278704,11.80109293,3.2144595755237595e-11 -3990,1996/12/4,0.002101559,12.55024226,1.210838465,1.496021483,6.247843029,7.219683245,1.6072297877618797e-11 -3991,1996/12/5,1.947894822,12.75161447,1.326027659,0.982031994,6.313543484,50.51660269,8.036148938809399e-12 -3992,1996/12/6,2.557082988,10.1080272,0.536201227,0.872004937,5.3807948,87.48719542,4.018074469404699e-12 -3993,1996/12/7,0.257910563,7.944821577,0.505404864,1.085943353,4.519845005,32.38059114,2.0090372347023497e-12 -3994,1996/12/8,0.024111592,10.09197162,-0.096664795,1.095270324,5.476391108,14.59801697,1.0045186173511748e-12 -3995,1996/12/9,0.657682378,10.06114886,-0.153176137,0.838939205,5.474125714,26.34919743,5.022593086755874e-13 -3996,1996/12/10,0.187496978,9.975428845,0.115388468,0.935920724,5.401230015,14.60226102,2.511296543377937e-13 -3997,1996/12/11,0.053158789,10.24561422,0.640253037,1.004926195,5.425002056,7.8638157,1.2556482716889685e-13 -3998,1996/12/12,0.081397699,10.03094828,-1.5695205,0.844878787,5.652126926,6.053945559,6.278241358444843e-14 -3999,1996/12/13,0.151817245,9.176635934,-2.436443331,0.929011957,5.435396677,6.167336451,3.1391206792224214e-14 -4000,1996/12/14,0.00055569,9.622110234,-2.437812794,1.163672764,5.598171672,2.67850306,1.5695603396112107e-14 -4001,1996/12/15,0.074010125,9.170186413,-2.15853537,0.967472696,5.404914364,2.814795872,7.847801698056053e-15 -4002,1996/12/16,0.018146591,9.367618999,-3.944874382,0.72778887,5.641576611,1.58868364,3.923900849028027e-15 -4003,1996/12/17,0.003074866,8.268779765,-4.723699094,0.595926703,5.319134096,0.898783686,1.9619504245140133e-15 -4004,1996/12/18,0.085369677,8.13195556,-4.492602766,0.796087093,5.256720628,1.634613257,9.809752122570067e-16 -4005,1996/12/19,0.0,8.322342715,-4.973224507,0.479798542,5.355484895,0.614628825,4.904876061285033e-16 -4006,1996/12/20,0.13477896,8.110432735,-4.023708384,0.496106311,5.213817184,1.808266769,2.4524380306425167e-16 -4007,1996/12/21,0.017678199,7.365702435,-4.464454343,0.547159292,4.994935365,0.751040523,1.2262190153212583e-16 -4008,1996/12/22,0.0,7.897053693,-5.374141247,0.529330851,5.239021421,0.340523404,6.131095076606292e-17 -4009,1996/12/23,0.039727016,7.63243267,-4.65428611,0.612459026,5.101679196,0.545190991,3.065547538303146e-17 -4010,1996/12/24,0.0,7.923338999,-4.843922413,0.792675751,5.214621719,0.214835432,1.532773769151573e-17 -4011,1996/12/25,0.001710539,8.847701228,-5.336249563,0.537247454,5.55817467,0.134746053,7.663868845757865e-18 -4012,1996/12/26,0.000165174,9.210266023,-3.407794052,0.783508498,5.549875846,0.08240287,3.831934422878932e-18 -4013,1996/12/27,0.099018848,10.41662928,-2.674288851,0.926026439,5.918131094,0.648873142,1.915967211439466e-18 -4014,1996/12/28,0.044266932,9.932588547,-2.94251993,0.733653624,5.767569417,0.427441584,9.57983605719733e-19 -4015,1996/12/29,0.0,9.615772197,-3.939302923,0.752530954,5.735612719,0.14526912,4.789918028598665e-19 -4016,1996/12/30,0.0,9.586714221,-4.846922455,1.140570353,5.784429248,0.079432728,2.3949590142993327e-19 -4017,1996/12/31,0.0,10.6862037,-5.023476016,0.63282574,6.172891261,0.050546316,1.1974795071496664e-19 -4018,1997/1/1,0.0,10.68954711,-4.961140005,0.586330246,6.171097368,0.032828862,5.987397535748332e-20 -4019,1997/1/2,0.023073084,9.556837638,-4.394345676,1.084251869,5.74667599,0.099767038,2.993698767874166e-20 -4020,1997/1/3,0.108338145,10.43049776,-3.987784392,1.089849816,6.025551151,0.389217635,1.496849383937083e-20 -4021,1997/1/4,0.050857643,9.69931624,-3.592732789,0.784765749,5.739103588,0.266334788,7.484246919685415e-21 -4022,1997/1/5,0.546026893,9.889778894,-2.219463748,0.811333399,5.683051831,2.232720722,3.742123459842707e-21 -4023,1997/1/6,0.265009886,9.623992994,-2.269521175,1.319056848,5.590897398,1.853916829,1.8710617299213537e-21 -4024,1997/1/7,0.000205037,9.248242742,-5.088745543,1.032653595,5.681568637,0.568068772,9.355308649606768e-22 -4025,1997/1/8,0.07715665,8.795602204,-5.004152736,0.878682777,5.522196079,0.641471682,4.677654324803384e-22 -4026,1997/1/9,0.427971669,8.626142116,-5.509925282,0.737618066,5.492911023,2.382470993,2.338827162401692e-22 -4027,1997/1/10,0.036114481,8.859913469,-5.177819435,0.808384846,5.553350108,0.853937075,1.169413581200846e-22 -4028,1997/1/11,0.741813224,9.017505938,-3.739612003,0.932682182,5.508568439,4.875678544,5.84706790600423e-23 -4029,1997/1/12,0.024268732,9.556182206,-2.718808862,1.295146369,5.609065284,1.469258832,2.923533953002115e-23 -4030,1997/1/13,0.036440546,9.453744788,-4.533991688,1.35394874,5.716429173,0.883706313,1.4617669765010576e-23 -4031,1997/1/14,0.01195883,9.414217013,-5.310957838,1.194138609,5.746310404,0.523940896,7.308834882505288e-24 -4032,1997/1/15,0.009407679,10.07660945,-4.946922258,1.235838021,5.953517711,0.348291601,3.654417441252644e-24 -4033,1997/1/16,0.027959919,10.10954895,-2.81147179,1.416299019,5.814363259,0.333109332,1.827208720626322e-24 -4034,1997/1/17,0.306157919,9.347980592,-3.948258634,1.461310428,5.63632642,1.626257139,9.13604360313161e-25 -4035,1997/1/18,0.0,8.744274704,-7.599173344,1.224542968,5.599542499,0.450106245,4.568021801565805e-25 -4036,1997/1/19,0.001771159,9.965111256,-7.553895821,0.952387427,5.996167529,0.225495248,2.2840109007829024e-25 -4037,1997/1/20,0.044326495,11.08620239,-4.713215428,1.244507673,6.286649885,0.314468702,1.1420054503914512e-25 -4038,1997/1/21,0.374191416,10.66206667,-4.516201688,1.556370033,6.127321248,1.733735499,5.710027251957256e-26 -4039,1997/1/22,0.369320405,8.568501052,-4.115565708,1.55361699,5.373070571,2.332172509,2.855013625978628e-26 -4040,1997/1/23,0.0,7.482580324,-7.044716465,1.443066661,5.172719372,0.668138538,1.427506812989314e-26 -4041,1997/1/24,0.028868276,7.823901217,-6.780614748,0.903670657,5.27241658,0.471076034,7.13753406494657e-27 -4042,1997/1/25,0.107003998,9.040660808,-4.303753753,0.929741921,5.546564288,0.732180467,3.568767032473285e-27 -4043,1997/1/26,1.215201044,9.604220122,-3.739200199,1.317774002,5.700105629,8.096028546,1.7843835162366425e-27 -4044,1997/1/27,0.314525758,9.823607673,-4.11865392,0.888712186,5.802668324,4.638177552,8.921917581183213e-28 -4045,1997/1/28,0.453094509,10.79197683,-2.472912987,1.594992385,6.016601982,5.515880072,4.460958790591606e-28 -4046,1997/1/29,0.05548743,10.80927392,-3.696257732,1.546887531,6.117256879,2.278541102,2.230479395295803e-28 -4047,1997/1/30,0.035981088,10.76619482,-4.133094438,1.28593872,6.128364319,1.355659275,1.1152396976479016e-28 -4048,1997/1/31,0.038885805,10.63816586,-2.726165571,1.519269425,5.978147679,1.004376587,5.576198488239508e-29 -4049,1997/2/1,0.155543366,10.71918883,-2.595974446,1.628091172,5.994327064,1.578090048,2.788099244119754e-29 -4050,1997/2/2,0.36903293,9.918180428,-3.836508172,1.566337331,5.8062107,3.156532757,1.394049622059877e-29 -4051,1997/2/3,0.001425771,10.22720049,-4.627559286,1.487078818,5.962271926,0.951184005,6.970248110299385e-30 -4052,1997/2/4,0.728166079,11.29723757,-1.7509819,1.564989118,6.121280375,5.90738379,3.4851240551496924e-30 -4053,1997/2/5,0.450966289,10.65070566,-2.57840621,1.358768216,5.960351405,5.488429734,1.7425620275748462e-30 -4054,1997/2/6,0.270600207,10.16676541,-3.319817286,1.585750012,5.847223106,4.114392187,8.712810137874231e-31 -4055,1997/2/7,0.093783048,9.885830146,-3.49023371,1.4735898,5.759280052,2.276199002,4.3564050689371155e-31 -4056,1997/2/8,0.0,9.748109839,-3.688823974,1.494279839,5.72409124,1.010307521,2.1782025344685578e-31 -4057,1997/2/9,0.003126281,9.808523733,-5.750471061,1.24340624,5.861483158,0.628038237,1.0891012672342789e-31 -4058,1997/2/10,0.275598297,10.58993324,-5.871781637,1.0590053,6.127180472,2.29962589,5.445506336171394e-32 -4059,1997/2/11,1.39e-06,10.90999465,-5.157154703,1.30380098,6.206273423,0.714134636,2.722753168085697e-32 -4060,1997/2/12,0.067202568,11.72831019,-3.561408917,1.324046178,6.405187674,0.773005058,1.3613765840428486e-32 -4061,1997/2/13,0.377410784,11.9178076,-1.789997514,1.238179812,6.333990575,2.644492741,6.806882920214243e-33 -4062,1997/2/14,0.401213401,13.32596615,-0.211046678,1.359454475,6.702855268,3.462920952,3.4034414601071215e-33 -4063,1997/2/15,0.338887432,12.89321955,-0.089133096,1.424598427,6.519514336,3.461806507,1.7017207300535608e-33 -4064,1997/2/16,0.293277445,13.23589266,-0.149297952,1.471442063,6.655719896,3.286007514,8.508603650267804e-34 -4065,1997/2/17,0.080871082,12.5179335,-0.682309035,1.112315364,6.436986413,1.688974225,4.254301825133902e-34 -4066,1997/2/18,0.572020557,13.14491084,-1.426008422,1.053596325,6.743349808,5.043705622,2.127150912566951e-34 -4067,1997/2/19,1.437786534,12.04789027,-0.870815931,1.573112276,6.274044467,15.96274239,1.0635754562834755e-34 -4068,1997/2/20,0.897578237,12.29235433,-0.536010616,1.510735633,6.32664288,15.74590222,5.317877281417377e-35 -4069,1997/2/21,0.154123783,11.12073908,-1.777406783,1.099809279,6.017830591,6.787532854,2.6589386407086887e-35 -4070,1997/2/22,1.876208596,11.04968474,-0.78591197,1.448397724,5.879962736,31.71536387,1.3294693203543443e-35 -4071,1997/2/23,1.463087141,9.503240323,-2.489913992,1.333854014,5.496898663,37.05214579,6.647346601771722e-36 -4072,1997/2/24,0.934643387,10.15866031,-4.250698483,1.051232896,5.866140315,31.16790445,3.323673300885861e-36 -4073,1997/2/25,0.067274279,11.96736686,-2.984427662,1.012204342,6.415116109,11.86072547,1.6618366504429304e-36 -4074,1997/2/26,0.035802332,12.57380427,-0.903118151,1.513262791,6.454524937,6.665310643,8.309183252214652e-37 -4075,1997/2/27,0.115626268,12.82427094,-0.695235504,1.17117386,6.524171974,5.861445329,4.154591626107326e-37 -4076,1997/2/28,0.068867344,13.1145142,-2.144531862,1.225437648,6.7595056,4.021271662,2.077295813053663e-37 -4077,1997/3/1,0.105414207,12.44417383,-3.60353081,1.284321162,6.611688845,3.538802936,1.0386479065268315e-37 -4078,1997/3/2,0.001455781,14.77590378,-2.337955,0.888642334,7.376700552,1.661470495,5.193239532634158e-38 -4079,1997/3/3,0.023440144,14.9725234,0.032392133,1.596624854,7.256872574,1.25003772,2.596619766317079e-38 -4080,1997/3/4,0.10092102,14.70580005,0.608135858,1.558369273,7.088649638,1.684026661,1.2983098831585394e-38 -4081,1997/3/5,0.090184792,14.67535899,-0.527679442,1.340911418,7.188906644,1.478647269,6.491549415792697e-39 -4082,1997/3/6,0.119265387,14.67934973,-1.73459307,1.270565219,7.285227595,1.551204897,3.2457747078963485e-39 -4083,1997/3/7,0.045027512,15.19124072,-1.890180123,1.030134877,7.482421404,0.899351294,1.6228873539481742e-39 -4084,1997/3/8,0.050827192,15.46859676,-0.196142323,1.251079402,7.450266718,0.730836377,8.114436769740871e-40 -4085,1997/3/9,0.042725106,16.05086767,1.418497928,1.300778181,7.507452855,0.569192041,4.057218384870436e-40 -4086,1997/3/10,0.13778574,16.94940035,2.704578699,1.519665469,7.708068121,0.998103412,2.028609192435218e-40 -4087,1997/3/11,0.211912352,17.56522005,2.584832045,1.74953493,7.971145005,1.451510456,1.014304596217609e-40 -4088,1997/3/12,0.260501323,18.09788124,3.437010437,1.819431206,8.077073257,1.839527109,5.071522981088045e-41 -4089,1997/3/13,0.533057238,17.93582,3.793763687,1.66481952,7.955456593,3.731631829,2.5357614905440223e-41 -4090,1997/3/14,1.110055449,17.92014202,2.885143456,1.527938291,8.065984949,9.807818844,1.2678807452720111e-41 -4091,1997/3/15,0.556681659,15.5683157,1.92781414,1.069279754,7.228005098,7.887162994,6.339403726360056e-42 -4092,1997/3/16,0.349881218,15.60476374,2.794231338,1.272344976,7.119719701,5.927580138,3.169701863180028e-42 -4093,1997/3/17,1.208236831,15.07766431,3.178298119,1.349238298,6.839767482,15.7256699,1.584850931590014e-42 -4094,1997/3/18,1.227272853,13.97929291,2.462079738,1.237451113,6.498587136,21.61080582,7.92425465795007e-43 -4095,1997/3/19,2.515748689,15.28684677,3.422412802,1.38651616,6.879291411,53.6872599,3.962127328975035e-43 -4096,1997/3/20,2.548839413,14.65496322,4.548270823,1.574126191,6.403329617,78.66004527,1.9810636644875174e-43 -4097,1997/3/21,4.102336835,15.62930279,4.667463924,1.661394138,6.797848359,161.6113211,9.905318322437587e-44 -4098,1997/3/22,0.918330875,16.78650558,3.047866599,1.539438493,7.542949077,79.63653766,4.952659161218793e-44 -4099,1997/3/23,0.598929257,15.96938636,2.172696054,1.328065376,7.323834109,51.39068657,2.4763295806093967e-44 -4100,1997/3/24,0.143180568,15.1934423,1.181908972,1.239678615,7.133825984,26.95079689,1.2381647903046984e-44 -4101,1997/3/25,0.969949022,14.27085769,1.938985338,0.852454792,6.667363605,43.52072974,6.190823951523492e-45 -4102,1997/3/26,2.603849658,14.26721094,2.684343347,1.001118935,6.550365907,101.4832746,3.095411975761746e-45 -4103,1997/3/27,5.870432648,13.67003882,1.589979869,1.093244328,6.470340782,288.7711389,1.547705987880873e-45 -4104,1997/3/28,0.37522505,14.83240725,1.44727856,1.260268712,6.943341624,95.61765251,7.738529939404365e-46 -4105,1997/3/29,0.683730804,15.68247695,2.811105773,0.965211703,7.095150415,71.85507312,3.8692649697021824e-46 -4106,1997/3/30,3.344600531,15.8098385,4.961045201,1.326389949,6.784101647,188.0707638,1.9346324848510912e-46 -4107,1997/3/31,4.062988246,13.11209264,2.281359005,1.03571358,6.128205847,276.5910303,9.673162424255456e-47 -4108,1997/4/1,0.267503357,14.02262595,2.388634096,1.234668475,6.474331307,96.53326238,4.836581212127728e-47 -4109,1997/4/2,0.290008683,15.92398465,3.832086847,1.2842259,7.020836587,59.34454126,2.418290606063864e-47 -4110,1997/4/3,0.194363718,16.30977698,2.816396838,1.058892838,7.327825964,39.61722839,1.209145303031932e-47 -4111,1997/4/4,0.497789493,16.38350743,3.152991316,1.030719497,7.306186646,41.09352309,6.04572651515966e-48 -4112,1997/4/5,0.479609435,16.95837954,4.555638927,1.331390855,7.323328251,35.44599249,3.02286325757983e-48 -4113,1997/4/6,0.243913808,15.66657503,3.724545328,1.374802907,6.914849032,22.87138952,1.511431628789915e-48 -4114,1997/4/7,0.489007719,13.58388306,2.642365085,1.273996496,6.234249044,25.24014598,7.557158143949575e-49 -4115,1997/4/8,0.268947903,13.81383246,2.124891843,1.364831031,6.404155219,17.4424406,3.7785790719747875e-49 -4116,1997/4/9,0.322841886,14.14458583,1.942800418,0.973491639,6.55816684,15.78944421,1.8892895359873938e-49 -4117,1997/4/10,0.199953221,15.58709964,2.727148977,0.935487714,7.018683207,11.14905018,9.446447679936969e-50 -4118,1997/4/11,0.126553591,16.26776724,3.836996068,1.122108295,7.125588768,7.550909052,4.723223839968484e-50 -4119,1997/4/12,0.180515501,15.19226764,3.120057178,0.882975537,6.79217069,6.982426943,2.361611919984242e-50 -4120,1997/4/13,0.719599578,14.49114205,2.040808452,1.137184043,6.666075295,16.20640974,1.180805959992121e-50 -4121,1997/4/14,0.033695164,15.99320532,2.28980654,0.80306089,7.224225821,5.518813035,5.904029799960605e-51 -4122,1997/4/15,0.079011971,17.34815375,3.751806721,1.083350063,7.567801762,3.883031067,2.952014899980303e-51 -4123,1997/4/16,0.486734244,16.83866604,4.831309325,1.025182384,7.179235982,8.955050501,1.4760074499901514e-51 -4124,1997/4/17,0.322893604,17.33479879,5.843270211,1.354617104,7.204179995,7.385816533,7.380037249950757e-52 -4125,1997/4/18,0.189293869,18.32357288,5.543378771,1.588974635,7.682079288,5.066105744,3.6900186249753784e-52 -4126,1997/4/19,0.164431222,18.48315563,5.017789137,1.460607504,7.832370816,3.982047451,1.8450093124876892e-52 -4127,1997/4/20,4.911632292,19.00086407,5.752106801,1.325186533,7.929260172,96.45671953,9.225046562438446e-53 -4128,1997/4/21,1.476609975,17.53851144,5.716263732,1.192343671,7.300226443,63.4891446,4.612523281219223e-53 -4129,1997/4/22,6.778193703,18.21204297,5.261242563,0.894629866,7.664850632,279.6620525,2.3062616406096115e-53 -4130,1997/4/23,6.462739281,15.76527633,4.58584229,1.132514972,6.74130833,436.3129381,1.1531308203048058e-53 -4131,1997/4/24,4.598229004,14.23503665,3.97464172,0.515371944,6.20770161,438.9881724,5.765654101524029e-54 -4132,1997/4/25,4.071738069,12.72043423,2.564556939,0.325541615,5.837157706,449.3728162,2.8828270507620144e-54 -4133,1997/4/26,0.340552945,15.67520412,3.299120764,0.436874349,6.907157648,172.112307,1.4414135253810072e-54 -4134,1997/4/27,5.800653143,16.63828976,4.89038331,0.840923223,7.04079967,538.1690754,7.207067626905036e-55 -4135,1997/4/28,1.300085542,16.26292804,4.753191751,1.040671648,6.902883396,265.6066438,3.603533813452518e-55 -4136,1997/4/29,2.378881536,17.7029019,5.350307646,0.34817058,7.404585153,288.8830894,1.801766906726259e-55 -4137,1997/4/30,2.69566346,17.65493353,5.669301246,0.326066895,7.323664457,308.6062243,9.008834533631295e-56 -4138,1997/5/1,2.984770197,19.06827346,6.621634258,0.770579382,7.75881294,332.1574864,4.5044172668156475e-56 -4139,1997/5/2,3.214831176,20.25506655,8.028280157,1.26185363,8.011290874,355.5104387,2.2522086334078237e-56 -4140,1997/5/3,1.866312669,20.64576387,8.334803187,1.433594133,8.122451799,255.7586515,1.1261043167039119e-56 -4141,1997/5/4,1.22315016,20.1736734,8.818363164,1.548308261,7.798314025,179.4684746,5.630521583519559e-57 -4142,1997/5/5,0.420193954,21.39268515,8.960287966,1.733121808,8.32758977,100.4062917,2.8152607917597797e-57 -4143,1997/5/6,0.131338222,22.4476424,10.06572074,1.804421405,8.57870092,56.98679346,1.4076303958798898e-57 -4144,1997/5/7,7.920792495,22.57848099,10.88492397,1.670134382,8.449025344,500.2053811,7.038151979399449e-58 -4145,1997/5/8,10.86488273,21.31733888,9.141958574,1.551513809,8.242390289,1050.599911,4.974132236776693e-06 -4146,1997/5/9,3.829110663,20.28019416,8.784115522,1.940004234,7.836329494,655.7726719,2.48706140112184e-06 -4147,1997/5/10,1.815815058,19.4699342,9.048757062,2.128392166,7.394589514,393.3641766,1.24353070056092e-06 -4148,1997/5/11,2.717388527,19.92177179,9.049047232,2.164361589,7.602861111,402.690506,6.2176535028046e-07 -4149,1997/5/12,1.671849747,20.8217887,8.896436399,1.804691624,8.050907318,292.3224746,3.1088267514023e-07 -4150,1997/5/13,0.588357106,22.30479588,9.632619238,2.073598124,8.577306929,164.0361474,1.55441337570115e-07 -4151,1997/5/14,0.074318886,23.04142638,10.56775967,2.06739219,8.716670377,85.57218915,7.77206687850575e-08 -4152,1997/5/15,0.027335847,24.07151368,10.89116869,1.953118076,9.131457118,52.39525785,3.886033439252875e-08 -4153,1997/5/16,1.528270946,23.86216149,11.39365066,1.756935837,8.914543923,104.7622309,1.9430167196264376e-08 -4154,1997/5/17,5.052693839,22.93511347,11.20182791,2.001822813,8.507594964,297.8169947,9.715083598132188e-09 -4155,1997/5/18,0.158916249,21.99604342,11.62034498,1.947204612,7.937294036,92.0439209,4.857541799066094e-09 -4156,1997/5/19,1.657629605,20.23754122,12.23739986,1.645540316,6.851960161,121.8187349,2.428770899533047e-09 -4157,1997/5/20,6.663368992,18.44074338,11.42175059,1.43372261,6.169296801,425.6697631,0.000737526063478494 -4158,1997/5/21,0.11316857,19.0935777,10.35148438,1.249748347,6.838454217,123.9596127,0.000368212562685394 -4159,1997/5/22,0.172196424,19.88430056,9.954893712,1.013685682,7.329407761,67.5271809,0.000184106281342697 -4160,1997/5/23,2.245971097,21.04192504,11.14419451,0.474867078,7.577300927,154.538881,9.20531406713485e-05 -4161,1997/5/24,3.155907505,18.06561826,11.47287322,0.37407472,5.940414588,223.548755,4.602657033567425e-05 -4162,1997/5/25,2.492905493,19.09591578,10.62126257,0.84525681,6.751147884,215.0223959,2.3013285167837127e-05 -4163,1997/5/26,5.595928651,19.58707336,10.76563098,1.266728024,6.952457724,441.6125983,1.1506642583918563e-05 -4164,1997/5/27,6.282796213,19.49277411,8.91133326,1.314725997,7.386970013,627.3664518,5.753321291959282e-06 -4165,1997/5/28,1.357855074,19.52612701,8.014183378,0.602493766,7.598375165,294.56563,2.876660645979641e-06 -4166,1997/5/29,1.621366325,19.88180781,9.166346653,0.257025412,7.503404671,241.2443845,1.4383303229898204e-06 -4167,1997/5/30,6.033297807,20.66957834,10.78284973,0.771670032,7.473056624,577.7004618,7.191651614949102e-07 -4168,1997/5/31,6.538922989,19.13001041,10.72968987,0.860761713,6.722698419,771.7737489,3.595825807474551e-07 -4169,1997/6/1,3.924331129,20.13677295,10.14817384,1.283898649,7.376120781,620.9951336,1.7979129037372755e-07 -4170,1997/6/2,0.218866512,21.72667707,10.73782653,1.389836548,7.990203292,232.0928225,8.989564518686378e-08 -4171,1997/6/3,2.528961694,22.70720185,11.20671136,1.63795695,8.345763924,330.3793059,4.494782259343189e-08 -4172,1997/6/4,1.953304296,22.99619443,11.99804675,1.944257141,8.285984095,278.039268,2.2473911296715944e-08 -4173,1997/6/5,1.068918703,22.94333906,12.3884896,1.833550432,8.15388975,183.4168633,1.1236955648357972e-08 -4174,1997/6/6,1.326120245,23.29444653,12.73198564,1.972879222,8.234550739,164.8933584,5.618477824178986e-09 -4175,1997/6/7,3.133026813,23.01444766,12.98525,1.851152846,8.018968198,263.8709802,2.809238912089493e-09 -4176,1997/6/8,1.239918954,21.33288458,12.83912777,1.658957433,7.189511201,161.9209496,1.4046194560447465e-09 -4177,1997/6/9,0.68049795,20.1604476,11.31282102,1.637496337,7.052269726,102.2229081,7.023097280223732e-10 -4178,1997/6/10,2.519021409,20.03522573,12.20420095,1.345865779,6.709022386,183.7869293,3.511548640111866e-10 -4179,1997/6/11,2.242833352,19.8064494,12.36311366,1.276994546,6.532687504,187.241911,1.755774320055933e-10 -4180,1997/6/12,1.559705928,20.78261624,12.43740972,1.108060385,7.022897236,150.6128432,8.778871600279666e-11 -4181,1997/6/13,3.574616037,22.19472732,12.72707723,1.841032514,7.663743154,263.8697603,4.389435800139833e-11 -4182,1997/6/14,4.829793917,22.55436615,12.91555813,1.465047232,7.791326364,396.9003119,2.1947179000699164e-11 -4183,1997/6/15,10.65998303,21.90216157,12.89724683,1.020808396,7.458373541,1027.104717,0.0017631715233713946 -4184,1997/6/16,11.40074929,19.07676806,12.62125231,0.626483784,6.035712224,1598.059627,0.020993541687422568 -4185,1997/6/17,7.790458013,19.36522519,12.6602365,0.714772858,6.180156866,1544.713649,0.02507043876088826 -4186,1997/6/18,8.935497139,19.73594816,13.02102766,1.279112684,6.25067642,1895.036471,0.04107541758677965 -4187,1997/6/19,0.164524384,21.00718419,12.52969662,1.632388531,7.102392446,619.1049029,0.02038530920639349 -4188,1997/6/20,4.07610347,20.88807597,13.36122157,1.06463429,6.760389818,882.6073436,0.010192654603196745 -4189,1997/6/21,1.46075556,20.8631467,13.03965342,0.684226125,6.857271071,524.1563519,0.0050963273015983725 -4190,1997/6/22,5.407919893,20.36299071,12.43116204,0.635605432,6.793664795,912.8813352,0.0025481636507991862 -4191,1997/6/23,6.909627107,21.44869014,13.29359226,0.701390196,7.084079923,1223.447918,0.0012740818253995931 -4192,1997/6/24,11.0756773,21.32527454,13.49812404,0.822938067,6.94751159,2062.58378,0.0445792116834773 -4193,1997/6/25,11.85693214,20.99012874,14.16263507,0.762277645,6.518485469,2724.683799,0.10045203906158667 -4194,1997/6/26,8.131833706,20.49311591,14.27331312,0.707056171,6.187180416,2411.785585,0.08828682119825938 -4195,1997/6/27,8.792968503,21.3125971,14.50813977,1.158318029,6.56796008,2620.216354,0.09212278119917047 -4196,1997/6/28,9.149514005,21.62208726,14.71059482,1.65761629,6.666474571,2847.139736,0.10479478795056127 -4197,1997/6/29,6.455849684,23.15948607,14.85634605,2.054796814,7.47747975,2337.78279,0.05169027056977457 -4198,1997/6/30,6.449190943,23.79806085,15.32659929,1.785002378,7.666354714,2166.180794,0.025845135284887286 -4199,1997/7/1,8.883593765,23.17577799,15.67860802,1.684243393,7.185746193,2589.679523,0.05365844037796839 -4200,1997/7/2,10.08426145,22.72205476,15.2607297,1.46446157,7.084486843,3011.624418,0.10316479454657673 -4201,1997/7/3,6.966669385,21.62614523,14.6574781,1.287073094,6.688434594,2474.950164,0.05851669660411413 -4202,1997/7/4,14.89967443,20.50936642,14.71824342,1.041928708,6.007631487,4373.454743,0.2845316183293026 -4203,1997/7/5,4.172601661,20.94162365,15.18080635,1.010872745,6.067645011,2336.565189,0.13859837431317296 -4204,1997/7/6,6.055444107,20.79114555,14.56252769,1.062029027,6.241684777,2301.740304,0.06929918715658648 -4205,1997/7/7,8.83214962,19.9153344,14.18119112,1.011617219,5.882862,2881.592744,0.13807410715825102 -4206,1997/7/8,15.9544448,18.06027161,12.75258914,0.686356155,5.393420008,5125.930819,0.4665749544651062 -4207,1997/7/9,5.417467264,18.58681798,11.7631961,0.604695319,6.072988295,3008.864674,0.22573700341642086 -4208,1997/7/10,9.329608671,19.53410027,12.33349544,0.634718659,6.382406237,3610.603775,0.25119719546829256 -4209,1997/7/11,12.78991296,21.24819173,13.34597502,0.912808477,6.956791845,4801.882075,0.41174881080531767 -4210,1997/7/12,16.62438486,21.73875549,14.07813579,1.081568368,6.969463571,6618.970741,0.7285703350775441 -4211,1997/7/13,8.300399596,22.33361101,13.75414538,1.006371749,7.404208568,4537.818263,0.406658175104519 -4212,1997/7/14,7.773598191,22.24139962,13.67541783,0.766522722,7.381446774,3786.945499,0.22673395894048676 -4213,1997/7/15,10.3449848,21.99774225,14.01096645,0.780777959,7.137426478,4172.786658,0.3198767171739317 -4214,1997/7/16,8.149290202,20.64715921,12.97016546,0.869250191,6.764720932,3571.235998,0.24661533101378125 -4215,1997/7/17,4.610531282,20.46290024,12.78184388,1.034018549,6.730917449,2418.758541,0.12015893531569573 -4216,1997/7/18,4.164661574,19.95087029,12.7905248,0.984504221,6.452104929,1907.726615,0.060079467657847864 -4217,1997/7/19,9.095953063,20.0143595,12.65790204,0.67449187,6.534177157,2758.886701,0.19460180566001808 -4218,1997/7/20,7.435542824,21.19666359,12.77616907,0.537889391,7.125025851,2568.320741,0.11265876689109774 -4219,1997/7/21,10.28282494,22.68327269,13.32909905,0.481965427,7.7310498,3189.944086,0.22597755447645515 -4220,1997/7/22,9.983767614,22.42026918,13.69605101,0.4295192,7.478297039,3314.20472,0.28011557841925605 -4221,1997/7/23,13.78168087,21.97406749,14.22474477,0.589744759,7.057458624,4458.776955,0.612496637271206 -4222,1997/7/24,6.6691694,21.86070894,14.13366411,0.599305771,7.028563002,3037.939843,0.28923034953270543 -4223,1997/7/25,6.511104053,21.7627138,14.33786337,0.492329203,6.9013353,2629.965437,0.14461517476635272 -4224,1997/7/26,12.8176046,21.87904988,14.76651879,0.480585553,6.807372961,4069.743803,0.5302716196130652 -4225,1997/7/27,10.80197427,21.05920515,14.25274497,0.68221922,6.537773329,4065.107019,0.594480941886193 -4226,1997/7/28,4.423631691,22.48881084,13.60033672,0.670574402,7.554647792,2434.496928,0.28313872440409704 -4227,1997/7/29,5.175072128,22.52320205,13.88709588,1.224000495,7.481730857,2117.16851,0.14156936220204852 -4228,1997/7/30,8.163226337,22.70721199,14.09766392,1.353467027,7.512969151,2556.043191,0.1224721579891517 -4229,1997/7/31,10.14282441,21.99531175,14.07282802,1.033987651,7.135417093,3070.570834,0.2998908957716767 -4230,1997/8/1,15.99494155,21.84005471,14.45894499,1.09186273,6.911287498,4891.665786,0.8904768200866546 -4231,1997/8/2,7.706162567,22.56066659,14.90170373,0.933230719,7.156002812,3433.615269,0.46390313687053775 -4232,1997/8/3,2.978691384,23.37442322,15.28840378,1.205974633,7.475682398,1904.755884,0.2297120549541129 -4233,1997/8/4,1.630720437,22.49046869,15.18153985,1.465183827,7.01456664,1161.580445,0.11485602747705645 -4234,1997/8/5,0.860648317,24.05287982,15.2611054,1.634817369,7.86800496,725.9718976,0.057428013738528225 -4235,1997/8/6,1.913357554,24.38221973,14.87021834,1.587696556,8.179684755,667.7761288,0.028714006869264112 -4236,1997/8/7,17.69617588,22.91793285,14.97174352,1.100709191,7.342352989,3198.08118,0.7794540143733478 -4237,1997/8/8,11.50075553,20.15729159,14.59612988,0.716486619,5.882146395,3183.120634,0.8265405295766974 -4238,1997/8/9,2.624515874,20.31351279,12.97184297,0.570678856,6.619635522,1510.653559,0.3940216168385594 -4239,1997/8/10,0.975001104,20.22897292,12.724319,0.725282566,6.662677539,809.2096033,0.1970108084192797 -4240,1997/8/11,3.42381303,20.9392643,13.25073668,1.179374338,6.867818267,964.9741544,0.09850540420963985 -4241,1997/8/12,7.916371432,21.22976483,13.72247159,1.497021772,6.862917038,1661.916003,0.1291969861310847 -4242,1997/8/13,4.980424466,22.61372423,14.91361658,2.036644342,7.206760788,1343.460761,0.06156509713266057 -4243,1997/8/14,4.137425405,23.09550579,14.98466739,1.578483304,7.455116463,1119.037089,0.030782548566330285 -4244,1997/8/15,16.60369175,22.07252288,14.26082323,0.686903625,7.145559539,3381.06633,0.6892203503121979 -4245,1997/8/16,15.29554292,20.6419719,13.14799703,0.383961082,6.753852428,4365.900773,0.9988331559449526 -4246,1997/8/17,1.355756977,20.9453387,11.96092055,0.122807371,7.303697046,1583.741953,0.4724903871938887 -4247,1997/8/18,0.101570876,20.38811416,11.73180579,0.156307923,7.089608341,740.752318,0.23624519359694435 -4248,1997/8/19,0.29174519,20.40256935,12.0001135,0.197600061,7.016873841,489.3615934,0.11812259679847217 -4249,1997/8/20,0.265801647,20.47100312,10.84483301,0.279953144,7.393469907,331.7472655,0.05906129839923609 -4250,1997/8/21,0.846056528,21.98099941,10.95579318,0.175025288,8.107574277,294.0109207,0.029530649199618043 -4251,1997/8/22,1.422773247,22.69149661,11.3778653,0.282409017,8.352198194,289.8918495,0.014765324599809022 -4252,1997/8/23,5.056621354,23.29907545,11.51987563,0.202708484,8.617721963,604.9304775,0.007382662299904511 -4253,1997/8/24,3.332867227,20.00770688,12.16431384,0.124959592,6.770760105,503.1230051,0.0036913311499522554 -4254,1997/8/25,1.030100327,21.57843986,12.40793038,0.528492613,7.520534779,266.0726769,0.0018456655749761277 -4255,1997/8/26,5.161264945,22.88916845,12.69595287,0.758351742,8.114620872,574.445166,0.0009228327874880639 -4256,1997/8/27,6.818317181,22.09741801,13.00417989,0.921240751,7.615707122,844.5329067,0.00046141639374403193 -4257,1997/8/28,13.55310517,21.64125164,13.15271981,1.224918821,7.329502272,1934.897423,0.3181182367011755 -4258,1997/8/29,21.80155157,22.24155255,13.3321244,1.283020395,7.595750159,4532.647598,0.9561509977014 -4259,1997/8/30,10.40832399,21.43103449,13.86026209,0.882558556,6.977431274,3530.084013,0.693094269593498 -4260,1997/8/31,7.775862679,21.30174913,14.31948633,0.698185202,6.735174703,2891.590846,0.41353933367213136 -4261,1997/9/1,24.93315673,20.54585035,14.4057495,0.635632763,6.259606873,8020.782685,1.570770502288365 -4262,1997/9/2,11.64087766,19.06400176,13.40467714,0.485808758,5.800903482,6043.397623,1.2564727392484225 -4263,1997/9/3,3.227781698,19.39251688,12.34577661,0.485104663,6.406755817,2976.995304,0.6049872884005933 -4264,1997/9/4,12.9389227,19.73353989,11.59479269,0.51033142,6.846820163,5048.261944,0.8562390137789964 -4265,1997/9/5,15.21626107,19.65271268,11.00148353,0.567328576,6.991540236,6398.554016,1.1919550194148953 -4266,1997/9/6,1.481358417,21.42622202,11.03758918,0.654177494,7.874783429,2447.905595,0.558132809192978 -4267,1997/9/7,0.19497307,22.88576431,11.45874859,0.561603963,8.491568452,1212.308297,0.279066404596489 -4268,1997/9/8,0.412082816,23.26612099,11.52587435,0.799238819,8.666754127,801.9692499,0.1395332022982445 -4269,1997/9/9,1.223389729,22.05742517,11.42109333,0.895939458,8.099575527,661.3812713,0.06976660114912225 -4270,1997/9/10,0.499652516,22.1709588,11.98911932,0.835906826,8.007077239,415.5012229,0.03488330057456113 -4271,1997/9/11,5.313727296,20.73933232,12.56876099,1.056316153,7.088965534,836.1851325,0.017441650287280563 -4272,1997/9/12,2.408058815,20.48680559,12.70904182,0.971770049,6.908921939,562.2219074,0.008720825143640282 -4273,1997/9/13,2.951751623,20.93687036,12.31248643,0.822560751,7.284849843,538.498347,0.004360412571820141 -4274,1997/9/14,1.403158641,20.5326575,11.4274768,0.660785192,7.349014572,344.3488045,0.0021802062859100704 -4275,1997/9/15,0.811928571,20.3575986,11.03753555,0.425001544,7.37710962,221.8641298,0.0010901031429550352 -4276,1997/9/16,4.64153885,19.90086696,10.98663528,0.755393585,7.164011565,507.8756259,0.0005450515714775176 -4277,1997/9/17,3.855207152,20.85357692,11.71387843,0.615914286,7.441483471,509.8242398,0.0002725257857387588 -4278,1997/9/18,8.649591543,19.04087342,11.5231529,0.679695683,6.554281721,1049.506186,0.1210191378658677 -4279,1997/9/19,15.6756414,17.43836193,8.82563613,1.067460929,6.563164421,2485.200802,0.5996946577589404 -4280,1997/9/20,7.753865982,18.0625754,7.935780941,0.620778471,7.090163585,1980.51507,0.3285628586801553 -4281,1997/9/21,3.50880651,16.68860012,8.381173111,0.447098887,6.328548164,1216.187989,0.1627644063969646 -4282,1997/9/22,1.368517695,16.2024038,9.244233284,0.882427542,5.831175985,685.7565283,0.0813822031984823 -4283,1997/9/23,0.868681888,16.63015311,9.899896515,0.66193674,5.840013247,444.532045,0.04069110159924115 -4284,1997/9/24,2.973167271,16.45681518,10.32689666,0.508213205,5.599448982,605.9006037,0.020345550799620575 -4285,1997/9/25,19.94265143,14.71587044,6.891431967,0.606133395,5.804650609,3522.037409,0.807125473873802 -4286,1997/9/26,4.885680367,12.63558191,4.99239622,0.428778338,5.341058177,1882.704402,0.38110080573296523 -4287,1997/9/27,9.624407372,11.50748457,5.487276236,0.220482849,4.686528111,2651.754782,0.5288108754072018 -4288,1997/9/28,0.455786332,12.93987721,6.74662356,0.686512138,4.999597397,940.7417238,0.2528194772906788 -4289,1997/9/29,0.29166451,14.94787796,7.878074322,0.852333586,5.648330212,520.6553395,0.1264097386453394 -4290,1997/9/30,1.818871376,16.27183751,7.835710881,0.832174644,6.309079663,597.6425718,0.0632048693226697 -4291,1997/10/1,1.642270501,16.56868678,8.126685727,1.250533848,6.377155055,504.1960499,0.03160243466133485 -4292,1997/10/2,4.532613346,16.24215593,6.88543762,0.805366661,6.543042012,843.8686742,0.015801217330667423 -4293,1997/10/3,2.033406772,16.90875786,6.687228008,0.48768338,6.89734039,546.8747147,0.007900608665333712 -4294,1997/10/4,7.381512287,17.53325932,6.085682763,0.512310638,7.306423036,1196.227051,0.008036048779826529 -4295,1997/10/5,9.714301621,16.5486048,6.952587377,0.667660748,6.680134796,1802.647948,0.16920518744954355 -4296,1997/10/6,14.00612064,15.7490155,7.409908485,0.719676418,6.194884614,3052.054738,0.5268367048554334 -4297,1997/10/7,6.873285307,16.43698253,8.262816986,1.006267564,6.297864695,2251.844958,0.2875480929331953 -4298,1997/10/8,6.842175093,17.2158999,7.634919791,1.062129568,6.839414829,2145.569237,0.14276903327840673 -4299,1997/10/9,0.099380442,18.11288085,8.421521416,1.081392841,7.074441011,767.6197898,0.0713787501983803 -4300,1997/10/10,2.425106216,17.89102798,8.20990848,1.181603504,7.025509548,797.7986086,0.03568937509919015 -4301,1997/10/11,0.868197095,17.53275931,6.845833398,0.866036725,7.179616707,476.6833995,0.017844687549595076 -4302,1997/10/12,9.484207159,17.79333348,6.599199428,1.055146543,7.354039302,1578.572638,0.126980086504484 -4303,1997/10/13,0.632459731,16.14385828,5.551502919,1.12790173,6.836025294,557.840549,0.060218556788715655 -4304,1997/10/14,0.018523093,16.46350313,5.220869918,0.948301638,7.045502796,260.8323153,0.030109278394357827 -4305,1997/10/15,0.010442919,16.75582701,5.004185432,0.933143847,7.216947716,160.0933878,0.015054639197178914 -4306,1997/10/16,1.94139982,16.18327107,4.846101135,0.584250977,7.002315398,279.2202499,0.007527319598589457 -4307,1997/10/17,0.252647856,15.84381553,3.716687202,0.77271664,7.058404596,130.0736993,0.0037636597992947284 -4308,1997/10/18,1.056145586,16.33583013,4.08923751,0.779075976,7.208422981,144.7781035,0.0018818298996473642 -4309,1997/10/19,0.004198846,15.31724748,3.447220582,0.631117315,6.890348417,60.89483367,0.0009409149498236821 -4310,1997/10/20,0.0,15.90977306,3.243338955,0.737421941,7.172740427,35.44389935,0.00047045747491184105 -4311,1997/10/21,0.407068983,16.3052292,3.651219098,1.209021051,7.278560966,43.08145091,0.00023522873745592053 -4312,1997/10/22,0.000201014,16.71168919,3.523831404,1.347753834,7.47207682,19.68135181,0.00011761436872796026 -4313,1997/10/23,0.010780756,16.86963417,4.08795555,1.086692339,7.455450528,12.18043966,5.880718436398013e-05 -4314,1997/10/24,0.948611374,17.88822817,4.872417947,1.219082949,7.767635647,40.60389987,2.9403592181990066e-05 -4315,1997/10/25,2.658093947,16.86388182,5.683902492,1.124876015,7.176778135,109.3887485,1.4701796090995033e-05 -4316,1997/10/26,13.43285163,14.8112327,4.020932114,0.781633545,6.60373217,858.0365807,0.20096101494225097 -4317,1997/10/27,12.97084995,12.87256302,3.753142817,0.887393413,5.828068891,1562.640434,0.3536577525229536 -4318,1997/10/28,1.571074033,14.16422455,3.989257809,0.98712788,6.339688141,608.1819357,0.172236507965916 -4319,1997/10/29,0.087394373,14.61761985,4.201039804,1.024384844,6.497429185,256.274924,0.086118253982958 -4320,1997/10/30,1.431470706,14.54724891,4.419392852,0.847125377,6.427642196,284.7603352,0.043059126991479 -4321,1997/10/31,0.404169388,13.75084651,3.298340995,1.028911742,6.303769194,162.6558414,0.0215295634957395 -4322,1997/11/1,0.353928812,12.78754641,2.446238647,0.72562467,6.057165021,111.8359121,0.01076478174786975 -4323,1997/11/2,0.041253989,13.59235417,2.077581554,0.698699012,6.449833218,62.04724756,0.005382390873934875 -4324,1997/11/3,0.09347499,13.76394843,-0.120945934,0.630934416,6.806135301,43.34322392,0.0026911954369674375 -4325,1997/11/4,1.275879406,13.71210786,1.297502804,0.472062557,6.617726392,96.84992915,0.0013455977184837187 -4326,1997/11/5,0.858083985,12.73561752,0.556165104,0.896946251,6.335508726,78.77218395,0.0006727988592418594 -4327,1997/11/6,1.023849478,12.16582734,0.447212258,0.709300229,6.131327252,80.21780836,0.0003363994296209297 -4328,1997/11/7,9.498067892,11.95397917,0.829267707,0.735668858,5.9980347,640.9674881,0.08922869684585864 -4329,1997/11/8,2.572430926,12.93940286,1.589557186,0.946132019,6.280129285,365.769362,0.04348124886156529 -4330,1997/11/9,0.08610397,13.71385421,2.294722639,1.12828863,6.488378344,129.8648057,0.021740624430782646 -4331,1997/11/10,0.49753205,13.60090321,3.134720656,1.333959748,6.302307312,101.8915559,0.010870312215391323 -4332,1997/11/11,2.126546216,13.97575289,3.041184756,1.112337367,6.479508291,185.6124179,0.005435156107695661 -4333,1997/11/12,0.495792568,13.12102294,3.381122373,0.976101362,6.058337782,93.77053472,0.0027175780538478307 -4334,1997/11/13,0.976039916,11.3164669,0.244204064,1.187978351,5.849530058,96.41754032,0.0013587890269239154 -4335,1997/11/14,0.247806616,11.57019032,-0.951451227,1.250096339,6.099172294,51.18969388,0.0006793945134619577 -4336,1997/11/15,0.0,12.89738099,-0.397763651,1.351798851,6.543450276,25.1052372,0.00033969725673097884 -4337,1997/11/16,0.085137692,13.09828335,-0.138925003,0.595837787,6.594521934,18.95953843,0.00016984862836548942 -4338,1997/11/17,1.484691506,13.16456018,1.063843078,1.060893961,6.47269595,68.93823266,8.492431418274471e-05 -4339,1997/11/18,1.564735637,12.55855774,2.406020163,1.217701907,6.018992478,83.29835158,4.2462157091372355e-05 -4340,1997/11/19,1.023171517,12.84334561,3.694453148,1.417874778,5.894016597,66.61554223,2.1231078545686177e-05 -4341,1997/11/20,0.946437783,12.45357533,1.739718105,1.243955765,6.093955418,60.28055244,1.0615539272843089e-05 -4342,1997/11/21,0.351686532,11.86037037,-0.686557499,0.880228809,6.197332544,34.70200546,5.307769636421544e-06 -4343,1997/11/22,0.018830751,12.69687358,-0.462131499,1.016540409,6.493260213,15.7835276,2.653884818210772e-06 -4344,1997/11/23,0.043458931,13.87741101,0.812054758,1.415011155,6.804819936,10.48448914,1.326942409105386e-06 -4345,1997/11/24,0.003459978,13.51361269,0.774501079,1.656548523,6.668272793,6.288432657,6.63471204552693e-07 -4346,1997/11/25,0.033698252,13.08615992,0.569313641,1.424861519,6.528492243,4.768139003,3.317356022763465e-07 -4347,1997/11/26,0.125550234,12.96921439,0.326882544,1.624230883,6.515675003,5.394830009,1.6586780113817326e-07 -4348,1997/11/27,0.207364477,13.77793315,0.80832563,1.531038857,6.776055728,6.351543626,8.293390056908663e-08 -4349,1997/11/28,0.000179718,12.78374552,-0.410454717,1.251743542,6.535415998,2.376625401,4.1466950284543315e-08 -4350,1997/11/29,0.00651675,12.94796217,-0.627297708,1.153726171,6.624130294,1.432617708,2.0733475142271658e-08 -4351,1997/11/30,0.165783461,13.29559809,-0.481340324,1.113094212,6.744156215,3.158205407,1.0366737571135829e-08 -4352,1997/12/1,0.888777424,13.85671577,1.769750779,0.784316734,6.686105933,13.55667612,5.1833687855679144e-09 -4353,1997/12/2,1.409285449,12.00188785,-0.573250676,1.23054907,6.262927748,26.55077683,2.5916843927839572e-09 -4354,1997/12/3,0.547031359,10.43188459,-0.800663967,0.832442883,5.694696646,16.91806158,1.2958421963919786e-09 -4355,1997/12/4,0.098814979,10.57695819,0.158292936,1.013122552,5.620064315,7.495124529,6.479210981959893e-10 -4356,1997/12/5,0.064536399,11.50689172,-1.042709076,1.079188088,6.133786631,4.60785052,3.2396054909799465e-10 -4357,1997/12/6,0.0,10.79958002,-2.223126448,1.147635543,5.993967977,2.454516224,1.6198027454899733e-10 -4358,1997/12/7,0.013427426,10.6123351,-2.702064659,0.801844095,5.970958798,1.706362847,8.099013727449866e-11 -4359,1997/12/8,0.059708401,9.690478879,-1.775190416,0.914308756,5.543033794,1.720565485,4.049506863724933e-11 -4360,1997/12/9,0.088580094,9.617567211,-0.498529512,0.939317791,5.351989068,1.770413242,2.0247534318624666e-11 -4361,1997/12/10,0.999779043,10.67832887,0.628960977,1.307674137,5.59670165,12.27125376,1.0123767159312333e-11 -4362,1997/12/11,0.048001474,9.948373856,-0.230116509,1.715107558,5.443011918,3.782016121,5.0618835796561664e-12 -4363,1997/12/12,0.062297263,9.878215046,-1.350886735,1.140626309,5.568038921,2.326583717,2.5309417898280832e-12 -4364,1997/12/13,0.807254409,10.23790433,-1.864700054,0.934794722,5.761599972,10.52710701,1.2654708949140416e-12 -4365,1997/12/14,6.714818086,10.15998116,-0.151622852,1.10065284,5.517118007,162.8133772,0.005436690522090033 -4366,1997/12/15,0.891170475,8.99825073,-1.388667304,1.0604664,5.247023039,70.30983262,0.002706005943237347 -4367,1997/12/16,0.003538293,9.42586865,-2.8282093,0.893867887,5.566711075,25.21859847,0.0013530029716186736 -4368,1997/12/17,0.024506115,10.22344699,-3.346990644,0.896956528,5.897816811,14.89128016,0.0006765014858093368 -4369,1997/12/18,0.359455981,7.88643047,-4.90983029,1.038833324,5.20215428,18.89113409,0.0003382507429046684 -4370,1997/12/19,0.073961696,8.010621632,-5.137602015,0.888938123,5.259867207,10.14309792,0.0001691253714523342 -4371,1997/12/20,0.001759162,8.747975434,-4.437138894,1.127931077,5.464878547,5.384380303,8.45626857261671e-05 -4372,1997/12/21,0.01252433,8.568816997,-4.443415299,0.744960277,5.404434092,3.614544067,4.228134286308355e-05 -4373,1997/12/22,0.105763003,8.663675564,-5.397462357,0.87554381,5.49720936,4.243228833,2.1140671431541775e-05 -4374,1997/12/23,0.0,8.617029191,-5.789828287,1.08958106,5.502150546,1.923513319,1.0570335715770888e-05 -4375,1997/12/24,0.0,9.317023508,-4.533551383,1.240040668,5.670108696,1.148678395,5.285167857885444e-06 -4376,1997/12/25,0.0,8.842194533,-5.597637383,0.998547989,5.569359631,0.739588939,2.642583928942722e-06 -4377,1997/12/26,0.140381055,9.038848642,-4.839661372,0.831092536,5.594680272,2.309013017,1.321291964471361e-06 -4378,1997/12/27,0.060762307,9.525674469,-3.341258638,0.944137341,5.656041105,1.487588035,6.606459822356805e-07 -4379,1997/12/28,0.068699117,9.754459096,-1.162329541,1.353895168,5.51035463,1.338310663,3.3032299111784024e-07 -4380,1997/12/29,0.002242047,10.13015055,-3.094196995,1.173280073,5.851566563,0.535362414,1.6516149555892012e-07 -4381,1997/12/30,0.00999226,10.85344128,-3.399509195,1.138993515,6.13467448,0.388482536,8.258074777946006e-08 -4382,1997/12/31,0.0,11.35499556,-4.027086102,1.247054248,6.354571527,0.210768482,4.129037388973003e-08 -4383,1998/1/1,0.000211512,9.868198125,-4.16833849,1.148293457,5.840171284,0.133772865,2.0645186944865015e-08 -4384,1998/1/2,0.012732036,10.39270595,-3.567810949,1.246864406,5.983041124,0.170355394,1.0322593472432507e-08 -4385,1998/1/3,0.002867187,10.96250696,-4.532400122,1.599857814,6.244594797,0.093300429,5.161296736216254e-09 -4386,1998/1/4,0.004351338,10.83560503,-4.860091425,0.833185218,6.216864481,0.072656011,2.580648368108127e-09 -4387,1998/1/5,0.068088911,10.60986207,-3.836729501,1.23351565,6.078638788,0.370223677,1.2903241840540634e-09 -4388,1998/1/6,1.781987733,10.62489553,-1.872663851,1.578955449,5.917607057,13.68428982,6.451620920270317e-10 -4389,1998/1/7,0.007341193,10.52178965,-3.268191449,1.381209453,6.005753975,3.38735683,3.2258104601351586e-10 -4390,1998/1/8,0.004216019,11.66378226,-3.091388285,1.666195053,6.403202377,1.519284686,1.6129052300675793e-10 -4391,1998/1/9,0.007174514,11.66038088,-3.188234305,1.366166289,6.408443018,0.971283301,8.064526150337896e-11 -4392,1998/1/10,0.0004723,12.56546708,-3.751205085,1.430071011,6.769400044,0.606980212,4.032263075168948e-11 -4393,1998/1/11,0.075483737,11.29198085,-3.676499441,1.127577278,6.308152183,0.862076447,2.016131537584474e-11 -4394,1998/1/12,0.041976311,11.48785903,-2.570176275,1.572505342,6.296892397,0.609164561,1.008065768792237e-11 -4395,1998/1/13,0.024716429,9.542242977,-3.450897899,1.557046503,5.668749892,0.40299285,5.040328843961185e-12 -4396,1998/1/14,0.018684193,8.548000009,-4.806458182,1.839243019,5.422470596,0.284788606,2.5201644219805926e-12 -4397,1998/1/15,0.103514234,9.15688085,-4.155671797,2.029169259,5.586582182,0.614756817,1.2600822109902963e-12 -4398,1998/1/16,0.001738017,9.841212398,-4.678391386,2.12287736,5.856761489,0.207942598,6.300411054951482e-13 -4399,1998/1/17,0.012163079,9.488706612,-4.753473796,1.505224873,5.738833495,0.155203772,3.150205527475741e-13 -4400,1998/1/18,0.028960456,10.2939116,-4.064500669,1.581232661,5.974701468,0.183204466,1.5751027637378704e-13 -4401,1998/1/19,0.080433941,9.562380085,-3.673467499,1.515320012,5.688728255,0.348280869,7.875513818689352e-14 -4402,1998/1/20,0.282692196,9.108629215,-3.266072156,1.267512885,5.493419484,1.154186978,3.937756909344676e-14 -4403,1998/1/21,0.670042826,9.895879827,-2.156664181,1.596270819,5.668478227,3.636980361,1.968878454672338e-14 -4404,1998/1/22,0.144057297,9.427583885,-5.189328997,1.69380137,5.737029338,1.78175135,9.84439227336169e-15 -4405,1998/1/23,0.0,9.618821895,-5.555809573,1.232197969,5.818516151,0.643216327,4.922196136680845e-15 -4406,1998/1/24,0.012361394,10.81610302,-4.752155093,1.312458252,6.189451253,0.423497324,2.4610980683404225e-15 -4407,1998/1/25,1.017243029,11.61380594,-2.656032425,1.443437832,6.335847312,6.565200052,1.2305490341702112e-15 -4408,1998/1/26,1.029992969,11.3127057,-2.195402571,1.443812015,6.185008661,10.88198021,6.152745170851056e-16 -4409,1998/1/27,0.085792916,11.24894309,-3.17072957,1.000924808,6.240243856,3.82046121,3.076372585425528e-16 -4410,1998/1/28,1.84187912,11.04726212,-3.099716602,0.77384533,6.16086818,23.93502362,1.538186292712764e-16 -4411,1998/1/29,0.497559489,10.25466291,-1.229066655,1.071240007,5.686632496,13.62117779,7.69093146356382e-17 -4412,1998/1/30,0.21598635,11.27547828,-1.644684853,1.441732137,6.11191125,7.841303303,3.84546573178191e-17 -4413,1998/1/31,0.061526574,11.42183484,-3.100570441,1.24899325,6.290397387,4.189180251,1.922732865890955e-17 -4414,1998/2/1,0.077189458,12.08485985,-2.706613115,1.345355086,6.499251444,3.130286577,9.613664329454775e-18 -4415,1998/2/2,0.131502149,13.19424104,-1.296371386,1.313257925,6.791094563,3.054551342,4.806832164727388e-18 -4416,1998/2/3,0.117404501,13.25316791,-1.23315784,1.452207974,6.805407499,2.535048706,2.403416082363694e-18 -4417,1998/2/4,0.241974247,12.95714159,-1.275639122,1.21505982,6.695469819,3.40445026,1.201708041181847e-18 -4418,1998/2/5,1.874811553,11.17292464,-2.392704543,1.340277165,6.133521387,24.04138982,6.008540205909235e-19 -4419,1998/2/6,1.785077769,9.231265935,-5.070210403,1.198284075,5.640278851,36.57610559,3.0042701029546173e-19 -4420,1998/2/7,0.541818286,8.401543967,-5.015132308,0.993171998,5.354710693,20.55922782,1.5021350514773086e-19 -4421,1998/2/8,0.715404631,7.976474647,-4.705713653,1.103502278,5.18877429,21.47591038,7.510675257386543e-20 -4422,1998/2/9,0.177110214,9.091362989,-5.220082359,1.187441184,5.595106195,10.98757922,3.7553376286932716e-20 -4423,1998/2/10,0.004710353,10.43454634,-4.870533324,1.252979212,6.03195406,5.069826101,1.8776688143466358e-20 -4424,1998/2/11,0.009203121,12.65745147,-5.045305348,1.016069155,6.807418283,3.178437785,9.388344071733179e-21 -4425,1998/2/12,0.079547358,12.62623619,-4.293842624,1.53068818,6.763513522,3.112328674,4.6941720358665895e-21 -4426,1998/2/13,0.17474807,12.61372172,-3.706682819,1.587113071,6.726779775,3.81325576,2.3470860179332948e-21 -4427,1998/2/14,0.138293478,13.78038712,-3.519778885,1.289751446,7.133478857,3.148286456,1.1735430089666474e-21 -4428,1998/2/15,0.520424314,14.0179159,-2.446953572,1.771148422,7.155012523,7.289998523,5.867715044833237e-22 -4429,1998/2/16,0.015555992,13.29674549,-2.3617875,1.726473595,6.880630222,2.345013085,2.9338575224166184e-22 -4430,1998/2/17,0.001629511,13.12589624,-2.162188662,1.632274456,6.800034417,1.157268091,1.4669287612083092e-22 -4431,1998/2/18,0.258542349,13.25177391,-0.318188975,1.627881053,6.674661602,3.051945949,7.334643806041546e-23 -4432,1998/2/19,1.133006487,12.91454108,-0.382395163,1.38834441,6.549619103,12.81556918,3.667321903020773e-23 -4433,1998/2/20,1.019902413,13.04012298,-0.579781847,1.028782107,6.615815555,16.45045702,1.8336609515103865e-23 -4434,1998/2/21,2.269570893,12.23070725,-1.050645878,1.065187299,6.356133276,43.29840577,9.168304757551933e-24 -4435,1998/2/22,1.070173887,11.84927256,-0.592534265,1.544584026,6.159188541,33.72933318,4.584152378775966e-24 -4436,1998/2/23,0.011273098,12.31153226,-1.23951877,1.644678021,6.399537842,11.09831518,2.292076189387983e-24 -4437,1998/2/24,0.017408875,13.91496256,-0.787848551,1.339654586,6.956160428,6.159882183,1.1460380946939916e-24 -4438,1998/2/25,0.303228091,15.14601441,1.783443237,1.685616383,7.145573603,8.724521229,5.730190473469958e-25 -4439,1998/2/26,0.314067676,15.66550305,3.534934703,1.667631204,7.099072558,8.440712072,2.865095236734979e-25 -4440,1998/2/27,0.030031065,15.57701513,1.688656179,1.58575998,7.324222711,3.683304718,1.4325476183674895e-25 -4441,1998/2/28,0.132651389,16.06905831,1.627928525,1.372080274,7.525726119,3.617993056,7.162738091837447e-26 -4442,1998/3/1,0.211324207,16.20361626,2.937655315,1.550253402,7.404740613,4.052946784,3.5813690459187237e-26 -4443,1998/3/2,1.067182493,15.36684787,1.393171332,1.640303317,7.265388926,14.58186035,1.7906845229593618e-26 -4444,1998/3/3,0.128337483,14.57335446,-1.338230891,1.601710637,7.227175544,5.626949104,8.953422614796809e-27 -4445,1998/3/4,0.146023662,15.75351879,-0.912610176,1.420458724,7.635782151,3.998754367,4.4767113073984046e-27 -4446,1998/3/5,0.341833145,15.74134756,1.038264749,1.80948561,7.443741798,5.461110727,2.2383556536992023e-27 -4447,1998/3/6,0.315976412,16.09776077,2.340038175,1.819609919,7.424466688,5.256711514,1.1191778268496012e-27 -4448,1998/3/7,0.678564605,14.66650049,2.735040586,1.877445195,6.777931561,9.205707755,5.595889134248006e-28 -4449,1998/3/8,1.324650447,12.82024042,-0.616850077,1.712912271,6.483938196,19.95347108,2.797944567124003e-28 -4450,1998/3/9,0.002233323,12.42602437,-1.666702644,1.507870049,6.436147336,5.589796668,1.3989722835620014e-28 -4451,1998/3/10,0.058242178,13.87325937,-1.647384585,1.489470726,6.964200534,3.431244522,6.994861417810007e-29 -4452,1998/3/11,0.053512274,13.71586316,-2.114042715,1.693774045,6.937640888,2.453249363,3.4974307089050036e-29 -4453,1998/3/12,0.02929411,14.28411347,-1.718193467,1.551329877,7.113836648,1.601774121,1.7487153544525018e-29 -4454,1998/3/13,0.061784497,15.33146572,0.278898188,1.881876414,7.331506017,1.430058989,8.743576772262509e-30 -4455,1998/3/14,0.350501706,16.2273777,1.833775041,1.891833869,7.508110628,3.606534837,4.3717883861312545e-30 -4456,1998/3/15,0.017848278,16.54460357,0.992912001,1.592688909,7.723790338,1.262673715,2.1858941930656272e-30 -4457,1998/3/16,0.013150162,17.38506063,-0.222857227,1.526677069,8.155874873,0.703831152,1.0929470965328136e-30 -4458,1998/3/17,0.057185265,17.71873585,0.137559489,1.494468322,8.252175488,0.744982664,5.464735482664068e-31 -4459,1998/3/18,0.183483037,18.61192979,3.025276733,1.840799398,8.314791528,1.357234941,2.732367741332034e-31 -4460,1998/3/19,0.801649618,17.77931974,3.163098725,2.231706653,7.949471272,5.611734062,1.366183870666017e-31 -4461,1998/3/20,0.611251554,16.89922242,2.894378269,2.081322146,7.618928229,6.279132792,6.830919353330085e-32 -4462,1998/3/21,0.331076069,16.52580279,2.617672292,1.732785326,7.499111647,4.611480276,3.4154596766650426e-32 -4463,1998/3/22,3.149771884,16.28576432,3.519900504,1.53401107,7.267239292,43.63258891,1.7077298383325213e-32 -4464,1998/3/23,1.989039061,17.35534195,4.188260928,1.871491745,7.607621952,51.00759055,8.538649191662606e-33 -4465,1998/3/24,0.456925345,16.63847869,4.722910594,1.61652173,7.209749834,24.38449834,4.269324595831303e-33 -4466,1998/3/25,1.000944605,15.26244808,3.135187346,1.280348887,6.89101909,30.85847428,2.1346622979156516e-33 -4467,1998/3/26,0.26437562,14.26016188,0.932379938,1.272627053,6.791267473,16.18455718,1.0673311489578258e-33 -4468,1998/3/27,0.078029308,14.3547101,-0.702544081,0.907597444,6.995428758,8.626601436,5.336655744789129e-34 -4469,1998/3/28,0.723050521,13.74917438,-0.277259254,0.919684195,6.723053376,17.59307974,2.6683278723945645e-34 -4470,1998/3/29,1.331244409,14.52306239,2.33496514,0.903278377,6.695505405,31.7732811,1.3341639361972823e-34 -4471,1998/3/30,6.343780374,15.01459837,2.412634221,0.782724764,6.878042713,204.3867631,6.670819680986411e-35 -4472,1998/3/31,3.394932753,13.22372119,1.302687792,0.934329413,6.319948562,199.4340726,3.3354098404932056e-35 -4473,1998/4/1,0.365102476,14.02745504,0.965843816,0.457855964,6.673052487,75.50670039,1.6677049202466028e-35 -4474,1998/4/2,1.014593917,15.2526586,1.66859816,0.872758822,7.060350824,76.61713556,8.338524601233014e-36 -4475,1998/4/3,4.978683733,15.38359532,4.082775882,1.089863819,6.74778302,267.7582795,4.169262300616507e-36 -4476,1998/4/4,0.923605424,16.58218076,4.012862713,1.31173375,7.258001517,122.5619327,2.0846311503082535e-36 -4477,1998/4/5,0.926277981,17.02010878,4.492646306,1.336792631,7.359895003,92.46148596,1.0423155751541268e-36 -4478,1998/4/6,2.893762542,15.83331951,3.818563118,1.131257988,6.968761909,179.0908294,5.211577875770634e-37 -4479,1998/4/7,2.245163683,16.36638514,1.532258868,1.097792909,7.493234922,171.7904259,2.605788937885317e-37 -4480,1998/4/8,0.079053225,16.23935394,1.794628304,0.93211618,7.408585567,60.90183618,1.3028944689426585e-37 -4481,1998/4/9,2.235849357,18.1897309,3.82622698,1.324581309,7.931570403,134.4094577,6.514472344713292e-38 -4482,1998/4/10,1.615290629,17.83050505,5.804530383,1.358381691,7.457121639,118.8557746,3.257236172356646e-38 -4483,1998/4/11,0.032132545,18.26794698,5.337809349,1.360162437,7.724046736,42.97544837,1.628618086178323e-38 -4484,1998/4/12,0.937902374,18.77181738,5.801670003,1.353382476,7.857868739,59.11037965,8.143090430891615e-39 -4485,1998/4/13,1.08132811,19.22531538,6.490622531,1.220761639,7.929455379,62.66309573,4.0715452154458077e-39 -4486,1998/4/14,0.236249758,18.31030873,5.228388698,0.959015784,7.74698654,30.67571817,2.0357726077229038e-39 -4487,1998/4/15,0.616515494,18.00819563,4.149160897,0.762129857,7.78304731,33.22556113,1.0178863038614519e-39 -4488,1998/4/16,4.431561126,16.25632787,3.294365227,0.090661337,7.183132601,169.3111504,5.0894315193072596e-40 -4489,1998/4/17,4.556360578,13.67784084,3.034641743,0.131806519,6.170519997,256.3565528,2.5447157596536298e-40 -4490,1998/4/18,4.189557791,12.57577067,3.359876705,0.49673762,5.653414835,310.0191341,1.2723578798268149e-40 -4491,1998/4/19,0.952213158,14.44975446,3.210101007,0.669492344,6.448610884,149.781059,6.361789399134074e-41 -4492,1998/4/20,2.560638941,15.82536649,4.136001562,0.648017987,6.856695009,212.672321,3.180894699567037e-41 -4493,1998/4/21,1.898167923,15.17508004,6.120229306,1.197548081,6.176205106,185.4238451,1.5904473497835186e-41 -4494,1998/4/22,3.229247605,17.27719143,5.009705074,1.53790901,7.310083248,267.1867869,7.952236748917593e-42 -4495,1998/4/23,0.964584361,18.38340754,5.853957772,1.450370273,7.632450055,143.8666687,3.9761183744587965e-42 -4496,1998/4/24,0.043649769,18.77346953,6.159054312,0.992468949,7.743026421,61.14184431,1.9880591872293983e-42 -4497,1998/4/25,2.12e-05,19.29268475,6.751627045,1.095391139,7.858019326,35.0000019,9.940295936146991e-43 -4498,1998/4/26,0.03265116,20.58446565,7.435401812,1.136239915,8.299645835,23.67050357,4.970147968073496e-43 -4499,1998/4/27,0.11006317,21.45144789,8.968693748,1.326914675,8.387243877,18.59806377,2.485073984036748e-43 -4500,1998/4/28,1.324118171,21.31217808,9.412083808,1.315011846,8.222528274,52.31370676,1.242536992018374e-43 -4501,1998/4/29,2.954281378,21.31924421,9.801380474,1.490242629,8.133471206,118.517,6.21268496009187e-44 -4502,1998/4/30,3.951497371,20.84325834,8.325410906,1.404399121,8.226854442,197.0383946,3.106342480045935e-44 -4503,1998/5/1,2.624844247,21.06233593,8.305674434,1.376134695,8.326228903,177.7198123,1.5531712400229674e-44 -4504,1998/5/2,2.034076994,22.27256819,9.000043376,1.213438177,8.737430515,153.3778591,7.765856200114837e-45 -4505,1998/5/3,2.154323035,22.50318566,9.388086017,0.982005919,8.761384199,154.9644099,3.8829281000574185e-45 -4506,1998/5/4,7.074521458,22.65654148,9.770713143,1.46975951,8.749059193,453.9838472,1.9414640500287093e-45 -4507,1998/5/5,3.354715527,21.36020739,9.819741144,1.324153098,8.123913011,344.6693045,9.707320250143546e-46 -4508,1998/5/6,2.44796879,22.30636305,10.31299198,1.404403704,8.456164471,274.2858227,4.853660125071773e-46 -4509,1998/5/7,0.902356468,23.06686578,10.63648874,1.619981325,8.741414523,154.8073586,2.4268300625358866e-46 -4510,1998/5/8,0.844696886,22.64654922,11.61710323,1.966344048,8.296713484,114.7271349,1.2134150312679433e-46 -4511,1998/5/9,0.309660678,22.44447123,10.33727168,1.967644236,8.50423389,67.20928657,6.067075156339716e-47 -4512,1998/5/10,1.738559887,22.91743323,11.04696374,1.64412347,8.56233085,111.802796,3.033537578169858e-47 -4513,1998/5/11,1.562825588,22.99346492,11.49011748,2.053086967,8.487894654,107.4543646,1.516768789084929e-47 -4514,1998/5/12,9.768485853,21.93085831,9.616955529,1.666381587,8.410166249,599.787793,3.926056195512798e-06 -4515,1998/5/13,2.686158418,20.79935712,9.011904959,1.770893425,8.012045514,343.2408798,1.9630224238644795e-06 -4516,1998/5/14,1.349261361,23.81605608,10.24291597,1.812729885,9.15181097,207.053148,9.815112119322398e-07 -4517,1998/5/15,2.706890708,22.32807432,9.782969064,1.747081796,8.548664517,254.7545264,4.907556059661199e-07 -4518,1998/5/16,1.24314237,22.98242458,10.22765874,1.302359604,8.755978455,164.6961148,2.4537780298305994e-07 -4519,1998/5/17,13.36278185,23.77812175,11.33811752,1.105288227,8.88307871,1109.262245,0.004966803793095882 -4520,1998/5/18,4.546530117,22.24194252,11.88466324,1.323700094,7.988702193,727.1227415,0.0024806485979007053 -4521,1998/5/19,2.987249508,20.53785821,12.27484542,1.638590266,6.998173269,524.1168656,0.0012403242989503527 -4522,1998/5/20,3.129470752,21.08703887,13.21527417,1.761492357,6.976431235,490.8562615,0.0006201621494751763 -4523,1998/5/21,0.817540412,21.94066007,13.16117043,1.18517358,7.449055077,254.7339347,0.00031008107473758816 -4524,1998/5/22,1.110157213,22.62041129,13.38307026,1.383257837,7.735295619,207.479305,0.00015504053736879408 -4525,1998/5/23,3.047931075,21.80481056,12.30321932,1.061452056,7.634611276,322.54626,7.752026868439704e-05 -4526,1998/5/24,7.315748033,20.49945173,9.232478977,0.392663698,7.788880371,724.9556463,3.876013434219852e-05 -4527,1998/5/25,1.590869215,19.64204069,10.25581426,0.943957236,7.124622023,346.3184134,1.938006717109926e-05 -4528,1998/5/26,4.848436289,19.73786935,11.18301883,1.092497874,6.905580618,560.4568743,9.69003358554963e-06 -4529,1998/5/27,5.357240018,20.7956959,12.0461565,1.04291112,7.182910209,691.2088794,4.845016792774815e-06 -4530,1998/5/28,1.722297214,20.23010478,11.70295087,1.059307363,6.994523676,381.2537908,2.4225083963874075e-06 -4531,1998/5/29,2.913017606,21.94516629,12.49450193,1.202508495,7.634349792,417.2537351,1.2112541981937038e-06 -4532,1998/5/30,5.617607975,21.4372006,12.5999454,1.269929712,7.337652153,678.5233863,6.056270990968519e-07 -4533,1998/5/31,5.565455633,22.28165565,12.349953,1.709900697,7.842710022,776.451924,3.0281354954842594e-07 -4534,1998/6/1,1.79533757,23.26290506,11.84594111,1.586581276,8.463277751,423.466731,1.5140677477421297e-07 -4535,1998/6/2,3.55881629,23.97089772,12.92850688,1.268194748,8.531531752,501.860436,7.570338738710649e-08 -4536,1998/6/3,1.746886003,22.56481173,12.90180458,1.03533347,7.820922188,331.3196675,3.785169369355324e-08 -4537,1998/6/4,2.957376317,23.16503168,13.42313121,0.928747933,7.974489327,379.7883015,1.892584684677662e-08 -4538,1998/6/5,2.293733262,22.75778384,13.58817864,0.914401047,7.70866908,320.0655332,9.46292342338831e-09 -4539,1998/6/6,4.54818256,21.90924702,13.01132603,1.002598762,7.441219908,487.2619984,4.731461711694155e-09 -4540,1998/6/7,2.328038206,21.00551943,12.86226977,1.13504548,7.01062214,346.116333,2.3657308558470777e-09 -4541,1998/6/8,0.948015086,21.6144571,12.91351514,1.200127931,7.313792282,200.3277519,1.1828654279235388e-09 -4542,1998/6/9,1.365125919,21.35393568,12.86754409,1.10880762,7.189797086,185.0206542,5.914327139617694e-10 -4543,1998/6/10,1.004372707,22.20332771,13.81180879,1.454665258,7.331500797,141.6712103,2.957163569808847e-10 -4544,1998/6/11,3.149647042,22.97033604,14.36873208,1.708053846,7.558286076,260.6834549,1.4785817849044235e-10 -4545,1998/6/12,3.000288972,24.80015305,14.36145,1.827474481,8.532667331,280.8344398,7.392908924522118e-11 -4546,1998/6/13,3.96169714,24.7452157,14.76065674,1.893542464,8.381751159,360.1042952,3.696454462261059e-11 -4547,1998/6/14,2.555454267,25.26721416,15.16986526,1.945624861,8.531845603,288.621389,1.8482272311305294e-11 -4548,1998/6/15,3.878281936,25.61116494,15.75304376,1.685822702,8.531417654,370.460806,9.241136155652647e-12 -4549,1998/6/16,5.787745392,24.19598395,15.85498357,1.307217803,7.712307203,560.8729615,4.6205680778263236e-12 -4550,1998/6/17,8.975300138,24.27196884,15.46697229,1.103160617,7.889951579,1004.694152,0.0012995515201982733 -4551,1998/6/18,10.79736093,22.45942632,15.4071376,1.025931551,6.88459677,1553.78517,0.00957052922895257 -4552,1998/6/19,3.506441558,22.20396456,14.49486719,1.158686509,7.082626635,896.7348377,0.0047750935792750405 -4553,1998/6/20,4.121497705,21.69713507,14.64343294,0.984777044,6.74039517,844.7061841,0.0023875467896375202 -4554,1998/6/21,9.625767838,22.38270973,15.46656512,1.306330518,6.813467744,1622.346128,0.016866675825673343 -4555,1998/6/22,6.478688979,21.6646087,15.23866635,1.111582678,6.482231177,1458.272533,0.008389665498372235 -4556,1998/6/23,6.527342644,22.49772927,14.99047388,1.193788689,7.062204477,1501.530697,0.0041948327491861176 -4557,1998/6/24,2.617411963,21.76895972,15.09570827,0.924101817,6.600935809,897.4243821,0.0020974163745930588 -4558,1998/6/25,14.44564286,20.76761078,13.98455267,0.642847392,6.460451425,2793.34715,0.061227594086400515 -4559,1998/6/26,14.38189803,21.36008999,14.29132639,0.418176691,6.678888478,3820.287524,0.14902569147321262 -4560,1998/6/27,17.09731533,20.51058439,15.0312948,0.705503565,5.870794655,5493.183771,0.3303403042504573 -4561,1998/6/28,11.93199508,21.44319018,15.09205961,0.548986884,6.40851072,5096.170674,0.34775759228217046 -4562,1998/6/29,7.015581217,21.97765005,15.12680503,0.726526086,6.708044486,3642.132022,0.18267915865308262 -4563,1998/6/30,8.682621287,21.59178465,14.70654588,0.5779946,6.650037558,3693.771853,0.17044230449466752 -4564,1998/7/1,3.340367712,22.40102426,14.52102288,0.649051584,7.175730338,2150.801917,0.08367292161792256 -4565,1998/7/2,15.7581426,22.94605939,15.16545325,1.367649677,7.24713312,4897.198184,0.3725957418106016 -4566,1998/7/3,19.64088068,20.97478116,15.02801447,1.261145916,6.154461984,7408.011398,0.8100219026107833 -4567,1998/7/4,18.95420792,20.12420391,14.65656927,1.403471302,5.800602172,9095.426777,1.1660943569864752 -4568,1998/7/5,10.56642737,19.38310737,14.73923313,1.268369559,5.295845425,6659.959711,0.93242011773781 -4569,1998/7/6,6.747289483,19.83347232,14.85518397,1.329886631,5.527851528,4667.898364,0.5447423470147191 -4570,1998/7/7,6.616730466,21.2425596,15.00675408,1.283425054,6.324295695,3932.760194,0.29121538026554566 -4571,1998/7/8,11.69709609,21.79981375,14.84872048,1.257027204,6.714523308,5121.52626,0.5257908300124673 -4572,1998/7/9,21.74069744,19.63092259,13.94963486,1.318803204,5.8128287,9354.818544,1.5340669669913987 -4573,1998/7/10,23.8103364,18.14258223,13.72196991,1.146959575,5.000593791,13848.91574,2.4866952901989627 -4574,1998/7/11,13.54060907,18.67590722,12.97798412,1.334079491,5.659906119,9837.522068,2.0237766194484452 -4575,1998/7/12,0.535289553,21.20853697,13.57976703,1.261269049,6.854791026,3622.712393,0.9645420299581966 -4576,1998/7/13,0.384749676,22.77120949,14.77674444,1.621581461,7.29290276,2043.537537,0.4822710149790983 -4577,1998/7/14,6.438621455,22.34925537,15.16881655,1.61084847,6.909473623,2701.869344,0.24113550748954915 -4578,1998/7/15,10.99626737,21.64815234,15.16341457,1.003943293,6.503456103,3673.670065,0.5882535335255917 -4579,1998/7/16,22.02624274,19.83729668,13.79904648,0.829053555,6.001076405,7524.404228,4.211983531594243 -4580,1998/7/17,2.763344273,22.10185109,14.27905873,1.002867535,7.102172747,3004.427877,0.7855757202677446 -4581,1998/7/18,3.854454525,23.1781593,15.07558226,1.571847116,7.417109315,2241.722318,0.3927878601338723 -4582,1998/7/19,3.847680464,23.29907245,15.17131944,1.746300753,7.451473185,1829.449274,0.19639393006693615 -4583,1998/7/20,2.417947469,23.68284747,15.71555594,1.59490878,7.471113461,1254.074433,0.09819696503346807 -4584,1998/7/21,4.401415295,24.15288089,15.9698158,1.444332188,7.645955652,1332.391997,0.049098482516734036 -4585,1998/7/22,5.757689266,23.03998098,15.69744175,1.061109046,7.111350641,1469.605874,0.024549241258367018 -4586,1998/7/23,7.028184286,21.18734743,15.48207867,1.063622715,6.095254822,1688.483637,0.10307435771672092 -4587,1998/7/24,9.344773593,21.03663023,15.28829401,1.03713358,6.090198248,2245.589935,0.36635238050857305 -4588,1998/7/25,14.08404563,20.60366549,14.92801083,1.070413068,5.986012874,3667.609134,0.9832761592389604 -4589,1998/7/26,18.55875636,20.39528394,14.20533971,0.780563271,6.170787355,5998.218999,1.7795791851915685 -4590,1998/7/27,4.147192731,22.2959466,14.43521694,0.947832426,7.166492618,2857.961218,0.8184979434799381 -4591,1998/7/28,5.399374991,23.31887372,14.78357564,0.944061072,7.610942948,2430.716273,0.40924897173996905 -4592,1998/7/29,4.784835027,23.22830664,15.17217967,0.8547327,7.425850678,2003.248027,0.20462448586998452 -4593,1998/7/30,6.135274998,22.63938044,14.98937501,0.712734582,7.162524811,2041.463459,0.10231224293499226 -4594,1998/7/31,5.055886988,22.37404102,15.3256041,0.843943532,6.883524068,1730.478776,0.05115612146749613 -4595,1998/8/1,11.82822227,21.17246624,14.0527664,1.040981948,6.686427382,3033.168016,0.5728170043432964 -4596,1998/8/2,6.463720924,20.50639918,14.48280724,1.062292614,6.131374376,2298.762598,0.2940232672714761 -4597,1998/8/3,4.352187537,20.54439763,13.80561232,0.973518138,6.428217532,1695.582892,0.14498132664781016 -4598,1998/8/4,13.05107387,20.02707527,14.5675976,0.775588944,5.807852563,3457.295288,0.8599883150080017 -4599,1998/8/5,2.691622548,21.60254673,14.19138897,0.581060498,6.884427151,1639.707171,0.3871849897923476 -4600,1998/8/6,3.051775856,23.33661381,14.66176363,0.876534379,7.68057783,1269.459557,0.1935924948961738 -4601,1998/8/7,12.1135226,22.42617466,15.51496043,0.824783901,6.852309604,2900.183326,0.6526658013813934 -4602,1998/8/8,10.05557779,21.74225667,14.2253219,0.619161129,6.956720548,3039.665773,0.63741599293983 -4603,1998/8/9,4.160572007,21.73708558,14.42665577,0.555407862,6.881550093,1839.052432,0.30000676414454147 -4604,1998/8/10,4.994043664,21.47302069,14.59236979,0.858210792,6.669286574,1690.614178,0.15000338207227074 -4605,1998/8/11,4.120541624,21.35701052,14.90229879,1.234638799,6.479260855,1404.179568,0.07500169103613537 -4606,1998/8/12,10.96241642,21.66641849,15.14329646,1.271774491,6.565697409,2648.263587,0.5016311885404228 -4607,1998/8/13,6.675057048,20.79046998,14.51889603,1.104564881,6.306723682,2161.963926,0.2664960534045762 -4608,1998/8/14,3.946199622,21.08355452,14.45447495,0.717159184,6.507278096,1511.224501,0.1310567157081251 -4609,1998/8/15,5.579182249,21.48517776,13.46552011,0.805922105,7.10088435,1627.23791,0.06552835785406255 -4610,1998/8/16,10.91463193,22.26766733,13.4708117,0.75019773,7.522918137,2699.225007,0.38987744521828793 -4611,1998/8/17,7.365171629,22.53036549,13.89678872,0.841427126,7.527645388,2301.698508,0.17613850939180045 -4612,1998/8/18,6.911684314,22.71378671,14.29716826,0.982386053,7.495669275,2133.526,0.08806925469590023 -4613,1998/8/19,2.437812901,21.73187191,13.21041179,0.489816021,7.330287782,1189.536827,0.04403462734795011 -4614,1998/8/20,5.879603923,22.40258633,13.47984268,0.464234507,7.603983117,1506.738257,0.022017313673975056 -4615,1998/8/21,5.8457021,21.50745831,14.04801765,0.623927661,6.923652442,1507.165556,0.011008656836987528 -4616,1998/8/22,0.89786971,22.56725004,14.11469796,0.870409676,7.489998374,671.0655758,0.005504328418493764 -4617,1998/8/23,10.31431362,22.75756866,14.42378206,0.883682943,7.491802686,1901.065504,0.2697209279128198 -4618,1998/8/24,11.23180098,21.46376104,14.47060519,1.062574932,6.748175048,2537.596184,0.5566953424579236 -4619,1998/8/25,5.737137359,21.50367954,14.49476303,0.942189569,6.764829068,1821.821194,0.25729819116094416 -4620,1998/8/26,6.864154147,21.2865508,14.93825757,0.957586618,6.461396095,1903.890118,0.16873499714337967 -4621,1998/8/27,15.11011927,21.47760581,14.97547071,1.078652958,6.56299761,3818.918833,0.9358460680780135 -4622,1998/8/28,12.55199762,20.48707334,14.57573857,0.894879064,6.139831019,4165.248036,1.110005351647109 -4623,1998/8/29,8.100235748,20.09284384,13.8128488,0.447331522,6.2276813,3352.043809,0.7279787164561099 -4624,1998/8/30,7.139190327,19.09047975,12.94150037,0.15200474,5.999101003,2944.573833,0.48152210433785475 -4625,1998/8/31,1.182933347,18.32139551,12.90953323,0.258931593,5.56406419,1338.091056,0.23343398107484803 -4626,1998/9/1,4.663558365,19.2157918,13.20716028,0.696451934,5.970293781,1631.481994,0.11671699053742401 -4627,1998/9/2,8.058741493,19.09659934,13.29473224,0.819621,5.866829272,2319.963473,0.2963599602422312 -4628,1998/9/3,7.033118416,18.74040034,12.98460121,0.914408978,5.789100912,2273.655239,0.272502937219961 -4629,1998/9/4,10.32286991,19.86359289,11.0719912,0.936817457,7.074375563,3107.252339,0.49026451330834864 -4630,1998/9/5,14.09946354,19.17433558,9.751417828,0.287794092,7.106345989,4467.468184,1.0213405208169903 -4631,1998/9/6,0.416093032,20.32295095,10.1394341,0.121425453,7.567393168,1447.544511,0.4653296508014819 -4632,1998/9/7,5.137811966,20.0099816,10.50809089,0.225779353,7.319696127,1737.430011,0.23266482540074096 -4633,1998/9/8,9.139727349,20.12856004,10.90506362,0.336853978,7.271697645,2496.658342,0.3240847133215038 -4634,1998/9/9,6.460673903,21.50232166,11.47005002,0.685399703,7.808580958,2108.371501,0.1504898052422832 -4635,1998/9/10,0.290843148,22.76646586,11.59628751,0.543006864,8.411062942,802.613919,0.0752449026211416 -4636,1998/9/11,0.20555187,22.64453904,11.94560502,0.721159596,8.262905905,458.1760888,0.0376224513105708 -4637,1998/9/12,0.408277027,22.36034284,11.46920858,0.496477495,8.2509053,326.0840082,0.0188112256552854 -4638,1998/9/13,0.346157692,22.58567078,11.39172116,0.567431903,8.387190273,224.8012681,0.0094056128276427 -4639,1998/9/14,5.125579059,23.15091799,12.09664241,0.656252259,8.491499012,609.8001568,0.00470280641382135 -4640,1998/9/15,9.455642893,21.08806831,12.92028526,0.76551335,7.175414747,1206.296129,0.20146811297378894 -4641,1998/9/16,1.538123925,21.35986555,13.05344264,0.592856481,7.282188558,518.017947,0.09204030709652376 -4642,1998/9/17,0.839703414,22.73600745,13.10924096,0.616382107,8.004423787,296.993513,0.04602015354826188 -4643,1998/9/18,3.642428498,22.85132792,12.90843907,0.494050264,8.129611765,482.9685448,0.02301007677413094 -4644,1998/9/19,5.849454851,21.81888339,12.20255101,0.078825408,7.804636669,732.5899989,0.01150503838706547 -4645,1998/9/20,4.038006182,21.58012256,12.14565086,0.78009353,7.702020147,631.5152592,0.005752519193532735 -4646,1998/9/21,2.541339304,22.23152733,13.21212996,1.383537642,7.721692846,461.6246647,0.0028762595967663676 -4647,1998/9/22,1.005574678,22.27926024,13.31794332,1.206089525,7.717839176,265.6023337,0.0014381297983831838 -4648,1998/9/23,2.347023074,22.0683234,13.46106829,1.159626433,7.560974142,313.4273034,0.0007190648991915919 -4649,1998/9/24,2.813849602,23.10922919,13.72559272,0.724568255,8.044141721,342.8774367,0.00035953244959579595 -4650,1998/9/25,2.457412397,21.91572001,13.21128512,0.400640772,7.569262802,309.7980601,0.00017976622479789797 -4651,1998/9/26,3.686731251,20.10839759,11.48173401,0.354949386,7.162704856,396.2364678,8.988311239894899e-05 -4652,1998/9/27,0.087953344,18.27795777,9.182491656,0.028853807,6.906730713,137.232492,4.4941556199474494e-05 -4653,1998/9/28,0.0,21.10031714,7.715683675,0.362523627,8.56354327,71.413313,2.2470778099737247e-05 -4654,1998/9/29,0.0,22.10656412,7.967585595,0.57898209,8.978712778,44.96555965,1.1235389049868623e-05 -4655,1998/9/30,0.0,21.2864145,8.541678558,0.461481719,8.49757312,29.1673926,5.617694524934312e-06 -4656,1998/10/1,1.918502864,21.5928461,9.01564758,0.596139043,8.547241167,98.10069145,2.808847262467156e-06 -4657,1998/10/2,1.647060938,20.06951293,8.615709727,0.369244112,7.92431511,98.85790885,1.404423631233578e-06 -4658,1998/10/3,0.699662552,19.93970995,8.682224241,0.592077533,7.852998854,59.93428254,7.02211815616789e-07 -4659,1998/10/4,0.130603833,20.07531624,7.802708761,0.769763618,8.109222547,28.60502302,3.511059078083945e-07 -4660,1998/10/5,0.105499069,20.35561207,8.199724174,0.316335875,8.161492753,18.25603584,1.7555295390419724e-07 -4661,1998/10/6,0.014404942,19.66719581,10.30837724,0.590122449,7.324065542,10.5899231,8.777647695209862e-08 -4662,1998/10/7,0.035670333,19.83377088,10.44251659,0.603946123,7.374739074,7.362452828,4.388823847604931e-08 -4663,1998/10/8,0.624546543,20.56035895,10.5196416,0.480131108,7.723066028,17.53637878,2.1944119238024655e-08 -4664,1998/10/9,0.841105587,19.86656555,9.156996758,0.698338725,7.734719011,23.34802798,1.0972059619012328e-08 -4665,1998/10/10,0.283335483,20.20604156,9.468859821,0.879273826,7.827348285,12.9727969,5.486029809506164e-09 -4666,1998/10/11,0.4815571,21.02024256,10.13682846,1.203345181,8.064147063,14.02041636,2.743014904753082e-09 -4667,1998/10/12,0.348672146,20.10516525,10.15927996,0.695503298,7.610378511,11.10907184,1.371507452376541e-09 -4668,1998/10/13,1.732658746,18.20661054,9.866713785,0.27611524,6.7410227,36.2744777,6.857537261882705e-10 -4669,1998/10/14,3.645480076,17.87914956,8.690232091,0.560931426,6.912744883,103.4989902,3.4287686309413524e-10 -4670,1998/10/15,0.265996044,18.00791559,8.601836924,1.014384535,7.002575993,35.05896941,1.7143843154706762e-10 -4671,1998/10/16,0.24114591,19.5700257,9.639769108,1.059392468,7.500124536,21.0803117,8.571921577353381e-11 -4672,1998/10/17,8.642861154,19.97977923,10.23396125,1.002061813,7.549619592,346.9066453,0.020419315161993072 -4673,1998/10/18,22.96565784,17.48385742,10.8357894,1.019185953,6.059437791,2244.01304,0.34358806730137365 -4674,1998/10/19,13.39678804,14.9568473,9.395818729,0.338733182,5.200992791,2647.497756,0.463357000726745 -4675,1998/10/20,4.237769824,13.33849045,8.463085842,0.343021475,4.665285999,1498.928902,0.22637463948902442 -4676,1998/10/21,0.793177742,13.92567477,5.494383057,0.505828353,5.883897008,687.6849848,0.11318731974451221 -4677,1998/10/22,0.357954267,14.5230302,5.616733439,0.436828772,6.129955681,398.9461169,0.056593659872256105 -4678,1998/10/23,0.0,15.56036223,5.696413979,0.603240501,6.58410392,227.7833566,0.028296829936128053 -4679,1998/10/24,0.032667669,16.6715836,4.961862145,0.682962084,7.225307363,148.4318392,0.014148414968064026 -4680,1998/10/25,0.05464492,16.79479489,5.492792155,0.58181706,7.183548041,100.0267731,0.007074207484032013 -4681,1998/10/26,0.241366612,16.80662768,6.614716673,0.678606741,6.959114487,82.4227293,0.0035371037420160066 -4682,1998/10/27,0.072481689,16.5024927,6.265068173,0.897369234,6.901184628,50.46278244,0.0017685518710080033 -4683,1998/10/28,0.004666355,16.95238563,4.711354762,1.178125253,7.407701941,30.0065724,0.0008842759355040016 -4684,1998/10/29,0.012108594,16.30125314,4.443959863,0.926999959,7.177627937,19.71708318,0.0004421379677520008 -4685,1998/10/30,1.741989911,16.48781491,5.343666711,0.891452361,7.096417629,98.79063895,0.0002210689838760004 -4686,1998/10/31,2.332932709,15.30907053,6.656851992,0.544380505,6.270867674,146.3768875,0.0001105344919380002 -4687,1998/11/1,3.680571166,14.56435559,2.222760037,0.697893902,6.819293271,247.0130878,5.52672459690001e-05 -4688,1998/11/2,4.270764039,11.12080947,0.491388551,0.392381587,5.706463598,339.4123242,2.763362298450005e-05 -4689,1998/11/3,1.11032579,8.891107245,-0.561581653,0.346904172,5.009783506,172.7144228,1.3816811492250026e-05 -4690,1998/11/4,0.007901602,10.61229792,-0.676880538,0.307293308,5.677927567,68.39819588,6.908405746125013e-06 -4691,1998/11/5,0.000794661,12.23434627,0.021895012,0.289036693,6.209716121,39.51269389,3.4542028730625064e-06 -4692,1998/11/6,0.3760135,12.46290328,0.229006591,0.373161043,6.274926243,43.87519547,1.7271014365312532e-06 -4693,1998/11/7,0.009889911,12.13445617,-0.303870122,0.491306667,6.217403454,21.35226355,8.635507182656266e-07 -4694,1998/11/8,0.011164034,12.29369931,-0.264171093,0.427163673,6.276523936,13.21143963,4.317753591328133e-07 -4695,1998/11/9,0.001025199,13.01841808,0.601574618,0.448741676,6.452750785,8.358418888,2.1588767956640665e-07 -4696,1998/11/10,0.070269381,12.508252,0.669760962,0.59137153,6.247126462,7.57727967,1.0794383978320333e-07 -4697,1998/11/11,0.456284344,10.45976157,-2.126758683,0.621738333,5.804427524,17.04842705,5.397191989160166e-08 -4698,1998/11/12,0.056853277,10.17383069,-2.431592907,0.439576975,5.733379234,7.147618299,2.698595994580083e-08 -4699,1998/11/13,0.0,11.86902925,-1.506660284,0.448588654,6.265897743,3.364092467,1.3492979972900416e-08 -4700,1998/11/14,0.0,12.35382766,-0.806203068,0.613434574,6.378380797,2.060411035,6.746489986450208e-09 -4701,1998/11/15,0.0,13.63675489,-0.042913059,0.712644121,6.788396023,1.331753818,3.373244993225104e-09 -4702,1998/11/16,0.0,14.88450867,1.003835601,0.729210286,7.160219964,0.866316291,1.686622496612552e-09 -4703,1998/11/17,0.064301033,15.21244432,2.343689512,0.723316132,7.120726933,1.506952567,8.43311248306276e-10 -4704,1998/11/18,0.287702267,15.55690653,3.609128366,0.706011346,7.072044511,4.468417312,4.21655624153138e-10 -4705,1998/11/19,0.083516903,16.43825268,5.186648491,0.655568894,7.174087611,2.307277762,2.10827812076569e-10 -4706,1998/11/20,3.448672744,15.98166199,4.927255644,0.616887493,7.024900772,60.00964806,1.054139060382845e-10 -4707,1998/11/21,6.102656715,14.31123663,4.869079971,0.268778425,6.29641674,207.5076941,5.270695301914225e-11 -4708,1998/11/22,2.100620027,10.91883137,2.986111848,0.315398585,5.217560094,140.9835498,2.6353476509571124e-11 -4709,1998/11/23,0.846107763,10.00002713,2.860109555,0.417261284,4.847415213,82.02920338,1.3176738254785562e-11 -4710,1998/11/24,0.0,12.18036878,2.445680867,0.641206235,5.868630156,33.15930569,6.588369127392781e-12 -4711,1998/11/25,0.002135604,13.58557387,2.575855638,0.712066175,6.434359146,19.40062508,3.2941845636963906e-12 -4712,1998/11/26,0.629894513,13.38664172,1.626351952,0.593793319,6.504930559,33.44454785,1.6470922818481953e-12 -4713,1998/11/27,0.26864623,13.7489331,1.645317327,0.669415593,6.651314864,21.45862564,8.235461409240976e-13 -4714,1998/11/28,0.4073162,12.72127409,2.424184451,1.014399224,6.107122323,21.09294093,4.117730704620488e-13 -4715,1998/11/29,0.022316205,12.91692241,2.000135324,1.264724489,6.262062923,9.037403605,2.058865352310244e-13 -4716,1998/11/30,0.005884076,13.83030239,1.48086894,1.297838417,6.714514111,5.149921076,1.029432676155122e-13 -4717,1998/12/1,0.000269372,14.05488722,0.504897216,1.314843905,6.931789555,3.222750644,5.14716338077561e-14 -4718,1998/12/2,0.0,13.20502133,-1.111365088,0.891645667,6.77697591,2.083081409,2.573581690387805e-14 -4719,1998/12/3,1.517103933,11.74454678,-1.553954577,0.684955077,6.272934395,29.63975772,1.2867908451939026e-14 -4720,1998/12/4,0.820125746,13.08253525,0.745887518,0.749479624,6.523776243,24.4924949,6.433954225969513e-15 -4721,1998/12/5,3.152917699,12.41208744,1.438539148,0.936523897,6.157376052,86.92963446,3.2169771129847564e-15 -4722,1998/12/6,0.842591339,11.28198867,-0.89104265,0.817338949,6.033157416,47.54211942,1.6084885564923782e-15 -4723,1998/12/7,0.11512921,10.82233941,-1.159529519,0.675747568,5.892441627,19.95189767,8.042442782461891e-16 -4724,1998/12/8,0.532464358,9.602724786,-0.248371361,0.721868306,5.307866467,23.85928043,4.0212213912309455e-16 -4725,1998/12/9,0.394875758,8.183333268,-0.929343078,0.712465719,4.867775274,19.47423211,2.0106106956154727e-16 -4726,1998/12/10,0.132828786,8.457932354,-1.435801785,0.644655536,5.045889259,11.05952077,1.0053053478077364e-16 -4727,1998/12/11,0.384858941,7.472287047,-4.272990666,0.567482929,5.005873767,14.01949718,5.026526739038682e-17 -4728,1998/12/12,0.102672283,6.712144937,-4.658952296,0.431614589,4.781070108,7.556601937,2.513263369519341e-17 -4729,1998/12/13,0.004639411,7.674408845,-5.010517018,0.387914688,5.132733043,3.652776765,1.2566316847596705e-17 -4730,1998/12/14,0.017635645,7.982272958,-4.378392222,0.256322679,5.192239308,2.510379493,6.283158423798352e-18 -4731,1998/12/15,0.0,7.128983962,-5.3186044,0.423004423,4.973066457,1.487870343,3.141579211899176e-18 -4732,1998/12/16,0.04962383,7.461832143,-4.673532355,0.525459076,5.039590983,1.699985139,1.570789605949588e-18 -4733,1998/12/17,0.094151755,8.93680122,-3.757758966,0.661414144,5.47635919,2.117596125,7.85394802974794e-19 -4734,1998/12/18,0.045329463,8.492198004,-3.901266516,0.494554894,5.333866884,1.384158396,3.92697401487397e-19 -4735,1998/12/19,0.0,9.40933633,-3.489763509,0.505700083,5.622345672,0.590445103,1.963487007436985e-19 -4736,1998/12/20,0.058574965,8.481677921,-4.105382855,0.426333668,5.348259119,0.979138466,9.817435037184926e-20 -4737,1998/12/21,0.04021668,10.50587541,-2.345010902,0.560732855,5.916412655,0.77541161,4.908717518592463e-20 -4738,1998/12/22,0.015245419,11.38944553,-3.024428787,0.644817321,6.295894221,0.445923223,2.4543587592962314e-20 -4739,1998/12/23,0.0,10.47554619,-3.242978501,0.764486607,5.984624453,0.21100947,1.2271793796481157e-20 -4740,1998/12/24,0.000117894,10.35072341,-2.977355516,0.72328181,5.918845415,0.129441688,6.1358968982405785e-21 -4741,1998/12/25,0.657825215,11.29734823,-2.432242317,0.964821858,6.216445675,5.117284145,3.0679484491202892e-21 -4742,1998/12/26,0.36445719,9.414860329,-3.090607162,0.711179433,5.59428964,4.365902094,1.5339742245601446e-21 -4743,1998/12/27,0.657448921,9.737895272,-2.290882072,0.74061974,5.633969183,7.510857035,7.669871122800723e-22 -4744,1998/12/28,0.598097412,9.736274346,-1.725796201,0.640265947,5.571980084,8.515541647,3.8349355614003615e-22 -4745,1998/12/29,0.327695472,9.528839974,-2.121195793,0.771890533,5.540109204,6.254579318,1.9174677807001808e-22 -4746,1998/12/30,0.085160663,10.4751348,-1.444719442,0.871306258,5.81557572,3.140010708,9.587338903500904e-23 -4747,1998/12/31,0.078183083,10.57059384,-1.912899974,0.977877043,5.901954164,2.232460079,4.793669451750452e-23 -4748,1999/1/1,0.028779392,9.221822404,-3.618895486,0.952639933,5.572752402,1.33331561,2.396834725875226e-23 -4749,1999/1/2,0.025673229,6.922982032,-5.443951933,0.774741205,4.921640062,0.929717086,1.198417362937613e-23 -4750,1999/1/3,0.007133377,7.789499109,-5.345397425,0.455342848,5.204151638,0.555487529,5.992086814688065e-24 -4751,1999/1/4,0.0058169,10.21494331,-3.981846652,0.835837445,5.949200072,0.367745164,2.9960434073440324e-24 -4752,1999/1/5,0.0,12.35432705,-3.170589647,1.132404714,6.659905117,0.218928487,1.4980217036720162e-24 -4753,1999/1/6,0.000414676,12.16414897,-3.133013956,0.797155947,6.588118764,0.142471094,7.490108518360081e-25 -4754,1999/1/7,0.0,12.01649016,-2.749210689,1.094953798,6.506616023,0.091609843,3.7450542591800406e-25 -4755,1999/1/8,0.000289969,11.40260969,-2.478575191,1.455570906,6.260109854,0.060781688,1.8725271295900203e-25 -4756,1999/1/9,0.089095563,10.20753671,-1.552332199,1.200014401,5.726785799,0.403549297,9.362635647950101e-26 -4757,1999/1/10,1.779473401,7.736491724,-1.513405581,1.182124029,4.799505215,12.47436729,4.6813178239750507e-26 -4758,1999/1/11,0.813103545,6.825958384,-4.121132062,0.883541532,4.781639191,11.70842346,2.3406589119875254e-26 -4759,1999/1/12,0.386136716,6.770140335,-3.651199954,0.636735277,4.715379587,7.982271077,1.1703294559937627e-26 -4760,1999/1/13,0.027649397,7.764742398,-1.70550597,0.840677401,4.835888798,3.152981595,5.8516472799688134e-27 -4761,1999/1/14,0.031641049,9.363185323,-3.147890021,0.759916625,5.578471016,1.988657742,2.9258236399844067e-27 -4762,1999/1/15,0.781943396,8.983694688,-3.11235541,0.691057779,5.439342493,9.765896713,1.4629118199922033e-27 -4763,1999/1/16,0.972322499,6.781099893,-2.935150948,0.731520529,4.636259017,15.42308917,7.314559099961017e-28 -4764,1999/1/17,0.035111083,7.736446024,-2.746139594,1.032722835,4.954585806,4.889427982,3.6572795499805084e-28 -4765,1999/1/18,0.01871424,9.223840609,-2.301128225,0.98330654,5.441543319,2.542660635,1.8286397749902542e-28 -4766,1999/1/19,0.021059586,10.09086947,-1.944539847,0.823538977,5.719779818,1.721919822,9.143198874951271e-29 -4767,1999/1/20,0.065036393,10.56852218,-2.298076091,0.928321857,5.929700754,1.683564379,4.5715994374756355e-29 -4768,1999/1/21,0.123547085,10.48922988,-1.676114028,0.998334571,5.836056809,2.000969272,2.2857997187378177e-29 -4769,1999/1/22,0.0,11.61446428,-2.753258261,1.269383468,6.347959402,0.775590888,1.1428998593689089e-29 -4770,1999/1/23,0.0,11.84087298,-4.187610211,1.128790181,6.521275675,0.441095117,5.714499296844544e-30 -4771,1999/1/24,0.0,12.20143808,-4.095506362,0.851605552,6.643014353,0.282138741,2.857249648422272e-30 -4772,1999/1/25,0.0,12.83422579,-3.626420551,1.025260968,6.843035738,0.183335618,1.428624824211136e-30 -4773,1999/1/26,0.0,13.59019391,-1.650512823,1.22508109,6.984354253,0.119324069,7.14312412105568e-31 -4774,1999/1/27,0.0,14.18989983,-1.305643327,0.982127879,7.1806397,0.077673342,3.57156206052784e-31 -4775,1999/1/28,0.0,14.51151987,0.175071777,1.121744544,7.161753494,0.050561643,1.78578103026392e-31 -4776,1999/1/29,0.596733969,13.11598229,1.28683673,1.615741216,6.466969749,2.88779742,8.9289051513196e-32 -4777,1999/1/30,1.360747095,12.85492579,1.784553684,1.827596649,6.283984067,11.00685048,4.4644525756598e-32 -4778,1999/1/31,0.017451529,13.40641687,-0.056293282,1.695630809,6.750003723,2.94806013,2.2322262878299e-32 -4779,1999/2/1,3.41e-05,13.93756409,-2.044964892,1.251135831,7.13351853,1.319338885,1.11611314391495e-32 -4780,1999/2/2,0.002748769,14.82961199,-2.150968013,0.928285443,7.472287954,0.827736721,5.58056571957475e-33 -4781,1999/2/3,0.036330726,14.04862679,-0.745604994,1.195292468,7.062645926,0.750114225,2.790282859787375e-33 -4782,1999/2/4,0.210887103,13.07779727,0.647270293,1.334267505,6.527657627,1.620921838,1.3951414298936876e-33 -4783,1999/2/5,0.206258391,13.7255529,0.283353294,1.34194469,6.824884141,1.747379874,6.975707149468438e-34 -4784,1999/2/6,0.374725031,12.73002444,-0.801574433,1.201896671,6.558136376,2.880254311,3.487853574734219e-34 -4785,1999/2/7,0.096790618,12.99106729,-1.397692683,1.036526671,6.712634396,1.464394341,1.7439267873671095e-34 -4786,1999/2/8,0.005418055,13.6446245,-1.659000291,0.896478226,6.977784666,0.615002366,8.719633936835547e-35 -4787,1999/2/9,0.023286733,14.5094211,-0.08199295,1.310685712,7.16048165,0.464629674,4.3598169684177737e-35 -4788,1999/2/10,0.095075594,15.80508622,0.084963976,0.998251896,7.646695487,0.688393228,2.1799084842088868e-35 -4789,1999/2/11,0.215598661,15.55227966,0.284797534,1.020752571,7.525166989,1.238802321,1.0899542421044434e-35 -4790,1999/2/12,0.216275849,15.1127845,-0.193018249,1.030977527,7.397341948,1.389343751,5.449771210522217e-36 -4791,1999/2/13,0.612096158,14.69993151,-0.166938031,1.172806123,7.231800741,3.7858516,2.7248856052611085e-36 -4792,1999/2/14,0.217574207,14.56717908,2.059563853,1.568474012,6.907432209,2.364970954,1.3624428026305543e-36 -4793,1999/2/15,0.040634851,15.6876802,1.257715514,1.206945776,7.461460032,1.054566233,6.812214013152771e-37 -4794,1999/2/16,0.008017158,16.14414487,1.261323163,1.598132077,7.640761957,0.549521254,3.4061070065763857e-37 -4795,1999/2/17,0.028069669,16.9544703,0.636861029,1.621029872,8.025205091,0.449554151,1.7030535032881928e-37 -4796,1999/2/18,0.139833238,16.64460987,0.157697176,1.095905198,7.94360476,0.822958356,8.515267516440964e-38 -4797,1999/2/19,0.149613751,16.15788121,0.863224855,1.665584625,7.679533875,0.901026996,4.257633758220482e-38 -4798,1999/2/20,0.730468601,15.79856547,2.175892395,1.843747462,7.375618678,4.000938633,2.128816879110241e-38 -4799,1999/2/21,0.79103419,15.25033555,2.305733355,1.500810713,7.130307438,6.530791762,1.0644084395551205e-38 -4800,1999/2/22,1.520277647,14.22138528,1.414687828,1.805440147,6.832885281,16.97242456,5.3220421977756026e-39 -4801,1999/2/23,0.043425369,16.36087592,0.148068062,1.462940484,7.815323757,5.020031371,2.6610210988878013e-39 -4802,1999/2/24,0.249937091,17.18233822,1.094971765,1.90246348,8.045389823,4.829875624,1.3305105494439007e-39 -4803,1999/2/25,0.318695973,17.7645556,2.248088817,1.869306214,8.15190536,5.116604797,6.652552747219503e-40 -4804,1999/2/26,0.192467942,17.69949882,2.548102547,1.416597029,8.085518337,3.690807755,3.3262763736097516e-40 -4805,1999/2/27,0.314077839,17.26999594,2.223465034,1.160538312,7.944756123,4.261901858,1.6631381868048758e-40 -4806,1999/2/28,3.703547274,13.56150315,2.470444517,1.064071032,6.389254322,55.67153992,8.315690934024379e-41 -4807,1999/3/1,3.954555831,11.4102858,0.687520206,1.181677163,5.800660132,116.7424184,4.1578454670121896e-41 -4808,1999/3/2,0.799667467,12.27397928,-1.56474442,0.879281776,6.394687884,55.99942993,2.0789227335060948e-41 -4809,1999/3/3,0.679405494,14.76137701,-2.020700941,1.059335951,7.347086841,41.27962991,1.0394613667530474e-41 -4810,1999/3/4,0.012323373,17.20318499,-1.003796854,1.158574992,8.195904112,17.0751775,5.197306833765237e-42 -4811,1999/3/5,0.075587175,17.13209503,-0.531688135,1.764094911,8.130936505,11.58455666,2.5986534168826185e-42 -4812,1999/3/6,0.027369879,17.21293907,0.434469906,1.668647645,8.079211635,7.25928004,1.2993267084413092e-42 -4813,1999/3/7,0.020962573,17.98602199,0.994179347,1.846513722,8.329467945,4.767110815,6.496633542206546e-43 -4814,1999/3/8,0.035463426,18.27847971,2.274180853,2.265160739,8.312204341,3.452540199,3.248316771103273e-43 -4815,1999/3/9,0.259451904,18.29089776,3.740649256,2.142433205,8.129931143,5.499999565,1.6241583855516365e-43 -4816,1999/3/10,0.248859915,18.44210583,4.392556257,1.912013713,8.095715073,5.205498295,8.120791927758183e-44 -4817,1999/3/11,0.012565234,17.82989931,4.63127892,1.932290808,7.7922704,2.079807465,4.0603959638790914e-44 -4818,1999/3/12,0.049502895,17.59126403,4.270153314,2.199984383,7.743178718,1.605174652,2.0301979819395457e-44 -4819,1999/3/13,0.148928965,17.8167706,4.217797212,1.930815597,7.842709779,2.129462734,1.0150989909697728e-44 -4820,1999/3/14,0.173158431,15.48645601,1.428217789,1.531942634,7.261595139,2.227768651,5.075494954848864e-45 -4821,1999/3/15,0.397907306,16.9304379,1.553757313,1.607908051,7.817035461,4.010470058,2.537747477424432e-45 -4822,1999/3/16,0.000409342,17.04809103,2.71480086,2.021278142,7.721209614,1.221899265,1.268873738712216e-45 -4823,1999/3/17,0.0,16.96638759,1.969319343,2.248652574,7.775525734,0.624921401,6.34436869356108e-46 -4824,1999/3/18,0.0,17.99415904,2.131198276,2.231157683,8.166603826,0.39336995,3.17218434678054e-46 -4825,1999/3/19,0.0,19.62586933,2.404834679,2.092200124,8.794878786,0.255192964,1.58609217339027e-46 -4826,1999/3/20,0.006759038,20.00771025,3.610856301,1.92121288,8.813193409,0.194321999,7.93046086695135e-47 -4827,1999/3/21,0.000238361,19.47709074,5.244909737,1.946296632,8.359004195,0.115744251,3.965230433475675e-47 -4828,1999/3/22,0.209102755,18.3736481,3.675146503,2.057868461,8.113662704,0.788614735,1.9826152167378376e-47 -4829,1999/3/23,3.716773066,16.28059928,4.002765327,1.970205353,7.184225802,36.59671385,9.913076083689188e-48 -4830,1999/3/24,0.157236671,16.21080352,3.491080685,2.013491037,7.232042983,11.15204082,4.956538041844594e-48 -4831,1999/3/25,0.039635128,16.72500231,3.527514852,2.128229276,7.435595106,4.97971077,2.478269020922297e-48 -4832,1999/3/26,0.756094142,16.78278687,3.236728851,1.49210924,7.497312582,12.44835413,1.2391345104611485e-48 -4833,1999/3/27,1.591558324,15.86389098,3.326964663,1.433383841,7.101003583,28.18205922,6.1956725523057424e-49 -4834,1999/3/28,0.453131935,15.17713355,0.80542493,1.420979932,7.153473986,15.46416661,3.0978362761528712e-49 -4835,1999/3/29,0.414170838,16.92121313,1.437224772,0.972891927,7.762546939,12.32509736,1.5489181380764356e-49 -4836,1999/3/30,1.816865704,17.50595163,2.926416892,1.536865025,7.817314764,36.9571489,7.744590690382178e-50 -4837,1999/3/31,1.211766783,18.2509257,5.465840815,1.710271604,7.744961699,35.04035073,3.872295345191089e-50 -4838,1999/4/1,0.889162821,19.23010619,5.858087646,1.595504976,8.099083271,29.73328712,1.9361476725955445e-50 -4839,1999/4/2,0.889024991,20.27845355,6.552364182,1.583680119,8.436237617,28.96845276,9.680738362977723e-51 -4840,1999/4/3,0.518603022,20.84631701,7.137309719,1.71615572,8.581594367,20.60711254,4.840369181488861e-51 -4841,1999/4/4,1.2719318,19.49095153,5.931158005,1.173086005,8.186098024,33.81436299,2.4201845907444306e-51 -4842,1999/4/5,0.999282104,18.76140404,4.897771,1.150632862,8.033431245,31.90769766,1.2100922953722153e-51 -4843,1999/4/6,1.383698485,18.11228177,4.981792202,1.472589891,7.739016561,41.41999262,6.0504614768610766e-52 -4844,1999/4/7,0.594922842,16.81391438,4.796184848,1.159402344,7.212394973,26.51054196,3.0252307384305383e-52 -4845,1999/4/8,0.100245648,16.22770073,4.721750274,1.165335086,6.971564528,12.21180988,1.5126153692152692e-52 -4846,1999/4/9,1.406285997,17.69868084,5.910589158,1.390868383,7.384101494,35.57602376,7.563076846076346e-53 -4847,1999/4/10,0.719578838,16.60187755,5.148252749,1.335724028,7.045929891,26.53365595,3.781538423038173e-53 -4848,1999/4/11,0.008740492,19.39653153,5.236821341,1.506365517,8.22325214,9.556593561,1.8907692115190864e-53 -4849,1999/4/12,0.0,21.48535166,6.479175644,1.650645783,8.928468531,5.237511071,9.453846057595432e-54 -4850,1999/4/13,0.214558306,22.06193021,7.776286534,1.755884354,8.963076626,6.535613764,4.726923028797716e-54 -4851,1999/4/14,1.608005911,21.68655838,8.944763365,1.757108591,8.562567951,28.34590334,2.363461514398858e-54 -4852,1999/4/15,2.556702385,18.18102946,9.848545889,1.488922484,6.648476354,60.20841376,1.181730757199429e-54 -4853,1999/4/16,2.191996134,19.80218497,9.632048632,1.627075483,7.502965343,73.66533593,5.908653785997145e-55 -4854,1999/4/17,0.978180469,19.61000714,8.452055718,1.447858545,7.688706453,48.96351969,2.9543268929985726e-55 -4855,1999/4/18,0.513705875,20.19416574,8.467964934,1.594025041,7.9518498,31.18838516,1.4771634464992863e-55 -4856,1999/4/19,0.197473515,19.73713005,8.450966677,1.413363859,7.73931527,17.80507888,7.385817232496431e-56 -4857,1999/4/20,1.329291279,20.49160025,7.823197285,1.352992199,8.211240933,39.98759673,3.6929086162482157e-56 -4858,1999/4/21,0.006579266,22.66931501,8.446857357,1.405683253,9.076596846,13.08066362,1.8464543081241078e-56 -4859,1999/4/22,0.0,23.52048856,9.911871283,1.885807304,9.181718732,6.844528218,9.232271540620539e-57 -4860,1999/4/23,0.118367929,23.05264927,10.17848086,2.193682849,8.899590052,6.197823097,4.6161357703102696e-57 -4861,1999/4/24,0.296386704,22.50375309,10.4325404,2.197665345,8.575993891,7.437630953,2.3080678851551348e-57 -4862,1999/4/25,0.303320879,22.83133394,10.43211165,1.629660736,8.728487075,6.972541713,1.1540339425775674e-57 -4863,1999/4/26,1.134620282,23.71734251,10.55266922,0.969241046,9.120428491,18.02651995,5.770169712887837e-58 -4864,1999/4/27,9.506120476,18.12787946,9.567693135,0.425170688,6.658900923,293.3076241,8.207361861645479e-06 -4865,1999/4/28,0.989415561,17.8799576,9.409959288,0.551038337,6.577796478,115.3814299,4.103669101599971e-06 -4866,1999/4/29,1.918097281,17.66315144,9.332589527,0.777902616,6.489508336,126.7829572,2.0518345507999855e-06 -4867,1999/4/30,1.175351434,18.76450915,9.066195167,0.865908287,7.091721401,96.42477188,1.0259172753999928e-06 -4868,1999/5/1,1.079408847,19.83746617,9.514245735,1.202026591,7.488217778,82.67855558,5.129586376999964e-07 -4869,1999/5/2,1.562907587,20.76692141,9.720471222,1.404272909,7.877504594,96.57894641,2.564793188499982e-07 -4870,1999/5/3,5.939128135,20.63050478,9.852020641,1.011784779,7.776869151,325.5036668,1.282396594249991e-07 -4871,1999/5/4,8.639292623,20.2413741,9.678077146,0.956093418,7.629432506,681.5164796,0.0021157967087521473 -4872,1999/5/5,5.70691779,18.89894953,9.157564168,0.995086875,7.114767601,668.7535779,0.0010556820452494557 -4873,1999/5/6,5.709549563,18.94276005,10.12138956,0.654117202,6.874273057,746.0935717,0.0005278410226247279 -4874,1999/5/7,5.328590694,16.48668204,8.682361205,0.779539199,6.073447252,786.0403616,0.00026392051131236393 -4875,1999/5/8,4.965046671,17.59688349,6.87278217,0.174614975,7.0341824,806.815801,0.00013196025565618196 -4876,1999/5/9,3.486197733,18.79239724,8.363601329,0.29800781,7.243450696,657.2066992,6.598012782809098e-05 -4877,1999/5/10,1.671527795,18.72690634,9.784481562,0.77351461,6.849105547,413.0481416,3.299006391404549e-05 -4878,1999/5/11,0.58109793,15.80347843,8.295891604,0.684854956,5.841057736,229.780672,1.6495031957022746e-05 -4879,1999/5/12,0.706195172,16.24503897,8.579508584,1.184599598,5.971168886,177.1156649,8.247515978511373e-06 -4880,1999/5/13,0.091679007,17.00166068,8.753463151,1.032953041,6.286534029,93.87175622,4.123757989255686e-06 -4881,1999/5/14,3.446822097,19.20811983,10.57536192,1.694950821,6.850663542,313.3501365,2.061878994627843e-06 -4882,1999/5/15,3.085839517,20.01993984,10.65279021,1.720228094,7.23003173,335.6453467,1.0309394973139216e-06 -4883,1999/5/16,7.819751709,19.21230036,9.326856619,1.847534509,7.18518058,793.2007347,0.0011196977763226566 -4884,1999/5/17,2.582109273,19.92592853,9.029927177,2.79e+36,7.589327707,465.1856856,0.0005588619467625584 -4885,1999/5/18,0.985969952,21.18993537,9.776824243,0.499720171,8.005976357,252.3355724,0.0002794309733812792 -4886,1999/5/19,2.416991036,18.54238045,10.78682062,0.477143128,6.434656386,306.5551983,0.0001397154866906396 -4887,1999/5/20,3.343145746,17.16959476,10.43778129,0.598743828,5.833638563,384.8860256,6.98577433453198e-05 -4888,1999/5/21,7.306856769,17.3752949,11.04665144,0.924476817,5.726906328,805.7906757,0.0031183149899421886 -4889,1999/5/22,5.901662297,17.54004487,10.19722736,1.211754845,6.100423853,869.0281436,0.001556148770865698 -4890,1999/5/23,11.41683784,18.19233336,10.6862742,1.443770597,6.276645354,1760.289865,0.017993057297710488 -4891,1999/5/24,9.643074338,19.25720646,12.26023627,1.211495376,6.305743948,2019.008469,0.037184540197012714 -4892,1999/5/25,7.89751385,20.99614059,12.96028162,1.17654608,7.000718687,1983.826386,0.02899781616815741 -4893,1999/5/26,15.59506778,20.96645437,12.95157718,1.159569174,6.985248331,3789.270688,0.12302348090750362 -4894,1999/5/27,13.69743068,21.36433063,13.42674327,1.348525931,7.036358144,4358.500669,0.20074904817609188 -4895,1999/5/28,8.559330856,21.04998593,13.94264556,1.174713352,6.675020773,3449.504782,0.15051637172621757 -4896,1999/5/29,12.72958969,20.68409018,13.66495116,1.403635181,6.570833966,4494.304936,0.25421829566123383 -4897,1999/5/30,4.88191173,20.86636664,13.20582687,1.337193118,6.83512761,2686.836911,0.12448847186995068 -4898,1999/5/31,1.574296378,20.20822416,12.67349013,1.039592018,6.660859518,1410.335462,0.06224423593497534 -4899,1999/6/1,1.752118179,21.52499377,13.02244529,1.48079607,7.245625903,1031.886868,0.03112211796748767 -4900,1999/6/2,5.589858733,22.09486547,12.80149752,1.371762452,7.61051931,1485.790407,0.015561058983743836 -4901,1999/6/3,5.282121456,22.04876811,12.68550205,1.35951837,7.619331057,1432.160415,0.007780529491871918 -4902,1999/6/4,9.029322238,21.86168734,13.0274601,1.528048889,7.415178133,2056.869408,0.04757665731764038 -4903,1999/6/5,1.014378608,23.01230826,13.42462021,1.2707599,7.892412782,822.0745393,0.023197148202869184 -4904,1999/6/6,9.256731391,24.15762727,13.73992953,1.058111812,8.391562101,1834.25906,0.03509921961035823 -4905,1999/6/7,8.687508923,22.32366935,13.814404,0.541135649,7.400651433,2021.003944,0.053239109635014215 -4906,1999/6/8,4.753860637,23.42480986,14.09501115,0.562046785,7.896587662,1439.173888,0.026115759854495872 -4907,1999/6/9,6.35954626,21.33154306,13.47457682,0.730272331,6.975958773,1553.845901,0.013057879927247936 -4908,1999/6/10,7.642035311,22.02435829,14.00506975,1.053036491,7.168481622,1814.421587,0.01937238658684827 -4909,1999/6/11,6.188257544,22.08312102,14.25619006,1.547986319,7.111077633,1649.211676,0.009512027063706924 -4910,1999/6/12,5.797490869,23.33630033,14.81205154,1.572926032,7.606122479,1546.434705,0.004756013531853462 -4911,1999/6/13,15.80249312,23.33923994,14.93783904,1.511781938,7.5627892,3541.382573,0.21096174889431416 -4912,1999/6/14,13.44832554,22.31485884,14.8197813,1.189221518,7.031423211,4025.802236,0.31551160062271494 -4913,1999/6/15,4.988320561,22.71304242,14.2671953,0.911430531,7.446896412,2351.672842,0.1542316016231534 -4914,1999/6/16,1.368656667,22.29695015,13.60772904,0.931179504,7.440217817,1172.917307,0.0771158008115767 -4915,1999/6/17,13.98807572,23.35186397,14.12304765,0.833663311,7.834865235,3367.606413,0.25591796170690484 -4916,1999/6/18,10.11725075,22.68750884,14.59282524,1.01247776,7.317016472,3216.90351,0.23907182986113734 -4917,1999/6/19,4.733008124,21.58794198,14.05199798,0.77748167,6.900072896,2044.354003,0.11717647892948549 -4918,1999/6/20,8.159002822,21.26380079,14.50569541,1.184650785,6.545277279,2470.068329,0.12549138322053519 -4919,1999/6/21,9.157042636,21.93299472,14.89643195,1.603789947,6.777101494,2812.676512,0.16355708336316147 -4920,1999/6/22,4.171180992,21.76156326,14.61304643,1.540100854,6.787123763,1802.681548,0.07958426826595111 -4921,1999/6/23,3.075545938,22.11506234,14.62558249,1.557782597,6.981690803,1291.847297,0.039792134132975554 -4922,1999/6/24,4.576194637,20.27238612,14.75588818,1.41194002,5.849527447,1348.389738,0.019896067066487777 -4923,1999/6/25,4.511310984,21.47931625,14.48077114,1.221979192,6.674940284,1287.548318,0.009948033533243889 -4924,1999/6/26,2.885643895,20.88878379,14.33186241,1.111822868,6.393649639,941.3553823,0.004974016766621944 -4925,1999/6/27,4.038439881,21.11887243,14.41441346,1.180811593,6.49328058,995.4402862,0.002487008383310972 -4926,1999/6/28,2.078314154,21.89204604,14.23873817,1.383548039,6.995426939,665.7565947,0.001243504191655486 -4927,1999/6/29,0.277246801,22.27870605,13.56989225,1.314125013,7.432519456,312.8751874,0.000621752095827743 -4928,1999/6/30,5.735233101,22.83605778,14.50379224,1.237574917,7.421508784,855.2378075,0.0003108760479138715 -4929,1999/7/1,9.851195625,22.87965713,14.35772721,1.109897841,7.494734094,1585.571629,0.06848921062779749 -4930,1999/7/2,10.11677022,21.89765013,14.20279055,0.809504606,7.010457713,2013.978036,0.13023364878704308 -4931,1999/7/3,9.152988707,21.55626433,14.6330864,1.22549319,6.65782594,2173.288156,0.1487768940450854 -4932,1999/7/4,6.336630003,22.56363869,14.66504954,1.332725942,7.214339132,1820.781656,0.07293471431029891 -4933,1999/7/5,4.441953671,22.39714822,14.4897089,1.23569189,7.184562414,1398.061713,0.036467357155149455 -4934,1999/7/6,3.944941888,21.60507263,14.75128457,1.161882399,6.639962234,1170.07758,0.018233678577574727 -4935,1999/7/7,4.942755569,22.8529405,14.93428278,1.2155029,7.279298081,1231.68657,0.009116839288787364 -4936,1999/7/8,10.05867892,21.64544352,14.37488109,1.299314983,6.807378146,2108.035325,0.10375637103975466 -4937,1999/7/9,10.88834276,20.18383962,13.26460833,1.245698447,6.402696565,2681.40782,0.20093085680541428 -4938,1999/7/10,5.482903088,20.05636707,13.15338296,1.083904727,6.373428791,1890.098222,0.09793846755676067 -4939,1999/7/11,6.216880811,20.96464752,14.18004068,1.205283494,6.496653407,1873.803402,0.04896923377838033 -4940,1999/7/12,10.58652625,21.56850513,14.87860791,1.603237941,6.570414453,2807.324876,0.17141582029354724 -4941,1999/7/13,9.273105855,22.7049419,15.1402817,1.283145143,7.122981326,2891.06611,0.1696982414095909 -4942,1999/7/14,9.38990788,22.49544284,15.24326663,1.158724715,6.964856563,3031.552053,0.18566547214305046 -4943,1999/7/15,4.662056749,22.05201516,14.1606031,0.972541302,7.114889841,2005.807587,0.0906638607950852 -4944,1999/7/16,3.856139296,20.69074177,13.16709095,0.756217091,6.720089018,1534.126356,0.0453319303975426 -4945,1999/7/17,8.088685344,20.2804786,12.56792871,0.448483391,6.70587322,2184.18699,0.07822337596763047 -4946,1999/7/18,4.94097474,19.70981445,12.56394725,0.517765271,6.40147395,1680.445326,0.037995619561443005 -4947,1999/7/19,6.770017008,19.57057826,12.96729896,0.628905041,6.178466336,1900.075979,0.042654247551762905 -4948,1999/7/20,3.527883711,21.17523794,12.94375876,0.895311421,7.059403899,1305.512431,0.02085410677623619 -4949,1999/7/21,3.961628462,21.87289074,13.31137111,0.774475617,7.310714699,1186.221737,0.010427053388118095 -4950,1999/7/22,1.04300382,22.66178146,13.92965364,0.947982053,7.531251881,616.1380559,0.005213526694059048 -4951,1999/7/23,3.374205493,22.28403445,13.72559027,0.701386368,7.397211153,756.9668479,0.002606763347029524 -4952,1999/7/24,10.41500792,21.31124948,13.83221833,0.347206528,6.832662226,1796.560903,0.11958029230867419 -4953,1999/7/25,4.688623663,21.08635182,14.00842887,0.559364808,6.643652195,1248.992206,0.057837594839589876 -4954,1999/7/26,6.1362915,21.53891271,14.21886686,0.831143918,6.821100853,1386.785513,0.028918797419794938 -4955,1999/7/27,9.266774397,21.60937707,14.5692626,0.778420474,6.730306772,2001.028028,0.1003522642069513 -4956,1999/7/28,3.896518274,21.57706372,13.5012832,0.79286122,7.099468495,1275.538452,0.048721829223639955 -4957,1999/7/29,9.388753005,22.91355273,13.79476404,0.275037278,7.719786948,2084.038187,0.08180544807843472 -4958,1999/7/30,4.199772656,23.23114531,13.87101983,0.085952527,7.865779985,1367.675512,0.03991412561585319 -4959,1999/7/31,2.183535246,23.97051251,14.23106084,0.450950826,8.146957081,845.7418625,0.019957062807926595 -4960,1999/8/1,11.23171089,22.43171239,13.83737232,0.5810718,7.454588266,2111.363203,0.13261300694977865 -4961,1999/8/2,3.392708702,23.10072826,14.21026696,0.667865161,7.693907087,1178.28363,0.06431567393485303 -4962,1999/8/3,3.331408016,22.92183527,14.12973783,0.609642042,7.626113114,940.5680184,0.032157836967426516 -4963,1999/8/4,7.897388205,22.41097207,14.2080939,0.806208833,7.324380198,1529.600463,0.03469777570424914 -4964,1999/8/5,6.252719171,22.66782664,14.53490949,1.006822938,7.354181287,1445.812939,0.017046394832861488 -4965,1999/8/6,5.995027772,22.08090712,14.69379695,0.90715642,6.969774899,1408.595074,0.008523197416430744 -4966,1999/8/7,3.367274734,21.8201971,14.35643397,0.905638141,6.950106585,987.9749599,0.004261598708215372 -4967,1999/8/8,4.169519889,21.96642252,14.76747754,1.051894151,6.880882672,978.7897527,0.002130799354107686 -4968,1999/8/9,19.22912413,21.81368038,14.7730867,1.017323558,6.793162142,3735.590736,0.34846900361946326 -4969,1999/8/10,14.75344588,19.79693374,14.34116382,0.71680847,5.779007593,4362.680977,0.5255439827061187 -4970,1999/8/11,9.149900669,20.92484214,14.37791804,0.686144296,6.438516245,3599.754985,0.3857494301296598 -4971,1999/8/12,10.89391538,20.93103495,14.66074216,1.353011453,6.328926013,4046.5199,0.4199230395670428 -4972,1999/8/13,10.07026936,20.64836361,14.72891756,1.6246558,6.132983839,4046.722683,0.41888400547619314 -4973,1999/8/14,11.57666332,21.44372826,14.89982594,1.401972672,6.538546452,4618.503536,0.4960790047448086 -4974,1999/8/15,15.19498498,19.77587965,14.40214855,1.014543114,5.748967707,6134.289938,0.8301703903541329 -4975,1999/8/16,13.35304042,21.13140243,14.45412307,0.794214378,6.540187914,6367.852253,0.8791590599023127 -4976,1999/8/17,13.01180921,18.92981851,13.94305672,0.487184567,5.438703638,6452.202615,1.003421041731571 -4977,1999/8/18,4.145356024,21.06475409,14.02054554,0.324197025,6.675513119,3467.920842,0.47942905934958435 -4978,1999/8/19,3.9110151,21.11348817,13.86071129,0.281361257,6.765698198,2526.221522,0.23971452967479218 -4979,1999/8/20,5.922753289,21.0945628,13.67967019,0.396579355,6.82430992,2559.124142,0.11985726483739609 -4980,1999/8/21,5.9117066,21.16010042,12.79780403,0.387802003,7.166103344,2355.876497,0.059928632418698044 -4981,1999/8/22,10.95866215,20.80171409,12.74617727,0.373400351,6.994942227,3394.465208,0.32971918659583727 -4982,1999/8/23,3.641346508,19.18736767,12.39108505,0.398643282,6.244687987,1909.895599,0.15352516704355126 -4983,1999/8/24,9.042346667,18.10672938,11.3989044,0.765453461,6.01512192,2734.361226,0.3080672928031696 -4984,1999/8/25,10.89706263,18.5331416,11.19175095,0.802253005,6.316778955,3464.885206,0.5069955801215985 -4985,1999/8/26,10.72593169,20.00530527,11.8645999,0.981807768,6.873287619,3781.326773,0.5584991400157763 -4986,1999/8/27,16.87897971,18.00946479,12.50398457,0.710533136,5.541267836,5927.132836,1.24238007696818 -4987,1999/8/28,9.836140731,18.4544901,12.43529041,0.841082362,5.829710665,4787.225026,0.9621056544214652 -4988,1999/8/29,6.795140895,19.88048773,12.72026564,1.050086684,6.524973804,3625.841988,0.48945972478975197 -4989,1999/8/30,12.96596135,20.4416425,13.11641754,0.894712812,6.695543537,5161.620901,0.8646940700879736 -4990,1999/8/31,19.62597069,18.87582708,13.12112683,0.501456044,5.803363134,8240.567692,1.841486187062783 -4991,1999/9/1,15.47001551,18.78141651,11.96608737,0.466377152,6.201838404,8311.850679,1.914031306852619 -4992,1999/9/2,6.540505446,20.20443827,12.33250943,0.606052147,6.84840238,4898.056402,0.8954481186675188 -4993,1999/9/3,13.47853133,21.36498117,13.2051285,0.904132615,7.184147611,6300.530977,1.2169660375929527 -4994,1999/9/4,6.740883467,20.67714261,13.26650108,0.337516919,6.788682231,4180.353813,0.5614781611699916 -4995,1999/9/5,9.480174799,20.91198085,13.27354066,0.303884005,6.919715416,4320.397469,0.6059506050581919 -4996,1999/9/6,7.820581115,21.3704965,13.37583439,0.568060265,7.139777264,3693.998172,0.3701216569321976 -4997,1999/9/7,5.149478313,21.9534774,13.27891093,0.643783816,7.492446102,2660.645138,0.17939933470892738 -4998,1999/9/8,11.24280443,21.46252375,13.72855747,0.696637018,7.074150128,3773.622263,0.6196934643661788 -4999,1999/9/9,3.986044275,22.10758131,13.19132149,0.997450288,7.611218288,2192.731681,0.2761555929662767 -5000,1999/9/10,4.692442618,22.35927935,13.26918908,0.938472853,7.724878206,1867.122601,0.13807779648313834 -5001,1999/9/11,16.56081841,22.12422959,13.10964567,0.701025181,7.654208074,4393.658545,1.1703973937728032 -5002,1999/9/12,7.500587294,20.64442996,13.10173932,0.773031626,6.85813943,3050.476899,0.6009408614714397 -5003,1999/9/13,1.823524866,21.00707685,12.91354648,0.578094196,7.12589361,1468.465981,0.2950002099396686 -5004,1999/9/14,12.02502816,21.67013746,13.12179691,0.37001425,7.419217911,3198.303857,0.7263570951340521 -5005,1999/9/15,8.298107674,18.80105705,12.07471434,0.119430316,6.218511354,2824.532207,0.5954882972657922 -5006,1999/9/16,1.488760983,19.32418617,11.90209943,0.200045629,6.57029148,1274.578035,0.28038701718669096 -5007,1999/9/17,2.091475971,19.20206877,10.97310931,0.597812732,6.813197814,977.2648924,0.14019350859334548 -5008,1999/9/18,1.939524383,19.48787338,10.66986461,0.833561476,7.054922047,767.7195193,0.07009675429667274 -5009,1999/9/19,12.37240725,19.79728237,10.87579913,0.651130673,7.155841077,2422.420487,0.6394338272548368 -5010,1999/9/20,8.464335187,19.24566461,10.46070053,0.395288746,7.001267014,2279.322544,0.46018075530760816 -5011,1999/9/21,4.443932038,18.27247478,10.21823147,0.534020775,6.582727551,1544.593349,0.2195673997309793 -5012,1999/9/22,4.153362192,18.17254092,9.880135397,0.657388483,6.637488859,1304.129716,0.10978369986548965 -5013,1999/9/23,3.217581081,20.02880814,9.95806622,0.465453712,7.541261284,1028.629534,0.054891849932744825 -5014,1999/9/24,0.124629294,20.19552212,10.70103299,0.688706864,7.428167313,431.9500967,0.027445924966372413 -5015,1999/9/25,2.312801442,21.45140938,11.61842927,1.362350252,7.810999895,531.1568364,0.013722962483186206 -5016,1999/9/26,0.196218928,20.94383135,11.01598559,1.169086416,7.726202885,246.0298103,0.006861481241593103 -5017,1999/9/27,0.267668284,21.35637433,11.13479462,0.768904249,7.905926668,161.3044245,0.0034307406207965516 -5018,1999/9/28,3.589594316,20.99349778,11.36743392,0.220852708,7.661965462,400.5406211,0.0017153703103982758 -5019,1999/9/29,0.345722538,20.36747319,10.95918632,0.380620086,7.463886512,160.5150593,0.0008576851551991379 -5020,1999/9/30,0.44317429,20.99765354,10.99972204,0.875702045,7.775890571,108.3000419,0.00042884257759956895 -5021,1999/10/1,1.628726283,21.10336147,11.35892587,0.991122094,7.734017988,158.4901668,0.00021442128879978447 -5022,1999/10/2,3.075147721,20.29170433,11.44142995,0.883315574,7.295968065,252.5052306,0.00010721064439989224 -5023,1999/10/3,2.630540462,20.13146372,10.87795665,0.991907586,7.384486242,249.4503619,5.360532219994612e-05 -5024,1999/10/4,0.775783762,19.49500832,10.49224365,0.588375963,7.176203982,130.0902203,2.680266109997306e-05 -5025,1999/10/5,0.281698937,18.85502246,10.40215137,0.712899534,6.880240412,71.15532007,1.340133054998653e-05 -5026,1999/10/6,3.126194576,19.7697965,10.44341766,1.059137962,7.337856953,207.3108139,6.700665274993265e-06 -5027,1999/10/7,1.041765305,19.88718215,10.66869491,1.377745054,7.337599511,120.4871294,3.3503326374966324e-06 -5028,1999/10/8,1.733530692,20.26193464,10.68147591,1.423303261,7.528526623,136.521519,1.6751663187483162e-06 -5029,1999/10/9,0.789129538,19.66359441,10.19257698,1.060690754,7.367439388,87.06765763,8.375831593741581e-07 -5030,1999/10/10,2.416783044,18.91814243,9.86821618,0.695306165,7.088260445,152.7228103,4.1879157968707905e-07 -5031,1999/10/11,6.988017412,17.76554561,9.585829093,0.83832464,6.592542425,464.6784441,0.018646018353438088 -5032,1999/10/12,1.001818418,17.37615975,9.430322936,0.979999749,6.445149907,191.8342928,0.008883453954374329 -5033,1999/10/13,0.801644007,17.68227207,9.32203864,0.825722717,6.63592346,125.1608048,0.0044417269771871645 -5034,1999/10/14,1.390115486,18.07967155,8.26278828,0.735041928,7.118968442,136.3800431,0.0022208634885935823 -5035,1999/10/15,0.285436637,16.46235175,7.232448663,0.373267593,6.611655792,68.11315472,0.0011104317442967911 -5036,1999/10/16,0.539310736,15.30379812,7.355699695,0.211208536,6.031786322,59.68439446,0.0005552158721483956 -5037,1999/10/17,0.940547478,13.36825653,7.711370565,0.273373487,4.953532801,69.74765552,0.0002776079360741978 -5038,1999/10/18,5.909758888,14.60608454,7.114415969,0.265052323,5.768321919,346.0744202,0.005078061750995051 -5039,1999/10/19,5.482221786,15.89450589,7.302940486,0.428711262,6.340080956,470.9563187,0.002452786566039399 -5040,1999/10/20,5.572713335,17.31528856,7.014625778,0.684720368,7.079871314,588.7054665,0.0012263932830196996 -5041,1999/10/21,0.085183292,14.50865015,6.447913061,0.734112402,5.913809774,183.0135764,0.0006131966415098498 -5042,1999/10/22,0.0,15.17791176,6.614708197,0.636325445,6.188961993,91.58641133,0.0003065983207549249 -5043,1999/10/23,0.0,15.55689613,6.314560571,0.661457484,6.442169153,57.34102161,0.00015329916037746245 -5044,1999/10/24,4.748699497,14.88574784,5.137818209,0.808848946,6.406903338,342.9348826,7.664958018873122e-05 -5045,1999/10/25,0.004561805,14.84173469,4.114033811,0.42981147,6.595836097,98.02466783,3.832479009436561e-05 -5046,1999/10/26,5.994124302,13.12358765,4.229138582,0.480581865,5.832636661,458.5260781,0.004103811643098324 -5047,1999/10/27,24.6015267,12.65669309,3.983304133,0.627925565,5.685311977,3182.317978,0.48336689735042593 -5048,1999/10/28,13.04139139,11.91068437,3.703081449,0.615494693,5.424874192,3275.905173,0.5662148273926642 -5049,1999/10/29,2.310501387,12.65731883,5.152682991,0.808301139,5.412757128,1417.494194,0.27593002099761443 -5050,1999/10/30,8.220162154,11.64305953,3.756046877,0.967245984,5.301326367,2228.110744,0.277670602333969 -5051,1999/10/31,3.47552317,11.89910514,3.472786264,0.35125357,5.479590723,1439.137273,0.13549190437896694 -5052,1999/11/1,7.543826787,11.55067009,3.861222224,0.374937834,5.241411273,2071.588046,0.17942578613899565 -5053,1999/11/2,1.282332519,10.88694724,3.773521486,0.403389231,4.969628953,936.4275661,0.08700434953442532 -5054,1999/11/3,2.593736863,10.57748391,4.100959031,0.567503642,4.746107837,891.683897,0.04350217476721266 -5055,1999/11/4,0.243805949,12.00449127,4.098400937,0.62409371,5.395169345,411.410652,0.02175108738360633 -5056,1999/11/5,0.0,13.43493337,3.868359708,0.521493091,6.075648719,226.3166448,0.010875543691803165 -5057,1999/11/6,0.01729822,14.38753068,4.082940414,0.460168287,6.448034564,145.4947505,0.005437771845901582 -5058,1999/11/7,0.032037448,14.39599792,4.135929353,0.629631865,6.444633254,97.00868143,0.002718885922950791 -5059,1999/11/8,0.01985958,14.81617809,4.136126817,0.745723588,6.629559684,63.4669982,0.0013594429614753956 -5060,1999/11/9,9.642897287,14.90854603,4.296779096,1.156735802,6.642236802,1025.701078,0.10727164689703739 -5061,1999/11/10,4.460109794,12.55644228,2.219307043,1.037934694,6.028782777,778.5584655,0.05174260050297876 -5062,1999/11/11,0.490182103,13.53397387,0.535649256,1.027834763,6.668838779,299.2211162,0.02587130025148938 -5063,1999/11/12,0.001162179,13.57254746,-0.055646924,0.935985078,6.755705817,142.4418176,0.01293565012574469 -5064,1999/11/13,0.0,13.3830589,-0.598775755,0.920802817,6.743870165,87.58821743,0.006467825062872345 -5065,1999/11/14,0.0,13.58913602,-0.623872488,0.582211587,6.827959442,56.64264828,0.0032339125314361727 -5066,1999/11/15,0.079206067,13.45539364,0.760029777,0.576975919,6.622242105,41.85435633,0.0016169562657180863 -5067,1999/11/16,0.179670306,12.42826855,1.290483395,0.558918198,6.143610461,35.22048853,0.0008084781328590432 -5068,1999/11/17,0.034901117,12.14073341,-1.12294221,0.786257887,6.339957125,20.29413654,0.0004042390664295216 -5069,1999/11/18,0.025899073,10.66129344,-1.959864984,0.933271643,5.879730906,13.10889976,0.0002021195332147608 -5070,1999/11/19,0.069302928,11.10645937,-1.303391778,0.835046113,5.977820695,10.67834292,0.0001010597666073804 -5071,1999/11/20,0.108393636,10.95646567,-0.093246772,0.813832415,5.774844239,9.620529485,5.05298833036902e-05 -5072,1999/11/21,0.400105178,11.86658035,-2.371516348,0.840935073,6.3648519,17.68333716,2.52649416518451e-05 -5073,1999/11/22,0.947842811,10.39428818,-2.557132517,0.597687238,5.84962368,35.78718341,1.263247082592255e-05 -5074,1999/11/23,0.01794806,12.3665354,-1.024273493,0.819575343,6.430524627,10.87997291,6.316235412961275e-06 -5075,1999/11/24,0.019781556,12.67324099,-1.104695,0.790055603,6.556789984,5.810370906,3.1581177064806374e-06 -5076,1999/11/25,0.231615083,13.41458386,0.436296073,1.099900085,6.674114578,8.945333954,1.5790588532403187e-06 -5077,1999/11/26,0.258562217,14.82290603,1.823123341,1.19636017,7.059809204,9.180615247,7.895294266201593e-07 -5078,1999/11/27,0.002721516,12.83189982,-0.985501749,0.729642876,6.612187623,3.420491838,3.9476471331007967e-07 -5079,1999/11/28,0.504721292,10.63486089,-1.483738755,0.782251799,5.842683216,11.10514127,1.9738235665503984e-07 -5080,1999/11/29,0.635245796,9.678928033,-0.540126935,0.812184058,5.365641698,15.07049603,9.869117832751992e-08 -5081,1999/11/30,0.0,10.76786413,-1.462362649,0.607157317,5.893791806,4.557856923,4.934558916375996e-08 -5082,1999/12/1,0.0,10.48553704,-2.403629145,0.671368871,5.887544881,2.336373477,2.467279458187998e-08 -5083,1999/12/2,0.114544667,10.81554091,-2.293253473,0.688113776,5.999264557,3.123673484,1.233639729093999e-08 -5084,1999/12/3,0.066208178,9.981029775,-2.581268998,0.544449168,5.725240474,2.227571197,6.168198645469995e-09 -5085,1999/12/4,0.812231885,8.991362953,-2.129233795,0.491337821,5.320954382,11.93846321,3.0840993227349974e-09 -5086,1999/12/5,2.722377145,7.58373536,-1.941883679,0.470877123,4.784483927,53.2967642,1.5420496613674987e-09 -5087,1999/12/6,2.605649231,6.413884121,-1.190332451,0.50475572,4.232636461,81.45100173,7.710248306837494e-10 -5088,1999/12/7,1.136933692,6.816450399,-1.638397757,0.378742011,4.459343056,57.31205466,3.855124153418747e-10 -5089,1999/12/8,0.13206178,8.287635328,-1.535128535,0.578445928,4.99346404,23.38656492,1.9275620767093734e-10 -5090,1999/12/9,0.0,7.888572808,-2.853423934,0.573993063,5.01141819,11.52614527,9.637810383546867e-11 -5091,1999/12/10,0.154828919,8.725343991,-3.011623454,0.47846799,5.327147222,11.10872812,4.8189051917734335e-11 -5092,1999/12/11,1.808034734,9.142792608,-2.851275232,0.656251852,5.461774191,53.95046924,2.4094525958867167e-11 -5093,1999/12/12,0.095405014,8.782868342,-2.753696314,0.46563475,5.324246385,17.66638978,1.2047262979433584e-11 -5094,1999/12/13,0.000273636,9.884498237,-2.329905019,0.680727993,5.680397457,7.95707405,6.023631489716792e-12 -5095,1999/12/14,0.311980853,8.727503519,-1.901614186,0.761834312,5.210558583,12.01350796,3.011815744858396e-12 -5096,1999/12/15,0.098165993,8.994981135,-3.536369657,0.810539876,5.47636948,6.971446889,1.505907872429198e-12 -5097,1999/12/16,0.013714372,8.518375057,-6.100250438,0.677493281,5.477898235,3.573058267,7.52953936214599e-13 -5098,1999/12/17,0.152109294,7.370828642,-5.952734566,0.537409256,5.09296067,4.828188826,3.764769681072995e-13 -5099,1999/12/18,0.000391865,7.528066636,-5.313914669,0.610273199,5.108437909,1.996796356,1.8823848405364975e-13 -5100,1999/12/19,0.0,6.76353842,-5.156270849,0.74285503,4.843367187,1.155310812,9.411924202682487e-14 -5101,1999/12/20,0.020133906,6.558913234,-4.966888462,0.77703657,4.761383118,1.022207476,4.7059621013412436e-14 -5102,1999/12/21,0.498608391,6.7904082,-4.634015444,0.777471997,4.812975694,7.406232432,2.3529810506706218e-14 -5103,1999/12/22,0.0,3.716755993,-6.701834406,0.483232558,3.970823975,1.99226611,1.1764905253353109e-14 -5104,1999/12/23,0.0,3.420935999,-8.581379427,0.296414359,3.978138762,0.94641371,5.8824526266765545e-15 -5105,1999/12/24,0.0,3.870057119,-9.482102059,0.392939652,4.134056711,0.5884319,2.9412263133382773e-15 -5106,1999/12/25,0.0,4.709986441,-11.19281535,0.390830721,4.381068265,0.381244876,1.4706131566691386e-15 -5107,1999/12/26,0.001129542,4.984169124,-10.4220868,0.520630668,4.467242436,0.259352107,7.353065783345693e-16 -5108,1999/12/27,0.027881754,6.285464079,-9.086141209,0.56965702,4.852719522,0.422725879,3.6765328916728466e-16 -5109,1999/12/28,0.032508009,6.796405823,-9.410244837,0.769517923,5.011475116,0.448084815,1.8382664458364233e-16 -5110,1999/12/29,0.119979469,7.742654632,-8.234442811,0.696204476,5.296228256,1.138363794,9.191332229182116e-17 -5111,1999/12/30,0.056578413,9.147127391,-6.427521135,0.688055941,5.707638763,0.759987595,4.595666114591058e-17 -5112,1999/12/31,0.0,9.447498919,-7.251801349,2.5999999999999998e+36,5.829488889,0.265623874,2.297833057295529e-17 -5113,2000/1/1,0.0,9.626109653,-6.398646001,0.511419813,5.866536233,0.146789745,1.1489165286477646e-17 -5114,2000/1/2,0.0,9.309853705,-6.462326694,0.656784411,5.763213934,0.093548195,5.744582643238823e-18 -5115,2000/1/3,0.047782705,9.485658308,-5.742342146,0.961805709,5.794843133,0.309401312,2.8722913216194114e-18 -5116,2000/1/4,0.00141208,10.24416734,-4.868092355,1.262594054,6.012270914,0.106078908,1.4361456608097057e-18 -5117,2000/1/5,0.0,10.35141962,-5.340731274,1.128644549,6.071760835,0.053623663,7.180728304048528e-19 -5118,2000/1/6,3.05e-06,10.24718124,-5.309306126,0.834933313,6.034409699,0.033575852,3.590364152024264e-19 -5119,2000/1/7,0.73900083,7.850040482,-4.61370313,1.077863836,5.174411066,3.517798751,1.795182076012132e-19 -5120,2000/1/8,0.018385613,9.558549169,-4.805180207,0.943148821,5.771485114,0.956521618,8.97591038006066e-20 -5121,2000/1/9,0.050595136,10.31855405,-4.138064212,1.230062425,5.994489877,0.660626288,4.48795519003033e-20 -5122,2000/1/10,0.032348782,11.02594647,-2.912101422,1.273064808,6.157889914,0.457333733,2.243977595015165e-20 -5123,2000/1/11,0.048822922,11.6565279,-3.042595666,1.237565757,6.395563473,0.433073058,1.1219887975075826e-20 -5124,2000/1/12,0.038183846,11.69806843,-4.60234695,1.334530803,6.503020147,0.339268362,5.609943987537913e-21 -5125,2000/1/13,0.003870598,10.90900569,-4.731635519,1.498369004,6.232362282,0.160471072,2.8049719937689564e-21 -5126,2000/1/14,0.0,11.29569907,-3.869126347,1.620279994,6.319579103,0.089969198,1.4024859968844782e-21 -5127,2000/1/15,0.0,11.47896755,-4.705910693,1.414318853,6.428669073,0.05717386,7.012429984422391e-22 -5128,2000/1/16,0.002886864,12.28688071,-3.793222684,1.294700773,6.66709236,0.044604213,3.5062149922111955e-22 -5129,2000/1/17,0.005045758,11.25339058,-4.20952156,1.265488162,6.321979161,0.037623999,1.7531074961055978e-22 -5130,2000/1/18,0.0,10.40421552,-4.981126495,1.21767635,6.065452262,0.019320783,8.765537480527989e-23 -5131,2000/1/19,0.087795186,9.390615931,-4.176486835,1.101130532,5.665801416,0.188462835,4.3827687402639944e-23 -5132,2000/1/20,0.153907558,8.929638542,-0.535372466,1.575731278,5.100179891,0.39219484,2.1913843701319972e-23 -5133,2000/1/21,0.096054856,9.394733686,-3.392985358,1.235595377,5.604723575,0.340379014,1.0956921850659986e-23 -5134,2000/1/22,0.194129322,8.480428188,-3.485593438,0.984306504,5.289378007,0.630746571,5.478460925329993e-24 -5135,2000/1/23,0.055829256,8.906491441,-4.320064273,0.954755831,5.503896421,0.341931764,2.7392304626649965e-24 -5136,2000/1/24,0.013618936,9.133274476,-4.859414667,0.61550351,5.615786468,0.16617897,1.3696152313324983e-24 -5137,2000/1/25,0.0,10.17949618,-4.726871224,0.792003226,5.966210008,0.082767885,6.848076156662491e-25 -5138,2000/1/26,0.000323389,9.486896815,-3.853855718,0.760389394,5.667649347,0.051937449,3.4240380783312457e-25 -5139,2000/1/27,0.114081377,7.986100026,-2.234032196,1.14846733,4.973756073,0.28441377,1.7120190391656228e-25 -5140,2000/1/28,0.367043985,9.552542127,-2.159555722,1.18024489,5.534282754,1.122577819,8.560095195828114e-26 -5141,2000/1/29,2.25829669,8.513493987,-2.230833686,1.063397714,5.162422369,16.32117732,4.280047597914057e-26 -5142,2000/1/30,2.837526281,4.117196113,-5.541862033,0.909291373,3.992905149,46.89792175,2.1400237989570285e-26 -5143,2000/1/31,0.019172144,4.965852162,-6.63510589,0.715775471,4.343344842,12.45741813,1.0700118994785143e-26 -5144,2000/2/1,0.357178627,6.641711981,-5.410568769,1.039825249,4.804021297,12.16016002,5.350059497392571e-27 -5145,2000/2/2,0.577450099,8.695687889,-3.991790013,1.106438192,5.392088048,15.5611974,2.6750297486962857e-27 -5146,2000/2/3,0.176148272,9.647583947,-4.024937048,1.33468684,5.723289349,8.602127913,1.3375148743481428e-27 -5147,2000/2/4,0.035441216,10.04204074,-3.406436187,0.860041856,5.813801169,4.33580841,6.687574371740714e-28 -5148,2000/2/5,0.051839786,10.84357677,-3.339938414,0.908739435,6.091248689,3.149384561,3.343787185870357e-28 -5149,2000/2/6,0.117842587,11.10700837,-2.506749196,1.063197736,6.117388424,3.283649441,1.6718935929351785e-28 -5150,2000/2/7,0.831833097,10.94885768,-2.634359403,1.233921638,6.068893593,12.87867409,8.359467964675893e-29 -5151,2000/2/8,0.022389203,10.32554989,-2.910893918,1.190191735,5.866063389,3.910578189,4.1797339823379464e-29 -5152,2000/2/9,0.082627594,10.4233871,-3.421385241,1.449885727,5.939614855,2.860227907,2.0898669911689732e-29 -5153,2000/2/10,0.0,10.05423083,-4.191970303,1.443589671,5.861719509,1.377352403,1.0449334955844866e-29 -5154,2000/2/11,0.000305859,11.58344104,-3.96164325,1.313682161,6.380511809,0.84301402,5.224667477922433e-30 -5155,2000/2/12,0.021321642,13.35611805,-2.673993856,1.53366628,6.935341754,0.736899935,2.6123337389612165e-30 -5156,2000/2/13,0.000291341,14.31370029,-1.331629415,1.293550245,7.189214339,0.402041665,1.3061668694806082e-30 -5157,2000/2/14,0.014770977,14.93446239,-0.190611771,1.199802416,7.322031942,0.355348859,6.530834347403041e-31 -5158,2000/2/15,0.711668411,13.64427979,-1.087853252,1.735332037,6.909451684,5.495459652,3.2654171737015206e-31 -5159,2000/2/16,0.089793881,12.62654191,-0.7714142,1.220705662,6.490464494,2.096680478,1.6327085868507603e-31 -5160,2000/2/17,0.555278327,13.13291613,0.825089403,1.744185104,6.493689539,5.289932215,8.163542934253801e-32 -5161,2000/2/18,3.175836781,11.1249225,1.250760558,1.77374934,5.628191169,44.93624803,4.081771467126901e-32 -5162,2000/2/19,0.000413023,11.47230201,0.761185911,1.689842915,5.841904315,11.21671699,2.0408857335634504e-32 -5163,2000/2/20,0.000772447,11.8678056,0.121798136,1.855355803,6.083685126,5.081964484,1.0204428667817252e-32 -5164,2000/2/21,0.00878754,12.58527477,-0.249446023,1.869067509,6.402719835,3.250349815,5.102214333908626e-33 -5165,2000/2/22,0.02341907,12.49313484,-2.466820232,1.570825534,6.576430775,2.346375719,2.551107166954313e-33 -5166,2000/2/23,0.0,13.20109973,-2.727314303,1.475893679,6.849293036,1.400065842,1.2755535834771565e-33 -5167,2000/2/24,0.001605911,13.49624451,-1.285855857,1.364492399,6.843669972,0.911680038,6.377767917385782e-34 -5168,2000/2/25,3.971038767,12.03980814,0.323031624,0.749655455,6.109393891,62.99283646,3.188883958692891e-34 -5169,2000/2/26,1.949565739,8.32150839,0.205498594,0.799122593,4.675765966,61.98387886,1.5944419793464456e-34 -5170,2000/2/27,0.632586869,6.108938407,-1.44864413,1.071091801,4.114629339,34.69188062,7.972209896732228e-35 -5171,2000/2/28,0.076352862,7.993739666,-2.121688048,0.605593511,4.901091526,15.0807816,3.986104948366114e-35 -5172,2000/2/29,0.654879449,7.717894115,-2.424500859,0.778402003,4.836698543,24.13836965,1.993052474183057e-35 -5173,2000/3/1,0.750826829,6.180716634,-1.721697762,0.939896501,4.180073669,27.69327789,9.965262370915285e-36 -5174,2000/3/2,1.901180577,9.226133299,-0.738871125,0.884206334,5.163348802,62.53642093,4.9826311854576425e-36 -5175,2000/3/3,0.270811059,11.22742105,-0.96242802,1.253713875,5.937911978,25.75778854,2.4913155927288212e-36 -5176,2000/3/4,0.0,12.29504822,-0.784134563,1.142481647,6.314466309,10.76143737,1.2456577963644106e-36 -5177,2000/3/5,0.011175043,13.12707517,-1.154730307,1.169655082,6.659482055,6.648894477,6.228288981822053e-37 -5178,2000/3/6,0.001554682,13.99625886,-0.623369322,1.303992208,6.932434612,4.207019077,3.1141444909110266e-37 -5179,2000/3/7,0.024142021,14.5697502,-0.016726479,1.253353364,7.087610928,3.150102921,1.5570722454555133e-37 -5180,2000/3/8,0.545163207,14.53285858,1.585665349,1.421263608,6.882168804,11.14660279,7.785361227277566e-38 -5181,2000/3/9,1.536442129,12.96362263,2.213403426,1.411781744,6.153601928,31.98488769,3.892680613638783e-38 -5182,2000/3/10,0.917092711,12.03718449,1.179349048,1.171208148,5.942271155,27.60282069,1.9463403068193916e-38 -5183,2000/3/11,0.45053373,12.41998972,0.222269792,1.394025119,6.220706332,18.06936055,9.731701534096958e-39 -5184,2000/3/12,0.101987972,12.98800666,0.235621418,1.241114398,6.433625868,8.81188627,4.865850767048479e-39 -5185,2000/3/13,0.118080571,14.13963084,1.143728491,1.369215362,6.764954903,6.443526056,2.4329253835242395e-39 -5186,2000/3/14,0.39197664,14.75499695,1.473489698,1.159252856,6.961977632,9.64500408,1.2164626917621198e-39 -5187,2000/3/15,0.416858113,13.19630383,1.072974741,0.980076637,6.396430146,10.10917092,6.082313458810599e-40 -5188,2000/3/16,0.362791464,13.64388067,0.75057581,1.183082776,6.609210879,9.111669113,3.0411567294052994e-40 -5189,2000/3/17,0.07032568,14.70019746,0.317712811,1.385733097,7.063462961,4.286135723,1.5205783647026497e-40 -5190,2000/3/18,0.010696956,14.92666976,0.249124446,1.47710523,7.153684017,2.200637484,7.602891823513248e-41 -5191,2000/3/19,0.022294532,15.27380159,0.781877238,1.536563815,7.227302769,1.550382055,3.801445911756624e-41 -5192,2000/3/20,0.003767175,15.96895535,1.046097757,1.377130842,7.46584705,0.93149312,1.900722955878312e-41 -5193,2000/3/21,0.035700329,17.05228416,1.03265107,1.4290963,7.888036338,0.885575842,9.50361477939156e-42 -5194,2000/3/22,0.02056068,16.78489694,0.144525927,1.327315857,7.861776295,0.602331728,4.75180738969578e-42 -5195,2000/3/23,0.047140102,16.81213134,1.383892938,1.134929462,7.748017584,0.625753598,2.37590369484789e-42 -5196,2000/3/24,2.21518105,16.51350329,3.264974961,1.341454317,7.386729407,21.82662798,1.187951847423945e-42 -5197,2000/3/25,1.402748896,15.1395797,3.652928128,0.773430869,6.751616344,25.53324704,5.939759237119725e-43 -5198,2000/3/26,3.002286335,11.2555931,1.559679284,0.658093994,5.518141912,68.14619577,2.9698796185598627e-43 -5199,2000/3/27,0.201560018,12.47562442,2.198019052,0.471419743,5.895847626,22.99441998,1.4849398092799313e-43 -5200,2000/3/28,1.349552464,13.65610862,3.16384788,0.354031517,6.207756115,42.06785222,7.424699046399657e-44 -5201,2000/3/29,2.638036521,12.00351728,3.563568176,0.492272692,5.431344867,88.18539052,3.7123495231998283e-44 -5202,2000/3/30,7.202254207,12.38730972,2.149143184,1.00249838,5.8580719,336.9410149,3.7580800448527166e-05 -5203,2000/3/31,0.102438963,16.38823429,3.045049074,1.520006126,7.336490304,92.6476588,1.8789874880136154e-05 -5204,2000/4/1,0.899856508,17.44033572,4.613900772,1.485229444,7.53113748,83.32795746,9.394937440068077e-06 -5205,2000/4/2,1.472473992,17.52633723,4.93648797,1.160400625,7.509795518,100.3351923,4.697468720034038e-06 -5206,2000/4/3,1.103677581,17.44238902,4.82541336,1.061684531,7.488206419,83.31353276,2.348734360017019e-06 -5207,2000/4/4,0.795683205,17.93227211,4.362038709,1.211173169,7.76491131,63.3062486,1.1743671800085096e-06 -5208,2000/4/5,0.907428719,17.52089388,4.049105847,1.128083622,7.63540138,59.32769031,5.871835900042548e-07 -5209,2000/4/6,1.670123345,16.96058644,4.646748932,1.117518036,7.300355631,84.17120836,2.935917950021274e-07 -5210,2000/4/7,1.025964174,16.95243137,4.605587589,1.296527187,7.299544383,65.18189194,1.467958975010637e-07 -5211,2000/4/8,1.090703396,17.65252638,4.931180872,1.072166266,7.537964919,62.35502953,7.339794875053185e-08 -5212,2000/4/9,1.444502756,17.92952352,5.01706325,0.918157763,7.637276473,73.12184287,3.6698974375265925e-08 -5213,2000/4/10,5.997416739,17.70348799,5.554471288,0.970818125,7.443122221,286.7114648,1.8349487187632962e-08 -5214,2000/4/11,9.031589365,14.05523375,2.918515938,0.967219191,6.361722088,663.4525955,0.0020836559524997494 -5215,2000/4/12,1.347393389,13.39164967,2.070849668,1.097668653,6.226104045,278.9441731,0.001041014905141087 -5216,2000/4/13,0.750813993,15.42796331,2.494947611,1.750705017,6.971318568,161.6319852,0.0005205074525705435 -5217,2000/4/14,0.012203332,17.02683227,2.620508231,1.192537107,7.590385564,76.73056685,0.00026025372628527173 -5218,2000/4/15,1.001424343,15.36916511,3.341727755,0.445519034,6.813982604,101.8111014,0.00013012686314263586 -5219,2000/4/16,0.682213922,13.00250097,4.927116458,0.685100811,5.499916357,78.2607397,6.506343157131793e-05 -5220,2000/4/17,0.377188055,15.63813335,5.515593691,0.925637358,6.524894802,51.83637177,3.2531715785658966e-05 -5221,2000/4/18,0.165232701,17.04741231,5.400854091,1.113750963,7.154475208,31.44321284,1.6265857892829483e-05 -5222,2000/4/19,0.39225645,17.48289909,4.7014871,1.448925607,7.456694742,31.60478675,8.132928946414741e-06 -5223,2000/4/20,1.788320117,18.45589154,5.122901517,1.082297601,7.795329549,80.75092589,4.066464473207371e-06 -5224,2000/4/21,2.180393066,18.03540401,6.214992819,1.039086458,7.419037925,109.4414839,2.0332322366036854e-06 -5225,2000/4/22,9.373856747,17.46088331,7.043091147,1.256684716,6.990633667,549.7755662,0.004918384664318156 -5226,2000/4/23,4.801228986,18.21167163,7.396969577,1.323257326,7.249506047,492.2782107,0.0024541192635226627 -5227,2000/4/24,1.974974742,18.34787674,8.574609891,1.38245397,7.035729306,297.960507,0.0012270596317613314 -5228,2000/4/25,2.034271532,17.99030357,8.234034712,1.140102499,6.947374978,260.3780407,0.0006135298158806657 -5229,2000/4/26,3.170442183,16.89960568,7.971742182,0.971552623,6.496972532,330.0397582,0.00030676490794033284 -5230,2000/4/27,1.489110724,16.74183634,8.675073921,1.074697823,6.228128931,219.4092665,0.00015338245397016642 -5231,2000/4/28,4.070573403,16.82716906,9.164248521,0.934752236,6.124169787,388.1673711,7.669122698508321e-05 -5232,2000/4/29,3.455501675,17.46060594,9.01613125,1.165954945,6.476184507,397.0333009,3.8345613492541605e-05 -5233,2000/4/30,0.603336988,17.28677233,8.261266678,1.315570287,6.591717232,176.184434,1.9172806746270803e-05 -5234,2000/5/1,3.768944372,16.32723865,6.865291134,1.175789775,6.485912621,365.3842316,9.586403373135401e-06 -5235,2000/5/2,4.227830828,17.32326244,7.254953422,0.714541061,6.844739003,460.8574424,4.793201686567701e-06 -5236,2000/5/3,4.009831532,16.76234805,6.899698289,0.761529884,6.668001499,488.9587488,2.3966008432838503e-06 -5237,2000/5/4,3.956192825,15.87541219,6.46576732,0.596983419,6.364751546,513.8857291,1.1983004216419252e-06 -5238,2000/5/5,6.554048817,16.85005483,6.832868285,0.584204523,6.715798656,820.7009536,5.991502108209626e-07 -5239,2000/5/6,9.927765949,16.75320502,8.293794646,0.743546411,6.310513131,1431.175134,0.008238801954904503 -5240,2000/5/7,4.312118202,18.73484459,8.774121959,1.11206301,7.122204651,979.2992246,0.004110019144763615 -5241,2000/5/8,7.121340996,18.46546805,8.311626512,1.343961968,7.104172734,1309.01115,0.0021508846114733434 -5242,2000/5/9,0.264272258,20.32812158,8.151370231,1.018858209,7.988326555,455.1053854,0.0010751746017861844 -5243,2000/5/10,7.161677401,19.96754337,8.284422952,0.587805882,7.793369567,1115.570578,0.0005375873008930922 -5244,2000/5/11,10.78161599,18.85173294,7.886922899,0.445139973,7.367715252,1875.734767,0.017526997824585378 -5245,2000/5/12,2.556623058,17.38420412,6.97069736,0.44432836,6.902463245,921.4333715,0.008719876435516933 -5246,2000/5/13,0.0,19.15063791,8.222768066,0.654397002,7.423603262,367.3124793,0.0043599382177584665 -5247,2000/5/14,1.905058467,20.21461015,9.918283292,0.861548096,7.518401656,426.7972633,0.0021799691088792332 -5248,2000/5/15,5.321954329,19.48150287,11.58601936,0.64627463,6.67451995,770.4892785,0.0010899845544396166 -5249,2000/5/16,9.938451698,17.87319748,11.73112884,0.351033542,5.755298251,1503.835233,0.02928389696273108 -5250,2000/5/17,25.16525719,15.96807631,10.5401239,0.467036281,5.151359077,5281.070317,0.23461657602943756 -5251,2000/5/18,17.54183473,15.23736916,7.723016528,0.189023152,5.71252928,6281.510257,0.4777461848807311 -5252,2000/5/19,0.609600793,13.22007573,6.617209025,0.155054481,5.067268712,1992.475098,0.23334490748580117 -5253,2000/5/20,0.637268038,13.56995015,6.96292831,0.288825147,5.130457286,1108.589369,0.11667245374290058 -5254,2000/5/21,0.707591991,16.62895878,8.412102112,0.743830354,6.178583689,775.8176581,0.05833622687145029 -5255,2000/5/22,1.111512985,17.46774321,9.788309509,0.968560141,6.188959649,633.0907522,0.029168113435725146 -5256,2000/5/23,1.117600013,17.24906186,9.564206895,1.024858706,6.145265982,497.9872361,0.014584056717862573 -5257,2000/5/24,1.204402185,18.09793386,10.31484639,1.21935081,6.340622307,410.1502141,0.0072920283589312865 -5258,2000/5/25,2.722488998,18.48942674,11.44908545,1.255500715,6.172049242,539.4037848,0.0036460141794656432 -5259,2000/5/26,0.427471385,19.2540595,11.83964116,1.236511728,6.443316222,248.1312096,0.0018230070897328216 -5260,2000/5/27,0.258429576,19.53746229,11.7996234,1.339087174,6.604140965,148.9692067,0.0009115035448664108 -5261,2000/5/28,1.068115838,20.22359196,12.01625039,1.203991743,6.891010134,180.8393209,0.0004557517724332054 -5262,2000/5/29,6.995798519,20.50182593,10.53881606,1.370573038,7.455759836,749.7543946,0.0002278758862166027 -5263,2000/5/30,6.264251559,21.21470431,10.96243242,1.113188985,7.689798555,880.4032778,0.00011393794310830135 -5264,2000/5/31,3.370818431,21.13092448,12.08978073,1.241881185,7.330276125,629.4160935,5.6968971554150676e-05 -5265,2000/6/1,7.29731148,21.26940996,12.63336603,1.18252455,7.233035332,1057.82388,0.0014497650378613607 -5266,2000/6/2,6.946229653,20.62946693,12.54471205,0.799415377,6.923010968,1199.344754,0.0012240097704310613 -5267,2000/6/3,3.848010479,21.14664268,12.10991545,0.528431542,7.325983639,873.9360356,0.0006062969552669713 -5268,2000/6/4,2.825900935,21.88944127,12.84769741,1.191400016,7.483563602,662.8394065,0.00030314847763348565 -5269,2000/6/5,1.601011963,22.17403683,13.11347495,1.613407195,7.547990276,439.5759464,0.00015157423881674283 -5270,2000/6/6,3.968395783,22.66684852,13.12749418,1.74295799,7.798256174,613.149441,7.578711940837141e-05 -5271,2000/6/7,2.428571259,22.76192522,13.97185114,1.398194003,7.582381143,462.0133987,3.7893559704185706e-05 -5272,2000/6/8,9.328898595,22.72320254,14.24117247,1.607422806,7.47032358,1204.149771,0.03193933974684868 -5273,2000/6/9,7.753154119,23.33083823,14.65850356,1.800490997,7.658623248,1333.385583,0.017488804065714892 -5274,2000/6/10,4.486317547,22.35400787,13.75890864,1.661863021,7.428416171,996.6346566,0.008727393154864215 -5275,2000/6/11,5.490639595,23.35688329,14.37985111,1.614127917,7.76195098,1071.058011,0.004363696577432108 -5276,2000/6/12,9.795095814,22.65167315,14.12546021,1.563267625,7.464073211,1754.531978,0.04228121935062641 -5277,2000/6/13,10.5460854,20.02687148,12.58430413,1.084989173,6.570989907,2242.538077,0.09812719021531686 -5278,2000/6/14,1.514087263,20.13982725,12.40572449,0.712751528,6.690796168,930.5770138,0.04831139197667555 -5279,2000/6/15,8.397213755,20.08653893,12.00452129,0.609278123,6.792849244,1761.150432,0.059631620036767946 -5280,2000/6/16,6.066405494,20.70506203,12.39502861,0.478577131,6.989545335,1586.713328,0.02942358581420186 -5281,2000/6/17,3.668388575,19.87169263,12.35122114,0.539223682,6.563306971,1137.429848,0.01471179290710093 -5282,2000/6/18,3.178757128,20.19639678,12.25639746,0.480685059,6.765774166,923.3271931,0.007355896453550465 -5283,2000/6/19,4.641058574,20.75250947,12.77251935,0.661963094,6.888734402,1045.665685,0.0036779482267752326 -5284,2000/6/20,13.00669682,21.39947817,13.37717929,1.043280713,7.031155688,2505.463531,0.11825623907835957 -5285,2000/6/21,13.19662021,20.92373436,13.96047863,1.237243635,6.559889228,3319.437891,0.22542069489160363 -5286,2000/6/22,6.893658148,20.13216094,13.86184973,1.656826418,6.145664119,2438.310869,0.13418526371365233 -5287,2000/6/23,3.770725195,21.24355943,13.79704022,1.649261289,6.797379107,1613.597379,0.06672074657906696 -5288,2000/6/24,2.640115077,21.36167213,14.06668543,1.371221689,6.764203484,1134.812962,0.03336037328953348 -5289,2000/6/25,4.123009705,21.56380766,14.05226654,1.166639636,6.881474658,1192.389557,0.01668018664476674 -5290,2000/6/26,15.28902524,21.04741592,13.97881241,1.092319282,6.619760166,3353.51897,0.24793629260252883 -5291,2000/6/27,5.921743761,20.52201951,13.40809716,1.104349787,6.537498055,2178.360233,0.12065723480995137 -5292,2000/6/28,1.712637886,22.21637607,13.28953077,0.770065436,7.488891227,1090.786445,0.060328617404975686 -5293,2000/6/29,13.70053592,23.03210035,13.83356166,0.672604411,7.747069868,3157.804048,0.22935210675264217 -5294,2000/6/30,6.822601265,20.40538494,12.63721558,0.492209108,6.743509588,2325.611007,0.11442998980178531 -5295,2000/7/1,3.209548225,20.36038283,-12.02502418,0.906336479,8.812782569,1422.964393,0.057154786424640315 -5296,2000/7/2,1.481875036,23.05187666,14.19569842,1.036509287,7.641136163,831.7603361,0.028577393212320158 -5297,2000/7/3,6.734510677,22.96970451,14.72973372,1.136628098,7.416223105,1428.709759,0.014288696606160079 -5298,2000/7/4,15.25050842,22.53497285,14.92875175,0.708710487,7.102469841,3195.371959,0.28905865445795237 -5299,2000/7/5,5.672790674,20.7063358,14.63420038,0.495670351,6.161639648,2010.235214,0.13965234516487451 -5300,2000/7/6,5.639003231,21.91965141,14.99933782,0.640512502,6.72446739,1789.42449,0.06982617258243726 -5301,2000/7/7,11.05288498,21.76860648,14.40172464,0.860005128,6.866673363,2862.610853,0.20495151820528457 -5302,2000/7/8,14.05270179,19.82847435,14.33735427,0.744664593,5.763062145,4095.788197,0.4676770183183192 -5303,2000/7/9,15.09260826,19.28380434,14.44682835,0.559206433,5.375475044,5327.27993,0.7313252035650213 -5304,2000/7/10,9.689659845,19.74123164,14.34037453,0.591448896,5.709301979,4485.439062,0.5944010359620053 -5305,2000/7/11,4.205873592,21.0306107,14.10992727,0.467374553,6.561593318,2692.313453,0.28985018745706487 -5306,2000/7/12,8.447425423,21.14594875,14.27690317,0.977894339,6.563716922,3298.184816,0.26157955131705485 -5307,2000/7/13,4.038383422,20.99041757,13.58762581,1.013322907,6.733544916,2149.815728,0.12717768215572478 -5308,2000/7/14,3.472954698,22.50660465,13.86999318,0.954611598,7.46024456,1630.432447,0.06358884107786239 -5309,2000/7/15,9.933774207,23.51123199,14.05228641,0.789492255,7.936982597,2765.16155,0.14730086518212743 -5310,2000/7/16,9.05528807,23.07309011,14.15774294,0.939266641,7.671449058,2821.953611,0.15281201558880503 -5311,2000/7/17,10.37986248,22.4262346,14.49294555,1.30030343,7.206595024,3197.881449,0.2670153489579228 -5312,2000/7/18,1.836934314,21.78864836,14.68890966,1.182524344,6.776937786,1423.809827,0.12763430995751748 -5313,2000/7/19,5.988251894,21.68603749,14.25556694,0.968044557,6.882477397,1778.656495,0.06381715497875874 -5314,2000/7/20,9.234361087,21.86646969,14.0704251,0.718773818,7.050419234,2450.205291,0.16199469777414593 -5315,2000/7/21,13.33768509,20.8472875,13.99832304,0.707473684,6.508603998,3668.753928,0.497086603345116 -5316,2000/7/22,12.83346635,21.64386363,14.1514064,0.738272037,6.900503548,4257.884072,0.6361723771751118 -5317,2000/7/23,8.696793596,21.72142247,14.25739302,0.635638102,6.906406162,3521.40299,0.4346735162552923 -5318,2000/7/24,2.592821994,22.9628166,14.28079063,0.923528598,7.581735091,1815.863531,0.21260927178529807 -5319,2000/7/25,5.774890075,22.65972181,14.20247163,0.915168609,7.445301812,1996.383222,0.10630463589264903 -5320,2000/7/26,2.170776587,23.14183821,14.09649727,0.992787163,7.741449042,1173.859826,0.053152317946324516 -5321,2000/7/27,3.227160965,24.56756067,14.49434289,0.857755522,8.375878507,1061.841841,0.026576158973162258 -5322,2000/7/28,8.794062345,23.6362882,14.69291401,0.492042658,7.816551753,1849.334685,0.07400922194054706 -5323,2000/7/29,5.731221199,21.87863113,13.22725897,0.605256712,7.354475503,1526.84428,0.03511866867405194 -5324,2000/7/30,0.302410445,22.24648382,13.26002244,0.678716545,7.539911548,584.6344561,0.01755933433702597 -5325,2000/7/31,11.65551757,21.62456238,13.63085734,1.050013098,7.087978885,2056.860616,0.2750077587253388 -5326,2000/8/1,10.61553126,19.80363855,13.86400425,1.483095984,5.974506322,2470.589155,0.4190553824765658 -5327,2000/8/2,3.559191997,21.10628451,13.81152902,1.518901291,6.742425894,1401.519798,0.20051023683527752 -5328,2000/8/3,6.64117938,21.94101099,14.10684911,1.71689571,7.101259385,1713.962039,0.10025511841763876 -5329,2000/8/4,12.43576949,22.07410714,14.28158404,1.083845227,7.114881221,2977.727171,0.38414481771821707 -5330,2000/8/5,9.872761984,20.31498907,14.46135439,0.638550192,6.033011719,2972.833299,0.44057403558244995 -5331,2000/8/6,10.00255429,20.40551313,14.321886,0.501469917,6.1480207,3229.394114,0.48440682049539296 -5332,2000/8/7,10.42485527,20.80712219,13.05818647,0.46424616,6.855779524,3581.222948,0.4970714061228484 -5333,2000/8/8,5.654932589,20.58062179,12.83812185,0.439950789,6.811102289,2502.750743,0.23873293199921128 -5334,2000/8/9,1.570748911,21.04405223,13.029574,0.784965157,6.997794531,1271.815388,0.11936646599960564 -5335,2000/8/10,4.373108235,20.31374146,13.44473143,0.952023808,6.451349919,1431.501938,0.05968323299980282 -5336,2000/8/11,4.426523918,21.12122771,13.45920988,1.129353282,6.896741135,1361.403444,0.02984161649990141 -5337,2000/8/12,3.55851647,21.54517365,13.5992161,1.089731488,7.082344577,1112.692246,0.014920808249950705 -5338,2000/8/13,2.492454977,21.76753913,14.08732402,0.96311399,7.035409876,817.5397957,0.0074604041249753525 -5339,2000/8/14,5.182630977,21.63703569,14.30555642,0.817892643,6.884837394,1096.710534,0.0037302020624876762 -5340,2000/8/15,14.70746784,21.03229377,14.47857749,1.17920845,6.472597122,2865.757529,0.49076881699169106 -5341,2000/8/16,11.57411578,20.77420824,14.3517398,0.825948982,6.37525096,3161.642473,0.57740696419851 -5342,2000/8/17,8.740243744,21.35421904,14.4022311,0.533456534,6.694639403,2880.185754,0.42277030713345765 -5343,2000/8/18,7.768121345,21.34751599,14.67790248,0.61411896,6.584639583,2678.436885,0.2925368984819031 -5344,2000/8/19,11.04741566,20.90291667,14.54227776,0.722820456,6.380837908,3486.47774,0.4882910572979826 -5345,2000/8/20,3.756033795,21.25086991,14.39994561,0.51379068,6.64413155,1974.952176,0.2313799140858297 -5346,2000/8/21,2.675398314,22.26495729,14.42831944,0.219443851,7.213079951,1339.521611,0.11568995704291485 -5347,2000/8/22,3.475512259,22.38562166,14.54588747,0.355660135,7.241397946,1223.045548,0.057844978521457424 -5348,2000/8/23,3.555323022,23.33482509,14.00364216,0.382140003,7.948038951,1094.650747,0.028922489260728712 -5349,2000/8/24,4.87389351,23.27472089,14.52526192,0.266764828,7.74844164,1186.57384,0.014461244630364356 -5350,2000/8/25,2.855919739,23.27808498,13.87564377,0.256816419,7.965241895,840.9172318,0.007230622315182178 -5351,2000/8/26,3.575723245,22.6215508,13.87615901,0.379104832,7.616103329,810.0333286,0.003615311157591089 -5352,2000/8/27,11.94297591,21.03196274,13.60980646,0.374784273,6.838852145,2033.337154,0.2850943130870701 -5353,2000/8/28,10.90590139,19.97134313,12.99315175,0.489476207,6.475854356,2467.655953,0.400731320842431 -5354,2000/8/29,11.72292828,19.23632728,12.55283946,0.514500686,6.231953723,3073.972934,0.5436276853858523 -5355,2000/8/30,13.05306648,20.15714934,12.62630193,0.559937173,6.716054423,3934.454347,0.6964369398229209 -5356,2000/8/31,10.62706247,21.161241,13.18169651,0.983759601,7.074330713,3839.337462,0.5971083692086522 -5357,2000/9/1,21.6629972,21.18025802,13.83116164,1.315637102,6.857375472,7610.261939,1.4335179958569997 -5358,2000/9/2,27.95200902,21.58453639,14.27961155,0.985435069,6.922740128,13842.01748,2.563541421504161 -5359,2000/9/3,17.45157198,19.78824208,14.01692613,0.696106187,5.979011278,10965.55303,2.42822610645051 -5360,2000/9/4,3.999735769,20.1606824,13.48654333,0.378105976,6.418308219,5002.971764,1.1480186555536047 -5361,2000/9/5,6.199524413,20.12194191,13.26713181,0.578954558,6.483674208,4116.520677,0.5740093277768024 -5362,2000/9/6,4.497163143,20.38607192,12.72955519,0.486247787,6.828714954,3010.755216,0.2870046638884012 -5363,2000/9/7,5.840648763,20.36727712,13.15448296,0.593789364,6.670542369,2768.23137,0.1435023319442006 -5364,2000/9/8,7.627271725,20.87834964,13.31691689,0.842245417,6.900035458,2916.718967,0.15219730921772956 -5365,2000/9/9,4.480185792,20.70311532,13.40710317,0.756414196,6.773188381,2072.494132,0.07164921894623416 -5366,2000/9/10,8.772202314,20.88726483,13.33125076,0.828626878,6.907221909,2717.68342,0.23892327486291556 -5367,2000/9/11,3.682299445,21.43291141,13.34387188,0.497436496,7.207731143,1695.805759,0.10840278990348139 -5368,2000/9/12,9.295845627,20.34913273,13.3607727,0.287125642,6.601454252,2545.471344,0.3421151710332398 -5369,2000/9/13,1.740171759,19.24991874,11.74819108,0.159702295,6.575622451,1183.511134,0.1556748272383227 -5370,2000/9/14,0.94399467,19.09216926,11.36278007,0.144065092,6.623865452,693.5090299,0.07783741361916136 -5371,2000/9/15,1.157653804,19.32145833,10.212677,0.302925738,7.094357861,530.8796303,0.03891870680958068 -5372,2000/9/16,3.323669625,18.0361708,9.12723283,0.380747534,6.764504021,707.071983,0.01945935340479034 -5373,2000/9/17,8.215716227,17.41815514,9.041244252,0.690789172,6.48947564,1405.846335,0.16608066319626744 -5374,2000/9/18,1.295560108,16.77357756,8.822807813,0.704180771,6.237856065,603.9551242,0.07595973369025733 -5375,2000/9/19,1.435200591,16.86109771,9.277533085,0.721019276,6.149571055,439.2190805,0.03797986684512866 -5376,2000/9/20,0.25184141,19.35757873,9.985240739,0.519871045,7.195377131,226.8916857,0.01898993342256433 -5377,2000/9/21,0.689877216,20.3762852,10.63021165,1.079587153,7.52971096,193.0687595,0.009494966711282166 -5378,2000/9/22,1.914677167,19.64622628,11.28359458,0.788388339,6.970824674,264.017124,0.004747483355641083 -5379,2000/9/23,4.935800576,19.49319522,11.15013594,0.98720468,6.936678362,539.8319086,0.0023737416778205414 -5380,2000/9/24,3.727315845,19.48425178,11.37280232,1.296450461,6.86575567,510.0385075,0.0011868708389102707 -5381,2000/9/25,4.017265198,18.900878,11.16300979,1.317297427,6.629600984,550.238043,0.0005934354194551354 -5382,2000/9/26,0.141070307,20.21828567,11.09847577,1.12268687,7.338896944,193.6480856,0.0002967177097275677 -5383,2000/9/27,1.148597457,20.75818759,10.95574926,1.141316707,7.658232496,191.6213741,0.00014835885486378384 -5384,2000/9/28,8.43436482,19.79574781,11.14837866,0.727793629,7.114794013,820.9047757,0.07562189464701259 -5385,2000/9/29,2.344728266,19.65881003,10.62504303,1.102336696,7.204082193,449.3670976,0.035648328521763264 -5386,2000/9/30,4.441943944,17.86196467,10.02046658,1.154706666,6.471029274,583.1833001,0.017824164260881632 -5387,2000/10/1,2.552064872,17.2575075,9.823221013,0.777697116,6.224857413,436.9967137,0.008912082130440816 -5388,2000/10/2,9.392775096,18.95136,9.498726216,0.669437041,7.17674616,1178.416497,0.11703144189767722 -5389,2000/10/3,10.79869296,19.00262319,9.423310821,0.849721875,7.226208383,1776.036689,0.24427312873262347 -5390,2000/10/4,11.18895131,17.99489016,8.55917864,0.587339088,6.966270953,2294.858947,0.35363723470522324 -5391,2000/10/5,5.691053612,18.86499913,8.958876648,0.566902228,7.287930767,1651.752021,0.1701969067254524 -5392,2000/10/6,3.625328018,20.52409444,9.35734247,0.959052812,7.993507358,1166.033744,0.0850984533627262 -5393,2000/10/7,2.883321799,21.54652364,10.05491634,1.155926571,8.326850162,882.8089064,0.0425492266813631 -5394,2000/10/8,0.268018318,21.93970292,10.70135873,1.398755355,8.36690029,401.4812756,0.02127461334068155 -5395,2000/10/9,1.240073624,21.43175019,10.63139756,1.457721607,8.137564571,355.7166703,0.010637306670340775 -5396,2000/10/10,0.631176005,20.56468945,10.15841563,1.127899358,7.834135227,232.1555165,0.0053186533351703875 -5397,2000/10/11,0.228102688,20.48205689,10.01779122,0.66273753,7.83408603,138.3617753,0.0026593266675851938 -5398,2000/10/12,0.873098823,20.06029936,9.54212026,0.776521629,7.752145606,140.1219474,0.0013296633337925969 -5399,2000/10/13,1.226824892,18.78020186,8.918557389,0.406927898,7.291412595,142.8791026,0.0006648316668962984 -5400,2000/10/14,0.182580976,18.85144297,8.999428544,0.907243488,7.309626139,68.2729081,0.0003324158334481492 -5401,2000/10/15,0.088080537,17.87537631,7.615566047,0.817367905,7.186113659,40.33177869,0.0001662079167240746 -5402,2000/10/16,0.109526447,15.24097356,6.195751106,0.671570787,6.303235754,28.37485723,8.31039583620373e-05 -5403,2000/10/17,0.136719394,16.64050905,6.535357021,0.739583575,6.869429969,21.57036016,4.155197918101865e-05 -5404,2000/10/18,0.830991046,16.77740989,6.679918588,0.887032314,6.903681218,41.54812245,2.0775989590509326e-05 -5405,2000/10/19,0.423766243,17.62844189,6.576710745,0.636479698,7.318176522,28.74280264,1.0387994795254663e-05 -5406,2000/10/20,1.702644719,18.20560453,7.069296764,0.704472288,7.481795687,67.69457858,5.193997397627332e-06 -5407,2000/10/21,2.887105787,17.65791526,5.883413744,0.80183093,7.478353247,126.1586964,2.596998698813666e-06 -5408,2000/10/22,1.784060897,17.6326239,6.290163788,1.056025017,7.391387067,106.5566269,1.298499349406833e-06 -5409,2000/10/23,3.736359114,16.69602231,7.211971355,0.81513684,6.760913793,200.2297404,6.492496747034164e-07 -5410,2000/10/24,5.158214175,15.71815235,6.608564386,0.754835944,6.453630999,341.3100856,3.246248373517082e-07 -5411,2000/10/25,2.675598218,15.04329663,6.524391544,0.61689835,6.162537745,263.6421226,1.623124186758541e-07 -5412,2000/10/26,2.53164314,15.89296469,6.324800275,0.733767381,6.608948364,251.5507184,8.115620933792706e-08 -5413,2000/10/27,1.180369158,15.21878031,5.619573663,0.842505777,6.465271997,161.5261215,4.057810466896353e-08 -5414,2000/10/28,8.178025446,13.03019082,4.065646677,0.557806053,5.836756187,667.4024241,0.04406137272652473 -5415,2000/10/29,4.391149072,11.84503286,1.340135692,0.495987323,5.852607763,572.6335226,0.021616081598954232 -5416,2000/10/30,6.104105473,10.36741417,1.580625232,0.607203829,5.219707162,787.0936333,0.028513460863580163 -5417,2000/10/31,0.871883763,12.98162742,0.330108678,0.265792735,6.446346348,330.4996608,0.014079501520479813 -5418,2000/11/1,1.180607825,13.25549707,-0.490269725,0.573871511,6.647766365,255.5803231,0.007039750760239907 -5419,2000/11/2,0.045309665,13.86091097,-0.64845949,0.815069022,6.896673513,118.113043,0.0035198753801199533 -5420,2000/11/3,0.0,14.16415928,-1.824883371,0.639010345,7.113970461,69.24866282,0.0017599376900599767 -5421,2000/11/4,0.141122285,13.7309648,-1.249858622,0.579656638,6.909936125,53.20712675,0.0008799688450299883 -5422,2000/11/5,0.00699995,14.45544635,0.378769557,1.060874801,7.029544464,31.36217004,0.00043998442251499416 -5423,2000/11/6,0.100415118,14.31832607,0.709110331,1.008362944,6.941799612,24.59062767,0.00021999221125749708 -5424,2000/11/7,0.000464901,14.8665008,-0.464665356,0.958264036,7.280453845,14.00884696,0.00010999610562874854 -5425,2000/11/8,0.0,14.55065138,0.053885826,0.783821832,7.111746544,8.863653566,5.499805281437427e-05 -5426,2000/11/9,0.188167914,15.21938879,1.498439083,1.057392691,7.213562665,11.76798077,2.7499026407187135e-05 -5427,2000/11/10,0.765950026,14.42185147,1.815983719,1.093517438,6.854075658,27.84442938,1.3749513203593568e-05 -5428,2000/11/11,0.105347223,14.10154792,2.29071004,0.963498057,6.657323318,11.40634174,6.874756601796784e-06 -5429,2000/11/12,0.484183908,13.72870208,2.045004448,1.020417948,6.545666336,17.27336698,3.437378300898392e-06 -5430,2000/11/13,0.286313309,13.95095233,2.880500009,1.113189532,6.505740642,12.7503709,1.718689150449196e-06 -5431,2000/11/14,0.019697619,14.4419509,2.662186758,1.205728949,6.748879301,5.307936145,8.59344575224598e-07 -5432,2000/11/15,0.000466853,12.72175213,-0.902337739,0.743032621,6.533142205,2.896595118,4.29672287612299e-07 -5433,2000/11/16,0.0,12.36787373,-0.775869068,0.593508385,6.388966848,1.830034356,2.148361438061495e-07 -5434,2000/11/17,0.046579276,13.01744388,0.898926155,1.049434966,6.439670741,1.884395118,1.0741807190307475e-07 -5435,2000/11/18,0.754443285,12.68117313,2.593595594,1.04320919,6.039073184,12.03943661,5.3709035951537373e-08 -5436,2000/11/19,2.195187258,10.94272088,-0.78812028,0.878664161,5.859422828,43.40368006,2.6854517975768687e-08 -5437,2000/11/20,2.415293554,8.003401423,-4.523649547,0.438949364,5.173798923,69.92844362,1.3427258987884343e-08 -5438,2000/11/21,1.961879973,6.895518348,-3.748359877,0.448481865,4.730397658,77.49844794,6.713629493942172e-09 -5439,2000/11/22,0.349704003,10.54361665,-1.342459735,0.614589644,5.782124988,34.28456944,3.356814746971086e-09 -5440,2000/11/23,0.021111625,11.57041355,-1.014561906,0.731448134,6.131964871,15.24804589,1.678407373485543e-09 -5441,2000/11/24,0.0,12.00774227,-1.047720226,0.751797871,6.302607215,8.875374618,8.392036867427715e-10 -5442,2000/11/25,0.066008871,11.61926421,-1.271230962,0.858636357,6.182631389,7.187000765,4.1960184337138573e-10 -5443,2000/11/26,0.006326766,12.32608952,-0.562519967,0.816899813,6.374941275,4.185448435,2.0980092168569287e-10 -5444,2000/11/27,0.092902603,13.71373725,1.562724894,0.986367184,6.651281457,4.293095036,1.0490046084284643e-10 -5445,2000/11/28,1.271862502,13.35700934,2.222201452,1.158857648,6.407179747,25.72111946,5.2450230421423216e-11 -5446,2000/11/29,3.347131528,10.42758095,0.211454122,1.015312388,5.546638798,89.1984379,2.6225115210711608e-11 -5447,2000/11/30,0.616780573,10.48792415,-0.150256325,1.042973029,5.625004061,40.83761499,1.3112557605355804e-11 -5448,2000/12/1,0.410242147,12.2366744,1.730183891,1.010251993,6.033632407,26.3606045,6.556278802677902e-12 -5449,2000/12/2,2.459528336,10.76585969,-1.063470518,0.99101363,5.853212862,84.69261884,3.278139401338951e-12 -5450,2000/12/3,2.19001994,8.179205945,-2.738289038,0.521150277,5.095681531,100.5577241,1.6390697006694755e-12 -5451,2000/12/4,0.542897087,8.692431019,-1.889283195,0.799148888,5.18473366,50.08434816,8.195348503347378e-13 -5452,2000/12/5,0.058988254,9.464660033,-1.587310315,0.876864587,5.434453316,22.33317588,4.097674251673689e-13 -5453,2000/12/6,0.088053055,9.876739891,-2.432832241,0.792507719,5.679690429,15.1069782,2.0488371258368444e-13 -5454,2000/12/7,0.042080186,9.309531293,-2.435573063,0.77323374,5.475920439,9.693091548,1.0244185629184222e-13 -5455,2000/12/8,0.095352356,10.10918786,-2.389946197,0.877314875,5.762847006,8.106843271,5.122092814592111e-14 -5456,2000/12/9,0.025882491,9.938205419,-3.179820158,0.863290671,5.774256535,4.805126256,2.5610464072960555e-14 -5457,2000/12/10,0.149763939,9.914300936,-2.234045079,0.836818259,5.679012114,5.911918197,1.2805232036480277e-14 -5458,2000/12/11,0.205903338,10.60918028,-1.272982834,0.852285768,5.83265372,6.548405266,6.402616018240139e-15 -5459,2000/12/12,0.37853408,8.843340298,-4.30501643,1.023136394,5.481640401,9.489429504,3.2013080091200694e-15 -5460,2000/12/13,0.067063338,7.855586898,-3.884307302,0.64718337,5.107600322,4.244193224,1.6006540045600347e-15 -5461,2000/12/14,0.533918595,9.117945714,-2.256923178,0.836504661,5.395767001,11.0163551,8.003270022800173e-16 -5462,2000/12/15,0.150043369,9.106652377,-2.754304774,0.879835032,5.444852719,5.831331961,4.0016350114000867e-16 -5463,2000/12/16,0.073426509,10.50738561,-2.562843921,0.760416616,5.933642892,3.433528172,2.0008175057000433e-16 -5464,2000/12/17,0.005442949,11.51865015,-1.693979654,1.018773328,6.224495489,1.68300316,1.0004087528500217e-16 -5465,2000/12/18,0.003206443,11.78617564,-1.833355206,1.288283169,6.338424333,1.034329887,5.0020437642501084e-17 -5466,2000/12/19,0.000753824,11.73727157,-2.56477567,0.902241096,6.384959448,0.656077335,2.5010218821250542e-17 -5467,2000/12/20,0.067225767,10.83190512,-2.56107599,0.696621606,6.055088486,1.092680236,1.2505109410625271e-17 -5468,2000/12/21,0.179108863,10.71900706,-3.296581979,0.927756241,6.075197188,2.113595239,6.2525547053126355e-18 -5469,2000/12/22,0.014649885,11.17878935,-3.136215906,0.603812138,6.22895503,0.780077799,3.1262773526563177e-18 -5470,2000/12/23,0.001584326,11.88979611,-3.076505856,0.664359636,6.482223903,0.379609297,1.5631386763281589e-18 -5471,2000/12/24,0.009643423,11.48893817,-3.310863273,0.646896818,6.354459605,0.295629093,7.815693381640794e-19 -5472,2000/12/25,0.013012502,10.80756497,-3.889022428,0.687404325,6.150582771,0.244416234,3.907846690820397e-19 -5473,2000/12/26,0.013820297,9.08729754,-4.64283976,0.777269324,5.599387948,0.199962479,1.9539233454101986e-19 -5474,2000/12/27,0.0,9.466754162,-5.268883972,0.703317228,5.765426948,0.09388751,9.769616727050993e-20 -5475,2000/12/28,0.028226203,9.5695675,-4.629850354,0.765721323,5.765341354,0.188056713,4.8848083635254965e-20 -5476,2000/12/29,0.091244769,9.879821801,-4.479199119,0.939293044,5.863800417,0.469294066,2.4424041817627482e-20 -5477,2000/12/30,7.24e-05,10.59440579,-4.020600928,0.644168197,6.085289872,0.134459521,1.2212020908813741e-20 -5478,2000/12/31,0.068875189,11.62611798,-2.792204206,0.921516721,6.368233196,0.327749961,6.1060104544068706e-21 -5479,2001/1/1,0.021730761,12.67145166,-0.319810169,1.591967302,6.523432515,0.181079763,3.0530052272034353e-21 -5480,2001/1/2,0.002376713,12.43116462,-0.520396932,1.161868487,6.453622787,0.080538362,1.5265026136017176e-21 -5481,2001/1/3,0.004267447,11.41131926,-3.079079403,0.963544165,6.312084348,0.056468976,7.632513068008588e-22 -5482,2001/1/4,0.217712736,10.42607312,-2.021262017,1.162279665,5.85978706,0.665861065,3.816256534004294e-22 -5483,2001/1/5,1.07874425,9.714772592,-2.733653151,1.728313169,5.670317264,5.402412508,1.908128267002147e-22 -5484,2001/1/6,0.158199675,8.968098429,-4.03399328,1.216172393,5.51626656,2.343511036,9.540641335010735e-23 -5485,2001/1/7,0.207543652,9.739677676,-4.009748061,1.459467163,5.783694622,2.166165007,4.7703206675053676e-23 -5486,2001/1/8,0.082949957,9.555173853,-4.378324519,1.082882564,5.74404623,1.310277795,2.3851603337526838e-23 -5487,2001/1/9,0.002545404,8.950323043,-6.449730692,1.194311565,5.6420664,0.583187634,1.1925801668763419e-23 -5488,2001/1/10,0.023744966,8.239376975,-7.525865036,1.279842947,5.440395956,0.465908811,5.9629008343817095e-24 -5489,2001/1/11,0.00191768,8.497864107,-7.03913373,1.148257517,5.511223718,0.258305667,2.9814504171908548e-24 -5490,2001/1/12,0.0,8.859469156,-6.822450226,0.795583084,5.622717098,0.157837172,1.4907252085954274e-24 -5491,2001/1/13,0.001615748,9.91436805,-5.803363268,0.854848146,5.938682699,0.108105972,7.453626042977137e-25 -5492,2001/1/14,0.502986482,10.06272761,-5.301778527,0.988697445,5.966963286,2.284402127,3.7268130214885685e-25 -5493,2001/1/15,0.527064049,8.57814969,-4.443229001,0.787390887,5.40726173,3.564435827,1.8634065107442842e-25 -5494,2001/1/16,0.963330457,7.950993349,-2.792382049,0.811781183,5.037391184,8.370517174,9.317032553721421e-26 -5495,2001/1/17,0.123476758,9.752255223,-2.859782175,1.114274068,5.689255625,3.337720684,4.6585162768607106e-26 -5496,2001/1/18,0.043747197,10.83845398,-2.644375695,1.00183084,6.061598495,1.697303711,2.3292581384303553e-26 -5497,2001/1/19,0.005361332,11.12795578,-2.391170077,0.943357191,6.143923053,0.911941766,1.1646290692151776e-26 -5498,2001/1/20,0.041626002,11.32819873,-2.515982494,1.222067848,6.226800322,0.832178825,5.823145346075888e-27 -5499,2001/1/21,0.052823016,11.56116645,-2.605068703,1.558491223,6.318011966,0.748270856,2.911572673037944e-27 -5500,2001/1/22,0.093157261,12.39906452,-3.038913306,1.493696681,6.653986344,0.873385147,1.455786336518972e-27 -5501,2001/1/23,0.307667212,12.02595581,-0.76511341,1.658397002,6.311476783,2.105257287,7.27893168259486e-28 -5502,2001/1/24,0.198372688,11.3065606,-0.921532061,2.055893603,6.054350173,1.798104809,3.63946584129743e-28 -5503,2001/1/25,0.060167842,10.2116599,-4.600581169,1.495154426,5.970298734,0.938864477,1.819732920648715e-28 -5504,2001/1/26,0.025178939,9.952032153,-5.838934881,1.203798127,5.938893878,0.535001337,9.098664603243575e-29 -5505,2001/1/27,0.0,11.3874934,-5.101760566,1.128414291,6.399198991,0.27039374,4.5493323016217877e-29 -5506,2001/1/28,0.196293007,11.98852188,-3.865324739,1.249680078,6.548255582,1.077053699,2.2746661508108938e-29 -5507,2001/1/29,0.467577087,11.47896455,-2.710525476,1.410173136,6.284738265,2.77592014,1.1373330754054469e-29 -5508,2001/1/30,0.097781013,13.71929252,-0.666260844,1.78342697,6.937165063,1.300675013,5.6866653770272346e-30 -5509,2001/1/31,0.048920876,15.65160357,-0.267862873,1.874067157,7.645042824,0.746476218,2.8433326885136173e-30 -5510,2001/2/1,0.369878095,15.62566878,0.163788626,1.944023338,7.592071484,2.267392,1.4216663442568086e-30 -5511,2001/2/2,0.116033052,15.52392462,0.420985476,1.916820843,7.52382696,1.284850348,7.108331721284043e-31 -5512,2001/2/3,0.0,15.04517129,-0.573973281,1.54543674,7.430227887,0.48533584,3.5541658606420216e-31 -5513,2001/2/4,0.001124668,14.64396475,-0.781604165,1.970652288,7.291893938,0.281562479,1.7770829303210108e-31 -5514,2001/2/5,0.031018807,13.26545544,-0.547901621,1.861591973,6.738372569,0.293669449,8.885414651605054e-32 -5515,2001/2/6,0.029368696,12.4156528,-3.920473742,1.526557161,6.685253649,0.242943032,4.442707325802527e-32 -5516,2001/2/7,0.00012959,12.80284282,-4.371096194,0.880591314,6.842284816,0.11178685,2.2213536629012635e-32 -5517,2001/2/8,0.005979566,12.84434577,-2.87526505,1.234336688,6.772293946,0.083238415,1.1106768314506318e-32 -5518,2001/2/9,1.994414909,12.31715307,-1.857021798,0.945030795,6.497696662,11.78390178,5.553384157253159e-33 -5519,2001/2/10,1.339489199,11.11243396,-1.245252623,1.199028146,5.98672268,17.18139949,2.7766920786265794e-33 -5520,2001/2/11,0.501970662,14.50065233,-0.415129551,1.680730841,7.184706382,11.03139832,1.3883460393132897e-33 -5521,2001/2/12,7.91e-05,15.43461616,-0.177675417,1.413685299,7.520900882,3.808226826,6.9417301965664485e-34 -5522,2001/2/13,0.0,15.03647669,-0.795063217,0.988530705,7.419334966,2.095653514,3.4708650982832242e-34 -5523,2001/2/14,0.01065265,13.49520413,0.164217682,1.007697022,6.726000358,1.430524967,1.7354325491416121e-34 -5524,2001/2/15,0.09020058,15.71968472,1.376400014,1.194652484,7.460349506,1.622913422,8.677162745708061e-35 -5525,2001/2/16,1.259886195,14.00239342,0.804272293,1.401542518,6.842540591,12.64399427,4.3385813728540303e-35 -5526,2001/2/17,0.476459643,13.73031183,0.298154025,1.343083462,6.793455853,8.613419124,2.1692906864270151e-35 -5527,2001/2/18,0.011053877,15.52967599,0.673928951,1.516440112,7.454264202,2.938956971,1.0846453432135076e-35 -5528,2001/2/19,0.084339719,15.36006548,0.420856861,1.231704856,7.41089599,2.339208268,5.423226716067538e-36 -5529,2001/2/20,0.325566816,14.64615256,-0.818949638,1.275136857,7.250232521,4.06434224,2.711613358033769e-36 -5530,2001/2/21,0.132181888,14.63183193,-1.143746926,1.591735133,7.269085676,2.5408993,1.3558066790168845e-36 -5531,2001/2/22,0.456711256,13.44838171,-0.597894243,1.674717868,6.766879868,4.907293874,6.779033395084422e-37 -5532,2001/2/23,0.115679751,13.80499074,-0.64454696,1.368929775,6.90399089,2.509284345,3.389516697542211e-37 -5533,2001/2/24,2.484308399,13.19214416,-0.232478728,1.274049654,6.624078094,30.75740057,1.6947583487711056e-37 -5534,2001/2/25,0.432448988,12.4372008,-0.022764449,1.355542653,6.306950391,14.35516251,8.473791743855528e-38 -5535,2001/2/26,1.156922404,14.17993206,1.78523131,1.42102291,6.752295402,24.016803,4.236895871927764e-38 -5536,2001/2/27,0.033825123,14.1029265,0.381897158,1.459448655,6.897025309,7.971819071,2.118447935963882e-38 -5537,2001/2/28,0.035258465,15.07404577,0.142799792,1.229631407,7.296269969,4.475746667,1.059223967981941e-38 -5538,2001/3/1,0.130564058,16.18490236,1.008208888,1.680366608,7.638207452,4.284810639,5.296119839909705e-39 -5539,2001/3/2,0.048778629,16.10600765,1.821555965,1.621240996,7.509534052,2.624625224,2.6480599199548525e-39 -5540,2001/3/3,0.006024018,15.69915658,0.089121006,0.893287352,7.532611936,1.450656194,1.3240299599774262e-39 -5541,2001/3/4,0.395017196,15.13466695,1.384386858,1.534193005,7.166474411,4.634002892,6.620149799887131e-40 -5542,2001/3/5,0.503547536,15.36632543,3.113028644,1.420335599,7.015890318,6.416626521,3.3100748999435656e-40 -5543,2001/3/6,0.527547712,14.2751372,-0.67974029,1.369690546,7.047096788,7.413420696,1.6550374499717828e-40 -5544,2001/3/7,0.068579765,14.82443201,-2.113748371,1.062643273,7.361027646,3.006450373,8.275187249858914e-41 -5545,2001/3/8,1.774412522,15.241798,-0.934035071,1.139254035,7.427266001,22.66607696,4.137593624929457e-41 -5546,2001/3/9,1.79069113,10.83008252,1.716541486,0.995323572,5.375276404,35.29904959,2.0687968124647285e-41 -5547,2001/3/10,1.419892833,11.41087346,1.837689621,0.812454831,5.586418538,38.66594226,1.0343984062323642e-41 -5548,2001/3/11,1.210324984,11.3349649,1.393866955,0.62290393,5.629079411,39.35004773,5.171992031161821e-42 -5549,2001/3/12,2.986456861,10.636156,0.593095026,0.865656959,5.479273664,96.12888281,2.5859960155809106e-42 -5550,2001/3/13,0.233871502,10.81346749,0.986645679,1.071903301,5.482971145,33.95086158,1.2929980077904553e-42 -5551,2001/3/14,1.470595124,11.85308545,1.303767539,1.239273854,5.840281314,59.88358804,6.4649900389522765e-43 -5552,2001/3/15,0.579445768,12.20284637,1.72820543,1.43380753,5.908640086,37.69859153,3.2324950194761383e-43 -5553,2001/3/16,0.287123588,14.11202593,2.16721689,1.336014241,6.605061463,23.20602152,1.6162475097380691e-43 -5554,2001/3/17,0.282881292,15.9186785,1.833123007,1.14204539,7.371938613,18.13071162,8.081237548690346e-44 -5555,2001/3/18,2.411496809,15.45361791,2.027187409,1.263571925,7.156724319,75.89971568,4.040618774345173e-44 -5556,2001/3/19,0.026328496,14.70014855,0.675297854,1.253288577,7.020312977,21.93966201,2.0203093871725864e-44 -5557,2001/3/20,0.83159938,15.65569877,0.145666509,1.006435537,7.44005509,32.46461214,1.0101546935862932e-44 -5558,2001/3/21,2.031301293,16.83014054,3.497589078,1.696889671,7.501133624,68.59353698,5.050773467931466e-45 -5559,2001/3/22,1.188365565,17.10448344,4.894058892,1.831268591,7.388683467,55.4007624,2.525386733965733e-45 -5560,2001/3/23,6.039450342,17.25229376,5.518380784,1.603880432,7.335888026,252.9028404,1.2626933669828665e-45 -5561,2001/3/24,3.904662576,15.60448197,3.812908324,1.174231123,6.927365718,264.8078317,6.3134668349143326e-46 -5562,2001/3/25,0.421961594,15.12547408,1.374614182,1.265105179,7.079958969,100.6396709,3.1567334174571663e-46 -5563,2001/3/26,0.098151481,14.65009243,-0.375949408,1.340771047,7.080593996,50.01122981,1.5783667087285831e-46 -5564,2001/3/27,0.826197217,15.07776861,0.012202868,1.304814216,7.20163128,63.0833644,7.891833543642916e-47 -5565,2001/3/28,0.270993198,15.34728572,0.956721044,0.833281753,7.202772929,36.89353287,3.945916771821458e-47 -5566,2001/3/29,0.423600221,16.34240364,2.613945893,1.043271485,7.390258539,32.53952731,1.972958385910729e-47 -5567,2001/3/30,0.913226654,17.23087177,4.948791676,1.431995446,7.398739838,43.88466628,9.864791929553645e-48 -5568,2001/3/31,5.87432739,17.73964591,5.4560186,1.199108297,7.524863332,252.0814858,4.9323959647768223e-48 -5569,2001/4/1,3.74442788,17.75933916,5.126694518,1.349708732,7.586343033,257.7083009,2.4661979823884112e-48 -5570,2001/4/2,0.415335608,16.89042356,4.784345449,1.357693091,7.268444044,97.92409946,1.2330989911942056e-48 -5571,2001/4/3,0.101604861,17.84041386,3.324228792,1.36109488,7.883586541,48.87632515,6.165494955971028e-49 -5572,2001/4/4,0.076280068,18.82557674,3.489032785,1.432667115,8.262568436,30.9916526,3.082747477985514e-49 -5573,2001/4/5,0.020058744,18.71211709,3.839494083,1.291434621,8.165118449,19.25025905,1.541373738992757e-49 -5574,2001/4/6,0.485353801,18.86401872,4.304120578,1.411548073,8.15966202,26.34789498,7.706868694963785e-50 -5575,2001/4/7,0.136768376,19.71797128,5.636695814,2.141824659,8.31808874,14.82377573,3.8534343474818924e-50 -5576,2001/4/8,0.927768778,20.11149463,5.733088263,2.210183713,8.467975366,29.91271912,1.9267171737409462e-50 -5577,2001/4/9,1.144208355,19.1512092,6.513633077,1.686941701,7.910964039,37.58935944,9.633585868704731e-51 -5578,2001/4/10,0.798846708,18.23871688,4.662696194,1.545322129,7.8250124,31.13714982,4.8167929343523655e-51 -5579,2001/4/11,0.666256963,18.61555407,4.534875446,1.110824661,7.998383525,26.31685553,2.4083964671761828e-51 -5580,2001/4/12,3.636356771,16.64292282,3.810356679,1.495846925,7.280897463,109.7415565,1.2041982335880914e-51 -5581,2001/4/13,1.188683076,18.76926921,5.46029251,1.466344258,7.909770822,67.43705501,6.020991167940457e-52 -5582,2001/4/14,1.139312172,18.52221977,6.495538598,1.043941326,7.61374054,58.91005536,3.0104955839702285e-52 -5583,2001/4/15,0.967445678,19.5692773,7.61724934,1.442085827,7.857115358,51.03462135,1.5052477919851142e-52 -5584,2001/4/16,0.709474409,19.14904232,7.501801614,1.536223434,7.685715339,39.76836251,7.526238959925571e-53 -5585,2001/4/17,0.070290205,20.56460196,7.497516898,1.771232075,8.320526117,17.57106016,3.7631194799627856e-53 -5586,2001/4/18,0.520871118,20.5555987,7.524273271,1.791881088,8.306744651,21.80798478,1.8815597399813928e-53 -5587,2001/4/19,1.053108795,20.18260944,7.788240526,1.938494165,8.082765058,33.07392474,9.407798699906964e-54 -5588,2001/4/20,0.249791515,20.43084567,6.89209149,1.89989869,8.356891841,16.41711368,4.703899349953482e-54 -5589,2001/4/21,0.157152649,20.2509212,6.744891382,1.720296237,8.298770085,10.19970086,2.351949674976741e-54 -5590,2001/4/22,0.181230891,19.83449156,7.436945044,1.627534817,7.981518453,8.104268621,1.1759748374883705e-54 -5591,2001/4/23,1.02474425,19.5920626,7.761348692,1.689262432,7.802796009,20.99174904,5.8798741874418525e-55 -5592,2001/4/24,0.449106148,20.20986874,6.235094607,1.671939376,8.353477927,14.01974656,2.9399370937209262e-55 -5593,2001/4/25,1.497646615,21.23724402,7.000178034,1.523621748,8.670389158,31.74272659,1.4699685468604631e-55 -5594,2001/4/26,1.265125138,19.49042323,8.409990998,1.699923105,7.604563538,34.11305103,7.349842734302316e-56 -5595,2001/4/27,1.335782337,19.65367349,8.713179071,1.98812066,7.6078347,39.19233806,3.674921367151158e-56 -5596,2001/4/28,2.253065082,19.58354103,7.701175018,1.787085796,7.790302402,68.0439128,1.837460683575579e-56 -5597,2001/4/29,1.015575664,19.71877942,7.507843637,1.156306179,7.885841651,46.97725662,9.187303417877894e-57 -5598,2001/4/30,5.645371564,18.68800325,6.743915283,1.255200314,7.572469467,213.5686315,4.593651708938947e-57 -5599,2001/5/1,7.779538544,19.5750085,6.456596299,1.247339247,8.009849879,476.2824997,2.2968258544694736e-57 -5600,2001/5/2,1.369377128,18.25435724,7.626846414,1.251926499,7.188144806,211.4862675,1.1484129272347368e-57 -5601,2001/5/3,0.912706027,17.86925379,8.668168521,1.103474552,6.75634904,133.1463453,5.742064636173684e-58 -5602,2001/5/4,4.767230579,17.81978214,10.17963981,0.948730666,6.298340454,348.4710845,2.871032318086842e-58 -5603,2001/5/5,4.591727602,18.31814201,9.021414291,1.250597055,6.872207114,429.6182566,1.435516159043421e-58 -5604,2001/5/6,3.183216744,18.72682834,8.961889437,1.599935339,7.078744531,372.2292703,7.177580795217105e-59 -5605,2001/5/7,3.012678092,17.48724258,8.657442067,1.224287582,6.563875437,357.269098,3.5887903976085525e-59 -5606,2001/5/8,6.36823258,16.19947476,7.373695095,1.390458389,6.286071724,666.9660938,1.0566462124493018e-07 -5607,2001/5/9,14.89012989,17.42868629,7.828162396,0.564475807,6.739537682,1956.141677,0.0006801929755320499 -5608,2001/5/10,9.68457556,17.03801102,7.550237721,0.197624961,6.623154545,1991.452673,0.025543763689666776 -5609,2001/5/11,0.114905772,15.22557774,7.871985783,0.346052979,5.683834282,618.9871941,0.012668134880962965 -5610,2001/5/12,0.550964329,15.90786896,7.633439348,0.547120299,6.072042512,386.1632635,0.0063340674404814825 -5611,2001/5/13,0.467250652,14.93700054,7.110938183,0.579952103,5.753555972,268.7779754,0.0031670337202407413 -5612,2001/5/14,0.27390597,16.24496737,7.60321329,0.458720825,6.232027105,176.9468139,0.0015835168601203706 -5613,2001/5/15,1.183996877,18.19094014,8.308134258,0.643114325,6.958680114,211.3416808,0.0007917584300601853 -5614,2001/5/16,0.711427538,17.82972578,10.24497743,0.691132678,6.2481849,150.3447703,0.00039587921503009266 -5615,2001/5/17,6.512370728,18.83081547,10.71398469,0.785214987,6.610085724,644.4414583,0.00019793960751504633 -5616,2001/5/18,11.72896453,17.72474698,10.40818874,0.449174486,6.137227248,1512.138876,0.04576995699519511 -5617,2001/5/19,10.98034744,17.07773085,8.841692477,1.013686801,6.282755533,2014.556797,0.08690681167377157 -5618,2001/5/20,6.466458795,18.76768264,8.527454569,1.063659547,7.159416081,1635.85589,0.04301459468416808 -5619,2001/5/21,3.265208884,19.78555942,9.504474011,1.302272301,7.398324452,1056.950299,0.02150729734208404 -5620,2001/5/22,1.236088257,20.8125182,11.64880676,1.45140799,7.323275782,590.3364243,0.01075364867104202 -5621,2001/5/23,5.286194782,19.68996144,11.75153953,1.115483486,6.711456294,980.6544993,0.00537682433552101 -5622,2001/5/24,0.584756958,20.35012794,11.81205756,1.032421161,7.032555832,413.3544371,0.002688412167760505 -5623,2001/5/25,3.254141963,19.24396838,12.27340983,0.648197976,6.291555204,574.3679521,0.0013442060838802525 -5624,2001/5/26,13.39879958,17.90685882,11.83293136,0.457017222,5.71542439,2027.928386,0.10498416749266161 -5625,2001/5/27,19.84235761,18.16931884,11.78203586,0.653345169,5.87794931,4429.200432,0.3457697129222196 -5626,2001/5/28,11.08045628,16.58870124,9.764304309,1.028014872,5.740295013,3874.045469,0.35367941954210863 -5627,2001/5/29,3.315511633,18.32201539,9.974058084,0.928686899,6.545775181,2007.824852,0.17367358701087054 -5628,2001/5/30,25.61742108,17.87868025,10.64500893,0.529529862,6.113013346,8110.146133,0.8171432569214166 -5629,2001/5/31,28.80749344,16.58219344,11.71132829,0.716429175,4.996680348,15020.85427,1.7167395179199911 -5630,2001/6/1,16.89212003,16.28278621,11.17317473,0.830657101,5.049049362,11928.02739,1.7306918013248271 -5631,2001/6/2,5.889687588,17.2746596,9.091150475,1.188095909,6.277445217,6121.259771,0.8304603607425407 -5632,2001/6/3,4.40350143,18.28944697,9.483037568,0.994715543,6.657885878,3996.360619,0.41523018037127035 -5633,2001/6/4,9.186288631,17.381121,10.71661543,0.991426004,5.8200004,4502.875736,0.49108173117309306 -5634,2001/6/5,5.677755343,17.73172621,11.03603927,1.077254051,5.893369345,3327.271681,0.23360586016830248 -5635,2001/6/6,6.566575798,19.32517031,11.62370678,1.283497048,6.532981035,3086.085979,0.11971946241087678 -5636,2001/6/7,2.613060384,20.32790836,12.16140877,1.603265285,6.881310559,1829.824693,0.059733131699246975 -5637,2001/6/8,2.715802839,20.48096642,12.31973443,1.471269033,6.908863586,1399.113869,0.029866565849623487 -5638,2001/6/9,3.718887131,20.63693717,12.70140762,1.036274078,6.864594047,1327.381108,0.014933282924811744 -5639,2001/6/10,3.483163005,20.6544538,13.20446824,0.768477037,6.699980324,1143.328874,0.007466641462405872 -5640,2001/6/11,8.292728299,19.97701421,12.38233815,0.760772735,6.617245579,1877.492727,0.12450812419383807 -5641,2001/6/12,11.88204538,19.88536124,11.36833011,0.845911995,6.892113905,2879.839006,0.42479194809681947 -5642,2001/6/13,0.556083463,21.25929129,11.49151403,1.053272565,7.544629802,971.0258068,0.19890792524068632 -5643,2001/6/14,0.245866476,23.26928166,12.02933417,1.579999628,8.393319908,506.1768717,0.09945396262034316 -5644,2001/6/15,4.531931907,21.27821478,12.8449151,1.381272741,7.148434784,915.1267075,0.04972698131017158 -5645,2001/6/16,4.173903508,20.50617329,12.98797601,1.16517613,6.687424558,894.7438948,0.02486349065508579 -5646,2001/6/17,1.642404161,20.63638871,13.45160465,1.249685616,6.592574558,529.1330561,0.012431745327542895 -5647,2001/6/18,3.082596135,21.20100311,13.54948188,1.673410225,6.866963332,592.2966864,0.006215872663771447 -5648,2001/6/19,4.285625528,22.17322403,13.83309475,1.607147906,7.296238836,720.6935093,0.0031079363318857237 -5649,2001/6/20,5.005650769,20.27282862,13.39581249,1.159922185,6.408252683,832.0430712,0.0015539681659428619 -5650,2001/6/21,4.770467986,19.9367146,12.42906789,0.215205875,6.568873435,852.804921,0.0007769840829714309 -5651,2001/6/22,1.941933586,19.56066557,13.21574924,0.372557213,6.074600947,514.29198,0.00038849204148571546 -5652,2001/6/23,4.860930705,21.2645364,13.98966913,0.792235291,6.739544994,778.0680913,0.00019424602074285773 -5653,2001/6/24,8.664082617,21.53356787,14.17466383,1.037020376,6.821135781,1375.375271,0.0887410511718369 -5654,2001/6/25,11.12819955,22.17634617,14.29033249,1.211352868,7.135688932,2102.099249,0.2409416962440788 -5655,2001/6/26,11.58060465,22.71603653,14.94330169,1.003352787,7.200934791,2675.930531,0.34928642971338864 -5656,2001/6/27,14.89711313,21.85574583,14.24839858,1.067752232,6.972207578,3940.950615,0.6224905248227844 -5657,2001/6/28,7.182135031,20.18697975,13.28875318,1.157124194,6.395555668,2777.021866,0.34884558281153555 -5658,2001/6/29,8.842164916,19.78567001,12.03671044,0.977356459,6.615895217,2985.387946,0.31756880566020496 -5659,2001/6/30,4.002046736,19.90011329,12.70975585,0.938958717,6.447156985,1894.245125,0.15407707639626625 -5660,2001/7/1,1.13334831,21.138609,12.24910427,0.997560273,7.250090712,984.8115153,0.07703853819813312 -5661,2001/7/2,6.953123111,21.40754796,12.57573624,0.644527098,7.28876626,1741.430493,0.03851926909906656 -5662,2001/7/3,13.53451547,23.03534885,13.03354128,0.62179836,7.988947935,3272.260206,0.35736602304416726 -5663,2001/7/4,5.211441833,22.82657597,13.43515336,0.668324945,7.762161248,2008.48637,0.16837604751710158 -5664,2001/7/5,5.668113313,23.12976934,13.98921971,0.718510055,7.749204214,1795.776584,0.08418802375855079 -5665,2001/7/6,10.08355182,22.86218466,14.50943119,0.645806109,7.433612179,2574.210326,0.20434165588453032 -5666,2001/7/7,10.44830177,24.44215426,14.68977738,0.972831735,8.226303122,2952.629131,0.23843920831018584 -5667,2001/7/8,9.991096743,22.04147223,14.65129413,0.764873418,6.927585321,3038.785009,0.3154240792253258 -5668,2001/7/9,6.769063552,21.60487152,14.33606872,1.065745451,6.799330661,2437.274951,0.1511382565465843 -5669,2001/7/10,7.529554273,21.27546399,14.47337092,0.884164513,6.560136734,2460.840718,0.1416405656523539 -5670,2001/7/11,1.68954809,21.9483786,14.80203692,0.762839372,6.818933203,1202.040775,0.06856870666744638 -5671,2001/7/12,4.919233004,21.9323262,14.14913099,0.903689652,7.051024866,1438.122515,0.03428435333372319 -5672,2001/7/13,16.85409254,21.8480503,14.21351219,0.990523395,6.982021682,3965.07691,0.6431885963836812 -5673,2001/7/14,7.404760853,20.10591523,13.95781807,0.689723398,6.091466291,2781.711176,0.39640013235242777 -5674,2001/7/15,7.727863573,20.83026541,14.03791447,1.147164355,6.477287458,2693.910952,0.2863390297122669 -5675,2001/7/16,13.70755983,21.23286025,14.33586009,1.333812056,6.592630835,4273.652922,0.6683195201804948 -5676,2001/7/17,5.456433639,22.38299291,14.78815425,1.527084422,7.074756481,2655.435334,0.3145310790559197 -5677,2001/7/18,12.55083032,22.63467335,15.44265618,1.296934637,6.971236668,4092.675978,0.5967112051453953 -5678,2001/7/19,9.89419075,20.64678258,14.71720305,0.995666957,6.097645895,3845.323612,0.5980419257793376 -5679,2001/7/20,4.23059347,20.92991805,13.11909088,0.762058657,6.869757622,2342.225105,0.28578739665466024 -5680,2001/7/21,7.728183355,21.62758185,13.15787331,0.091228129,7.230442157,2740.159773,0.184726166411003 -5681,2001/7/22,5.047138271,22.50119819,13.63357632,0.237756175,7.541448602,2082.160789,0.090605186337608 -5682,2001/7/23,7.449702825,22.55965182,13.58506768,0.749062861,7.589205552,2341.443771,0.045302593168804 -5683,2001/7/24,5.114664262,22.34022442,14.11317365,0.992389362,7.298901317,1830.728227,0.022651296584402 -5684,2001/7/25,9.770198389,21.85440945,15.09268302,1.131269992,6.663699911,2616.452182,0.2587401051602457 -5685,2001/7/26,7.809303291,22.16402517,15.27656844,0.989660544,6.772515042,2460.567721,0.20481980036648245 -5686,2001/7/27,13.17430824,21.34448037,15.11945544,1.109083257,6.353869654,3779.38109,0.6660115945171211 -5687,2001/7/28,10.01753366,20.24405423,14.8849448,0.965941184,5.787500259,3605.100782,0.685402801867535 -5688,2001/7/29,6.125658045,20.19193555,14.86444923,1.26825303,5.76581988,2691.109915,0.3592394545923011 -5689,2001/7/30,12.81293301,21.01888926,14.76504722,1.277216142,6.3128804,4313.739577,0.780573873789181 -5690,2001/7/31,10.85033423,20.78574971,14.57031411,1.219217215,6.257312655,4346.582513,0.8126686925688237 -5691,2001/8/1,10.73436901,20.94771029,14.31234488,0.815951207,6.458165774,4471.080444,0.8194815158873607 -5692,2001/8/2,14.64136195,22.04238816,13.4584575,0.585925976,7.372412555,5919.601936,1.152486700945949 -5693,2001/8/3,7.544638947,22.3092378,13.62910072,0.743476323,7.461293351,4044.488116,0.5452546915172276 -5694,2001/8/4,5.613472097,22.27898766,13.86071134,0.46635513,7.370670899,2942.101167,0.27211345836420425 -5695,2001/8/5,0.684860744,22.57303674,13.64809402,0.517371551,7.60008436,1343.489296,0.13605672918210213 -5696,2001/8/6,4.031777819,22.52765877,13.61838494,0.817768771,7.587763299,1485.227669,0.06802836459105106 -5697,2001/8/7,3.268867695,22.49854213,13.69948565,0.737658735,7.548489203,1196.844464,0.03401418229552553 -5698,2001/8/8,3.613802362,23.24483171,13.46918305,0.397828429,8.016099691,1072.612599,0.017007091147762766 -5699,2001/8/9,2.797219692,24.35538054,13.71169699,0.481175395,8.523719819,830.4308297,0.008503545573881383 -5700,2001/8/10,10.20143445,23.44179032,13.8116128,0.320240134,8.020882152,1810.114358,0.19410737463094171 -5701,2001/8/11,8.516658655,22.38352301,14.43268694,0.292998425,7.246798599,1895.104614,0.20166010523053737 -5702,2001/8/12,4.983692389,21.09147872,13.82642005,0.323245762,6.748001962,1404.946786,0.09581375612720566 -5703,2001/8/13,8.70377974,20.94811174,12.88012989,0.399370629,7.003748619,1961.136911,0.19780691570120074 -5704,2001/8/14,13.80575336,21.06380119,12.78381502,0.439378119,7.099750208,3285.183973,0.6930743524253886 -5705,2001/8/15,6.319925779,23.01558443,13.78374385,1.112853589,7.818292167,2260.056578,0.319625756425173 -5706,2001/8/16,5.485421322,22.40064124,15.04676304,0.876789158,7.043066068,1850.472906,0.1598128782125865 -5707,2001/8/17,11.49643522,21.90187256,15.16116058,0.837099321,6.710176229,2993.641311,0.5206758184033662 -5708,2001/8/18,3.430392612,21.80008917,14.57522621,0.685746237,6.883951966,1631.03417,0.24004255472010955 -5709,2001/8/19,6.660667915,22.22464873,14.38344821,0.598916513,7.197665861,1923.562309,0.12002127736005477 -5710,2001/8/20,4.515771525,22.16143917,14.66576634,0.285313962,7.061544086,1509.509933,0.06001063868002739 -5711,2001/8/21,4.936875546,20.52053768,14.01693572,0.368882875,6.372368654,1430.18862,0.030005319340013693 -5712,2001/8/22,3.292388619,21.60699442,14.1632854,0.875098277,6.940168918,1077.186819,0.015002659670006847 -5713,2001/8/23,4.454672266,21.63134235,14.46989352,1.069959539,6.841827493,1125.646955,0.007501329835003423 -5714,2001/8/24,2.889840803,22.11967893,13.82646581,1.500133579,7.349920676,842.3076218,0.0037506649175017117 -5715,2001/8/25,6.571841186,21.86659429,13.97883272,1.001727989,7.161090001,1283.618314,0.0018753324587508558 -5716,2001/8/26,12.35423123,20.87618516,13.6991731,0.290267372,6.712431639,2442.851093,0.4372655864151629 -5717,2001/8/27,7.611993664,20.75143496,13.62537128,0.388076299,6.672686015,2095.984091,0.2789163036472191 -5718,2001/8/28,2.536217487,20.70770613,14.0628965,0.551042957,6.482690192,1132.364598,0.13628930534341865 -5719,2001/8/29,3.096104822,22.11679983,13.48151634,0.84403635,7.480564578,974.4842206,0.06814465267170933 -5720,2001/8/30,2.789286122,22.0485934,13.65953488,0.650328758,7.388022375,809.1005953,0.034072326335854664 -5721,2001/8/31,15.36467674,22.04169673,14.0383945,0.882772671,7.257289122,2858.754654,0.5949715041151761 -5722,2001/9/1,23.28024612,21.3412621,14.02243552,1.069043672,6.873998058,6185.786202,1.5611307294842613 -5723,2001/9/2,19.30026741,21.12647563,13.13535959,0.807571132,7.074727612,7552.115711,1.8576922384488386 -5724,2001/9/3,17.34462283,20.03173618,12.77352019,0.167452981,6.605205776,8190.156842,1.975407407118024 -5725,2001/9/4,4.959820917,20.47504771,12.74794416,0.504490798,6.860283301,4134.709371,0.9315183074261129 -5726,2001/9/5,3.913650265,21.45230396,13.92411326,1.003309727,6.986826249,2769.067655,0.46575915371305643 -5727,2001/9/6,5.300441232,21.47821433,13.92121202,1.259453964,7.006042603,2528.736339,0.23287957685652821 -5728,2001/9/7,1.607344579,21.70147297,13.58529146,1.10731835,7.252853106,1401.87414,0.11643978842826411 -5729,2001/9/8,28.63348878,21.89218659,13.53552162,0.804314391,7.378004012,8106.342051,6.1684680542614165 -5730,2001/9/9,5.662130468,18.99572444,12.83481019,0.222564593,6.017311444,3813.505044,0.7791997691864384 -5731,2001/9/10,2.143377537,20.56225236,12.89293815,0.825083268,6.879051006,1983.392173,0.3895998845932192 -5732,2001/9/11,0.704404145,22.20911506,13.33143812,0.87053806,7.628748985,1107.255365,0.1947999422966096 -5733,2001/9/12,1.784531188,22.25761881,13.33638876,0.826267614,7.657314714,937.0669871,0.0973999711483048 -5734,2001/9/13,3.509830358,22.12335547,13.53523278,1.173785921,7.523899924,1018.503976,0.0486999855741524 -5735,2001/9/14,1.449819204,22.95000281,13.62778657,1.080967421,7.944333775,624.393318,0.0243499927870762 -5736,2001/9/15,3.046010294,23.09896072,13.06671252,0.865838247,8.198784059,675.7206652,0.0121749963935381 -5737,2001/9/16,8.460290811,22.47889604,12.84065002,0.743853591,7.945829694,1353.450993,0.049314559413467546 -5738,2001/9/17,6.844108581,21.24887455,13.10105933,0.905241927,7.209819605,1356.156008,0.022841225237614195 -5739,2001/9/18,2.946557172,20.8294074,12.92988046,1.102417833,7.043122763,839.4555835,0.011420612618807098 -5740,2001/9/19,6.84015608,21.05838156,13.02973816,0.826755591,7.138136056,1260.565403,0.005710306309403549 -5741,2001/9/20,8.169531704,21.24985168,12.73227614,0.419223119,7.345254303,1613.751183,0.06854622439524483 -5742,2001/9/21,2.659416908,20.93928026,12.45104114,0.541935514,7.274370582,893.7957599,0.0316554759288767 -5743,2001/9/22,3.079312845,21.80692749,12.50350598,0.599364918,7.721651812,770.716274,0.01582773796443835 -5744,2001/9/23,2.359130082,21.42016418,12.87934104,0.551856404,7.401509253,597.2206093,0.007913868982219175 -5745,2001/9/24,1.533102633,21.57203109,12.33212008,0.595195595,7.659340336,417.7716702,0.0039569344911095875 -5746,2001/9/25,4.084342333,20.45479079,11.63563314,0.628913408,7.291868228,615.4225007,0.0019784672455547938 -5747,2001/9/26,1.185822323,21.71197808,11.88107235,0.848089871,7.874253215,332.1561188,0.0009892336227773969 -5748,2001/9/27,0.762208945,21.37815298,12.29370458,0.874550639,7.582441994,211.8150622,0.0004946168113886984 -5749,2001/9/28,0.019065231,20.15710713,11.40216415,0.560405971,7.220863457,104.1632236,0.0002473084056943492 -5750,2001/9/29,0.002433031,19.78109279,11.00078082,0.242559425,7.151795415,63.38317774,0.0001236542028471746 -5751,2001/9/30,0.715872386,20.11597835,11.27226904,0.662449777,7.247380645,82.35788835,6.18271014235873e-05 -5752,2001/10/1,3.912069171,19.1596005,10.21094425,0.735492382,7.074825195,267.1496689,3.091355071179365e-05 -5753,2001/10/2,11.48595947,17.76083763,9.055534472,0.58310539,6.707585203,1003.174146,0.2187537421608844 -5754,2001/10/3,22.77332598,17.20886581,8.835048193,0.373401735,6.501048493,3471.935842,0.9200609764794493 -5755,2001/10/4,3.359572682,16.92144718,10.36697896,0.849917574,5.871199639,1476.489637,0.43958616928724736 -5756,2001/10/5,4.992232787,18.3387728,10.85244025,1.197762971,6.468359356,1396.644332,0.21979308464362368 -5757,2001/10/6,1.523265943,20.16343937,10.81900548,1.325692799,7.430804746,760.0478401,0.10989654232181184 -5758,2001/10/7,0.3661442,19.89405528,10.04689594,1.043468147,7.513182981,399.8045239,0.05494827116090592 -5759,2001/10/8,8.192222738,20.043119,9.772558421,0.28158678,7.662856626,1307.215532,0.05653186045333719 -5760,2001/10/9,21.17744256,16.58947877,8.920516543,0.471951394,6.189395063,4151.501611,0.8572725672867951 -5761,2001/10/10,0.10144977,18.82069975,9.782948392,1.022914098,7.063389945,1128.109979,0.40566548222652027 -5762,2001/10/11,0.019488686,19.2313992,10.52636552,1.267994725,7.060915385,534.0422732,0.20283274111326013 -5763,2001/10/12,0.259793378,19.71690964,10.71100785,1.417117825,7.259800722,365.4650452,0.10141637055663007 -5764,2001/10/13,0.365935043,20.05625946,10.24792406,1.336875141,7.566561499,264.7777587,0.050708185278315034 -5765,2001/10/14,1.084005499,19.04340094,9.840543763,0.696122565,7.175542553,262.8866665,0.025354092639157517 -5766,2001/10/15,3.16885125,18.93165294,8.651063931,0.827329196,7.435365968,425.7791142,0.012677046319578758 -5767,2001/10/16,7.286659742,16.30521926,7.848273511,0.537557677,6.381424884,891.2901514,0.05207942048489673 -5768,2001/10/17,0.270813835,17.66665526,8.078505693,0.930990578,6.979865548,286.8399949,0.024884082136871138 -5769,2001/10/18,0.219842698,16.31931331,8.400894886,0.956648674,6.240685441,155.7811708,0.012442041068435569 -5770,2001/10/19,0.070093808,16.06335702,7.108283019,0.723868196,6.469974779,94.39020103,0.0062210205342177844 -5771,2001/10/20,0.061983474,15.94262672,4.557589671,0.700547816,6.967562653,62.15686749,0.0031105102671088922 -5772,2001/10/21,0.121923619,15.9084208,4.00114567,0.422092183,7.054577222,45.69011501,0.0015552551335544461 -5773,2001/10/22,0.264013299,16.9423074,5.25295864,0.43268894,7.281671061,40.51582059,0.0007776275667772231 -5774,2001/10/23,0.473283441,16.69416279,6.564579981,0.646695644,6.907101109,42.64513721,0.00038881378338861153 -5775,2001/10/24,0.762759678,15.04003172,5.98474751,0.71079265,6.286236493,51.08368268,0.00019440689169430576 -5776,2001/10/25,6.395093287,12.53560186,4.752754868,0.520632363,5.44634526,351.1916694,0.03241495180474116 -5777,2001/10/26,6.654256689,13.91391143,4.911210699,0.483081017,6.031188352,561.8054438,0.03743252956391765 -5778,2001/10/27,12.26125252,13.38668248,4.185722138,0.45542399,5.96018342,1377.99022,0.24220684824052102 -5779,2001/10/28,9.715806768,13.04082633,3.762685328,0.526442514,5.901816008,1651.581413,0.274988857195218 -5780,2001/10/29,0.941489611,12.03833527,4.355004192,0.754733641,5.331551672,612.8251972,0.13422743892321576 -5781,2001/10/30,0.749920798,14.01633773,6.278172719,0.784089838,5.755113015,368.8990511,0.06711371946160788 -5782,2001/10/31,1.282894867,13.87916768,5.803973109,0.793768015,5.817918505,335.0745056,0.03355685973080394 -5783,2001/11/1,6.014353844,14.41759835,4.563593625,0.976539638,6.348609649,844.1496553,0.01677842986540197 -5784,2001/11/2,3.557875838,15.54155011,4.399009232,1.114564578,6.873222381,680.4619164,0.008389214932700985 -5785,2001/11/3,0.386789878,16.48387576,4.802411244,1.144382387,7.21175556,275.9434467,0.0041946074663504924 -5786,2001/11/4,1.370112,16.38018458,4.514364766,0.795571139,7.222121333,270.4442141,0.0020973037331752462 -5787,2001/11/5,9.53877735,15.85066604,4.020745288,0.790037864,7.084217276,1122.176366,0.08135075156626047 -5788,2001/11/6,0.596274445,14.82150474,4.063306925,0.832772356,6.638914204,375.8677613,0.03936181509979611 -5789,2001/11/7,0.431277403,14.86121531,5.110465566,0.9864766,6.449738768,207.7243746,0.019680907549898055 -5790,2001/11/8,0.517831381,14.92564732,5.763685415,0.879533969,6.335855334,155.0968348,0.009840453774949028 -5791,2001/11/9,1.698313026,13.03623749,2.337644018,0.787773353,6.203100139,214.6260766,0.004920226887474514 -5792,2001/11/10,0.506341121,11.14488299,1.96101574,0.636023015,5.494173605,119.3763401,0.002460113443737257 -5793,2001/11/11,0.021094664,11.94590984,2.197566159,0.743457382,5.783852513,56.77073919,0.0012300567218686284 -5794,2001/11/12,0.0,13.27235888,3.269060528,0.704373793,6.144337698,33.92359704,0.0006150283609343142 -5795,2001/11/13,1.945963801,13.3588677,1.79736776,0.746641222,6.43308519,131.7408937,0.0003075141804671571 -5796,2001/11/14,0.308856147,9.104700611,0.026137461,0.63616821,5.026176898,57.18214743,0.00015375709023357856 -5797,2001/11/15,0.003380806,11.26913327,-0.613631634,0.719653888,5.948956585,24.99328911,7.687854511678928e-05 -5798,2001/11/16,0.0,12.05938445,-0.723408329,0.759296595,6.263699347,14.91591351,3.843927255839464e-05 -5799,2001/11/17,0.074276682,12.106866,-0.963342069,0.70053896,6.310523427,12.49937198,1.921963627919732e-05 -5800,2001/11/18,0.501070452,10.87547075,-2.219005229,0.785739257,5.982888371,24.76825947,9.60981813959866e-06 -5801,2001/11/19,0.005946083,9.093714656,-2.714898537,0.635568641,5.391430816,8.852480868,4.80490906979933e-06 -5802,2001/11/20,0.005901344,10.26457065,-3.364983781,0.576196768,5.866526414,4.937202328,2.402454534899665e-06 -5803,2001/11/21,0.011539992,10.9419076,-2.1692752,0.751428908,6.009930591,3.36530287,1.2012272674498325e-06 -5804,2001/11/22,0.141203958,11.55450359,-1.18113491,0.763545316,6.139380247,5.426823133,6.006136337249162e-07 -5805,2001/11/23,0.075171965,10.74276171,-2.479740471,0.731754081,5.970825151,3.760816295,3.003068168624581e-07 -5806,2001/11/24,0.127997245,10.2239532,-3.243244373,0.634959737,5.851917644,4.13603511,1.5015340843122906e-07 -5807,2001/11/25,0.090253122,11.72005743,-2.594005203,0.628824644,6.339470093,3.191962004,7.507670421561453e-08 -5808,2001/11/26,0.165909584,11.86209888,-3.040759755,0.884838127,6.426848542,4.016646248,3.7538352107807265e-08 -5809,2001/11/27,0.212856325,11.95449246,-1.755609535,1.21087597,6.357757495,4.659724571,1.8769176053903632e-08 -5810,2001/11/28,0.115390679,11.98267785,-2.716056811,1.242864091,6.451274624,3.183300318,9.384588026951816e-09 -5811,2001/11/29,0.028023617,12.01898156,-2.30128239,1.038544401,6.433915052,1.581872424,4.692294013475908e-09 -5812,2001/11/30,0.069747012,12.90158291,-1.913282159,1.315678543,6.729823982,1.592299744,2.346147006737954e-09 -5813,2001/12/1,0.001277716,12.22436328,-1.905259317,1.087477057,6.480058197,0.692471656,1.173073503368977e-09 -5814,2001/12/2,0.098279515,13.40641484,-0.107531778,1.19816335,6.750697654,1.322776574,5.865367516844885e-10 -5815,2001/12/3,0.077411674,13.16129964,0.237031063,1.256537457,6.617247918,1.14248779,2.9326837584224425e-10 -5816,2001/12/4,0.039543808,14.13218003,0.537901212,1.422283522,6.96484404,0.732139656,1.4663418792112213e-10 -5817,2001/12/5,0.139157631,13.82842479,0.084222662,1.332419567,6.899637201,1.30909878,7.331709396056106e-11 -5818,2001/12/6,0.01704579,13.30075345,-0.574820054,1.190816394,6.768285448,0.536420358,3.665854698028053e-11 -5819,2001/12/7,0.262913968,13.00676117,-0.165317976,1.170524218,6.612043997,1.903624075,1.8329273490140266e-11 -5820,2001/12/8,0.129209466,12.79062434,1.561864306,0.991884031,6.29693172,1.353320603,9.164636745070133e-12 -5821,2001/12/9,0.075708653,12.44306379,-0.322410296,0.903158366,6.415657015,0.911493053,4.5823183725350665e-12 -5822,2001/12/10,0.000295188,12.62373382,-1.533050845,0.992327679,6.61203253,0.364843788,2.2911591862675332e-12 -5823,2001/12/11,0.003032972,12.47104806,-1.632353434,0.986738577,6.565477801,0.224939411,1.1455795931337666e-12 -5824,2001/12/12,0.005801789,12.75160167,-1.624436856,0.997421075,6.671310652,0.162961679,5.727897965668833e-13 -5825,2001/12/13,0.263968184,12.56564579,-1.215439446,0.907685058,6.564396191,1.208983683,2.8639489828344165e-13 -5826,2001/12/14,0.024783284,12.44229916,-0.42799987,1.112672295,6.434820494,0.432576661,1.4319744914172083e-13 -5827,2001/12/15,0.141251816,12.58522286,0.726532705,1.226502785,6.346308085,0.750293017,7.159872457086041e-14 -5828,2001/12/16,0.307078948,12.18254752,0.623225952,1.333970988,6.20202249,1.579033818,3.579936228543021e-14 -5829,2001/12/17,0.65582046,12.0295981,-0.783017981,1.00187943,6.320375384,4.063567655,1.7899681142715103e-14 -5830,2001/12/18,0.009695086,12.05037617,-1.121529406,0.823984905,6.365966225,1.149834406,8.949840571357552e-15 -5831,2001/12/19,0.046417381,12.89468372,-1.004842465,0.862194042,6.675528901,0.785959734,4.474920285678776e-15 -5832,2001/12/20,0.954980984,12.70124417,-0.476070738,0.951863723,6.546629299,6.625795966,2.237460142839388e-15 -5833,2001/12/21,3.308049098,8.31845896,-2.471356488,0.731294412,5.134606978,45.17408855,1.118730071419694e-15 -5834,2001/12/22,1.184014886,4.885114186,-3.893152388,0.612374846,4.089308648,34.2746861,5.59365035709847e-16 -5835,2001/12/23,0.011342313,8.386252848,-4.295853743,0.611297433,5.332001386,10.85479541,2.796825178549235e-16 -5836,2001/12/24,0.141692536,9.133039755,-4.195308068,0.789588968,5.583434565,8.237159001,1.3984125892746175e-16 -5837,2001/12/25,0.111851394,9.445169605,-3.575306089,0.922504763,5.645989298,6.083729805,6.992062946373087e-17 -5838,2001/12/26,0.025222982,9.759719595,-3.130802802,0.832094553,5.7210382,3.429666059,3.4960314731865436e-17 -5839,2001/12/27,0.011004872,10.16441062,-3.984093429,0.780725856,5.930450633,2.118083114,1.7480157365932718e-17 -5840,2001/12/28,0.1278473,9.809936235,-4.012432229,0.773015286,5.80834706,2.938537864,8.740078682966359e-18 -5841,2001/12/29,0.265367441,9.616822805,-3.986515287,1.071774429,5.739160392,4.488140195,4.3700393414831795e-18 -5842,2001/12/30,0.005509168,9.589251861,-4.08556319,1.18581163,5.736775327,1.560639411,2.1850196707415898e-18 -5843,2001/12/31,0.109647639,9.731130313,-4.183436972,1.108227505,5.793210697,1.976339599,1.0925098353707949e-18 -5844,2002/1/1,0.241892547,10.08345653,-4.060159716,0.619073706,5.908316278,3.241605698,5.462549176853974e-19 -5845,2002/1/2,0.949158594,8.280880652,-3.428296473,0.541988168,5.224682702,11.62703074,2.731274588426987e-19 -5846,2002/1/3,0.01733975,9.30684191,-4.481297692,0.583147645,5.665757623,3.2989374,1.3656372942134936e-19 -5847,2002/1/4,0.05456204,9.594429082,-4.41684465,0.75464036,5.761078414,2.097680829,6.828186471067468e-20 -5848,2002/1/5,0.0,9.85974755,-4.671121588,0.820256984,5.868376095,1.072797665,3.414093235533734e-20 -5849,2002/1/6,0.0,9.62713497,-5.040351632,0.346877213,5.808702545,0.665036738,1.707046617766867e-20 -5850,2002/1/7,2.04e-05,10.02419664,-4.396824709,0.532187282,5.908565711,0.430509316,8.535233088834335e-21 -5851,2002/1/8,0.471326186,10.42501362,-3.194029224,0.681893205,5.964932363,3.997318216,4.2676165444171675e-21 -5852,2002/1/9,1.874336079,8.256623583,-3.129450947,0.578503478,5.185810226,21.93467323,2.1338082722085838e-21 -5853,2002/1/10,2.181937722,7.146604348,-3.962481555,0.607647255,4.877587528,42.70614233,1.0669041361042919e-21 -5854,2002/1/11,0.161420137,8.455589294,-5.46110562,0.908514351,5.432093545,14.60204039,5.334520680521459e-22 -5855,2002/1/12,0.350302842,8.987419769,-4.707234453,0.723173664,5.567549799,12.7153504,2.6672603402607297e-22 -5856,2002/1/13,0.159866197,10.53191394,-4.306647404,0.915310795,6.077415527,8.108648777,1.3336301701303649e-22 -5857,2002/1/14,0.046491124,11.44052453,-1.554637103,1.380829596,6.184437544,4.519542636,6.668150850651824e-23 -5858,2002/1/15,0.017728713,11.61203604,-1.92263691,1.481817645,6.283433136,2.721329694,3.334075425325912e-23 -5859,2002/1/16,0.040087211,12.6039043,-2.2477152,1.600447235,6.678006513,2.13434095,1.667037712662956e-23 -5860,2002/1/17,0.05154004,12.01835941,-0.995784452,1.726903629,6.34095794,1.757491031,8.33518856331478e-24 -5861,2002/1/18,0.040528137,12.71847292,-1.129391428,1.609569161,6.619332186,1.295850328,4.16759428165739e-24 -5862,2002/1/19,0.001076014,13.3894739,-1.193830619,1.506905063,6.878971988,0.646582169,2.083797140828695e-24 -5863,2002/1/20,0.180480174,12.78620342,-1.161692584,1.133560453,6.645852133,1.938772006,1.0418985704143475e-24 -5864,2002/1/21,0.007976079,12.27805174,-1.803054213,1.341001853,6.513730356,0.687930552,5.209492852071738e-25 -5865,2002/1/22,0.029947409,11.35439674,-1.232786845,1.284582925,6.110049556,0.554750195,2.604746426035869e-25 -5866,2002/1/23,1.075283402,9.486302195,-0.035853177,1.231894966,5.235211465,9.150503457,1.3023732130179344e-25 -5867,2002/1/24,0.372838944,9.365816316,-1.708521851,1.269430787,5.419883591,5.988377896,6.511866065089672e-26 -5868,2002/1/25,0.000526987,9.108133013,-3.858750472,1.015744005,5.537006006,1.934998073,3.255933032544836e-26 -5869,2002/1/26,0.712999729,9.348116003,-3.507735539,1.193001759,5.591670866,8.104171719,1.627966516272418e-26 -5870,2002/1/27,0.00048815,10.22796848,-4.530665524,1.212288828,5.969030044,2.360971176,8.13983258136209e-27 -5871,2002/1/28,0.180399257,10.39995864,-2.513040613,1.29749562,5.877851061,2.865516555,4.069916290681045e-27 -5872,2002/1/29,0.052928795,10.02268072,-1.406413529,1.28081407,5.621052419,1.608403541,2.0349581453405225e-27 -5873,2002/1/30,1.710274287,9.00996576,-2.593456733,1.625144302,5.380490308,19.68229866,1.0174790726702613e-27 -5874,2002/1/31,0.91714254,8.404494016,-4.135913045,1.228558335,5.30604058,18.2284906,5.087395363351306e-28 -5875,2002/2/1,0.425041422,9.185795066,-4.608963357,0.890854744,5.606448543,11.98721886,2.543697681675653e-28 -5876,2002/2/2,1.185018181,9.553166836,-3.86735927,1.289305225,5.680778169,24.07649491,1.2718488408378266e-28 -5877,2002/2/3,0.056754585,10.88261054,-2.550776867,1.590586318,6.045853642,8.163570746,6.359244204189133e-29 -5878,2002/2/4,0.0,12.05269621,-3.995315976,1.148985071,6.564674588,3.885333257,3.1796221020945665e-29 -5879,2002/2/5,0.016618347,11.4197905,-4.139095879,1.407915608,6.346751993,2.624572869,1.5898110510472832e-29 -5880,2002/2/6,0.04522318,12.77654856,-3.84028494,1.677720766,6.809890799,2.158026223,7.949055255236416e-30 -5881,2002/2/7,6.69e-05,13.7692684,-3.316565203,1.528192457,7.137949819,1.167183096,3.974527627618208e-30 -5882,2002/2/8,0.000139621,14.99825855,-1.503563622,1.443416384,7.4755845,0.731788177,1.987263813809104e-30 -5883,2002/2/9,0.021104315,15.85906777,-1.056151554,1.612830087,7.767474743,0.648950044,9.93631906904552e-31 -5884,2002/2/10,0.391893368,15.41207406,-1.545122773,1.215215275,7.629827106,3.456229681,4.96815953452276e-31 -5885,2002/2/11,0.002544137,15.41446823,-1.351671042,1.242068946,7.613842005,0.985115877,2.48407976726138e-31 -5886,2002/2/12,0.013070829,15.87436484,-0.176460277,1.654272001,7.691917421,0.559989117,1.24203988363069e-31 -5887,2002/2/13,0.020108704,15.89226245,-0.81749105,1.692258957,7.749788827,0.431242774,6.21019941815345e-32 -5888,2002/2/14,0.02386247,14.47612328,-1.498971785,0.910769518,7.260895777,0.348572412,3.105099709076725e-32 -5889,2002/2/15,2.762489677,13.68798859,-0.427175056,1.150008699,6.862149388,25.88674659,1.5525498545383625e-32 -5890,2002/2/16,0.551803129,12.69669772,-0.650729858,0.765348712,6.504266039,13.72943458,7.762749272691813e-33 -5891,2002/2/17,0.240137733,13.31740662,-0.259269972,0.987053129,6.696366649,7.757069015,3.881374636345906e-33 -5892,2002/2/18,0.059325814,14.77449475,0.294823206,1.08551129,7.198167766,3.984303538,1.940687318172953e-33 -5893,2002/2/19,0.752030428,14.66403223,1.537181147,0.952184656,7.003662957,11.20466516,9.703436590864766e-34 -5894,2002/2/20,3.766615245,12.02268169,-0.600127505,1.185305914,6.23151619,73.323284,4.851718295432383e-34 -5895,2002/2/21,0.919122621,13.05902755,-0.477280557,1.329028083,6.609121016,40.84676049,2.4258591477161915e-34 -5896,2002/2/22,0.096958186,13.82800798,-2.623588465,1.460324543,7.07457907,16.09950418,1.2129295738580957e-34 -5897,2002/2/23,0.005066654,14.31583397,-2.775190825,1.293384861,7.259139451,8.250625596,6.064647869290479e-35 -5898,2002/2/24,0.006032921,15.38183503,-0.568683718,1.579901899,7.496006638,5.214160887,3.0323239346452393e-35 -5899,2002/2/25,0.090214729,15.97648756,0.222910673,1.560209809,7.650740422,4.738156528,1.5161619673226197e-35 -5900,2002/2/26,0.871430912,14.51976341,-0.159685798,1.876645097,7.119590214,15.77587854,7.580809836613098e-36 -5901,2002/2/27,0.067655878,14.1679597,0.02609441,1.576925157,6.961345019,5.751206473,3.790404918306549e-36 -5902,2002/2/28,0.011991475,14.36019963,-1.173047874,1.44126981,7.144663224,2.807773937,1.8952024591532746e-36 -5903,2002/3/1,0.105570261,14.6226564,-1.164139,1.449950054,7.239140754,2.898247567,9.476012295766373e-37 -5904,2002/3/2,0.302249824,15.70936687,0.83867938,1.552197593,7.464612933,4.679974159,4.7380061478831864e-37 -5905,2002/3/3,0.844446622,15.82692304,1.273597708,1.701787887,7.458914204,11.35028062,2.3690030739415932e-37 -5906,2002/3/4,0.084250487,14.0217457,-0.005830453,1.448136076,6.890735564,4.188769331,1.1845015369707966e-37 -5907,2002/3/5,0.831649473,13.79181333,-0.283112059,0.799687274,6.828201343,11.57053406,5.922507684853983e-38 -5908,2002/3/6,1.273406517,11.68369286,-2.019392411,0.51870127,6.206679653,21.13857794,2.9612538424269915e-38 -5909,2002/3/7,1.173438952,5.815760145,-3.978974541,0.362264575,4.337672704,25.36988805,1.4806269212134958e-38 -5910,2002/3/8,0.018915137,8.164670325,-4.217704234,0.784618809,5.14923469,7.94642981,7.403134606067479e-39 -5911,2002/3/9,0.088611513,11.53588601,-1.393674946,0.980638354,6.082756435,5.385116038,3.7015673030337394e-39 -5912,2002/3/10,0.178497471,13.5289855,-1.052276921,1.019032265,6.785561139,5.445309827,1.8507836515168697e-39 -5913,2002/3/11,0.203274477,14.6056292,-0.068395583,1.287131672,7.094942705,5.151908161,9.253918257584349e-40 -5914,2002/3/12,0.198947425,15.63623869,1.20897659,1.558952008,7.354794856,4.583941726,4.626959128792174e-40 -5915,2002/3/13,0.13676372,17.0665013,1.770625372,1.517229794,7.856197836,3.382121448,2.313479564396087e-40 -5916,2002/3/14,0.450337234,17.27109828,2.146964832,1.614014296,7.890898512,6.355857611,1.1567397821980436e-40 -5917,2002/3/15,0.177137947,17.13751063,1.687887909,1.46096296,7.884986806,3.874490585,5.783698910990218e-41 -5918,2002/3/16,0.653822125,15.45776771,-0.086974707,1.125078362,7.402983547,8.353027051,2.891849455495109e-41 -5919,2002/3/17,0.103072246,15.79140507,-0.792731615,0.935007983,7.586320689,3.575250677,1.4459247277475545e-41 -5920,2002/3/18,5.632543812,14.37941327,-0.178019034,0.884225626,6.991661469,109.5825872,7.229623638737772e-42 -5921,2002/3/19,0.230846793,15.44659356,1.471089242,1.254276808,7.219973662,32.93628425,3.614811819368886e-42 -5922,2002/3/20,0.045848812,17.69150747,2.149343963,1.569366885,8.033055625,14.51935209,1.807405909684443e-42 -5923,2002/3/21,0.078681888,18.25782453,2.180054566,1.769802775,8.253490835,9.860244777,9.037029548422215e-43 -5924,2002/3/22,0.271909778,17.82978427,3.439807569,1.82779428,7.919547052,10.52323665,4.518514774211108e-43 -5925,2002/3/23,1.051608496,14.11970628,1.903185044,1.723246493,6.619918645,23.39824419,2.259257387105554e-43 -5926,2002/3/24,0.207636401,15.23974536,2.276033563,1.497343819,7.01246141,11.00566153,1.129628693552777e-43 -5927,2002/3/25,0.390890197,15.64845904,2.1675615,1.576285521,7.18717612,11.16227194,5.648143467763885e-44 -5928,2002/3/26,0.049675681,17.41801344,2.237657294,1.66401784,7.884783713,5.099340872,2.8240717338819423e-44 -5929,2002/3/27,0.284062689,17.72051081,3.044555541,1.476646404,7.90367957,6.55142833,1.4120358669409711e-44 -5930,2002/3/28,0.301794983,17.28065684,2.625100642,1.119225152,7.773186851,6.463367716,7.060179334704856e-45 -5931,2002/3/29,0.059784572,16.83234604,2.245354611,0.986812214,7.634780576,3.115536389,3.530089667352428e-45 -5932,2002/3/30,4.609205046,17.15005886,1.609704837,0.734794704,7.829874486,86.43087293,1.765044833676214e-45 -5933,2002/3/31,1.996143597,15.92613768,2.569645008,1.262516674,7.219375344,74.57131476,8.82522416838107e-46 -5934,2002/4/1,0.433183094,16.44270798,2.878177143,1.526254133,7.381983718,34.15875584,4.412612084190535e-46 -5935,2002/4/2,0.069051576,16.99749599,3.655856003,1.657950094,7.494270833,16.03634825,2.2063060420952674e-46 -5936,2002/4/3,0.106544762,17.73788887,4.016540058,2.007136467,7.744351299,11.20405052,1.1031530210476337e-46 -5937,2002/4/4,0.015510854,15.76007273,1.915897666,2.054400077,7.221511303,6.494577343,5.515765105238169e-47 -5938,2002/4/5,0.229552188,19.32183232,1.444960246,1.771182968,8.677128755,7.854460546,2.7578825526190843e-47 -5939,2002/4/6,0.670729796,21.25695488,3.925078664,1.73609674,9.207655813,14.14584095,1.3789412763095421e-47 -5940,2002/4/7,0.420798558,21.00852264,4.875688534,1.697065938,8.98078972,10.9886311,6.894706381547711e-48 -5941,2002/4/8,0.561422943,21.66174462,6.41143868,1.8564089,9.037253185,12.05642812,3.4473531907738553e-48 -5942,2002/4/9,1.563284139,20.48651776,6.821505041,1.66919414,8.44689808,28.78182288,1.7236765953869277e-48 -5943,2002/4/10,0.930475339,16.5106018,5.454994107,0.739369118,6.948430964,24.45091325,8.618382976934638e-49 -5944,2002/4/11,1.250853978,16.1005294,5.017684055,0.120639554,6.850583509,31.79444207,4.309191488467319e-49 -5945,2002/4/12,8.518290718,14.93532669,3.585212429,0.390951038,6.611338041,302.3999091,2.124044396710055e-05 -5946,2002/4/13,5.487224263,15.30547524,3.08262734,1.159977853,6.84006163,375.1916994,1.0620103691034327e-05 -5947,2002/4/14,0.603557965,16.96221678,4.194478509,1.76211968,7.345128325,141.2573357,5.3100518455171635e-06 -5948,2002/4/15,0.983810207,19.18582175,5.955326326,1.916740213,7.997365055,113.250876,2.6550259227585817e-06 -5949,2002/4/16,3.856640658,18.69809621,6.570317973,1.484949751,7.668494967,258.057554,1.3275129613792909e-06 -5950,2002/4/17,1.746926742,19.2987141,7.475729652,1.247029414,7.754442586,177.46263,6.637564806896454e-07 -5951,2002/4/18,3.170259564,20.00219251,8.303690038,1.570800339,7.898422409,245.1952435,3.318782403448227e-07 -5952,2002/4/19,0.641384376,19.51605906,6.781494487,1.670625592,7.97728783,114.8859045,1.6593912017241136e-07 -5953,2002/4/20,0.168945404,20.33484284,5.582875087,1.456129097,8.52848003,58.792319,8.296956008620568e-08 -5954,2002/4/21,0.793745516,21.14235565,6.258418032,1.55005283,8.768178906,66.15023813,4.148478004310284e-08 -5955,2002/4/22,7.544248344,20.79199298,7.019525576,1.152542073,8.484735239,415.8680668,2.074239002155142e-08 -5956,2002/4/23,0.419369596,19.56610455,6.909032628,1.220844086,7.958107848,133.559433,1.037119501077571e-08 -5957,2002/4/24,1.117471019,20.03668582,7.342554864,1.524423896,8.08141307,114.1021667,5.185597505387855e-09 -5958,2002/4/25,0.298347928,20.27114763,8.148653132,1.8158043,8.02349003,61.83553198,2.5927987526939275e-09 -5959,2002/4/26,0.039658393,19.99695041,9.004121072,2.129989152,7.705731063,33.15094841,1.2963993763469637e-09 -5960,2002/4/27,0.320585536,20.39685736,8.242633627,2.21392075,8.052918718,31.11744159,6.481996881734819e-10 -5961,2002/4/28,0.173646626,19.18390694,7.549381892,1.886123447,7.641033793,20.84116103,3.2409984408674094e-10 -5962,2002/4/29,0.159063983,20.33796408,7.694834014,1.98630789,8.127148311,15.09899605,1.6204992204337047e-10 -5963,2002/4/30,0.48779845,19.60085935,6.335495578,1.953379013,8.046284082,19.55806028,8.102496102168523e-11 -5964,2002/5/1,0.34588465,19.77883562,6.40915624,1.744543807,8.106713795,15.30698155,4.051248051084262e-11 -5965,2002/5/2,0.458428647,19.9081336,7.613900063,1.304125942,7.937621572,15.53438579,2.025624025542131e-11 -5966,2002/5/3,1.700985946,19.98383379,7.779606803,1.417920048,7.934749233,42.08064991,1.0128120127710654e-11 -5967,2002/5/4,1.883193356,17.96468672,6.700666013,1.372536659,7.246639596,57.92231076,5.064060063855327e-12 -5968,2002/5/5,0.434282914,18.24158261,7.176229538,1.288430311,7.268533164,27.84263324,2.5320300319276636e-12 -5969,2002/5/6,0.113123574,19.6452596,8.228325495,1.201925205,7.676494674,13.74544905,1.2660150159638318e-12 -5970,2002/5/7,1.957084678,19.19156287,8.659344721,1.152619341,7.366871074,52.86548372,6.330075079819159e-13 -5971,2002/5/8,3.364698711,19.33194076,9.427936676,0.805589379,7.242667879,114.8633118,3.1650375399095795e-13 -5972,2002/5/9,1.470680473,19.31573455,9.106082412,0.720607986,7.311502753,81.33990749,1.5825187699547897e-13 -5973,2002/5/10,2.098946488,20.69803149,10.07246822,0.624854389,7.728978528,102.0405723,7.912593849773949e-14 -5974,2002/5/11,10.25194896,16.8870358,10.56751074,0.75914154,5.660179391,580.4785401,0.002094597809656165 -5975,2002/5/12,21.07909118,15.37846374,8.610675871,1.169374382,5.533059322,2456.745129,0.0794570394046638 -5976,2002/5/13,12.47975415,17.64423428,8.3381437,1.219601101,6.702255813,2709.192353,0.15758443494885932 -5977,2002/5/14,12.09855314,21.1131613,9.115912865,0.931758798,8.131082863,3176.249299,0.1806496919493628 -5978,2002/5/15,28.29862242,20.28783375,9.85303232,0.857786665,7.569708036,8527.625724,0.7054884753477757 -5979,2002/5/16,4.557025512,20.29408106,10.55972579,1.190744287,7.387369406,3600.525239,0.3435764864658037 -5980,2002/5/17,6.531755275,19.21619529,11.10639456,1.268175453,6.686108839,3048.566835,0.17178824323290184 -5981,2002/5/18,22.60570001,18.52490236,11.78871743,1.54973437,6.090276735,7787.725389,0.8561453231975101 -5982,2002/5/19,11.01355105,18.35630034,12.30648998,2.02097303,5.799884243,5888.888041,0.7315291358007421 -5983,2002/5/20,0.429671347,20.6091807,12.06280935,1.624942409,7.099686321,2136.076979,0.3558569938820695 -5984,2002/5/21,1.203150604,21.20843146,11.24500335,2.051062222,7.638187896,1406.329791,0.17792849694103474 -5985,2002/5/22,0.13114223,18.66483532,9.68789627,1.562674732,6.810712138,803.7272322,0.08896424847051737 -5986,2002/5/23,0.919742498,19.9968476,9.353931486,1.165743925,7.528711122,643.8796699,0.044482124235258685 -5987,2002/5/24,1.663299196,19.88625318,9.82033249,0.518765343,7.359183798,585.998325,0.022241062117629343 -5988,2002/5/25,3.501424926,18.3442961,10.77022401,0.196737144,6.32347332,724.3910625,0.011120531058814671 -5989,2002/5/26,4.181921199,16.82724696,10.83758532,0.331942092,5.495401824,803.2145228,0.005560265529407336 -5990,2002/5/27,2.574566564,17.44935144,10.4319888,0.731321099,5.966492979,604.9486969,0.002780132764703668 -5991,2002/5/28,1.625997142,18.22362388,9.438723683,1.226695453,6.650486448,424.4041305,0.001390066382351834 -5992,2002/5/29,2.928101371,20.00521961,10.09997668,0.888190905,7.332111949,503.4003014,0.000695033191175917 -5993,2002/5/30,11.37539178,20.72535815,11.2848653,1.357350064,7.363209591,1597.500595,0.16332813701317933 -5994,2002/5/31,3.393764561,21.46345922,12.11718446,1.732314985,7.494204812,895.3441763,0.07835381471196781 -5995,2002/6/1,0.725777992,21.56265105,11.92532695,1.540218205,7.597491853,410.5421611,0.039176907355983906 -5996,2002/6/2,3.971443349,22.25790968,12.58483334,0.879648811,7.758532449,643.4745363,0.019588453677991953 -5997,2002/6/3,5.971228721,21.92806432,12.81733097,0.515794271,7.517068694,908.0072879,0.009794226838995976 -5998,2002/6/4,2.647308301,20.98824136,12.3867831,0.498508501,7.159669147,587.4931926,0.004897113419497988 -5999,2002/6/5,2.412256643,21.99738643,13.0355965,1.015636355,7.481739524,479.1326958,0.002448556709748994 -6000,2002/6/6,2.525756663,21.86141702,13.24408427,1.566044469,7.342157075,440.0338415,0.001224278354874497 -6001,2002/6/7,1.241044997,21.96806434,12.99045678,1.491634432,7.47659723,282.9906973,0.0006121391774372485 -6002,2002/6/8,0.555564778,22.35499448,13.13754671,1.767087945,7.631283459,168.8836139,0.00030606958871862427 -6003,2002/6/9,4.763956431,22.6211032,13.39025011,1.23438353,7.690752791,465.641159,0.00015303479435931213 -6004,2002/6/10,4.600365916,23.14726069,13.13492146,1.034167278,8.038162903,537.4882082,7.651739717965607e-05 -6005,2002/6/11,2.931097821,23.05354243,14.13106144,1.179654538,7.681671521,420.6136329,3.825869858982803e-05 -6006,2002/6/12,6.340951534,21.2473004,14.0799687,1.078991435,6.707720032,726.5643534,1.9129349294914017e-05 -6007,2002/6/13,10.3823999,21.36450406,14.15509092,1.275004128,6.744280997,1388.621377,0.08664648179625282 -6008,2002/6/14,4.76087496,21.49626509,14.18765745,1.140743458,6.804916369,995.9417471,0.042291669967040785 -6009,2002/6/15,5.226628775,21.20841683,13.92499207,1.103354533,6.739500754,1012.366352,0.021145834983520392 -6010,2002/6/16,5.652828553,22.02651615,14.06004897,1.624850016,7.142190342,1098.134227,0.010572917491760196 -6011,2002/6/17,6.231195137,22.13390585,14.06844129,1.422541784,7.19686847,1224.725336,0.005286458745880098 -6012,2002/6/18,4.624089031,22.03918831,13.97174361,1.681688272,7.177464662,1043.936005,0.002643229372940049 -6013,2002/6/19,5.240911106,22.04902967,14.32513546,1.644463929,7.057584678,1090.375256,0.0013216146864700245 -6014,2002/6/20,1.530354134,22.60968007,14.14742762,1.980573526,7.425524334,576.6917619,0.0006608073432350123 -6015,2002/6/21,1.127240839,22.43209523,14.12326043,1.606529291,7.336472485,383.651465,0.00033040367161750613 -6016,2002/6/22,1.114751432,22.03022991,13.45101517,1.160992646,7.343063334,296.9274302,0.00016520183580875307 -6017,2002/6/23,0.360439968,21.95097669,12.81567089,1.348845111,7.50033762,171.406793,8.260091790437653e-05 -6018,2002/6/24,5.638642044,23.83379078,13.54378956,0.916787374,8.254820438,590.7916767,4.1300458952188266e-05 -6019,2002/6/25,10.07456866,23.21507638,14.33678614,1.280928382,7.685333118,1234.582477,0.03743492397461681 -6020,2002/6/26,7.98345854,22.15526238,14.73846818,1.125776003,6.96061358,1333.42989,0.03680965374890843 -6021,2002/6/27,10.09920176,20.91191812,14.68789915,0.851571701,6.262154281,1856.741412,0.09099352485085313 -6022,2002/6/28,9.167639659,21.57220198,14.77547757,0.733962102,6.612271488,2076.885263,0.10269590769635255 -6023,2002/6/29,5.242298426,22.26479365,13.588172,0.861906491,7.419223049,1550.083947,0.05069225124978999 -6024,2002/6/30,12.04358208,22.57737008,14.67161976,1.09134019,7.220061058,2754.617901,0.1403388610396679 -6025,2002/7/1,6.381851338,22.21990136,14.40896135,0.687210688,7.11533474,2061.731341,0.06879871718222635 -6026,2002/7/2,7.163060579,22.0688283,15.13435162,0.853650202,6.757427495,2084.881633,0.045636527701178306 -6027,2002/7/3,9.931532068,21.75757972,15.66319129,0.956450567,6.353764945,2709.127473,0.12314871970122729 -6028,2002/7/4,6.072565232,21.95949301,15.48868841,1.096444843,6.54949561,2120.982576,0.06016322027407929 -6029,2002/7/5,17.34787359,23.10336115,15.81089964,1.400051261,7.092503977,4803.498316,0.3478847385328899 -6030,2002/7/6,22.09762287,20.61289646,15.18540014,0.964443701,5.862984201,8006.005958,0.8284458375774194 -6031,2002/7/7,9.222005221,21.87905822,15.34455669,0.748585223,6.561780934,5311.414533,0.548635483126805 -6032,2002/7/8,18.08194918,20.95082792,15.39923904,0.662316005,5.975846568,8112.111303,0.9715660458665598 -6033,2002/7/9,7.83754322,21.86766377,15.71966354,0.859060581,6.397096476,5203.774904,0.5643938803642178 -6034,2002/7/10,11.89548288,21.83167827,15.56551749,0.833000765,6.441865673,5823.920469,0.6601569884674441 -6035,2002/7/11,5.191067082,21.77265039,15.23113005,1.186905817,6.546845632,3590.017164,0.3167448449513749 -6036,2002/7/12,2.815012404,22.72102388,15.06954135,1.310959874,7.157798808,2215.568098,0.15837242247568745 -6037,2002/7/13,2.775607425,23.32034751,15.16244932,0.875893287,7.461223453,1658.333457,0.07918621123784372 -6038,2002/7/14,10.33415438,23.04305909,14.81647353,0.85442228,7.430237739,2964.570356,0.23166822084047 -6039,2002/7/15,6.524496303,23.5056362,15.13996016,0.734318355,7.573755481,2371.649256,0.1094818533742706 -6040,2002/7/16,3.801484767,23.00893236,14.94347296,0.84439347,7.368022046,1602.492343,0.0547409266871353 -6041,2002/7/17,5.529701015,21.9151276,15.27323834,1.046137071,6.617604122,1660.511489,0.02737046334356765 -6042,2002/7/18,9.209945356,21.40257296,15.10196438,1.079108885,6.385640096,2347.720221,0.19206112713284393 -6043,2002/7/19,11.68698878,19.34619739,14.22386269,0.90652222,5.52413624,3200.454838,0.49490427979105833 -6044,2002/7/20,15.94599489,18.37917844,13.52145967,1.005006449,5.250516438,5005.448203,0.9937340479938881 -6045,2002/7/21,7.229400984,16.96247228,13.33444219,1.084980231,4.430453878,3464.629618,0.6945034110257433 -6046,2002/7/22,3.776661843,19.32716324,13.60081996,1.419401293,5.789327195,2234.800777,0.33823969200373694 -6047,2002/7/23,4.469721893,20.45737199,13.73202678,1.280741097,6.390663565,2011.166071,0.16911984600186847 -6048,2002/7/24,7.036316042,20.9288856,14.34793277,1.079757856,6.421397269,2424.821559,0.1329424124564757 -6049,2002/7/25,4.01546586,20.93761658,13.83221572,0.777928988,6.625938946,1725.793691,0.06456781232590567 -6050,2002/7/26,5.282183932,20.23581341,13.29619298,0.553575508,6.434328983,1749.997921,0.03228390616295283 -6051,2002/7/27,4.665557788,20.95141889,13.84113247,0.624246511,6.633153232,1551.272322,0.016141953081476416 -6052,2002/7/28,7.691861371,21.73721246,13.930391,0.665343854,7.038441054,2055.742801,0.0560796317537319 -6053,2002/7/29,5.888432954,21.67291057,14.46364086,0.552029168,6.809804105,1799.921904,0.026276149431703893 -6054,2002/7/30,6.844476421,22.12449363,14.18286458,0.882342317,7.166081558,1921.500588,0.013138074715851947 -6055,2002/7/31,21.16353522,22.29124728,14.45379928,0.883261314,7.164051371,5478.106969,1.0256027717759852 -6056,2002/8/1,32.92372315,20.77238925,14.1381808,0.621491819,6.425753517,13316.38751,5.018222861229901 -6057,2002/8/2,8.331749769,20.9479734,13.69760917,0.404565802,6.694076851,6596.603094,1.340881693940569 -6058,2002/8/3,2.187116761,22.86026197,13.6801265,0.580090031,7.737755372,3081.709604,0.6614270194230584 -6059,2002/8/4,3.634504686,23.7856165,13.9879695,0.747288196,8.132733122,2415.716181,0.3307135097115292 -6060,2002/8/5,9.197637806,23.41640072,14.03116611,0.611558869,7.926688228,3207.8177,0.2879038822632636 -6061,2002/8/6,5.005307897,23.37841754,14.47523989,0.753669297,7.765699979,2247.315917,0.13804383954531152 -6062,2002/8/7,9.202050592,22.8944744,15.04177628,0.821836383,7.303657595,2793.499127,0.2487978118429537 -6063,2002/8/8,7.038845261,22.42907281,15.26059129,0.87102729,6.957034548,2423.469125,0.12376128663345498 -6064,2002/8/9,18.03618963,20.79013455,13.52712551,0.922357214,6.682707315,5102.098854,1.1550880465199986 -6065,2002/8/10,10.13789514,19.55299201,13.22406419,0.708063476,6.102820783,4162.913766,0.9509528739611823 -6066,2002/8/11,9.573896609,18.93591224,12.59400449,0.754465244,5.999707383,3970.679337,0.8419286630277274 -6067,2002/8/12,9.513497306,18.93505062,12.54922231,0.639124414,6.018463212,3976.394123,0.7900564259911202 -6068,2002/8/13,11.56719723,19.77662025,12.71180927,0.564004348,6.427402807,4661.845031,0.9613250380678625 -6069,2002/8/14,4.28569109,21.06104159,12.94634443,0.825450701,7.044698376,2690.916519,0.4470187949839988 -6070,2002/8/15,4.137966697,22.02444302,13.32092373,0.856530445,7.438831086,2072.806001,0.2235093974919994 -6071,2002/8/16,14.47371207,22.17882718,13.39662072,0.828809653,7.499473734,4329.621887,0.8955822920865313 -6072,2002/8/17,16.80614365,20.44892674,12.66389326,0.358979609,6.819233053,5937.591723,1.581037978103474 -6073,2002/8/18,10.39622859,18.89984542,11.83602062,0.26238433,6.273469788,4809.917913,1.2391714641244251 -6074,2002/8/19,6.871157831,21.63027849,12.24474991,0.392352466,7.576569356,3565.893842,0.5870383615464815 -6075,2002/8/20,3.766572001,21.44679766,12.35567023,0.459555738,7.452061341,2274.801456,0.29351918077324074 -6076,2002/8/21,3.09183543,20.61477364,12.73450051,0.313299322,6.89563289,1644.258464,0.14675959038662037 -6077,2002/8/22,7.576957924,19.82500497,12.92011539,0.336706438,6.400941076,2263.604578,0.21522134995154552 -6078,2002/8/23,6.870159316,20.51276827,12.24175756,0.415228827,7.009573572,2203.981299,0.09905678959120154 -6079,2002/8/24,4.160633608,21.71375508,12.54214672,0.700588342,7.54676552,1583.224754,0.04952839479560077 -6080,2002/8/25,3.775167441,21.94781085,12.55106688,0.584022387,7.668802809,1285.657246,0.024764197397800385 -6081,2002/8/26,4.398298342,21.3166751,12.13931548,0.257406116,7.469364168,1230.541379,0.012382098698900192 -6082,2002/8/27,6.452253554,22.04399942,12.07570847,0.296696534,7.862988386,1492.915214,0.006191049349450096 -6083,2002/8/28,5.357968603,22.24663148,12.36566607,0.230651422,7.887431485,1345.462132,0.003095524674725048 -6084,2002/8/29,3.242420745,21.47310405,11.49279575,0.143901478,7.744734107,951.5151207,0.001547762337362524 -6085,2002/8/30,0.002308622,22.00325199,10.98330497,0.265669429,8.144441496,379.2163115,0.000773881168681262 -6086,2002/8/31,0.085166553,23.40558007,11.22841437,0.452997031,8.771255139,228.0498816,0.000386940584340631 -6087,2002/9/1,0.309664593,23.31735213,12.29339969,0.953189581,8.465774121,169.7996135,0.0001934702921703155 -6088,2002/9/2,0.696366645,22.48849938,12.2165869,0.57718752,8.07194912,151.1690304,9.673514608515775e-05 -6089,2002/9/3,7.625084573,22.09741821,12.41085353,0.702029764,7.820528191,686.1246107,4.8367573042578876e-05 -6090,2002/9/4,2.854979742,21.80139227,12.23983673,0.773183718,7.72201852,440.8275705,2.4183786521289438e-05 -6091,2002/9/5,0.684152708,22.39954381,11.86470809,0.882635674,8.135597624,208.6825087,1.2091893260644719e-05 -6092,2002/9/6,0.564136233,21.43153365,11.6474612,0.770897825,7.711287886,137.6245628,6.0459466303223595e-06 -6093,2002/9/7,0.919004952,22.44563332,11.69339289,0.820305572,8.212837214,126.7126384,3.0229733151611798e-06 -6094,2002/9/8,4.258439096,22.13770589,11.84769824,0.736031739,8.020853649,322.7099577,1.5114866575805899e-06 -6095,2002/9/9,1.085599808,20.71270747,11.68311896,0.791810224,7.345807473,165.3097318,7.557433287902949e-07 -6096,2002/9/10,0.387842864,21.38043826,11.94819595,0.927233879,7.614845292,87.90263101,3.7787166439514747e-07 -6097,2002/9/11,2.460681028,22.4815977,12.2787329,0.847732748,8.08863719,175.682068,1.8893583219757373e-07 -6098,2002/9/12,3.72952879,22.40458979,12.77804918,0.74465784,7.908289537,270.4586784,9.446791609878687e-08 -6099,2002/9/13,6.378118172,22.74725626,12.63009813,0.785926229,8.134029675,509.5783534,4.7233958049393434e-08 -6100,2002/9/14,10.78374055,21.07660605,12.93511846,0.686258957,7.160256741,1106.234306,0.18401472072550135 -6101,2002/9/15,19.24486645,18.29159803,12.51421058,0.468860763,5.757121127,2965.061133,0.8163301742586869 -6102,2002/9/16,7.0637178,18.77013722,11.79590283,0.55050228,6.306054426,2033.119389,0.43855954665521407 -6103,2002/9/17,3.883049376,18.95173298,11.43433726,0.402164669,6.532846828,1349.021093,0.21762368298937518 -6104,2002/9/18,0.84359402,19.97539915,11.03609031,0.833222061,7.195503788,658.8278683,0.10881184149468759 -6105,2002/9/19,0.348707718,19.55709657,10.85869913,0.692369164,7.038376204,381.0612877,0.054405920747343794 -6106,2002/9/20,0.844683516,21.28361512,10.99085559,0.716796874,7.876322731,317.6301434,0.027202960373671897 -6107,2002/9/21,1.81618463,20.94348167,11.06709698,0.459817913,7.689747912,350.6830775,0.013601480186835949 -6108,2002/9/22,2.775523007,19.31702204,10.54393821,0.507417446,7.021103608,413.2806796,0.006800740093417974 -6109,2002/9/23,1.390001945,17.18908635,9.496102118,0.647542479,6.259339739,275.3117468,0.003400370046708987 -6110,2002/9/24,2.673952552,17.96224185,9.635710409,0.561547496,6.611222888,346.7514736,0.0017001850233544936 -6111,2002/9/25,2.165036422,18.69495748,10.74903203,0.680516003,6.650854379,306.6797589,0.0008500925116772468 -6112,2002/9/26,0.795192554,18.6485212,10.92815022,0.652151165,6.572966144,174.6975302,0.0004250462558386234 -6113,2002/9/27,4.115061799,18.89014237,10.760008,0.70046346,6.756680144,402.7634177,0.0002125231279193117 -6114,2002/9/28,15.54895651,17.85092788,10.8870108,0.441003406,6.16950662,1812.818602,0.3602425917459926 -6115,2002/9/29,7.994079558,18.62640624,10.61415358,0.513282611,6.67320823,1605.198495,0.2353798594340571 -6116,2002/9/30,6.304775039,18.44638338,10.52475348,0.405394167,6.611666416,1446.083983,0.11622672058428049 -6117,2002/10/1,6.677786268,19.18717473,10.11074253,0.482883444,7.117191253,1534.741933,0.058113360292140245 -6118,2002/10/2,9.253750318,18.8378389,10.22206408,0.62883841,6.912862909,2063.386936,0.14030145141069736 -6119,2002/10/3,14.2729282,17.88995252,9.673136224,0.477236457,6.598520934,3442.579117,0.4485122851099335 -6120,2002/10/4,2.285334635,18.45390199,8.925664759,0.488867458,7.089136531,1467.193641,0.21479842756567855 -6121,2002/10/5,9.070953633,17.54254441,6.400638041,0.257349912,7.251957766,2368.50784,0.2051676987224475 -6122,2002/10/6,0.989781978,16.31859107,3.426425387,0.46697213,7.255061092,966.7527474,0.09995638966744466 -6123,2002/10/7,0.30498241,17.75694538,2.198292049,0.525073287,8.005099848,510.9180458,0.04997819483372233 -6124,2002/10/8,1.084577864,17.11673677,4.066045597,0.730009427,7.497996062,436.2680974,0.024989097416861165 -6125,2002/10/9,1.794676489,17.43083031,3.958357248,0.733667871,7.650393644,427.5780307,0.012494548708430583 -6126,2002/10/10,0.891409962,16.94631974,3.161250682,0.683508474,7.56906044,277.2395083,0.006247274354215291 -6127,2002/10/11,0.033857487,17.10786838,2.690725297,0.957863871,7.70223798,135.497154,0.0031236371771076457 -6128,2002/10/12,0.51827937,17.21597705,3.931191031,0.67804628,7.578006467,120.5792772,0.0015618185885538228 -6129,2002/10/13,0.952435139,17.14935454,5.062276065,0.736959635,7.368240928,125.8650978,0.0007809092942769114 -6130,2002/10/14,0.061893327,17.6367402,4.984484207,0.589828471,7.596387773,57.33699224,0.0003904546471384557 -6131,2002/10/15,1.756982367,16.84882491,6.363140585,0.8455505,6.989709669,128.3182605,0.00019522732356922785 -6132,2002/10/16,0.52897958,16.50430976,7.094897026,1.264640041,6.668754656,70.92548498,9.761366178461393e-05 -6133,2002/10/17,0.003495875,18.81331365,7.03383916,1.298852786,7.74932846,30.23800954,4.8806830892306964e-05 -6134,2002/10/18,3.417373957,18.22690489,8.636556627,1.109942928,7.11202827,174.982876,2.4403415446153482e-05 -6135,2002/10/19,2.42387913,16.81802647,8.28733783,0.985303561,6.522578333,170.9594812,1.2201707723076741e-05 -6136,2002/10/20,1.498740993,16.98378072,7.732257513,1.206919407,6.75287252,129.8787889,6.1008538615383705e-06 -6137,2002/10/21,3.891749328,17.23864919,7.056919537,1.377078848,7.038861754,259.0387545,3.0504269307691852e-06 -6138,2002/10/22,4.097443445,15.39627554,4.25716401,1.505555546,6.795606535,330.7039881,1.5252134653845926e-06 -6139,2002/10/23,3.188323076,13.94022053,3.713417577,0.803732021,6.279257305,314.2467266,7.626067326922963e-07 -6140,2002/10/24,0.464644275,15.48524712,4.901653026,0.726214937,6.719487663,133.2731793,3.8130336634614815e-07 -6141,2002/10/25,0.464377963,15.87580625,5.604784815,0.533058364,6.752601623,89.64512758,1.9065168317307408e-07 -6142,2002/10/26,1.537345159,15.45024279,4.835694516,0.84782935,6.724660603,129.6697303,9.532584158653704e-08 -6143,2002/10/27,1.066572037,14.8951364,5.275171607,1.010539434,6.39214369,104.4931375,4.766292079326852e-08 -6144,2002/10/28,11.18576368,14.65689243,4.943053318,1.001462984,6.361051254,828.3663429,0.08644159468255404 -6145,2002/10/29,0.275711279,14.63303833,4.084074213,0.938154261,6.526385439,235.1313845,0.042446435626894014 -6146,2002/10/30,0.063197023,15.36481208,3.176494872,0.879206164,6.996266044,107.9593822,0.021223217813447007 -6147,2002/10/31,0.042196131,15.31253395,3.338586397,0.653745788,6.952256942,66.71811308,0.010611608906723503 -6148,2002/11/1,0.863065537,15.52786678,3.811873415,0.518374477,6.967955779,90.37725485,0.005305804453361752 -6149,2002/11/2,10.75531044,13.29487778,4.229476131,0.550384677,5.929870583,808.0593389,0.09136012591665105 -6150,2002/11/3,3.623711117,10.64502049,1.188696408,0.335009799,5.410446338,532.9461106,0.044864699823774445 -6151,2002/11/4,0.38320093,8.530756137,-0.045165158,0.45118635,4.791223359,207.6035262,0.022432349911887223 -6152,2002/11/5,4.57e-05,10.11263416,-0.916451763,0.597761878,5.523857978,101.707116,0.011216174955943611 -6153,2002/11/6,0.027402466,11.04058441,-1.789717856,0.539722405,5.968169127,64.94569788,0.005608087477971806 -6154,2002/11/7,0.021170304,11.78124563,-1.296129061,0.399808808,6.194276116,42.58378845,0.002804043738985903 -6155,2002/11/8,0.009859213,12.83687327,0.789614645,0.674838828,6.353717192,27.60793049,0.0014020218694929514 -6156,2002/11/9,6.93e-05,13.1690513,0.026441034,0.905567035,6.581399647,17.67079458,0.0007010109347464757 -6157,2002/11/10,0.00256447,13.59532456,0.201758143,0.887164774,6.729107045,11.57898103,0.00035050546737323785 -6158,2002/11/11,0.014237034,13.98871176,1.234401621,0.881915042,6.759357504,8.033415339,0.00017525273368661893 -6159,2002/11/12,0.737406772,14.50450841,3.716914627,0.719845377,6.586248077,30.80212411,8.762636684330946e-05 -6160,2002/11/13,0.914097396,14.60493182,5.876640842,1.187936796,6.176004452,40.2788408,4.381318342165473e-05 -6161,2002/11/14,1.949804817,14.14844049,1.661511035,1.514343592,6.774811227,80.70225807,2.1906591710827366e-05 -6162,2002/11/15,0.038450739,11.89720709,-1.970637693,1.017393102,6.325401012,24.06969766,1.0953295855413683e-05 -6163,2002/11/16,0.018903063,11.31317044,-2.702030622,0.458725253,6.177938107,12.08532196,5.4766479277068415e-06 -6164,2002/11/17,0.851994951,9.209484336,-1.640776564,0.778822357,5.309966993,31.62797213,2.7383239638534207e-06 -6165,2002/11/18,0.521541053,10.13781432,-0.481626828,0.928808779,5.509585257,25.27132013,1.3691619819267104e-06 -6166,2002/11/19,0.622879344,11.19532137,0.548391517,0.780940859,5.773629511,26.27372048,6.845809909633552e-07 -6167,2002/11/20,0.226748647,11.48430167,-1.401069331,0.80495062,6.131415982,15.14754275,3.422904954816776e-07 -6168,2002/11/21,0.108338761,9.965760641,-2.915096559,0.702108499,5.725738462,9.076442389,1.711452477408388e-07 -6169,2002/11/22,0.003878459,10.46679965,-1.598861169,0.909708151,5.780034036,4.558046567,8.55726238704194e-08 -6170,2002/11/23,0.057600713,11.30118801,-0.325876412,0.959559762,5.945245545,3.897768792,4.27863119352097e-08 -6171,2002/11/24,1.298166035,11.73186767,0.156423143,0.63073196,6.050650681,27.926353,2.139315596760485e-08 -6172,2002/11/25,6.424940498,9.863151189,2.158870168,0.713651011,4.952047678,210.6388445,0.010975882578107369 -6173,2002/11/26,6.704273002,8.47212015,0.082857872,0.777111177,4.793063543,403.1594939,0.022462424441098146 -6174,2002/11/27,2.272489897,7.207064511,-1.883161928,0.745689036,4.625866802,252.9707868,0.011155468791753529 -6175,2002/11/28,0.967312348,9.098185934,-1.213602239,0.833206107,5.237023217,148.5311708,0.0055777343958767645 -6176,2002/11/29,0.375742045,10.92820195,0.944631604,0.922578368,5.627558972,85.00539528,0.0027888671979383823 -6177,2002/11/30,0.045689721,11.69770933,2.143346362,1.113669542,5.735437985,44.70418335,0.0013944335989691911 -6178,2002/12/1,0.804440138,12.85454496,1.864783782,1.37120112,6.262520877,67.19993561,0.0006972167994845956 -6179,2002/12/2,0.205886653,12.66300771,-1.043331175,1.107583085,6.565115321,36.40154394,0.0003486083997422978 -6180,2002/12/3,0.0006363,12.04045376,-1.903811359,0.893553985,6.415865176,17.72020595,0.0001743041998711489 -6181,2002/12/4,0.001403706,12.66354462,-0.945390638,1.226007555,6.559392054,10.92492095,8.715209993557445e-05 -6182,2002/12/5,0.087311277,12.66267841,-0.29117601,1.329550872,6.489827684,9.857457654,4.357604996778722e-05 -6183,2002/12/6,0.679580947,12.75857998,0.203056105,1.399175951,6.469693004,25.58708765,2.178802498389361e-05 -6184,2002/12/7,0.419657397,12.56164008,-1.257374978,1.171590613,6.557561562,20.06156075,1.0894012491946806e-05 -6185,2002/12/8,0.260758388,11.78514748,-1.669268336,0.584577788,6.308199982,13.9618379,5.447006245973403e-06 -6186,2002/12/9,1.353170035,9.663090357,-0.680321984,0.868219302,5.395295467,40.99315282,2.7235031229867014e-06 -6187,2002/12/10,2.942299006,9.066187454,-2.547455668,1.143818828,5.402340654,103.7563412,1.3617515614933507e-06 -6188,2002/12/11,1.836651475,8.792121244,-3.968808122,0.437620984,5.436225421,95.03385272,6.808757807466754e-07 -6189,2002/12/12,0.759805309,8.744272278,-1.966808514,0.608576506,5.222443234,57.93499677,3.404378903733377e-07 -6190,2002/12/13,0.060374128,9.019375839,-2.278996003,0.793082987,5.360166149,24.37445845,1.7021894518666884e-07 -6191,2002/12/14,0.039969824,9.654087744,-2.081836209,0.770229663,5.571447752,14.53107209,8.510947259333442e-08 -6192,2002/12/15,0.023104863,10.37567504,-1.031716667,0.814673062,5.719446953,9.360974748,4.255473629666721e-08 -6193,2002/12/16,0.420672486,9.517231501,-0.286636374,0.902852259,5.289848436,17.03513857,2.1277368148333605e-08 -6194,2002/12/17,0.138379355,9.527497888,-1.848659646,1.096231341,5.501985826,9.910703782,1.0638684074166802e-08 -6195,2002/12/18,0.024715866,9.339506463,-2.808442831,1.13337207,5.535688525,5.007458385,5.319342037083401e-09 -6196,2002/12/19,0.045998809,8.736743186,-3.416439174,1.211648742,5.378594748,3.766430768,2.6596710185417006e-09 -6197,2002/12/20,0.028691753,8.867233356,-4.482302726,1.309119779,5.509055751,2.558417931,1.3298355092708503e-09 -6198,2002/12/21,0.070473415,8.609733678,-5.169591132,1.148933686,5.465518732,2.618213934,6.649177546354252e-10 -6199,2002/12/22,0.009635654,8.732763575,-6.015781439,1.011943334,5.550418116,1.320685334,3.324588773177126e-10 -6200,2002/12/23,0.000772803,8.908443874,-5.990299513,0.939284001,5.608532808,0.742673935,1.662294386588563e-10 -6201,2002/12/24,0.019535502,8.51618526,-5.309383677,0.696271222,5.443812822,0.7208183,8.311471932942814e-11 -6202,2002/12/25,3.461820214,8.470944176,-3.197056699,0.743005641,5.267908106,62.75790011,4.155735966471407e-11 -6203,2002/12/26,0.087922847,8.316950132,-5.004591958,0.889737259,5.359131931,17.17809212,2.0778679832357036e-11 -6204,2002/12/27,0.080491246,7.692793563,-4.506058211,0.980574144,5.112147838,8.84179807,1.0389339916178518e-11 -6205,2002/12/28,0.068879934,7.160942303,-2.951363874,1.045393131,4.777490724,6.027316139,5.194669958089259e-12 -6206,2002/12/29,0.486993345,7.958295844,-4.449616265,0.952869643,5.199140448,12.15275097,2.5973349790446295e-12 -6207,2002/12/30,0.0,8.524261079,-5.098563641,0.963206712,5.436389576,4.1970326,1.2986674895223148e-12 -6208,2002/12/31,0.005268952,9.962446893,-4.414617955,0.844464639,5.88872154,2.357399564,6.493337447611574e-13 -6209,2003/1/1,2.30593,9.144836716,-2.643926651,0.936575048,5.455978325,43.51935505,3.246668723805787e-13 -6210,2003/1/2,0.440180144,8.322126002,-3.940300189,0.719002216,5.284468196,20.31750561,1.6233343619028934e-13 -6211,2003/1/3,0.001170622,8.578267413,-3.894227189,0.728441806,5.369810552,7.307067432,8.116671809514467e-14 -6212,2003/1/4,1.580686497,9.623834155,-1.616866727,0.909309058,5.518182544,36.9577386,4.0583359047572336e-14 -6213,2003/1/5,3.346006064,6.904035956,-3.183668552,0.946406063,4.713535814,102.2535043,2.0291679523786168e-14 -6214,2003/1/6,0.000533088,6.781629579,-5.655256573,0.512343644,4.888233152,27.25292859,1.0145839761893084e-14 -6215,2003/1/7,0.002620635,7.600978613,-3.923508411,0.925514668,5.032140035,13.00200003,5.072919880946542e-15 -6216,2003/1/8,0.020012906,9.467496159,-3.475391889,1.228315876,5.646777363,8.56734227,2.536459940473271e-15 -6217,2003/1/9,0.060750187,9.704298361,-5.007248902,0.811805436,5.83240631,6.746486668,1.2682299702366355e-15 -6218,2003/1/10,0.003321833,8.888073463,-4.41941682,0.865927382,5.515244842,3.85539613,6.3411498511831775e-16 -6219,2003/1/11,0.537453937,9.190046941,-3.699896009,0.882808822,5.565922896,13.07924986,3.1705749255915887e-16 -6220,2003/1/12,0.144160125,9.259650462,-4.375543306,1.012761837,5.639578286,6.870985248,1.5852874627957944e-16 -6221,2003/1/13,0.411629006,9.53589565,-4.003582523,1.059294024,5.709110017,10.2701854,7.926437313978972e-17 -6222,2003/1/14,0.352148959,9.292600649,-4.983298016,0.929945826,5.687331729,9.645637001,3.963218656989486e-17 -6223,2003/1/15,0.227608231,8.97725832,-5.153591324,0.712332302,5.588788977,7.172958007,1.981609328494743e-17 -6224,2003/1/16,1.89169451,9.268820335,-4.234835735,0.711784494,5.630293301,38.63167877,9.908046642473715e-18 -6225,2003/1/17,0.244291437,11.06234132,-3.323275973,0.69629454,6.197187086,15.22868571,4.9540233212368574e-18 -6226,2003/1/18,0.198306238,12.01847333,-2.55262236,0.632787266,6.48447669,9.792452699,2.4770116606184287e-18 -6227,2003/1/19,0.00549761,12.44245909,-2.800271438,0.877831551,6.657056457,4.512183746,1.2385058303092144e-18 -6228,2003/1/20,0.00128127,12.75635529,-3.450677284,0.959666481,6.812113358,2.695089828,6.192529151546072e-19 -6229,2003/1/21,0.046015599,12.15389129,-3.945843821,1.332658005,6.62230738,2.348386817,3.096264575773036e-19 -6230,2003/1/22,0.001325642,11.04126951,-4.492241482,0.646809078,6.257218405,1.286120899,1.548132287886518e-19 -6231,2003/1/23,0.362454743,10.07499191,-3.20961317,1.432459699,5.828768396,4.937430556,7.74066143943259e-20 -6232,2003/1/24,0.073499645,10.10029502,-3.030762317,1.592310059,5.821560979,2.318725028,3.870330719716295e-20 -6233,2003/1/25,5.16e-07,10.9712987,-2.811422465,1.482297588,6.115264755,0.967205491,1.9351653598581474e-20 -6234,2003/1/26,0.000906124,11.55476488,-4.358615847,1.351408646,6.424707495,0.579956877,9.675826799290737e-21 -6235,2003/1/27,0.113601308,11.64500532,-3.977821873,0.945802157,6.43424262,1.296323166,4.8379133996453686e-21 -6236,2003/1/28,0.042666452,11.55058935,-2.097359256,1.220554017,6.260456571,0.783208013,2.4189566998226843e-21 -6237,2003/1/29,0.831515956,12.39779563,0.107546585,1.614180732,6.341665086,7.173285934,1.2094783499113421e-21 -6238,2003/1/30,1.010425944,10.41198868,-0.640719351,1.662465016,5.670536015,12.36567869,6.047391749556711e-22 -6239,2003/1/31,0.029865134,10.5208482,-2.199256989,1.266758629,5.887181007,3.709990459,3.0236958747783554e-22 -6240,2003/2/1,0.003434738,12.37233467,-1.898193882,1.191739473,6.539316827,1.750029851,1.5118479373891777e-22 -6241,2003/2/2,0.0,13.45931518,-1.836947838,1.289904622,6.936856375,1.064176345,7.559239686945888e-23 -6242,2003/2/3,0.011628545,13.45501048,-1.2132284,1.132182801,6.879895864,0.777903109,3.779619843472944e-23 -6243,2003/2/4,0.04082065,12.35071772,-1.191637329,1.032884774,6.458891188,0.75433067,1.889809921736472e-23 -6244,2003/2/5,3.04296811,9.17897918,-0.529877173,0.810554615,5.173553695,35.83371556,9.44904960868236e-24 -6245,2003/2/6,4.935742833,6.863262466,-2.569215164,1.023993685,4.59592809,129.2616786,9.599480847183962e-05 -6246,2003/2/7,0.110404133,9.630723741,-4.242361896,1.216436468,5.724629337,36.28271048,4.7983845372681286e-05 -6247,2003/2/8,0.026306519,10.68413876,-2.255158619,1.591527234,5.936611248,16.67336022,2.3991922686340643e-05 -6248,2003/2/9,0.063818814,11.41979948,-2.403271329,1.274562437,6.215605001,11.4909327,1.1995961343170321e-05 -6249,2003/2/10,0.01105193,11.75295681,-2.920720394,1.179814058,6.375146584,6.986586318,5.997980671585161e-06 -6250,2003/2/11,0.020771431,11.45518389,-2.550217268,0.953584186,6.23609044,4.775063767,2.9989903357925804e-06 -6251,2003/2/12,3.587334615,10.99308309,-2.44444798,1.084816272,6.057080262,90.41485715,1.4994951678962902e-06 -6252,2003/2/13,3.40852521,10.65596137,-1.463818087,1.248771018,5.833943934,138.3060723,7.497475839481451e-07 -6253,2003/2/14,2.805489402,10.61399938,-1.713035921,1.337132315,5.842990312,153.7094789,3.7487379197407255e-07 -6254,2003/2/15,0.134878462,10.6643794,-3.409807366,1.424062069,6.009873533,52.05298454,1.8743689598703627e-07 -6255,2003/2/16,0.089723301,12.26590368,-3.021394338,1.088552635,6.551609428,28.57534758,9.371844799351814e-08 -6256,2003/2/17,0.017198494,13.52940418,-3.045854406,1.037843047,7.007499831,17.00789537,4.685922399675907e-08 -6257,2003/2/18,0.007884143,14.27736016,-2.923104095,1.082287007,7.270137075,10.83988136,2.3429611998379534e-08 -6258,2003/2/19,0.003846675,15.27609835,-1.943466615,1.26379301,7.577303586,7.013598146,1.1714805999189767e-08 -6259,2003/2/20,0.174024582,14.53666777,0.566836466,1.724313001,7.068757119,8.406355143,5.8574029995948835e-09 -6260,2003/2/21,0.264631325,13.04352636,-1.012080331,1.588977807,6.657782605,9.25556127,2.9287014997974418e-09 -6261,2003/2/22,0.024461819,12.62189627,-2.998301034,1.42454935,6.6606722,4.0657123,1.4643507498987209e-09 -6262,2003/2/23,0.031393513,13.63586098,-3.495729423,1.133106082,7.051830007,2.686157281,7.321753749493604e-10 -6263,2003/2/24,0.039839637,14.27477419,-2.321024606,1.283600587,7.212445719,2.069807526,3.660876874746802e-10 -6264,2003/2/25,0.07959021,13.5597626,-1.075835647,1.348832054,6.845329106,2.107618147,1.830438437373401e-10 -6265,2003/2/26,0.049253268,13.71756887,-1.488683616,1.424203124,6.937106634,1.489482964,9.152192186867006e-11 -6266,2003/2/27,0.065474241,14.08302744,-1.895367894,1.337989212,7.101411289,1.361113212,4.576096093433503e-11 -6267,2003/2/28,0.009533389,14.79281044,-2.411173886,1.368099342,7.394941503,0.661408385,2.2880480467167514e-11 -6268,2003/3/1,0.000400414,15.48324244,-1.61385507,1.665280495,7.596671342,0.360372731,1.1440240233583757e-11 -6269,2003/3/2,0.0,15.57672779,-0.461432051,1.982385098,7.539107892,0.225867243,5.7201201167918784e-12 -6270,2003/3/3,0.107400457,16.50117362,0.060104033,2.228664543,7.846804647,0.824101174,2.8600600583959392e-12 -6271,2003/3/4,0.215723471,17.50688603,1.881742394,2.781621376,8.060057794,1.55338138,1.4300300291979696e-12 -6272,2003/3/5,0.00611757,16.33679928,0.960490402,2.266740431,7.687485095,0.478783489,7.150150145989848e-13 -6273,2003/3/6,0.008531078,15.97314474,-0.70322777,1.53765028,7.694956344,0.270175108,3.575075072994924e-13 -6274,2003/3/7,0.055693193,15.2638529,0.137188599,1.523031674,7.343659271,0.39085953,1.787537536497462e-13 -6275,2003/3/8,0.267191732,13.85729831,0.394254729,1.703574656,6.768272952,1.303768394,8.93768768248731e-14 -6276,2003/3/9,0.030012236,12.75644198,-0.53150076,1.411801511,6.447252857,0.492527169,4.468843841243655e-14 -6277,2003/3/10,0.484240167,12.56195812,0.131839739,1.380745946,6.293358469,2.481268226,2.2344219206218275e-14 -6278,2003/3/11,0.756106929,13.39851741,1.16650988,1.536518751,6.481325365,5.409727885,1.1172109603109138e-14 -6279,2003/3/12,0.637254385,14.72956491,1.380737364,1.399194267,6.975436154,6.473602389,5.586054801554569e-15 -6280,2003/3/13,19.712767,13.08347344,1.989137305,1.482084925,6.228077121,872.8592469,0.001466607086559467 -6281,2003/3/14,3.558992038,13.4076223,0.884745752,1.809954755,6.511365548,493.3201734,0.0007332237885220921 -6282,2003/3/15,0.274315915,13.82280819,1.367399128,1.802087553,6.606925306,181.5440455,0.00036661189426104605 -6283,2003/3/16,0.089147188,15.76677406,1.550439409,1.780534457,7.349950508,97.6729133,0.00018330594713052303 -6284,2003/3/17,0.02680899,16.40369285,2.517616813,1.444806856,7.48000143,60.24870284,9.165297356526151e-05 -6285,2003/3/18,0.734504674,16.40769953,2.477556019,1.414068507,7.482613074,75.91411254,4.5826486782630756e-05 -6286,2003/3/19,0.423354434,15.10754811,0.693845213,1.058311168,7.176438833,53.42756526,2.2913243391315378e-05 -6287,2003/3/20,0.328483409,15.35750725,0.67303823,1.127648239,7.271616785,38.45899231,1.1456621695657689e-05 -6288,2003/3/21,1.245163118,13.94988631,1.302317212,1.101312741,6.64287966,66.84462571,5.7283108478288445e-06 -6289,2003/3/22,0.490760723,13.62104852,0.519037912,0.970069719,6.609455693,41.08634099,2.8641554239144223e-06 -6290,2003/3/23,0.278468601,13.84420374,-0.139696373,0.986181019,6.764525377,26.2148152,1.4320777119572111e-06 -6291,2003/3/24,0.214339531,15.22385178,0.230078142,0.826240047,7.248813046,18.64684997,7.160388559786056e-07 -6292,2003/3/25,0.494641938,15.96179428,2.849823323,1.159705881,7.220262378,22.77213673,3.580194279893028e-07 -6293,2003/3/26,0.418886665,15.67630114,2.578521325,1.041989084,7.138309772,19.65889397,1.790097139946514e-07 -6294,2003/3/27,0.357468497,16.89905274,2.235518089,0.947185915,7.671798094,16.19352175,8.95048569973257e-08 -6295,2003/3/28,1.645731267,16.69433344,2.277450155,0.826204226,7.579904965,46.54337661,4.475242849866285e-08 -6296,2003/3/29,0.28799799,15.41519219,3.040859736,1.101804066,6.951982432,20.31101286,2.2376214249331424e-08 -6297,2003/3/30,0.27981731,15.32287863,3.683450431,1.647350318,6.806997491,14.49531259,1.1188107124665712e-08 -6298,2003/3/31,0.684677354,16.8727941,4.891371209,1.463111875,7.250782454,20.91793703,5.594053562332856e-09 -6299,2003/4/1,0.651996443,17.08765576,5.345953538,1.702719851,7.257353523,20.85218014,2.797026781166428e-09 -6300,2003/4/2,0.396500105,17.61410867,4.662311924,1.729411966,7.59701604,15.12634195,1.398513390583214e-09 -6301,2003/4/3,0.029912225,17.79473969,3.901088026,1.573830231,7.784861383,6.393324007,6.99256695291607e-10 -6302,2003/4/4,0.042907794,19.59091167,4.025543279,1.528343703,8.511092128,4.151527318,3.496283476458035e-10 -6303,2003/4/5,0.05764626,20.31381855,5.007401962,1.822508226,8.677853472,3.141721697,1.7481417382290175e-10 -6304,2003/4/6,0.269024578,19.92570036,6.566190657,1.981407932,8.258120354,4.921765598,8.740708691145087e-11 -6305,2003/4/7,0.07139142,20.275718,6.893789104,1.68263929,8.350330513,2.607910583,4.370354345572544e-11 -6306,2003/4/8,0.452803278,19.94602036,5.346462131,1.500205548,8.456178581,5.825770722,2.185177172786272e-11 -6307,2003/4/9,1.187605771,20.18848565,5.397239968,1.73954555,8.547491715,15.48695735,1.092588586393136e-11 -6308,2003/4/10,2.598960358,19.55253743,6.050250995,2.135046343,8.164080906,46.35992737,5.46294293196568e-12 -6309,2003/4/11,2.81471119,19.95742029,6.350783645,2.158636245,8.28519976,76.77579585,2.73147146598284e-12 -6310,2003/4/12,1.877865325,18.90101948,5.876059009,1.969978401,7.901097736,72.64195968,1.36573573299142e-12 -6311,2003/4/13,1.455178087,17.97368839,4.245649631,1.734720623,7.763420498,65.12079186,6.8286786649571e-13 -6312,2003/4/14,0.054895455,19.72030326,3.990949943,1.377745158,8.519573146,23.6151799,3.41433933247855e-13 -6313,2003/4/15,1.022629054,20.43460238,5.347242097,1.677499445,8.630231309,38.24757579,1.707169666239275e-13 -6314,2003/4/16,3.313257805,19.90906322,7.073644761,2.011336792,8.111233312,110.3065409,8.535848331196374e-14 -6315,2003/4/17,7.37002861,19.49996234,6.585717688,1.559501465,8.01492018,353.7083022,4.267924165598187e-14 -6316,2003/4/18,1.595770223,18.22665039,5.280985812,1.228702747,7.68493415,176.1458369,2.1339620827990936e-14 -6317,2003/4/19,0.259080992,21.19312493,6.066582851,1.682628129,8.829414708,76.02627309,1.0669810413995468e-14 -6318,2003/4/20,0.245793882,22.08907224,8.573571888,2.032840759,8.792882487,48.92327186,5.334905206997734e-15 -6319,2003/4/21,1.400977654,20.8809245,8.480749906,1.973459714,8.252313336,79.28647938,2.667452603498867e-15 -6320,2003/4/22,0.26422834,18.29532677,7.390635685,1.506564485,7.296791873,38.58302451,1.3337263017494335e-15 -6321,2003/4/23,0.728814195,18.09415058,5.213272814,1.911925113,7.618478834,41.89908802,6.668631508747168e-16 -6322,2003/4/24,0.280293143,21.39713759,5.49284249,1.60113566,8.975445149,25.24389773,3.334315754373584e-16 -6323,2003/4/25,0.661088766,22.85307383,8.097866667,1.655486332,9.20194968,29.18164815,1.667157877186792e-16 -6324,2003/4/26,0.421209084,22.74679215,8.762517379,1.525140763,9.028635669,21.36562861,8.33578938593396e-17 -6325,2003/4/27,6.660883752,20.71354174,8.884159287,1.503384422,8.063079278,227.371372,4.16789469296698e-17 -6326,2003/4/28,0.170580065,19.89856195,8.906784186,0.703170971,7.673855858,64.37880418,2.08394734648349e-17 -6327,2003/4/29,1.331482399,18.7184248,9.031540835,0.144028049,7.082201747,76.26885333,1.041973673241745e-17 -6328,2003/4/30,0.996988546,18.07651063,8.635528944,0.870534081,6.873604768,64.14062532,5.209868366208725e-18 -6329,2003/5/1,6.25393577,15.81329593,8.89009535,1.542823464,5.693449293,303.2003198,0.0006494327624875743 -6330,2003/5/2,2.461494903,17.8466253,8.122086984,1.589865102,6.885781608,216.8410455,0.0003243401340636146 -6331,2003/5/3,0.757392193,18.45520159,8.946623811,2.056513594,6.963863198,111.7253225,0.0001621700670318073 -6332,2003/5/4,2.136124929,20.50034884,10.24081456,2.223865896,7.613233439,159.319507,8.108503351590365e-05 -6333,2003/5/5,2.135130999,20.10923313,9.586709317,1.942219717,7.584966381,167.1466561,4.0542516757951824e-05 -6334,2003/5/6,0.459907393,20.55494884,8.28819319,1.753751809,8.07861183,79.76094157,2.0271258378975912e-05 -6335,2003/5/7,0.397989585,20.40933641,7.3732339,1.273357189,8.187080075,53.78894692,1.0135629189487956e-05 -6336,2003/5/8,1.240979127,20.07495645,6.26752661,0.981981184,8.230438802,75.99635289,5.067814594743978e-06 -6337,2003/5/9,1.39579853,18.3289312,6.16365361,0.836737939,7.491263553,82.05438767,2.533907297371989e-06 -6338,2003/5/10,4.147915695,18.31347049,7.192744575,1.019222203,7.279859291,208.9452521,1.2669536486859945e-06 -6339,2003/5/11,3.033448798,17.18922644,6.148607302,1.105516417,6.992982678,211.3592819,6.334768243429973e-07 -6340,2003/5/12,1.292425603,18.48402592,7.750399467,1.291531478,7.230667831,131.8588383,3.1673841217149863e-07 -6341,2003/5/13,1.234085054,18.34707468,8.939801113,1.06677809,6.881336789,110.4845755,1.5836920608574931e-07 -6342,2003/5/14,6.153554599,19.29192394,10.451678,1.330177481,6.928274051,391.0177762,7.918460304287466e-08 -6343,2003/5/15,2.854490878,19.8617847,11.59806366,1.281546592,6.871507174,294.2272975,3.959230152143733e-08 -6344,2003/5/16,5.141803546,19.2186549,11.2639341,1.302993159,6.640730804,465.7689543,1.9796150760718664e-08 -6345,2003/5/17,1.752117959,18.57551529,11.01009866,1.235231876,6.385608296,272.3386886,9.898075380359332e-09 -6346,2003/5/18,1.501826926,18.27359572,10.52798018,0.9815522,6.380861624,211.577265,4.949037690179666e-09 -6347,2003/5/19,3.088941803,18.19124151,10.91431023,1.247299638,6.211470205,306.9125829,2.474518845089833e-09 -6348,2003/5/20,3.141114762,17.31626135,10.24898776,1.025681944,5.973238899,337.8691885,1.2372594225449165e-09 -6349,2003/5/21,0.956961672,18.84797525,10.31186077,0.973889012,6.727779476,182.1704653,6.186297112724583e-10 -6350,2003/5/22,0.324272041,19.32683535,9.03808622,1.378725374,7.292768846,98.30165497,3.0931485563622913e-10 -6351,2003/5/23,3.535936745,20.32888804,9.989707696,1.139418919,7.531074632,279.7263206,1.5465742781811456e-10 -6352,2003/5/24,6.389675402,21.15630743,11.34951944,1.426924762,7.575190905,560.6330789,7.732871390905728e-11 -6353,2003/5/25,1.859535597,21.09362849,11.19749863,1.550235662,7.582893386,303.5639814,3.866435695452864e-11 -6354,2003/5/26,0.434953061,21.99707884,11.43224808,1.797044121,7.963442686,143.7382989,1.933217847726432e-11 -6355,2003/5/27,0.351255544,20.64520699,10.7615972,1.407597246,7.474166827,93.16547819,9.66608923863216e-12 -6356,2003/5/28,0.123316879,23.17791,11.53928772,1.646559894,8.508481028,56.13681073,4.83304461931608e-12 -6357,2003/5/29,2.531492407,23.69555579,12.342457,1.004316672,8.5584978,159.7378358,2.41652230965804e-12 -6358,2003/5/30,2.494869275,22.16057524,12.75141339,0.630884149,7.666477943,178.9279177,1.20826115482902e-12 -6359,2003/5/31,9.156094354,22.69660382,12.35788122,0.400342197,8.049981167,659.8672564,0.00042931666362767897 -6360,2003/6/1,2.961641853,21.38951539,12.19050337,0.608620776,7.43260062,402.9163794,0.00021457501629092743 -6361,2003/6/2,7.530050669,22.38608159,13.09305249,0.682032216,7.673293161,786.6314197,0.00010728750814546371 -6362,2003/6/3,10.66821003,20.56095611,12.36467603,0.829884975,6.945405758,1392.067037,0.005071166707416666 -6363,2003/6/4,13.40375737,19.64632684,12.63050993,0.759387826,6.363202817,2314.165379,0.038161326026428175 -6364,2003/6/5,9.957217221,19.39345883,12.91179247,0.985390816,6.117082726,2385.61222,0.06518745643651662 -6365,2003/6/6,6.982307136,18.67869835,12.60290618,1.078285448,5.831659692,2045.293207,0.05047114726971157 -6366,2003/6/7,0.892693712,19.12952111,12.48905799,0.962563595,6.125798678,858.2737748,0.02509234352648536 -6367,2003/6/8,3.098507525,20.58209333,12.33177098,1.14211257,6.957963182,918.8955619,0.01254617176324268 -6368,2003/6/9,0.281774825,21.00036192,12.01287964,1.443416465,7.270981043,419.6501635,0.00627308588162134 -6369,2003/6/10,0.03658283,20.91552376,11.98595016,1.167294314,7.234075707,234.6834332,0.00313654294081067 -6370,2003/6/11,1.714381342,20.61063779,12.42606887,1.275858306,6.937895208,328.9044847,0.001568271470405335 -6371,2003/6/12,0.232235375,20.43688843,12.57311035,1.209332912,6.796510201,160.8792743,0.0007841357352026674 -6372,2003/6/13,2.748408541,20.57965366,13.21389149,1.120663322,6.651572761,328.5024921,0.0003920678676013337 -6373,2003/6/14,7.214623659,21.40366437,13.03710434,1.060630115,7.15382395,808.0586336,0.0009132868210226652 -6374,2003/6/15,5.400031566,21.63307121,12.69564174,1.047912761,7.380693443,805.0973821,0.00045241270190524136 -6375,2003/6/16,6.04588461,21.45550261,13.19343819,0.304797073,7.127624826,936.9327247,0.00022620635095262068 -6376,2003/6/17,2.537653847,19.45390739,12.32906351,0.273959751,6.347870553,583.4812736,0.00011310317547631034 -6377,2003/6/18,2.179310601,20.77289724,13.04398142,0.806170103,6.810015635,459.3209849,5.655158773815517e-05 -6378,2003/6/19,12.02133923,20.85349859,13.9823289,1.144715688,6.514337591,1663.826185,0.053209794321263285 -6379,2003/6/20,6.462571213,20.88153663,13.83462236,1.395063565,6.585027181,1390.389435,0.026348108249143947 -6380,2003/6/21,2.516793247,21.4711704,14.16398864,1.012118825,6.792318035,802.9812756,0.013174054124571974 -6381,2003/6/22,9.672008322,22.89783121,14.38193097,1.341551128,7.501026639,1749.213721,0.03739104500588052 -6382,2003/6/23,14.92383085,21.67707245,14.72187425,1.456662038,6.696275384,3187.255287,0.15257619698296418 -6383,2003/6/24,5.312262405,21.70891314,14.85331596,1.785863419,6.662589311,1939.377442,0.075195270914676 -6384,2003/6/25,1.065881038,21.40535775,14.72721384,1.695233384,6.536073488,886.3818942,0.037597635457338 -6385,2003/6/26,1.78161948,20.83388801,13.79454868,1.392253625,6.569282106,713.3924802,0.018798817728669 -6386,2003/6/27,9.01032933,21.50946721,13.98444165,1.327011767,6.875365857,1754.006849,0.053807085188556404 -6387,2003/6/28,14.1634506,19.45177544,14.44297279,1.636743468,5.482807528,3179.94769,0.22477074694099664 -6388,2003/6/29,1.582565648,20.81255242,13.94749797,1.44631902,6.498467834,1224.611273,0.1101197342063175 -6389,2003/6/30,5.018942297,21.78470166,14.70390746,1.71002679,6.761661437,1435.872659,0.05505986710315875 -6390,2003/7/1,7.108422948,21.268658,14.86390474,1.119296285,6.398828298,1812.405902,0.04746958051997381 -6391,2003/7/2,11.26437863,20.83638798,14.31978206,0.915849894,6.366478046,2815.111692,0.16436884514141598 -6392,2003/7/3,0.883782029,20.96039972,14.22360269,0.814760952,6.47562233,1026.590987,0.08015734857038576 -6393,2003/7/4,0.368620466,21.48940892,13.33054076,1.080875998,7.089734503,541.5412936,0.04007867428519288 -6394,2003/7/5,3.817046445,22.56200794,13.51155669,1.028301542,7.600063814,871.3788425,0.02003933714259644 -6395,2003/7/6,8.989772538,21.89886726,14.20151639,0.857488619,7.01169838,1687.427777,0.06664825441238038 -6396,2003/7/7,9.774570703,19.79941116,13.57036272,0.740851065,6.067543776,2157.609681,0.145557767583952 -6397,2003/7/8,5.660363888,20.10702736,13.6454301,1.00365705,6.214288114,1669.043266,0.07105526574554899 -6398,2003/7/9,1.742089074,21.47540002,13.95843877,1.440303228,6.865410598,875.2405294,0.035527632872774495 -6399,2003/7/10,4.872734647,21.72380934,14.26494427,1.93582624,6.892644788,1154.66903,0.017763816436387247 -6400,2003/7/11,6.273910031,21.46534746,14.54008286,1.373080026,6.643511066,1402.692691,0.008881908218193624 -6401,2003/7/12,16.55822548,22.2143982,14.58549199,1.387973465,7.05075306,3567.874146,0.287730338163692 -6402,2003/7/13,5.018518483,21.42702213,14.55562529,1.010262787,6.616583658,2011.378211,0.13964465328265147 -6403,2003/7/14,0.920994573,22.69758541,14.53733694,1.526307587,7.337296891,898.334468,0.06982232664132573 -6404,2003/7/15,0.519069817,22.98935816,13.78438624,1.327882102,7.744302973,531.3310953,0.034911163320662866 -6405,2003/7/16,1.026861556,23.27201092,13.74231916,0.939970604,7.90680893,433.6967175,0.017455581660331433 -6406,2003/7/17,0.79615964,24.14886434,14.32070289,1.207595395,8.191603946,311.6700578,0.008727790830165717 -6407,2003/7/18,1.563985756,24.37161089,14.38662645,1.191832611,8.289977947,312.5713931,0.004363895415082858 -6408,2003/7/19,4.321547224,21.59630989,14.0035321,1.002409507,6.922956878,540.0391877,0.002181947707541429 -6409,2003/7/20,6.906301179,21.86785685,13.05287604,1.014559976,7.389336804,888.2143687,0.0010909738537707146 -6410,2003/7/21,11.02573252,21.95952373,12.77682694,0.509375918,7.523374027,1631.834227,0.09449270600088344 -6411,2003/7/22,13.11411345,21.32415981,12.68710914,0.361978508,7.222436621,2497.495931,0.22356719515424933 -6412,2003/7/23,4.462935398,20.96339315,13.1486599,0.474992016,6.881199659,1459.299999,0.10910736775836224 -6413,2003/7/24,0.312943,22.15046824,13.72451772,0.871304302,7.327308332,583.2380867,0.05455368387918112 -6414,2003/7/25,12.18119349,24.39493023,14.294092,1.744697702,8.340075297,2195.328671,0.15097529800243215 -6415,2003/7/26,3.019902191,22.59439011,14.76428854,1.103011159,7.213016079,1120.686923,0.07349587118242679 -6416,2003/7/27,5.673607414,22.38265791,14.68153548,0.827603993,7.126023447,1288.956599,0.03674793559121339 -6417,2003/7/28,14.61612503,22.37463667,14.56119042,1.029587168,7.166730626,2977.721202,0.2609186322279052 -6418,2003/7/29,17.47194807,20.38300622,14.28788402,0.903965374,6.133595775,4698.46267,0.5747292531724303 -6419,2003/7/30,3.960164989,21.48316681,14.58310406,1.241081051,6.657251146,2276.831389,0.2785053247715342 -6420,2003/7/31,2.634091298,22.81449608,15.13445712,1.42474777,7.209759239,1443.645903,0.1392526623857671 -6421,2003/8/1,1.906100251,22.67899189,14.97340115,1.206720707,7.194490888,996.1087141,0.06962633119288356 -6422,2003/8/2,10.84908596,23.478459,14.54949719,0.561425123,7.786369176,2437.953127,0.1660838830656819 -6423,2003/8/3,5.154563149,23.21386644,13.8267402,0.522605807,7.878758079,1698.80187,0.08022875270733296 -6424,2003/8/4,1.782623002,24.54070711,14.07921999,0.678742874,8.500669232,909.2007389,0.04011437635366648 -6425,2003/8/5,2.157819699,24.98935907,14.37616746,1.009347145,8.650636315,719.0054554,0.02005718817683324 -6426,2003/8/6,6.206070505,25.61936217,15.6182218,0.963519656,8.609801226,1142.908862,0.01002859408841662 -6427,2003/8/7,13.67489874,23.09409283,15.34598732,0.828008226,7.304560892,2448.577661,0.2419640624812114 -6428,2003/8/8,6.74098363,23.27786559,15.57733429,1.177352373,7.325263017,1842.556015,0.11657526407375302 -6429,2003/8/9,8.542995552,22.43425505,15.44101913,1.205358037,6.891123815,2114.492257,0.12851987460871606 -6430,2003/8/10,9.0544213,22.24582946,15.50747066,1.241363364,6.755412437,2385.221644,0.16399493677090843 -6431,2003/8/11,14.70176319,21.69053162,15.50076666,1.003962598,6.427181217,3925.442078,0.46149328363691866 -6432,2003/8/12,4.359722948,22.51609024,15.53099927,0.661707863,6.910315817,2140.269274,0.22194175446820807 -6433,2003/8/13,3.379518774,22.9278654,15.11951946,0.969750836,7.308845485,1505.844556,0.11097087723410404 -6434,2003/8/14,1.371481234,22.57406672,14.85731933,0.952518024,7.207714985,879.397534,0.05548543861705202 -6435,2003/8/15,19.78491268,22.53125526,14.61401737,0.621055596,7.27486325,4371.970586,0.6047945498556103 -6436,2003/8/16,25.74239264,19.91502155,14.2867377,0.138483653,5.887800993,8552.853997,1.4309185593285567 -6437,2003/8/17,0.991945268,19.34815225,13.32279269,0.106601854,5.960667769,2645.974022,0.6826261676664027 -6438,2003/8/18,1.008853212,21.10774657,13.60214567,0.444210649,6.85407124,1459.138767,0.34131308383320136 -6439,2003/8/19,3.166520008,21.33123375,14.44213535,0.737239789,6.668557399,1465.999794,0.17065654191660068 -6440,2003/8/20,4.267347858,21.81766095,14.56605065,1.213941957,6.903098953,1485.087687,0.08532827095830034 -6441,2003/8/21,2.799315914,22.55575589,14.56931284,1.030476817,7.322082853,1086.942994,0.04266413547915017 -6442,2003/8/22,12.88397024,22.88026935,14.68354604,0.928548764,7.465766973,2823.195318,0.33939742374827014 -6443,2003/8/23,19.38191071,21.98397555,14.74816238,0.636290126,6.937771723,5297.833087,0.9506137244035208 -6444,2003/8/24,3.504111126,21.96593314,14.3275349,0.364627724,7.088030617,2332.9232,0.4502148808160909 -6445,2003/8/25,5.186713437,23.73128167,14.56976462,0.731659678,7.982925806,2053.341402,0.22510744040804545 -6446,2003/8/26,19.8514473,22.993304,15.07335069,1.111901763,7.40211211,5549.396941,0.9595758456252224 -6447,2003/8/27,7.958037791,20.50782223,14.54386414,1.334438602,6.163275009,3648.239863,0.592491141613151 -6448,2003/8/28,4.210742216,21.93370439,14.54815194,1.165977371,7.000679275,2308.974709,0.2906661963379294 -6449,2003/8/29,2.619800863,21.81266804,14.608232,0.751660326,6.911700221,1517.400287,0.1453330981689647 -6450,2003/8/30,9.722817604,21.58550364,14.61388982,1.039035286,6.781409794,2703.291425,0.28946076842301866 -6451,2003/8/31,1.4799912,21.0884366,14.07296956,0.9198437,6.707582393,1192.830816,0.13674105791360214 -6452,2003/9/1,22.11102534,21.12061757,13.66639689,0.643188683,6.880913645,5568.456566,1.1712839471786611 -6453,2003/9/2,4.578097145,18.85039979,13.63647669,0.502680502,5.56944266,2668.790514,0.5457073351423528 -6454,2003/9/3,2.83781493,20.41658322,12.21852768,0.376125133,7.002373354,1659.578505,0.2728536675711764 -6455,2003/9/4,9.332200486,21.49705538,12.68835701,0.417620646,7.427123659,2757.196942,0.28952811160049247 -6456,2003/9/5,7.570420011,19.30432283,13.38866016,0.312551091,5.959342517,2556.489972,0.27068186118172 -6457,2003/9/6,4.193811558,20.23112241,12.88485829,0.610246726,6.685504336,1769.980884,0.12992765000041795 -6458,2003/9/7,11.40749156,20.36575221,12.85830602,0.303960133,6.772581563,3141.792638,0.4396598387988775 -6459,2003/9/8,13.04686251,20.01491057,12.19900444,0.121167187,6.81244603,4102.062867,0.73310062294508 -6460,2003/9/9,6.90896896,20.52615473,12.07483987,0.02761029,7.128138909,2942.155154,0.34415657148950884 -6461,2003/9/10,4.960556639,19.38122421,12.09611553,0.545640884,6.512500722,2171.2904,0.17207828574475442 -6462,2003/9/11,1.817703736,20.26360152,12.48403072,0.400296342,6.861004612,1224.363126,0.08603914287237721 -6463,2003/9/12,2.016568205,20.43925255,12.07626243,0.257431169,7.093286855,937.6758395,0.043019571436188606 -6464,2003/9/13,3.594245164,20.71826248,12.19164644,0.375622858,7.20772851,1014.960913,0.021509785718094303 -6465,2003/9/14,2.69792559,21.24600854,12.71274749,0.488071767,7.324932757,801.848363,0.010754892859047151 -6466,2003/9/15,3.367653857,22.52767547,13.13339459,0.879353383,7.87803055,787.0091457,0.005377446429523576 -6467,2003/9/16,3.426705793,22.47265158,13.50915808,1.21986342,7.73420411,736.7920838,0.002688723214761788 -6468,2003/9/17,9.333747624,21.88892708,13.84379343,0.928946912,7.305869723,1521.9788,0.1334737624272658 -6469,2003/9/18,6.10961639,21.97171483,13.47991411,0.827581529,7.480558551,1335.164704,0.062432337396568595 -6470,2003/9/19,1.167549185,21.1823127,13.45413767,0.52163008,7.058395998,599.7590476,0.031216168698284297 -6471,2003/9/20,2.524599203,21.18589272,12.30964911,0.30824781,7.445875448,584.1113167,0.015608084349142149 -6472,2003/9/21,11.29333651,19.95956291,10.93821284,0.679242221,7.228386033,1742.711072,0.24831045689919276 -6473,2003/9/22,3.596186535,20.01859574,10.8413394,0.66899623,7.290599051,1011.111075,0.11704034035305295 -6474,2003/9/23,4.427666679,20.47516361,10.75871251,0.542489588,7.548259191,973.6587756,0.05852017017652648 -6475,2003/9/24,3.699122643,21.1816373,11.39629068,1.28905764,7.73176481,837.2819505,0.02926008508826324 -6476,2003/9/25,0.407279421,21.48077951,11.28778499,1.075694219,7.917815571,361.333307,0.01463004254413162 -6477,2003/9/26,0.244198614,21.51673194,11.6557431,1.310632932,7.838356674,212.6987664,0.00731502127206581 -6478,2003/9/27,0.046570024,21.42689737,11.83920333,1.462980608,7.744003819,127.9202116,0.003657510636032905 -6479,2003/9/28,0.705164842,22.29807218,12.2353049,1.479304813,8.084254229,131.533712,0.0018287553180164524 -6480,2003/9/29,2.246860929,22.37871995,12.59247526,1.362788452,8.026867809,215.4348296,0.0009143776590082262 -6481,2003/9/30,5.054106993,21.19610143,12.78160873,1.207320931,7.342590832,433.3646823,0.0004571888295041131 -6482,2003/10/1,3.555865432,20.96565472,11.9086433,1.196368795,7.501365719,399.5402545,0.00022859441475205655 -6483,2003/10/2,0.671026979,20.65582391,11.24261599,1.010785815,7.542898904,178.4148321,0.00011429720737602828 -6484,2003/10/3,0.121803386,20.6440122,10.57140026,1.171195203,7.728214289,88.48645978,5.714860368801414e-05 -6485,2003/10/4,0.438133903,18.96580437,9.473789688,0.554685793,7.194740956,75.0918518,2.857430184400707e-05 -6486,2003/10/5,0.254456817,17.18654716,8.429893525,0.740734594,6.609683001,50.78580168,1.4287150922003534e-05 -6487,2003/10/6,0.015286431,18.28313794,7.954610754,0.802243702,7.2555858,27.27978218,7.143575461001767e-06 -6488,2003/10/7,0.142336493,18.93705678,8.546999685,1.190396353,7.428212547,22.20560288,3.5717877305008836e-06 -6489,2003/10/8,0.86233528,20.59524897,9.572637317,1.594181587,7.981194965,42.37634543,1.7858938652504418e-06 -6490,2003/10/9,6.578552753,20.87770137,10.89695175,1.760756656,7.784769843,302.4599604,8.929469326252209e-07 -6491,2003/10/10,7.320964798,20.00728724,11.88528039,1.73029218,7.038999078,533.0938767,0.0070599409538641324 -6492,2003/10/11,6.416385893,20.96500332,11.37230079,2.010122653,7.704729331,653.3093554,0.003441597212411175 -6493,2003/10/12,5.017392267,21.79712782,10.79314034,1.665837285,8.287641156,636.6951102,0.0017207986062055874 -6494,2003/10/13,18.36682856,22.1536852,10.48581204,1.034033858,8.545148138,2450.513424,0.22516325796893066 -6495,2003/10/14,15.33508206,19.98311611,10.36400505,1.015383906,7.502484684,3253.541758,0.36235313866800606 -6496,2003/10/15,0.108117213,18.98354447,9.818367786,1.224479782,7.155899581,950.730537,0.17711202828444156 -6497,2003/10/16,0.000574883,20.20429182,9.122472702,1.245616182,7.937374704,469.5346719,0.08855601414222078 -6498,2003/10/17,0.0,20.72160641,9.230443675,1.425848264,8.165214771,293.6060584,0.04427800707111039 -6499,2003/10/18,0.030917397,20.06485934,9.734215624,1.392671357,7.728327805,193.3720458,0.022139003535555195 -6500,2003/10/19,0.009515749,18.16773613,8.783467962,0.840613404,7.049138885,125.3739151,0.011069501767777597 -6501,2003/10/20,0.029446533,17.93826128,8.65085546,0.740717301,6.976068272,83.2501991,0.005534750883888799 -6502,2003/10/21,0.156047504,17.05173274,8.245732308,0.767468034,6.655574176,63.07082119,0.0027673754419443993 -6503,2003/10/22,0.01401786,17.31083907,7.521008433,0.789293618,6.96782271,37.69573227,0.0013836877209721997 -6504,2003/10/23,0.007050123,16.84775767,6.963397866,0.80983045,6.8870197,24.05174303,0.0006918438604860998 -6505,2003/10/24,0.0,17.34113992,6.82926614,0.908415322,7.14923258,15.43768633,0.0003459219302430499 -6506,2003/10/25,0.424991459,17.32131487,7.652447402,0.485175714,6.952615333,25.95068582,0.00017296096512152496 -6507,2003/10/26,0.839043984,17.20343885,8.259737334,0.864515297,6.744583121,39.74398449,8.648048256076248e-05 -6508,2003/10/27,3.15756524,16.86041083,8.117829877,0.868979126,6.619012976,133.004697,4.324024128038124e-05 -6509,2003/10/28,0.134540793,16.73986177,4.655026639,0.928118138,7.325732624,40.99364137,2.162012064019062e-05 -6510,2003/10/29,0.592723268,15.40523644,3.466541235,0.473656844,6.962755057,39.08541594,1.081006032009531e-05 -6511,2003/10/30,0.067434644,14.70848281,2.942727274,0.322012355,6.760909115,18.29832681,5.405030160047655e-06 -6512,2003/10/31,0.260780603,14.32186928,3.060172804,0.582579651,6.584594422,17.36115975,2.7025150800238275e-06 -6513,2003/11/1,0.598521442,14.10213598,2.483267962,0.8398592,6.591134659,24.03911162,1.3512575400119137e-06 -6514,2003/11/2,0.074421641,15.54606843,2.788673572,0.716860287,7.141799163,10.53092318,6.756287700059569e-07 -6515,2003/11/3,0.448685287,15.50767762,1.616971144,0.896440114,7.288877063,15.3593014,3.3781438500297844e-07 -6516,2003/11/4,1.468305986,15.06088354,1.521695993,1.059660539,7.125760194,39.45175349,1.6890719250148922e-07 -6517,2003/11/5,0.072240687,16.03668885,2.003329991,1.417328236,7.461076225,12.92800092,8.445359625074461e-08 -6518,2003/11/6,0.067966852,16.13003468,2.833473578,1.620911222,7.391350424,7.334097559,4.2226798125372305e-08 -6519,2003/11/7,0.062316809,15.22954778,2.319096657,1.551027157,7.097942681,5.089678839,2.1113399062686152e-08 -6520,2003/11/8,0.031436177,15.93104997,2.261572486,1.539029471,7.395773216,3.268297104,1.0556699531343076e-08 -6521,2003/11/9,0.001772567,15.30573947,1.580128392,1.181217367,7.234457532,1.889738245,5.278349765671538e-09 -6522,2003/11/10,0.790493466,15.45342004,0.997618334,1.104531681,7.366454436,11.67516648,2.639174882835769e-09 -6523,2003/11/11,0.332999476,14.05589801,1.07920062,0.53139229,6.806224374,7.75078804,1.3195874414178845e-09 -6524,2003/11/12,1.184299141,14.29231641,0.682369273,0.940035456,6.951556037,19.77538354,6.597937207089423e-10 -6525,2003/11/13,0.000163489,13.58104655,-0.566967631,0.906349433,6.816047578,5.589988553,3.2989686035447113e-10 -6526,2003/11/14,0.002811237,14.9418103,-0.245581929,0.883140852,7.309694035,2.782448055,1.6494843017723556e-10 -6527,2003/11/15,0.078979036,15.52157114,0.051327681,0.980034418,7.509434707,2.623101519,8.247421508861778e-11 -6528,2003/11/16,0.145943041,15.32295974,0.553404508,0.819827631,7.384205068,2.830996113,4.123710754430889e-11 -6529,2003/11/17,0.340411822,14.21856887,-0.406203429,1.128644243,7.056395001,4.512455532,2.0618553772154446e-11 -6530,2003/11/18,0.039568062,14.35312668,-0.122729153,1.213997752,7.082826247,1.854202915,1.0309276886077223e-11 -6531,2003/11/19,0.005290213,14.54108339,-1.326419106,1.344142798,7.267398854,0.924871371,5.154638443038611e-12 -6532,2003/11/20,0.0928211,13.69245216,-1.368145588,0.87258402,6.953963955,1.229586212,2.5773192215193057e-12 -6533,2003/11/21,0.026448606,13.49461308,-1.706825222,0.740572984,6.911019245,0.692831275,1.2886596107596528e-12 -6534,2003/11/22,1.053936853,13.58523104,-0.96684836,1.001641896,6.883083065,8.486883064,6.443298053798264e-13 -6535,2003/11/23,0.327291909,13.44258968,0.330683617,1.002776092,6.692737982,5.123452025,3.221649026899132e-13 -6536,2003/11/24,0.252089527,14.35981622,0.811475146,1.077751059,6.998548446,3.960413747,1.610824513449566e-13 -6537,2003/11/25,0.336854948,13.91281452,-1.138243978,0.753024585,7.030910643,4.449536679,8.05412256724783e-14 -6538,2003/11/26,0.301519719,12.74669423,-1.053168058,0.736278775,6.584316517,4.206463841,4.027061283623915e-14 -6539,2003/11/27,0.238326932,12.77205918,0.534338269,1.106549843,6.414232172,3.561813703,2.0135306418119576e-14 -6540,2003/11/28,1.261266799,11.48655756,-1.843045571,0.779519984,6.195082722,14.3757508,1.0067653209059788e-14 -6541,2003/11/29,2.537497007,10.78119437,-2.468313926,0.965253288,5.996857997,43.83787944,5.033826604529894e-15 -6542,2003/11/30,0.371116572,11.99333658,-2.053048464,1.194970002,6.405544362,18.44703997,2.516913302264947e-15 -6543,2003/12/1,0.336799051,12.18595003,-2.031911815,1.030340285,6.476894096,13.08465267,1.2584566511324735e-15 -6544,2003/12/2,0.119877785,11.999804,-1.416311715,0.995590579,6.352706436,7.516147038,6.292283255662367e-16 -6545,2003/12/3,0.973658906,11.53200443,-1.605969937,1.371599434,6.198936141,20.01302084,3.1461416278311837e-16 -6546,2003/12/4,0.041550268,11.04319424,-1.423174119,1.124529502,5.999629767,6.902716457,1.5730708139155919e-16 -6547,2003/12/5,0.003779376,10.94688719,-2.156230089,0.85096759,6.039892757,3.428147759,7.865354069577959e-17 -6548,2003/12/6,0.031373347,10.35822318,-2.115809958,0.781422441,5.821981781,2.527554558,3.9326770347889796e-17 -6549,2003/12/7,1.200653757,9.886549743,-2.928459866,1.048642868,5.729715931,18.54304312,1.9663385173944898e-17 -6550,2003/12/8,0.858862819,9.650683865,-3.134963023,0.636125412,5.66515172,19.00699544,9.831692586972449e-18 -6551,2003/12/9,1.169990352,10.03348339,-0.887465315,0.630108224,5.564176006,26.98402333,4.9158462934862245e-18 -6552,2003/12/10,0.612243054,9.715612088,-2.016707769,0.6352047,5.582018812,19.93041301,2.4579231467431123e-18 -6553,2003/12/11,0.306979314,9.638051199,-3.840392672,0.597510333,5.721633744,12.80356702,1.2289615733715561e-18 -6554,2003/12/12,0.002793296,10.02788503,-3.976997707,0.56200412,5.869297398,5.295174593,6.144807866857781e-19 -6555,2003/12/13,0.0,10.24424273,-4.331296078,0.680892375,5.969135542,3.075972124,3.0724039334288903e-19 -6556,2003/12/14,0.0,11.03651804,-3.282944055,0.773285518,6.180064073,1.972911572,1.5362019667144452e-19 -6557,2003/12/15,0.005292931,11.47946335,-3.159051442,0.704995065,6.331468521,1.349403792,7.681009833572226e-20 -6558,2003/12/16,0.129233875,11.72072333,-1.677685173,0.910394478,6.296093255,2.339440903,3.840504916786113e-20 -6559,2003/12/17,0.015762711,12.8069327,-1.096182971,1.313908192,6.649086343,1.07393126,1.9202524583930565e-20 -6560,2003/12/18,0.099959981,12.43435375,-1.561543452,0.687985983,6.554160089,1.504445408,9.601262291965282e-21 -6561,2003/12/19,0.185248936,7.757884583,-1.154281529,0.746512131,4.750355704,2.225678205,4.800631145982641e-21 -6562,2003/12/20,0.008040996,8.513011198,-1.706210427,0.782246367,5.11201539,0.790289112,2.4003155729913206e-21 -6563,2003/12/21,0.237287694,9.319707062,-3.142932854,0.837296035,5.562191667,2.339271458,1.2001577864956603e-21 -6564,2003/12/22,0.036354695,9.847026702,-3.997424781,0.752768096,5.81725438,1.000782875,6.000788932478301e-22 -6565,2003/12/23,0.00633707,10.95921818,-3.780563513,0.973890693,6.195576678,0.480055106,3.0003944662391507e-22 -6566,2003/12/24,0.047493895,11.27807709,-2.830540574,1.238655819,6.241912617,0.5785024,1.5001972331195754e-22 -6567,2003/12/25,0.308837728,11.18084932,-5.174420052,0.952096806,6.348678213,2.219112018,7.500986165597877e-23 -6568,2003/12/26,0.412926157,10.8878807,-4.575570534,0.854338064,6.219055909,3.467556465,3.7504930827989384e-23 -6569,2003/12/27,0.247100733,10.15989646,-2.202894801,1.182306224,5.779322707,2.776183213,1.8752465413994692e-23 -6570,2003/12/28,0.856049727,9.930547596,-1.243633658,1.258805612,5.586894143,8.127491787,9.376232706997346e-24 -6571,2003/12/29,0.420156181,8.737489476,-4.385074358,1.431806562,5.462122383,6.30985508,4.688116353498673e-24 -6572,2003/12/30,0.008937417,9.228491622,-5.384658099,0.703188342,5.690852739,2.142085109,2.3440581767493365e-24 -6573,2003/12/31,0.013264907,9.964736543,-4.888052221,1.09693894,5.91682227,1.236232029,1.1720290883746683e-24 -6574,2004/1/1,0.020512545,10.333875,-4.220390546,1.021363796,6.006460757,0.89485368,5.860145441873341e-25 -6575,2004/1/2,0.155273066,10.10343992,-3.476189588,1.261822619,5.87336818,1.640361921,2.9300727209366706e-25 -6576,2004/1/3,0.007728255,10.64532455,-3.406983328,1.232786521,6.061160085,0.647657853,1.4650363604683353e-25 -6577,2004/1/4,0.035665494,11.01128549,-4.072525267,1.135463711,6.235680398,0.561963296,7.325181802341677e-26 -6578,2004/1/5,0.001488735,11.19507661,-5.358775328,0.871694058,6.363024322,0.27644852,3.6625909011708383e-26 -6579,2004/1/6,0.01959149,11.48240122,-5.140042723,0.97864606,6.453841991,0.262871073,1.8312954505854191e-26 -6580,2004/1/7,0.01924466,11.74776514,-4.506858079,0.978148721,6.518467729,0.216465067,9.156477252927096e-27 -6581,2004/1/8,0.337983195,10.67217514,-3.799910883,1.00781854,6.097406601,1.666528039,4.578238626463548e-27 -6582,2004/1/9,1.190807297,8.152298057,-4.437270913,1.065533088,5.263920937,8.493677039,2.289119313231774e-27 -6583,2004/1/10,0.015431747,9.673929107,-5.166524244,0.623277879,5.829886261,2.266799905,1.144559656615887e-27 -6584,2004/1/11,0.001551165,10.88821699,-4.779125805,0.587608139,6.228770815,1.018969168,5.722798283079435e-28 -6585,2004/1/12,1.244932852,10.25540939,-4.207296464,0.898091375,5.975187143,11.46430352,2.8613991415397174e-28 -6586,2004/1/13,0.206560887,9.653188021,-3.34379417,1.197888451,5.699240147,5.104140062,1.4306995707698587e-28 -6587,2004/1/14,0.476178228,9.584877805,-2.670700306,1.61911661,5.613495458,6.823136442,7.153497853849294e-29 -6588,2004/1/15,0.010553494,9.397781895,-5.941651035,1.307189885,5.768600003,2.381075324,3.576748926924647e-29 -6589,2004/1/16,0.008642144,10.68525182,-5.675526714,1.049399594,6.193668486,1.323541549,1.7883744634623234e-29 -6590,2004/1/17,0.044248099,10.47087687,-4.27840455,1.340717202,6.051099713,1.168193875,8.941872317311617e-30 -6591,2004/1/18,0.012395396,10.68779978,-4.117835535,1.34436376,6.116429985,0.697635205,4.4709361586558085e-30 -6592,2004/1/19,0.03305284,10.6274825,-4.324243149,1.636114465,6.106614646,0.620965713,2.2354680793279042e-30 -6593,2004/1/20,0.063094851,10.85485013,-4.378286231,1.374977813,6.188192107,0.699067719,1.1177340396639521e-30 -6594,2004/1/21,0.004700468,11.24443095,-3.731555516,1.148201342,6.285658492,0.308572926,5.588670198319761e-31 -6595,2004/1/22,0.024180777,11.03841024,-2.494047983,1.599703819,6.116775345,0.292660235,2.7943350991598803e-31 -6596,2004/1/23,0.034219697,11.64549731,-2.315411569,1.115550745,6.322102995,0.296834281,1.3971675495799401e-31 -6597,2004/1/24,0.651602626,9.485787647,-0.96346403,1.056254523,5.369980217,3.61710316,6.985837747899701e-32 -6598,2004/1/25,0.982283923,8.950146832,-1.153782359,1.462019456,5.192424484,8.40631302,3.4929188739498504e-32 -6599,2004/1/26,0.606181366,9.137349768,-4.116427901,0.882937247,5.565280491,8.029799491,1.7464594369749252e-32 -6600,2004/1/27,2.274537155,7.970964995,-4.720290656,1.160722785,5.207267057,33.52763558,8.732297184874626e-33 -6601,2004/1/28,0.033626727,8.434875795,-5.702478093,1.463657221,5.421212546,9.28398856,4.366148592437313e-33 -6602,2004/1/29,0.003644257,10.50308798,-6.841878835,1.047449561,6.148654065,4.265090313,2.1830742962186565e-33 -6603,2004/1/30,0.015199428,11.30772356,-5.067240851,1.49473777,6.364960361,2.800273045,1.0915371481093282e-33 -6604,2004/1/31,0.018773187,12.42741721,-4.25989409,1.748912289,6.719378812,1.948650577,5.457685740546641e-34 -6605,2004/2/1,0.015417951,12.67310425,-3.418260791,1.772849025,6.760221,1.32810056,2.7288428702733206e-34 -6606,2004/2/2,0.054591226,12.63218327,-2.871269957,1.783858323,6.708389768,1.297686118,1.3644214351366603e-34 -6607,2004/2/3,0.005168723,11.77757198,-2.73183536,1.802473547,6.385433093,0.668951688,6.822107175683301e-35 -6608,2004/2/4,0.025866524,11.42642874,-5.102179892,1.460283636,6.397765935,0.585365103,3.411053587841651e-35 -6609,2004/2/5,1.07723989,11.57595535,-5.274830538,1.084306269,6.454107923,9.58981714,1.7055267939208254e-35 -6610,2004/2/6,1.877546504,8.995370589,-1.812899531,1.092636821,5.275895623,26.21665315,8.527633969604127e-36 -6611,2004/2/7,1.22603601,6.680271154,-2.980601307,1.177145753,4.580336162,27.33434374,4.2638169848020634e-36 -6612,2004/2/8,0.006653776,8.628029517,-4.479473078,0.742063069,5.394186711,8.241173701,2.1319084924010317e-36 -6613,2004/2/9,0.072438906,10.07110609,-3.556410006,0.76348956,5.825421997,5.327551728,1.0659542462005159e-36 -6614,2004/2/10,0.102891467,11.43045132,-2.392319563,1.085549348,6.216215841,4.403162213,5.329771231002579e-37 -6615,2004/2/11,0.000919816,13.36991495,-2.363815008,0.948996243,6.921731636,2.19641313,2.6648856155012896e-37 -6616,2004/2/12,0.22768901,12.19125482,-3.61243222,0.556781062,6.573242492,4.081276863,1.3324428077506448e-37 -6617,2004/2/13,0.874711675,8.526454088,-5.067101521,0.468505986,5.38771511,12.51780744,6.662214038753224e-38 -6618,2004/2/14,0.087554231,11.23557809,-4.955553684,0.950592954,6.302051712,4.631356043,3.331107019376612e-38 -6619,2004/2/15,0.024821747,12.08712783,-2.392585325,1.120024481,6.442914564,2.26929996,1.665553509688306e-38 -6620,2004/2/16,0.187037246,12.10860228,-2.765914669,1.074118285,6.476700762,3.273467685,8.32776754844153e-39 -6621,2004/2/17,0.740150872,12.41632928,-3.33951852,0.85806488,6.623538527,9.560526106,4.163883774220765e-39 -6622,2004/2/18,0.042737937,13.7373582,-2.868101651,1.088857277,7.069500484,3.196609757,2.0819418871103825e-39 -6623,2004/2/19,0.06404963,12.97446805,-0.968726949,1.776323316,6.633542364,2.093534831,1.0409709435551913e-39 -6624,2004/2/20,0.19881163,11.78502949,-2.262912641,1.427771646,6.30819811,2.887075948,5.204854717775956e-40 -6625,2004/2/21,0.011378672,13.25597014,-3.549610578,1.134921866,6.924636413,1.183641175,2.602427358887978e-40 -6626,2004/2/22,0.400727128,13.50642754,-1.643461428,1.198350151,6.884451072,3.960152217,1.301213679443989e-40 -6627,2004/2/23,0.254019108,13.45958921,-0.948169468,1.614317436,6.802240294,3.330525085,6.506068397219945e-41 -6628,2004/2/24,0.221628519,14.49137673,-1.452232319,1.550839272,7.230660252,2.938683009,3.2530341986099727e-41 -6629,2004/2/25,0.061173442,15.95523013,-1.43376328,1.505632275,7.777681568,1.5121796,1.6265170993049864e-41 -6630,2004/2/26,0.001065243,17.0712731,-0.320033126,1.28256156,8.120262834,0.698163541,8.132585496524932e-42 -6631,2004/2/27,0.03522672,16.47005326,0.780843725,1.782354061,7.782429913,0.625377318,4.066292748262466e-42 -6632,2004/2/28,0.09829253,16.12159292,1.342284536,2.090134404,7.580034875,0.83924457,2.033146374131233e-42 -6633,2004/2/29,0.028153786,15.54454981,0.932976369,1.971964491,7.393063729,0.45760129,1.0165731870656165e-42 -6634,2004/3/1,0.0,16.42477642,0.619628053,2.29886871,7.768823114,0.215154495,5.082865935328082e-43 -6635,2004/3/2,0.000719007,16.37401646,-1.09612743,1.593757572,7.889634985,0.133675756,2.541432967664041e-43 -6636,2004/3/3,0.005156393,16.1017522,-0.601854396,1.330068618,7.744233112,0.10170346,1.2707164838320206e-43 -6637,2004/3/4,0.009864042,16.42225352,0.46557529,1.530022701,7.770602097,0.086842809,6.353582419160103e-44 -6638,2004/3/5,0.066339372,16.46744442,0.631228643,1.262910586,7.768187918,0.213900428,3.1767912095800515e-44 -6639,2004/3/6,0.513172605,16.88073826,2.256301292,1.190104323,7.749662179,1.716101377,1.5883956047900257e-44 -6640,2004/3/7,0.836446271,12.36029515,2.05413383,0.819084519,5.941161104,4.633760773,7.941978023950129e-45 -6641,2004/3/8,0.0,11.89471351,-1.566081949,0.659103597,6.231753307,1.20714773,3.9709890119750643e-45 -6642,2004/3/9,0.0,16.6875193,-1.14704756,1.289628046,7.98269416,0.565076962,1.9854945059875322e-45 -6643,2004/3/10,0.003485093,19.25340896,1.057735665,1.803181255,8.810414672,0.366204643,9.927472529937661e-46 -6644,2004/3/11,0.020944784,17.03027417,2.766562434,1.588087902,7.724563936,0.311813638,4.9637362649688304e-46 -6645,2004/3/12,0.002468736,18.07963999,2.577198838,1.422932142,8.173450029,0.177246382,2.4818681324844152e-46 -6646,2004/3/13,0.0,18.38167366,1.816641142,1.111326089,8.375353363,0.107747472,1.2409340662422076e-46 -6647,2004/3/14,0.117865234,18.84388132,1.891800985,0.859382334,8.54939678,0.389160383,6.204670331211038e-47 -6648,2004/3/15,2.583721923,18.12882583,2.547708963,1.371511125,8.183145426,18.24100015,3.102335165605519e-47 -6649,2004/3/16,0.829086272,17.82066257,3.346106634,1.37333483,7.951378628,13.86562915,1.5511675828027595e-47 -6650,2004/3/17,0.496568499,18.46674935,2.675928598,1.084018303,8.296762937,10.16968083,7.755837914013798e-48 -6651,2004/3/18,0.00024551,19.32509155,3.253177519,1.49920043,8.577108609,3.628751534,3.877918957006899e-48 -6652,2004/3/19,0.001500109,19.42443399,4.775179463,1.886029088,8.412039151,2.029577841,1.9389594785034494e-48 -6653,2004/3/20,0.002588476,17.75980792,4.417098698,1.725362194,7.75210015,1.309403149,9.694797392517247e-49 -6654,2004/3/21,0.00300036,19.61132725,4.83279166,1.501031285,8.473763989,0.86231454,4.8473986962586235e-49 -6655,2004/3/22,0.001154313,19.50094033,5.646466731,1.727166748,8.295819804,0.558410851,2.4236993481293117e-49 -6656,2004/3/23,0.15253292,20.88610092,6.37069536,2.286784952,8.781103081,1.182054242,1.2118496740646559e-49 -6657,2004/3/24,0.013480519,21.72445966,7.169293108,2.527003202,9.016823971,0.496576977,6.059248370323279e-50 -6658,2004/3/25,0.080530584,21.76228579,6.524218348,2.221022493,9.133684777,0.596836429,3.0296241851616397e-50 -6659,2004/3/26,0.04733762,21.7386603,6.020842683,2.157203703,9.194412771,0.42077577,1.5148120925808198e-50 -6660,2004/3/27,0.001737804,20.75196196,5.697379775,1.910752521,8.807070099,0.188050148,7.574060462904099e-51 -6661,2004/3/28,0.035435935,19.53573824,5.640610745,1.293669965,8.282650351,0.210250701,3.7870302314520496e-51 -6662,2004/3/29,0.502252379,18.67160348,5.58658922,1.293070446,7.911475477,1.786492832,1.8935151157260248e-51 -6663,2004/3/30,3.64012586,17.76953718,4.822517205,1.236506714,7.646075756,37.1100273,9.467575578630124e-52 -6664,2004/3/31,6.730499813,16.59092759,2.181283243,0.750346644,7.532459231,187.2033511,4.733787789315062e-52 -6665,2004/4/1,6.107459364,15.65381645,2.009776378,0.547571046,7.175932092,321.6294709,2.366893894657531e-52 -6666,2004/4/2,0.284496027,16.55829686,3.016538021,0.70671539,7.401133924,101.4789341,1.1834469473287655e-52 -6667,2004/4/3,0.654144616,17.22793224,3.509434596,0.570682828,7.601739909,74.70665122,5.917234736643827e-53 -6668,2004/4/4,1.741497573,16.13585728,4.330447142,0.863352343,7.013736135,109.2331575,2.9586173683219137e-53 -6669,2004/4/5,1.814353186,17.47913467,3.916085975,1.238041757,7.637797877,117.9493024,1.4793086841609569e-53 -6670,2004/4/6,5.158609292,17.59847587,2.68347034,1.350135005,7.848358281,299.3917356,7.396543420804784e-54 -6671,2004/4/7,7.40355466,17.61304358,2.895423988,1.026503497,7.823260702,570.9206346,3.698271710402392e-54 -6672,2004/4/8,4.052080268,14.06576107,3.720491616,0.571121102,6.237155038,468.0006259,1.849135855201196e-54 -6673,2004/4/9,1.348997723,15.66682563,4.23556281,1.284208568,6.81225992,255.613018,9.24567927600598e-55 -6674,2004/4/10,0.366170582,17.75857183,5.966345088,1.585113772,7.391191164,131.5744585,4.62283963800299e-55 -6675,2004/4/11,0.67303343,18.45193888,6.251781923,1.435246937,7.637547965,110.2662307,2.311419819001495e-55 -6676,2004/4/12,1.065211253,19.0731585,6.048163381,1.01162446,7.941558668,112.8983019,1.1557099095007476e-55 -6677,2004/4/13,2.031289124,18.70580238,5.603847471,0.694107236,7.853986188,155.7265236,5.778549547503738e-56 -6678,2004/4/14,3.673507674,16.18480937,6.152272188,0.517690666,6.642596536,260.1814901,2.889274773751869e-56 -6679,2004/4/15,8.113989013,16.14044736,4.182497287,0.914095258,6.99593757,658.732288,3.707213578260066e-06 -6680,2004/4/16,8.638197922,14.5601773,2.876430651,0.935317726,6.55461437,988.030847,0.002338300455482426 -6681,2004/4/17,8.696261269,15.48612441,2.543045079,0.703770082,6.971949963,1285.843313,0.006686107296411618 -6682,2004/4/18,10.08102741,14.92966551,2.616284601,0.304579833,6.735169977,1767.279323,0.019774313383572845 -6683,2004/4/19,0.050580752,16.87396969,3.466893488,0.75413505,7.393373482,533.7646732,0.009846766962802503 -6684,2004/4/20,0.440770448,20.10168298,5.475007236,0.958485616,8.44040708,320.9260301,0.004923383481401251 -6685,2004/4/21,1.551152715,21.32151732,7.035164341,1.180521015,8.715872642,336.9611661,0.0024616917407006256 -6686,2004/4/22,0.51105928,21.03135413,8.507234907,1.262880887,8.306870731,196.770933,0.0012308458703503128 -6687,2004/4/23,0.301553155,20.9549195,9.259513433,1.513648716,8.106197758,124.1148774,0.0006154229351751564 -6688,2004/4/24,0.122487398,21.57138176,9.034439154,1.763750102,8.438106355,76.50279507,0.0003077114675875782 -6689,2004/4/25,0.226936617,21.1451031,8.702468298,1.308995957,8.305563375,57.50082732,0.0001538557337937891 -6690,2004/4/26,0.26329054,21.1563039,8.020652621,0.665671402,8.441778557,44.16245224,7.692786689689455e-05 -6691,2004/4/27,2.031296332,21.27643642,8.372907026,0.989733742,8.423414128,111.6598965,3.8463933448447275e-05 -6692,2004/4/28,2.490388075,19.00079927,8.003386194,1.160462582,7.457246515,147.338418,1.9231966724223638e-05 -6693,2004/4/29,0.269985473,20.55442472,8.6258678,1.702113859,8.032317571,57.19151467,9.615983362111819e-06 -6694,2004/4/30,0.561155699,21.2109506,8.972805461,1.720553889,8.257654921,47.97351185,4.8079916810559094e-06 -6695,2004/5/1,2.708221445,22.36157595,9.863897533,2.066117736,8.59936108,126.0548414,2.4039958405279547e-06 -6696,2004/5/2,2.220357177,21.52771563,9.945479747,2.004522404,8.182471779,129.0885003,1.2019979202639774e-06 -6697,2004/5/3,1.600706075,21.84255787,9.60518384,1.673486889,8.403312447,107.6210074,6.009989601319887e-07 -6698,2004/5/4,5.786132083,20.50618178,9.741014544,0.760977724,7.73668982,319.2031314,3.0049948006599434e-07 -6699,2004/5/5,6.467516591,18.12093597,8.948775304,1.23152424,6.793423628,500.3418796,1.5024974003299717e-07 -6700,2004/5/6,4.426777795,16.91427232,6.993979312,1.519108191,6.705400902,475.4179839,7.512487001649858e-08 -6701,2004/5/7,0.075624054,18.38522082,6.303136199,1.34802026,7.493459111,156.0534021,3.756243500824929e-08 -6702,2004/5/8,0.002945214,22.71082219,8.944113341,1.585594302,8.918922788,80.77604567,1.8781217504124646e-08 -6703,2004/5/9,0.192102639,22.14570412,10.33703219,1.701837075,8.358119247,60.93999062,9.390608752062323e-09 -6704,2004/5/10,8.775470649,21.44455017,10.83194103,1.417796642,7.895907236,579.8603404,0.002464253142019685 -6705,2004/5/11,6.72344833,20.0274082,10.54407783,1.068454225,7.273210733,696.9631826,0.0012286745627081174 -6706,2004/5/12,6.570741783,20.31394742,10.86262516,1.082269408,7.324050286,824.3167454,0.0006143372813540587 -6707,2004/5/13,5.80856571,19.34814759,10.09204615,0.965245236,7.056440647,859.2937783,0.00030716864067702936 -6708,2004/5/14,10.30063795,18.20350457,9.873541768,0.933871338,6.550976699,1538.39742,0.011972440897518095 -6709,2004/5/15,3.232131822,19.23201283,10.18577547,0.726047992,6.967589196,876.964097,0.005967594050073741 -6710,2004/5/16,9.981512968,20.83329827,10.77694236,0.626227872,7.59084035,1739.302262,0.018604783199938926 -6711,2004/5/17,28.59550037,18.92609332,10.88213677,0.403654268,6.60422893,6555.82053,0.20483449621293515 -6712,2004/5/18,26.29980875,17.07504719,10.00154078,0.394452487,5.932004157,10433.67283,0.7226742309292502 -6713,2004/5/19,13.40796278,14.73987753,7.364726165,0.302317205,5.574445206,7974.055076,0.7407222059520369 -6714,2004/5/20,5.801471964,16.06593802,8.331089106,0.769355229,5.933234876,4640.092034,0.3607096983458838 -6715,2004/5/21,2.374987608,19.97654573,10.0598957,1.294324117,7.346776158,2596.748023,0.1803548491729419 -6716,2004/5/22,0.075992857,19.6769025,10.9902337,0.984340053,6.939541597,1299.273312,0.09017742458647095 -6717,2004/5/23,1.242962551,21.14503255,11.24171037,1.218155725,7.599072857,1032.963018,0.045088712293235474 -6718,2004/5/24,0.369197731,21.2848607,11.68218383,0.939369325,7.543985176,629.2798208,0.022544356146617737 -6719,2004/5/25,1.966739065,21.50723237,12.17766605,1.784555157,7.511129687,645.5775664,0.011272178073308868 -6720,2004/5/26,5.162864296,20.47446751,11.19495042,1.420026212,7.270536256,983.3297276,0.005636089036654434 -6721,2004/5/27,4.217685927,21.0014658,11.67562019,1.234212334,7.39535083,896.2417271,0.002818044518327217 -6722,2004/5/28,6.243624287,21.37348515,12.62953298,1.789920422,7.297578294,1143.502282,0.0014090222591636086 -6723,2004/5/29,6.148861902,19.61955095,12.74475005,1.126681749,6.316381821,1216.295702,0.0007045111295818043 -6724,2004/5/30,4.504558659,20.29849916,12.02725889,0.985807385,6.922157867,1033.622687,0.00035225556479090214 -6725,2004/5/31,6.698809472,18.77904888,11.86487435,0.75020321,6.170292366,1325.182366,0.019441470822303738 -6726,2004/6/1,2.047571481,18.79411089,12.13001583,0.684489915,6.081501076,723.3178664,0.009369608230752391 -6727,2004/6/2,5.435189375,19.60811916,12.30580944,1.331620079,6.458916665,1055.860613,0.0046848041153761955 -6728,2004/6/3,3.166885329,19.7781785,11.95434949,1.002152183,6.66575954,792.7808333,0.0023424020576880977 -6729,2004/6/4,2.412174521,18.50812068,11.38817313,0.672332187,6.183762192,608.6692536,0.0011712010288440489 -6730,2004/6/5,8.609942141,18.78659798,11.14737592,0.62302729,6.407300681,1413.420865,0.06831585668314628 -6731,2004/6/6,7.282437385,18.21957691,10.64825751,0.386578668,6.27340135,1518.532113,0.06623196640882033 -6732,2004/6/7,5.25016201,17.52486685,10.27343034,0.355153966,6.036119405,1297.999175,0.032572579361318424 -6733,2004/6/8,1.705857379,18.91408285,11.2476007,0.801858416,6.436311259,702.4860274,0.016286289680659212 -6734,2004/6/9,3.173649733,19.79921322,12.03375852,0.696315539,6.640847655,746.5101047,0.008143144840329606 -6735,2004/6/10,10.71457874,20.30962223,12.49878565,0.912682165,6.755097976,1892.678638,0.12191175642961578 -6736,2004/6/11,3.228561224,20.73145471,12.68371758,0.961201056,6.916150014,1052.481353,0.05920232644943035 -6737,2004/6/12,4.460674386,20.36948571,12.39098712,0.553787063,6.819649731,1056.51864,0.029601163224715173 -6738,2004/6/13,2.098517702,20.66850181,11.87906386,0.511094918,7.13419175,676.5443012,0.014800581612357587 -6739,2004/6/14,2.482439854,21.33060915,11.9429907,0.769562995,7.450163715,600.3983266,0.007400290806178793 -6740,2004/6/15,6.521335412,21.68716477,12.19809711,0.538768595,7.555535201,1067.360261,0.0037001454030893967 -6741,2004/6/16,17.40679652,21.90638897,13.26488761,0.593438021,7.342464605,3105.056926,0.26596494578258745 -6742,2004/6/17,15.82876129,19.45966044,12.7848672,1.059215144,6.185253029,4132.144641,0.4746165936546852 -6743,2004/6/18,6.894864685,19.43224421,12.99994137,1.034672864,6.087780259,2771.091061,0.2672516026943768 -6744,2004/6/19,3.112700752,18.50710138,12.9218735,0.99160936,5.588380446,1648.007876,0.1328176339031456 -6745,2004/6/20,4.357160998,19.56394998,13.28136164,1.285369902,6.051480889,1586.035378,0.0664088169515728 -6746,2004/6/21,5.338596503,19.04815485,13.2444604,1.43144818,5.768638,1670.371115,0.0332044084757864 -6747,2004/6/22,3.6338727,20.28627842,13.51372055,1.695864601,6.369249092,1295.090216,0.0166022042378932 -6748,2004/6/23,0.049911886,19.74437802,13.09821935,1.470243052,6.221889486,514.1001222,0.0083011021189466 -6749,2004/6/24,1.918097204,21.32093027,13.21281289,1.573921655,7.041410628,575.0004072,0.0041505510594733 -6750,2004/6/25,5.341537561,22.67305637,13.99360802,1.611369293,7.506250123,1005.857029,0.00207527552973665 -6751,2004/6/26,17.82970393,23.00071009,14.36611531,1.316940815,7.558852353,3373.435886,0.34477532972105956 -6752,2004/6/27,14.19114006,22.67568401,14.36664531,1.093125775,7.381577889,3937.062701,0.459870285246679 -6753,2004/6/28,5.407409184,21.83887513,14.28701831,0.835302411,6.948093904,2336.808181,0.22362148158586767 -6754,2004/6/29,3.528262621,20.88738801,14.24275098,0.861293047,6.426668986,1575.101377,0.11181074079293384 -6755,2004/6/30,1.856493006,22.79644639,14.87006289,0.679107878,7.270695375,997.4733142,0.05590537039646692 -6756,2004/7/1,6.081710744,23.58491249,14.47638675,0.459646753,7.835877162,1490.018117,0.02795268519823346 -6757,2004/7/2,1.781395138,23.23254445,14.02023353,0.607652844,7.793814676,804.8441734,0.01397634259911673 -6758,2004/7/3,3.57693288,22.74141791,14.1875383,1.034557159,7.476740342,853.7655706,0.006988171299558365 -6759,2004/7/4,2.617190292,22.58773592,13.80960213,1.263708561,7.518663622,671.169242,0.0034940856497791824 -6760,2004/7/5,6.111330334,21.53072208,13.8538438,1.003025368,6.932459849,1045.928595,0.0017470428248895912 -6761,2004/7/6,3.833060155,21.40680322,14.59749889,1.142157971,6.586182355,834.5200963,0.0008735214124447956 -6762,2004/7/7,8.793964031,19.35429461,13.74624831,1.117894365,5.734896067,1507.419552,0.10107119773827278 -6763,2004/7/8,9.39914551,19.39194837,13.23126135,1.019419823,5.969346599,1958.323955,0.1715237462995335 -6764,2004/7/9,12.87084877,18.42877385,12.34607249,1.004099047,5.771072059,3034.309101,0.3600848193341002 -6765,2004/7/10,11.63874269,18.63782529,13.05829262,1.215330553,5.604313771,3479.319509,0.4492520199842665 -6766,2004/7/11,13.58969198,18.32451816,12.94526208,0.911491884,5.468364622,4554.953388,0.6325851231798626 -6767,2004/7/12,6.003756069,19.50133362,12.70427858,0.53316238,6.233465653,2992.834851,0.30572980262603466 -6768,2004/7/13,6.225511356,19.11328385,13.03762503,0.601426887,5.889203399,2660.823313,0.17239991340015776 -6769,2004/7/14,11.40882165,19.64344035,13.4355972,0.837680548,6.035102168,3934.158043,0.39937748017025454 -6770,2004/7/15,8.431115564,19.60591843,13.487547,1.043647295,5.993393981,3503.35974,0.34447087403905197 -6771,2004/7/16,0.614113732,21.12481961,13.40277812,1.343917926,6.87460937,1354.003701,0.16737477643428852 -6772,2004/7/17,2.757910401,21.44866188,13.44329037,1.424308902,7.036891855,1257.094583,0.08368738821714426 -6773,2004/7/18,1.574148845,21.83294689,13.08839849,1.185555962,7.358707383,850.3374959,0.04184369410857213 -6774,2004/7/19,0.822636423,21.55806082,13.98226874,1.321461898,6.910474292,534.1044526,0.020921847054286066 -6775,2004/7/20,17.87584405,22.07783521,14.48828476,1.26145921,7.017607627,3389.212294,0.5878848701775548 -6776,2004/7/21,19.58430808,20.70855214,14.30625462,0.936672104,6.307905175,5545.011518,1.1138411930639065 -6777,2004/7/22,17.33387724,20.84799302,14.51922446,0.553204209,6.30400562,6694.304041,1.3531549164325605 -6778,2004/7/23,15.13404425,19.80319715,14.0572924,0.428823625,5.880279741,7049.271425,1.4233848571249723 -6779,2004/7/24,7.848826031,21.44609287,14.15773717,0.63031637,6.790234243,4812.652553,0.776190733316311 -6780,2004/7/25,6.644647657,21.59820422,14.05267714,0.462534627,6.914985507,3737.834379,0.3836366805631181 -6781,2004/7/26,2.667302535,21.98701619,13.66443746,0.410331524,7.263943566,2156.849198,0.19181834028155906 -6782,2004/7/27,1.932542615,22.96205078,13.80287004,0.598805535,7.741116525,1427.89935,0.09590917014077953 -6783,2004/7/28,3.61357994,21.97476862,13.53005574,0.626015277,7.305332693,1384.858612,0.047954585070389764 -6784,2004/7/29,2.41590478,22.25225309,13.11706493,0.689078436,7.585478724,1003.776412,0.023977292535194882 -6785,2004/7/30,11.10594213,23.00529262,13.52166093,0.676520948,7.856832295,2326.725534,0.25801469138992134 -6786,2004/7/31,14.76624703,21.17175241,14.19142308,0.836979016,6.633554145,3640.575972,0.7580826165999489 -6787,2004/8/1,7.875809673,21.60176888,14.53315959,0.657210496,6.749776949,2787.797949,0.4501518578197952 -6788,2004/8/2,7.271529774,21.4552257,14.31223202,0.813253032,6.752309389,2527.980794,0.265801414906335 -6789,2004/8/3,6.367799334,21.76411283,14.33475095,0.886981174,6.920283908,2246.794162,0.13096520838112874 -6790,2004/8/4,17.93692748,20.55762135,13.64099622,0.999896252,6.502156167,5103.743217,1.0514529518887061 -6791,2004/8/5,1.379430011,22.11423497,14.41353032,1.024401669,7.091896247,1819.687992,0.483218519294849 -6792,2004/8/6,6.206800537,22.11302877,13.74954726,0.332982813,7.324899804,2150.710808,0.2416092596474245 -6793,2004/8/7,8.244926519,21.70561416,14.10889549,0.490427737,6.978584221,2543.632591,0.2346066362351521 -6794,2004/8/8,14.26534837,21.90646326,14.26312768,0.969691337,7.037066941,4148.053867,0.7693538448997412 -6795,2004/8/9,8.987725178,21.66117744,14.14080227,0.915762672,6.946805705,3448.515076,0.5525470660271241 -6796,2004/8/10,2.862441197,21.87813644,13.74854117,1.145349394,7.2074419,1816.56615,0.2666939166788679 -6797,2004/8/11,0.230104595,23.42873912,14.01549987,0.794833398,7.956311749,837.747033,0.13334695833943394 -6798,2004/8/12,0.030850786,23.69835227,14.30508173,1.358248029,8.011584546,489.8959282,0.06667347916971697 -6799,2004/8/13,5.76499641,24.19574995,14.61528724,1.071900105,8.182792165,1117.475505,0.033336739584858485 -6800,2004/8/14,4.222380154,21.41081666,14.01102666,0.561148408,6.866490896,967.0740075,0.016668369792429243 -6801,2004/8/15,9.421838418,21.17092333,13.53515959,0.328380186,6.907452408,1719.288164,0.20938871136829573 -6802,2004/8/16,9.596693205,21.45883955,13.3179467,0.228352128,7.142215807,2100.013809,0.29814415607687084 -6803,2004/8/17,8.209322431,21.05507885,13.45798374,0.278902797,6.876416403,2096.283486,0.2529767982619648 -6804,2004/8/18,7.219945905,21.98681273,13.79994423,0.759926854,7.27094839,2002.073323,0.12176819143011983 -6805,2004/8/19,4.584850464,21.01507876,14.05303235,0.483691136,6.640252208,1492.904687,0.06088409571505991 -6806,2004/8/20,2.568129888,21.41025458,14.13798244,0.942622741,6.835542745,988.7874306,0.030442047857529957 -6807,2004/8/21,4.693768819,23.76861512,14.70792652,0.946841106,7.947293429,1151.742742,0.015221023928764978 -6808,2004/8/22,4.502544258,23.47173438,14.91332793,1.176107941,7.717658009,1087.884287,0.007610511964382489 -6809,2004/8/23,3.843295663,23.892365,14.90920277,1.068751395,7.954844798,933.2743257,0.0038052559821912446 -6810,2004/8/24,5.993971231,22.5708967,14.97736125,0.899494564,7.193724618,1167.288694,0.0019026279910956223 -6811,2004/8/25,4.962522947,22.56706737,14.42531019,1.179455626,7.395601349,1077.633477,0.0009513139955478111 -6812,2004/8/26,6.661740405,22.66471015,14.59864709,1.090086298,7.391995724,1311.04856,0.00047565699777390557 -6813,2004/8/27,5.929328365,21.90224443,14.30069766,0.989144547,7.074829061,1284.860818,0.00023782849888695279 -6814,2004/8/28,8.208427907,21.70203398,14.52125529,0.778916707,6.881409698,1684.022328,0.08426093170408612 -6815,2004/8/29,5.04378803,22.52194322,14.88904742,0.715750525,7.215483883,1326.346747,0.03946287657055439 -6816,2004/8/30,3.673502157,23.20341206,14.84329752,0.919252678,7.62080289,1021.476294,0.019731438285277195 -6817,2004/8/31,11.43028643,22.37252104,14.51668618,0.894511602,7.274815157,2204.845654,0.256198910285842 -6818,2004/9/1,10.46454954,22.29955083,14.85892173,0.882673864,7.109751412,2549.804787,0.3320050851085441 -6819,2004/9/2,6.93705145,23.12934606,14.92858648,0.916899232,7.560116675,2099.393547,0.1593541045791678 -6820,2004/9/3,3.62023511,23.2129568,14.88780702,0.871089151,7.625496972,1367.735664,0.0796770522895839 -6821,2004/9/4,4.322710111,22.39529251,14.87345039,0.871189439,7.170079124,1258.400513,0.03983852614479195 -6822,2004/9/5,5.271690651,23.15069765,15.1418251,0.988101191,7.506359181,1322.509315,0.019919263072395974 -6823,2004/9/6,32.23388591,22.35758765,14.29292647,1.003293908,7.368886332,7831.881348,1.425605254018955 -6824,2004/9/7,27.1152902,19.55039838,13.17918998,0.648599545,6.197468091,11714.9151,2.326006994545595 -6825,2004/9/8,6.796436615,18.31960096,11.24026412,0.159437269,6.233037939,5678.195959,1.1521816446229427 -6826,2004/9/9,1.575933195,18.17367661,10.91179503,0.175705931,6.270255917,2647.433744,0.5734518267298672 -6827,2004/9/10,3.313495997,17.17018645,10.50509367,0.206382446,5.879272567,2194.687317,0.2867259133649336 -6828,2004/9/11,5.823725578,16.05711731,10.37695314,0.396065729,5.323918643,2404.759175,0.1883398871725273 -6829,2004/9/12,6.3906687,16.37443274,9.277420934,0.707960805,5.879138296,2435.535283,0.13838986972859113 -6830,2004/9/13,13.32198654,18.12887886,8.758746067,0.445092947,6.895427722,4201.290059,0.6508015764600543 -6831,2004/9/14,4.424997902,19.09396454,9.22200149,0.533307186,7.243436686,2372.750535,0.2988934384609708 -6832,2004/9/15,5.759500454,20.00281034,10.29209734,0.684799634,7.410571722,2197.087747,0.1494467192304854 -6833,2004/9/16,14.02718672,19.78525819,11.47118227,0.970972321,6.960921689,4056.042621,0.7224765837480543 -6834,2004/9/17,3.205066838,19.95851715,12.0857615,0.697230978,6.857322052,1974.658318,0.3315490403717329 -6835,2004/9/18,2.857314675,20.27726529,12.33968054,0.77643189,6.94770627,1389.598523,0.16577452018586644 -6836,2004/9/19,1.610432232,19.32757057,11.10382649,0.506572757,6.849145833,902.8383392,0.08288726009293322 -6837,2004/9/20,3.150898591,19.844779,11.59484462,0.366990879,6.968756108,937.1385322,0.04144363004646661 -6838,2004/9/21,0.847078669,19.75609726,11.8401502,0.592564261,6.846101469,508.4477797,0.020721815023233305 -6839,2004/9/22,2.764773692,20.42111087,12.31164004,1.033367978,7.050525427,609.5538789,0.010360907511616653 -6840,2004/9/23,5.561038166,21.2558328,12.50965546,1.241942729,7.437026286,946.8522406,0.005180453755808326 -6841,2004/9/24,9.384110701,20.5952083,12.21079169,0.891147828,7.185030991,1605.056616,0.16011658199352374 -6842,2004/9/25,8.442749984,20.77265966,12.48235216,0.616040649,7.195666229,1776.661446,0.16611203961809512 -6843,2004/9/26,9.426727475,20.7445685,12.11511635,0.476855036,7.303474041,2141.198618,0.23807664046298999 -6844,2004/9/27,0.981274696,20.93290703,11.86688126,0.544149964,7.483757884,828.3248519,0.11313041957334846 -6845,2004/9/28,4.690161368,20.36459227,11.85558819,0.875071523,7.192980947,1075.465681,0.05656520978667423 -6846,2004/9/29,1.045132086,20.50616084,11.11246425,1.125707812,7.495025521,543.9077404,0.028282604893337115 -6847,2004/9/30,1.620608573,20.67478783,10.21209387,0.577820883,7.828490312,452.4825119,0.014141302446668558 -6848,2004/10/1,3.235272459,19.88873782,9.4298826,0.283455708,7.646929457,559.2419585,0.007070651223334279 -6849,2004/10/2,3.4596986,18.59003335,9.476333514,0.641848882,7.004689334,572.9563311,0.0035353256116671394 -6850,2004/10/3,3.714446226,19.80409145,10.63828842,1.196425514,7.291138802,592.6956663,0.0017676628058335697 -6851,2004/10/4,4.565898581,19.64987058,10.40210674,1.122666443,7.284666044,687.7229204,0.0008838314029167849 -6852,2004/10/5,11.04505737,16.12762221,9.459935398,0.533908098,5.768333057,1576.942794,0.27232491656828217 -6853,2004/10/6,15.39147464,14.84063897,5.732338387,0.607619426,6.193011177,2986.502117,0.6467733288322263 -6854,2004/10/7,0.150291303,14.79588175,5.394792134,0.422861639,6.252626485,857.0187152,0.308823061003336 -6855,2004/10/8,0.248332317,16.24795237,8.599758766,0.81216901,6.11402136,449.1940493,0.154411530501668 -6856,2004/10/9,2.506529657,16.30667937,8.362239021,0.78852518,6.216534297,602.9404536,0.077205765250834 -6857,2004/10/10,8.281985186,17.06021306,8.578559092,0.784876304,6.530483527,1413.623179,0.13540849653788206 -6858,2004/10/11,16.50521209,17.43392047,8.480702972,0.784371489,6.743749558,3340.687088,0.6198052266372408 -6859,2004/10/12,2.738607809,17.11319955,8.443609334,1.220822297,6.601338901,1434.605152,0.29413772991381326 -6860,2004/10/13,0.486185448,18.02977377,8.543672181,1.324455974,7.024099109,648.9104405,0.14706886495690663 -6861,2004/10/14,1.538896498,18.57353564,8.686241321,1.242522545,7.25448556,572.0070223,0.07353443247845332 -6862,2004/10/15,0.957836817,15.45302996,8.682556925,1.177450813,5.708082407,395.3572216,0.03676721623922666 -6863,2004/10/16,0.727786286,15.00650852,6.536161203,0.844365851,6.110974656,279.1652254,0.01838360811961333 -6864,2004/10/17,0.263493997,16.7689106,5.679074913,0.775451476,7.107223056,167.3451046,0.009191804059806664 -6865,2004/10/18,0.162512522,16.86147736,5.83931718,0.773753381,7.120459504,107.4587295,0.004595902029903332 -6866,2004/10/19,0.013506099,17.86394294,5.95950139,1.048874745,7.546775945,63.3741973,0.002297951014951666 -6867,2004/10/20,0.012880091,18.26192533,5.653942162,1.084348883,7.783098742,40.81079664,0.001148975507475833 -6868,2004/10/21,0.367381594,18.72769667,6.525668052,1.01455989,7.833290753,46.79926864,0.0005744877537379165 -6869,2004/10/22,0.069186436,16.76624502,6.331410463,1.141654915,6.991213929,25.30190565,0.00028724387686895826 -6870,2004/10/23,0.005331556,15.45122995,4.404966886,0.836102714,6.799718348,14.25158756,0.00014362193843447913 -6871,2004/10/24,0.13315273,15.11560483,2.830947078,0.65631075,6.927697092,13.9549012,7.181096921723957e-05 -6872,2004/10/25,0.506837989,15.47755437,2.941455652,0.445215243,7.063905733,24.32647662,3.590548460861978e-05 -6873,2004/10/26,0.669934616,14.43570685,3.054924834,0.882046848,6.618517021,29.85332092,1.795274230430989e-05 -6874,2004/10/27,0.726978572,13.50792517,2.880169539,1.065502647,6.266419605,31.97998331,8.976371152154946e-06 -6875,2004/10/28,0.668937312,14.37855085,2.310926666,1.154602621,6.719799685,30.31579237,4.488185576077473e-06 -6876,2004/10/29,0.141393091,14.73831251,2.096106032,1.119672562,6.900707229,14.262365,2.2440927880387364e-06 -6877,2004/10/30,0.024887322,14.54666094,1.170381365,0.845568542,6.950686708,7.197218034,1.1220463940193682e-06 -6878,2004/10/31,0.529635365,14.68981943,2.02093552,0.366786275,6.89905158,15.98156926,5.610231970096841e-07 -6879,2004/11/1,0.201602995,14.55972223,2.13755227,0.814948026,6.833383867,9.696077825,2.8051159850484205e-07 -6880,2004/11/2,0.374846171,14.56915942,1.533123297,0.796869606,6.924162613,11.22755417,1.4025579925242103e-07 -6881,2004/11/3,0.19818167,14.6918591,2.116484152,0.959376058,6.89715934,7.62788706,7.012789962621051e-08 -6882,2004/11/4,0.085817596,14.8088374,1.039859426,0.78878947,7.08854288,4.51149522,3.506394981310526e-08 -6883,2004/11/5,0.168852159,14.59627046,0.912630862,0.7405932,7.023429027,4.631864681,1.753197490655263e-08 -6884,2004/11/6,0.147132543,15.05273993,1.090566507,0.947294283,7.186216178,3.884653854,8.765987453276314e-09 -6885,2004/11/7,1.009223639,15.23377706,1.854862056,1.057977089,7.166586384,15.48157407,4.382993726638157e-09 -6886,2004/11/8,1.091190663,14.56701138,2.066307456,1.302663601,6.870883745,21.2539149,2.1914968633190785e-09 -6887,2004/11/9,0.167681602,14.59941382,2.08793033,1.277697241,6.88428759,8.781414091,1.0957484316595393e-09 -6888,2004/11/10,0.139712043,14.79557906,2.02599413,1.331006253,6.976122609,5.71769997,5.478742158297696e-10 -6889,2004/11/11,0.102479842,15.58864349,2.575256357,1.117923958,7.226143052,4.02677265,2.739371079148848e-10 -6890,2004/11/12,0.295021724,15.24623892,2.83103506,1.327683458,7.050017386,5.51822501,1.369685539574424e-10 -6891,2004/11/13,0.078617925,15.12248695,1.642298097,1.308386024,7.169840402,2.933750605,6.84842769787212e-11 -6892,2004/11/14,0.0997911,14.41897206,0.764427754,1.14459923,7.001305524,2.370225038,3.42421384893606e-11 -6893,2004/11/15,1.561816556,13.49887609,-0.014198656,0.986328807,6.734962875,19.5133362,1.71210692446803e-11 -6894,2004/11/16,1.281822306,11.60514002,0.162180197,0.872211107,5.983436472,24.50377309,8.56053462234015e-12 -6895,2004/11/17,2.544408548,11.19541023,0.052881146,0.725299844,5.842191059,58.39502877,4.280267311170075e-12 -6896,2004/11/18,0.23326859,11.98069364,1.098221927,0.811138286,6.001766152,21.1497351,2.1401336555850376e-12 -6897,2004/11/19,0.079311099,12.68002074,0.914131847,1.366113769,6.309302472,10.54778988,1.0700668277925188e-12 -6898,2004/11/20,0.795099004,11.69714897,-0.195580803,0.772108557,6.07588392,21.64054895,5.350334138962594e-13 -6899,2004/11/21,1.425299915,10.89935389,-0.289652838,0.718310963,5.784113011,38.42651186,2.675167069481297e-13 -6900,2004/11/22,0.277634556,11.48155756,-0.804225869,0.795953112,6.072237162,17.67502454,1.3375835347406485e-13 -6901,2004/11/23,0.112519193,11.09078935,-1.641152433,0.772015064,6.019845152,9.634955492,6.687917673703243e-14 -6902,2004/11/24,0.506245053,10.41518623,-0.945118503,0.494519509,5.691072724,14.76267514,3.3439588368516213e-14 -6903,2004/11/25,3.523727296,10.81761693,-1.310663552,0.674599181,5.88728064,92.68246407,1.6719794184258107e-14 -6904,2004/11/26,2.149426003,9.761742134,-0.476549339,0.724657455,5.38450234,92.47258881,8.359897092129053e-15 -6905,2004/11/27,0.016885952,9.902036152,-0.886046806,0.703597552,5.49597638,28.148579,4.179948546064527e-15 -6906,2004/11/28,1.016970421,10.91683656,-0.850416538,0.473712873,5.877145912,45.89183992,2.0899742730322633e-15 -6907,2004/11/29,7.69654266,8.22192653,-2.095311718,0.592927069,5.030056547,354.1751059,0.014894458224143217 -6908,2004/11/30,0.063591188,8.908682853,-3.096823167,0.596445348,5.386853803,93.72722527,0.00740563037943446 -6909,2004/12/1,1.081413895,11.06574125,-1.747563863,0.95952472,6.038253318,96.36723868,0.00370281518971723 -6910,2004/12/2,0.454801255,11.13011679,-3.53863482,0.934055215,6.214237067,60.43586821,0.001851407594858615 -6911,2004/12/3,0.043105631,10.42275051,-4.105652115,0.57198817,6.003767531,29.52351124,0.0009257037974293075 -6912,2004/12/4,0.005344071,11.1046213,-3.926361079,0.688048635,6.234004914,17.35244974,0.00046285189871465377 -6913,2004/12/5,3.18e-05,11.49370371,-3.35437405,0.802966926,6.336948589,11.01901057,0.00023142594935732688 -6914,2004/12/6,0.815768955,9.939728953,-2.769907305,0.470359033,5.734499186,32.81968809,0.00011571297467866344 -6915,2004/12/7,0.000213833,8.436289369,-3.760697787,0.639792662,5.291443526,10.83211203,5.785648733933172e-05 -6916,2004/12/8,0.000238796,9.852939246,-2.799145902,0.687055201,5.708933644,5.747121139,2.892824366966586e-05 -6917,2004/12/9,0.034620084,10.41089885,-2.526128351,0.547114356,5.886767312,4.471724264,1.446412183483293e-05 -6918,2004/12/10,0.026447122,9.703635121,-2.597836689,0.911991823,5.638840142,3.136120075,7.232060917416465e-06 -6919,2004/12/11,0.0,11.0295104,-2.355975575,0.61722697,6.099347659,1.76211352,3.6160304587082326e-06 -6920,2004/12/12,0.020374772,11.29000254,-2.472851494,0.665144672,6.206125036,1.472956834,1.8080152293541163e-06 -6921,2004/12/13,0.000279086,11.23117106,-3.28638462,0.921650387,6.250109633,0.813490084,9.040076146770581e-07 -6922,2004/12/14,0.009715431,11.50468386,-3.202235358,0.443463499,6.343648855,0.645736139,4.5200380733852907e-07 -6923,2004/12/15,0.298571027,10.86140849,-2.228638769,0.772065669,6.030936303,4.257364539,2.2600190366926453e-07 -6924,2004/12/16,0.071378328,10.35375393,-3.009984781,0.872825673,5.917117884,2.042547871,1.1300095183463227e-07 -6925,2004/12/17,1.443784137,10.09753815,-3.654812124,1.003999707,5.877559952,20.55298462,5.6500475917316134e-08 -6926,2004/12/18,0.007039407,11.83243094,-2.923237167,0.926262697,6.44635371,5.302196193,2.8250237958658067e-08 -6927,2004/12/19,0.027625804,12.47029316,-2.406591712,1.235171671,6.641632585,2.757365297,1.4125118979329033e-08 -6928,2004/12/20,0.076931806,12.17304822,-1.943207036,1.51134699,6.494027559,2.464197149,7.062559489664517e-09 -6929,2004/12/21,0.145938271,10.84408989,-1.340890795,1.481597417,5.938538601,2.784808404,3.5312797448322584e-09 -6930,2004/12/22,0.006445655,10.77390109,-2.966130321,1.37977401,6.069744832,1.182594292,1.7656398724161292e-09 -6931,2004/12/23,0.07018163,10.65948944,-3.133424131,1.243235178,6.042569743,1.293076615,8.828199362080646e-10 -6932,2004/12/24,0.00074086,11.06445877,-3.324335045,1.315299747,6.202922575,0.577956751,4.414099681040323e-10 -6933,2004/12/25,0.036475206,11.6307371,-3.070257328,1.413839793,6.389057352,0.610444937,2.2070498405201615e-10 -6934,2004/12/26,0.100605008,11.32709064,-2.12551848,1.532592496,6.200935538,0.969606863,1.1035249202600807e-10 -6935,2004/12/27,0.091453936,8.27980846,-4.617907858,1.772587504,5.321265131,0.922032638,5.5176246013004037e-11 -6936,2004/12/28,0.348885836,11.41656245,-4.248315002,1.510444426,6.38842789,2.620396204,2.7588123006502018e-11 -6937,2004/12/29,0.005538944,13.51218541,-1.364818379,2.045872453,6.950778968,0.765883048,1.3794061503251009e-11 -6938,2004/12/30,0.254471239,13.05266526,-1.388265795,1.346870302,6.779079364,1.918681517,6.8970307516255046e-12 -6939,2004/12/31,1.14937329,10.29673686,-1.431749451,0.937232648,5.747595338,9.575857131,3.4485153758127523e-12 -6940,2005/1/1,0.1953935,11.70776655,0.119268446,1.35118475,6.093777307,4.267538018,1.7242576879063761e-12 -6941,2005/1/2,0.000375911,13.35697529,0.067048061,1.462729892,6.745602015,1.579594563,8.621288439531881e-13 -6942,2005/1/3,0.0,14.01672201,-0.697647746,1.200170117,7.082691787,0.898829144,4.3106442197659404e-13 -6943,2005/1/4,0.000167099,13.66084234,-1.44381791,1.657028864,7.014254344,0.576443102,2.1553221098829702e-13 -6944,2005/1/5,0.014580967,13.2384812,-2.545671074,1.11956715,6.941562586,0.45973302,1.0776610549414851e-13 -6945,2005/1/6,0.006721034,13.65966485,-1.213498529,1.142855153,6.993240382,0.299042359,5.3883052747074255e-14 -6946,2005/1/7,0.018004322,12.43063809,-1.50706311,1.389153746,6.554914981,0.259225768,2.6941526373537127e-14 -6947,2005/1/8,0.184832338,11.02015738,-2.572433007,1.36707259,6.128423452,0.956612423,1.3470763186768564e-14 -6948,2005/1/9,0.696978916,10.4529069,-2.118393289,1.315493413,5.878158177,4.113146078,6.735381593384282e-15 -6949,2005/1/10,0.739768835,10.17662005,-1.553973682,1.618699461,5.71500561,6.492127529,3.367690796692141e-15 -6950,2005/1/11,0.165631629,9.439939458,-1.904584857,1.369769351,5.481513265,3.137439258,1.6838453983460705e-15 -6951,2005/1/12,0.060698446,7.774685777,-4.822182383,1.554717089,5.161967704,1.667501806,8.419226991730352e-16 -6952,2005/1/13,8.27e-06,9.693718642,-4.799089718,0.886471311,5.815111066,0.802840595,4.209613495865176e-16 -6953,2005/1/14,0.257529489,8.003620338,-3.732506724,0.729076222,5.151734348,2.256390824,2.104806747932588e-16 -6954,2005/1/15,0.009430395,8.039381132,-3.060593011,0.867509396,5.098431779,0.80523482,1.052403373966294e-16 -6955,2005/1/16,0.097731546,10.72528904,-1.767556435,1.326249406,5.938403324,1.02187045,5.26201686983147e-17 -6956,2005/1/17,0.067535483,11.6456388,-0.392868184,1.573976351,6.12875707,0.802314161,2.631008434915735e-17 -6957,2005/1/18,0.043392533,11.74529409,-0.545836515,1.622283379,6.184690743,0.563947343,1.3155042174578675e-17 -6958,2005/1/19,0.317460458,10.9421224,-1.296569013,1.625474408,5.965552253,1.998551475,6.577521087289338e-18 -6959,2005/1/20,0.520923326,10.79635969,-0.95918601,1.759678477,5.870317107,3.884200323,3.288760543644669e-18 -6960,2005/1/21,0.391921852,10.1779465,-4.462562472,1.561383841,5.955743072,3.912214597,1.6443802718223344e-18 -6961,2005/1/22,0.094306552,11.54537047,-4.584106124,1.40768803,6.4384836,1.893330756,8.221901359111672e-19 -6962,2005/1/23,1.072912699,11.84936449,-1.290420013,1.746435823,6.301115836,9.919655238,4.110950679555836e-19 -6963,2005/1/24,0.073746607,11.54594613,-2.193799473,2.049421703,6.273523037,3.35692164,2.055475339777918e-19 -6964,2005/1/25,0.013377423,12.45723937,-2.849308167,1.786918475,6.65771116,1.546244684,1.027737669888959e-19 -6965,2005/1/26,0.128304913,12.4940877,-2.466173221,1.537070213,6.641522447,1.887693847,5.138688349444795e-20 -6966,2005/1/27,0.08301122,12.83133234,-2.83492241,1.795857384,6.790038475,1.409331313,2.5693441747223975e-20 -6967,2005/1/28,0.027897635,13.50567874,-3.134694897,1.795339584,7.053614487,0.802313164,1.2846720873611988e-20 -6968,2005/1/29,0.010412834,14.05012154,-2.637166939,1.746463,7.221710672,0.473053808,6.423360436805994e-21 -6969,2005/1/30,0.002299116,14.71591426,-2.330519965,1.568242998,7.44791439,0.282719987,3.211680218402997e-21 -6970,2005/1/31,0.029748382,16.17167989,-0.724674825,1.642460419,7.885890605,0.310511483,1.6058401092014985e-21 -6971,2005/2/1,0.036821885,14.81076866,1.482182075,1.836246456,7.117959618,0.294676795,8.029200546007492e-22 -6972,2005/2/2,0.003900586,13.99984659,-0.721001455,1.959259347,7.043842348,0.137815643,4.014600273003746e-22 -6973,2005/2/3,0.012733306,12.73405297,-2.364498061,1.546437672,6.706925209,0.116684346,2.007300136501873e-22 -6974,2005/2/4,0.036438886,13.57874391,-1.799632322,1.588646191,6.974082211,0.164526736,1.0036500682509365e-22 -6975,2005/2/5,0.888315288,12.90687111,-2.521907946,1.837658133,6.777695983,3.778908601,5.018250341254683e-23 -6976,2005/2/6,0.144881945,12.5790104,-2.339185849,1.843319332,6.641303682,1.699885804,2.5091251706273414e-23 -6977,2005/2/7,0.014632644,12.54503439,-3.220103721,1.567470371,6.688620911,0.672783773,1.2545625853136707e-23 -6978,2005/2/8,0.033598886,13.01963723,-2.948475265,1.53471262,6.840903917,0.504488757,6.2728129265683534e-24 -6979,2005/2/9,0.030363962,13.0618685,-3.554721181,1.535697313,6.889721683,0.382225552,3.1364064632841767e-24 -6980,2005/2/10,0.040907729,13.36413671,-3.082439502,1.455310829,6.969469895,0.341518526,1.5682032316420883e-24 -6981,2005/2/11,0.074811338,14.25087315,-2.030078259,1.378498716,7.224583747,0.411923405,7.841016158210442e-25 -6982,2005/2/12,1.206951413,14.15058038,0.07646273,1.767442918,6.996196687,6.495865675,3.920508079105221e-25 -6983,2005/2/13,1.990521572,12.80328458,-0.638566919,1.846116567,6.551636748,21.4914626,1.9602540395526104e-25 -6984,2005/2/14,1.0950296,12.32420107,-1.183561612,2.010784196,6.424255328,20.74683025,9.801270197763052e-26 -6985,2005/2/15,0.689561216,12.39925269,-0.828807082,1.741397593,6.413196828,16.77792333,4.900635098881526e-26 -6986,2005/2/16,0.756349581,12.9731478,-0.092078094,2.1057367,6.547929755,17.87019795,2.450317549440763e-26 -6987,2005/2/17,0.123348238,14.08029803,-0.649704479,1.971398216,7.02838553,7.973082875,1.2251587747203815e-26 -6988,2005/2/18,0.073262833,14.93505874,0.282249097,1.789340253,7.262224297,4.762639651,6.1257938736019076e-27 -6989,2005/2/19,0.332914198,15.1824181,-0.127061638,1.826883549,7.396233579,6.853016236,3.0628969368009538e-27 -6990,2005/2/20,1.756757213,14.28475255,-0.019688516,1.942913597,7.034631149,28.91560198,1.5314484684004769e-27 -6991,2005/2/21,1.036168182,14.70553826,0.193446256,1.931744684,7.172304219,26.18154996,7.6572423420023845e-28 -6992,2005/2/22,0.147148609,14.83381769,-0.613699975,1.761549107,7.29699111,10.70410009,3.8286211710011923e-28 -6993,2005/2/23,0.155896567,14.53922841,-2.070156472,1.826543592,7.297062997,7.321282894,1.9143105855005961e-28 -6994,2005/2/24,0.07180579,13.73840852,-2.98847188,1.681658744,7.057572224,4.561108629,9.571552927502981e-29 -6995,2005/2/25,0.087144315,14.57168633,-1.110136146,1.577248709,7.229840187,3.514186489,4.7857764637514903e-29 -6996,2005/2/26,0.049213442,14.84824444,-1.34517456,1.549703923,7.349451599,2.328340357,2.3928882318757452e-29 -6997,2005/2/27,0.011393531,14.7610187,-1.825354136,1.315712619,7.348505374,1.340410364,1.1964441159378726e-29 -6998,2005/2/28,0.091704758,14.90545688,-0.902713834,1.56818391,7.328104761,1.605701151,5.982220579689363e-30 -6999,2005/3/1,0.22001522,15.10683621,1.059420961,1.605787999,7.205607258,2.523696291,2.9911102898446814e-30 -7000,2005/3/2,0.494095605,14.44085911,0.063477878,1.309878591,7.052107785,5.032429282,1.4955551449223407e-30 -7001,2005/3/3,0.552720318,11.38511217,-1.310325701,0.676203475,6.037817115,6.532620537,7.477775724611704e-31 -7002,2005/3/4,0.787819967,6.722510227,-4.357660071,0.284240252,4.686063476,10.20692582,3.738887862305852e-31 -7003,2005/3/5,3.295769621,5.941181041,-2.768451084,0.459179707,4.240832361,58.26764892,1.869443931152926e-31 -7004,2005/3/6,3.867920661,9.716013674,-1.409261083,0.761883631,5.424766228,123.1741894,9.34721965576463e-32 -7005,2005/3/7,0.132795696,12.32956473,-0.994093789,1.206156081,6.342709419,37.08831478,4.673609827882315e-32 -7006,2005/3/8,0.202267568,14.51189964,-0.264632371,1.482866036,7.090145706,22.50513132,2.3368049139411574e-32 -7007,2005/3/9,0.141938836,16.21227804,0.171829291,1.715873987,7.699636666,15.25389494,1.1684024569705787e-32 -7008,2005/3/10,0.555102366,15.65859588,0.004921767,1.654276759,7.49669816,21.16775215,5.8420122848528935e-33 -7009,2005/3/11,0.504763557,16.73068064,1.232812469,1.199885956,7.789664869,19.4262158,2.9210061424264467e-33 -7010,2005/3/12,0.447343227,16.31797182,0.097504883,0.861466921,7.734584513,16.65811579,1.4605030712132234e-33 -7011,2005/3/13,4.895832253,14.29995858,-0.357417967,0.920826774,6.999007163,141.3201647,7.302515356066117e-34 -7012,2005/3/14,7.838244608,14.10274794,0.535688862,1.238549558,6.82440647,401.668009,4.0200523122298065e-05 -7013,2005/3/15,4.194986238,14.0622137,1.556889886,1.253296104,6.676054265,364.1572926,2.0099464549279617e-05 -7014,2005/3/16,0.131075973,15.04482763,1.746262296,1.028655527,7.038067988,119.3707715,1.0049732274639809e-05 -7015,2005/3/17,0.212339945,16.91300352,2.149208025,0.962379657,7.732712096,71.1377346,5.024866137319904e-06 -7016,2005/3/18,0.216749202,17.21872642,2.524511184,1.201969671,7.806102713,50.25256437,2.512433068659952e-06 -7017,2005/3/19,0.560234052,15.81114489,3.577309693,1.403947009,7.072926424,51.24379441,1.256216534329976e-06 -7018,2005/3/20,0.245952903,15.85104457,3.460623797,1.596509326,7.103997712,32.47485738,6.28108267164988e-07 -7019,2005/3/21,0.119769103,15.92313004,2.309610999,1.555691617,7.295831133,20.1099939,3.14054133582494e-07 -7020,2005/3/22,0.098210319,16.92412749,1.940014991,1.334702971,7.739561746,13.77486816,1.57027066791247e-07 -7021,2005/3/23,0.431928707,15.99262676,3.760340842,1.026101009,7.10282756,18.96030831,7.85135333956235e-08 -7022,2005/3/24,2.402168172,14.01225338,4.540522818,0.865639393,6.111075367,75.25278642,3.925676669781175e-08 -7023,2005/3/25,2.658671582,10.56530379,3.253498052,1.101454105,4.897020105,110.8288337,1.9628383348905876e-08 -7024,2005/3/26,0.608255994,12.40859745,0.607910461,1.124556163,6.116589786,53.84050413,9.814191674452938e-09 -7025,2005/3/27,0.556172734,13.31432207,0.466945093,1.124924973,6.478665784,40.27462785,4.907095837226469e-09 -7026,2005/3/28,0.564083788,15.33428057,1.402621163,1.189678762,7.14610437,35.14730238,2.4535479186132345e-09 -7027,2005/3/29,0.292146753,15.39327096,2.256678528,1.162806201,7.056088449,22.96639634,1.2267739593066173e-09 -7028,2005/3/30,0.00016823,16.86946157,3.39852863,1.256577741,7.492188083,10.36239052,6.133869796533086e-10 -7029,2005/3/31,0.014010794,17.41946183,4.109303252,1.210301209,7.610907593,6.543920267,3.066934898266543e-10 -7030,2005/4/1,0.186503715,16.62249206,3.597084896,0.714551601,7.352166967,7.878956862,1.5334674491332716e-10 -7031,2005/4/2,0.445016573,16.22942591,2.863602319,0.52212942,7.292999797,11.92343034,7.667337245666358e-11 -7032,2005/4/3,2.636360005,12.951465,2.550660089,0.411456382,6.007477029,61.73816024,3.833668622833179e-11 -7033,2005/4/4,0.36614611,11.01690178,1.956581121,0.825832422,5.326405355,25.05805109,1.9168343114165895e-11 -7034,2005/4/5,3.309340587,11.92288097,1.2085481,1.284381122,5.807626356,104.9316865,9.584171557082947e-12 -7035,2005/4/6,0.1655435,16.54905644,2.926060152,1.601368581,7.396781773,33.73586123,4.792085778541474e-12 -7036,2005/4/7,0.380026042,17.21982422,4.503943786,1.834910345,7.433674418,25.68493692,2.396042889270737e-12 -7037,2005/4/8,0.212217023,18.18491019,4.716872419,1.958906355,7.803004749,17.079273,1.1980214446353684e-12 -7038,2005/4/9,0.669143936,19.07207132,5.528248002,1.947912849,8.047400823,24.09966462,5.990107223176842e-13 -7039,2005/4/10,0.944628687,18.65501593,6.837048702,2.037657751,7.624100731,30.62643354,2.995053611588421e-13 -7040,2005/4/11,6.349549542,18.92027698,6.699764521,1.628989446,7.764575451,219.8944059,1.4975268057942105e-13 -7041,2005/4/12,1.072651829,17.68292143,4.508292742,1.135001007,7.606031913,99.33726238,7.487634028971053e-14 -7042,2005/4/13,2.208926814,15.71099077,4.296908845,0.983616937,6.808206672,126.139208,3.743817014485526e-14 -7043,2005/4/14,0.24577758,16.69875345,4.917728572,1.292205807,7.112757295,51.86260743,1.871908507242763e-14 -7044,2005/4/15,0.122615107,17.61255974,5.953154578,1.502809771,7.312808151,29.25735865,9.359542536213816e-15 -7045,2005/4/16,0.08144518,18.78881354,5.684692934,1.272498695,7.867095994,18.9211218,4.679771268106908e-15 -7046,2005/4/17,0.8032709,19.50758425,6.399760876,1.145908771,8.051422411,33.73670852,2.339885634053454e-15 -7047,2005/4/18,1.62781043,18.54052624,6.205924424,1.087486842,7.658587567,58.86618579,1.169942817026727e-15 -7048,2005/4/19,1.452302276,18.20368675,5.934070978,0.646541919,7.557081858,61.45495379,5.849714085133635e-16 -7049,2005/4/20,5.768298098,18.41837946,6.025563415,0.806019311,7.629580292,243.6221155,2.9248570425668174e-16 -7050,2005/4/21,4.470800349,17.92733136,5.863516546,1.357860541,7.441602287,293.1710404,1.4624285212834087e-16 -7051,2005/4/22,1.175769053,18.9324931,5.577355426,1.204368478,7.920162333,148.5094735,7.312142606417044e-17 -7052,2005/4/23,0.192278033,19.24558042,5.969223078,1.320702347,7.98498828,67.42634586,3.656071303208522e-17 -7053,2005/4/24,2.698461352,19.87118739,6.690862653,1.17354509,8.127870628,161.5067463,1.828035651604261e-17 -7054,2005/4/25,4.302943786,19.75113862,6.912990049,1.325660905,8.030491278,277.2048781,9.140178258021304e-18 -7055,2005/4/26,8.486528896,19.88517873,7.663728761,1.175725866,7.942305574,658.7375771,6.649145311256648e-05 -7056,2005/4/27,7.54851069,19.44686095,7.753410305,1.314232518,7.721834233,838.278937,3.324166470046202e-05 -7057,2005/4/28,0.384410146,18.28857782,7.568589847,1.709390006,7.231484163,278.9474991,1.662083235023101e-05 -7058,2005/4/29,0.256515548,19.47810439,7.58402422,1.893744003,7.76247896,151.4574835,8.310416175115505e-06 -7059,2005/4/30,0.160667717,19.79318938,7.435330728,1.601638961,7.92925627,96.60477641,4.155208087557752e-06 -7060,2005/5/1,1.09444184,20.41787751,8.175199376,1.337908901,8.059473515,121.2085754,2.077604043778876e-06 -7061,2005/5/2,3.54742451,19.3124548,8.221993768,1.475528942,7.540495234,258.943241,1.038802021889438e-06 -7062,2005/5/3,1.415845629,17.67930446,8.130517172,1.389486128,6.802229213,163.4782328,5.19401010944719e-07 -7063,2005/5/4,0.813638068,19.32658381,8.48155423,1.622320212,7.481395441,106.4202069,2.597005054723595e-07 -7064,2005/5/5,0.29079719,19.97886342,8.598195567,1.301693795,7.753025139,60.13367758,1.2985025273617976e-07 -7065,2005/5/6,10.27904894,17.45046528,8.273467516,1.218951914,6.649293284,675.6431617,0.0015242518247127687 -7066,2005/5/7,1.358781503,15.75392186,9.074416221,1.109728426,5.587250187,276.1645849,0.0007618058982941389 -7067,2005/5/8,0.411680456,15.49865211,8.19884631,1.080875017,5.728883389,133.8740313,0.00038090294914706945 -7068,2005/5/9,0.442414136,18.45287749,8.785708725,1.432835798,6.983115661,95.8740271,0.00019045147457353472 -7069,2005/5/10,4.879485192,19.39178531,10.47480229,1.338951361,6.983927243,371.001718,9.522573728676736e-05 -7070,2005/5/11,0.37509986,20.98596102,9.984285635,1.930170188,7.884626915,132.4998791,4.761286864338368e-05 -7071,2005/5/12,0.350649322,20.49338675,9.346840195,1.677812748,7.798118076,79.76082277,2.380643432169184e-05 -7072,2005/5/13,0.382886054,20.56784848,8.84727469,1.871527221,7.940900123,60.4581936,1.190321716084592e-05 -7073,2005/5/14,0.253730046,20.92219387,8.955095553,1.663033919,8.077462231,41.44266477,5.95160858042296e-06 -7074,2005/5/15,0.811126951,20.55459388,9.019519956,2.038419756,7.890180514,53.59034917,2.97580429021148e-06 -7075,2005/5/16,0.758366881,20.7457254,9.315599228,2.004312799,7.909545114,48.92875309,1.48790214510574e-06 -7076,2005/5/17,1.44253986,21.59678805,9.444818454,1.717472322,8.273759345,69.90623241,7.4395107255287e-07 -7077,2005/5/18,0.799468928,20.82781845,9.108984478,1.65631478,7.986974832,50.09562,3.71975536276435e-07 -7078,2005/5/19,4.676665237,21.4975888,9.383125443,1.819276191,8.234296328,201.4573079,1.859877681382175e-07 -7079,2005/5/20,1.825925952,20.74173532,10.18288393,1.328729495,7.689470862,135.0452465,9.299388406910875e-08 -7080,2005/5/21,3.662994698,20.55199438,9.299595569,1.765200963,7.806900618,220.4671191,4.6496942034554376e-08 -7081,2005/5/22,2.605969682,20.90018654,9.166386841,1.741558336,7.995267104,201.9256116,2.3248471017277188e-08 -7082,2005/5/23,1.48226391,21.19484585,10.11356533,1.596424246,7.913737504,142.6802663,1.1624235508638594e-08 -7083,2005/5/24,2.534899758,21.8858116,10.72621312,1.746003611,8.093402593,183.4329542,5.812117754319297e-09 -7084,2005/5/25,4.051348436,21.51156096,10.92787357,1.52906327,7.859020756,285.831748,2.9060588771596485e-09 -7085,2005/5/26,2.566100568,22.71099032,11.18378333,1.588530737,8.374331305,238.0972242,1.4530294385798242e-09 -7086,2005/5/27,2.412724808,23.84151904,11.91491374,1.977217034,8.743345514,222.1579193,7.265147192899121e-10 -7087,2005/5/28,5.443331323,23.49157391,11.97633649,1.702460048,8.553614783,423.3078782,3.6325735964495606e-10 -7088,2005/5/29,14.23333524,24.29151895,12.02269621,1.100974196,8.931265416,1421.188589,0.006941565886767695 -7089,2005/5/30,9.629287197,22.55069805,12.51322375,1.022470496,7.93537432,1528.601887,0.014641683234720398 -7090,2005/5/31,3.902918371,23.18352123,13.07184434,1.390382537,8.096409813,945.638198,0.007283977101756819 -7091,2005/6/1,5.501705673,22.02236399,13.03788289,1.253447257,7.502589392,1030.2153,0.0036419885508784094 -7092,2005/6/2,5.966090249,22.66210395,13.26685012,1.126660436,7.764207753,1121.983524,0.0018209942754392047 -7093,2005/6/3,3.259008051,21.48455174,12.88843255,1.135637116,7.26302916,787.5332299,0.0009104971377196023 -7094,2005/6/4,2.209337442,21.40419706,12.94792978,1.199913219,7.19954949,561.5561656,0.00045524856885980117 -7095,2005/6/5,3.959410396,20.67065955,12.35854063,1.03065732,7.001038539,678.1926044,0.00022762428442990059 -7096,2005/6/6,6.943160087,21.54805889,12.1833901,0.774357762,7.505169793,1063.664598,0.00011381214221495029 -7097,2005/6/7,2.897102814,21.84947579,12.44856837,1.184354201,7.579213117,675.7876995,5.6906071107475147e-05 -7098,2005/6/8,1.573138695,22.01369519,12.98240994,1.054150603,7.501078755,426.1160608,2.8453035553737573e-05 -7099,2005/6/9,4.62200438,22.18076016,13.62689653,1.161143551,7.382305164,669.4997028,1.4226517776868787e-05 -7100,2005/6/10,4.115703551,21.03195749,13.28845655,1.464516332,6.876072415,662.9629307,7.113258888434393e-06 -7101,2005/6/11,2.917963498,21.72352431,13.47742065,1.403192414,7.183512352,532.8440765,3.5566294442171967e-06 -7102,2005/6/12,1.371488491,22.25716567,14.1638888,1.447983985,7.237767225,331.1007204,1.7783147221085983e-06 -7103,2005/6/13,3.177923097,23.37988996,14.26092932,1.394963195,7.811281507,437.1096506,8.891573610542992e-07 -7104,2005/6/14,7.276931757,24.03593062,14.05781349,1.31449271,8.219942882,875.3512929,4.445786805271496e-07 -7105,2005/6/15,5.681819563,22.14290693,14.22698159,0.67300474,7.148863305,868.3910285,2.222893402635748e-07 -7106,2005/6/16,21.59093284,22.14995915,14.42274294,0.754093289,7.081826139,3542.326791,0.05280497840852376 -7107,2005/6/17,10.84360474,20.45421042,14.47963418,0.866725857,6.084730409,3068.435646,0.11217133238320547 -7108,2005/6/18,5.51426189,21.32942254,14.16675854,1.098327487,6.714401413,2082.033459,0.05531103061595992 -7109,2005/6/19,3.615582096,20.95251341,13.98823515,1.127261227,6.568094981,1461.43459,0.02765551530797996 -7110,2005/6/20,1.883850616,21.25493292,13.5199585,1.114933982,6.904784314,926.2345,0.01382775765398998 -7111,2005/6/21,8.026495614,21.87228956,13.6680176,1.27536723,7.187608595,1782.636726,0.023191600535265255 -7112,2005/6/22,5.819586151,21.63895572,13.68723843,1.260307076,7.054002352,1578.808539,0.011437874219183491 -7113,2005/6/23,10.5252074,21.49986799,14.08993184,1.020807569,6.834038356,2450.823107,0.07658963184834776 -7114,2005/6/24,10.79322578,19.50696745,12.98355989,1.207109162,6.132455593,2926.61339,0.1436509655862646 -7115,2005/6/25,2.312213481,20.41652693,12.71125833,1.599937965,6.726650753,1374.4275,0.07061927210743407 -7116,2005/6/26,2.215464472,20.75984169,12.84486917,1.406480237,6.86434851,978.3487899,0.035309636053717036 -7117,2005/6/27,0.632255631,22.36907011,13.1698603,1.648530753,7.606625299,541.1352242,0.017654818026858518 -7118,2005/6/28,5.577799659,23.60411192,14.09422619,1.440097125,7.968302846,1082.819092,0.008827409013429259 -7119,2005/6/29,8.630949342,24.01864052,14.66064674,1.319937566,8.009804995,1649.148158,0.018175884793241982 -7120,2005/6/30,10.96100299,22.66775138,15.14297338,1.384543927,7.098263984,2308.121989,0.0968131661193817 -7121,2005/7/1,6.562875478,24.00729893,15.30817309,1.632266467,7.788292166,1845.497061,0.047406970215022465 -7122,2005/7/2,6.715532386,23.27844865,14.81871434,1.452665974,7.555328142,1792.668691,0.023703485107511232 -7123,2005/7/3,4.179748177,22.97787951,14.75918885,1.341171542,7.410449074,1317.543348,0.011851742553755616 -7124,2005/7/4,6.433958946,23.07648448,14.76446806,1.08604722,7.462954628,1546.989962,0.005925871276877808 -7125,2005/7/5,2.82138145,24.07203122,14.76921696,1.273366788,8.00283641,972.7707947,0.002962935638438904 -7126,2005/7/6,1.137583655,24.83884299,15.277063,1.284661317,8.252539301,552.2508646,0.001481467819219452 -7127,2005/7/7,4.443562648,24.82414559,15.20741205,1.296818207,8.26723149,814.1305046,0.000740733909609726 -7128,2005/7/8,9.904562697,24.05209198,15.53562198,1.335972119,7.73457185,1596.923901,0.0415360289796781 -7129,2005/7/9,6.246538699,22.4004388,14.36190327,1.196990725,7.232378687,1365.065635,0.02037754931062208 -7130,2005/7/10,1.154170823,20.47329603,13.30798594,0.97862172,6.547334599,610.6479506,0.01018877465531104 -7131,2005/7/11,12.00816505,20.74760123,12.80125376,0.390430533,6.872302804,2024.126993,0.10303209644948061 -7132,2005/7/12,15.20900546,20.00084977,12.82544414,0.299673494,6.462680802,3389.251975,0.26059229492385383 -7133,2005/7/13,10.48757023,20.42646124,12.91935563,0.664754331,6.661127101,3224.667198,0.2515318965067686 -7134,2005/7/14,8.565582476,20.65418005,13.2355501,0.805779203,6.67463035,2946.131757,0.19169806278567758 -7135,2005/7/15,11.6707414,21.04018641,13.65373963,1.044786222,6.73791682,3768.112387,0.280512581450393 -7136,2005/7/16,4.868296602,22.33215686,14.50999456,1.36567389,7.146513749,2343.915591,0.13675395706300314 -7137,2005/7/17,6.597878354,23.25339393,14.77682532,1.456704597,7.562391084,2344.527482,0.06837697853150157 -7138,2005/7/18,10.4384729,22.95893878,15.06142831,1.274054245,7.299509475,3138.237347,0.15715434595010486 -7139,2005/7/19,18.93739525,21.08329445,14.8622009,0.858995524,6.296916188,5851.193327,0.6079773790018373 -7140,2005/7/20,5.451273519,20.4984784,14.32583638,0.506209154,6.174988242,3171.085802,0.29280159228490604 -7141,2005/7/21,7.966751006,21.09543815,14.72545327,0.59138255,6.362710553,3250.459263,0.2313305721104556 -7142,2005/7/22,13.63584099,21.29558775,14.61421999,0.487033312,6.525589557,4870.958545,0.5001155874030957 -7143,2005/7/23,5.357544769,22.25701393,14.29515387,0.468723406,7.188791056,2968.794137,0.23954228019902354 -7144,2005/7/24,13.19865827,22.7490459,14.33589601,0.6751339,7.445685653,4622.859213,0.4586944008446525 -7145,2005/7/25,14.50437175,21.30743611,14.16670233,0.809301284,6.70887417,5586.930731,0.7183365005003551 -7146,2005/7/26,1.825765236,22.72481822,14.44855204,0.851915961,7.39683542,2253.427542,0.34319917334189504 -7147,2005/7/27,2.093883978,23.98970194,14.9199875,0.872764142,7.929747087,1502.131911,0.17159958667094752 -7148,2005/7/28,4.082206249,24.1802316,15.24649812,0.867214795,7.926468021,1518.168302,0.08579979333547376 -7149,2005/7/29,4.542858867,23.73371187,15.50698625,0.899510744,7.589266847,1427.955056,0.04289989666773688 -7150,2005/7/30,6.93279862,24.69515272,16.05972762,0.729365282,7.934732238,1729.509173,0.02144994833386844 -7151,2005/7/31,12.06923301,23.82831723,15.75413461,0.836400728,7.556632876,2784.017355,0.26656905896133104 -7152,2005/8/1,16.04651009,21.35799579,15.64789722,0.734032181,6.138594622,4307.627367,0.7275504823934411 -7153,2005/8/2,1.971197376,21.9413027,14.38947487,0.771649868,6.995722251,1707.245182,0.3455158719866205 -7154,2005/8/3,4.749983296,24.04176674,15.08781755,1.163180741,7.916110594,1687.279948,0.17275793599331024 -7155,2005/8/4,6.169932757,22.09616984,15.06746888,1.311167362,6.831055659,1816.624487,0.08637896799665512 -7156,2005/8/5,4.112492918,21.41020571,14.81977362,1.082413631,6.531698682,1393.752448,0.04318948399832756 -7157,2005/8/6,5.847295919,21.69198215,15.11286449,1.51921712,6.580306578,1557.127595,0.02159474199916378 -7158,2005/8/7,11.44884745,21.21223418,15.22508107,1.288862232,6.247369195,2699.273271,0.31768575488353684 -7159,2005/8/8,7.559268691,22.19729492,15.38979436,1.270645951,6.770116806,2354.785064,0.19998445598148556 -7160,2005/8/9,9.777635723,21.95413744,15.24568575,1.241431992,6.68730637,2848.992144,0.29709783860740874 -7161,2005/8/10,13.13121679,21.55754118,15.34687034,0.965159153,6.410454679,3975.495875,0.5924767044059338 -7162,2005/8/11,11.87066316,22.47061524,14.99156335,0.301379747,7.091202574,4274.222784,0.6293547240451631 -7163,2005/8/12,12.71944809,23.61180113,14.89876044,0.456724147,7.766426735,4814.492655,0.6831898657468287 -7164,2005/8/13,3.647446992,22.64059329,14.49603502,0.792941142,7.37222974,2453.577828,0.3269260318267312 -7165,2005/8/14,7.978156423,22.04205813,14.79818034,0.85078572,6.926859024,2856.644845,0.2448939877071606 -7166,2005/8/15,6.466032354,21.36986534,14.63383955,0.81475419,6.604965836,2483.21211,0.1192932700958742 -7167,2005/8/16,12.10453921,21.01987341,14.34400893,0.692873464,6.519133597,3731.875463,0.4965002424379861 -7168,2005/8/17,14.14716091,21.13836063,14.35998245,0.925260202,6.584001116,4881.313996,0.8586004628553124 -7169,2005/8/18,3.609310021,21.07359203,14.59579953,1.078231807,6.454402067,2431.21323,0.4032744866209159 -7170,2005/8/19,2.641160978,21.51070644,14.99267459,1.28915499,6.552821999,1596.333326,0.20163724331045796 -7171,2005/8/20,5.508644668,21.82888217,14.97005084,1.526952372,6.75227096,1865.1493,0.10081862165522898 -7172,2005/8/21,10.72177243,21.1022055,14.44694425,1.22278205,6.539221791,2975.265124,0.39053113968196884 -7173,2005/8/22,11.73887467,20.95908565,14.17342669,0.926699639,6.567091176,3667.399754,0.620258053241403 -7174,2005/8/23,13.33449695,20.50693674,14.13010509,0.855887197,6.324318305,4572.056566,0.9166839649090464 -7175,2005/8/24,7.846599136,20.05225328,13.83965999,0.819868889,6.178822692,3499.350498,0.5888977589867559 -7176,2005/8/25,7.488134932,20.45852211,14.05781855,0.76994052,6.330833734,3169.304248,0.3984436510928376 -7177,2005/8/26,6.200780015,20.33632805,13.92344579,1.116978939,6.31651029,2678.113988,0.1938486730857349 -7178,2005/8/27,5.732286557,21.68496293,13.63111479,1.087159155,7.188994454,2346.736668,0.09692433654286745 -7179,2005/8/28,13.53715154,22.15957126,14.12277682,1.030981773,7.282599228,4140.79316,0.647239835454458 -7180,2005/8/29,17.09166418,22.1902477,14.2182828,0.621332692,7.269306672,5988.015599,1.2855331203939246 -7181,2005/8/30,4.94215827,21.39582448,13.73946999,0.22037716,7.001316896,3121.777121,0.5928172974326464 -7182,2005/8/31,1.918334871,22.9337491,13.73891328,0.100667255,7.843092013,1676.702032,0.2964086487163232 -7183,2005/9/1,1.40410171,22.91969809,13.80195401,0.16385034,7.819238819,1090.707267,0.1482043243581616 -7184,2005/9/2,4.589340373,22.760093,13.46320007,0.133844981,7.845131779,1346.742646,0.0741021621790808 -7185,2005/9/3,8.339720929,21.94763255,12.69654689,0.312483584,7.657528607,1941.32237,0.10054197282583499 -7186,2005/9/4,1.724503352,20.95272908,12.61712562,0.238127137,7.161195379,922.1731543,0.04731647255848725 -7187,2005/9/5,0.337423927,20.3257936,11.90143324,0.500766416,7.063063215,459.9226575,0.023658236279243624 -7188,2005/9/6,3.509988578,20.42381452,11.58641372,0.584105395,7.214692647,698.5079421,0.011829118139621812 -7189,2005/9/7,6.966019949,19.65469242,11.15362171,0.242783162,6.953878875,1161.130082,0.006895514046607655 -7190,2005/9/8,0.766292876,20.32819526,11.03350835,0.159787067,7.335647708,462.6696014,0.003408128211779314 -7191,2005/9/9,4.172334509,22.06117023,10.9637794,0.516850384,8.218939524,695.3905847,0.001704064105889657 -7192,2005/9/10,4.627039235,22.17458252,11.39953355,1.003268658,8.167839236,769.906179,0.0008520320529448285 -7193,2005/9/11,2.7841506,22.15808562,11.73350571,0.914828946,8.075100892,562.7574983,0.00042601602647241425 -7194,2005/9/12,0.357191467,21.73069008,11.76365679,0.348248163,7.85499942,248.4063107,0.00021300801323620712 -7195,2005/9/13,1.68629776,22.40542108,11.98983476,0.693897555,8.138926801,273.7517631,0.00010650400661810356 -7196,2005/9/14,1.347183527,21.89587229,12.41942967,0.820494219,7.75870476,220.2513902,5.325200330905178e-05 -7197,2005/9/15,3.259734206,20.97494721,12.48781778,0.796797947,7.257013401,336.1489775,2.662600165452589e-05 -7198,2005/9/16,2.131338533,20.1076099,12.51064259,0.507524395,6.785705709,270.8744073,1.3313000827262945e-05 -7199,2005/9/17,7.514803186,21.80708858,12.79970204,0.493782003,7.608429578,724.0591648,6.656500413631473e-06 -7200,2005/9/18,18.74860151,22.35548862,12.85926002,0.738207705,7.884231886,2536.772393,0.553133843810935 -7201,2005/9/19,3.470445968,19.81981625,13.19772489,0.877803681,6.383189328,1167.516116,0.2624863365685784 -7202,2005/9/20,2.402355559,19.90051797,12.49471948,0.588254516,6.692919077,761.3673339,0.1312431682842892 -7203,2005/9/21,0.573945358,21.50312348,12.74227757,0.639335638,7.481855002,395.6468097,0.0656215841421446 -7204,2005/9/22,8.657234536,21.33122562,12.91221944,0.576758359,7.338426308,1284.473394,0.10158894560462534 -7205,2005/9/23,8.324592069,20.65266916,12.66207132,0.807189048,7.058266992,1553.864748,0.11654247897234792 -7206,2005/9/24,2.582584569,21.3922284,12.89633598,0.84642222,7.38511651,840.2044073,0.056470024125138615 -7207,2005/9/25,9.82915419,22.16071965,13.31139178,0.863001496,7.669241002,1761.40275,0.1400058956969158 -7208,2005/9/26,13.74832671,21.47840464,12.94297352,0.626259093,7.42494975,2910.332387,0.4066131969843506 -7209,2005/9/27,7.649078236,22.60606109,12.59341836,0.920804364,8.135933806,2293.600534,0.19419265943005554 -7210,2005/9/28,8.82191812,20.09943703,12.38526937,1.005492792,6.871484991,2447.956984,0.21191005708220845 -7211,2005/9/29,7.866664911,19.85904394,12.22708659,1.303843541,6.798737254,2370.721067,0.16728501613006722 -7212,2005/9/30,4.339361344,19.97725875,12.18576989,1.100172095,6.881264669,1646.378662,0.0816820327017424 -7213,2005/10/1,3.468255594,21.39069207,12.48215836,0.879681044,7.548115288,1258.910019,0.0408410163508712 -7214,2005/10/2,1.849193886,20.67122699,11.8190677,0.664811235,7.378796784,809.0178344,0.0204205081754356 -7215,2005/10/3,7.952040314,20.0755316,11.56466285,0.377650023,7.149033922,1592.719044,0.05296388026173047 -7216,2005/10/4,0.201797318,20.02582967,11.26281749,0.642611294,7.22048734,547.5664599,0.02534379691728841 -7217,2005/10/5,0.194968087,20.58120843,11.14805167,1.092063814,7.5452883,304.8768079,0.012671898458644205 -7218,2005/10/6,0.099087133,20.08865544,9.915110692,0.555843978,7.639492962,192.4659181,0.0063359492293221025 -7219,2005/10/7,2.713609833,19.18176562,9.653323309,0.224932147,7.265895203,374.1446427,0.0031679746146610513 -7220,2005/10/8,0.56417043,17.64353799,8.969136301,0.278683855,6.697464456,187.0167779,0.0015839873073305256 -7221,2005/10/9,0.008727334,17.47454254,8.235638699,0.690426898,6.815700182,89.39791083,0.0007919936536652628 -7222,2005/10/10,0.194675943,18.95826644,8.087733916,1.030739415,7.558611791,67.35352603,0.0003959968268326314 -7223,2005/10/11,0.003115654,19.26080472,7.097988728,0.880185458,7.912224637,38.41586926,0.0001979984134163157 -7224,2005/10/12,0.060226242,19.07869232,7.722258071,0.925484582,7.704521935,27.2094767,9.899920670815785e-05 -7225,2005/10/13,1.435755211,19.54577644,8.456138087,1.111367132,7.764559255,80.96580119,4.9499603354078926e-05 -7226,2005/10/14,2.516455582,18.93063955,8.528975172,0.962191384,7.460098085,140.9287541,2.4749801677039463e-05 -7227,2005/10/15,2.499072018,17.82186618,8.121962974,0.85702614,7.034986491,161.8684386,1.2374900838519732e-05 -7228,2005/10/16,1.609169887,17.85818541,7.862013666,0.950108056,7.119803435,128.9253818,6.187450419259866e-06 -7229,2005/10/17,1.393095143,18.86488883,8.347832194,1.165246973,7.485038876,111.7550917,3.093725209629933e-06 -7230,2005/10/18,0.492048807,19.08756319,8.676278649,1.106735011,7.516988686,62.7028704,1.5468626048149664e-06 -7231,2005/10/19,0.565859305,18.41534923,8.849286529,0.863718276,7.15275259,50.90620502,7.734313024074832e-07 -7232,2005/10/20,1.450084185,18.53659442,8.827315371,0.866973888,7.221614502,78.62190589,3.867156512037416e-07 -7233,2005/10/21,2.094470787,18.07856679,8.168237236,0.529107926,7.170645827,110.5916652,1.933578256018708e-07 -7234,2005/10/22,2.549777486,15.82150905,6.990742743,0.386465049,6.396564385,144.2371277,9.66789128009354e-08 -7235,2005/10/23,8.394231951,13.261854,3.363635326,0.70328051,6.058290477,533.6626705,0.047566010473784746 -7236,2005/10/24,1.89493239,10.81406362,1.991585332,0.815248972,5.304256251,272.9005373,0.023298720682046466 -7237,2005/10/25,0.496303388,12.45781596,2.992098251,0.847309445,5.797591884,131.2579299,0.011649360341023233 -7238,2005/10/26,1.41444848,13.91150288,4.392826695,0.689508588,6.14227134,152.6221135,0.005824680170511617 -7239,2005/10/27,0.903829695,14.19064143,4.834527431,0.668215569,6.174435949,114.6334315,0.0029123400852558083 -7240,2005/10/28,10.80127163,12.90167141,2.574281081,0.477968568,6.068852202,870.2846167,0.08858686990343419 -7241,2005/10/29,12.24968468,11.54425965,2.54462634,0.217709191,5.514457624,1602.279561,0.19820765841825116 -7242,2005/10/30,7.87222416,10.43841698,3.793750588,0.459647369,4.75457908,1543.823116,0.18898732927898937 -7243,2005/10/31,1.263380738,9.944370577,3.651246906,0.525055081,4.570439629,659.8011853,0.0931462294729685 -7244,2005/11/1,0.521405116,11.14947763,2.599787841,0.604195688,5.346691145,362.0257288,0.04657311473648425 -7245,2005/11/2,0.018478682,13.11561395,2.003443351,0.571052189,6.267995145,195.050733,0.023286557368242124 -7246,2005/11/3,0.039776531,13.81505217,2.304347967,0.598232811,6.508624086,125.597052,0.011643278684121062 -7247,2005/11/4,0.149153669,13.94097752,3.202580167,0.76726181,6.414288843,93.14184664,0.005821639342060531 -7248,2005/11/5,2.178051305,14.12347274,2.31946522,0.742857066,6.639085843,237.8246659,0.0029108196710302655 -7249,2005/11/6,0.410778158,13.8402623,2.615363218,0.677797482,6.479041052,110.9497061,0.0014554098355151327 -7250,2005/11/7,13.7891331,14.02075541,3.135039906,0.747643002,6.469463265,1389.810026,0.16602442219635896 -7251,2005/11/8,3.124909019,11.96014364,3.660061241,0.618418475,5.487410181,715.6767509,0.08114580145409736 -7252,2005/11/9,1.325872515,11.93722349,3.524377007,0.88036392,5.510152895,396.5166672,0.04057290072704868 -7253,2005/11/10,1.189898899,12.19077757,0.554140654,0.949418871,6.138646004,297.2695339,0.02028645036352434 -7254,2005/11/11,0.252737598,12.66155998,-0.371861602,0.677092953,6.438533914,157.0207284,0.01014322518176217 -7255,2005/11/12,5.59e-05,13.63480837,0.500614449,0.898213556,6.715651378,85.4549818,0.005071612590881085 -7256,2005/11/13,0.0,13.45322822,0.535866594,0.826308957,6.643484075,53.87297956,0.0025358062954405425 -7257,2005/11/14,0.0,13.20059639,-0.068670316,0.685103343,6.620018658,34.93815235,0.0012679031477202713 -7258,2005/11/15,0.036496414,13.63822422,0.448054279,0.800096984,6.732561305,24.73800421,0.0006339515738601356 -7259,2005/11/16,0.04250628,13.9692108,2.415353716,1.125950355,6.595535784,17.32925365,0.0003169757869300678 -7260,2005/11/17,0.369894721,13.73514655,3.441427309,0.905156295,6.32309978,26.2976581,0.0001584878934650339 -7261,2005/11/18,0.43290224,12.72046663,0.372035571,0.900473247,6.392313922,27.60493085,7.924394673251695e-05 -7262,2005/11/19,0.454706579,9.514998328,-0.029009323,0.71251467,5.205727034,26.75109093,3.962197336625848e-05 -7263,2005/11/20,0.007149743,8.728582554,0.488776192,0.774908278,4.810168103,9.887470108,1.981098668312924e-05 -7264,2005/11/21,0.178022907,9.333944808,0.18535675,0.83864992,5.104729464,10.99933595,9.90549334156462e-06 -7265,2005/11/22,0.033489386,9.371572002,0.089798248,0.82557374,5.137214815,5.751115328,4.95274667078231e-06 -7266,2005/11/23,0.014241905,9.955462813,-0.388890373,0.794382566,5.438107548,3.431672921,2.476373335391155e-06 -7267,2005/11/24,0.015346395,10.75891215,-2.354790193,0.731758212,5.967641471,2.373858474,1.2381866676955774e-06 -7268,2005/11/25,0.0,9.915043247,-3.604731314,0.704125992,5.773199327,1.37064419,6.190933338477887e-07 -7269,2005/11/26,0.016098965,10.12091632,-3.404199019,0.817380955,5.832491122,1.181337484,3.0954666692389435e-07 -7270,2005/11/27,0.029054562,11.07978284,-1.676530651,0.903861129,6.026084563,1.144431906,1.5477333346194717e-07 -7271,2005/11/28,0.005954145,11.72438625,-2.047527306,0.717973188,6.301669545,0.615002763,7.738666673097359e-08 -7272,2005/11/29,0.07122386,11.8127224,-1.569600345,1.008112242,6.29175634,1.333709746,3.8693333365486794e-08 -7273,2005/11/30,0.483196078,11.94157871,-0.397368091,1.223638322,6.21506105,6.955477774,1.9346666682743397e-08 -7274,2005/12/1,0.0,12.3298384,-0.241819855,1.0273901,6.34783722,1.806860962,9.673333341371698e-09 -7275,2005/12/2,0.0,12.83385478,-0.446522674,1.070750986,6.567354108,0.840808889,4.836666670685849e-09 -7276,2005/12/3,0.0,12.08289303,-0.813749023,0.825002531,6.322931534,0.520919153,2.4183333353429246e-09 -7277,2005/12/4,0.013136259,12.85983171,-0.225519219,1.246254491,6.55650659,0.455763125,1.2091666676714623e-09 -7278,2005/12/5,2.662473339,12.47471983,-0.441020406,1.021557258,6.434640711,34.12347555,6.045833338357312e-10 -7279,2005/12/6,2.145368892,9.40992329,-1.487938227,0.686667504,5.401971421,49.80107029,3.022916669178656e-10 -7280,2005/12/7,1.399940609,7.750219707,-1.972273131,0.701142156,4.8523179,46.59823279,1.511458334589328e-10 -7281,2005/12/8,1.081583959,7.04767719,-1.568962872,0.845566762,4.536195594,42.46179119,7.55729167294664e-11 -7282,2005/12/9,0.336541238,8.603424363,-0.815817074,0.970160833,5.010602454,23.13416,3.77864583647332e-11 -7283,2005/12/10,0.005444442,10.80102063,-1.394902918,0.902723262,5.915634596,10.01617554,1.88932291823666e-11 -7284,2005/12/11,0.004847259,11.4196656,-2.110843454,0.834988732,6.218893678,6.001965557,9.4466145911833e-12 -7285,2005/12/12,0.001920622,10.16109851,-2.47644352,0.769516894,5.794118674,3.850972524,4.72330729559165e-12 -7286,2005/12/13,0.0,9.623683787,-2.312182071,0.810374392,5.583625063,2.482745388,2.361653647795825e-12 -7287,2005/12/14,0.002974785,8.735340619,-2.405058557,0.704541243,5.272090785,1.660705072,1.1808268238979124e-12 -7288,2005/12/15,0.0,9.111447997,-3.387789779,0.783846742,5.504654495,1.061528092,5.904134119489562e-13 -7289,2005/12/16,0.0,9.952119403,-2.976033339,0.669501445,5.769045606,0.688594488,2.952067059744781e-13 -7290,2005/12/17,0.029123748,9.361498956,-2.357248363,0.73220233,5.497175469,0.790646722,1.4760335298723905e-13 -7291,2005/12/18,0.006811606,9.442481292,-2.488379749,0.822402782,5.541088117,0.446971047,7.380167649361953e-14 -7292,2005/12/19,0.015225587,9.340081476,-2.984653467,0.817348117,5.553437832,0.391584127,3.690083824680976e-14 -7293,2005/12/20,0.043963901,9.842134847,-3.551847132,0.610642909,5.781172553,0.580072947,1.845041912340488e-14 -7294,2005/12/21,0.082275092,8.392733633,-2.983001204,0.554998612,5.216541773,0.885873896,9.22520956170244e-15 -7295,2005/12/22,0.088605105,7.60882154,-1.851131377,0.691968472,4.798003686,0.967311146,4.61260478085122e-15 -7296,2005/12/23,0.572269685,7.558554927,-0.548433495,0.642223567,4.576691473,5.051130134,2.30630239042561e-15 -7297,2005/12/24,0.928076006,8.036242473,-0.395144267,0.592378253,4.736963612,10.76591593,1.153151195212805e-15 -7298,2005/12/25,2.073661743,7.138851051,-1.089080414,0.589192254,4.507668457,33.04373771,5.765755976064025e-16 -7299,2005/12/26,2.607818787,6.438619772,-2.137601744,0.684123802,4.409218475,64.68181056,2.8828779880320127e-16 -7300,2005/12/27,0.051796159,8.656003931,-5.511085682,0.810530163,5.503206001,18.77898948,1.4414389940160064e-16 -7301,2005/12/28,0.092593621,8.780996155,-4.919818779,0.565620095,5.512269056,10.78107943,7.207194970080032e-17 -7302,2005/12/29,0.040064385,9.571794751,-4.661691347,0.942827969,5.76803696,6.689292055,3.603597485040016e-17 -7303,2005/12/30,0.003446714,9.832421515,-4.904694667,0.751765118,5.87198331,3.95987092,1.801798742520008e-17 -7304,2005/12/31,0.000127839,11.30236038,-4.516780079,0.846134478,6.362804088,2.503180802,9.00899371260004e-18 -7305,2006/1/1,0.000828877,12.64798132,-3.481745493,1.015343101,6.785957129,1.633616192,4.50449685630002e-18 -7306,2006/1/2,0.0,12.91942241,-2.698138988,1.085615865,6.834776585,1.057836881,2.25224842815001e-18 -7307,2006/1/3,0.000165222,12.77018872,-2.478755139,1.499563923,6.76395622,0.68982309,1.126124214075005e-18 -7308,2006/1/4,0.001056402,12.88175997,-2.3479204,1.434617499,6.795297537,0.458820741,5.630621070375025e-19 -7309,2006/1/5,0.422292905,13.90749791,-2.190334835,1.304053898,7.16531804,4.35064245,2.8153105351875124e-19 -7310,2006/1/6,0.002782607,13.87154615,-1.524449471,1.384803588,7.100423393,1.191865163,1.4076552675937562e-19 -7311,2006/1/7,0.056488156,13.56277014,-0.277110337,1.362900366,6.863506663,1.014906537,7.038276337968781e-20 -7312,2006/1/8,0.009502615,13.47177654,-0.442415442,1.12638981,6.845445765,0.524536135,3.5191381689843905e-20 -7313,2006/1/9,0.024260925,12.10923377,-1.725535771,0.968609993,6.454092803,0.445033531,1.7595690844921953e-20 -7314,2006/1/10,0.003400495,12.13227602,-1.786257424,1.024720136,6.467799651,0.239815873,8.797845422460976e-21 -7315,2006/1/11,0.318070301,12.27933441,-1.495546904,1.408928722,6.495073841,1.950599837,4.398922711230488e-21 -7316,2006/1/12,0.031297944,12.50823014,-2.071260355,1.211034837,6.631462385,0.700422475,2.199461355615244e-21 -7317,2006/1/13,0.100834528,12.16127737,-2.547090206,1.506927322,6.5409568,0.815742651,1.099730677807622e-21 -7318,2006/1/14,0.048713646,10.46628899,-3.204314887,1.287449292,5.977212724,0.536337983,5.49865338903811e-22 -7319,2006/1/15,0.039356582,10.81966425,-3.666700073,1.322179556,6.136524729,0.401527815,2.749326694519055e-22 -7320,2006/1/16,0.03340396,11.90662141,-2.375347152,1.548271689,6.431133955,0.313139072,1.3746633472595275e-22 -7321,2006/1/17,0.041065888,11.93810265,-1.674721867,1.567405982,6.379564069,0.293749772,6.873316736297638e-23 -7322,2006/1/18,0.108716615,12.20754217,-1.178631734,1.832350285,6.430796267,0.516940019,3.436658368148819e-23 -7323,2006/1/19,0.074866116,12.86074372,-1.817584771,1.796137583,6.734936642,0.430975988,1.7183291840744094e-23 -7324,2006/1/20,0.080457674,13.92933174,-1.999754534,1.681058962,7.148060822,0.424286179,8.591645920372047e-24 -7325,2006/1/21,0.245438136,13.4208685,-2.047026909,1.355047102,6.96013663,1.017834288,4.2958229601860236e-24 -7326,2006/1/22,0.035631643,13.01873482,-1.901799827,1.228815674,6.797128342,0.417490406,2.1479114800930118e-24 -7327,2006/1/23,0.013868845,13.08861898,-1.815243452,1.267814496,6.814643161,0.21898727,1.0739557400465059e-24 -7328,2006/1/24,0.022326089,12.51310674,-0.206202958,1.3055279,6.432822818,0.179180826,5.3697787002325295e-25 -7329,2006/1/25,0.147651748,10.99821092,-2.117084067,0.89039761,6.063683243,0.512978216,2.6848893501162647e-25 -7330,2006/1/26,1.177046205,10.2094362,-3.070143787,0.948100083,5.861205378,5.889864107,1.3424446750581324e-25 -7331,2006/1/27,0.215625143,10.64482928,-3.167784725,1.156581919,6.023415621,2.884313852,6.712223375290662e-26 -7332,2006/1/28,0.012089124,12.47074854,-3.792709703,1.015897923,6.716472038,1.074513631,3.356111687645331e-26 -7333,2006/1/29,0.049127577,13.59406194,-3.094774909,1.229608692,7.081689733,0.85110745,1.6780558438226655e-26 -7334,2006/1/30,0.060911971,14.352267,-2.424996349,1.000498656,7.318334743,0.743309258,8.390279219113327e-27 -7335,2006/1/31,0.064495618,14.96646558,-1.629145132,0.780780733,7.492396933,0.644594874,4.195139609556664e-27 -7336,2006/2/1,0.006449667,14.94509325,-1.112943311,1.206157391,7.442362601,0.304556968,2.097569804778332e-27 -7337,2006/2/2,0.04247735,15.45907275,-0.561416013,1.170977455,7.591566185,0.330688166,1.048784902389166e-27 -7338,2006/2/3,0.030074537,15.9203787,1.169145059,0.92932925,7.598431859,0.249132023,5.24392451194583e-28 -7339,2006/2/4,0.399256086,13.28390546,0.190864384,1.33410878,6.665357461,1.591781045,2.621962255972915e-28 -7340,2006/2/5,0.064484349,12.15504521,-0.976269275,1.066388374,6.360678082,0.681739817,1.3109811279864574e-28 -7341,2006/2/6,0.539803322,13.15676524,-1.809716381,0.742647035,6.812717651,2.756509533,6.554905639932287e-29 -7342,2006/2/7,0.038414099,13.61131331,-1.295292967,0.971150134,6.936979448,0.942667122,3.2774528199661435e-29 -7343,2006/2/8,4.195904377,13.1280396,-0.141072674,0.986219259,6.634151133,50.10637656,1.6387264099830717e-29 -7344,2006/2/9,0.149765883,12.37356811,0.41727752,0.809004055,6.269700725,14.79484816,8.193632049915359e-30 -7345,2006/2/10,5.045004392,12.04810244,-1.563220415,0.92816826,6.368412246,131.0478253,4.096816024957679e-30 -7346,2006/2/11,1.596400421,10.90229774,-2.497039052,0.929683015,6.031181233,86.42577831,2.0484080124788397e-30 -7347,2006/2/12,0.295307987,12.96494877,-1.914434475,1.117363823,6.734962891,37.85195935,1.0242040062394198e-30 -7348,2006/2/13,0.089299006,13.53670676,0.23280167,1.502977654,6.736920474,20.11324691,5.121020031197099e-31 -7349,2006/2/14,0.067646438,12.60495569,-0.005019735,1.744756231,6.400884843,13.0476302,2.5605100155985496e-31 -7350,2006/2/15,0.371913058,13.31513031,0.153175529,1.594673532,6.654535963,16.48902726,1.2802550077992748e-31 -7351,2006/2/16,0.764275603,13.25338965,0.012987554,1.333408818,6.644068276,24.64596518,6.401275038996374e-32 -7352,2006/2/17,0.578181083,12.78186731,-1.246949567,1.510820063,6.593868646,21.44378009,3.200637519498187e-32 -7353,2006/2/18,0.729901052,12.93556338,-1.006081542,1.199444593,6.625484451,23.91263136,1.6003187597490935e-32 -7354,2006/2/19,0.60726228,14.1738939,-0.173710428,1.103363211,7.01096832,21.48009526,8.001593798745467e-33 -7355,2006/2/20,0.28151019,14.57010067,0.216772146,1.567237624,7.120380814,13.45691602,4.000796899372734e-33 -7356,2006/2/21,0.076157539,15.21171754,1.232840917,1.244013031,7.254750983,7.042617215,2.000398449686367e-33 -7357,2006/2/22,0.061764299,15.05464801,1.11987056,1.081931178,7.202376254,4.668147597,1.0001992248431834e-33 -7358,2006/2/23,0.123007491,14.77711593,1.782047227,1.20705524,7.003667001,4.341759582,5.000996124215917e-34 -7359,2006/2/24,0.552429363,15.1873982,2.077789762,1.314335743,7.126287697,9.860531086,2.5004980621079586e-34 -7360,2006/2/25,0.005426499,15.7311214,1.13886714,1.42127428,7.458668889,3.17475937,1.2502490310539793e-34 -7361,2006/2/26,0.0115001,16.36825074,0.922731135,1.811669308,7.731431345,1.763521578,6.251245155269896e-35 -7362,2006/2/27,0.006103434,16.18110912,1.96718422,1.397779509,7.533278286,1.119065373,3.125622577634948e-35 -7363,2006/2/28,0.003970953,16.16222632,2.698345869,1.125496283,7.425274105,0.72895426,1.562811288817474e-35 -7364,2006/3/1,0.259685006,14.31587833,0.016013868,1.306270867,7.012447069,2.572428121,7.81405644408737e-36 -7365,2006/3/2,0.204275941,11.42767784,-0.124937972,1.09515718,5.917552315,2.42342636,3.907028222043685e-36 -7366,2006/3/3,1.16365563,12.12838955,0.074290543,1.191128144,6.157426122,11.85146424,1.9535141110218426e-36 -7367,2006/3/4,0.11726237,13.69403067,0.221440876,1.420637114,6.739376546,4.324149996,9.767570555109213e-37 -7368,2006/3/5,0.354496059,13.88352918,0.458341886,1.158045923,6.781875374,5.32325574,4.883785277554607e-37 -7369,2006/3/6,0.210239246,14.53373196,0.79460926,1.27562569,6.992514408,3.957832308,2.4418926387773033e-37 -7370,2006/3/7,0.127251979,14.74670064,-1.235147535,1.232751275,7.268738713,2.708607231,1.2209463193886517e-37 -7371,2006/3/8,0.109304572,15.8601502,-1.554739628,1.054811401,7.706116051,2.085424521,6.104731596943258e-38 -7372,2006/3/9,0.066482169,16.93361363,-0.648040023,1.410292503,8.045774696,1.415736584,3.052365798471629e-38 -7373,2006/3/10,0.245621076,17.92757636,1.429801012,1.766133789,8.250726093,2.405250364,1.5261828992358146e-38 -7374,2006/3/11,1.724811887,18.33305108,3.615817145,1.51989857,8.155747742,17.20577486,7.630914496179073e-39 -7375,2006/3/12,1.666837544,16.11264918,1.938900091,1.324043663,7.457570503,27.27525239,3.8154572480895364e-39 -7376,2006/3/13,0.451766509,15.37968254,0.669635694,1.141995493,7.309735501,14.44729891,1.9077286240447682e-39 -7377,2006/3/14,0.085873209,13.14741606,1.398611215,1.411876404,6.338978633,6.551246613,9.538643120223841e-40 -7378,2006/3/15,0.047444798,15.86542921,2.462170502,1.516494945,7.277072546,3.925199768,4.7693215601119205e-40 -7379,2006/3/16,0.187979454,16.41126192,2.038908578,1.760854207,7.548395375,4.404237491,2.3846607800559603e-40 -7380,2006/3/17,0.010290603,16.51223213,2.453180829,1.572657525,7.53253375,2.034779971,1.1923303900279801e-40 -7381,2006/3/18,0.06394326,16.21976957,1.367391126,1.125427766,7.542256729,1.756472703,5.961651950139901e-41 -7382,2006/3/19,0.098278451,16.11411435,0.431942928,1.348872065,7.594005178,1.703493101,2.9808259750699503e-41 -7383,2006/3/20,0.31547806,15.74205924,0.666469409,1.571765375,7.421759382,3.245836817,1.4904129875349752e-41 -7384,2006/3/21,0.23606706,16.41293321,1.955535119,1.547840673,7.537515887,2.888038074,7.452064937674876e-42 -7385,2006/3/22,0.054006588,15.92486521,1.295378141,1.594492513,7.416604735,1.383498718,3.726032468837438e-42 -7386,2006/3/23,0.030764198,15.57949569,0.921152681,1.1604816,7.318500688,0.834498989,1.863016234418719e-42 -7387,2006/3/24,0.21747556,16.31705538,0.88566848,1.529667141,7.605732603,1.75910907,9.315081172093595e-43 -7388,2006/3/25,0.006251648,16.95771305,1.629848364,1.488371178,7.774416242,0.623974507,4.657540586046797e-43 -7389,2006/3/26,0.060517562,17.91891823,3.179993408,1.646118913,7.972225483,0.626424358,2.3287702930233987e-43 -7390,2006/3/27,0.047777202,17.44596058,2.640141578,1.224545691,7.842944652,0.491271949,1.1643851465116993e-43 -7391,2006/3/28,0.146639059,18.24555876,3.32865024,1.326646382,8.077919096,0.835590623,5.821925732558497e-44 -7392,2006/3/29,8.351450578,16.94491174,4.364553897,1.506381216,7.379627796,156.4554105,2.077520240759731e-05 -7393,2006/3/30,3.052977028,14.60886054,2.165917527,1.238853411,6.750416005,144.5324796,1.038737914220313e-05 -7394,2006/3/31,0.165034305,13.60284478,1.401590509,1.478196512,6.454770709,48.22370756,5.193689571101565e-06 -7395,2006/4/1,0.244385438,16.61166779,2.33285334,1.234274336,7.521948831,30.8392258,2.5968447855507823e-06 -7396,2006/4/2,0.271859105,17.34016078,3.400246711,1.506563216,7.672314574,23.94173709,1.2984223927753912e-06 -7397,2006/4/3,0.59703806,16.44510979,3.745926918,1.560504012,7.247229313,27.78604846,6.492111963876956e-07 -7398,2006/4/4,1.159076094,15.97453792,4.112674214,1.274307115,6.987070519,41.58197306,3.246055981938478e-07 -7399,2006/4/5,0.683225823,15.52970744,3.093207248,1.158351956,6.962078277,31.56765686,1.623027990969239e-07 -7400,2006/4/6,0.291445251,15.76018408,2.678380467,0.7476679,7.11194973,18.75401195,8.115139954846195e-08 -7401,2006/4/7,1.784354323,16.33695964,3.469746633,1.128120438,7.227700817,53.11065299,4.0575699774230974e-08 -7402,2006/4/8,2.063719986,16.2028026,4.090135884,1.587690729,7.069967787,74.57050447,2.0287849887115487e-08 -7403,2006/4/9,0.392091709,17.16430502,3.746620994,1.66345519,7.518953561,33.41452997,1.0143924943557743e-08 -7404,2006/4/10,0.714288143,18.343813,6.026760824,1.990234467,7.640539537,33.20525473,5.071962471778872e-09 -7405,2006/4/11,1.021576008,20.0973502,7.078762847,2.040255414,8.217803227,39.78005846,2.535981235889436e-09 -7406,2006/4/12,0.540966057,20.98071311,7.674030613,2.046067842,8.498988182,27.37614973,1.267990617944718e-09 -7407,2006/4/13,1.697696006,21.19416992,8.511398116,1.935202858,8.428165349,53.64997504,6.33995308972359e-10 -7408,2006/4/14,3.759703065,20.11584455,7.80007103,1.485363655,8.073069875,132.9966552,3.169976544861795e-10 -7409,2006/4/15,8.388192265,17.77235711,6.955310347,1.187024469,7.182022449,440.6002178,0.0005272358878631833 -7410,2006/4/16,6.826873503,16.53359526,6.307511608,1.264608626,6.760839554,585.8447652,0.0003719457268259052 -7411,2006/4/17,1.099108655,17.55581059,6.480691854,1.278151336,7.175740102,248.3012228,0.00018588381915958738 -7412,2006/4/18,12.82501421,17.38427524,7.249204131,0.794549483,6.929242086,1280.747392,0.009659693337424252 -7413,2006/4/19,4.420687717,16.52132647,7.987760776,1.192425785,6.341545742,836.6019363,0.004822084942940058 -7414,2006/4/20,1.474452853,17.46565132,7.141587188,1.503312266,6.982653607,441.4828347,0.002411042471470029 -7415,2006/4/21,1.308266647,17.52965551,5.905223064,1.586658163,7.261045403,320.5715078,0.0012055212357350146 -7416,2006/4/22,0.193034354,18.0586812,4.899284427,1.470363005,7.658932396,162.2453957,0.0006027606178675073 -7417,2006/4/23,0.110665392,19.0201479,5.384738209,1.180907229,7.984472326,99.63322438,0.00030138030893375365 -7418,2006/4/24,1.060955733,18.96823564,6.790074648,1.449393623,7.711744727,129.3265003,0.00015069015446687683 -7419,2006/4/25,1.986671762,18.29084868,6.536713683,1.302161891,7.457330888,177.3039534,7.534507723343841e-05 -7420,2006/4/26,1.024351475,18.23066943,6.421889314,1.601680141,7.448990089,121.31613,3.7672538616719206e-05 -7421,2006/4/27,1.957328193,17.12878114,6.692721252,1.457370509,6.90239042,156.7628668,1.8836269308359603e-05 -7422,2006/4/28,4.525963854,14.34079116,5.125637031,0.291778842,6.007530142,327.5114806,9.418134654179802e-06 -7423,2006/4/29,1.864939568,13.14100296,4.750570714,0.292567835,5.565541222,216.4099434,4.709067327089901e-06 -7424,2006/4/30,0.787145078,13.67869908,5.46810233,0.410505296,5.631837618,126.2730946,2.3545336635449504e-06 -7425,2006/5/1,0.210613024,19.08999285,6.488337371,0.812234434,7.79276687,66.76854491,1.1772668317724752e-06 -7426,2006/5/2,0.872230088,20.90059879,8.568795355,1.181533682,8.194995849,80.46138181,5.886334158862376e-07 -7427,2006/5/3,0.742683742,20.10664222,9.430500466,1.451539029,7.629133004,67.7181261,2.943167079431188e-07 -7428,2006/5/4,0.775964085,20.53416167,9.251457713,1.592618788,7.868846588,60.75889425,1.471583539715594e-07 -7429,2006/5/5,1.623445576,19.98075064,9.385135031,1.340920287,7.572790941,90.59132836,7.35791769857797e-08 -7430,2006/5/6,2.16253385,20.12951931,8.95934272,1.409929539,7.738462954,120.7847478,3.678958849288985e-08 -7431,2006/5/7,2.672523869,20.46000419,9.036732868,1.429740086,7.871178736,157.1294874,1.8394794246444925e-08 -7432,2006/5/8,3.609074072,19.92499238,8.974513619,1.384326649,7.63222032,226.6682672,9.197397123222462e-09 -7433,2006/5/9,2.25860058,20.74520116,9.900264192,1.297260454,7.797274991,186.8488481,4.598698561611231e-09 -7434,2006/5/10,2.909352535,20.56910253,10.80062077,1.520425828,7.477614501,221.3176727,2.2993492808056156e-09 -7435,2006/5/11,3.947703381,18.62310786,11.14643459,1.139239994,6.382652725,306.1722243,1.1496746404028078e-09 -7436,2006/5/12,3.682156331,18.3626223,9.870375593,0.760283957,6.639439008,338.0245776,5.748373202014039e-10 -7437,2006/5/13,4.983888418,16.13980179,6.319618595,0.177934025,6.49102674,476.1614223,2.8741866010070195e-10 -7438,2006/5/14,2.158251722,10.48115897,3.928700468,0.285242395,4.565071535,313.0347865,1.4370933005035098e-10 -7439,2006/5/15,0.058255752,10.73408463,2.672538886,0.324576494,4.959815891,119.4787564,7.185466502517549e-11 -7440,2006/5/16,0.223345956,15.31714102,3.642102476,0.455989991,6.642229191,81.14323846,3.5927332512587744e-11 -7441,2006/5/17,1.107445728,19.03396512,5.290641011,0.63805813,7.91197984,114.4945521,1.7963666256293872e-11 -7442,2006/5/18,0.338051638,20.16157798,6.817911619,1.06242327,8.138127087,64.15931528,8.981833128146936e-12 -7443,2006/5/19,2.863384361,21.00300519,8.484786776,1.318023433,8.195010721,182.7683873,4.490916564073468e-12 -7444,2006/5/20,1.373208106,19.40268829,8.255072041,1.301531499,7.512950642,127.1774149,2.245458282036734e-12 -7445,2006/5/21,0.073067321,19.17976675,8.011494416,0.666733163,7.461533545,48.87946569,1.122729141018367e-12 -7446,2006/5/22,0.256531609,18.45338766,9.233933185,0.690565924,6.830281624,36.79619383,5.613645705091835e-13 -7447,2006/5/23,3.645911002,17.93503176,10.42927332,0.736176626,6.226456048,178.5964707,2.8068228525459175e-13 -7448,2006/5/24,10.62853683,18.23858444,9.995353559,0.89152086,6.509479869,745.8555851,0.00513032315950829 -7449,2006/5/25,9.546075955,19.18966697,10.5290278,1.098510914,6.824985117,1101.614857,0.017131535595281314 -7450,2006/5/26,13.9809449,20.58182541,11.71024426,0.995031628,7.177207644,2127.754571,0.0632719567091616 -7451,2006/5/27,7.574798117,21.22168768,12.01021419,1.131430281,7.412085313,1755.956838,0.03381428324202094 -7452,2006/5/28,11.51405744,19.57630543,11.76895678,0.826923991,6.634547795,2537.181337,0.08958917960623425 -7453,2006/5/29,23.38105728,17.30578385,11.80036904,0.747433477,5.383161481,6211.012231,0.39762682011295913 -7454,2006/5/30,8.157577931,17.40333601,10.74950752,0.871607691,5.828983408,3976.776257,0.2813445665322803 -7455,2006/5/31,6.336553919,19.00294386,11.74151089,1.323652244,6.334866735,3070.171531,0.13915014678479248 -7456,2006/6/1,3.173550678,21.4049019,12.94030172,1.270787142,7.208596093,1931.154323,0.06957378422623353 -7457,2006/6/2,4.589936794,22.52085643,13.30394576,1.38280668,7.678966088,1827.538547,0.034786892113116766 -7458,2006/6/3,5.919792551,22.4549473,13.89534746,1.673666589,7.452388466,1908.581841,0.017393446056558383 -7459,2006/6/4,2.719806613,22.71126812,13.99656102,1.925930857,7.554866041,1199.416334,0.008696723028279191 -7460,2006/6/5,1.699405368,22.34679815,14.26433041,1.892707042,7.263965603,783.9170387,0.004348361514139596 -7461,2006/6/6,0.759886421,23.12702479,14.17305883,1.941338408,7.716489686,474.4892956,0.002174180757069798 -7462,2006/6/7,3.85398297,22.96100794,14.78407242,1.651102231,7.417208421,729.6904929,0.001087090378534899 -7463,2006/6/8,5.328547972,23.4312796,14.96713551,1.460554582,7.611708472,931.6693037,0.0005435451892674495 -7464,2006/6/9,3.004536968,22.34682611,13.66704236,1.229448737,7.457918583,672.3385918,0.00027177259463372473 -7465,2006/6/10,9.387387615,21.35405857,14.05496993,1.363857593,6.779780957,1454.591919,0.06482770271495351 -7466,2006/6/11,9.116673189,21.39087962,13.51887748,1.44341561,6.989807478,1783.806766,0.08965081550625185 -7467,2006/6/12,5.023449734,21.90678891,13.44935966,1.3953944,7.289406305,1320.711668,0.04403349704883397 -7468,2006/6/13,1.091503333,21.22281257,12.86297011,1.139043245,7.116060862,621.6953689,0.022016748524416985 -7469,2006/6/14,0.944909769,22.51985059,12.93058773,1.127699221,7.769145445,413.0345464,0.011008374262208492 -7470,2006/6/15,3.513830785,21.00889985,12.67767742,1.296379129,7.060554196,607.0537792,0.005504187131104246 -7471,2006/6/16,2.518252512,21.0958521,12.41221653,1.298633662,7.188533705,498.3845674,0.002752093565552123 -7472,2006/6/17,3.690558044,22.08636407,12.90480063,0.998313459,7.549164654,578.9382043,0.0013760467827760615 -7473,2006/6/18,9.063588276,22.36770738,13.10745441,1.0963008,7.632257618,1244.594786,0.03151743973072403 -7474,2006/6/19,3.980012293,22.36838945,13.48993873,0.943122367,7.512469964,846.5456477,0.015426702624442932 -7475,2006/6/20,4.260478596,22.61693234,13.14634402,1.096972227,7.747582299,805.6084257,0.007713351312221466 -7476,2006/6/21,1.653505263,22.34641271,13.51086064,0.90003527,7.492244559,470.8882258,0.003856675656110733 -7477,2006/6/22,9.535847623,20.91831752,13.27173179,0.788482119,6.806530024,1327.349054,0.05553727484684701 -7478,2006/6/23,4.24269997,20.33349008,12.63632219,0.675570647,6.708892725,935.0204788,0.02724214718840326 -7479,2006/6/24,3.56138349,21.28220763,13.0221994,0.462281343,7.084435555,775.385004,0.01362107359420163 -7480,2006/6/25,10.02349769,21.40114529,13.52518791,0.655182816,6.978717571,1653.919939,0.06799294147038143 -7481,2006/6/26,5.569191651,21.03177432,13.6035663,0.701136469,6.748957335,1312.572447,0.03338176515789036 -7482,2006/6/27,4.226898353,21.85716693,14.21914777,0.954211361,6.983537503,1063.285715,0.01669088257894518 -7483,2006/6/28,3.578907537,22.69597095,14.41078543,1.341009266,7.377512317,892.2125859,0.00834544128947259 -7484,2006/6/29,5.793468813,23.00729808,14.83377402,1.271343247,7.401274636,1136.799645,0.004172720644736295 -7485,2006/6/30,12.46523192,23.56332293,14.96300673,1.4014612,7.662588355,2324.334239,0.09212715805816683 -7486,2006/7/1,8.437564141,22.4903367,14.90245372,1.115146662,7.087175495,2136.279058,0.07678138499241255 -7487,2006/7/2,3.85353896,22.74393297,14.90961826,1.059197418,7.226922373,1346.809908,0.0380218539502634 -7488,2006/7/3,3.676139172,23.39806166,14.82352687,1.039298613,7.619181764,1107.577744,0.0190109269751317 -7489,2006/7/4,12.67592776,24.09821549,15.31594841,1.114618824,7.835485247,2587.667053,0.11723452232861917 -7490,2006/7/5,12.42834244,22.47887578,15.60604126,1.070576775,6.808785627,3195.526743,0.2084913405516294 -7491,2006/7/6,12.25820622,21.2808075,14.93818124,1.078883324,6.375363489,3692.399995,0.2916712930881426 -7492,2006/7/7,6.945402577,21.6697634,14.481032,1.241608343,6.781036945,2759.764561,0.1489839737712137 -7493,2006/7/8,3.406610567,21.46118883,14.89954824,1.102092005,6.497726236,1716.691239,0.07437508879271021 -7494,2006/7/9,0.536046826,22.81829086,15.04252472,1.109875439,7.221167451,825.5960728,0.037187544396355104 -7495,2006/7/10,7.790186008,24.09877133,15.24289436,1.137196602,7.8621957,1815.67747,0.018593772198177552 -7496,2006/7/11,6.870140794,23.17157672,15.69443728,1.047827197,7.178924162,1817.072637,0.009296886099088776 -7497,2006/7/12,16.27574428,23.3175143,15.8377572,1.321208648,7.208618295,3901.32448,0.3110654825652312 -7498,2006/7/13,9.553231426,22.29784061,15.8384391,1.434048747,6.608165306,3279.195785,0.274810517904568 -7499,2006/7/14,6.102167343,23.94001671,15.89386869,1.13528588,7.545798888,2444.026181,0.13477558388494848 -7500,2006/7/15,0.894830967,23.356038,15.56082681,1.207242093,7.33767675,1081.636873,0.06738779194247424 -7501,2006/7/16,1.249815699,24.52352994,15.10898472,1.269876377,8.142255641,759.8824259,0.03369389597123712 -7502,2006/7/17,20.44458692,23.6082486,14.68623614,1.041269712,7.786395081,4243.7644,0.5139826922904522 -7503,2006/7/18,18.70514334,21.37606013,14.73441857,0.960642398,6.52035034,5801.720102,0.8681330447280707 -7504,2006/7/19,1.69213677,22.27155991,14.69151591,1.051718526,7.049589013,2099.413083,0.4182467350142637 -7505,2006/7/20,0.509577078,24.38976283,15.0495619,1.045532912,8.093660554,1047.25534,0.20912336750713184 -7506,2006/7/21,5.149664934,24.54964625,15.60862962,0.997371769,7.995971428,1516.327044,0.10456168375356592 -7507,2006/7/22,13.41780799,21.62169404,14.75509858,0.953008822,6.658626824,3138.560312,0.41118570426859563 -7508,2006/7/23,1.004699646,22.42808097,14.11989893,0.57879416,7.343048289,1143.956972,0.19606413134068756 -7509,2006/7/24,5.121395218,22.2832299,13.53327623,0.292087229,7.460748704,1405.376981,0.09803206567034378 -7510,2006/7/25,6.091667108,21.48362163,13.01461042,0.216417134,7.205930018,1546.378678,0.04901603283517189 -7511,2006/7/26,3.533193695,23.05038868,13.09718448,0.956741157,7.997328129,1107.374217,0.024508016417585946 -7512,2006/7/27,1.075235883,23.1966217,13.60345666,1.368699432,7.924461695,585.617969,0.012254008208792973 -7513,2006/7/28,1.167666361,23.13933749,13.74380223,1.015952356,7.853169295,427.2508331,0.006127004104396486 -7514,2006/7/29,16.54809748,23.51485064,14.00622625,0.802465338,7.971681013,2527.164537,0.39092826572705275 -7515,2006/7/30,15.37208523,21.98384943,13.9175923,0.164949962,7.181322724,3524.27948,0.6211546006876133 -7516,2006/7/31,5.923820761,21.79042132,13.44227523,0.145329103,7.239212915,2190.949055,0.2990547870119853 -7517,2006/8/1,2.697159001,21.27882853,13.05645381,0.293539182,7.09529155,1280.615656,0.14952739350599265 -7518,2006/8/2,7.47063577,22.33100018,13.14279158,0.342198795,7.624593108,1873.881274,0.07476369675299632 -7519,2006/8/3,1.5694629,22.35950697,12.23074023,0.459791662,7.908006739,905.5179999,0.03738184837649816 -7520,2006/8/4,5.117828905,23.18500009,12.60862585,0.702703787,8.22173976,1177.479481,0.01869092418824908 -7521,2006/8/5,9.940223919,23.60420073,13.18007504,0.827058705,8.278039775,1975.083826,0.09329932646344218 -7522,2006/8/6,13.38636608,23.65684795,13.7379484,0.828518428,8.145510546,2994.111348,0.31708897062060165 -7523,2006/8/7,17.31739235,23.00421789,13.68690772,0.609082435,7.820954048,4634.248171,0.690062619216532 -7524,2006/8/8,5.004857118,22.86852294,13.90298685,0.499595381,7.682872184,2462.729593,0.32975737358297036 -7525,2006/8/9,2.750798503,23.89630269,13.93589996,0.645114601,8.219298487,1484.507429,0.16487868679148518 -7526,2006/8/10,0.557113996,24.90408961,14.27570025,0.921919725,8.649143727,764.4615751,0.08243934339574259 -7527,2006/8/11,4.10760983,24.3466585,13.92097089,0.678935727,8.464679446,1012.284984,0.041219671697871295 -7528,2006/8/12,7.59825964,23.64743386,13.76748742,0.325371326,8.147890631,1484.665093,0.020609835848935647 -7529,2006/8/13,6.957559431,22.92707654,14.25155257,0.234121469,7.613137179,1513.867057,0.010304917924467824 -7530,2006/8/14,4.027208038,22.62824438,14.09432634,0.184014241,7.506180588,1091.555065,0.005152458962233912 -7531,2006/8/15,1.329425063,24.61730955,13.95426368,0.519250985,8.608180017,590.1804824,0.002576229481116956 -7532,2006/8/16,3.568520501,24.69122661,13.98777456,0.620505735,8.640258723,698.1796022,0.001288114740558478 -7533,2006/8/17,4.305947922,24.18085527,14.66888803,0.672715499,8.167062817,753.8200777,0.000644057370279239 -7534,2006/8/18,13.5126086,22.718226,14.91990361,0.473421038,7.277417407,2039.512984,0.26629218206644656 -7535,2006/8/19,8.611504545,22.69094676,14.43199203,0.353468545,7.439580808,1918.388574,0.1841604356790597 -7536,2006/8/20,12.9791158,21.15326752,13.94477755,0.555363877,6.759618543,2922.140486,0.39815254224962127 -7537,2006/8/21,6.44113144,21.83002082,14.13406333,0.854360811,7.072944443,2117.329763,0.19147747382963481 -7538,2006/8/22,8.735463645,21.60892123,14.37152851,0.894323833,6.863465266,2452.08234,0.19761322170706053 -7539,2006/8/23,24.3072826,21.08933553,14.27602478,0.689397207,6.604965333,6924.949853,1.089027874231939 -7540,2006/8/24,17.47679759,20.05254173,13.35973209,0.324932988,6.368916801,7505.097819,1.3149424627319006 -7541,2006/8/25,3.260557827,20.52318935,13.18674675,0.457456813,6.699865262,3253.081774,0.6287866710935865 -7542,2006/8/26,7.284462974,21.68854567,13.68095712,0.53821415,7.170443813,3353.485667,0.32328630418702503 -7543,2006/8/27,8.484729186,20.35227647,13.75372464,0.711911254,6.396114181,3460.582585,0.3244011262394413 -7544,2006/8/28,10.63481329,20.87334879,13.62971208,0.972860307,6.742765201,4021.123698,0.4666799315509338 -7545,2006/8/29,2.627214297,22.60013254,13.94230337,1.080628032,7.589648491,1999.79601,0.22092664681080856 -7546,2006/8/30,11.07980626,23.21503994,13.97674626,0.896324386,7.914269066,3420.40245,0.3605550191381136 -7547,2006/8/31,6.692254751,23.04774581,14.16520939,0.872118222,7.76637619,2632.191877,0.17039832438794247 -7548,2006/9/1,1.194446775,23.24296961,13.60817545,1.025493426,8.052280858,1203.513269,0.08519916219397124 -7549,2006/9/2,0.099045018,23.7287262,13.6406485,1.258106755,8.302537558,617.7411648,0.04259958109698562 -7550,2006/9/3,0.047819803,24.12158099,14.09361146,1.267452891,8.3778811,383.3805573,0.02129979054849281 -7551,2006/9/4,5.041319846,25.17479146,13.98248569,1.094139782,8.968367461,841.9778737,0.010649895274246405 -7552,2006/9/5,9.566283515,22.92908988,13.93149285,0.522087719,7.798043542,1511.642083,0.12143080999930095 -7553,2006/9/6,5.288906462,22.55354968,14.12172969,0.92894065,7.533444595,1170.861144,0.05690354363447791 -7554,2006/9/7,1.571105786,21.56169965,13.26398223,0.903944938,7.285816573,603.9334579,0.028451771817238954 -7555,2006/9/8,19.25207273,21.62871982,13.01918585,0.404614111,7.406581269,3243.701904,0.7452454116054612 -7556,2006/9/9,12.27597396,18.33008584,12.3752449,0.102090961,5.817104075,3301.026184,0.8160183252289162 -7557,2006/9/10,2.135945948,17.25197333,10.80231895,0.369195454,5.815001778,1430.551389,0.39120192431223666 -7558,2006/9/11,3.673370514,18.66510882,11.26971221,0.428756079,6.414152352,1301.625399,0.19560096215611833 -7559,2006/9/12,4.037763233,16.87440372,11.54275125,0.387689246,5.322895908,1240.381585,0.09780048107805916 -7560,2006/9/13,0.477021756,18.04416781,10.35563405,0.540016101,6.393770866,558.2414657,0.04890024053902958 -7561,2006/9/14,0.023808706,19.4295297,9.915462939,0.616757876,7.221428056,296.1081024,0.02445012026951479 -7562,2006/9/15,1.425147136,19.95551615,10.41789948,0.671372455,7.348901928,357.1371848,0.012225060134757396 -7563,2006/9/16,7.14088955,20.25791622,11.27878889,1.020229367,7.260246902,1024.018514,0.006112530067378698 -7564,2006/9/17,4.95260133,20.50629603,11.11378588,0.756556725,7.438859881,930.3616774,0.003056265033689349 -7565,2006/9/18,15.82268128,19.55782265,10.24025086,0.369862577,7.212343782,2715.127122,0.49583141127833036 -7566,2006/9/19,16.13832113,18.1930936,9.245608151,0.400094428,6.816520594,3969.113536,0.8401870088736366 -7567,2006/9/20,7.582920742,19.13460422,9.695146356,0.852570477,7.159968473,2805.344145,0.431328786270759 -7568,2006/9/21,4.327332082,20.40633616,11.10567867,0.828489993,7.407225293,1862.262934,0.2145310500534288 -7569,2006/9/22,2.720744462,20.80328275,12.03892883,0.9276866,7.337208466,1248.013808,0.1072655250267144 -7570,2006/9/23,2.709140553,20.85996467,12.29268107,1.095577352,7.291339287,998.7366007,0.0536327625133572 -7571,2006/9/24,0.79223095,20.79255231,12.20356465,0.712967827,7.288149137,551.8437646,0.0268163812566786 -7572,2006/9/25,7.032637666,21.89638174,12.13235851,0.874281318,7.892252378,1264.850432,0.0134081906283393 -7573,2006/9/26,2.685168784,21.18650252,11.89017183,0.676457126,7.600027641,775.1522631,0.00670409531416965 -7574,2006/9/27,2.326185553,20.44171701,11.93241469,0.637620331,7.201013537,591.4583114,0.003352047657084825 -7575,2006/9/28,2.497197958,20.84296317,11.38048304,0.947471352,7.581215465,529.9268907,0.0016760238285424124 -7576,2006/9/29,0.017027835,21.53996016,11.48368379,0.560999928,7.912304249,213.7081757,0.0008380119142712062 -7577,2006/9/30,0.355163687,22.57983953,11.66602671,0.477687885,8.394487467,153.0433811,0.0004190059571356031 -7578,2006/10/1,0.954714841,21.1428484,11.57742864,0.172020107,7.691692759,156.588515,0.00020950297856780155 -7579,2006/10/2,0.451243741,21.30375325,11.6200699,0.449204703,7.76671916,100.9171665,0.00010475148928390078 -7580,2006/10/3,0.585733626,19.52542948,11.84255182,0.479000391,6.764888104,83.76501382,5.237574464195039e-05 -7581,2006/10/4,6.735646963,18.82215855,11.85084905,0.497067942,6.380889935,475.1830846,0.014047750615923284 -7582,2006/10/5,2.258233707,16.97771802,10.79305037,0.58138791,5.750301645,293.2266878,0.006746778300354543 -7583,2006/10/6,15.43868369,16.56122092,8.216451534,0.89453072,6.367708152,1658.563497,0.34679231905004493 -7584,2006/10/7,27.21646955,16.03080153,7.853475829,0.865419732,6.213890289,5389.998627,1.1383956319426312 -7585,2006/10/8,22.07215183,14.79310789,6.288725596,0.481692593,6.041949063,7607.521671,1.5944749442639357 -7586,2006/10/9,22.80180711,13.94938882,5.607859715,0.442703801,5.82630322,10763.37242,2.1102396684769977 -7587,2006/10/10,6.666343046,13.95289624,6.747426223,0.422394377,5.530511785,5535.421939,1.1081448989405316 -7588,2006/10/11,0.802924769,13.98563501,6.577948022,0.374608295,5.597250021,2393.00831,0.5490808028708026 -7589,2006/10/12,2.223573066,15.31614925,6.733154338,0.536304712,6.187952753,1867.090182,0.2745404014354013 -7590,2006/10/13,0.224152613,16.82648001,6.684302616,0.636539272,6.901130482,1006.521976,0.13727020071770066 -7591,2006/10/14,0.207172055,18.30070121,7.853894368,1.01294017,7.321547272,641.7587664,0.06863510035885033 -7592,2006/10/15,0.315884451,18.78407347,7.570974871,1.110880826,7.614380485,444.9123924,0.034317550179425164 -7593,2006/10/16,0.217770423,18.92156941,7.618356365,0.899420721,7.67218877,295.3521141,0.017158775089712582 -7594,2006/10/17,1.13624663,18.87819614,7.091064579,0.994189953,7.767251201,301.5073185,0.008579387544856291 -7595,2006/10/18,5.861154768,17.94597657,6.099228618,0.847827814,7.54788629,763.5653567,0.0042896937724281456 -7596,2006/10/19,8.110247419,17.96644065,6.10550527,0.681963487,7.560140365,1189.141128,0.0378180138055106 -7597,2006/10/20,1.044297626,17.15113502,6.616471389,0.718482519,7.092657655,472.0671042,0.01775234582306299 -7598,2006/10/21,1.155837784,17.70475311,6.570840492,0.681083076,7.358184924,325.9855998,0.008876172911531494 -7599,2006/10/22,0.320163132,17.49697152,6.952701517,1.025297456,7.185591716,182.0703331,0.004438086455765747 -7600,2006/10/23,0.163038784,17.16103342,5.521398077,0.941649536,7.331560147,112.6142471,0.0022190432278828736 -7601,2006/10/24,0.432564275,16.24016314,4.650695014,0.725104136,7.094847678,95.80098066,0.0011095216139414368 -7602,2006/10/25,0.047127313,15.20118084,3.698692188,0.645355913,6.822872361,52.18275108,0.0005547608069707184 -7603,2006/10/26,0.915502669,15.90371948,3.681321125,0.723912868,7.12552152,81.17263418,0.0002773804034853592 -7604,2006/10/27,0.133296366,16.31411176,4.609174342,0.763651701,7.146093519,38.61985809,0.0001386902017426796 -7605,2006/10/28,0.418761517,16.21052245,4.380350371,1.014215835,7.14588627,38.1961106,6.93451008713398e-05 -7606,2006/10/29,0.009075507,16.20117112,3.437799573,0.902685007,7.300614553,17.16505286,3.46725504356699e-05 -7607,2006/10/30,0.232778105,16.28614294,3.361060578,0.92885924,7.351782769,17.99607888,1.733627521783495e-05 -7608,2006/10/31,0.047940057,16.09586613,3.582400718,0.534234033,7.241718589,9.804485484,8.668137608917475e-06 -7609,2006/11/1,1.234397175,14.63012392,3.076729097,0.624295442,6.713779568,40.61832983,4.3340688044587374e-06 -7610,2006/11/2,0.0,15.65862357,2.476324504,0.655748874,7.232866384,11.87146781,2.1670344022293687e-06 -7611,2006/11/3,0.003657003,16.74296862,2.869238132,0.705589205,7.628102067,6.011271575,1.0835172011146844e-06 -7612,2006/11/4,0.329022918,16.56153689,4.276743172,0.971948043,7.341200097,10.676655,5.417586005573422e-07 -7613,2006/11/5,0.28383675,15.98031876,2.793622311,1.034535351,7.331461469,9.596691088,2.708793002786711e-07 -7614,2006/11/6,1.588797194,14.72203277,3.159923368,0.617421042,6.755813629,35.75743372,1.3543965013933554e-07 -7615,2006/11/7,0.581505029,12.32166328,1.9886212,0.733603812,5.963122497,22.22103132,6.771982506966777e-08 -7616,2006/11/8,0.103482021,14.23455514,2.891161351,0.985719945,6.603571825,9.79714528,3.3859912534833886e-08 -7617,2006/11/9,0.011271794,15.82848438,3.143926258,1.053276376,7.231169709,4.956121393,1.6929956267416943e-08 -7618,2006/11/10,0.466944789,17.01202216,3.97065468,0.283559823,7.605943127,10.76981308,8.464978133708472e-09 -7619,2006/11/11,0.36442579,16.84103268,5.589645732,0.515292567,7.248970666,9.567138732,4.232489066854236e-09 -7620,2006/11/12,0.349392061,15.31179043,3.334871676,1.057129833,6.994653233,8.715162775,2.116244533427118e-09 -7621,2006/11/13,0.208511683,15.79228408,2.683241999,1.095025024,7.298087071,6.137477988,1.058122266713559e-09 -7622,2006/11/14,0.453932418,15.61141327,3.15635486,1.189120698,7.155443626,8.611046663,5.290611333567795e-10 -7623,2006/11/15,0.863546255,15.38579345,2.257687213,1.274684481,7.197573887,15.05283037,2.6453056667838974e-10 -7624,2006/11/16,1.459356693,15.08797738,2.021622183,1.32001552,7.111793242,28.19194025,1.3226528333919487e-10 -7625,2006/11/17,3.367084471,14.71078616,1.132288416,1.49527025,7.078731859,83.96610614,6.613264166959743e-11 -7626,2006/11/18,0.035401138,14.92131382,0.8753673,1.242217472,7.19615804,23.10342877,3.306632083479872e-11 -7627,2006/11/19,0.399831696,14.59558565,1.642477064,1.439705077,6.972847509,19.79398,1.653316041739936e-11 -7628,2006/11/20,2.457780341,13.30813964,1.232077524,1.479582327,6.514849279,70.31431562,8.26658020869968e-12 -7629,2006/11/21,1.015182243,12.75302497,-0.986532559,1.533972431,6.567361537,48.40152727,4.13329010434984e-12 -7630,2006/11/22,0.021063855,13.13174981,0.036327692,1.371509827,6.603941689,17.24803717,2.06664505217492e-12 -7631,2006/11/23,0.072267902,13.44324538,0.818040446,1.556086062,6.632262084,10.99985704,1.03332252608746e-12 -7632,2006/11/24,0.067179081,13.13411501,-0.164453773,1.50518488,6.633064634,7.713994695,5.1666126304373e-13 -7633,2006/11/25,0.0645011,12.48266396,-1.695624621,1.548525811,6.543641445,5.555784911,2.58330631521865e-13 -7634,2006/11/26,0.075380662,11.23242567,-2.741388542,1.229022858,6.177025933,4.310730859,1.291653157609325e-13 -7635,2006/11/27,0.163856665,11.25257254,-2.89224875,1.289503385,6.198524832,4.747947972,6.458265788046624e-14 -7636,2006/11/28,0.049780626,11.80296055,-3.025718739,1.319561721,6.409051084,2.685530265,3.229132894023312e-14 -7637,2006/11/29,0.008396445,12.31761551,-2.715664397,1.095729726,6.575306658,1.431328553,1.614566447011656e-14 -7638,2006/11/30,0.04020909,13.06712807,-2.260707498,0.978850057,6.818619763,1.296210744,8.07283223505828e-15 -7639,2006/12/1,0.0,13.25324643,-1.816863911,1.174386865,6.855077201,0.648321154,4.03641611752914e-15 -7640,2006/12/2,0.112789016,13.2019171,-1.462224087,1.287848747,6.807887537,1.419069702,2.01820805876457e-15 -7641,2006/12/3,0.400477179,14.26867046,-0.547466963,1.198032454,7.13172024,4.055831313,1.009104029382285e-15 -7642,2006/12/4,0.395833222,14.45102167,0.448511917,1.109740065,7.100910373,4.731540225,5.045520146911425e-16 -7643,2006/12/5,0.033212178,15.03262712,1.163297516,1.30548654,7.250595291,1.704157667,2.5227600734557127e-16 -7644,2006/12/6,0.041564846,14.92893828,0.16035508,1.407506503,7.32417307,1.113502589,1.2613800367278563e-16 -7645,2006/12/7,0.047684825,14.18226107,-0.008246643,1.198346045,7.051688698,0.891607418,6.306900183639282e-17 -7646,2006/12/8,0.051405755,14.33960988,0.780862522,0.969234505,7.025852499,0.746750334,3.153450091819641e-17 -7647,2006/12/9,0.443360313,14.02660591,1.037733055,1.265206718,6.870753932,3.140880845,1.5767250459098204e-17 -7648,2006/12/10,1.085976224,13.21431598,0.832856654,1.378542613,6.575107839,9.750970209,7.883625229549102e-18 -7649,2006/12/11,0.210666347,13.79320423,1.03348232,1.504333605,6.781182554,4.522585312,3.941812614774551e-18 -7650,2006/12/12,0.15353253,11.98087233,-2.059175242,1.049876661,6.422806727,3.030183059,1.9709063073872755e-18 -7651,2006/12/13,7.28e-05,9.301636309,-4.715485259,0.833747241,5.666584931,1.280600119,9.854531536936378e-19 -7652,2006/12/14,0.115898182,10.05388785,-3.068478681,0.949044293,5.811277664,1.624294304,4.927265768468189e-19 -7653,2006/12/15,0.17324518,10.36934739,-2.911503964,0.905195039,5.912276977,1.94957502,2.4636328842340944e-19 -7654,2006/12/16,0.776279808,9.510427836,-3.561889081,0.727793646,5.661115796,7.034913733,1.2318164421170472e-19 -7655,2006/12/17,0.048937583,9.239893761,-1.787374349,0.821177406,5.388633075,2.340028011,6.159082210585236e-20 -7656,2006/12/18,0.360198827,8.515955227,-3.540694477,0.687876127,5.311196607,4.112944328,3.079541105292618e-20 -7657,2006/12/19,0.42196474,6.798489399,-5.602766548,0.54850885,4.885568863,5.20836649,1.539770552646309e-20 -7658,2006/12/20,0.0,7.195165626,-6.923280354,0.456742637,5.082710617,1.650459841,7.698852763231545e-21 -7659,2006/12/21,0.024675181,8.188984436,-6.463043372,0.459607475,5.388472326,1.070201516,3.8494263816157725e-21 -7660,2006/12/22,0.0047451,9.082294568,-6.196934767,0.781509841,5.674218958,0.632354719,1.9247131908078862e-21 -7661,2006/12/23,0.0,8.526277342,-7.982048659,0.784976769,5.539869927,0.385426962,9.623565954039431e-22 -7662,2006/12/24,2.6e-05,7.877356925,-7.121421993,0.669372232,5.311988148,0.248343319,4.811782977019716e-22 -7663,2006/12/25,0.001269396,9.09528771,-5.518217194,0.763720737,5.650711986,0.168538217,2.405891488509858e-22 -7664,2006/12/26,0.001155986,9.357162044,-5.259913457,0.620937569,5.726909223,0.112639898,1.202945744254929e-22 -7665,2006/12/27,0.01777769,10.14657348,-3.868253665,0.602828914,5.91621329,0.152750882,6.014728721274645e-23 -7666,2006/12/28,0.799213965,9.880121169,-4.540570431,0.980868858,5.867097233,4.526567271,3.007364360637322e-23 -7667,2006/12/29,1.001032706,7.573576193,-4.71049078,0.6988687,5.087732266,9.156409894,1.503682180318661e-23 -7668,2006/12/30,0.23641068,7.495905849,-3.209954777,0.667894643,4.925576383,4.642701178,7.518410901593306e-24 -7669,2006/12/31,0.225984012,8.894567444,-2.240007502,1.014618939,5.321687659,3.79775572,3.759205450796653e-24 diff --git a/doc/.vscode/settings.json b/doc/.vscode/settings.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/doc/.vscode/settings.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/doc/Manifest.toml b/doc/Manifest.toml deleted file mode 100644 index 592a97a..0000000 --- a/doc/Manifest.toml +++ /dev/null @@ -1,3593 +0,0 @@ -# This file is machine-generated - editing it directly is not advised - -julia_version = "1.10.4" -manifest_format = "2.0" -project_hash = "b19531e13c65ed24f828db9e4b786a8156f86a0d" - -[[deps.ADTypes]] -git-tree-sha1 = "72af59f5b8f09faee36b4ec48e014a79210f2f4f" -uuid = "47edcb42-4c32-4615-8424-f2b9edc5f35b" -version = "1.11.0" -weakdeps = ["ChainRulesCore", "ConstructionBase", "EnzymeCore"] - - [deps.ADTypes.extensions] - ADTypesChainRulesCoreExt = "ChainRulesCore" - ADTypesConstructionBaseExt = "ConstructionBase" - ADTypesEnzymeCoreExt = "EnzymeCore" - -[[deps.ANSIColoredPrinters]] -git-tree-sha1 = "574baf8110975760d391c710b6341da1afa48d8c" -uuid = "a4c015fc-c6ff-483c-b24f-f7ea428134e9" -version = "0.0.1" - -[[deps.AbstractFFTs]] -deps = ["LinearAlgebra"] -git-tree-sha1 = "d92ad398961a3ed262d8bf04a1a2b8340f915fef" -uuid = "621f4979-c628-5d54-868e-fcf4e3e8185c" -version = "1.5.0" -weakdeps = ["ChainRulesCore", "Test"] - - [deps.AbstractFFTs.extensions] - AbstractFFTsChainRulesCoreExt = "ChainRulesCore" - AbstractFFTsTestExt = "Test" - -[[deps.AbstractTrees]] -git-tree-sha1 = "2d9c9a55f9c93e8887ad391fbae72f8ef55e1177" -uuid = "1520ce14-60c1-5f80-bbc7-55ef81b5835c" -version = "0.4.5" - -[[deps.Accessors]] -deps = ["CompositionsBase", "ConstructionBase", "InverseFunctions", "LinearAlgebra", "MacroTools", "Markdown"] -git-tree-sha1 = "b392ede862e506d451fc1616e79aa6f4c673dab8" -uuid = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697" -version = "0.1.38" - - [deps.Accessors.extensions] - AccessorsAxisKeysExt = "AxisKeys" - AccessorsDatesExt = "Dates" - AccessorsIntervalSetsExt = "IntervalSets" - AccessorsStaticArraysExt = "StaticArrays" - AccessorsStructArraysExt = "StructArrays" - AccessorsTestExt = "Test" - AccessorsUnitfulExt = "Unitful" - - [deps.Accessors.weakdeps] - AxisKeys = "94b1ba4f-4ee9-5380-92f1-94cde586c3c5" - Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" - IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953" - Requires = "ae029012-a4dd-5104-9daa-d747884805df" - StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" - StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" - Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" - Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" - -[[deps.Adapt]] -deps = ["LinearAlgebra", "Requires"] -git-tree-sha1 = "50c3c56a52972d78e8be9fd135bfb91c9574c140" -uuid = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" -version = "4.1.1" -weakdeps = ["StaticArrays"] - - [deps.Adapt.extensions] - AdaptStaticArraysExt = "StaticArrays" - -[[deps.AliasTables]] -deps = ["PtrArrays", "Random"] -git-tree-sha1 = "9876e1e164b144ca45e9e3198d0b689cadfed9ff" -uuid = "66dad0bd-aa9a-41b7-9441-69ab47430ed8" -version = "1.1.3" - -[[deps.Aqua]] -deps = ["Compat", "Pkg", "Test"] -git-tree-sha1 = "49b1d7a9870c87ba13dc63f8ccfcf578cb266f95" -uuid = "4c88cf16-eb10-579e-8560-4a9242c79595" -version = "0.8.9" - -[[deps.ArgCheck]] -git-tree-sha1 = "680b3b8759bd4c54052ada14e52355ab69e07876" -uuid = "dce04be8-c92d-5529-be00-80e4d2c0e197" -version = "2.4.0" - -[[deps.ArgTools]] -uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f" -version = "1.1.1" - -[[deps.ArnoldiMethod]] -deps = ["LinearAlgebra", "Random", "StaticArrays"] -git-tree-sha1 = "d57bd3762d308bded22c3b82d033bff85f6195c6" -uuid = "ec485272-7323-5ecc-a04f-4719b315124d" -version = "0.4.0" - -[[deps.ArrayInterface]] -deps = ["Adapt", "LinearAlgebra"] -git-tree-sha1 = "d5140b60b87473df18cf4fe66382b7c3596df047" -uuid = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9" -version = "7.17.1" - - [deps.ArrayInterface.extensions] - ArrayInterfaceBandedMatricesExt = "BandedMatrices" - ArrayInterfaceBlockBandedMatricesExt = "BlockBandedMatrices" - ArrayInterfaceCUDAExt = "CUDA" - ArrayInterfaceCUDSSExt = "CUDSS" - ArrayInterfaceChainRulesCoreExt = "ChainRulesCore" - ArrayInterfaceChainRulesExt = "ChainRules" - ArrayInterfaceGPUArraysCoreExt = "GPUArraysCore" - ArrayInterfaceReverseDiffExt = "ReverseDiff" - ArrayInterfaceSparseArraysExt = "SparseArrays" - ArrayInterfaceStaticArraysCoreExt = "StaticArraysCore" - ArrayInterfaceTrackerExt = "Tracker" - - [deps.ArrayInterface.weakdeps] - BandedMatrices = "aae01518-5342-5314-be14-df237901396f" - BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0" - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - CUDSS = "45b445bb-4962-46a0-9369-b4df9d0f772e" - ChainRules = "082447d4-558c-5d27-93f4-14fc19e9eca2" - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - GPUArraysCore = "46192b85-c4d5-4398-a991-12ede77f4527" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" - StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - -[[deps.ArrayLayouts]] -deps = ["FillArrays", "LinearAlgebra"] -git-tree-sha1 = "492681bc44fac86804706ddb37da10880a2bd528" -uuid = "4c555306-a7a7-4459-81d9-ec55ddd5c99a" -version = "1.10.4" -weakdeps = ["SparseArrays"] - - [deps.ArrayLayouts.extensions] - ArrayLayoutsSparseArraysExt = "SparseArrays" - -[[deps.Artifacts]] -uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33" - -[[deps.Atomix]] -deps = ["UnsafeAtomics"] -git-tree-sha1 = "14e254ef74e44cd6ed27fbb751d4e1f9bbf085cc" -uuid = "a9b6321e-bd34-4604-b9c9-b65b8de01458" -version = "1.0.0" - - [deps.Atomix.extensions] - AtomixCUDAExt = "CUDA" - AtomixMetalExt = "Metal" - AtomixoneAPIExt = "oneAPI" - - [deps.Atomix.weakdeps] - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - Metal = "dde4c033-4e86-420c-a63e-0dd931031962" - oneAPI = "8f75cd03-7ff8-4ecb-9b8f-daf728133b1b" - -[[deps.AxisAlgorithms]] -deps = ["LinearAlgebra", "Random", "SparseArrays", "WoodburyMatrices"] -git-tree-sha1 = "01b8ccb13d68535d73d2b0c23e39bd23155fb712" -uuid = "13072b0f-2c55-5437-9ae7-d433b7a33950" -version = "1.1.0" - -[[deps.BFloat16s]] -deps = ["LinearAlgebra", "Printf", "Random", "Test"] -git-tree-sha1 = "2c7cc21e8678eff479978a0a2ef5ce2f51b63dff" -uuid = "ab4f0b2a-ad5b-11e8-123f-65d77653426b" -version = "0.5.0" - -[[deps.Base64]] -uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" - -[[deps.BenchmarkTools]] -deps = ["JSON", "Logging", "Printf", "Profile", "Statistics", "UUIDs"] -git-tree-sha1 = "f1dff6729bc61f4d49e140da1af55dcd1ac97b2f" -uuid = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" -version = "1.5.0" - -[[deps.Bijections]] -git-tree-sha1 = "d8b0439d2be438a5f2cd68ec158fe08a7b2595b7" -uuid = "e2ed5e7c-b2de-5872-ae92-c73ca462fb04" -version = "0.1.9" - -[[deps.BitFlags]] -git-tree-sha1 = "0691e34b3bb8be9307330f88d1a3c3f25466c24d" -uuid = "d1d4a3ce-64b1-5f1a-9ba4-7e7e69966f35" -version = "0.1.9" - -[[deps.BitTwiddlingConvenienceFunctions]] -deps = ["Static"] -git-tree-sha1 = "f21cfd4950cb9f0587d5067e69405ad2acd27b87" -uuid = "62783981-4cbd-42fc-bca8-16325de8dc4b" -version = "0.1.6" - -[[deps.BlackBoxOptim]] -deps = ["CPUTime", "Compat", "Distributed", "Distributions", "JSON", "LinearAlgebra", "Printf", "Random", "Requires", "SpatialIndexing", "StatsBase"] -git-tree-sha1 = "9c203a2515b5eeab8f2987614d2b1db83ef03542" -uuid = "a134a8b2-14d6-55f6-9291-3336d3ab0209" -version = "0.6.3" -weakdeps = ["HTTP", "Sockets"] - - [deps.BlackBoxOptim.extensions] - BlackBoxOptimRealtimePlotServerExt = ["HTTP", "Sockets"] - -[[deps.BlockArrays]] -deps = ["ArrayLayouts", "FillArrays", "LinearAlgebra"] -git-tree-sha1 = "62551a412126a8c979febd1a05a986928719639e" -uuid = "8e7c35d0-a365-5155-bbbb-fb81a777f24e" -version = "1.2.0" - - [deps.BlockArrays.extensions] - BlockArraysBandedMatricesExt = "BandedMatrices" - - [deps.BlockArrays.weakdeps] - BandedMatrices = "aae01518-5342-5314-be14-df237901396f" - -[[deps.BracketingNonlinearSolve]] -deps = ["CommonSolve", "ConcreteStructs", "NonlinearSolveBase", "PrecompileTools", "Reexport", "SciMLBase"] -git-tree-sha1 = "95cb19c37ea427617e9795655667712f03058d98" -uuid = "70df07ce-3d50-431d-a3e7-ca6ddb60ac1e" -version = "1.1.0" -weakdeps = ["ForwardDiff"] - - [deps.BracketingNonlinearSolve.extensions] - BracketingNonlinearSolveForwardDiffExt = "ForwardDiff" - -[[deps.Bzip2_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "8873e196c2eb87962a2048b3b8e08946535864a1" -uuid = "6e34b625-4abd-537c-b88f-471c36dfa7a0" -version = "1.0.8+2" - -[[deps.CEnum]] -git-tree-sha1 = "389ad5c84de1ae7cf0e28e381131c98ea87d54fc" -uuid = "fa961155-64e5-5f13-b03f-caf6b980ea82" -version = "0.5.0" - -[[deps.CPUSummary]] -deps = ["CpuId", "IfElse", "PrecompileTools", "Static"] -git-tree-sha1 = "5a97e67919535d6841172016c9530fd69494e5ec" -uuid = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9" -version = "0.2.6" - -[[deps.CPUTime]] -git-tree-sha1 = "2dcc50ea6a0a1ef6440d6eecd0fe3813e5671f45" -uuid = "a9c8d775-2e2e-55fc-8582-045d282d599e" -version = "1.0.0" - -[[deps.CSTParser]] -deps = ["Tokenize"] -git-tree-sha1 = "0157e592151e39fa570645e2b2debcdfb8a0f112" -uuid = "00ebfdb7-1f24-5e51-bd34-a7502290713f" -version = "3.4.3" - -[[deps.CSV]] -deps = ["CodecZlib", "Dates", "FilePathsBase", "InlineStrings", "Mmap", "Parsers", "PooledArrays", "PrecompileTools", "SentinelArrays", "Tables", "Unicode", "WeakRefStrings", "WorkerUtilities"] -git-tree-sha1 = "deddd8725e5e1cc49ee205a1964256043720a6c3" -uuid = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" -version = "0.10.15" - -[[deps.CUDA]] -deps = ["AbstractFFTs", "Adapt", "BFloat16s", "CEnum", "CUDA_Driver_jll", "CUDA_Runtime_Discovery", "CUDA_Runtime_jll", "Crayons", "DataFrames", "ExprTools", "GPUArrays", "GPUCompiler", "KernelAbstractions", "LLVM", "LLVMLoopInfo", "LazyArtifacts", "Libdl", "LinearAlgebra", "Logging", "NVTX", "Preferences", "PrettyTables", "Printf", "Random", "Random123", "RandomNumbers", "Reexport", "Requires", "SparseArrays", "StaticArrays", "Statistics", "demumble_jll"] -git-tree-sha1 = "e0725a467822697171af4dae15cec10b4fc19053" -uuid = "052768ef-5323-5732-b1bb-66c8b64840ba" -version = "5.5.2" -weakdeps = ["ChainRulesCore", "EnzymeCore", "SpecialFunctions"] - - [deps.CUDA.extensions] - ChainRulesCoreExt = "ChainRulesCore" - EnzymeCoreExt = "EnzymeCore" - SpecialFunctionsExt = "SpecialFunctions" - -[[deps.CUDA_Driver_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "14996d716a2eaaeccfc8d7bc854dd87fde720ac1" -uuid = "4ee394cb-3365-5eb0-8335-949819d2adfc" -version = "0.10.4+0" - -[[deps.CUDA_Runtime_Discovery]] -deps = ["Libdl"] -git-tree-sha1 = "33576c7c1b2500f8e7e6baa082e04563203b3a45" -uuid = "1af6417a-86b4-443c-805f-a4643ffb695f" -version = "0.3.5" - -[[deps.CUDA_Runtime_jll]] -deps = ["Artifacts", "CUDA_Driver_jll", "JLLWrappers", "LazyArtifacts", "Libdl", "TOML"] -git-tree-sha1 = "17f1536c600133f7c4113bae0a2d98dbf27c7ebc" -uuid = "76a88914-d11a-5bdc-97e0-2f5a05c973a2" -version = "0.15.5+0" - -[[deps.Cairo_jll]] -deps = ["Artifacts", "Bzip2_jll", "CompilerSupportLibraries_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "JLLWrappers", "LZO_jll", "Libdl", "Pixman_jll", "Xorg_libXext_jll", "Xorg_libXrender_jll", "Zlib_jll", "libpng_jll"] -git-tree-sha1 = "009060c9a6168704143100f36ab08f06c2af4642" -uuid = "83423d85-b0ee-5818-9007-b63ccbeb887a" -version = "1.18.2+1" - -[[deps.Cassette]] -git-tree-sha1 = "f8764df8d9d2aec2812f009a1ac39e46c33354b8" -uuid = "7057c7e9-c182-5462-911a-8362d720325c" -version = "0.3.14" - -[[deps.ChainRules]] -deps = ["Adapt", "ChainRulesCore", "Compat", "Distributed", "GPUArraysCore", "IrrationalConstants", "LinearAlgebra", "Random", "RealDot", "SparseArrays", "SparseInverseSubset", "Statistics", "StructArrays", "SuiteSparse"] -git-tree-sha1 = "bcffdcaed50d3453673b852f3522404a94b50fad" -uuid = "082447d4-558c-5d27-93f4-14fc19e9eca2" -version = "1.72.1" - -[[deps.ChainRulesCore]] -deps = ["Compat", "LinearAlgebra"] -git-tree-sha1 = "3e4b134270b372f2ed4d4d0e936aabaefc1802bc" -uuid = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" -version = "1.25.0" -weakdeps = ["SparseArrays"] - - [deps.ChainRulesCore.extensions] - ChainRulesCoreSparseArraysExt = "SparseArrays" - -[[deps.CloseOpenIntervals]] -deps = ["Static", "StaticArrayInterface"] -git-tree-sha1 = "05ba0d07cd4fd8b7a39541e31a7b0254704ea581" -uuid = "fb6a15b2-703c-40df-9091-08a04967cfa9" -version = "0.1.13" - -[[deps.CodecZlib]] -deps = ["TranscodingStreams", "Zlib_jll"] -git-tree-sha1 = "bce6804e5e6044c6daab27bb533d1295e4a2e759" -uuid = "944b1d66-785c-5afd-91f1-9de20f533193" -version = "0.7.6" - -[[deps.ColorSchemes]] -deps = ["ColorTypes", "ColorVectorSpace", "Colors", "FixedPointNumbers", "PrecompileTools", "Random"] -git-tree-sha1 = "c785dfb1b3bfddd1da557e861b919819b82bbe5b" -uuid = "35d6a980-a343-548e-a6ea-1d62b119f2f4" -version = "3.27.1" - -[[deps.ColorTypes]] -deps = ["FixedPointNumbers", "Random"] -git-tree-sha1 = "b10d0b65641d57b8b4d5e234446582de5047050d" -uuid = "3da002f7-5984-5a60-b8a6-cbb66c0b333f" -version = "0.11.5" - -[[deps.ColorVectorSpace]] -deps = ["ColorTypes", "FixedPointNumbers", "LinearAlgebra", "Requires", "Statistics", "TensorCore"] -git-tree-sha1 = "a1f44953f2382ebb937d60dafbe2deea4bd23249" -uuid = "c3611d14-8923-5661-9e6a-0046d554d3a4" -version = "0.10.0" -weakdeps = ["SpecialFunctions"] - - [deps.ColorVectorSpace.extensions] - SpecialFunctionsExt = "SpecialFunctions" - -[[deps.Colors]] -deps = ["ColorTypes", "FixedPointNumbers", "Reexport"] -git-tree-sha1 = "362a287c3aa50601b0bc359053d5c2468f0e7ce0" -uuid = "5ae59095-9a9b-59fe-a467-6f913c188581" -version = "0.12.11" - -[[deps.Combinatorics]] -git-tree-sha1 = "08c8b6831dc00bfea825826be0bc8336fc369860" -uuid = "861a8166-3701-5b0c-9a16-15d98fcdc6aa" -version = "1.0.2" - -[[deps.CommonMark]] -deps = ["Crayons", "PrecompileTools"] -git-tree-sha1 = "3faae67b8899797592335832fccf4b3c80bb04fa" -uuid = "a80b9123-70ca-4bc0-993e-6e3bcb318db6" -version = "0.8.15" - -[[deps.CommonSolve]] -git-tree-sha1 = "0eee5eb66b1cf62cd6ad1b460238e60e4b09400c" -uuid = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2" -version = "0.2.4" - -[[deps.CommonSubexpressions]] -deps = ["MacroTools"] -git-tree-sha1 = "cda2cfaebb4be89c9084adaca7dd7333369715c5" -uuid = "bbf7d656-a473-5ed7-a52c-81e309532950" -version = "0.3.1" - -[[deps.CommonWorldInvalidations]] -git-tree-sha1 = "ae52d1c52048455e85a387fbee9be553ec2b68d0" -uuid = "f70d9fcc-98c5-4d4a-abd7-e4cdeebd8ca8" -version = "1.0.0" - -[[deps.Compat]] -deps = ["TOML", "UUIDs"] -git-tree-sha1 = "8ae8d32e09f0dcf42a36b90d4e17f5dd2e4c4215" -uuid = "34da2185-b29b-5c13-b0c7-acf172513d20" -version = "4.16.0" -weakdeps = ["Dates", "LinearAlgebra"] - - [deps.Compat.extensions] - CompatLinearAlgebraExt = "LinearAlgebra" - -[[deps.CompilerSupportLibraries_jll]] -deps = ["Artifacts", "Libdl"] -uuid = "e66e0078-7015-5450-92f7-15fbd957f2ae" -version = "1.1.1+0" - -[[deps.ComponentArrays]] -deps = ["Adapt", "ArrayInterface", "ChainRulesCore", "ConstructionBase", "ForwardDiff", "Functors", "LinearAlgebra", "StaticArrayInterface", "StaticArraysCore"] -git-tree-sha1 = "e9b355215c05eeaaa7bf7d2ae0d329074e3cb045" -uuid = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66" -version = "0.15.19" -weakdeps = ["GPUArrays", "KernelAbstractions", "Optimisers", "RecursiveArrayTools", "ReverseDiff", "SciMLBase", "Tracker", "Zygote"] - - [deps.ComponentArrays.extensions] - ComponentArraysGPUArraysExt = "GPUArrays" - ComponentArraysKernelAbstractionsExt = "KernelAbstractions" - ComponentArraysOptimisersExt = "Optimisers" - ComponentArraysRecursiveArrayToolsExt = "RecursiveArrayTools" - ComponentArraysReverseDiffExt = "ReverseDiff" - ComponentArraysSciMLBaseExt = "SciMLBase" - ComponentArraysTrackerExt = "Tracker" - ComponentArraysZygoteExt = "Zygote" - -[[deps.CompositeTypes]] -git-tree-sha1 = "bce26c3dab336582805503bed209faab1c279768" -uuid = "b152e2b5-7a66-4b01-a709-34e65c35f657" -version = "0.1.4" - -[[deps.CompositionsBase]] -git-tree-sha1 = "802bb88cd69dfd1509f6670416bd4434015693ad" -uuid = "a33af91c-f02d-484b-be07-31d278c5ca2b" -version = "0.1.2" -weakdeps = ["InverseFunctions"] - - [deps.CompositionsBase.extensions] - CompositionsBaseInverseFunctionsExt = "InverseFunctions" - -[[deps.ConcreteStructs]] -git-tree-sha1 = "f749037478283d372048690eb3b5f92a79432b34" -uuid = "2569d6c7-a4a2-43d3-a901-331e8e4be471" -version = "0.2.3" - -[[deps.ConcurrentUtilities]] -deps = ["Serialization", "Sockets"] -git-tree-sha1 = "ea32b83ca4fefa1768dc84e504cc0a94fb1ab8d1" -uuid = "f0e56b4a-5159-44fe-b623-3e5288b988bb" -version = "2.4.2" - -[[deps.ConsoleProgressMonitor]] -deps = ["Logging", "ProgressMeter"] -git-tree-sha1 = "3ab7b2136722890b9af903859afcf457fa3059e8" -uuid = "88cd18e8-d9cc-4ea6-8889-5259c0d15c8b" -version = "0.1.2" - -[[deps.ConstructionBase]] -git-tree-sha1 = "76219f1ed5771adbb096743bff43fb5fdd4c1157" -uuid = "187b0558-2788-49d3-abe0-74a17ed4e7c9" -version = "1.5.8" -weakdeps = ["IntervalSets", "LinearAlgebra", "StaticArrays"] - - [deps.ConstructionBase.extensions] - ConstructionBaseIntervalSetsExt = "IntervalSets" - ConstructionBaseLinearAlgebraExt = "LinearAlgebra" - ConstructionBaseStaticArraysExt = "StaticArrays" - -[[deps.Contour]] -git-tree-sha1 = "439e35b0b36e2e5881738abc8857bd92ad6ff9a8" -uuid = "d38c429a-6771-53c6-b99e-75d170b6e991" -version = "0.6.3" - -[[deps.CpuId]] -deps = ["Markdown"] -git-tree-sha1 = "fcbb72b032692610bfbdb15018ac16a36cf2e406" -uuid = "adafc99b-e345-5852-983c-f28acb93d879" -version = "0.3.1" - -[[deps.Crayons]] -git-tree-sha1 = "249fe38abf76d48563e2f4556bebd215aa317e15" -uuid = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f" -version = "4.1.1" - -[[deps.DataAPI]] -git-tree-sha1 = "abe83f3a2f1b857aac70ef8b269080af17764bbe" -uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a" -version = "1.16.0" - -[[deps.DataFrames]] -deps = ["Compat", "DataAPI", "DataStructures", "Future", "InlineStrings", "InvertedIndices", "IteratorInterfaceExtensions", "LinearAlgebra", "Markdown", "Missings", "PooledArrays", "PrecompileTools", "PrettyTables", "Printf", "Random", "Reexport", "SentinelArrays", "SortingAlgorithms", "Statistics", "TableTraits", "Tables", "Unicode"] -git-tree-sha1 = "fb61b4812c49343d7ef0b533ba982c46021938a6" -uuid = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" -version = "1.7.0" - -[[deps.DataInterpolations]] -deps = ["FindFirstFunctions", "ForwardDiff", "LinearAlgebra", "PrettyTables", "RecipesBase", "Reexport"] -git-tree-sha1 = "78d06458ec13b53b3b0016daebe53f832d42ff44" -uuid = "82cc6244-b520-54b8-b5a6-8a565e85f1d0" -version = "6.6.0" - - [deps.DataInterpolations.extensions] - DataInterpolationsChainRulesCoreExt = "ChainRulesCore" - DataInterpolationsOptimExt = "Optim" - DataInterpolationsRegularizationToolsExt = "RegularizationTools" - DataInterpolationsSymbolicsExt = "Symbolics" - - [deps.DataInterpolations.weakdeps] - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - Optim = "429524aa-4258-5aef-a3af-852621145aeb" - RegularizationTools = "29dad682-9a27-4bc3-9c72-016788665182" - Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.DataStructures]] -deps = ["Compat", "InteractiveUtils", "OrderedCollections"] -git-tree-sha1 = "1d0a14036acb104d9e89698bd408f63ab58cdc82" -uuid = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" -version = "0.18.20" - -[[deps.DataValueInterfaces]] -git-tree-sha1 = "bfc1187b79289637fa0ef6d4436ebdfe6905cbd6" -uuid = "e2d170a0-9d28-54be-80f0-106bbe20a464" -version = "1.0.0" - -[[deps.Dates]] -deps = ["Printf"] -uuid = "ade2ca70-3891-5945-98fb-dc099432e06a" - -[[deps.Dbus_jll]] -deps = ["Artifacts", "Expat_jll", "JLLWrappers", "Libdl"] -git-tree-sha1 = "fc173b380865f70627d7dd1190dc2fce6cc105af" -uuid = "ee1fde0b-3d02-5ea6-8484-8dfef6360eab" -version = "1.14.10+0" - -[[deps.DelimitedFiles]] -deps = ["Mmap"] -git-tree-sha1 = "9e2f36d3c96a820c678f2f1f1782582fcf685bae" -uuid = "8bb1440f-4735-579b-a4ab-409b98df4dab" -version = "1.9.1" - -[[deps.DiffEqBase]] -deps = ["ArrayInterface", "ConcreteStructs", "DataStructures", "DocStringExtensions", "EnumX", "EnzymeCore", "FastBroadcast", "FastClosures", "FastPower", "ForwardDiff", "FunctionWrappers", "FunctionWrappersWrappers", "LinearAlgebra", "Logging", "Markdown", "MuladdMacro", "Parameters", "PreallocationTools", "PrecompileTools", "Printf", "RecursiveArrayTools", "Reexport", "SciMLBase", "SciMLOperators", "SciMLStructures", "Setfield", "Static", "StaticArraysCore", "Statistics", "TruncatedStacktraces"] -git-tree-sha1 = "b7dbeaa770bad0980ddddf606de814cff2acb3bc" -uuid = "2b5f629d-d688-5b77-993f-72d75c75574e" -version = "6.160.0" - - [deps.DiffEqBase.extensions] - DiffEqBaseCUDAExt = "CUDA" - DiffEqBaseChainRulesCoreExt = "ChainRulesCore" - DiffEqBaseDistributionsExt = "Distributions" - DiffEqBaseEnzymeExt = ["ChainRulesCore", "Enzyme"] - DiffEqBaseGeneralizedGeneratedExt = "GeneralizedGenerated" - DiffEqBaseMPIExt = "MPI" - DiffEqBaseMeasurementsExt = "Measurements" - DiffEqBaseMonteCarloMeasurementsExt = "MonteCarloMeasurements" - DiffEqBaseReverseDiffExt = "ReverseDiff" - DiffEqBaseSparseArraysExt = "SparseArrays" - DiffEqBaseTrackerExt = "Tracker" - DiffEqBaseUnitfulExt = "Unitful" - - [deps.DiffEqBase.weakdeps] - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" - Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" - GeneralizedGenerated = "6b9d7cbe-bcb9-11e9-073f-15a7a543e2eb" - MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195" - Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7" - MonteCarloMeasurements = "0987c9cc-fe09-11e8-30f0-b96dd679fdca" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" - -[[deps.DiffEqCallbacks]] -deps = ["ConcreteStructs", "DataStructures", "DiffEqBase", "DifferentiationInterface", "Functors", "LinearAlgebra", "Markdown", "RecipesBase", "RecursiveArrayTools", "SciMLBase", "StaticArraysCore"] -git-tree-sha1 = "f6bc598f21c7bf2f7885cff9b3c9078e606ab075" -uuid = "459566f4-90b8-5000-8ac3-15dfb0a30def" -version = "4.2.2" - -[[deps.DiffEqNoiseProcess]] -deps = ["DiffEqBase", "Distributions", "GPUArraysCore", "LinearAlgebra", "Markdown", "Optim", "PoissonRandom", "QuadGK", "Random", "Random123", "RandomNumbers", "RecipesBase", "RecursiveArrayTools", "ResettableStacks", "SciMLBase", "StaticArraysCore", "Statistics"] -git-tree-sha1 = "880d1fcf95e6492a4e7d65c2866dbdbf6580d4f8" -uuid = "77a26b50-5914-5dd7-bc55-306e6241c503" -version = "5.24.0" -weakdeps = ["ReverseDiff"] - - [deps.DiffEqNoiseProcess.extensions] - DiffEqNoiseProcessReverseDiffExt = "ReverseDiff" - -[[deps.DiffResults]] -deps = ["StaticArraysCore"] -git-tree-sha1 = "782dd5f4561f5d267313f23853baaaa4c52ea621" -uuid = "163ba53b-c6d8-5494-b064-1a9d43ac40c5" -version = "1.1.0" - -[[deps.DiffRules]] -deps = ["IrrationalConstants", "LogExpFunctions", "NaNMath", "Random", "SpecialFunctions"] -git-tree-sha1 = "23163d55f885173722d1e4cf0f6110cdbaf7e272" -uuid = "b552c78f-8df3-52c6-915a-8e097449b14b" -version = "1.15.1" - -[[deps.DifferentiationInterface]] -deps = ["ADTypes", "LinearAlgebra"] -git-tree-sha1 = "38b6508ce802f4113401081a42549047812c2a2c" -uuid = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63" -version = "0.6.24" - - [deps.DifferentiationInterface.extensions] - DifferentiationInterfaceChainRulesCoreExt = "ChainRulesCore" - DifferentiationInterfaceDiffractorExt = "Diffractor" - DifferentiationInterfaceEnzymeExt = "Enzyme" - DifferentiationInterfaceFastDifferentiationExt = "FastDifferentiation" - DifferentiationInterfaceFiniteDiffExt = "FiniteDiff" - DifferentiationInterfaceFiniteDifferencesExt = "FiniteDifferences" - DifferentiationInterfaceForwardDiffExt = "ForwardDiff" - DifferentiationInterfaceMooncakeExt = "Mooncake" - DifferentiationInterfacePolyesterForwardDiffExt = "PolyesterForwardDiff" - DifferentiationInterfaceReverseDiffExt = "ReverseDiff" - DifferentiationInterfaceSparseArraysExt = "SparseArrays" - DifferentiationInterfaceSparseMatrixColoringsExt = "SparseMatrixColorings" - DifferentiationInterfaceStaticArraysExt = "StaticArrays" - DifferentiationInterfaceSymbolicsExt = "Symbolics" - DifferentiationInterfaceTrackerExt = "Tracker" - DifferentiationInterfaceZygoteExt = ["Zygote", "ForwardDiff"] - - [deps.DifferentiationInterface.weakdeps] - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - Diffractor = "9f5e2b26-1114-432f-b630-d3fe2085c51c" - Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" - FastDifferentiation = "eb9bf01b-bf85-4b60-bf87-ee5de06c00be" - FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41" - FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000" - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - Mooncake = "da2b9cff-9c12-43a0-ae48-6db2b0edb7d6" - PolyesterForwardDiff = "98d1487c-24ca-40b6-b7ab-df2af84e126b" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" - SparseMatrixColorings = "0a514795-09f3-496d-8182-132a7b665d35" - StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" - Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.DispatchDoctor]] -deps = ["MacroTools", "Preferences"] -git-tree-sha1 = "453df2ce2aef7de59c69a56d31dcd2ec3384dd77" -uuid = "8d63f2c5-f18a-4cf2-ba9d-b3f60fc568c8" -version = "0.4.17" -weakdeps = ["ChainRulesCore", "EnzymeCore"] - - [deps.DispatchDoctor.extensions] - DispatchDoctorChainRulesCoreExt = "ChainRulesCore" - DispatchDoctorEnzymeCoreExt = "EnzymeCore" - -[[deps.Distributed]] -deps = ["Random", "Serialization", "Sockets"] -uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b" - -[[deps.Distributions]] -deps = ["AliasTables", "FillArrays", "LinearAlgebra", "PDMats", "Printf", "QuadGK", "Random", "SpecialFunctions", "Statistics", "StatsAPI", "StatsBase", "StatsFuns"] -git-tree-sha1 = "3101c32aab536e7a27b1763c0797dba151b899ad" -uuid = "31c24e10-a181-5473-b8eb-7969acd0382f" -version = "0.25.113" - - [deps.Distributions.extensions] - DistributionsChainRulesCoreExt = "ChainRulesCore" - DistributionsDensityInterfaceExt = "DensityInterface" - DistributionsTestExt = "Test" - - [deps.Distributions.weakdeps] - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - DensityInterface = "b429d917-457f-4dbc-8f4c-0cc954292b1d" - Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" - -[[deps.DocStringExtensions]] -deps = ["LibGit2"] -git-tree-sha1 = "2fb1e02f2b635d0845df5d7c167fec4dd739b00d" -uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" -version = "0.9.3" - -[[deps.Documenter]] -deps = ["ANSIColoredPrinters", "AbstractTrees", "Base64", "CodecZlib", "Dates", "DocStringExtensions", "Downloads", "Git", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "MarkdownAST", "Pkg", "PrecompileTools", "REPL", "RegistryInstances", "SHA", "TOML", "Test", "Unicode"] -git-tree-sha1 = "d0ea2c044963ed6f37703cead7e29f70cba13d7e" -uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4" -version = "1.8.0" - -[[deps.DomainSets]] -deps = ["CompositeTypes", "IntervalSets", "LinearAlgebra", "Random", "StaticArrays"] -git-tree-sha1 = "490392af2c7d63183bfa2c8aaa6ab981c5ba7561" -uuid = "5b8099bc-c8ec-5219-889f-1d9e522a28bf" -version = "0.7.14" - - [deps.DomainSets.extensions] - DomainSetsMakieExt = "Makie" - - [deps.DomainSets.weakdeps] - Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" - -[[deps.Downloads]] -deps = ["ArgTools", "FileWatching", "LibCURL", "NetworkOptions"] -uuid = "f43a241f-c20a-4ad4-852c-f6b1247861c6" -version = "1.6.0" - -[[deps.DynamicPolynomials]] -deps = ["Future", "LinearAlgebra", "MultivariatePolynomials", "MutableArithmetics", "Reexport", "Test"] -git-tree-sha1 = "9a3ae38b460449cc9e7dd0cfb059c76028724627" -uuid = "7c1d4256-1411-5781-91ec-d7bc3513ac07" -version = "0.6.1" - -[[deps.DynamicQuantities]] -deps = ["DispatchDoctor", "TestItems", "Tricks"] -git-tree-sha1 = "4923007a8e500f13be4c0119554776993c055ece" -uuid = "06fc5a27-2a28-4c7c-a15d-362465fb6821" -version = "1.4.0" - - [deps.DynamicQuantities.extensions] - DynamicQuantitiesLinearAlgebraExt = "LinearAlgebra" - DynamicQuantitiesMeasurementsExt = "Measurements" - DynamicQuantitiesScientificTypesExt = "ScientificTypes" - DynamicQuantitiesUnitfulExt = "Unitful" - - [deps.DynamicQuantities.weakdeps] - LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" - Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7" - ScientificTypes = "321657f4-b219-11e9-178b-2701a2544e81" - Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" - -[[deps.EnumX]] -git-tree-sha1 = "bdb1942cd4c45e3c678fd11569d5cccd80976237" -uuid = "4e289a0a-7415-4d19-859d-a7e5c4648b56" -version = "1.0.4" - -[[deps.Enzyme]] -deps = ["CEnum", "EnzymeCore", "Enzyme_jll", "GPUCompiler", "LLVM", "Libdl", "LinearAlgebra", "ObjectFile", "Preferences", "Printf", "Random", "SparseArrays"] -git-tree-sha1 = "aad91015f14bc2787ecc4dc0a0e59524ba5b7559" -uuid = "7da242da-08ed-463a-9acd-ee780be4f1d9" -version = "0.13.18" -weakdeps = ["BFloat16s", "ChainRulesCore", "LogExpFunctions", "SpecialFunctions", "StaticArrays"] - - [deps.Enzyme.extensions] - EnzymeBFloat16sExt = "BFloat16s" - EnzymeChainRulesCoreExt = "ChainRulesCore" - EnzymeLogExpFunctionsExt = "LogExpFunctions" - EnzymeSpecialFunctionsExt = "SpecialFunctions" - EnzymeStaticArraysExt = "StaticArrays" - -[[deps.EnzymeCore]] -git-tree-sha1 = "2c366bfe21936e8f44b607eb86a1f4c110f0d841" -uuid = "f151be2c-9106-41f4-ab19-57ee4f262869" -version = "0.8.7" -weakdeps = ["Adapt"] - - [deps.EnzymeCore.extensions] - AdaptExt = "Adapt" - -[[deps.Enzyme_jll]] -deps = ["Artifacts", "JLLWrappers", "LazyArtifacts", "Libdl", "TOML"] -git-tree-sha1 = "c2db64f193205dc5d2d4e58a315edc2eb469a9f0" -uuid = "7cc45869-7501-5eee-bdea-0790c847d4ef" -version = "0.0.166+0" - -[[deps.EpollShim_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "8a4be429317c42cfae6a7fc03c31bad1970c310d" -uuid = "2702e6a9-849d-5ed8-8c21-79e8b8f9ee43" -version = "0.0.20230411+1" - -[[deps.ExceptionUnwrapping]] -deps = ["Test"] -git-tree-sha1 = "d36f682e590a83d63d1c7dbd287573764682d12a" -uuid = "460bff9d-24e4-43bc-9d9f-a8973cb893f4" -version = "0.1.11" - -[[deps.Expat_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "e51db81749b0777b2147fbe7b783ee79045b8e99" -uuid = "2e619515-83b5-522b-bb60-26c02a35a201" -version = "2.6.4+1" - -[[deps.ExponentialUtilities]] -deps = ["Adapt", "ArrayInterface", "GPUArraysCore", "GenericSchur", "LinearAlgebra", "PrecompileTools", "Printf", "SparseArrays", "libblastrampoline_jll"] -git-tree-sha1 = "cae251c76f353e32d32d76fae2fea655eab652af" -uuid = "d4d017d3-3776-5f7e-afef-a10c40355c18" -version = "1.27.0" -weakdeps = ["StaticArrays"] - - [deps.ExponentialUtilities.extensions] - ExponentialUtilitiesStaticArraysExt = "StaticArrays" - -[[deps.ExprTools]] -git-tree-sha1 = "27415f162e6028e81c72b82ef756bf321213b6ec" -uuid = "e2ba6199-217a-4e67-a87a-7c52f15ade04" -version = "0.1.10" - -[[deps.Expronicon]] -deps = ["MLStyle", "Pkg", "TOML"] -git-tree-sha1 = "fc3951d4d398b5515f91d7fe5d45fc31dccb3c9b" -uuid = "6b7a57c9-7cc1-4fdf-b7f5-e857abae3636" -version = "0.8.5" - -[[deps.FFMPEG]] -deps = ["FFMPEG_jll"] -git-tree-sha1 = "53ebe7511fa11d33bec688a9178fac4e49eeee00" -uuid = "c87230d0-a227-11e9-1b43-d7ebe4e7570a" -version = "0.4.2" - -[[deps.FFMPEG_jll]] -deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "JLLWrappers", "LAME_jll", "Libdl", "Ogg_jll", "OpenSSL_jll", "Opus_jll", "PCRE2_jll", "Zlib_jll", "libaom_jll", "libass_jll", "libfdk_aac_jll", "libvorbis_jll", "x264_jll", "x265_jll"] -git-tree-sha1 = "466d45dc38e15794ec7d5d63ec03d776a9aff36e" -uuid = "b22a6f82-2f65-5046-a5b2-351ab43fb4e5" -version = "4.4.4+1" - -[[deps.FastBroadcast]] -deps = ["ArrayInterface", "LinearAlgebra", "Polyester", "Static", "StaticArrayInterface", "StrideArraysCore"] -git-tree-sha1 = "ab1b34570bcdf272899062e1a56285a53ecaae08" -uuid = "7034ab61-46d4-4ed7-9d0f-46aef9175898" -version = "0.3.5" - -[[deps.FastClosures]] -git-tree-sha1 = "acebe244d53ee1b461970f8910c235b259e772ef" -uuid = "9aa1b823-49e4-5ca5-8b0f-3971ec8bab6a" -version = "0.3.2" - -[[deps.FastLapackInterface]] -deps = ["LinearAlgebra"] -git-tree-sha1 = "cbf5edddb61a43669710cbc2241bc08b36d9e660" -uuid = "29a986be-02c6-4525-aec4-84b980013641" -version = "2.0.4" - -[[deps.FastPower]] -git-tree-sha1 = "58c3431137131577a7c379d00fea00be524338fb" -uuid = "a4df4552-cc26-4903-aec0-212e50a0e84b" -version = "1.1.1" - - [deps.FastPower.extensions] - FastPowerEnzymeExt = "Enzyme" - FastPowerForwardDiffExt = "ForwardDiff" - FastPowerMeasurementsExt = "Measurements" - FastPowerMonteCarloMeasurementsExt = "MonteCarloMeasurements" - FastPowerReverseDiffExt = "ReverseDiff" - FastPowerTrackerExt = "Tracker" - - [deps.FastPower.weakdeps] - Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7" - MonteCarloMeasurements = "0987c9cc-fe09-11e8-30f0-b96dd679fdca" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - -[[deps.FileIO]] -deps = ["Pkg", "Requires", "UUIDs"] -git-tree-sha1 = "2dd20384bf8c6d411b5c7370865b1e9b26cb2ea3" -uuid = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" -version = "1.16.6" -weakdeps = ["HTTP"] - - [deps.FileIO.extensions] - HTTPExt = "HTTP" - -[[deps.FilePathsBase]] -deps = ["Compat", "Dates"] -git-tree-sha1 = "7878ff7172a8e6beedd1dea14bd27c3c6340d361" -uuid = "48062228-2e41-5def-b9a4-89aafe57970f" -version = "0.9.22" -weakdeps = ["Mmap", "Test"] - - [deps.FilePathsBase.extensions] - FilePathsBaseMmapExt = "Mmap" - FilePathsBaseTestExt = "Test" - -[[deps.FileWatching]] -uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee" - -[[deps.FillArrays]] -deps = ["LinearAlgebra"] -git-tree-sha1 = "6a70198746448456524cb442b8af316927ff3e1a" -uuid = "1a297f60-69ca-5386-bcde-b61e274b549b" -version = "1.13.0" -weakdeps = ["PDMats", "SparseArrays", "Statistics"] - - [deps.FillArrays.extensions] - FillArraysPDMatsExt = "PDMats" - FillArraysSparseArraysExt = "SparseArrays" - FillArraysStatisticsExt = "Statistics" - -[[deps.FindFirstFunctions]] -git-tree-sha1 = "670e1d9ceaa4a3161d32fe2d2fb2177f8d78b330" -uuid = "64ca27bc-2ba2-4a57-88aa-44e436879224" -version = "1.4.1" - -[[deps.FiniteDiff]] -deps = ["ArrayInterface", "LinearAlgebra", "Setfield"] -git-tree-sha1 = "84e3a47db33be7248daa6274b287507dd6ff84e8" -uuid = "6a86dc24-6348-571c-b903-95158fe2bd41" -version = "2.26.2" - - [deps.FiniteDiff.extensions] - FiniteDiffBandedMatricesExt = "BandedMatrices" - FiniteDiffBlockBandedMatricesExt = "BlockBandedMatrices" - FiniteDiffSparseArraysExt = "SparseArrays" - FiniteDiffStaticArraysExt = "StaticArrays" - - [deps.FiniteDiff.weakdeps] - BandedMatrices = "aae01518-5342-5314-be14-df237901396f" - BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0" - SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" - StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" - -[[deps.FixedPointNumbers]] -deps = ["Statistics"] -git-tree-sha1 = "05882d6995ae5c12bb5f36dd2ed3f61c98cbb172" -uuid = "53c48c17-4a7d-5ca2-90c5-79b7896eea93" -version = "0.8.5" - -[[deps.Fontconfig_jll]] -deps = ["Artifacts", "Bzip2_jll", "Expat_jll", "FreeType2_jll", "JLLWrappers", "Libdl", "Libuuid_jll", "Zlib_jll"] -git-tree-sha1 = "db16beca600632c95fc8aca29890d83788dd8b23" -uuid = "a3f928ae-7b40-5064-980b-68af3947d34b" -version = "2.13.96+0" - -[[deps.Format]] -git-tree-sha1 = "9c68794ef81b08086aeb32eeaf33531668d5f5fc" -uuid = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8" -version = "1.3.7" - -[[deps.ForwardDiff]] -deps = ["CommonSubexpressions", "DiffResults", "DiffRules", "LinearAlgebra", "LogExpFunctions", "NaNMath", "Preferences", "Printf", "Random", "SpecialFunctions"] -git-tree-sha1 = "a2df1b776752e3f344e5116c06d75a10436ab853" -uuid = "f6369f11-7733-5829-9624-2563aa707210" -version = "0.10.38" -weakdeps = ["StaticArrays"] - - [deps.ForwardDiff.extensions] - ForwardDiffStaticArraysExt = "StaticArrays" - -[[deps.FreeType2_jll]] -deps = ["Artifacts", "Bzip2_jll", "JLLWrappers", "Libdl", "Zlib_jll"] -git-tree-sha1 = "786e968a8d2fb167f2e4880baba62e0e26bd8e4e" -uuid = "d7e528f0-a631-5988-bf34-fe36492bcfd7" -version = "2.13.3+1" - -[[deps.FriBidi_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "1ed150b39aebcc805c26b93a8d0122c940f64ce2" -uuid = "559328eb-81f9-559d-9380-de523a88c83c" -version = "1.0.14+0" - -[[deps.FunctionProperties]] -deps = ["Cassette", "DiffRules"] -git-tree-sha1 = "bf7c740307eb0ee80e05d8aafbd0c5a901578398" -uuid = "f62d2435-5019-4c03-9749-2d4c77af0cbc" -version = "0.1.2" - -[[deps.FunctionWrappers]] -git-tree-sha1 = "d62485945ce5ae9c0c48f124a84998d755bae00e" -uuid = "069b7b12-0de2-55c6-9aab-29f3d0a68a2e" -version = "1.1.3" - -[[deps.FunctionWrappersWrappers]] -deps = ["FunctionWrappers"] -git-tree-sha1 = "b104d487b34566608f8b4e1c39fb0b10aa279ff8" -uuid = "77dc65aa-8811-40c2-897b-53d922fa7daf" -version = "0.1.3" - -[[deps.Functors]] -deps = ["Compat", "ConstructionBase", "LinearAlgebra", "Random"] -git-tree-sha1 = "60a0339f28a233601cb74468032b5c302d5067de" -uuid = "d9f16b24-f501-4c13-a1f2-28368ffc5196" -version = "0.5.2" - -[[deps.Future]] -deps = ["Random"] -uuid = "9fa8497b-333b-5362-9e8d-4d0656e87820" - -[[deps.GLFW_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Libglvnd_jll", "Xorg_libXcursor_jll", "Xorg_libXi_jll", "Xorg_libXinerama_jll", "Xorg_libXrandr_jll", "libdecor_jll", "xkbcommon_jll"] -git-tree-sha1 = "532f9126ad901533af1d4f5c198867227a7bb077" -uuid = "0656b61e-2033-5cc2-a64a-77c0f6c09b89" -version = "3.4.0+1" - -[[deps.GPUArrays]] -deps = ["Adapt", "GPUArraysCore", "LLVM", "LinearAlgebra", "Printf", "Random", "Reexport", "Serialization", "Statistics"] -git-tree-sha1 = "62ee71528cca49be797076a76bdc654a170a523e" -uuid = "0c68f7d7-f131-5f86-a1c3-88cf8149b2d7" -version = "10.3.1" - -[[deps.GPUArraysCore]] -deps = ["Adapt"] -git-tree-sha1 = "ec632f177c0d990e64d955ccc1b8c04c485a0950" -uuid = "46192b85-c4d5-4398-a991-12ede77f4527" -version = "0.1.6" - -[[deps.GPUCompiler]] -deps = ["ExprTools", "InteractiveUtils", "LLVM", "Libdl", "Logging", "PrecompileTools", "Preferences", "Scratch", "Serialization", "TOML", "TimerOutputs", "UUIDs"] -git-tree-sha1 = "1d6f290a5eb1201cd63574fbc4440c788d5cb38f" -uuid = "61eb1bfa-7361-4325-ad38-22787b887f55" -version = "0.27.8" - -[[deps.GR]] -deps = ["Artifacts", "Base64", "DelimitedFiles", "Downloads", "GR_jll", "HTTP", "JSON", "Libdl", "LinearAlgebra", "Preferences", "Printf", "Qt6Wayland_jll", "Random", "Serialization", "Sockets", "TOML", "Tar", "Test", "p7zip_jll"] -git-tree-sha1 = "ee28ddcd5517d54e417182fec3886e7412d3926f" -uuid = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71" -version = "0.73.8" - -[[deps.GR_jll]] -deps = ["Artifacts", "Bzip2_jll", "Cairo_jll", "FFMPEG_jll", "Fontconfig_jll", "FreeType2_jll", "GLFW_jll", "JLLWrappers", "JpegTurbo_jll", "Libdl", "Libtiff_jll", "Pixman_jll", "Qt6Base_jll", "Zlib_jll", "libpng_jll"] -git-tree-sha1 = "f31929b9e67066bee48eec8b03c0df47d31a74b3" -uuid = "d2c73de3-f751-5644-a686-071e5b155ba9" -version = "0.73.8+0" - -[[deps.GenericSchur]] -deps = ["LinearAlgebra", "Printf"] -git-tree-sha1 = "af49a0851f8113fcfae2ef5027c6d49d0acec39b" -uuid = "c145ed77-6b09-5dd9-b285-bf645a82121e" -version = "0.5.4" - -[[deps.Gettext_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Libiconv_jll", "Pkg", "XML2_jll"] -git-tree-sha1 = "9b02998aba7bf074d14de89f9d37ca24a1a0b046" -uuid = "78b55507-aeef-58d4-861c-77aaff3498b1" -version = "0.21.0+0" - -[[deps.Git]] -deps = ["Git_jll"] -git-tree-sha1 = "04eff47b1354d702c3a85e8ab23d539bb7d5957e" -uuid = "d7ba0133-e1db-5d97-8f8c-041e4b3a1eb2" -version = "1.3.1" - -[[deps.Git_jll]] -deps = ["Artifacts", "Expat_jll", "JLLWrappers", "LibCURL_jll", "Libdl", "Libiconv_jll", "OpenSSL_jll", "PCRE2_jll", "Zlib_jll"] -git-tree-sha1 = "399f4a308c804b446ae4c91eeafadb2fe2c54ff9" -uuid = "f8c6e375-362e-5223-8a59-34ff63f689eb" -version = "2.47.1+0" - -[[deps.Glib_jll]] -deps = ["Artifacts", "Gettext_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Libiconv_jll", "Libmount_jll", "PCRE2_jll", "Zlib_jll"] -git-tree-sha1 = "b36c7e110080ae48fdef61b0c31e6b17ada23b33" -uuid = "7746bdde-850d-59dc-9ae8-88ece973131d" -version = "2.82.2+0" - -[[deps.Glob]] -git-tree-sha1 = "97285bbd5230dd766e9ef6749b80fc617126d496" -uuid = "c27321d9-0574-5035-807b-f59d2c89b15c" -version = "1.3.1" - -[[deps.Graphite2_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "01979f9b37367603e2848ea225918a3b3861b606" -uuid = "3b182d85-2403-5c21-9c21-1e1f0cc25472" -version = "1.3.14+1" - -[[deps.Graphs]] -deps = ["ArnoldiMethod", "Compat", "DataStructures", "Distributed", "Inflate", "LinearAlgebra", "Random", "SharedArrays", "SimpleTraits", "SparseArrays", "Statistics"] -git-tree-sha1 = "1dc470db8b1131cfc7fb4c115de89fe391b9e780" -uuid = "86223c79-3864-5bf0-83f7-82e725a168b6" -version = "1.12.0" - -[[deps.Grisu]] -git-tree-sha1 = "53bb909d1151e57e2484c3d1b53e19552b887fb2" -uuid = "42e2da0e-8278-4e71-bc24-59509adca0fe" -version = "1.0.2" - -[[deps.HCubature]] -deps = ["Combinatorics", "DataStructures", "LinearAlgebra", "QuadGK", "StaticArrays"] -git-tree-sha1 = "19ef9f0cb324eed957b7fe7257ac84e8ed8a48ec" -uuid = "19dc6840-f33b-545b-b366-655c7e3ffd49" -version = "1.7.0" - -[[deps.HTTP]] -deps = ["Base64", "CodecZlib", "ConcurrentUtilities", "Dates", "ExceptionUnwrapping", "Logging", "LoggingExtras", "MbedTLS", "NetworkOptions", "OpenSSL", "PrecompileTools", "Random", "SimpleBufferStream", "Sockets", "URIs", "UUIDs"] -git-tree-sha1 = "ae350b8225575cc3ea385d4131c81594f86dfe4f" -uuid = "cd3eb016-35fb-5094-929b-558a96fad6f3" -version = "1.10.12" - -[[deps.HarfBuzz_jll]] -deps = ["Artifacts", "Cairo_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "Graphite2_jll", "JLLWrappers", "Libdl", "Libffi_jll"] -git-tree-sha1 = "401e4f3f30f43af2c8478fc008da50096ea5240f" -uuid = "2e76f6c2-a576-52d4-95c1-20adfe4de566" -version = "8.3.1+0" - -[[deps.HostCPUFeatures]] -deps = ["BitTwiddlingConvenienceFunctions", "IfElse", "Libdl", "Static"] -git-tree-sha1 = "8e070b599339d622e9a081d17230d74a5c473293" -uuid = "3e5b6fbb-0976-4d2c-9146-d79de83f2fb0" -version = "0.1.17" - -[[deps.Hwloc]] -deps = ["CEnum", "Hwloc_jll", "Printf"] -git-tree-sha1 = "6a3d80f31ff87bc94ab22a7b8ec2f263f9a6a583" -uuid = "0e44f5e4-bd66-52a0-8798-143a42290a1d" -version = "3.3.0" -weakdeps = ["AbstractTrees"] - - [deps.Hwloc.extensions] - HwlocTrees = "AbstractTrees" - -[[deps.Hwloc_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "50aedf345a709ab75872f80a2779568dc0bb461b" -uuid = "e33a78d0-f292-5ffc-b300-72abe9b543c8" -version = "2.11.2+1" - -[[deps.HydroErrors]] -deps = ["DocStringExtensions", "Statistics"] -path = "../../HydroErrors" -uuid = "cde335eb-da38-4796-83c8-e508648b3902" -version = "0.1.0" - -[[deps.HydroModels]] -deps = ["Accessors", "Aqua", "BenchmarkTools", "CSV", "CUDA", "ChainRulesCore", "ComponentArrays", "DataFrames", "DataInterpolations", "Dates", "DiffEqCallbacks", "DocStringExtensions", "ForwardDiff", "Graphs", "HydroErrors", "Integrals", "Interpolations", "IterTools", "JLD2", "LinearAlgebra", "LinearSolve", "Lux", "LuxCore", "Measures", "ModelingToolkit", "NNlib", "NamedTupleTools", "Optimization", "OptimizationBBO", "OptimizationOptimisers", "OrdinaryDiffEq", "ParameterSchedulers", "Plots", "ProgressMeter", "Random", "RecursiveArrayTools", "Reexport", "RuntimeGeneratedFunctions", "SciMLBase", "SciMLOperators", "SciMLSensitivity", "SparseArrays", "StableRNGs", "StaticArrays", "Statistics", "SymbolicUtils", "Symbolics", "TOML", "Zygote"] -path = "D:\\Julia\\Julia-1.10.4\\packages\\dev\\HydroModels" -uuid = "7e3cde01-c141-467b-bff6-5350a0af19fc" -version = "0.1.0" - -[[deps.HypergeometricFunctions]] -deps = ["LinearAlgebra", "OpenLibm_jll", "SpecialFunctions"] -git-tree-sha1 = "b1c2585431c382e3fe5805874bda6aea90a95de9" -uuid = "34004b35-14d8-5ef3-9330-4cdb6864b03a" -version = "0.3.25" - -[[deps.IOCapture]] -deps = ["Logging", "Random"] -git-tree-sha1 = "b6d6bfdd7ce25b0f9b2f6b3dd56b2673a66c8770" -uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89" -version = "0.2.5" - -[[deps.IRTools]] -deps = ["InteractiveUtils", "MacroTools"] -git-tree-sha1 = "950c3717af761bc3ff906c2e8e52bd83390b6ec2" -uuid = "7869d1d1-7146-5819-86e3-90919afe41df" -version = "0.4.14" - -[[deps.IfElse]] -git-tree-sha1 = "debdd00ffef04665ccbb3e150747a77560e8fad1" -uuid = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173" -version = "0.1.1" - -[[deps.InfiniteArrays]] -deps = ["ArrayLayouts", "FillArrays", "Infinities", "LazyArrays", "LinearAlgebra"] -git-tree-sha1 = "478ad747fd8e0ac2506a19770e9597289e6027ad" -uuid = "4858937d-0d70-526a-a4dd-2d5cb5dd786c" -version = "0.14.3" - - [deps.InfiniteArrays.extensions] - InfiniteArraysDSPExt = "DSP" - InfiniteArraysStatisticsExt = "Statistics" - - [deps.InfiniteArrays.weakdeps] - DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2" - Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" - -[[deps.Infinities]] -git-tree-sha1 = "6336676b91409ec0a2c82723de9bdf4cabd02d78" -uuid = "e1ba4f0e-776d-440f-acd9-e1d2e9742647" -version = "0.1.8" - -[[deps.Inflate]] -git-tree-sha1 = "d1b1b796e47d94588b3757fe84fbf65a5ec4a80d" -uuid = "d25df0c9-e2be-5dd7-82c8-3ad0b3e990b9" -version = "0.1.5" - -[[deps.InlineStrings]] -git-tree-sha1 = "45521d31238e87ee9f9732561bfee12d4eebd52d" -uuid = "842dd82b-1e85-43dc-bf29-5d0ee9dffc48" -version = "1.4.2" - - [deps.InlineStrings.extensions] - ArrowTypesExt = "ArrowTypes" - ParsersExt = "Parsers" - - [deps.InlineStrings.weakdeps] - ArrowTypes = "31f734f8-188a-4ce0-8406-c8a06bd891cd" - Parsers = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0" - -[[deps.IntegerMathUtils]] -git-tree-sha1 = "b8ffb903da9f7b8cf695a8bead8e01814aa24b30" -uuid = "18e54dd8-cb9d-406c-a71d-865a43cbb235" -version = "0.1.2" - -[[deps.Integrals]] -deps = ["CommonSolve", "HCubature", "LinearAlgebra", "MonteCarloIntegration", "QuadGK", "Random", "Reexport", "SciMLBase"] -git-tree-sha1 = "cfdc4fb8d21c8f596572a59912ae863774123622" -uuid = "de52edbc-65ea-441a-8357-d3a637375a31" -version = "4.5.0" - - [deps.Integrals.extensions] - IntegralsArblibExt = "Arblib" - IntegralsCubaExt = "Cuba" - IntegralsCubatureExt = "Cubature" - IntegralsFastGaussQuadratureExt = "FastGaussQuadrature" - IntegralsForwardDiffExt = "ForwardDiff" - IntegralsMCIntegrationExt = "MCIntegration" - IntegralsZygoteExt = ["Zygote", "ChainRulesCore"] - - [deps.Integrals.weakdeps] - Arblib = "fb37089c-8514-4489-9461-98f9c8763369" - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - Cuba = "8a292aeb-7a57-582c-b821-06e4c11590b1" - Cubature = "667455a9-e2ce-5579-9412-b964f529a492" - FastGaussQuadrature = "442a2c76-b920-505d-bb47-c5924d526838" - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - MCIntegration = "ea1e2de9-7db7-4b42-91ee-0cd1bf6df167" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.IntelOpenMP_jll]] -deps = ["Artifacts", "JLLWrappers", "LazyArtifacts", "Libdl"] -git-tree-sha1 = "10bd689145d2c3b2a9844005d01087cc1194e79e" -uuid = "1d5cc7b8-4909-519e-a0f8-d0f5ad9712d0" -version = "2024.2.1+0" - -[[deps.InteractiveUtils]] -deps = ["Markdown"] -uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240" - -[[deps.Interpolations]] -deps = ["Adapt", "AxisAlgorithms", "ChainRulesCore", "LinearAlgebra", "OffsetArrays", "Random", "Ratios", "Requires", "SharedArrays", "SparseArrays", "StaticArrays", "WoodburyMatrices"] -git-tree-sha1 = "88a101217d7cb38a7b481ccd50d21876e1d1b0e0" -uuid = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" -version = "0.15.1" -weakdeps = ["Unitful"] - - [deps.Interpolations.extensions] - InterpolationsUnitfulExt = "Unitful" - -[[deps.IntervalSets]] -git-tree-sha1 = "dba9ddf07f77f60450fe5d2e2beb9854d9a49bd0" -uuid = "8197267c-284f-5f27-9208-e0e47529a953" -version = "0.7.10" -weakdeps = ["Random", "RecipesBase", "Statistics"] - - [deps.IntervalSets.extensions] - IntervalSetsRandomExt = "Random" - IntervalSetsRecipesBaseExt = "RecipesBase" - IntervalSetsStatisticsExt = "Statistics" - -[[deps.InverseFunctions]] -git-tree-sha1 = "a779299d77cd080bf77b97535acecd73e1c5e5cb" -uuid = "3587e190-3f89-42d0-90ee-14403ec27112" -version = "0.1.17" -weakdeps = ["Dates", "Test"] - - [deps.InverseFunctions.extensions] - InverseFunctionsDatesExt = "Dates" - InverseFunctionsTestExt = "Test" - -[[deps.InvertedIndices]] -git-tree-sha1 = "0dc7b50b8d436461be01300fd8cd45aa0274b038" -uuid = "41ab1584-1d38-5bbf-9106-f11c6c58b48f" -version = "1.3.0" - -[[deps.IrrationalConstants]] -git-tree-sha1 = "630b497eafcc20001bba38a4651b327dcfc491d2" -uuid = "92d709cd-6900-40b7-9082-c6be49f344b6" -version = "0.2.2" - -[[deps.IterTools]] -git-tree-sha1 = "42d5f897009e7ff2cf88db414a389e5ed1bdd023" -uuid = "c8e1da08-722c-5040-9ed9-7db0dc04731e" -version = "1.10.0" - -[[deps.IteratorInterfaceExtensions]] -git-tree-sha1 = "a3f24677c21f5bbe9d2a714f95dcd58337fb2856" -uuid = "82899510-4779-5014-852e-03e436cf321d" -version = "1.0.0" - -[[deps.JLD2]] -deps = ["FileIO", "MacroTools", "Mmap", "OrderedCollections", "PrecompileTools", "Requires", "TranscodingStreams"] -git-tree-sha1 = "f1a1c1037af2a4541ea186b26b0c0e7eeaad232b" -uuid = "033835bb-8acc-5ee8-8aae-3f567f8a3819" -version = "0.5.10" - -[[deps.JLFzf]] -deps = ["Pipe", "REPL", "Random", "fzf_jll"] -git-tree-sha1 = "71b48d857e86bf7a1838c4736545699974ce79a2" -uuid = "1019f520-868f-41f5-a6de-eb00f4b6a39c" -version = "0.1.9" - -[[deps.JLLWrappers]] -deps = ["Artifacts", "Preferences"] -git-tree-sha1 = "be3dc50a92e5a386872a493a10050136d4703f9b" -uuid = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210" -version = "1.6.1" - -[[deps.JSON]] -deps = ["Dates", "Mmap", "Parsers", "Unicode"] -git-tree-sha1 = "31e996f0a15c7b280ba9f76636b3ff9e2ae58c9a" -uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" -version = "0.21.4" - -[[deps.JpegTurbo_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "25ee0be4d43d0269027024d75a24c24d6c6e590c" -uuid = "aacddb02-875f-59d6-b918-886e6ef4fbf8" -version = "3.0.4+0" - -[[deps.JuliaFormatter]] -deps = ["CSTParser", "CommonMark", "DataStructures", "Glob", "PrecompileTools", "TOML", "Tokenize"] -git-tree-sha1 = "59cf7ad64f1b0708a4fa4369879d33bad3239b56" -uuid = "98e50ef6-434e-11e9-1051-2b60c6c9e899" -version = "1.0.62" - -[[deps.JuliaNVTXCallbacks_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "af433a10f3942e882d3c671aacb203e006a5808f" -uuid = "9c1d0b0a-7046-5b2e-a33f-ea22f176ac7e" -version = "0.2.1+0" - -[[deps.JumpProcesses]] -deps = ["ArrayInterface", "DataStructures", "DiffEqBase", "DocStringExtensions", "FunctionWrappers", "Graphs", "LinearAlgebra", "Markdown", "PoissonRandom", "Random", "RandomNumbers", "RecursiveArrayTools", "Reexport", "SciMLBase", "Setfield", "StaticArrays", "SymbolicIndexingInterface", "UnPack"] -git-tree-sha1 = "c3a2cb6f968404ed3b1d5382bbdd7b7d83966598" -uuid = "ccbc3e58-028d-4f4c-8cd5-9ae44345cda5" -version = "9.14.0" -weakdeps = ["FastBroadcast"] - -[[deps.KLU]] -deps = ["LinearAlgebra", "SparseArrays", "SuiteSparse_jll"] -git-tree-sha1 = "07649c499349dad9f08dde4243a4c597064663e9" -uuid = "ef3ab10e-7fda-4108-b977-705223b18434" -version = "0.6.0" - -[[deps.KernelAbstractions]] -deps = ["Adapt", "Atomix", "InteractiveUtils", "MacroTools", "PrecompileTools", "Requires", "StaticArrays", "UUIDs", "UnsafeAtomics", "UnsafeAtomicsLLVM"] -git-tree-sha1 = "27044736be7c5727d35fc4318d7949dee33c37b4" -uuid = "63c18a36-062a-441e-b654-da1e3ab1ce7c" -version = "0.9.30" -weakdeps = ["EnzymeCore", "LinearAlgebra", "SparseArrays"] - - [deps.KernelAbstractions.extensions] - EnzymeExt = "EnzymeCore" - LinearAlgebraExt = "LinearAlgebra" - SparseArraysExt = "SparseArrays" - -[[deps.Krylov]] -deps = ["LinearAlgebra", "Printf", "SparseArrays"] -git-tree-sha1 = "4f20a2df85a9e5d55c9e84634bbf808ed038cabd" -uuid = "ba0b0d4f-ebba-5204-a429-3ac8c609bfb7" -version = "0.9.8" - -[[deps.LAME_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "170b660facf5df5de098d866564877e119141cbd" -uuid = "c1c5ebd0-6772-5130-a774-d5fcae4a789d" -version = "3.100.2+0" - -[[deps.LBFGSB]] -deps = ["L_BFGS_B_jll"] -git-tree-sha1 = "e2e6f53ee20605d0ea2be473480b7480bd5091b5" -uuid = "5be7bae1-8223-5378-bac3-9e7378a2f6e6" -version = "0.4.1" - -[[deps.LERC_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "36bdbc52f13a7d1dcb0f3cd694e01677a515655b" -uuid = "88015f11-f218-50d7-93a8-a6af411a945d" -version = "4.0.0+0" - -[[deps.LLVM]] -deps = ["CEnum", "LLVMExtra_jll", "Libdl", "Preferences", "Printf", "Unicode"] -git-tree-sha1 = "d422dfd9707bec6617335dc2ea3c5172a87d5908" -uuid = "929cbde3-209d-540e-8aea-75f648917ca0" -version = "9.1.3" -weakdeps = ["BFloat16s"] - - [deps.LLVM.extensions] - BFloat16sExt = "BFloat16s" - -[[deps.LLVMExtra_jll]] -deps = ["Artifacts", "JLLWrappers", "LazyArtifacts", "Libdl", "TOML"] -git-tree-sha1 = "05a8bd5a42309a9ec82f700876903abce1017dd3" -uuid = "dad2f222-ce93-54a1-a47d-0025e8a3acab" -version = "0.0.34+0" - -[[deps.LLVMLoopInfo]] -git-tree-sha1 = "2e5c102cfc41f48ae4740c7eca7743cc7e7b75ea" -uuid = "8b046642-f1f6-4319-8d3c-209ddc03c586" -version = "1.0.0" - -[[deps.LLVMOpenMP_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "78211fb6cbc872f77cad3fc0b6cf647d923f4929" -uuid = "1d63c593-3942-5779-bab2-d838dc0a180e" -version = "18.1.7+0" - -[[deps.LZO_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "854a9c268c43b77b0a27f22d7fab8d33cdb3a731" -uuid = "dd4b983a-f0e5-5f8d-a1b7-129d4a5fb1ac" -version = "2.10.2+1" - -[[deps.L_BFGS_B_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "77feda930ed3f04b2b0fbb5bea89e69d3677c6b0" -uuid = "81d17ec3-03a1-5e46-b53e-bddc35a13473" -version = "3.0.1+0" - -[[deps.LaTeXStrings]] -git-tree-sha1 = "dda21b8cbd6a6c40d9d02a73230f9d70fed6918c" -uuid = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f" -version = "1.4.0" - -[[deps.Latexify]] -deps = ["Format", "InteractiveUtils", "LaTeXStrings", "MacroTools", "Markdown", "OrderedCollections", "Requires"] -git-tree-sha1 = "ce5f5621cac23a86011836badfedf664a612cee4" -uuid = "23fbe1c1-3f47-55db-b15f-69d7ec21a316" -version = "0.16.5" - - [deps.Latexify.extensions] - DataFramesExt = "DataFrames" - SparseArraysExt = "SparseArrays" - SymEngineExt = "SymEngine" - - [deps.Latexify.weakdeps] - DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" - SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" - SymEngine = "123dc426-2d89-5057-bbad-38513e3affd8" - -[[deps.LatticeRules]] -deps = ["Random"] -git-tree-sha1 = "7f5b02258a3ca0221a6a9710b0a0a2e8fb4957fe" -uuid = "73f95e8e-ec14-4e6a-8b18-0d2e271c4e55" -version = "0.0.1" - -[[deps.LayoutPointers]] -deps = ["ArrayInterface", "LinearAlgebra", "ManualMemory", "SIMDTypes", "Static", "StaticArrayInterface"] -git-tree-sha1 = "a9eaadb366f5493a5654e843864c13d8b107548c" -uuid = "10f19ff3-798f-405d-979b-55457f8fc047" -version = "0.1.17" - -[[deps.LazilyInitializedFields]] -git-tree-sha1 = "0f2da712350b020bc3957f269c9caad516383ee0" -uuid = "0e77f7df-68c5-4e49-93ce-4cd80f5598bf" -version = "1.3.0" - -[[deps.LazyArrays]] -deps = ["ArrayLayouts", "FillArrays", "LinearAlgebra", "MacroTools", "SparseArrays"] -git-tree-sha1 = "d168f757c5043240005d507ff866e801944c4690" -uuid = "5078a376-72f3-5289-bfd5-ec5146d43c02" -version = "2.2.4" - - [deps.LazyArrays.extensions] - LazyArraysBandedMatricesExt = "BandedMatrices" - LazyArraysBlockArraysExt = "BlockArrays" - LazyArraysBlockBandedMatricesExt = "BlockBandedMatrices" - LazyArraysStaticArraysExt = "StaticArrays" - - [deps.LazyArrays.weakdeps] - BandedMatrices = "aae01518-5342-5314-be14-df237901396f" - BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e" - BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0" - StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" - -[[deps.LazyArtifacts]] -deps = ["Artifacts", "Pkg"] -uuid = "4af54fe1-eca0-43a8-85a7-787d91b784e3" - -[[deps.LeftChildRightSiblingTrees]] -deps = ["AbstractTrees"] -git-tree-sha1 = "fb6803dafae4a5d62ea5cab204b1e657d9737e7f" -uuid = "1d6d02ad-be62-4b6b-8a6d-2f90e265016e" -version = "0.2.0" - -[[deps.LibCURL]] -deps = ["LibCURL_jll", "MozillaCACerts_jll"] -uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21" -version = "0.6.4" - -[[deps.LibCURL_jll]] -deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Zlib_jll", "nghttp2_jll"] -uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0" -version = "8.4.0+0" - -[[deps.LibGit2]] -deps = ["Base64", "LibGit2_jll", "NetworkOptions", "Printf", "SHA"] -uuid = "76f85450-5226-5b5a-8eaa-529ad045b433" - -[[deps.LibGit2_jll]] -deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll"] -uuid = "e37daf67-58a4-590a-8e99-b0245dd2ffc5" -version = "1.6.4+0" - -[[deps.LibSSH2_jll]] -deps = ["Artifacts", "Libdl", "MbedTLS_jll"] -uuid = "29816b5a-b9ab-546f-933c-edad1886dfa8" -version = "1.11.0+1" - -[[deps.Libdl]] -uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb" - -[[deps.Libffi_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "0b4a5d71f3e5200a7dff793393e09dfc2d874290" -uuid = "e9f186c6-92d2-5b65-8a66-fee21dc1b490" -version = "3.2.2+1" - -[[deps.Libgcrypt_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgpg_error_jll"] -git-tree-sha1 = "8be878062e0ffa2c3f67bb58a595375eda5de80b" -uuid = "d4300ac3-e22c-5743-9152-c294e39db1e4" -version = "1.11.0+0" - -[[deps.Libglvnd_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll", "Xorg_libXext_jll"] -git-tree-sha1 = "ff3b4b9d35de638936a525ecd36e86a8bb919d11" -uuid = "7e76a0d4-f3c7-5321-8279-8d96eeed0f29" -version = "1.7.0+0" - -[[deps.Libgpg_error_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "c6ce1e19f3aec9b59186bdf06cdf3c4fc5f5f3e6" -uuid = "7add5ba3-2f88-524e-9cd5-f83b8a55f7b8" -version = "1.50.0+0" - -[[deps.Libiconv_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "61dfdba58e585066d8bce214c5a51eaa0539f269" -uuid = "94ce4f54-9a6c-5748-9c1c-f9c7231a4531" -version = "1.17.0+1" - -[[deps.Libmount_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "84eef7acd508ee5b3e956a2ae51b05024181dee0" -uuid = "4b2f31a3-9ecc-558c-b454-b3730dcb73e9" -version = "2.40.2+0" - -[[deps.Libtiff_jll]] -deps = ["Artifacts", "JLLWrappers", "JpegTurbo_jll", "LERC_jll", "Libdl", "XZ_jll", "Zlib_jll", "Zstd_jll"] -git-tree-sha1 = "b404131d06f7886402758c9ce2214b636eb4d54a" -uuid = "89763e89-9b03-5906-acba-b20f662cd828" -version = "4.7.0+0" - -[[deps.Libuuid_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "edbf5309f9ddf1cab25afc344b1e8150b7c832f9" -uuid = "38a345b3-de98-5d2b-a5d3-14cd9215e700" -version = "2.40.2+0" - -[[deps.LineSearch]] -deps = ["ADTypes", "CommonSolve", "ConcreteStructs", "FastClosures", "LinearAlgebra", "MaybeInplace", "SciMLBase", "SciMLJacobianOperators", "StaticArraysCore"] -git-tree-sha1 = "97d502765cc5cf3a722120f50da03c2474efce04" -uuid = "87fe0de2-c867-4266-b59a-2f0a94fc965b" -version = "0.1.4" -weakdeps = ["LineSearches"] - - [deps.LineSearch.extensions] - LineSearchLineSearchesExt = "LineSearches" - -[[deps.LineSearches]] -deps = ["LinearAlgebra", "NLSolversBase", "NaNMath", "Parameters", "Printf"] -git-tree-sha1 = "e4c3be53733db1051cc15ecf573b1042b3a712a1" -uuid = "d3d80556-e9d4-5f37-9878-2ab0fcc64255" -version = "7.3.0" - -[[deps.LinearAlgebra]] -deps = ["Libdl", "OpenBLAS_jll", "libblastrampoline_jll"] -uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" - -[[deps.LinearSolve]] -deps = ["ArrayInterface", "ChainRulesCore", "ConcreteStructs", "DocStringExtensions", "EnumX", "FastLapackInterface", "GPUArraysCore", "InteractiveUtils", "KLU", "Krylov", "LazyArrays", "Libdl", "LinearAlgebra", "MKL_jll", "Markdown", "PrecompileTools", "Preferences", "RecursiveFactorization", "Reexport", "SciMLBase", "SciMLOperators", "Setfield", "SparseArrays", "Sparspak", "StaticArraysCore", "UnPack"] -git-tree-sha1 = "9d5872d134bd33dd3e120767004f760770958863" -uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae" -version = "2.38.0" - - [deps.LinearSolve.extensions] - LinearSolveBandedMatricesExt = "BandedMatrices" - LinearSolveBlockDiagonalsExt = "BlockDiagonals" - LinearSolveCUDAExt = "CUDA" - LinearSolveCUDSSExt = "CUDSS" - LinearSolveEnzymeExt = "EnzymeCore" - LinearSolveFastAlmostBandedMatricesExt = "FastAlmostBandedMatrices" - LinearSolveHYPREExt = "HYPRE" - LinearSolveIterativeSolversExt = "IterativeSolvers" - LinearSolveKernelAbstractionsExt = "KernelAbstractions" - LinearSolveKrylovKitExt = "KrylovKit" - LinearSolveMetalExt = "Metal" - LinearSolvePardisoExt = "Pardiso" - LinearSolveRecursiveArrayToolsExt = "RecursiveArrayTools" - - [deps.LinearSolve.weakdeps] - BandedMatrices = "aae01518-5342-5314-be14-df237901396f" - BlockDiagonals = "0a1fb500-61f7-11e9-3c65-f5ef3456f9f0" - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - CUDSS = "45b445bb-4962-46a0-9369-b4df9d0f772e" - EnzymeCore = "f151be2c-9106-41f4-ab19-57ee4f262869" - FastAlmostBandedMatrices = "9d29842c-ecb8-4973-b1e9-a27b1157504e" - HYPRE = "b5ffcf37-a2bd-41ab-a3da-4bd9bc8ad771" - IterativeSolvers = "42fd0dbc-a981-5370-80f2-aaf504508153" - KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c" - KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77" - Metal = "dde4c033-4e86-420c-a63e-0dd931031962" - Pardiso = "46dd5b70-b6fb-5a00-ae2d-e8fea33afaf2" - RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd" - -[[deps.LogExpFunctions]] -deps = ["DocStringExtensions", "IrrationalConstants", "LinearAlgebra"] -git-tree-sha1 = "a2d09619db4e765091ee5c6ffe8872849de0feea" -uuid = "2ab3a3ac-af41-5b50-aa03-7779005ae688" -version = "0.3.28" - - [deps.LogExpFunctions.extensions] - LogExpFunctionsChainRulesCoreExt = "ChainRulesCore" - LogExpFunctionsChangesOfVariablesExt = "ChangesOfVariables" - LogExpFunctionsInverseFunctionsExt = "InverseFunctions" - - [deps.LogExpFunctions.weakdeps] - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - ChangesOfVariables = "9e997f8a-9a97-42d5-a9f1-ce6bfc15e2c0" - InverseFunctions = "3587e190-3f89-42d0-90ee-14403ec27112" - -[[deps.Logging]] -uuid = "56ddb016-857b-54e1-b83d-db4d58db5568" - -[[deps.LoggingExtras]] -deps = ["Dates", "Logging"] -git-tree-sha1 = "f02b56007b064fbfddb4c9cd60161b6dd0f40df3" -uuid = "e6f89c97-d47a-5376-807f-9c37f3926c36" -version = "1.1.0" - -[[deps.LoopVectorization]] -deps = ["ArrayInterface", "CPUSummary", "CloseOpenIntervals", "DocStringExtensions", "HostCPUFeatures", "IfElse", "LayoutPointers", "LinearAlgebra", "OffsetArrays", "PolyesterWeave", "PrecompileTools", "SIMDTypes", "SLEEFPirates", "Static", "StaticArrayInterface", "ThreadingUtilities", "UnPack", "VectorizationBase"] -git-tree-sha1 = "8084c25a250e00ae427a379a5b607e7aed96a2dd" -uuid = "bdcacae8-1622-11e9-2a5c-532679323890" -version = "0.12.171" -weakdeps = ["ChainRulesCore", "ForwardDiff", "SpecialFunctions"] - - [deps.LoopVectorization.extensions] - ForwardDiffExt = ["ChainRulesCore", "ForwardDiff"] - SpecialFunctionsExt = "SpecialFunctions" - -[[deps.Lux]] -deps = ["ADTypes", "Adapt", "ArgCheck", "ArrayInterface", "ChainRulesCore", "Compat", "ConcreteStructs", "DispatchDoctor", "EnzymeCore", "FastClosures", "ForwardDiff", "Functors", "GPUArraysCore", "LinearAlgebra", "LuxCore", "LuxLib", "MLDataDevices", "MacroTools", "Markdown", "NNlib", "Optimisers", "Preferences", "Random", "Reexport", "SIMDTypes", "Setfield", "Static", "StaticArraysCore", "Statistics", "WeightInitializers"] -git-tree-sha1 = "3089c2cfa20abc714c8276b79aa9dffbbe40619c" -uuid = "b2108857-7c20-44ae-9111-449ecde12c47" -version = "1.4.0" - - [deps.Lux.extensions] - LuxComponentArraysExt = "ComponentArrays" - LuxEnzymeExt = "Enzyme" - LuxFluxExt = "Flux" - LuxLossFunctionsExt = "LossFunctions" - LuxMLUtilsExt = "MLUtils" - LuxMPIExt = "MPI" - LuxMPINCCLExt = ["CUDA", "MPI", "NCCL"] - LuxReactantExt = ["Enzyme", "Reactant"] - LuxReverseDiffExt = ["FunctionWrappers", "ReverseDiff"] - LuxSimpleChainsExt = "SimpleChains" - LuxTrackerExt = "Tracker" - LuxZygoteExt = "Zygote" - - [deps.Lux.weakdeps] - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66" - Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" - Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c" - FunctionWrappers = "069b7b12-0de2-55c6-9aab-29f3d0a68a2e" - LossFunctions = "30fc2ffe-d236-52d8-8643-a9d8f7c094a7" - MLUtils = "f1d291b0-491e-4a28-83b9-f70985020b54" - MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195" - NCCL = "3fe64909-d7a1-4096-9b7d-7a0f12cf0f6b" - Reactant = "3c362404-f566-11ee-1572-e11a4b42c853" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - SimpleChains = "de6bee2f-e2f4-4ec7-b6ed-219cc6f6e9e5" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.LuxCore]] -deps = ["Compat", "DispatchDoctor", "Random"] -git-tree-sha1 = "e1f6a43c5e8ab3524ab42472e57e382a74d45bd5" -uuid = "bb33d45b-7691-41d6-9220-0943567d0623" -version = "1.2.0" - - [deps.LuxCore.extensions] - LuxCoreArrayInterfaceReverseDiffExt = ["ArrayInterface", "ReverseDiff"] - LuxCoreArrayInterfaceTrackerExt = ["ArrayInterface", "Tracker"] - LuxCoreChainRulesCoreExt = "ChainRulesCore" - LuxCoreEnzymeCoreExt = "EnzymeCore" - LuxCoreFunctorsExt = "Functors" - LuxCoreMLDataDevicesExt = "MLDataDevices" - LuxCoreReactantExt = "Reactant" - LuxCoreSetfieldExt = "Setfield" - - [deps.LuxCore.weakdeps] - ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9" - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - EnzymeCore = "f151be2c-9106-41f4-ab19-57ee4f262869" - Functors = "d9f16b24-f501-4c13-a1f2-28368ffc5196" - MLDataDevices = "7e8f7934-dd98-4c1a-8fe8-92b47a384d40" - Reactant = "3c362404-f566-11ee-1572-e11a4b42c853" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - Setfield = "efcf1570-3423-57d1-acb7-fd33fddbac46" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - -[[deps.LuxLib]] -deps = ["ArrayInterface", "ChainRulesCore", "Compat", "CpuId", "DispatchDoctor", "EnzymeCore", "FastClosures", "ForwardDiff", "Hwloc", "KernelAbstractions", "LinearAlgebra", "LuxCore", "MLDataDevices", "Markdown", "NNlib", "Polyester", "Preferences", "Random", "Reexport", "Static", "StaticArraysCore", "Statistics"] -git-tree-sha1 = "534a18fb11aa9c564c78cddaa61981634a5e02ef" -uuid = "82251201-b29d-42c6-8e01-566dec8acb11" -version = "1.3.10" - - [deps.LuxLib.extensions] - LuxLibAppleAccelerateExt = "AppleAccelerate" - LuxLibBLISBLASExt = "BLISBLAS" - LuxLibCUDAExt = "CUDA" - LuxLibEnzymeExt = "Enzyme" - LuxLibLoopVectorizationExt = "LoopVectorization" - LuxLibMKLExt = "MKL" - LuxLibOctavianExt = ["Octavian", "LoopVectorization"] - LuxLibReverseDiffExt = "ReverseDiff" - LuxLibSLEEFPiratesExt = "SLEEFPirates" - LuxLibTrackerAMDGPUExt = ["AMDGPU", "Tracker"] - LuxLibTrackerExt = "Tracker" - LuxLibcuDNNExt = ["CUDA", "cuDNN"] - - [deps.LuxLib.weakdeps] - AMDGPU = "21141c5a-9bdb-4563-92ae-f87d6854732e" - AppleAccelerate = "13e28ba4-7ad8-5781-acae-3021b1ed3924" - BLISBLAS = "6f275bd8-fec0-4d39-945b-7e95a765fa1e" - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" - LoopVectorization = "bdcacae8-1622-11e9-2a5c-532679323890" - MKL = "33e6dc65-8f57-5167-99aa-e5a354878fb2" - Octavian = "6fd5a793-0b7e-452c-907f-f8bfe9c57db4" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - SLEEFPirates = "476501e8-09a2-5ece-8869-fb82de89a1fa" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - cuDNN = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd" - -[[deps.MKL_jll]] -deps = ["Artifacts", "IntelOpenMP_jll", "JLLWrappers", "LazyArtifacts", "Libdl", "oneTBB_jll"] -git-tree-sha1 = "f046ccd0c6db2832a9f639e2c669c6fe867e5f4f" -uuid = "856f044c-d86e-5d09-b602-aeab76dc8ba7" -version = "2024.2.0+0" - -[[deps.MLDataDevices]] -deps = ["Adapt", "Compat", "Functors", "Preferences", "Random"] -git-tree-sha1 = "65cac17924edbe88e13eef135fac513330c48d9b" -uuid = "7e8f7934-dd98-4c1a-8fe8-92b47a384d40" -version = "1.6.2" - - [deps.MLDataDevices.extensions] - MLDataDevicesAMDGPUExt = "AMDGPU" - MLDataDevicesCUDAExt = "CUDA" - MLDataDevicesChainRulesCoreExt = "ChainRulesCore" - MLDataDevicesChainRulesExt = "ChainRules" - MLDataDevicesFillArraysExt = "FillArrays" - MLDataDevicesGPUArraysExt = "GPUArrays" - MLDataDevicesMLUtilsExt = "MLUtils" - MLDataDevicesMetalExt = ["GPUArrays", "Metal"] - MLDataDevicesOneHotArraysExt = "OneHotArrays" - MLDataDevicesReactantExt = "Reactant" - MLDataDevicesRecursiveArrayToolsExt = "RecursiveArrayTools" - MLDataDevicesReverseDiffExt = "ReverseDiff" - MLDataDevicesSparseArraysExt = "SparseArrays" - MLDataDevicesTrackerExt = "Tracker" - MLDataDevicesZygoteExt = "Zygote" - MLDataDevicescuDNNExt = ["CUDA", "cuDNN"] - MLDataDevicesoneAPIExt = ["GPUArrays", "oneAPI"] - - [deps.MLDataDevices.weakdeps] - AMDGPU = "21141c5a-9bdb-4563-92ae-f87d6854732e" - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - ChainRules = "082447d4-558c-5d27-93f4-14fc19e9eca2" - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b" - GPUArrays = "0c68f7d7-f131-5f86-a1c3-88cf8149b2d7" - MLUtils = "f1d291b0-491e-4a28-83b9-f70985020b54" - Metal = "dde4c033-4e86-420c-a63e-0dd931031962" - OneHotArrays = "0b1bfda6-eb8a-41d2-88d8-f5af5cad476f" - Reactant = "3c362404-f566-11ee-1572-e11a4b42c853" - RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - cuDNN = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd" - oneAPI = "8f75cd03-7ff8-4ecb-9b8f-daf728133b1b" - -[[deps.MLStyle]] -git-tree-sha1 = "bc38dff0548128765760c79eb7388a4b37fae2c8" -uuid = "d8e11817-5142-5d16-987a-aa16d5891078" -version = "0.4.17" - -[[deps.MacroTools]] -deps = ["Markdown", "Random"] -git-tree-sha1 = "2fa9ee3e63fd3a4f7a9a4f4744a52f4856de82df" -uuid = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09" -version = "0.5.13" - -[[deps.ManualMemory]] -git-tree-sha1 = "bcaef4fc7a0cfe2cba636d84cda54b5e4e4ca3cd" -uuid = "d125e4d3-2237-4719-b19c-fa641b8a4667" -version = "0.1.8" - -[[deps.Markdown]] -deps = ["Base64"] -uuid = "d6f4376e-aef5-505a-96c1-9c027394607a" - -[[deps.MarkdownAST]] -deps = ["AbstractTrees", "Markdown"] -git-tree-sha1 = "465a70f0fc7d443a00dcdc3267a497397b8a3899" -uuid = "d0879d2d-cac2-40c8-9cee-1863dc0c7391" -version = "0.1.2" - -[[deps.MaybeInplace]] -deps = ["ArrayInterface", "LinearAlgebra", "MacroTools"] -git-tree-sha1 = "54e2fdc38130c05b42be423e90da3bade29b74bd" -uuid = "bb5d69b7-63fc-4a16-80bd-7e42200c7bdb" -version = "0.1.4" -weakdeps = ["SparseArrays"] - - [deps.MaybeInplace.extensions] - MaybeInplaceSparseArraysExt = "SparseArrays" - -[[deps.MbedTLS]] -deps = ["Dates", "MbedTLS_jll", "MozillaCACerts_jll", "NetworkOptions", "Random", "Sockets"] -git-tree-sha1 = "c067a280ddc25f196b5e7df3877c6b226d390aaf" -uuid = "739be429-bea8-5141-9913-cc70e7f3736d" -version = "1.1.9" - -[[deps.MbedTLS_jll]] -deps = ["Artifacts", "Libdl"] -uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1" -version = "2.28.2+1" - -[[deps.Measures]] -git-tree-sha1 = "c13304c81eec1ed3af7fc20e75fb6b26092a1102" -uuid = "442fdcdd-2543-5da2-b0f3-8c86c306513e" -version = "0.3.2" - -[[deps.Missings]] -deps = ["DataAPI"] -git-tree-sha1 = "ec4f7fbeab05d7747bdf98eb74d130a2a2ed298d" -uuid = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28" -version = "1.2.0" - -[[deps.Mmap]] -uuid = "a63ad114-7e13-5084-954f-fe012c677804" - -[[deps.ModelingToolkit]] -deps = ["AbstractTrees", "ArrayInterface", "BlockArrays", "Combinatorics", "CommonSolve", "Compat", "ConstructionBase", "DataStructures", "DiffEqBase", "DiffEqCallbacks", "DiffEqNoiseProcess", "DiffRules", "Distributed", "Distributions", "DocStringExtensions", "DomainSets", "DynamicQuantities", "EnumX", "ExprTools", "Expronicon", "FindFirstFunctions", "ForwardDiff", "FunctionWrappers", "FunctionWrappersWrappers", "Graphs", "InteractiveUtils", "JuliaFormatter", "JumpProcesses", "Latexify", "Libdl", "LinearAlgebra", "MLStyle", "NaNMath", "NonlinearSolve", "OffsetArrays", "OrderedCollections", "PrecompileTools", "RecursiveArrayTools", "Reexport", "RuntimeGeneratedFunctions", "SciMLBase", "SciMLStructures", "Serialization", "Setfield", "SimpleNonlinearSolve", "SparseArrays", "SpecialFunctions", "StaticArrays", "SymbolicIndexingInterface", "SymbolicUtils", "Symbolics", "URIs", "UnPack", "Unitful"] -git-tree-sha1 = "51ed3a5821d9a989c662ff76e0c25ba0bd73837f" -uuid = "961ee093-0014-501f-94e3-6117800e7a78" -version = "9.54.0" - - [deps.ModelingToolkit.extensions] - MTKBifurcationKitExt = "BifurcationKit" - MTKChainRulesCoreExt = "ChainRulesCore" - MTKDeepDiffsExt = "DeepDiffs" - MTKHomotopyContinuationExt = "HomotopyContinuation" - MTKLabelledArraysExt = "LabelledArrays" - - [deps.ModelingToolkit.weakdeps] - BifurcationKit = "0f109fa4-8a5d-4b75-95aa-f515264e7665" - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - DeepDiffs = "ab62b9b5-e342-54a8-a765-a90f495de1a6" - HomotopyContinuation = "f213a82b-91d6-5c5d-acf7-10f1c761b327" - LabelledArrays = "2ee39098-c373-598a-b85f-a56591580800" - -[[deps.MonteCarloIntegration]] -deps = ["Distributions", "QuasiMonteCarlo", "Random"] -git-tree-sha1 = "722ad522068d31954b4a976b66a26aeccbf509ed" -uuid = "4886b29c-78c9-11e9-0a6e-41e1f4161f7b" -version = "0.2.0" - -[[deps.MozillaCACerts_jll]] -uuid = "14a3606d-f60d-562e-9121-12d972cd8159" -version = "2023.1.10" - -[[deps.MuladdMacro]] -git-tree-sha1 = "cac9cc5499c25554cba55cd3c30543cff5ca4fab" -uuid = "46d2c3a1-f734-5fdb-9937-b9b9aeba4221" -version = "0.2.4" - -[[deps.MultivariatePolynomials]] -deps = ["ChainRulesCore", "DataStructures", "LinearAlgebra", "MutableArithmetics"] -git-tree-sha1 = "8d39779e29f80aa6c071e7ac17101c6e31f075d7" -uuid = "102ac46a-7ee4-5c85-9060-abc95bfdeaa3" -version = "0.5.7" - -[[deps.MutableArithmetics]] -deps = ["LinearAlgebra", "SparseArrays", "Test"] -git-tree-sha1 = "a2710df6b0931f987530f59427441b21245d8f5e" -uuid = "d8a4904e-b15c-11e9-3269-09a3773c0cb0" -version = "1.6.0" - -[[deps.NLSolversBase]] -deps = ["DiffResults", "Distributed", "FiniteDiff", "ForwardDiff"] -git-tree-sha1 = "a0b464d183da839699f4c79e7606d9d186ec172c" -uuid = "d41bc354-129a-5804-8e4c-c37616107c6c" -version = "7.8.3" - -[[deps.NNlib]] -deps = ["Adapt", "Atomix", "ChainRulesCore", "GPUArraysCore", "KernelAbstractions", "LinearAlgebra", "Random", "Statistics"] -git-tree-sha1 = "1177f161cda2083543b9967d7ca2a3e24e721e13" -uuid = "872c559c-99b0-510c-b3b7-b6c96a88d5cd" -version = "0.9.26" - - [deps.NNlib.extensions] - NNlibAMDGPUExt = "AMDGPU" - NNlibCUDACUDNNExt = ["CUDA", "cuDNN"] - NNlibCUDAExt = "CUDA" - NNlibEnzymeCoreExt = "EnzymeCore" - NNlibFFTWExt = "FFTW" - NNlibForwardDiffExt = "ForwardDiff" - - [deps.NNlib.weakdeps] - AMDGPU = "21141c5a-9bdb-4563-92ae-f87d6854732e" - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - EnzymeCore = "f151be2c-9106-41f4-ab19-57ee4f262869" - FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - cuDNN = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd" - -[[deps.NVTX]] -deps = ["Colors", "JuliaNVTXCallbacks_jll", "Libdl", "NVTX_jll"] -git-tree-sha1 = "6a6f8bfaa91bb2e40ff562ab9f30dc827741daef" -uuid = "5da4648a-3479-48b8-97b9-01cb529c0a1f" -version = "0.3.5" - -[[deps.NVTX_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "ce3269ed42816bf18d500c9f63418d4b0d9f5a3b" -uuid = "e98f9f5b-d649-5603-91fd-7774390e6439" -version = "3.1.0+2" - -[[deps.NaNMath]] -deps = ["OpenLibm_jll"] -git-tree-sha1 = "0877504529a3e5c3343c6f8b4c0381e57e4387e4" -uuid = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3" -version = "1.0.2" - -[[deps.NamedTupleTools]] -git-tree-sha1 = "90914795fc59df44120fe3fff6742bb0d7adb1d0" -uuid = "d9ec5142-1e00-5aa0-9d6a-321866360f50" -version = "0.14.3" - -[[deps.NetworkOptions]] -uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908" -version = "1.2.0" - -[[deps.NonlinearSolve]] -deps = ["ADTypes", "ArrayInterface", "BracketingNonlinearSolve", "CommonSolve", "ConcreteStructs", "DiffEqBase", "DifferentiationInterface", "FastClosures", "FiniteDiff", "ForwardDiff", "LineSearch", "LinearAlgebra", "LinearSolve", "NonlinearSolveBase", "NonlinearSolveFirstOrder", "NonlinearSolveQuasiNewton", "NonlinearSolveSpectralMethods", "PrecompileTools", "Preferences", "Reexport", "SciMLBase", "SimpleNonlinearSolve", "SparseArrays", "SparseMatrixColorings", "StaticArraysCore", "SymbolicIndexingInterface"] -git-tree-sha1 = "e646d238e65928630a5f557c0676051a11504c9d" -uuid = "8913a72c-1f9b-4ce2-8d82-65094dcecaec" -version = "4.2.0" - - [deps.NonlinearSolve.extensions] - NonlinearSolveFastLevenbergMarquardtExt = "FastLevenbergMarquardt" - NonlinearSolveFixedPointAccelerationExt = "FixedPointAcceleration" - NonlinearSolveLeastSquaresOptimExt = "LeastSquaresOptim" - NonlinearSolveMINPACKExt = "MINPACK" - NonlinearSolveNLSolversExt = "NLSolvers" - NonlinearSolveNLsolveExt = ["NLsolve", "LineSearches"] - NonlinearSolvePETScExt = ["PETSc", "MPI"] - NonlinearSolveSIAMFANLEquationsExt = "SIAMFANLEquations" - NonlinearSolveSpeedMappingExt = "SpeedMapping" - NonlinearSolveSundialsExt = "Sundials" - - [deps.NonlinearSolve.weakdeps] - FastLevenbergMarquardt = "7a0df574-e128-4d35-8cbd-3d84502bf7ce" - FixedPointAcceleration = "817d07cb-a79a-5c30-9a31-890123675176" - LeastSquaresOptim = "0fc2ff8b-aaa3-5acd-a817-1944a5e08891" - LineSearches = "d3d80556-e9d4-5f37-9878-2ab0fcc64255" - MINPACK = "4854310b-de5a-5eb6-a2a5-c1dee2bd17f9" - MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195" - NLSolvers = "337daf1e-9722-11e9-073e-8b9effe078ba" - NLsolve = "2774e3e8-f4cf-5e23-947b-6d7e65073b56" - PETSc = "ace2c81b-2b5f-4b1e-a30d-d662738edfe0" - SIAMFANLEquations = "084e46ad-d928-497d-ad5e-07fa361a48c4" - SpeedMapping = "f1835b91-879b-4a3f-a438-e4baacf14412" - Sundials = "c3572dad-4567-51f8-b174-8c6c989267f4" - -[[deps.NonlinearSolveBase]] -deps = ["ADTypes", "Adapt", "ArrayInterface", "CommonSolve", "Compat", "ConcreteStructs", "DifferentiationInterface", "EnzymeCore", "FastClosures", "FunctionProperties", "LinearAlgebra", "Markdown", "MaybeInplace", "Preferences", "Printf", "RecursiveArrayTools", "SciMLBase", "SciMLJacobianOperators", "SciMLOperators", "StaticArraysCore", "SymbolicIndexingInterface", "TimerOutputs"] -git-tree-sha1 = "46772fc296d9f16c3ab78a8ef00008ab075de677" -uuid = "be0214bd-f91f-a760-ac4e-3421ce2b2da0" -version = "1.3.3" - - [deps.NonlinearSolveBase.extensions] - NonlinearSolveBaseBandedMatricesExt = "BandedMatrices" - NonlinearSolveBaseDiffEqBaseExt = "DiffEqBase" - NonlinearSolveBaseForwardDiffExt = "ForwardDiff" - NonlinearSolveBaseLineSearchExt = "LineSearch" - NonlinearSolveBaseLinearSolveExt = "LinearSolve" - NonlinearSolveBaseSparseArraysExt = "SparseArrays" - NonlinearSolveBaseSparseMatrixColoringsExt = "SparseMatrixColorings" - - [deps.NonlinearSolveBase.weakdeps] - BandedMatrices = "aae01518-5342-5314-be14-df237901396f" - DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e" - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - LineSearch = "87fe0de2-c867-4266-b59a-2f0a94fc965b" - LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae" - SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" - SparseMatrixColorings = "0a514795-09f3-496d-8182-132a7b665d35" - -[[deps.NonlinearSolveFirstOrder]] -deps = ["ADTypes", "ArrayInterface", "CommonSolve", "ConcreteStructs", "DiffEqBase", "FiniteDiff", "ForwardDiff", "LineSearch", "LinearAlgebra", "LinearSolve", "MaybeInplace", "NonlinearSolveBase", "PrecompileTools", "Reexport", "SciMLBase", "SciMLJacobianOperators", "Setfield", "StaticArraysCore"] -git-tree-sha1 = "05a42691900f8f14e930478d5638a5f0fc973601" -uuid = "5959db7a-ea39-4486-b5fe-2dd0bf03d60d" -version = "1.1.0" - -[[deps.NonlinearSolveQuasiNewton]] -deps = ["ArrayInterface", "CommonSolve", "ConcreteStructs", "DiffEqBase", "LinearAlgebra", "LinearSolve", "MaybeInplace", "NonlinearSolveBase", "PrecompileTools", "Reexport", "SciMLBase", "SciMLOperators", "StaticArraysCore"] -git-tree-sha1 = "066d4940938f4bb5fd1ce146e61a373f40b89d31" -uuid = "9a2c21bd-3a47-402d-9113-8faf9a0ee114" -version = "1.0.0" - -[[deps.NonlinearSolveSpectralMethods]] -deps = ["CommonSolve", "ConcreteStructs", "DiffEqBase", "LineSearch", "MaybeInplace", "NonlinearSolveBase", "PrecompileTools", "Reexport", "SciMLBase"] -git-tree-sha1 = "cc97c44e396ab820401c8c404bc1fd18d4c884bd" -uuid = "26075421-4e9a-44e1-8bd1-420ed7ad02b2" -version = "1.0.0" - -[[deps.ObjectFile]] -deps = ["Reexport", "StructIO"] -git-tree-sha1 = "7249afa1c4dfd86bfbcc9b28939ab6ef844f4e11" -uuid = "d8793406-e978-5875-9003-1fc021f44a92" -version = "0.4.2" - -[[deps.OffsetArrays]] -git-tree-sha1 = "1a27764e945a152f7ca7efa04de513d473e9542e" -uuid = "6fe1bfb0-de20-5000-8ca7-80f57d26f881" -version = "1.14.1" -weakdeps = ["Adapt"] - - [deps.OffsetArrays.extensions] - OffsetArraysAdaptExt = "Adapt" - -[[deps.Ogg_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "887579a3eb005446d514ab7aeac5d1d027658b8f" -uuid = "e7412a2a-1a6e-54c0-be00-318e2571c051" -version = "1.3.5+1" - -[[deps.OpenBLAS_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "Libdl"] -uuid = "4536629a-c528-5b80-bd46-f80d51c5b363" -version = "0.3.23+4" - -[[deps.OpenLibm_jll]] -deps = ["Artifacts", "Libdl"] -uuid = "05823500-19ac-5b8b-9628-191a04bc5112" -version = "0.8.1+2" - -[[deps.OpenSSL]] -deps = ["BitFlags", "Dates", "MozillaCACerts_jll", "OpenSSL_jll", "Sockets"] -git-tree-sha1 = "38cb508d080d21dc1128f7fb04f20387ed4c0af4" -uuid = "4d8831e6-92b7-49fb-bdf8-b643e874388c" -version = "1.4.3" - -[[deps.OpenSSL_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "7493f61f55a6cce7325f197443aa80d32554ba10" -uuid = "458c3c95-2e84-50aa-8efc-19380b2a3a95" -version = "3.0.15+1" - -[[deps.OpenSpecFun_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "13652491f6856acfd2db29360e1bbcd4565d04f1" -uuid = "efe28fd5-8261-553b-a9e1-b2916fc3738e" -version = "0.5.5+0" - -[[deps.Optim]] -deps = ["Compat", "FillArrays", "ForwardDiff", "LineSearches", "LinearAlgebra", "NLSolversBase", "NaNMath", "Parameters", "PositiveFactorizations", "Printf", "SparseArrays", "StatsBase"] -git-tree-sha1 = "ab7edad78cdef22099f43c54ef77ac63c2c9cc64" -uuid = "429524aa-4258-5aef-a3af-852621145aeb" -version = "1.10.0" - - [deps.Optim.extensions] - OptimMOIExt = "MathOptInterface" - - [deps.Optim.weakdeps] - MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" - -[[deps.Optimisers]] -deps = ["ChainRulesCore", "Functors", "LinearAlgebra", "Random", "Statistics"] -git-tree-sha1 = "c9ff5c686240c31eb8570b662dd1f66f4b183116" -uuid = "3bd65402-5787-11e9-1adc-39752487f4e2" -version = "0.3.4" - -[[deps.Optimization]] -deps = ["ADTypes", "ArrayInterface", "ConsoleProgressMonitor", "DocStringExtensions", "LBFGSB", "LinearAlgebra", "Logging", "LoggingExtras", "OptimizationBase", "Printf", "ProgressLogging", "Reexport", "SciMLBase", "SparseArrays", "TerminalLoggers"] -git-tree-sha1 = "4b59eef21418fbdf28afbe2d7e945d8efbe5057d" -uuid = "7f7a1694-90dd-40f0-9382-eb1efda571ba" -version = "4.0.5" - -[[deps.OptimizationBBO]] -deps = ["BlackBoxOptim", "Optimization", "Reexport"] -git-tree-sha1 = "62d34beecb9af84159045cfe2b09691b0fb66598" -uuid = "3e6eede4-6085-4f62-9a71-46d9bc1eb92b" -version = "0.4.0" - -[[deps.OptimizationBase]] -deps = ["ADTypes", "ArrayInterface", "DifferentiationInterface", "DocStringExtensions", "FastClosures", "LinearAlgebra", "PDMats", "Reexport", "Requires", "SciMLBase", "SparseArrays", "SparseConnectivityTracer", "SparseMatrixColorings"] -git-tree-sha1 = "9e8569bc1c511c425fdc63f7ee41f2da057f8662" -uuid = "bca83a33-5cc9-4baa-983d-23429ab6bcbb" -version = "2.4.0" - - [deps.OptimizationBase.extensions] - OptimizationEnzymeExt = "Enzyme" - OptimizationFiniteDiffExt = "FiniteDiff" - OptimizationForwardDiffExt = "ForwardDiff" - OptimizationMLDataDevicesExt = "MLDataDevices" - OptimizationMLUtilsExt = "MLUtils" - OptimizationMTKExt = "ModelingToolkit" - OptimizationReverseDiffExt = "ReverseDiff" - OptimizationSymbolicAnalysisExt = "SymbolicAnalysis" - OptimizationZygoteExt = "Zygote" - - [deps.OptimizationBase.weakdeps] - Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" - FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41" - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - MLDataDevices = "7e8f7934-dd98-4c1a-8fe8-92b47a384d40" - MLUtils = "f1d291b0-491e-4a28-83b9-f70985020b54" - ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - SymbolicAnalysis = "4297ee4d-0239-47d8-ba5d-195ecdf594fe" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.OptimizationOptimisers]] -deps = ["Optimisers", "Optimization", "Printf", "ProgressLogging", "Reexport"] -git-tree-sha1 = "46198dfc26b392d6194c6d24a9ec26a7f17663bd" -uuid = "42dfb2eb-d2b4-4451-abcd-913932933ac1" -version = "0.3.4" - -[[deps.Opus_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "6703a85cb3781bd5909d48730a67205f3f31a575" -uuid = "91d4177d-7536-5919-b921-800302f37372" -version = "1.3.3+0" - -[[deps.OrderedCollections]] -git-tree-sha1 = "12f1439c4f986bb868acda6ea33ebc78e19b95ad" -uuid = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" -version = "1.7.0" - -[[deps.OrdinaryDiffEq]] -deps = ["ADTypes", "Adapt", "ArrayInterface", "DataStructures", "DiffEqBase", "DocStringExtensions", "EnumX", "ExponentialUtilities", "FastBroadcast", "FastClosures", "FillArrays", "FiniteDiff", "ForwardDiff", "FunctionWrappersWrappers", "InteractiveUtils", "LineSearches", "LinearAlgebra", "LinearSolve", "Logging", "MacroTools", "MuladdMacro", "NonlinearSolve", "OrdinaryDiffEqAdamsBashforthMoulton", "OrdinaryDiffEqBDF", "OrdinaryDiffEqCore", "OrdinaryDiffEqDefault", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqExplicitRK", "OrdinaryDiffEqExponentialRK", "OrdinaryDiffEqExtrapolation", "OrdinaryDiffEqFIRK", "OrdinaryDiffEqFeagin", "OrdinaryDiffEqFunctionMap", "OrdinaryDiffEqHighOrderRK", "OrdinaryDiffEqIMEXMultistep", "OrdinaryDiffEqLinear", "OrdinaryDiffEqLowOrderRK", "OrdinaryDiffEqLowStorageRK", "OrdinaryDiffEqNonlinearSolve", "OrdinaryDiffEqNordsieck", "OrdinaryDiffEqPDIRK", "OrdinaryDiffEqPRK", "OrdinaryDiffEqQPRK", "OrdinaryDiffEqRKN", "OrdinaryDiffEqRosenbrock", "OrdinaryDiffEqSDIRK", "OrdinaryDiffEqSSPRK", "OrdinaryDiffEqStabilizedIRK", "OrdinaryDiffEqStabilizedRK", "OrdinaryDiffEqSymplecticRK", "OrdinaryDiffEqTsit5", "OrdinaryDiffEqVerner", "Polyester", "PreallocationTools", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "SciMLBase", "SciMLOperators", "SciMLStructures", "SimpleNonlinearSolve", "SimpleUnPack", "SparseArrays", "SparseDiffTools", "Static", "StaticArrayInterface", "StaticArrays", "TruncatedStacktraces"] -git-tree-sha1 = "36ce9bfc14a4b3dcf1490e80b5f1f4d35bfddf39" -uuid = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" -version = "6.90.1" - -[[deps.OrdinaryDiffEqAdamsBashforthMoulton]] -deps = ["ADTypes", "DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqLowOrderRK", "Polyester", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "8e3c5978d0531a961f70d2f2730d1d16ed3bbd12" -uuid = "89bda076-bce5-4f1c-845f-551c83cdda9a" -version = "1.1.0" - -[[deps.OrdinaryDiffEqBDF]] -deps = ["ArrayInterface", "DiffEqBase", "FastBroadcast", "LinearAlgebra", "MacroTools", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "OrdinaryDiffEqSDIRK", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "StaticArrays", "TruncatedStacktraces"] -git-tree-sha1 = "b4498d40bf35da0b6d22652ff2e9d8820590b3c6" -uuid = "6ad6398a-0878-4a85-9266-38940aa047c8" -version = "1.1.2" - -[[deps.OrdinaryDiffEqCore]] -deps = ["ADTypes", "Accessors", "Adapt", "ArrayInterface", "DataStructures", "DiffEqBase", "DocStringExtensions", "EnumX", "FastBroadcast", "FastClosures", "FastPower", "FillArrays", "FunctionWrappersWrappers", "InteractiveUtils", "LinearAlgebra", "Logging", "MacroTools", "MuladdMacro", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "SciMLBase", "SciMLOperators", "SciMLStructures", "SimpleUnPack", "Static", "StaticArrayInterface", "StaticArraysCore", "SymbolicIndexingInterface", "TruncatedStacktraces"] -git-tree-sha1 = "c7f395034602c3e4d40ece93dc2c9f066f0ce61f" -uuid = "bbf590c4-e513-4bbe-9b18-05decba2e5d8" -version = "1.13.0" -weakdeps = ["EnzymeCore"] - - [deps.OrdinaryDiffEqCore.extensions] - OrdinaryDiffEqCoreEnzymeCoreExt = "EnzymeCore" - -[[deps.OrdinaryDiffEqDefault]] -deps = ["DiffEqBase", "EnumX", "LinearAlgebra", "LinearSolve", "OrdinaryDiffEqBDF", "OrdinaryDiffEqCore", "OrdinaryDiffEqRosenbrock", "OrdinaryDiffEqTsit5", "OrdinaryDiffEqVerner", "PrecompileTools", "Preferences", "Reexport"] -git-tree-sha1 = "c8223e487d58bef28a3535b33ddf8ffdb44f46fb" -uuid = "50262376-6c5a-4cf5-baba-aaf4f84d72d7" -version = "1.1.0" - -[[deps.OrdinaryDiffEqDifferentiation]] -deps = ["ADTypes", "ArrayInterface", "DiffEqBase", "FastBroadcast", "FiniteDiff", "ForwardDiff", "FunctionWrappersWrappers", "LinearAlgebra", "LinearSolve", "OrdinaryDiffEqCore", "SciMLBase", "SparseArrays", "SparseDiffTools", "StaticArrayInterface", "StaticArrays"] -git-tree-sha1 = "8977f283a7d89c5d5c06c933467ed4af0a99f2f7" -uuid = "4302a76b-040a-498a-8c04-15b101fed76b" -version = "1.2.0" - -[[deps.OrdinaryDiffEqExplicitRK]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "TruncatedStacktraces"] -git-tree-sha1 = "4dbce3f9e6974567082ce5176e21aab0224a69e9" -uuid = "9286f039-9fbf-40e8-bf65-aa933bdc4db0" -version = "1.1.0" - -[[deps.OrdinaryDiffEqExponentialRK]] -deps = ["DiffEqBase", "ExponentialUtilities", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqSDIRK", "OrdinaryDiffEqVerner", "RecursiveArrayTools", "Reexport", "SciMLBase"] -git-tree-sha1 = "f63938b8e9e5d3a05815defb3ebdbdcf61ec0a74" -uuid = "e0540318-69ee-4070-8777-9e2de6de23de" -version = "1.1.0" - -[[deps.OrdinaryDiffEqExtrapolation]] -deps = ["DiffEqBase", "FastBroadcast", "FastPower", "LinearSolve", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "Polyester", "RecursiveArrayTools", "Reexport"] -git-tree-sha1 = "048bcccc8f59c20d5b4ad268eef4d7d21c005a94" -uuid = "becaefa8-8ca2-5cf9-886d-c06f3d2bd2c4" -version = "1.2.1" - -[[deps.OrdinaryDiffEqFIRK]] -deps = ["DiffEqBase", "FastBroadcast", "FastPower", "LinearAlgebra", "LinearSolve", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "RecursiveArrayTools", "Reexport", "SciMLOperators"] -git-tree-sha1 = "7a6e3996dc0850aee6cdc10c8afa377242fce702" -uuid = "5960d6e9-dd7a-4743-88e7-cf307b64f125" -version = "1.5.0" - -[[deps.OrdinaryDiffEqFeagin]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "a7cc74d3433db98e59dc3d58bc28174c6c290adf" -uuid = "101fe9f7-ebb6-4678-b671-3a81e7194747" -version = "1.1.0" - -[[deps.OrdinaryDiffEqFunctionMap]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "SciMLBase", "Static"] -git-tree-sha1 = "925a91583d1ab84f1f0fea121be1abf1179c5926" -uuid = "d3585ca7-f5d3-4ba6-8057-292ed1abd90f" -version = "1.1.1" - -[[deps.OrdinaryDiffEqHighOrderRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "103e017ff186ac39d731904045781c9bacfca2b0" -uuid = "d28bc4f8-55e1-4f49-af69-84c1a99f0f58" -version = "1.1.0" - -[[deps.OrdinaryDiffEqIMEXMultistep]] -deps = ["DiffEqBase", "FastBroadcast", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "Reexport"] -git-tree-sha1 = "9f8f52aad2399d7714b400ff9d203254b0a89c4a" -uuid = "9f002381-b378-40b7-97a6-27a27c83f129" -version = "1.1.0" - -[[deps.OrdinaryDiffEqLinear]] -deps = ["DiffEqBase", "ExponentialUtilities", "LinearAlgebra", "OrdinaryDiffEqCore", "OrdinaryDiffEqTsit5", "OrdinaryDiffEqVerner", "RecursiveArrayTools", "Reexport", "SciMLBase", "SciMLOperators"] -git-tree-sha1 = "0f81a77ede3da0dc714ea61e81c76b25db4ab87a" -uuid = "521117fe-8c41-49f8-b3b6-30780b3f0fb5" -version = "1.1.0" - -[[deps.OrdinaryDiffEqLowOrderRK]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "SciMLBase", "Static"] -git-tree-sha1 = "d4bb32e09d6b68ce2eb45fb81001eab46f60717a" -uuid = "1344f307-1e59-4825-a18e-ace9aa3fa4c6" -version = "1.2.0" - -[[deps.OrdinaryDiffEqLowStorageRK]] -deps = ["Adapt", "DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static", "StaticArrays"] -git-tree-sha1 = "590561f3af623d5485d070b4d7044f8854535f5a" -uuid = "b0944070-b475-4768-8dec-fb6eb410534d" -version = "1.2.1" - -[[deps.OrdinaryDiffEqNonlinearSolve]] -deps = ["ADTypes", "ArrayInterface", "DiffEqBase", "FastBroadcast", "FastClosures", "ForwardDiff", "LinearAlgebra", "LinearSolve", "MuladdMacro", "NonlinearSolve", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "PreallocationTools", "RecursiveArrayTools", "SciMLBase", "SciMLOperators", "SciMLStructures", "SimpleNonlinearSolve", "StaticArrays"] -git-tree-sha1 = "3a3eb0b7ef3f996c468d6f8013eac9525bcfd788" -uuid = "127b3ac7-2247-4354-8eb6-78cf4e7c58e8" -version = "1.3.0" - -[[deps.OrdinaryDiffEqNordsieck]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqTsit5", "Polyester", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "ef44754f10e0dfb9bb55ded382afed44cd94ab57" -uuid = "c9986a66-5c92-4813-8696-a7ec84c806c8" -version = "1.1.0" - -[[deps.OrdinaryDiffEqPDIRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "Polyester", "Reexport", "StaticArrays"] -git-tree-sha1 = "a8b7f8107c477e07c6a6c00d1d66cac68b801bbc" -uuid = "5dd0a6cf-3d4b-4314-aa06-06d4e299bc89" -version = "1.1.0" - -[[deps.OrdinaryDiffEqPRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "Reexport"] -git-tree-sha1 = "da525d277962a1b76102c79f30cb0c31e13fe5b9" -uuid = "5b33eab2-c0f1-4480-b2c3-94bc1e80bda1" -version = "1.1.0" - -[[deps.OrdinaryDiffEqQPRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "332f9d17d0229218f66a73492162267359ba85e9" -uuid = "04162be5-8125-4266-98ed-640baecc6514" -version = "1.1.0" - -[[deps.OrdinaryDiffEqRKN]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "RecursiveArrayTools", "Reexport"] -git-tree-sha1 = "41c09d9c20877546490f907d8dffdd52690dd65f" -uuid = "af6ede74-add8-4cfd-b1df-9a4dbb109d7a" -version = "1.1.0" - -[[deps.OrdinaryDiffEqRosenbrock]] -deps = ["ADTypes", "DiffEqBase", "FastBroadcast", "FiniteDiff", "ForwardDiff", "LinearAlgebra", "LinearSolve", "MacroTools", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "760a51a626d0065455847e4a3f788b07e86e5090" -uuid = "43230ef6-c299-4910-a778-202eb28ce4ce" -version = "1.3.1" - -[[deps.OrdinaryDiffEqSDIRK]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MacroTools", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "RecursiveArrayTools", "Reexport", "SciMLBase", "TruncatedStacktraces"] -git-tree-sha1 = "f6683803a58de600ab7a26d2f49411c9923e9721" -uuid = "2d112036-d095-4a1e-ab9a-08536f3ecdbf" -version = "1.1.0" - -[[deps.OrdinaryDiffEqSSPRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static", "StaticArrays"] -git-tree-sha1 = "7dbe4ac56f930df5e9abd003cedb54e25cbbea86" -uuid = "669c94d9-1f4b-4b64-b377-1aa079aa2388" -version = "1.2.0" - -[[deps.OrdinaryDiffEqStabilizedIRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "RecursiveArrayTools", "Reexport", "StaticArrays"] -git-tree-sha1 = "348fd6def9a88518715425025eadd58517017325" -uuid = "e3e12d00-db14-5390-b879-ac3dd2ef6296" -version = "1.1.0" - -[[deps.OrdinaryDiffEqStabilizedRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "StaticArrays"] -git-tree-sha1 = "1b0d894c880e25f7d0b022d7257638cf8ce5b311" -uuid = "358294b1-0aab-51c3-aafe-ad5ab194a2ad" -version = "1.1.0" - -[[deps.OrdinaryDiffEqSymplecticRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "RecursiveArrayTools", "Reexport"] -git-tree-sha1 = "4e8b8c8b81df3df17e2eb4603115db3b30a88235" -uuid = "fa646aed-7ef9-47eb-84c4-9443fc8cbfa8" -version = "1.1.0" - -[[deps.OrdinaryDiffEqTsit5]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static", "TruncatedStacktraces"] -git-tree-sha1 = "96552f7d4619fabab4038a29ed37dd55e9eb513a" -uuid = "b1df2697-797e-41e3-8120-5422d3b24e4a" -version = "1.1.0" - -[[deps.OrdinaryDiffEqVerner]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static", "TruncatedStacktraces"] -git-tree-sha1 = "81d7841e73e385b9925d5c8e4427f2adcdda55db" -uuid = "79d7bb75-1356-48c1-b8c0-6832512096c2" -version = "1.1.1" - -[[deps.PCRE2_jll]] -deps = ["Artifacts", "Libdl"] -uuid = "efcefdf7-47ab-520b-bdef-62a2eaa19f15" -version = "10.42.0+1" - -[[deps.PDMats]] -deps = ["LinearAlgebra", "SparseArrays", "SuiteSparse"] -git-tree-sha1 = "949347156c25054de2db3b166c52ac4728cbad65" -uuid = "90014a1f-27ba-587c-ab20-58faa44d9150" -version = "0.11.31" - -[[deps.PackageExtensionCompat]] -git-tree-sha1 = "fb28e33b8a95c4cee25ce296c817d89cc2e53518" -uuid = "65ce6f38-6b18-4e1d-a461-8949797d7930" -version = "1.0.2" -weakdeps = ["Requires", "TOML"] - -[[deps.Pango_jll]] -deps = ["Artifacts", "Cairo_jll", "Fontconfig_jll", "FreeType2_jll", "FriBidi_jll", "Glib_jll", "HarfBuzz_jll", "JLLWrappers", "Libdl"] -git-tree-sha1 = "e127b609fb9ecba6f201ba7ab753d5a605d53801" -uuid = "36c8627f-9965-5494-a995-c6b170f724f3" -version = "1.54.1+0" - -[[deps.ParameterSchedulers]] -deps = ["InfiniteArrays", "Optimisers"] -git-tree-sha1 = "c62f0da0663704d0472ae578c9bb802c44e70a4c" -uuid = "d7d3b36b-41b8-4d0d-a2bf-768c6151755e" -version = "0.4.3" - -[[deps.Parameters]] -deps = ["OrderedCollections", "UnPack"] -git-tree-sha1 = "34c0e9ad262e5f7fc75b10a9952ca7692cfc5fbe" -uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a" -version = "0.12.3" - -[[deps.Parsers]] -deps = ["Dates", "PrecompileTools", "UUIDs"] -git-tree-sha1 = "8489905bcdbcfac64d1daa51ca07c0d8f0283821" -uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0" -version = "2.8.1" - -[[deps.Pipe]] -git-tree-sha1 = "6842804e7867b115ca9de748a0cf6b364523c16d" -uuid = "b98c9c47-44ae-5843-9183-064241ee97a0" -version = "1.3.0" - -[[deps.Pixman_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "LLVMOpenMP_jll", "Libdl"] -git-tree-sha1 = "35621f10a7531bc8fa58f74610b1bfb70a3cfc6b" -uuid = "30392449-352a-5448-841d-b1acce4e97dc" -version = "0.43.4+0" - -[[deps.Pkg]] -deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"] -uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" -version = "1.10.0" - -[[deps.PlotThemes]] -deps = ["PlotUtils", "Statistics"] -git-tree-sha1 = "41031ef3a1be6f5bbbf3e8073f210556daeae5ca" -uuid = "ccf2f8ad-2431-5c83-bf29-c5338b663b6a" -version = "3.3.0" - -[[deps.PlotUtils]] -deps = ["ColorSchemes", "Colors", "Dates", "PrecompileTools", "Printf", "Random", "Reexport", "StableRNGs", "Statistics"] -git-tree-sha1 = "3ca9a356cd2e113c420f2c13bea19f8d3fb1cb18" -uuid = "995b91a9-d308-5afd-9ec6-746e21dbc043" -version = "1.4.3" - -[[deps.Plots]] -deps = ["Base64", "Contour", "Dates", "Downloads", "FFMPEG", "FixedPointNumbers", "GR", "JLFzf", "JSON", "LaTeXStrings", "Latexify", "LinearAlgebra", "Measures", "NaNMath", "Pkg", "PlotThemes", "PlotUtils", "PrecompileTools", "Printf", "REPL", "Random", "RecipesBase", "RecipesPipeline", "Reexport", "RelocatableFolders", "Requires", "Scratch", "Showoff", "SparseArrays", "Statistics", "StatsBase", "TOML", "UUIDs", "UnicodeFun", "UnitfulLatexify", "Unzip"] -git-tree-sha1 = "dae01f8c2e069a683d3a6e17bbae5070ab94786f" -uuid = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" -version = "1.40.9" - - [deps.Plots.extensions] - FileIOExt = "FileIO" - GeometryBasicsExt = "GeometryBasics" - IJuliaExt = "IJulia" - ImageInTerminalExt = "ImageInTerminal" - UnitfulExt = "Unitful" - - [deps.Plots.weakdeps] - FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" - GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326" - IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a" - ImageInTerminal = "d8c32880-2388-543b-8c61-d9f865259254" - Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" - -[[deps.PoissonRandom]] -deps = ["Random"] -git-tree-sha1 = "a0f1159c33f846aa77c3f30ebbc69795e5327152" -uuid = "e409e4f3-bfea-5376-8464-e040bb5c01ab" -version = "0.4.4" - -[[deps.Polyester]] -deps = ["ArrayInterface", "BitTwiddlingConvenienceFunctions", "CPUSummary", "IfElse", "ManualMemory", "PolyesterWeave", "Static", "StaticArrayInterface", "StrideArraysCore", "ThreadingUtilities"] -git-tree-sha1 = "6d38fea02d983051776a856b7df75b30cf9a3c1f" -uuid = "f517fe37-dbe3-4b94-8317-1923a5111588" -version = "0.7.16" - -[[deps.PolyesterWeave]] -deps = ["BitTwiddlingConvenienceFunctions", "CPUSummary", "IfElse", "Static", "ThreadingUtilities"] -git-tree-sha1 = "645bed98cd47f72f67316fd42fc47dee771aefcd" -uuid = "1d0040c9-8b98-4ee7-8388-3f51789ca0ad" -version = "0.2.2" - -[[deps.PooledArrays]] -deps = ["DataAPI", "Future"] -git-tree-sha1 = "36d8b4b899628fb92c2749eb488d884a926614d3" -uuid = "2dfb63ee-cc39-5dd5-95bd-886bf059d720" -version = "1.4.3" - -[[deps.PositiveFactorizations]] -deps = ["LinearAlgebra"] -git-tree-sha1 = "17275485f373e6673f7e7f97051f703ed5b15b20" -uuid = "85a6dd25-e78a-55b7-8502-1745935b8125" -version = "0.2.4" - -[[deps.PreallocationTools]] -deps = ["Adapt", "ArrayInterface", "ForwardDiff"] -git-tree-sha1 = "6c62ce45f268f3f958821a1e5192cf91c75ae89c" -uuid = "d236fae5-4411-538c-8e31-a6e3d9e00b46" -version = "0.4.24" -weakdeps = ["ReverseDiff"] - - [deps.PreallocationTools.extensions] - PreallocationToolsReverseDiffExt = "ReverseDiff" - -[[deps.PrecompileTools]] -deps = ["Preferences"] -git-tree-sha1 = "5aa36f7049a63a1528fe8f7c3f2113413ffd4e1f" -uuid = "aea7be01-6a6a-4083-8856-8a6e6704d82a" -version = "1.2.1" - -[[deps.Preferences]] -deps = ["TOML"] -git-tree-sha1 = "9306f6085165d270f7e3db02af26a400d580f5c6" -uuid = "21216c6a-2e73-6563-6e65-726566657250" -version = "1.4.3" - -[[deps.PrettyTables]] -deps = ["Crayons", "LaTeXStrings", "Markdown", "PrecompileTools", "Printf", "Reexport", "StringManipulation", "Tables"] -git-tree-sha1 = "1101cd475833706e4d0e7b122218257178f48f34" -uuid = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d" -version = "2.4.0" - -[[deps.Primes]] -deps = ["IntegerMathUtils"] -git-tree-sha1 = "cb420f77dc474d23ee47ca8d14c90810cafe69e7" -uuid = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae" -version = "0.5.6" - -[[deps.Printf]] -deps = ["Unicode"] -uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7" - -[[deps.Profile]] -deps = ["Printf"] -uuid = "9abbd945-dff8-562f-b5e8-e1ebf5ef1b79" - -[[deps.ProgressLogging]] -deps = ["Logging", "SHA", "UUIDs"] -git-tree-sha1 = "80d919dee55b9c50e8d9e2da5eeafff3fe58b539" -uuid = "33c8b6b6-d38a-422a-b730-caa89a2f386c" -version = "0.1.4" - -[[deps.ProgressMeter]] -deps = ["Distributed", "Printf"] -git-tree-sha1 = "8f6bc219586aef8baf0ff9a5fe16ee9c70cb65e4" -uuid = "92933f4c-e287-5a05-a399-4b506db050ca" -version = "1.10.2" - -[[deps.PtrArrays]] -git-tree-sha1 = "77a42d78b6a92df47ab37e177b2deac405e1c88f" -uuid = "43287f4e-b6f4-7ad1-bb20-aadabca52c3d" -version = "1.2.1" - -[[deps.Qt6Base_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "Fontconfig_jll", "Glib_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "OpenSSL_jll", "Vulkan_Loader_jll", "Xorg_libSM_jll", "Xorg_libXext_jll", "Xorg_libXrender_jll", "Xorg_libxcb_jll", "Xorg_xcb_util_cursor_jll", "Xorg_xcb_util_image_jll", "Xorg_xcb_util_keysyms_jll", "Xorg_xcb_util_renderutil_jll", "Xorg_xcb_util_wm_jll", "Zlib_jll", "libinput_jll", "xkbcommon_jll"] -git-tree-sha1 = "492601870742dcd38f233b23c3ec629628c1d724" -uuid = "c0090381-4147-56d7-9ebc-da0b1113ec56" -version = "6.7.1+1" - -[[deps.Qt6Declarative_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Qt6Base_jll", "Qt6ShaderTools_jll"] -git-tree-sha1 = "e5dd466bf2569fe08c91a2cc29c1003f4797ac3b" -uuid = "629bc702-f1f5-5709-abd5-49b8460ea067" -version = "6.7.1+2" - -[[deps.Qt6ShaderTools_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Qt6Base_jll"] -git-tree-sha1 = "1a180aeced866700d4bebc3120ea1451201f16bc" -uuid = "ce943373-25bb-56aa-8eca-768745ed7b5a" -version = "6.7.1+1" - -[[deps.Qt6Wayland_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Qt6Base_jll", "Qt6Declarative_jll"] -git-tree-sha1 = "729927532d48cf79f49070341e1d918a65aba6b0" -uuid = "e99dba38-086e-5de3-a5b1-6e4c66e897c3" -version = "6.7.1+1" - -[[deps.QuadGK]] -deps = ["DataStructures", "LinearAlgebra"] -git-tree-sha1 = "cda3b045cf9ef07a08ad46731f5a3165e56cf3da" -uuid = "1fd47b50-473d-5c70-9696-f719f8f3bcdc" -version = "2.11.1" -weakdeps = ["Enzyme"] - - [deps.QuadGK.extensions] - QuadGKEnzymeExt = "Enzyme" - -[[deps.QuasiMonteCarlo]] -deps = ["Accessors", "ConcreteStructs", "LatticeRules", "LinearAlgebra", "Primes", "Random", "Requires", "Sobol", "StatsBase"] -git-tree-sha1 = "cc086f8485bce77b6187141e1413c3b55f9a4341" -uuid = "8a4e6c94-4038-4cdc-81c3-7e6ffdb2a71b" -version = "0.3.3" -weakdeps = ["Distributions"] - - [deps.QuasiMonteCarlo.extensions] - QuasiMonteCarloDistributionsExt = "Distributions" - -[[deps.REPL]] -deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"] -uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb" - -[[deps.Random]] -deps = ["SHA"] -uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" - -[[deps.Random123]] -deps = ["Random", "RandomNumbers"] -git-tree-sha1 = "4743b43e5a9c4a2ede372de7061eed81795b12e7" -uuid = "74087812-796a-5b5d-8853-05524746bad3" -version = "1.7.0" - -[[deps.RandomNumbers]] -deps = ["Random"] -git-tree-sha1 = "c6ec94d2aaba1ab2ff983052cf6a606ca5985902" -uuid = "e6cf234a-135c-5ec9-84dd-332b85af5143" -version = "1.6.0" - -[[deps.Ratios]] -deps = ["Requires"] -git-tree-sha1 = "1342a47bf3260ee108163042310d26f2be5ec90b" -uuid = "c84ed2f1-dad5-54f0-aa8e-dbefe2724439" -version = "0.4.5" -weakdeps = ["FixedPointNumbers"] - - [deps.Ratios.extensions] - RatiosFixedPointNumbersExt = "FixedPointNumbers" - -[[deps.RealDot]] -deps = ["LinearAlgebra"] -git-tree-sha1 = "9f0a1b71baaf7650f4fa8a1d168c7fb6ee41f0c9" -uuid = "c1ae055f-0cd5-4b69-90a6-9a35b1a98df9" -version = "0.1.0" - -[[deps.RecipesBase]] -deps = ["PrecompileTools"] -git-tree-sha1 = "5c3d09cc4f31f5fc6af001c250bf1278733100ff" -uuid = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" -version = "1.3.4" - -[[deps.RecipesPipeline]] -deps = ["Dates", "NaNMath", "PlotUtils", "PrecompileTools", "RecipesBase"] -git-tree-sha1 = "45cf9fd0ca5839d06ef333c8201714e888486342" -uuid = "01d81517-befc-4cb6-b9ec-a95719d0359c" -version = "0.6.12" - -[[deps.RecursiveArrayTools]] -deps = ["Adapt", "ArrayInterface", "DocStringExtensions", "GPUArraysCore", "IteratorInterfaceExtensions", "LinearAlgebra", "RecipesBase", "StaticArraysCore", "Statistics", "SymbolicIndexingInterface", "Tables"] -git-tree-sha1 = "32f824db4e5bab64e25a12b22483a30a6b813d08" -uuid = "731186ca-8d62-57ce-b412-fbd966d074cd" -version = "3.27.4" - - [deps.RecursiveArrayTools.extensions] - RecursiveArrayToolsFastBroadcastExt = "FastBroadcast" - RecursiveArrayToolsForwardDiffExt = "ForwardDiff" - RecursiveArrayToolsMeasurementsExt = "Measurements" - RecursiveArrayToolsMonteCarloMeasurementsExt = "MonteCarloMeasurements" - RecursiveArrayToolsReverseDiffExt = ["ReverseDiff", "Zygote"] - RecursiveArrayToolsSparseArraysExt = ["SparseArrays"] - RecursiveArrayToolsStructArraysExt = "StructArrays" - RecursiveArrayToolsTrackerExt = "Tracker" - RecursiveArrayToolsZygoteExt = "Zygote" - - [deps.RecursiveArrayTools.weakdeps] - FastBroadcast = "7034ab61-46d4-4ed7-9d0f-46aef9175898" - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7" - MonteCarloMeasurements = "0987c9cc-fe09-11e8-30f0-b96dd679fdca" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" - StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.RecursiveFactorization]] -deps = ["LinearAlgebra", "LoopVectorization", "Polyester", "PrecompileTools", "StrideArraysCore", "TriangularSolve"] -git-tree-sha1 = "6db1a75507051bc18bfa131fbc7c3f169cc4b2f6" -uuid = "f2c3362d-daeb-58d1-803e-2bc74f2840b4" -version = "0.2.23" - -[[deps.Reexport]] -git-tree-sha1 = "45e428421666073eab6f2da5c9d310d99bb12f9b" -uuid = "189a3867-3050-52da-a836-e630ba90ab69" -version = "1.2.2" - -[[deps.RegistryInstances]] -deps = ["LazilyInitializedFields", "Pkg", "TOML", "Tar"] -git-tree-sha1 = "ffd19052caf598b8653b99404058fce14828be51" -uuid = "2792f1a3-b283-48e8-9a74-f99dce5104f3" -version = "0.1.0" - -[[deps.RelocatableFolders]] -deps = ["SHA", "Scratch"] -git-tree-sha1 = "ffdaf70d81cf6ff22c2b6e733c900c3321cab864" -uuid = "05181044-ff0b-4ac5-8273-598c1e38db00" -version = "1.0.1" - -[[deps.Requires]] -deps = ["UUIDs"] -git-tree-sha1 = "838a3a4188e2ded87a4f9f184b4b0d78a1e91cb7" -uuid = "ae029012-a4dd-5104-9daa-d747884805df" -version = "1.3.0" - -[[deps.ResettableStacks]] -deps = ["StaticArrays"] -git-tree-sha1 = "256eeeec186fa7f26f2801732774ccf277f05db9" -uuid = "ae5879a3-cd67-5da8-be7f-38c6eb64a37b" -version = "1.1.1" - -[[deps.ReverseDiff]] -deps = ["ChainRulesCore", "DiffResults", "DiffRules", "ForwardDiff", "FunctionWrappers", "LinearAlgebra", "LogExpFunctions", "MacroTools", "NaNMath", "Random", "SpecialFunctions", "StaticArrays", "Statistics"] -git-tree-sha1 = "cc6cd622481ea366bb9067859446a8b01d92b468" -uuid = "37e2e3b7-166d-5795-8a7a-e32c996b4267" -version = "1.15.3" - -[[deps.Rmath]] -deps = ["Random", "Rmath_jll"] -git-tree-sha1 = "852bd0f55565a9e973fcfee83a84413270224dc4" -uuid = "79098fc4-a85e-5d69-aa6a-4863f24498fa" -version = "0.8.0" - -[[deps.Rmath_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "58cdd8fb2201a6267e1db87ff148dd6c1dbd8ad8" -uuid = "f50d1b31-88e8-58de-be2c-1cc44531875f" -version = "0.5.1+0" - -[[deps.RuntimeGeneratedFunctions]] -deps = ["ExprTools", "SHA", "Serialization"] -git-tree-sha1 = "04c968137612c4a5629fa531334bb81ad5680f00" -uuid = "7e49a35a-f44a-4d26-94aa-eba1b4ca6b47" -version = "0.5.13" - -[[deps.SHA]] -uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce" -version = "0.7.0" - -[[deps.SIMDTypes]] -git-tree-sha1 = "330289636fb8107c5f32088d2741e9fd7a061a5c" -uuid = "94e857df-77ce-4151-89e5-788b33177be4" -version = "0.1.0" - -[[deps.SLEEFPirates]] -deps = ["IfElse", "Static", "VectorizationBase"] -git-tree-sha1 = "456f610ca2fbd1c14f5fcf31c6bfadc55e7d66e0" -uuid = "476501e8-09a2-5ece-8869-fb82de89a1fa" -version = "0.6.43" - -[[deps.SciMLBase]] -deps = ["ADTypes", "Accessors", "ArrayInterface", "CommonSolve", "ConstructionBase", "Distributed", "DocStringExtensions", "EnumX", "Expronicon", "FunctionWrappersWrappers", "IteratorInterfaceExtensions", "LinearAlgebra", "Logging", "Markdown", "PrecompileTools", "Preferences", "Printf", "RecipesBase", "RecursiveArrayTools", "Reexport", "RuntimeGeneratedFunctions", "SciMLOperators", "SciMLStructures", "StaticArraysCore", "Statistics", "SymbolicIndexingInterface"] -git-tree-sha1 = "f48e0239fbb7799e8d81133ea71a726ec510c9ef" -uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462" -version = "2.65.1" - - [deps.SciMLBase.extensions] - SciMLBaseChainRulesCoreExt = "ChainRulesCore" - SciMLBaseMakieExt = "Makie" - SciMLBasePartialFunctionsExt = "PartialFunctions" - SciMLBasePyCallExt = "PyCall" - SciMLBasePythonCallExt = "PythonCall" - SciMLBaseRCallExt = "RCall" - SciMLBaseZygoteExt = "Zygote" - - [deps.SciMLBase.weakdeps] - ChainRules = "082447d4-558c-5d27-93f4-14fc19e9eca2" - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" - PartialFunctions = "570af359-4316-4cb7-8c74-252c00c2016b" - PyCall = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0" - PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d" - RCall = "6f49c342-dc21-5d91-9882-a32aef131414" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.SciMLJacobianOperators]] -deps = ["ADTypes", "ArrayInterface", "ConcreteStructs", "ConstructionBase", "DifferentiationInterface", "FastClosures", "LinearAlgebra", "SciMLBase", "SciMLOperators"] -git-tree-sha1 = "f66048bb969e67bd7d1bdd03cd0b81219642bbd0" -uuid = "19f34311-ddf3-4b8b-af20-060888a46c0e" -version = "0.1.1" - -[[deps.SciMLOperators]] -deps = ["Accessors", "ArrayInterface", "DocStringExtensions", "LinearAlgebra", "MacroTools"] -git-tree-sha1 = "6149620767866d4b0f0f7028639b6e661b6a1e44" -uuid = "c0aeaf25-5076-4817-a8d5-81caf7dfa961" -version = "0.3.12" -weakdeps = ["SparseArrays", "StaticArraysCore"] - - [deps.SciMLOperators.extensions] - SciMLOperatorsSparseArraysExt = "SparseArrays" - SciMLOperatorsStaticArraysCoreExt = "StaticArraysCore" - -[[deps.SciMLSensitivity]] -deps = ["ADTypes", "Accessors", "Adapt", "ArrayInterface", "ChainRulesCore", "DiffEqBase", "DiffEqCallbacks", "DiffEqNoiseProcess", "Distributions", "Enzyme", "FastBroadcast", "FiniteDiff", "ForwardDiff", "FunctionProperties", "FunctionWrappersWrappers", "Functors", "GPUArraysCore", "LinearAlgebra", "LinearSolve", "Markdown", "PreallocationTools", "QuadGK", "Random", "RandomNumbers", "RecursiveArrayTools", "Reexport", "ReverseDiff", "SciMLBase", "SciMLJacobianOperators", "SciMLOperators", "SciMLStructures", "StaticArrays", "StaticArraysCore", "Statistics", "SymbolicIndexingInterface", "Tracker", "Zygote"] -git-tree-sha1 = "40a44437d426816aaa73e78da77e9bb931baf980" -uuid = "1ed8b502-d754-442c-8d5d-10ac956f44a1" -version = "7.71.2" - -[[deps.SciMLStructures]] -deps = ["ArrayInterface"] -git-tree-sha1 = "0444a37a25fab98adbd90baa806ee492a3af133a" -uuid = "53ae85a6-f571-4167-b2af-e1d143709226" -version = "1.6.1" - -[[deps.Scratch]] -deps = ["Dates"] -git-tree-sha1 = "3bac05bc7e74a75fd9cba4295cde4045d9fe2386" -uuid = "6c6a2e73-6563-6170-7368-637461726353" -version = "1.2.1" - -[[deps.SentinelArrays]] -deps = ["Dates", "Random"] -git-tree-sha1 = "d0553ce4031a081cc42387a9b9c8441b7d99f32d" -uuid = "91c51154-3ec4-41a3-a24f-3f23e20d615c" -version = "1.4.7" - -[[deps.Serialization]] -uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b" - -[[deps.Setfield]] -deps = ["ConstructionBase", "Future", "MacroTools", "StaticArraysCore"] -git-tree-sha1 = "e2cc6d8c88613c05e1defb55170bf5ff211fbeac" -uuid = "efcf1570-3423-57d1-acb7-fd33fddbac46" -version = "1.1.1" - -[[deps.SharedArrays]] -deps = ["Distributed", "Mmap", "Random", "Serialization"] -uuid = "1a1011a3-84de-559e-8e89-a11a2f7dc383" - -[[deps.Showoff]] -deps = ["Dates", "Grisu"] -git-tree-sha1 = "91eddf657aca81df9ae6ceb20b959ae5653ad1de" -uuid = "992d4aef-0814-514b-bc4d-f2e9a6c4116f" -version = "1.0.3" - -[[deps.SimpleBufferStream]] -git-tree-sha1 = "f305871d2f381d21527c770d4788c06c097c9bc1" -uuid = "777ac1f9-54b0-4bf8-805c-2214025038e7" -version = "1.2.0" - -[[deps.SimpleNonlinearSolve]] -deps = ["ADTypes", "ArrayInterface", "BracketingNonlinearSolve", "CommonSolve", "ConcreteStructs", "DifferentiationInterface", "FastClosures", "FiniteDiff", "ForwardDiff", "LineSearch", "LinearAlgebra", "MaybeInplace", "NonlinearSolveBase", "PrecompileTools", "Reexport", "SciMLBase", "Setfield", "StaticArraysCore"] -git-tree-sha1 = "f7e2042e0b68c6bb19a0a1594839792737f51d84" -uuid = "727e6d20-b764-4bd8-a329-72de5adea6c7" -version = "2.0.0" -weakdeps = ["ChainRulesCore", "DiffEqBase", "ReverseDiff", "Tracker"] - - [deps.SimpleNonlinearSolve.extensions] - SimpleNonlinearSolveChainRulesCoreExt = "ChainRulesCore" - SimpleNonlinearSolveDiffEqBaseExt = "DiffEqBase" - SimpleNonlinearSolveReverseDiffExt = "ReverseDiff" - SimpleNonlinearSolveTrackerExt = "Tracker" - -[[deps.SimpleTraits]] -deps = ["InteractiveUtils", "MacroTools"] -git-tree-sha1 = "5d7e3f4e11935503d3ecaf7186eac40602e7d231" -uuid = "699a6c99-e7fa-54fc-8d76-47d257e15c1d" -version = "0.9.4" - -[[deps.SimpleUnPack]] -git-tree-sha1 = "58e6353e72cde29b90a69527e56df1b5c3d8c437" -uuid = "ce78b400-467f-4804-87d8-8f486da07d0a" -version = "1.1.0" - -[[deps.Sobol]] -deps = ["DelimitedFiles", "Random"] -git-tree-sha1 = "5a74ac22a9daef23705f010f72c81d6925b19df8" -uuid = "ed01d8cd-4d21-5b2a-85b4-cc3bdc58bad4" -version = "1.5.0" - -[[deps.Sockets]] -uuid = "6462fe0b-24de-5631-8697-dd941f90decc" - -[[deps.SortingAlgorithms]] -deps = ["DataStructures"] -git-tree-sha1 = "66e0a8e672a0bdfca2c3f5937efb8538b9ddc085" -uuid = "a2af1166-a08f-5f64-846c-94a0d3cef48c" -version = "1.2.1" - -[[deps.SparseArrays]] -deps = ["Libdl", "LinearAlgebra", "Random", "Serialization", "SuiteSparse_jll"] -uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" -version = "1.10.0" - -[[deps.SparseConnectivityTracer]] -deps = ["ADTypes", "DocStringExtensions", "FillArrays", "LinearAlgebra", "Random", "SparseArrays"] -git-tree-sha1 = "010b3c44301805d1ede9159f449a351d61172aa6" -uuid = "9f842d2f-2579-4b1d-911e-f412cf18a3f5" -version = "0.6.9" -weakdeps = ["DataInterpolations", "LogExpFunctions", "NNlib", "NaNMath", "SpecialFunctions"] - - [deps.SparseConnectivityTracer.extensions] - SparseConnectivityTracerDataInterpolationsExt = "DataInterpolations" - SparseConnectivityTracerLogExpFunctionsExt = "LogExpFunctions" - SparseConnectivityTracerNNlibExt = "NNlib" - SparseConnectivityTracerNaNMathExt = "NaNMath" - SparseConnectivityTracerSpecialFunctionsExt = "SpecialFunctions" - -[[deps.SparseDiffTools]] -deps = ["ADTypes", "Adapt", "ArrayInterface", "Compat", "DataStructures", "FiniteDiff", "ForwardDiff", "Graphs", "LinearAlgebra", "PackageExtensionCompat", "Random", "Reexport", "SciMLOperators", "Setfield", "SparseArrays", "StaticArrayInterface", "StaticArrays", "UnPack", "VertexSafeGraphs"] -git-tree-sha1 = "b906758c107b049b6b71599b9f928d9b14e5554a" -uuid = "47a9eef4-7e08-11e9-0b38-333d64bd3804" -version = "2.23.0" - - [deps.SparseDiffTools.extensions] - SparseDiffToolsEnzymeExt = "Enzyme" - SparseDiffToolsPolyesterExt = "Polyester" - SparseDiffToolsPolyesterForwardDiffExt = "PolyesterForwardDiff" - SparseDiffToolsSymbolicsExt = "Symbolics" - SparseDiffToolsZygoteExt = "Zygote" - - [deps.SparseDiffTools.weakdeps] - Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" - Polyester = "f517fe37-dbe3-4b94-8317-1923a5111588" - PolyesterForwardDiff = "98d1487c-24ca-40b6-b7ab-df2af84e126b" - Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.SparseInverseSubset]] -deps = ["LinearAlgebra", "SparseArrays", "SuiteSparse"] -git-tree-sha1 = "52962839426b75b3021296f7df242e40ecfc0852" -uuid = "dc90abb0-5640-4711-901d-7e5b23a2fada" -version = "0.1.2" - -[[deps.SparseMatrixColorings]] -deps = ["ADTypes", "DataStructures", "DocStringExtensions", "LinearAlgebra", "Random", "SparseArrays"] -git-tree-sha1 = "76b44c879661552d64f382acf66faa29ab56b3d9" -uuid = "0a514795-09f3-496d-8182-132a7b665d35" -version = "0.4.10" -weakdeps = ["Colors"] - - [deps.SparseMatrixColorings.extensions] - SparseMatrixColoringsColorsExt = "Colors" - -[[deps.Sparspak]] -deps = ["Libdl", "LinearAlgebra", "Logging", "OffsetArrays", "Printf", "SparseArrays", "Test"] -git-tree-sha1 = "342cf4b449c299d8d1ceaf00b7a49f4fbc7940e7" -uuid = "e56a9233-b9d6-4f03-8d0f-1825330902ac" -version = "0.3.9" - -[[deps.SpatialIndexing]] -git-tree-sha1 = "84efe17c77e1f2156a7a0d8a7c163c1e1c7bdaed" -uuid = "d4ead438-fe20-5cc5-a293-4fd39a41b74c" -version = "0.1.6" - -[[deps.SpecialFunctions]] -deps = ["IrrationalConstants", "LogExpFunctions", "OpenLibm_jll", "OpenSpecFun_jll"] -git-tree-sha1 = "2f5d4697f21388cbe1ff299430dd169ef97d7e14" -uuid = "276daf66-3868-5448-9aa4-cd146d93841b" -version = "2.4.0" -weakdeps = ["ChainRulesCore"] - - [deps.SpecialFunctions.extensions] - SpecialFunctionsChainRulesCoreExt = "ChainRulesCore" - -[[deps.StableRNGs]] -deps = ["Random"] -git-tree-sha1 = "83e6cce8324d49dfaf9ef059227f91ed4441a8e5" -uuid = "860ef19b-820b-49d6-a774-d7a799459cd3" -version = "1.0.2" - -[[deps.Static]] -deps = ["CommonWorldInvalidations", "IfElse", "PrecompileTools"] -git-tree-sha1 = "87d51a3ee9a4b0d2fe054bdd3fc2436258db2603" -uuid = "aedffcd0-7271-4cad-89d0-dc628f76c6d3" -version = "1.1.1" - -[[deps.StaticArrayInterface]] -deps = ["ArrayInterface", "Compat", "IfElse", "LinearAlgebra", "PrecompileTools", "Static"] -git-tree-sha1 = "96381d50f1ce85f2663584c8e886a6ca97e60554" -uuid = "0d7ed370-da01-4f52-bd93-41d350b8b718" -version = "1.8.0" -weakdeps = ["OffsetArrays", "StaticArrays"] - - [deps.StaticArrayInterface.extensions] - StaticArrayInterfaceOffsetArraysExt = "OffsetArrays" - StaticArrayInterfaceStaticArraysExt = "StaticArrays" - -[[deps.StaticArrays]] -deps = ["LinearAlgebra", "PrecompileTools", "Random", "StaticArraysCore"] -git-tree-sha1 = "777657803913ffc7e8cc20f0fd04b634f871af8f" -uuid = "90137ffa-7385-5640-81b9-e52037218182" -version = "1.9.8" -weakdeps = ["ChainRulesCore", "Statistics"] - - [deps.StaticArrays.extensions] - StaticArraysChainRulesCoreExt = "ChainRulesCore" - StaticArraysStatisticsExt = "Statistics" - -[[deps.StaticArraysCore]] -git-tree-sha1 = "192954ef1208c7019899fbf8049e717f92959682" -uuid = "1e83bf80-4336-4d27-bf5d-d5a4f845583c" -version = "1.4.3" - -[[deps.Statistics]] -deps = ["LinearAlgebra", "SparseArrays"] -uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" -version = "1.10.0" - -[[deps.StatsAPI]] -deps = ["LinearAlgebra"] -git-tree-sha1 = "1ff449ad350c9c4cbc756624d6f8a8c3ef56d3ed" -uuid = "82ae8749-77ed-4fe6-ae5f-f523153014b0" -version = "1.7.0" - -[[deps.StatsBase]] -deps = ["DataAPI", "DataStructures", "LinearAlgebra", "LogExpFunctions", "Missings", "Printf", "Random", "SortingAlgorithms", "SparseArrays", "Statistics", "StatsAPI"] -git-tree-sha1 = "5cf7606d6cef84b543b483848d4ae08ad9832b21" -uuid = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" -version = "0.34.3" - -[[deps.StatsFuns]] -deps = ["HypergeometricFunctions", "IrrationalConstants", "LogExpFunctions", "Reexport", "Rmath", "SpecialFunctions"] -git-tree-sha1 = "b423576adc27097764a90e163157bcfc9acf0f46" -uuid = "4c63d2b9-4356-54db-8cca-17b64c39e42c" -version = "1.3.2" -weakdeps = ["ChainRulesCore", "InverseFunctions"] - - [deps.StatsFuns.extensions] - StatsFunsChainRulesCoreExt = "ChainRulesCore" - StatsFunsInverseFunctionsExt = "InverseFunctions" - -[[deps.StrideArraysCore]] -deps = ["ArrayInterface", "CloseOpenIntervals", "IfElse", "LayoutPointers", "LinearAlgebra", "ManualMemory", "SIMDTypes", "Static", "StaticArrayInterface", "ThreadingUtilities"] -git-tree-sha1 = "f35f6ab602df8413a50c4a25ca14de821e8605fb" -uuid = "7792a7ef-975c-4747-a70f-980b88e8d1da" -version = "0.5.7" - -[[deps.StringManipulation]] -deps = ["PrecompileTools"] -git-tree-sha1 = "a6b1675a536c5ad1a60e5a5153e1fee12eb146e3" -uuid = "892a3eda-7b42-436c-8928-eab12a02cf0e" -version = "0.4.0" - -[[deps.StructArrays]] -deps = ["ConstructionBase", "DataAPI", "Tables"] -git-tree-sha1 = "f4dc295e983502292c4c3f951dbb4e985e35b3be" -uuid = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" -version = "0.6.18" -weakdeps = ["Adapt", "GPUArraysCore", "SparseArrays", "StaticArrays"] - - [deps.StructArrays.extensions] - StructArraysAdaptExt = "Adapt" - StructArraysGPUArraysCoreExt = "GPUArraysCore" - StructArraysSparseArraysExt = "SparseArrays" - StructArraysStaticArraysExt = "StaticArrays" - -[[deps.StructIO]] -git-tree-sha1 = "c581be48ae1cbf83e899b14c07a807e1787512cc" -uuid = "53d494c1-5632-5724-8f4c-31dff12d585f" -version = "0.3.1" - -[[deps.SuiteSparse]] -deps = ["Libdl", "LinearAlgebra", "Serialization", "SparseArrays"] -uuid = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9" - -[[deps.SuiteSparse_jll]] -deps = ["Artifacts", "Libdl", "libblastrampoline_jll"] -uuid = "bea87d4a-7f5b-5778-9afe-8cc45184846c" -version = "7.2.1+1" - -[[deps.SymbolicIndexingInterface]] -deps = ["Accessors", "ArrayInterface", "RuntimeGeneratedFunctions", "StaticArraysCore"] -git-tree-sha1 = "6c6761e08bf5a270905cdd065be633abfa1b155b" -uuid = "2efcf032-c050-4f8e-a9bb-153293bab1f5" -version = "0.3.35" - -[[deps.SymbolicLimits]] -deps = ["SymbolicUtils"] -git-tree-sha1 = "fabf4650afe966a2ba646cabd924c3fd43577fc3" -uuid = "19f23fe9-fdab-4a78-91af-e7b7767979c3" -version = "0.2.2" - -[[deps.SymbolicUtils]] -deps = ["AbstractTrees", "ArrayInterface", "Bijections", "ChainRulesCore", "Combinatorics", "ConstructionBase", "DataStructures", "DocStringExtensions", "DynamicPolynomials", "IfElse", "LinearAlgebra", "MultivariatePolynomials", "NaNMath", "Setfield", "SparseArrays", "SpecialFunctions", "StaticArrays", "SymbolicIndexingInterface", "TermInterface", "TimerOutputs", "Unityper"] -git-tree-sha1 = "04e9157537ba51dad58336976f8d04b9ab7122f0" -uuid = "d1185830-fcd6-423d-90d6-eec64667417b" -version = "3.7.2" - - [deps.SymbolicUtils.extensions] - SymbolicUtilsLabelledArraysExt = "LabelledArrays" - SymbolicUtilsReverseDiffExt = "ReverseDiff" - - [deps.SymbolicUtils.weakdeps] - LabelledArrays = "2ee39098-c373-598a-b85f-a56591580800" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - -[[deps.Symbolics]] -deps = ["ADTypes", "ArrayInterface", "Bijections", "CommonWorldInvalidations", "ConstructionBase", "DataStructures", "DiffRules", "Distributions", "DocStringExtensions", "DomainSets", "DynamicPolynomials", "IfElse", "LaTeXStrings", "Latexify", "Libdl", "LinearAlgebra", "LogExpFunctions", "MacroTools", "Markdown", "NaNMath", "PrecompileTools", "Primes", "RecipesBase", "Reexport", "RuntimeGeneratedFunctions", "SciMLBase", "Setfield", "SparseArrays", "SpecialFunctions", "StaticArraysCore", "SymbolicIndexingInterface", "SymbolicLimits", "SymbolicUtils", "TermInterface"] -git-tree-sha1 = "ce9c95fc859007747a4faf10166201e0b10d4313" -uuid = "0c5d862f-8b57-4792-8d23-62f2024744c7" -version = "6.22.0" - - [deps.Symbolics.extensions] - SymbolicsForwardDiffExt = "ForwardDiff" - SymbolicsGroebnerExt = "Groebner" - SymbolicsLuxExt = "Lux" - SymbolicsNemoExt = "Nemo" - SymbolicsPreallocationToolsExt = ["PreallocationTools", "ForwardDiff"] - SymbolicsSymPyExt = "SymPy" - - [deps.Symbolics.weakdeps] - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - Groebner = "0b43b601-686d-58a3-8a1c-6623616c7cd4" - Lux = "b2108857-7c20-44ae-9111-449ecde12c47" - Nemo = "2edaba10-b0f1-5616-af89-8c11ac63239a" - PreallocationTools = "d236fae5-4411-538c-8e31-a6e3d9e00b46" - SymPy = "24249f21-da20-56a4-8eb1-6a02cf4ae2e6" - -[[deps.TOML]] -deps = ["Dates"] -uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76" -version = "1.0.3" - -[[deps.TableTraits]] -deps = ["IteratorInterfaceExtensions"] -git-tree-sha1 = "c06b2f539df1c6efa794486abfb6ed2022561a39" -uuid = "3783bdb8-4a98-5b6b-af9a-565f29a5fe9c" -version = "1.0.1" - -[[deps.Tables]] -deps = ["DataAPI", "DataValueInterfaces", "IteratorInterfaceExtensions", "OrderedCollections", "TableTraits"] -git-tree-sha1 = "598cd7c1f68d1e205689b1c2fe65a9f85846f297" -uuid = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" -version = "1.12.0" - -[[deps.Tar]] -deps = ["ArgTools", "SHA"] -uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e" -version = "1.10.0" - -[[deps.TensorCore]] -deps = ["LinearAlgebra"] -git-tree-sha1 = "1feb45f88d133a655e001435632f019a9a1bcdb6" -uuid = "62fd8b95-f654-4bbd-a8a5-9c27f68ccd50" -version = "0.1.1" - -[[deps.TermInterface]] -git-tree-sha1 = "d673e0aca9e46a2f63720201f55cc7b3e7169b16" -uuid = "8ea1fca8-c5ef-4a55-8b96-4e9afe9c9a3c" -version = "2.0.0" - -[[deps.TerminalLoggers]] -deps = ["LeftChildRightSiblingTrees", "Logging", "Markdown", "Printf", "ProgressLogging", "UUIDs"] -git-tree-sha1 = "f133fab380933d042f6796eda4e130272ba520ca" -uuid = "5d786b92-1e48-4d6f-9151-6b4477ca9bed" -version = "0.1.7" - -[[deps.Test]] -deps = ["InteractiveUtils", "Logging", "Random", "Serialization"] -uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" - -[[deps.TestItems]] -git-tree-sha1 = "42fd9023fef18b9b78c8343a4e2f3813ffbcefcb" -uuid = "1c621080-faea-4a02-84b6-bbd5e436b8fe" -version = "1.0.0" - -[[deps.ThreadingUtilities]] -deps = ["ManualMemory"] -git-tree-sha1 = "eda08f7e9818eb53661b3deb74e3159460dfbc27" -uuid = "8290d209-cae3-49c0-8002-c8c24d57dab5" -version = "0.5.2" - -[[deps.TimerOutputs]] -deps = ["ExprTools", "Printf"] -git-tree-sha1 = "3a6f063d690135f5c1ba351412c82bae4d1402bf" -uuid = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f" -version = "0.5.25" - -[[deps.Tokenize]] -git-tree-sha1 = "468b4685af4abe0e9fd4d7bf495a6554a6276e75" -uuid = "0796e94c-ce3b-5d07-9a54-7f471281c624" -version = "0.5.29" - -[[deps.Tracker]] -deps = ["Adapt", "ChainRulesCore", "DiffRules", "ForwardDiff", "Functors", "LinearAlgebra", "LogExpFunctions", "MacroTools", "NNlib", "NaNMath", "Optimisers", "Printf", "Random", "Requires", "SpecialFunctions", "Statistics"] -git-tree-sha1 = "c266e49953dadd0923caa17b3ea464ab6b97b3f2" -uuid = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" -version = "0.2.37" -weakdeps = ["PDMats"] - - [deps.Tracker.extensions] - TrackerPDMatsExt = "PDMats" - -[[deps.TranscodingStreams]] -git-tree-sha1 = "0c45878dcfdcfa8480052b6ab162cdd138781742" -uuid = "3bb67fe8-82b1-5028-8e26-92a6c54297fa" -version = "0.11.3" - -[[deps.TriangularSolve]] -deps = ["CloseOpenIntervals", "IfElse", "LayoutPointers", "LinearAlgebra", "LoopVectorization", "Polyester", "Static", "VectorizationBase"] -git-tree-sha1 = "be986ad9dac14888ba338c2554dcfec6939e1393" -uuid = "d5829a12-d9aa-46ab-831f-fb7c9ab06edf" -version = "0.2.1" - -[[deps.Tricks]] -git-tree-sha1 = "7822b97e99a1672bfb1b49b668a6d46d58d8cbcb" -uuid = "410a4b4d-49e4-4fbc-ab6d-cb71b17b3775" -version = "0.1.9" - -[[deps.TruncatedStacktraces]] -deps = ["InteractiveUtils", "MacroTools", "Preferences"] -git-tree-sha1 = "ea3e54c2bdde39062abf5a9758a23735558705e1" -uuid = "781d530d-4396-4725-bb49-402e4bee1e77" -version = "1.4.0" - -[[deps.URIs]] -git-tree-sha1 = "67db6cc7b3821e19ebe75791a9dd19c9b1188f2b" -uuid = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" -version = "1.5.1" - -[[deps.UUIDs]] -deps = ["Random", "SHA"] -uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" - -[[deps.UnPack]] -git-tree-sha1 = "387c1f73762231e86e0c9c5443ce3b4a0a9a0c2b" -uuid = "3a884ed6-31ef-47d7-9d2a-63182c4928ed" -version = "1.0.2" - -[[deps.Unicode]] -uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" - -[[deps.UnicodeFun]] -deps = ["REPL"] -git-tree-sha1 = "53915e50200959667e78a92a418594b428dffddf" -uuid = "1cfade01-22cf-5700-b092-accc4b62d6e1" -version = "0.4.1" - -[[deps.Unitful]] -deps = ["Dates", "LinearAlgebra", "Random"] -git-tree-sha1 = "01915bfcd62be15329c9a07235447a89d588327c" -uuid = "1986cc42-f94f-5a68-af5c-568840ba703d" -version = "1.21.1" -weakdeps = ["ConstructionBase", "InverseFunctions"] - - [deps.Unitful.extensions] - ConstructionBaseUnitfulExt = "ConstructionBase" - InverseFunctionsUnitfulExt = "InverseFunctions" - -[[deps.UnitfulLatexify]] -deps = ["LaTeXStrings", "Latexify", "Unitful"] -git-tree-sha1 = "975c354fcd5f7e1ddcc1f1a23e6e091d99e99bc8" -uuid = "45397f5d-5981-4c77-b2b3-fc36d6e9b728" -version = "1.6.4" - -[[deps.Unityper]] -deps = ["ConstructionBase"] -git-tree-sha1 = "25008b734a03736c41e2a7dc314ecb95bd6bbdb0" -uuid = "a7c27f48-0311-42f6-a7f8-2c11e75eb415" -version = "0.1.6" - -[[deps.UnsafeAtomics]] -git-tree-sha1 = "6331ac3440856ea1988316b46045303bef658278" -uuid = "013be700-e6cd-48c3-b4a1-df204f14c38f" -version = "0.2.1" - -[[deps.UnsafeAtomicsLLVM]] -deps = ["LLVM", "UnsafeAtomics"] -git-tree-sha1 = "de4287a6569bcf3a8d6201d387991a8dda25c954" -uuid = "d80eeb9a-aca5-4d75-85e5-170c8b632249" -version = "0.2.2" - -[[deps.Unzip]] -git-tree-sha1 = "ca0969166a028236229f63514992fc073799bb78" -uuid = "41fe7b60-77ed-43a1-b4f0-825fd5a5650d" -version = "0.2.0" - -[[deps.VectorizationBase]] -deps = ["ArrayInterface", "CPUSummary", "HostCPUFeatures", "IfElse", "LayoutPointers", "Libdl", "LinearAlgebra", "SIMDTypes", "Static", "StaticArrayInterface"] -git-tree-sha1 = "4ab62a49f1d8d9548a1c8d1a75e5f55cf196f64e" -uuid = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f" -version = "0.21.71" - -[[deps.VertexSafeGraphs]] -deps = ["Graphs"] -git-tree-sha1 = "8351f8d73d7e880bfc042a8b6922684ebeafb35c" -uuid = "19fa3120-7c27-5ec5-8db8-b0b0aa330d6f" -version = "0.2.0" - -[[deps.Vulkan_Loader_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Wayland_jll", "Xorg_libX11_jll", "Xorg_libXrandr_jll", "xkbcommon_jll"] -git-tree-sha1 = "2f0486047a07670caad3a81a075d2e518acc5c59" -uuid = "a44049a8-05dd-5a78-86c9-5fde0876e88c" -version = "1.3.243+0" - -[[deps.Wayland_jll]] -deps = ["Artifacts", "EpollShim_jll", "Expat_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Pkg", "XML2_jll"] -git-tree-sha1 = "7558e29847e99bc3f04d6569e82d0f5c54460703" -uuid = "a2964d1f-97da-50d4-b82a-358c7fce9d89" -version = "1.21.0+1" - -[[deps.Wayland_protocols_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "93f43ab61b16ddfb2fd3bb13b3ce241cafb0e6c9" -uuid = "2381bf8a-dfd0-557d-9999-79630e7b1b91" -version = "1.31.0+0" - -[[deps.WeakRefStrings]] -deps = ["DataAPI", "InlineStrings", "Parsers"] -git-tree-sha1 = "b1be2855ed9ed8eac54e5caff2afcdb442d52c23" -uuid = "ea10d353-3f73-51f8-a26c-33c1cb351aa5" -version = "1.4.2" - -[[deps.WeightInitializers]] -deps = ["ArgCheck", "ConcreteStructs", "GPUArraysCore", "LinearAlgebra", "Random", "SpecialFunctions", "Statistics"] -git-tree-sha1 = "0b935265795ccccf12bc89e693b6380934451780" -uuid = "d49dbf32-c5c2-4618-8acc-27bb2598ef2d" -version = "1.0.4" - - [deps.WeightInitializers.extensions] - WeightInitializersAMDGPUExt = ["AMDGPU", "GPUArrays"] - WeightInitializersCUDAExt = ["CUDA", "GPUArrays"] - WeightInitializersChainRulesCoreExt = "ChainRulesCore" - WeightInitializersGPUArraysExt = "GPUArrays" - WeightInitializersMetalExt = ["Metal", "GPUArrays"] - WeightInitializersoneAPIExt = ["oneAPI", "GPUArrays"] - - [deps.WeightInitializers.weakdeps] - AMDGPU = "21141c5a-9bdb-4563-92ae-f87d6854732e" - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - GPUArrays = "0c68f7d7-f131-5f86-a1c3-88cf8149b2d7" - Metal = "dde4c033-4e86-420c-a63e-0dd931031962" - oneAPI = "8f75cd03-7ff8-4ecb-9b8f-daf728133b1b" - -[[deps.WoodburyMatrices]] -deps = ["LinearAlgebra", "SparseArrays"] -git-tree-sha1 = "c1a7aa6219628fcd757dede0ca95e245c5cd9511" -uuid = "efce3f68-66dc-5838-9240-27a6d6f5f9b6" -version = "1.0.0" - -[[deps.WorkerUtilities]] -git-tree-sha1 = "cd1659ba0d57b71a464a29e64dbc67cfe83d54e7" -uuid = "76eceee3-57b5-4d4a-8e66-0e911cebbf60" -version = "1.6.1" - -[[deps.XML2_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Libiconv_jll", "Zlib_jll"] -git-tree-sha1 = "a2fccc6559132927d4c5dc183e3e01048c6dcbd6" -uuid = "02c8fc9c-b97f-50b9-bbe4-9be30ff0a78a" -version = "2.13.5+0" - -[[deps.XSLT_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgcrypt_jll", "Libgpg_error_jll", "Libiconv_jll", "XML2_jll", "Zlib_jll"] -git-tree-sha1 = "7d1671acbe47ac88e981868a078bd6b4e27c5191" -uuid = "aed1982a-8fda-507f-9586-7b0439959a61" -version = "1.1.42+0" - -[[deps.XZ_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "15e637a697345f6743674f1322beefbc5dcd5cfc" -uuid = "ffd25f8a-64ca-5728-b0f7-c24cf3aae800" -version = "5.6.3+0" - -[[deps.Xorg_libICE_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "326b4fea307b0b39892b3e85fa451692eda8d46c" -uuid = "f67eecfb-183a-506d-b269-f58e52b52d7c" -version = "1.1.1+0" - -[[deps.Xorg_libSM_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libICE_jll"] -git-tree-sha1 = "3796722887072218eabafb494a13c963209754ce" -uuid = "c834827a-8449-5923-a945-d239c165b7dd" -version = "1.2.4+0" - -[[deps.Xorg_libX11_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libxcb_jll", "Xorg_xtrans_jll"] -git-tree-sha1 = "9dafcee1d24c4f024e7edc92603cedba72118283" -uuid = "4f6342f7-b3d2-589e-9d20-edeb45f2b2bc" -version = "1.8.6+1" - -[[deps.Xorg_libXau_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "2b0e27d52ec9d8d483e2ca0b72b3cb1a8df5c27a" -uuid = "0c0b7dd1-d40b-584c-a123-a41640f87eec" -version = "1.0.11+1" - -[[deps.Xorg_libXcursor_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXfixes_jll", "Xorg_libXrender_jll"] -git-tree-sha1 = "12e0eb3bc634fa2080c1c37fccf56f7c22989afd" -uuid = "935fb764-8cf2-53bf-bb30-45bb1f8bf724" -version = "1.2.0+4" - -[[deps.Xorg_libXdmcp_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "02054ee01980c90297412e4c809c8694d7323af3" -uuid = "a3789734-cfe1-5b06-b2d0-1dd0d9d62d05" -version = "1.1.4+1" - -[[deps.Xorg_libXext_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"] -git-tree-sha1 = "d7155fea91a4123ef59f42c4afb5ab3b4ca95058" -uuid = "1082639a-0dae-5f34-9b06-72781eeb8cb3" -version = "1.3.6+1" - -[[deps.Xorg_libXfixes_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libX11_jll"] -git-tree-sha1 = "0e0dc7431e7a0587559f9294aeec269471c991a4" -uuid = "d091e8ba-531a-589c-9de9-94069b037ed8" -version = "5.0.3+4" - -[[deps.Xorg_libXi_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXext_jll", "Xorg_libXfixes_jll"] -git-tree-sha1 = "89b52bc2160aadc84d707093930ef0bffa641246" -uuid = "a51aa0fd-4e3c-5386-b890-e753decda492" -version = "1.7.10+4" - -[[deps.Xorg_libXinerama_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXext_jll"] -git-tree-sha1 = "26be8b1c342929259317d8b9f7b53bf2bb73b123" -uuid = "d1454406-59df-5ea1-beac-c340f2130bc3" -version = "1.1.4+4" - -[[deps.Xorg_libXrandr_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXext_jll", "Xorg_libXrender_jll"] -git-tree-sha1 = "34cea83cb726fb58f325887bf0612c6b3fb17631" -uuid = "ec84b674-ba8e-5d96-8ba1-2a689ba10484" -version = "1.5.2+4" - -[[deps.Xorg_libXrender_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"] -git-tree-sha1 = "47e45cd78224c53109495b3e324df0c37bb61fbe" -uuid = "ea2f1a96-1ddc-540d-b46f-429655e07cfa" -version = "0.9.11+0" - -[[deps.Xorg_libpthread_stubs_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "fee57a273563e273f0f53275101cd41a8153517a" -uuid = "14d82f49-176c-5ed1-bb49-ad3f5cbd8c74" -version = "0.1.1+1" - -[[deps.Xorg_libxcb_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "XSLT_jll", "Xorg_libXau_jll", "Xorg_libXdmcp_jll", "Xorg_libpthread_stubs_jll"] -git-tree-sha1 = "1a74296303b6524a0472a8cb12d3d87a78eb3612" -uuid = "c7cfdc94-dc32-55de-ac96-5a1b8d977c5b" -version = "1.17.0+1" - -[[deps.Xorg_libxkbfile_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"] -git-tree-sha1 = "730eeca102434283c50ccf7d1ecdadf521a765a4" -uuid = "cc61e674-0454-545c-8b26-ed2c68acab7a" -version = "1.1.2+0" - -[[deps.Xorg_xcb_util_cursor_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_xcb_util_image_jll", "Xorg_xcb_util_jll", "Xorg_xcb_util_renderutil_jll"] -git-tree-sha1 = "04341cb870f29dcd5e39055f895c39d016e18ccd" -uuid = "e920d4aa-a673-5f3a-b3d7-f755a4d47c43" -version = "0.1.4+0" - -[[deps.Xorg_xcb_util_image_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] -git-tree-sha1 = "0fab0a40349ba1cba2c1da699243396ff8e94b97" -uuid = "12413925-8142-5f55-bb0e-6d7ca50bb09b" -version = "0.4.0+1" - -[[deps.Xorg_xcb_util_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libxcb_jll"] -git-tree-sha1 = "e7fd7b2881fa2eaa72717420894d3938177862d1" -uuid = "2def613f-5ad1-5310-b15b-b15d46f528f5" -version = "0.4.0+1" - -[[deps.Xorg_xcb_util_keysyms_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] -git-tree-sha1 = "d1151e2c45a544f32441a567d1690e701ec89b00" -uuid = "975044d2-76e6-5fbe-bf08-97ce7c6574c7" -version = "0.4.0+1" - -[[deps.Xorg_xcb_util_renderutil_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] -git-tree-sha1 = "dfd7a8f38d4613b6a575253b3174dd991ca6183e" -uuid = "0d47668e-0667-5a69-a72c-f761630bfb7e" -version = "0.3.9+1" - -[[deps.Xorg_xcb_util_wm_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] -git-tree-sha1 = "e78d10aab01a4a154142c5006ed44fd9e8e31b67" -uuid = "c22f9ab0-d5fe-5066-847c-f4bb1cd4e361" -version = "0.4.1+1" - -[[deps.Xorg_xkbcomp_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libxkbfile_jll"] -git-tree-sha1 = "330f955bc41bb8f5270a369c473fc4a5a4e4d3cb" -uuid = "35661453-b289-5fab-8a00-3d9160c6a3a4" -version = "1.4.6+0" - -[[deps.Xorg_xkeyboard_config_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_xkbcomp_jll"] -git-tree-sha1 = "691634e5453ad362044e2ad653e79f3ee3bb98c3" -uuid = "33bec58e-1273-512f-9401-5d533626f822" -version = "2.39.0+0" - -[[deps.Xorg_xtrans_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "b9ead2d2bdb27330545eb14234a2e300da61232e" -uuid = "c5fb5394-a638-5e4d-96e5-b29de1b5cf10" -version = "1.5.0+1" - -[[deps.Zlib_jll]] -deps = ["Libdl"] -uuid = "83775a58-1f1d-513f-b197-d71354ab007a" -version = "1.2.13+1" - -[[deps.Zstd_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "555d1076590a6cc2fdee2ef1469451f872d8b41b" -uuid = "3161d3a3-bdf6-5164-811a-617609db77b4" -version = "1.5.6+1" - -[[deps.Zygote]] -deps = ["AbstractFFTs", "ChainRules", "ChainRulesCore", "DiffRules", "Distributed", "FillArrays", "ForwardDiff", "GPUArrays", "GPUArraysCore", "IRTools", "InteractiveUtils", "LinearAlgebra", "LogExpFunctions", "MacroTools", "NaNMath", "PrecompileTools", "Random", "Requires", "SparseArrays", "SpecialFunctions", "Statistics", "ZygoteRules"] -git-tree-sha1 = "c7dc3148a64d1cd3768c29b3db5972d1c302661b" -uuid = "e88e6eb3-aa80-5325-afca-941959d7151f" -version = "0.6.73" - - [deps.Zygote.extensions] - ZygoteColorsExt = "Colors" - ZygoteDistancesExt = "Distances" - ZygoteTrackerExt = "Tracker" - - [deps.Zygote.weakdeps] - Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" - Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - -[[deps.ZygoteRules]] -deps = ["ChainRulesCore", "MacroTools"] -git-tree-sha1 = "27798139afc0a2afa7b1824c206d5e87ea587a00" -uuid = "700de1a5-db45-46bc-99cf-38207098b444" -version = "0.2.5" - -[[deps.demumble_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "6498e3581023f8e530f34760d18f75a69e3a4ea8" -uuid = "1e29f10c-031c-5a83-9565-69cddfc27673" -version = "1.3.0+0" - -[[deps.eudev_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "gperf_jll"] -git-tree-sha1 = "431b678a28ebb559d224c0b6b6d01afce87c51ba" -uuid = "35ca27e7-8b34-5b7f-bca9-bdc33f59eb06" -version = "3.2.9+0" - -[[deps.fzf_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "6e50f145003024df4f5cb96c7fce79466741d601" -uuid = "214eeab7-80f7-51ab-84ad-2988db7cef09" -version = "0.56.3+0" - -[[deps.gperf_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "0ba42241cb6809f1a278d0bcb976e0483c3f1f2d" -uuid = "1a1c6b14-54f6-533d-8383-74cd7377aa70" -version = "3.1.1+1" - -[[deps.libaom_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "1827acba325fdcdf1d2647fc8d5301dd9ba43a9d" -uuid = "a4ae2306-e953-59d6-aa16-d00cac43593b" -version = "3.9.0+0" - -[[deps.libass_jll]] -deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "HarfBuzz_jll", "JLLWrappers", "Libdl", "Zlib_jll"] -git-tree-sha1 = "e17c115d55c5fbb7e52ebedb427a0dca79d4484e" -uuid = "0ac62f75-1d6f-5e53-bd7c-93b484bb37c0" -version = "0.15.2+0" - -[[deps.libblastrampoline_jll]] -deps = ["Artifacts", "Libdl"] -uuid = "8e850b90-86db-534c-a0d3-1478176c7d93" -version = "5.8.0+1" - -[[deps.libdecor_jll]] -deps = ["Artifacts", "Dbus_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "Pango_jll", "Wayland_jll", "xkbcommon_jll"] -git-tree-sha1 = "9bf7903af251d2050b467f76bdbe57ce541f7f4f" -uuid = "1183f4f0-6f2a-5f1a-908b-139f9cdfea6f" -version = "0.2.2+0" - -[[deps.libevdev_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "141fe65dc3efabb0b1d5ba74e91f6ad26f84cc22" -uuid = "2db6ffa8-e38f-5e21-84af-90c45d0032cc" -version = "1.11.0+0" - -[[deps.libfdk_aac_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "8a22cf860a7d27e4f3498a0fe0811a7957badb38" -uuid = "f638f0a6-7fb0-5443-88ba-1cc74229b280" -version = "2.0.3+0" - -[[deps.libinput_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "eudev_jll", "libevdev_jll", "mtdev_jll"] -git-tree-sha1 = "ad50e5b90f222cfe78aa3d5183a20a12de1322ce" -uuid = "36db933b-70db-51c0-b978-0f229ee0e533" -version = "1.18.0+0" - -[[deps.libpng_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Zlib_jll"] -git-tree-sha1 = "b70c870239dc3d7bc094eb2d6be9b73d27bef280" -uuid = "b53b4c65-9356-5827-b1ea-8c7a1a84506f" -version = "1.6.44+0" - -[[deps.libvorbis_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Ogg_jll", "Pkg"] -git-tree-sha1 = "490376214c4721cdaca654041f635213c6165cb3" -uuid = "f27f6e37-5d2b-51aa-960f-b287f2bc3b7a" -version = "1.3.7+2" - -[[deps.mtdev_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "814e154bdb7be91d78b6802843f76b6ece642f11" -uuid = "009596ad-96f7-51b1-9f1b-5ce2d5e8a71e" -version = "1.1.6+0" - -[[deps.nghttp2_jll]] -deps = ["Artifacts", "Libdl"] -uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d" -version = "1.52.0+1" - -[[deps.oneTBB_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "7d0ea0f4895ef2f5cb83645fa689e52cb55cf493" -uuid = "1317d2d5-d96f-522e-a858-c73665f53c3e" -version = "2021.12.0+0" - -[[deps.p7zip_jll]] -deps = ["Artifacts", "Libdl"] -uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0" -version = "17.4.0+2" - -[[deps.x264_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "4fea590b89e6ec504593146bf8b988b2c00922b2" -uuid = "1270edf5-f2f9-52d2-97e9-ab00b5d0237a" -version = "2021.5.5+0" - -[[deps.x265_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "ee567a171cce03570d77ad3a43e90218e38937a9" -uuid = "dfaa095f-4041-5dcd-9319-2fabd8486b76" -version = "3.5.0+0" - -[[deps.xkbcommon_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Wayland_jll", "Wayland_protocols_jll", "Xorg_libxcb_jll", "Xorg_xkeyboard_config_jll"] -git-tree-sha1 = "9c304562909ab2bab0262639bd4f444d7bc2be37" -uuid = "d8fb68d0-12a3-5cfd-a85a-d49703b185fd" -version = "1.4.1+1" diff --git a/doc/Project.toml b/doc/Project.toml deleted file mode 100644 index 039dcae..0000000 --- a/doc/Project.toml +++ /dev/null @@ -1,11 +0,0 @@ -[deps] -Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697" -BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" -CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" -ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66" -DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" -DataInterpolations = "82cc6244-b520-54b8-b5a6-8a565e85f1d0" -Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" -HydroModels = "7e3cde01-c141-467b-bff6-5350a0af19fc" -ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" -Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" diff --git a/doc/build/.documenter-siteinfo.json b/doc/build/.documenter-siteinfo.json deleted file mode 100644 index d9edd5d..0000000 --- a/doc/build/.documenter-siteinfo.json +++ /dev/null @@ -1 +0,0 @@ -{"documenter":{"julia_version":"1.10.4","generation_timestamp":"2024-12-05T09:51:45","documenter_version":"1.8.0"}} \ No newline at end of file diff --git a/doc/build/assets/documenter.js b/doc/build/assets/documenter.js deleted file mode 100644 index 6fe9341..0000000 --- a/doc/build/assets/documenter.js +++ /dev/null @@ -1,1088 +0,0 @@ -// Generated by Documenter.jl -requirejs.config({ - paths: { - 'highlight-julia': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/languages/julia.min', - 'headroom': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/headroom.min', - 'jqueryui': 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/jquery-ui.min', - 'highlight-yaml': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/languages/yaml.min', - 'katex-auto-render': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.8/contrib/auto-render.min', - 'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min', - 'headroom-jquery': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/jQuery.headroom.min', - 'katex': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.8/katex.min', - 'highlight': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min', - 'highlight-julia-repl': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/languages/julia-repl.min', - }, - shim: { - "highlight-julia": { - "deps": [ - "highlight" - ] - }, - "highlight-yaml": { - "deps": [ - "highlight" - ] - }, - "katex-auto-render": { - "deps": [ - "katex" - ] - }, - "headroom-jquery": { - "deps": [ - "jquery", - "headroom" - ] - }, - "highlight-julia-repl": { - "deps": [ - "highlight" - ] - } -} -}); -//////////////////////////////////////////////////////////////////////////////// -require(['jquery', 'katex', 'katex-auto-render'], function($, katex, renderMathInElement) { -$(document).ready(function() { - renderMathInElement( - document.body, - { - "delimiters": [ - { - "left": "$", - "right": "$", - "display": false - }, - { - "left": "$$", - "right": "$$", - "display": true - }, - { - "left": "\\[", - "right": "\\]", - "display": true - } - ] -} - - ); -}) - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery', 'highlight', 'highlight-julia', 'highlight-julia-repl', 'highlight-yaml'], function($) { -$(document).ready(function() { - hljs.highlightAll(); -}) - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -let timer = 0; -var isExpanded = true; - -$(document).on( - "click", - ".docstring .docstring-article-toggle-button", - function () { - let articleToggleTitle = "Expand docstring"; - const parent = $(this).parent(); - - debounce(() => { - if (parent.siblings("section").is(":visible")) { - parent - .find("a.docstring-article-toggle-button") - .removeClass("fa-chevron-down") - .addClass("fa-chevron-right"); - } else { - parent - .find("a.docstring-article-toggle-button") - .removeClass("fa-chevron-right") - .addClass("fa-chevron-down"); - - articleToggleTitle = "Collapse docstring"; - } - - parent - .children(".docstring-article-toggle-button") - .prop("title", articleToggleTitle); - parent.siblings("section").slideToggle(); - }); - } -); - -$(document).on("click", ".docs-article-toggle-button", function (event) { - let articleToggleTitle = "Expand docstring"; - let navArticleToggleTitle = "Expand all docstrings"; - let animationSpeed = event.noToggleAnimation ? 0 : 400; - - debounce(() => { - if (isExpanded) { - $(this).removeClass("fa-chevron-up").addClass("fa-chevron-down"); - $("a.docstring-article-toggle-button") - .removeClass("fa-chevron-down") - .addClass("fa-chevron-right"); - - isExpanded = false; - - $(".docstring section").slideUp(animationSpeed); - } else { - $(this).removeClass("fa-chevron-down").addClass("fa-chevron-up"); - $("a.docstring-article-toggle-button") - .removeClass("fa-chevron-right") - .addClass("fa-chevron-down"); - - isExpanded = true; - articleToggleTitle = "Collapse docstring"; - navArticleToggleTitle = "Collapse all docstrings"; - - $(".docstring section").slideDown(animationSpeed); - } - - $(this).prop("title", navArticleToggleTitle); - $(".docstring-article-toggle-button").prop("title", articleToggleTitle); - }); -}); - -function debounce(callback, timeout = 300) { - if (Date.now() - timer > timeout) { - callback(); - } - - clearTimeout(timer); - - timer = Date.now(); -} - -}) -//////////////////////////////////////////////////////////////////////////////// -require([], function() { -function addCopyButtonCallbacks() { - for (const el of document.getElementsByTagName("pre")) { - const button = document.createElement("button"); - button.classList.add("copy-button", "fa-solid", "fa-copy"); - button.setAttribute("aria-label", "Copy this code block"); - button.setAttribute("title", "Copy"); - - el.appendChild(button); - - const success = function () { - button.classList.add("success", "fa-check"); - button.classList.remove("fa-copy"); - }; - - const failure = function () { - button.classList.add("error", "fa-xmark"); - button.classList.remove("fa-copy"); - }; - - button.addEventListener("click", function () { - copyToClipboard(el.innerText).then(success, failure); - - setTimeout(function () { - button.classList.add("fa-copy"); - button.classList.remove("success", "fa-check", "fa-xmark"); - }, 5000); - }); - } -} - -function copyToClipboard(text) { - // clipboard API is only available in secure contexts - if (window.navigator && window.navigator.clipboard) { - return window.navigator.clipboard.writeText(text); - } else { - return new Promise(function (resolve, reject) { - try { - const el = document.createElement("textarea"); - el.textContent = text; - el.style.position = "fixed"; - el.style.opacity = 0; - document.body.appendChild(el); - el.select(); - document.execCommand("copy"); - - resolve(); - } catch (err) { - reject(err); - } finally { - document.body.removeChild(el); - } - }); - } -} - -if (document.readyState === "loading") { - document.addEventListener("DOMContentLoaded", addCopyButtonCallbacks); -} else { - addCopyButtonCallbacks(); -} - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery', 'headroom', 'headroom-jquery'], function($, Headroom) { - -// Manages the top navigation bar (hides it when the user starts scrolling down on the -// mobile). -window.Headroom = Headroom; // work around buggy module loading? -$(document).ready(function () { - $("#documenter .docs-navbar").headroom({ - tolerance: { up: 10, down: 10 }, - }); -}); - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -$(document).ready(function () { - let meta = $("div[data-docstringscollapsed]").data(); - - if (meta?.docstringscollapsed) { - $("#documenter-article-toggle-button").trigger({ - type: "click", - noToggleAnimation: true, - }); - } -}); - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -/* -To get an in-depth about the thought process you can refer: https://hetarth02.hashnode.dev/series/gsoc - -PSEUDOCODE: - -Searching happens automatically as the user types or adjusts the selected filters. -To preserve responsiveness, as much as possible of the slow parts of the search are done -in a web worker. Searching and result generation are done in the worker, and filtering and -DOM updates are done in the main thread. The filters are in the main thread as they should -be very quick to apply. This lets filters be changed without re-searching with minisearch -(which is possible even if filtering is on the worker thread) and also lets filters be -changed _while_ the worker is searching and without message passing (neither of which are -possible if filtering is on the worker thread) - -SEARCH WORKER: - -Import minisearch - -Build index - -On message from main thread - run search - find the first 200 unique results from each category, and compute their divs for display - note that this is necessary and sufficient information for the main thread to find the - first 200 unique results from any given filter set - post results to main thread - -MAIN: - -Launch worker - -Declare nonconstant globals (worker_is_running, last_search_text, unfiltered_results) - -On text update - if worker is not running, launch_search() - -launch_search - set worker_is_running to true, set last_search_text to the search text - post the search query to worker - -on message from worker - if last_search_text is not the same as the text in the search field, - the latest search result is not reflective of the latest search query, so update again - launch_search() - otherwise - set worker_is_running to false - - regardless, display the new search results to the user - save the unfiltered_results as a global - update_search() - -on filter click - adjust the filter selection - update_search() - -update_search - apply search filters by looping through the unfiltered_results and finding the first 200 - unique results that match the filters - - Update the DOM -*/ - -/////// SEARCH WORKER /////// - -function worker_function(documenterSearchIndex, documenterBaseURL, filters) { - importScripts( - "https://cdn.jsdelivr.net/npm/minisearch@6.1.0/dist/umd/index.min.js" - ); - - let data = documenterSearchIndex.map((x, key) => { - x["id"] = key; // minisearch requires a unique for each object - return x; - }); - - // list below is the lunr 2.1.3 list minus the intersect with names(Base) - // (all, any, get, in, is, only, which) and (do, else, for, let, where, while, with) - // ideally we'd just filter the original list but it's not available as a variable - const stopWords = new Set([ - "a", - "able", - "about", - "across", - "after", - "almost", - "also", - "am", - "among", - "an", - "and", - "are", - "as", - "at", - "be", - "because", - "been", - "but", - "by", - "can", - "cannot", - "could", - "dear", - "did", - "does", - "either", - "ever", - "every", - "from", - "got", - "had", - "has", - "have", - "he", - "her", - "hers", - "him", - "his", - "how", - "however", - "i", - "if", - "into", - "it", - "its", - "just", - "least", - "like", - "likely", - "may", - "me", - "might", - "most", - "must", - "my", - "neither", - "no", - "nor", - "not", - "of", - "off", - "often", - "on", - "or", - "other", - "our", - "own", - "rather", - "said", - "say", - "says", - "she", - "should", - "since", - "so", - "some", - "than", - "that", - "the", - "their", - "them", - "then", - "there", - "these", - "they", - "this", - "tis", - "to", - "too", - "twas", - "us", - "wants", - "was", - "we", - "were", - "what", - "when", - "who", - "whom", - "why", - "will", - "would", - "yet", - "you", - "your", - ]); - - let index = new MiniSearch({ - fields: ["title", "text"], // fields to index for full-text search - storeFields: ["location", "title", "text", "category", "page"], // fields to return with results - processTerm: (term) => { - let word = stopWords.has(term) ? null : term; - if (word) { - // custom trimmer that doesn't strip @ and !, which are used in julia macro and function names - word = word - .replace(/^[^a-zA-Z0-9@!]+/, "") - .replace(/[^a-zA-Z0-9@!]+$/, ""); - - word = word.toLowerCase(); - } - - return word ?? null; - }, - // add . as a separator, because otherwise "title": "Documenter.Anchors.add!", would not - // find anything if searching for "add!", only for the entire qualification - tokenize: (string) => string.split(/[\s\-\.]+/), - // options which will be applied during the search - searchOptions: { - prefix: true, - boost: { title: 100 }, - fuzzy: 2, - }, - }); - - index.addAll(data); - - /** - * Used to map characters to HTML entities. - * Refer: https://github.com/lodash/lodash/blob/main/src/escape.ts - */ - const htmlEscapes = { - "&": "&", - "<": "<", - ">": ">", - '"': """, - "'": "'", - }; - - /** - * Used to match HTML entities and HTML characters. - * Refer: https://github.com/lodash/lodash/blob/main/src/escape.ts - */ - const reUnescapedHtml = /[&<>"']/g; - const reHasUnescapedHtml = RegExp(reUnescapedHtml.source); - - /** - * Escape function from lodash - * Refer: https://github.com/lodash/lodash/blob/main/src/escape.ts - */ - function escape(string) { - return string && reHasUnescapedHtml.test(string) - ? string.replace(reUnescapedHtml, (chr) => htmlEscapes[chr]) - : string || ""; - } - - /** - * RegX escape function from MDN - * Refer: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping - */ - function escapeRegExp(string) { - return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string - } - - /** - * Make the result component given a minisearch result data object and the value - * of the search input as queryString. To view the result object structure, refer: - * https://lucaong.github.io/minisearch/modules/_minisearch_.html#searchresult - * - * @param {object} result - * @param {string} querystring - * @returns string - */ - function make_search_result(result, querystring) { - let search_divider = `
`; - let display_link = - result.location.slice(Math.max(0), Math.min(50, result.location.length)) + - (result.location.length > 30 ? "..." : ""); // To cut-off the link because it messes with the overflow of the whole div - - if (result.page !== "") { - display_link += ` (${result.page})`; - } - searchstring = escapeRegExp(querystring); - let textindex = new RegExp(`${searchstring}`, "i").exec(result.text); - let text = - textindex !== null - ? result.text.slice( - Math.max(textindex.index - 100, 0), - Math.min( - textindex.index + querystring.length + 100, - result.text.length - ) - ) - : ""; // cut-off text before and after from the match - - text = text.length ? escape(text) : ""; - - let display_result = text.length - ? "..." + - text.replace( - new RegExp(`${escape(searchstring)}`, "i"), // For first occurrence - '$&' - ) + - "..." - : ""; // highlights the match - - let in_code = false; - if (!["page", "section"].includes(result.category.toLowerCase())) { - in_code = true; - } - - // We encode the full url to escape some special characters which can lead to broken links - let result_div = ` - -
-
${escape(result.title)}
-
${result.category}
-
-

- ${display_result} -

-
- ${display_link} -
-
- ${search_divider} - `; - - return result_div; - } - - self.onmessage = function (e) { - let query = e.data; - let results = index.search(query, { - filter: (result) => { - // Only return relevant results - return result.score >= 1; - }, - combineWith: "AND", - }); - - // Pre-filter to deduplicate and limit to 200 per category to the extent - // possible without knowing what the filters are. - let filtered_results = []; - let counts = {}; - for (let filter of filters) { - counts[filter] = 0; - } - let present = {}; - - for (let result of results) { - cat = result.category; - cnt = counts[cat]; - if (cnt < 200) { - id = cat + "---" + result.location; - if (present[id]) { - continue; - } - present[id] = true; - filtered_results.push({ - location: result.location, - category: cat, - div: make_search_result(result, query), - }); - } - } - - postMessage(filtered_results); - }; -} - -/////// SEARCH MAIN /////// - -function runSearchMainCode() { - // `worker = Threads.@spawn worker_function(documenterSearchIndex)`, but in JavaScript! - const filters = [ - ...new Set(documenterSearchIndex["docs"].map((x) => x.category)), - ]; - const worker_str = - "(" + - worker_function.toString() + - ")(" + - JSON.stringify(documenterSearchIndex["docs"]) + - "," + - JSON.stringify(documenterBaseURL) + - "," + - JSON.stringify(filters) + - ")"; - const worker_blob = new Blob([worker_str], { type: "text/javascript" }); - const worker = new Worker(URL.createObjectURL(worker_blob)); - - // Whether the worker is currently handling a search. This is a boolean - // as the worker only ever handles 1 or 0 searches at a time. - var worker_is_running = false; - - // The last search text that was sent to the worker. This is used to determine - // if the worker should be launched again when it reports back results. - var last_search_text = ""; - - // The results of the last search. This, in combination with the state of the filters - // in the DOM, is used compute the results to display on calls to update_search. - var unfiltered_results = []; - - // Which filter is currently selected - var selected_filter = ""; - - $(document).on("input", ".documenter-search-input", function (event) { - if (!worker_is_running) { - launch_search(); - } - }); - - function launch_search() { - worker_is_running = true; - last_search_text = $(".documenter-search-input").val(); - worker.postMessage(last_search_text); - } - - worker.onmessage = function (e) { - if (last_search_text !== $(".documenter-search-input").val()) { - launch_search(); - } else { - worker_is_running = false; - } - - unfiltered_results = e.data; - update_search(); - }; - - $(document).on("click", ".search-filter", function () { - if ($(this).hasClass("search-filter-selected")) { - selected_filter = ""; - } else { - selected_filter = $(this).text().toLowerCase(); - } - - // This updates search results and toggles classes for UI: - update_search(); - }); - - /** - * Make/Update the search component - */ - function update_search() { - let querystring = $(".documenter-search-input").val(); - - if (querystring.trim()) { - if (selected_filter == "") { - results = unfiltered_results; - } else { - results = unfiltered_results.filter((result) => { - return selected_filter == result.category.toLowerCase(); - }); - } - - let search_result_container = ``; - let modal_filters = make_modal_body_filters(); - let search_divider = `
`; - - if (results.length) { - let links = []; - let count = 0; - let search_results = ""; - - for (var i = 0, n = results.length; i < n && count < 200; ++i) { - let result = results[i]; - if (result.location && !links.includes(result.location)) { - search_results += result.div; - count++; - links.push(result.location); - } - } - - if (count == 1) { - count_str = "1 result"; - } else if (count == 200) { - count_str = "200+ results"; - } else { - count_str = count + " results"; - } - let result_count = `
${count_str}
`; - - search_result_container = ` -
- ${modal_filters} - ${search_divider} - ${result_count} -
- ${search_results} -
-
- `; - } else { - search_result_container = ` -
- ${modal_filters} - ${search_divider} -
0 result(s)
-
-
No result found!
- `; - } - - if ($(".search-modal-card-body").hasClass("is-justify-content-center")) { - $(".search-modal-card-body").removeClass("is-justify-content-center"); - } - - $(".search-modal-card-body").html(search_result_container); - } else { - if (!$(".search-modal-card-body").hasClass("is-justify-content-center")) { - $(".search-modal-card-body").addClass("is-justify-content-center"); - } - - $(".search-modal-card-body").html(` -
Type something to get started!
- `); - } - } - - /** - * Make the modal filter html - * - * @returns string - */ - function make_modal_body_filters() { - let str = filters - .map((val) => { - if (selected_filter == val.toLowerCase()) { - return `${val}`; - } else { - return `${val}`; - } - }) - .join(""); - - return ` -
- Filters: - ${str} -
`; - } -} - -function waitUntilSearchIndexAvailable() { - // It is possible that the documenter.js script runs before the page - // has finished loading and documenterSearchIndex gets defined. - // So we need to wait until the search index actually loads before setting - // up all the search-related stuff. - if (typeof documenterSearchIndex !== "undefined") { - runSearchMainCode(); - } else { - console.warn("Search Index not available, waiting"); - setTimeout(waitUntilSearchIndexAvailable, 1000); - } -} - -// The actual entry point to the search code -waitUntilSearchIndexAvailable(); - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -// Modal settings dialog -$(document).ready(function () { - var settings = $("#documenter-settings"); - $("#documenter-settings-button").click(function () { - settings.toggleClass("is-active"); - }); - // Close the dialog if X is clicked - $("#documenter-settings button.delete").click(function () { - settings.removeClass("is-active"); - }); - // Close dialog if ESC is pressed - $(document).keyup(function (e) { - if (e.keyCode == 27) settings.removeClass("is-active"); - }); -}); - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -$(document).ready(function () { - let search_modal_header = ` - - `; - - let initial_search_body = ` -
Type something to get started!
- `; - - let search_modal_footer = ` - - `; - - $(document.body).append( - ` - - ` - ); - - document.querySelector(".docs-search-query").addEventListener("click", () => { - openModal(); - }); - - document - .querySelector(".close-search-modal") - .addEventListener("click", () => { - closeModal(); - }); - - $(document).on("click", ".search-result-link", function () { - closeModal(); - }); - - document.addEventListener("keydown", (event) => { - if ((event.ctrlKey || event.metaKey) && event.key === "/") { - openModal(); - } else if (event.key === "Escape") { - closeModal(); - } - - return false; - }); - - // Functions to open and close a modal - function openModal() { - let searchModal = document.querySelector("#search-modal"); - - searchModal.classList.add("is-active"); - document.querySelector(".documenter-search-input").focus(); - } - - function closeModal() { - let searchModal = document.querySelector("#search-modal"); - let initial_search_body = ` -
Type something to get started!
- `; - - searchModal.classList.remove("is-active"); - document.querySelector(".documenter-search-input").blur(); - - if (!$(".search-modal-card-body").hasClass("is-justify-content-center")) { - $(".search-modal-card-body").addClass("is-justify-content-center"); - } - - $(".documenter-search-input").val(""); - $(".search-modal-card-body").html(initial_search_body); - } - - document - .querySelector("#search-modal .modal-background") - .addEventListener("click", () => { - closeModal(); - }); -}); - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -// Manages the showing and hiding of the sidebar. -$(document).ready(function () { - var sidebar = $("#documenter > .docs-sidebar"); - var sidebar_button = $("#documenter-sidebar-button"); - sidebar_button.click(function (ev) { - ev.preventDefault(); - sidebar.toggleClass("visible"); - if (sidebar.hasClass("visible")) { - // Makes sure that the current menu item is visible in the sidebar. - $("#documenter .docs-menu a.is-active").focus(); - } - }); - $("#documenter > .docs-main").bind("click", function (ev) { - if ($(ev.target).is(sidebar_button)) { - return; - } - if (sidebar.hasClass("visible")) { - sidebar.removeClass("visible"); - } - }); -}); - -// Resizes the package name / sitename in the sidebar if it is too wide. -// Inspired by: https://github.com/davatron5000/FitText.js -$(document).ready(function () { - e = $("#documenter .docs-autofit"); - function resize() { - var L = parseInt(e.css("max-width"), 10); - var L0 = e.width(); - if (L0 > L) { - var h0 = parseInt(e.css("font-size"), 10); - e.css("font-size", (L * h0) / L0); - // TODO: make sure it survives resizes? - } - } - // call once and then register events - resize(); - $(window).resize(resize); - $(window).on("orientationchange", resize); -}); - -// Scroll the navigation bar to the currently selected menu item -$(document).ready(function () { - var sidebar = $("#documenter .docs-menu").get(0); - var active = $("#documenter .docs-menu .is-active").get(0); - if (typeof active !== "undefined") { - sidebar.scrollTop = active.offsetTop - sidebar.offsetTop - 15; - } -}); - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -// Theme picker setup -$(document).ready(function () { - // onchange callback - $("#documenter-themepicker").change(function themepick_callback(ev) { - var themename = $("#documenter-themepicker option:selected").attr("value"); - if (themename === "auto") { - // set_theme(window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'); - window.localStorage.removeItem("documenter-theme"); - } else { - // set_theme(themename); - window.localStorage.setItem("documenter-theme", themename); - } - // We re-use the global function from themeswap.js to actually do the swapping. - set_theme_from_local_storage(); - }); - - // Make sure that the themepicker displays the correct theme when the theme is retrieved - // from localStorage - if (typeof window.localStorage !== "undefined") { - var theme = window.localStorage.getItem("documenter-theme"); - if (theme !== null) { - $("#documenter-themepicker option").each(function (i, e) { - e.selected = e.value === theme; - }); - } - } -}); - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -// update the version selector with info from the siteinfo.js and ../versions.js files -$(document).ready(function () { - // If the version selector is disabled with DOCUMENTER_VERSION_SELECTOR_DISABLED in the - // siteinfo.js file, we just return immediately and not display the version selector. - if ( - typeof DOCUMENTER_VERSION_SELECTOR_DISABLED === "boolean" && - DOCUMENTER_VERSION_SELECTOR_DISABLED - ) { - return; - } - - var version_selector = $("#documenter .docs-version-selector"); - var version_selector_select = $("#documenter .docs-version-selector select"); - - version_selector_select.change(function (x) { - target_href = version_selector_select - .children("option:selected") - .get(0).value; - window.location.href = target_href; - }); - - // add the current version to the selector based on siteinfo.js, but only if the selector is empty - if ( - typeof DOCUMENTER_CURRENT_VERSION !== "undefined" && - $("#version-selector > option").length == 0 - ) { - var option = $( - "" - ); - version_selector_select.append(option); - } - - if (typeof DOC_VERSIONS !== "undefined") { - var existing_versions = version_selector_select.children("option"); - var existing_versions_texts = existing_versions.map(function (i, x) { - return x.text; - }); - DOC_VERSIONS.forEach(function (each) { - var version_url = documenterBaseURL + "/../" + each + "/"; - var existing_id = $.inArray(each, existing_versions_texts); - // if not already in the version selector, add it as a new option, - // otherwise update the old option with the URL and enable it - if (existing_id == -1) { - var option = $( - "" - ); - version_selector_select.append(option); - } else { - var option = existing_versions[existing_id]; - option.value = version_url; - option.disabled = false; - } - }); - } - - // only show the version selector if the selector has been populated - if (version_selector_select.children("option").length > 0) { - version_selector.toggleClass("visible"); - } -}); - -}) diff --git a/doc/build/assets/icons.ico b/doc/build/assets/icons.ico deleted file mode 100644 index ba41981..0000000 Binary files a/doc/build/assets/icons.ico and /dev/null differ diff --git a/doc/build/assets/themes/catppuccin-frappe.css b/doc/build/assets/themes/catppuccin-frappe.css deleted file mode 100644 index 32e3f00..0000000 --- a/doc/build/assets/themes/catppuccin-frappe.css +++ /dev/null @@ -1 +0,0 @@ -html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe .pagination-ellipsis,html.theme--catppuccin-frappe .file-cta,html.theme--catppuccin-frappe .file-name,html.theme--catppuccin-frappe .select select,html.theme--catppuccin-frappe .textarea,html.theme--catppuccin-frappe .input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--catppuccin-frappe .pagination-previous:focus,html.theme--catppuccin-frappe .pagination-next:focus,html.theme--catppuccin-frappe .pagination-link:focus,html.theme--catppuccin-frappe .pagination-ellipsis:focus,html.theme--catppuccin-frappe .file-cta:focus,html.theme--catppuccin-frappe .file-name:focus,html.theme--catppuccin-frappe .select select:focus,html.theme--catppuccin-frappe .textarea:focus,html.theme--catppuccin-frappe .input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-frappe .button:focus,html.theme--catppuccin-frappe .is-focused.pagination-previous,html.theme--catppuccin-frappe .is-focused.pagination-next,html.theme--catppuccin-frappe .is-focused.pagination-link,html.theme--catppuccin-frappe .is-focused.pagination-ellipsis,html.theme--catppuccin-frappe .is-focused.file-cta,html.theme--catppuccin-frappe .is-focused.file-name,html.theme--catppuccin-frappe .select select.is-focused,html.theme--catppuccin-frappe .is-focused.textarea,html.theme--catppuccin-frappe .is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-focused.button,html.theme--catppuccin-frappe .pagination-previous:active,html.theme--catppuccin-frappe .pagination-next:active,html.theme--catppuccin-frappe .pagination-link:active,html.theme--catppuccin-frappe .pagination-ellipsis:active,html.theme--catppuccin-frappe .file-cta:active,html.theme--catppuccin-frappe .file-name:active,html.theme--catppuccin-frappe .select select:active,html.theme--catppuccin-frappe .textarea:active,html.theme--catppuccin-frappe .input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-frappe .button:active,html.theme--catppuccin-frappe .is-active.pagination-previous,html.theme--catppuccin-frappe .is-active.pagination-next,html.theme--catppuccin-frappe .is-active.pagination-link,html.theme--catppuccin-frappe .is-active.pagination-ellipsis,html.theme--catppuccin-frappe .is-active.file-cta,html.theme--catppuccin-frappe .is-active.file-name,html.theme--catppuccin-frappe .select select.is-active,html.theme--catppuccin-frappe .is-active.textarea,html.theme--catppuccin-frappe .is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-frappe .is-active.button{outline:none}html.theme--catppuccin-frappe .pagination-previous[disabled],html.theme--catppuccin-frappe .pagination-next[disabled],html.theme--catppuccin-frappe .pagination-link[disabled],html.theme--catppuccin-frappe .pagination-ellipsis[disabled],html.theme--catppuccin-frappe .file-cta[disabled],html.theme--catppuccin-frappe .file-name[disabled],html.theme--catppuccin-frappe .select select[disabled],html.theme--catppuccin-frappe .textarea[disabled],html.theme--catppuccin-frappe .input[disabled],html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--catppuccin-frappe .button[disabled],fieldset[disabled] html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--catppuccin-frappe .pagination-ellipsis,html.theme--catppuccin-frappe fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--catppuccin-frappe .file-cta,html.theme--catppuccin-frappe fieldset[disabled] .file-cta,fieldset[disabled] html.theme--catppuccin-frappe .file-name,html.theme--catppuccin-frappe fieldset[disabled] .file-name,fieldset[disabled] html.theme--catppuccin-frappe .select select,fieldset[disabled] html.theme--catppuccin-frappe .textarea,fieldset[disabled] html.theme--catppuccin-frappe .input,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe fieldset[disabled] .select select,html.theme--catppuccin-frappe .select fieldset[disabled] select,html.theme--catppuccin-frappe fieldset[disabled] .textarea,html.theme--catppuccin-frappe fieldset[disabled] .input,html.theme--catppuccin-frappe fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--catppuccin-frappe .button,html.theme--catppuccin-frappe fieldset[disabled] .button{cursor:not-allowed}html.theme--catppuccin-frappe .tabs,html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe .pagination-ellipsis,html.theme--catppuccin-frappe .breadcrumb,html.theme--catppuccin-frappe .file,html.theme--catppuccin-frappe .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--catppuccin-frappe .navbar-link:not(.is-arrowless)::after,html.theme--catppuccin-frappe .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--catppuccin-frappe .admonition:not(:last-child),html.theme--catppuccin-frappe .tabs:not(:last-child),html.theme--catppuccin-frappe .pagination:not(:last-child),html.theme--catppuccin-frappe .message:not(:last-child),html.theme--catppuccin-frappe .level:not(:last-child),html.theme--catppuccin-frappe .breadcrumb:not(:last-child),html.theme--catppuccin-frappe .block:not(:last-child),html.theme--catppuccin-frappe .title:not(:last-child),html.theme--catppuccin-frappe .subtitle:not(:last-child),html.theme--catppuccin-frappe .table-container:not(:last-child),html.theme--catppuccin-frappe .table:not(:last-child),html.theme--catppuccin-frappe .progress:not(:last-child),html.theme--catppuccin-frappe .notification:not(:last-child),html.theme--catppuccin-frappe .content:not(:last-child),html.theme--catppuccin-frappe .box:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-frappe .modal-close,html.theme--catppuccin-frappe .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--catppuccin-frappe .modal-close::before,html.theme--catppuccin-frappe .delete::before,html.theme--catppuccin-frappe .modal-close::after,html.theme--catppuccin-frappe .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-frappe .modal-close::before,html.theme--catppuccin-frappe .delete::before{height:2px;width:50%}html.theme--catppuccin-frappe .modal-close::after,html.theme--catppuccin-frappe .delete::after{height:50%;width:2px}html.theme--catppuccin-frappe .modal-close:hover,html.theme--catppuccin-frappe .delete:hover,html.theme--catppuccin-frappe .modal-close:focus,html.theme--catppuccin-frappe .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--catppuccin-frappe .modal-close:active,html.theme--catppuccin-frappe .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--catppuccin-frappe .is-small.modal-close,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--catppuccin-frappe .is-small.delete,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--catppuccin-frappe .is-medium.modal-close,html.theme--catppuccin-frappe .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--catppuccin-frappe .is-large.modal-close,html.theme--catppuccin-frappe .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--catppuccin-frappe .control.is-loading::after,html.theme--catppuccin-frappe .select.is-loading::after,html.theme--catppuccin-frappe .loader,html.theme--catppuccin-frappe .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #838ba7;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--catppuccin-frappe .hero-video,html.theme--catppuccin-frappe .modal-background,html.theme--catppuccin-frappe .modal,html.theme--catppuccin-frappe .image.is-square img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-frappe .image.is-square .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-frappe .image.is-1by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-frappe .image.is-1by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-frappe .image.is-5by4 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-frappe .image.is-5by4 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-frappe .image.is-4by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-frappe .image.is-4by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-frappe .image.is-3by2 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-frappe .image.is-3by2 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-frappe .image.is-5by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-frappe .image.is-5by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-frappe .image.is-16by9 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-frappe .image.is-16by9 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-frappe .image.is-2by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-frappe .image.is-2by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-frappe .image.is-3by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-frappe .image.is-3by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-frappe .image.is-4by5 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-frappe .image.is-4by5 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-frappe .image.is-3by4 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-frappe .image.is-3by4 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-frappe .image.is-2by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-frappe .image.is-2by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-frappe .image.is-3by5 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-frappe .image.is-3by5 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-frappe .image.is-9by16 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-frappe .image.is-9by16 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-frappe .image.is-1by2 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-frappe .image.is-1by2 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-frappe .image.is-1by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-frappe .image.is-1by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--catppuccin-frappe .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#414559 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#2b2e3c !important}.has-background-dark{background-color:#414559 !important}.has-text-primary{color:#8caaee !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#6089e7 !important}.has-background-primary{background-color:#8caaee !important}.has-text-primary-light{color:#edf2fc !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#c1d1f6 !important}.has-background-primary-light{background-color:#edf2fc !important}.has-text-primary-dark{color:#153a8e !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#1c4cbb !important}.has-background-primary-dark{background-color:#153a8e !important}.has-text-link{color:#8caaee !important}a.has-text-link:hover,a.has-text-link:focus{color:#6089e7 !important}.has-background-link{background-color:#8caaee !important}.has-text-link-light{color:#edf2fc !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c1d1f6 !important}.has-background-link-light{background-color:#edf2fc !important}.has-text-link-dark{color:#153a8e !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#1c4cbb !important}.has-background-link-dark{background-color:#153a8e !important}.has-text-info{color:#81c8be !important}a.has-text-info:hover,a.has-text-info:focus{color:#5db9ac !important}.has-background-info{background-color:#81c8be !important}.has-text-info-light{color:#f1f9f8 !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#cde9e5 !important}.has-background-info-light{background-color:#f1f9f8 !important}.has-text-info-dark{color:#2d675f !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#3c8a7f !important}.has-background-info-dark{background-color:#2d675f !important}.has-text-success{color:#a6d189 !important}a.has-text-success:hover,a.has-text-success:focus{color:#8ac364 !important}.has-background-success{background-color:#a6d189 !important}.has-text-success-light{color:#f4f9f0 !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#d8ebcc !important}.has-background-success-light{background-color:#f4f9f0 !important}.has-text-success-dark{color:#446a29 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#5b8f38 !important}.has-background-success-dark{background-color:#446a29 !important}.has-text-warning{color:#e5c890 !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#dbb467 !important}.has-background-warning{background-color:#e5c890 !important}.has-text-warning-light{color:#fbf7ee !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#f1e2c5 !important}.has-background-warning-light{background-color:#fbf7ee !important}.has-text-warning-dark{color:#78591c !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#a17726 !important}.has-background-warning-dark{background-color:#78591c !important}.has-text-danger{color:#e78284 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#df575a !important}.has-background-danger{background-color:#e78284 !important}.has-text-danger-light{color:#fceeee !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f3c3c4 !important}.has-background-danger-light{background-color:#fceeee !important}.has-text-danger-dark{color:#9a1e20 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#c52629 !important}.has-background-danger-dark{background-color:#9a1e20 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#414559 !important}.has-background-grey-darker{background-color:#414559 !important}.has-text-grey-dark{color:#51576d !important}.has-background-grey-dark{background-color:#51576d !important}.has-text-grey{color:#626880 !important}.has-background-grey{background-color:#626880 !important}.has-text-grey-light{color:#737994 !important}.has-background-grey-light{background-color:#737994 !important}.has-text-grey-lighter{color:#838ba7 !important}.has-background-grey-lighter{background-color:#838ba7 !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--catppuccin-frappe html{background-color:#303446;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-frappe article,html.theme--catppuccin-frappe aside,html.theme--catppuccin-frappe figure,html.theme--catppuccin-frappe footer,html.theme--catppuccin-frappe header,html.theme--catppuccin-frappe hgroup,html.theme--catppuccin-frappe section{display:block}html.theme--catppuccin-frappe body,html.theme--catppuccin-frappe button,html.theme--catppuccin-frappe input,html.theme--catppuccin-frappe optgroup,html.theme--catppuccin-frappe select,html.theme--catppuccin-frappe textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--catppuccin-frappe code,html.theme--catppuccin-frappe pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-frappe body{color:#c6d0f5;font-size:1em;font-weight:400;line-height:1.5}html.theme--catppuccin-frappe a{color:#8caaee;cursor:pointer;text-decoration:none}html.theme--catppuccin-frappe a strong{color:currentColor}html.theme--catppuccin-frappe a:hover{color:#99d1db}html.theme--catppuccin-frappe code{background-color:#292c3c;color:#c6d0f5;font-size:.875em;font-weight:normal;padding:.1em}html.theme--catppuccin-frappe hr{background-color:#292c3c;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--catppuccin-frappe img{height:auto;max-width:100%}html.theme--catppuccin-frappe input[type="checkbox"],html.theme--catppuccin-frappe input[type="radio"]{vertical-align:baseline}html.theme--catppuccin-frappe small{font-size:.875em}html.theme--catppuccin-frappe span{font-style:inherit;font-weight:inherit}html.theme--catppuccin-frappe strong{color:#b0bef1;font-weight:700}html.theme--catppuccin-frappe fieldset{border:none}html.theme--catppuccin-frappe pre{-webkit-overflow-scrolling:touch;background-color:#292c3c;color:#c6d0f5;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--catppuccin-frappe pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--catppuccin-frappe table td,html.theme--catppuccin-frappe table th{vertical-align:top}html.theme--catppuccin-frappe table td:not([align]),html.theme--catppuccin-frappe table th:not([align]){text-align:inherit}html.theme--catppuccin-frappe table th{color:#b0bef1}html.theme--catppuccin-frappe .box{background-color:#51576d;border-radius:8px;box-shadow:none;color:#c6d0f5;display:block;padding:1.25rem}html.theme--catppuccin-frappe a.box:hover,html.theme--catppuccin-frappe a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #8caaee}html.theme--catppuccin-frappe a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #8caaee}html.theme--catppuccin-frappe .button{background-color:#292c3c;border-color:#484d69;border-width:1px;color:#8caaee;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--catppuccin-frappe .button strong{color:inherit}html.theme--catppuccin-frappe .button .icon,html.theme--catppuccin-frappe .button .icon.is-small,html.theme--catppuccin-frappe .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--catppuccin-frappe .button .icon.is-medium,html.theme--catppuccin-frappe .button .icon.is-large{height:1.5em;width:1.5em}html.theme--catppuccin-frappe .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--catppuccin-frappe .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-frappe .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-frappe .button:hover,html.theme--catppuccin-frappe .button.is-hovered{border-color:#737994;color:#b0bef1}html.theme--catppuccin-frappe .button:focus,html.theme--catppuccin-frappe .button.is-focused{border-color:#737994;color:#769aeb}html.theme--catppuccin-frappe .button:focus:not(:active),html.theme--catppuccin-frappe .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .button:active,html.theme--catppuccin-frappe .button.is-active{border-color:#51576d;color:#b0bef1}html.theme--catppuccin-frappe .button.is-text{background-color:transparent;border-color:transparent;color:#c6d0f5;text-decoration:underline}html.theme--catppuccin-frappe .button.is-text:hover,html.theme--catppuccin-frappe .button.is-text.is-hovered,html.theme--catppuccin-frappe .button.is-text:focus,html.theme--catppuccin-frappe .button.is-text.is-focused{background-color:#292c3c;color:#b0bef1}html.theme--catppuccin-frappe .button.is-text:active,html.theme--catppuccin-frappe .button.is-text.is-active{background-color:#1f212d;color:#b0bef1}html.theme--catppuccin-frappe .button.is-text[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--catppuccin-frappe .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#8caaee;text-decoration:none}html.theme--catppuccin-frappe .button.is-ghost:hover,html.theme--catppuccin-frappe .button.is-ghost.is-hovered{color:#8caaee;text-decoration:underline}html.theme--catppuccin-frappe .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white:hover,html.theme--catppuccin-frappe .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white:focus,html.theme--catppuccin-frappe .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white:focus:not(:active),html.theme--catppuccin-frappe .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-frappe .button.is-white:active,html.theme--catppuccin-frappe .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--catppuccin-frappe .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-inverted:hover,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--catppuccin-frappe .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-frappe .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-outlined:hover,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-white.is-outlined:focus,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-frappe .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-black:hover,html.theme--catppuccin-frappe .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-black:focus,html.theme--catppuccin-frappe .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-black:focus:not(:active),html.theme--catppuccin-frappe .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-frappe .button.is-black:active,html.theme--catppuccin-frappe .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-black[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--catppuccin-frappe .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-inverted:hover,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-outlined:hover,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-black.is-outlined:focus,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light:hover,html.theme--catppuccin-frappe .button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light:focus,html.theme--catppuccin-frappe .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light:focus:not(:active),html.theme--catppuccin-frappe .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-frappe .button.is-light:active,html.theme--catppuccin-frappe .button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}html.theme--catppuccin-frappe .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-inverted:hover,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-outlined:hover,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-light.is-outlined:focus,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-dark,html.theme--catppuccin-frappe .content kbd.button{background-color:#414559;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-dark:hover,html.theme--catppuccin-frappe .content kbd.button:hover,html.theme--catppuccin-frappe .button.is-dark.is-hovered,html.theme--catppuccin-frappe .content kbd.button.is-hovered{background-color:#3c3f52;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-dark:focus,html.theme--catppuccin-frappe .content kbd.button:focus,html.theme--catppuccin-frappe .button.is-dark.is-focused,html.theme--catppuccin-frappe .content kbd.button.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-dark:focus:not(:active),html.theme--catppuccin-frappe .content kbd.button:focus:not(:active),html.theme--catppuccin-frappe .button.is-dark.is-focused:not(:active),html.theme--catppuccin-frappe .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(65,69,89,0.25)}html.theme--catppuccin-frappe .button.is-dark:active,html.theme--catppuccin-frappe .content kbd.button:active,html.theme--catppuccin-frappe .button.is-dark.is-active,html.theme--catppuccin-frappe .content kbd.button.is-active{background-color:#363a4a;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-dark[disabled],html.theme--catppuccin-frappe .content kbd.button[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-dark,fieldset[disabled] html.theme--catppuccin-frappe .content kbd.button{background-color:#414559;border-color:#414559;box-shadow:none}html.theme--catppuccin-frappe .button.is-dark.is-inverted,html.theme--catppuccin-frappe .content kbd.button.is-inverted{background-color:#fff;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-inverted:hover,html.theme--catppuccin-frappe .content kbd.button.is-inverted:hover,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-hovered,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-dark.is-inverted[disabled],html.theme--catppuccin-frappe .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-dark.is-inverted,fieldset[disabled] html.theme--catppuccin-frappe .content kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-loading::after,html.theme--catppuccin-frappe .content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-dark.is-outlined,html.theme--catppuccin-frappe .content kbd.button.is-outlined{background-color:transparent;border-color:#414559;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-outlined:hover,html.theme--catppuccin-frappe .content kbd.button.is-outlined:hover,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-hovered,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-dark.is-outlined:focus,html.theme--catppuccin-frappe .content kbd.button.is-outlined:focus,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-focused,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-focused{background-color:#414559;border-color:#414559;color:#fff}html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #414559 #414559 !important}html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-frappe .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-dark.is-outlined[disabled],html.theme--catppuccin-frappe .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-dark.is-outlined,fieldset[disabled] html.theme--catppuccin-frappe .content kbd.button.is-outlined{background-color:transparent;border-color:#414559;box-shadow:none;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#414559}html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #414559 #414559 !important}html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined[disabled],html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-frappe .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-primary,html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink{background-color:#8caaee;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-primary:hover,html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#81a2ec;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-primary:focus,html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink:focus,html.theme--catppuccin-frappe .button.is-primary.is-focused,html.theme--catppuccin-frappe .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-primary:focus:not(:active),html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--catppuccin-frappe .button.is-primary.is-focused:not(:active),html.theme--catppuccin-frappe .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .button.is-primary:active,html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink:active,html.theme--catppuccin-frappe .button.is-primary.is-active,html.theme--catppuccin-frappe .docstring>section>a.button.is-active.docs-sourcelink{background-color:#769aeb;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-primary[disabled],html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-primary,fieldset[disabled] html.theme--catppuccin-frappe .docstring>section>a.button.docs-sourcelink{background-color:#8caaee;border-color:#8caaee;box-shadow:none}html.theme--catppuccin-frappe .button.is-primary.is-inverted,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-inverted:hover,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-primary.is-inverted[disabled],html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-primary.is-inverted,fieldset[disabled] html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-loading::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-primary.is-outlined,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#8caaee;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-outlined:hover,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-frappe .button.is-primary.is-outlined:focus,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-focused,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #8caaee #8caaee !important}html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-frappe .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-primary.is-outlined[disabled],html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-primary.is-outlined,fieldset[disabled] html.theme--catppuccin-frappe .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#8caaee;box-shadow:none;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #8caaee #8caaee !important}html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined[disabled],html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-frappe .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-primary.is-light,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.docs-sourcelink{background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .button.is-primary.is-light:hover,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--catppuccin-frappe .button.is-primary.is-light.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#e2eafb;border-color:transparent;color:#153a8e}html.theme--catppuccin-frappe .button.is-primary.is-light:active,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--catppuccin-frappe .button.is-primary.is-light.is-active,html.theme--catppuccin-frappe .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d7e1f9;border-color:transparent;color:#153a8e}html.theme--catppuccin-frappe .button.is-link{background-color:#8caaee;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-link:hover,html.theme--catppuccin-frappe .button.is-link.is-hovered{background-color:#81a2ec;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-link:focus,html.theme--catppuccin-frappe .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-link:focus:not(:active),html.theme--catppuccin-frappe .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .button.is-link:active,html.theme--catppuccin-frappe .button.is-link.is-active{background-color:#769aeb;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-link[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-link{background-color:#8caaee;border-color:#8caaee;box-shadow:none}html.theme--catppuccin-frappe .button.is-link.is-inverted{background-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-inverted:hover,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-link.is-outlined{background-color:transparent;border-color:#8caaee;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-outlined:hover,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-link.is-outlined:focus,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-focused{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #8caaee #8caaee !important}html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-link.is-outlined{background-color:transparent;border-color:#8caaee;box-shadow:none;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #8caaee #8caaee !important}html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-link.is-light{background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .button.is-link.is-light:hover,html.theme--catppuccin-frappe .button.is-link.is-light.is-hovered{background-color:#e2eafb;border-color:transparent;color:#153a8e}html.theme--catppuccin-frappe .button.is-link.is-light:active,html.theme--catppuccin-frappe .button.is-link.is-light.is-active{background-color:#d7e1f9;border-color:transparent;color:#153a8e}html.theme--catppuccin-frappe .button.is-info{background-color:#81c8be;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info:hover,html.theme--catppuccin-frappe .button.is-info.is-hovered{background-color:#78c4b9;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info:focus,html.theme--catppuccin-frappe .button.is-info.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info:focus:not(:active),html.theme--catppuccin-frappe .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(129,200,190,0.25)}html.theme--catppuccin-frappe .button.is-info:active,html.theme--catppuccin-frappe .button.is-info.is-active{background-color:#6fc0b5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-info{background-color:#81c8be;border-color:#81c8be;box-shadow:none}html.theme--catppuccin-frappe .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-inverted:hover,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-info.is-outlined{background-color:transparent;border-color:#81c8be;color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-outlined:hover,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-info.is-outlined:focus,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-focused{background-color:#81c8be;border-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #81c8be #81c8be !important}html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-info.is-outlined{background-color:transparent;border-color:#81c8be;box-shadow:none;color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#81c8be}html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #81c8be #81c8be !important}html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-info.is-light{background-color:#f1f9f8;color:#2d675f}html.theme--catppuccin-frappe .button.is-info.is-light:hover,html.theme--catppuccin-frappe .button.is-info.is-light.is-hovered{background-color:#e8f5f3;border-color:transparent;color:#2d675f}html.theme--catppuccin-frappe .button.is-info.is-light:active,html.theme--catppuccin-frappe .button.is-info.is-light.is-active{background-color:#dff1ef;border-color:transparent;color:#2d675f}html.theme--catppuccin-frappe .button.is-success{background-color:#a6d189;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success:hover,html.theme--catppuccin-frappe .button.is-success.is-hovered{background-color:#9fcd80;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success:focus,html.theme--catppuccin-frappe .button.is-success.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success:focus:not(:active),html.theme--catppuccin-frappe .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(166,209,137,0.25)}html.theme--catppuccin-frappe .button.is-success:active,html.theme--catppuccin-frappe .button.is-success.is-active{background-color:#98ca77;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-success{background-color:#a6d189;border-color:#a6d189;box-shadow:none}html.theme--catppuccin-frappe .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-inverted:hover,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-success.is-outlined{background-color:transparent;border-color:#a6d189;color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-outlined:hover,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-success.is-outlined:focus,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-focused{background-color:#a6d189;border-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #a6d189 #a6d189 !important}html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-success.is-outlined{background-color:transparent;border-color:#a6d189;box-shadow:none;color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#a6d189}html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #a6d189 #a6d189 !important}html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-success.is-light{background-color:#f4f9f0;color:#446a29}html.theme--catppuccin-frappe .button.is-success.is-light:hover,html.theme--catppuccin-frappe .button.is-success.is-light.is-hovered{background-color:#edf6e7;border-color:transparent;color:#446a29}html.theme--catppuccin-frappe .button.is-success.is-light:active,html.theme--catppuccin-frappe .button.is-success.is-light.is-active{background-color:#e6f2de;border-color:transparent;color:#446a29}html.theme--catppuccin-frappe .button.is-warning{background-color:#e5c890;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning:hover,html.theme--catppuccin-frappe .button.is-warning.is-hovered{background-color:#e3c386;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning:focus,html.theme--catppuccin-frappe .button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning:focus:not(:active),html.theme--catppuccin-frappe .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(229,200,144,0.25)}html.theme--catppuccin-frappe .button.is-warning:active,html.theme--catppuccin-frappe .button.is-warning.is-active{background-color:#e0be7b;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-warning{background-color:#e5c890;border-color:#e5c890;box-shadow:none}html.theme--catppuccin-frappe .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-inverted:hover,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-warning.is-outlined{background-color:transparent;border-color:#e5c890;color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-outlined:hover,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-warning.is-outlined:focus,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-focused{background-color:#e5c890;border-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #e5c890 #e5c890 !important}html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-frappe .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-warning.is-outlined{background-color:transparent;border-color:#e5c890;box-shadow:none;color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#e5c890}html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #e5c890 #e5c890 !important}html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .button.is-warning.is-light{background-color:#fbf7ee;color:#78591c}html.theme--catppuccin-frappe .button.is-warning.is-light:hover,html.theme--catppuccin-frappe .button.is-warning.is-light.is-hovered{background-color:#f9f2e4;border-color:transparent;color:#78591c}html.theme--catppuccin-frappe .button.is-warning.is-light:active,html.theme--catppuccin-frappe .button.is-warning.is-light.is-active{background-color:#f6edda;border-color:transparent;color:#78591c}html.theme--catppuccin-frappe .button.is-danger{background-color:#e78284;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-danger:hover,html.theme--catppuccin-frappe .button.is-danger.is-hovered{background-color:#e57779;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-danger:focus,html.theme--catppuccin-frappe .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-danger:focus:not(:active),html.theme--catppuccin-frappe .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(231,130,132,0.25)}html.theme--catppuccin-frappe .button.is-danger:active,html.theme--catppuccin-frappe .button.is-danger.is-active{background-color:#e36d6f;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .button.is-danger[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-danger{background-color:#e78284;border-color:#e78284;box-shadow:none}html.theme--catppuccin-frappe .button.is-danger.is-inverted{background-color:#fff;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-inverted:hover,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-frappe .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-danger.is-outlined{background-color:transparent;border-color:#e78284;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-outlined:hover,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-danger.is-outlined:focus,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-focused{background-color:#e78284;border-color:#e78284;color:#fff}html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #e78284 #e78284 !important}html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-frappe .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-danger.is-outlined{background-color:transparent;border-color:#e78284;box-shadow:none;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined:hover,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined:focus,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#e78284}html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #e78284 #e78284 !important}html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-frappe .button.is-danger.is-light{background-color:#fceeee;color:#9a1e20}html.theme--catppuccin-frappe .button.is-danger.is-light:hover,html.theme--catppuccin-frappe .button.is-danger.is-light.is-hovered{background-color:#fae3e4;border-color:transparent;color:#9a1e20}html.theme--catppuccin-frappe .button.is-danger.is-light:active,html.theme--catppuccin-frappe .button.is-danger.is-light.is-active{background-color:#f8d8d9;border-color:transparent;color:#9a1e20}html.theme--catppuccin-frappe .button.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--catppuccin-frappe .button.is-small:not(.is-rounded),html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--catppuccin-frappe .button.is-normal{font-size:1rem}html.theme--catppuccin-frappe .button.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .button.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .button[disabled],fieldset[disabled] html.theme--catppuccin-frappe .button{background-color:#737994;border-color:#626880;box-shadow:none;opacity:.5}html.theme--catppuccin-frappe .button.is-fullwidth{display:flex;width:100%}html.theme--catppuccin-frappe .button.is-loading{color:transparent !important;pointer-events:none}html.theme--catppuccin-frappe .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--catppuccin-frappe .button.is-static{background-color:#292c3c;border-color:#626880;color:#838ba7;box-shadow:none;pointer-events:none}html.theme--catppuccin-frappe .button.is-rounded,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--catppuccin-frappe .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-frappe .buttons .button{margin-bottom:0.5rem}html.theme--catppuccin-frappe .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--catppuccin-frappe .buttons:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-frappe .buttons:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-frappe .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--catppuccin-frappe .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--catppuccin-frappe .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--catppuccin-frappe .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--catppuccin-frappe .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-frappe .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--catppuccin-frappe .buttons.has-addons .button:last-child{margin-right:0}html.theme--catppuccin-frappe .buttons.has-addons .button:hover,html.theme--catppuccin-frappe .buttons.has-addons .button.is-hovered{z-index:2}html.theme--catppuccin-frappe .buttons.has-addons .button:focus,html.theme--catppuccin-frappe .buttons.has-addons .button.is-focused,html.theme--catppuccin-frappe .buttons.has-addons .button:active,html.theme--catppuccin-frappe .buttons.has-addons .button.is-active,html.theme--catppuccin-frappe .buttons.has-addons .button.is-selected{z-index:3}html.theme--catppuccin-frappe .buttons.has-addons .button:focus:hover,html.theme--catppuccin-frappe .buttons.has-addons .button.is-focused:hover,html.theme--catppuccin-frappe .buttons.has-addons .button:active:hover,html.theme--catppuccin-frappe .buttons.has-addons .button.is-active:hover,html.theme--catppuccin-frappe .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--catppuccin-frappe .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .buttons.is-centered{justify-content:center}html.theme--catppuccin-frappe .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--catppuccin-frappe .buttons.is-right{justify-content:flex-end}html.theme--catppuccin-frappe .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .button.is-responsive.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--catppuccin-frappe .button.is-responsive,html.theme--catppuccin-frappe .button.is-responsive.is-normal{font-size:.65625rem}html.theme--catppuccin-frappe .button.is-responsive.is-medium{font-size:.75rem}html.theme--catppuccin-frappe .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .button.is-responsive.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--catppuccin-frappe .button.is-responsive,html.theme--catppuccin-frappe .button.is-responsive.is-normal{font-size:.75rem}html.theme--catppuccin-frappe .button.is-responsive.is-medium{font-size:1rem}html.theme--catppuccin-frappe .button.is-responsive.is-large{font-size:1.25rem}}html.theme--catppuccin-frappe .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--catppuccin-frappe .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--catppuccin-frappe .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--catppuccin-frappe .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--catppuccin-frappe .content li+li{margin-top:0.25em}html.theme--catppuccin-frappe .content p:not(:last-child),html.theme--catppuccin-frappe .content dl:not(:last-child),html.theme--catppuccin-frappe .content ol:not(:last-child),html.theme--catppuccin-frappe .content ul:not(:last-child),html.theme--catppuccin-frappe .content blockquote:not(:last-child),html.theme--catppuccin-frappe .content pre:not(:last-child),html.theme--catppuccin-frappe .content table:not(:last-child){margin-bottom:1em}html.theme--catppuccin-frappe .content h1,html.theme--catppuccin-frappe .content h2,html.theme--catppuccin-frappe .content h3,html.theme--catppuccin-frappe .content h4,html.theme--catppuccin-frappe .content h5,html.theme--catppuccin-frappe .content h6{color:#c6d0f5;font-weight:600;line-height:1.125}html.theme--catppuccin-frappe .content h1{font-size:2em;margin-bottom:0.5em}html.theme--catppuccin-frappe .content h1:not(:first-child){margin-top:1em}html.theme--catppuccin-frappe .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--catppuccin-frappe .content h2:not(:first-child){margin-top:1.1428em}html.theme--catppuccin-frappe .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--catppuccin-frappe .content h3:not(:first-child){margin-top:1.3333em}html.theme--catppuccin-frappe .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--catppuccin-frappe .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--catppuccin-frappe .content h6{font-size:1em;margin-bottom:1em}html.theme--catppuccin-frappe .content blockquote{background-color:#292c3c;border-left:5px solid #626880;padding:1.25em 1.5em}html.theme--catppuccin-frappe .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-frappe .content ol:not([type]){list-style-type:decimal}html.theme--catppuccin-frappe .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--catppuccin-frappe .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--catppuccin-frappe .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--catppuccin-frappe .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--catppuccin-frappe .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-frappe .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--catppuccin-frappe .content ul ul ul{list-style-type:square}html.theme--catppuccin-frappe .content dd{margin-left:2em}html.theme--catppuccin-frappe .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--catppuccin-frappe .content figure:not(:first-child){margin-top:2em}html.theme--catppuccin-frappe .content figure:not(:last-child){margin-bottom:2em}html.theme--catppuccin-frappe .content figure img{display:inline-block}html.theme--catppuccin-frappe .content figure figcaption{font-style:italic}html.theme--catppuccin-frappe .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--catppuccin-frappe .content sup,html.theme--catppuccin-frappe .content sub{font-size:75%}html.theme--catppuccin-frappe .content table{width:100%}html.theme--catppuccin-frappe .content table td,html.theme--catppuccin-frappe .content table th{border:1px solid #626880;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-frappe .content table th{color:#b0bef1}html.theme--catppuccin-frappe .content table th:not([align]){text-align:inherit}html.theme--catppuccin-frappe .content table thead td,html.theme--catppuccin-frappe .content table thead th{border-width:0 0 2px;color:#b0bef1}html.theme--catppuccin-frappe .content table tfoot td,html.theme--catppuccin-frappe .content table tfoot th{border-width:2px 0 0;color:#b0bef1}html.theme--catppuccin-frappe .content table tbody tr:last-child td,html.theme--catppuccin-frappe .content table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-frappe .content .tabs li+li{margin-top:0}html.theme--catppuccin-frappe .content.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--catppuccin-frappe .content.is-normal{font-size:1rem}html.theme--catppuccin-frappe .content.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .content.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--catppuccin-frappe .icon.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--catppuccin-frappe .icon.is-medium{height:2rem;width:2rem}html.theme--catppuccin-frappe .icon.is-large{height:3rem;width:3rem}html.theme--catppuccin-frappe .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--catppuccin-frappe .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--catppuccin-frappe .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--catppuccin-frappe div.icon-text{display:flex}html.theme--catppuccin-frappe .image,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--catppuccin-frappe .image img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--catppuccin-frappe .image img.is-rounded,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--catppuccin-frappe .image.is-fullwidth,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--catppuccin-frappe .image.is-square img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-frappe .image.is-square .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-frappe .image.is-1by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-frappe .image.is-1by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-frappe .image.is-5by4 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-frappe .image.is-5by4 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-frappe .image.is-4by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-frappe .image.is-4by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-frappe .image.is-3by2 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-frappe .image.is-3by2 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-frappe .image.is-5by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-frappe .image.is-5by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-frappe .image.is-16by9 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-frappe .image.is-16by9 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-frappe .image.is-2by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-frappe .image.is-2by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-frappe .image.is-3by1 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-frappe .image.is-3by1 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-frappe .image.is-4by5 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-frappe .image.is-4by5 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-frappe .image.is-3by4 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-frappe .image.is-3by4 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-frappe .image.is-2by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-frappe .image.is-2by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-frappe .image.is-3by5 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-frappe .image.is-3by5 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-frappe .image.is-9by16 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-frappe .image.is-9by16 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-frappe .image.is-1by2 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-frappe .image.is-1by2 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-frappe .image.is-1by3 img,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-frappe .image.is-1by3 .has-ratio,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--catppuccin-frappe .image.is-square,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--catppuccin-frappe .image.is-1by1,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--catppuccin-frappe .image.is-5by4,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--catppuccin-frappe .image.is-4by3,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--catppuccin-frappe .image.is-3by2,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--catppuccin-frappe .image.is-5by3,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--catppuccin-frappe .image.is-16by9,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--catppuccin-frappe .image.is-2by1,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--catppuccin-frappe .image.is-3by1,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--catppuccin-frappe .image.is-4by5,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--catppuccin-frappe .image.is-3by4,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--catppuccin-frappe .image.is-2by3,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--catppuccin-frappe .image.is-3by5,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--catppuccin-frappe .image.is-9by16,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--catppuccin-frappe .image.is-1by2,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--catppuccin-frappe .image.is-1by3,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--catppuccin-frappe .image.is-16x16,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--catppuccin-frappe .image.is-24x24,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--catppuccin-frappe .image.is-32x32,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--catppuccin-frappe .image.is-48x48,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--catppuccin-frappe .image.is-64x64,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--catppuccin-frappe .image.is-96x96,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--catppuccin-frappe .image.is-128x128,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--catppuccin-frappe .notification{background-color:#292c3c;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--catppuccin-frappe .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-frappe .notification strong{color:currentColor}html.theme--catppuccin-frappe .notification code,html.theme--catppuccin-frappe .notification pre{background:#fff}html.theme--catppuccin-frappe .notification pre code{background:transparent}html.theme--catppuccin-frappe .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--catppuccin-frappe .notification .title,html.theme--catppuccin-frappe .notification .subtitle,html.theme--catppuccin-frappe .notification .content{color:currentColor}html.theme--catppuccin-frappe .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .notification.is-dark,html.theme--catppuccin-frappe .content kbd.notification{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .notification.is-primary,html.theme--catppuccin-frappe .docstring>section>a.notification.docs-sourcelink{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .notification.is-primary.is-light,html.theme--catppuccin-frappe .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .notification.is-link{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .notification.is-link.is-light{background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .notification.is-info{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .notification.is-info.is-light{background-color:#f1f9f8;color:#2d675f}html.theme--catppuccin-frappe .notification.is-success{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .notification.is-success.is-light{background-color:#f4f9f0;color:#446a29}html.theme--catppuccin-frappe .notification.is-warning{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .notification.is-warning.is-light{background-color:#fbf7ee;color:#78591c}html.theme--catppuccin-frappe .notification.is-danger{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .notification.is-danger.is-light{background-color:#fceeee;color:#9a1e20}html.theme--catppuccin-frappe .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--catppuccin-frappe .progress::-webkit-progress-bar{background-color:#51576d}html.theme--catppuccin-frappe .progress::-webkit-progress-value{background-color:#838ba7}html.theme--catppuccin-frappe .progress::-moz-progress-bar{background-color:#838ba7}html.theme--catppuccin-frappe .progress::-ms-fill{background-color:#838ba7;border:none}html.theme--catppuccin-frappe .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--catppuccin-frappe .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--catppuccin-frappe .progress.is-white::-ms-fill{background-color:#fff}html.theme--catppuccin-frappe .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--catppuccin-frappe .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--catppuccin-frappe .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--catppuccin-frappe .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-light::-webkit-progress-value{background-color:#f5f5f5}html.theme--catppuccin-frappe .progress.is-light::-moz-progress-bar{background-color:#f5f5f5}html.theme--catppuccin-frappe .progress.is-light::-ms-fill{background-color:#f5f5f5}html.theme--catppuccin-frappe .progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-dark::-webkit-progress-value,html.theme--catppuccin-frappe .content kbd.progress::-webkit-progress-value{background-color:#414559}html.theme--catppuccin-frappe .progress.is-dark::-moz-progress-bar,html.theme--catppuccin-frappe .content kbd.progress::-moz-progress-bar{background-color:#414559}html.theme--catppuccin-frappe .progress.is-dark::-ms-fill,html.theme--catppuccin-frappe .content kbd.progress::-ms-fill{background-color:#414559}html.theme--catppuccin-frappe .progress.is-dark:indeterminate,html.theme--catppuccin-frappe .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #414559 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-primary::-webkit-progress-value,html.theme--catppuccin-frappe .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-primary::-moz-progress-bar,html.theme--catppuccin-frappe .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-primary::-ms-fill,html.theme--catppuccin-frappe .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-primary:indeterminate,html.theme--catppuccin-frappe .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #8caaee 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-link::-webkit-progress-value{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-link::-moz-progress-bar{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-link::-ms-fill{background-color:#8caaee}html.theme--catppuccin-frappe .progress.is-link:indeterminate{background-image:linear-gradient(to right, #8caaee 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-info::-webkit-progress-value{background-color:#81c8be}html.theme--catppuccin-frappe .progress.is-info::-moz-progress-bar{background-color:#81c8be}html.theme--catppuccin-frappe .progress.is-info::-ms-fill{background-color:#81c8be}html.theme--catppuccin-frappe .progress.is-info:indeterminate{background-image:linear-gradient(to right, #81c8be 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-success::-webkit-progress-value{background-color:#a6d189}html.theme--catppuccin-frappe .progress.is-success::-moz-progress-bar{background-color:#a6d189}html.theme--catppuccin-frappe .progress.is-success::-ms-fill{background-color:#a6d189}html.theme--catppuccin-frappe .progress.is-success:indeterminate{background-image:linear-gradient(to right, #a6d189 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-warning::-webkit-progress-value{background-color:#e5c890}html.theme--catppuccin-frappe .progress.is-warning::-moz-progress-bar{background-color:#e5c890}html.theme--catppuccin-frappe .progress.is-warning::-ms-fill{background-color:#e5c890}html.theme--catppuccin-frappe .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #e5c890 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress.is-danger::-webkit-progress-value{background-color:#e78284}html.theme--catppuccin-frappe .progress.is-danger::-moz-progress-bar{background-color:#e78284}html.theme--catppuccin-frappe .progress.is-danger::-ms-fill{background-color:#e78284}html.theme--catppuccin-frappe .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #e78284 30%, #51576d 30%)}html.theme--catppuccin-frappe .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#51576d;background-image:linear-gradient(to right, #c6d0f5 30%, #51576d 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--catppuccin-frappe .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--catppuccin-frappe .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--catppuccin-frappe .progress:indeterminate::-ms-fill{animation-name:none}html.theme--catppuccin-frappe .progress.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--catppuccin-frappe .progress.is-medium{height:1.25rem}html.theme--catppuccin-frappe .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--catppuccin-frappe .table{background-color:#51576d;color:#c6d0f5}html.theme--catppuccin-frappe .table td,html.theme--catppuccin-frappe .table th{border:1px solid #626880;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-frappe .table td.is-white,html.theme--catppuccin-frappe .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .table td.is-black,html.theme--catppuccin-frappe .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .table td.is-light,html.theme--catppuccin-frappe .table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .table td.is-dark,html.theme--catppuccin-frappe .table th.is-dark{background-color:#414559;border-color:#414559;color:#fff}html.theme--catppuccin-frappe .table td.is-primary,html.theme--catppuccin-frappe .table th.is-primary{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .table td.is-link,html.theme--catppuccin-frappe .table th.is-link{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .table td.is-info,html.theme--catppuccin-frappe .table th.is-info{background-color:#81c8be;border-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .table td.is-success,html.theme--catppuccin-frappe .table th.is-success{background-color:#a6d189;border-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .table td.is-warning,html.theme--catppuccin-frappe .table th.is-warning{background-color:#e5c890;border-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .table td.is-danger,html.theme--catppuccin-frappe .table th.is-danger{background-color:#e78284;border-color:#e78284;color:#fff}html.theme--catppuccin-frappe .table td.is-narrow,html.theme--catppuccin-frappe .table th.is-narrow{white-space:nowrap;width:1%}html.theme--catppuccin-frappe .table td.is-selected,html.theme--catppuccin-frappe .table th.is-selected{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .table td.is-selected a,html.theme--catppuccin-frappe .table td.is-selected strong,html.theme--catppuccin-frappe .table th.is-selected a,html.theme--catppuccin-frappe .table th.is-selected strong{color:currentColor}html.theme--catppuccin-frappe .table td.is-vcentered,html.theme--catppuccin-frappe .table th.is-vcentered{vertical-align:middle}html.theme--catppuccin-frappe .table th{color:#b0bef1}html.theme--catppuccin-frappe .table th:not([align]){text-align:left}html.theme--catppuccin-frappe .table tr.is-selected{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .table tr.is-selected a,html.theme--catppuccin-frappe .table tr.is-selected strong{color:currentColor}html.theme--catppuccin-frappe .table tr.is-selected td,html.theme--catppuccin-frappe .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--catppuccin-frappe .table thead{background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .table thead td,html.theme--catppuccin-frappe .table thead th{border-width:0 0 2px;color:#b0bef1}html.theme--catppuccin-frappe .table tfoot{background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .table tfoot td,html.theme--catppuccin-frappe .table tfoot th{border-width:2px 0 0;color:#b0bef1}html.theme--catppuccin-frappe .table tbody{background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .table tbody tr:last-child td,html.theme--catppuccin-frappe .table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-frappe .table.is-bordered td,html.theme--catppuccin-frappe .table.is-bordered th{border-width:1px}html.theme--catppuccin-frappe .table.is-bordered tr:last-child td,html.theme--catppuccin-frappe .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--catppuccin-frappe .table.is-fullwidth{width:100%}html.theme--catppuccin-frappe .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#414559}html.theme--catppuccin-frappe .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#414559}html.theme--catppuccin-frappe .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#454a5f}html.theme--catppuccin-frappe .table.is-narrow td,html.theme--catppuccin-frappe .table.is-narrow th{padding:0.25em 0.5em}html.theme--catppuccin-frappe .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#414559}html.theme--catppuccin-frappe .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--catppuccin-frappe .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-frappe .tags .tag,html.theme--catppuccin-frappe .tags .content kbd,html.theme--catppuccin-frappe .content .tags kbd,html.theme--catppuccin-frappe .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--catppuccin-frappe .tags .tag:not(:last-child),html.theme--catppuccin-frappe .tags .content kbd:not(:last-child),html.theme--catppuccin-frappe .content .tags kbd:not(:last-child),html.theme--catppuccin-frappe .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--catppuccin-frappe .tags:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-frappe .tags:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-frappe .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--catppuccin-frappe .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-frappe .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-frappe .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--catppuccin-frappe .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--catppuccin-frappe .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-frappe .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-frappe .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--catppuccin-frappe .tags.is-centered{justify-content:center}html.theme--catppuccin-frappe .tags.is-centered .tag,html.theme--catppuccin-frappe .tags.is-centered .content kbd,html.theme--catppuccin-frappe .content .tags.is-centered kbd,html.theme--catppuccin-frappe .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--catppuccin-frappe .tags.is-right{justify-content:flex-end}html.theme--catppuccin-frappe .tags.is-right .tag:not(:first-child),html.theme--catppuccin-frappe .tags.is-right .content kbd:not(:first-child),html.theme--catppuccin-frappe .content .tags.is-right kbd:not(:first-child),html.theme--catppuccin-frappe .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--catppuccin-frappe .tags.is-right .tag:not(:last-child),html.theme--catppuccin-frappe .tags.is-right .content kbd:not(:last-child),html.theme--catppuccin-frappe .content .tags.is-right kbd:not(:last-child),html.theme--catppuccin-frappe .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--catppuccin-frappe .tags.has-addons .tag,html.theme--catppuccin-frappe .tags.has-addons .content kbd,html.theme--catppuccin-frappe .content .tags.has-addons kbd,html.theme--catppuccin-frappe .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--catppuccin-frappe .tags.has-addons .tag:not(:first-child),html.theme--catppuccin-frappe .tags.has-addons .content kbd:not(:first-child),html.theme--catppuccin-frappe .content .tags.has-addons kbd:not(:first-child),html.theme--catppuccin-frappe .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--catppuccin-frappe .tags.has-addons .tag:not(:last-child),html.theme--catppuccin-frappe .tags.has-addons .content kbd:not(:last-child),html.theme--catppuccin-frappe .content .tags.has-addons kbd:not(:last-child),html.theme--catppuccin-frappe .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--catppuccin-frappe .tag:not(body),html.theme--catppuccin-frappe .content kbd:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#292c3c;border-radius:.4em;color:#c6d0f5;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--catppuccin-frappe .tag:not(body) .delete,html.theme--catppuccin-frappe .content kbd:not(body) .delete,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--catppuccin-frappe .tag.is-white:not(body),html.theme--catppuccin-frappe .content kbd.is-white:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .tag.is-black:not(body),html.theme--catppuccin-frappe .content kbd.is-black:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .tag.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .tag.is-dark:not(body),html.theme--catppuccin-frappe .content kbd:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--catppuccin-frappe .content .docstring>section>kbd:not(body){background-color:#414559;color:#fff}html.theme--catppuccin-frappe .tag.is-primary:not(body),html.theme--catppuccin-frappe .content kbd.is-primary:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body){background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .tag.is-primary.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-primary.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .tag.is-link:not(body),html.theme--catppuccin-frappe .content kbd.is-link:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .tag.is-link.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-link.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#edf2fc;color:#153a8e}html.theme--catppuccin-frappe .tag.is-info:not(body),html.theme--catppuccin-frappe .content kbd.is-info:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .tag.is-info.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-info.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#f1f9f8;color:#2d675f}html.theme--catppuccin-frappe .tag.is-success:not(body),html.theme--catppuccin-frappe .content kbd.is-success:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .tag.is-success.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-success.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#f4f9f0;color:#446a29}html.theme--catppuccin-frappe .tag.is-warning:not(body),html.theme--catppuccin-frappe .content kbd.is-warning:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .tag.is-warning.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-warning.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fbf7ee;color:#78591c}html.theme--catppuccin-frappe .tag.is-danger:not(body),html.theme--catppuccin-frappe .content kbd.is-danger:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .tag.is-danger.is-light:not(body),html.theme--catppuccin-frappe .content kbd.is-danger.is-light:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fceeee;color:#9a1e20}html.theme--catppuccin-frappe .tag.is-normal:not(body),html.theme--catppuccin-frappe .content kbd.is-normal:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--catppuccin-frappe .tag.is-medium:not(body),html.theme--catppuccin-frappe .content kbd.is-medium:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--catppuccin-frappe .tag.is-large:not(body),html.theme--catppuccin-frappe .content kbd.is-large:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--catppuccin-frappe .tag:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-frappe .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--catppuccin-frappe .tag:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-frappe .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--catppuccin-frappe .tag:not(body) .icon:first-child:last-child,html.theme--catppuccin-frappe .content kbd:not(body) .icon:first-child:last-child,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--catppuccin-frappe .tag.is-delete:not(body),html.theme--catppuccin-frappe .content kbd.is-delete:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--catppuccin-frappe .tag.is-delete:not(body)::before,html.theme--catppuccin-frappe .content kbd.is-delete:not(body)::before,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--catppuccin-frappe .tag.is-delete:not(body)::after,html.theme--catppuccin-frappe .content kbd.is-delete:not(body)::after,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-frappe .tag.is-delete:not(body)::before,html.theme--catppuccin-frappe .content kbd.is-delete:not(body)::before,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--catppuccin-frappe .tag.is-delete:not(body)::after,html.theme--catppuccin-frappe .content kbd.is-delete:not(body)::after,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--catppuccin-frappe .tag.is-delete:not(body):hover,html.theme--catppuccin-frappe .content kbd.is-delete:not(body):hover,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--catppuccin-frappe .tag.is-delete:not(body):focus,html.theme--catppuccin-frappe .content kbd.is-delete:not(body):focus,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#1f212d}html.theme--catppuccin-frappe .tag.is-delete:not(body):active,html.theme--catppuccin-frappe .content kbd.is-delete:not(body):active,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#14161e}html.theme--catppuccin-frappe .tag.is-rounded:not(body),html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--catppuccin-frappe .content kbd.is-rounded:not(body),html.theme--catppuccin-frappe #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--catppuccin-frappe a.tag:hover,html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--catppuccin-frappe .title,html.theme--catppuccin-frappe .subtitle{word-break:break-word}html.theme--catppuccin-frappe .title em,html.theme--catppuccin-frappe .title span,html.theme--catppuccin-frappe .subtitle em,html.theme--catppuccin-frappe .subtitle span{font-weight:inherit}html.theme--catppuccin-frappe .title sub,html.theme--catppuccin-frappe .subtitle sub{font-size:.75em}html.theme--catppuccin-frappe .title sup,html.theme--catppuccin-frappe .subtitle sup{font-size:.75em}html.theme--catppuccin-frappe .title .tag,html.theme--catppuccin-frappe .title .content kbd,html.theme--catppuccin-frappe .content .title kbd,html.theme--catppuccin-frappe .title .docstring>section>a.docs-sourcelink,html.theme--catppuccin-frappe .subtitle .tag,html.theme--catppuccin-frappe .subtitle .content kbd,html.theme--catppuccin-frappe .content .subtitle kbd,html.theme--catppuccin-frappe .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--catppuccin-frappe .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--catppuccin-frappe .title strong{color:inherit;font-weight:inherit}html.theme--catppuccin-frappe .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--catppuccin-frappe .title.is-1{font-size:3rem}html.theme--catppuccin-frappe .title.is-2{font-size:2.5rem}html.theme--catppuccin-frappe .title.is-3{font-size:2rem}html.theme--catppuccin-frappe .title.is-4{font-size:1.5rem}html.theme--catppuccin-frappe .title.is-5{font-size:1.25rem}html.theme--catppuccin-frappe .title.is-6{font-size:1rem}html.theme--catppuccin-frappe .title.is-7{font-size:.75rem}html.theme--catppuccin-frappe .subtitle{color:#737994;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--catppuccin-frappe .subtitle strong{color:#737994;font-weight:600}html.theme--catppuccin-frappe .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--catppuccin-frappe .subtitle.is-1{font-size:3rem}html.theme--catppuccin-frappe .subtitle.is-2{font-size:2.5rem}html.theme--catppuccin-frappe .subtitle.is-3{font-size:2rem}html.theme--catppuccin-frappe .subtitle.is-4{font-size:1.5rem}html.theme--catppuccin-frappe .subtitle.is-5{font-size:1.25rem}html.theme--catppuccin-frappe .subtitle.is-6{font-size:1rem}html.theme--catppuccin-frappe .subtitle.is-7{font-size:.75rem}html.theme--catppuccin-frappe .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--catppuccin-frappe .number{align-items:center;background-color:#292c3c;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--catppuccin-frappe .select select,html.theme--catppuccin-frappe .textarea,html.theme--catppuccin-frappe .input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{background-color:#303446;border-color:#626880;border-radius:.4em;color:#838ba7}html.theme--catppuccin-frappe .select select::-moz-placeholder,html.theme--catppuccin-frappe .textarea::-moz-placeholder,html.theme--catppuccin-frappe .input::-moz-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--catppuccin-frappe .select select::-webkit-input-placeholder,html.theme--catppuccin-frappe .textarea::-webkit-input-placeholder,html.theme--catppuccin-frappe .input::-webkit-input-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--catppuccin-frappe .select select:-moz-placeholder,html.theme--catppuccin-frappe .textarea:-moz-placeholder,html.theme--catppuccin-frappe .input:-moz-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--catppuccin-frappe .select select:-ms-input-placeholder,html.theme--catppuccin-frappe .textarea:-ms-input-placeholder,html.theme--catppuccin-frappe .input:-ms-input-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--catppuccin-frappe .select select:hover,html.theme--catppuccin-frappe .textarea:hover,html.theme--catppuccin-frappe .input:hover,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:hover,html.theme--catppuccin-frappe .select select.is-hovered,html.theme--catppuccin-frappe .is-hovered.textarea,html.theme--catppuccin-frappe .is-hovered.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#737994}html.theme--catppuccin-frappe .select select:focus,html.theme--catppuccin-frappe .textarea:focus,html.theme--catppuccin-frappe .input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-frappe .select select.is-focused,html.theme--catppuccin-frappe .is-focused.textarea,html.theme--catppuccin-frappe .is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .select select:active,html.theme--catppuccin-frappe .textarea:active,html.theme--catppuccin-frappe .input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-frappe .select select.is-active,html.theme--catppuccin-frappe .is-active.textarea,html.theme--catppuccin-frappe .is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#8caaee;box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .select select[disabled],html.theme--catppuccin-frappe .textarea[disabled],html.theme--catppuccin-frappe .input[disabled],html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--catppuccin-frappe .select select,fieldset[disabled] html.theme--catppuccin-frappe .textarea,fieldset[disabled] html.theme--catppuccin-frappe .input,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{background-color:#737994;border-color:#292c3c;box-shadow:none;color:#f1f4fd}html.theme--catppuccin-frappe .select select[disabled]::-moz-placeholder,html.theme--catppuccin-frappe .textarea[disabled]::-moz-placeholder,html.theme--catppuccin-frappe .input[disabled]::-moz-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .select select::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .textarea::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .input::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(241,244,253,0.3)}html.theme--catppuccin-frappe .select select[disabled]::-webkit-input-placeholder,html.theme--catppuccin-frappe .textarea[disabled]::-webkit-input-placeholder,html.theme--catppuccin-frappe .input[disabled]::-webkit-input-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .input::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(241,244,253,0.3)}html.theme--catppuccin-frappe .select select[disabled]:-moz-placeholder,html.theme--catppuccin-frappe .textarea[disabled]:-moz-placeholder,html.theme--catppuccin-frappe .input[disabled]:-moz-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .select select:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .textarea:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .input:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(241,244,253,0.3)}html.theme--catppuccin-frappe .select select[disabled]:-ms-input-placeholder,html.theme--catppuccin-frappe .textarea[disabled]:-ms-input-placeholder,html.theme--catppuccin-frappe .input[disabled]:-ms-input-placeholder,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .select select:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe .input:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(241,244,253,0.3)}html.theme--catppuccin-frappe .textarea,html.theme--catppuccin-frappe .input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--catppuccin-frappe .textarea[readonly],html.theme--catppuccin-frappe .input[readonly],html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--catppuccin-frappe .is-white.textarea,html.theme--catppuccin-frappe .is-white.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--catppuccin-frappe .is-white.textarea:focus,html.theme--catppuccin-frappe .is-white.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--catppuccin-frappe .is-white.is-focused.textarea,html.theme--catppuccin-frappe .is-white.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-white.textarea:active,html.theme--catppuccin-frappe .is-white.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--catppuccin-frappe .is-white.is-active.textarea,html.theme--catppuccin-frappe .is-white.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-frappe .is-black.textarea,html.theme--catppuccin-frappe .is-black.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--catppuccin-frappe .is-black.textarea:focus,html.theme--catppuccin-frappe .is-black.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--catppuccin-frappe .is-black.is-focused.textarea,html.theme--catppuccin-frappe .is-black.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-black.textarea:active,html.theme--catppuccin-frappe .is-black.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--catppuccin-frappe .is-black.is-active.textarea,html.theme--catppuccin-frappe .is-black.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-frappe .is-light.textarea,html.theme--catppuccin-frappe .is-light.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}html.theme--catppuccin-frappe .is-light.textarea:focus,html.theme--catppuccin-frappe .is-light.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--catppuccin-frappe .is-light.is-focused.textarea,html.theme--catppuccin-frappe .is-light.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-light.textarea:active,html.theme--catppuccin-frappe .is-light.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--catppuccin-frappe .is-light.is-active.textarea,html.theme--catppuccin-frappe .is-light.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-frappe .is-dark.textarea,html.theme--catppuccin-frappe .content kbd.textarea,html.theme--catppuccin-frappe .is-dark.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--catppuccin-frappe .content kbd.input{border-color:#414559}html.theme--catppuccin-frappe .is-dark.textarea:focus,html.theme--catppuccin-frappe .content kbd.textarea:focus,html.theme--catppuccin-frappe .is-dark.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--catppuccin-frappe .content kbd.input:focus,html.theme--catppuccin-frappe .is-dark.is-focused.textarea,html.theme--catppuccin-frappe .content kbd.is-focused.textarea,html.theme--catppuccin-frappe .is-dark.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .content kbd.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-dark.textarea:active,html.theme--catppuccin-frappe .content kbd.textarea:active,html.theme--catppuccin-frappe .is-dark.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--catppuccin-frappe .content kbd.input:active,html.theme--catppuccin-frappe .is-dark.is-active.textarea,html.theme--catppuccin-frappe .content kbd.is-active.textarea,html.theme--catppuccin-frappe .is-dark.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-frappe .content kbd.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(65,69,89,0.25)}html.theme--catppuccin-frappe .is-primary.textarea,html.theme--catppuccin-frappe .docstring>section>a.textarea.docs-sourcelink,html.theme--catppuccin-frappe .is-primary.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--catppuccin-frappe .docstring>section>a.input.docs-sourcelink{border-color:#8caaee}html.theme--catppuccin-frappe .is-primary.textarea:focus,html.theme--catppuccin-frappe .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--catppuccin-frappe .is-primary.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--catppuccin-frappe .docstring>section>a.input.docs-sourcelink:focus,html.theme--catppuccin-frappe .is-primary.is-focused.textarea,html.theme--catppuccin-frappe .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--catppuccin-frappe .is-primary.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--catppuccin-frappe .is-primary.textarea:active,html.theme--catppuccin-frappe .docstring>section>a.textarea.docs-sourcelink:active,html.theme--catppuccin-frappe .is-primary.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--catppuccin-frappe .docstring>section>a.input.docs-sourcelink:active,html.theme--catppuccin-frappe .is-primary.is-active.textarea,html.theme--catppuccin-frappe .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--catppuccin-frappe .is-primary.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-frappe .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .is-link.textarea,html.theme--catppuccin-frappe .is-link.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#8caaee}html.theme--catppuccin-frappe .is-link.textarea:focus,html.theme--catppuccin-frappe .is-link.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--catppuccin-frappe .is-link.is-focused.textarea,html.theme--catppuccin-frappe .is-link.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-link.textarea:active,html.theme--catppuccin-frappe .is-link.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--catppuccin-frappe .is-link.is-active.textarea,html.theme--catppuccin-frappe .is-link.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .is-info.textarea,html.theme--catppuccin-frappe .is-info.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#81c8be}html.theme--catppuccin-frappe .is-info.textarea:focus,html.theme--catppuccin-frappe .is-info.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--catppuccin-frappe .is-info.is-focused.textarea,html.theme--catppuccin-frappe .is-info.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-info.textarea:active,html.theme--catppuccin-frappe .is-info.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--catppuccin-frappe .is-info.is-active.textarea,html.theme--catppuccin-frappe .is-info.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(129,200,190,0.25)}html.theme--catppuccin-frappe .is-success.textarea,html.theme--catppuccin-frappe .is-success.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#a6d189}html.theme--catppuccin-frappe .is-success.textarea:focus,html.theme--catppuccin-frappe .is-success.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--catppuccin-frappe .is-success.is-focused.textarea,html.theme--catppuccin-frappe .is-success.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-success.textarea:active,html.theme--catppuccin-frappe .is-success.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--catppuccin-frappe .is-success.is-active.textarea,html.theme--catppuccin-frappe .is-success.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(166,209,137,0.25)}html.theme--catppuccin-frappe .is-warning.textarea,html.theme--catppuccin-frappe .is-warning.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#e5c890}html.theme--catppuccin-frappe .is-warning.textarea:focus,html.theme--catppuccin-frappe .is-warning.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--catppuccin-frappe .is-warning.is-focused.textarea,html.theme--catppuccin-frappe .is-warning.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-warning.textarea:active,html.theme--catppuccin-frappe .is-warning.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--catppuccin-frappe .is-warning.is-active.textarea,html.theme--catppuccin-frappe .is-warning.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(229,200,144,0.25)}html.theme--catppuccin-frappe .is-danger.textarea,html.theme--catppuccin-frappe .is-danger.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#e78284}html.theme--catppuccin-frappe .is-danger.textarea:focus,html.theme--catppuccin-frappe .is-danger.input:focus,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--catppuccin-frappe .is-danger.is-focused.textarea,html.theme--catppuccin-frappe .is-danger.is-focused.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-frappe .is-danger.textarea:active,html.theme--catppuccin-frappe .is-danger.input:active,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--catppuccin-frappe .is-danger.is-active.textarea,html.theme--catppuccin-frappe .is-danger.is-active.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(231,130,132,0.25)}html.theme--catppuccin-frappe .is-small.textarea,html.theme--catppuccin-frappe .is-small.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--catppuccin-frappe .is-medium.textarea,html.theme--catppuccin-frappe .is-medium.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .is-large.textarea,html.theme--catppuccin-frappe .is-large.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .is-fullwidth.textarea,html.theme--catppuccin-frappe .is-fullwidth.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--catppuccin-frappe .is-inline.textarea,html.theme--catppuccin-frappe .is-inline.input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--catppuccin-frappe .input.is-rounded,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--catppuccin-frappe .input.is-static,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--catppuccin-frappe .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--catppuccin-frappe .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--catppuccin-frappe .textarea[rows]{height:initial}html.theme--catppuccin-frappe .textarea.has-fixed-size{resize:none}html.theme--catppuccin-frappe .radio,html.theme--catppuccin-frappe .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--catppuccin-frappe .radio input,html.theme--catppuccin-frappe .checkbox input{cursor:pointer}html.theme--catppuccin-frappe .radio:hover,html.theme--catppuccin-frappe .checkbox:hover{color:#99d1db}html.theme--catppuccin-frappe .radio[disabled],html.theme--catppuccin-frappe .checkbox[disabled],fieldset[disabled] html.theme--catppuccin-frappe .radio,fieldset[disabled] html.theme--catppuccin-frappe .checkbox,html.theme--catppuccin-frappe .radio input[disabled],html.theme--catppuccin-frappe .checkbox input[disabled]{color:#f1f4fd;cursor:not-allowed}html.theme--catppuccin-frappe .radio+.radio{margin-left:.5em}html.theme--catppuccin-frappe .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--catppuccin-frappe .select:not(.is-multiple){height:2.5em}html.theme--catppuccin-frappe .select:not(.is-multiple):not(.is-loading)::after{border-color:#8caaee;right:1.125em;z-index:4}html.theme--catppuccin-frappe .select.is-rounded select,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--catppuccin-frappe .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--catppuccin-frappe .select select::-ms-expand{display:none}html.theme--catppuccin-frappe .select select[disabled]:hover,fieldset[disabled] html.theme--catppuccin-frappe .select select:hover{border-color:#292c3c}html.theme--catppuccin-frappe .select select:not([multiple]){padding-right:2.5em}html.theme--catppuccin-frappe .select select[multiple]{height:auto;padding:0}html.theme--catppuccin-frappe .select select[multiple] option{padding:0.5em 1em}html.theme--catppuccin-frappe .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#99d1db}html.theme--catppuccin-frappe .select.is-white:not(:hover)::after{border-color:#fff}html.theme--catppuccin-frappe .select.is-white select{border-color:#fff}html.theme--catppuccin-frappe .select.is-white select:hover,html.theme--catppuccin-frappe .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--catppuccin-frappe .select.is-white select:focus,html.theme--catppuccin-frappe .select.is-white select.is-focused,html.theme--catppuccin-frappe .select.is-white select:active,html.theme--catppuccin-frappe .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-frappe .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--catppuccin-frappe .select.is-black select{border-color:#0a0a0a}html.theme--catppuccin-frappe .select.is-black select:hover,html.theme--catppuccin-frappe .select.is-black select.is-hovered{border-color:#000}html.theme--catppuccin-frappe .select.is-black select:focus,html.theme--catppuccin-frappe .select.is-black select.is-focused,html.theme--catppuccin-frappe .select.is-black select:active,html.theme--catppuccin-frappe .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-frappe .select.is-light:not(:hover)::after{border-color:#f5f5f5}html.theme--catppuccin-frappe .select.is-light select{border-color:#f5f5f5}html.theme--catppuccin-frappe .select.is-light select:hover,html.theme--catppuccin-frappe .select.is-light select.is-hovered{border-color:#e8e8e8}html.theme--catppuccin-frappe .select.is-light select:focus,html.theme--catppuccin-frappe .select.is-light select.is-focused,html.theme--catppuccin-frappe .select.is-light select:active,html.theme--catppuccin-frappe .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-frappe .select.is-dark:not(:hover)::after,html.theme--catppuccin-frappe .content kbd.select:not(:hover)::after{border-color:#414559}html.theme--catppuccin-frappe .select.is-dark select,html.theme--catppuccin-frappe .content kbd.select select{border-color:#414559}html.theme--catppuccin-frappe .select.is-dark select:hover,html.theme--catppuccin-frappe .content kbd.select select:hover,html.theme--catppuccin-frappe .select.is-dark select.is-hovered,html.theme--catppuccin-frappe .content kbd.select select.is-hovered{border-color:#363a4a}html.theme--catppuccin-frappe .select.is-dark select:focus,html.theme--catppuccin-frappe .content kbd.select select:focus,html.theme--catppuccin-frappe .select.is-dark select.is-focused,html.theme--catppuccin-frappe .content kbd.select select.is-focused,html.theme--catppuccin-frappe .select.is-dark select:active,html.theme--catppuccin-frappe .content kbd.select select:active,html.theme--catppuccin-frappe .select.is-dark select.is-active,html.theme--catppuccin-frappe .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(65,69,89,0.25)}html.theme--catppuccin-frappe .select.is-primary:not(:hover)::after,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#8caaee}html.theme--catppuccin-frappe .select.is-primary select,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select{border-color:#8caaee}html.theme--catppuccin-frappe .select.is-primary select:hover,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select:hover,html.theme--catppuccin-frappe .select.is-primary select.is-hovered,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#769aeb}html.theme--catppuccin-frappe .select.is-primary select:focus,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select:focus,html.theme--catppuccin-frappe .select.is-primary select.is-focused,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--catppuccin-frappe .select.is-primary select:active,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select:active,html.theme--catppuccin-frappe .select.is-primary select.is-active,html.theme--catppuccin-frappe .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .select.is-link:not(:hover)::after{border-color:#8caaee}html.theme--catppuccin-frappe .select.is-link select{border-color:#8caaee}html.theme--catppuccin-frappe .select.is-link select:hover,html.theme--catppuccin-frappe .select.is-link select.is-hovered{border-color:#769aeb}html.theme--catppuccin-frappe .select.is-link select:focus,html.theme--catppuccin-frappe .select.is-link select.is-focused,html.theme--catppuccin-frappe .select.is-link select:active,html.theme--catppuccin-frappe .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(140,170,238,0.25)}html.theme--catppuccin-frappe .select.is-info:not(:hover)::after{border-color:#81c8be}html.theme--catppuccin-frappe .select.is-info select{border-color:#81c8be}html.theme--catppuccin-frappe .select.is-info select:hover,html.theme--catppuccin-frappe .select.is-info select.is-hovered{border-color:#6fc0b5}html.theme--catppuccin-frappe .select.is-info select:focus,html.theme--catppuccin-frappe .select.is-info select.is-focused,html.theme--catppuccin-frappe .select.is-info select:active,html.theme--catppuccin-frappe .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(129,200,190,0.25)}html.theme--catppuccin-frappe .select.is-success:not(:hover)::after{border-color:#a6d189}html.theme--catppuccin-frappe .select.is-success select{border-color:#a6d189}html.theme--catppuccin-frappe .select.is-success select:hover,html.theme--catppuccin-frappe .select.is-success select.is-hovered{border-color:#98ca77}html.theme--catppuccin-frappe .select.is-success select:focus,html.theme--catppuccin-frappe .select.is-success select.is-focused,html.theme--catppuccin-frappe .select.is-success select:active,html.theme--catppuccin-frappe .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(166,209,137,0.25)}html.theme--catppuccin-frappe .select.is-warning:not(:hover)::after{border-color:#e5c890}html.theme--catppuccin-frappe .select.is-warning select{border-color:#e5c890}html.theme--catppuccin-frappe .select.is-warning select:hover,html.theme--catppuccin-frappe .select.is-warning select.is-hovered{border-color:#e0be7b}html.theme--catppuccin-frappe .select.is-warning select:focus,html.theme--catppuccin-frappe .select.is-warning select.is-focused,html.theme--catppuccin-frappe .select.is-warning select:active,html.theme--catppuccin-frappe .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(229,200,144,0.25)}html.theme--catppuccin-frappe .select.is-danger:not(:hover)::after{border-color:#e78284}html.theme--catppuccin-frappe .select.is-danger select{border-color:#e78284}html.theme--catppuccin-frappe .select.is-danger select:hover,html.theme--catppuccin-frappe .select.is-danger select.is-hovered{border-color:#e36d6f}html.theme--catppuccin-frappe .select.is-danger select:focus,html.theme--catppuccin-frappe .select.is-danger select.is-focused,html.theme--catppuccin-frappe .select.is-danger select:active,html.theme--catppuccin-frappe .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(231,130,132,0.25)}html.theme--catppuccin-frappe .select.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--catppuccin-frappe .select.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .select.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .select.is-disabled::after{border-color:#f1f4fd !important;opacity:0.5}html.theme--catppuccin-frappe .select.is-fullwidth{width:100%}html.theme--catppuccin-frappe .select.is-fullwidth select{width:100%}html.theme--catppuccin-frappe .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--catppuccin-frappe .select.is-loading.is-small:after,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-frappe .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-frappe .select.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-frappe .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--catppuccin-frappe .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .file.is-white:hover .file-cta,html.theme--catppuccin-frappe .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .file.is-white:focus .file-cta,html.theme--catppuccin-frappe .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--catppuccin-frappe .file.is-white:active .file-cta,html.theme--catppuccin-frappe .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-frappe .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-black:hover .file-cta,html.theme--catppuccin-frappe .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-black:focus .file-cta,html.theme--catppuccin-frappe .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-black:active .file-cta,html.theme--catppuccin-frappe .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-light:hover .file-cta,html.theme--catppuccin-frappe .file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-light:focus .file-cta,html.theme--catppuccin-frappe .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-light:active .file-cta,html.theme--catppuccin-frappe .file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-dark .file-cta,html.theme--catppuccin-frappe .content kbd.file .file-cta{background-color:#414559;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-dark:hover .file-cta,html.theme--catppuccin-frappe .content kbd.file:hover .file-cta,html.theme--catppuccin-frappe .file.is-dark.is-hovered .file-cta,html.theme--catppuccin-frappe .content kbd.file.is-hovered .file-cta{background-color:#3c3f52;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-dark:focus .file-cta,html.theme--catppuccin-frappe .content kbd.file:focus .file-cta,html.theme--catppuccin-frappe .file.is-dark.is-focused .file-cta,html.theme--catppuccin-frappe .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(65,69,89,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-dark:active .file-cta,html.theme--catppuccin-frappe .content kbd.file:active .file-cta,html.theme--catppuccin-frappe .file.is-dark.is-active .file-cta,html.theme--catppuccin-frappe .content kbd.file.is-active .file-cta{background-color:#363a4a;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-primary .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#8caaee;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-primary:hover .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--catppuccin-frappe .file.is-primary.is-hovered .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#81a2ec;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-primary:focus .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--catppuccin-frappe .file.is-primary.is-focused .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(140,170,238,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-primary:active .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--catppuccin-frappe .file.is-primary.is-active .file-cta,html.theme--catppuccin-frappe .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#769aeb;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-link .file-cta{background-color:#8caaee;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-link:hover .file-cta,html.theme--catppuccin-frappe .file.is-link.is-hovered .file-cta{background-color:#81a2ec;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-link:focus .file-cta,html.theme--catppuccin-frappe .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(140,170,238,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-link:active .file-cta,html.theme--catppuccin-frappe .file.is-link.is-active .file-cta{background-color:#769aeb;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-info .file-cta{background-color:#81c8be;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-info:hover .file-cta,html.theme--catppuccin-frappe .file.is-info.is-hovered .file-cta{background-color:#78c4b9;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-info:focus .file-cta,html.theme--catppuccin-frappe .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(129,200,190,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-info:active .file-cta,html.theme--catppuccin-frappe .file.is-info.is-active .file-cta{background-color:#6fc0b5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-success .file-cta{background-color:#a6d189;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-success:hover .file-cta,html.theme--catppuccin-frappe .file.is-success.is-hovered .file-cta{background-color:#9fcd80;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-success:focus .file-cta,html.theme--catppuccin-frappe .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(166,209,137,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-success:active .file-cta,html.theme--catppuccin-frappe .file.is-success.is-active .file-cta{background-color:#98ca77;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-warning .file-cta{background-color:#e5c890;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-warning:hover .file-cta,html.theme--catppuccin-frappe .file.is-warning.is-hovered .file-cta{background-color:#e3c386;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-warning:focus .file-cta,html.theme--catppuccin-frappe .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(229,200,144,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-warning:active .file-cta,html.theme--catppuccin-frappe .file.is-warning.is-active .file-cta{background-color:#e0be7b;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .file.is-danger .file-cta{background-color:#e78284;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-danger:hover .file-cta,html.theme--catppuccin-frappe .file.is-danger.is-hovered .file-cta{background-color:#e57779;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-danger:focus .file-cta,html.theme--catppuccin-frappe .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(231,130,132,0.25);color:#fff}html.theme--catppuccin-frappe .file.is-danger:active .file-cta,html.theme--catppuccin-frappe .file.is-danger.is-active .file-cta{background-color:#e36d6f;border-color:transparent;color:#fff}html.theme--catppuccin-frappe .file.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--catppuccin-frappe .file.is-normal{font-size:1rem}html.theme--catppuccin-frappe .file.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .file.is-medium .file-icon .fa{font-size:21px}html.theme--catppuccin-frappe .file.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .file.is-large .file-icon .fa{font-size:28px}html.theme--catppuccin-frappe .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-frappe .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-frappe .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--catppuccin-frappe .file.has-name.is-empty .file-name{display:none}html.theme--catppuccin-frappe .file.is-boxed .file-label{flex-direction:column}html.theme--catppuccin-frappe .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--catppuccin-frappe .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--catppuccin-frappe .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--catppuccin-frappe .file.is-boxed .file-icon .fa{font-size:21px}html.theme--catppuccin-frappe .file.is-boxed.is-small .file-icon .fa,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--catppuccin-frappe .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--catppuccin-frappe .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--catppuccin-frappe .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--catppuccin-frappe .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--catppuccin-frappe .file.is-centered{justify-content:center}html.theme--catppuccin-frappe .file.is-fullwidth .file-label{width:100%}html.theme--catppuccin-frappe .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--catppuccin-frappe .file.is-right{justify-content:flex-end}html.theme--catppuccin-frappe .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--catppuccin-frappe .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--catppuccin-frappe .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--catppuccin-frappe .file-label:hover .file-cta{background-color:#3c3f52;color:#b0bef1}html.theme--catppuccin-frappe .file-label:hover .file-name{border-color:#5c6279}html.theme--catppuccin-frappe .file-label:active .file-cta{background-color:#363a4a;color:#b0bef1}html.theme--catppuccin-frappe .file-label:active .file-name{border-color:#575c72}html.theme--catppuccin-frappe .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--catppuccin-frappe .file-cta,html.theme--catppuccin-frappe .file-name{border-color:#626880;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--catppuccin-frappe .file-cta{background-color:#414559;color:#c6d0f5}html.theme--catppuccin-frappe .file-name{border-color:#626880;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--catppuccin-frappe .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--catppuccin-frappe .file-icon .fa{font-size:14px}html.theme--catppuccin-frappe .label{color:#b0bef1;display:block;font-size:1rem;font-weight:700}html.theme--catppuccin-frappe .label:not(:last-child){margin-bottom:0.5em}html.theme--catppuccin-frappe .label.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--catppuccin-frappe .label.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .label.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--catppuccin-frappe .help.is-white{color:#fff}html.theme--catppuccin-frappe .help.is-black{color:#0a0a0a}html.theme--catppuccin-frappe .help.is-light{color:#f5f5f5}html.theme--catppuccin-frappe .help.is-dark,html.theme--catppuccin-frappe .content kbd.help{color:#414559}html.theme--catppuccin-frappe .help.is-primary,html.theme--catppuccin-frappe .docstring>section>a.help.docs-sourcelink{color:#8caaee}html.theme--catppuccin-frappe .help.is-link{color:#8caaee}html.theme--catppuccin-frappe .help.is-info{color:#81c8be}html.theme--catppuccin-frappe .help.is-success{color:#a6d189}html.theme--catppuccin-frappe .help.is-warning{color:#e5c890}html.theme--catppuccin-frappe .help.is-danger{color:#e78284}html.theme--catppuccin-frappe .field:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-frappe .field.has-addons{display:flex;justify-content:flex-start}html.theme--catppuccin-frappe .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--catppuccin-frappe .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--catppuccin-frappe .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--catppuccin-frappe .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--catppuccin-frappe .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--catppuccin-frappe .field.has-addons .control:first-child:not(:only-child) .button,html.theme--catppuccin-frappe .field.has-addons .control:first-child:not(:only-child) .input,html.theme--catppuccin-frappe .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-frappe .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-frappe .field.has-addons .control:last-child:not(:only-child) .button,html.theme--catppuccin-frappe .field.has-addons .control:last-child:not(:only-child) .input,html.theme--catppuccin-frappe .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-frappe .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):focus,html.theme--catppuccin-frappe .field.has-addons .control .button.is-focused:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):active,html.theme--catppuccin-frappe .field.has-addons .control .button.is-active:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):focus,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-frappe .field.has-addons .control .input.is-focused:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):active,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--catppuccin-frappe .field.has-addons .control .input.is-active:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):focus,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):active,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--catppuccin-frappe .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .button:not([disabled]):active:hover,html.theme--catppuccin-frappe .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-frappe .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .input:not([disabled]):active:hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-frappe .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-frappe #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--catppuccin-frappe .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--catppuccin-frappe .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--catppuccin-frappe .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .field.has-addons.has-addons-centered{justify-content:center}html.theme--catppuccin-frappe .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--catppuccin-frappe .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--catppuccin-frappe .field.is-grouped{display:flex;justify-content:flex-start}html.theme--catppuccin-frappe .field.is-grouped>.control{flex-shrink:0}html.theme--catppuccin-frappe .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-frappe .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--catppuccin-frappe .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .field.is-horizontal{display:flex}}html.theme--catppuccin-frappe .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--catppuccin-frappe .field-label.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--catppuccin-frappe .field-label.is-normal{padding-top:0.375em}html.theme--catppuccin-frappe .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--catppuccin-frappe .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--catppuccin-frappe .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--catppuccin-frappe .field-body .field{margin-bottom:0}html.theme--catppuccin-frappe .field-body>.field{flex-shrink:1}html.theme--catppuccin-frappe .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--catppuccin-frappe .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-frappe .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--catppuccin-frappe .control.has-icons-left .input:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-left .select:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-right .input:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--catppuccin-frappe .control.has-icons-right .select:focus~.icon{color:#414559}html.theme--catppuccin-frappe .control.has-icons-left .input.is-small~.icon,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--catppuccin-frappe .control.has-icons-left .select.is-small~.icon,html.theme--catppuccin-frappe .control.has-icons-right .input.is-small~.icon,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--catppuccin-frappe .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--catppuccin-frappe .control.has-icons-left .input.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-left .select.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-right .input.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--catppuccin-frappe .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--catppuccin-frappe .control.has-icons-left .input.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-left .select.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-right .input.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--catppuccin-frappe .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--catppuccin-frappe .control.has-icons-left .icon,html.theme--catppuccin-frappe .control.has-icons-right .icon{color:#626880;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--catppuccin-frappe .control.has-icons-left .input,html.theme--catppuccin-frappe .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--catppuccin-frappe .control.has-icons-left .select select{padding-left:2.5em}html.theme--catppuccin-frappe .control.has-icons-left .icon.is-left{left:0}html.theme--catppuccin-frappe .control.has-icons-right .input,html.theme--catppuccin-frappe .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--catppuccin-frappe .control.has-icons-right .select select{padding-right:2.5em}html.theme--catppuccin-frappe .control.has-icons-right .icon.is-right{right:0}html.theme--catppuccin-frappe .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--catppuccin-frappe .control.is-loading.is-small:after,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-frappe .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-frappe .control.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-frappe .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--catppuccin-frappe .breadcrumb a{align-items:center;color:#8caaee;display:flex;justify-content:center;padding:0 .75em}html.theme--catppuccin-frappe .breadcrumb a:hover{color:#99d1db}html.theme--catppuccin-frappe .breadcrumb li{align-items:center;display:flex}html.theme--catppuccin-frappe .breadcrumb li:first-child a{padding-left:0}html.theme--catppuccin-frappe .breadcrumb li.is-active a{color:#b0bef1;cursor:default;pointer-events:none}html.theme--catppuccin-frappe .breadcrumb li+li::before{color:#737994;content:"\0002f"}html.theme--catppuccin-frappe .breadcrumb ul,html.theme--catppuccin-frappe .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-frappe .breadcrumb .icon:first-child{margin-right:.5em}html.theme--catppuccin-frappe .breadcrumb .icon:last-child{margin-left:.5em}html.theme--catppuccin-frappe .breadcrumb.is-centered ol,html.theme--catppuccin-frappe .breadcrumb.is-centered ul{justify-content:center}html.theme--catppuccin-frappe .breadcrumb.is-right ol,html.theme--catppuccin-frappe .breadcrumb.is-right ul{justify-content:flex-end}html.theme--catppuccin-frappe .breadcrumb.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--catppuccin-frappe .breadcrumb.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .breadcrumb.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--catppuccin-frappe .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--catppuccin-frappe .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--catppuccin-frappe .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--catppuccin-frappe .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#c6d0f5;max-width:100%;position:relative}html.theme--catppuccin-frappe .card-footer:first-child,html.theme--catppuccin-frappe .card-content:first-child,html.theme--catppuccin-frappe .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-frappe .card-footer:last-child,html.theme--catppuccin-frappe .card-content:last-child,html.theme--catppuccin-frappe .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-frappe .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--catppuccin-frappe .card-header-title{align-items:center;color:#b0bef1;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--catppuccin-frappe .card-header-title.is-centered{justify-content:center}html.theme--catppuccin-frappe .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--catppuccin-frappe .card-image{display:block;position:relative}html.theme--catppuccin-frappe .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-frappe .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-frappe .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--catppuccin-frappe .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--catppuccin-frappe .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--catppuccin-frappe .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--catppuccin-frappe .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-frappe .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--catppuccin-frappe .dropdown.is-active .dropdown-menu,html.theme--catppuccin-frappe .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--catppuccin-frappe .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--catppuccin-frappe .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--catppuccin-frappe .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--catppuccin-frappe .dropdown-content{background-color:#292c3c;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--catppuccin-frappe .dropdown-item{color:#c6d0f5;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--catppuccin-frappe a.dropdown-item,html.theme--catppuccin-frappe button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--catppuccin-frappe a.dropdown-item:hover,html.theme--catppuccin-frappe button.dropdown-item:hover{background-color:#292c3c;color:#0a0a0a}html.theme--catppuccin-frappe a.dropdown-item.is-active,html.theme--catppuccin-frappe button.dropdown-item.is-active{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--catppuccin-frappe .level{align-items:center;justify-content:space-between}html.theme--catppuccin-frappe .level code{border-radius:.4em}html.theme--catppuccin-frappe .level img{display:inline-block;vertical-align:top}html.theme--catppuccin-frappe .level.is-mobile{display:flex}html.theme--catppuccin-frappe .level.is-mobile .level-left,html.theme--catppuccin-frappe .level.is-mobile .level-right{display:flex}html.theme--catppuccin-frappe .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--catppuccin-frappe .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-frappe .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .level{display:flex}html.theme--catppuccin-frappe .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--catppuccin-frappe .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--catppuccin-frappe .level-item .title,html.theme--catppuccin-frappe .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--catppuccin-frappe .level-left,html.theme--catppuccin-frappe .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .level-left .level-item.is-flexible,html.theme--catppuccin-frappe .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .level-left .level-item:not(:last-child),html.theme--catppuccin-frappe .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-frappe .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .level-left{display:flex}}html.theme--catppuccin-frappe .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .level-right{display:flex}}html.theme--catppuccin-frappe .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--catppuccin-frappe .media .content:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-frappe .media .media{border-top:1px solid rgba(98,104,128,0.5);display:flex;padding-top:.75rem}html.theme--catppuccin-frappe .media .media .content:not(:last-child),html.theme--catppuccin-frappe .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--catppuccin-frappe .media .media .media{padding-top:.5rem}html.theme--catppuccin-frappe .media .media .media+.media{margin-top:.5rem}html.theme--catppuccin-frappe .media+.media{border-top:1px solid rgba(98,104,128,0.5);margin-top:1rem;padding-top:1rem}html.theme--catppuccin-frappe .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--catppuccin-frappe .media-left,html.theme--catppuccin-frappe .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .media-left{margin-right:1rem}html.theme--catppuccin-frappe .media-right{margin-left:1rem}html.theme--catppuccin-frappe .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .media-content{overflow-x:auto}}html.theme--catppuccin-frappe .menu{font-size:1rem}html.theme--catppuccin-frappe .menu.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--catppuccin-frappe .menu.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .menu.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .menu-list{line-height:1.25}html.theme--catppuccin-frappe .menu-list a{border-radius:3px;color:#c6d0f5;display:block;padding:0.5em 0.75em}html.theme--catppuccin-frappe .menu-list a:hover{background-color:#292c3c;color:#b0bef1}html.theme--catppuccin-frappe .menu-list a.is-active{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .menu-list li ul{border-left:1px solid #626880;margin:.75em;padding-left:.75em}html.theme--catppuccin-frappe .menu-label{color:#f1f4fd;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--catppuccin-frappe .menu-label:not(:first-child){margin-top:1em}html.theme--catppuccin-frappe .menu-label:not(:last-child){margin-bottom:1em}html.theme--catppuccin-frappe .message{background-color:#292c3c;border-radius:.4em;font-size:1rem}html.theme--catppuccin-frappe .message strong{color:currentColor}html.theme--catppuccin-frappe .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-frappe .message.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--catppuccin-frappe .message.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .message.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .message.is-white{background-color:#fff}html.theme--catppuccin-frappe .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .message.is-white .message-body{border-color:#fff}html.theme--catppuccin-frappe .message.is-black{background-color:#fafafa}html.theme--catppuccin-frappe .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .message.is-black .message-body{border-color:#0a0a0a}html.theme--catppuccin-frappe .message.is-light{background-color:#fafafa}html.theme--catppuccin-frappe .message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .message.is-light .message-body{border-color:#f5f5f5}html.theme--catppuccin-frappe .message.is-dark,html.theme--catppuccin-frappe .content kbd.message{background-color:#f9f9fb}html.theme--catppuccin-frappe .message.is-dark .message-header,html.theme--catppuccin-frappe .content kbd.message .message-header{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .message.is-dark .message-body,html.theme--catppuccin-frappe .content kbd.message .message-body{border-color:#414559}html.theme--catppuccin-frappe .message.is-primary,html.theme--catppuccin-frappe .docstring>section>a.message.docs-sourcelink{background-color:#edf2fc}html.theme--catppuccin-frappe .message.is-primary .message-header,html.theme--catppuccin-frappe .docstring>section>a.message.docs-sourcelink .message-header{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .message.is-primary .message-body,html.theme--catppuccin-frappe .docstring>section>a.message.docs-sourcelink .message-body{border-color:#8caaee;color:#153a8e}html.theme--catppuccin-frappe .message.is-link{background-color:#edf2fc}html.theme--catppuccin-frappe .message.is-link .message-header{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .message.is-link .message-body{border-color:#8caaee;color:#153a8e}html.theme--catppuccin-frappe .message.is-info{background-color:#f1f9f8}html.theme--catppuccin-frappe .message.is-info .message-header{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .message.is-info .message-body{border-color:#81c8be;color:#2d675f}html.theme--catppuccin-frappe .message.is-success{background-color:#f4f9f0}html.theme--catppuccin-frappe .message.is-success .message-header{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .message.is-success .message-body{border-color:#a6d189;color:#446a29}html.theme--catppuccin-frappe .message.is-warning{background-color:#fbf7ee}html.theme--catppuccin-frappe .message.is-warning .message-header{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .message.is-warning .message-body{border-color:#e5c890;color:#78591c}html.theme--catppuccin-frappe .message.is-danger{background-color:#fceeee}html.theme--catppuccin-frappe .message.is-danger .message-header{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .message.is-danger .message-body{border-color:#e78284;color:#9a1e20}html.theme--catppuccin-frappe .message-header{align-items:center;background-color:#c6d0f5;border-radius:.4em .4em 0 0;color:rgba(0,0,0,0.7);display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--catppuccin-frappe .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--catppuccin-frappe .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--catppuccin-frappe .message-body{border-color:#626880;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#c6d0f5;padding:1.25em 1.5em}html.theme--catppuccin-frappe .message-body code,html.theme--catppuccin-frappe .message-body pre{background-color:#fff}html.theme--catppuccin-frappe .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--catppuccin-frappe .modal.is-active{display:flex}html.theme--catppuccin-frappe .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--catppuccin-frappe .modal-content,html.theme--catppuccin-frappe .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--catppuccin-frappe .modal-content,html.theme--catppuccin-frappe .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--catppuccin-frappe .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--catppuccin-frappe .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--catppuccin-frappe .modal-card-head,html.theme--catppuccin-frappe .modal-card-foot{align-items:center;background-color:#292c3c;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--catppuccin-frappe .modal-card-head{border-bottom:1px solid #626880;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--catppuccin-frappe .modal-card-title{color:#c6d0f5;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--catppuccin-frappe .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #626880}html.theme--catppuccin-frappe .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--catppuccin-frappe .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#303446;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--catppuccin-frappe .navbar{background-color:#8caaee;min-height:4rem;position:relative;z-index:30}html.theme--catppuccin-frappe .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-white .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-white .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-frappe .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--catppuccin-frappe .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-black .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-black .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--catppuccin-frappe .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--catppuccin-frappe .navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-light .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-light .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-frappe .navbar.is-dark,html.theme--catppuccin-frappe .content kbd.navbar{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#363a4a;color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--catppuccin-frappe .content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-burger,html.theme--catppuccin-frappe .content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-dark .navbar-start>.navbar-item,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end>.navbar-item,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#363a4a;color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .content kbd.navbar .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-dark .navbar-end .navbar-link::after,html.theme--catppuccin-frappe .content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-frappe .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#363a4a;color:#fff}html.theme--catppuccin-frappe .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#414559;color:#fff}}html.theme--catppuccin-frappe .navbar.is-primary,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-burger,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-primary .navbar-start>.navbar-item,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end>.navbar-item,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-primary .navbar-end .navbar-link::after,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#8caaee;color:#fff}}html.theme--catppuccin-frappe .navbar.is-link{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-link .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-link .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#8caaee;color:#fff}}html.theme--catppuccin-frappe .navbar.is-info{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#6fc0b5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-info .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-info .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#6fc0b5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-info .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#6fc0b5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#81c8be;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-frappe .navbar.is-success{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#98ca77;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-success .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-success .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#98ca77;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-success .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#98ca77;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#a6d189;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-frappe .navbar.is-warning{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#e0be7b;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-warning .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#e0be7b;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e0be7b;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#e5c890;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-frappe .navbar.is-danger{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand>.navbar-item,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#e36d6f;color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar.is-danger .navbar-start>.navbar-item,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end>.navbar-item,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#e36d6f;color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-start .navbar-link::after,html.theme--catppuccin-frappe .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e36d6f;color:#fff}html.theme--catppuccin-frappe .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#e78284;color:#fff}}html.theme--catppuccin-frappe .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--catppuccin-frappe .navbar.has-shadow{box-shadow:0 2px 0 0 #292c3c}html.theme--catppuccin-frappe .navbar.is-fixed-bottom,html.theme--catppuccin-frappe .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-frappe .navbar.is-fixed-bottom{bottom:0}html.theme--catppuccin-frappe .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #292c3c}html.theme--catppuccin-frappe .navbar.is-fixed-top{top:0}html.theme--catppuccin-frappe html.has-navbar-fixed-top,html.theme--catppuccin-frappe body.has-navbar-fixed-top{padding-top:4rem}html.theme--catppuccin-frappe html.has-navbar-fixed-bottom,html.theme--catppuccin-frappe body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--catppuccin-frappe .navbar-brand,html.theme--catppuccin-frappe .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--catppuccin-frappe .navbar-brand a.navbar-item:focus,html.theme--catppuccin-frappe .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--catppuccin-frappe .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--catppuccin-frappe .navbar-burger{color:#c6d0f5;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--catppuccin-frappe .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--catppuccin-frappe .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--catppuccin-frappe .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--catppuccin-frappe .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--catppuccin-frappe .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--catppuccin-frappe .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--catppuccin-frappe .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--catppuccin-frappe .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--catppuccin-frappe .navbar-menu{display:none}html.theme--catppuccin-frappe .navbar-item,html.theme--catppuccin-frappe .navbar-link{color:#c6d0f5;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--catppuccin-frappe .navbar-item .icon:only-child,html.theme--catppuccin-frappe .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--catppuccin-frappe a.navbar-item,html.theme--catppuccin-frappe .navbar-link{cursor:pointer}html.theme--catppuccin-frappe a.navbar-item:focus,html.theme--catppuccin-frappe a.navbar-item:focus-within,html.theme--catppuccin-frappe a.navbar-item:hover,html.theme--catppuccin-frappe a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar-link:focus,html.theme--catppuccin-frappe .navbar-link:focus-within,html.theme--catppuccin-frappe .navbar-link:hover,html.theme--catppuccin-frappe .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#8caaee}html.theme--catppuccin-frappe .navbar-item{flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .navbar-item img{max-height:1.75rem}html.theme--catppuccin-frappe .navbar-item.has-dropdown{padding:0}html.theme--catppuccin-frappe .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--catppuccin-frappe .navbar-item.is-tab:focus,html.theme--catppuccin-frappe .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#8caaee}html.theme--catppuccin-frappe .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#8caaee;border-bottom-style:solid;border-bottom-width:3px;color:#8caaee;padding-bottom:calc(0.5rem - 3px)}html.theme--catppuccin-frappe .navbar-content{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--catppuccin-frappe .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--catppuccin-frappe .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--catppuccin-frappe .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--catppuccin-frappe .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .navbar>.container{display:block}html.theme--catppuccin-frappe .navbar-brand .navbar-item,html.theme--catppuccin-frappe .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--catppuccin-frappe .navbar-link::after{display:none}html.theme--catppuccin-frappe .navbar-menu{background-color:#8caaee;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--catppuccin-frappe .navbar-menu.is-active{display:block}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-touch,html.theme--catppuccin-frappe .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-touch{bottom:0}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .navbar.is-fixed-top-touch{top:0}html.theme--catppuccin-frappe .navbar.is-fixed-top .navbar-menu,html.theme--catppuccin-frappe .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--catppuccin-frappe html.has-navbar-fixed-top-touch,html.theme--catppuccin-frappe body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--catppuccin-frappe html.has-navbar-fixed-bottom-touch,html.theme--catppuccin-frappe body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .navbar,html.theme--catppuccin-frappe .navbar-menu,html.theme--catppuccin-frappe .navbar-start,html.theme--catppuccin-frappe .navbar-end{align-items:stretch;display:flex}html.theme--catppuccin-frappe .navbar{min-height:4rem}html.theme--catppuccin-frappe .navbar.is-spaced{padding:1rem 2rem}html.theme--catppuccin-frappe .navbar.is-spaced .navbar-start,html.theme--catppuccin-frappe .navbar.is-spaced .navbar-end{align-items:center}html.theme--catppuccin-frappe .navbar.is-spaced a.navbar-item,html.theme--catppuccin-frappe .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--catppuccin-frappe .navbar.is-transparent a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-transparent a.navbar-item:hover,html.theme--catppuccin-frappe .navbar.is-transparent a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-link:focus,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-link:hover,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--catppuccin-frappe .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--catppuccin-frappe .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-frappe .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#838ba7}html.theme--catppuccin-frappe .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#8caaee}html.theme--catppuccin-frappe .navbar-burger{display:none}html.theme--catppuccin-frappe .navbar-item,html.theme--catppuccin-frappe .navbar-link{align-items:center;display:flex}html.theme--catppuccin-frappe .navbar-item.has-dropdown{align-items:stretch}html.theme--catppuccin-frappe .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--catppuccin-frappe .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--catppuccin-frappe .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--catppuccin-frappe .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-frappe .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--catppuccin-frappe .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--catppuccin-frappe .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--catppuccin-frappe .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--catppuccin-frappe .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--catppuccin-frappe .navbar-dropdown{background-color:#8caaee;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--catppuccin-frappe .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--catppuccin-frappe .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--catppuccin-frappe .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-frappe .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#838ba7}html.theme--catppuccin-frappe .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#8caaee}.navbar.is-spaced html.theme--catppuccin-frappe .navbar-dropdown,html.theme--catppuccin-frappe .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--catppuccin-frappe .navbar-dropdown.is-right{left:auto;right:0}html.theme--catppuccin-frappe .navbar-divider{display:block}html.theme--catppuccin-frappe .navbar>.container .navbar-brand,html.theme--catppuccin-frappe .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--catppuccin-frappe .navbar>.container .navbar-menu,html.theme--catppuccin-frappe .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-desktop,html.theme--catppuccin-frappe .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--catppuccin-frappe .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .navbar.is-fixed-top-desktop{top:0}html.theme--catppuccin-frappe html.has-navbar-fixed-top-desktop,html.theme--catppuccin-frappe body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--catppuccin-frappe html.has-navbar-fixed-bottom-desktop,html.theme--catppuccin-frappe body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--catppuccin-frappe html.has-spaced-navbar-fixed-top,html.theme--catppuccin-frappe body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--catppuccin-frappe html.has-spaced-navbar-fixed-bottom,html.theme--catppuccin-frappe body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--catppuccin-frappe a.navbar-item.is-active,html.theme--catppuccin-frappe .navbar-link.is-active{color:#8caaee}html.theme--catppuccin-frappe a.navbar-item.is-active:not(:focus):not(:hover),html.theme--catppuccin-frappe .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--catppuccin-frappe .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-frappe .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-frappe .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--catppuccin-frappe .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--catppuccin-frappe .pagination{font-size:1rem;margin:-.25rem}html.theme--catppuccin-frappe .pagination.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--catppuccin-frappe .pagination.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .pagination.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .pagination.is-rounded .pagination-previous,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--catppuccin-frappe .pagination.is-rounded .pagination-next,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--catppuccin-frappe .pagination.is-rounded .pagination-link,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--catppuccin-frappe .pagination,html.theme--catppuccin-frappe .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-link{border-color:#626880;color:#8caaee;min-width:2.5em}html.theme--catppuccin-frappe .pagination-previous:hover,html.theme--catppuccin-frappe .pagination-next:hover,html.theme--catppuccin-frappe .pagination-link:hover{border-color:#737994;color:#99d1db}html.theme--catppuccin-frappe .pagination-previous:focus,html.theme--catppuccin-frappe .pagination-next:focus,html.theme--catppuccin-frappe .pagination-link:focus{border-color:#737994}html.theme--catppuccin-frappe .pagination-previous:active,html.theme--catppuccin-frappe .pagination-next:active,html.theme--catppuccin-frappe .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--catppuccin-frappe .pagination-previous[disabled],html.theme--catppuccin-frappe .pagination-previous.is-disabled,html.theme--catppuccin-frappe .pagination-next[disabled],html.theme--catppuccin-frappe .pagination-next.is-disabled,html.theme--catppuccin-frappe .pagination-link[disabled],html.theme--catppuccin-frappe .pagination-link.is-disabled{background-color:#626880;border-color:#626880;box-shadow:none;color:#f1f4fd;opacity:0.5}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--catppuccin-frappe .pagination-link.is-current{background-color:#8caaee;border-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .pagination-ellipsis{color:#737994;pointer-events:none}html.theme--catppuccin-frappe .pagination-list{flex-wrap:wrap}html.theme--catppuccin-frappe .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .pagination{flex-wrap:wrap}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--catppuccin-frappe .pagination-previous{order:2}html.theme--catppuccin-frappe .pagination-next{order:3}html.theme--catppuccin-frappe .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--catppuccin-frappe .pagination.is-centered .pagination-previous{order:1}html.theme--catppuccin-frappe .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--catppuccin-frappe .pagination.is-centered .pagination-next{order:3}html.theme--catppuccin-frappe .pagination.is-right .pagination-previous{order:1}html.theme--catppuccin-frappe .pagination.is-right .pagination-next{order:2}html.theme--catppuccin-frappe .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--catppuccin-frappe .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--catppuccin-frappe .panel:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-frappe .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--catppuccin-frappe .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--catppuccin-frappe .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--catppuccin-frappe .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--catppuccin-frappe .panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}html.theme--catppuccin-frappe .panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}html.theme--catppuccin-frappe .panel.is-dark .panel-heading,html.theme--catppuccin-frappe .content kbd.panel .panel-heading{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .panel.is-dark .panel-tabs a.is-active,html.theme--catppuccin-frappe .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#414559}html.theme--catppuccin-frappe .panel.is-dark .panel-block.is-active .panel-icon,html.theme--catppuccin-frappe .content kbd.panel .panel-block.is-active .panel-icon{color:#414559}html.theme--catppuccin-frappe .panel.is-primary .panel-heading,html.theme--catppuccin-frappe .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .panel.is-primary .panel-tabs a.is-active,html.theme--catppuccin-frappe .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#8caaee}html.theme--catppuccin-frappe .panel.is-primary .panel-block.is-active .panel-icon,html.theme--catppuccin-frappe .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#8caaee}html.theme--catppuccin-frappe .panel.is-link .panel-heading{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .panel.is-link .panel-tabs a.is-active{border-bottom-color:#8caaee}html.theme--catppuccin-frappe .panel.is-link .panel-block.is-active .panel-icon{color:#8caaee}html.theme--catppuccin-frappe .panel.is-info .panel-heading{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .panel.is-info .panel-tabs a.is-active{border-bottom-color:#81c8be}html.theme--catppuccin-frappe .panel.is-info .panel-block.is-active .panel-icon{color:#81c8be}html.theme--catppuccin-frappe .panel.is-success .panel-heading{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .panel.is-success .panel-tabs a.is-active{border-bottom-color:#a6d189}html.theme--catppuccin-frappe .panel.is-success .panel-block.is-active .panel-icon{color:#a6d189}html.theme--catppuccin-frappe .panel.is-warning .panel-heading{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#e5c890}html.theme--catppuccin-frappe .panel.is-warning .panel-block.is-active .panel-icon{color:#e5c890}html.theme--catppuccin-frappe .panel.is-danger .panel-heading{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#e78284}html.theme--catppuccin-frappe .panel.is-danger .panel-block.is-active .panel-icon{color:#e78284}html.theme--catppuccin-frappe .panel-tabs:not(:last-child),html.theme--catppuccin-frappe .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--catppuccin-frappe .panel-heading{background-color:#51576d;border-radius:8px 8px 0 0;color:#b0bef1;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--catppuccin-frappe .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--catppuccin-frappe .panel-tabs a{border-bottom:1px solid #626880;margin-bottom:-1px;padding:0.5em}html.theme--catppuccin-frappe .panel-tabs a.is-active{border-bottom-color:#51576d;color:#769aeb}html.theme--catppuccin-frappe .panel-list a{color:#c6d0f5}html.theme--catppuccin-frappe .panel-list a:hover{color:#8caaee}html.theme--catppuccin-frappe .panel-block{align-items:center;color:#b0bef1;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--catppuccin-frappe .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--catppuccin-frappe .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--catppuccin-frappe .panel-block.is-wrapped{flex-wrap:wrap}html.theme--catppuccin-frappe .panel-block.is-active{border-left-color:#8caaee;color:#769aeb}html.theme--catppuccin-frappe .panel-block.is-active .panel-icon{color:#8caaee}html.theme--catppuccin-frappe .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--catppuccin-frappe a.panel-block,html.theme--catppuccin-frappe label.panel-block{cursor:pointer}html.theme--catppuccin-frappe a.panel-block:hover,html.theme--catppuccin-frappe label.panel-block:hover{background-color:#292c3c}html.theme--catppuccin-frappe .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#f1f4fd;margin-right:.75em}html.theme--catppuccin-frappe .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--catppuccin-frappe .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--catppuccin-frappe .tabs a{align-items:center;border-bottom-color:#626880;border-bottom-style:solid;border-bottom-width:1px;color:#c6d0f5;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--catppuccin-frappe .tabs a:hover{border-bottom-color:#b0bef1;color:#b0bef1}html.theme--catppuccin-frappe .tabs li{display:block}html.theme--catppuccin-frappe .tabs li.is-active a{border-bottom-color:#8caaee;color:#8caaee}html.theme--catppuccin-frappe .tabs ul{align-items:center;border-bottom-color:#626880;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--catppuccin-frappe .tabs ul.is-left{padding-right:0.75em}html.theme--catppuccin-frappe .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--catppuccin-frappe .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--catppuccin-frappe .tabs .icon:first-child{margin-right:.5em}html.theme--catppuccin-frappe .tabs .icon:last-child{margin-left:.5em}html.theme--catppuccin-frappe .tabs.is-centered ul{justify-content:center}html.theme--catppuccin-frappe .tabs.is-right ul{justify-content:flex-end}html.theme--catppuccin-frappe .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--catppuccin-frappe .tabs.is-boxed a:hover{background-color:#292c3c;border-bottom-color:#626880}html.theme--catppuccin-frappe .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#626880;border-bottom-color:rgba(0,0,0,0) !important}html.theme--catppuccin-frappe .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--catppuccin-frappe .tabs.is-toggle a{border-color:#626880;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--catppuccin-frappe .tabs.is-toggle a:hover{background-color:#292c3c;border-color:#737994;z-index:2}html.theme--catppuccin-frappe .tabs.is-toggle li+li{margin-left:-1px}html.theme--catppuccin-frappe .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--catppuccin-frappe .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--catppuccin-frappe .tabs.is-toggle li.is-active a{background-color:#8caaee;border-color:#8caaee;color:#fff;z-index:1}html.theme--catppuccin-frappe .tabs.is-toggle ul{border-bottom:none}html.theme--catppuccin-frappe .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--catppuccin-frappe .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--catppuccin-frappe .tabs.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--catppuccin-frappe .tabs.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .tabs.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-frappe .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .column.is-narrow-mobile{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-mobile{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-mobile{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-mobile{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-mobile{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-mobile{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-mobile{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-mobile{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-mobile{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-mobile{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-mobile{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-mobile{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-mobile{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .column.is-narrow,html.theme--catppuccin-frappe .column.is-narrow-tablet{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full,html.theme--catppuccin-frappe .column.is-full-tablet{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters,html.theme--catppuccin-frappe .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds,html.theme--catppuccin-frappe .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half,html.theme--catppuccin-frappe .column.is-half-tablet{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third,html.theme--catppuccin-frappe .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter,html.theme--catppuccin-frappe .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth,html.theme--catppuccin-frappe .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths,html.theme--catppuccin-frappe .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths,html.theme--catppuccin-frappe .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths,html.theme--catppuccin-frappe .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters,html.theme--catppuccin-frappe .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds,html.theme--catppuccin-frappe .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half,html.theme--catppuccin-frappe .column.is-offset-half-tablet{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third,html.theme--catppuccin-frappe .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter,html.theme--catppuccin-frappe .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth,html.theme--catppuccin-frappe .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths,html.theme--catppuccin-frappe .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths,html.theme--catppuccin-frappe .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths,html.theme--catppuccin-frappe .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--catppuccin-frappe .column.is-0,html.theme--catppuccin-frappe .column.is-0-tablet{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0,html.theme--catppuccin-frappe .column.is-offset-0-tablet{margin-left:0%}html.theme--catppuccin-frappe .column.is-1,html.theme--catppuccin-frappe .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1,html.theme--catppuccin-frappe .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2,html.theme--catppuccin-frappe .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2,html.theme--catppuccin-frappe .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3,html.theme--catppuccin-frappe .column.is-3-tablet{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3,html.theme--catppuccin-frappe .column.is-offset-3-tablet{margin-left:25%}html.theme--catppuccin-frappe .column.is-4,html.theme--catppuccin-frappe .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4,html.theme--catppuccin-frappe .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5,html.theme--catppuccin-frappe .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5,html.theme--catppuccin-frappe .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6,html.theme--catppuccin-frappe .column.is-6-tablet{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6,html.theme--catppuccin-frappe .column.is-offset-6-tablet{margin-left:50%}html.theme--catppuccin-frappe .column.is-7,html.theme--catppuccin-frappe .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7,html.theme--catppuccin-frappe .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8,html.theme--catppuccin-frappe .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8,html.theme--catppuccin-frappe .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9,html.theme--catppuccin-frappe .column.is-9-tablet{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9,html.theme--catppuccin-frappe .column.is-offset-9-tablet{margin-left:75%}html.theme--catppuccin-frappe .column.is-10,html.theme--catppuccin-frappe .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10,html.theme--catppuccin-frappe .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11,html.theme--catppuccin-frappe .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11,html.theme--catppuccin-frappe .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12,html.theme--catppuccin-frappe .column.is-12-tablet{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12,html.theme--catppuccin-frappe .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .column.is-narrow-touch{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-touch{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-touch{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-touch{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-touch{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-touch{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-touch{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-touch{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-touch{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-touch{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-touch{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-touch{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-touch{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-touch{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-touch{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-touch{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-touch{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-touch{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-touch{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-touch{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-touch{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-touch{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-touch{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-touch{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-touch{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-touch{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-touch{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .column.is-narrow-desktop{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-desktop{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-desktop{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-desktop{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-desktop{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-desktop{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-desktop{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-desktop{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-desktop{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-desktop{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-desktop{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-desktop{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-desktop{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .column.is-narrow-widescreen{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-widescreen{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-widescreen{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-widescreen{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-widescreen{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-widescreen{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-widescreen{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-widescreen{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-widescreen{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-widescreen{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-widescreen{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-widescreen{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-widescreen{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .column.is-narrow-fullhd{flex:none;width:unset}html.theme--catppuccin-frappe .column.is-full-fullhd{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--catppuccin-frappe .column.is-half-fullhd{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--catppuccin-frappe .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--catppuccin-frappe .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--catppuccin-frappe .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--catppuccin-frappe .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--catppuccin-frappe .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--catppuccin-frappe .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--catppuccin-frappe .column.is-offset-half-fullhd{margin-left:50%}html.theme--catppuccin-frappe .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--catppuccin-frappe .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--catppuccin-frappe .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--catppuccin-frappe .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--catppuccin-frappe .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--catppuccin-frappe .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--catppuccin-frappe .column.is-0-fullhd{flex:none;width:0%}html.theme--catppuccin-frappe .column.is-offset-0-fullhd{margin-left:0%}html.theme--catppuccin-frappe .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--catppuccin-frappe .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--catppuccin-frappe .column.is-3-fullhd{flex:none;width:25%}html.theme--catppuccin-frappe .column.is-offset-3-fullhd{margin-left:25%}html.theme--catppuccin-frappe .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--catppuccin-frappe .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--catppuccin-frappe .column.is-6-fullhd{flex:none;width:50%}html.theme--catppuccin-frappe .column.is-offset-6-fullhd{margin-left:50%}html.theme--catppuccin-frappe .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--catppuccin-frappe .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--catppuccin-frappe .column.is-9-fullhd{flex:none;width:75%}html.theme--catppuccin-frappe .column.is-offset-9-fullhd{margin-left:75%}html.theme--catppuccin-frappe .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--catppuccin-frappe .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--catppuccin-frappe .column.is-12-fullhd{flex:none;width:100%}html.theme--catppuccin-frappe .column.is-offset-12-fullhd{margin-left:100%}}html.theme--catppuccin-frappe .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-frappe .columns:last-child{margin-bottom:-.75rem}html.theme--catppuccin-frappe .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--catppuccin-frappe .columns.is-centered{justify-content:center}html.theme--catppuccin-frappe .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--catppuccin-frappe .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--catppuccin-frappe .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-frappe .columns.is-gapless:last-child{margin-bottom:0}html.theme--catppuccin-frappe .columns.is-mobile{display:flex}html.theme--catppuccin-frappe .columns.is-multiline{flex-wrap:wrap}html.theme--catppuccin-frappe .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-desktop{display:flex}}html.theme--catppuccin-frappe .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--catppuccin-frappe .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--catppuccin-frappe .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--catppuccin-frappe .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--catppuccin-frappe .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--catppuccin-frappe .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--catppuccin-frappe .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--catppuccin-frappe .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--catppuccin-frappe .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--catppuccin-frappe .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--catppuccin-frappe .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-frappe .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-frappe .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-frappe .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-frappe .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--catppuccin-frappe .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--catppuccin-frappe .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-frappe .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--catppuccin-frappe .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-frappe .tile.is-child{margin:0 !important}html.theme--catppuccin-frappe .tile.is-parent{padding:.75rem}html.theme--catppuccin-frappe .tile.is-vertical{flex-direction:column}html.theme--catppuccin-frappe .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .tile:not(.is-child){display:flex}html.theme--catppuccin-frappe .tile.is-1{flex:none;width:8.33333337%}html.theme--catppuccin-frappe .tile.is-2{flex:none;width:16.66666674%}html.theme--catppuccin-frappe .tile.is-3{flex:none;width:25%}html.theme--catppuccin-frappe .tile.is-4{flex:none;width:33.33333337%}html.theme--catppuccin-frappe .tile.is-5{flex:none;width:41.66666674%}html.theme--catppuccin-frappe .tile.is-6{flex:none;width:50%}html.theme--catppuccin-frappe .tile.is-7{flex:none;width:58.33333337%}html.theme--catppuccin-frappe .tile.is-8{flex:none;width:66.66666674%}html.theme--catppuccin-frappe .tile.is-9{flex:none;width:75%}html.theme--catppuccin-frappe .tile.is-10{flex:none;width:83.33333337%}html.theme--catppuccin-frappe .tile.is-11{flex:none;width:91.66666674%}html.theme--catppuccin-frappe .tile.is-12{flex:none;width:100%}}html.theme--catppuccin-frappe .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--catppuccin-frappe .hero .navbar{background:none}html.theme--catppuccin-frappe .hero .tabs ul{border-bottom:none}html.theme--catppuccin-frappe .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-white strong{color:inherit}html.theme--catppuccin-frappe .hero.is-white .title{color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--catppuccin-frappe .hero.is-white .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-white .navbar-menu{background-color:#fff}}html.theme--catppuccin-frappe .hero.is-white .navbar-item,html.theme--catppuccin-frappe .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--catppuccin-frappe .hero.is-white a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-white a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-white .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--catppuccin-frappe .hero.is-white .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--catppuccin-frappe .hero.is-white .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-white .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-white .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-white .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--catppuccin-frappe .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-frappe .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-black strong{color:inherit}html.theme--catppuccin-frappe .hero.is-black .title{color:#fff}html.theme--catppuccin-frappe .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-black .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--catppuccin-frappe .hero.is-black .navbar-item,html.theme--catppuccin-frappe .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-black a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-black a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-black .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-frappe .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-black .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--catppuccin-frappe .hero.is-black .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-black .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-black .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-black .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-frappe .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--catppuccin-frappe .hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-light strong{color:inherit}html.theme--catppuccin-frappe .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-frappe .hero.is-light .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-light .navbar-menu{background-color:#f5f5f5}}html.theme--catppuccin-frappe .hero.is-light .navbar-item,html.theme--catppuccin-frappe .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-light a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-light .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-frappe .hero.is-light .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-light .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-light .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-light .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-light .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-frappe .hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}html.theme--catppuccin-frappe .hero.is-dark,html.theme--catppuccin-frappe .content kbd.hero{background-color:#414559;color:#fff}html.theme--catppuccin-frappe .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-dark strong,html.theme--catppuccin-frappe .content kbd.hero strong{color:inherit}html.theme--catppuccin-frappe .hero.is-dark .title,html.theme--catppuccin-frappe .content kbd.hero .title{color:#fff}html.theme--catppuccin-frappe .hero.is-dark .subtitle,html.theme--catppuccin-frappe .content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-dark .subtitle a:not(.button),html.theme--catppuccin-frappe .content kbd.hero .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-dark .subtitle strong,html.theme--catppuccin-frappe .content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-dark .navbar-menu,html.theme--catppuccin-frappe .content kbd.hero .navbar-menu{background-color:#414559}}html.theme--catppuccin-frappe .hero.is-dark .navbar-item,html.theme--catppuccin-frappe .content kbd.hero .navbar-item,html.theme--catppuccin-frappe .hero.is-dark .navbar-link,html.theme--catppuccin-frappe .content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-dark a.navbar-item:hover,html.theme--catppuccin-frappe .content kbd.hero a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-dark a.navbar-item.is-active,html.theme--catppuccin-frappe .content kbd.hero a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-dark .navbar-link:hover,html.theme--catppuccin-frappe .content kbd.hero .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-dark .navbar-link.is-active,html.theme--catppuccin-frappe .content kbd.hero .navbar-link.is-active{background-color:#363a4a;color:#fff}html.theme--catppuccin-frappe .hero.is-dark .tabs a,html.theme--catppuccin-frappe .content kbd.hero .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-dark .tabs a:hover,html.theme--catppuccin-frappe .content kbd.hero .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-dark .tabs li.is-active a,html.theme--catppuccin-frappe .content kbd.hero .tabs li.is-active a{color:#414559 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-dark .tabs.is-boxed a,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-toggle a,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-dark .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-toggle a:hover,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#414559}html.theme--catppuccin-frappe .hero.is-dark.is-bold,html.theme--catppuccin-frappe .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #262f41 0%, #414559 71%, #47476c 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-dark.is-bold .navbar-menu,html.theme--catppuccin-frappe .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #262f41 0%, #414559 71%, #47476c 100%)}}html.theme--catppuccin-frappe .hero.is-primary,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-primary strong,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--catppuccin-frappe .hero.is-primary .title,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--catppuccin-frappe .hero.is-primary .subtitle,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-primary .subtitle a:not(.button),html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-primary .subtitle strong,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-primary .navbar-menu,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#8caaee}}html.theme--catppuccin-frappe .hero.is-primary .navbar-item,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--catppuccin-frappe .hero.is-primary .navbar-link,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-primary a.navbar-item:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-primary a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-primary .navbar-link:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-primary .navbar-link.is-active,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .hero.is-primary .tabs a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-primary .tabs a:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-primary .tabs li.is-active a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#8caaee !important;opacity:1}html.theme--catppuccin-frappe .hero.is-primary .tabs.is-boxed a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-toggle a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-primary .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-toggle a:hover,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .hero.is-primary.is-bold,html.theme--catppuccin-frappe .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #569ff1 0%, #8caaee 71%, #a0abf4 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-primary.is-bold .navbar-menu,html.theme--catppuccin-frappe .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #569ff1 0%, #8caaee 71%, #a0abf4 100%)}}html.theme--catppuccin-frappe .hero.is-link{background-color:#8caaee;color:#fff}html.theme--catppuccin-frappe .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-link strong{color:inherit}html.theme--catppuccin-frappe .hero.is-link .title{color:#fff}html.theme--catppuccin-frappe .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-link .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-link .navbar-menu{background-color:#8caaee}}html.theme--catppuccin-frappe .hero.is-link .navbar-item,html.theme--catppuccin-frappe .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-link a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-link a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-link .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-link .navbar-link.is-active{background-color:#769aeb;color:#fff}html.theme--catppuccin-frappe .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-link .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-link .tabs li.is-active a{color:#8caaee !important;opacity:1}html.theme--catppuccin-frappe .hero.is-link .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-link .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-link .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-link .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#8caaee}html.theme--catppuccin-frappe .hero.is-link.is-bold{background-image:linear-gradient(141deg, #569ff1 0%, #8caaee 71%, #a0abf4 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #569ff1 0%, #8caaee 71%, #a0abf4 100%)}}html.theme--catppuccin-frappe .hero.is-info{background-color:#81c8be;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-info strong{color:inherit}html.theme--catppuccin-frappe .hero.is-info .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-frappe .hero.is-info .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-info .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-info .navbar-menu{background-color:#81c8be}}html.theme--catppuccin-frappe .hero.is-info .navbar-item,html.theme--catppuccin-frappe .hero.is-info .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-info a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-info .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-info .navbar-link.is-active{background-color:#6fc0b5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-frappe .hero.is-info .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-info .tabs li.is-active a{color:#81c8be !important;opacity:1}html.theme--catppuccin-frappe .hero.is-info .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-info .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-info .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-info .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-info .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#81c8be}html.theme--catppuccin-frappe .hero.is-info.is-bold{background-image:linear-gradient(141deg, #52c4a1 0%, #81c8be 71%, #8fd2d4 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #52c4a1 0%, #81c8be 71%, #8fd2d4 100%)}}html.theme--catppuccin-frappe .hero.is-success{background-color:#a6d189;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-success strong{color:inherit}html.theme--catppuccin-frappe .hero.is-success .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-frappe .hero.is-success .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-success .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-success .navbar-menu{background-color:#a6d189}}html.theme--catppuccin-frappe .hero.is-success .navbar-item,html.theme--catppuccin-frappe .hero.is-success .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-success a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-success .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-success .navbar-link.is-active{background-color:#98ca77;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-frappe .hero.is-success .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-success .tabs li.is-active a{color:#a6d189 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-success .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-success .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-success .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-success .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-success .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#a6d189}html.theme--catppuccin-frappe .hero.is-success.is-bold{background-image:linear-gradient(141deg, #9ccd5a 0%, #a6d189 71%, #a8dc98 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #9ccd5a 0%, #a6d189 71%, #a8dc98 100%)}}html.theme--catppuccin-frappe .hero.is-warning{background-color:#e5c890;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-warning strong{color:inherit}html.theme--catppuccin-frappe .hero.is-warning .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-frappe .hero.is-warning .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-warning .navbar-menu{background-color:#e5c890}}html.theme--catppuccin-frappe .hero.is-warning .navbar-item,html.theme--catppuccin-frappe .hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-warning a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-warning .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-warning .navbar-link.is-active{background-color:#e0be7b;color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-frappe .hero.is-warning .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-warning .tabs li.is-active a{color:#e5c890 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-warning .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-frappe .hero.is-warning .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#e5c890}html.theme--catppuccin-frappe .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #e5a05d 0%, #e5c890 71%, #ede0a2 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e5a05d 0%, #e5c890 71%, #ede0a2 100%)}}html.theme--catppuccin-frappe .hero.is-danger{background-color:#e78284;color:#fff}html.theme--catppuccin-frappe .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-frappe .hero.is-danger strong{color:inherit}html.theme--catppuccin-frappe .hero.is-danger .title{color:#fff}html.theme--catppuccin-frappe .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-frappe .hero.is-danger .subtitle a:not(.button),html.theme--catppuccin-frappe .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .hero.is-danger .navbar-menu{background-color:#e78284}}html.theme--catppuccin-frappe .hero.is-danger .navbar-item,html.theme--catppuccin-frappe .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-frappe .hero.is-danger a.navbar-item:hover,html.theme--catppuccin-frappe .hero.is-danger a.navbar-item.is-active,html.theme--catppuccin-frappe .hero.is-danger .navbar-link:hover,html.theme--catppuccin-frappe .hero.is-danger .navbar-link.is-active{background-color:#e36d6f;color:#fff}html.theme--catppuccin-frappe .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-frappe .hero.is-danger .tabs a:hover{opacity:1}html.theme--catppuccin-frappe .hero.is-danger .tabs li.is-active a{color:#e78284 !important;opacity:1}html.theme--catppuccin-frappe .hero.is-danger .tabs.is-boxed a,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--catppuccin-frappe .hero.is-danger .tabs.is-boxed a:hover,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-frappe .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--catppuccin-frappe .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#e78284}html.theme--catppuccin-frappe .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #e94d6a 0%, #e78284 71%, #eea294 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e94d6a 0%, #e78284 71%, #eea294 100%)}}html.theme--catppuccin-frappe .hero.is-small .hero-body,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--catppuccin-frappe .hero.is-halfheight .hero-body,html.theme--catppuccin-frappe .hero.is-fullheight .hero-body,html.theme--catppuccin-frappe .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--catppuccin-frappe .hero.is-halfheight .hero-body>.container,html.theme--catppuccin-frappe .hero.is-fullheight .hero-body>.container,html.theme--catppuccin-frappe .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--catppuccin-frappe .hero.is-halfheight{min-height:50vh}html.theme--catppuccin-frappe .hero.is-fullheight{min-height:100vh}html.theme--catppuccin-frappe .hero-video{overflow:hidden}html.theme--catppuccin-frappe .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--catppuccin-frappe .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero-video{display:none}}html.theme--catppuccin-frappe .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-frappe .hero-buttons .button{display:flex}html.theme--catppuccin-frappe .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .hero-buttons{display:flex;justify-content:center}html.theme--catppuccin-frappe .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--catppuccin-frappe .hero-head,html.theme--catppuccin-frappe .hero-foot{flex-grow:0;flex-shrink:0}html.theme--catppuccin-frappe .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-frappe .hero-body{padding:3rem 3rem}}html.theme--catppuccin-frappe .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe .section{padding:3rem 3rem}html.theme--catppuccin-frappe .section.is-medium{padding:9rem 4.5rem}html.theme--catppuccin-frappe .section.is-large{padding:18rem 6rem}}html.theme--catppuccin-frappe .footer{background-color:#292c3c;padding:3rem 1.5rem 6rem}html.theme--catppuccin-frappe h1 .docs-heading-anchor,html.theme--catppuccin-frappe h1 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h1 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h2 .docs-heading-anchor,html.theme--catppuccin-frappe h2 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h2 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h3 .docs-heading-anchor,html.theme--catppuccin-frappe h3 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h3 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h4 .docs-heading-anchor,html.theme--catppuccin-frappe h4 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h4 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h5 .docs-heading-anchor,html.theme--catppuccin-frappe h5 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h5 .docs-heading-anchor:visited,html.theme--catppuccin-frappe h6 .docs-heading-anchor,html.theme--catppuccin-frappe h6 .docs-heading-anchor:hover,html.theme--catppuccin-frappe h6 .docs-heading-anchor:visited{color:#c6d0f5}html.theme--catppuccin-frappe h1 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h2 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h3 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h4 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h5 .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--catppuccin-frappe h1 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h2 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h3 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h4 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h5 .docs-heading-anchor-permalink::before,html.theme--catppuccin-frappe h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--catppuccin-frappe h1:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h2:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h3:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h4:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h5:hover .docs-heading-anchor-permalink,html.theme--catppuccin-frappe h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--catppuccin-frappe .docs-light-only{display:none !important}html.theme--catppuccin-frappe pre{position:relative;overflow:hidden}html.theme--catppuccin-frappe pre code,html.theme--catppuccin-frappe pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--catppuccin-frappe pre code:first-of-type,html.theme--catppuccin-frappe pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--catppuccin-frappe pre code:last-of-type,html.theme--catppuccin-frappe pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--catppuccin-frappe pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#c6d0f5;cursor:pointer;text-align:center}html.theme--catppuccin-frappe pre .copy-button:focus,html.theme--catppuccin-frappe pre .copy-button:hover{opacity:1;background:rgba(198,208,245,0.1);color:#8caaee}html.theme--catppuccin-frappe pre .copy-button.success{color:#a6d189;opacity:1}html.theme--catppuccin-frappe pre .copy-button.error{color:#e78284;opacity:1}html.theme--catppuccin-frappe pre:hover .copy-button{opacity:1}html.theme--catppuccin-frappe .admonition{background-color:#292c3c;border-style:solid;border-width:2px;border-color:#b5bfe2;border-radius:4px;font-size:1rem}html.theme--catppuccin-frappe .admonition strong{color:currentColor}html.theme--catppuccin-frappe .admonition.is-small,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--catppuccin-frappe .admonition.is-medium{font-size:1.25rem}html.theme--catppuccin-frappe .admonition.is-large{font-size:1.5rem}html.theme--catppuccin-frappe .admonition.is-default{background-color:#292c3c;border-color:#b5bfe2}html.theme--catppuccin-frappe .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#b5bfe2}html.theme--catppuccin-frappe .admonition.is-default>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-info{background-color:#292c3c;border-color:#81c8be}html.theme--catppuccin-frappe .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#81c8be}html.theme--catppuccin-frappe .admonition.is-info>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-success{background-color:#292c3c;border-color:#a6d189}html.theme--catppuccin-frappe .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#a6d189}html.theme--catppuccin-frappe .admonition.is-success>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-warning{background-color:#292c3c;border-color:#e5c890}html.theme--catppuccin-frappe .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#e5c890}html.theme--catppuccin-frappe .admonition.is-warning>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-danger{background-color:#292c3c;border-color:#e78284}html.theme--catppuccin-frappe .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#e78284}html.theme--catppuccin-frappe .admonition.is-danger>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-compat{background-color:#292c3c;border-color:#99d1db}html.theme--catppuccin-frappe .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#99d1db}html.theme--catppuccin-frappe .admonition.is-compat>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition.is-todo{background-color:#292c3c;border-color:#ca9ee6}html.theme--catppuccin-frappe .admonition.is-todo>.admonition-header{background-color:rgba(0,0,0,0);color:#ca9ee6}html.theme--catppuccin-frappe .admonition.is-todo>.admonition-body{color:#c6d0f5}html.theme--catppuccin-frappe .admonition-header{color:#b5bfe2;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--catppuccin-frappe .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--catppuccin-frappe details.admonition.is-details>.admonition-header{list-style:none}html.theme--catppuccin-frappe details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--catppuccin-frappe details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--catppuccin-frappe .admonition-body{color:#c6d0f5;padding:0.5rem .75rem}html.theme--catppuccin-frappe .admonition-body pre{background-color:#292c3c}html.theme--catppuccin-frappe .admonition-body code{background-color:#292c3c}html.theme--catppuccin-frappe .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #626880;border-radius:4px;box-shadow:none;max-width:100%}html.theme--catppuccin-frappe .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#292c3c;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #626880;overflow:auto}html.theme--catppuccin-frappe .docstring>header code{background-color:transparent}html.theme--catppuccin-frappe .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--catppuccin-frappe .docstring>header .docstring-binding{margin-right:0.3em}html.theme--catppuccin-frappe .docstring>header .docstring-category{margin-left:0.3em}html.theme--catppuccin-frappe .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #626880}html.theme--catppuccin-frappe .docstring>section:last-child{border-bottom:none}html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--catppuccin-frappe .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-frappe .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-frappe .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--catppuccin-frappe .documenter-example-output{background-color:#303446}html.theme--catppuccin-frappe .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#292c3c;color:#c6d0f5;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--catppuccin-frappe .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--catppuccin-frappe .outdated-warning-overlay a{color:#8caaee}html.theme--catppuccin-frappe .outdated-warning-overlay a:hover{color:#99d1db}html.theme--catppuccin-frappe .content pre{border:2px solid #626880;border-radius:4px}html.theme--catppuccin-frappe .content code{font-weight:inherit}html.theme--catppuccin-frappe .content a code{color:#8caaee}html.theme--catppuccin-frappe .content a:hover code{color:#99d1db}html.theme--catppuccin-frappe .content h1 code,html.theme--catppuccin-frappe .content h2 code,html.theme--catppuccin-frappe .content h3 code,html.theme--catppuccin-frappe .content h4 code,html.theme--catppuccin-frappe .content h5 code,html.theme--catppuccin-frappe .content h6 code{color:#c6d0f5}html.theme--catppuccin-frappe .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--catppuccin-frappe .content blockquote>ul:first-child,html.theme--catppuccin-frappe .content blockquote>ol:first-child,html.theme--catppuccin-frappe .content .admonition-body>ul:first-child,html.theme--catppuccin-frappe .content .admonition-body>ol:first-child{margin-top:0}html.theme--catppuccin-frappe pre,html.theme--catppuccin-frappe code{font-variant-ligatures:no-contextual}html.theme--catppuccin-frappe .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--catppuccin-frappe .breadcrumb a.is-disabled,html.theme--catppuccin-frappe .breadcrumb a.is-disabled:hover{color:#b0bef1}html.theme--catppuccin-frappe .hljs{background:initial !important}html.theme--catppuccin-frappe .katex .katex-mathml{top:0;right:0}html.theme--catppuccin-frappe .katex-display,html.theme--catppuccin-frappe mjx-container,html.theme--catppuccin-frappe .MathJax_Display{margin:0.5em 0 !important}html.theme--catppuccin-frappe html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--catppuccin-frappe li.no-marker{list-style:none}html.theme--catppuccin-frappe #documenter .docs-main>article{overflow-wrap:break-word}html.theme--catppuccin-frappe #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-main{width:100%}html.theme--catppuccin-frappe #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--catppuccin-frappe #documenter .docs-main>header,html.theme--catppuccin-frappe #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar{background-color:#303446;border-bottom:1px solid #626880;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--catppuccin-frappe #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--catppuccin-frappe #documenter .docs-main section.footnotes{border-top:1px solid #626880}html.theme--catppuccin-frappe #documenter .docs-main section.footnotes li .tag:first-child,html.theme--catppuccin-frappe #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--catppuccin-frappe #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--catppuccin-frappe .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #626880;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--catppuccin-frappe #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--catppuccin-frappe #documenter .docs-sidebar{display:flex;flex-direction:column;color:#c6d0f5;background-color:#292c3c;border-right:1px solid #626880;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--catppuccin-frappe #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe #documenter .docs-sidebar{left:0;top:0}}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-package-name a,html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-package-name a:hover{color:#c6d0f5}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #626880;display:none;padding:0.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #626880;padding-bottom:1.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #626880}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#c6d0f5;background:#292c3c}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#c6d0f5;background-color:#313548}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #626880;border-bottom:1px solid #626880;background-color:#232634}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#232634;color:#c6d0f5}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#313548;color:#c6d0f5}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #626880}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--catppuccin-frappe #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3a3e54}html.theme--catppuccin-frappe #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#4a506c}}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-frappe #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-frappe #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3a3e54}html.theme--catppuccin-frappe #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#4a506c}}html.theme--catppuccin-frappe kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--catppuccin-frappe .search-min-width-50{min-width:50%}html.theme--catppuccin-frappe .search-min-height-100{min-height:100%}html.theme--catppuccin-frappe .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--catppuccin-frappe .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-frappe .search-result-link:hover,html.theme--catppuccin-frappe .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--catppuccin-frappe .search-result-link .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-frappe .property-search-result-badge,html.theme--catppuccin-frappe .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--catppuccin-frappe .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link:hover .search-filter,html.theme--catppuccin-frappe .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--catppuccin-frappe .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--catppuccin-frappe .search-filter:hover,html.theme--catppuccin-frappe .search-filter:focus{color:#333}html.theme--catppuccin-frappe .search-filter-selected{color:#414559;background-color:#babbf1}html.theme--catppuccin-frappe .search-filter-selected:hover,html.theme--catppuccin-frappe .search-filter-selected:focus{color:#414559}html.theme--catppuccin-frappe .search-result-highlight{background-color:#ffdd57;color:black}html.theme--catppuccin-frappe .search-divider{border-bottom:1px solid #626880}html.theme--catppuccin-frappe .search-result-title{width:85%;color:#f5f5f5}html.theme--catppuccin-frappe .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-frappe #search-modal .modal-card-body::-webkit-scrollbar,html.theme--catppuccin-frappe #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--catppuccin-frappe #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--catppuccin-frappe #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--catppuccin-frappe #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--catppuccin-frappe #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--catppuccin-frappe .w-100{width:100%}html.theme--catppuccin-frappe .gap-2{gap:0.5rem}html.theme--catppuccin-frappe .gap-4{gap:1rem}html.theme--catppuccin-frappe .gap-8{gap:2rem}html.theme--catppuccin-frappe{background-color:#303446;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-frappe a{transition:all 200ms ease}html.theme--catppuccin-frappe .label{color:#c6d0f5}html.theme--catppuccin-frappe .button,html.theme--catppuccin-frappe .control.has-icons-left .icon,html.theme--catppuccin-frappe .control.has-icons-right .icon,html.theme--catppuccin-frappe .input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe .pagination-ellipsis,html.theme--catppuccin-frappe .pagination-link,html.theme--catppuccin-frappe .pagination-next,html.theme--catppuccin-frappe .pagination-previous,html.theme--catppuccin-frappe .select,html.theme--catppuccin-frappe .select select,html.theme--catppuccin-frappe .textarea{height:2.5em;color:#c6d0f5}html.theme--catppuccin-frappe .input,html.theme--catppuccin-frappe #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-frappe .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em;color:#c6d0f5}html.theme--catppuccin-frappe .select:after,html.theme--catppuccin-frappe .select select{border-width:1px}html.theme--catppuccin-frappe .menu-list a{transition:all 300ms ease}html.theme--catppuccin-frappe .modal-card-foot,html.theme--catppuccin-frappe .modal-card-head{border-color:#626880}html.theme--catppuccin-frappe .navbar{border-radius:.4em}html.theme--catppuccin-frappe .navbar.is-transparent{background:none}html.theme--catppuccin-frappe .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-frappe .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#8caaee}@media screen and (max-width: 1055px){html.theme--catppuccin-frappe .navbar .navbar-menu{background-color:#8caaee;border-radius:0 0 .4em .4em}}html.theme--catppuccin-frappe .docstring>section>a.docs-sourcelink:not(body){color:#414559}html.theme--catppuccin-frappe .tag.is-link:not(body),html.theme--catppuccin-frappe .docstring>section>a.is-link.docs-sourcelink:not(body),html.theme--catppuccin-frappe .content kbd.is-link:not(body){color:#414559}html.theme--catppuccin-frappe .ansi span.sgr1{font-weight:bolder}html.theme--catppuccin-frappe .ansi span.sgr2{font-weight:lighter}html.theme--catppuccin-frappe .ansi span.sgr3{font-style:italic}html.theme--catppuccin-frappe .ansi span.sgr4{text-decoration:underline}html.theme--catppuccin-frappe .ansi span.sgr7{color:#303446;background-color:#c6d0f5}html.theme--catppuccin-frappe .ansi span.sgr8{color:transparent}html.theme--catppuccin-frappe .ansi span.sgr8 span{color:transparent}html.theme--catppuccin-frappe .ansi span.sgr9{text-decoration:line-through}html.theme--catppuccin-frappe .ansi span.sgr30{color:#51576d}html.theme--catppuccin-frappe .ansi span.sgr31{color:#e78284}html.theme--catppuccin-frappe .ansi span.sgr32{color:#a6d189}html.theme--catppuccin-frappe .ansi span.sgr33{color:#e5c890}html.theme--catppuccin-frappe .ansi span.sgr34{color:#8caaee}html.theme--catppuccin-frappe .ansi span.sgr35{color:#f4b8e4}html.theme--catppuccin-frappe .ansi span.sgr36{color:#81c8be}html.theme--catppuccin-frappe .ansi span.sgr37{color:#b5bfe2}html.theme--catppuccin-frappe .ansi span.sgr40{background-color:#51576d}html.theme--catppuccin-frappe .ansi span.sgr41{background-color:#e78284}html.theme--catppuccin-frappe .ansi span.sgr42{background-color:#a6d189}html.theme--catppuccin-frappe .ansi span.sgr43{background-color:#e5c890}html.theme--catppuccin-frappe .ansi span.sgr44{background-color:#8caaee}html.theme--catppuccin-frappe .ansi span.sgr45{background-color:#f4b8e4}html.theme--catppuccin-frappe .ansi span.sgr46{background-color:#81c8be}html.theme--catppuccin-frappe .ansi span.sgr47{background-color:#b5bfe2}html.theme--catppuccin-frappe .ansi span.sgr90{color:#626880}html.theme--catppuccin-frappe .ansi span.sgr91{color:#e78284}html.theme--catppuccin-frappe .ansi span.sgr92{color:#a6d189}html.theme--catppuccin-frappe .ansi span.sgr93{color:#e5c890}html.theme--catppuccin-frappe .ansi span.sgr94{color:#8caaee}html.theme--catppuccin-frappe .ansi span.sgr95{color:#f4b8e4}html.theme--catppuccin-frappe .ansi span.sgr96{color:#81c8be}html.theme--catppuccin-frappe .ansi span.sgr97{color:#a5adce}html.theme--catppuccin-frappe .ansi span.sgr100{background-color:#626880}html.theme--catppuccin-frappe .ansi span.sgr101{background-color:#e78284}html.theme--catppuccin-frappe .ansi span.sgr102{background-color:#a6d189}html.theme--catppuccin-frappe .ansi span.sgr103{background-color:#e5c890}html.theme--catppuccin-frappe .ansi span.sgr104{background-color:#8caaee}html.theme--catppuccin-frappe .ansi span.sgr105{background-color:#f4b8e4}html.theme--catppuccin-frappe .ansi span.sgr106{background-color:#81c8be}html.theme--catppuccin-frappe .ansi span.sgr107{background-color:#a5adce}html.theme--catppuccin-frappe code.language-julia-repl>span.hljs-meta{color:#a6d189;font-weight:bolder}html.theme--catppuccin-frappe code .hljs{color:#c6d0f5;background:#303446}html.theme--catppuccin-frappe code .hljs-keyword{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-built_in{color:#e78284}html.theme--catppuccin-frappe code .hljs-type{color:#e5c890}html.theme--catppuccin-frappe code .hljs-literal{color:#ef9f76}html.theme--catppuccin-frappe code .hljs-number{color:#ef9f76}html.theme--catppuccin-frappe code .hljs-operator{color:#81c8be}html.theme--catppuccin-frappe code .hljs-punctuation{color:#b5bfe2}html.theme--catppuccin-frappe code .hljs-property{color:#81c8be}html.theme--catppuccin-frappe code .hljs-regexp{color:#f4b8e4}html.theme--catppuccin-frappe code .hljs-string{color:#a6d189}html.theme--catppuccin-frappe code .hljs-char.escape_{color:#a6d189}html.theme--catppuccin-frappe code .hljs-subst{color:#a5adce}html.theme--catppuccin-frappe code .hljs-symbol{color:#eebebe}html.theme--catppuccin-frappe code .hljs-variable{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-variable.language_{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-variable.constant_{color:#ef9f76}html.theme--catppuccin-frappe code .hljs-title{color:#8caaee}html.theme--catppuccin-frappe code .hljs-title.class_{color:#e5c890}html.theme--catppuccin-frappe code .hljs-title.function_{color:#8caaee}html.theme--catppuccin-frappe code .hljs-params{color:#c6d0f5}html.theme--catppuccin-frappe code .hljs-comment{color:#626880}html.theme--catppuccin-frappe code .hljs-doctag{color:#e78284}html.theme--catppuccin-frappe code .hljs-meta{color:#ef9f76}html.theme--catppuccin-frappe code .hljs-section{color:#8caaee}html.theme--catppuccin-frappe code .hljs-tag{color:#a5adce}html.theme--catppuccin-frappe code .hljs-name{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-attr{color:#8caaee}html.theme--catppuccin-frappe code .hljs-attribute{color:#a6d189}html.theme--catppuccin-frappe code .hljs-bullet{color:#81c8be}html.theme--catppuccin-frappe code .hljs-code{color:#a6d189}html.theme--catppuccin-frappe code .hljs-emphasis{color:#e78284;font-style:italic}html.theme--catppuccin-frappe code .hljs-strong{color:#e78284;font-weight:bold}html.theme--catppuccin-frappe code .hljs-formula{color:#81c8be}html.theme--catppuccin-frappe code .hljs-link{color:#85c1dc;font-style:italic}html.theme--catppuccin-frappe code .hljs-quote{color:#a6d189;font-style:italic}html.theme--catppuccin-frappe code .hljs-selector-tag{color:#e5c890}html.theme--catppuccin-frappe code .hljs-selector-id{color:#8caaee}html.theme--catppuccin-frappe code .hljs-selector-class{color:#81c8be}html.theme--catppuccin-frappe code .hljs-selector-attr{color:#ca9ee6}html.theme--catppuccin-frappe code .hljs-selector-pseudo{color:#81c8be}html.theme--catppuccin-frappe code .hljs-template-tag{color:#eebebe}html.theme--catppuccin-frappe code .hljs-template-variable{color:#eebebe}html.theme--catppuccin-frappe code .hljs-addition{color:#a6d189;background:rgba(166,227,161,0.15)}html.theme--catppuccin-frappe code .hljs-deletion{color:#e78284;background:rgba(243,139,168,0.15)}html.theme--catppuccin-frappe .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-frappe .search-result-link:hover,html.theme--catppuccin-frappe .search-result-link:focus{background-color:#414559}html.theme--catppuccin-frappe .search-result-link .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-frappe .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link:hover .search-filter,html.theme--catppuccin-frappe .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-frappe .search-result-link:focus .search-filter{color:#414559 !important;background-color:#babbf1 !important}html.theme--catppuccin-frappe .search-result-title{color:#c6d0f5}html.theme--catppuccin-frappe .search-result-highlight{background-color:#e78284;color:#292c3c}html.theme--catppuccin-frappe .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--catppuccin-frappe .w-100{width:100%}html.theme--catppuccin-frappe .gap-2{gap:0.5rem}html.theme--catppuccin-frappe .gap-4{gap:1rem} diff --git a/doc/build/assets/themes/catppuccin-latte.css b/doc/build/assets/themes/catppuccin-latte.css deleted file mode 100644 index 63160d3..0000000 --- a/doc/build/assets/themes/catppuccin-latte.css +++ /dev/null @@ -1 +0,0 @@ -html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-ellipsis,html.theme--catppuccin-latte .file-cta,html.theme--catppuccin-latte .file-name,html.theme--catppuccin-latte .select select,html.theme--catppuccin-latte .textarea,html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--catppuccin-latte .pagination-previous:focus,html.theme--catppuccin-latte .pagination-next:focus,html.theme--catppuccin-latte .pagination-link:focus,html.theme--catppuccin-latte .pagination-ellipsis:focus,html.theme--catppuccin-latte .file-cta:focus,html.theme--catppuccin-latte .file-name:focus,html.theme--catppuccin-latte .select select:focus,html.theme--catppuccin-latte .textarea:focus,html.theme--catppuccin-latte .input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-latte .button:focus,html.theme--catppuccin-latte .is-focused.pagination-previous,html.theme--catppuccin-latte .is-focused.pagination-next,html.theme--catppuccin-latte .is-focused.pagination-link,html.theme--catppuccin-latte .is-focused.pagination-ellipsis,html.theme--catppuccin-latte .is-focused.file-cta,html.theme--catppuccin-latte .is-focused.file-name,html.theme--catppuccin-latte .select select.is-focused,html.theme--catppuccin-latte .is-focused.textarea,html.theme--catppuccin-latte .is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-focused.button,html.theme--catppuccin-latte .pagination-previous:active,html.theme--catppuccin-latte .pagination-next:active,html.theme--catppuccin-latte .pagination-link:active,html.theme--catppuccin-latte .pagination-ellipsis:active,html.theme--catppuccin-latte .file-cta:active,html.theme--catppuccin-latte .file-name:active,html.theme--catppuccin-latte .select select:active,html.theme--catppuccin-latte .textarea:active,html.theme--catppuccin-latte .input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-latte .button:active,html.theme--catppuccin-latte .is-active.pagination-previous,html.theme--catppuccin-latte .is-active.pagination-next,html.theme--catppuccin-latte .is-active.pagination-link,html.theme--catppuccin-latte .is-active.pagination-ellipsis,html.theme--catppuccin-latte .is-active.file-cta,html.theme--catppuccin-latte .is-active.file-name,html.theme--catppuccin-latte .select select.is-active,html.theme--catppuccin-latte .is-active.textarea,html.theme--catppuccin-latte .is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-latte .is-active.button{outline:none}html.theme--catppuccin-latte .pagination-previous[disabled],html.theme--catppuccin-latte .pagination-next[disabled],html.theme--catppuccin-latte .pagination-link[disabled],html.theme--catppuccin-latte .pagination-ellipsis[disabled],html.theme--catppuccin-latte .file-cta[disabled],html.theme--catppuccin-latte .file-name[disabled],html.theme--catppuccin-latte .select select[disabled],html.theme--catppuccin-latte .textarea[disabled],html.theme--catppuccin-latte .input[disabled],html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--catppuccin-latte .button[disabled],fieldset[disabled] html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--catppuccin-latte .pagination-ellipsis,html.theme--catppuccin-latte fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--catppuccin-latte .file-cta,html.theme--catppuccin-latte fieldset[disabled] .file-cta,fieldset[disabled] html.theme--catppuccin-latte .file-name,html.theme--catppuccin-latte fieldset[disabled] .file-name,fieldset[disabled] html.theme--catppuccin-latte .select select,fieldset[disabled] html.theme--catppuccin-latte .textarea,fieldset[disabled] html.theme--catppuccin-latte .input,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte fieldset[disabled] .select select,html.theme--catppuccin-latte .select fieldset[disabled] select,html.theme--catppuccin-latte fieldset[disabled] .textarea,html.theme--catppuccin-latte fieldset[disabled] .input,html.theme--catppuccin-latte fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--catppuccin-latte .button,html.theme--catppuccin-latte fieldset[disabled] .button{cursor:not-allowed}html.theme--catppuccin-latte .tabs,html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-ellipsis,html.theme--catppuccin-latte .breadcrumb,html.theme--catppuccin-latte .file,html.theme--catppuccin-latte .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--catppuccin-latte .navbar-link:not(.is-arrowless)::after,html.theme--catppuccin-latte .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--catppuccin-latte .admonition:not(:last-child),html.theme--catppuccin-latte .tabs:not(:last-child),html.theme--catppuccin-latte .pagination:not(:last-child),html.theme--catppuccin-latte .message:not(:last-child),html.theme--catppuccin-latte .level:not(:last-child),html.theme--catppuccin-latte .breadcrumb:not(:last-child),html.theme--catppuccin-latte .block:not(:last-child),html.theme--catppuccin-latte .title:not(:last-child),html.theme--catppuccin-latte .subtitle:not(:last-child),html.theme--catppuccin-latte .table-container:not(:last-child),html.theme--catppuccin-latte .table:not(:last-child),html.theme--catppuccin-latte .progress:not(:last-child),html.theme--catppuccin-latte .notification:not(:last-child),html.theme--catppuccin-latte .content:not(:last-child),html.theme--catppuccin-latte .box:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-latte .modal-close,html.theme--catppuccin-latte .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--catppuccin-latte .modal-close::before,html.theme--catppuccin-latte .delete::before,html.theme--catppuccin-latte .modal-close::after,html.theme--catppuccin-latte .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-latte .modal-close::before,html.theme--catppuccin-latte .delete::before{height:2px;width:50%}html.theme--catppuccin-latte .modal-close::after,html.theme--catppuccin-latte .delete::after{height:50%;width:2px}html.theme--catppuccin-latte .modal-close:hover,html.theme--catppuccin-latte .delete:hover,html.theme--catppuccin-latte .modal-close:focus,html.theme--catppuccin-latte .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--catppuccin-latte .modal-close:active,html.theme--catppuccin-latte .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--catppuccin-latte .is-small.modal-close,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--catppuccin-latte .is-small.delete,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--catppuccin-latte .is-medium.modal-close,html.theme--catppuccin-latte .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--catppuccin-latte .is-large.modal-close,html.theme--catppuccin-latte .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--catppuccin-latte .control.is-loading::after,html.theme--catppuccin-latte .select.is-loading::after,html.theme--catppuccin-latte .loader,html.theme--catppuccin-latte .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #8c8fa1;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--catppuccin-latte .hero-video,html.theme--catppuccin-latte .modal-background,html.theme--catppuccin-latte .modal,html.theme--catppuccin-latte .image.is-square img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-latte .image.is-square .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-latte .image.is-1by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-latte .image.is-1by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-latte .image.is-5by4 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-latte .image.is-5by4 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-latte .image.is-4by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-latte .image.is-4by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-latte .image.is-3by2 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-latte .image.is-3by2 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-latte .image.is-5by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-latte .image.is-5by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-latte .image.is-16by9 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-latte .image.is-16by9 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-latte .image.is-2by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-latte .image.is-2by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-latte .image.is-3by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-latte .image.is-3by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-latte .image.is-4by5 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-latte .image.is-4by5 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-latte .image.is-3by4 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-latte .image.is-3by4 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-latte .image.is-2by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-latte .image.is-2by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-latte .image.is-3by5 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-latte .image.is-3by5 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-latte .image.is-9by16 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-latte .image.is-9by16 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-latte .image.is-1by2 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-latte .image.is-1by2 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-latte .image.is-1by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-latte .image.is-1by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--catppuccin-latte .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#ccd0da !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#aeb5c5 !important}.has-background-dark{background-color:#ccd0da !important}.has-text-primary{color:#1e66f5 !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#0a4ed6 !important}.has-background-primary{background-color:#1e66f5 !important}.has-text-primary-light{color:#ebf2fe !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#bbd1fc !important}.has-background-primary-light{background-color:#ebf2fe !important}.has-text-primary-dark{color:#0a52e1 !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#286df5 !important}.has-background-primary-dark{background-color:#0a52e1 !important}.has-text-link{color:#1e66f5 !important}a.has-text-link:hover,a.has-text-link:focus{color:#0a4ed6 !important}.has-background-link{background-color:#1e66f5 !important}.has-text-link-light{color:#ebf2fe !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#bbd1fc !important}.has-background-link-light{background-color:#ebf2fe !important}.has-text-link-dark{color:#0a52e1 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#286df5 !important}.has-background-link-dark{background-color:#0a52e1 !important}.has-text-info{color:#179299 !important}a.has-text-info:hover,a.has-text-info:focus{color:#10686d !important}.has-background-info{background-color:#179299 !important}.has-text-info-light{color:#edfcfc !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c1f3f6 !important}.has-background-info-light{background-color:#edfcfc !important}.has-text-info-dark{color:#1cb2ba !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#2ad5df !important}.has-background-info-dark{background-color:#1cb2ba !important}.has-text-success{color:#40a02b !important}a.has-text-success:hover,a.has-text-success:focus{color:#307820 !important}.has-background-success{background-color:#40a02b !important}.has-text-success-light{color:#f1fbef !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#cef0c7 !important}.has-background-success-light{background-color:#f1fbef !important}.has-text-success-dark{color:#40a12b !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#50c936 !important}.has-background-success-dark{background-color:#40a12b !important}.has-text-warning{color:#df8e1d !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#b27117 !important}.has-background-warning{background-color:#df8e1d !important}.has-text-warning-light{color:#fdf6ed !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#f7e0c0 !important}.has-background-warning-light{background-color:#fdf6ed !important}.has-text-warning-dark{color:#9e6515 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#cb811a !important}.has-background-warning-dark{background-color:#9e6515 !important}.has-text-danger{color:#d20f39 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#a20c2c !important}.has-background-danger{background-color:#d20f39 !important}.has-text-danger-light{color:#feecf0 !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#fabcca !important}.has-background-danger-light{background-color:#feecf0 !important}.has-text-danger-dark{color:#e9113f !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#f13c63 !important}.has-background-danger-dark{background-color:#e9113f !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#ccd0da !important}.has-background-grey-darker{background-color:#ccd0da !important}.has-text-grey-dark{color:#bcc0cc !important}.has-background-grey-dark{background-color:#bcc0cc !important}.has-text-grey{color:#acb0be !important}.has-background-grey{background-color:#acb0be !important}.has-text-grey-light{color:#9ca0b0 !important}.has-background-grey-light{background-color:#9ca0b0 !important}.has-text-grey-lighter{color:#8c8fa1 !important}.has-background-grey-lighter{background-color:#8c8fa1 !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--catppuccin-latte html{background-color:#eff1f5;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-latte article,html.theme--catppuccin-latte aside,html.theme--catppuccin-latte figure,html.theme--catppuccin-latte footer,html.theme--catppuccin-latte header,html.theme--catppuccin-latte hgroup,html.theme--catppuccin-latte section{display:block}html.theme--catppuccin-latte body,html.theme--catppuccin-latte button,html.theme--catppuccin-latte input,html.theme--catppuccin-latte optgroup,html.theme--catppuccin-latte select,html.theme--catppuccin-latte textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--catppuccin-latte code,html.theme--catppuccin-latte pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-latte body{color:#4c4f69;font-size:1em;font-weight:400;line-height:1.5}html.theme--catppuccin-latte a{color:#1e66f5;cursor:pointer;text-decoration:none}html.theme--catppuccin-latte a strong{color:currentColor}html.theme--catppuccin-latte a:hover{color:#04a5e5}html.theme--catppuccin-latte code{background-color:#e6e9ef;color:#4c4f69;font-size:.875em;font-weight:normal;padding:.1em}html.theme--catppuccin-latte hr{background-color:#e6e9ef;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--catppuccin-latte img{height:auto;max-width:100%}html.theme--catppuccin-latte input[type="checkbox"],html.theme--catppuccin-latte input[type="radio"]{vertical-align:baseline}html.theme--catppuccin-latte small{font-size:.875em}html.theme--catppuccin-latte span{font-style:inherit;font-weight:inherit}html.theme--catppuccin-latte strong{color:#41445a;font-weight:700}html.theme--catppuccin-latte fieldset{border:none}html.theme--catppuccin-latte pre{-webkit-overflow-scrolling:touch;background-color:#e6e9ef;color:#4c4f69;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--catppuccin-latte pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--catppuccin-latte table td,html.theme--catppuccin-latte table th{vertical-align:top}html.theme--catppuccin-latte table td:not([align]),html.theme--catppuccin-latte table th:not([align]){text-align:inherit}html.theme--catppuccin-latte table th{color:#41445a}html.theme--catppuccin-latte .box{background-color:#bcc0cc;border-radius:8px;box-shadow:none;color:#4c4f69;display:block;padding:1.25rem}html.theme--catppuccin-latte a.box:hover,html.theme--catppuccin-latte a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #1e66f5}html.theme--catppuccin-latte a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #1e66f5}html.theme--catppuccin-latte .button{background-color:#e6e9ef;border-color:#fff;border-width:1px;color:#1e66f5;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--catppuccin-latte .button strong{color:inherit}html.theme--catppuccin-latte .button .icon,html.theme--catppuccin-latte .button .icon.is-small,html.theme--catppuccin-latte .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--catppuccin-latte .button .icon.is-medium,html.theme--catppuccin-latte .button .icon.is-large{height:1.5em;width:1.5em}html.theme--catppuccin-latte .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--catppuccin-latte .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-latte .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-latte .button:hover,html.theme--catppuccin-latte .button.is-hovered{border-color:#9ca0b0;color:#41445a}html.theme--catppuccin-latte .button:focus,html.theme--catppuccin-latte .button.is-focused{border-color:#9ca0b0;color:#0b57ef}html.theme--catppuccin-latte .button:focus:not(:active),html.theme--catppuccin-latte .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .button:active,html.theme--catppuccin-latte .button.is-active{border-color:#bcc0cc;color:#41445a}html.theme--catppuccin-latte .button.is-text{background-color:transparent;border-color:transparent;color:#4c4f69;text-decoration:underline}html.theme--catppuccin-latte .button.is-text:hover,html.theme--catppuccin-latte .button.is-text.is-hovered,html.theme--catppuccin-latte .button.is-text:focus,html.theme--catppuccin-latte .button.is-text.is-focused{background-color:#e6e9ef;color:#41445a}html.theme--catppuccin-latte .button.is-text:active,html.theme--catppuccin-latte .button.is-text.is-active{background-color:#d6dbe5;color:#41445a}html.theme--catppuccin-latte .button.is-text[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--catppuccin-latte .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#1e66f5;text-decoration:none}html.theme--catppuccin-latte .button.is-ghost:hover,html.theme--catppuccin-latte .button.is-ghost.is-hovered{color:#1e66f5;text-decoration:underline}html.theme--catppuccin-latte .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white:hover,html.theme--catppuccin-latte .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white:focus,html.theme--catppuccin-latte .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white:focus:not(:active),html.theme--catppuccin-latte .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-latte .button.is-white:active,html.theme--catppuccin-latte .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--catppuccin-latte .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .button.is-white.is-inverted:hover,html.theme--catppuccin-latte .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--catppuccin-latte .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-latte .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-white.is-outlined:hover,html.theme--catppuccin-latte .button.is-white.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-white.is-outlined:focus,html.theme--catppuccin-latte .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-latte .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-black:hover,html.theme--catppuccin-latte .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-black:focus,html.theme--catppuccin-latte .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-black:focus:not(:active),html.theme--catppuccin-latte .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-latte .button.is-black:active,html.theme--catppuccin-latte .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-black[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--catppuccin-latte .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-inverted:hover,html.theme--catppuccin-latte .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-outlined:hover,html.theme--catppuccin-latte .button.is-black.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-black.is-outlined:focus,html.theme--catppuccin-latte .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light:hover,html.theme--catppuccin-latte .button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light:focus,html.theme--catppuccin-latte .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light:focus:not(:active),html.theme--catppuccin-latte .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-latte .button.is-light:active,html.theme--catppuccin-latte .button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}html.theme--catppuccin-latte .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-inverted:hover,html.theme--catppuccin-latte .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-latte .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-outlined:hover,html.theme--catppuccin-latte .button.is-light.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-light.is-outlined:focus,html.theme--catppuccin-latte .button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-latte .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark,html.theme--catppuccin-latte .content kbd.button{background-color:#ccd0da;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark:hover,html.theme--catppuccin-latte .content kbd.button:hover,html.theme--catppuccin-latte .button.is-dark.is-hovered,html.theme--catppuccin-latte .content kbd.button.is-hovered{background-color:#c5c9d5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark:focus,html.theme--catppuccin-latte .content kbd.button:focus,html.theme--catppuccin-latte .button.is-dark.is-focused,html.theme--catppuccin-latte .content kbd.button.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark:focus:not(:active),html.theme--catppuccin-latte .content kbd.button:focus:not(:active),html.theme--catppuccin-latte .button.is-dark.is-focused:not(:active),html.theme--catppuccin-latte .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(204,208,218,0.25)}html.theme--catppuccin-latte .button.is-dark:active,html.theme--catppuccin-latte .content kbd.button:active,html.theme--catppuccin-latte .button.is-dark.is-active,html.theme--catppuccin-latte .content kbd.button.is-active{background-color:#bdc2cf;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark[disabled],html.theme--catppuccin-latte .content kbd.button[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-dark,fieldset[disabled] html.theme--catppuccin-latte .content kbd.button{background-color:#ccd0da;border-color:#ccd0da;box-shadow:none}html.theme--catppuccin-latte .button.is-dark.is-inverted,html.theme--catppuccin-latte .content kbd.button.is-inverted{background-color:rgba(0,0,0,0.7);color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-inverted:hover,html.theme--catppuccin-latte .content kbd.button.is-inverted:hover,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-hovered,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark.is-inverted[disabled],html.theme--catppuccin-latte .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-dark.is-inverted,fieldset[disabled] html.theme--catppuccin-latte .content kbd.button.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-loading::after,html.theme--catppuccin-latte .content kbd.button.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-latte .button.is-dark.is-outlined,html.theme--catppuccin-latte .content kbd.button.is-outlined{background-color:transparent;border-color:#ccd0da;color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-outlined:hover,html.theme--catppuccin-latte .content kbd.button.is-outlined:hover,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-hovered,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-dark.is-outlined:focus,html.theme--catppuccin-latte .content kbd.button.is-outlined:focus,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-focused,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-focused{background-color:#ccd0da;border-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #ccd0da #ccd0da !important}html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-latte .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-latte .button.is-dark.is-outlined[disabled],html.theme--catppuccin-latte .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-dark.is-outlined,fieldset[disabled] html.theme--catppuccin-latte .content kbd.button.is-outlined{background-color:transparent;border-color:#ccd0da;box-shadow:none;color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#ccd0da}html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ccd0da #ccd0da !important}html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined[disabled],html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-latte .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .button.is-primary,html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink{background-color:#1e66f5;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-primary:hover,html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#125ef4;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-primary:focus,html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink:focus,html.theme--catppuccin-latte .button.is-primary.is-focused,html.theme--catppuccin-latte .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-primary:focus:not(:active),html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--catppuccin-latte .button.is-primary.is-focused:not(:active),html.theme--catppuccin-latte .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .button.is-primary:active,html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink:active,html.theme--catppuccin-latte .button.is-primary.is-active,html.theme--catppuccin-latte .docstring>section>a.button.is-active.docs-sourcelink{background-color:#0b57ef;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-primary[disabled],html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-primary,fieldset[disabled] html.theme--catppuccin-latte .docstring>section>a.button.docs-sourcelink{background-color:#1e66f5;border-color:#1e66f5;box-shadow:none}html.theme--catppuccin-latte .button.is-primary.is-inverted,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-inverted:hover,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-primary.is-inverted[disabled],html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-primary.is-inverted,fieldset[disabled] html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-loading::after,html.theme--catppuccin-latte .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-primary.is-outlined,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#1e66f5;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-outlined:hover,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-latte .button.is-primary.is-outlined:focus,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-focused,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #1e66f5 #1e66f5 !important}html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-latte .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-primary.is-outlined[disabled],html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-primary.is-outlined,fieldset[disabled] html.theme--catppuccin-latte .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#1e66f5;box-shadow:none;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #1e66f5 #1e66f5 !important}html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined[disabled],html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-latte .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-primary.is-light,html.theme--catppuccin-latte .docstring>section>a.button.is-light.docs-sourcelink{background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .button.is-primary.is-light:hover,html.theme--catppuccin-latte .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--catppuccin-latte .button.is-primary.is-light.is-hovered,html.theme--catppuccin-latte .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#dfe9fe;border-color:transparent;color:#0a52e1}html.theme--catppuccin-latte .button.is-primary.is-light:active,html.theme--catppuccin-latte .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--catppuccin-latte .button.is-primary.is-light.is-active,html.theme--catppuccin-latte .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d3e1fd;border-color:transparent;color:#0a52e1}html.theme--catppuccin-latte .button.is-link{background-color:#1e66f5;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-link:hover,html.theme--catppuccin-latte .button.is-link.is-hovered{background-color:#125ef4;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-link:focus,html.theme--catppuccin-latte .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-link:focus:not(:active),html.theme--catppuccin-latte .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .button.is-link:active,html.theme--catppuccin-latte .button.is-link.is-active{background-color:#0b57ef;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-link[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-link{background-color:#1e66f5;border-color:#1e66f5;box-shadow:none}html.theme--catppuccin-latte .button.is-link.is-inverted{background-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-inverted:hover,html.theme--catppuccin-latte .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-link.is-outlined{background-color:transparent;border-color:#1e66f5;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-outlined:hover,html.theme--catppuccin-latte .button.is-link.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-link.is-outlined:focus,html.theme--catppuccin-latte .button.is-link.is-outlined.is-focused{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #1e66f5 #1e66f5 !important}html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-link.is-outlined{background-color:transparent;border-color:#1e66f5;box-shadow:none;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #1e66f5 #1e66f5 !important}html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-link.is-light{background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .button.is-link.is-light:hover,html.theme--catppuccin-latte .button.is-link.is-light.is-hovered{background-color:#dfe9fe;border-color:transparent;color:#0a52e1}html.theme--catppuccin-latte .button.is-link.is-light:active,html.theme--catppuccin-latte .button.is-link.is-light.is-active{background-color:#d3e1fd;border-color:transparent;color:#0a52e1}html.theme--catppuccin-latte .button.is-info{background-color:#179299;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-info:hover,html.theme--catppuccin-latte .button.is-info.is-hovered{background-color:#15878e;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-info:focus,html.theme--catppuccin-latte .button.is-info.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-info:focus:not(:active),html.theme--catppuccin-latte .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(23,146,153,0.25)}html.theme--catppuccin-latte .button.is-info:active,html.theme--catppuccin-latte .button.is-info.is-active{background-color:#147d83;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-info[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-info{background-color:#179299;border-color:#179299;box-shadow:none}html.theme--catppuccin-latte .button.is-info.is-inverted{background-color:#fff;color:#179299}html.theme--catppuccin-latte .button.is-info.is-inverted:hover,html.theme--catppuccin-latte .button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#179299}html.theme--catppuccin-latte .button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-info.is-outlined{background-color:transparent;border-color:#179299;color:#179299}html.theme--catppuccin-latte .button.is-info.is-outlined:hover,html.theme--catppuccin-latte .button.is-info.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-info.is-outlined:focus,html.theme--catppuccin-latte .button.is-info.is-outlined.is-focused{background-color:#179299;border-color:#179299;color:#fff}html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #179299 #179299 !important}html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-info.is-outlined{background-color:transparent;border-color:#179299;box-shadow:none;color:#179299}html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#179299}html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #179299 #179299 !important}html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-info.is-light{background-color:#edfcfc;color:#1cb2ba}html.theme--catppuccin-latte .button.is-info.is-light:hover,html.theme--catppuccin-latte .button.is-info.is-light.is-hovered{background-color:#e2f9fb;border-color:transparent;color:#1cb2ba}html.theme--catppuccin-latte .button.is-info.is-light:active,html.theme--catppuccin-latte .button.is-info.is-light.is-active{background-color:#d7f7f9;border-color:transparent;color:#1cb2ba}html.theme--catppuccin-latte .button.is-success{background-color:#40a02b;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-success:hover,html.theme--catppuccin-latte .button.is-success.is-hovered{background-color:#3c9628;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-success:focus,html.theme--catppuccin-latte .button.is-success.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-success:focus:not(:active),html.theme--catppuccin-latte .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(64,160,43,0.25)}html.theme--catppuccin-latte .button.is-success:active,html.theme--catppuccin-latte .button.is-success.is-active{background-color:#388c26;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-success[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-success{background-color:#40a02b;border-color:#40a02b;box-shadow:none}html.theme--catppuccin-latte .button.is-success.is-inverted{background-color:#fff;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-inverted:hover,html.theme--catppuccin-latte .button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-success.is-outlined{background-color:transparent;border-color:#40a02b;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-outlined:hover,html.theme--catppuccin-latte .button.is-success.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-success.is-outlined:focus,html.theme--catppuccin-latte .button.is-success.is-outlined.is-focused{background-color:#40a02b;border-color:#40a02b;color:#fff}html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #40a02b #40a02b !important}html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-success.is-outlined{background-color:transparent;border-color:#40a02b;box-shadow:none;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#40a02b}html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #40a02b #40a02b !important}html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-success.is-light{background-color:#f1fbef;color:#40a12b}html.theme--catppuccin-latte .button.is-success.is-light:hover,html.theme--catppuccin-latte .button.is-success.is-light.is-hovered{background-color:#e8f8e5;border-color:transparent;color:#40a12b}html.theme--catppuccin-latte .button.is-success.is-light:active,html.theme--catppuccin-latte .button.is-success.is-light.is-active{background-color:#e0f5db;border-color:transparent;color:#40a12b}html.theme--catppuccin-latte .button.is-warning{background-color:#df8e1d;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-warning:hover,html.theme--catppuccin-latte .button.is-warning.is-hovered{background-color:#d4871c;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-warning:focus,html.theme--catppuccin-latte .button.is-warning.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-warning:focus:not(:active),html.theme--catppuccin-latte .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(223,142,29,0.25)}html.theme--catppuccin-latte .button.is-warning:active,html.theme--catppuccin-latte .button.is-warning.is-active{background-color:#c8801a;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-warning[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-warning{background-color:#df8e1d;border-color:#df8e1d;box-shadow:none}html.theme--catppuccin-latte .button.is-warning.is-inverted{background-color:#fff;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-inverted:hover,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-warning.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-warning.is-outlined{background-color:transparent;border-color:#df8e1d;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-outlined:hover,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-warning.is-outlined:focus,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-focused{background-color:#df8e1d;border-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #df8e1d #df8e1d !important}html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-warning.is-outlined{background-color:transparent;border-color:#df8e1d;box-shadow:none;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-focused{background-color:#fff;color:#df8e1d}html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #df8e1d #df8e1d !important}html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-warning.is-light{background-color:#fdf6ed;color:#9e6515}html.theme--catppuccin-latte .button.is-warning.is-light:hover,html.theme--catppuccin-latte .button.is-warning.is-light.is-hovered{background-color:#fbf1e2;border-color:transparent;color:#9e6515}html.theme--catppuccin-latte .button.is-warning.is-light:active,html.theme--catppuccin-latte .button.is-warning.is-light.is-active{background-color:#faebd6;border-color:transparent;color:#9e6515}html.theme--catppuccin-latte .button.is-danger{background-color:#d20f39;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-danger:hover,html.theme--catppuccin-latte .button.is-danger.is-hovered{background-color:#c60e36;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-danger:focus,html.theme--catppuccin-latte .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-danger:focus:not(:active),html.theme--catppuccin-latte .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(210,15,57,0.25)}html.theme--catppuccin-latte .button.is-danger:active,html.theme--catppuccin-latte .button.is-danger.is-active{background-color:#ba0d33;border-color:transparent;color:#fff}html.theme--catppuccin-latte .button.is-danger[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-danger{background-color:#d20f39;border-color:#d20f39;box-shadow:none}html.theme--catppuccin-latte .button.is-danger.is-inverted{background-color:#fff;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-inverted:hover,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-latte .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-danger.is-outlined{background-color:transparent;border-color:#d20f39;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-outlined:hover,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-danger.is-outlined:focus,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-focused{background-color:#d20f39;border-color:#d20f39;color:#fff}html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #d20f39 #d20f39 !important}html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-latte .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-danger.is-outlined{background-color:transparent;border-color:#d20f39;box-shadow:none;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined:hover,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined:focus,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#d20f39}html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #d20f39 #d20f39 !important}html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-latte .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-latte .button.is-danger.is-light{background-color:#feecf0;color:#e9113f}html.theme--catppuccin-latte .button.is-danger.is-light:hover,html.theme--catppuccin-latte .button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#e9113f}html.theme--catppuccin-latte .button.is-danger.is-light:active,html.theme--catppuccin-latte .button.is-danger.is-light.is-active{background-color:#fcd4dd;border-color:transparent;color:#e9113f}html.theme--catppuccin-latte .button.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--catppuccin-latte .button.is-small:not(.is-rounded),html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--catppuccin-latte .button.is-normal{font-size:1rem}html.theme--catppuccin-latte .button.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .button.is-large{font-size:1.5rem}html.theme--catppuccin-latte .button[disabled],fieldset[disabled] html.theme--catppuccin-latte .button{background-color:#9ca0b0;border-color:#acb0be;box-shadow:none;opacity:.5}html.theme--catppuccin-latte .button.is-fullwidth{display:flex;width:100%}html.theme--catppuccin-latte .button.is-loading{color:transparent !important;pointer-events:none}html.theme--catppuccin-latte .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--catppuccin-latte .button.is-static{background-color:#e6e9ef;border-color:#acb0be;color:#8c8fa1;box-shadow:none;pointer-events:none}html.theme--catppuccin-latte .button.is-rounded,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--catppuccin-latte .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-latte .buttons .button{margin-bottom:0.5rem}html.theme--catppuccin-latte .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--catppuccin-latte .buttons:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-latte .buttons:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-latte .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--catppuccin-latte .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--catppuccin-latte .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--catppuccin-latte .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--catppuccin-latte .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-latte .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--catppuccin-latte .buttons.has-addons .button:last-child{margin-right:0}html.theme--catppuccin-latte .buttons.has-addons .button:hover,html.theme--catppuccin-latte .buttons.has-addons .button.is-hovered{z-index:2}html.theme--catppuccin-latte .buttons.has-addons .button:focus,html.theme--catppuccin-latte .buttons.has-addons .button.is-focused,html.theme--catppuccin-latte .buttons.has-addons .button:active,html.theme--catppuccin-latte .buttons.has-addons .button.is-active,html.theme--catppuccin-latte .buttons.has-addons .button.is-selected{z-index:3}html.theme--catppuccin-latte .buttons.has-addons .button:focus:hover,html.theme--catppuccin-latte .buttons.has-addons .button.is-focused:hover,html.theme--catppuccin-latte .buttons.has-addons .button:active:hover,html.theme--catppuccin-latte .buttons.has-addons .button.is-active:hover,html.theme--catppuccin-latte .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--catppuccin-latte .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .buttons.is-centered{justify-content:center}html.theme--catppuccin-latte .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--catppuccin-latte .buttons.is-right{justify-content:flex-end}html.theme--catppuccin-latte .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .button.is-responsive.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--catppuccin-latte .button.is-responsive,html.theme--catppuccin-latte .button.is-responsive.is-normal{font-size:.65625rem}html.theme--catppuccin-latte .button.is-responsive.is-medium{font-size:.75rem}html.theme--catppuccin-latte .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .button.is-responsive.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--catppuccin-latte .button.is-responsive,html.theme--catppuccin-latte .button.is-responsive.is-normal{font-size:.75rem}html.theme--catppuccin-latte .button.is-responsive.is-medium{font-size:1rem}html.theme--catppuccin-latte .button.is-responsive.is-large{font-size:1.25rem}}html.theme--catppuccin-latte .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--catppuccin-latte .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--catppuccin-latte .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--catppuccin-latte .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--catppuccin-latte .content li+li{margin-top:0.25em}html.theme--catppuccin-latte .content p:not(:last-child),html.theme--catppuccin-latte .content dl:not(:last-child),html.theme--catppuccin-latte .content ol:not(:last-child),html.theme--catppuccin-latte .content ul:not(:last-child),html.theme--catppuccin-latte .content blockquote:not(:last-child),html.theme--catppuccin-latte .content pre:not(:last-child),html.theme--catppuccin-latte .content table:not(:last-child){margin-bottom:1em}html.theme--catppuccin-latte .content h1,html.theme--catppuccin-latte .content h2,html.theme--catppuccin-latte .content h3,html.theme--catppuccin-latte .content h4,html.theme--catppuccin-latte .content h5,html.theme--catppuccin-latte .content h6{color:#4c4f69;font-weight:600;line-height:1.125}html.theme--catppuccin-latte .content h1{font-size:2em;margin-bottom:0.5em}html.theme--catppuccin-latte .content h1:not(:first-child){margin-top:1em}html.theme--catppuccin-latte .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--catppuccin-latte .content h2:not(:first-child){margin-top:1.1428em}html.theme--catppuccin-latte .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--catppuccin-latte .content h3:not(:first-child){margin-top:1.3333em}html.theme--catppuccin-latte .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--catppuccin-latte .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--catppuccin-latte .content h6{font-size:1em;margin-bottom:1em}html.theme--catppuccin-latte .content blockquote{background-color:#e6e9ef;border-left:5px solid #acb0be;padding:1.25em 1.5em}html.theme--catppuccin-latte .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-latte .content ol:not([type]){list-style-type:decimal}html.theme--catppuccin-latte .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--catppuccin-latte .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--catppuccin-latte .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--catppuccin-latte .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--catppuccin-latte .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-latte .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--catppuccin-latte .content ul ul ul{list-style-type:square}html.theme--catppuccin-latte .content dd{margin-left:2em}html.theme--catppuccin-latte .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--catppuccin-latte .content figure:not(:first-child){margin-top:2em}html.theme--catppuccin-latte .content figure:not(:last-child){margin-bottom:2em}html.theme--catppuccin-latte .content figure img{display:inline-block}html.theme--catppuccin-latte .content figure figcaption{font-style:italic}html.theme--catppuccin-latte .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--catppuccin-latte .content sup,html.theme--catppuccin-latte .content sub{font-size:75%}html.theme--catppuccin-latte .content table{width:100%}html.theme--catppuccin-latte .content table td,html.theme--catppuccin-latte .content table th{border:1px solid #acb0be;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-latte .content table th{color:#41445a}html.theme--catppuccin-latte .content table th:not([align]){text-align:inherit}html.theme--catppuccin-latte .content table thead td,html.theme--catppuccin-latte .content table thead th{border-width:0 0 2px;color:#41445a}html.theme--catppuccin-latte .content table tfoot td,html.theme--catppuccin-latte .content table tfoot th{border-width:2px 0 0;color:#41445a}html.theme--catppuccin-latte .content table tbody tr:last-child td,html.theme--catppuccin-latte .content table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-latte .content .tabs li+li{margin-top:0}html.theme--catppuccin-latte .content.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--catppuccin-latte .content.is-normal{font-size:1rem}html.theme--catppuccin-latte .content.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .content.is-large{font-size:1.5rem}html.theme--catppuccin-latte .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--catppuccin-latte .icon.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--catppuccin-latte .icon.is-medium{height:2rem;width:2rem}html.theme--catppuccin-latte .icon.is-large{height:3rem;width:3rem}html.theme--catppuccin-latte .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--catppuccin-latte .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--catppuccin-latte .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--catppuccin-latte div.icon-text{display:flex}html.theme--catppuccin-latte .image,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--catppuccin-latte .image img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--catppuccin-latte .image img.is-rounded,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--catppuccin-latte .image.is-fullwidth,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--catppuccin-latte .image.is-square img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-latte .image.is-square .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-latte .image.is-1by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-latte .image.is-1by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-latte .image.is-5by4 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-latte .image.is-5by4 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-latte .image.is-4by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-latte .image.is-4by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-latte .image.is-3by2 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-latte .image.is-3by2 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-latte .image.is-5by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-latte .image.is-5by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-latte .image.is-16by9 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-latte .image.is-16by9 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-latte .image.is-2by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-latte .image.is-2by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-latte .image.is-3by1 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-latte .image.is-3by1 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-latte .image.is-4by5 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-latte .image.is-4by5 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-latte .image.is-3by4 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-latte .image.is-3by4 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-latte .image.is-2by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-latte .image.is-2by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-latte .image.is-3by5 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-latte .image.is-3by5 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-latte .image.is-9by16 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-latte .image.is-9by16 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-latte .image.is-1by2 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-latte .image.is-1by2 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-latte .image.is-1by3 img,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-latte .image.is-1by3 .has-ratio,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--catppuccin-latte .image.is-square,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--catppuccin-latte .image.is-1by1,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--catppuccin-latte .image.is-5by4,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--catppuccin-latte .image.is-4by3,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--catppuccin-latte .image.is-3by2,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--catppuccin-latte .image.is-5by3,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--catppuccin-latte .image.is-16by9,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--catppuccin-latte .image.is-2by1,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--catppuccin-latte .image.is-3by1,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--catppuccin-latte .image.is-4by5,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--catppuccin-latte .image.is-3by4,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--catppuccin-latte .image.is-2by3,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--catppuccin-latte .image.is-3by5,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--catppuccin-latte .image.is-9by16,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--catppuccin-latte .image.is-1by2,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--catppuccin-latte .image.is-1by3,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--catppuccin-latte .image.is-16x16,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--catppuccin-latte .image.is-24x24,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--catppuccin-latte .image.is-32x32,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--catppuccin-latte .image.is-48x48,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--catppuccin-latte .image.is-64x64,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--catppuccin-latte .image.is-96x96,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--catppuccin-latte .image.is-128x128,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--catppuccin-latte .notification{background-color:#e6e9ef;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--catppuccin-latte .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-latte .notification strong{color:currentColor}html.theme--catppuccin-latte .notification code,html.theme--catppuccin-latte .notification pre{background:#fff}html.theme--catppuccin-latte .notification pre code{background:transparent}html.theme--catppuccin-latte .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--catppuccin-latte .notification .title,html.theme--catppuccin-latte .notification .subtitle,html.theme--catppuccin-latte .notification .content{color:currentColor}html.theme--catppuccin-latte .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .notification.is-dark,html.theme--catppuccin-latte .content kbd.notification{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .notification.is-primary,html.theme--catppuccin-latte .docstring>section>a.notification.docs-sourcelink{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .notification.is-primary.is-light,html.theme--catppuccin-latte .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .notification.is-link{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .notification.is-link.is-light{background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .notification.is-info{background-color:#179299;color:#fff}html.theme--catppuccin-latte .notification.is-info.is-light{background-color:#edfcfc;color:#1cb2ba}html.theme--catppuccin-latte .notification.is-success{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .notification.is-success.is-light{background-color:#f1fbef;color:#40a12b}html.theme--catppuccin-latte .notification.is-warning{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .notification.is-warning.is-light{background-color:#fdf6ed;color:#9e6515}html.theme--catppuccin-latte .notification.is-danger{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .notification.is-danger.is-light{background-color:#feecf0;color:#e9113f}html.theme--catppuccin-latte .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--catppuccin-latte .progress::-webkit-progress-bar{background-color:#bcc0cc}html.theme--catppuccin-latte .progress::-webkit-progress-value{background-color:#8c8fa1}html.theme--catppuccin-latte .progress::-moz-progress-bar{background-color:#8c8fa1}html.theme--catppuccin-latte .progress::-ms-fill{background-color:#8c8fa1;border:none}html.theme--catppuccin-latte .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--catppuccin-latte .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--catppuccin-latte .progress.is-white::-ms-fill{background-color:#fff}html.theme--catppuccin-latte .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--catppuccin-latte .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--catppuccin-latte .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--catppuccin-latte .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-light::-webkit-progress-value{background-color:#f5f5f5}html.theme--catppuccin-latte .progress.is-light::-moz-progress-bar{background-color:#f5f5f5}html.theme--catppuccin-latte .progress.is-light::-ms-fill{background-color:#f5f5f5}html.theme--catppuccin-latte .progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-dark::-webkit-progress-value,html.theme--catppuccin-latte .content kbd.progress::-webkit-progress-value{background-color:#ccd0da}html.theme--catppuccin-latte .progress.is-dark::-moz-progress-bar,html.theme--catppuccin-latte .content kbd.progress::-moz-progress-bar{background-color:#ccd0da}html.theme--catppuccin-latte .progress.is-dark::-ms-fill,html.theme--catppuccin-latte .content kbd.progress::-ms-fill{background-color:#ccd0da}html.theme--catppuccin-latte .progress.is-dark:indeterminate,html.theme--catppuccin-latte .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #ccd0da 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-primary::-webkit-progress-value,html.theme--catppuccin-latte .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-primary::-moz-progress-bar,html.theme--catppuccin-latte .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-primary::-ms-fill,html.theme--catppuccin-latte .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-primary:indeterminate,html.theme--catppuccin-latte .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #1e66f5 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-link::-webkit-progress-value{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-link::-moz-progress-bar{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-link::-ms-fill{background-color:#1e66f5}html.theme--catppuccin-latte .progress.is-link:indeterminate{background-image:linear-gradient(to right, #1e66f5 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-info::-webkit-progress-value{background-color:#179299}html.theme--catppuccin-latte .progress.is-info::-moz-progress-bar{background-color:#179299}html.theme--catppuccin-latte .progress.is-info::-ms-fill{background-color:#179299}html.theme--catppuccin-latte .progress.is-info:indeterminate{background-image:linear-gradient(to right, #179299 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-success::-webkit-progress-value{background-color:#40a02b}html.theme--catppuccin-latte .progress.is-success::-moz-progress-bar{background-color:#40a02b}html.theme--catppuccin-latte .progress.is-success::-ms-fill{background-color:#40a02b}html.theme--catppuccin-latte .progress.is-success:indeterminate{background-image:linear-gradient(to right, #40a02b 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-warning::-webkit-progress-value{background-color:#df8e1d}html.theme--catppuccin-latte .progress.is-warning::-moz-progress-bar{background-color:#df8e1d}html.theme--catppuccin-latte .progress.is-warning::-ms-fill{background-color:#df8e1d}html.theme--catppuccin-latte .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #df8e1d 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress.is-danger::-webkit-progress-value{background-color:#d20f39}html.theme--catppuccin-latte .progress.is-danger::-moz-progress-bar{background-color:#d20f39}html.theme--catppuccin-latte .progress.is-danger::-ms-fill{background-color:#d20f39}html.theme--catppuccin-latte .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #d20f39 30%, #bcc0cc 30%)}html.theme--catppuccin-latte .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#bcc0cc;background-image:linear-gradient(to right, #4c4f69 30%, #bcc0cc 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--catppuccin-latte .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--catppuccin-latte .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--catppuccin-latte .progress:indeterminate::-ms-fill{animation-name:none}html.theme--catppuccin-latte .progress.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--catppuccin-latte .progress.is-medium{height:1.25rem}html.theme--catppuccin-latte .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--catppuccin-latte .table{background-color:#bcc0cc;color:#4c4f69}html.theme--catppuccin-latte .table td,html.theme--catppuccin-latte .table th{border:1px solid #acb0be;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-latte .table td.is-white,html.theme--catppuccin-latte .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .table td.is-black,html.theme--catppuccin-latte .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .table td.is-light,html.theme--catppuccin-latte .table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .table td.is-dark,html.theme--catppuccin-latte .table th.is-dark{background-color:#ccd0da;border-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .table td.is-primary,html.theme--catppuccin-latte .table th.is-primary{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .table td.is-link,html.theme--catppuccin-latte .table th.is-link{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .table td.is-info,html.theme--catppuccin-latte .table th.is-info{background-color:#179299;border-color:#179299;color:#fff}html.theme--catppuccin-latte .table td.is-success,html.theme--catppuccin-latte .table th.is-success{background-color:#40a02b;border-color:#40a02b;color:#fff}html.theme--catppuccin-latte .table td.is-warning,html.theme--catppuccin-latte .table th.is-warning{background-color:#df8e1d;border-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .table td.is-danger,html.theme--catppuccin-latte .table th.is-danger{background-color:#d20f39;border-color:#d20f39;color:#fff}html.theme--catppuccin-latte .table td.is-narrow,html.theme--catppuccin-latte .table th.is-narrow{white-space:nowrap;width:1%}html.theme--catppuccin-latte .table td.is-selected,html.theme--catppuccin-latte .table th.is-selected{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .table td.is-selected a,html.theme--catppuccin-latte .table td.is-selected strong,html.theme--catppuccin-latte .table th.is-selected a,html.theme--catppuccin-latte .table th.is-selected strong{color:currentColor}html.theme--catppuccin-latte .table td.is-vcentered,html.theme--catppuccin-latte .table th.is-vcentered{vertical-align:middle}html.theme--catppuccin-latte .table th{color:#41445a}html.theme--catppuccin-latte .table th:not([align]){text-align:left}html.theme--catppuccin-latte .table tr.is-selected{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .table tr.is-selected a,html.theme--catppuccin-latte .table tr.is-selected strong{color:currentColor}html.theme--catppuccin-latte .table tr.is-selected td,html.theme--catppuccin-latte .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--catppuccin-latte .table thead{background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .table thead td,html.theme--catppuccin-latte .table thead th{border-width:0 0 2px;color:#41445a}html.theme--catppuccin-latte .table tfoot{background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .table tfoot td,html.theme--catppuccin-latte .table tfoot th{border-width:2px 0 0;color:#41445a}html.theme--catppuccin-latte .table tbody{background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .table tbody tr:last-child td,html.theme--catppuccin-latte .table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-latte .table.is-bordered td,html.theme--catppuccin-latte .table.is-bordered th{border-width:1px}html.theme--catppuccin-latte .table.is-bordered tr:last-child td,html.theme--catppuccin-latte .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--catppuccin-latte .table.is-fullwidth{width:100%}html.theme--catppuccin-latte .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#ccd0da}html.theme--catppuccin-latte .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#ccd0da}html.theme--catppuccin-latte .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#d2d5de}html.theme--catppuccin-latte .table.is-narrow td,html.theme--catppuccin-latte .table.is-narrow th{padding:0.25em 0.5em}html.theme--catppuccin-latte .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#ccd0da}html.theme--catppuccin-latte .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--catppuccin-latte .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-latte .tags .tag,html.theme--catppuccin-latte .tags .content kbd,html.theme--catppuccin-latte .content .tags kbd,html.theme--catppuccin-latte .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--catppuccin-latte .tags .tag:not(:last-child),html.theme--catppuccin-latte .tags .content kbd:not(:last-child),html.theme--catppuccin-latte .content .tags kbd:not(:last-child),html.theme--catppuccin-latte .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--catppuccin-latte .tags:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-latte .tags:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-latte .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--catppuccin-latte .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-latte .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-latte .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--catppuccin-latte .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--catppuccin-latte .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-latte .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-latte .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--catppuccin-latte .tags.is-centered{justify-content:center}html.theme--catppuccin-latte .tags.is-centered .tag,html.theme--catppuccin-latte .tags.is-centered .content kbd,html.theme--catppuccin-latte .content .tags.is-centered kbd,html.theme--catppuccin-latte .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--catppuccin-latte .tags.is-right{justify-content:flex-end}html.theme--catppuccin-latte .tags.is-right .tag:not(:first-child),html.theme--catppuccin-latte .tags.is-right .content kbd:not(:first-child),html.theme--catppuccin-latte .content .tags.is-right kbd:not(:first-child),html.theme--catppuccin-latte .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--catppuccin-latte .tags.is-right .tag:not(:last-child),html.theme--catppuccin-latte .tags.is-right .content kbd:not(:last-child),html.theme--catppuccin-latte .content .tags.is-right kbd:not(:last-child),html.theme--catppuccin-latte .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--catppuccin-latte .tags.has-addons .tag,html.theme--catppuccin-latte .tags.has-addons .content kbd,html.theme--catppuccin-latte .content .tags.has-addons kbd,html.theme--catppuccin-latte .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--catppuccin-latte .tags.has-addons .tag:not(:first-child),html.theme--catppuccin-latte .tags.has-addons .content kbd:not(:first-child),html.theme--catppuccin-latte .content .tags.has-addons kbd:not(:first-child),html.theme--catppuccin-latte .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--catppuccin-latte .tags.has-addons .tag:not(:last-child),html.theme--catppuccin-latte .tags.has-addons .content kbd:not(:last-child),html.theme--catppuccin-latte .content .tags.has-addons kbd:not(:last-child),html.theme--catppuccin-latte .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--catppuccin-latte .tag:not(body),html.theme--catppuccin-latte .content kbd:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#e6e9ef;border-radius:.4em;color:#4c4f69;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--catppuccin-latte .tag:not(body) .delete,html.theme--catppuccin-latte .content kbd:not(body) .delete,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--catppuccin-latte .tag.is-white:not(body),html.theme--catppuccin-latte .content kbd.is-white:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .tag.is-black:not(body),html.theme--catppuccin-latte .content kbd.is-black:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .tag.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .tag.is-dark:not(body),html.theme--catppuccin-latte .content kbd:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--catppuccin-latte .content .docstring>section>kbd:not(body){background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .tag.is-primary:not(body),html.theme--catppuccin-latte .content kbd.is-primary:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body){background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .tag.is-primary.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-primary.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .tag.is-link:not(body),html.theme--catppuccin-latte .content kbd.is-link:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .tag.is-link.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-link.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#ebf2fe;color:#0a52e1}html.theme--catppuccin-latte .tag.is-info:not(body),html.theme--catppuccin-latte .content kbd.is-info:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#179299;color:#fff}html.theme--catppuccin-latte .tag.is-info.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-info.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#edfcfc;color:#1cb2ba}html.theme--catppuccin-latte .tag.is-success:not(body),html.theme--catppuccin-latte .content kbd.is-success:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .tag.is-success.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-success.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#f1fbef;color:#40a12b}html.theme--catppuccin-latte .tag.is-warning:not(body),html.theme--catppuccin-latte .content kbd.is-warning:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .tag.is-warning.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-warning.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fdf6ed;color:#9e6515}html.theme--catppuccin-latte .tag.is-danger:not(body),html.theme--catppuccin-latte .content kbd.is-danger:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .tag.is-danger.is-light:not(body),html.theme--catppuccin-latte .content kbd.is-danger.is-light:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#feecf0;color:#e9113f}html.theme--catppuccin-latte .tag.is-normal:not(body),html.theme--catppuccin-latte .content kbd.is-normal:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--catppuccin-latte .tag.is-medium:not(body),html.theme--catppuccin-latte .content kbd.is-medium:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--catppuccin-latte .tag.is-large:not(body),html.theme--catppuccin-latte .content kbd.is-large:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--catppuccin-latte .tag:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-latte .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--catppuccin-latte .tag:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-latte .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--catppuccin-latte .tag:not(body) .icon:first-child:last-child,html.theme--catppuccin-latte .content kbd:not(body) .icon:first-child:last-child,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--catppuccin-latte .tag.is-delete:not(body),html.theme--catppuccin-latte .content kbd.is-delete:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--catppuccin-latte .tag.is-delete:not(body)::before,html.theme--catppuccin-latte .content kbd.is-delete:not(body)::before,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--catppuccin-latte .tag.is-delete:not(body)::after,html.theme--catppuccin-latte .content kbd.is-delete:not(body)::after,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-latte .tag.is-delete:not(body)::before,html.theme--catppuccin-latte .content kbd.is-delete:not(body)::before,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--catppuccin-latte .tag.is-delete:not(body)::after,html.theme--catppuccin-latte .content kbd.is-delete:not(body)::after,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--catppuccin-latte .tag.is-delete:not(body):hover,html.theme--catppuccin-latte .content kbd.is-delete:not(body):hover,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--catppuccin-latte .tag.is-delete:not(body):focus,html.theme--catppuccin-latte .content kbd.is-delete:not(body):focus,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#d6dbe5}html.theme--catppuccin-latte .tag.is-delete:not(body):active,html.theme--catppuccin-latte .content kbd.is-delete:not(body):active,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#c7cedb}html.theme--catppuccin-latte .tag.is-rounded:not(body),html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--catppuccin-latte .content kbd.is-rounded:not(body),html.theme--catppuccin-latte #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--catppuccin-latte a.tag:hover,html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--catppuccin-latte .title,html.theme--catppuccin-latte .subtitle{word-break:break-word}html.theme--catppuccin-latte .title em,html.theme--catppuccin-latte .title span,html.theme--catppuccin-latte .subtitle em,html.theme--catppuccin-latte .subtitle span{font-weight:inherit}html.theme--catppuccin-latte .title sub,html.theme--catppuccin-latte .subtitle sub{font-size:.75em}html.theme--catppuccin-latte .title sup,html.theme--catppuccin-latte .subtitle sup{font-size:.75em}html.theme--catppuccin-latte .title .tag,html.theme--catppuccin-latte .title .content kbd,html.theme--catppuccin-latte .content .title kbd,html.theme--catppuccin-latte .title .docstring>section>a.docs-sourcelink,html.theme--catppuccin-latte .subtitle .tag,html.theme--catppuccin-latte .subtitle .content kbd,html.theme--catppuccin-latte .content .subtitle kbd,html.theme--catppuccin-latte .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--catppuccin-latte .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--catppuccin-latte .title strong{color:inherit;font-weight:inherit}html.theme--catppuccin-latte .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--catppuccin-latte .title.is-1{font-size:3rem}html.theme--catppuccin-latte .title.is-2{font-size:2.5rem}html.theme--catppuccin-latte .title.is-3{font-size:2rem}html.theme--catppuccin-latte .title.is-4{font-size:1.5rem}html.theme--catppuccin-latte .title.is-5{font-size:1.25rem}html.theme--catppuccin-latte .title.is-6{font-size:1rem}html.theme--catppuccin-latte .title.is-7{font-size:.75rem}html.theme--catppuccin-latte .subtitle{color:#9ca0b0;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--catppuccin-latte .subtitle strong{color:#9ca0b0;font-weight:600}html.theme--catppuccin-latte .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--catppuccin-latte .subtitle.is-1{font-size:3rem}html.theme--catppuccin-latte .subtitle.is-2{font-size:2.5rem}html.theme--catppuccin-latte .subtitle.is-3{font-size:2rem}html.theme--catppuccin-latte .subtitle.is-4{font-size:1.5rem}html.theme--catppuccin-latte .subtitle.is-5{font-size:1.25rem}html.theme--catppuccin-latte .subtitle.is-6{font-size:1rem}html.theme--catppuccin-latte .subtitle.is-7{font-size:.75rem}html.theme--catppuccin-latte .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--catppuccin-latte .number{align-items:center;background-color:#e6e9ef;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--catppuccin-latte .select select,html.theme--catppuccin-latte .textarea,html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{background-color:#eff1f5;border-color:#acb0be;border-radius:.4em;color:#8c8fa1}html.theme--catppuccin-latte .select select::-moz-placeholder,html.theme--catppuccin-latte .textarea::-moz-placeholder,html.theme--catppuccin-latte .input::-moz-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--catppuccin-latte .select select::-webkit-input-placeholder,html.theme--catppuccin-latte .textarea::-webkit-input-placeholder,html.theme--catppuccin-latte .input::-webkit-input-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--catppuccin-latte .select select:-moz-placeholder,html.theme--catppuccin-latte .textarea:-moz-placeholder,html.theme--catppuccin-latte .input:-moz-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--catppuccin-latte .select select:-ms-input-placeholder,html.theme--catppuccin-latte .textarea:-ms-input-placeholder,html.theme--catppuccin-latte .input:-ms-input-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--catppuccin-latte .select select:hover,html.theme--catppuccin-latte .textarea:hover,html.theme--catppuccin-latte .input:hover,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:hover,html.theme--catppuccin-latte .select select.is-hovered,html.theme--catppuccin-latte .is-hovered.textarea,html.theme--catppuccin-latte .is-hovered.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#9ca0b0}html.theme--catppuccin-latte .select select:focus,html.theme--catppuccin-latte .textarea:focus,html.theme--catppuccin-latte .input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-latte .select select.is-focused,html.theme--catppuccin-latte .is-focused.textarea,html.theme--catppuccin-latte .is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .select select:active,html.theme--catppuccin-latte .textarea:active,html.theme--catppuccin-latte .input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-latte .select select.is-active,html.theme--catppuccin-latte .is-active.textarea,html.theme--catppuccin-latte .is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#1e66f5;box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .select select[disabled],html.theme--catppuccin-latte .textarea[disabled],html.theme--catppuccin-latte .input[disabled],html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--catppuccin-latte .select select,fieldset[disabled] html.theme--catppuccin-latte .textarea,fieldset[disabled] html.theme--catppuccin-latte .input,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{background-color:#9ca0b0;border-color:#e6e9ef;box-shadow:none;color:#616587}html.theme--catppuccin-latte .select select[disabled]::-moz-placeholder,html.theme--catppuccin-latte .textarea[disabled]::-moz-placeholder,html.theme--catppuccin-latte .input[disabled]::-moz-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .select select::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .textarea::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .input::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(97,101,135,0.3)}html.theme--catppuccin-latte .select select[disabled]::-webkit-input-placeholder,html.theme--catppuccin-latte .textarea[disabled]::-webkit-input-placeholder,html.theme--catppuccin-latte .input[disabled]::-webkit-input-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .input::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(97,101,135,0.3)}html.theme--catppuccin-latte .select select[disabled]:-moz-placeholder,html.theme--catppuccin-latte .textarea[disabled]:-moz-placeholder,html.theme--catppuccin-latte .input[disabled]:-moz-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .select select:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .textarea:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte .input:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(97,101,135,0.3)}html.theme--catppuccin-latte .select select[disabled]:-ms-input-placeholder,html.theme--catppuccin-latte .textarea[disabled]:-ms-input-placeholder,html.theme--catppuccin-latte .input[disabled]:-ms-input-placeholder,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .select select:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte .input:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(97,101,135,0.3)}html.theme--catppuccin-latte .textarea,html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--catppuccin-latte .textarea[readonly],html.theme--catppuccin-latte .input[readonly],html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--catppuccin-latte .is-white.textarea,html.theme--catppuccin-latte .is-white.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--catppuccin-latte .is-white.textarea:focus,html.theme--catppuccin-latte .is-white.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--catppuccin-latte .is-white.is-focused.textarea,html.theme--catppuccin-latte .is-white.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-white.textarea:active,html.theme--catppuccin-latte .is-white.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--catppuccin-latte .is-white.is-active.textarea,html.theme--catppuccin-latte .is-white.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-latte .is-black.textarea,html.theme--catppuccin-latte .is-black.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--catppuccin-latte .is-black.textarea:focus,html.theme--catppuccin-latte .is-black.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--catppuccin-latte .is-black.is-focused.textarea,html.theme--catppuccin-latte .is-black.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-black.textarea:active,html.theme--catppuccin-latte .is-black.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--catppuccin-latte .is-black.is-active.textarea,html.theme--catppuccin-latte .is-black.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-latte .is-light.textarea,html.theme--catppuccin-latte .is-light.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}html.theme--catppuccin-latte .is-light.textarea:focus,html.theme--catppuccin-latte .is-light.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--catppuccin-latte .is-light.is-focused.textarea,html.theme--catppuccin-latte .is-light.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-light.textarea:active,html.theme--catppuccin-latte .is-light.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--catppuccin-latte .is-light.is-active.textarea,html.theme--catppuccin-latte .is-light.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-latte .is-dark.textarea,html.theme--catppuccin-latte .content kbd.textarea,html.theme--catppuccin-latte .is-dark.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--catppuccin-latte .content kbd.input{border-color:#ccd0da}html.theme--catppuccin-latte .is-dark.textarea:focus,html.theme--catppuccin-latte .content kbd.textarea:focus,html.theme--catppuccin-latte .is-dark.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--catppuccin-latte .content kbd.input:focus,html.theme--catppuccin-latte .is-dark.is-focused.textarea,html.theme--catppuccin-latte .content kbd.is-focused.textarea,html.theme--catppuccin-latte .is-dark.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .content kbd.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-dark.textarea:active,html.theme--catppuccin-latte .content kbd.textarea:active,html.theme--catppuccin-latte .is-dark.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--catppuccin-latte .content kbd.input:active,html.theme--catppuccin-latte .is-dark.is-active.textarea,html.theme--catppuccin-latte .content kbd.is-active.textarea,html.theme--catppuccin-latte .is-dark.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-latte .content kbd.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(204,208,218,0.25)}html.theme--catppuccin-latte .is-primary.textarea,html.theme--catppuccin-latte .docstring>section>a.textarea.docs-sourcelink,html.theme--catppuccin-latte .is-primary.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--catppuccin-latte .docstring>section>a.input.docs-sourcelink{border-color:#1e66f5}html.theme--catppuccin-latte .is-primary.textarea:focus,html.theme--catppuccin-latte .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--catppuccin-latte .is-primary.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--catppuccin-latte .docstring>section>a.input.docs-sourcelink:focus,html.theme--catppuccin-latte .is-primary.is-focused.textarea,html.theme--catppuccin-latte .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--catppuccin-latte .is-primary.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--catppuccin-latte .is-primary.textarea:active,html.theme--catppuccin-latte .docstring>section>a.textarea.docs-sourcelink:active,html.theme--catppuccin-latte .is-primary.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--catppuccin-latte .docstring>section>a.input.docs-sourcelink:active,html.theme--catppuccin-latte .is-primary.is-active.textarea,html.theme--catppuccin-latte .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--catppuccin-latte .is-primary.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-latte .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .is-link.textarea,html.theme--catppuccin-latte .is-link.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#1e66f5}html.theme--catppuccin-latte .is-link.textarea:focus,html.theme--catppuccin-latte .is-link.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--catppuccin-latte .is-link.is-focused.textarea,html.theme--catppuccin-latte .is-link.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-link.textarea:active,html.theme--catppuccin-latte .is-link.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--catppuccin-latte .is-link.is-active.textarea,html.theme--catppuccin-latte .is-link.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .is-info.textarea,html.theme--catppuccin-latte .is-info.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#179299}html.theme--catppuccin-latte .is-info.textarea:focus,html.theme--catppuccin-latte .is-info.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--catppuccin-latte .is-info.is-focused.textarea,html.theme--catppuccin-latte .is-info.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-info.textarea:active,html.theme--catppuccin-latte .is-info.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--catppuccin-latte .is-info.is-active.textarea,html.theme--catppuccin-latte .is-info.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(23,146,153,0.25)}html.theme--catppuccin-latte .is-success.textarea,html.theme--catppuccin-latte .is-success.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#40a02b}html.theme--catppuccin-latte .is-success.textarea:focus,html.theme--catppuccin-latte .is-success.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--catppuccin-latte .is-success.is-focused.textarea,html.theme--catppuccin-latte .is-success.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-success.textarea:active,html.theme--catppuccin-latte .is-success.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--catppuccin-latte .is-success.is-active.textarea,html.theme--catppuccin-latte .is-success.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(64,160,43,0.25)}html.theme--catppuccin-latte .is-warning.textarea,html.theme--catppuccin-latte .is-warning.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#df8e1d}html.theme--catppuccin-latte .is-warning.textarea:focus,html.theme--catppuccin-latte .is-warning.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--catppuccin-latte .is-warning.is-focused.textarea,html.theme--catppuccin-latte .is-warning.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-warning.textarea:active,html.theme--catppuccin-latte .is-warning.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--catppuccin-latte .is-warning.is-active.textarea,html.theme--catppuccin-latte .is-warning.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(223,142,29,0.25)}html.theme--catppuccin-latte .is-danger.textarea,html.theme--catppuccin-latte .is-danger.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#d20f39}html.theme--catppuccin-latte .is-danger.textarea:focus,html.theme--catppuccin-latte .is-danger.input:focus,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--catppuccin-latte .is-danger.is-focused.textarea,html.theme--catppuccin-latte .is-danger.is-focused.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-latte .is-danger.textarea:active,html.theme--catppuccin-latte .is-danger.input:active,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--catppuccin-latte .is-danger.is-active.textarea,html.theme--catppuccin-latte .is-danger.is-active.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(210,15,57,0.25)}html.theme--catppuccin-latte .is-small.textarea,html.theme--catppuccin-latte .is-small.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--catppuccin-latte .is-medium.textarea,html.theme--catppuccin-latte .is-medium.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .is-large.textarea,html.theme--catppuccin-latte .is-large.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--catppuccin-latte .is-fullwidth.textarea,html.theme--catppuccin-latte .is-fullwidth.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--catppuccin-latte .is-inline.textarea,html.theme--catppuccin-latte .is-inline.input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--catppuccin-latte .input.is-rounded,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--catppuccin-latte .input.is-static,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--catppuccin-latte .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--catppuccin-latte .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--catppuccin-latte .textarea[rows]{height:initial}html.theme--catppuccin-latte .textarea.has-fixed-size{resize:none}html.theme--catppuccin-latte .radio,html.theme--catppuccin-latte .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--catppuccin-latte .radio input,html.theme--catppuccin-latte .checkbox input{cursor:pointer}html.theme--catppuccin-latte .radio:hover,html.theme--catppuccin-latte .checkbox:hover{color:#04a5e5}html.theme--catppuccin-latte .radio[disabled],html.theme--catppuccin-latte .checkbox[disabled],fieldset[disabled] html.theme--catppuccin-latte .radio,fieldset[disabled] html.theme--catppuccin-latte .checkbox,html.theme--catppuccin-latte .radio input[disabled],html.theme--catppuccin-latte .checkbox input[disabled]{color:#616587;cursor:not-allowed}html.theme--catppuccin-latte .radio+.radio{margin-left:.5em}html.theme--catppuccin-latte .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--catppuccin-latte .select:not(.is-multiple){height:2.5em}html.theme--catppuccin-latte .select:not(.is-multiple):not(.is-loading)::after{border-color:#1e66f5;right:1.125em;z-index:4}html.theme--catppuccin-latte .select.is-rounded select,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--catppuccin-latte .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--catppuccin-latte .select select::-ms-expand{display:none}html.theme--catppuccin-latte .select select[disabled]:hover,fieldset[disabled] html.theme--catppuccin-latte .select select:hover{border-color:#e6e9ef}html.theme--catppuccin-latte .select select:not([multiple]){padding-right:2.5em}html.theme--catppuccin-latte .select select[multiple]{height:auto;padding:0}html.theme--catppuccin-latte .select select[multiple] option{padding:0.5em 1em}html.theme--catppuccin-latte .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#04a5e5}html.theme--catppuccin-latte .select.is-white:not(:hover)::after{border-color:#fff}html.theme--catppuccin-latte .select.is-white select{border-color:#fff}html.theme--catppuccin-latte .select.is-white select:hover,html.theme--catppuccin-latte .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--catppuccin-latte .select.is-white select:focus,html.theme--catppuccin-latte .select.is-white select.is-focused,html.theme--catppuccin-latte .select.is-white select:active,html.theme--catppuccin-latte .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-latte .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--catppuccin-latte .select.is-black select{border-color:#0a0a0a}html.theme--catppuccin-latte .select.is-black select:hover,html.theme--catppuccin-latte .select.is-black select.is-hovered{border-color:#000}html.theme--catppuccin-latte .select.is-black select:focus,html.theme--catppuccin-latte .select.is-black select.is-focused,html.theme--catppuccin-latte .select.is-black select:active,html.theme--catppuccin-latte .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-latte .select.is-light:not(:hover)::after{border-color:#f5f5f5}html.theme--catppuccin-latte .select.is-light select{border-color:#f5f5f5}html.theme--catppuccin-latte .select.is-light select:hover,html.theme--catppuccin-latte .select.is-light select.is-hovered{border-color:#e8e8e8}html.theme--catppuccin-latte .select.is-light select:focus,html.theme--catppuccin-latte .select.is-light select.is-focused,html.theme--catppuccin-latte .select.is-light select:active,html.theme--catppuccin-latte .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-latte .select.is-dark:not(:hover)::after,html.theme--catppuccin-latte .content kbd.select:not(:hover)::after{border-color:#ccd0da}html.theme--catppuccin-latte .select.is-dark select,html.theme--catppuccin-latte .content kbd.select select{border-color:#ccd0da}html.theme--catppuccin-latte .select.is-dark select:hover,html.theme--catppuccin-latte .content kbd.select select:hover,html.theme--catppuccin-latte .select.is-dark select.is-hovered,html.theme--catppuccin-latte .content kbd.select select.is-hovered{border-color:#bdc2cf}html.theme--catppuccin-latte .select.is-dark select:focus,html.theme--catppuccin-latte .content kbd.select select:focus,html.theme--catppuccin-latte .select.is-dark select.is-focused,html.theme--catppuccin-latte .content kbd.select select.is-focused,html.theme--catppuccin-latte .select.is-dark select:active,html.theme--catppuccin-latte .content kbd.select select:active,html.theme--catppuccin-latte .select.is-dark select.is-active,html.theme--catppuccin-latte .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(204,208,218,0.25)}html.theme--catppuccin-latte .select.is-primary:not(:hover)::after,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#1e66f5}html.theme--catppuccin-latte .select.is-primary select,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select{border-color:#1e66f5}html.theme--catppuccin-latte .select.is-primary select:hover,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select:hover,html.theme--catppuccin-latte .select.is-primary select.is-hovered,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#0b57ef}html.theme--catppuccin-latte .select.is-primary select:focus,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select:focus,html.theme--catppuccin-latte .select.is-primary select.is-focused,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--catppuccin-latte .select.is-primary select:active,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select:active,html.theme--catppuccin-latte .select.is-primary select.is-active,html.theme--catppuccin-latte .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .select.is-link:not(:hover)::after{border-color:#1e66f5}html.theme--catppuccin-latte .select.is-link select{border-color:#1e66f5}html.theme--catppuccin-latte .select.is-link select:hover,html.theme--catppuccin-latte .select.is-link select.is-hovered{border-color:#0b57ef}html.theme--catppuccin-latte .select.is-link select:focus,html.theme--catppuccin-latte .select.is-link select.is-focused,html.theme--catppuccin-latte .select.is-link select:active,html.theme--catppuccin-latte .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(30,102,245,0.25)}html.theme--catppuccin-latte .select.is-info:not(:hover)::after{border-color:#179299}html.theme--catppuccin-latte .select.is-info select{border-color:#179299}html.theme--catppuccin-latte .select.is-info select:hover,html.theme--catppuccin-latte .select.is-info select.is-hovered{border-color:#147d83}html.theme--catppuccin-latte .select.is-info select:focus,html.theme--catppuccin-latte .select.is-info select.is-focused,html.theme--catppuccin-latte .select.is-info select:active,html.theme--catppuccin-latte .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(23,146,153,0.25)}html.theme--catppuccin-latte .select.is-success:not(:hover)::after{border-color:#40a02b}html.theme--catppuccin-latte .select.is-success select{border-color:#40a02b}html.theme--catppuccin-latte .select.is-success select:hover,html.theme--catppuccin-latte .select.is-success select.is-hovered{border-color:#388c26}html.theme--catppuccin-latte .select.is-success select:focus,html.theme--catppuccin-latte .select.is-success select.is-focused,html.theme--catppuccin-latte .select.is-success select:active,html.theme--catppuccin-latte .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(64,160,43,0.25)}html.theme--catppuccin-latte .select.is-warning:not(:hover)::after{border-color:#df8e1d}html.theme--catppuccin-latte .select.is-warning select{border-color:#df8e1d}html.theme--catppuccin-latte .select.is-warning select:hover,html.theme--catppuccin-latte .select.is-warning select.is-hovered{border-color:#c8801a}html.theme--catppuccin-latte .select.is-warning select:focus,html.theme--catppuccin-latte .select.is-warning select.is-focused,html.theme--catppuccin-latte .select.is-warning select:active,html.theme--catppuccin-latte .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(223,142,29,0.25)}html.theme--catppuccin-latte .select.is-danger:not(:hover)::after{border-color:#d20f39}html.theme--catppuccin-latte .select.is-danger select{border-color:#d20f39}html.theme--catppuccin-latte .select.is-danger select:hover,html.theme--catppuccin-latte .select.is-danger select.is-hovered{border-color:#ba0d33}html.theme--catppuccin-latte .select.is-danger select:focus,html.theme--catppuccin-latte .select.is-danger select.is-focused,html.theme--catppuccin-latte .select.is-danger select:active,html.theme--catppuccin-latte .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(210,15,57,0.25)}html.theme--catppuccin-latte .select.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--catppuccin-latte .select.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .select.is-large{font-size:1.5rem}html.theme--catppuccin-latte .select.is-disabled::after{border-color:#616587 !important;opacity:0.5}html.theme--catppuccin-latte .select.is-fullwidth{width:100%}html.theme--catppuccin-latte .select.is-fullwidth select{width:100%}html.theme--catppuccin-latte .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--catppuccin-latte .select.is-loading.is-small:after,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-latte .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-latte .select.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-latte .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--catppuccin-latte .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .file.is-white:hover .file-cta,html.theme--catppuccin-latte .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .file.is-white:focus .file-cta,html.theme--catppuccin-latte .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--catppuccin-latte .file.is-white:active .file-cta,html.theme--catppuccin-latte .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-latte .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-black:hover .file-cta,html.theme--catppuccin-latte .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-black:focus .file-cta,html.theme--catppuccin-latte .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--catppuccin-latte .file.is-black:active .file-cta,html.theme--catppuccin-latte .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-light:hover .file-cta,html.theme--catppuccin-latte .file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-light:focus .file-cta,html.theme--catppuccin-latte .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-light:active .file-cta,html.theme--catppuccin-latte .file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-dark .file-cta,html.theme--catppuccin-latte .content kbd.file .file-cta{background-color:#ccd0da;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-dark:hover .file-cta,html.theme--catppuccin-latte .content kbd.file:hover .file-cta,html.theme--catppuccin-latte .file.is-dark.is-hovered .file-cta,html.theme--catppuccin-latte .content kbd.file.is-hovered .file-cta{background-color:#c5c9d5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-dark:focus .file-cta,html.theme--catppuccin-latte .content kbd.file:focus .file-cta,html.theme--catppuccin-latte .file.is-dark.is-focused .file-cta,html.theme--catppuccin-latte .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(204,208,218,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-dark:active .file-cta,html.theme--catppuccin-latte .content kbd.file:active .file-cta,html.theme--catppuccin-latte .file.is-dark.is-active .file-cta,html.theme--catppuccin-latte .content kbd.file.is-active .file-cta{background-color:#bdc2cf;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .file.is-primary .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#1e66f5;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-primary:hover .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--catppuccin-latte .file.is-primary.is-hovered .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#125ef4;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-primary:focus .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--catppuccin-latte .file.is-primary.is-focused .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(30,102,245,0.25);color:#fff}html.theme--catppuccin-latte .file.is-primary:active .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--catppuccin-latte .file.is-primary.is-active .file-cta,html.theme--catppuccin-latte .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#0b57ef;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-link .file-cta{background-color:#1e66f5;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-link:hover .file-cta,html.theme--catppuccin-latte .file.is-link.is-hovered .file-cta{background-color:#125ef4;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-link:focus .file-cta,html.theme--catppuccin-latte .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(30,102,245,0.25);color:#fff}html.theme--catppuccin-latte .file.is-link:active .file-cta,html.theme--catppuccin-latte .file.is-link.is-active .file-cta{background-color:#0b57ef;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-info .file-cta{background-color:#179299;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-info:hover .file-cta,html.theme--catppuccin-latte .file.is-info.is-hovered .file-cta{background-color:#15878e;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-info:focus .file-cta,html.theme--catppuccin-latte .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(23,146,153,0.25);color:#fff}html.theme--catppuccin-latte .file.is-info:active .file-cta,html.theme--catppuccin-latte .file.is-info.is-active .file-cta{background-color:#147d83;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-success .file-cta{background-color:#40a02b;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-success:hover .file-cta,html.theme--catppuccin-latte .file.is-success.is-hovered .file-cta{background-color:#3c9628;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-success:focus .file-cta,html.theme--catppuccin-latte .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(64,160,43,0.25);color:#fff}html.theme--catppuccin-latte .file.is-success:active .file-cta,html.theme--catppuccin-latte .file.is-success.is-active .file-cta{background-color:#388c26;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-warning .file-cta{background-color:#df8e1d;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-warning:hover .file-cta,html.theme--catppuccin-latte .file.is-warning.is-hovered .file-cta{background-color:#d4871c;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-warning:focus .file-cta,html.theme--catppuccin-latte .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(223,142,29,0.25);color:#fff}html.theme--catppuccin-latte .file.is-warning:active .file-cta,html.theme--catppuccin-latte .file.is-warning.is-active .file-cta{background-color:#c8801a;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-danger .file-cta{background-color:#d20f39;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-danger:hover .file-cta,html.theme--catppuccin-latte .file.is-danger.is-hovered .file-cta{background-color:#c60e36;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-danger:focus .file-cta,html.theme--catppuccin-latte .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(210,15,57,0.25);color:#fff}html.theme--catppuccin-latte .file.is-danger:active .file-cta,html.theme--catppuccin-latte .file.is-danger.is-active .file-cta{background-color:#ba0d33;border-color:transparent;color:#fff}html.theme--catppuccin-latte .file.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--catppuccin-latte .file.is-normal{font-size:1rem}html.theme--catppuccin-latte .file.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .file.is-medium .file-icon .fa{font-size:21px}html.theme--catppuccin-latte .file.is-large{font-size:1.5rem}html.theme--catppuccin-latte .file.is-large .file-icon .fa{font-size:28px}html.theme--catppuccin-latte .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-latte .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-latte .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--catppuccin-latte .file.has-name.is-empty .file-name{display:none}html.theme--catppuccin-latte .file.is-boxed .file-label{flex-direction:column}html.theme--catppuccin-latte .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--catppuccin-latte .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--catppuccin-latte .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--catppuccin-latte .file.is-boxed .file-icon .fa{font-size:21px}html.theme--catppuccin-latte .file.is-boxed.is-small .file-icon .fa,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--catppuccin-latte .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--catppuccin-latte .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--catppuccin-latte .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--catppuccin-latte .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--catppuccin-latte .file.is-centered{justify-content:center}html.theme--catppuccin-latte .file.is-fullwidth .file-label{width:100%}html.theme--catppuccin-latte .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--catppuccin-latte .file.is-right{justify-content:flex-end}html.theme--catppuccin-latte .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--catppuccin-latte .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--catppuccin-latte .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--catppuccin-latte .file-label:hover .file-cta{background-color:#c5c9d5;color:#41445a}html.theme--catppuccin-latte .file-label:hover .file-name{border-color:#a5a9b8}html.theme--catppuccin-latte .file-label:active .file-cta{background-color:#bdc2cf;color:#41445a}html.theme--catppuccin-latte .file-label:active .file-name{border-color:#9ea2b3}html.theme--catppuccin-latte .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--catppuccin-latte .file-cta,html.theme--catppuccin-latte .file-name{border-color:#acb0be;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--catppuccin-latte .file-cta{background-color:#ccd0da;color:#4c4f69}html.theme--catppuccin-latte .file-name{border-color:#acb0be;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--catppuccin-latte .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--catppuccin-latte .file-icon .fa{font-size:14px}html.theme--catppuccin-latte .label{color:#41445a;display:block;font-size:1rem;font-weight:700}html.theme--catppuccin-latte .label:not(:last-child){margin-bottom:0.5em}html.theme--catppuccin-latte .label.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--catppuccin-latte .label.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .label.is-large{font-size:1.5rem}html.theme--catppuccin-latte .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--catppuccin-latte .help.is-white{color:#fff}html.theme--catppuccin-latte .help.is-black{color:#0a0a0a}html.theme--catppuccin-latte .help.is-light{color:#f5f5f5}html.theme--catppuccin-latte .help.is-dark,html.theme--catppuccin-latte .content kbd.help{color:#ccd0da}html.theme--catppuccin-latte .help.is-primary,html.theme--catppuccin-latte .docstring>section>a.help.docs-sourcelink{color:#1e66f5}html.theme--catppuccin-latte .help.is-link{color:#1e66f5}html.theme--catppuccin-latte .help.is-info{color:#179299}html.theme--catppuccin-latte .help.is-success{color:#40a02b}html.theme--catppuccin-latte .help.is-warning{color:#df8e1d}html.theme--catppuccin-latte .help.is-danger{color:#d20f39}html.theme--catppuccin-latte .field:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-latte .field.has-addons{display:flex;justify-content:flex-start}html.theme--catppuccin-latte .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--catppuccin-latte .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--catppuccin-latte .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--catppuccin-latte .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--catppuccin-latte .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--catppuccin-latte .field.has-addons .control:first-child:not(:only-child) .button,html.theme--catppuccin-latte .field.has-addons .control:first-child:not(:only-child) .input,html.theme--catppuccin-latte .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-latte .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-latte .field.has-addons .control:last-child:not(:only-child) .button,html.theme--catppuccin-latte .field.has-addons .control:last-child:not(:only-child) .input,html.theme--catppuccin-latte .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-latte .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):focus,html.theme--catppuccin-latte .field.has-addons .control .button.is-focused:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):active,html.theme--catppuccin-latte .field.has-addons .control .button.is-active:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):focus,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-latte .field.has-addons .control .input.is-focused:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):active,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--catppuccin-latte .field.has-addons .control .input.is-active:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):focus,html.theme--catppuccin-latte .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):active,html.theme--catppuccin-latte .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--catppuccin-latte .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .button:not([disabled]):active:hover,html.theme--catppuccin-latte .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-latte .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .input:not([disabled]):active:hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-latte .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-latte #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--catppuccin-latte .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--catppuccin-latte .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--catppuccin-latte .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--catppuccin-latte .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .field.has-addons.has-addons-centered{justify-content:center}html.theme--catppuccin-latte .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--catppuccin-latte .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--catppuccin-latte .field.is-grouped{display:flex;justify-content:flex-start}html.theme--catppuccin-latte .field.is-grouped>.control{flex-shrink:0}html.theme--catppuccin-latte .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-latte .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--catppuccin-latte .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--catppuccin-latte .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .field.is-horizontal{display:flex}}html.theme--catppuccin-latte .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-latte .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--catppuccin-latte .field-label.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--catppuccin-latte .field-label.is-normal{padding-top:0.375em}html.theme--catppuccin-latte .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--catppuccin-latte .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--catppuccin-latte .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--catppuccin-latte .field-body .field{margin-bottom:0}html.theme--catppuccin-latte .field-body>.field{flex-shrink:1}html.theme--catppuccin-latte .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--catppuccin-latte .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-latte .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--catppuccin-latte .control.has-icons-left .input:focus~.icon,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--catppuccin-latte .control.has-icons-left .select:focus~.icon,html.theme--catppuccin-latte .control.has-icons-right .input:focus~.icon,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--catppuccin-latte .control.has-icons-right .select:focus~.icon{color:#ccd0da}html.theme--catppuccin-latte .control.has-icons-left .input.is-small~.icon,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--catppuccin-latte .control.has-icons-left .select.is-small~.icon,html.theme--catppuccin-latte .control.has-icons-right .input.is-small~.icon,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--catppuccin-latte .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--catppuccin-latte .control.has-icons-left .input.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-left .select.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-right .input.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--catppuccin-latte .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--catppuccin-latte .control.has-icons-left .input.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-left .select.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-right .input.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--catppuccin-latte .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--catppuccin-latte .control.has-icons-left .icon,html.theme--catppuccin-latte .control.has-icons-right .icon{color:#acb0be;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--catppuccin-latte .control.has-icons-left .input,html.theme--catppuccin-latte .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--catppuccin-latte .control.has-icons-left .select select{padding-left:2.5em}html.theme--catppuccin-latte .control.has-icons-left .icon.is-left{left:0}html.theme--catppuccin-latte .control.has-icons-right .input,html.theme--catppuccin-latte .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--catppuccin-latte .control.has-icons-right .select select{padding-right:2.5em}html.theme--catppuccin-latte .control.has-icons-right .icon.is-right{right:0}html.theme--catppuccin-latte .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--catppuccin-latte .control.is-loading.is-small:after,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-latte .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-latte .control.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-latte .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--catppuccin-latte .breadcrumb a{align-items:center;color:#1e66f5;display:flex;justify-content:center;padding:0 .75em}html.theme--catppuccin-latte .breadcrumb a:hover{color:#04a5e5}html.theme--catppuccin-latte .breadcrumb li{align-items:center;display:flex}html.theme--catppuccin-latte .breadcrumb li:first-child a{padding-left:0}html.theme--catppuccin-latte .breadcrumb li.is-active a{color:#41445a;cursor:default;pointer-events:none}html.theme--catppuccin-latte .breadcrumb li+li::before{color:#9ca0b0;content:"\0002f"}html.theme--catppuccin-latte .breadcrumb ul,html.theme--catppuccin-latte .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-latte .breadcrumb .icon:first-child{margin-right:.5em}html.theme--catppuccin-latte .breadcrumb .icon:last-child{margin-left:.5em}html.theme--catppuccin-latte .breadcrumb.is-centered ol,html.theme--catppuccin-latte .breadcrumb.is-centered ul{justify-content:center}html.theme--catppuccin-latte .breadcrumb.is-right ol,html.theme--catppuccin-latte .breadcrumb.is-right ul{justify-content:flex-end}html.theme--catppuccin-latte .breadcrumb.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--catppuccin-latte .breadcrumb.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .breadcrumb.is-large{font-size:1.5rem}html.theme--catppuccin-latte .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--catppuccin-latte .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--catppuccin-latte .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--catppuccin-latte .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--catppuccin-latte .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#4c4f69;max-width:100%;position:relative}html.theme--catppuccin-latte .card-footer:first-child,html.theme--catppuccin-latte .card-content:first-child,html.theme--catppuccin-latte .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-latte .card-footer:last-child,html.theme--catppuccin-latte .card-content:last-child,html.theme--catppuccin-latte .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-latte .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--catppuccin-latte .card-header-title{align-items:center;color:#41445a;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--catppuccin-latte .card-header-title.is-centered{justify-content:center}html.theme--catppuccin-latte .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--catppuccin-latte .card-image{display:block;position:relative}html.theme--catppuccin-latte .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-latte .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-latte .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--catppuccin-latte .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--catppuccin-latte .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--catppuccin-latte .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--catppuccin-latte .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-latte .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--catppuccin-latte .dropdown.is-active .dropdown-menu,html.theme--catppuccin-latte .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--catppuccin-latte .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--catppuccin-latte .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--catppuccin-latte .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--catppuccin-latte .dropdown-content{background-color:#e6e9ef;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--catppuccin-latte .dropdown-item{color:#4c4f69;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--catppuccin-latte a.dropdown-item,html.theme--catppuccin-latte button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--catppuccin-latte a.dropdown-item:hover,html.theme--catppuccin-latte button.dropdown-item:hover{background-color:#e6e9ef;color:#0a0a0a}html.theme--catppuccin-latte a.dropdown-item.is-active,html.theme--catppuccin-latte button.dropdown-item.is-active{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--catppuccin-latte .level{align-items:center;justify-content:space-between}html.theme--catppuccin-latte .level code{border-radius:.4em}html.theme--catppuccin-latte .level img{display:inline-block;vertical-align:top}html.theme--catppuccin-latte .level.is-mobile{display:flex}html.theme--catppuccin-latte .level.is-mobile .level-left,html.theme--catppuccin-latte .level.is-mobile .level-right{display:flex}html.theme--catppuccin-latte .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--catppuccin-latte .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-latte .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .level{display:flex}html.theme--catppuccin-latte .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--catppuccin-latte .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--catppuccin-latte .level-item .title,html.theme--catppuccin-latte .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--catppuccin-latte .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--catppuccin-latte .level-left,html.theme--catppuccin-latte .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .level-left .level-item.is-flexible,html.theme--catppuccin-latte .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .level-left .level-item:not(:last-child),html.theme--catppuccin-latte .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-latte .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--catppuccin-latte .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .level-left{display:flex}}html.theme--catppuccin-latte .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .level-right{display:flex}}html.theme--catppuccin-latte .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--catppuccin-latte .media .content:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-latte .media .media{border-top:1px solid rgba(172,176,190,0.5);display:flex;padding-top:.75rem}html.theme--catppuccin-latte .media .media .content:not(:last-child),html.theme--catppuccin-latte .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--catppuccin-latte .media .media .media{padding-top:.5rem}html.theme--catppuccin-latte .media .media .media+.media{margin-top:.5rem}html.theme--catppuccin-latte .media+.media{border-top:1px solid rgba(172,176,190,0.5);margin-top:1rem;padding-top:1rem}html.theme--catppuccin-latte .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--catppuccin-latte .media-left,html.theme--catppuccin-latte .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .media-left{margin-right:1rem}html.theme--catppuccin-latte .media-right{margin-left:1rem}html.theme--catppuccin-latte .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-latte .media-content{overflow-x:auto}}html.theme--catppuccin-latte .menu{font-size:1rem}html.theme--catppuccin-latte .menu.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--catppuccin-latte .menu.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .menu.is-large{font-size:1.5rem}html.theme--catppuccin-latte .menu-list{line-height:1.25}html.theme--catppuccin-latte .menu-list a{border-radius:3px;color:#4c4f69;display:block;padding:0.5em 0.75em}html.theme--catppuccin-latte .menu-list a:hover{background-color:#e6e9ef;color:#41445a}html.theme--catppuccin-latte .menu-list a.is-active{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .menu-list li ul{border-left:1px solid #acb0be;margin:.75em;padding-left:.75em}html.theme--catppuccin-latte .menu-label{color:#616587;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--catppuccin-latte .menu-label:not(:first-child){margin-top:1em}html.theme--catppuccin-latte .menu-label:not(:last-child){margin-bottom:1em}html.theme--catppuccin-latte .message{background-color:#e6e9ef;border-radius:.4em;font-size:1rem}html.theme--catppuccin-latte .message strong{color:currentColor}html.theme--catppuccin-latte .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-latte .message.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--catppuccin-latte .message.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .message.is-large{font-size:1.5rem}html.theme--catppuccin-latte .message.is-white{background-color:#fff}html.theme--catppuccin-latte .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .message.is-white .message-body{border-color:#fff}html.theme--catppuccin-latte .message.is-black{background-color:#fafafa}html.theme--catppuccin-latte .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .message.is-black .message-body{border-color:#0a0a0a}html.theme--catppuccin-latte .message.is-light{background-color:#fafafa}html.theme--catppuccin-latte .message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .message.is-light .message-body{border-color:#f5f5f5}html.theme--catppuccin-latte .message.is-dark,html.theme--catppuccin-latte .content kbd.message{background-color:#f9fafb}html.theme--catppuccin-latte .message.is-dark .message-header,html.theme--catppuccin-latte .content kbd.message .message-header{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .message.is-dark .message-body,html.theme--catppuccin-latte .content kbd.message .message-body{border-color:#ccd0da}html.theme--catppuccin-latte .message.is-primary,html.theme--catppuccin-latte .docstring>section>a.message.docs-sourcelink{background-color:#ebf2fe}html.theme--catppuccin-latte .message.is-primary .message-header,html.theme--catppuccin-latte .docstring>section>a.message.docs-sourcelink .message-header{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .message.is-primary .message-body,html.theme--catppuccin-latte .docstring>section>a.message.docs-sourcelink .message-body{border-color:#1e66f5;color:#0a52e1}html.theme--catppuccin-latte .message.is-link{background-color:#ebf2fe}html.theme--catppuccin-latte .message.is-link .message-header{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .message.is-link .message-body{border-color:#1e66f5;color:#0a52e1}html.theme--catppuccin-latte .message.is-info{background-color:#edfcfc}html.theme--catppuccin-latte .message.is-info .message-header{background-color:#179299;color:#fff}html.theme--catppuccin-latte .message.is-info .message-body{border-color:#179299;color:#1cb2ba}html.theme--catppuccin-latte .message.is-success{background-color:#f1fbef}html.theme--catppuccin-latte .message.is-success .message-header{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .message.is-success .message-body{border-color:#40a02b;color:#40a12b}html.theme--catppuccin-latte .message.is-warning{background-color:#fdf6ed}html.theme--catppuccin-latte .message.is-warning .message-header{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .message.is-warning .message-body{border-color:#df8e1d;color:#9e6515}html.theme--catppuccin-latte .message.is-danger{background-color:#feecf0}html.theme--catppuccin-latte .message.is-danger .message-header{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .message.is-danger .message-body{border-color:#d20f39;color:#e9113f}html.theme--catppuccin-latte .message-header{align-items:center;background-color:#4c4f69;border-radius:.4em .4em 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--catppuccin-latte .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--catppuccin-latte .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--catppuccin-latte .message-body{border-color:#acb0be;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#4c4f69;padding:1.25em 1.5em}html.theme--catppuccin-latte .message-body code,html.theme--catppuccin-latte .message-body pre{background-color:#fff}html.theme--catppuccin-latte .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--catppuccin-latte .modal.is-active{display:flex}html.theme--catppuccin-latte .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--catppuccin-latte .modal-content,html.theme--catppuccin-latte .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--catppuccin-latte .modal-content,html.theme--catppuccin-latte .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--catppuccin-latte .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--catppuccin-latte .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--catppuccin-latte .modal-card-head,html.theme--catppuccin-latte .modal-card-foot{align-items:center;background-color:#e6e9ef;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--catppuccin-latte .modal-card-head{border-bottom:1px solid #acb0be;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--catppuccin-latte .modal-card-title{color:#4c4f69;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--catppuccin-latte .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #acb0be}html.theme--catppuccin-latte .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--catppuccin-latte .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#eff1f5;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--catppuccin-latte .navbar{background-color:#1e66f5;min-height:4rem;position:relative;z-index:30}html.theme--catppuccin-latte .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-white .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-white .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-latte .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--catppuccin-latte .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-black .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-black .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--catppuccin-latte .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--catppuccin-latte .navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-light .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-light .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-latte .navbar.is-dark,html.theme--catppuccin-latte .content kbd.navbar{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-brand>.navbar-item,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#bdc2cf;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--catppuccin-latte .content kbd.navbar .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-burger,html.theme--catppuccin-latte .content kbd.navbar .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-dark .navbar-start>.navbar-item,html.theme--catppuccin-latte .content kbd.navbar .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-dark .navbar-end>.navbar-item,html.theme--catppuccin-latte .content kbd.navbar .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#bdc2cf;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-start .navbar-link::after,html.theme--catppuccin-latte .content kbd.navbar .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-dark .navbar-end .navbar-link::after,html.theme--catppuccin-latte .content kbd.navbar .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-latte .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#bdc2cf;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#ccd0da;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-latte .navbar.is-primary,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-brand>.navbar-item,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-burger,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-primary .navbar-start>.navbar-item,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-primary .navbar-end>.navbar-item,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-start .navbar-link::after,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-primary .navbar-end .navbar-link::after,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#1e66f5;color:#fff}}html.theme--catppuccin-latte .navbar.is-link{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-link .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-link .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#1e66f5;color:#fff}}html.theme--catppuccin-latte .navbar.is-info{background-color:#179299;color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#147d83;color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-info .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-info .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#147d83;color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#147d83;color:#fff}html.theme--catppuccin-latte .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#179299;color:#fff}}html.theme--catppuccin-latte .navbar.is-success{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#388c26;color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-success .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-success .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#388c26;color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#388c26;color:#fff}html.theme--catppuccin-latte .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#40a02b;color:#fff}}html.theme--catppuccin-latte .navbar.is-warning{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#c8801a;color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-warning .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-warning .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#c8801a;color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-warning .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#c8801a;color:#fff}html.theme--catppuccin-latte .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#df8e1d;color:#fff}}html.theme--catppuccin-latte .navbar.is-danger{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-brand>.navbar-item,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#ba0d33;color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar.is-danger .navbar-start>.navbar-item,html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link,html.theme--catppuccin-latte .navbar.is-danger .navbar-end>.navbar-item,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--catppuccin-latte .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#ba0d33;color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-start .navbar-link::after,html.theme--catppuccin-latte .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ba0d33;color:#fff}html.theme--catppuccin-latte .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#d20f39;color:#fff}}html.theme--catppuccin-latte .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--catppuccin-latte .navbar.has-shadow{box-shadow:0 2px 0 0 #e6e9ef}html.theme--catppuccin-latte .navbar.is-fixed-bottom,html.theme--catppuccin-latte .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-latte .navbar.is-fixed-bottom{bottom:0}html.theme--catppuccin-latte .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #e6e9ef}html.theme--catppuccin-latte .navbar.is-fixed-top{top:0}html.theme--catppuccin-latte html.has-navbar-fixed-top,html.theme--catppuccin-latte body.has-navbar-fixed-top{padding-top:4rem}html.theme--catppuccin-latte html.has-navbar-fixed-bottom,html.theme--catppuccin-latte body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--catppuccin-latte .navbar-brand,html.theme--catppuccin-latte .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--catppuccin-latte .navbar-brand a.navbar-item:focus,html.theme--catppuccin-latte .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--catppuccin-latte .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--catppuccin-latte .navbar-burger{color:#4c4f69;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--catppuccin-latte .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--catppuccin-latte .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--catppuccin-latte .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--catppuccin-latte .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--catppuccin-latte .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--catppuccin-latte .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--catppuccin-latte .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--catppuccin-latte .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--catppuccin-latte .navbar-menu{display:none}html.theme--catppuccin-latte .navbar-item,html.theme--catppuccin-latte .navbar-link{color:#4c4f69;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--catppuccin-latte .navbar-item .icon:only-child,html.theme--catppuccin-latte .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--catppuccin-latte a.navbar-item,html.theme--catppuccin-latte .navbar-link{cursor:pointer}html.theme--catppuccin-latte a.navbar-item:focus,html.theme--catppuccin-latte a.navbar-item:focus-within,html.theme--catppuccin-latte a.navbar-item:hover,html.theme--catppuccin-latte a.navbar-item.is-active,html.theme--catppuccin-latte .navbar-link:focus,html.theme--catppuccin-latte .navbar-link:focus-within,html.theme--catppuccin-latte .navbar-link:hover,html.theme--catppuccin-latte .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#1e66f5}html.theme--catppuccin-latte .navbar-item{flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .navbar-item img{max-height:1.75rem}html.theme--catppuccin-latte .navbar-item.has-dropdown{padding:0}html.theme--catppuccin-latte .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--catppuccin-latte .navbar-item.is-tab:focus,html.theme--catppuccin-latte .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#1e66f5}html.theme--catppuccin-latte .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#1e66f5;border-bottom-style:solid;border-bottom-width:3px;color:#1e66f5;padding-bottom:calc(0.5rem - 3px)}html.theme--catppuccin-latte .navbar-content{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--catppuccin-latte .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--catppuccin-latte .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--catppuccin-latte .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--catppuccin-latte .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .navbar>.container{display:block}html.theme--catppuccin-latte .navbar-brand .navbar-item,html.theme--catppuccin-latte .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--catppuccin-latte .navbar-link::after{display:none}html.theme--catppuccin-latte .navbar-menu{background-color:#1e66f5;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--catppuccin-latte .navbar-menu.is-active{display:block}html.theme--catppuccin-latte .navbar.is-fixed-bottom-touch,html.theme--catppuccin-latte .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-latte .navbar.is-fixed-bottom-touch{bottom:0}html.theme--catppuccin-latte .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-latte .navbar.is-fixed-top-touch{top:0}html.theme--catppuccin-latte .navbar.is-fixed-top .navbar-menu,html.theme--catppuccin-latte .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--catppuccin-latte html.has-navbar-fixed-top-touch,html.theme--catppuccin-latte body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--catppuccin-latte html.has-navbar-fixed-bottom-touch,html.theme--catppuccin-latte body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .navbar,html.theme--catppuccin-latte .navbar-menu,html.theme--catppuccin-latte .navbar-start,html.theme--catppuccin-latte .navbar-end{align-items:stretch;display:flex}html.theme--catppuccin-latte .navbar{min-height:4rem}html.theme--catppuccin-latte .navbar.is-spaced{padding:1rem 2rem}html.theme--catppuccin-latte .navbar.is-spaced .navbar-start,html.theme--catppuccin-latte .navbar.is-spaced .navbar-end{align-items:center}html.theme--catppuccin-latte .navbar.is-spaced a.navbar-item,html.theme--catppuccin-latte .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--catppuccin-latte .navbar.is-transparent a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-transparent a.navbar-item:hover,html.theme--catppuccin-latte .navbar.is-transparent a.navbar-item.is-active,html.theme--catppuccin-latte .navbar.is-transparent .navbar-link:focus,html.theme--catppuccin-latte .navbar.is-transparent .navbar-link:hover,html.theme--catppuccin-latte .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--catppuccin-latte .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-latte .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--catppuccin-latte .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--catppuccin-latte .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--catppuccin-latte .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-latte .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#8c8fa1}html.theme--catppuccin-latte .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1e66f5}html.theme--catppuccin-latte .navbar-burger{display:none}html.theme--catppuccin-latte .navbar-item,html.theme--catppuccin-latte .navbar-link{align-items:center;display:flex}html.theme--catppuccin-latte .navbar-item.has-dropdown{align-items:stretch}html.theme--catppuccin-latte .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--catppuccin-latte .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--catppuccin-latte .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--catppuccin-latte .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-latte .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-latte .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-latte .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--catppuccin-latte .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--catppuccin-latte .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--catppuccin-latte .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--catppuccin-latte .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--catppuccin-latte .navbar-dropdown{background-color:#1e66f5;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--catppuccin-latte .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--catppuccin-latte .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--catppuccin-latte .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-latte .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#8c8fa1}html.theme--catppuccin-latte .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1e66f5}.navbar.is-spaced html.theme--catppuccin-latte .navbar-dropdown,html.theme--catppuccin-latte .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--catppuccin-latte .navbar-dropdown.is-right{left:auto;right:0}html.theme--catppuccin-latte .navbar-divider{display:block}html.theme--catppuccin-latte .navbar>.container .navbar-brand,html.theme--catppuccin-latte .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--catppuccin-latte .navbar>.container .navbar-menu,html.theme--catppuccin-latte .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--catppuccin-latte .navbar.is-fixed-bottom-desktop,html.theme--catppuccin-latte .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-latte .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--catppuccin-latte .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-latte .navbar.is-fixed-top-desktop{top:0}html.theme--catppuccin-latte html.has-navbar-fixed-top-desktop,html.theme--catppuccin-latte body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--catppuccin-latte html.has-navbar-fixed-bottom-desktop,html.theme--catppuccin-latte body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--catppuccin-latte html.has-spaced-navbar-fixed-top,html.theme--catppuccin-latte body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--catppuccin-latte html.has-spaced-navbar-fixed-bottom,html.theme--catppuccin-latte body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--catppuccin-latte a.navbar-item.is-active,html.theme--catppuccin-latte .navbar-link.is-active{color:#1e66f5}html.theme--catppuccin-latte a.navbar-item.is-active:not(:focus):not(:hover),html.theme--catppuccin-latte .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--catppuccin-latte .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-latte .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-latte .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--catppuccin-latte .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--catppuccin-latte .pagination{font-size:1rem;margin:-.25rem}html.theme--catppuccin-latte .pagination.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--catppuccin-latte .pagination.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .pagination.is-large{font-size:1.5rem}html.theme--catppuccin-latte .pagination.is-rounded .pagination-previous,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--catppuccin-latte .pagination.is-rounded .pagination-next,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--catppuccin-latte .pagination.is-rounded .pagination-link,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--catppuccin-latte .pagination,html.theme--catppuccin-latte .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link{border-color:#acb0be;color:#1e66f5;min-width:2.5em}html.theme--catppuccin-latte .pagination-previous:hover,html.theme--catppuccin-latte .pagination-next:hover,html.theme--catppuccin-latte .pagination-link:hover{border-color:#9ca0b0;color:#04a5e5}html.theme--catppuccin-latte .pagination-previous:focus,html.theme--catppuccin-latte .pagination-next:focus,html.theme--catppuccin-latte .pagination-link:focus{border-color:#9ca0b0}html.theme--catppuccin-latte .pagination-previous:active,html.theme--catppuccin-latte .pagination-next:active,html.theme--catppuccin-latte .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--catppuccin-latte .pagination-previous[disabled],html.theme--catppuccin-latte .pagination-previous.is-disabled,html.theme--catppuccin-latte .pagination-next[disabled],html.theme--catppuccin-latte .pagination-next.is-disabled,html.theme--catppuccin-latte .pagination-link[disabled],html.theme--catppuccin-latte .pagination-link.is-disabled{background-color:#acb0be;border-color:#acb0be;box-shadow:none;color:#616587;opacity:0.5}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--catppuccin-latte .pagination-link.is-current{background-color:#1e66f5;border-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .pagination-ellipsis{color:#9ca0b0;pointer-events:none}html.theme--catppuccin-latte .pagination-list{flex-wrap:wrap}html.theme--catppuccin-latte .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--catppuccin-latte .pagination{flex-wrap:wrap}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--catppuccin-latte .pagination-previous{order:2}html.theme--catppuccin-latte .pagination-next{order:3}html.theme--catppuccin-latte .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--catppuccin-latte .pagination.is-centered .pagination-previous{order:1}html.theme--catppuccin-latte .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--catppuccin-latte .pagination.is-centered .pagination-next{order:3}html.theme--catppuccin-latte .pagination.is-right .pagination-previous{order:1}html.theme--catppuccin-latte .pagination.is-right .pagination-next{order:2}html.theme--catppuccin-latte .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--catppuccin-latte .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--catppuccin-latte .panel:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-latte .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--catppuccin-latte .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--catppuccin-latte .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--catppuccin-latte .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--catppuccin-latte .panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}html.theme--catppuccin-latte .panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}html.theme--catppuccin-latte .panel.is-dark .panel-heading,html.theme--catppuccin-latte .content kbd.panel .panel-heading{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .panel.is-dark .panel-tabs a.is-active,html.theme--catppuccin-latte .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#ccd0da}html.theme--catppuccin-latte .panel.is-dark .panel-block.is-active .panel-icon,html.theme--catppuccin-latte .content kbd.panel .panel-block.is-active .panel-icon{color:#ccd0da}html.theme--catppuccin-latte .panel.is-primary .panel-heading,html.theme--catppuccin-latte .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .panel.is-primary .panel-tabs a.is-active,html.theme--catppuccin-latte .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#1e66f5}html.theme--catppuccin-latte .panel.is-primary .panel-block.is-active .panel-icon,html.theme--catppuccin-latte .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#1e66f5}html.theme--catppuccin-latte .panel.is-link .panel-heading{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .panel.is-link .panel-tabs a.is-active{border-bottom-color:#1e66f5}html.theme--catppuccin-latte .panel.is-link .panel-block.is-active .panel-icon{color:#1e66f5}html.theme--catppuccin-latte .panel.is-info .panel-heading{background-color:#179299;color:#fff}html.theme--catppuccin-latte .panel.is-info .panel-tabs a.is-active{border-bottom-color:#179299}html.theme--catppuccin-latte .panel.is-info .panel-block.is-active .panel-icon{color:#179299}html.theme--catppuccin-latte .panel.is-success .panel-heading{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .panel.is-success .panel-tabs a.is-active{border-bottom-color:#40a02b}html.theme--catppuccin-latte .panel.is-success .panel-block.is-active .panel-icon{color:#40a02b}html.theme--catppuccin-latte .panel.is-warning .panel-heading{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#df8e1d}html.theme--catppuccin-latte .panel.is-warning .panel-block.is-active .panel-icon{color:#df8e1d}html.theme--catppuccin-latte .panel.is-danger .panel-heading{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#d20f39}html.theme--catppuccin-latte .panel.is-danger .panel-block.is-active .panel-icon{color:#d20f39}html.theme--catppuccin-latte .panel-tabs:not(:last-child),html.theme--catppuccin-latte .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--catppuccin-latte .panel-heading{background-color:#bcc0cc;border-radius:8px 8px 0 0;color:#41445a;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--catppuccin-latte .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--catppuccin-latte .panel-tabs a{border-bottom:1px solid #acb0be;margin-bottom:-1px;padding:0.5em}html.theme--catppuccin-latte .panel-tabs a.is-active{border-bottom-color:#bcc0cc;color:#0b57ef}html.theme--catppuccin-latte .panel-list a{color:#4c4f69}html.theme--catppuccin-latte .panel-list a:hover{color:#1e66f5}html.theme--catppuccin-latte .panel-block{align-items:center;color:#41445a;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--catppuccin-latte .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--catppuccin-latte .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--catppuccin-latte .panel-block.is-wrapped{flex-wrap:wrap}html.theme--catppuccin-latte .panel-block.is-active{border-left-color:#1e66f5;color:#0b57ef}html.theme--catppuccin-latte .panel-block.is-active .panel-icon{color:#1e66f5}html.theme--catppuccin-latte .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--catppuccin-latte a.panel-block,html.theme--catppuccin-latte label.panel-block{cursor:pointer}html.theme--catppuccin-latte a.panel-block:hover,html.theme--catppuccin-latte label.panel-block:hover{background-color:#e6e9ef}html.theme--catppuccin-latte .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#616587;margin-right:.75em}html.theme--catppuccin-latte .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--catppuccin-latte .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--catppuccin-latte .tabs a{align-items:center;border-bottom-color:#acb0be;border-bottom-style:solid;border-bottom-width:1px;color:#4c4f69;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--catppuccin-latte .tabs a:hover{border-bottom-color:#41445a;color:#41445a}html.theme--catppuccin-latte .tabs li{display:block}html.theme--catppuccin-latte .tabs li.is-active a{border-bottom-color:#1e66f5;color:#1e66f5}html.theme--catppuccin-latte .tabs ul{align-items:center;border-bottom-color:#acb0be;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--catppuccin-latte .tabs ul.is-left{padding-right:0.75em}html.theme--catppuccin-latte .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--catppuccin-latte .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--catppuccin-latte .tabs .icon:first-child{margin-right:.5em}html.theme--catppuccin-latte .tabs .icon:last-child{margin-left:.5em}html.theme--catppuccin-latte .tabs.is-centered ul{justify-content:center}html.theme--catppuccin-latte .tabs.is-right ul{justify-content:flex-end}html.theme--catppuccin-latte .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--catppuccin-latte .tabs.is-boxed a:hover{background-color:#e6e9ef;border-bottom-color:#acb0be}html.theme--catppuccin-latte .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#acb0be;border-bottom-color:rgba(0,0,0,0) !important}html.theme--catppuccin-latte .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--catppuccin-latte .tabs.is-toggle a{border-color:#acb0be;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--catppuccin-latte .tabs.is-toggle a:hover{background-color:#e6e9ef;border-color:#9ca0b0;z-index:2}html.theme--catppuccin-latte .tabs.is-toggle li+li{margin-left:-1px}html.theme--catppuccin-latte .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--catppuccin-latte .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--catppuccin-latte .tabs.is-toggle li.is-active a{background-color:#1e66f5;border-color:#1e66f5;color:#fff;z-index:1}html.theme--catppuccin-latte .tabs.is-toggle ul{border-bottom:none}html.theme--catppuccin-latte .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--catppuccin-latte .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--catppuccin-latte .tabs.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--catppuccin-latte .tabs.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .tabs.is-large{font-size:1.5rem}html.theme--catppuccin-latte .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--catppuccin-latte .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--catppuccin-latte .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-latte .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--catppuccin-latte .column.is-narrow-mobile{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-mobile{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-mobile{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-mobile{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--catppuccin-latte .column.is-0-mobile{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-mobile{margin-left:0%}html.theme--catppuccin-latte .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-mobile{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-mobile{margin-left:25%}html.theme--catppuccin-latte .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-mobile{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-mobile{margin-left:50%}html.theme--catppuccin-latte .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-mobile{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-mobile{margin-left:75%}html.theme--catppuccin-latte .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-mobile{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .column.is-narrow,html.theme--catppuccin-latte .column.is-narrow-tablet{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full,html.theme--catppuccin-latte .column.is-full-tablet{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters,html.theme--catppuccin-latte .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds,html.theme--catppuccin-latte .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half,html.theme--catppuccin-latte .column.is-half-tablet{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third,html.theme--catppuccin-latte .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter,html.theme--catppuccin-latte .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth,html.theme--catppuccin-latte .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths,html.theme--catppuccin-latte .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths,html.theme--catppuccin-latte .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths,html.theme--catppuccin-latte .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters,html.theme--catppuccin-latte .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds,html.theme--catppuccin-latte .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half,html.theme--catppuccin-latte .column.is-offset-half-tablet{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third,html.theme--catppuccin-latte .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter,html.theme--catppuccin-latte .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth,html.theme--catppuccin-latte .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths,html.theme--catppuccin-latte .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths,html.theme--catppuccin-latte .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths,html.theme--catppuccin-latte .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--catppuccin-latte .column.is-0,html.theme--catppuccin-latte .column.is-0-tablet{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0,html.theme--catppuccin-latte .column.is-offset-0-tablet{margin-left:0%}html.theme--catppuccin-latte .column.is-1,html.theme--catppuccin-latte .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1,html.theme--catppuccin-latte .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2,html.theme--catppuccin-latte .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2,html.theme--catppuccin-latte .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3,html.theme--catppuccin-latte .column.is-3-tablet{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3,html.theme--catppuccin-latte .column.is-offset-3-tablet{margin-left:25%}html.theme--catppuccin-latte .column.is-4,html.theme--catppuccin-latte .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4,html.theme--catppuccin-latte .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5,html.theme--catppuccin-latte .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5,html.theme--catppuccin-latte .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6,html.theme--catppuccin-latte .column.is-6-tablet{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6,html.theme--catppuccin-latte .column.is-offset-6-tablet{margin-left:50%}html.theme--catppuccin-latte .column.is-7,html.theme--catppuccin-latte .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7,html.theme--catppuccin-latte .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8,html.theme--catppuccin-latte .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8,html.theme--catppuccin-latte .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9,html.theme--catppuccin-latte .column.is-9-tablet{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9,html.theme--catppuccin-latte .column.is-offset-9-tablet{margin-left:75%}html.theme--catppuccin-latte .column.is-10,html.theme--catppuccin-latte .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10,html.theme--catppuccin-latte .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11,html.theme--catppuccin-latte .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11,html.theme--catppuccin-latte .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12,html.theme--catppuccin-latte .column.is-12-tablet{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12,html.theme--catppuccin-latte .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .column.is-narrow-touch{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-touch{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-touch{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-touch{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-touch{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-touch{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-touch{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-touch{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-touch{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-touch{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--catppuccin-latte .column.is-0-touch{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-touch{margin-left:0%}html.theme--catppuccin-latte .column.is-1-touch{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-touch{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-touch{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-touch{margin-left:25%}html.theme--catppuccin-latte .column.is-4-touch{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-touch{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-touch{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-touch{margin-left:50%}html.theme--catppuccin-latte .column.is-7-touch{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-touch{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-touch{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-touch{margin-left:75%}html.theme--catppuccin-latte .column.is-10-touch{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-touch{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-touch{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .column.is-narrow-desktop{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-desktop{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-desktop{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-desktop{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--catppuccin-latte .column.is-0-desktop{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-desktop{margin-left:0%}html.theme--catppuccin-latte .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-desktop{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-desktop{margin-left:25%}html.theme--catppuccin-latte .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-desktop{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-desktop{margin-left:50%}html.theme--catppuccin-latte .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-desktop{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-desktop{margin-left:75%}html.theme--catppuccin-latte .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-desktop{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .column.is-narrow-widescreen{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-widescreen{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-widescreen{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-widescreen{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--catppuccin-latte .column.is-0-widescreen{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-widescreen{margin-left:0%}html.theme--catppuccin-latte .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-widescreen{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-widescreen{margin-left:25%}html.theme--catppuccin-latte .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-widescreen{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-widescreen{margin-left:50%}html.theme--catppuccin-latte .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-widescreen{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-widescreen{margin-left:75%}html.theme--catppuccin-latte .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-widescreen{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .column.is-narrow-fullhd{flex:none;width:unset}html.theme--catppuccin-latte .column.is-full-fullhd{flex:none;width:100%}html.theme--catppuccin-latte .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--catppuccin-latte .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--catppuccin-latte .column.is-half-fullhd{flex:none;width:50%}html.theme--catppuccin-latte .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--catppuccin-latte .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--catppuccin-latte .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--catppuccin-latte .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--catppuccin-latte .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--catppuccin-latte .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--catppuccin-latte .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--catppuccin-latte .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--catppuccin-latte .column.is-offset-half-fullhd{margin-left:50%}html.theme--catppuccin-latte .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--catppuccin-latte .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--catppuccin-latte .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--catppuccin-latte .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--catppuccin-latte .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--catppuccin-latte .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--catppuccin-latte .column.is-0-fullhd{flex:none;width:0%}html.theme--catppuccin-latte .column.is-offset-0-fullhd{margin-left:0%}html.theme--catppuccin-latte .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--catppuccin-latte .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--catppuccin-latte .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--catppuccin-latte .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--catppuccin-latte .column.is-3-fullhd{flex:none;width:25%}html.theme--catppuccin-latte .column.is-offset-3-fullhd{margin-left:25%}html.theme--catppuccin-latte .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--catppuccin-latte .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--catppuccin-latte .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--catppuccin-latte .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--catppuccin-latte .column.is-6-fullhd{flex:none;width:50%}html.theme--catppuccin-latte .column.is-offset-6-fullhd{margin-left:50%}html.theme--catppuccin-latte .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--catppuccin-latte .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--catppuccin-latte .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--catppuccin-latte .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--catppuccin-latte .column.is-9-fullhd{flex:none;width:75%}html.theme--catppuccin-latte .column.is-offset-9-fullhd{margin-left:75%}html.theme--catppuccin-latte .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--catppuccin-latte .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--catppuccin-latte .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--catppuccin-latte .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--catppuccin-latte .column.is-12-fullhd{flex:none;width:100%}html.theme--catppuccin-latte .column.is-offset-12-fullhd{margin-left:100%}}html.theme--catppuccin-latte .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-latte .columns:last-child{margin-bottom:-.75rem}html.theme--catppuccin-latte .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--catppuccin-latte .columns.is-centered{justify-content:center}html.theme--catppuccin-latte .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--catppuccin-latte .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--catppuccin-latte .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-latte .columns.is-gapless:last-child{margin-bottom:0}html.theme--catppuccin-latte .columns.is-mobile{display:flex}html.theme--catppuccin-latte .columns.is-multiline{flex-wrap:wrap}html.theme--catppuccin-latte .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-desktop{display:flex}}html.theme--catppuccin-latte .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--catppuccin-latte .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--catppuccin-latte .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--catppuccin-latte .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--catppuccin-latte .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--catppuccin-latte .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--catppuccin-latte .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--catppuccin-latte .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--catppuccin-latte .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--catppuccin-latte .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--catppuccin-latte .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-latte .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-latte .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-latte .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-latte .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--catppuccin-latte .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--catppuccin-latte .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-latte .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--catppuccin-latte .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-latte .tile.is-child{margin:0 !important}html.theme--catppuccin-latte .tile.is-parent{padding:.75rem}html.theme--catppuccin-latte .tile.is-vertical{flex-direction:column}html.theme--catppuccin-latte .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .tile:not(.is-child){display:flex}html.theme--catppuccin-latte .tile.is-1{flex:none;width:8.33333337%}html.theme--catppuccin-latte .tile.is-2{flex:none;width:16.66666674%}html.theme--catppuccin-latte .tile.is-3{flex:none;width:25%}html.theme--catppuccin-latte .tile.is-4{flex:none;width:33.33333337%}html.theme--catppuccin-latte .tile.is-5{flex:none;width:41.66666674%}html.theme--catppuccin-latte .tile.is-6{flex:none;width:50%}html.theme--catppuccin-latte .tile.is-7{flex:none;width:58.33333337%}html.theme--catppuccin-latte .tile.is-8{flex:none;width:66.66666674%}html.theme--catppuccin-latte .tile.is-9{flex:none;width:75%}html.theme--catppuccin-latte .tile.is-10{flex:none;width:83.33333337%}html.theme--catppuccin-latte .tile.is-11{flex:none;width:91.66666674%}html.theme--catppuccin-latte .tile.is-12{flex:none;width:100%}}html.theme--catppuccin-latte .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--catppuccin-latte .hero .navbar{background:none}html.theme--catppuccin-latte .hero .tabs ul{border-bottom:none}html.theme--catppuccin-latte .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-white strong{color:inherit}html.theme--catppuccin-latte .hero.is-white .title{color:#0a0a0a}html.theme--catppuccin-latte .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--catppuccin-latte .hero.is-white .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-white .navbar-menu{background-color:#fff}}html.theme--catppuccin-latte .hero.is-white .navbar-item,html.theme--catppuccin-latte .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--catppuccin-latte .hero.is-white a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-white a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-white .navbar-link:hover,html.theme--catppuccin-latte .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-latte .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--catppuccin-latte .hero.is-white .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--catppuccin-latte .hero.is-white .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--catppuccin-latte .hero.is-white .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-white .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-white .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--catppuccin-latte .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-latte .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-black strong{color:inherit}html.theme--catppuccin-latte .hero.is-black .title{color:#fff}html.theme--catppuccin-latte .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-black .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--catppuccin-latte .hero.is-black .navbar-item,html.theme--catppuccin-latte .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-black a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-black a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-black .navbar-link:hover,html.theme--catppuccin-latte .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-latte .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-black .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--catppuccin-latte .hero.is-black .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-black .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-black .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-black .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-latte .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--catppuccin-latte .hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-light strong{color:inherit}html.theme--catppuccin-latte .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-latte .hero.is-light .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-light .navbar-menu{background-color:#f5f5f5}}html.theme--catppuccin-latte .hero.is-light .navbar-item,html.theme--catppuccin-latte .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-light a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-light .navbar-link:hover,html.theme--catppuccin-latte .hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-latte .hero.is-light .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}html.theme--catppuccin-latte .hero.is-light .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-light .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-light .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-light .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-latte .hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}html.theme--catppuccin-latte .hero.is-dark,html.theme--catppuccin-latte .content kbd.hero{background-color:#ccd0da;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-dark strong,html.theme--catppuccin-latte .content kbd.hero strong{color:inherit}html.theme--catppuccin-latte .hero.is-dark .title,html.theme--catppuccin-latte .content kbd.hero .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark .subtitle,html.theme--catppuccin-latte .content kbd.hero .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-latte .hero.is-dark .subtitle a:not(.button),html.theme--catppuccin-latte .content kbd.hero .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-dark .subtitle strong,html.theme--catppuccin-latte .content kbd.hero .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-dark .navbar-menu,html.theme--catppuccin-latte .content kbd.hero .navbar-menu{background-color:#ccd0da}}html.theme--catppuccin-latte .hero.is-dark .navbar-item,html.theme--catppuccin-latte .content kbd.hero .navbar-item,html.theme--catppuccin-latte .hero.is-dark .navbar-link,html.theme--catppuccin-latte .content kbd.hero .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark a.navbar-item:hover,html.theme--catppuccin-latte .content kbd.hero a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-dark a.navbar-item.is-active,html.theme--catppuccin-latte .content kbd.hero a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-dark .navbar-link:hover,html.theme--catppuccin-latte .content kbd.hero .navbar-link:hover,html.theme--catppuccin-latte .hero.is-dark .navbar-link.is-active,html.theme--catppuccin-latte .content kbd.hero .navbar-link.is-active{background-color:#bdc2cf;color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark .tabs a,html.theme--catppuccin-latte .content kbd.hero .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-latte .hero.is-dark .tabs a:hover,html.theme--catppuccin-latte .content kbd.hero .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-dark .tabs li.is-active a,html.theme--catppuccin-latte .content kbd.hero .tabs li.is-active a{color:#ccd0da !important;opacity:1}html.theme--catppuccin-latte .hero.is-dark .tabs.is-boxed a,html.theme--catppuccin-latte .content kbd.hero .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-dark .tabs.is-toggle a,html.theme--catppuccin-latte .content kbd.hero .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-latte .hero.is-dark .tabs.is-boxed a:hover,html.theme--catppuccin-latte .content kbd.hero .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-dark .tabs.is-toggle a:hover,html.theme--catppuccin-latte .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#ccd0da}html.theme--catppuccin-latte .hero.is-dark.is-bold,html.theme--catppuccin-latte .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #a7b8cc 0%, #ccd0da 71%, #d9dbe6 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-dark.is-bold .navbar-menu,html.theme--catppuccin-latte .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #a7b8cc 0%, #ccd0da 71%, #d9dbe6 100%)}}html.theme--catppuccin-latte .hero.is-primary,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-primary strong,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--catppuccin-latte .hero.is-primary .title,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--catppuccin-latte .hero.is-primary .subtitle,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-primary .subtitle a:not(.button),html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-primary .subtitle strong,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-primary .navbar-menu,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#1e66f5}}html.theme--catppuccin-latte .hero.is-primary .navbar-item,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--catppuccin-latte .hero.is-primary .navbar-link,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-primary a.navbar-item:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-primary a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-primary .navbar-link:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--catppuccin-latte .hero.is-primary .navbar-link.is-active,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .hero.is-primary .tabs a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-primary .tabs a:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-primary .tabs li.is-active a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#1e66f5 !important;opacity:1}html.theme--catppuccin-latte .hero.is-primary .tabs.is-boxed a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-primary .tabs.is-toggle a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-primary .tabs.is-boxed a:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-primary .tabs.is-toggle a:hover,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .hero.is-primary.is-bold,html.theme--catppuccin-latte .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #0070e0 0%, #1e66f5 71%, #3153fb 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-primary.is-bold .navbar-menu,html.theme--catppuccin-latte .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #0070e0 0%, #1e66f5 71%, #3153fb 100%)}}html.theme--catppuccin-latte .hero.is-link{background-color:#1e66f5;color:#fff}html.theme--catppuccin-latte .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-link strong{color:inherit}html.theme--catppuccin-latte .hero.is-link .title{color:#fff}html.theme--catppuccin-latte .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-link .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-link .navbar-menu{background-color:#1e66f5}}html.theme--catppuccin-latte .hero.is-link .navbar-item,html.theme--catppuccin-latte .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-link a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-link a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-link .navbar-link:hover,html.theme--catppuccin-latte .hero.is-link .navbar-link.is-active{background-color:#0b57ef;color:#fff}html.theme--catppuccin-latte .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-link .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-link .tabs li.is-active a{color:#1e66f5 !important;opacity:1}html.theme--catppuccin-latte .hero.is-link .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-link .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-link .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-link .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#1e66f5}html.theme--catppuccin-latte .hero.is-link.is-bold{background-image:linear-gradient(141deg, #0070e0 0%, #1e66f5 71%, #3153fb 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0070e0 0%, #1e66f5 71%, #3153fb 100%)}}html.theme--catppuccin-latte .hero.is-info{background-color:#179299;color:#fff}html.theme--catppuccin-latte .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-info strong{color:inherit}html.theme--catppuccin-latte .hero.is-info .title{color:#fff}html.theme--catppuccin-latte .hero.is-info .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-info .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-info .navbar-menu{background-color:#179299}}html.theme--catppuccin-latte .hero.is-info .navbar-item,html.theme--catppuccin-latte .hero.is-info .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-info a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-info a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-info .navbar-link:hover,html.theme--catppuccin-latte .hero.is-info .navbar-link.is-active{background-color:#147d83;color:#fff}html.theme--catppuccin-latte .hero.is-info .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-info .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-info .tabs li.is-active a{color:#179299 !important;opacity:1}html.theme--catppuccin-latte .hero.is-info .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-info .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-info .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-info .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-info .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#179299}html.theme--catppuccin-latte .hero.is-info.is-bold{background-image:linear-gradient(141deg, #0a7367 0%, #179299 71%, #1591b4 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0a7367 0%, #179299 71%, #1591b4 100%)}}html.theme--catppuccin-latte .hero.is-success{background-color:#40a02b;color:#fff}html.theme--catppuccin-latte .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-success strong{color:inherit}html.theme--catppuccin-latte .hero.is-success .title{color:#fff}html.theme--catppuccin-latte .hero.is-success .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-success .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-success .navbar-menu{background-color:#40a02b}}html.theme--catppuccin-latte .hero.is-success .navbar-item,html.theme--catppuccin-latte .hero.is-success .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-success a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-success a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-success .navbar-link:hover,html.theme--catppuccin-latte .hero.is-success .navbar-link.is-active{background-color:#388c26;color:#fff}html.theme--catppuccin-latte .hero.is-success .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-success .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-success .tabs li.is-active a{color:#40a02b !important;opacity:1}html.theme--catppuccin-latte .hero.is-success .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-success .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-success .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-success .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-success .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#40a02b}html.theme--catppuccin-latte .hero.is-success.is-bold{background-image:linear-gradient(141deg, #3c7f19 0%, #40a02b 71%, #2dba2b 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #3c7f19 0%, #40a02b 71%, #2dba2b 100%)}}html.theme--catppuccin-latte .hero.is-warning{background-color:#df8e1d;color:#fff}html.theme--catppuccin-latte .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-warning strong{color:inherit}html.theme--catppuccin-latte .hero.is-warning .title{color:#fff}html.theme--catppuccin-latte .hero.is-warning .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-warning .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-warning .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-warning .navbar-menu{background-color:#df8e1d}}html.theme--catppuccin-latte .hero.is-warning .navbar-item,html.theme--catppuccin-latte .hero.is-warning .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-warning a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-warning a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-warning .navbar-link:hover,html.theme--catppuccin-latte .hero.is-warning .navbar-link.is-active{background-color:#c8801a;color:#fff}html.theme--catppuccin-latte .hero.is-warning .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-warning .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-warning .tabs li.is-active a{color:#df8e1d !important;opacity:1}html.theme--catppuccin-latte .hero.is-warning .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-warning .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-warning .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#df8e1d}html.theme--catppuccin-latte .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #bc560d 0%, #df8e1d 71%, #eaba2b 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #bc560d 0%, #df8e1d 71%, #eaba2b 100%)}}html.theme--catppuccin-latte .hero.is-danger{background-color:#d20f39;color:#fff}html.theme--catppuccin-latte .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-latte .hero.is-danger strong{color:inherit}html.theme--catppuccin-latte .hero.is-danger .title{color:#fff}html.theme--catppuccin-latte .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-latte .hero.is-danger .subtitle a:not(.button),html.theme--catppuccin-latte .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .hero.is-danger .navbar-menu{background-color:#d20f39}}html.theme--catppuccin-latte .hero.is-danger .navbar-item,html.theme--catppuccin-latte .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-latte .hero.is-danger a.navbar-item:hover,html.theme--catppuccin-latte .hero.is-danger a.navbar-item.is-active,html.theme--catppuccin-latte .hero.is-danger .navbar-link:hover,html.theme--catppuccin-latte .hero.is-danger .navbar-link.is-active{background-color:#ba0d33;color:#fff}html.theme--catppuccin-latte .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-latte .hero.is-danger .tabs a:hover{opacity:1}html.theme--catppuccin-latte .hero.is-danger .tabs li.is-active a{color:#d20f39 !important;opacity:1}html.theme--catppuccin-latte .hero.is-danger .tabs.is-boxed a,html.theme--catppuccin-latte .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--catppuccin-latte .hero.is-danger .tabs.is-boxed a:hover,html.theme--catppuccin-latte .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-latte .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--catppuccin-latte .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-latte .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--catppuccin-latte .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#d20f39}html.theme--catppuccin-latte .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #ab0343 0%, #d20f39 71%, #f00a16 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ab0343 0%, #d20f39 71%, #f00a16 100%)}}html.theme--catppuccin-latte .hero.is-small .hero-body,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--catppuccin-latte .hero.is-halfheight .hero-body,html.theme--catppuccin-latte .hero.is-fullheight .hero-body,html.theme--catppuccin-latte .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--catppuccin-latte .hero.is-halfheight .hero-body>.container,html.theme--catppuccin-latte .hero.is-fullheight .hero-body>.container,html.theme--catppuccin-latte .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--catppuccin-latte .hero.is-halfheight{min-height:50vh}html.theme--catppuccin-latte .hero.is-fullheight{min-height:100vh}html.theme--catppuccin-latte .hero-video{overflow:hidden}html.theme--catppuccin-latte .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--catppuccin-latte .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero-video{display:none}}html.theme--catppuccin-latte .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-latte .hero-buttons .button{display:flex}html.theme--catppuccin-latte .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .hero-buttons{display:flex;justify-content:center}html.theme--catppuccin-latte .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--catppuccin-latte .hero-head,html.theme--catppuccin-latte .hero-foot{flex-grow:0;flex-shrink:0}html.theme--catppuccin-latte .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-latte .hero-body{padding:3rem 3rem}}html.theme--catppuccin-latte .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--catppuccin-latte .section{padding:3rem 3rem}html.theme--catppuccin-latte .section.is-medium{padding:9rem 4.5rem}html.theme--catppuccin-latte .section.is-large{padding:18rem 6rem}}html.theme--catppuccin-latte .footer{background-color:#e6e9ef;padding:3rem 1.5rem 6rem}html.theme--catppuccin-latte h1 .docs-heading-anchor,html.theme--catppuccin-latte h1 .docs-heading-anchor:hover,html.theme--catppuccin-latte h1 .docs-heading-anchor:visited,html.theme--catppuccin-latte h2 .docs-heading-anchor,html.theme--catppuccin-latte h2 .docs-heading-anchor:hover,html.theme--catppuccin-latte h2 .docs-heading-anchor:visited,html.theme--catppuccin-latte h3 .docs-heading-anchor,html.theme--catppuccin-latte h3 .docs-heading-anchor:hover,html.theme--catppuccin-latte h3 .docs-heading-anchor:visited,html.theme--catppuccin-latte h4 .docs-heading-anchor,html.theme--catppuccin-latte h4 .docs-heading-anchor:hover,html.theme--catppuccin-latte h4 .docs-heading-anchor:visited,html.theme--catppuccin-latte h5 .docs-heading-anchor,html.theme--catppuccin-latte h5 .docs-heading-anchor:hover,html.theme--catppuccin-latte h5 .docs-heading-anchor:visited,html.theme--catppuccin-latte h6 .docs-heading-anchor,html.theme--catppuccin-latte h6 .docs-heading-anchor:hover,html.theme--catppuccin-latte h6 .docs-heading-anchor:visited{color:#4c4f69}html.theme--catppuccin-latte h1 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h2 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h3 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h4 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h5 .docs-heading-anchor-permalink,html.theme--catppuccin-latte h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--catppuccin-latte h1 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h2 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h3 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h4 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h5 .docs-heading-anchor-permalink::before,html.theme--catppuccin-latte h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--catppuccin-latte h1:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h2:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h3:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h4:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h5:hover .docs-heading-anchor-permalink,html.theme--catppuccin-latte h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--catppuccin-latte .docs-dark-only{display:none !important}html.theme--catppuccin-latte pre{position:relative;overflow:hidden}html.theme--catppuccin-latte pre code,html.theme--catppuccin-latte pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--catppuccin-latte pre code:first-of-type,html.theme--catppuccin-latte pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--catppuccin-latte pre code:last-of-type,html.theme--catppuccin-latte pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--catppuccin-latte pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#4c4f69;cursor:pointer;text-align:center}html.theme--catppuccin-latte pre .copy-button:focus,html.theme--catppuccin-latte pre .copy-button:hover{opacity:1;background:rgba(76,79,105,0.1);color:#1e66f5}html.theme--catppuccin-latte pre .copy-button.success{color:#40a02b;opacity:1}html.theme--catppuccin-latte pre .copy-button.error{color:#d20f39;opacity:1}html.theme--catppuccin-latte pre:hover .copy-button{opacity:1}html.theme--catppuccin-latte .admonition{background-color:#e6e9ef;border-style:solid;border-width:2px;border-color:#5c5f77;border-radius:4px;font-size:1rem}html.theme--catppuccin-latte .admonition strong{color:currentColor}html.theme--catppuccin-latte .admonition.is-small,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--catppuccin-latte .admonition.is-medium{font-size:1.25rem}html.theme--catppuccin-latte .admonition.is-large{font-size:1.5rem}html.theme--catppuccin-latte .admonition.is-default{background-color:#e6e9ef;border-color:#5c5f77}html.theme--catppuccin-latte .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#5c5f77}html.theme--catppuccin-latte .admonition.is-default>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-info{background-color:#e6e9ef;border-color:#179299}html.theme--catppuccin-latte .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#179299}html.theme--catppuccin-latte .admonition.is-info>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-success{background-color:#e6e9ef;border-color:#40a02b}html.theme--catppuccin-latte .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#40a02b}html.theme--catppuccin-latte .admonition.is-success>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-warning{background-color:#e6e9ef;border-color:#df8e1d}html.theme--catppuccin-latte .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#df8e1d}html.theme--catppuccin-latte .admonition.is-warning>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-danger{background-color:#e6e9ef;border-color:#d20f39}html.theme--catppuccin-latte .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#d20f39}html.theme--catppuccin-latte .admonition.is-danger>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-compat{background-color:#e6e9ef;border-color:#04a5e5}html.theme--catppuccin-latte .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#04a5e5}html.theme--catppuccin-latte .admonition.is-compat>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition.is-todo{background-color:#e6e9ef;border-color:#8839ef}html.theme--catppuccin-latte .admonition.is-todo>.admonition-header{background-color:rgba(0,0,0,0);color:#8839ef}html.theme--catppuccin-latte .admonition.is-todo>.admonition-body{color:#4c4f69}html.theme--catppuccin-latte .admonition-header{color:#5c5f77;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--catppuccin-latte .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--catppuccin-latte details.admonition.is-details>.admonition-header{list-style:none}html.theme--catppuccin-latte details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--catppuccin-latte details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--catppuccin-latte .admonition-body{color:#4c4f69;padding:0.5rem .75rem}html.theme--catppuccin-latte .admonition-body pre{background-color:#e6e9ef}html.theme--catppuccin-latte .admonition-body code{background-color:#e6e9ef}html.theme--catppuccin-latte .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #acb0be;border-radius:4px;box-shadow:none;max-width:100%}html.theme--catppuccin-latte .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#e6e9ef;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #acb0be;overflow:auto}html.theme--catppuccin-latte .docstring>header code{background-color:transparent}html.theme--catppuccin-latte .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--catppuccin-latte .docstring>header .docstring-binding{margin-right:0.3em}html.theme--catppuccin-latte .docstring>header .docstring-category{margin-left:0.3em}html.theme--catppuccin-latte .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #acb0be}html.theme--catppuccin-latte .docstring>section:last-child{border-bottom:none}html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--catppuccin-latte .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-latte .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-latte .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--catppuccin-latte .documenter-example-output{background-color:#eff1f5}html.theme--catppuccin-latte .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#e6e9ef;color:#4c4f69;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--catppuccin-latte .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--catppuccin-latte .outdated-warning-overlay a{color:#1e66f5}html.theme--catppuccin-latte .outdated-warning-overlay a:hover{color:#04a5e5}html.theme--catppuccin-latte .content pre{border:2px solid #acb0be;border-radius:4px}html.theme--catppuccin-latte .content code{font-weight:inherit}html.theme--catppuccin-latte .content a code{color:#1e66f5}html.theme--catppuccin-latte .content a:hover code{color:#04a5e5}html.theme--catppuccin-latte .content h1 code,html.theme--catppuccin-latte .content h2 code,html.theme--catppuccin-latte .content h3 code,html.theme--catppuccin-latte .content h4 code,html.theme--catppuccin-latte .content h5 code,html.theme--catppuccin-latte .content h6 code{color:#4c4f69}html.theme--catppuccin-latte .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--catppuccin-latte .content blockquote>ul:first-child,html.theme--catppuccin-latte .content blockquote>ol:first-child,html.theme--catppuccin-latte .content .admonition-body>ul:first-child,html.theme--catppuccin-latte .content .admonition-body>ol:first-child{margin-top:0}html.theme--catppuccin-latte pre,html.theme--catppuccin-latte code{font-variant-ligatures:no-contextual}html.theme--catppuccin-latte .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--catppuccin-latte .breadcrumb a.is-disabled,html.theme--catppuccin-latte .breadcrumb a.is-disabled:hover{color:#41445a}html.theme--catppuccin-latte .hljs{background:initial !important}html.theme--catppuccin-latte .katex .katex-mathml{top:0;right:0}html.theme--catppuccin-latte .katex-display,html.theme--catppuccin-latte mjx-container,html.theme--catppuccin-latte .MathJax_Display{margin:0.5em 0 !important}html.theme--catppuccin-latte html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--catppuccin-latte li.no-marker{list-style:none}html.theme--catppuccin-latte #documenter .docs-main>article{overflow-wrap:break-word}html.theme--catppuccin-latte #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--catppuccin-latte #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-main{width:100%}html.theme--catppuccin-latte #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--catppuccin-latte #documenter .docs-main>header,html.theme--catppuccin-latte #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar{background-color:#eff1f5;border-bottom:1px solid #acb0be;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--catppuccin-latte #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--catppuccin-latte #documenter .docs-main section.footnotes{border-top:1px solid #acb0be}html.theme--catppuccin-latte #documenter .docs-main section.footnotes li .tag:first-child,html.theme--catppuccin-latte #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--catppuccin-latte #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--catppuccin-latte .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--catppuccin-latte #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #acb0be;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--catppuccin-latte #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--catppuccin-latte #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--catppuccin-latte #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--catppuccin-latte #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--catppuccin-latte #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--catppuccin-latte #documenter .docs-sidebar{display:flex;flex-direction:column;color:#4c4f69;background-color:#e6e9ef;border-right:1px solid #acb0be;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--catppuccin-latte #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--catppuccin-latte #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--catppuccin-latte #documenter .docs-sidebar{left:0;top:0}}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-package-name a,html.theme--catppuccin-latte #documenter .docs-sidebar .docs-package-name a:hover{color:#4c4f69}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #acb0be;display:none;padding:0.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #acb0be;padding-bottom:1.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #acb0be}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#4c4f69;background:#e6e9ef}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#4c4f69;background-color:#f2f4f7}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #acb0be;border-bottom:1px solid #acb0be;background-color:#dce0e8}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#dce0e8;color:#4c4f69}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#f2f4f7;color:#4c4f69}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #acb0be}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--catppuccin-latte #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#fff}html.theme--catppuccin-latte #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#fff}}@media screen and (max-width: 1055px){html.theme--catppuccin-latte #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-latte #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-latte #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#fff}html.theme--catppuccin-latte #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#fff}}html.theme--catppuccin-latte kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--catppuccin-latte .search-min-width-50{min-width:50%}html.theme--catppuccin-latte .search-min-height-100{min-height:100%}html.theme--catppuccin-latte .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--catppuccin-latte .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-latte .search-result-link:hover,html.theme--catppuccin-latte .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--catppuccin-latte .search-result-link .property-search-result-badge,html.theme--catppuccin-latte .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-latte .property-search-result-badge,html.theme--catppuccin-latte .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--catppuccin-latte .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-latte .search-result-link:hover .search-filter,html.theme--catppuccin-latte .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-latte .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--catppuccin-latte .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--catppuccin-latte .search-filter:hover,html.theme--catppuccin-latte .search-filter:focus{color:#333}html.theme--catppuccin-latte .search-filter-selected{color:#ccd0da;background-color:#7287fd}html.theme--catppuccin-latte .search-filter-selected:hover,html.theme--catppuccin-latte .search-filter-selected:focus{color:#ccd0da}html.theme--catppuccin-latte .search-result-highlight{background-color:#ffdd57;color:black}html.theme--catppuccin-latte .search-divider{border-bottom:1px solid #acb0be}html.theme--catppuccin-latte .search-result-title{width:85%;color:#f5f5f5}html.theme--catppuccin-latte .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-latte #search-modal .modal-card-body::-webkit-scrollbar,html.theme--catppuccin-latte #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--catppuccin-latte #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--catppuccin-latte #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--catppuccin-latte #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--catppuccin-latte #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--catppuccin-latte .w-100{width:100%}html.theme--catppuccin-latte .gap-2{gap:0.5rem}html.theme--catppuccin-latte .gap-4{gap:1rem}html.theme--catppuccin-latte .gap-8{gap:2rem}html.theme--catppuccin-latte{background-color:#eff1f5;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-latte a{transition:all 200ms ease}html.theme--catppuccin-latte .label{color:#4c4f69}html.theme--catppuccin-latte .button,html.theme--catppuccin-latte .control.has-icons-left .icon,html.theme--catppuccin-latte .control.has-icons-right .icon,html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte .pagination-ellipsis,html.theme--catppuccin-latte .pagination-link,html.theme--catppuccin-latte .pagination-next,html.theme--catppuccin-latte .pagination-previous,html.theme--catppuccin-latte .select,html.theme--catppuccin-latte .select select,html.theme--catppuccin-latte .textarea{height:2.5em;color:#4c4f69}html.theme--catppuccin-latte .input,html.theme--catppuccin-latte #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-latte .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em;color:#4c4f69}html.theme--catppuccin-latte .select:after,html.theme--catppuccin-latte .select select{border-width:1px}html.theme--catppuccin-latte .menu-list a{transition:all 300ms ease}html.theme--catppuccin-latte .modal-card-foot,html.theme--catppuccin-latte .modal-card-head{border-color:#acb0be}html.theme--catppuccin-latte .navbar{border-radius:.4em}html.theme--catppuccin-latte .navbar.is-transparent{background:none}html.theme--catppuccin-latte .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-latte .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#1e66f5}@media screen and (max-width: 1055px){html.theme--catppuccin-latte .navbar .navbar-menu{background-color:#1e66f5;border-radius:0 0 .4em .4em}}html.theme--catppuccin-latte .docstring>section>a.docs-sourcelink:not(body){color:#ccd0da}html.theme--catppuccin-latte .tag.is-link:not(body),html.theme--catppuccin-latte .docstring>section>a.is-link.docs-sourcelink:not(body),html.theme--catppuccin-latte .content kbd.is-link:not(body){color:#ccd0da}html.theme--catppuccin-latte .ansi span.sgr1{font-weight:bolder}html.theme--catppuccin-latte .ansi span.sgr2{font-weight:lighter}html.theme--catppuccin-latte .ansi span.sgr3{font-style:italic}html.theme--catppuccin-latte .ansi span.sgr4{text-decoration:underline}html.theme--catppuccin-latte .ansi span.sgr7{color:#eff1f5;background-color:#4c4f69}html.theme--catppuccin-latte .ansi span.sgr8{color:transparent}html.theme--catppuccin-latte .ansi span.sgr8 span{color:transparent}html.theme--catppuccin-latte .ansi span.sgr9{text-decoration:line-through}html.theme--catppuccin-latte .ansi span.sgr30{color:#5c5f77}html.theme--catppuccin-latte .ansi span.sgr31{color:#d20f39}html.theme--catppuccin-latte .ansi span.sgr32{color:#40a02b}html.theme--catppuccin-latte .ansi span.sgr33{color:#df8e1d}html.theme--catppuccin-latte .ansi span.sgr34{color:#1e66f5}html.theme--catppuccin-latte .ansi span.sgr35{color:#ea76cb}html.theme--catppuccin-latte .ansi span.sgr36{color:#179299}html.theme--catppuccin-latte .ansi span.sgr37{color:#acb0be}html.theme--catppuccin-latte .ansi span.sgr40{background-color:#5c5f77}html.theme--catppuccin-latte .ansi span.sgr41{background-color:#d20f39}html.theme--catppuccin-latte .ansi span.sgr42{background-color:#40a02b}html.theme--catppuccin-latte .ansi span.sgr43{background-color:#df8e1d}html.theme--catppuccin-latte .ansi span.sgr44{background-color:#1e66f5}html.theme--catppuccin-latte .ansi span.sgr45{background-color:#ea76cb}html.theme--catppuccin-latte .ansi span.sgr46{background-color:#179299}html.theme--catppuccin-latte .ansi span.sgr47{background-color:#acb0be}html.theme--catppuccin-latte .ansi span.sgr90{color:#6c6f85}html.theme--catppuccin-latte .ansi span.sgr91{color:#d20f39}html.theme--catppuccin-latte .ansi span.sgr92{color:#40a02b}html.theme--catppuccin-latte .ansi span.sgr93{color:#df8e1d}html.theme--catppuccin-latte .ansi span.sgr94{color:#1e66f5}html.theme--catppuccin-latte .ansi span.sgr95{color:#ea76cb}html.theme--catppuccin-latte .ansi span.sgr96{color:#179299}html.theme--catppuccin-latte .ansi span.sgr97{color:#bcc0cc}html.theme--catppuccin-latte .ansi span.sgr100{background-color:#6c6f85}html.theme--catppuccin-latte .ansi span.sgr101{background-color:#d20f39}html.theme--catppuccin-latte .ansi span.sgr102{background-color:#40a02b}html.theme--catppuccin-latte .ansi span.sgr103{background-color:#df8e1d}html.theme--catppuccin-latte .ansi span.sgr104{background-color:#1e66f5}html.theme--catppuccin-latte .ansi span.sgr105{background-color:#ea76cb}html.theme--catppuccin-latte .ansi span.sgr106{background-color:#179299}html.theme--catppuccin-latte .ansi span.sgr107{background-color:#bcc0cc}html.theme--catppuccin-latte code.language-julia-repl>span.hljs-meta{color:#40a02b;font-weight:bolder}html.theme--catppuccin-latte code .hljs{color:#4c4f69;background:#eff1f5}html.theme--catppuccin-latte code .hljs-keyword{color:#8839ef}html.theme--catppuccin-latte code .hljs-built_in{color:#d20f39}html.theme--catppuccin-latte code .hljs-type{color:#df8e1d}html.theme--catppuccin-latte code .hljs-literal{color:#fe640b}html.theme--catppuccin-latte code .hljs-number{color:#fe640b}html.theme--catppuccin-latte code .hljs-operator{color:#179299}html.theme--catppuccin-latte code .hljs-punctuation{color:#5c5f77}html.theme--catppuccin-latte code .hljs-property{color:#179299}html.theme--catppuccin-latte code .hljs-regexp{color:#ea76cb}html.theme--catppuccin-latte code .hljs-string{color:#40a02b}html.theme--catppuccin-latte code .hljs-char.escape_{color:#40a02b}html.theme--catppuccin-latte code .hljs-subst{color:#6c6f85}html.theme--catppuccin-latte code .hljs-symbol{color:#dd7878}html.theme--catppuccin-latte code .hljs-variable{color:#8839ef}html.theme--catppuccin-latte code .hljs-variable.language_{color:#8839ef}html.theme--catppuccin-latte code .hljs-variable.constant_{color:#fe640b}html.theme--catppuccin-latte code .hljs-title{color:#1e66f5}html.theme--catppuccin-latte code .hljs-title.class_{color:#df8e1d}html.theme--catppuccin-latte code .hljs-title.function_{color:#1e66f5}html.theme--catppuccin-latte code .hljs-params{color:#4c4f69}html.theme--catppuccin-latte code .hljs-comment{color:#acb0be}html.theme--catppuccin-latte code .hljs-doctag{color:#d20f39}html.theme--catppuccin-latte code .hljs-meta{color:#fe640b}html.theme--catppuccin-latte code .hljs-section{color:#1e66f5}html.theme--catppuccin-latte code .hljs-tag{color:#6c6f85}html.theme--catppuccin-latte code .hljs-name{color:#8839ef}html.theme--catppuccin-latte code .hljs-attr{color:#1e66f5}html.theme--catppuccin-latte code .hljs-attribute{color:#40a02b}html.theme--catppuccin-latte code .hljs-bullet{color:#179299}html.theme--catppuccin-latte code .hljs-code{color:#40a02b}html.theme--catppuccin-latte code .hljs-emphasis{color:#d20f39;font-style:italic}html.theme--catppuccin-latte code .hljs-strong{color:#d20f39;font-weight:bold}html.theme--catppuccin-latte code .hljs-formula{color:#179299}html.theme--catppuccin-latte code .hljs-link{color:#209fb5;font-style:italic}html.theme--catppuccin-latte code .hljs-quote{color:#40a02b;font-style:italic}html.theme--catppuccin-latte code .hljs-selector-tag{color:#df8e1d}html.theme--catppuccin-latte code .hljs-selector-id{color:#1e66f5}html.theme--catppuccin-latte code .hljs-selector-class{color:#179299}html.theme--catppuccin-latte code .hljs-selector-attr{color:#8839ef}html.theme--catppuccin-latte code .hljs-selector-pseudo{color:#179299}html.theme--catppuccin-latte code .hljs-template-tag{color:#dd7878}html.theme--catppuccin-latte code .hljs-template-variable{color:#dd7878}html.theme--catppuccin-latte code .hljs-addition{color:#40a02b;background:rgba(166,227,161,0.15)}html.theme--catppuccin-latte code .hljs-deletion{color:#d20f39;background:rgba(243,139,168,0.15)}html.theme--catppuccin-latte .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-latte .search-result-link:hover,html.theme--catppuccin-latte .search-result-link:focus{background-color:#ccd0da}html.theme--catppuccin-latte .search-result-link .property-search-result-badge,html.theme--catppuccin-latte .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-latte .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-latte .search-result-link:hover .search-filter,html.theme--catppuccin-latte .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-latte .search-result-link:focus .search-filter{color:#ccd0da !important;background-color:#7287fd !important}html.theme--catppuccin-latte .search-result-title{color:#4c4f69}html.theme--catppuccin-latte .search-result-highlight{background-color:#d20f39;color:#e6e9ef}html.theme--catppuccin-latte .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--catppuccin-latte .w-100{width:100%}html.theme--catppuccin-latte .gap-2{gap:0.5rem}html.theme--catppuccin-latte .gap-4{gap:1rem} diff --git a/doc/build/assets/themes/catppuccin-macchiato.css b/doc/build/assets/themes/catppuccin-macchiato.css deleted file mode 100644 index a9cf9c5..0000000 --- a/doc/build/assets/themes/catppuccin-macchiato.css +++ /dev/null @@ -1 +0,0 @@ -html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-ellipsis,html.theme--catppuccin-macchiato .file-cta,html.theme--catppuccin-macchiato .file-name,html.theme--catppuccin-macchiato .select select,html.theme--catppuccin-macchiato .textarea,html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--catppuccin-macchiato .pagination-previous:focus,html.theme--catppuccin-macchiato .pagination-next:focus,html.theme--catppuccin-macchiato .pagination-link:focus,html.theme--catppuccin-macchiato .pagination-ellipsis:focus,html.theme--catppuccin-macchiato .file-cta:focus,html.theme--catppuccin-macchiato .file-name:focus,html.theme--catppuccin-macchiato .select select:focus,html.theme--catppuccin-macchiato .textarea:focus,html.theme--catppuccin-macchiato .input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-macchiato .button:focus,html.theme--catppuccin-macchiato .is-focused.pagination-previous,html.theme--catppuccin-macchiato .is-focused.pagination-next,html.theme--catppuccin-macchiato .is-focused.pagination-link,html.theme--catppuccin-macchiato .is-focused.pagination-ellipsis,html.theme--catppuccin-macchiato .is-focused.file-cta,html.theme--catppuccin-macchiato .is-focused.file-name,html.theme--catppuccin-macchiato .select select.is-focused,html.theme--catppuccin-macchiato .is-focused.textarea,html.theme--catppuccin-macchiato .is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-focused.button,html.theme--catppuccin-macchiato .pagination-previous:active,html.theme--catppuccin-macchiato .pagination-next:active,html.theme--catppuccin-macchiato .pagination-link:active,html.theme--catppuccin-macchiato .pagination-ellipsis:active,html.theme--catppuccin-macchiato .file-cta:active,html.theme--catppuccin-macchiato .file-name:active,html.theme--catppuccin-macchiato .select select:active,html.theme--catppuccin-macchiato .textarea:active,html.theme--catppuccin-macchiato .input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-macchiato .button:active,html.theme--catppuccin-macchiato .is-active.pagination-previous,html.theme--catppuccin-macchiato .is-active.pagination-next,html.theme--catppuccin-macchiato .is-active.pagination-link,html.theme--catppuccin-macchiato .is-active.pagination-ellipsis,html.theme--catppuccin-macchiato .is-active.file-cta,html.theme--catppuccin-macchiato .is-active.file-name,html.theme--catppuccin-macchiato .select select.is-active,html.theme--catppuccin-macchiato .is-active.textarea,html.theme--catppuccin-macchiato .is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-macchiato .is-active.button{outline:none}html.theme--catppuccin-macchiato .pagination-previous[disabled],html.theme--catppuccin-macchiato .pagination-next[disabled],html.theme--catppuccin-macchiato .pagination-link[disabled],html.theme--catppuccin-macchiato .pagination-ellipsis[disabled],html.theme--catppuccin-macchiato .file-cta[disabled],html.theme--catppuccin-macchiato .file-name[disabled],html.theme--catppuccin-macchiato .select select[disabled],html.theme--catppuccin-macchiato .textarea[disabled],html.theme--catppuccin-macchiato .input[disabled],html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--catppuccin-macchiato .button[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--catppuccin-macchiato .pagination-ellipsis,html.theme--catppuccin-macchiato fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--catppuccin-macchiato .file-cta,html.theme--catppuccin-macchiato fieldset[disabled] .file-cta,fieldset[disabled] html.theme--catppuccin-macchiato .file-name,html.theme--catppuccin-macchiato fieldset[disabled] .file-name,fieldset[disabled] html.theme--catppuccin-macchiato .select select,fieldset[disabled] html.theme--catppuccin-macchiato .textarea,fieldset[disabled] html.theme--catppuccin-macchiato .input,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato fieldset[disabled] .select select,html.theme--catppuccin-macchiato .select fieldset[disabled] select,html.theme--catppuccin-macchiato fieldset[disabled] .textarea,html.theme--catppuccin-macchiato fieldset[disabled] .input,html.theme--catppuccin-macchiato fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--catppuccin-macchiato .button,html.theme--catppuccin-macchiato fieldset[disabled] .button{cursor:not-allowed}html.theme--catppuccin-macchiato .tabs,html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-ellipsis,html.theme--catppuccin-macchiato .breadcrumb,html.theme--catppuccin-macchiato .file,html.theme--catppuccin-macchiato .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--catppuccin-macchiato .navbar-link:not(.is-arrowless)::after,html.theme--catppuccin-macchiato .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--catppuccin-macchiato .admonition:not(:last-child),html.theme--catppuccin-macchiato .tabs:not(:last-child),html.theme--catppuccin-macchiato .pagination:not(:last-child),html.theme--catppuccin-macchiato .message:not(:last-child),html.theme--catppuccin-macchiato .level:not(:last-child),html.theme--catppuccin-macchiato .breadcrumb:not(:last-child),html.theme--catppuccin-macchiato .block:not(:last-child),html.theme--catppuccin-macchiato .title:not(:last-child),html.theme--catppuccin-macchiato .subtitle:not(:last-child),html.theme--catppuccin-macchiato .table-container:not(:last-child),html.theme--catppuccin-macchiato .table:not(:last-child),html.theme--catppuccin-macchiato .progress:not(:last-child),html.theme--catppuccin-macchiato .notification:not(:last-child),html.theme--catppuccin-macchiato .content:not(:last-child),html.theme--catppuccin-macchiato .box:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-macchiato .modal-close,html.theme--catppuccin-macchiato .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--catppuccin-macchiato .modal-close::before,html.theme--catppuccin-macchiato .delete::before,html.theme--catppuccin-macchiato .modal-close::after,html.theme--catppuccin-macchiato .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-macchiato .modal-close::before,html.theme--catppuccin-macchiato .delete::before{height:2px;width:50%}html.theme--catppuccin-macchiato .modal-close::after,html.theme--catppuccin-macchiato .delete::after{height:50%;width:2px}html.theme--catppuccin-macchiato .modal-close:hover,html.theme--catppuccin-macchiato .delete:hover,html.theme--catppuccin-macchiato .modal-close:focus,html.theme--catppuccin-macchiato .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--catppuccin-macchiato .modal-close:active,html.theme--catppuccin-macchiato .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--catppuccin-macchiato .is-small.modal-close,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--catppuccin-macchiato .is-small.delete,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--catppuccin-macchiato .is-medium.modal-close,html.theme--catppuccin-macchiato .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--catppuccin-macchiato .is-large.modal-close,html.theme--catppuccin-macchiato .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--catppuccin-macchiato .control.is-loading::after,html.theme--catppuccin-macchiato .select.is-loading::after,html.theme--catppuccin-macchiato .loader,html.theme--catppuccin-macchiato .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #8087a2;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--catppuccin-macchiato .hero-video,html.theme--catppuccin-macchiato .modal-background,html.theme--catppuccin-macchiato .modal,html.theme--catppuccin-macchiato .image.is-square img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-macchiato .image.is-square .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-macchiato .image.is-1by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-macchiato .image.is-1by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-5by4 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-macchiato .image.is-5by4 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-macchiato .image.is-4by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-macchiato .image.is-4by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by2 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-macchiato .image.is-3by2 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-macchiato .image.is-5by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-macchiato .image.is-5by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-16by9 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-macchiato .image.is-16by9 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-macchiato .image.is-2by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-macchiato .image.is-2by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-macchiato .image.is-3by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-4by5 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-macchiato .image.is-4by5 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by4 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-macchiato .image.is-3by4 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-macchiato .image.is-2by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-macchiato .image.is-2by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by5 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-macchiato .image.is-3by5 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-macchiato .image.is-9by16 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-macchiato .image.is-9by16 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-macchiato .image.is-1by2 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-macchiato .image.is-1by2 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-macchiato .image.is-1by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-macchiato .image.is-1by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--catppuccin-macchiato .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#363a4f !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#212431 !important}.has-background-dark{background-color:#363a4f !important}.has-text-primary{color:#8aadf4 !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#5b8cf0 !important}.has-background-primary{background-color:#8aadf4 !important}.has-text-primary-light{color:#ecf2fd !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#bed1f9 !important}.has-background-primary-light{background-color:#ecf2fd !important}.has-text-primary-dark{color:#0e3b95 !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#124dc4 !important}.has-background-primary-dark{background-color:#0e3b95 !important}.has-text-link{color:#8aadf4 !important}a.has-text-link:hover,a.has-text-link:focus{color:#5b8cf0 !important}.has-background-link{background-color:#8aadf4 !important}.has-text-link-light{color:#ecf2fd !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#bed1f9 !important}.has-background-link-light{background-color:#ecf2fd !important}.has-text-link-dark{color:#0e3b95 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#124dc4 !important}.has-background-link-dark{background-color:#0e3b95 !important}.has-text-info{color:#8bd5ca !important}a.has-text-info:hover,a.has-text-info:focus{color:#66c7b9 !important}.has-background-info{background-color:#8bd5ca !important}.has-text-info-light{color:#f0faf8 !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#cbece7 !important}.has-background-info-light{background-color:#f0faf8 !important}.has-text-info-dark{color:#276d62 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#359284 !important}.has-background-info-dark{background-color:#276d62 !important}.has-text-success{color:#a6da95 !important}a.has-text-success:hover,a.has-text-success:focus{color:#86cd6f !important}.has-background-success{background-color:#a6da95 !important}.has-text-success-light{color:#f2faf0 !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#d3edca !important}.has-background-success-light{background-color:#f2faf0 !important}.has-text-success-dark{color:#386e26 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#4b9333 !important}.has-background-success-dark{background-color:#386e26 !important}.has-text-warning{color:#eed49f !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#e6c174 !important}.has-background-warning{background-color:#eed49f !important}.has-text-warning-light{color:#fcf7ee !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#f4e4c2 !important}.has-background-warning-light{background-color:#fcf7ee !important}.has-text-warning-dark{color:#7e5c16 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#a97b1e !important}.has-background-warning-dark{background-color:#7e5c16 !important}.has-text-danger{color:#ed8796 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#e65b6f !important}.has-background-danger{background-color:#ed8796 !important}.has-text-danger-light{color:#fcedef !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f6c1c9 !important}.has-background-danger-light{background-color:#fcedef !important}.has-text-danger-dark{color:#971729 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#c31d36 !important}.has-background-danger-dark{background-color:#971729 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#363a4f !important}.has-background-grey-darker{background-color:#363a4f !important}.has-text-grey-dark{color:#494d64 !important}.has-background-grey-dark{background-color:#494d64 !important}.has-text-grey{color:#5b6078 !important}.has-background-grey{background-color:#5b6078 !important}.has-text-grey-light{color:#6e738d !important}.has-background-grey-light{background-color:#6e738d !important}.has-text-grey-lighter{color:#8087a2 !important}.has-background-grey-lighter{background-color:#8087a2 !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--catppuccin-macchiato html{background-color:#24273a;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-macchiato article,html.theme--catppuccin-macchiato aside,html.theme--catppuccin-macchiato figure,html.theme--catppuccin-macchiato footer,html.theme--catppuccin-macchiato header,html.theme--catppuccin-macchiato hgroup,html.theme--catppuccin-macchiato section{display:block}html.theme--catppuccin-macchiato body,html.theme--catppuccin-macchiato button,html.theme--catppuccin-macchiato input,html.theme--catppuccin-macchiato optgroup,html.theme--catppuccin-macchiato select,html.theme--catppuccin-macchiato textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--catppuccin-macchiato code,html.theme--catppuccin-macchiato pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-macchiato body{color:#cad3f5;font-size:1em;font-weight:400;line-height:1.5}html.theme--catppuccin-macchiato a{color:#8aadf4;cursor:pointer;text-decoration:none}html.theme--catppuccin-macchiato a strong{color:currentColor}html.theme--catppuccin-macchiato a:hover{color:#91d7e3}html.theme--catppuccin-macchiato code{background-color:#1e2030;color:#cad3f5;font-size:.875em;font-weight:normal;padding:.1em}html.theme--catppuccin-macchiato hr{background-color:#1e2030;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--catppuccin-macchiato img{height:auto;max-width:100%}html.theme--catppuccin-macchiato input[type="checkbox"],html.theme--catppuccin-macchiato input[type="radio"]{vertical-align:baseline}html.theme--catppuccin-macchiato small{font-size:.875em}html.theme--catppuccin-macchiato span{font-style:inherit;font-weight:inherit}html.theme--catppuccin-macchiato strong{color:#b5c1f1;font-weight:700}html.theme--catppuccin-macchiato fieldset{border:none}html.theme--catppuccin-macchiato pre{-webkit-overflow-scrolling:touch;background-color:#1e2030;color:#cad3f5;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--catppuccin-macchiato pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--catppuccin-macchiato table td,html.theme--catppuccin-macchiato table th{vertical-align:top}html.theme--catppuccin-macchiato table td:not([align]),html.theme--catppuccin-macchiato table th:not([align]){text-align:inherit}html.theme--catppuccin-macchiato table th{color:#b5c1f1}html.theme--catppuccin-macchiato .box{background-color:#494d64;border-radius:8px;box-shadow:none;color:#cad3f5;display:block;padding:1.25rem}html.theme--catppuccin-macchiato a.box:hover,html.theme--catppuccin-macchiato a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #8aadf4}html.theme--catppuccin-macchiato a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #8aadf4}html.theme--catppuccin-macchiato .button{background-color:#1e2030;border-color:#3b3f5f;border-width:1px;color:#8aadf4;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--catppuccin-macchiato .button strong{color:inherit}html.theme--catppuccin-macchiato .button .icon,html.theme--catppuccin-macchiato .button .icon.is-small,html.theme--catppuccin-macchiato .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--catppuccin-macchiato .button .icon.is-medium,html.theme--catppuccin-macchiato .button .icon.is-large{height:1.5em;width:1.5em}html.theme--catppuccin-macchiato .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--catppuccin-macchiato .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-macchiato .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-macchiato .button:hover,html.theme--catppuccin-macchiato .button.is-hovered{border-color:#6e738d;color:#b5c1f1}html.theme--catppuccin-macchiato .button:focus,html.theme--catppuccin-macchiato .button.is-focused{border-color:#6e738d;color:#739df2}html.theme--catppuccin-macchiato .button:focus:not(:active),html.theme--catppuccin-macchiato .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .button:active,html.theme--catppuccin-macchiato .button.is-active{border-color:#494d64;color:#b5c1f1}html.theme--catppuccin-macchiato .button.is-text{background-color:transparent;border-color:transparent;color:#cad3f5;text-decoration:underline}html.theme--catppuccin-macchiato .button.is-text:hover,html.theme--catppuccin-macchiato .button.is-text.is-hovered,html.theme--catppuccin-macchiato .button.is-text:focus,html.theme--catppuccin-macchiato .button.is-text.is-focused{background-color:#1e2030;color:#b5c1f1}html.theme--catppuccin-macchiato .button.is-text:active,html.theme--catppuccin-macchiato .button.is-text.is-active{background-color:#141620;color:#b5c1f1}html.theme--catppuccin-macchiato .button.is-text[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--catppuccin-macchiato .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#8aadf4;text-decoration:none}html.theme--catppuccin-macchiato .button.is-ghost:hover,html.theme--catppuccin-macchiato .button.is-ghost.is-hovered{color:#8aadf4;text-decoration:underline}html.theme--catppuccin-macchiato .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white:hover,html.theme--catppuccin-macchiato .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white:focus,html.theme--catppuccin-macchiato .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white:focus:not(:active),html.theme--catppuccin-macchiato .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-macchiato .button.is-white:active,html.theme--catppuccin-macchiato .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--catppuccin-macchiato .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--catppuccin-macchiato .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-macchiato .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-white.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-macchiato .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-black:hover,html.theme--catppuccin-macchiato .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-black:focus,html.theme--catppuccin-macchiato .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-black:focus:not(:active),html.theme--catppuccin-macchiato .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-macchiato .button.is-black:active,html.theme--catppuccin-macchiato .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-black[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--catppuccin-macchiato .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-black.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light:hover,html.theme--catppuccin-macchiato .button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light:focus,html.theme--catppuccin-macchiato .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light:focus:not(:active),html.theme--catppuccin-macchiato .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-macchiato .button.is-light:active,html.theme--catppuccin-macchiato .button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}html.theme--catppuccin-macchiato .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-light.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-dark,html.theme--catppuccin-macchiato .content kbd.button{background-color:#363a4f;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-dark:hover,html.theme--catppuccin-macchiato .content kbd.button:hover,html.theme--catppuccin-macchiato .button.is-dark.is-hovered,html.theme--catppuccin-macchiato .content kbd.button.is-hovered{background-color:#313447;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-dark:focus,html.theme--catppuccin-macchiato .content kbd.button:focus,html.theme--catppuccin-macchiato .button.is-dark.is-focused,html.theme--catppuccin-macchiato .content kbd.button.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-dark:focus:not(:active),html.theme--catppuccin-macchiato .content kbd.button:focus:not(:active),html.theme--catppuccin-macchiato .button.is-dark.is-focused:not(:active),html.theme--catppuccin-macchiato .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(54,58,79,0.25)}html.theme--catppuccin-macchiato .button.is-dark:active,html.theme--catppuccin-macchiato .content kbd.button:active,html.theme--catppuccin-macchiato .button.is-dark.is-active,html.theme--catppuccin-macchiato .content kbd.button.is-active{background-color:#2c2f40;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-dark[disabled],html.theme--catppuccin-macchiato .content kbd.button[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-dark,fieldset[disabled] html.theme--catppuccin-macchiato .content kbd.button{background-color:#363a4f;border-color:#363a4f;box-shadow:none}html.theme--catppuccin-macchiato .button.is-dark.is-inverted,html.theme--catppuccin-macchiato .content kbd.button.is-inverted{background-color:#fff;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-inverted:hover,html.theme--catppuccin-macchiato .content kbd.button.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-hovered,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-dark.is-inverted[disabled],html.theme--catppuccin-macchiato .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-dark.is-inverted,fieldset[disabled] html.theme--catppuccin-macchiato .content kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-loading::after,html.theme--catppuccin-macchiato .content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-dark.is-outlined,html.theme--catppuccin-macchiato .content kbd.button.is-outlined{background-color:transparent;border-color:#363a4f;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-outlined:hover,html.theme--catppuccin-macchiato .content kbd.button.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-hovered,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-dark.is-outlined:focus,html.theme--catppuccin-macchiato .content kbd.button.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-focused,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-focused{background-color:#363a4f;border-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #363a4f #363a4f !important}html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-macchiato .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-dark.is-outlined[disabled],html.theme--catppuccin-macchiato .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-dark.is-outlined,fieldset[disabled] html.theme--catppuccin-macchiato .content kbd.button.is-outlined{background-color:transparent;border-color:#363a4f;box-shadow:none;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363a4f}html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363a4f #363a4f !important}html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined[disabled],html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-macchiato .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink{background-color:#8aadf4;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-primary:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#7ea5f3;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-primary:focus,html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink:focus,html.theme--catppuccin-macchiato .button.is-primary.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-primary:focus:not(:active),html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--catppuccin-macchiato .button.is-primary.is-focused:not(:active),html.theme--catppuccin-macchiato .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .button.is-primary:active,html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink:active,html.theme--catppuccin-macchiato .button.is-primary.is-active,html.theme--catppuccin-macchiato .docstring>section>a.button.is-active.docs-sourcelink{background-color:#739df2;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-primary[disabled],html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-primary,fieldset[disabled] html.theme--catppuccin-macchiato .docstring>section>a.button.docs-sourcelink{background-color:#8aadf4;border-color:#8aadf4;box-shadow:none}html.theme--catppuccin-macchiato .button.is-primary.is-inverted,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-inverted:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-primary.is-inverted[disabled],html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-primary.is-inverted,fieldset[disabled] html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-loading::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-primary.is-outlined,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#8aadf4;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-outlined:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-macchiato .button.is-primary.is-outlined:focus,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #8aadf4 #8aadf4 !important}html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-macchiato .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-primary.is-outlined[disabled],html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-primary.is-outlined,fieldset[disabled] html.theme--catppuccin-macchiato .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#8aadf4;box-shadow:none;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #8aadf4 #8aadf4 !important}html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined[disabled],html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-macchiato .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-primary.is-light,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.docs-sourcelink{background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-primary.is-light:hover,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--catppuccin-macchiato .button.is-primary.is-light.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#e1eafc;border-color:transparent;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-primary.is-light:active,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--catppuccin-macchiato .button.is-primary.is-light.is-active,html.theme--catppuccin-macchiato .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d5e2fb;border-color:transparent;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-link{background-color:#8aadf4;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-link:hover,html.theme--catppuccin-macchiato .button.is-link.is-hovered{background-color:#7ea5f3;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-link:focus,html.theme--catppuccin-macchiato .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-link:focus:not(:active),html.theme--catppuccin-macchiato .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .button.is-link:active,html.theme--catppuccin-macchiato .button.is-link.is-active{background-color:#739df2;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-link[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-link{background-color:#8aadf4;border-color:#8aadf4;box-shadow:none}html.theme--catppuccin-macchiato .button.is-link.is-inverted{background-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-link.is-outlined{background-color:transparent;border-color:#8aadf4;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-link.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-focused{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #8aadf4 #8aadf4 !important}html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-link.is-outlined{background-color:transparent;border-color:#8aadf4;box-shadow:none;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #8aadf4 #8aadf4 !important}html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-link.is-light{background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-link.is-light:hover,html.theme--catppuccin-macchiato .button.is-link.is-light.is-hovered{background-color:#e1eafc;border-color:transparent;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-link.is-light:active,html.theme--catppuccin-macchiato .button.is-link.is-light.is-active{background-color:#d5e2fb;border-color:transparent;color:#0e3b95}html.theme--catppuccin-macchiato .button.is-info{background-color:#8bd5ca;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info:hover,html.theme--catppuccin-macchiato .button.is-info.is-hovered{background-color:#82d2c6;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info:focus,html.theme--catppuccin-macchiato .button.is-info.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info:focus:not(:active),html.theme--catppuccin-macchiato .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(139,213,202,0.25)}html.theme--catppuccin-macchiato .button.is-info:active,html.theme--catppuccin-macchiato .button.is-info.is-active{background-color:#78cec1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-info{background-color:#8bd5ca;border-color:#8bd5ca;box-shadow:none}html.theme--catppuccin-macchiato .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-info.is-outlined{background-color:transparent;border-color:#8bd5ca;color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-info.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-focused{background-color:#8bd5ca;border-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #8bd5ca #8bd5ca !important}html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-info.is-outlined{background-color:transparent;border-color:#8bd5ca;box-shadow:none;color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#8bd5ca}html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #8bd5ca #8bd5ca !important}html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-info.is-light{background-color:#f0faf8;color:#276d62}html.theme--catppuccin-macchiato .button.is-info.is-light:hover,html.theme--catppuccin-macchiato .button.is-info.is-light.is-hovered{background-color:#e7f6f4;border-color:transparent;color:#276d62}html.theme--catppuccin-macchiato .button.is-info.is-light:active,html.theme--catppuccin-macchiato .button.is-info.is-light.is-active{background-color:#ddf3f0;border-color:transparent;color:#276d62}html.theme--catppuccin-macchiato .button.is-success{background-color:#a6da95;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success:hover,html.theme--catppuccin-macchiato .button.is-success.is-hovered{background-color:#9ed78c;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success:focus,html.theme--catppuccin-macchiato .button.is-success.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success:focus:not(:active),html.theme--catppuccin-macchiato .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(166,218,149,0.25)}html.theme--catppuccin-macchiato .button.is-success:active,html.theme--catppuccin-macchiato .button.is-success.is-active{background-color:#96d382;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-success{background-color:#a6da95;border-color:#a6da95;box-shadow:none}html.theme--catppuccin-macchiato .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-success.is-outlined{background-color:transparent;border-color:#a6da95;color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-success.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-focused{background-color:#a6da95;border-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #a6da95 #a6da95 !important}html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-success.is-outlined{background-color:transparent;border-color:#a6da95;box-shadow:none;color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#a6da95}html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #a6da95 #a6da95 !important}html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-success.is-light{background-color:#f2faf0;color:#386e26}html.theme--catppuccin-macchiato .button.is-success.is-light:hover,html.theme--catppuccin-macchiato .button.is-success.is-light.is-hovered{background-color:#eaf6e6;border-color:transparent;color:#386e26}html.theme--catppuccin-macchiato .button.is-success.is-light:active,html.theme--catppuccin-macchiato .button.is-success.is-light.is-active{background-color:#e2f3dd;border-color:transparent;color:#386e26}html.theme--catppuccin-macchiato .button.is-warning{background-color:#eed49f;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning:hover,html.theme--catppuccin-macchiato .button.is-warning.is-hovered{background-color:#eccf94;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning:focus,html.theme--catppuccin-macchiato .button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning:focus:not(:active),html.theme--catppuccin-macchiato .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(238,212,159,0.25)}html.theme--catppuccin-macchiato .button.is-warning:active,html.theme--catppuccin-macchiato .button.is-warning.is-active{background-color:#eaca89;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-warning{background-color:#eed49f;border-color:#eed49f;box-shadow:none}html.theme--catppuccin-macchiato .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-warning.is-outlined{background-color:transparent;border-color:#eed49f;color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-warning.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-focused{background-color:#eed49f;border-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #eed49f #eed49f !important}html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-macchiato .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-warning.is-outlined{background-color:transparent;border-color:#eed49f;box-shadow:none;color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#eed49f}html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #eed49f #eed49f !important}html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .button.is-warning.is-light{background-color:#fcf7ee;color:#7e5c16}html.theme--catppuccin-macchiato .button.is-warning.is-light:hover,html.theme--catppuccin-macchiato .button.is-warning.is-light.is-hovered{background-color:#faf2e3;border-color:transparent;color:#7e5c16}html.theme--catppuccin-macchiato .button.is-warning.is-light:active,html.theme--catppuccin-macchiato .button.is-warning.is-light.is-active{background-color:#f8eed8;border-color:transparent;color:#7e5c16}html.theme--catppuccin-macchiato .button.is-danger{background-color:#ed8796;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-danger:hover,html.theme--catppuccin-macchiato .button.is-danger.is-hovered{background-color:#eb7c8c;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-danger:focus,html.theme--catppuccin-macchiato .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-danger:focus:not(:active),html.theme--catppuccin-macchiato .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(237,135,150,0.25)}html.theme--catppuccin-macchiato .button.is-danger:active,html.theme--catppuccin-macchiato .button.is-danger.is-active{background-color:#ea7183;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .button.is-danger[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-danger{background-color:#ed8796;border-color:#ed8796;box-shadow:none}html.theme--catppuccin-macchiato .button.is-danger.is-inverted{background-color:#fff;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-inverted:hover,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-macchiato .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-danger.is-outlined{background-color:transparent;border-color:#ed8796;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-danger.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-focused{background-color:#ed8796;border-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #ed8796 #ed8796 !important}html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-macchiato .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-danger.is-outlined{background-color:transparent;border-color:#ed8796;box-shadow:none;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined:hover,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined:focus,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#ed8796}html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ed8796 #ed8796 !important}html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-macchiato .button.is-danger.is-light{background-color:#fcedef;color:#971729}html.theme--catppuccin-macchiato .button.is-danger.is-light:hover,html.theme--catppuccin-macchiato .button.is-danger.is-light.is-hovered{background-color:#fbe2e6;border-color:transparent;color:#971729}html.theme--catppuccin-macchiato .button.is-danger.is-light:active,html.theme--catppuccin-macchiato .button.is-danger.is-light.is-active{background-color:#f9d7dc;border-color:transparent;color:#971729}html.theme--catppuccin-macchiato .button.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--catppuccin-macchiato .button.is-small:not(.is-rounded),html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--catppuccin-macchiato .button.is-normal{font-size:1rem}html.theme--catppuccin-macchiato .button.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .button.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .button[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .button{background-color:#6e738d;border-color:#5b6078;box-shadow:none;opacity:.5}html.theme--catppuccin-macchiato .button.is-fullwidth{display:flex;width:100%}html.theme--catppuccin-macchiato .button.is-loading{color:transparent !important;pointer-events:none}html.theme--catppuccin-macchiato .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--catppuccin-macchiato .button.is-static{background-color:#1e2030;border-color:#5b6078;color:#8087a2;box-shadow:none;pointer-events:none}html.theme--catppuccin-macchiato .button.is-rounded,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--catppuccin-macchiato .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-macchiato .buttons .button{margin-bottom:0.5rem}html.theme--catppuccin-macchiato .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--catppuccin-macchiato .buttons:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-macchiato .buttons:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-macchiato .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--catppuccin-macchiato .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--catppuccin-macchiato .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--catppuccin-macchiato .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--catppuccin-macchiato .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-macchiato .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--catppuccin-macchiato .buttons.has-addons .button:last-child{margin-right:0}html.theme--catppuccin-macchiato .buttons.has-addons .button:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-hovered{z-index:2}html.theme--catppuccin-macchiato .buttons.has-addons .button:focus,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-focused,html.theme--catppuccin-macchiato .buttons.has-addons .button:active,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-active,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-selected{z-index:3}html.theme--catppuccin-macchiato .buttons.has-addons .button:focus:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-focused:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button:active:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-active:hover,html.theme--catppuccin-macchiato .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--catppuccin-macchiato .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .buttons.is-centered{justify-content:center}html.theme--catppuccin-macchiato .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--catppuccin-macchiato .buttons.is-right{justify-content:flex-end}html.theme--catppuccin-macchiato .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .button.is-responsive.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--catppuccin-macchiato .button.is-responsive,html.theme--catppuccin-macchiato .button.is-responsive.is-normal{font-size:.65625rem}html.theme--catppuccin-macchiato .button.is-responsive.is-medium{font-size:.75rem}html.theme--catppuccin-macchiato .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .button.is-responsive.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--catppuccin-macchiato .button.is-responsive,html.theme--catppuccin-macchiato .button.is-responsive.is-normal{font-size:.75rem}html.theme--catppuccin-macchiato .button.is-responsive.is-medium{font-size:1rem}html.theme--catppuccin-macchiato .button.is-responsive.is-large{font-size:1.25rem}}html.theme--catppuccin-macchiato .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--catppuccin-macchiato .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--catppuccin-macchiato .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--catppuccin-macchiato .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--catppuccin-macchiato .content li+li{margin-top:0.25em}html.theme--catppuccin-macchiato .content p:not(:last-child),html.theme--catppuccin-macchiato .content dl:not(:last-child),html.theme--catppuccin-macchiato .content ol:not(:last-child),html.theme--catppuccin-macchiato .content ul:not(:last-child),html.theme--catppuccin-macchiato .content blockquote:not(:last-child),html.theme--catppuccin-macchiato .content pre:not(:last-child),html.theme--catppuccin-macchiato .content table:not(:last-child){margin-bottom:1em}html.theme--catppuccin-macchiato .content h1,html.theme--catppuccin-macchiato .content h2,html.theme--catppuccin-macchiato .content h3,html.theme--catppuccin-macchiato .content h4,html.theme--catppuccin-macchiato .content h5,html.theme--catppuccin-macchiato .content h6{color:#cad3f5;font-weight:600;line-height:1.125}html.theme--catppuccin-macchiato .content h1{font-size:2em;margin-bottom:0.5em}html.theme--catppuccin-macchiato .content h1:not(:first-child){margin-top:1em}html.theme--catppuccin-macchiato .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--catppuccin-macchiato .content h2:not(:first-child){margin-top:1.1428em}html.theme--catppuccin-macchiato .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--catppuccin-macchiato .content h3:not(:first-child){margin-top:1.3333em}html.theme--catppuccin-macchiato .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--catppuccin-macchiato .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--catppuccin-macchiato .content h6{font-size:1em;margin-bottom:1em}html.theme--catppuccin-macchiato .content blockquote{background-color:#1e2030;border-left:5px solid #5b6078;padding:1.25em 1.5em}html.theme--catppuccin-macchiato .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-macchiato .content ol:not([type]){list-style-type:decimal}html.theme--catppuccin-macchiato .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--catppuccin-macchiato .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--catppuccin-macchiato .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--catppuccin-macchiato .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--catppuccin-macchiato .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-macchiato .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--catppuccin-macchiato .content ul ul ul{list-style-type:square}html.theme--catppuccin-macchiato .content dd{margin-left:2em}html.theme--catppuccin-macchiato .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--catppuccin-macchiato .content figure:not(:first-child){margin-top:2em}html.theme--catppuccin-macchiato .content figure:not(:last-child){margin-bottom:2em}html.theme--catppuccin-macchiato .content figure img{display:inline-block}html.theme--catppuccin-macchiato .content figure figcaption{font-style:italic}html.theme--catppuccin-macchiato .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--catppuccin-macchiato .content sup,html.theme--catppuccin-macchiato .content sub{font-size:75%}html.theme--catppuccin-macchiato .content table{width:100%}html.theme--catppuccin-macchiato .content table td,html.theme--catppuccin-macchiato .content table th{border:1px solid #5b6078;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-macchiato .content table th{color:#b5c1f1}html.theme--catppuccin-macchiato .content table th:not([align]){text-align:inherit}html.theme--catppuccin-macchiato .content table thead td,html.theme--catppuccin-macchiato .content table thead th{border-width:0 0 2px;color:#b5c1f1}html.theme--catppuccin-macchiato .content table tfoot td,html.theme--catppuccin-macchiato .content table tfoot th{border-width:2px 0 0;color:#b5c1f1}html.theme--catppuccin-macchiato .content table tbody tr:last-child td,html.theme--catppuccin-macchiato .content table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-macchiato .content .tabs li+li{margin-top:0}html.theme--catppuccin-macchiato .content.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--catppuccin-macchiato .content.is-normal{font-size:1rem}html.theme--catppuccin-macchiato .content.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .content.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--catppuccin-macchiato .icon.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--catppuccin-macchiato .icon.is-medium{height:2rem;width:2rem}html.theme--catppuccin-macchiato .icon.is-large{height:3rem;width:3rem}html.theme--catppuccin-macchiato .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--catppuccin-macchiato .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--catppuccin-macchiato .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--catppuccin-macchiato div.icon-text{display:flex}html.theme--catppuccin-macchiato .image,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--catppuccin-macchiato .image img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--catppuccin-macchiato .image img.is-rounded,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--catppuccin-macchiato .image.is-fullwidth,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--catppuccin-macchiato .image.is-square img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-macchiato .image.is-square .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-macchiato .image.is-1by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-macchiato .image.is-1by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-5by4 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-macchiato .image.is-5by4 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-macchiato .image.is-4by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-macchiato .image.is-4by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by2 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-macchiato .image.is-3by2 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-macchiato .image.is-5by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-macchiato .image.is-5by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-16by9 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-macchiato .image.is-16by9 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-macchiato .image.is-2by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-macchiato .image.is-2by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by1 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-macchiato .image.is-3by1 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-macchiato .image.is-4by5 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-macchiato .image.is-4by5 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by4 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-macchiato .image.is-3by4 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-macchiato .image.is-2by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-macchiato .image.is-2by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-macchiato .image.is-3by5 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-macchiato .image.is-3by5 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-macchiato .image.is-9by16 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-macchiato .image.is-9by16 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-macchiato .image.is-1by2 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-macchiato .image.is-1by2 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-macchiato .image.is-1by3 img,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-macchiato .image.is-1by3 .has-ratio,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--catppuccin-macchiato .image.is-square,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--catppuccin-macchiato .image.is-1by1,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--catppuccin-macchiato .image.is-5by4,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--catppuccin-macchiato .image.is-4by3,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--catppuccin-macchiato .image.is-3by2,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--catppuccin-macchiato .image.is-5by3,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--catppuccin-macchiato .image.is-16by9,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--catppuccin-macchiato .image.is-2by1,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--catppuccin-macchiato .image.is-3by1,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--catppuccin-macchiato .image.is-4by5,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--catppuccin-macchiato .image.is-3by4,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--catppuccin-macchiato .image.is-2by3,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--catppuccin-macchiato .image.is-3by5,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--catppuccin-macchiato .image.is-9by16,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--catppuccin-macchiato .image.is-1by2,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--catppuccin-macchiato .image.is-1by3,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--catppuccin-macchiato .image.is-16x16,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--catppuccin-macchiato .image.is-24x24,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--catppuccin-macchiato .image.is-32x32,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--catppuccin-macchiato .image.is-48x48,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--catppuccin-macchiato .image.is-64x64,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--catppuccin-macchiato .image.is-96x96,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--catppuccin-macchiato .image.is-128x128,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--catppuccin-macchiato .notification{background-color:#1e2030;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--catppuccin-macchiato .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-macchiato .notification strong{color:currentColor}html.theme--catppuccin-macchiato .notification code,html.theme--catppuccin-macchiato .notification pre{background:#fff}html.theme--catppuccin-macchiato .notification pre code{background:transparent}html.theme--catppuccin-macchiato .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--catppuccin-macchiato .notification .title,html.theme--catppuccin-macchiato .notification .subtitle,html.theme--catppuccin-macchiato .notification .content{color:currentColor}html.theme--catppuccin-macchiato .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .notification.is-dark,html.theme--catppuccin-macchiato .content kbd.notification{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .notification.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.notification.docs-sourcelink{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .notification.is-primary.is-light,html.theme--catppuccin-macchiato .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .notification.is-link{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .notification.is-link.is-light{background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .notification.is-info{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .notification.is-info.is-light{background-color:#f0faf8;color:#276d62}html.theme--catppuccin-macchiato .notification.is-success{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .notification.is-success.is-light{background-color:#f2faf0;color:#386e26}html.theme--catppuccin-macchiato .notification.is-warning{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .notification.is-warning.is-light{background-color:#fcf7ee;color:#7e5c16}html.theme--catppuccin-macchiato .notification.is-danger{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .notification.is-danger.is-light{background-color:#fcedef;color:#971729}html.theme--catppuccin-macchiato .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--catppuccin-macchiato .progress::-webkit-progress-bar{background-color:#494d64}html.theme--catppuccin-macchiato .progress::-webkit-progress-value{background-color:#8087a2}html.theme--catppuccin-macchiato .progress::-moz-progress-bar{background-color:#8087a2}html.theme--catppuccin-macchiato .progress::-ms-fill{background-color:#8087a2;border:none}html.theme--catppuccin-macchiato .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--catppuccin-macchiato .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--catppuccin-macchiato .progress.is-white::-ms-fill{background-color:#fff}html.theme--catppuccin-macchiato .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--catppuccin-macchiato .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--catppuccin-macchiato .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--catppuccin-macchiato .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-light::-webkit-progress-value{background-color:#f5f5f5}html.theme--catppuccin-macchiato .progress.is-light::-moz-progress-bar{background-color:#f5f5f5}html.theme--catppuccin-macchiato .progress.is-light::-ms-fill{background-color:#f5f5f5}html.theme--catppuccin-macchiato .progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-dark::-webkit-progress-value,html.theme--catppuccin-macchiato .content kbd.progress::-webkit-progress-value{background-color:#363a4f}html.theme--catppuccin-macchiato .progress.is-dark::-moz-progress-bar,html.theme--catppuccin-macchiato .content kbd.progress::-moz-progress-bar{background-color:#363a4f}html.theme--catppuccin-macchiato .progress.is-dark::-ms-fill,html.theme--catppuccin-macchiato .content kbd.progress::-ms-fill{background-color:#363a4f}html.theme--catppuccin-macchiato .progress.is-dark:indeterminate,html.theme--catppuccin-macchiato .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #363a4f 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-primary::-webkit-progress-value,html.theme--catppuccin-macchiato .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-primary::-moz-progress-bar,html.theme--catppuccin-macchiato .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-primary::-ms-fill,html.theme--catppuccin-macchiato .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-primary:indeterminate,html.theme--catppuccin-macchiato .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #8aadf4 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-link::-webkit-progress-value{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-link::-moz-progress-bar{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-link::-ms-fill{background-color:#8aadf4}html.theme--catppuccin-macchiato .progress.is-link:indeterminate{background-image:linear-gradient(to right, #8aadf4 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-info::-webkit-progress-value{background-color:#8bd5ca}html.theme--catppuccin-macchiato .progress.is-info::-moz-progress-bar{background-color:#8bd5ca}html.theme--catppuccin-macchiato .progress.is-info::-ms-fill{background-color:#8bd5ca}html.theme--catppuccin-macchiato .progress.is-info:indeterminate{background-image:linear-gradient(to right, #8bd5ca 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-success::-webkit-progress-value{background-color:#a6da95}html.theme--catppuccin-macchiato .progress.is-success::-moz-progress-bar{background-color:#a6da95}html.theme--catppuccin-macchiato .progress.is-success::-ms-fill{background-color:#a6da95}html.theme--catppuccin-macchiato .progress.is-success:indeterminate{background-image:linear-gradient(to right, #a6da95 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-warning::-webkit-progress-value{background-color:#eed49f}html.theme--catppuccin-macchiato .progress.is-warning::-moz-progress-bar{background-color:#eed49f}html.theme--catppuccin-macchiato .progress.is-warning::-ms-fill{background-color:#eed49f}html.theme--catppuccin-macchiato .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #eed49f 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress.is-danger::-webkit-progress-value{background-color:#ed8796}html.theme--catppuccin-macchiato .progress.is-danger::-moz-progress-bar{background-color:#ed8796}html.theme--catppuccin-macchiato .progress.is-danger::-ms-fill{background-color:#ed8796}html.theme--catppuccin-macchiato .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #ed8796 30%, #494d64 30%)}html.theme--catppuccin-macchiato .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#494d64;background-image:linear-gradient(to right, #cad3f5 30%, #494d64 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--catppuccin-macchiato .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--catppuccin-macchiato .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--catppuccin-macchiato .progress:indeterminate::-ms-fill{animation-name:none}html.theme--catppuccin-macchiato .progress.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--catppuccin-macchiato .progress.is-medium{height:1.25rem}html.theme--catppuccin-macchiato .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--catppuccin-macchiato .table{background-color:#494d64;color:#cad3f5}html.theme--catppuccin-macchiato .table td,html.theme--catppuccin-macchiato .table th{border:1px solid #5b6078;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-macchiato .table td.is-white,html.theme--catppuccin-macchiato .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .table td.is-black,html.theme--catppuccin-macchiato .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .table td.is-light,html.theme--catppuccin-macchiato .table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .table td.is-dark,html.theme--catppuccin-macchiato .table th.is-dark{background-color:#363a4f;border-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .table td.is-primary,html.theme--catppuccin-macchiato .table th.is-primary{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .table td.is-link,html.theme--catppuccin-macchiato .table th.is-link{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .table td.is-info,html.theme--catppuccin-macchiato .table th.is-info{background-color:#8bd5ca;border-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .table td.is-success,html.theme--catppuccin-macchiato .table th.is-success{background-color:#a6da95;border-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .table td.is-warning,html.theme--catppuccin-macchiato .table th.is-warning{background-color:#eed49f;border-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .table td.is-danger,html.theme--catppuccin-macchiato .table th.is-danger{background-color:#ed8796;border-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .table td.is-narrow,html.theme--catppuccin-macchiato .table th.is-narrow{white-space:nowrap;width:1%}html.theme--catppuccin-macchiato .table td.is-selected,html.theme--catppuccin-macchiato .table th.is-selected{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .table td.is-selected a,html.theme--catppuccin-macchiato .table td.is-selected strong,html.theme--catppuccin-macchiato .table th.is-selected a,html.theme--catppuccin-macchiato .table th.is-selected strong{color:currentColor}html.theme--catppuccin-macchiato .table td.is-vcentered,html.theme--catppuccin-macchiato .table th.is-vcentered{vertical-align:middle}html.theme--catppuccin-macchiato .table th{color:#b5c1f1}html.theme--catppuccin-macchiato .table th:not([align]){text-align:left}html.theme--catppuccin-macchiato .table tr.is-selected{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .table tr.is-selected a,html.theme--catppuccin-macchiato .table tr.is-selected strong{color:currentColor}html.theme--catppuccin-macchiato .table tr.is-selected td,html.theme--catppuccin-macchiato .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--catppuccin-macchiato .table thead{background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .table thead td,html.theme--catppuccin-macchiato .table thead th{border-width:0 0 2px;color:#b5c1f1}html.theme--catppuccin-macchiato .table tfoot{background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .table tfoot td,html.theme--catppuccin-macchiato .table tfoot th{border-width:2px 0 0;color:#b5c1f1}html.theme--catppuccin-macchiato .table tbody{background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .table tbody tr:last-child td,html.theme--catppuccin-macchiato .table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-macchiato .table.is-bordered td,html.theme--catppuccin-macchiato .table.is-bordered th{border-width:1px}html.theme--catppuccin-macchiato .table.is-bordered tr:last-child td,html.theme--catppuccin-macchiato .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--catppuccin-macchiato .table.is-fullwidth{width:100%}html.theme--catppuccin-macchiato .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#363a4f}html.theme--catppuccin-macchiato .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#363a4f}html.theme--catppuccin-macchiato .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#3a3e55}html.theme--catppuccin-macchiato .table.is-narrow td,html.theme--catppuccin-macchiato .table.is-narrow th{padding:0.25em 0.5em}html.theme--catppuccin-macchiato .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#363a4f}html.theme--catppuccin-macchiato .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--catppuccin-macchiato .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-macchiato .tags .tag,html.theme--catppuccin-macchiato .tags .content kbd,html.theme--catppuccin-macchiato .content .tags kbd,html.theme--catppuccin-macchiato .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--catppuccin-macchiato .tags .tag:not(:last-child),html.theme--catppuccin-macchiato .tags .content kbd:not(:last-child),html.theme--catppuccin-macchiato .content .tags kbd:not(:last-child),html.theme--catppuccin-macchiato .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--catppuccin-macchiato .tags:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-macchiato .tags:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-macchiato .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--catppuccin-macchiato .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-macchiato .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-macchiato .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--catppuccin-macchiato .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--catppuccin-macchiato .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-macchiato .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-macchiato .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--catppuccin-macchiato .tags.is-centered{justify-content:center}html.theme--catppuccin-macchiato .tags.is-centered .tag,html.theme--catppuccin-macchiato .tags.is-centered .content kbd,html.theme--catppuccin-macchiato .content .tags.is-centered kbd,html.theme--catppuccin-macchiato .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--catppuccin-macchiato .tags.is-right{justify-content:flex-end}html.theme--catppuccin-macchiato .tags.is-right .tag:not(:first-child),html.theme--catppuccin-macchiato .tags.is-right .content kbd:not(:first-child),html.theme--catppuccin-macchiato .content .tags.is-right kbd:not(:first-child),html.theme--catppuccin-macchiato .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--catppuccin-macchiato .tags.is-right .tag:not(:last-child),html.theme--catppuccin-macchiato .tags.is-right .content kbd:not(:last-child),html.theme--catppuccin-macchiato .content .tags.is-right kbd:not(:last-child),html.theme--catppuccin-macchiato .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--catppuccin-macchiato .tags.has-addons .tag,html.theme--catppuccin-macchiato .tags.has-addons .content kbd,html.theme--catppuccin-macchiato .content .tags.has-addons kbd,html.theme--catppuccin-macchiato .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--catppuccin-macchiato .tags.has-addons .tag:not(:first-child),html.theme--catppuccin-macchiato .tags.has-addons .content kbd:not(:first-child),html.theme--catppuccin-macchiato .content .tags.has-addons kbd:not(:first-child),html.theme--catppuccin-macchiato .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--catppuccin-macchiato .tags.has-addons .tag:not(:last-child),html.theme--catppuccin-macchiato .tags.has-addons .content kbd:not(:last-child),html.theme--catppuccin-macchiato .content .tags.has-addons kbd:not(:last-child),html.theme--catppuccin-macchiato .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--catppuccin-macchiato .tag:not(body),html.theme--catppuccin-macchiato .content kbd:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#1e2030;border-radius:.4em;color:#cad3f5;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--catppuccin-macchiato .tag:not(body) .delete,html.theme--catppuccin-macchiato .content kbd:not(body) .delete,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--catppuccin-macchiato .tag.is-white:not(body),html.theme--catppuccin-macchiato .content kbd.is-white:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .tag.is-black:not(body),html.theme--catppuccin-macchiato .content kbd.is-black:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .tag.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .tag.is-dark:not(body),html.theme--catppuccin-macchiato .content kbd:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--catppuccin-macchiato .content .docstring>section>kbd:not(body){background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .tag.is-primary:not(body),html.theme--catppuccin-macchiato .content kbd.is-primary:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body){background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .tag.is-primary.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-primary.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .tag.is-link:not(body),html.theme--catppuccin-macchiato .content kbd.is-link:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .tag.is-link.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-link.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#ecf2fd;color:#0e3b95}html.theme--catppuccin-macchiato .tag.is-info:not(body),html.theme--catppuccin-macchiato .content kbd.is-info:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .tag.is-info.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-info.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#f0faf8;color:#276d62}html.theme--catppuccin-macchiato .tag.is-success:not(body),html.theme--catppuccin-macchiato .content kbd.is-success:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .tag.is-success.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-success.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#f2faf0;color:#386e26}html.theme--catppuccin-macchiato .tag.is-warning:not(body),html.theme--catppuccin-macchiato .content kbd.is-warning:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .tag.is-warning.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-warning.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fcf7ee;color:#7e5c16}html.theme--catppuccin-macchiato .tag.is-danger:not(body),html.theme--catppuccin-macchiato .content kbd.is-danger:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .tag.is-danger.is-light:not(body),html.theme--catppuccin-macchiato .content kbd.is-danger.is-light:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fcedef;color:#971729}html.theme--catppuccin-macchiato .tag.is-normal:not(body),html.theme--catppuccin-macchiato .content kbd.is-normal:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--catppuccin-macchiato .tag.is-medium:not(body),html.theme--catppuccin-macchiato .content kbd.is-medium:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--catppuccin-macchiato .tag.is-large:not(body),html.theme--catppuccin-macchiato .content kbd.is-large:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--catppuccin-macchiato .tag:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-macchiato .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--catppuccin-macchiato .tag:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-macchiato .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--catppuccin-macchiato .tag:not(body) .icon:first-child:last-child,html.theme--catppuccin-macchiato .content kbd:not(body) .icon:first-child:last-child,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--catppuccin-macchiato .tag.is-delete:not(body),html.theme--catppuccin-macchiato .content kbd.is-delete:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--catppuccin-macchiato .tag.is-delete:not(body)::before,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body)::before,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--catppuccin-macchiato .tag.is-delete:not(body)::after,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body)::after,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-macchiato .tag.is-delete:not(body)::before,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body)::before,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--catppuccin-macchiato .tag.is-delete:not(body)::after,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body)::after,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--catppuccin-macchiato .tag.is-delete:not(body):hover,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body):hover,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--catppuccin-macchiato .tag.is-delete:not(body):focus,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body):focus,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#141620}html.theme--catppuccin-macchiato .tag.is-delete:not(body):active,html.theme--catppuccin-macchiato .content kbd.is-delete:not(body):active,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#0a0b11}html.theme--catppuccin-macchiato .tag.is-rounded:not(body),html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--catppuccin-macchiato .content kbd.is-rounded:not(body),html.theme--catppuccin-macchiato #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--catppuccin-macchiato a.tag:hover,html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--catppuccin-macchiato .title,html.theme--catppuccin-macchiato .subtitle{word-break:break-word}html.theme--catppuccin-macchiato .title em,html.theme--catppuccin-macchiato .title span,html.theme--catppuccin-macchiato .subtitle em,html.theme--catppuccin-macchiato .subtitle span{font-weight:inherit}html.theme--catppuccin-macchiato .title sub,html.theme--catppuccin-macchiato .subtitle sub{font-size:.75em}html.theme--catppuccin-macchiato .title sup,html.theme--catppuccin-macchiato .subtitle sup{font-size:.75em}html.theme--catppuccin-macchiato .title .tag,html.theme--catppuccin-macchiato .title .content kbd,html.theme--catppuccin-macchiato .content .title kbd,html.theme--catppuccin-macchiato .title .docstring>section>a.docs-sourcelink,html.theme--catppuccin-macchiato .subtitle .tag,html.theme--catppuccin-macchiato .subtitle .content kbd,html.theme--catppuccin-macchiato .content .subtitle kbd,html.theme--catppuccin-macchiato .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--catppuccin-macchiato .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--catppuccin-macchiato .title strong{color:inherit;font-weight:inherit}html.theme--catppuccin-macchiato .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--catppuccin-macchiato .title.is-1{font-size:3rem}html.theme--catppuccin-macchiato .title.is-2{font-size:2.5rem}html.theme--catppuccin-macchiato .title.is-3{font-size:2rem}html.theme--catppuccin-macchiato .title.is-4{font-size:1.5rem}html.theme--catppuccin-macchiato .title.is-5{font-size:1.25rem}html.theme--catppuccin-macchiato .title.is-6{font-size:1rem}html.theme--catppuccin-macchiato .title.is-7{font-size:.75rem}html.theme--catppuccin-macchiato .subtitle{color:#6e738d;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--catppuccin-macchiato .subtitle strong{color:#6e738d;font-weight:600}html.theme--catppuccin-macchiato .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--catppuccin-macchiato .subtitle.is-1{font-size:3rem}html.theme--catppuccin-macchiato .subtitle.is-2{font-size:2.5rem}html.theme--catppuccin-macchiato .subtitle.is-3{font-size:2rem}html.theme--catppuccin-macchiato .subtitle.is-4{font-size:1.5rem}html.theme--catppuccin-macchiato .subtitle.is-5{font-size:1.25rem}html.theme--catppuccin-macchiato .subtitle.is-6{font-size:1rem}html.theme--catppuccin-macchiato .subtitle.is-7{font-size:.75rem}html.theme--catppuccin-macchiato .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--catppuccin-macchiato .number{align-items:center;background-color:#1e2030;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--catppuccin-macchiato .select select,html.theme--catppuccin-macchiato .textarea,html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{background-color:#24273a;border-color:#5b6078;border-radius:.4em;color:#8087a2}html.theme--catppuccin-macchiato .select select::-moz-placeholder,html.theme--catppuccin-macchiato .textarea::-moz-placeholder,html.theme--catppuccin-macchiato .input::-moz-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--catppuccin-macchiato .select select::-webkit-input-placeholder,html.theme--catppuccin-macchiato .textarea::-webkit-input-placeholder,html.theme--catppuccin-macchiato .input::-webkit-input-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--catppuccin-macchiato .select select:-moz-placeholder,html.theme--catppuccin-macchiato .textarea:-moz-placeholder,html.theme--catppuccin-macchiato .input:-moz-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--catppuccin-macchiato .select select:-ms-input-placeholder,html.theme--catppuccin-macchiato .textarea:-ms-input-placeholder,html.theme--catppuccin-macchiato .input:-ms-input-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--catppuccin-macchiato .select select:hover,html.theme--catppuccin-macchiato .textarea:hover,html.theme--catppuccin-macchiato .input:hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:hover,html.theme--catppuccin-macchiato .select select.is-hovered,html.theme--catppuccin-macchiato .is-hovered.textarea,html.theme--catppuccin-macchiato .is-hovered.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#6e738d}html.theme--catppuccin-macchiato .select select:focus,html.theme--catppuccin-macchiato .textarea:focus,html.theme--catppuccin-macchiato .input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-macchiato .select select.is-focused,html.theme--catppuccin-macchiato .is-focused.textarea,html.theme--catppuccin-macchiato .is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .select select:active,html.theme--catppuccin-macchiato .textarea:active,html.theme--catppuccin-macchiato .input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-macchiato .select select.is-active,html.theme--catppuccin-macchiato .is-active.textarea,html.theme--catppuccin-macchiato .is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#8aadf4;box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .select select[disabled],html.theme--catppuccin-macchiato .textarea[disabled],html.theme--catppuccin-macchiato .input[disabled],html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .select select,fieldset[disabled] html.theme--catppuccin-macchiato .textarea,fieldset[disabled] html.theme--catppuccin-macchiato .input,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{background-color:#6e738d;border-color:#1e2030;box-shadow:none;color:#f5f7fd}html.theme--catppuccin-macchiato .select select[disabled]::-moz-placeholder,html.theme--catppuccin-macchiato .textarea[disabled]::-moz-placeholder,html.theme--catppuccin-macchiato .input[disabled]::-moz-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .select select::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .textarea::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .input::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(245,247,253,0.3)}html.theme--catppuccin-macchiato .select select[disabled]::-webkit-input-placeholder,html.theme--catppuccin-macchiato .textarea[disabled]::-webkit-input-placeholder,html.theme--catppuccin-macchiato .input[disabled]::-webkit-input-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .input::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(245,247,253,0.3)}html.theme--catppuccin-macchiato .select select[disabled]:-moz-placeholder,html.theme--catppuccin-macchiato .textarea[disabled]:-moz-placeholder,html.theme--catppuccin-macchiato .input[disabled]:-moz-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .select select:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .textarea:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .input:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(245,247,253,0.3)}html.theme--catppuccin-macchiato .select select[disabled]:-ms-input-placeholder,html.theme--catppuccin-macchiato .textarea[disabled]:-ms-input-placeholder,html.theme--catppuccin-macchiato .input[disabled]:-ms-input-placeholder,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .select select:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato .input:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(245,247,253,0.3)}html.theme--catppuccin-macchiato .textarea,html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--catppuccin-macchiato .textarea[readonly],html.theme--catppuccin-macchiato .input[readonly],html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--catppuccin-macchiato .is-white.textarea,html.theme--catppuccin-macchiato .is-white.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--catppuccin-macchiato .is-white.textarea:focus,html.theme--catppuccin-macchiato .is-white.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--catppuccin-macchiato .is-white.is-focused.textarea,html.theme--catppuccin-macchiato .is-white.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-white.textarea:active,html.theme--catppuccin-macchiato .is-white.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--catppuccin-macchiato .is-white.is-active.textarea,html.theme--catppuccin-macchiato .is-white.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-macchiato .is-black.textarea,html.theme--catppuccin-macchiato .is-black.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--catppuccin-macchiato .is-black.textarea:focus,html.theme--catppuccin-macchiato .is-black.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--catppuccin-macchiato .is-black.is-focused.textarea,html.theme--catppuccin-macchiato .is-black.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-black.textarea:active,html.theme--catppuccin-macchiato .is-black.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--catppuccin-macchiato .is-black.is-active.textarea,html.theme--catppuccin-macchiato .is-black.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-macchiato .is-light.textarea,html.theme--catppuccin-macchiato .is-light.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}html.theme--catppuccin-macchiato .is-light.textarea:focus,html.theme--catppuccin-macchiato .is-light.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--catppuccin-macchiato .is-light.is-focused.textarea,html.theme--catppuccin-macchiato .is-light.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-light.textarea:active,html.theme--catppuccin-macchiato .is-light.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--catppuccin-macchiato .is-light.is-active.textarea,html.theme--catppuccin-macchiato .is-light.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-macchiato .is-dark.textarea,html.theme--catppuccin-macchiato .content kbd.textarea,html.theme--catppuccin-macchiato .is-dark.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--catppuccin-macchiato .content kbd.input{border-color:#363a4f}html.theme--catppuccin-macchiato .is-dark.textarea:focus,html.theme--catppuccin-macchiato .content kbd.textarea:focus,html.theme--catppuccin-macchiato .is-dark.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--catppuccin-macchiato .content kbd.input:focus,html.theme--catppuccin-macchiato .is-dark.is-focused.textarea,html.theme--catppuccin-macchiato .content kbd.is-focused.textarea,html.theme--catppuccin-macchiato .is-dark.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .content kbd.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-dark.textarea:active,html.theme--catppuccin-macchiato .content kbd.textarea:active,html.theme--catppuccin-macchiato .is-dark.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--catppuccin-macchiato .content kbd.input:active,html.theme--catppuccin-macchiato .is-dark.is-active.textarea,html.theme--catppuccin-macchiato .content kbd.is-active.textarea,html.theme--catppuccin-macchiato .is-dark.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-macchiato .content kbd.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(54,58,79,0.25)}html.theme--catppuccin-macchiato .is-primary.textarea,html.theme--catppuccin-macchiato .docstring>section>a.textarea.docs-sourcelink,html.theme--catppuccin-macchiato .is-primary.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.input.docs-sourcelink{border-color:#8aadf4}html.theme--catppuccin-macchiato .is-primary.textarea:focus,html.theme--catppuccin-macchiato .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--catppuccin-macchiato .is-primary.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--catppuccin-macchiato .docstring>section>a.input.docs-sourcelink:focus,html.theme--catppuccin-macchiato .is-primary.is-focused.textarea,html.theme--catppuccin-macchiato .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--catppuccin-macchiato .is-primary.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--catppuccin-macchiato .is-primary.textarea:active,html.theme--catppuccin-macchiato .docstring>section>a.textarea.docs-sourcelink:active,html.theme--catppuccin-macchiato .is-primary.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--catppuccin-macchiato .docstring>section>a.input.docs-sourcelink:active,html.theme--catppuccin-macchiato .is-primary.is-active.textarea,html.theme--catppuccin-macchiato .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--catppuccin-macchiato .is-primary.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-macchiato .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .is-link.textarea,html.theme--catppuccin-macchiato .is-link.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#8aadf4}html.theme--catppuccin-macchiato .is-link.textarea:focus,html.theme--catppuccin-macchiato .is-link.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--catppuccin-macchiato .is-link.is-focused.textarea,html.theme--catppuccin-macchiato .is-link.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-link.textarea:active,html.theme--catppuccin-macchiato .is-link.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--catppuccin-macchiato .is-link.is-active.textarea,html.theme--catppuccin-macchiato .is-link.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .is-info.textarea,html.theme--catppuccin-macchiato .is-info.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#8bd5ca}html.theme--catppuccin-macchiato .is-info.textarea:focus,html.theme--catppuccin-macchiato .is-info.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--catppuccin-macchiato .is-info.is-focused.textarea,html.theme--catppuccin-macchiato .is-info.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-info.textarea:active,html.theme--catppuccin-macchiato .is-info.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--catppuccin-macchiato .is-info.is-active.textarea,html.theme--catppuccin-macchiato .is-info.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(139,213,202,0.25)}html.theme--catppuccin-macchiato .is-success.textarea,html.theme--catppuccin-macchiato .is-success.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#a6da95}html.theme--catppuccin-macchiato .is-success.textarea:focus,html.theme--catppuccin-macchiato .is-success.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--catppuccin-macchiato .is-success.is-focused.textarea,html.theme--catppuccin-macchiato .is-success.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-success.textarea:active,html.theme--catppuccin-macchiato .is-success.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--catppuccin-macchiato .is-success.is-active.textarea,html.theme--catppuccin-macchiato .is-success.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(166,218,149,0.25)}html.theme--catppuccin-macchiato .is-warning.textarea,html.theme--catppuccin-macchiato .is-warning.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#eed49f}html.theme--catppuccin-macchiato .is-warning.textarea:focus,html.theme--catppuccin-macchiato .is-warning.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--catppuccin-macchiato .is-warning.is-focused.textarea,html.theme--catppuccin-macchiato .is-warning.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-warning.textarea:active,html.theme--catppuccin-macchiato .is-warning.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--catppuccin-macchiato .is-warning.is-active.textarea,html.theme--catppuccin-macchiato .is-warning.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(238,212,159,0.25)}html.theme--catppuccin-macchiato .is-danger.textarea,html.theme--catppuccin-macchiato .is-danger.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#ed8796}html.theme--catppuccin-macchiato .is-danger.textarea:focus,html.theme--catppuccin-macchiato .is-danger.input:focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--catppuccin-macchiato .is-danger.is-focused.textarea,html.theme--catppuccin-macchiato .is-danger.is-focused.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-macchiato .is-danger.textarea:active,html.theme--catppuccin-macchiato .is-danger.input:active,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--catppuccin-macchiato .is-danger.is-active.textarea,html.theme--catppuccin-macchiato .is-danger.is-active.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(237,135,150,0.25)}html.theme--catppuccin-macchiato .is-small.textarea,html.theme--catppuccin-macchiato .is-small.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--catppuccin-macchiato .is-medium.textarea,html.theme--catppuccin-macchiato .is-medium.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .is-large.textarea,html.theme--catppuccin-macchiato .is-large.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .is-fullwidth.textarea,html.theme--catppuccin-macchiato .is-fullwidth.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--catppuccin-macchiato .is-inline.textarea,html.theme--catppuccin-macchiato .is-inline.input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--catppuccin-macchiato .input.is-rounded,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--catppuccin-macchiato .input.is-static,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--catppuccin-macchiato .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--catppuccin-macchiato .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--catppuccin-macchiato .textarea[rows]{height:initial}html.theme--catppuccin-macchiato .textarea.has-fixed-size{resize:none}html.theme--catppuccin-macchiato .radio,html.theme--catppuccin-macchiato .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--catppuccin-macchiato .radio input,html.theme--catppuccin-macchiato .checkbox input{cursor:pointer}html.theme--catppuccin-macchiato .radio:hover,html.theme--catppuccin-macchiato .checkbox:hover{color:#91d7e3}html.theme--catppuccin-macchiato .radio[disabled],html.theme--catppuccin-macchiato .checkbox[disabled],fieldset[disabled] html.theme--catppuccin-macchiato .radio,fieldset[disabled] html.theme--catppuccin-macchiato .checkbox,html.theme--catppuccin-macchiato .radio input[disabled],html.theme--catppuccin-macchiato .checkbox input[disabled]{color:#f5f7fd;cursor:not-allowed}html.theme--catppuccin-macchiato .radio+.radio{margin-left:.5em}html.theme--catppuccin-macchiato .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--catppuccin-macchiato .select:not(.is-multiple){height:2.5em}html.theme--catppuccin-macchiato .select:not(.is-multiple):not(.is-loading)::after{border-color:#8aadf4;right:1.125em;z-index:4}html.theme--catppuccin-macchiato .select.is-rounded select,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--catppuccin-macchiato .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--catppuccin-macchiato .select select::-ms-expand{display:none}html.theme--catppuccin-macchiato .select select[disabled]:hover,fieldset[disabled] html.theme--catppuccin-macchiato .select select:hover{border-color:#1e2030}html.theme--catppuccin-macchiato .select select:not([multiple]){padding-right:2.5em}html.theme--catppuccin-macchiato .select select[multiple]{height:auto;padding:0}html.theme--catppuccin-macchiato .select select[multiple] option{padding:0.5em 1em}html.theme--catppuccin-macchiato .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#91d7e3}html.theme--catppuccin-macchiato .select.is-white:not(:hover)::after{border-color:#fff}html.theme--catppuccin-macchiato .select.is-white select{border-color:#fff}html.theme--catppuccin-macchiato .select.is-white select:hover,html.theme--catppuccin-macchiato .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--catppuccin-macchiato .select.is-white select:focus,html.theme--catppuccin-macchiato .select.is-white select.is-focused,html.theme--catppuccin-macchiato .select.is-white select:active,html.theme--catppuccin-macchiato .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-macchiato .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--catppuccin-macchiato .select.is-black select{border-color:#0a0a0a}html.theme--catppuccin-macchiato .select.is-black select:hover,html.theme--catppuccin-macchiato .select.is-black select.is-hovered{border-color:#000}html.theme--catppuccin-macchiato .select.is-black select:focus,html.theme--catppuccin-macchiato .select.is-black select.is-focused,html.theme--catppuccin-macchiato .select.is-black select:active,html.theme--catppuccin-macchiato .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-macchiato .select.is-light:not(:hover)::after{border-color:#f5f5f5}html.theme--catppuccin-macchiato .select.is-light select{border-color:#f5f5f5}html.theme--catppuccin-macchiato .select.is-light select:hover,html.theme--catppuccin-macchiato .select.is-light select.is-hovered{border-color:#e8e8e8}html.theme--catppuccin-macchiato .select.is-light select:focus,html.theme--catppuccin-macchiato .select.is-light select.is-focused,html.theme--catppuccin-macchiato .select.is-light select:active,html.theme--catppuccin-macchiato .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-macchiato .select.is-dark:not(:hover)::after,html.theme--catppuccin-macchiato .content kbd.select:not(:hover)::after{border-color:#363a4f}html.theme--catppuccin-macchiato .select.is-dark select,html.theme--catppuccin-macchiato .content kbd.select select{border-color:#363a4f}html.theme--catppuccin-macchiato .select.is-dark select:hover,html.theme--catppuccin-macchiato .content kbd.select select:hover,html.theme--catppuccin-macchiato .select.is-dark select.is-hovered,html.theme--catppuccin-macchiato .content kbd.select select.is-hovered{border-color:#2c2f40}html.theme--catppuccin-macchiato .select.is-dark select:focus,html.theme--catppuccin-macchiato .content kbd.select select:focus,html.theme--catppuccin-macchiato .select.is-dark select.is-focused,html.theme--catppuccin-macchiato .content kbd.select select.is-focused,html.theme--catppuccin-macchiato .select.is-dark select:active,html.theme--catppuccin-macchiato .content kbd.select select:active,html.theme--catppuccin-macchiato .select.is-dark select.is-active,html.theme--catppuccin-macchiato .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(54,58,79,0.25)}html.theme--catppuccin-macchiato .select.is-primary:not(:hover)::after,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#8aadf4}html.theme--catppuccin-macchiato .select.is-primary select,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select{border-color:#8aadf4}html.theme--catppuccin-macchiato .select.is-primary select:hover,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select:hover,html.theme--catppuccin-macchiato .select.is-primary select.is-hovered,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#739df2}html.theme--catppuccin-macchiato .select.is-primary select:focus,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select:focus,html.theme--catppuccin-macchiato .select.is-primary select.is-focused,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--catppuccin-macchiato .select.is-primary select:active,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select:active,html.theme--catppuccin-macchiato .select.is-primary select.is-active,html.theme--catppuccin-macchiato .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .select.is-link:not(:hover)::after{border-color:#8aadf4}html.theme--catppuccin-macchiato .select.is-link select{border-color:#8aadf4}html.theme--catppuccin-macchiato .select.is-link select:hover,html.theme--catppuccin-macchiato .select.is-link select.is-hovered{border-color:#739df2}html.theme--catppuccin-macchiato .select.is-link select:focus,html.theme--catppuccin-macchiato .select.is-link select.is-focused,html.theme--catppuccin-macchiato .select.is-link select:active,html.theme--catppuccin-macchiato .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(138,173,244,0.25)}html.theme--catppuccin-macchiato .select.is-info:not(:hover)::after{border-color:#8bd5ca}html.theme--catppuccin-macchiato .select.is-info select{border-color:#8bd5ca}html.theme--catppuccin-macchiato .select.is-info select:hover,html.theme--catppuccin-macchiato .select.is-info select.is-hovered{border-color:#78cec1}html.theme--catppuccin-macchiato .select.is-info select:focus,html.theme--catppuccin-macchiato .select.is-info select.is-focused,html.theme--catppuccin-macchiato .select.is-info select:active,html.theme--catppuccin-macchiato .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(139,213,202,0.25)}html.theme--catppuccin-macchiato .select.is-success:not(:hover)::after{border-color:#a6da95}html.theme--catppuccin-macchiato .select.is-success select{border-color:#a6da95}html.theme--catppuccin-macchiato .select.is-success select:hover,html.theme--catppuccin-macchiato .select.is-success select.is-hovered{border-color:#96d382}html.theme--catppuccin-macchiato .select.is-success select:focus,html.theme--catppuccin-macchiato .select.is-success select.is-focused,html.theme--catppuccin-macchiato .select.is-success select:active,html.theme--catppuccin-macchiato .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(166,218,149,0.25)}html.theme--catppuccin-macchiato .select.is-warning:not(:hover)::after{border-color:#eed49f}html.theme--catppuccin-macchiato .select.is-warning select{border-color:#eed49f}html.theme--catppuccin-macchiato .select.is-warning select:hover,html.theme--catppuccin-macchiato .select.is-warning select.is-hovered{border-color:#eaca89}html.theme--catppuccin-macchiato .select.is-warning select:focus,html.theme--catppuccin-macchiato .select.is-warning select.is-focused,html.theme--catppuccin-macchiato .select.is-warning select:active,html.theme--catppuccin-macchiato .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(238,212,159,0.25)}html.theme--catppuccin-macchiato .select.is-danger:not(:hover)::after{border-color:#ed8796}html.theme--catppuccin-macchiato .select.is-danger select{border-color:#ed8796}html.theme--catppuccin-macchiato .select.is-danger select:hover,html.theme--catppuccin-macchiato .select.is-danger select.is-hovered{border-color:#ea7183}html.theme--catppuccin-macchiato .select.is-danger select:focus,html.theme--catppuccin-macchiato .select.is-danger select.is-focused,html.theme--catppuccin-macchiato .select.is-danger select:active,html.theme--catppuccin-macchiato .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(237,135,150,0.25)}html.theme--catppuccin-macchiato .select.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--catppuccin-macchiato .select.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .select.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .select.is-disabled::after{border-color:#f5f7fd !important;opacity:0.5}html.theme--catppuccin-macchiato .select.is-fullwidth{width:100%}html.theme--catppuccin-macchiato .select.is-fullwidth select{width:100%}html.theme--catppuccin-macchiato .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--catppuccin-macchiato .select.is-loading.is-small:after,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-macchiato .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-macchiato .select.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-macchiato .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--catppuccin-macchiato .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .file.is-white:hover .file-cta,html.theme--catppuccin-macchiato .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .file.is-white:focus .file-cta,html.theme--catppuccin-macchiato .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--catppuccin-macchiato .file.is-white:active .file-cta,html.theme--catppuccin-macchiato .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-macchiato .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-black:hover .file-cta,html.theme--catppuccin-macchiato .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-black:focus .file-cta,html.theme--catppuccin-macchiato .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-black:active .file-cta,html.theme--catppuccin-macchiato .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-light:hover .file-cta,html.theme--catppuccin-macchiato .file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-light:focus .file-cta,html.theme--catppuccin-macchiato .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-light:active .file-cta,html.theme--catppuccin-macchiato .file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-dark .file-cta,html.theme--catppuccin-macchiato .content kbd.file .file-cta{background-color:#363a4f;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-dark:hover .file-cta,html.theme--catppuccin-macchiato .content kbd.file:hover .file-cta,html.theme--catppuccin-macchiato .file.is-dark.is-hovered .file-cta,html.theme--catppuccin-macchiato .content kbd.file.is-hovered .file-cta{background-color:#313447;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-dark:focus .file-cta,html.theme--catppuccin-macchiato .content kbd.file:focus .file-cta,html.theme--catppuccin-macchiato .file.is-dark.is-focused .file-cta,html.theme--catppuccin-macchiato .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(54,58,79,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-dark:active .file-cta,html.theme--catppuccin-macchiato .content kbd.file:active .file-cta,html.theme--catppuccin-macchiato .file.is-dark.is-active .file-cta,html.theme--catppuccin-macchiato .content kbd.file.is-active .file-cta{background-color:#2c2f40;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-primary .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#8aadf4;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-primary:hover .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--catppuccin-macchiato .file.is-primary.is-hovered .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#7ea5f3;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-primary:focus .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--catppuccin-macchiato .file.is-primary.is-focused .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(138,173,244,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-primary:active .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--catppuccin-macchiato .file.is-primary.is-active .file-cta,html.theme--catppuccin-macchiato .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#739df2;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-link .file-cta{background-color:#8aadf4;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-link:hover .file-cta,html.theme--catppuccin-macchiato .file.is-link.is-hovered .file-cta{background-color:#7ea5f3;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-link:focus .file-cta,html.theme--catppuccin-macchiato .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(138,173,244,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-link:active .file-cta,html.theme--catppuccin-macchiato .file.is-link.is-active .file-cta{background-color:#739df2;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-info .file-cta{background-color:#8bd5ca;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-info:hover .file-cta,html.theme--catppuccin-macchiato .file.is-info.is-hovered .file-cta{background-color:#82d2c6;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-info:focus .file-cta,html.theme--catppuccin-macchiato .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(139,213,202,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-info:active .file-cta,html.theme--catppuccin-macchiato .file.is-info.is-active .file-cta{background-color:#78cec1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-success .file-cta{background-color:#a6da95;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-success:hover .file-cta,html.theme--catppuccin-macchiato .file.is-success.is-hovered .file-cta{background-color:#9ed78c;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-success:focus .file-cta,html.theme--catppuccin-macchiato .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(166,218,149,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-success:active .file-cta,html.theme--catppuccin-macchiato .file.is-success.is-active .file-cta{background-color:#96d382;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-warning .file-cta{background-color:#eed49f;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-warning:hover .file-cta,html.theme--catppuccin-macchiato .file.is-warning.is-hovered .file-cta{background-color:#eccf94;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-warning:focus .file-cta,html.theme--catppuccin-macchiato .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(238,212,159,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-warning:active .file-cta,html.theme--catppuccin-macchiato .file.is-warning.is-active .file-cta{background-color:#eaca89;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .file.is-danger .file-cta{background-color:#ed8796;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-danger:hover .file-cta,html.theme--catppuccin-macchiato .file.is-danger.is-hovered .file-cta{background-color:#eb7c8c;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-danger:focus .file-cta,html.theme--catppuccin-macchiato .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(237,135,150,0.25);color:#fff}html.theme--catppuccin-macchiato .file.is-danger:active .file-cta,html.theme--catppuccin-macchiato .file.is-danger.is-active .file-cta{background-color:#ea7183;border-color:transparent;color:#fff}html.theme--catppuccin-macchiato .file.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--catppuccin-macchiato .file.is-normal{font-size:1rem}html.theme--catppuccin-macchiato .file.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .file.is-medium .file-icon .fa{font-size:21px}html.theme--catppuccin-macchiato .file.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .file.is-large .file-icon .fa{font-size:28px}html.theme--catppuccin-macchiato .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-macchiato .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-macchiato .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--catppuccin-macchiato .file.has-name.is-empty .file-name{display:none}html.theme--catppuccin-macchiato .file.is-boxed .file-label{flex-direction:column}html.theme--catppuccin-macchiato .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--catppuccin-macchiato .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--catppuccin-macchiato .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--catppuccin-macchiato .file.is-boxed .file-icon .fa{font-size:21px}html.theme--catppuccin-macchiato .file.is-boxed.is-small .file-icon .fa,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--catppuccin-macchiato .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--catppuccin-macchiato .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--catppuccin-macchiato .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--catppuccin-macchiato .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--catppuccin-macchiato .file.is-centered{justify-content:center}html.theme--catppuccin-macchiato .file.is-fullwidth .file-label{width:100%}html.theme--catppuccin-macchiato .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--catppuccin-macchiato .file.is-right{justify-content:flex-end}html.theme--catppuccin-macchiato .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--catppuccin-macchiato .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--catppuccin-macchiato .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--catppuccin-macchiato .file-label:hover .file-cta{background-color:#313447;color:#b5c1f1}html.theme--catppuccin-macchiato .file-label:hover .file-name{border-color:#565a71}html.theme--catppuccin-macchiato .file-label:active .file-cta{background-color:#2c2f40;color:#b5c1f1}html.theme--catppuccin-macchiato .file-label:active .file-name{border-color:#505469}html.theme--catppuccin-macchiato .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--catppuccin-macchiato .file-cta,html.theme--catppuccin-macchiato .file-name{border-color:#5b6078;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--catppuccin-macchiato .file-cta{background-color:#363a4f;color:#cad3f5}html.theme--catppuccin-macchiato .file-name{border-color:#5b6078;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--catppuccin-macchiato .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--catppuccin-macchiato .file-icon .fa{font-size:14px}html.theme--catppuccin-macchiato .label{color:#b5c1f1;display:block;font-size:1rem;font-weight:700}html.theme--catppuccin-macchiato .label:not(:last-child){margin-bottom:0.5em}html.theme--catppuccin-macchiato .label.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--catppuccin-macchiato .label.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .label.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--catppuccin-macchiato .help.is-white{color:#fff}html.theme--catppuccin-macchiato .help.is-black{color:#0a0a0a}html.theme--catppuccin-macchiato .help.is-light{color:#f5f5f5}html.theme--catppuccin-macchiato .help.is-dark,html.theme--catppuccin-macchiato .content kbd.help{color:#363a4f}html.theme--catppuccin-macchiato .help.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.help.docs-sourcelink{color:#8aadf4}html.theme--catppuccin-macchiato .help.is-link{color:#8aadf4}html.theme--catppuccin-macchiato .help.is-info{color:#8bd5ca}html.theme--catppuccin-macchiato .help.is-success{color:#a6da95}html.theme--catppuccin-macchiato .help.is-warning{color:#eed49f}html.theme--catppuccin-macchiato .help.is-danger{color:#ed8796}html.theme--catppuccin-macchiato .field:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-macchiato .field.has-addons{display:flex;justify-content:flex-start}html.theme--catppuccin-macchiato .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--catppuccin-macchiato .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--catppuccin-macchiato .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--catppuccin-macchiato .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--catppuccin-macchiato .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--catppuccin-macchiato .field.has-addons .control:first-child:not(:only-child) .button,html.theme--catppuccin-macchiato .field.has-addons .control:first-child:not(:only-child) .input,html.theme--catppuccin-macchiato .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-macchiato .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-macchiato .field.has-addons .control:last-child:not(:only-child) .button,html.theme--catppuccin-macchiato .field.has-addons .control:last-child:not(:only-child) .input,html.theme--catppuccin-macchiato .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-macchiato .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):focus,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-focused:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):active,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-active:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):focus,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-focused:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):active,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-active:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):focus,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):active,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .button:not([disabled]):active:hover,html.theme--catppuccin-macchiato .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .input:not([disabled]):active:hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-macchiato .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--catppuccin-macchiato .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--catppuccin-macchiato .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .field.has-addons.has-addons-centered{justify-content:center}html.theme--catppuccin-macchiato .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--catppuccin-macchiato .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--catppuccin-macchiato .field.is-grouped{display:flex;justify-content:flex-start}html.theme--catppuccin-macchiato .field.is-grouped>.control{flex-shrink:0}html.theme--catppuccin-macchiato .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-macchiato .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--catppuccin-macchiato .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .field.is-horizontal{display:flex}}html.theme--catppuccin-macchiato .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--catppuccin-macchiato .field-label.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--catppuccin-macchiato .field-label.is-normal{padding-top:0.375em}html.theme--catppuccin-macchiato .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--catppuccin-macchiato .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--catppuccin-macchiato .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--catppuccin-macchiato .field-body .field{margin-bottom:0}html.theme--catppuccin-macchiato .field-body>.field{flex-shrink:1}html.theme--catppuccin-macchiato .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--catppuccin-macchiato .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-macchiato .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--catppuccin-macchiato .control.has-icons-left .input:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-left .select:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .input:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .select:focus~.icon{color:#363a4f}html.theme--catppuccin-macchiato .control.has-icons-left .input.is-small~.icon,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--catppuccin-macchiato .control.has-icons-left .select.is-small~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .input.is-small~.icon,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--catppuccin-macchiato .control.has-icons-left .input.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-left .select.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .input.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--catppuccin-macchiato .control.has-icons-left .input.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-left .select.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .input.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--catppuccin-macchiato .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--catppuccin-macchiato .control.has-icons-left .icon,html.theme--catppuccin-macchiato .control.has-icons-right .icon{color:#5b6078;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--catppuccin-macchiato .control.has-icons-left .input,html.theme--catppuccin-macchiato .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--catppuccin-macchiato .control.has-icons-left .select select{padding-left:2.5em}html.theme--catppuccin-macchiato .control.has-icons-left .icon.is-left{left:0}html.theme--catppuccin-macchiato .control.has-icons-right .input,html.theme--catppuccin-macchiato .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--catppuccin-macchiato .control.has-icons-right .select select{padding-right:2.5em}html.theme--catppuccin-macchiato .control.has-icons-right .icon.is-right{right:0}html.theme--catppuccin-macchiato .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--catppuccin-macchiato .control.is-loading.is-small:after,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-macchiato .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-macchiato .control.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-macchiato .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--catppuccin-macchiato .breadcrumb a{align-items:center;color:#8aadf4;display:flex;justify-content:center;padding:0 .75em}html.theme--catppuccin-macchiato .breadcrumb a:hover{color:#91d7e3}html.theme--catppuccin-macchiato .breadcrumb li{align-items:center;display:flex}html.theme--catppuccin-macchiato .breadcrumb li:first-child a{padding-left:0}html.theme--catppuccin-macchiato .breadcrumb li.is-active a{color:#b5c1f1;cursor:default;pointer-events:none}html.theme--catppuccin-macchiato .breadcrumb li+li::before{color:#6e738d;content:"\0002f"}html.theme--catppuccin-macchiato .breadcrumb ul,html.theme--catppuccin-macchiato .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-macchiato .breadcrumb .icon:first-child{margin-right:.5em}html.theme--catppuccin-macchiato .breadcrumb .icon:last-child{margin-left:.5em}html.theme--catppuccin-macchiato .breadcrumb.is-centered ol,html.theme--catppuccin-macchiato .breadcrumb.is-centered ul{justify-content:center}html.theme--catppuccin-macchiato .breadcrumb.is-right ol,html.theme--catppuccin-macchiato .breadcrumb.is-right ul{justify-content:flex-end}html.theme--catppuccin-macchiato .breadcrumb.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--catppuccin-macchiato .breadcrumb.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .breadcrumb.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--catppuccin-macchiato .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--catppuccin-macchiato .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--catppuccin-macchiato .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--catppuccin-macchiato .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#cad3f5;max-width:100%;position:relative}html.theme--catppuccin-macchiato .card-footer:first-child,html.theme--catppuccin-macchiato .card-content:first-child,html.theme--catppuccin-macchiato .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-macchiato .card-footer:last-child,html.theme--catppuccin-macchiato .card-content:last-child,html.theme--catppuccin-macchiato .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-macchiato .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--catppuccin-macchiato .card-header-title{align-items:center;color:#b5c1f1;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--catppuccin-macchiato .card-header-title.is-centered{justify-content:center}html.theme--catppuccin-macchiato .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--catppuccin-macchiato .card-image{display:block;position:relative}html.theme--catppuccin-macchiato .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-macchiato .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-macchiato .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--catppuccin-macchiato .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--catppuccin-macchiato .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--catppuccin-macchiato .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--catppuccin-macchiato .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-macchiato .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--catppuccin-macchiato .dropdown.is-active .dropdown-menu,html.theme--catppuccin-macchiato .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--catppuccin-macchiato .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--catppuccin-macchiato .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--catppuccin-macchiato .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--catppuccin-macchiato .dropdown-content{background-color:#1e2030;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--catppuccin-macchiato .dropdown-item{color:#cad3f5;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--catppuccin-macchiato a.dropdown-item,html.theme--catppuccin-macchiato button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--catppuccin-macchiato a.dropdown-item:hover,html.theme--catppuccin-macchiato button.dropdown-item:hover{background-color:#1e2030;color:#0a0a0a}html.theme--catppuccin-macchiato a.dropdown-item.is-active,html.theme--catppuccin-macchiato button.dropdown-item.is-active{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--catppuccin-macchiato .level{align-items:center;justify-content:space-between}html.theme--catppuccin-macchiato .level code{border-radius:.4em}html.theme--catppuccin-macchiato .level img{display:inline-block;vertical-align:top}html.theme--catppuccin-macchiato .level.is-mobile{display:flex}html.theme--catppuccin-macchiato .level.is-mobile .level-left,html.theme--catppuccin-macchiato .level.is-mobile .level-right{display:flex}html.theme--catppuccin-macchiato .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--catppuccin-macchiato .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-macchiato .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .level{display:flex}html.theme--catppuccin-macchiato .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--catppuccin-macchiato .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--catppuccin-macchiato .level-item .title,html.theme--catppuccin-macchiato .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--catppuccin-macchiato .level-left,html.theme--catppuccin-macchiato .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .level-left .level-item.is-flexible,html.theme--catppuccin-macchiato .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .level-left .level-item:not(:last-child),html.theme--catppuccin-macchiato .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-macchiato .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .level-left{display:flex}}html.theme--catppuccin-macchiato .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .level-right{display:flex}}html.theme--catppuccin-macchiato .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--catppuccin-macchiato .media .content:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-macchiato .media .media{border-top:1px solid rgba(91,96,120,0.5);display:flex;padding-top:.75rem}html.theme--catppuccin-macchiato .media .media .content:not(:last-child),html.theme--catppuccin-macchiato .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--catppuccin-macchiato .media .media .media{padding-top:.5rem}html.theme--catppuccin-macchiato .media .media .media+.media{margin-top:.5rem}html.theme--catppuccin-macchiato .media+.media{border-top:1px solid rgba(91,96,120,0.5);margin-top:1rem;padding-top:1rem}html.theme--catppuccin-macchiato .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--catppuccin-macchiato .media-left,html.theme--catppuccin-macchiato .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .media-left{margin-right:1rem}html.theme--catppuccin-macchiato .media-right{margin-left:1rem}html.theme--catppuccin-macchiato .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .media-content{overflow-x:auto}}html.theme--catppuccin-macchiato .menu{font-size:1rem}html.theme--catppuccin-macchiato .menu.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--catppuccin-macchiato .menu.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .menu.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .menu-list{line-height:1.25}html.theme--catppuccin-macchiato .menu-list a{border-radius:3px;color:#cad3f5;display:block;padding:0.5em 0.75em}html.theme--catppuccin-macchiato .menu-list a:hover{background-color:#1e2030;color:#b5c1f1}html.theme--catppuccin-macchiato .menu-list a.is-active{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .menu-list li ul{border-left:1px solid #5b6078;margin:.75em;padding-left:.75em}html.theme--catppuccin-macchiato .menu-label{color:#f5f7fd;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--catppuccin-macchiato .menu-label:not(:first-child){margin-top:1em}html.theme--catppuccin-macchiato .menu-label:not(:last-child){margin-bottom:1em}html.theme--catppuccin-macchiato .message{background-color:#1e2030;border-radius:.4em;font-size:1rem}html.theme--catppuccin-macchiato .message strong{color:currentColor}html.theme--catppuccin-macchiato .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-macchiato .message.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--catppuccin-macchiato .message.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .message.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .message.is-white{background-color:#fff}html.theme--catppuccin-macchiato .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .message.is-white .message-body{border-color:#fff}html.theme--catppuccin-macchiato .message.is-black{background-color:#fafafa}html.theme--catppuccin-macchiato .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .message.is-black .message-body{border-color:#0a0a0a}html.theme--catppuccin-macchiato .message.is-light{background-color:#fafafa}html.theme--catppuccin-macchiato .message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .message.is-light .message-body{border-color:#f5f5f5}html.theme--catppuccin-macchiato .message.is-dark,html.theme--catppuccin-macchiato .content kbd.message{background-color:#f9f9fb}html.theme--catppuccin-macchiato .message.is-dark .message-header,html.theme--catppuccin-macchiato .content kbd.message .message-header{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .message.is-dark .message-body,html.theme--catppuccin-macchiato .content kbd.message .message-body{border-color:#363a4f}html.theme--catppuccin-macchiato .message.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.message.docs-sourcelink{background-color:#ecf2fd}html.theme--catppuccin-macchiato .message.is-primary .message-header,html.theme--catppuccin-macchiato .docstring>section>a.message.docs-sourcelink .message-header{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .message.is-primary .message-body,html.theme--catppuccin-macchiato .docstring>section>a.message.docs-sourcelink .message-body{border-color:#8aadf4;color:#0e3b95}html.theme--catppuccin-macchiato .message.is-link{background-color:#ecf2fd}html.theme--catppuccin-macchiato .message.is-link .message-header{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .message.is-link .message-body{border-color:#8aadf4;color:#0e3b95}html.theme--catppuccin-macchiato .message.is-info{background-color:#f0faf8}html.theme--catppuccin-macchiato .message.is-info .message-header{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .message.is-info .message-body{border-color:#8bd5ca;color:#276d62}html.theme--catppuccin-macchiato .message.is-success{background-color:#f2faf0}html.theme--catppuccin-macchiato .message.is-success .message-header{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .message.is-success .message-body{border-color:#a6da95;color:#386e26}html.theme--catppuccin-macchiato .message.is-warning{background-color:#fcf7ee}html.theme--catppuccin-macchiato .message.is-warning .message-header{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .message.is-warning .message-body{border-color:#eed49f;color:#7e5c16}html.theme--catppuccin-macchiato .message.is-danger{background-color:#fcedef}html.theme--catppuccin-macchiato .message.is-danger .message-header{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .message.is-danger .message-body{border-color:#ed8796;color:#971729}html.theme--catppuccin-macchiato .message-header{align-items:center;background-color:#cad3f5;border-radius:.4em .4em 0 0;color:rgba(0,0,0,0.7);display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--catppuccin-macchiato .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--catppuccin-macchiato .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--catppuccin-macchiato .message-body{border-color:#5b6078;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#cad3f5;padding:1.25em 1.5em}html.theme--catppuccin-macchiato .message-body code,html.theme--catppuccin-macchiato .message-body pre{background-color:#fff}html.theme--catppuccin-macchiato .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--catppuccin-macchiato .modal.is-active{display:flex}html.theme--catppuccin-macchiato .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--catppuccin-macchiato .modal-content,html.theme--catppuccin-macchiato .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--catppuccin-macchiato .modal-content,html.theme--catppuccin-macchiato .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--catppuccin-macchiato .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--catppuccin-macchiato .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--catppuccin-macchiato .modal-card-head,html.theme--catppuccin-macchiato .modal-card-foot{align-items:center;background-color:#1e2030;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--catppuccin-macchiato .modal-card-head{border-bottom:1px solid #5b6078;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--catppuccin-macchiato .modal-card-title{color:#cad3f5;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--catppuccin-macchiato .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #5b6078}html.theme--catppuccin-macchiato .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--catppuccin-macchiato .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#24273a;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--catppuccin-macchiato .navbar{background-color:#8aadf4;min-height:4rem;position:relative;z-index:30}html.theme--catppuccin-macchiato .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-white .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-macchiato .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--catppuccin-macchiato .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-black .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--catppuccin-macchiato .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--catppuccin-macchiato .navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-light .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-macchiato .navbar.is-dark,html.theme--catppuccin-macchiato .content kbd.navbar{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#2c2f40;color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-burger,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#2c2f40;color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-end .navbar-link::after,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2c2f40;color:#fff}html.theme--catppuccin-macchiato .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#363a4f;color:#fff}}html.theme--catppuccin-macchiato .navbar.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-burger,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-end .navbar-link::after,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#8aadf4;color:#fff}}html.theme--catppuccin-macchiato .navbar.is-link{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-link .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#8aadf4;color:#fff}}html.theme--catppuccin-macchiato .navbar.is-info{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#78cec1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-info .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#78cec1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-info .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#78cec1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-macchiato .navbar.is-success{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#96d382;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-success .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#96d382;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-success .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#96d382;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#a6da95;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-macchiato .navbar.is-warning{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#eaca89;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#eaca89;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#eaca89;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#eed49f;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-macchiato .navbar.is-danger{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#ea7183;color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end>.navbar-item,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#ea7183;color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-start .navbar-link::after,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ea7183;color:#fff}html.theme--catppuccin-macchiato .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#ed8796;color:#fff}}html.theme--catppuccin-macchiato .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--catppuccin-macchiato .navbar.has-shadow{box-shadow:0 2px 0 0 #1e2030}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom,html.theme--catppuccin-macchiato .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom{bottom:0}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #1e2030}html.theme--catppuccin-macchiato .navbar.is-fixed-top{top:0}html.theme--catppuccin-macchiato html.has-navbar-fixed-top,html.theme--catppuccin-macchiato body.has-navbar-fixed-top{padding-top:4rem}html.theme--catppuccin-macchiato html.has-navbar-fixed-bottom,html.theme--catppuccin-macchiato body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--catppuccin-macchiato .navbar-brand,html.theme--catppuccin-macchiato .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--catppuccin-macchiato .navbar-brand a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--catppuccin-macchiato .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--catppuccin-macchiato .navbar-burger{color:#cad3f5;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--catppuccin-macchiato .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--catppuccin-macchiato .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--catppuccin-macchiato .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--catppuccin-macchiato .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--catppuccin-macchiato .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--catppuccin-macchiato .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--catppuccin-macchiato .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--catppuccin-macchiato .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--catppuccin-macchiato .navbar-menu{display:none}html.theme--catppuccin-macchiato .navbar-item,html.theme--catppuccin-macchiato .navbar-link{color:#cad3f5;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--catppuccin-macchiato .navbar-item .icon:only-child,html.theme--catppuccin-macchiato .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--catppuccin-macchiato a.navbar-item,html.theme--catppuccin-macchiato .navbar-link{cursor:pointer}html.theme--catppuccin-macchiato a.navbar-item:focus,html.theme--catppuccin-macchiato a.navbar-item:focus-within,html.theme--catppuccin-macchiato a.navbar-item:hover,html.theme--catppuccin-macchiato a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar-link:focus,html.theme--catppuccin-macchiato .navbar-link:focus-within,html.theme--catppuccin-macchiato .navbar-link:hover,html.theme--catppuccin-macchiato .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#8aadf4}html.theme--catppuccin-macchiato .navbar-item{flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .navbar-item img{max-height:1.75rem}html.theme--catppuccin-macchiato .navbar-item.has-dropdown{padding:0}html.theme--catppuccin-macchiato .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--catppuccin-macchiato .navbar-item.is-tab:focus,html.theme--catppuccin-macchiato .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#8aadf4}html.theme--catppuccin-macchiato .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#8aadf4;border-bottom-style:solid;border-bottom-width:3px;color:#8aadf4;padding-bottom:calc(0.5rem - 3px)}html.theme--catppuccin-macchiato .navbar-content{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--catppuccin-macchiato .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--catppuccin-macchiato .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--catppuccin-macchiato .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--catppuccin-macchiato .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .navbar>.container{display:block}html.theme--catppuccin-macchiato .navbar-brand .navbar-item,html.theme--catppuccin-macchiato .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--catppuccin-macchiato .navbar-link::after{display:none}html.theme--catppuccin-macchiato .navbar-menu{background-color:#8aadf4;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--catppuccin-macchiato .navbar-menu.is-active{display:block}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-touch,html.theme--catppuccin-macchiato .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-touch{bottom:0}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .navbar.is-fixed-top-touch{top:0}html.theme--catppuccin-macchiato .navbar.is-fixed-top .navbar-menu,html.theme--catppuccin-macchiato .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--catppuccin-macchiato html.has-navbar-fixed-top-touch,html.theme--catppuccin-macchiato body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--catppuccin-macchiato html.has-navbar-fixed-bottom-touch,html.theme--catppuccin-macchiato body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .navbar,html.theme--catppuccin-macchiato .navbar-menu,html.theme--catppuccin-macchiato .navbar-start,html.theme--catppuccin-macchiato .navbar-end{align-items:stretch;display:flex}html.theme--catppuccin-macchiato .navbar{min-height:4rem}html.theme--catppuccin-macchiato .navbar.is-spaced{padding:1rem 2rem}html.theme--catppuccin-macchiato .navbar.is-spaced .navbar-start,html.theme--catppuccin-macchiato .navbar.is-spaced .navbar-end{align-items:center}html.theme--catppuccin-macchiato .navbar.is-spaced a.navbar-item,html.theme--catppuccin-macchiato .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--catppuccin-macchiato .navbar.is-transparent a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-transparent a.navbar-item:hover,html.theme--catppuccin-macchiato .navbar.is-transparent a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-link:focus,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-link:hover,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#8087a2}html.theme--catppuccin-macchiato .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#8aadf4}html.theme--catppuccin-macchiato .navbar-burger{display:none}html.theme--catppuccin-macchiato .navbar-item,html.theme--catppuccin-macchiato .navbar-link{align-items:center;display:flex}html.theme--catppuccin-macchiato .navbar-item.has-dropdown{align-items:stretch}html.theme--catppuccin-macchiato .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--catppuccin-macchiato .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--catppuccin-macchiato .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--catppuccin-macchiato .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--catppuccin-macchiato .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--catppuccin-macchiato .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--catppuccin-macchiato .navbar-dropdown{background-color:#8aadf4;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--catppuccin-macchiato .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--catppuccin-macchiato .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--catppuccin-macchiato .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-macchiato .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#8087a2}html.theme--catppuccin-macchiato .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#8aadf4}.navbar.is-spaced html.theme--catppuccin-macchiato .navbar-dropdown,html.theme--catppuccin-macchiato .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--catppuccin-macchiato .navbar-dropdown.is-right{left:auto;right:0}html.theme--catppuccin-macchiato .navbar-divider{display:block}html.theme--catppuccin-macchiato .navbar>.container .navbar-brand,html.theme--catppuccin-macchiato .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--catppuccin-macchiato .navbar>.container .navbar-menu,html.theme--catppuccin-macchiato .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-desktop,html.theme--catppuccin-macchiato .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--catppuccin-macchiato .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .navbar.is-fixed-top-desktop{top:0}html.theme--catppuccin-macchiato html.has-navbar-fixed-top-desktop,html.theme--catppuccin-macchiato body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--catppuccin-macchiato html.has-navbar-fixed-bottom-desktop,html.theme--catppuccin-macchiato body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--catppuccin-macchiato html.has-spaced-navbar-fixed-top,html.theme--catppuccin-macchiato body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--catppuccin-macchiato html.has-spaced-navbar-fixed-bottom,html.theme--catppuccin-macchiato body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--catppuccin-macchiato a.navbar-item.is-active,html.theme--catppuccin-macchiato .navbar-link.is-active{color:#8aadf4}html.theme--catppuccin-macchiato a.navbar-item.is-active:not(:focus):not(:hover),html.theme--catppuccin-macchiato .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--catppuccin-macchiato .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-macchiato .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-macchiato .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--catppuccin-macchiato .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--catppuccin-macchiato .pagination{font-size:1rem;margin:-.25rem}html.theme--catppuccin-macchiato .pagination.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--catppuccin-macchiato .pagination.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .pagination.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .pagination.is-rounded .pagination-previous,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--catppuccin-macchiato .pagination.is-rounded .pagination-next,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--catppuccin-macchiato .pagination.is-rounded .pagination-link,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--catppuccin-macchiato .pagination,html.theme--catppuccin-macchiato .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link{border-color:#5b6078;color:#8aadf4;min-width:2.5em}html.theme--catppuccin-macchiato .pagination-previous:hover,html.theme--catppuccin-macchiato .pagination-next:hover,html.theme--catppuccin-macchiato .pagination-link:hover{border-color:#6e738d;color:#91d7e3}html.theme--catppuccin-macchiato .pagination-previous:focus,html.theme--catppuccin-macchiato .pagination-next:focus,html.theme--catppuccin-macchiato .pagination-link:focus{border-color:#6e738d}html.theme--catppuccin-macchiato .pagination-previous:active,html.theme--catppuccin-macchiato .pagination-next:active,html.theme--catppuccin-macchiato .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--catppuccin-macchiato .pagination-previous[disabled],html.theme--catppuccin-macchiato .pagination-previous.is-disabled,html.theme--catppuccin-macchiato .pagination-next[disabled],html.theme--catppuccin-macchiato .pagination-next.is-disabled,html.theme--catppuccin-macchiato .pagination-link[disabled],html.theme--catppuccin-macchiato .pagination-link.is-disabled{background-color:#5b6078;border-color:#5b6078;box-shadow:none;color:#f5f7fd;opacity:0.5}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--catppuccin-macchiato .pagination-link.is-current{background-color:#8aadf4;border-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .pagination-ellipsis{color:#6e738d;pointer-events:none}html.theme--catppuccin-macchiato .pagination-list{flex-wrap:wrap}html.theme--catppuccin-macchiato .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .pagination{flex-wrap:wrap}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--catppuccin-macchiato .pagination-previous{order:2}html.theme--catppuccin-macchiato .pagination-next{order:3}html.theme--catppuccin-macchiato .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--catppuccin-macchiato .pagination.is-centered .pagination-previous{order:1}html.theme--catppuccin-macchiato .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--catppuccin-macchiato .pagination.is-centered .pagination-next{order:3}html.theme--catppuccin-macchiato .pagination.is-right .pagination-previous{order:1}html.theme--catppuccin-macchiato .pagination.is-right .pagination-next{order:2}html.theme--catppuccin-macchiato .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--catppuccin-macchiato .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--catppuccin-macchiato .panel:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-macchiato .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--catppuccin-macchiato .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--catppuccin-macchiato .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--catppuccin-macchiato .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--catppuccin-macchiato .panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}html.theme--catppuccin-macchiato .panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}html.theme--catppuccin-macchiato .panel.is-dark .panel-heading,html.theme--catppuccin-macchiato .content kbd.panel .panel-heading{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .panel.is-dark .panel-tabs a.is-active,html.theme--catppuccin-macchiato .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#363a4f}html.theme--catppuccin-macchiato .panel.is-dark .panel-block.is-active .panel-icon,html.theme--catppuccin-macchiato .content kbd.panel .panel-block.is-active .panel-icon{color:#363a4f}html.theme--catppuccin-macchiato .panel.is-primary .panel-heading,html.theme--catppuccin-macchiato .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .panel.is-primary .panel-tabs a.is-active,html.theme--catppuccin-macchiato .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#8aadf4}html.theme--catppuccin-macchiato .panel.is-primary .panel-block.is-active .panel-icon,html.theme--catppuccin-macchiato .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#8aadf4}html.theme--catppuccin-macchiato .panel.is-link .panel-heading{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .panel.is-link .panel-tabs a.is-active{border-bottom-color:#8aadf4}html.theme--catppuccin-macchiato .panel.is-link .panel-block.is-active .panel-icon{color:#8aadf4}html.theme--catppuccin-macchiato .panel.is-info .panel-heading{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .panel.is-info .panel-tabs a.is-active{border-bottom-color:#8bd5ca}html.theme--catppuccin-macchiato .panel.is-info .panel-block.is-active .panel-icon{color:#8bd5ca}html.theme--catppuccin-macchiato .panel.is-success .panel-heading{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .panel.is-success .panel-tabs a.is-active{border-bottom-color:#a6da95}html.theme--catppuccin-macchiato .panel.is-success .panel-block.is-active .panel-icon{color:#a6da95}html.theme--catppuccin-macchiato .panel.is-warning .panel-heading{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#eed49f}html.theme--catppuccin-macchiato .panel.is-warning .panel-block.is-active .panel-icon{color:#eed49f}html.theme--catppuccin-macchiato .panel.is-danger .panel-heading{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#ed8796}html.theme--catppuccin-macchiato .panel.is-danger .panel-block.is-active .panel-icon{color:#ed8796}html.theme--catppuccin-macchiato .panel-tabs:not(:last-child),html.theme--catppuccin-macchiato .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--catppuccin-macchiato .panel-heading{background-color:#494d64;border-radius:8px 8px 0 0;color:#b5c1f1;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--catppuccin-macchiato .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--catppuccin-macchiato .panel-tabs a{border-bottom:1px solid #5b6078;margin-bottom:-1px;padding:0.5em}html.theme--catppuccin-macchiato .panel-tabs a.is-active{border-bottom-color:#494d64;color:#739df2}html.theme--catppuccin-macchiato .panel-list a{color:#cad3f5}html.theme--catppuccin-macchiato .panel-list a:hover{color:#8aadf4}html.theme--catppuccin-macchiato .panel-block{align-items:center;color:#b5c1f1;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--catppuccin-macchiato .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--catppuccin-macchiato .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--catppuccin-macchiato .panel-block.is-wrapped{flex-wrap:wrap}html.theme--catppuccin-macchiato .panel-block.is-active{border-left-color:#8aadf4;color:#739df2}html.theme--catppuccin-macchiato .panel-block.is-active .panel-icon{color:#8aadf4}html.theme--catppuccin-macchiato .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--catppuccin-macchiato a.panel-block,html.theme--catppuccin-macchiato label.panel-block{cursor:pointer}html.theme--catppuccin-macchiato a.panel-block:hover,html.theme--catppuccin-macchiato label.panel-block:hover{background-color:#1e2030}html.theme--catppuccin-macchiato .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#f5f7fd;margin-right:.75em}html.theme--catppuccin-macchiato .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--catppuccin-macchiato .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--catppuccin-macchiato .tabs a{align-items:center;border-bottom-color:#5b6078;border-bottom-style:solid;border-bottom-width:1px;color:#cad3f5;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--catppuccin-macchiato .tabs a:hover{border-bottom-color:#b5c1f1;color:#b5c1f1}html.theme--catppuccin-macchiato .tabs li{display:block}html.theme--catppuccin-macchiato .tabs li.is-active a{border-bottom-color:#8aadf4;color:#8aadf4}html.theme--catppuccin-macchiato .tabs ul{align-items:center;border-bottom-color:#5b6078;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--catppuccin-macchiato .tabs ul.is-left{padding-right:0.75em}html.theme--catppuccin-macchiato .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--catppuccin-macchiato .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--catppuccin-macchiato .tabs .icon:first-child{margin-right:.5em}html.theme--catppuccin-macchiato .tabs .icon:last-child{margin-left:.5em}html.theme--catppuccin-macchiato .tabs.is-centered ul{justify-content:center}html.theme--catppuccin-macchiato .tabs.is-right ul{justify-content:flex-end}html.theme--catppuccin-macchiato .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--catppuccin-macchiato .tabs.is-boxed a:hover{background-color:#1e2030;border-bottom-color:#5b6078}html.theme--catppuccin-macchiato .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#5b6078;border-bottom-color:rgba(0,0,0,0) !important}html.theme--catppuccin-macchiato .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--catppuccin-macchiato .tabs.is-toggle a{border-color:#5b6078;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--catppuccin-macchiato .tabs.is-toggle a:hover{background-color:#1e2030;border-color:#6e738d;z-index:2}html.theme--catppuccin-macchiato .tabs.is-toggle li+li{margin-left:-1px}html.theme--catppuccin-macchiato .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--catppuccin-macchiato .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--catppuccin-macchiato .tabs.is-toggle li.is-active a{background-color:#8aadf4;border-color:#8aadf4;color:#fff;z-index:1}html.theme--catppuccin-macchiato .tabs.is-toggle ul{border-bottom:none}html.theme--catppuccin-macchiato .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--catppuccin-macchiato .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--catppuccin-macchiato .tabs.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--catppuccin-macchiato .tabs.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .tabs.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-macchiato .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .column.is-narrow-mobile{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-mobile{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-mobile{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-mobile{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-mobile{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-mobile{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-mobile{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-mobile{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-mobile{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-mobile{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-mobile{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-mobile{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-mobile{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .column.is-narrow,html.theme--catppuccin-macchiato .column.is-narrow-tablet{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full,html.theme--catppuccin-macchiato .column.is-full-tablet{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters,html.theme--catppuccin-macchiato .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds,html.theme--catppuccin-macchiato .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half,html.theme--catppuccin-macchiato .column.is-half-tablet{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third,html.theme--catppuccin-macchiato .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter,html.theme--catppuccin-macchiato .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth,html.theme--catppuccin-macchiato .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths,html.theme--catppuccin-macchiato .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths,html.theme--catppuccin-macchiato .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths,html.theme--catppuccin-macchiato .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters,html.theme--catppuccin-macchiato .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds,html.theme--catppuccin-macchiato .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half,html.theme--catppuccin-macchiato .column.is-offset-half-tablet{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third,html.theme--catppuccin-macchiato .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter,html.theme--catppuccin-macchiato .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth,html.theme--catppuccin-macchiato .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths,html.theme--catppuccin-macchiato .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths,html.theme--catppuccin-macchiato .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths,html.theme--catppuccin-macchiato .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0,html.theme--catppuccin-macchiato .column.is-0-tablet{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0,html.theme--catppuccin-macchiato .column.is-offset-0-tablet{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1,html.theme--catppuccin-macchiato .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1,html.theme--catppuccin-macchiato .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2,html.theme--catppuccin-macchiato .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2,html.theme--catppuccin-macchiato .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3,html.theme--catppuccin-macchiato .column.is-3-tablet{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3,html.theme--catppuccin-macchiato .column.is-offset-3-tablet{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4,html.theme--catppuccin-macchiato .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4,html.theme--catppuccin-macchiato .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5,html.theme--catppuccin-macchiato .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5,html.theme--catppuccin-macchiato .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6,html.theme--catppuccin-macchiato .column.is-6-tablet{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6,html.theme--catppuccin-macchiato .column.is-offset-6-tablet{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7,html.theme--catppuccin-macchiato .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7,html.theme--catppuccin-macchiato .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8,html.theme--catppuccin-macchiato .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8,html.theme--catppuccin-macchiato .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9,html.theme--catppuccin-macchiato .column.is-9-tablet{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9,html.theme--catppuccin-macchiato .column.is-offset-9-tablet{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10,html.theme--catppuccin-macchiato .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10,html.theme--catppuccin-macchiato .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11,html.theme--catppuccin-macchiato .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11,html.theme--catppuccin-macchiato .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12,html.theme--catppuccin-macchiato .column.is-12-tablet{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12,html.theme--catppuccin-macchiato .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .column.is-narrow-touch{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-touch{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-touch{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-touch{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-touch{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-touch{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-touch{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-touch{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-touch{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-touch{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-touch{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-touch{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-touch{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-touch{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-touch{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-touch{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-touch{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-touch{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-touch{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-touch{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-touch{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-touch{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-touch{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-touch{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-touch{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-touch{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-touch{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .column.is-narrow-desktop{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-desktop{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-desktop{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-desktop{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-desktop{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-desktop{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-desktop{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-desktop{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-desktop{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-desktop{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-desktop{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-desktop{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-desktop{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .column.is-narrow-widescreen{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-widescreen{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-widescreen{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-widescreen{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-widescreen{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-widescreen{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-widescreen{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-widescreen{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-widescreen{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-widescreen{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-widescreen{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-widescreen{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-widescreen{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .column.is-narrow-fullhd{flex:none;width:unset}html.theme--catppuccin-macchiato .column.is-full-fullhd{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--catppuccin-macchiato .column.is-half-fullhd{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--catppuccin-macchiato .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--catppuccin-macchiato .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--catppuccin-macchiato .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--catppuccin-macchiato .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--catppuccin-macchiato .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--catppuccin-macchiato .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--catppuccin-macchiato .column.is-offset-half-fullhd{margin-left:50%}html.theme--catppuccin-macchiato .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--catppuccin-macchiato .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--catppuccin-macchiato .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--catppuccin-macchiato .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--catppuccin-macchiato .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--catppuccin-macchiato .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--catppuccin-macchiato .column.is-0-fullhd{flex:none;width:0%}html.theme--catppuccin-macchiato .column.is-offset-0-fullhd{margin-left:0%}html.theme--catppuccin-macchiato .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--catppuccin-macchiato .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--catppuccin-macchiato .column.is-3-fullhd{flex:none;width:25%}html.theme--catppuccin-macchiato .column.is-offset-3-fullhd{margin-left:25%}html.theme--catppuccin-macchiato .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--catppuccin-macchiato .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--catppuccin-macchiato .column.is-6-fullhd{flex:none;width:50%}html.theme--catppuccin-macchiato .column.is-offset-6-fullhd{margin-left:50%}html.theme--catppuccin-macchiato .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--catppuccin-macchiato .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--catppuccin-macchiato .column.is-9-fullhd{flex:none;width:75%}html.theme--catppuccin-macchiato .column.is-offset-9-fullhd{margin-left:75%}html.theme--catppuccin-macchiato .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--catppuccin-macchiato .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--catppuccin-macchiato .column.is-12-fullhd{flex:none;width:100%}html.theme--catppuccin-macchiato .column.is-offset-12-fullhd{margin-left:100%}}html.theme--catppuccin-macchiato .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-macchiato .columns:last-child{margin-bottom:-.75rem}html.theme--catppuccin-macchiato .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--catppuccin-macchiato .columns.is-centered{justify-content:center}html.theme--catppuccin-macchiato .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--catppuccin-macchiato .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--catppuccin-macchiato .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-macchiato .columns.is-gapless:last-child{margin-bottom:0}html.theme--catppuccin-macchiato .columns.is-mobile{display:flex}html.theme--catppuccin-macchiato .columns.is-multiline{flex-wrap:wrap}html.theme--catppuccin-macchiato .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-desktop{display:flex}}html.theme--catppuccin-macchiato .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--catppuccin-macchiato .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--catppuccin-macchiato .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--catppuccin-macchiato .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-macchiato .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--catppuccin-macchiato .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--catppuccin-macchiato .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-macchiato .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--catppuccin-macchiato .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-macchiato .tile.is-child{margin:0 !important}html.theme--catppuccin-macchiato .tile.is-parent{padding:.75rem}html.theme--catppuccin-macchiato .tile.is-vertical{flex-direction:column}html.theme--catppuccin-macchiato .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .tile:not(.is-child){display:flex}html.theme--catppuccin-macchiato .tile.is-1{flex:none;width:8.33333337%}html.theme--catppuccin-macchiato .tile.is-2{flex:none;width:16.66666674%}html.theme--catppuccin-macchiato .tile.is-3{flex:none;width:25%}html.theme--catppuccin-macchiato .tile.is-4{flex:none;width:33.33333337%}html.theme--catppuccin-macchiato .tile.is-5{flex:none;width:41.66666674%}html.theme--catppuccin-macchiato .tile.is-6{flex:none;width:50%}html.theme--catppuccin-macchiato .tile.is-7{flex:none;width:58.33333337%}html.theme--catppuccin-macchiato .tile.is-8{flex:none;width:66.66666674%}html.theme--catppuccin-macchiato .tile.is-9{flex:none;width:75%}html.theme--catppuccin-macchiato .tile.is-10{flex:none;width:83.33333337%}html.theme--catppuccin-macchiato .tile.is-11{flex:none;width:91.66666674%}html.theme--catppuccin-macchiato .tile.is-12{flex:none;width:100%}}html.theme--catppuccin-macchiato .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--catppuccin-macchiato .hero .navbar{background:none}html.theme--catppuccin-macchiato .hero .tabs ul{border-bottom:none}html.theme--catppuccin-macchiato .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-white strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-white .title{color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--catppuccin-macchiato .hero.is-white .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-white .navbar-menu{background-color:#fff}}html.theme--catppuccin-macchiato .hero.is-white .navbar-item,html.theme--catppuccin-macchiato .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--catppuccin-macchiato .hero.is-white a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-white a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-white .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-white .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-white .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-white .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-white .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--catppuccin-macchiato .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-macchiato .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-black strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-black .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-black .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--catppuccin-macchiato .hero.is-black .navbar-item,html.theme--catppuccin-macchiato .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-black a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-black a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-black .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-macchiato .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-black .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-black .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-black .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-black .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-macchiato .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--catppuccin-macchiato .hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-light strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-macchiato .hero.is-light .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-light .navbar-menu{background-color:#f5f5f5}}html.theme--catppuccin-macchiato .hero.is-light .navbar-item,html.theme--catppuccin-macchiato .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-light a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-light .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-macchiato .hero.is-light .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-light .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-light .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-light .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-macchiato .hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}html.theme--catppuccin-macchiato .hero.is-dark,html.theme--catppuccin-macchiato .content kbd.hero{background-color:#363a4f;color:#fff}html.theme--catppuccin-macchiato .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-dark strong,html.theme--catppuccin-macchiato .content kbd.hero strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-dark .title,html.theme--catppuccin-macchiato .content kbd.hero .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-dark .subtitle,html.theme--catppuccin-macchiato .content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-dark .subtitle a:not(.button),html.theme--catppuccin-macchiato .content kbd.hero .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-dark .subtitle strong,html.theme--catppuccin-macchiato .content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-dark .navbar-menu,html.theme--catppuccin-macchiato .content kbd.hero .navbar-menu{background-color:#363a4f}}html.theme--catppuccin-macchiato .hero.is-dark .navbar-item,html.theme--catppuccin-macchiato .content kbd.hero .navbar-item,html.theme--catppuccin-macchiato .hero.is-dark .navbar-link,html.theme--catppuccin-macchiato .content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-dark a.navbar-item:hover,html.theme--catppuccin-macchiato .content kbd.hero a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-dark a.navbar-item.is-active,html.theme--catppuccin-macchiato .content kbd.hero a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-dark .navbar-link:hover,html.theme--catppuccin-macchiato .content kbd.hero .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-dark .navbar-link.is-active,html.theme--catppuccin-macchiato .content kbd.hero .navbar-link.is-active{background-color:#2c2f40;color:#fff}html.theme--catppuccin-macchiato .hero.is-dark .tabs a,html.theme--catppuccin-macchiato .content kbd.hero .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-dark .tabs a:hover,html.theme--catppuccin-macchiato .content kbd.hero .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-dark .tabs li.is-active a,html.theme--catppuccin-macchiato .content kbd.hero .tabs li.is-active a{color:#363a4f !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-boxed a,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-toggle a,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-toggle a:hover,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363a4f}html.theme--catppuccin-macchiato .hero.is-dark.is-bold,html.theme--catppuccin-macchiato .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #1d2535 0%, #363a4f 71%, #3d3c62 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-dark.is-bold .navbar-menu,html.theme--catppuccin-macchiato .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1d2535 0%, #363a4f 71%, #3d3c62 100%)}}html.theme--catppuccin-macchiato .hero.is-primary,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-primary strong,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-primary .title,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-primary .subtitle,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-primary .subtitle a:not(.button),html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-primary .subtitle strong,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-primary .navbar-menu,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#8aadf4}}html.theme--catppuccin-macchiato .hero.is-primary .navbar-item,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--catppuccin-macchiato .hero.is-primary .navbar-link,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-primary a.navbar-item:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-primary a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-primary .navbar-link:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-primary .navbar-link.is-active,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .hero.is-primary .tabs a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-primary .tabs a:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-primary .tabs li.is-active a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#8aadf4 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-boxed a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-toggle a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-toggle a:hover,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .hero.is-primary.is-bold,html.theme--catppuccin-macchiato .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #52a5f9 0%, #8aadf4 71%, #9fadf9 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-primary.is-bold .navbar-menu,html.theme--catppuccin-macchiato .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #52a5f9 0%, #8aadf4 71%, #9fadf9 100%)}}html.theme--catppuccin-macchiato .hero.is-link{background-color:#8aadf4;color:#fff}html.theme--catppuccin-macchiato .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-link strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-link .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-link .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-link .navbar-menu{background-color:#8aadf4}}html.theme--catppuccin-macchiato .hero.is-link .navbar-item,html.theme--catppuccin-macchiato .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-link a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-link a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-link .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-link .navbar-link.is-active{background-color:#739df2;color:#fff}html.theme--catppuccin-macchiato .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-link .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-link .tabs li.is-active a{color:#8aadf4 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-link .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-link .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-link .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#8aadf4}html.theme--catppuccin-macchiato .hero.is-link.is-bold{background-image:linear-gradient(141deg, #52a5f9 0%, #8aadf4 71%, #9fadf9 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #52a5f9 0%, #8aadf4 71%, #9fadf9 100%)}}html.theme--catppuccin-macchiato .hero.is-info{background-color:#8bd5ca;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-info strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-info .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-macchiato .hero.is-info .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-info .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-info .navbar-menu{background-color:#8bd5ca}}html.theme--catppuccin-macchiato .hero.is-info .navbar-item,html.theme--catppuccin-macchiato .hero.is-info .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-info a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-info .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-info .navbar-link.is-active{background-color:#78cec1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-macchiato .hero.is-info .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-info .tabs li.is-active a{color:#8bd5ca !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-info .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-info .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-info .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#8bd5ca}html.theme--catppuccin-macchiato .hero.is-info.is-bold{background-image:linear-gradient(141deg, #5bd2ac 0%, #8bd5ca 71%, #9adedf 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #5bd2ac 0%, #8bd5ca 71%, #9adedf 100%)}}html.theme--catppuccin-macchiato .hero.is-success{background-color:#a6da95;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-success strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-success .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-macchiato .hero.is-success .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-success .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-success .navbar-menu{background-color:#a6da95}}html.theme--catppuccin-macchiato .hero.is-success .navbar-item,html.theme--catppuccin-macchiato .hero.is-success .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-success a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-success .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-success .navbar-link.is-active{background-color:#96d382;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-macchiato .hero.is-success .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-success .tabs li.is-active a{color:#a6da95 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-success .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-success .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-success .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#a6da95}html.theme--catppuccin-macchiato .hero.is-success.is-bold{background-image:linear-gradient(141deg, #94d765 0%, #a6da95 71%, #aae4a5 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #94d765 0%, #a6da95 71%, #aae4a5 100%)}}html.theme--catppuccin-macchiato .hero.is-warning{background-color:#eed49f;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-warning strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-warning .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-macchiato .hero.is-warning .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-warning .navbar-menu{background-color:#eed49f}}html.theme--catppuccin-macchiato .hero.is-warning .navbar-item,html.theme--catppuccin-macchiato .hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-warning a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-warning .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-warning .navbar-link.is-active{background-color:#eaca89;color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-macchiato .hero.is-warning .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-warning .tabs li.is-active a{color:#eed49f !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#eed49f}html.theme--catppuccin-macchiato .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #efae6b 0%, #eed49f 71%, #f4e9b2 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #efae6b 0%, #eed49f 71%, #f4e9b2 100%)}}html.theme--catppuccin-macchiato .hero.is-danger{background-color:#ed8796;color:#fff}html.theme--catppuccin-macchiato .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-macchiato .hero.is-danger strong{color:inherit}html.theme--catppuccin-macchiato .hero.is-danger .title{color:#fff}html.theme--catppuccin-macchiato .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-macchiato .hero.is-danger .subtitle a:not(.button),html.theme--catppuccin-macchiato .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .hero.is-danger .navbar-menu{background-color:#ed8796}}html.theme--catppuccin-macchiato .hero.is-danger .navbar-item,html.theme--catppuccin-macchiato .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-macchiato .hero.is-danger a.navbar-item:hover,html.theme--catppuccin-macchiato .hero.is-danger a.navbar-item.is-active,html.theme--catppuccin-macchiato .hero.is-danger .navbar-link:hover,html.theme--catppuccin-macchiato .hero.is-danger .navbar-link.is-active{background-color:#ea7183;color:#fff}html.theme--catppuccin-macchiato .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-macchiato .hero.is-danger .tabs a:hover{opacity:1}html.theme--catppuccin-macchiato .hero.is-danger .tabs li.is-active a{color:#ed8796 !important;opacity:1}html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-boxed a,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-boxed a:hover,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--catppuccin-macchiato .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#ed8796}html.theme--catppuccin-macchiato .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #f05183 0%, #ed8796 71%, #f39c9a 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #f05183 0%, #ed8796 71%, #f39c9a 100%)}}html.theme--catppuccin-macchiato .hero.is-small .hero-body,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--catppuccin-macchiato .hero.is-halfheight .hero-body,html.theme--catppuccin-macchiato .hero.is-fullheight .hero-body,html.theme--catppuccin-macchiato .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--catppuccin-macchiato .hero.is-halfheight .hero-body>.container,html.theme--catppuccin-macchiato .hero.is-fullheight .hero-body>.container,html.theme--catppuccin-macchiato .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--catppuccin-macchiato .hero.is-halfheight{min-height:50vh}html.theme--catppuccin-macchiato .hero.is-fullheight{min-height:100vh}html.theme--catppuccin-macchiato .hero-video{overflow:hidden}html.theme--catppuccin-macchiato .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--catppuccin-macchiato .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero-video{display:none}}html.theme--catppuccin-macchiato .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-macchiato .hero-buttons .button{display:flex}html.theme--catppuccin-macchiato .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .hero-buttons{display:flex;justify-content:center}html.theme--catppuccin-macchiato .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--catppuccin-macchiato .hero-head,html.theme--catppuccin-macchiato .hero-foot{flex-grow:0;flex-shrink:0}html.theme--catppuccin-macchiato .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-macchiato .hero-body{padding:3rem 3rem}}html.theme--catppuccin-macchiato .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato .section{padding:3rem 3rem}html.theme--catppuccin-macchiato .section.is-medium{padding:9rem 4.5rem}html.theme--catppuccin-macchiato .section.is-large{padding:18rem 6rem}}html.theme--catppuccin-macchiato .footer{background-color:#1e2030;padding:3rem 1.5rem 6rem}html.theme--catppuccin-macchiato h1 .docs-heading-anchor,html.theme--catppuccin-macchiato h1 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h1 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h2 .docs-heading-anchor,html.theme--catppuccin-macchiato h2 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h2 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h3 .docs-heading-anchor,html.theme--catppuccin-macchiato h3 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h3 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h4 .docs-heading-anchor,html.theme--catppuccin-macchiato h4 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h4 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h5 .docs-heading-anchor,html.theme--catppuccin-macchiato h5 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h5 .docs-heading-anchor:visited,html.theme--catppuccin-macchiato h6 .docs-heading-anchor,html.theme--catppuccin-macchiato h6 .docs-heading-anchor:hover,html.theme--catppuccin-macchiato h6 .docs-heading-anchor:visited{color:#cad3f5}html.theme--catppuccin-macchiato h1 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h2 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h3 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h4 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h5 .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--catppuccin-macchiato h1 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h2 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h3 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h4 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h5 .docs-heading-anchor-permalink::before,html.theme--catppuccin-macchiato h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--catppuccin-macchiato h1:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h2:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h3:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h4:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h5:hover .docs-heading-anchor-permalink,html.theme--catppuccin-macchiato h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--catppuccin-macchiato .docs-light-only{display:none !important}html.theme--catppuccin-macchiato pre{position:relative;overflow:hidden}html.theme--catppuccin-macchiato pre code,html.theme--catppuccin-macchiato pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--catppuccin-macchiato pre code:first-of-type,html.theme--catppuccin-macchiato pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--catppuccin-macchiato pre code:last-of-type,html.theme--catppuccin-macchiato pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--catppuccin-macchiato pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#cad3f5;cursor:pointer;text-align:center}html.theme--catppuccin-macchiato pre .copy-button:focus,html.theme--catppuccin-macchiato pre .copy-button:hover{opacity:1;background:rgba(202,211,245,0.1);color:#8aadf4}html.theme--catppuccin-macchiato pre .copy-button.success{color:#a6da95;opacity:1}html.theme--catppuccin-macchiato pre .copy-button.error{color:#ed8796;opacity:1}html.theme--catppuccin-macchiato pre:hover .copy-button{opacity:1}html.theme--catppuccin-macchiato .admonition{background-color:#1e2030;border-style:solid;border-width:2px;border-color:#b8c0e0;border-radius:4px;font-size:1rem}html.theme--catppuccin-macchiato .admonition strong{color:currentColor}html.theme--catppuccin-macchiato .admonition.is-small,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--catppuccin-macchiato .admonition.is-medium{font-size:1.25rem}html.theme--catppuccin-macchiato .admonition.is-large{font-size:1.5rem}html.theme--catppuccin-macchiato .admonition.is-default{background-color:#1e2030;border-color:#b8c0e0}html.theme--catppuccin-macchiato .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#b8c0e0}html.theme--catppuccin-macchiato .admonition.is-default>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-info{background-color:#1e2030;border-color:#8bd5ca}html.theme--catppuccin-macchiato .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#8bd5ca}html.theme--catppuccin-macchiato .admonition.is-info>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-success{background-color:#1e2030;border-color:#a6da95}html.theme--catppuccin-macchiato .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#a6da95}html.theme--catppuccin-macchiato .admonition.is-success>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-warning{background-color:#1e2030;border-color:#eed49f}html.theme--catppuccin-macchiato .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#eed49f}html.theme--catppuccin-macchiato .admonition.is-warning>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-danger{background-color:#1e2030;border-color:#ed8796}html.theme--catppuccin-macchiato .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#ed8796}html.theme--catppuccin-macchiato .admonition.is-danger>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-compat{background-color:#1e2030;border-color:#91d7e3}html.theme--catppuccin-macchiato .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#91d7e3}html.theme--catppuccin-macchiato .admonition.is-compat>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition.is-todo{background-color:#1e2030;border-color:#c6a0f6}html.theme--catppuccin-macchiato .admonition.is-todo>.admonition-header{background-color:rgba(0,0,0,0);color:#c6a0f6}html.theme--catppuccin-macchiato .admonition.is-todo>.admonition-body{color:#cad3f5}html.theme--catppuccin-macchiato .admonition-header{color:#b8c0e0;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--catppuccin-macchiato .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--catppuccin-macchiato details.admonition.is-details>.admonition-header{list-style:none}html.theme--catppuccin-macchiato details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--catppuccin-macchiato details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--catppuccin-macchiato .admonition-body{color:#cad3f5;padding:0.5rem .75rem}html.theme--catppuccin-macchiato .admonition-body pre{background-color:#1e2030}html.theme--catppuccin-macchiato .admonition-body code{background-color:#1e2030}html.theme--catppuccin-macchiato .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #5b6078;border-radius:4px;box-shadow:none;max-width:100%}html.theme--catppuccin-macchiato .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#1e2030;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #5b6078;overflow:auto}html.theme--catppuccin-macchiato .docstring>header code{background-color:transparent}html.theme--catppuccin-macchiato .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--catppuccin-macchiato .docstring>header .docstring-binding{margin-right:0.3em}html.theme--catppuccin-macchiato .docstring>header .docstring-category{margin-left:0.3em}html.theme--catppuccin-macchiato .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #5b6078}html.theme--catppuccin-macchiato .docstring>section:last-child{border-bottom:none}html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--catppuccin-macchiato .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-macchiato .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-macchiato .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--catppuccin-macchiato .documenter-example-output{background-color:#24273a}html.theme--catppuccin-macchiato .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#1e2030;color:#cad3f5;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--catppuccin-macchiato .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--catppuccin-macchiato .outdated-warning-overlay a{color:#8aadf4}html.theme--catppuccin-macchiato .outdated-warning-overlay a:hover{color:#91d7e3}html.theme--catppuccin-macchiato .content pre{border:2px solid #5b6078;border-radius:4px}html.theme--catppuccin-macchiato .content code{font-weight:inherit}html.theme--catppuccin-macchiato .content a code{color:#8aadf4}html.theme--catppuccin-macchiato .content a:hover code{color:#91d7e3}html.theme--catppuccin-macchiato .content h1 code,html.theme--catppuccin-macchiato .content h2 code,html.theme--catppuccin-macchiato .content h3 code,html.theme--catppuccin-macchiato .content h4 code,html.theme--catppuccin-macchiato .content h5 code,html.theme--catppuccin-macchiato .content h6 code{color:#cad3f5}html.theme--catppuccin-macchiato .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--catppuccin-macchiato .content blockquote>ul:first-child,html.theme--catppuccin-macchiato .content blockquote>ol:first-child,html.theme--catppuccin-macchiato .content .admonition-body>ul:first-child,html.theme--catppuccin-macchiato .content .admonition-body>ol:first-child{margin-top:0}html.theme--catppuccin-macchiato pre,html.theme--catppuccin-macchiato code{font-variant-ligatures:no-contextual}html.theme--catppuccin-macchiato .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--catppuccin-macchiato .breadcrumb a.is-disabled,html.theme--catppuccin-macchiato .breadcrumb a.is-disabled:hover{color:#b5c1f1}html.theme--catppuccin-macchiato .hljs{background:initial !important}html.theme--catppuccin-macchiato .katex .katex-mathml{top:0;right:0}html.theme--catppuccin-macchiato .katex-display,html.theme--catppuccin-macchiato mjx-container,html.theme--catppuccin-macchiato .MathJax_Display{margin:0.5em 0 !important}html.theme--catppuccin-macchiato html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--catppuccin-macchiato li.no-marker{list-style:none}html.theme--catppuccin-macchiato #documenter .docs-main>article{overflow-wrap:break-word}html.theme--catppuccin-macchiato #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-main{width:100%}html.theme--catppuccin-macchiato #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--catppuccin-macchiato #documenter .docs-main>header,html.theme--catppuccin-macchiato #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar{background-color:#24273a;border-bottom:1px solid #5b6078;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--catppuccin-macchiato #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--catppuccin-macchiato #documenter .docs-main section.footnotes{border-top:1px solid #5b6078}html.theme--catppuccin-macchiato #documenter .docs-main section.footnotes li .tag:first-child,html.theme--catppuccin-macchiato #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--catppuccin-macchiato #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--catppuccin-macchiato .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #5b6078;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--catppuccin-macchiato #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--catppuccin-macchiato #documenter .docs-sidebar{display:flex;flex-direction:column;color:#cad3f5;background-color:#1e2030;border-right:1px solid #5b6078;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--catppuccin-macchiato #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato #documenter .docs-sidebar{left:0;top:0}}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-package-name a,html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-package-name a:hover{color:#cad3f5}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #5b6078;display:none;padding:0.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #5b6078;padding-bottom:1.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #5b6078}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#cad3f5;background:#1e2030}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#cad3f5;background-color:#26283d}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #5b6078;border-bottom:1px solid #5b6078;background-color:#181926}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#181926;color:#cad3f5}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#26283d;color:#cad3f5}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #5b6078}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--catppuccin-macchiato #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#2e3149}html.theme--catppuccin-macchiato #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#3d4162}}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-macchiato #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-macchiato #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#2e3149}html.theme--catppuccin-macchiato #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#3d4162}}html.theme--catppuccin-macchiato kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--catppuccin-macchiato .search-min-width-50{min-width:50%}html.theme--catppuccin-macchiato .search-min-height-100{min-height:100%}html.theme--catppuccin-macchiato .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--catppuccin-macchiato .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-macchiato .search-result-link:hover,html.theme--catppuccin-macchiato .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--catppuccin-macchiato .search-result-link .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-macchiato .property-search-result-badge,html.theme--catppuccin-macchiato .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--catppuccin-macchiato .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link:hover .search-filter,html.theme--catppuccin-macchiato .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--catppuccin-macchiato .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--catppuccin-macchiato .search-filter:hover,html.theme--catppuccin-macchiato .search-filter:focus{color:#333}html.theme--catppuccin-macchiato .search-filter-selected{color:#363a4f;background-color:#b7bdf8}html.theme--catppuccin-macchiato .search-filter-selected:hover,html.theme--catppuccin-macchiato .search-filter-selected:focus{color:#363a4f}html.theme--catppuccin-macchiato .search-result-highlight{background-color:#ffdd57;color:black}html.theme--catppuccin-macchiato .search-divider{border-bottom:1px solid #5b6078}html.theme--catppuccin-macchiato .search-result-title{width:85%;color:#f5f5f5}html.theme--catppuccin-macchiato .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-macchiato #search-modal .modal-card-body::-webkit-scrollbar,html.theme--catppuccin-macchiato #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--catppuccin-macchiato #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--catppuccin-macchiato #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--catppuccin-macchiato #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--catppuccin-macchiato #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--catppuccin-macchiato .w-100{width:100%}html.theme--catppuccin-macchiato .gap-2{gap:0.5rem}html.theme--catppuccin-macchiato .gap-4{gap:1rem}html.theme--catppuccin-macchiato .gap-8{gap:2rem}html.theme--catppuccin-macchiato{background-color:#24273a;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-macchiato a{transition:all 200ms ease}html.theme--catppuccin-macchiato .label{color:#cad3f5}html.theme--catppuccin-macchiato .button,html.theme--catppuccin-macchiato .control.has-icons-left .icon,html.theme--catppuccin-macchiato .control.has-icons-right .icon,html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato .pagination-ellipsis,html.theme--catppuccin-macchiato .pagination-link,html.theme--catppuccin-macchiato .pagination-next,html.theme--catppuccin-macchiato .pagination-previous,html.theme--catppuccin-macchiato .select,html.theme--catppuccin-macchiato .select select,html.theme--catppuccin-macchiato .textarea{height:2.5em;color:#cad3f5}html.theme--catppuccin-macchiato .input,html.theme--catppuccin-macchiato #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-macchiato .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em;color:#cad3f5}html.theme--catppuccin-macchiato .select:after,html.theme--catppuccin-macchiato .select select{border-width:1px}html.theme--catppuccin-macchiato .menu-list a{transition:all 300ms ease}html.theme--catppuccin-macchiato .modal-card-foot,html.theme--catppuccin-macchiato .modal-card-head{border-color:#5b6078}html.theme--catppuccin-macchiato .navbar{border-radius:.4em}html.theme--catppuccin-macchiato .navbar.is-transparent{background:none}html.theme--catppuccin-macchiato .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-macchiato .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#8aadf4}@media screen and (max-width: 1055px){html.theme--catppuccin-macchiato .navbar .navbar-menu{background-color:#8aadf4;border-radius:0 0 .4em .4em}}html.theme--catppuccin-macchiato .docstring>section>a.docs-sourcelink:not(body){color:#363a4f}html.theme--catppuccin-macchiato .tag.is-link:not(body),html.theme--catppuccin-macchiato .docstring>section>a.is-link.docs-sourcelink:not(body),html.theme--catppuccin-macchiato .content kbd.is-link:not(body){color:#363a4f}html.theme--catppuccin-macchiato .ansi span.sgr1{font-weight:bolder}html.theme--catppuccin-macchiato .ansi span.sgr2{font-weight:lighter}html.theme--catppuccin-macchiato .ansi span.sgr3{font-style:italic}html.theme--catppuccin-macchiato .ansi span.sgr4{text-decoration:underline}html.theme--catppuccin-macchiato .ansi span.sgr7{color:#24273a;background-color:#cad3f5}html.theme--catppuccin-macchiato .ansi span.sgr8{color:transparent}html.theme--catppuccin-macchiato .ansi span.sgr8 span{color:transparent}html.theme--catppuccin-macchiato .ansi span.sgr9{text-decoration:line-through}html.theme--catppuccin-macchiato .ansi span.sgr30{color:#494d64}html.theme--catppuccin-macchiato .ansi span.sgr31{color:#ed8796}html.theme--catppuccin-macchiato .ansi span.sgr32{color:#a6da95}html.theme--catppuccin-macchiato .ansi span.sgr33{color:#eed49f}html.theme--catppuccin-macchiato .ansi span.sgr34{color:#8aadf4}html.theme--catppuccin-macchiato .ansi span.sgr35{color:#f5bde6}html.theme--catppuccin-macchiato .ansi span.sgr36{color:#8bd5ca}html.theme--catppuccin-macchiato .ansi span.sgr37{color:#b8c0e0}html.theme--catppuccin-macchiato .ansi span.sgr40{background-color:#494d64}html.theme--catppuccin-macchiato .ansi span.sgr41{background-color:#ed8796}html.theme--catppuccin-macchiato .ansi span.sgr42{background-color:#a6da95}html.theme--catppuccin-macchiato .ansi span.sgr43{background-color:#eed49f}html.theme--catppuccin-macchiato .ansi span.sgr44{background-color:#8aadf4}html.theme--catppuccin-macchiato .ansi span.sgr45{background-color:#f5bde6}html.theme--catppuccin-macchiato .ansi span.sgr46{background-color:#8bd5ca}html.theme--catppuccin-macchiato .ansi span.sgr47{background-color:#b8c0e0}html.theme--catppuccin-macchiato .ansi span.sgr90{color:#5b6078}html.theme--catppuccin-macchiato .ansi span.sgr91{color:#ed8796}html.theme--catppuccin-macchiato .ansi span.sgr92{color:#a6da95}html.theme--catppuccin-macchiato .ansi span.sgr93{color:#eed49f}html.theme--catppuccin-macchiato .ansi span.sgr94{color:#8aadf4}html.theme--catppuccin-macchiato .ansi span.sgr95{color:#f5bde6}html.theme--catppuccin-macchiato .ansi span.sgr96{color:#8bd5ca}html.theme--catppuccin-macchiato .ansi span.sgr97{color:#a5adcb}html.theme--catppuccin-macchiato .ansi span.sgr100{background-color:#5b6078}html.theme--catppuccin-macchiato .ansi span.sgr101{background-color:#ed8796}html.theme--catppuccin-macchiato .ansi span.sgr102{background-color:#a6da95}html.theme--catppuccin-macchiato .ansi span.sgr103{background-color:#eed49f}html.theme--catppuccin-macchiato .ansi span.sgr104{background-color:#8aadf4}html.theme--catppuccin-macchiato .ansi span.sgr105{background-color:#f5bde6}html.theme--catppuccin-macchiato .ansi span.sgr106{background-color:#8bd5ca}html.theme--catppuccin-macchiato .ansi span.sgr107{background-color:#a5adcb}html.theme--catppuccin-macchiato code.language-julia-repl>span.hljs-meta{color:#a6da95;font-weight:bolder}html.theme--catppuccin-macchiato code .hljs{color:#cad3f5;background:#24273a}html.theme--catppuccin-macchiato code .hljs-keyword{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-built_in{color:#ed8796}html.theme--catppuccin-macchiato code .hljs-type{color:#eed49f}html.theme--catppuccin-macchiato code .hljs-literal{color:#f5a97f}html.theme--catppuccin-macchiato code .hljs-number{color:#f5a97f}html.theme--catppuccin-macchiato code .hljs-operator{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-punctuation{color:#b8c0e0}html.theme--catppuccin-macchiato code .hljs-property{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-regexp{color:#f5bde6}html.theme--catppuccin-macchiato code .hljs-string{color:#a6da95}html.theme--catppuccin-macchiato code .hljs-char.escape_{color:#a6da95}html.theme--catppuccin-macchiato code .hljs-subst{color:#a5adcb}html.theme--catppuccin-macchiato code .hljs-symbol{color:#f0c6c6}html.theme--catppuccin-macchiato code .hljs-variable{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-variable.language_{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-variable.constant_{color:#f5a97f}html.theme--catppuccin-macchiato code .hljs-title{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-title.class_{color:#eed49f}html.theme--catppuccin-macchiato code .hljs-title.function_{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-params{color:#cad3f5}html.theme--catppuccin-macchiato code .hljs-comment{color:#5b6078}html.theme--catppuccin-macchiato code .hljs-doctag{color:#ed8796}html.theme--catppuccin-macchiato code .hljs-meta{color:#f5a97f}html.theme--catppuccin-macchiato code .hljs-section{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-tag{color:#a5adcb}html.theme--catppuccin-macchiato code .hljs-name{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-attr{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-attribute{color:#a6da95}html.theme--catppuccin-macchiato code .hljs-bullet{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-code{color:#a6da95}html.theme--catppuccin-macchiato code .hljs-emphasis{color:#ed8796;font-style:italic}html.theme--catppuccin-macchiato code .hljs-strong{color:#ed8796;font-weight:bold}html.theme--catppuccin-macchiato code .hljs-formula{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-link{color:#7dc4e4;font-style:italic}html.theme--catppuccin-macchiato code .hljs-quote{color:#a6da95;font-style:italic}html.theme--catppuccin-macchiato code .hljs-selector-tag{color:#eed49f}html.theme--catppuccin-macchiato code .hljs-selector-id{color:#8aadf4}html.theme--catppuccin-macchiato code .hljs-selector-class{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-selector-attr{color:#c6a0f6}html.theme--catppuccin-macchiato code .hljs-selector-pseudo{color:#8bd5ca}html.theme--catppuccin-macchiato code .hljs-template-tag{color:#f0c6c6}html.theme--catppuccin-macchiato code .hljs-template-variable{color:#f0c6c6}html.theme--catppuccin-macchiato code .hljs-addition{color:#a6da95;background:rgba(166,227,161,0.15)}html.theme--catppuccin-macchiato code .hljs-deletion{color:#ed8796;background:rgba(243,139,168,0.15)}html.theme--catppuccin-macchiato .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-macchiato .search-result-link:hover,html.theme--catppuccin-macchiato .search-result-link:focus{background-color:#363a4f}html.theme--catppuccin-macchiato .search-result-link .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-macchiato .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link:hover .search-filter,html.theme--catppuccin-macchiato .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-macchiato .search-result-link:focus .search-filter{color:#363a4f !important;background-color:#b7bdf8 !important}html.theme--catppuccin-macchiato .search-result-title{color:#cad3f5}html.theme--catppuccin-macchiato .search-result-highlight{background-color:#ed8796;color:#1e2030}html.theme--catppuccin-macchiato .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--catppuccin-macchiato .w-100{width:100%}html.theme--catppuccin-macchiato .gap-2{gap:0.5rem}html.theme--catppuccin-macchiato .gap-4{gap:1rem} diff --git a/doc/build/assets/themes/catppuccin-mocha.css b/doc/build/assets/themes/catppuccin-mocha.css deleted file mode 100644 index 8b82652..0000000 --- a/doc/build/assets/themes/catppuccin-mocha.css +++ /dev/null @@ -1 +0,0 @@ -html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-ellipsis,html.theme--catppuccin-mocha .file-cta,html.theme--catppuccin-mocha .file-name,html.theme--catppuccin-mocha .select select,html.theme--catppuccin-mocha .textarea,html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--catppuccin-mocha .pagination-previous:focus,html.theme--catppuccin-mocha .pagination-next:focus,html.theme--catppuccin-mocha .pagination-link:focus,html.theme--catppuccin-mocha .pagination-ellipsis:focus,html.theme--catppuccin-mocha .file-cta:focus,html.theme--catppuccin-mocha .file-name:focus,html.theme--catppuccin-mocha .select select:focus,html.theme--catppuccin-mocha .textarea:focus,html.theme--catppuccin-mocha .input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-mocha .button:focus,html.theme--catppuccin-mocha .is-focused.pagination-previous,html.theme--catppuccin-mocha .is-focused.pagination-next,html.theme--catppuccin-mocha .is-focused.pagination-link,html.theme--catppuccin-mocha .is-focused.pagination-ellipsis,html.theme--catppuccin-mocha .is-focused.file-cta,html.theme--catppuccin-mocha .is-focused.file-name,html.theme--catppuccin-mocha .select select.is-focused,html.theme--catppuccin-mocha .is-focused.textarea,html.theme--catppuccin-mocha .is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-focused.button,html.theme--catppuccin-mocha .pagination-previous:active,html.theme--catppuccin-mocha .pagination-next:active,html.theme--catppuccin-mocha .pagination-link:active,html.theme--catppuccin-mocha .pagination-ellipsis:active,html.theme--catppuccin-mocha .file-cta:active,html.theme--catppuccin-mocha .file-name:active,html.theme--catppuccin-mocha .select select:active,html.theme--catppuccin-mocha .textarea:active,html.theme--catppuccin-mocha .input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-mocha .button:active,html.theme--catppuccin-mocha .is-active.pagination-previous,html.theme--catppuccin-mocha .is-active.pagination-next,html.theme--catppuccin-mocha .is-active.pagination-link,html.theme--catppuccin-mocha .is-active.pagination-ellipsis,html.theme--catppuccin-mocha .is-active.file-cta,html.theme--catppuccin-mocha .is-active.file-name,html.theme--catppuccin-mocha .select select.is-active,html.theme--catppuccin-mocha .is-active.textarea,html.theme--catppuccin-mocha .is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-mocha .is-active.button{outline:none}html.theme--catppuccin-mocha .pagination-previous[disabled],html.theme--catppuccin-mocha .pagination-next[disabled],html.theme--catppuccin-mocha .pagination-link[disabled],html.theme--catppuccin-mocha .pagination-ellipsis[disabled],html.theme--catppuccin-mocha .file-cta[disabled],html.theme--catppuccin-mocha .file-name[disabled],html.theme--catppuccin-mocha .select select[disabled],html.theme--catppuccin-mocha .textarea[disabled],html.theme--catppuccin-mocha .input[disabled],html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--catppuccin-mocha .button[disabled],fieldset[disabled] html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--catppuccin-mocha .pagination-ellipsis,html.theme--catppuccin-mocha fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--catppuccin-mocha .file-cta,html.theme--catppuccin-mocha fieldset[disabled] .file-cta,fieldset[disabled] html.theme--catppuccin-mocha .file-name,html.theme--catppuccin-mocha fieldset[disabled] .file-name,fieldset[disabled] html.theme--catppuccin-mocha .select select,fieldset[disabled] html.theme--catppuccin-mocha .textarea,fieldset[disabled] html.theme--catppuccin-mocha .input,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha fieldset[disabled] .select select,html.theme--catppuccin-mocha .select fieldset[disabled] select,html.theme--catppuccin-mocha fieldset[disabled] .textarea,html.theme--catppuccin-mocha fieldset[disabled] .input,html.theme--catppuccin-mocha fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--catppuccin-mocha .button,html.theme--catppuccin-mocha fieldset[disabled] .button{cursor:not-allowed}html.theme--catppuccin-mocha .tabs,html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-ellipsis,html.theme--catppuccin-mocha .breadcrumb,html.theme--catppuccin-mocha .file,html.theme--catppuccin-mocha .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--catppuccin-mocha .navbar-link:not(.is-arrowless)::after,html.theme--catppuccin-mocha .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--catppuccin-mocha .admonition:not(:last-child),html.theme--catppuccin-mocha .tabs:not(:last-child),html.theme--catppuccin-mocha .pagination:not(:last-child),html.theme--catppuccin-mocha .message:not(:last-child),html.theme--catppuccin-mocha .level:not(:last-child),html.theme--catppuccin-mocha .breadcrumb:not(:last-child),html.theme--catppuccin-mocha .block:not(:last-child),html.theme--catppuccin-mocha .title:not(:last-child),html.theme--catppuccin-mocha .subtitle:not(:last-child),html.theme--catppuccin-mocha .table-container:not(:last-child),html.theme--catppuccin-mocha .table:not(:last-child),html.theme--catppuccin-mocha .progress:not(:last-child),html.theme--catppuccin-mocha .notification:not(:last-child),html.theme--catppuccin-mocha .content:not(:last-child),html.theme--catppuccin-mocha .box:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-mocha .modal-close,html.theme--catppuccin-mocha .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--catppuccin-mocha .modal-close::before,html.theme--catppuccin-mocha .delete::before,html.theme--catppuccin-mocha .modal-close::after,html.theme--catppuccin-mocha .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-mocha .modal-close::before,html.theme--catppuccin-mocha .delete::before{height:2px;width:50%}html.theme--catppuccin-mocha .modal-close::after,html.theme--catppuccin-mocha .delete::after{height:50%;width:2px}html.theme--catppuccin-mocha .modal-close:hover,html.theme--catppuccin-mocha .delete:hover,html.theme--catppuccin-mocha .modal-close:focus,html.theme--catppuccin-mocha .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--catppuccin-mocha .modal-close:active,html.theme--catppuccin-mocha .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--catppuccin-mocha .is-small.modal-close,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--catppuccin-mocha .is-small.delete,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--catppuccin-mocha .is-medium.modal-close,html.theme--catppuccin-mocha .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--catppuccin-mocha .is-large.modal-close,html.theme--catppuccin-mocha .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--catppuccin-mocha .control.is-loading::after,html.theme--catppuccin-mocha .select.is-loading::after,html.theme--catppuccin-mocha .loader,html.theme--catppuccin-mocha .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #7f849c;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--catppuccin-mocha .hero-video,html.theme--catppuccin-mocha .modal-background,html.theme--catppuccin-mocha .modal,html.theme--catppuccin-mocha .image.is-square img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-mocha .image.is-square .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-mocha .image.is-1by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-mocha .image.is-1by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-mocha .image.is-5by4 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-mocha .image.is-5by4 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-mocha .image.is-4by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-mocha .image.is-4by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-mocha .image.is-3by2 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-mocha .image.is-3by2 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-mocha .image.is-5by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-mocha .image.is-5by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-mocha .image.is-16by9 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-mocha .image.is-16by9 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-mocha .image.is-2by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-mocha .image.is-2by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-mocha .image.is-3by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-mocha .image.is-3by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-mocha .image.is-4by5 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-mocha .image.is-4by5 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-mocha .image.is-3by4 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-mocha .image.is-3by4 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-mocha .image.is-2by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-mocha .image.is-2by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-mocha .image.is-3by5 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-mocha .image.is-3by5 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-mocha .image.is-9by16 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-mocha .image.is-9by16 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-mocha .image.is-1by2 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-mocha .image.is-1by2 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-mocha .image.is-1by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-mocha .image.is-1by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--catppuccin-mocha .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#313244 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c26 !important}.has-background-dark{background-color:#313244 !important}.has-text-primary{color:#89b4fa !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#5895f8 !important}.has-background-primary{background-color:#89b4fa !important}.has-text-primary-light{color:#ebf3fe !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#bbd3fc !important}.has-background-primary-light{background-color:#ebf3fe !important}.has-text-primary-dark{color:#063c93 !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#0850c4 !important}.has-background-primary-dark{background-color:#063c93 !important}.has-text-link{color:#89b4fa !important}a.has-text-link:hover,a.has-text-link:focus{color:#5895f8 !important}.has-background-link{background-color:#89b4fa !important}.has-text-link-light{color:#ebf3fe !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#bbd3fc !important}.has-background-link-light{background-color:#ebf3fe !important}.has-text-link-dark{color:#063c93 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#0850c4 !important}.has-background-link-dark{background-color:#063c93 !important}.has-text-info{color:#94e2d5 !important}a.has-text-info:hover,a.has-text-info:focus{color:#6cd7c5 !important}.has-background-info{background-color:#94e2d5 !important}.has-text-info-light{color:#effbf9 !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c7f0e9 !important}.has-background-info-light{background-color:#effbf9 !important}.has-text-info-dark{color:#207466 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#2a9c89 !important}.has-background-info-dark{background-color:#207466 !important}.has-text-success{color:#a6e3a1 !important}a.has-text-success:hover,a.has-text-success:focus{color:#81d77a !important}.has-background-success{background-color:#a6e3a1 !important}.has-text-success-light{color:#f0faef !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#cbefc8 !important}.has-background-success-light{background-color:#f0faef !important}.has-text-success-dark{color:#287222 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#36992e !important}.has-background-success-dark{background-color:#287222 !important}.has-text-warning{color:#f9e2af !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#f5d180 !important}.has-background-warning{background-color:#f9e2af !important}.has-text-warning-light{color:#fef8ec !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#fae7bd !important}.has-background-warning-light{background-color:#fef8ec !important}.has-text-warning-dark{color:#8a620a !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#b9840e !important}.has-background-warning-dark{background-color:#8a620a !important}.has-text-danger{color:#f38ba8 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#ee5d85 !important}.has-background-danger{background-color:#f38ba8 !important}.has-text-danger-light{color:#fdedf1 !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f8bece !important}.has-background-danger-light{background-color:#fdedf1 !important}.has-text-danger-dark{color:#991036 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#c71546 !important}.has-background-danger-dark{background-color:#991036 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#313244 !important}.has-background-grey-darker{background-color:#313244 !important}.has-text-grey-dark{color:#45475a !important}.has-background-grey-dark{background-color:#45475a !important}.has-text-grey{color:#585b70 !important}.has-background-grey{background-color:#585b70 !important}.has-text-grey-light{color:#6c7086 !important}.has-background-grey-light{background-color:#6c7086 !important}.has-text-grey-lighter{color:#7f849c !important}.has-background-grey-lighter{background-color:#7f849c !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--catppuccin-mocha html{background-color:#1e1e2e;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-mocha article,html.theme--catppuccin-mocha aside,html.theme--catppuccin-mocha figure,html.theme--catppuccin-mocha footer,html.theme--catppuccin-mocha header,html.theme--catppuccin-mocha hgroup,html.theme--catppuccin-mocha section{display:block}html.theme--catppuccin-mocha body,html.theme--catppuccin-mocha button,html.theme--catppuccin-mocha input,html.theme--catppuccin-mocha optgroup,html.theme--catppuccin-mocha select,html.theme--catppuccin-mocha textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--catppuccin-mocha code,html.theme--catppuccin-mocha pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-mocha body{color:#cdd6f4;font-size:1em;font-weight:400;line-height:1.5}html.theme--catppuccin-mocha a{color:#89b4fa;cursor:pointer;text-decoration:none}html.theme--catppuccin-mocha a strong{color:currentColor}html.theme--catppuccin-mocha a:hover{color:#89dceb}html.theme--catppuccin-mocha code{background-color:#181825;color:#cdd6f4;font-size:.875em;font-weight:normal;padding:.1em}html.theme--catppuccin-mocha hr{background-color:#181825;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--catppuccin-mocha img{height:auto;max-width:100%}html.theme--catppuccin-mocha input[type="checkbox"],html.theme--catppuccin-mocha input[type="radio"]{vertical-align:baseline}html.theme--catppuccin-mocha small{font-size:.875em}html.theme--catppuccin-mocha span{font-style:inherit;font-weight:inherit}html.theme--catppuccin-mocha strong{color:#b8c5ef;font-weight:700}html.theme--catppuccin-mocha fieldset{border:none}html.theme--catppuccin-mocha pre{-webkit-overflow-scrolling:touch;background-color:#181825;color:#cdd6f4;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--catppuccin-mocha pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--catppuccin-mocha table td,html.theme--catppuccin-mocha table th{vertical-align:top}html.theme--catppuccin-mocha table td:not([align]),html.theme--catppuccin-mocha table th:not([align]){text-align:inherit}html.theme--catppuccin-mocha table th{color:#b8c5ef}html.theme--catppuccin-mocha .box{background-color:#45475a;border-radius:8px;box-shadow:none;color:#cdd6f4;display:block;padding:1.25rem}html.theme--catppuccin-mocha a.box:hover,html.theme--catppuccin-mocha a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #89b4fa}html.theme--catppuccin-mocha a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #89b4fa}html.theme--catppuccin-mocha .button{background-color:#181825;border-color:#363653;border-width:1px;color:#89b4fa;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--catppuccin-mocha .button strong{color:inherit}html.theme--catppuccin-mocha .button .icon,html.theme--catppuccin-mocha .button .icon.is-small,html.theme--catppuccin-mocha .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--catppuccin-mocha .button .icon.is-medium,html.theme--catppuccin-mocha .button .icon.is-large{height:1.5em;width:1.5em}html.theme--catppuccin-mocha .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--catppuccin-mocha .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-mocha .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--catppuccin-mocha .button:hover,html.theme--catppuccin-mocha .button.is-hovered{border-color:#6c7086;color:#b8c5ef}html.theme--catppuccin-mocha .button:focus,html.theme--catppuccin-mocha .button.is-focused{border-color:#6c7086;color:#71a4f9}html.theme--catppuccin-mocha .button:focus:not(:active),html.theme--catppuccin-mocha .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .button:active,html.theme--catppuccin-mocha .button.is-active{border-color:#45475a;color:#b8c5ef}html.theme--catppuccin-mocha .button.is-text{background-color:transparent;border-color:transparent;color:#cdd6f4;text-decoration:underline}html.theme--catppuccin-mocha .button.is-text:hover,html.theme--catppuccin-mocha .button.is-text.is-hovered,html.theme--catppuccin-mocha .button.is-text:focus,html.theme--catppuccin-mocha .button.is-text.is-focused{background-color:#181825;color:#b8c5ef}html.theme--catppuccin-mocha .button.is-text:active,html.theme--catppuccin-mocha .button.is-text.is-active{background-color:#0e0e16;color:#b8c5ef}html.theme--catppuccin-mocha .button.is-text[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--catppuccin-mocha .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#89b4fa;text-decoration:none}html.theme--catppuccin-mocha .button.is-ghost:hover,html.theme--catppuccin-mocha .button.is-ghost.is-hovered{color:#89b4fa;text-decoration:underline}html.theme--catppuccin-mocha .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white:hover,html.theme--catppuccin-mocha .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white:focus,html.theme--catppuccin-mocha .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white:focus:not(:active),html.theme--catppuccin-mocha .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-mocha .button.is-white:active,html.theme--catppuccin-mocha .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--catppuccin-mocha .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-inverted:hover,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--catppuccin-mocha .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-mocha .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-outlined:hover,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-white.is-outlined:focus,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-mocha .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-black:hover,html.theme--catppuccin-mocha .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-black:focus,html.theme--catppuccin-mocha .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-black:focus:not(:active),html.theme--catppuccin-mocha .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-mocha .button.is-black:active,html.theme--catppuccin-mocha .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-black[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--catppuccin-mocha .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-inverted:hover,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-outlined:hover,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-black.is-outlined:focus,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light:hover,html.theme--catppuccin-mocha .button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light:focus,html.theme--catppuccin-mocha .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light:focus:not(:active),html.theme--catppuccin-mocha .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-mocha .button.is-light:active,html.theme--catppuccin-mocha .button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}html.theme--catppuccin-mocha .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-inverted:hover,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-outlined:hover,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-light.is-outlined:focus,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-dark,html.theme--catppuccin-mocha .content kbd.button{background-color:#313244;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-dark:hover,html.theme--catppuccin-mocha .content kbd.button:hover,html.theme--catppuccin-mocha .button.is-dark.is-hovered,html.theme--catppuccin-mocha .content kbd.button.is-hovered{background-color:#2c2d3d;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-dark:focus,html.theme--catppuccin-mocha .content kbd.button:focus,html.theme--catppuccin-mocha .button.is-dark.is-focused,html.theme--catppuccin-mocha .content kbd.button.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-dark:focus:not(:active),html.theme--catppuccin-mocha .content kbd.button:focus:not(:active),html.theme--catppuccin-mocha .button.is-dark.is-focused:not(:active),html.theme--catppuccin-mocha .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(49,50,68,0.25)}html.theme--catppuccin-mocha .button.is-dark:active,html.theme--catppuccin-mocha .content kbd.button:active,html.theme--catppuccin-mocha .button.is-dark.is-active,html.theme--catppuccin-mocha .content kbd.button.is-active{background-color:#262735;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-dark[disabled],html.theme--catppuccin-mocha .content kbd.button[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-dark,fieldset[disabled] html.theme--catppuccin-mocha .content kbd.button{background-color:#313244;border-color:#313244;box-shadow:none}html.theme--catppuccin-mocha .button.is-dark.is-inverted,html.theme--catppuccin-mocha .content kbd.button.is-inverted{background-color:#fff;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-inverted:hover,html.theme--catppuccin-mocha .content kbd.button.is-inverted:hover,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-hovered,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-dark.is-inverted[disabled],html.theme--catppuccin-mocha .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-dark.is-inverted,fieldset[disabled] html.theme--catppuccin-mocha .content kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-loading::after,html.theme--catppuccin-mocha .content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-dark.is-outlined,html.theme--catppuccin-mocha .content kbd.button.is-outlined{background-color:transparent;border-color:#313244;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-outlined:hover,html.theme--catppuccin-mocha .content kbd.button.is-outlined:hover,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-hovered,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-dark.is-outlined:focus,html.theme--catppuccin-mocha .content kbd.button.is-outlined:focus,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-focused,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-focused{background-color:#313244;border-color:#313244;color:#fff}html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #313244 #313244 !important}html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-mocha .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-dark.is-outlined[disabled],html.theme--catppuccin-mocha .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-dark.is-outlined,fieldset[disabled] html.theme--catppuccin-mocha .content kbd.button.is-outlined{background-color:transparent;border-color:#313244;box-shadow:none;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#313244}html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #313244 #313244 !important}html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined[disabled],html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-mocha .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-primary,html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink{background-color:#89b4fa;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-primary:hover,html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#7dacf9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-primary:focus,html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink:focus,html.theme--catppuccin-mocha .button.is-primary.is-focused,html.theme--catppuccin-mocha .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-primary:focus:not(:active),html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--catppuccin-mocha .button.is-primary.is-focused:not(:active),html.theme--catppuccin-mocha .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .button.is-primary:active,html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink:active,html.theme--catppuccin-mocha .button.is-primary.is-active,html.theme--catppuccin-mocha .docstring>section>a.button.is-active.docs-sourcelink{background-color:#71a4f9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-primary[disabled],html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-primary,fieldset[disabled] html.theme--catppuccin-mocha .docstring>section>a.button.docs-sourcelink{background-color:#89b4fa;border-color:#89b4fa;box-shadow:none}html.theme--catppuccin-mocha .button.is-primary.is-inverted,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-inverted:hover,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-primary.is-inverted[disabled],html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-primary.is-inverted,fieldset[disabled] html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-loading::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-primary.is-outlined,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#89b4fa;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-outlined:hover,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-mocha .button.is-primary.is-outlined:focus,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-focused,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #89b4fa #89b4fa !important}html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-mocha .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-primary.is-outlined[disabled],html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-primary.is-outlined,fieldset[disabled] html.theme--catppuccin-mocha .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#89b4fa;box-shadow:none;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #89b4fa #89b4fa !important}html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined[disabled],html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--catppuccin-mocha .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-primary.is-light,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.docs-sourcelink{background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .button.is-primary.is-light:hover,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--catppuccin-mocha .button.is-primary.is-light.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#dfebfe;border-color:transparent;color:#063c93}html.theme--catppuccin-mocha .button.is-primary.is-light:active,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--catppuccin-mocha .button.is-primary.is-light.is-active,html.theme--catppuccin-mocha .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d3e3fd;border-color:transparent;color:#063c93}html.theme--catppuccin-mocha .button.is-link{background-color:#89b4fa;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-link:hover,html.theme--catppuccin-mocha .button.is-link.is-hovered{background-color:#7dacf9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-link:focus,html.theme--catppuccin-mocha .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-link:focus:not(:active),html.theme--catppuccin-mocha .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .button.is-link:active,html.theme--catppuccin-mocha .button.is-link.is-active{background-color:#71a4f9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-link[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-link{background-color:#89b4fa;border-color:#89b4fa;box-shadow:none}html.theme--catppuccin-mocha .button.is-link.is-inverted{background-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-inverted:hover,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-link.is-outlined{background-color:transparent;border-color:#89b4fa;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-outlined:hover,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-link.is-outlined:focus,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-focused{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #89b4fa #89b4fa !important}html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-link.is-outlined{background-color:transparent;border-color:#89b4fa;box-shadow:none;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #89b4fa #89b4fa !important}html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-link.is-light{background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .button.is-link.is-light:hover,html.theme--catppuccin-mocha .button.is-link.is-light.is-hovered{background-color:#dfebfe;border-color:transparent;color:#063c93}html.theme--catppuccin-mocha .button.is-link.is-light:active,html.theme--catppuccin-mocha .button.is-link.is-light.is-active{background-color:#d3e3fd;border-color:transparent;color:#063c93}html.theme--catppuccin-mocha .button.is-info{background-color:#94e2d5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info:hover,html.theme--catppuccin-mocha .button.is-info.is-hovered{background-color:#8adfd1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info:focus,html.theme--catppuccin-mocha .button.is-info.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info:focus:not(:active),html.theme--catppuccin-mocha .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(148,226,213,0.25)}html.theme--catppuccin-mocha .button.is-info:active,html.theme--catppuccin-mocha .button.is-info.is-active{background-color:#80ddcd;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-info{background-color:#94e2d5;border-color:#94e2d5;box-shadow:none}html.theme--catppuccin-mocha .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-inverted:hover,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-info.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-info.is-outlined{background-color:transparent;border-color:#94e2d5;color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-outlined:hover,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-info.is-outlined:focus,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-focused{background-color:#94e2d5;border-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #94e2d5 #94e2d5 !important}html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-info.is-outlined{background-color:transparent;border-color:#94e2d5;box-shadow:none;color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#94e2d5}html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #94e2d5 #94e2d5 !important}html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-info.is-light{background-color:#effbf9;color:#207466}html.theme--catppuccin-mocha .button.is-info.is-light:hover,html.theme--catppuccin-mocha .button.is-info.is-light.is-hovered{background-color:#e5f8f5;border-color:transparent;color:#207466}html.theme--catppuccin-mocha .button.is-info.is-light:active,html.theme--catppuccin-mocha .button.is-info.is-light.is-active{background-color:#dbf5f1;border-color:transparent;color:#207466}html.theme--catppuccin-mocha .button.is-success{background-color:#a6e3a1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success:hover,html.theme--catppuccin-mocha .button.is-success.is-hovered{background-color:#9de097;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success:focus,html.theme--catppuccin-mocha .button.is-success.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success:focus:not(:active),html.theme--catppuccin-mocha .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(166,227,161,0.25)}html.theme--catppuccin-mocha .button.is-success:active,html.theme--catppuccin-mocha .button.is-success.is-active{background-color:#93dd8d;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-success{background-color:#a6e3a1;border-color:#a6e3a1;box-shadow:none}html.theme--catppuccin-mocha .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-inverted:hover,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-success.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-success.is-outlined{background-color:transparent;border-color:#a6e3a1;color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-outlined:hover,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-success.is-outlined:focus,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-focused{background-color:#a6e3a1;border-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #a6e3a1 #a6e3a1 !important}html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-success.is-outlined{background-color:transparent;border-color:#a6e3a1;box-shadow:none;color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#a6e3a1}html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #a6e3a1 #a6e3a1 !important}html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-success.is-light{background-color:#f0faef;color:#287222}html.theme--catppuccin-mocha .button.is-success.is-light:hover,html.theme--catppuccin-mocha .button.is-success.is-light.is-hovered{background-color:#e7f7e5;border-color:transparent;color:#287222}html.theme--catppuccin-mocha .button.is-success.is-light:active,html.theme--catppuccin-mocha .button.is-success.is-light.is-active{background-color:#def4dc;border-color:transparent;color:#287222}html.theme--catppuccin-mocha .button.is-warning{background-color:#f9e2af;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning:hover,html.theme--catppuccin-mocha .button.is-warning.is-hovered{background-color:#f8dea3;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning:focus,html.theme--catppuccin-mocha .button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning:focus:not(:active),html.theme--catppuccin-mocha .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(249,226,175,0.25)}html.theme--catppuccin-mocha .button.is-warning:active,html.theme--catppuccin-mocha .button.is-warning.is-active{background-color:#f7d997;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-warning{background-color:#f9e2af;border-color:#f9e2af;box-shadow:none}html.theme--catppuccin-mocha .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-inverted:hover,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-warning.is-outlined{background-color:transparent;border-color:#f9e2af;color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-outlined:hover,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-warning.is-outlined:focus,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-focused{background-color:#f9e2af;border-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #f9e2af #f9e2af !important}html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--catppuccin-mocha .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-warning.is-outlined{background-color:transparent;border-color:#f9e2af;box-shadow:none;color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f9e2af}html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f9e2af #f9e2af !important}html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .button.is-warning.is-light{background-color:#fef8ec;color:#8a620a}html.theme--catppuccin-mocha .button.is-warning.is-light:hover,html.theme--catppuccin-mocha .button.is-warning.is-light.is-hovered{background-color:#fdf4e0;border-color:transparent;color:#8a620a}html.theme--catppuccin-mocha .button.is-warning.is-light:active,html.theme--catppuccin-mocha .button.is-warning.is-light.is-active{background-color:#fcf0d4;border-color:transparent;color:#8a620a}html.theme--catppuccin-mocha .button.is-danger{background-color:#f38ba8;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-danger:hover,html.theme--catppuccin-mocha .button.is-danger.is-hovered{background-color:#f27f9f;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-danger:focus,html.theme--catppuccin-mocha .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-danger:focus:not(:active),html.theme--catppuccin-mocha .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(243,139,168,0.25)}html.theme--catppuccin-mocha .button.is-danger:active,html.theme--catppuccin-mocha .button.is-danger.is-active{background-color:#f17497;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .button.is-danger[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-danger{background-color:#f38ba8;border-color:#f38ba8;box-shadow:none}html.theme--catppuccin-mocha .button.is-danger.is-inverted{background-color:#fff;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-inverted:hover,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--catppuccin-mocha .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-danger.is-outlined{background-color:transparent;border-color:#f38ba8;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-outlined:hover,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-danger.is-outlined:focus,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-focused{background-color:#f38ba8;border-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #f38ba8 #f38ba8 !important}html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--catppuccin-mocha .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-danger.is-outlined{background-color:transparent;border-color:#f38ba8;box-shadow:none;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined:hover,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined:focus,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#f38ba8}html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f38ba8 #f38ba8 !important}html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--catppuccin-mocha .button.is-danger.is-light{background-color:#fdedf1;color:#991036}html.theme--catppuccin-mocha .button.is-danger.is-light:hover,html.theme--catppuccin-mocha .button.is-danger.is-light.is-hovered{background-color:#fce1e8;border-color:transparent;color:#991036}html.theme--catppuccin-mocha .button.is-danger.is-light:active,html.theme--catppuccin-mocha .button.is-danger.is-light.is-active{background-color:#fbd5e0;border-color:transparent;color:#991036}html.theme--catppuccin-mocha .button.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--catppuccin-mocha .button.is-small:not(.is-rounded),html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--catppuccin-mocha .button.is-normal{font-size:1rem}html.theme--catppuccin-mocha .button.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .button.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .button[disabled],fieldset[disabled] html.theme--catppuccin-mocha .button{background-color:#6c7086;border-color:#585b70;box-shadow:none;opacity:.5}html.theme--catppuccin-mocha .button.is-fullwidth{display:flex;width:100%}html.theme--catppuccin-mocha .button.is-loading{color:transparent !important;pointer-events:none}html.theme--catppuccin-mocha .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--catppuccin-mocha .button.is-static{background-color:#181825;border-color:#585b70;color:#7f849c;box-shadow:none;pointer-events:none}html.theme--catppuccin-mocha .button.is-rounded,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--catppuccin-mocha .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-mocha .buttons .button{margin-bottom:0.5rem}html.theme--catppuccin-mocha .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--catppuccin-mocha .buttons:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-mocha .buttons:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-mocha .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--catppuccin-mocha .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--catppuccin-mocha .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--catppuccin-mocha .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--catppuccin-mocha .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-mocha .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--catppuccin-mocha .buttons.has-addons .button:last-child{margin-right:0}html.theme--catppuccin-mocha .buttons.has-addons .button:hover,html.theme--catppuccin-mocha .buttons.has-addons .button.is-hovered{z-index:2}html.theme--catppuccin-mocha .buttons.has-addons .button:focus,html.theme--catppuccin-mocha .buttons.has-addons .button.is-focused,html.theme--catppuccin-mocha .buttons.has-addons .button:active,html.theme--catppuccin-mocha .buttons.has-addons .button.is-active,html.theme--catppuccin-mocha .buttons.has-addons .button.is-selected{z-index:3}html.theme--catppuccin-mocha .buttons.has-addons .button:focus:hover,html.theme--catppuccin-mocha .buttons.has-addons .button.is-focused:hover,html.theme--catppuccin-mocha .buttons.has-addons .button:active:hover,html.theme--catppuccin-mocha .buttons.has-addons .button.is-active:hover,html.theme--catppuccin-mocha .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--catppuccin-mocha .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .buttons.is-centered{justify-content:center}html.theme--catppuccin-mocha .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--catppuccin-mocha .buttons.is-right{justify-content:flex-end}html.theme--catppuccin-mocha .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .button.is-responsive.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--catppuccin-mocha .button.is-responsive,html.theme--catppuccin-mocha .button.is-responsive.is-normal{font-size:.65625rem}html.theme--catppuccin-mocha .button.is-responsive.is-medium{font-size:.75rem}html.theme--catppuccin-mocha .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .button.is-responsive.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--catppuccin-mocha .button.is-responsive,html.theme--catppuccin-mocha .button.is-responsive.is-normal{font-size:.75rem}html.theme--catppuccin-mocha .button.is-responsive.is-medium{font-size:1rem}html.theme--catppuccin-mocha .button.is-responsive.is-large{font-size:1.25rem}}html.theme--catppuccin-mocha .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--catppuccin-mocha .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--catppuccin-mocha .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--catppuccin-mocha .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--catppuccin-mocha .content li+li{margin-top:0.25em}html.theme--catppuccin-mocha .content p:not(:last-child),html.theme--catppuccin-mocha .content dl:not(:last-child),html.theme--catppuccin-mocha .content ol:not(:last-child),html.theme--catppuccin-mocha .content ul:not(:last-child),html.theme--catppuccin-mocha .content blockquote:not(:last-child),html.theme--catppuccin-mocha .content pre:not(:last-child),html.theme--catppuccin-mocha .content table:not(:last-child){margin-bottom:1em}html.theme--catppuccin-mocha .content h1,html.theme--catppuccin-mocha .content h2,html.theme--catppuccin-mocha .content h3,html.theme--catppuccin-mocha .content h4,html.theme--catppuccin-mocha .content h5,html.theme--catppuccin-mocha .content h6{color:#cdd6f4;font-weight:600;line-height:1.125}html.theme--catppuccin-mocha .content h1{font-size:2em;margin-bottom:0.5em}html.theme--catppuccin-mocha .content h1:not(:first-child){margin-top:1em}html.theme--catppuccin-mocha .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--catppuccin-mocha .content h2:not(:first-child){margin-top:1.1428em}html.theme--catppuccin-mocha .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--catppuccin-mocha .content h3:not(:first-child){margin-top:1.3333em}html.theme--catppuccin-mocha .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--catppuccin-mocha .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--catppuccin-mocha .content h6{font-size:1em;margin-bottom:1em}html.theme--catppuccin-mocha .content blockquote{background-color:#181825;border-left:5px solid #585b70;padding:1.25em 1.5em}html.theme--catppuccin-mocha .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-mocha .content ol:not([type]){list-style-type:decimal}html.theme--catppuccin-mocha .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--catppuccin-mocha .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--catppuccin-mocha .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--catppuccin-mocha .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--catppuccin-mocha .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--catppuccin-mocha .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--catppuccin-mocha .content ul ul ul{list-style-type:square}html.theme--catppuccin-mocha .content dd{margin-left:2em}html.theme--catppuccin-mocha .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--catppuccin-mocha .content figure:not(:first-child){margin-top:2em}html.theme--catppuccin-mocha .content figure:not(:last-child){margin-bottom:2em}html.theme--catppuccin-mocha .content figure img{display:inline-block}html.theme--catppuccin-mocha .content figure figcaption{font-style:italic}html.theme--catppuccin-mocha .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--catppuccin-mocha .content sup,html.theme--catppuccin-mocha .content sub{font-size:75%}html.theme--catppuccin-mocha .content table{width:100%}html.theme--catppuccin-mocha .content table td,html.theme--catppuccin-mocha .content table th{border:1px solid #585b70;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-mocha .content table th{color:#b8c5ef}html.theme--catppuccin-mocha .content table th:not([align]){text-align:inherit}html.theme--catppuccin-mocha .content table thead td,html.theme--catppuccin-mocha .content table thead th{border-width:0 0 2px;color:#b8c5ef}html.theme--catppuccin-mocha .content table tfoot td,html.theme--catppuccin-mocha .content table tfoot th{border-width:2px 0 0;color:#b8c5ef}html.theme--catppuccin-mocha .content table tbody tr:last-child td,html.theme--catppuccin-mocha .content table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-mocha .content .tabs li+li{margin-top:0}html.theme--catppuccin-mocha .content.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--catppuccin-mocha .content.is-normal{font-size:1rem}html.theme--catppuccin-mocha .content.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .content.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--catppuccin-mocha .icon.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--catppuccin-mocha .icon.is-medium{height:2rem;width:2rem}html.theme--catppuccin-mocha .icon.is-large{height:3rem;width:3rem}html.theme--catppuccin-mocha .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--catppuccin-mocha .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--catppuccin-mocha .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--catppuccin-mocha div.icon-text{display:flex}html.theme--catppuccin-mocha .image,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--catppuccin-mocha .image img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--catppuccin-mocha .image img.is-rounded,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--catppuccin-mocha .image.is-fullwidth,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--catppuccin-mocha .image.is-square img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--catppuccin-mocha .image.is-square .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--catppuccin-mocha .image.is-1by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--catppuccin-mocha .image.is-1by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--catppuccin-mocha .image.is-5by4 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--catppuccin-mocha .image.is-5by4 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--catppuccin-mocha .image.is-4by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--catppuccin-mocha .image.is-4by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--catppuccin-mocha .image.is-3by2 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--catppuccin-mocha .image.is-3by2 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--catppuccin-mocha .image.is-5by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--catppuccin-mocha .image.is-5by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--catppuccin-mocha .image.is-16by9 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--catppuccin-mocha .image.is-16by9 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--catppuccin-mocha .image.is-2by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--catppuccin-mocha .image.is-2by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--catppuccin-mocha .image.is-3by1 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--catppuccin-mocha .image.is-3by1 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--catppuccin-mocha .image.is-4by5 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--catppuccin-mocha .image.is-4by5 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--catppuccin-mocha .image.is-3by4 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--catppuccin-mocha .image.is-3by4 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--catppuccin-mocha .image.is-2by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--catppuccin-mocha .image.is-2by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--catppuccin-mocha .image.is-3by5 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--catppuccin-mocha .image.is-3by5 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--catppuccin-mocha .image.is-9by16 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--catppuccin-mocha .image.is-9by16 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--catppuccin-mocha .image.is-1by2 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--catppuccin-mocha .image.is-1by2 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--catppuccin-mocha .image.is-1by3 img,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--catppuccin-mocha .image.is-1by3 .has-ratio,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--catppuccin-mocha .image.is-square,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--catppuccin-mocha .image.is-1by1,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--catppuccin-mocha .image.is-5by4,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--catppuccin-mocha .image.is-4by3,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--catppuccin-mocha .image.is-3by2,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--catppuccin-mocha .image.is-5by3,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--catppuccin-mocha .image.is-16by9,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--catppuccin-mocha .image.is-2by1,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--catppuccin-mocha .image.is-3by1,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--catppuccin-mocha .image.is-4by5,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--catppuccin-mocha .image.is-3by4,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--catppuccin-mocha .image.is-2by3,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--catppuccin-mocha .image.is-3by5,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--catppuccin-mocha .image.is-9by16,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--catppuccin-mocha .image.is-1by2,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--catppuccin-mocha .image.is-1by3,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--catppuccin-mocha .image.is-16x16,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--catppuccin-mocha .image.is-24x24,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--catppuccin-mocha .image.is-32x32,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--catppuccin-mocha .image.is-48x48,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--catppuccin-mocha .image.is-64x64,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--catppuccin-mocha .image.is-96x96,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--catppuccin-mocha .image.is-128x128,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--catppuccin-mocha .notification{background-color:#181825;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--catppuccin-mocha .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-mocha .notification strong{color:currentColor}html.theme--catppuccin-mocha .notification code,html.theme--catppuccin-mocha .notification pre{background:#fff}html.theme--catppuccin-mocha .notification pre code{background:transparent}html.theme--catppuccin-mocha .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--catppuccin-mocha .notification .title,html.theme--catppuccin-mocha .notification .subtitle,html.theme--catppuccin-mocha .notification .content{color:currentColor}html.theme--catppuccin-mocha .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .notification.is-dark,html.theme--catppuccin-mocha .content kbd.notification{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .notification.is-primary,html.theme--catppuccin-mocha .docstring>section>a.notification.docs-sourcelink{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .notification.is-primary.is-light,html.theme--catppuccin-mocha .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .notification.is-link{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .notification.is-link.is-light{background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .notification.is-info{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .notification.is-info.is-light{background-color:#effbf9;color:#207466}html.theme--catppuccin-mocha .notification.is-success{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .notification.is-success.is-light{background-color:#f0faef;color:#287222}html.theme--catppuccin-mocha .notification.is-warning{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .notification.is-warning.is-light{background-color:#fef8ec;color:#8a620a}html.theme--catppuccin-mocha .notification.is-danger{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .notification.is-danger.is-light{background-color:#fdedf1;color:#991036}html.theme--catppuccin-mocha .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--catppuccin-mocha .progress::-webkit-progress-bar{background-color:#45475a}html.theme--catppuccin-mocha .progress::-webkit-progress-value{background-color:#7f849c}html.theme--catppuccin-mocha .progress::-moz-progress-bar{background-color:#7f849c}html.theme--catppuccin-mocha .progress::-ms-fill{background-color:#7f849c;border:none}html.theme--catppuccin-mocha .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--catppuccin-mocha .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--catppuccin-mocha .progress.is-white::-ms-fill{background-color:#fff}html.theme--catppuccin-mocha .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--catppuccin-mocha .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--catppuccin-mocha .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--catppuccin-mocha .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-light::-webkit-progress-value{background-color:#f5f5f5}html.theme--catppuccin-mocha .progress.is-light::-moz-progress-bar{background-color:#f5f5f5}html.theme--catppuccin-mocha .progress.is-light::-ms-fill{background-color:#f5f5f5}html.theme--catppuccin-mocha .progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-dark::-webkit-progress-value,html.theme--catppuccin-mocha .content kbd.progress::-webkit-progress-value{background-color:#313244}html.theme--catppuccin-mocha .progress.is-dark::-moz-progress-bar,html.theme--catppuccin-mocha .content kbd.progress::-moz-progress-bar{background-color:#313244}html.theme--catppuccin-mocha .progress.is-dark::-ms-fill,html.theme--catppuccin-mocha .content kbd.progress::-ms-fill{background-color:#313244}html.theme--catppuccin-mocha .progress.is-dark:indeterminate,html.theme--catppuccin-mocha .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #313244 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-primary::-webkit-progress-value,html.theme--catppuccin-mocha .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-primary::-moz-progress-bar,html.theme--catppuccin-mocha .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-primary::-ms-fill,html.theme--catppuccin-mocha .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-primary:indeterminate,html.theme--catppuccin-mocha .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #89b4fa 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-link::-webkit-progress-value{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-link::-moz-progress-bar{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-link::-ms-fill{background-color:#89b4fa}html.theme--catppuccin-mocha .progress.is-link:indeterminate{background-image:linear-gradient(to right, #89b4fa 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-info::-webkit-progress-value{background-color:#94e2d5}html.theme--catppuccin-mocha .progress.is-info::-moz-progress-bar{background-color:#94e2d5}html.theme--catppuccin-mocha .progress.is-info::-ms-fill{background-color:#94e2d5}html.theme--catppuccin-mocha .progress.is-info:indeterminate{background-image:linear-gradient(to right, #94e2d5 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-success::-webkit-progress-value{background-color:#a6e3a1}html.theme--catppuccin-mocha .progress.is-success::-moz-progress-bar{background-color:#a6e3a1}html.theme--catppuccin-mocha .progress.is-success::-ms-fill{background-color:#a6e3a1}html.theme--catppuccin-mocha .progress.is-success:indeterminate{background-image:linear-gradient(to right, #a6e3a1 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-warning::-webkit-progress-value{background-color:#f9e2af}html.theme--catppuccin-mocha .progress.is-warning::-moz-progress-bar{background-color:#f9e2af}html.theme--catppuccin-mocha .progress.is-warning::-ms-fill{background-color:#f9e2af}html.theme--catppuccin-mocha .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #f9e2af 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress.is-danger::-webkit-progress-value{background-color:#f38ba8}html.theme--catppuccin-mocha .progress.is-danger::-moz-progress-bar{background-color:#f38ba8}html.theme--catppuccin-mocha .progress.is-danger::-ms-fill{background-color:#f38ba8}html.theme--catppuccin-mocha .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #f38ba8 30%, #45475a 30%)}html.theme--catppuccin-mocha .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#45475a;background-image:linear-gradient(to right, #cdd6f4 30%, #45475a 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--catppuccin-mocha .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--catppuccin-mocha .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--catppuccin-mocha .progress:indeterminate::-ms-fill{animation-name:none}html.theme--catppuccin-mocha .progress.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--catppuccin-mocha .progress.is-medium{height:1.25rem}html.theme--catppuccin-mocha .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--catppuccin-mocha .table{background-color:#45475a;color:#cdd6f4}html.theme--catppuccin-mocha .table td,html.theme--catppuccin-mocha .table th{border:1px solid #585b70;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--catppuccin-mocha .table td.is-white,html.theme--catppuccin-mocha .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .table td.is-black,html.theme--catppuccin-mocha .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .table td.is-light,html.theme--catppuccin-mocha .table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .table td.is-dark,html.theme--catppuccin-mocha .table th.is-dark{background-color:#313244;border-color:#313244;color:#fff}html.theme--catppuccin-mocha .table td.is-primary,html.theme--catppuccin-mocha .table th.is-primary{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .table td.is-link,html.theme--catppuccin-mocha .table th.is-link{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .table td.is-info,html.theme--catppuccin-mocha .table th.is-info{background-color:#94e2d5;border-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .table td.is-success,html.theme--catppuccin-mocha .table th.is-success{background-color:#a6e3a1;border-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .table td.is-warning,html.theme--catppuccin-mocha .table th.is-warning{background-color:#f9e2af;border-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .table td.is-danger,html.theme--catppuccin-mocha .table th.is-danger{background-color:#f38ba8;border-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .table td.is-narrow,html.theme--catppuccin-mocha .table th.is-narrow{white-space:nowrap;width:1%}html.theme--catppuccin-mocha .table td.is-selected,html.theme--catppuccin-mocha .table th.is-selected{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .table td.is-selected a,html.theme--catppuccin-mocha .table td.is-selected strong,html.theme--catppuccin-mocha .table th.is-selected a,html.theme--catppuccin-mocha .table th.is-selected strong{color:currentColor}html.theme--catppuccin-mocha .table td.is-vcentered,html.theme--catppuccin-mocha .table th.is-vcentered{vertical-align:middle}html.theme--catppuccin-mocha .table th{color:#b8c5ef}html.theme--catppuccin-mocha .table th:not([align]){text-align:left}html.theme--catppuccin-mocha .table tr.is-selected{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .table tr.is-selected a,html.theme--catppuccin-mocha .table tr.is-selected strong{color:currentColor}html.theme--catppuccin-mocha .table tr.is-selected td,html.theme--catppuccin-mocha .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--catppuccin-mocha .table thead{background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .table thead td,html.theme--catppuccin-mocha .table thead th{border-width:0 0 2px;color:#b8c5ef}html.theme--catppuccin-mocha .table tfoot{background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .table tfoot td,html.theme--catppuccin-mocha .table tfoot th{border-width:2px 0 0;color:#b8c5ef}html.theme--catppuccin-mocha .table tbody{background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .table tbody tr:last-child td,html.theme--catppuccin-mocha .table tbody tr:last-child th{border-bottom-width:0}html.theme--catppuccin-mocha .table.is-bordered td,html.theme--catppuccin-mocha .table.is-bordered th{border-width:1px}html.theme--catppuccin-mocha .table.is-bordered tr:last-child td,html.theme--catppuccin-mocha .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--catppuccin-mocha .table.is-fullwidth{width:100%}html.theme--catppuccin-mocha .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#313244}html.theme--catppuccin-mocha .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#313244}html.theme--catppuccin-mocha .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#35364a}html.theme--catppuccin-mocha .table.is-narrow td,html.theme--catppuccin-mocha .table.is-narrow th{padding:0.25em 0.5em}html.theme--catppuccin-mocha .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#313244}html.theme--catppuccin-mocha .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--catppuccin-mocha .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-mocha .tags .tag,html.theme--catppuccin-mocha .tags .content kbd,html.theme--catppuccin-mocha .content .tags kbd,html.theme--catppuccin-mocha .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--catppuccin-mocha .tags .tag:not(:last-child),html.theme--catppuccin-mocha .tags .content kbd:not(:last-child),html.theme--catppuccin-mocha .content .tags kbd:not(:last-child),html.theme--catppuccin-mocha .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--catppuccin-mocha .tags:last-child{margin-bottom:-0.5rem}html.theme--catppuccin-mocha .tags:not(:last-child){margin-bottom:1rem}html.theme--catppuccin-mocha .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--catppuccin-mocha .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-mocha .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--catppuccin-mocha .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--catppuccin-mocha .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--catppuccin-mocha .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-mocha .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--catppuccin-mocha .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--catppuccin-mocha .tags.is-centered{justify-content:center}html.theme--catppuccin-mocha .tags.is-centered .tag,html.theme--catppuccin-mocha .tags.is-centered .content kbd,html.theme--catppuccin-mocha .content .tags.is-centered kbd,html.theme--catppuccin-mocha .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--catppuccin-mocha .tags.is-right{justify-content:flex-end}html.theme--catppuccin-mocha .tags.is-right .tag:not(:first-child),html.theme--catppuccin-mocha .tags.is-right .content kbd:not(:first-child),html.theme--catppuccin-mocha .content .tags.is-right kbd:not(:first-child),html.theme--catppuccin-mocha .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--catppuccin-mocha .tags.is-right .tag:not(:last-child),html.theme--catppuccin-mocha .tags.is-right .content kbd:not(:last-child),html.theme--catppuccin-mocha .content .tags.is-right kbd:not(:last-child),html.theme--catppuccin-mocha .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--catppuccin-mocha .tags.has-addons .tag,html.theme--catppuccin-mocha .tags.has-addons .content kbd,html.theme--catppuccin-mocha .content .tags.has-addons kbd,html.theme--catppuccin-mocha .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--catppuccin-mocha .tags.has-addons .tag:not(:first-child),html.theme--catppuccin-mocha .tags.has-addons .content kbd:not(:first-child),html.theme--catppuccin-mocha .content .tags.has-addons kbd:not(:first-child),html.theme--catppuccin-mocha .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--catppuccin-mocha .tags.has-addons .tag:not(:last-child),html.theme--catppuccin-mocha .tags.has-addons .content kbd:not(:last-child),html.theme--catppuccin-mocha .content .tags.has-addons kbd:not(:last-child),html.theme--catppuccin-mocha .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--catppuccin-mocha .tag:not(body),html.theme--catppuccin-mocha .content kbd:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#181825;border-radius:.4em;color:#cdd6f4;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--catppuccin-mocha .tag:not(body) .delete,html.theme--catppuccin-mocha .content kbd:not(body) .delete,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--catppuccin-mocha .tag.is-white:not(body),html.theme--catppuccin-mocha .content kbd.is-white:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .tag.is-black:not(body),html.theme--catppuccin-mocha .content kbd.is-black:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .tag.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .tag.is-dark:not(body),html.theme--catppuccin-mocha .content kbd:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--catppuccin-mocha .content .docstring>section>kbd:not(body){background-color:#313244;color:#fff}html.theme--catppuccin-mocha .tag.is-primary:not(body),html.theme--catppuccin-mocha .content kbd.is-primary:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body){background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .tag.is-primary.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-primary.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .tag.is-link:not(body),html.theme--catppuccin-mocha .content kbd.is-link:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .tag.is-link.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-link.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#ebf3fe;color:#063c93}html.theme--catppuccin-mocha .tag.is-info:not(body),html.theme--catppuccin-mocha .content kbd.is-info:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .tag.is-info.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-info.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#effbf9;color:#207466}html.theme--catppuccin-mocha .tag.is-success:not(body),html.theme--catppuccin-mocha .content kbd.is-success:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .tag.is-success.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-success.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#f0faef;color:#287222}html.theme--catppuccin-mocha .tag.is-warning:not(body),html.theme--catppuccin-mocha .content kbd.is-warning:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .tag.is-warning.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-warning.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fef8ec;color:#8a620a}html.theme--catppuccin-mocha .tag.is-danger:not(body),html.theme--catppuccin-mocha .content kbd.is-danger:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .tag.is-danger.is-light:not(body),html.theme--catppuccin-mocha .content kbd.is-danger.is-light:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fdedf1;color:#991036}html.theme--catppuccin-mocha .tag.is-normal:not(body),html.theme--catppuccin-mocha .content kbd.is-normal:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--catppuccin-mocha .tag.is-medium:not(body),html.theme--catppuccin-mocha .content kbd.is-medium:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--catppuccin-mocha .tag.is-large:not(body),html.theme--catppuccin-mocha .content kbd.is-large:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--catppuccin-mocha .tag:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-mocha .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--catppuccin-mocha .tag:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-mocha .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--catppuccin-mocha .tag:not(body) .icon:first-child:last-child,html.theme--catppuccin-mocha .content kbd:not(body) .icon:first-child:last-child,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--catppuccin-mocha .tag.is-delete:not(body),html.theme--catppuccin-mocha .content kbd.is-delete:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--catppuccin-mocha .tag.is-delete:not(body)::before,html.theme--catppuccin-mocha .content kbd.is-delete:not(body)::before,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--catppuccin-mocha .tag.is-delete:not(body)::after,html.theme--catppuccin-mocha .content kbd.is-delete:not(body)::after,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--catppuccin-mocha .tag.is-delete:not(body)::before,html.theme--catppuccin-mocha .content kbd.is-delete:not(body)::before,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--catppuccin-mocha .tag.is-delete:not(body)::after,html.theme--catppuccin-mocha .content kbd.is-delete:not(body)::after,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--catppuccin-mocha .tag.is-delete:not(body):hover,html.theme--catppuccin-mocha .content kbd.is-delete:not(body):hover,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--catppuccin-mocha .tag.is-delete:not(body):focus,html.theme--catppuccin-mocha .content kbd.is-delete:not(body):focus,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#0e0e16}html.theme--catppuccin-mocha .tag.is-delete:not(body):active,html.theme--catppuccin-mocha .content kbd.is-delete:not(body):active,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#040406}html.theme--catppuccin-mocha .tag.is-rounded:not(body),html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--catppuccin-mocha .content kbd.is-rounded:not(body),html.theme--catppuccin-mocha #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--catppuccin-mocha a.tag:hover,html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--catppuccin-mocha .title,html.theme--catppuccin-mocha .subtitle{word-break:break-word}html.theme--catppuccin-mocha .title em,html.theme--catppuccin-mocha .title span,html.theme--catppuccin-mocha .subtitle em,html.theme--catppuccin-mocha .subtitle span{font-weight:inherit}html.theme--catppuccin-mocha .title sub,html.theme--catppuccin-mocha .subtitle sub{font-size:.75em}html.theme--catppuccin-mocha .title sup,html.theme--catppuccin-mocha .subtitle sup{font-size:.75em}html.theme--catppuccin-mocha .title .tag,html.theme--catppuccin-mocha .title .content kbd,html.theme--catppuccin-mocha .content .title kbd,html.theme--catppuccin-mocha .title .docstring>section>a.docs-sourcelink,html.theme--catppuccin-mocha .subtitle .tag,html.theme--catppuccin-mocha .subtitle .content kbd,html.theme--catppuccin-mocha .content .subtitle kbd,html.theme--catppuccin-mocha .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--catppuccin-mocha .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--catppuccin-mocha .title strong{color:inherit;font-weight:inherit}html.theme--catppuccin-mocha .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--catppuccin-mocha .title.is-1{font-size:3rem}html.theme--catppuccin-mocha .title.is-2{font-size:2.5rem}html.theme--catppuccin-mocha .title.is-3{font-size:2rem}html.theme--catppuccin-mocha .title.is-4{font-size:1.5rem}html.theme--catppuccin-mocha .title.is-5{font-size:1.25rem}html.theme--catppuccin-mocha .title.is-6{font-size:1rem}html.theme--catppuccin-mocha .title.is-7{font-size:.75rem}html.theme--catppuccin-mocha .subtitle{color:#6c7086;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--catppuccin-mocha .subtitle strong{color:#6c7086;font-weight:600}html.theme--catppuccin-mocha .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--catppuccin-mocha .subtitle.is-1{font-size:3rem}html.theme--catppuccin-mocha .subtitle.is-2{font-size:2.5rem}html.theme--catppuccin-mocha .subtitle.is-3{font-size:2rem}html.theme--catppuccin-mocha .subtitle.is-4{font-size:1.5rem}html.theme--catppuccin-mocha .subtitle.is-5{font-size:1.25rem}html.theme--catppuccin-mocha .subtitle.is-6{font-size:1rem}html.theme--catppuccin-mocha .subtitle.is-7{font-size:.75rem}html.theme--catppuccin-mocha .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--catppuccin-mocha .number{align-items:center;background-color:#181825;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--catppuccin-mocha .select select,html.theme--catppuccin-mocha .textarea,html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{background-color:#1e1e2e;border-color:#585b70;border-radius:.4em;color:#7f849c}html.theme--catppuccin-mocha .select select::-moz-placeholder,html.theme--catppuccin-mocha .textarea::-moz-placeholder,html.theme--catppuccin-mocha .input::-moz-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--catppuccin-mocha .select select::-webkit-input-placeholder,html.theme--catppuccin-mocha .textarea::-webkit-input-placeholder,html.theme--catppuccin-mocha .input::-webkit-input-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--catppuccin-mocha .select select:-moz-placeholder,html.theme--catppuccin-mocha .textarea:-moz-placeholder,html.theme--catppuccin-mocha .input:-moz-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--catppuccin-mocha .select select:-ms-input-placeholder,html.theme--catppuccin-mocha .textarea:-ms-input-placeholder,html.theme--catppuccin-mocha .input:-ms-input-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--catppuccin-mocha .select select:hover,html.theme--catppuccin-mocha .textarea:hover,html.theme--catppuccin-mocha .input:hover,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:hover,html.theme--catppuccin-mocha .select select.is-hovered,html.theme--catppuccin-mocha .is-hovered.textarea,html.theme--catppuccin-mocha .is-hovered.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#6c7086}html.theme--catppuccin-mocha .select select:focus,html.theme--catppuccin-mocha .textarea:focus,html.theme--catppuccin-mocha .input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:focus,html.theme--catppuccin-mocha .select select.is-focused,html.theme--catppuccin-mocha .is-focused.textarea,html.theme--catppuccin-mocha .is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .select select:active,html.theme--catppuccin-mocha .textarea:active,html.theme--catppuccin-mocha .input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:active,html.theme--catppuccin-mocha .select select.is-active,html.theme--catppuccin-mocha .is-active.textarea,html.theme--catppuccin-mocha .is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#89b4fa;box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .select select[disabled],html.theme--catppuccin-mocha .textarea[disabled],html.theme--catppuccin-mocha .input[disabled],html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--catppuccin-mocha .select select,fieldset[disabled] html.theme--catppuccin-mocha .textarea,fieldset[disabled] html.theme--catppuccin-mocha .input,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{background-color:#6c7086;border-color:#181825;box-shadow:none;color:#f7f8fd}html.theme--catppuccin-mocha .select select[disabled]::-moz-placeholder,html.theme--catppuccin-mocha .textarea[disabled]::-moz-placeholder,html.theme--catppuccin-mocha .input[disabled]::-moz-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .select select::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .textarea::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .input::-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(247,248,253,0.3)}html.theme--catppuccin-mocha .select select[disabled]::-webkit-input-placeholder,html.theme--catppuccin-mocha .textarea[disabled]::-webkit-input-placeholder,html.theme--catppuccin-mocha .input[disabled]::-webkit-input-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .input::-webkit-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(247,248,253,0.3)}html.theme--catppuccin-mocha .select select[disabled]:-moz-placeholder,html.theme--catppuccin-mocha .textarea[disabled]:-moz-placeholder,html.theme--catppuccin-mocha .input[disabled]:-moz-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .select select:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .textarea:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .input:-moz-placeholder,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(247,248,253,0.3)}html.theme--catppuccin-mocha .select select[disabled]:-ms-input-placeholder,html.theme--catppuccin-mocha .textarea[disabled]:-ms-input-placeholder,html.theme--catppuccin-mocha .input[disabled]:-ms-input-placeholder,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .select select:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha .input:-ms-input-placeholder,fieldset[disabled] html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(247,248,253,0.3)}html.theme--catppuccin-mocha .textarea,html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--catppuccin-mocha .textarea[readonly],html.theme--catppuccin-mocha .input[readonly],html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--catppuccin-mocha .is-white.textarea,html.theme--catppuccin-mocha .is-white.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--catppuccin-mocha .is-white.textarea:focus,html.theme--catppuccin-mocha .is-white.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--catppuccin-mocha .is-white.is-focused.textarea,html.theme--catppuccin-mocha .is-white.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-white.textarea:active,html.theme--catppuccin-mocha .is-white.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--catppuccin-mocha .is-white.is-active.textarea,html.theme--catppuccin-mocha .is-white.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-mocha .is-black.textarea,html.theme--catppuccin-mocha .is-black.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--catppuccin-mocha .is-black.textarea:focus,html.theme--catppuccin-mocha .is-black.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--catppuccin-mocha .is-black.is-focused.textarea,html.theme--catppuccin-mocha .is-black.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-black.textarea:active,html.theme--catppuccin-mocha .is-black.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--catppuccin-mocha .is-black.is-active.textarea,html.theme--catppuccin-mocha .is-black.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-mocha .is-light.textarea,html.theme--catppuccin-mocha .is-light.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}html.theme--catppuccin-mocha .is-light.textarea:focus,html.theme--catppuccin-mocha .is-light.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--catppuccin-mocha .is-light.is-focused.textarea,html.theme--catppuccin-mocha .is-light.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-light.textarea:active,html.theme--catppuccin-mocha .is-light.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--catppuccin-mocha .is-light.is-active.textarea,html.theme--catppuccin-mocha .is-light.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-mocha .is-dark.textarea,html.theme--catppuccin-mocha .content kbd.textarea,html.theme--catppuccin-mocha .is-dark.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--catppuccin-mocha .content kbd.input{border-color:#313244}html.theme--catppuccin-mocha .is-dark.textarea:focus,html.theme--catppuccin-mocha .content kbd.textarea:focus,html.theme--catppuccin-mocha .is-dark.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--catppuccin-mocha .content kbd.input:focus,html.theme--catppuccin-mocha .is-dark.is-focused.textarea,html.theme--catppuccin-mocha .content kbd.is-focused.textarea,html.theme--catppuccin-mocha .is-dark.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .content kbd.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-dark.textarea:active,html.theme--catppuccin-mocha .content kbd.textarea:active,html.theme--catppuccin-mocha .is-dark.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--catppuccin-mocha .content kbd.input:active,html.theme--catppuccin-mocha .is-dark.is-active.textarea,html.theme--catppuccin-mocha .content kbd.is-active.textarea,html.theme--catppuccin-mocha .is-dark.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-mocha .content kbd.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(49,50,68,0.25)}html.theme--catppuccin-mocha .is-primary.textarea,html.theme--catppuccin-mocha .docstring>section>a.textarea.docs-sourcelink,html.theme--catppuccin-mocha .is-primary.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--catppuccin-mocha .docstring>section>a.input.docs-sourcelink{border-color:#89b4fa}html.theme--catppuccin-mocha .is-primary.textarea:focus,html.theme--catppuccin-mocha .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--catppuccin-mocha .is-primary.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--catppuccin-mocha .docstring>section>a.input.docs-sourcelink:focus,html.theme--catppuccin-mocha .is-primary.is-focused.textarea,html.theme--catppuccin-mocha .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--catppuccin-mocha .is-primary.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--catppuccin-mocha .is-primary.textarea:active,html.theme--catppuccin-mocha .docstring>section>a.textarea.docs-sourcelink:active,html.theme--catppuccin-mocha .is-primary.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--catppuccin-mocha .docstring>section>a.input.docs-sourcelink:active,html.theme--catppuccin-mocha .is-primary.is-active.textarea,html.theme--catppuccin-mocha .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--catppuccin-mocha .is-primary.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--catppuccin-mocha .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .is-link.textarea,html.theme--catppuccin-mocha .is-link.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#89b4fa}html.theme--catppuccin-mocha .is-link.textarea:focus,html.theme--catppuccin-mocha .is-link.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--catppuccin-mocha .is-link.is-focused.textarea,html.theme--catppuccin-mocha .is-link.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-link.textarea:active,html.theme--catppuccin-mocha .is-link.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--catppuccin-mocha .is-link.is-active.textarea,html.theme--catppuccin-mocha .is-link.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .is-info.textarea,html.theme--catppuccin-mocha .is-info.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#94e2d5}html.theme--catppuccin-mocha .is-info.textarea:focus,html.theme--catppuccin-mocha .is-info.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--catppuccin-mocha .is-info.is-focused.textarea,html.theme--catppuccin-mocha .is-info.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-info.textarea:active,html.theme--catppuccin-mocha .is-info.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--catppuccin-mocha .is-info.is-active.textarea,html.theme--catppuccin-mocha .is-info.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(148,226,213,0.25)}html.theme--catppuccin-mocha .is-success.textarea,html.theme--catppuccin-mocha .is-success.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#a6e3a1}html.theme--catppuccin-mocha .is-success.textarea:focus,html.theme--catppuccin-mocha .is-success.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--catppuccin-mocha .is-success.is-focused.textarea,html.theme--catppuccin-mocha .is-success.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-success.textarea:active,html.theme--catppuccin-mocha .is-success.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--catppuccin-mocha .is-success.is-active.textarea,html.theme--catppuccin-mocha .is-success.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(166,227,161,0.25)}html.theme--catppuccin-mocha .is-warning.textarea,html.theme--catppuccin-mocha .is-warning.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#f9e2af}html.theme--catppuccin-mocha .is-warning.textarea:focus,html.theme--catppuccin-mocha .is-warning.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--catppuccin-mocha .is-warning.is-focused.textarea,html.theme--catppuccin-mocha .is-warning.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-warning.textarea:active,html.theme--catppuccin-mocha .is-warning.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--catppuccin-mocha .is-warning.is-active.textarea,html.theme--catppuccin-mocha .is-warning.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(249,226,175,0.25)}html.theme--catppuccin-mocha .is-danger.textarea,html.theme--catppuccin-mocha .is-danger.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#f38ba8}html.theme--catppuccin-mocha .is-danger.textarea:focus,html.theme--catppuccin-mocha .is-danger.input:focus,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--catppuccin-mocha .is-danger.is-focused.textarea,html.theme--catppuccin-mocha .is-danger.is-focused.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--catppuccin-mocha .is-danger.textarea:active,html.theme--catppuccin-mocha .is-danger.input:active,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--catppuccin-mocha .is-danger.is-active.textarea,html.theme--catppuccin-mocha .is-danger.is-active.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(243,139,168,0.25)}html.theme--catppuccin-mocha .is-small.textarea,html.theme--catppuccin-mocha .is-small.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--catppuccin-mocha .is-medium.textarea,html.theme--catppuccin-mocha .is-medium.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .is-large.textarea,html.theme--catppuccin-mocha .is-large.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .is-fullwidth.textarea,html.theme--catppuccin-mocha .is-fullwidth.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--catppuccin-mocha .is-inline.textarea,html.theme--catppuccin-mocha .is-inline.input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--catppuccin-mocha .input.is-rounded,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--catppuccin-mocha .input.is-static,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--catppuccin-mocha .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--catppuccin-mocha .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--catppuccin-mocha .textarea[rows]{height:initial}html.theme--catppuccin-mocha .textarea.has-fixed-size{resize:none}html.theme--catppuccin-mocha .radio,html.theme--catppuccin-mocha .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--catppuccin-mocha .radio input,html.theme--catppuccin-mocha .checkbox input{cursor:pointer}html.theme--catppuccin-mocha .radio:hover,html.theme--catppuccin-mocha .checkbox:hover{color:#89dceb}html.theme--catppuccin-mocha .radio[disabled],html.theme--catppuccin-mocha .checkbox[disabled],fieldset[disabled] html.theme--catppuccin-mocha .radio,fieldset[disabled] html.theme--catppuccin-mocha .checkbox,html.theme--catppuccin-mocha .radio input[disabled],html.theme--catppuccin-mocha .checkbox input[disabled]{color:#f7f8fd;cursor:not-allowed}html.theme--catppuccin-mocha .radio+.radio{margin-left:.5em}html.theme--catppuccin-mocha .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--catppuccin-mocha .select:not(.is-multiple){height:2.5em}html.theme--catppuccin-mocha .select:not(.is-multiple):not(.is-loading)::after{border-color:#89b4fa;right:1.125em;z-index:4}html.theme--catppuccin-mocha .select.is-rounded select,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--catppuccin-mocha .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--catppuccin-mocha .select select::-ms-expand{display:none}html.theme--catppuccin-mocha .select select[disabled]:hover,fieldset[disabled] html.theme--catppuccin-mocha .select select:hover{border-color:#181825}html.theme--catppuccin-mocha .select select:not([multiple]){padding-right:2.5em}html.theme--catppuccin-mocha .select select[multiple]{height:auto;padding:0}html.theme--catppuccin-mocha .select select[multiple] option{padding:0.5em 1em}html.theme--catppuccin-mocha .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#89dceb}html.theme--catppuccin-mocha .select.is-white:not(:hover)::after{border-color:#fff}html.theme--catppuccin-mocha .select.is-white select{border-color:#fff}html.theme--catppuccin-mocha .select.is-white select:hover,html.theme--catppuccin-mocha .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--catppuccin-mocha .select.is-white select:focus,html.theme--catppuccin-mocha .select.is-white select.is-focused,html.theme--catppuccin-mocha .select.is-white select:active,html.theme--catppuccin-mocha .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--catppuccin-mocha .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--catppuccin-mocha .select.is-black select{border-color:#0a0a0a}html.theme--catppuccin-mocha .select.is-black select:hover,html.theme--catppuccin-mocha .select.is-black select.is-hovered{border-color:#000}html.theme--catppuccin-mocha .select.is-black select:focus,html.theme--catppuccin-mocha .select.is-black select.is-focused,html.theme--catppuccin-mocha .select.is-black select:active,html.theme--catppuccin-mocha .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--catppuccin-mocha .select.is-light:not(:hover)::after{border-color:#f5f5f5}html.theme--catppuccin-mocha .select.is-light select{border-color:#f5f5f5}html.theme--catppuccin-mocha .select.is-light select:hover,html.theme--catppuccin-mocha .select.is-light select.is-hovered{border-color:#e8e8e8}html.theme--catppuccin-mocha .select.is-light select:focus,html.theme--catppuccin-mocha .select.is-light select.is-focused,html.theme--catppuccin-mocha .select.is-light select:active,html.theme--catppuccin-mocha .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}html.theme--catppuccin-mocha .select.is-dark:not(:hover)::after,html.theme--catppuccin-mocha .content kbd.select:not(:hover)::after{border-color:#313244}html.theme--catppuccin-mocha .select.is-dark select,html.theme--catppuccin-mocha .content kbd.select select{border-color:#313244}html.theme--catppuccin-mocha .select.is-dark select:hover,html.theme--catppuccin-mocha .content kbd.select select:hover,html.theme--catppuccin-mocha .select.is-dark select.is-hovered,html.theme--catppuccin-mocha .content kbd.select select.is-hovered{border-color:#262735}html.theme--catppuccin-mocha .select.is-dark select:focus,html.theme--catppuccin-mocha .content kbd.select select:focus,html.theme--catppuccin-mocha .select.is-dark select.is-focused,html.theme--catppuccin-mocha .content kbd.select select.is-focused,html.theme--catppuccin-mocha .select.is-dark select:active,html.theme--catppuccin-mocha .content kbd.select select:active,html.theme--catppuccin-mocha .select.is-dark select.is-active,html.theme--catppuccin-mocha .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(49,50,68,0.25)}html.theme--catppuccin-mocha .select.is-primary:not(:hover)::after,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#89b4fa}html.theme--catppuccin-mocha .select.is-primary select,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select{border-color:#89b4fa}html.theme--catppuccin-mocha .select.is-primary select:hover,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select:hover,html.theme--catppuccin-mocha .select.is-primary select.is-hovered,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#71a4f9}html.theme--catppuccin-mocha .select.is-primary select:focus,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select:focus,html.theme--catppuccin-mocha .select.is-primary select.is-focused,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--catppuccin-mocha .select.is-primary select:active,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select:active,html.theme--catppuccin-mocha .select.is-primary select.is-active,html.theme--catppuccin-mocha .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .select.is-link:not(:hover)::after{border-color:#89b4fa}html.theme--catppuccin-mocha .select.is-link select{border-color:#89b4fa}html.theme--catppuccin-mocha .select.is-link select:hover,html.theme--catppuccin-mocha .select.is-link select.is-hovered{border-color:#71a4f9}html.theme--catppuccin-mocha .select.is-link select:focus,html.theme--catppuccin-mocha .select.is-link select.is-focused,html.theme--catppuccin-mocha .select.is-link select:active,html.theme--catppuccin-mocha .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(137,180,250,0.25)}html.theme--catppuccin-mocha .select.is-info:not(:hover)::after{border-color:#94e2d5}html.theme--catppuccin-mocha .select.is-info select{border-color:#94e2d5}html.theme--catppuccin-mocha .select.is-info select:hover,html.theme--catppuccin-mocha .select.is-info select.is-hovered{border-color:#80ddcd}html.theme--catppuccin-mocha .select.is-info select:focus,html.theme--catppuccin-mocha .select.is-info select.is-focused,html.theme--catppuccin-mocha .select.is-info select:active,html.theme--catppuccin-mocha .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(148,226,213,0.25)}html.theme--catppuccin-mocha .select.is-success:not(:hover)::after{border-color:#a6e3a1}html.theme--catppuccin-mocha .select.is-success select{border-color:#a6e3a1}html.theme--catppuccin-mocha .select.is-success select:hover,html.theme--catppuccin-mocha .select.is-success select.is-hovered{border-color:#93dd8d}html.theme--catppuccin-mocha .select.is-success select:focus,html.theme--catppuccin-mocha .select.is-success select.is-focused,html.theme--catppuccin-mocha .select.is-success select:active,html.theme--catppuccin-mocha .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(166,227,161,0.25)}html.theme--catppuccin-mocha .select.is-warning:not(:hover)::after{border-color:#f9e2af}html.theme--catppuccin-mocha .select.is-warning select{border-color:#f9e2af}html.theme--catppuccin-mocha .select.is-warning select:hover,html.theme--catppuccin-mocha .select.is-warning select.is-hovered{border-color:#f7d997}html.theme--catppuccin-mocha .select.is-warning select:focus,html.theme--catppuccin-mocha .select.is-warning select.is-focused,html.theme--catppuccin-mocha .select.is-warning select:active,html.theme--catppuccin-mocha .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(249,226,175,0.25)}html.theme--catppuccin-mocha .select.is-danger:not(:hover)::after{border-color:#f38ba8}html.theme--catppuccin-mocha .select.is-danger select{border-color:#f38ba8}html.theme--catppuccin-mocha .select.is-danger select:hover,html.theme--catppuccin-mocha .select.is-danger select.is-hovered{border-color:#f17497}html.theme--catppuccin-mocha .select.is-danger select:focus,html.theme--catppuccin-mocha .select.is-danger select.is-focused,html.theme--catppuccin-mocha .select.is-danger select:active,html.theme--catppuccin-mocha .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(243,139,168,0.25)}html.theme--catppuccin-mocha .select.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--catppuccin-mocha .select.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .select.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .select.is-disabled::after{border-color:#f7f8fd !important;opacity:0.5}html.theme--catppuccin-mocha .select.is-fullwidth{width:100%}html.theme--catppuccin-mocha .select.is-fullwidth select{width:100%}html.theme--catppuccin-mocha .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--catppuccin-mocha .select.is-loading.is-small:after,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-mocha .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-mocha .select.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-mocha .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--catppuccin-mocha .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .file.is-white:hover .file-cta,html.theme--catppuccin-mocha .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .file.is-white:focus .file-cta,html.theme--catppuccin-mocha .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--catppuccin-mocha .file.is-white:active .file-cta,html.theme--catppuccin-mocha .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--catppuccin-mocha .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-black:hover .file-cta,html.theme--catppuccin-mocha .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-black:focus .file-cta,html.theme--catppuccin-mocha .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-black:active .file-cta,html.theme--catppuccin-mocha .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-light:hover .file-cta,html.theme--catppuccin-mocha .file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-light:focus .file-cta,html.theme--catppuccin-mocha .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-light:active .file-cta,html.theme--catppuccin-mocha .file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-dark .file-cta,html.theme--catppuccin-mocha .content kbd.file .file-cta{background-color:#313244;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-dark:hover .file-cta,html.theme--catppuccin-mocha .content kbd.file:hover .file-cta,html.theme--catppuccin-mocha .file.is-dark.is-hovered .file-cta,html.theme--catppuccin-mocha .content kbd.file.is-hovered .file-cta{background-color:#2c2d3d;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-dark:focus .file-cta,html.theme--catppuccin-mocha .content kbd.file:focus .file-cta,html.theme--catppuccin-mocha .file.is-dark.is-focused .file-cta,html.theme--catppuccin-mocha .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(49,50,68,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-dark:active .file-cta,html.theme--catppuccin-mocha .content kbd.file:active .file-cta,html.theme--catppuccin-mocha .file.is-dark.is-active .file-cta,html.theme--catppuccin-mocha .content kbd.file.is-active .file-cta{background-color:#262735;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-primary .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#89b4fa;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-primary:hover .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--catppuccin-mocha .file.is-primary.is-hovered .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#7dacf9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-primary:focus .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--catppuccin-mocha .file.is-primary.is-focused .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(137,180,250,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-primary:active .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--catppuccin-mocha .file.is-primary.is-active .file-cta,html.theme--catppuccin-mocha .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#71a4f9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-link .file-cta{background-color:#89b4fa;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-link:hover .file-cta,html.theme--catppuccin-mocha .file.is-link.is-hovered .file-cta{background-color:#7dacf9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-link:focus .file-cta,html.theme--catppuccin-mocha .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(137,180,250,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-link:active .file-cta,html.theme--catppuccin-mocha .file.is-link.is-active .file-cta{background-color:#71a4f9;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-info .file-cta{background-color:#94e2d5;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-info:hover .file-cta,html.theme--catppuccin-mocha .file.is-info.is-hovered .file-cta{background-color:#8adfd1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-info:focus .file-cta,html.theme--catppuccin-mocha .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(148,226,213,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-info:active .file-cta,html.theme--catppuccin-mocha .file.is-info.is-active .file-cta{background-color:#80ddcd;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-success .file-cta{background-color:#a6e3a1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-success:hover .file-cta,html.theme--catppuccin-mocha .file.is-success.is-hovered .file-cta{background-color:#9de097;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-success:focus .file-cta,html.theme--catppuccin-mocha .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(166,227,161,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-success:active .file-cta,html.theme--catppuccin-mocha .file.is-success.is-active .file-cta{background-color:#93dd8d;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-warning .file-cta{background-color:#f9e2af;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-warning:hover .file-cta,html.theme--catppuccin-mocha .file.is-warning.is-hovered .file-cta{background-color:#f8dea3;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-warning:focus .file-cta,html.theme--catppuccin-mocha .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(249,226,175,0.25);color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-warning:active .file-cta,html.theme--catppuccin-mocha .file.is-warning.is-active .file-cta{background-color:#f7d997;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .file.is-danger .file-cta{background-color:#f38ba8;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-danger:hover .file-cta,html.theme--catppuccin-mocha .file.is-danger.is-hovered .file-cta{background-color:#f27f9f;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-danger:focus .file-cta,html.theme--catppuccin-mocha .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(243,139,168,0.25);color:#fff}html.theme--catppuccin-mocha .file.is-danger:active .file-cta,html.theme--catppuccin-mocha .file.is-danger.is-active .file-cta{background-color:#f17497;border-color:transparent;color:#fff}html.theme--catppuccin-mocha .file.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--catppuccin-mocha .file.is-normal{font-size:1rem}html.theme--catppuccin-mocha .file.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .file.is-medium .file-icon .fa{font-size:21px}html.theme--catppuccin-mocha .file.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .file.is-large .file-icon .fa{font-size:28px}html.theme--catppuccin-mocha .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-mocha .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-mocha .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--catppuccin-mocha .file.has-name.is-empty .file-name{display:none}html.theme--catppuccin-mocha .file.is-boxed .file-label{flex-direction:column}html.theme--catppuccin-mocha .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--catppuccin-mocha .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--catppuccin-mocha .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--catppuccin-mocha .file.is-boxed .file-icon .fa{font-size:21px}html.theme--catppuccin-mocha .file.is-boxed.is-small .file-icon .fa,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--catppuccin-mocha .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--catppuccin-mocha .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--catppuccin-mocha .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--catppuccin-mocha .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--catppuccin-mocha .file.is-centered{justify-content:center}html.theme--catppuccin-mocha .file.is-fullwidth .file-label{width:100%}html.theme--catppuccin-mocha .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--catppuccin-mocha .file.is-right{justify-content:flex-end}html.theme--catppuccin-mocha .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--catppuccin-mocha .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--catppuccin-mocha .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--catppuccin-mocha .file-label:hover .file-cta{background-color:#2c2d3d;color:#b8c5ef}html.theme--catppuccin-mocha .file-label:hover .file-name{border-color:#525569}html.theme--catppuccin-mocha .file-label:active .file-cta{background-color:#262735;color:#b8c5ef}html.theme--catppuccin-mocha .file-label:active .file-name{border-color:#4d4f62}html.theme--catppuccin-mocha .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--catppuccin-mocha .file-cta,html.theme--catppuccin-mocha .file-name{border-color:#585b70;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--catppuccin-mocha .file-cta{background-color:#313244;color:#cdd6f4}html.theme--catppuccin-mocha .file-name{border-color:#585b70;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--catppuccin-mocha .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--catppuccin-mocha .file-icon .fa{font-size:14px}html.theme--catppuccin-mocha .label{color:#b8c5ef;display:block;font-size:1rem;font-weight:700}html.theme--catppuccin-mocha .label:not(:last-child){margin-bottom:0.5em}html.theme--catppuccin-mocha .label.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--catppuccin-mocha .label.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .label.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--catppuccin-mocha .help.is-white{color:#fff}html.theme--catppuccin-mocha .help.is-black{color:#0a0a0a}html.theme--catppuccin-mocha .help.is-light{color:#f5f5f5}html.theme--catppuccin-mocha .help.is-dark,html.theme--catppuccin-mocha .content kbd.help{color:#313244}html.theme--catppuccin-mocha .help.is-primary,html.theme--catppuccin-mocha .docstring>section>a.help.docs-sourcelink{color:#89b4fa}html.theme--catppuccin-mocha .help.is-link{color:#89b4fa}html.theme--catppuccin-mocha .help.is-info{color:#94e2d5}html.theme--catppuccin-mocha .help.is-success{color:#a6e3a1}html.theme--catppuccin-mocha .help.is-warning{color:#f9e2af}html.theme--catppuccin-mocha .help.is-danger{color:#f38ba8}html.theme--catppuccin-mocha .field:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-mocha .field.has-addons{display:flex;justify-content:flex-start}html.theme--catppuccin-mocha .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--catppuccin-mocha .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--catppuccin-mocha .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--catppuccin-mocha .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--catppuccin-mocha .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--catppuccin-mocha .field.has-addons .control:first-child:not(:only-child) .button,html.theme--catppuccin-mocha .field.has-addons .control:first-child:not(:only-child) .input,html.theme--catppuccin-mocha .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-mocha .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--catppuccin-mocha .field.has-addons .control:last-child:not(:only-child) .button,html.theme--catppuccin-mocha .field.has-addons .control:last-child:not(:only-child) .input,html.theme--catppuccin-mocha .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--catppuccin-mocha .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):focus,html.theme--catppuccin-mocha .field.has-addons .control .button.is-focused:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):active,html.theme--catppuccin-mocha .field.has-addons .control .button.is-active:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):focus,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--catppuccin-mocha .field.has-addons .control .input.is-focused:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):active,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--catppuccin-mocha .field.has-addons .control .input.is-active:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):focus,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):active,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--catppuccin-mocha .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .button:not([disabled]):active:hover,html.theme--catppuccin-mocha .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--catppuccin-mocha .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .input:not([disabled]):active:hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--catppuccin-mocha .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-mocha #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--catppuccin-mocha .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--catppuccin-mocha .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--catppuccin-mocha .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .field.has-addons.has-addons-centered{justify-content:center}html.theme--catppuccin-mocha .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--catppuccin-mocha .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--catppuccin-mocha .field.is-grouped{display:flex;justify-content:flex-start}html.theme--catppuccin-mocha .field.is-grouped>.control{flex-shrink:0}html.theme--catppuccin-mocha .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-mocha .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--catppuccin-mocha .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .field.is-horizontal{display:flex}}html.theme--catppuccin-mocha .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--catppuccin-mocha .field-label.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--catppuccin-mocha .field-label.is-normal{padding-top:0.375em}html.theme--catppuccin-mocha .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--catppuccin-mocha .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--catppuccin-mocha .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--catppuccin-mocha .field-body .field{margin-bottom:0}html.theme--catppuccin-mocha .field-body>.field{flex-shrink:1}html.theme--catppuccin-mocha .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--catppuccin-mocha .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-mocha .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--catppuccin-mocha .control.has-icons-left .input:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-left .select:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-right .input:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--catppuccin-mocha .control.has-icons-right .select:focus~.icon{color:#313244}html.theme--catppuccin-mocha .control.has-icons-left .input.is-small~.icon,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--catppuccin-mocha .control.has-icons-left .select.is-small~.icon,html.theme--catppuccin-mocha .control.has-icons-right .input.is-small~.icon,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--catppuccin-mocha .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--catppuccin-mocha .control.has-icons-left .input.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-left .select.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-right .input.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--catppuccin-mocha .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--catppuccin-mocha .control.has-icons-left .input.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-left .select.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-right .input.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--catppuccin-mocha .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--catppuccin-mocha .control.has-icons-left .icon,html.theme--catppuccin-mocha .control.has-icons-right .icon{color:#585b70;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--catppuccin-mocha .control.has-icons-left .input,html.theme--catppuccin-mocha .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--catppuccin-mocha .control.has-icons-left .select select{padding-left:2.5em}html.theme--catppuccin-mocha .control.has-icons-left .icon.is-left{left:0}html.theme--catppuccin-mocha .control.has-icons-right .input,html.theme--catppuccin-mocha .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--catppuccin-mocha .control.has-icons-right .select select{padding-right:2.5em}html.theme--catppuccin-mocha .control.has-icons-right .icon.is-right{right:0}html.theme--catppuccin-mocha .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--catppuccin-mocha .control.is-loading.is-small:after,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--catppuccin-mocha .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--catppuccin-mocha .control.is-loading.is-large:after{font-size:1.5rem}html.theme--catppuccin-mocha .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--catppuccin-mocha .breadcrumb a{align-items:center;color:#89b4fa;display:flex;justify-content:center;padding:0 .75em}html.theme--catppuccin-mocha .breadcrumb a:hover{color:#89dceb}html.theme--catppuccin-mocha .breadcrumb li{align-items:center;display:flex}html.theme--catppuccin-mocha .breadcrumb li:first-child a{padding-left:0}html.theme--catppuccin-mocha .breadcrumb li.is-active a{color:#b8c5ef;cursor:default;pointer-events:none}html.theme--catppuccin-mocha .breadcrumb li+li::before{color:#6c7086;content:"\0002f"}html.theme--catppuccin-mocha .breadcrumb ul,html.theme--catppuccin-mocha .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--catppuccin-mocha .breadcrumb .icon:first-child{margin-right:.5em}html.theme--catppuccin-mocha .breadcrumb .icon:last-child{margin-left:.5em}html.theme--catppuccin-mocha .breadcrumb.is-centered ol,html.theme--catppuccin-mocha .breadcrumb.is-centered ul{justify-content:center}html.theme--catppuccin-mocha .breadcrumb.is-right ol,html.theme--catppuccin-mocha .breadcrumb.is-right ul{justify-content:flex-end}html.theme--catppuccin-mocha .breadcrumb.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--catppuccin-mocha .breadcrumb.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .breadcrumb.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--catppuccin-mocha .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--catppuccin-mocha .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--catppuccin-mocha .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--catppuccin-mocha .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#cdd6f4;max-width:100%;position:relative}html.theme--catppuccin-mocha .card-footer:first-child,html.theme--catppuccin-mocha .card-content:first-child,html.theme--catppuccin-mocha .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-mocha .card-footer:last-child,html.theme--catppuccin-mocha .card-content:last-child,html.theme--catppuccin-mocha .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-mocha .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--catppuccin-mocha .card-header-title{align-items:center;color:#b8c5ef;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--catppuccin-mocha .card-header-title.is-centered{justify-content:center}html.theme--catppuccin-mocha .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--catppuccin-mocha .card-image{display:block;position:relative}html.theme--catppuccin-mocha .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--catppuccin-mocha .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--catppuccin-mocha .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--catppuccin-mocha .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--catppuccin-mocha .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--catppuccin-mocha .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--catppuccin-mocha .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-mocha .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--catppuccin-mocha .dropdown.is-active .dropdown-menu,html.theme--catppuccin-mocha .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--catppuccin-mocha .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--catppuccin-mocha .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--catppuccin-mocha .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--catppuccin-mocha .dropdown-content{background-color:#181825;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--catppuccin-mocha .dropdown-item{color:#cdd6f4;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--catppuccin-mocha a.dropdown-item,html.theme--catppuccin-mocha button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--catppuccin-mocha a.dropdown-item:hover,html.theme--catppuccin-mocha button.dropdown-item:hover{background-color:#181825;color:#0a0a0a}html.theme--catppuccin-mocha a.dropdown-item.is-active,html.theme--catppuccin-mocha button.dropdown-item.is-active{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--catppuccin-mocha .level{align-items:center;justify-content:space-between}html.theme--catppuccin-mocha .level code{border-radius:.4em}html.theme--catppuccin-mocha .level img{display:inline-block;vertical-align:top}html.theme--catppuccin-mocha .level.is-mobile{display:flex}html.theme--catppuccin-mocha .level.is-mobile .level-left,html.theme--catppuccin-mocha .level.is-mobile .level-right{display:flex}html.theme--catppuccin-mocha .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--catppuccin-mocha .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--catppuccin-mocha .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .level{display:flex}html.theme--catppuccin-mocha .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--catppuccin-mocha .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--catppuccin-mocha .level-item .title,html.theme--catppuccin-mocha .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--catppuccin-mocha .level-left,html.theme--catppuccin-mocha .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .level-left .level-item.is-flexible,html.theme--catppuccin-mocha .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .level-left .level-item:not(:last-child),html.theme--catppuccin-mocha .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--catppuccin-mocha .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .level-left{display:flex}}html.theme--catppuccin-mocha .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .level-right{display:flex}}html.theme--catppuccin-mocha .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--catppuccin-mocha .media .content:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-mocha .media .media{border-top:1px solid rgba(88,91,112,0.5);display:flex;padding-top:.75rem}html.theme--catppuccin-mocha .media .media .content:not(:last-child),html.theme--catppuccin-mocha .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--catppuccin-mocha .media .media .media{padding-top:.5rem}html.theme--catppuccin-mocha .media .media .media+.media{margin-top:.5rem}html.theme--catppuccin-mocha .media+.media{border-top:1px solid rgba(88,91,112,0.5);margin-top:1rem;padding-top:1rem}html.theme--catppuccin-mocha .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--catppuccin-mocha .media-left,html.theme--catppuccin-mocha .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .media-left{margin-right:1rem}html.theme--catppuccin-mocha .media-right{margin-left:1rem}html.theme--catppuccin-mocha .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .media-content{overflow-x:auto}}html.theme--catppuccin-mocha .menu{font-size:1rem}html.theme--catppuccin-mocha .menu.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--catppuccin-mocha .menu.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .menu.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .menu-list{line-height:1.25}html.theme--catppuccin-mocha .menu-list a{border-radius:3px;color:#cdd6f4;display:block;padding:0.5em 0.75em}html.theme--catppuccin-mocha .menu-list a:hover{background-color:#181825;color:#b8c5ef}html.theme--catppuccin-mocha .menu-list a.is-active{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .menu-list li ul{border-left:1px solid #585b70;margin:.75em;padding-left:.75em}html.theme--catppuccin-mocha .menu-label{color:#f7f8fd;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--catppuccin-mocha .menu-label:not(:first-child){margin-top:1em}html.theme--catppuccin-mocha .menu-label:not(:last-child){margin-bottom:1em}html.theme--catppuccin-mocha .message{background-color:#181825;border-radius:.4em;font-size:1rem}html.theme--catppuccin-mocha .message strong{color:currentColor}html.theme--catppuccin-mocha .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--catppuccin-mocha .message.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--catppuccin-mocha .message.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .message.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .message.is-white{background-color:#fff}html.theme--catppuccin-mocha .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .message.is-white .message-body{border-color:#fff}html.theme--catppuccin-mocha .message.is-black{background-color:#fafafa}html.theme--catppuccin-mocha .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .message.is-black .message-body{border-color:#0a0a0a}html.theme--catppuccin-mocha .message.is-light{background-color:#fafafa}html.theme--catppuccin-mocha .message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .message.is-light .message-body{border-color:#f5f5f5}html.theme--catppuccin-mocha .message.is-dark,html.theme--catppuccin-mocha .content kbd.message{background-color:#f9f9fb}html.theme--catppuccin-mocha .message.is-dark .message-header,html.theme--catppuccin-mocha .content kbd.message .message-header{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .message.is-dark .message-body,html.theme--catppuccin-mocha .content kbd.message .message-body{border-color:#313244}html.theme--catppuccin-mocha .message.is-primary,html.theme--catppuccin-mocha .docstring>section>a.message.docs-sourcelink{background-color:#ebf3fe}html.theme--catppuccin-mocha .message.is-primary .message-header,html.theme--catppuccin-mocha .docstring>section>a.message.docs-sourcelink .message-header{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .message.is-primary .message-body,html.theme--catppuccin-mocha .docstring>section>a.message.docs-sourcelink .message-body{border-color:#89b4fa;color:#063c93}html.theme--catppuccin-mocha .message.is-link{background-color:#ebf3fe}html.theme--catppuccin-mocha .message.is-link .message-header{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .message.is-link .message-body{border-color:#89b4fa;color:#063c93}html.theme--catppuccin-mocha .message.is-info{background-color:#effbf9}html.theme--catppuccin-mocha .message.is-info .message-header{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .message.is-info .message-body{border-color:#94e2d5;color:#207466}html.theme--catppuccin-mocha .message.is-success{background-color:#f0faef}html.theme--catppuccin-mocha .message.is-success .message-header{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .message.is-success .message-body{border-color:#a6e3a1;color:#287222}html.theme--catppuccin-mocha .message.is-warning{background-color:#fef8ec}html.theme--catppuccin-mocha .message.is-warning .message-header{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .message.is-warning .message-body{border-color:#f9e2af;color:#8a620a}html.theme--catppuccin-mocha .message.is-danger{background-color:#fdedf1}html.theme--catppuccin-mocha .message.is-danger .message-header{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .message.is-danger .message-body{border-color:#f38ba8;color:#991036}html.theme--catppuccin-mocha .message-header{align-items:center;background-color:#cdd6f4;border-radius:.4em .4em 0 0;color:rgba(0,0,0,0.7);display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--catppuccin-mocha .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--catppuccin-mocha .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--catppuccin-mocha .message-body{border-color:#585b70;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#cdd6f4;padding:1.25em 1.5em}html.theme--catppuccin-mocha .message-body code,html.theme--catppuccin-mocha .message-body pre{background-color:#fff}html.theme--catppuccin-mocha .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--catppuccin-mocha .modal.is-active{display:flex}html.theme--catppuccin-mocha .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--catppuccin-mocha .modal-content,html.theme--catppuccin-mocha .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--catppuccin-mocha .modal-content,html.theme--catppuccin-mocha .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--catppuccin-mocha .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--catppuccin-mocha .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--catppuccin-mocha .modal-card-head,html.theme--catppuccin-mocha .modal-card-foot{align-items:center;background-color:#181825;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--catppuccin-mocha .modal-card-head{border-bottom:1px solid #585b70;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--catppuccin-mocha .modal-card-title{color:#cdd6f4;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--catppuccin-mocha .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #585b70}html.theme--catppuccin-mocha .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--catppuccin-mocha .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#1e1e2e;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--catppuccin-mocha .navbar{background-color:#89b4fa;min-height:4rem;position:relative;z-index:30}html.theme--catppuccin-mocha .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-white .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-white .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-mocha .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--catppuccin-mocha .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-black .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-black .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--catppuccin-mocha .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--catppuccin-mocha .navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-light .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-light .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-mocha .navbar.is-dark,html.theme--catppuccin-mocha .content kbd.navbar{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#262735;color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--catppuccin-mocha .content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-burger,html.theme--catppuccin-mocha .content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-dark .navbar-start>.navbar-item,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end>.navbar-item,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#262735;color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .content kbd.navbar .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-dark .navbar-end .navbar-link::after,html.theme--catppuccin-mocha .content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-mocha .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#262735;color:#fff}html.theme--catppuccin-mocha .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#313244;color:#fff}}html.theme--catppuccin-mocha .navbar.is-primary,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-burger,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-primary .navbar-start>.navbar-item,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end>.navbar-item,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-primary .navbar-end .navbar-link::after,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#89b4fa;color:#fff}}html.theme--catppuccin-mocha .navbar.is-link{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-link .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-link .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#89b4fa;color:#fff}}html.theme--catppuccin-mocha .navbar.is-info{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#80ddcd;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-info .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-info .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#80ddcd;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-info .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#80ddcd;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#94e2d5;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-mocha .navbar.is-success{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#93dd8d;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-success .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-success .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#93dd8d;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-success .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#93dd8d;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-mocha .navbar.is-warning{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#f7d997;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-warning .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#f7d997;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f7d997;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#f9e2af;color:rgba(0,0,0,0.7)}}html.theme--catppuccin-mocha .navbar.is-danger{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand>.navbar-item,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#f17497;color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar.is-danger .navbar-start>.navbar-item,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end>.navbar-item,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#f17497;color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-start .navbar-link::after,html.theme--catppuccin-mocha .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f17497;color:#fff}html.theme--catppuccin-mocha .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#f38ba8;color:#fff}}html.theme--catppuccin-mocha .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--catppuccin-mocha .navbar.has-shadow{box-shadow:0 2px 0 0 #181825}html.theme--catppuccin-mocha .navbar.is-fixed-bottom,html.theme--catppuccin-mocha .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-mocha .navbar.is-fixed-bottom{bottom:0}html.theme--catppuccin-mocha .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #181825}html.theme--catppuccin-mocha .navbar.is-fixed-top{top:0}html.theme--catppuccin-mocha html.has-navbar-fixed-top,html.theme--catppuccin-mocha body.has-navbar-fixed-top{padding-top:4rem}html.theme--catppuccin-mocha html.has-navbar-fixed-bottom,html.theme--catppuccin-mocha body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--catppuccin-mocha .navbar-brand,html.theme--catppuccin-mocha .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--catppuccin-mocha .navbar-brand a.navbar-item:focus,html.theme--catppuccin-mocha .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--catppuccin-mocha .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--catppuccin-mocha .navbar-burger{color:#cdd6f4;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--catppuccin-mocha .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--catppuccin-mocha .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--catppuccin-mocha .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--catppuccin-mocha .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--catppuccin-mocha .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--catppuccin-mocha .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--catppuccin-mocha .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--catppuccin-mocha .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--catppuccin-mocha .navbar-menu{display:none}html.theme--catppuccin-mocha .navbar-item,html.theme--catppuccin-mocha .navbar-link{color:#cdd6f4;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--catppuccin-mocha .navbar-item .icon:only-child,html.theme--catppuccin-mocha .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--catppuccin-mocha a.navbar-item,html.theme--catppuccin-mocha .navbar-link{cursor:pointer}html.theme--catppuccin-mocha a.navbar-item:focus,html.theme--catppuccin-mocha a.navbar-item:focus-within,html.theme--catppuccin-mocha a.navbar-item:hover,html.theme--catppuccin-mocha a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar-link:focus,html.theme--catppuccin-mocha .navbar-link:focus-within,html.theme--catppuccin-mocha .navbar-link:hover,html.theme--catppuccin-mocha .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#89b4fa}html.theme--catppuccin-mocha .navbar-item{flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .navbar-item img{max-height:1.75rem}html.theme--catppuccin-mocha .navbar-item.has-dropdown{padding:0}html.theme--catppuccin-mocha .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--catppuccin-mocha .navbar-item.is-tab:focus,html.theme--catppuccin-mocha .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#89b4fa}html.theme--catppuccin-mocha .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#89b4fa;border-bottom-style:solid;border-bottom-width:3px;color:#89b4fa;padding-bottom:calc(0.5rem - 3px)}html.theme--catppuccin-mocha .navbar-content{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--catppuccin-mocha .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--catppuccin-mocha .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--catppuccin-mocha .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--catppuccin-mocha .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .navbar>.container{display:block}html.theme--catppuccin-mocha .navbar-brand .navbar-item,html.theme--catppuccin-mocha .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--catppuccin-mocha .navbar-link::after{display:none}html.theme--catppuccin-mocha .navbar-menu{background-color:#89b4fa;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--catppuccin-mocha .navbar-menu.is-active{display:block}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-touch,html.theme--catppuccin-mocha .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-touch{bottom:0}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .navbar.is-fixed-top-touch{top:0}html.theme--catppuccin-mocha .navbar.is-fixed-top .navbar-menu,html.theme--catppuccin-mocha .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--catppuccin-mocha html.has-navbar-fixed-top-touch,html.theme--catppuccin-mocha body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--catppuccin-mocha html.has-navbar-fixed-bottom-touch,html.theme--catppuccin-mocha body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .navbar,html.theme--catppuccin-mocha .navbar-menu,html.theme--catppuccin-mocha .navbar-start,html.theme--catppuccin-mocha .navbar-end{align-items:stretch;display:flex}html.theme--catppuccin-mocha .navbar{min-height:4rem}html.theme--catppuccin-mocha .navbar.is-spaced{padding:1rem 2rem}html.theme--catppuccin-mocha .navbar.is-spaced .navbar-start,html.theme--catppuccin-mocha .navbar.is-spaced .navbar-end{align-items:center}html.theme--catppuccin-mocha .navbar.is-spaced a.navbar-item,html.theme--catppuccin-mocha .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--catppuccin-mocha .navbar.is-transparent a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-transparent a.navbar-item:hover,html.theme--catppuccin-mocha .navbar.is-transparent a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-link:focus,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-link:hover,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--catppuccin-mocha .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--catppuccin-mocha .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-mocha .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#7f849c}html.theme--catppuccin-mocha .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#89b4fa}html.theme--catppuccin-mocha .navbar-burger{display:none}html.theme--catppuccin-mocha .navbar-item,html.theme--catppuccin-mocha .navbar-link{align-items:center;display:flex}html.theme--catppuccin-mocha .navbar-item.has-dropdown{align-items:stretch}html.theme--catppuccin-mocha .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--catppuccin-mocha .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--catppuccin-mocha .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--catppuccin-mocha .navbar-item.is-active .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--catppuccin-mocha .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--catppuccin-mocha .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--catppuccin-mocha .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--catppuccin-mocha .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--catppuccin-mocha .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--catppuccin-mocha .navbar-dropdown{background-color:#89b4fa;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--catppuccin-mocha .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--catppuccin-mocha .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--catppuccin-mocha .navbar-dropdown a.navbar-item:focus,html.theme--catppuccin-mocha .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#7f849c}html.theme--catppuccin-mocha .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#89b4fa}.navbar.is-spaced html.theme--catppuccin-mocha .navbar-dropdown,html.theme--catppuccin-mocha .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--catppuccin-mocha .navbar-dropdown.is-right{left:auto;right:0}html.theme--catppuccin-mocha .navbar-divider{display:block}html.theme--catppuccin-mocha .navbar>.container .navbar-brand,html.theme--catppuccin-mocha .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--catppuccin-mocha .navbar>.container .navbar-menu,html.theme--catppuccin-mocha .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-desktop,html.theme--catppuccin-mocha .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--catppuccin-mocha .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .navbar.is-fixed-top-desktop{top:0}html.theme--catppuccin-mocha html.has-navbar-fixed-top-desktop,html.theme--catppuccin-mocha body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--catppuccin-mocha html.has-navbar-fixed-bottom-desktop,html.theme--catppuccin-mocha body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--catppuccin-mocha html.has-spaced-navbar-fixed-top,html.theme--catppuccin-mocha body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--catppuccin-mocha html.has-spaced-navbar-fixed-bottom,html.theme--catppuccin-mocha body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--catppuccin-mocha a.navbar-item.is-active,html.theme--catppuccin-mocha .navbar-link.is-active{color:#89b4fa}html.theme--catppuccin-mocha a.navbar-item.is-active:not(:focus):not(:hover),html.theme--catppuccin-mocha .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--catppuccin-mocha .navbar-item.has-dropdown:focus .navbar-link,html.theme--catppuccin-mocha .navbar-item.has-dropdown:hover .navbar-link,html.theme--catppuccin-mocha .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--catppuccin-mocha .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--catppuccin-mocha .pagination{font-size:1rem;margin:-.25rem}html.theme--catppuccin-mocha .pagination.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--catppuccin-mocha .pagination.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .pagination.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .pagination.is-rounded .pagination-previous,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--catppuccin-mocha .pagination.is-rounded .pagination-next,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--catppuccin-mocha .pagination.is-rounded .pagination-link,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--catppuccin-mocha .pagination,html.theme--catppuccin-mocha .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link{border-color:#585b70;color:#89b4fa;min-width:2.5em}html.theme--catppuccin-mocha .pagination-previous:hover,html.theme--catppuccin-mocha .pagination-next:hover,html.theme--catppuccin-mocha .pagination-link:hover{border-color:#6c7086;color:#89dceb}html.theme--catppuccin-mocha .pagination-previous:focus,html.theme--catppuccin-mocha .pagination-next:focus,html.theme--catppuccin-mocha .pagination-link:focus{border-color:#6c7086}html.theme--catppuccin-mocha .pagination-previous:active,html.theme--catppuccin-mocha .pagination-next:active,html.theme--catppuccin-mocha .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--catppuccin-mocha .pagination-previous[disabled],html.theme--catppuccin-mocha .pagination-previous.is-disabled,html.theme--catppuccin-mocha .pagination-next[disabled],html.theme--catppuccin-mocha .pagination-next.is-disabled,html.theme--catppuccin-mocha .pagination-link[disabled],html.theme--catppuccin-mocha .pagination-link.is-disabled{background-color:#585b70;border-color:#585b70;box-shadow:none;color:#f7f8fd;opacity:0.5}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--catppuccin-mocha .pagination-link.is-current{background-color:#89b4fa;border-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .pagination-ellipsis{color:#6c7086;pointer-events:none}html.theme--catppuccin-mocha .pagination-list{flex-wrap:wrap}html.theme--catppuccin-mocha .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .pagination{flex-wrap:wrap}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--catppuccin-mocha .pagination-previous{order:2}html.theme--catppuccin-mocha .pagination-next{order:3}html.theme--catppuccin-mocha .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--catppuccin-mocha .pagination.is-centered .pagination-previous{order:1}html.theme--catppuccin-mocha .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--catppuccin-mocha .pagination.is-centered .pagination-next{order:3}html.theme--catppuccin-mocha .pagination.is-right .pagination-previous{order:1}html.theme--catppuccin-mocha .pagination.is-right .pagination-next{order:2}html.theme--catppuccin-mocha .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--catppuccin-mocha .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--catppuccin-mocha .panel:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-mocha .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--catppuccin-mocha .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--catppuccin-mocha .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--catppuccin-mocha .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--catppuccin-mocha .panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}html.theme--catppuccin-mocha .panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}html.theme--catppuccin-mocha .panel.is-dark .panel-heading,html.theme--catppuccin-mocha .content kbd.panel .panel-heading{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .panel.is-dark .panel-tabs a.is-active,html.theme--catppuccin-mocha .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#313244}html.theme--catppuccin-mocha .panel.is-dark .panel-block.is-active .panel-icon,html.theme--catppuccin-mocha .content kbd.panel .panel-block.is-active .panel-icon{color:#313244}html.theme--catppuccin-mocha .panel.is-primary .panel-heading,html.theme--catppuccin-mocha .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .panel.is-primary .panel-tabs a.is-active,html.theme--catppuccin-mocha .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#89b4fa}html.theme--catppuccin-mocha .panel.is-primary .panel-block.is-active .panel-icon,html.theme--catppuccin-mocha .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#89b4fa}html.theme--catppuccin-mocha .panel.is-link .panel-heading{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .panel.is-link .panel-tabs a.is-active{border-bottom-color:#89b4fa}html.theme--catppuccin-mocha .panel.is-link .panel-block.is-active .panel-icon{color:#89b4fa}html.theme--catppuccin-mocha .panel.is-info .panel-heading{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .panel.is-info .panel-tabs a.is-active{border-bottom-color:#94e2d5}html.theme--catppuccin-mocha .panel.is-info .panel-block.is-active .panel-icon{color:#94e2d5}html.theme--catppuccin-mocha .panel.is-success .panel-heading{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .panel.is-success .panel-tabs a.is-active{border-bottom-color:#a6e3a1}html.theme--catppuccin-mocha .panel.is-success .panel-block.is-active .panel-icon{color:#a6e3a1}html.theme--catppuccin-mocha .panel.is-warning .panel-heading{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#f9e2af}html.theme--catppuccin-mocha .panel.is-warning .panel-block.is-active .panel-icon{color:#f9e2af}html.theme--catppuccin-mocha .panel.is-danger .panel-heading{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#f38ba8}html.theme--catppuccin-mocha .panel.is-danger .panel-block.is-active .panel-icon{color:#f38ba8}html.theme--catppuccin-mocha .panel-tabs:not(:last-child),html.theme--catppuccin-mocha .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--catppuccin-mocha .panel-heading{background-color:#45475a;border-radius:8px 8px 0 0;color:#b8c5ef;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--catppuccin-mocha .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--catppuccin-mocha .panel-tabs a{border-bottom:1px solid #585b70;margin-bottom:-1px;padding:0.5em}html.theme--catppuccin-mocha .panel-tabs a.is-active{border-bottom-color:#45475a;color:#71a4f9}html.theme--catppuccin-mocha .panel-list a{color:#cdd6f4}html.theme--catppuccin-mocha .panel-list a:hover{color:#89b4fa}html.theme--catppuccin-mocha .panel-block{align-items:center;color:#b8c5ef;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--catppuccin-mocha .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--catppuccin-mocha .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--catppuccin-mocha .panel-block.is-wrapped{flex-wrap:wrap}html.theme--catppuccin-mocha .panel-block.is-active{border-left-color:#89b4fa;color:#71a4f9}html.theme--catppuccin-mocha .panel-block.is-active .panel-icon{color:#89b4fa}html.theme--catppuccin-mocha .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--catppuccin-mocha a.panel-block,html.theme--catppuccin-mocha label.panel-block{cursor:pointer}html.theme--catppuccin-mocha a.panel-block:hover,html.theme--catppuccin-mocha label.panel-block:hover{background-color:#181825}html.theme--catppuccin-mocha .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#f7f8fd;margin-right:.75em}html.theme--catppuccin-mocha .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--catppuccin-mocha .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--catppuccin-mocha .tabs a{align-items:center;border-bottom-color:#585b70;border-bottom-style:solid;border-bottom-width:1px;color:#cdd6f4;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--catppuccin-mocha .tabs a:hover{border-bottom-color:#b8c5ef;color:#b8c5ef}html.theme--catppuccin-mocha .tabs li{display:block}html.theme--catppuccin-mocha .tabs li.is-active a{border-bottom-color:#89b4fa;color:#89b4fa}html.theme--catppuccin-mocha .tabs ul{align-items:center;border-bottom-color:#585b70;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--catppuccin-mocha .tabs ul.is-left{padding-right:0.75em}html.theme--catppuccin-mocha .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--catppuccin-mocha .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--catppuccin-mocha .tabs .icon:first-child{margin-right:.5em}html.theme--catppuccin-mocha .tabs .icon:last-child{margin-left:.5em}html.theme--catppuccin-mocha .tabs.is-centered ul{justify-content:center}html.theme--catppuccin-mocha .tabs.is-right ul{justify-content:flex-end}html.theme--catppuccin-mocha .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--catppuccin-mocha .tabs.is-boxed a:hover{background-color:#181825;border-bottom-color:#585b70}html.theme--catppuccin-mocha .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#585b70;border-bottom-color:rgba(0,0,0,0) !important}html.theme--catppuccin-mocha .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--catppuccin-mocha .tabs.is-toggle a{border-color:#585b70;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--catppuccin-mocha .tabs.is-toggle a:hover{background-color:#181825;border-color:#6c7086;z-index:2}html.theme--catppuccin-mocha .tabs.is-toggle li+li{margin-left:-1px}html.theme--catppuccin-mocha .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--catppuccin-mocha .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--catppuccin-mocha .tabs.is-toggle li.is-active a{background-color:#89b4fa;border-color:#89b4fa;color:#fff;z-index:1}html.theme--catppuccin-mocha .tabs.is-toggle ul{border-bottom:none}html.theme--catppuccin-mocha .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--catppuccin-mocha .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--catppuccin-mocha .tabs.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--catppuccin-mocha .tabs.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .tabs.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--catppuccin-mocha .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .column.is-narrow-mobile{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-mobile{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-mobile{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-mobile{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-mobile{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-mobile{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-mobile{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-mobile{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-mobile{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-mobile{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-mobile{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-mobile{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-mobile{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .column.is-narrow,html.theme--catppuccin-mocha .column.is-narrow-tablet{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full,html.theme--catppuccin-mocha .column.is-full-tablet{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters,html.theme--catppuccin-mocha .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds,html.theme--catppuccin-mocha .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half,html.theme--catppuccin-mocha .column.is-half-tablet{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third,html.theme--catppuccin-mocha .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter,html.theme--catppuccin-mocha .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth,html.theme--catppuccin-mocha .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths,html.theme--catppuccin-mocha .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths,html.theme--catppuccin-mocha .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths,html.theme--catppuccin-mocha .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters,html.theme--catppuccin-mocha .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds,html.theme--catppuccin-mocha .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half,html.theme--catppuccin-mocha .column.is-offset-half-tablet{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third,html.theme--catppuccin-mocha .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter,html.theme--catppuccin-mocha .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth,html.theme--catppuccin-mocha .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths,html.theme--catppuccin-mocha .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths,html.theme--catppuccin-mocha .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths,html.theme--catppuccin-mocha .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--catppuccin-mocha .column.is-0,html.theme--catppuccin-mocha .column.is-0-tablet{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0,html.theme--catppuccin-mocha .column.is-offset-0-tablet{margin-left:0%}html.theme--catppuccin-mocha .column.is-1,html.theme--catppuccin-mocha .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1,html.theme--catppuccin-mocha .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2,html.theme--catppuccin-mocha .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2,html.theme--catppuccin-mocha .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3,html.theme--catppuccin-mocha .column.is-3-tablet{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3,html.theme--catppuccin-mocha .column.is-offset-3-tablet{margin-left:25%}html.theme--catppuccin-mocha .column.is-4,html.theme--catppuccin-mocha .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4,html.theme--catppuccin-mocha .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5,html.theme--catppuccin-mocha .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5,html.theme--catppuccin-mocha .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6,html.theme--catppuccin-mocha .column.is-6-tablet{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6,html.theme--catppuccin-mocha .column.is-offset-6-tablet{margin-left:50%}html.theme--catppuccin-mocha .column.is-7,html.theme--catppuccin-mocha .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7,html.theme--catppuccin-mocha .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8,html.theme--catppuccin-mocha .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8,html.theme--catppuccin-mocha .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9,html.theme--catppuccin-mocha .column.is-9-tablet{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9,html.theme--catppuccin-mocha .column.is-offset-9-tablet{margin-left:75%}html.theme--catppuccin-mocha .column.is-10,html.theme--catppuccin-mocha .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10,html.theme--catppuccin-mocha .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11,html.theme--catppuccin-mocha .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11,html.theme--catppuccin-mocha .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12,html.theme--catppuccin-mocha .column.is-12-tablet{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12,html.theme--catppuccin-mocha .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .column.is-narrow-touch{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-touch{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-touch{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-touch{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-touch{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-touch{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-touch{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-touch{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-touch{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-touch{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-touch{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-touch{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-touch{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-touch{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-touch{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-touch{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-touch{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-touch{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-touch{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-touch{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-touch{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-touch{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-touch{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-touch{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-touch{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-touch{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-touch{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .column.is-narrow-desktop{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-desktop{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-desktop{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-desktop{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-desktop{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-desktop{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-desktop{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-desktop{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-desktop{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-desktop{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-desktop{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-desktop{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-desktop{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .column.is-narrow-widescreen{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-widescreen{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-widescreen{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-widescreen{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-widescreen{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-widescreen{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-widescreen{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-widescreen{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-widescreen{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-widescreen{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-widescreen{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-widescreen{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-widescreen{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .column.is-narrow-fullhd{flex:none;width:unset}html.theme--catppuccin-mocha .column.is-full-fullhd{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--catppuccin-mocha .column.is-half-fullhd{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--catppuccin-mocha .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--catppuccin-mocha .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--catppuccin-mocha .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--catppuccin-mocha .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--catppuccin-mocha .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--catppuccin-mocha .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--catppuccin-mocha .column.is-offset-half-fullhd{margin-left:50%}html.theme--catppuccin-mocha .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--catppuccin-mocha .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--catppuccin-mocha .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--catppuccin-mocha .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--catppuccin-mocha .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--catppuccin-mocha .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--catppuccin-mocha .column.is-0-fullhd{flex:none;width:0%}html.theme--catppuccin-mocha .column.is-offset-0-fullhd{margin-left:0%}html.theme--catppuccin-mocha .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--catppuccin-mocha .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--catppuccin-mocha .column.is-3-fullhd{flex:none;width:25%}html.theme--catppuccin-mocha .column.is-offset-3-fullhd{margin-left:25%}html.theme--catppuccin-mocha .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--catppuccin-mocha .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--catppuccin-mocha .column.is-6-fullhd{flex:none;width:50%}html.theme--catppuccin-mocha .column.is-offset-6-fullhd{margin-left:50%}html.theme--catppuccin-mocha .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--catppuccin-mocha .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--catppuccin-mocha .column.is-9-fullhd{flex:none;width:75%}html.theme--catppuccin-mocha .column.is-offset-9-fullhd{margin-left:75%}html.theme--catppuccin-mocha .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--catppuccin-mocha .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--catppuccin-mocha .column.is-12-fullhd{flex:none;width:100%}html.theme--catppuccin-mocha .column.is-offset-12-fullhd{margin-left:100%}}html.theme--catppuccin-mocha .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-mocha .columns:last-child{margin-bottom:-.75rem}html.theme--catppuccin-mocha .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--catppuccin-mocha .columns.is-centered{justify-content:center}html.theme--catppuccin-mocha .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--catppuccin-mocha .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--catppuccin-mocha .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--catppuccin-mocha .columns.is-gapless:last-child{margin-bottom:0}html.theme--catppuccin-mocha .columns.is-mobile{display:flex}html.theme--catppuccin-mocha .columns.is-multiline{flex-wrap:wrap}html.theme--catppuccin-mocha .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-desktop{display:flex}}html.theme--catppuccin-mocha .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--catppuccin-mocha .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--catppuccin-mocha .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--catppuccin-mocha .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--catppuccin-mocha .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--catppuccin-mocha .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--catppuccin-mocha .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--catppuccin-mocha .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--catppuccin-mocha .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--catppuccin-mocha .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--catppuccin-mocha .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--catppuccin-mocha .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--catppuccin-mocha .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--catppuccin-mocha .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--catppuccin-mocha .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--catppuccin-mocha .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--catppuccin-mocha .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--catppuccin-mocha .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--catppuccin-mocha .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--catppuccin-mocha .tile.is-child{margin:0 !important}html.theme--catppuccin-mocha .tile.is-parent{padding:.75rem}html.theme--catppuccin-mocha .tile.is-vertical{flex-direction:column}html.theme--catppuccin-mocha .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .tile:not(.is-child){display:flex}html.theme--catppuccin-mocha .tile.is-1{flex:none;width:8.33333337%}html.theme--catppuccin-mocha .tile.is-2{flex:none;width:16.66666674%}html.theme--catppuccin-mocha .tile.is-3{flex:none;width:25%}html.theme--catppuccin-mocha .tile.is-4{flex:none;width:33.33333337%}html.theme--catppuccin-mocha .tile.is-5{flex:none;width:41.66666674%}html.theme--catppuccin-mocha .tile.is-6{flex:none;width:50%}html.theme--catppuccin-mocha .tile.is-7{flex:none;width:58.33333337%}html.theme--catppuccin-mocha .tile.is-8{flex:none;width:66.66666674%}html.theme--catppuccin-mocha .tile.is-9{flex:none;width:75%}html.theme--catppuccin-mocha .tile.is-10{flex:none;width:83.33333337%}html.theme--catppuccin-mocha .tile.is-11{flex:none;width:91.66666674%}html.theme--catppuccin-mocha .tile.is-12{flex:none;width:100%}}html.theme--catppuccin-mocha .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--catppuccin-mocha .hero .navbar{background:none}html.theme--catppuccin-mocha .hero .tabs ul{border-bottom:none}html.theme--catppuccin-mocha .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-white strong{color:inherit}html.theme--catppuccin-mocha .hero.is-white .title{color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--catppuccin-mocha .hero.is-white .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-white .navbar-menu{background-color:#fff}}html.theme--catppuccin-mocha .hero.is-white .navbar-item,html.theme--catppuccin-mocha .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--catppuccin-mocha .hero.is-white a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-white a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-white .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--catppuccin-mocha .hero.is-white .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--catppuccin-mocha .hero.is-white .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-white .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-white .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-white .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--catppuccin-mocha .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--catppuccin-mocha .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-black strong{color:inherit}html.theme--catppuccin-mocha .hero.is-black .title{color:#fff}html.theme--catppuccin-mocha .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-black .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--catppuccin-mocha .hero.is-black .navbar-item,html.theme--catppuccin-mocha .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-black a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-black a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-black .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--catppuccin-mocha .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-black .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--catppuccin-mocha .hero.is-black .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-black .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-black .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-black .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--catppuccin-mocha .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--catppuccin-mocha .hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-light strong{color:inherit}html.theme--catppuccin-mocha .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-mocha .hero.is-light .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-light .navbar-menu{background-color:#f5f5f5}}html.theme--catppuccin-mocha .hero.is-light .navbar-item,html.theme--catppuccin-mocha .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-light a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-light .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-mocha .hero.is-light .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-light .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-light .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-light .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-light .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}html.theme--catppuccin-mocha .hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}html.theme--catppuccin-mocha .hero.is-dark,html.theme--catppuccin-mocha .content kbd.hero{background-color:#313244;color:#fff}html.theme--catppuccin-mocha .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-dark strong,html.theme--catppuccin-mocha .content kbd.hero strong{color:inherit}html.theme--catppuccin-mocha .hero.is-dark .title,html.theme--catppuccin-mocha .content kbd.hero .title{color:#fff}html.theme--catppuccin-mocha .hero.is-dark .subtitle,html.theme--catppuccin-mocha .content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-dark .subtitle a:not(.button),html.theme--catppuccin-mocha .content kbd.hero .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-dark .subtitle strong,html.theme--catppuccin-mocha .content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-dark .navbar-menu,html.theme--catppuccin-mocha .content kbd.hero .navbar-menu{background-color:#313244}}html.theme--catppuccin-mocha .hero.is-dark .navbar-item,html.theme--catppuccin-mocha .content kbd.hero .navbar-item,html.theme--catppuccin-mocha .hero.is-dark .navbar-link,html.theme--catppuccin-mocha .content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-dark a.navbar-item:hover,html.theme--catppuccin-mocha .content kbd.hero a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-dark a.navbar-item.is-active,html.theme--catppuccin-mocha .content kbd.hero a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-dark .navbar-link:hover,html.theme--catppuccin-mocha .content kbd.hero .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-dark .navbar-link.is-active,html.theme--catppuccin-mocha .content kbd.hero .navbar-link.is-active{background-color:#262735;color:#fff}html.theme--catppuccin-mocha .hero.is-dark .tabs a,html.theme--catppuccin-mocha .content kbd.hero .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-dark .tabs a:hover,html.theme--catppuccin-mocha .content kbd.hero .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-dark .tabs li.is-active a,html.theme--catppuccin-mocha .content kbd.hero .tabs li.is-active a{color:#313244 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-dark .tabs.is-boxed a,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-toggle a,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-dark .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-toggle a:hover,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#313244}html.theme--catppuccin-mocha .hero.is-dark.is-bold,html.theme--catppuccin-mocha .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #181c2a 0%, #313244 71%, #3c3856 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-dark.is-bold .navbar-menu,html.theme--catppuccin-mocha .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #181c2a 0%, #313244 71%, #3c3856 100%)}}html.theme--catppuccin-mocha .hero.is-primary,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-primary strong,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--catppuccin-mocha .hero.is-primary .title,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--catppuccin-mocha .hero.is-primary .subtitle,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-primary .subtitle a:not(.button),html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-primary .subtitle strong,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-primary .navbar-menu,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#89b4fa}}html.theme--catppuccin-mocha .hero.is-primary .navbar-item,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--catppuccin-mocha .hero.is-primary .navbar-link,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-primary a.navbar-item:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-primary a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-primary .navbar-link:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-primary .navbar-link.is-active,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .hero.is-primary .tabs a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-primary .tabs a:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-primary .tabs li.is-active a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#89b4fa !important;opacity:1}html.theme--catppuccin-mocha .hero.is-primary .tabs.is-boxed a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-toggle a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-primary .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-toggle a:hover,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .hero.is-primary.is-bold,html.theme--catppuccin-mocha .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #51b0ff 0%, #89b4fa 71%, #9fb3fd 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-primary.is-bold .navbar-menu,html.theme--catppuccin-mocha .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #51b0ff 0%, #89b4fa 71%, #9fb3fd 100%)}}html.theme--catppuccin-mocha .hero.is-link{background-color:#89b4fa;color:#fff}html.theme--catppuccin-mocha .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-link strong{color:inherit}html.theme--catppuccin-mocha .hero.is-link .title{color:#fff}html.theme--catppuccin-mocha .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-link .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-link .navbar-menu{background-color:#89b4fa}}html.theme--catppuccin-mocha .hero.is-link .navbar-item,html.theme--catppuccin-mocha .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-link a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-link a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-link .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-link .navbar-link.is-active{background-color:#71a4f9;color:#fff}html.theme--catppuccin-mocha .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-link .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-link .tabs li.is-active a{color:#89b4fa !important;opacity:1}html.theme--catppuccin-mocha .hero.is-link .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-link .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-link .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-link .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#89b4fa}html.theme--catppuccin-mocha .hero.is-link.is-bold{background-image:linear-gradient(141deg, #51b0ff 0%, #89b4fa 71%, #9fb3fd 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #51b0ff 0%, #89b4fa 71%, #9fb3fd 100%)}}html.theme--catppuccin-mocha .hero.is-info{background-color:#94e2d5;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-info strong{color:inherit}html.theme--catppuccin-mocha .hero.is-info .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-mocha .hero.is-info .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-info .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-info .navbar-menu{background-color:#94e2d5}}html.theme--catppuccin-mocha .hero.is-info .navbar-item,html.theme--catppuccin-mocha .hero.is-info .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-info a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-info .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-info .navbar-link.is-active{background-color:#80ddcd;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-mocha .hero.is-info .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-info .tabs li.is-active a{color:#94e2d5 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-info .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-info .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-info .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-info .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-info .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#94e2d5}html.theme--catppuccin-mocha .hero.is-info.is-bold{background-image:linear-gradient(141deg, #63e0b6 0%, #94e2d5 71%, #a5eaea 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #63e0b6 0%, #94e2d5 71%, #a5eaea 100%)}}html.theme--catppuccin-mocha .hero.is-success{background-color:#a6e3a1;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-success strong{color:inherit}html.theme--catppuccin-mocha .hero.is-success .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-mocha .hero.is-success .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-success .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-success .navbar-menu{background-color:#a6e3a1}}html.theme--catppuccin-mocha .hero.is-success .navbar-item,html.theme--catppuccin-mocha .hero.is-success .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-success a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-success .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-success .navbar-link.is-active{background-color:#93dd8d;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-mocha .hero.is-success .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-success .tabs li.is-active a{color:#a6e3a1 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-success .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-success .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-success .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-success .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-success .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#a6e3a1}html.theme--catppuccin-mocha .hero.is-success.is-bold{background-image:linear-gradient(141deg, #8ce071 0%, #a6e3a1 71%, #b2ebb7 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #8ce071 0%, #a6e3a1 71%, #b2ebb7 100%)}}html.theme--catppuccin-mocha .hero.is-warning{background-color:#f9e2af;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-warning strong{color:inherit}html.theme--catppuccin-mocha .hero.is-warning .title{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}html.theme--catppuccin-mocha .hero.is-warning .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-warning .navbar-menu{background-color:#f9e2af}}html.theme--catppuccin-mocha .hero.is-warning .navbar-item,html.theme--catppuccin-mocha .hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-warning a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-warning .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-warning .navbar-link.is-active{background-color:#f7d997;color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--catppuccin-mocha .hero.is-warning .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-warning .tabs li.is-active a{color:#f9e2af !important;opacity:1}html.theme--catppuccin-mocha .hero.is-warning .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--catppuccin-mocha .hero.is-warning .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f9e2af}html.theme--catppuccin-mocha .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #fcbd79 0%, #f9e2af 71%, #fcf4c5 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #fcbd79 0%, #f9e2af 71%, #fcf4c5 100%)}}html.theme--catppuccin-mocha .hero.is-danger{background-color:#f38ba8;color:#fff}html.theme--catppuccin-mocha .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--catppuccin-mocha .hero.is-danger strong{color:inherit}html.theme--catppuccin-mocha .hero.is-danger .title{color:#fff}html.theme--catppuccin-mocha .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--catppuccin-mocha .hero.is-danger .subtitle a:not(.button),html.theme--catppuccin-mocha .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .hero.is-danger .navbar-menu{background-color:#f38ba8}}html.theme--catppuccin-mocha .hero.is-danger .navbar-item,html.theme--catppuccin-mocha .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--catppuccin-mocha .hero.is-danger a.navbar-item:hover,html.theme--catppuccin-mocha .hero.is-danger a.navbar-item.is-active,html.theme--catppuccin-mocha .hero.is-danger .navbar-link:hover,html.theme--catppuccin-mocha .hero.is-danger .navbar-link.is-active{background-color:#f17497;color:#fff}html.theme--catppuccin-mocha .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--catppuccin-mocha .hero.is-danger .tabs a:hover{opacity:1}html.theme--catppuccin-mocha .hero.is-danger .tabs li.is-active a{color:#f38ba8 !important;opacity:1}html.theme--catppuccin-mocha .hero.is-danger .tabs.is-boxed a,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--catppuccin-mocha .hero.is-danger .tabs.is-boxed a:hover,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--catppuccin-mocha .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--catppuccin-mocha .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#f38ba8}html.theme--catppuccin-mocha .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #f7549d 0%, #f38ba8 71%, #f8a0a9 100%)}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #f7549d 0%, #f38ba8 71%, #f8a0a9 100%)}}html.theme--catppuccin-mocha .hero.is-small .hero-body,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--catppuccin-mocha .hero.is-halfheight .hero-body,html.theme--catppuccin-mocha .hero.is-fullheight .hero-body,html.theme--catppuccin-mocha .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--catppuccin-mocha .hero.is-halfheight .hero-body>.container,html.theme--catppuccin-mocha .hero.is-fullheight .hero-body>.container,html.theme--catppuccin-mocha .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--catppuccin-mocha .hero.is-halfheight{min-height:50vh}html.theme--catppuccin-mocha .hero.is-fullheight{min-height:100vh}html.theme--catppuccin-mocha .hero-video{overflow:hidden}html.theme--catppuccin-mocha .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--catppuccin-mocha .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero-video{display:none}}html.theme--catppuccin-mocha .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--catppuccin-mocha .hero-buttons .button{display:flex}html.theme--catppuccin-mocha .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .hero-buttons{display:flex;justify-content:center}html.theme--catppuccin-mocha .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--catppuccin-mocha .hero-head,html.theme--catppuccin-mocha .hero-foot{flex-grow:0;flex-shrink:0}html.theme--catppuccin-mocha .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--catppuccin-mocha .hero-body{padding:3rem 3rem}}html.theme--catppuccin-mocha .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha .section{padding:3rem 3rem}html.theme--catppuccin-mocha .section.is-medium{padding:9rem 4.5rem}html.theme--catppuccin-mocha .section.is-large{padding:18rem 6rem}}html.theme--catppuccin-mocha .footer{background-color:#181825;padding:3rem 1.5rem 6rem}html.theme--catppuccin-mocha h1 .docs-heading-anchor,html.theme--catppuccin-mocha h1 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h1 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h2 .docs-heading-anchor,html.theme--catppuccin-mocha h2 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h2 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h3 .docs-heading-anchor,html.theme--catppuccin-mocha h3 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h3 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h4 .docs-heading-anchor,html.theme--catppuccin-mocha h4 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h4 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h5 .docs-heading-anchor,html.theme--catppuccin-mocha h5 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h5 .docs-heading-anchor:visited,html.theme--catppuccin-mocha h6 .docs-heading-anchor,html.theme--catppuccin-mocha h6 .docs-heading-anchor:hover,html.theme--catppuccin-mocha h6 .docs-heading-anchor:visited{color:#cdd6f4}html.theme--catppuccin-mocha h1 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h2 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h3 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h4 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h5 .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--catppuccin-mocha h1 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h2 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h3 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h4 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h5 .docs-heading-anchor-permalink::before,html.theme--catppuccin-mocha h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--catppuccin-mocha h1:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h2:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h3:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h4:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h5:hover .docs-heading-anchor-permalink,html.theme--catppuccin-mocha h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--catppuccin-mocha .docs-light-only{display:none !important}html.theme--catppuccin-mocha pre{position:relative;overflow:hidden}html.theme--catppuccin-mocha pre code,html.theme--catppuccin-mocha pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--catppuccin-mocha pre code:first-of-type,html.theme--catppuccin-mocha pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--catppuccin-mocha pre code:last-of-type,html.theme--catppuccin-mocha pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--catppuccin-mocha pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#cdd6f4;cursor:pointer;text-align:center}html.theme--catppuccin-mocha pre .copy-button:focus,html.theme--catppuccin-mocha pre .copy-button:hover{opacity:1;background:rgba(205,214,244,0.1);color:#89b4fa}html.theme--catppuccin-mocha pre .copy-button.success{color:#a6e3a1;opacity:1}html.theme--catppuccin-mocha pre .copy-button.error{color:#f38ba8;opacity:1}html.theme--catppuccin-mocha pre:hover .copy-button{opacity:1}html.theme--catppuccin-mocha .admonition{background-color:#181825;border-style:solid;border-width:2px;border-color:#bac2de;border-radius:4px;font-size:1rem}html.theme--catppuccin-mocha .admonition strong{color:currentColor}html.theme--catppuccin-mocha .admonition.is-small,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--catppuccin-mocha .admonition.is-medium{font-size:1.25rem}html.theme--catppuccin-mocha .admonition.is-large{font-size:1.5rem}html.theme--catppuccin-mocha .admonition.is-default{background-color:#181825;border-color:#bac2de}html.theme--catppuccin-mocha .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#bac2de}html.theme--catppuccin-mocha .admonition.is-default>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-info{background-color:#181825;border-color:#94e2d5}html.theme--catppuccin-mocha .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#94e2d5}html.theme--catppuccin-mocha .admonition.is-info>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-success{background-color:#181825;border-color:#a6e3a1}html.theme--catppuccin-mocha .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#a6e3a1}html.theme--catppuccin-mocha .admonition.is-success>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-warning{background-color:#181825;border-color:#f9e2af}html.theme--catppuccin-mocha .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#f9e2af}html.theme--catppuccin-mocha .admonition.is-warning>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-danger{background-color:#181825;border-color:#f38ba8}html.theme--catppuccin-mocha .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#f38ba8}html.theme--catppuccin-mocha .admonition.is-danger>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-compat{background-color:#181825;border-color:#89dceb}html.theme--catppuccin-mocha .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#89dceb}html.theme--catppuccin-mocha .admonition.is-compat>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition.is-todo{background-color:#181825;border-color:#cba6f7}html.theme--catppuccin-mocha .admonition.is-todo>.admonition-header{background-color:rgba(0,0,0,0);color:#cba6f7}html.theme--catppuccin-mocha .admonition.is-todo>.admonition-body{color:#cdd6f4}html.theme--catppuccin-mocha .admonition-header{color:#bac2de;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--catppuccin-mocha .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--catppuccin-mocha details.admonition.is-details>.admonition-header{list-style:none}html.theme--catppuccin-mocha details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--catppuccin-mocha details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--catppuccin-mocha .admonition-body{color:#cdd6f4;padding:0.5rem .75rem}html.theme--catppuccin-mocha .admonition-body pre{background-color:#181825}html.theme--catppuccin-mocha .admonition-body code{background-color:#181825}html.theme--catppuccin-mocha .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #585b70;border-radius:4px;box-shadow:none;max-width:100%}html.theme--catppuccin-mocha .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#181825;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #585b70;overflow:auto}html.theme--catppuccin-mocha .docstring>header code{background-color:transparent}html.theme--catppuccin-mocha .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--catppuccin-mocha .docstring>header .docstring-binding{margin-right:0.3em}html.theme--catppuccin-mocha .docstring>header .docstring-category{margin-left:0.3em}html.theme--catppuccin-mocha .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #585b70}html.theme--catppuccin-mocha .docstring>section:last-child{border-bottom:none}html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--catppuccin-mocha .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-mocha .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--catppuccin-mocha .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--catppuccin-mocha .documenter-example-output{background-color:#1e1e2e}html.theme--catppuccin-mocha .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#181825;color:#cdd6f4;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--catppuccin-mocha .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--catppuccin-mocha .outdated-warning-overlay a{color:#89b4fa}html.theme--catppuccin-mocha .outdated-warning-overlay a:hover{color:#89dceb}html.theme--catppuccin-mocha .content pre{border:2px solid #585b70;border-radius:4px}html.theme--catppuccin-mocha .content code{font-weight:inherit}html.theme--catppuccin-mocha .content a code{color:#89b4fa}html.theme--catppuccin-mocha .content a:hover code{color:#89dceb}html.theme--catppuccin-mocha .content h1 code,html.theme--catppuccin-mocha .content h2 code,html.theme--catppuccin-mocha .content h3 code,html.theme--catppuccin-mocha .content h4 code,html.theme--catppuccin-mocha .content h5 code,html.theme--catppuccin-mocha .content h6 code{color:#cdd6f4}html.theme--catppuccin-mocha .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--catppuccin-mocha .content blockquote>ul:first-child,html.theme--catppuccin-mocha .content blockquote>ol:first-child,html.theme--catppuccin-mocha .content .admonition-body>ul:first-child,html.theme--catppuccin-mocha .content .admonition-body>ol:first-child{margin-top:0}html.theme--catppuccin-mocha pre,html.theme--catppuccin-mocha code{font-variant-ligatures:no-contextual}html.theme--catppuccin-mocha .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--catppuccin-mocha .breadcrumb a.is-disabled,html.theme--catppuccin-mocha .breadcrumb a.is-disabled:hover{color:#b8c5ef}html.theme--catppuccin-mocha .hljs{background:initial !important}html.theme--catppuccin-mocha .katex .katex-mathml{top:0;right:0}html.theme--catppuccin-mocha .katex-display,html.theme--catppuccin-mocha mjx-container,html.theme--catppuccin-mocha .MathJax_Display{margin:0.5em 0 !important}html.theme--catppuccin-mocha html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--catppuccin-mocha li.no-marker{list-style:none}html.theme--catppuccin-mocha #documenter .docs-main>article{overflow-wrap:break-word}html.theme--catppuccin-mocha #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-main{width:100%}html.theme--catppuccin-mocha #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--catppuccin-mocha #documenter .docs-main>header,html.theme--catppuccin-mocha #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar{background-color:#1e1e2e;border-bottom:1px solid #585b70;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--catppuccin-mocha #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--catppuccin-mocha #documenter .docs-main section.footnotes{border-top:1px solid #585b70}html.theme--catppuccin-mocha #documenter .docs-main section.footnotes li .tag:first-child,html.theme--catppuccin-mocha #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--catppuccin-mocha #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--catppuccin-mocha .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #585b70;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--catppuccin-mocha #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--catppuccin-mocha #documenter .docs-sidebar{display:flex;flex-direction:column;color:#cdd6f4;background-color:#181825;border-right:1px solid #585b70;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--catppuccin-mocha #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha #documenter .docs-sidebar{left:0;top:0}}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-package-name a,html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-package-name a:hover{color:#cdd6f4}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #585b70;display:none;padding:0.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #585b70;padding-bottom:1.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #585b70}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#cdd6f4;background:#181825}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#cdd6f4;background-color:#202031}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #585b70;border-bottom:1px solid #585b70;background-color:#11111b}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#11111b;color:#cdd6f4}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#202031;color:#cdd6f4}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #585b70}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--catppuccin-mocha #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#28283e}html.theme--catppuccin-mocha #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#383856}}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--catppuccin-mocha #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--catppuccin-mocha #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#28283e}html.theme--catppuccin-mocha #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#383856}}html.theme--catppuccin-mocha kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--catppuccin-mocha .search-min-width-50{min-width:50%}html.theme--catppuccin-mocha .search-min-height-100{min-height:100%}html.theme--catppuccin-mocha .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--catppuccin-mocha .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-mocha .search-result-link:hover,html.theme--catppuccin-mocha .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--catppuccin-mocha .search-result-link .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-mocha .property-search-result-badge,html.theme--catppuccin-mocha .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--catppuccin-mocha .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link:hover .search-filter,html.theme--catppuccin-mocha .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--catppuccin-mocha .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--catppuccin-mocha .search-filter:hover,html.theme--catppuccin-mocha .search-filter:focus{color:#333}html.theme--catppuccin-mocha .search-filter-selected{color:#313244;background-color:#b4befe}html.theme--catppuccin-mocha .search-filter-selected:hover,html.theme--catppuccin-mocha .search-filter-selected:focus{color:#313244}html.theme--catppuccin-mocha .search-result-highlight{background-color:#ffdd57;color:black}html.theme--catppuccin-mocha .search-divider{border-bottom:1px solid #585b70}html.theme--catppuccin-mocha .search-result-title{width:85%;color:#f5f5f5}html.theme--catppuccin-mocha .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--catppuccin-mocha #search-modal .modal-card-body::-webkit-scrollbar,html.theme--catppuccin-mocha #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--catppuccin-mocha #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--catppuccin-mocha #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--catppuccin-mocha #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--catppuccin-mocha #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--catppuccin-mocha .w-100{width:100%}html.theme--catppuccin-mocha .gap-2{gap:0.5rem}html.theme--catppuccin-mocha .gap-4{gap:1rem}html.theme--catppuccin-mocha .gap-8{gap:2rem}html.theme--catppuccin-mocha{background-color:#1e1e2e;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--catppuccin-mocha a{transition:all 200ms ease}html.theme--catppuccin-mocha .label{color:#cdd6f4}html.theme--catppuccin-mocha .button,html.theme--catppuccin-mocha .control.has-icons-left .icon,html.theme--catppuccin-mocha .control.has-icons-right .icon,html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha .pagination-ellipsis,html.theme--catppuccin-mocha .pagination-link,html.theme--catppuccin-mocha .pagination-next,html.theme--catppuccin-mocha .pagination-previous,html.theme--catppuccin-mocha .select,html.theme--catppuccin-mocha .select select,html.theme--catppuccin-mocha .textarea{height:2.5em;color:#cdd6f4}html.theme--catppuccin-mocha .input,html.theme--catppuccin-mocha #documenter .docs-sidebar form.docs-search>input,html.theme--catppuccin-mocha .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em;color:#cdd6f4}html.theme--catppuccin-mocha .select:after,html.theme--catppuccin-mocha .select select{border-width:1px}html.theme--catppuccin-mocha .menu-list a{transition:all 300ms ease}html.theme--catppuccin-mocha .modal-card-foot,html.theme--catppuccin-mocha .modal-card-head{border-color:#585b70}html.theme--catppuccin-mocha .navbar{border-radius:.4em}html.theme--catppuccin-mocha .navbar.is-transparent{background:none}html.theme--catppuccin-mocha .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--catppuccin-mocha .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#89b4fa}@media screen and (max-width: 1055px){html.theme--catppuccin-mocha .navbar .navbar-menu{background-color:#89b4fa;border-radius:0 0 .4em .4em}}html.theme--catppuccin-mocha .docstring>section>a.docs-sourcelink:not(body){color:#313244}html.theme--catppuccin-mocha .tag.is-link:not(body),html.theme--catppuccin-mocha .docstring>section>a.is-link.docs-sourcelink:not(body),html.theme--catppuccin-mocha .content kbd.is-link:not(body){color:#313244}html.theme--catppuccin-mocha .ansi span.sgr1{font-weight:bolder}html.theme--catppuccin-mocha .ansi span.sgr2{font-weight:lighter}html.theme--catppuccin-mocha .ansi span.sgr3{font-style:italic}html.theme--catppuccin-mocha .ansi span.sgr4{text-decoration:underline}html.theme--catppuccin-mocha .ansi span.sgr7{color:#1e1e2e;background-color:#cdd6f4}html.theme--catppuccin-mocha .ansi span.sgr8{color:transparent}html.theme--catppuccin-mocha .ansi span.sgr8 span{color:transparent}html.theme--catppuccin-mocha .ansi span.sgr9{text-decoration:line-through}html.theme--catppuccin-mocha .ansi span.sgr30{color:#45475a}html.theme--catppuccin-mocha .ansi span.sgr31{color:#f38ba8}html.theme--catppuccin-mocha .ansi span.sgr32{color:#a6e3a1}html.theme--catppuccin-mocha .ansi span.sgr33{color:#f9e2af}html.theme--catppuccin-mocha .ansi span.sgr34{color:#89b4fa}html.theme--catppuccin-mocha .ansi span.sgr35{color:#f5c2e7}html.theme--catppuccin-mocha .ansi span.sgr36{color:#94e2d5}html.theme--catppuccin-mocha .ansi span.sgr37{color:#bac2de}html.theme--catppuccin-mocha .ansi span.sgr40{background-color:#45475a}html.theme--catppuccin-mocha .ansi span.sgr41{background-color:#f38ba8}html.theme--catppuccin-mocha .ansi span.sgr42{background-color:#a6e3a1}html.theme--catppuccin-mocha .ansi span.sgr43{background-color:#f9e2af}html.theme--catppuccin-mocha .ansi span.sgr44{background-color:#89b4fa}html.theme--catppuccin-mocha .ansi span.sgr45{background-color:#f5c2e7}html.theme--catppuccin-mocha .ansi span.sgr46{background-color:#94e2d5}html.theme--catppuccin-mocha .ansi span.sgr47{background-color:#bac2de}html.theme--catppuccin-mocha .ansi span.sgr90{color:#585b70}html.theme--catppuccin-mocha .ansi span.sgr91{color:#f38ba8}html.theme--catppuccin-mocha .ansi span.sgr92{color:#a6e3a1}html.theme--catppuccin-mocha .ansi span.sgr93{color:#f9e2af}html.theme--catppuccin-mocha .ansi span.sgr94{color:#89b4fa}html.theme--catppuccin-mocha .ansi span.sgr95{color:#f5c2e7}html.theme--catppuccin-mocha .ansi span.sgr96{color:#94e2d5}html.theme--catppuccin-mocha .ansi span.sgr97{color:#a6adc8}html.theme--catppuccin-mocha .ansi span.sgr100{background-color:#585b70}html.theme--catppuccin-mocha .ansi span.sgr101{background-color:#f38ba8}html.theme--catppuccin-mocha .ansi span.sgr102{background-color:#a6e3a1}html.theme--catppuccin-mocha .ansi span.sgr103{background-color:#f9e2af}html.theme--catppuccin-mocha .ansi span.sgr104{background-color:#89b4fa}html.theme--catppuccin-mocha .ansi span.sgr105{background-color:#f5c2e7}html.theme--catppuccin-mocha .ansi span.sgr106{background-color:#94e2d5}html.theme--catppuccin-mocha .ansi span.sgr107{background-color:#a6adc8}html.theme--catppuccin-mocha code.language-julia-repl>span.hljs-meta{color:#a6e3a1;font-weight:bolder}html.theme--catppuccin-mocha code .hljs{color:#cdd6f4;background:#1e1e2e}html.theme--catppuccin-mocha code .hljs-keyword{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-built_in{color:#f38ba8}html.theme--catppuccin-mocha code .hljs-type{color:#f9e2af}html.theme--catppuccin-mocha code .hljs-literal{color:#fab387}html.theme--catppuccin-mocha code .hljs-number{color:#fab387}html.theme--catppuccin-mocha code .hljs-operator{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-punctuation{color:#bac2de}html.theme--catppuccin-mocha code .hljs-property{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-regexp{color:#f5c2e7}html.theme--catppuccin-mocha code .hljs-string{color:#a6e3a1}html.theme--catppuccin-mocha code .hljs-char.escape_{color:#a6e3a1}html.theme--catppuccin-mocha code .hljs-subst{color:#a6adc8}html.theme--catppuccin-mocha code .hljs-symbol{color:#f2cdcd}html.theme--catppuccin-mocha code .hljs-variable{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-variable.language_{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-variable.constant_{color:#fab387}html.theme--catppuccin-mocha code .hljs-title{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-title.class_{color:#f9e2af}html.theme--catppuccin-mocha code .hljs-title.function_{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-params{color:#cdd6f4}html.theme--catppuccin-mocha code .hljs-comment{color:#585b70}html.theme--catppuccin-mocha code .hljs-doctag{color:#f38ba8}html.theme--catppuccin-mocha code .hljs-meta{color:#fab387}html.theme--catppuccin-mocha code .hljs-section{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-tag{color:#a6adc8}html.theme--catppuccin-mocha code .hljs-name{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-attr{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-attribute{color:#a6e3a1}html.theme--catppuccin-mocha code .hljs-bullet{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-code{color:#a6e3a1}html.theme--catppuccin-mocha code .hljs-emphasis{color:#f38ba8;font-style:italic}html.theme--catppuccin-mocha code .hljs-strong{color:#f38ba8;font-weight:bold}html.theme--catppuccin-mocha code .hljs-formula{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-link{color:#74c7ec;font-style:italic}html.theme--catppuccin-mocha code .hljs-quote{color:#a6e3a1;font-style:italic}html.theme--catppuccin-mocha code .hljs-selector-tag{color:#f9e2af}html.theme--catppuccin-mocha code .hljs-selector-id{color:#89b4fa}html.theme--catppuccin-mocha code .hljs-selector-class{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-selector-attr{color:#cba6f7}html.theme--catppuccin-mocha code .hljs-selector-pseudo{color:#94e2d5}html.theme--catppuccin-mocha code .hljs-template-tag{color:#f2cdcd}html.theme--catppuccin-mocha code .hljs-template-variable{color:#f2cdcd}html.theme--catppuccin-mocha code .hljs-addition{color:#a6e3a1;background:rgba(166,227,161,0.15)}html.theme--catppuccin-mocha code .hljs-deletion{color:#f38ba8;background:rgba(243,139,168,0.15)}html.theme--catppuccin-mocha .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--catppuccin-mocha .search-result-link:hover,html.theme--catppuccin-mocha .search-result-link:focus{background-color:#313244}html.theme--catppuccin-mocha .search-result-link .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link .search-filter{transition:all 300ms}html.theme--catppuccin-mocha .search-result-link:hover .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link:hover .search-filter,html.theme--catppuccin-mocha .search-result-link:focus .property-search-result-badge,html.theme--catppuccin-mocha .search-result-link:focus .search-filter{color:#313244 !important;background-color:#b4befe !important}html.theme--catppuccin-mocha .search-result-title{color:#cdd6f4}html.theme--catppuccin-mocha .search-result-highlight{background-color:#f38ba8;color:#181825}html.theme--catppuccin-mocha .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--catppuccin-mocha .w-100{width:100%}html.theme--catppuccin-mocha .gap-2{gap:0.5rem}html.theme--catppuccin-mocha .gap-4{gap:1rem} diff --git a/doc/build/assets/themes/documenter-dark.css b/doc/build/assets/themes/documenter-dark.css deleted file mode 100644 index c41c82f..0000000 --- a/doc/build/assets/themes/documenter-dark.css +++ /dev/null @@ -1,7 +0,0 @@ -html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark .file-cta,html.theme--documenter-dark .file-name,html.theme--documenter-dark .select select,html.theme--documenter-dark .textarea,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}html.theme--documenter-dark .pagination-previous:focus,html.theme--documenter-dark .pagination-next:focus,html.theme--documenter-dark .pagination-link:focus,html.theme--documenter-dark .pagination-ellipsis:focus,html.theme--documenter-dark .file-cta:focus,html.theme--documenter-dark .file-name:focus,html.theme--documenter-dark .select select:focus,html.theme--documenter-dark .textarea:focus,html.theme--documenter-dark .input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:focus,html.theme--documenter-dark .button:focus,html.theme--documenter-dark .is-focused.pagination-previous,html.theme--documenter-dark .is-focused.pagination-next,html.theme--documenter-dark .is-focused.pagination-link,html.theme--documenter-dark .is-focused.pagination-ellipsis,html.theme--documenter-dark .is-focused.file-cta,html.theme--documenter-dark .is-focused.file-name,html.theme--documenter-dark .select select.is-focused,html.theme--documenter-dark .is-focused.textarea,html.theme--documenter-dark .is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-focused.button,html.theme--documenter-dark .pagination-previous:active,html.theme--documenter-dark .pagination-next:active,html.theme--documenter-dark .pagination-link:active,html.theme--documenter-dark .pagination-ellipsis:active,html.theme--documenter-dark .file-cta:active,html.theme--documenter-dark .file-name:active,html.theme--documenter-dark .select select:active,html.theme--documenter-dark .textarea:active,html.theme--documenter-dark .input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:active,html.theme--documenter-dark .button:active,html.theme--documenter-dark .is-active.pagination-previous,html.theme--documenter-dark .is-active.pagination-next,html.theme--documenter-dark .is-active.pagination-link,html.theme--documenter-dark .is-active.pagination-ellipsis,html.theme--documenter-dark .is-active.file-cta,html.theme--documenter-dark .is-active.file-name,html.theme--documenter-dark .select select.is-active,html.theme--documenter-dark .is-active.textarea,html.theme--documenter-dark .is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--documenter-dark .is-active.button{outline:none}html.theme--documenter-dark .pagination-previous[disabled],html.theme--documenter-dark .pagination-next[disabled],html.theme--documenter-dark .pagination-link[disabled],html.theme--documenter-dark .pagination-ellipsis[disabled],html.theme--documenter-dark .file-cta[disabled],html.theme--documenter-dark .file-name[disabled],html.theme--documenter-dark .select select[disabled],html.theme--documenter-dark .textarea[disabled],html.theme--documenter-dark .input[disabled],html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--documenter-dark .button[disabled],fieldset[disabled] html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--documenter-dark .pagination-next,html.theme--documenter-dark fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--documenter-dark .pagination-link,html.theme--documenter-dark fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--documenter-dark .file-cta,html.theme--documenter-dark fieldset[disabled] .file-cta,fieldset[disabled] html.theme--documenter-dark .file-name,html.theme--documenter-dark fieldset[disabled] .file-name,fieldset[disabled] html.theme--documenter-dark .select select,fieldset[disabled] html.theme--documenter-dark .textarea,fieldset[disabled] html.theme--documenter-dark .input,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark fieldset[disabled] .select select,html.theme--documenter-dark .select fieldset[disabled] select,html.theme--documenter-dark fieldset[disabled] .textarea,html.theme--documenter-dark fieldset[disabled] .input,html.theme--documenter-dark fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--documenter-dark .button,html.theme--documenter-dark fieldset[disabled] .button{cursor:not-allowed}html.theme--documenter-dark .tabs,html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark .breadcrumb,html.theme--documenter-dark .file,html.theme--documenter-dark .button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--documenter-dark .navbar-link:not(.is-arrowless)::after,html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--documenter-dark .admonition:not(:last-child),html.theme--documenter-dark .tabs:not(:last-child),html.theme--documenter-dark .pagination:not(:last-child),html.theme--documenter-dark .message:not(:last-child),html.theme--documenter-dark .level:not(:last-child),html.theme--documenter-dark .breadcrumb:not(:last-child),html.theme--documenter-dark .block:not(:last-child),html.theme--documenter-dark .title:not(:last-child),html.theme--documenter-dark .subtitle:not(:last-child),html.theme--documenter-dark .table-container:not(:last-child),html.theme--documenter-dark .table:not(:last-child),html.theme--documenter-dark .progress:not(:last-child),html.theme--documenter-dark .notification:not(:last-child),html.theme--documenter-dark .content:not(:last-child),html.theme--documenter-dark .box:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .modal-close,html.theme--documenter-dark .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--documenter-dark .modal-close::before,html.theme--documenter-dark .delete::before,html.theme--documenter-dark .modal-close::after,html.theme--documenter-dark .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--documenter-dark .modal-close::before,html.theme--documenter-dark .delete::before{height:2px;width:50%}html.theme--documenter-dark .modal-close::after,html.theme--documenter-dark .delete::after{height:50%;width:2px}html.theme--documenter-dark .modal-close:hover,html.theme--documenter-dark .delete:hover,html.theme--documenter-dark .modal-close:focus,html.theme--documenter-dark .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--documenter-dark .modal-close:active,html.theme--documenter-dark .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--documenter-dark .is-small.modal-close,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--documenter-dark .is-small.delete,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--documenter-dark .is-medium.modal-close,html.theme--documenter-dark .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--documenter-dark .is-large.modal-close,html.theme--documenter-dark .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--documenter-dark .control.is-loading::after,html.theme--documenter-dark .select.is-loading::after,html.theme--documenter-dark .loader,html.theme--documenter-dark .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #dbdee0;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--documenter-dark .hero-video,html.theme--documenter-dark .modal-background,html.theme--documenter-dark .modal,html.theme--documenter-dark .image.is-square img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--documenter-dark .image.is-square .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--documenter-dark .image.is-1by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--documenter-dark .image.is-1by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--documenter-dark .image.is-5by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--documenter-dark .image.is-5by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--documenter-dark .image.is-4by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--documenter-dark .image.is-4by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--documenter-dark .image.is-3by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--documenter-dark .image.is-3by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--documenter-dark .image.is-5by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--documenter-dark .image.is-5by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--documenter-dark .image.is-16by9 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--documenter-dark .image.is-16by9 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--documenter-dark .image.is-2by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--documenter-dark .image.is-2by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--documenter-dark .image.is-3by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--documenter-dark .image.is-3by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--documenter-dark .image.is-4by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--documenter-dark .image.is-4by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--documenter-dark .image.is-3by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--documenter-dark .image.is-3by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--documenter-dark .image.is-2by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--documenter-dark .image.is-2by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--documenter-dark .image.is-3by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--documenter-dark .image.is-3by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--documenter-dark .image.is-9by16 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--documenter-dark .image.is-9by16 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--documenter-dark .image.is-1by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--documenter-dark .image.is-1by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--documenter-dark .image.is-1by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--documenter-dark .image.is-1by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--documenter-dark .navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#ecf0f1 !important}a.has-text-light:hover,a.has-text-light:focus{color:#cfd9db !important}.has-background-light{background-color:#ecf0f1 !important}.has-text-dark{color:#282f2f !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#111414 !important}.has-background-dark{background-color:#282f2f !important}.has-text-primary{color:#375a7f !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#28415b !important}.has-background-primary{background-color:#375a7f !important}.has-text-primary-light{color:#f1f5f9 !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#cddbe9 !important}.has-background-primary-light{background-color:#f1f5f9 !important}.has-text-primary-dark{color:#4d7eb2 !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#7198c1 !important}.has-background-primary-dark{background-color:#4d7eb2 !important}.has-text-link{color:#1abc9c !important}a.has-text-link:hover,a.has-text-link:focus{color:#148f77 !important}.has-background-link{background-color:#1abc9c !important}.has-text-link-light{color:#edfdf9 !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c0f6ec !important}.has-background-link-light{background-color:#edfdf9 !important}.has-text-link-dark{color:#15987e !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#1bc5a4 !important}.has-background-link-dark{background-color:#15987e !important}.has-text-info{color:#3c5dcd !important}a.has-text-info:hover,a.has-text-info:focus{color:#2c48aa !important}.has-background-info{background-color:#3c5dcd !important}.has-text-info-light{color:#eff2fb !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c6d0f0 !important}.has-background-info-light{background-color:#eff2fb !important}.has-text-info-dark{color:#3253c3 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#5571d3 !important}.has-background-info-dark{background-color:#3253c3 !important}.has-text-success{color:#259a12 !important}a.has-text-success:hover,a.has-text-success:focus{color:#1a6c0d !important}.has-background-success{background-color:#259a12 !important}.has-text-success-light{color:#effded !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c7f8bf !important}.has-background-success-light{background-color:#effded !important}.has-text-success-dark{color:#2ec016 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#3fe524 !important}.has-background-success-dark{background-color:#2ec016 !important}.has-text-warning{color:#f4c72f !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#e4b30c !important}.has-background-warning{background-color:#f4c72f !important}.has-text-warning-light{color:#fefaec !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#fbedbb !important}.has-background-warning-light{background-color:#fefaec !important}.has-text-warning-dark{color:#8c6e07 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#bd940a !important}.has-background-warning-dark{background-color:#8c6e07 !important}.has-text-danger{color:#cb3c33 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#a23029 !important}.has-background-danger{background-color:#cb3c33 !important}.has-text-danger-light{color:#fbefef !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f1c8c6 !important}.has-background-danger-light{background-color:#fbefef !important}.has-text-danger-dark{color:#c03930 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#d35850 !important}.has-background-danger-dark{background-color:#c03930 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#282f2f !important}.has-background-grey-darker{background-color:#282f2f !important}.has-text-grey-dark{color:#343c3d !important}.has-background-grey-dark{background-color:#343c3d !important}.has-text-grey{color:#5e6d6f !important}.has-background-grey{background-color:#5e6d6f !important}.has-text-grey-light{color:#8c9b9d !important}.has-background-grey-light{background-color:#8c9b9d !important}.has-text-grey-lighter{color:#dbdee0 !important}.has-background-grey-lighter{background-color:#dbdee0 !important}.has-text-white-ter{color:#ecf0f1 !important}.has-background-white-ter{background-color:#ecf0f1 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,html.theme--documenter-dark .docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}html.theme--documenter-dark{/*! - Theme: a11y-dark - Author: @ericwbailey - Maintainer: @ericwbailey - - Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css -*/}html.theme--documenter-dark html{background-color:#1f2424;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--documenter-dark article,html.theme--documenter-dark aside,html.theme--documenter-dark figure,html.theme--documenter-dark footer,html.theme--documenter-dark header,html.theme--documenter-dark hgroup,html.theme--documenter-dark section{display:block}html.theme--documenter-dark body,html.theme--documenter-dark button,html.theme--documenter-dark input,html.theme--documenter-dark optgroup,html.theme--documenter-dark select,html.theme--documenter-dark textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--documenter-dark code,html.theme--documenter-dark pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--documenter-dark body{color:#fff;font-size:1em;font-weight:400;line-height:1.5}html.theme--documenter-dark a{color:#1abc9c;cursor:pointer;text-decoration:none}html.theme--documenter-dark a strong{color:currentColor}html.theme--documenter-dark a:hover{color:#1dd2af}html.theme--documenter-dark code{background-color:rgba(255,255,255,0.05);color:#ececec;font-size:.875em;font-weight:normal;padding:.1em}html.theme--documenter-dark hr{background-color:#282f2f;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--documenter-dark img{height:auto;max-width:100%}html.theme--documenter-dark input[type="checkbox"],html.theme--documenter-dark input[type="radio"]{vertical-align:baseline}html.theme--documenter-dark small{font-size:.875em}html.theme--documenter-dark span{font-style:inherit;font-weight:inherit}html.theme--documenter-dark strong{color:#f2f2f2;font-weight:700}html.theme--documenter-dark fieldset{border:none}html.theme--documenter-dark pre{-webkit-overflow-scrolling:touch;background-color:#282f2f;color:#fff;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--documenter-dark pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--documenter-dark table td,html.theme--documenter-dark table th{vertical-align:top}html.theme--documenter-dark table td:not([align]),html.theme--documenter-dark table th:not([align]){text-align:inherit}html.theme--documenter-dark table th{color:#f2f2f2}html.theme--documenter-dark .box{background-color:#343c3d;border-radius:8px;box-shadow:none;color:#fff;display:block;padding:1.25rem}html.theme--documenter-dark a.box:hover,html.theme--documenter-dark a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #1abc9c}html.theme--documenter-dark a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #1abc9c}html.theme--documenter-dark .button{background-color:#282f2f;border-color:#4c5759;border-width:1px;color:#375a7f;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}html.theme--documenter-dark .button strong{color:inherit}html.theme--documenter-dark .button .icon,html.theme--documenter-dark .button .icon.is-small,html.theme--documenter-dark .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--documenter-dark #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--documenter-dark .button .icon.is-medium,html.theme--documenter-dark .button .icon.is-large{height:1.5em;width:1.5em}html.theme--documenter-dark .button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}html.theme--documenter-dark .button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}html.theme--documenter-dark .button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}html.theme--documenter-dark .button:hover,html.theme--documenter-dark .button.is-hovered{border-color:#8c9b9d;color:#f2f2f2}html.theme--documenter-dark .button:focus,html.theme--documenter-dark .button.is-focused{border-color:#8c9b9d;color:#17a689}html.theme--documenter-dark .button:focus:not(:active),html.theme--documenter-dark .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .button:active,html.theme--documenter-dark .button.is-active{border-color:#343c3d;color:#f2f2f2}html.theme--documenter-dark .button.is-text{background-color:transparent;border-color:transparent;color:#fff;text-decoration:underline}html.theme--documenter-dark .button.is-text:hover,html.theme--documenter-dark .button.is-text.is-hovered,html.theme--documenter-dark .button.is-text:focus,html.theme--documenter-dark .button.is-text.is-focused{background-color:#282f2f;color:#f2f2f2}html.theme--documenter-dark .button.is-text:active,html.theme--documenter-dark .button.is-text.is-active{background-color:#1d2122;color:#f2f2f2}html.theme--documenter-dark .button.is-text[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#1abc9c;text-decoration:none}html.theme--documenter-dark .button.is-ghost:hover,html.theme--documenter-dark .button.is-ghost.is-hovered{color:#1abc9c;text-decoration:underline}html.theme--documenter-dark .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white:hover,html.theme--documenter-dark .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white:focus,html.theme--documenter-dark .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white:focus:not(:active),html.theme--documenter-dark .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--documenter-dark .button.is-white:active,html.theme--documenter-dark .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}html.theme--documenter-dark .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .button.is-white.is-inverted:hover,html.theme--documenter-dark .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--documenter-dark .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-white.is-outlined:hover,html.theme--documenter-dark .button.is-white.is-outlined.is-hovered,html.theme--documenter-dark .button.is-white.is-outlined:focus,html.theme--documenter-dark .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--documenter-dark .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-white.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-white.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--documenter-dark .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black:hover,html.theme--documenter-dark .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black:focus,html.theme--documenter-dark .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black:focus:not(:active),html.theme--documenter-dark .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--documenter-dark .button.is-black:active,html.theme--documenter-dark .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}html.theme--documenter-dark .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-inverted:hover,html.theme--documenter-dark .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-outlined:hover,html.theme--documenter-dark .button.is-black.is-outlined.is-hovered,html.theme--documenter-dark .button.is-black.is-outlined:focus,html.theme--documenter-dark .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--documenter-dark .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-black.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-black.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-light{background-color:#ecf0f1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light:hover,html.theme--documenter-dark .button.is-light.is-hovered{background-color:#e5eaec;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light:focus,html.theme--documenter-dark .button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light:focus:not(:active),html.theme--documenter-dark .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(236,240,241,0.25)}html.theme--documenter-dark .button.is-light:active,html.theme--documenter-dark .button.is-light.is-active{background-color:#dde4e6;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light{background-color:#ecf0f1;border-color:#ecf0f1;box-shadow:none}html.theme--documenter-dark .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-inverted:hover,html.theme--documenter-dark .button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--documenter-dark .button.is-light.is-outlined{background-color:transparent;border-color:#ecf0f1;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-outlined:hover,html.theme--documenter-dark .button.is-light.is-outlined.is-hovered,html.theme--documenter-dark .button.is-light.is-outlined:focus,html.theme--documenter-dark .button.is-light.is-outlined.is-focused{background-color:#ecf0f1;border-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #ecf0f1 #ecf0f1 !important}html.theme--documenter-dark .button.is-light.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-light.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--documenter-dark .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light.is-outlined{background-color:transparent;border-color:#ecf0f1;box-shadow:none;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ecf0f1 #ecf0f1 !important}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-dark,html.theme--documenter-dark .content kbd.button{background-color:#282f2f;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-dark:hover,html.theme--documenter-dark .content kbd.button:hover,html.theme--documenter-dark .button.is-dark.is-hovered,html.theme--documenter-dark .content kbd.button.is-hovered{background-color:#232829;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-dark:focus,html.theme--documenter-dark .content kbd.button:focus,html.theme--documenter-dark .button.is-dark.is-focused,html.theme--documenter-dark .content kbd.button.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-dark:focus:not(:active),html.theme--documenter-dark .content kbd.button:focus:not(:active),html.theme--documenter-dark .button.is-dark.is-focused:not(:active),html.theme--documenter-dark .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(40,47,47,0.25)}html.theme--documenter-dark .button.is-dark:active,html.theme--documenter-dark .content kbd.button:active,html.theme--documenter-dark .button.is-dark.is-active,html.theme--documenter-dark .content kbd.button.is-active{background-color:#1d2122;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-dark[disabled],html.theme--documenter-dark .content kbd.button[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark,fieldset[disabled] html.theme--documenter-dark .content kbd.button{background-color:#282f2f;border-color:#282f2f;box-shadow:none}html.theme--documenter-dark .button.is-dark.is-inverted,html.theme--documenter-dark .content kbd.button.is-inverted{background-color:#fff;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-inverted:hover,html.theme--documenter-dark .content kbd.button.is-inverted:hover,html.theme--documenter-dark .button.is-dark.is-inverted.is-hovered,html.theme--documenter-dark .content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-dark.is-inverted[disabled],html.theme--documenter-dark .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-inverted,fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-loading::after,html.theme--documenter-dark .content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-dark.is-outlined,html.theme--documenter-dark .content kbd.button.is-outlined{background-color:transparent;border-color:#282f2f;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-outlined:hover,html.theme--documenter-dark .content kbd.button.is-outlined:hover,html.theme--documenter-dark .button.is-dark.is-outlined.is-hovered,html.theme--documenter-dark .content kbd.button.is-outlined.is-hovered,html.theme--documenter-dark .button.is-dark.is-outlined:focus,html.theme--documenter-dark .content kbd.button.is-outlined:focus,html.theme--documenter-dark .button.is-dark.is-outlined.is-focused,html.theme--documenter-dark .content kbd.button.is-outlined.is-focused{background-color:#282f2f;border-color:#282f2f;color:#fff}html.theme--documenter-dark .button.is-dark.is-outlined.is-loading::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #282f2f #282f2f !important}html.theme--documenter-dark .button.is-dark.is-outlined.is-loading:hover::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-dark.is-outlined.is-loading:focus::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-dark.is-outlined[disabled],html.theme--documenter-dark .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-outlined,fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-outlined{background-color:transparent;border-color:#282f2f;box-shadow:none;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined:hover,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined:focus,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #282f2f #282f2f !important}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined[disabled],html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-primary,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink{background-color:#375a7f;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary:hover,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#335476;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary:focus,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:focus,html.theme--documenter-dark .button.is-primary.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary:focus:not(:active),html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--documenter-dark .button.is-primary.is-focused:not(:active),html.theme--documenter-dark .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(55,90,127,0.25)}html.theme--documenter-dark .button.is-primary:active,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:active,html.theme--documenter-dark .button.is-primary.is-active,html.theme--documenter-dark .docstring>section>a.button.is-active.docs-sourcelink{background-color:#2f4d6d;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary[disabled],html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink{background-color:#375a7f;border-color:#375a7f;box-shadow:none}html.theme--documenter-dark .button.is-primary.is-inverted,html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-inverted:hover,html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-inverted.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--documenter-dark .button.is-primary.is-inverted[disabled],html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-inverted,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-loading::after,html.theme--documenter-dark .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-primary.is-outlined,html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#375a7f;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-outlined:hover,html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-outlined.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--documenter-dark .button.is-primary.is-outlined:focus,html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--documenter-dark .button.is-primary.is-outlined.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#375a7f;border-color:#375a7f;color:#fff}html.theme--documenter-dark .button.is-primary.is-outlined.is-loading::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #375a7f #375a7f !important}html.theme--documenter-dark .button.is-primary.is-outlined.is-loading:hover::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--documenter-dark .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--documenter-dark .button.is-primary.is-outlined.is-loading:focus::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--documenter-dark .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-primary.is-outlined[disabled],html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-outlined,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#375a7f;box-shadow:none;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined:hover,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined:focus,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #375a7f #375a7f !important}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined[disabled],html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-primary.is-light,html.theme--documenter-dark .docstring>section>a.button.is-light.docs-sourcelink{background-color:#f1f5f9;color:#4d7eb2}html.theme--documenter-dark .button.is-primary.is-light:hover,html.theme--documenter-dark .docstring>section>a.button.is-light.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-light.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#e8eef5;border-color:transparent;color:#4d7eb2}html.theme--documenter-dark .button.is-primary.is-light:active,html.theme--documenter-dark .docstring>section>a.button.is-light.docs-sourcelink:active,html.theme--documenter-dark .button.is-primary.is-light.is-active,html.theme--documenter-dark .docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#dfe8f1;border-color:transparent;color:#4d7eb2}html.theme--documenter-dark .button.is-link{background-color:#1abc9c;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link:hover,html.theme--documenter-dark .button.is-link.is-hovered{background-color:#18b193;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link:focus,html.theme--documenter-dark .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link:focus:not(:active),html.theme--documenter-dark .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .button.is-link:active,html.theme--documenter-dark .button.is-link.is-active{background-color:#17a689;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link{background-color:#1abc9c;border-color:#1abc9c;box-shadow:none}html.theme--documenter-dark .button.is-link.is-inverted{background-color:#fff;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-inverted:hover,html.theme--documenter-dark .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-link.is-outlined{background-color:transparent;border-color:#1abc9c;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-outlined:hover,html.theme--documenter-dark .button.is-link.is-outlined.is-hovered,html.theme--documenter-dark .button.is-link.is-outlined:focus,html.theme--documenter-dark .button.is-link.is-outlined.is-focused{background-color:#1abc9c;border-color:#1abc9c;color:#fff}html.theme--documenter-dark .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #1abc9c #1abc9c !important}html.theme--documenter-dark .button.is-link.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-link.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link.is-outlined{background-color:transparent;border-color:#1abc9c;box-shadow:none;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #1abc9c #1abc9c !important}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-link.is-light{background-color:#edfdf9;color:#15987e}html.theme--documenter-dark .button.is-link.is-light:hover,html.theme--documenter-dark .button.is-link.is-light.is-hovered{background-color:#e2fbf6;border-color:transparent;color:#15987e}html.theme--documenter-dark .button.is-link.is-light:active,html.theme--documenter-dark .button.is-link.is-light.is-active{background-color:#d7f9f3;border-color:transparent;color:#15987e}html.theme--documenter-dark .button.is-info{background-color:#3c5dcd;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info:hover,html.theme--documenter-dark .button.is-info.is-hovered{background-color:#3355c9;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info:focus,html.theme--documenter-dark .button.is-info.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info:focus:not(:active),html.theme--documenter-dark .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}html.theme--documenter-dark .button.is-info:active,html.theme--documenter-dark .button.is-info.is-active{background-color:#3151bf;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info{background-color:#3c5dcd;border-color:#3c5dcd;box-shadow:none}html.theme--documenter-dark .button.is-info.is-inverted{background-color:#fff;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-inverted:hover,html.theme--documenter-dark .button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-info.is-outlined{background-color:transparent;border-color:#3c5dcd;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-outlined:hover,html.theme--documenter-dark .button.is-info.is-outlined.is-hovered,html.theme--documenter-dark .button.is-info.is-outlined:focus,html.theme--documenter-dark .button.is-info.is-outlined.is-focused{background-color:#3c5dcd;border-color:#3c5dcd;color:#fff}html.theme--documenter-dark .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #3c5dcd #3c5dcd !important}html.theme--documenter-dark .button.is-info.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-info.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info.is-outlined{background-color:transparent;border-color:#3c5dcd;box-shadow:none;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3c5dcd}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3c5dcd #3c5dcd !important}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-info.is-light{background-color:#eff2fb;color:#3253c3}html.theme--documenter-dark .button.is-info.is-light:hover,html.theme--documenter-dark .button.is-info.is-light.is-hovered{background-color:#e5e9f8;border-color:transparent;color:#3253c3}html.theme--documenter-dark .button.is-info.is-light:active,html.theme--documenter-dark .button.is-info.is-light.is-active{background-color:#dae1f6;border-color:transparent;color:#3253c3}html.theme--documenter-dark .button.is-success{background-color:#259a12;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success:hover,html.theme--documenter-dark .button.is-success.is-hovered{background-color:#228f11;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success:focus,html.theme--documenter-dark .button.is-success.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success:focus:not(:active),html.theme--documenter-dark .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}html.theme--documenter-dark .button.is-success:active,html.theme--documenter-dark .button.is-success.is-active{background-color:#20830f;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success{background-color:#259a12;border-color:#259a12;box-shadow:none}html.theme--documenter-dark .button.is-success.is-inverted{background-color:#fff;color:#259a12}html.theme--documenter-dark .button.is-success.is-inverted:hover,html.theme--documenter-dark .button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#259a12}html.theme--documenter-dark .button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-success.is-outlined{background-color:transparent;border-color:#259a12;color:#259a12}html.theme--documenter-dark .button.is-success.is-outlined:hover,html.theme--documenter-dark .button.is-success.is-outlined.is-hovered,html.theme--documenter-dark .button.is-success.is-outlined:focus,html.theme--documenter-dark .button.is-success.is-outlined.is-focused{background-color:#259a12;border-color:#259a12;color:#fff}html.theme--documenter-dark .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #259a12 #259a12 !important}html.theme--documenter-dark .button.is-success.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-success.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success.is-outlined{background-color:transparent;border-color:#259a12;box-shadow:none;color:#259a12}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#259a12}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #259a12 #259a12 !important}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-success.is-light{background-color:#effded;color:#2ec016}html.theme--documenter-dark .button.is-success.is-light:hover,html.theme--documenter-dark .button.is-success.is-light.is-hovered{background-color:#e5fce1;border-color:transparent;color:#2ec016}html.theme--documenter-dark .button.is-success.is-light:active,html.theme--documenter-dark .button.is-success.is-light.is-active{background-color:#dbfad6;border-color:transparent;color:#2ec016}html.theme--documenter-dark .button.is-warning{background-color:#f4c72f;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning:hover,html.theme--documenter-dark .button.is-warning.is-hovered{background-color:#f3c423;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning:focus,html.theme--documenter-dark .button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning:focus:not(:active),html.theme--documenter-dark .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(244,199,47,0.25)}html.theme--documenter-dark .button.is-warning:active,html.theme--documenter-dark .button.is-warning.is-active{background-color:#f3c017;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning{background-color:#f4c72f;border-color:#f4c72f;box-shadow:none}html.theme--documenter-dark .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-inverted:hover,html.theme--documenter-dark .button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--documenter-dark .button.is-warning.is-outlined{background-color:transparent;border-color:#f4c72f;color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-outlined:hover,html.theme--documenter-dark .button.is-warning.is-outlined.is-hovered,html.theme--documenter-dark .button.is-warning.is-outlined:focus,html.theme--documenter-dark .button.is-warning.is-outlined.is-focused{background-color:#f4c72f;border-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #f4c72f #f4c72f !important}html.theme--documenter-dark .button.is-warning.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-warning.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}html.theme--documenter-dark .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-outlined{background-color:transparent;border-color:#f4c72f;box-shadow:none;color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f4c72f}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f4c72f #f4c72f !important}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .button.is-warning.is-light{background-color:#fefaec;color:#8c6e07}html.theme--documenter-dark .button.is-warning.is-light:hover,html.theme--documenter-dark .button.is-warning.is-light.is-hovered{background-color:#fdf7e0;border-color:transparent;color:#8c6e07}html.theme--documenter-dark .button.is-warning.is-light:active,html.theme--documenter-dark .button.is-warning.is-light.is-active{background-color:#fdf3d3;border-color:transparent;color:#8c6e07}html.theme--documenter-dark .button.is-danger{background-color:#cb3c33;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger:hover,html.theme--documenter-dark .button.is-danger.is-hovered{background-color:#c13930;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger:focus,html.theme--documenter-dark .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger:focus:not(:active),html.theme--documenter-dark .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}html.theme--documenter-dark .button.is-danger:active,html.theme--documenter-dark .button.is-danger.is-active{background-color:#b7362e;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger{background-color:#cb3c33;border-color:#cb3c33;box-shadow:none}html.theme--documenter-dark .button.is-danger.is-inverted{background-color:#fff;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-inverted:hover,html.theme--documenter-dark .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-danger.is-outlined{background-color:transparent;border-color:#cb3c33;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-outlined:hover,html.theme--documenter-dark .button.is-danger.is-outlined.is-hovered,html.theme--documenter-dark .button.is-danger.is-outlined:focus,html.theme--documenter-dark .button.is-danger.is-outlined.is-focused{background-color:#cb3c33;border-color:#cb3c33;color:#fff}html.theme--documenter-dark .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #cb3c33 #cb3c33 !important}html.theme--documenter-dark .button.is-danger.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-danger.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-outlined{background-color:transparent;border-color:#cb3c33;box-shadow:none;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#cb3c33}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #cb3c33 #cb3c33 !important}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-danger.is-light{background-color:#fbefef;color:#c03930}html.theme--documenter-dark .button.is-danger.is-light:hover,html.theme--documenter-dark .button.is-danger.is-light.is-hovered{background-color:#f8e6e5;border-color:transparent;color:#c03930}html.theme--documenter-dark .button.is-danger.is-light:active,html.theme--documenter-dark .button.is-danger.is-light.is-active{background-color:#f6dcda;border-color:transparent;color:#c03930}html.theme--documenter-dark .button.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}html.theme--documenter-dark .button.is-small:not(.is-rounded),html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:3px}html.theme--documenter-dark .button.is-normal{font-size:1rem}html.theme--documenter-dark .button.is-medium{font-size:1.25rem}html.theme--documenter-dark .button.is-large{font-size:1.5rem}html.theme--documenter-dark .button[disabled],fieldset[disabled] html.theme--documenter-dark .button{background-color:#8c9b9d;border-color:#5e6d6f;box-shadow:none;opacity:.5}html.theme--documenter-dark .button.is-fullwidth{display:flex;width:100%}html.theme--documenter-dark .button.is-loading{color:transparent !important;pointer-events:none}html.theme--documenter-dark .button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}html.theme--documenter-dark .button.is-static{background-color:#282f2f;border-color:#5e6d6f;color:#dbdee0;box-shadow:none;pointer-events:none}html.theme--documenter-dark .button.is-rounded,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}html.theme--documenter-dark .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--documenter-dark .buttons .button{margin-bottom:0.5rem}html.theme--documenter-dark .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}html.theme--documenter-dark .buttons:last-child{margin-bottom:-0.5rem}html.theme--documenter-dark .buttons:not(:last-child){margin-bottom:1rem}html.theme--documenter-dark .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}html.theme--documenter-dark .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:3px}html.theme--documenter-dark .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--documenter-dark .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--documenter-dark .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--documenter-dark .buttons.has-addons .button:last-child{margin-right:0}html.theme--documenter-dark .buttons.has-addons .button:hover,html.theme--documenter-dark .buttons.has-addons .button.is-hovered{z-index:2}html.theme--documenter-dark .buttons.has-addons .button:focus,html.theme--documenter-dark .buttons.has-addons .button.is-focused,html.theme--documenter-dark .buttons.has-addons .button:active,html.theme--documenter-dark .buttons.has-addons .button.is-active,html.theme--documenter-dark .buttons.has-addons .button.is-selected{z-index:3}html.theme--documenter-dark .buttons.has-addons .button:focus:hover,html.theme--documenter-dark .buttons.has-addons .button.is-focused:hover,html.theme--documenter-dark .buttons.has-addons .button:active:hover,html.theme--documenter-dark .buttons.has-addons .button.is-active:hover,html.theme--documenter-dark .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--documenter-dark .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .buttons.is-centered{justify-content:center}html.theme--documenter-dark .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--documenter-dark .buttons.is-right{justify-content:flex-end}html.theme--documenter-dark .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){html.theme--documenter-dark .button.is-responsive.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}html.theme--documenter-dark .button.is-responsive,html.theme--documenter-dark .button.is-responsive.is-normal{font-size:.65625rem}html.theme--documenter-dark .button.is-responsive.is-medium{font-size:.75rem}html.theme--documenter-dark .button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .button.is-responsive.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}html.theme--documenter-dark .button.is-responsive,html.theme--documenter-dark .button.is-responsive.is-normal{font-size:.75rem}html.theme--documenter-dark .button.is-responsive.is-medium{font-size:1rem}html.theme--documenter-dark .button.is-responsive.is-large{font-size:1.25rem}}html.theme--documenter-dark .container{flex-grow:1;margin:0 auto;position:relative;width:auto}html.theme--documenter-dark .container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){html.theme--documenter-dark .container{max-width:992px}}@media screen and (max-width: 1215px){html.theme--documenter-dark .container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){html.theme--documenter-dark .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){html.theme--documenter-dark .container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){html.theme--documenter-dark .container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}html.theme--documenter-dark .content li+li{margin-top:0.25em}html.theme--documenter-dark .content p:not(:last-child),html.theme--documenter-dark .content dl:not(:last-child),html.theme--documenter-dark .content ol:not(:last-child),html.theme--documenter-dark .content ul:not(:last-child),html.theme--documenter-dark .content blockquote:not(:last-child),html.theme--documenter-dark .content pre:not(:last-child),html.theme--documenter-dark .content table:not(:last-child){margin-bottom:1em}html.theme--documenter-dark .content h1,html.theme--documenter-dark .content h2,html.theme--documenter-dark .content h3,html.theme--documenter-dark .content h4,html.theme--documenter-dark .content h5,html.theme--documenter-dark .content h6{color:#f2f2f2;font-weight:600;line-height:1.125}html.theme--documenter-dark .content h1{font-size:2em;margin-bottom:0.5em}html.theme--documenter-dark .content h1:not(:first-child){margin-top:1em}html.theme--documenter-dark .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--documenter-dark .content h2:not(:first-child){margin-top:1.1428em}html.theme--documenter-dark .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--documenter-dark .content h3:not(:first-child){margin-top:1.3333em}html.theme--documenter-dark .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--documenter-dark .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--documenter-dark .content h6{font-size:1em;margin-bottom:1em}html.theme--documenter-dark .content blockquote{background-color:#282f2f;border-left:5px solid #5e6d6f;padding:1.25em 1.5em}html.theme--documenter-dark .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--documenter-dark .content ol:not([type]){list-style-type:decimal}html.theme--documenter-dark .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--documenter-dark .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--documenter-dark .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--documenter-dark .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--documenter-dark .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--documenter-dark .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--documenter-dark .content ul ul ul{list-style-type:square}html.theme--documenter-dark .content dd{margin-left:2em}html.theme--documenter-dark .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--documenter-dark .content figure:not(:first-child){margin-top:2em}html.theme--documenter-dark .content figure:not(:last-child){margin-bottom:2em}html.theme--documenter-dark .content figure img{display:inline-block}html.theme--documenter-dark .content figure figcaption{font-style:italic}html.theme--documenter-dark .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--documenter-dark .content sup,html.theme--documenter-dark .content sub{font-size:75%}html.theme--documenter-dark .content table{width:100%}html.theme--documenter-dark .content table td,html.theme--documenter-dark .content table th{border:1px solid #5e6d6f;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--documenter-dark .content table th{color:#f2f2f2}html.theme--documenter-dark .content table th:not([align]){text-align:inherit}html.theme--documenter-dark .content table thead td,html.theme--documenter-dark .content table thead th{border-width:0 0 2px;color:#f2f2f2}html.theme--documenter-dark .content table tfoot td,html.theme--documenter-dark .content table tfoot th{border-width:2px 0 0;color:#f2f2f2}html.theme--documenter-dark .content table tbody tr:last-child td,html.theme--documenter-dark .content table tbody tr:last-child th{border-bottom-width:0}html.theme--documenter-dark .content .tabs li+li{margin-top:0}html.theme--documenter-dark .content.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}html.theme--documenter-dark .content.is-normal{font-size:1rem}html.theme--documenter-dark .content.is-medium{font-size:1.25rem}html.theme--documenter-dark .content.is-large{font-size:1.5rem}html.theme--documenter-dark .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--documenter-dark .icon.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--documenter-dark .icon.is-medium{height:2rem;width:2rem}html.theme--documenter-dark .icon.is-large{height:3rem;width:3rem}html.theme--documenter-dark .icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}html.theme--documenter-dark .icon-text .icon{flex-grow:0;flex-shrink:0}html.theme--documenter-dark .icon-text .icon:not(:last-child){margin-right:.25em}html.theme--documenter-dark .icon-text .icon:not(:first-child){margin-left:.25em}html.theme--documenter-dark div.icon-text{display:flex}html.theme--documenter-dark .image,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--documenter-dark .image img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--documenter-dark .image img.is-rounded,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}html.theme--documenter-dark .image.is-fullwidth,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}html.theme--documenter-dark .image.is-square img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--documenter-dark .image.is-square .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--documenter-dark .image.is-1by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--documenter-dark .image.is-1by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--documenter-dark .image.is-5by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--documenter-dark .image.is-5by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--documenter-dark .image.is-4by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--documenter-dark .image.is-4by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--documenter-dark .image.is-3by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--documenter-dark .image.is-3by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--documenter-dark .image.is-5by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--documenter-dark .image.is-5by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--documenter-dark .image.is-16by9 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--documenter-dark .image.is-16by9 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--documenter-dark .image.is-2by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--documenter-dark .image.is-2by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--documenter-dark .image.is-3by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--documenter-dark .image.is-3by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--documenter-dark .image.is-4by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--documenter-dark .image.is-4by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--documenter-dark .image.is-3by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--documenter-dark .image.is-3by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--documenter-dark .image.is-2by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--documenter-dark .image.is-2by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--documenter-dark .image.is-3by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--documenter-dark .image.is-3by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--documenter-dark .image.is-9by16 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--documenter-dark .image.is-9by16 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--documenter-dark .image.is-1by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--documenter-dark .image.is-1by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--documenter-dark .image.is-1by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--documenter-dark .image.is-1by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--documenter-dark .image.is-square,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--documenter-dark .image.is-1by1,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--documenter-dark .image.is-5by4,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--documenter-dark .image.is-4by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--documenter-dark .image.is-3by2,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--documenter-dark .image.is-5by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--documenter-dark .image.is-16by9,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--documenter-dark .image.is-2by1,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--documenter-dark .image.is-3by1,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--documenter-dark .image.is-4by5,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--documenter-dark .image.is-3by4,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--documenter-dark .image.is-2by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--documenter-dark .image.is-3by5,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--documenter-dark .image.is-9by16,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--documenter-dark .image.is-1by2,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--documenter-dark .image.is-1by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--documenter-dark .image.is-16x16,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--documenter-dark .image.is-24x24,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--documenter-dark .image.is-32x32,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--documenter-dark .image.is-48x48,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--documenter-dark .image.is-64x64,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--documenter-dark .image.is-96x96,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--documenter-dark .image.is-128x128,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--documenter-dark .notification{background-color:#282f2f;border-radius:.4em;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}html.theme--documenter-dark .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--documenter-dark .notification strong{color:currentColor}html.theme--documenter-dark .notification code,html.theme--documenter-dark .notification pre{background:#fff}html.theme--documenter-dark .notification pre code{background:transparent}html.theme--documenter-dark .notification>.delete{right:.5rem;position:absolute;top:0.5rem}html.theme--documenter-dark .notification .title,html.theme--documenter-dark .notification .subtitle,html.theme--documenter-dark .notification .content{color:currentColor}html.theme--documenter-dark .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .notification.is-light{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .notification.is-dark,html.theme--documenter-dark .content kbd.notification{background-color:#282f2f;color:#fff}html.theme--documenter-dark .notification.is-primary,html.theme--documenter-dark .docstring>section>a.notification.docs-sourcelink{background-color:#375a7f;color:#fff}html.theme--documenter-dark .notification.is-primary.is-light,html.theme--documenter-dark .docstring>section>a.notification.is-light.docs-sourcelink{background-color:#f1f5f9;color:#4d7eb2}html.theme--documenter-dark .notification.is-link{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .notification.is-link.is-light{background-color:#edfdf9;color:#15987e}html.theme--documenter-dark .notification.is-info{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .notification.is-info.is-light{background-color:#eff2fb;color:#3253c3}html.theme--documenter-dark .notification.is-success{background-color:#259a12;color:#fff}html.theme--documenter-dark .notification.is-success.is-light{background-color:#effded;color:#2ec016}html.theme--documenter-dark .notification.is-warning{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .notification.is-warning.is-light{background-color:#fefaec;color:#8c6e07}html.theme--documenter-dark .notification.is-danger{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .notification.is-danger.is-light{background-color:#fbefef;color:#c03930}html.theme--documenter-dark .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}html.theme--documenter-dark .progress::-webkit-progress-bar{background-color:#343c3d}html.theme--documenter-dark .progress::-webkit-progress-value{background-color:#dbdee0}html.theme--documenter-dark .progress::-moz-progress-bar{background-color:#dbdee0}html.theme--documenter-dark .progress::-ms-fill{background-color:#dbdee0;border:none}html.theme--documenter-dark .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--documenter-dark .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--documenter-dark .progress.is-white::-ms-fill{background-color:#fff}html.theme--documenter-dark .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--documenter-dark .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--documenter-dark .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--documenter-dark .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-light::-webkit-progress-value{background-color:#ecf0f1}html.theme--documenter-dark .progress.is-light::-moz-progress-bar{background-color:#ecf0f1}html.theme--documenter-dark .progress.is-light::-ms-fill{background-color:#ecf0f1}html.theme--documenter-dark .progress.is-light:indeterminate{background-image:linear-gradient(to right, #ecf0f1 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-dark::-webkit-progress-value,html.theme--documenter-dark .content kbd.progress::-webkit-progress-value{background-color:#282f2f}html.theme--documenter-dark .progress.is-dark::-moz-progress-bar,html.theme--documenter-dark .content kbd.progress::-moz-progress-bar{background-color:#282f2f}html.theme--documenter-dark .progress.is-dark::-ms-fill,html.theme--documenter-dark .content kbd.progress::-ms-fill{background-color:#282f2f}html.theme--documenter-dark .progress.is-dark:indeterminate,html.theme--documenter-dark .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #282f2f 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-primary::-webkit-progress-value,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#375a7f}html.theme--documenter-dark .progress.is-primary::-moz-progress-bar,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#375a7f}html.theme--documenter-dark .progress.is-primary::-ms-fill,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#375a7f}html.theme--documenter-dark .progress.is-primary:indeterminate,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #375a7f 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-link::-webkit-progress-value{background-color:#1abc9c}html.theme--documenter-dark .progress.is-link::-moz-progress-bar{background-color:#1abc9c}html.theme--documenter-dark .progress.is-link::-ms-fill{background-color:#1abc9c}html.theme--documenter-dark .progress.is-link:indeterminate{background-image:linear-gradient(to right, #1abc9c 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-info::-webkit-progress-value{background-color:#3c5dcd}html.theme--documenter-dark .progress.is-info::-moz-progress-bar{background-color:#3c5dcd}html.theme--documenter-dark .progress.is-info::-ms-fill{background-color:#3c5dcd}html.theme--documenter-dark .progress.is-info:indeterminate{background-image:linear-gradient(to right, #3c5dcd 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-success::-webkit-progress-value{background-color:#259a12}html.theme--documenter-dark .progress.is-success::-moz-progress-bar{background-color:#259a12}html.theme--documenter-dark .progress.is-success::-ms-fill{background-color:#259a12}html.theme--documenter-dark .progress.is-success:indeterminate{background-image:linear-gradient(to right, #259a12 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-warning::-webkit-progress-value{background-color:#f4c72f}html.theme--documenter-dark .progress.is-warning::-moz-progress-bar{background-color:#f4c72f}html.theme--documenter-dark .progress.is-warning::-ms-fill{background-color:#f4c72f}html.theme--documenter-dark .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #f4c72f 30%, #343c3d 30%)}html.theme--documenter-dark .progress.is-danger::-webkit-progress-value{background-color:#cb3c33}html.theme--documenter-dark .progress.is-danger::-moz-progress-bar{background-color:#cb3c33}html.theme--documenter-dark .progress.is-danger::-ms-fill{background-color:#cb3c33}html.theme--documenter-dark .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #cb3c33 30%, #343c3d 30%)}html.theme--documenter-dark .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#343c3d;background-image:linear-gradient(to right, #fff 30%, #343c3d 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--documenter-dark .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--documenter-dark .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--documenter-dark .progress:indeterminate::-ms-fill{animation-name:none}html.theme--documenter-dark .progress.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}html.theme--documenter-dark .progress.is-medium{height:1.25rem}html.theme--documenter-dark .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--documenter-dark .table{background-color:#343c3d;color:#fff}html.theme--documenter-dark .table td,html.theme--documenter-dark .table th{border:1px solid #5e6d6f;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--documenter-dark .table td.is-white,html.theme--documenter-dark .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--documenter-dark .table td.is-black,html.theme--documenter-dark .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--documenter-dark .table td.is-light,html.theme--documenter-dark .table th.is-light{background-color:#ecf0f1;border-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .table td.is-dark,html.theme--documenter-dark .table th.is-dark{background-color:#282f2f;border-color:#282f2f;color:#fff}html.theme--documenter-dark .table td.is-primary,html.theme--documenter-dark .table th.is-primary{background-color:#375a7f;border-color:#375a7f;color:#fff}html.theme--documenter-dark .table td.is-link,html.theme--documenter-dark .table th.is-link{background-color:#1abc9c;border-color:#1abc9c;color:#fff}html.theme--documenter-dark .table td.is-info,html.theme--documenter-dark .table th.is-info{background-color:#3c5dcd;border-color:#3c5dcd;color:#fff}html.theme--documenter-dark .table td.is-success,html.theme--documenter-dark .table th.is-success{background-color:#259a12;border-color:#259a12;color:#fff}html.theme--documenter-dark .table td.is-warning,html.theme--documenter-dark .table th.is-warning{background-color:#f4c72f;border-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .table td.is-danger,html.theme--documenter-dark .table th.is-danger{background-color:#cb3c33;border-color:#cb3c33;color:#fff}html.theme--documenter-dark .table td.is-narrow,html.theme--documenter-dark .table th.is-narrow{white-space:nowrap;width:1%}html.theme--documenter-dark .table td.is-selected,html.theme--documenter-dark .table th.is-selected{background-color:#375a7f;color:#fff}html.theme--documenter-dark .table td.is-selected a,html.theme--documenter-dark .table td.is-selected strong,html.theme--documenter-dark .table th.is-selected a,html.theme--documenter-dark .table th.is-selected strong{color:currentColor}html.theme--documenter-dark .table td.is-vcentered,html.theme--documenter-dark .table th.is-vcentered{vertical-align:middle}html.theme--documenter-dark .table th{color:#f2f2f2}html.theme--documenter-dark .table th:not([align]){text-align:left}html.theme--documenter-dark .table tr.is-selected{background-color:#375a7f;color:#fff}html.theme--documenter-dark .table tr.is-selected a,html.theme--documenter-dark .table tr.is-selected strong{color:currentColor}html.theme--documenter-dark .table tr.is-selected td,html.theme--documenter-dark .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--documenter-dark .table thead{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .table thead td,html.theme--documenter-dark .table thead th{border-width:0 0 2px;color:#f2f2f2}html.theme--documenter-dark .table tfoot{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .table tfoot td,html.theme--documenter-dark .table tfoot th{border-width:2px 0 0;color:#f2f2f2}html.theme--documenter-dark .table tbody{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .table tbody tr:last-child td,html.theme--documenter-dark .table tbody tr:last-child th{border-bottom-width:0}html.theme--documenter-dark .table.is-bordered td,html.theme--documenter-dark .table.is-bordered th{border-width:1px}html.theme--documenter-dark .table.is-bordered tr:last-child td,html.theme--documenter-dark .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--documenter-dark .table.is-fullwidth{width:100%}html.theme--documenter-dark .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#282f2f}html.theme--documenter-dark .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#282f2f}html.theme--documenter-dark .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#2d3435}html.theme--documenter-dark .table.is-narrow td,html.theme--documenter-dark .table.is-narrow th{padding:0.25em 0.5em}html.theme--documenter-dark .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#282f2f}html.theme--documenter-dark .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--documenter-dark .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--documenter-dark .tags .tag,html.theme--documenter-dark .tags .content kbd,html.theme--documenter-dark .content .tags kbd,html.theme--documenter-dark .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--documenter-dark .tags .tag:not(:last-child),html.theme--documenter-dark .tags .content kbd:not(:last-child),html.theme--documenter-dark .content .tags kbd:not(:last-child),html.theme--documenter-dark .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}html.theme--documenter-dark .tags:last-child{margin-bottom:-0.5rem}html.theme--documenter-dark .tags:not(:last-child){margin-bottom:1rem}html.theme--documenter-dark .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--documenter-dark .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--documenter-dark .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--documenter-dark .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}html.theme--documenter-dark .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--documenter-dark .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--documenter-dark .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--documenter-dark .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--documenter-dark .tags.is-centered{justify-content:center}html.theme--documenter-dark .tags.is-centered .tag,html.theme--documenter-dark .tags.is-centered .content kbd,html.theme--documenter-dark .content .tags.is-centered kbd,html.theme--documenter-dark .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--documenter-dark .tags.is-right{justify-content:flex-end}html.theme--documenter-dark .tags.is-right .tag:not(:first-child),html.theme--documenter-dark .tags.is-right .content kbd:not(:first-child),html.theme--documenter-dark .content .tags.is-right kbd:not(:first-child),html.theme--documenter-dark .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--documenter-dark .tags.is-right .tag:not(:last-child),html.theme--documenter-dark .tags.is-right .content kbd:not(:last-child),html.theme--documenter-dark .content .tags.is-right kbd:not(:last-child),html.theme--documenter-dark .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--documenter-dark .tags.has-addons .tag,html.theme--documenter-dark .tags.has-addons .content kbd,html.theme--documenter-dark .content .tags.has-addons kbd,html.theme--documenter-dark .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--documenter-dark .tags.has-addons .tag:not(:first-child),html.theme--documenter-dark .tags.has-addons .content kbd:not(:first-child),html.theme--documenter-dark .content .tags.has-addons kbd:not(:first-child),html.theme--documenter-dark .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}html.theme--documenter-dark .tags.has-addons .tag:not(:last-child),html.theme--documenter-dark .tags.has-addons .content kbd:not(:last-child),html.theme--documenter-dark .content .tags.has-addons kbd:not(:last-child),html.theme--documenter-dark .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html.theme--documenter-dark .tag:not(body),html.theme--documenter-dark .content kbd:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#282f2f;border-radius:.4em;color:#fff;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--documenter-dark .tag:not(body) .delete,html.theme--documenter-dark .content kbd:not(body) .delete,html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}html.theme--documenter-dark .tag.is-white:not(body),html.theme--documenter-dark .content kbd.is-white:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .tag.is-black:not(body),html.theme--documenter-dark .content kbd.is-black:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .tag.is-light:not(body),html.theme--documenter-dark .content kbd.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .tag.is-dark:not(body),html.theme--documenter-dark .content kbd:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--documenter-dark .content .docstring>section>kbd:not(body){background-color:#282f2f;color:#fff}html.theme--documenter-dark .tag.is-primary:not(body),html.theme--documenter-dark .content kbd.is-primary:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body){background-color:#375a7f;color:#fff}html.theme--documenter-dark .tag.is-primary.is-light:not(body),html.theme--documenter-dark .content kbd.is-primary.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f1f5f9;color:#4d7eb2}html.theme--documenter-dark .tag.is-link:not(body),html.theme--documenter-dark .content kbd.is-link:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#1abc9c;color:#fff}html.theme--documenter-dark .tag.is-link.is-light:not(body),html.theme--documenter-dark .content kbd.is-link.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#edfdf9;color:#15987e}html.theme--documenter-dark .tag.is-info:not(body),html.theme--documenter-dark .content kbd.is-info:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .tag.is-info.is-light:not(body),html.theme--documenter-dark .content kbd.is-info.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#eff2fb;color:#3253c3}html.theme--documenter-dark .tag.is-success:not(body),html.theme--documenter-dark .content kbd.is-success:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#259a12;color:#fff}html.theme--documenter-dark .tag.is-success.is-light:not(body),html.theme--documenter-dark .content kbd.is-success.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#effded;color:#2ec016}html.theme--documenter-dark .tag.is-warning:not(body),html.theme--documenter-dark .content kbd.is-warning:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .tag.is-warning.is-light:not(body),html.theme--documenter-dark .content kbd.is-warning.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fefaec;color:#8c6e07}html.theme--documenter-dark .tag.is-danger:not(body),html.theme--documenter-dark .content kbd.is-danger:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#cb3c33;color:#fff}html.theme--documenter-dark .tag.is-danger.is-light:not(body),html.theme--documenter-dark .content kbd.is-danger.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fbefef;color:#c03930}html.theme--documenter-dark .tag.is-normal:not(body),html.theme--documenter-dark .content kbd.is-normal:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}html.theme--documenter-dark .tag.is-medium:not(body),html.theme--documenter-dark .content kbd.is-medium:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}html.theme--documenter-dark .tag.is-large:not(body),html.theme--documenter-dark .content kbd.is-large:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--documenter-dark .tag:not(body) .icon:first-child:not(:last-child),html.theme--documenter-dark .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}html.theme--documenter-dark .tag:not(body) .icon:last-child:not(:first-child),html.theme--documenter-dark .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}html.theme--documenter-dark .tag:not(body) .icon:first-child:last-child,html.theme--documenter-dark .content kbd:not(body) .icon:first-child:last-child,html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}html.theme--documenter-dark .tag.is-delete:not(body),html.theme--documenter-dark .content kbd.is-delete:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--documenter-dark .tag.is-delete:not(body)::before,html.theme--documenter-dark .content kbd.is-delete:not(body)::before,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--documenter-dark .tag.is-delete:not(body)::after,html.theme--documenter-dark .content kbd.is-delete:not(body)::after,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--documenter-dark .tag.is-delete:not(body)::before,html.theme--documenter-dark .content kbd.is-delete:not(body)::before,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--documenter-dark .tag.is-delete:not(body)::after,html.theme--documenter-dark .content kbd.is-delete:not(body)::after,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--documenter-dark .tag.is-delete:not(body):hover,html.theme--documenter-dark .content kbd.is-delete:not(body):hover,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--documenter-dark .tag.is-delete:not(body):focus,html.theme--documenter-dark .content kbd.is-delete:not(body):focus,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#1d2122}html.theme--documenter-dark .tag.is-delete:not(body):active,html.theme--documenter-dark .content kbd.is-delete:not(body):active,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#111414}html.theme--documenter-dark .tag.is-rounded:not(body),html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--documenter-dark .content kbd.is-rounded:not(body),html.theme--documenter-dark #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}html.theme--documenter-dark a.tag:hover,html.theme--documenter-dark .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--documenter-dark .title,html.theme--documenter-dark .subtitle{word-break:break-word}html.theme--documenter-dark .title em,html.theme--documenter-dark .title span,html.theme--documenter-dark .subtitle em,html.theme--documenter-dark .subtitle span{font-weight:inherit}html.theme--documenter-dark .title sub,html.theme--documenter-dark .subtitle sub{font-size:.75em}html.theme--documenter-dark .title sup,html.theme--documenter-dark .subtitle sup{font-size:.75em}html.theme--documenter-dark .title .tag,html.theme--documenter-dark .title .content kbd,html.theme--documenter-dark .content .title kbd,html.theme--documenter-dark .title .docstring>section>a.docs-sourcelink,html.theme--documenter-dark .subtitle .tag,html.theme--documenter-dark .subtitle .content kbd,html.theme--documenter-dark .content .subtitle kbd,html.theme--documenter-dark .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--documenter-dark .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--documenter-dark .title strong{color:inherit;font-weight:inherit}html.theme--documenter-dark .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--documenter-dark .title.is-1{font-size:3rem}html.theme--documenter-dark .title.is-2{font-size:2.5rem}html.theme--documenter-dark .title.is-3{font-size:2rem}html.theme--documenter-dark .title.is-4{font-size:1.5rem}html.theme--documenter-dark .title.is-5{font-size:1.25rem}html.theme--documenter-dark .title.is-6{font-size:1rem}html.theme--documenter-dark .title.is-7{font-size:.75rem}html.theme--documenter-dark .subtitle{color:#8c9b9d;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--documenter-dark .subtitle strong{color:#8c9b9d;font-weight:600}html.theme--documenter-dark .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--documenter-dark .subtitle.is-1{font-size:3rem}html.theme--documenter-dark .subtitle.is-2{font-size:2.5rem}html.theme--documenter-dark .subtitle.is-3{font-size:2rem}html.theme--documenter-dark .subtitle.is-4{font-size:1.5rem}html.theme--documenter-dark .subtitle.is-5{font-size:1.25rem}html.theme--documenter-dark .subtitle.is-6{font-size:1rem}html.theme--documenter-dark .subtitle.is-7{font-size:.75rem}html.theme--documenter-dark .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--documenter-dark .number{align-items:center;background-color:#282f2f;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--documenter-dark .select select,html.theme--documenter-dark .textarea,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{background-color:#1f2424;border-color:#5e6d6f;border-radius:.4em;color:#dbdee0}html.theme--documenter-dark .select select::-moz-placeholder,html.theme--documenter-dark .textarea::-moz-placeholder,html.theme--documenter-dark .input::-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#868c98}html.theme--documenter-dark .select select::-webkit-input-placeholder,html.theme--documenter-dark .textarea::-webkit-input-placeholder,html.theme--documenter-dark .input::-webkit-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#868c98}html.theme--documenter-dark .select select:-moz-placeholder,html.theme--documenter-dark .textarea:-moz-placeholder,html.theme--documenter-dark .input:-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#868c98}html.theme--documenter-dark .select select:-ms-input-placeholder,html.theme--documenter-dark .textarea:-ms-input-placeholder,html.theme--documenter-dark .input:-ms-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#868c98}html.theme--documenter-dark .select select:hover,html.theme--documenter-dark .textarea:hover,html.theme--documenter-dark .input:hover,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:hover,html.theme--documenter-dark .select select.is-hovered,html.theme--documenter-dark .is-hovered.textarea,html.theme--documenter-dark .is-hovered.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#8c9b9d}html.theme--documenter-dark .select select:focus,html.theme--documenter-dark .textarea:focus,html.theme--documenter-dark .input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:focus,html.theme--documenter-dark .select select.is-focused,html.theme--documenter-dark .is-focused.textarea,html.theme--documenter-dark .is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .select select:active,html.theme--documenter-dark .textarea:active,html.theme--documenter-dark .input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:active,html.theme--documenter-dark .select select.is-active,html.theme--documenter-dark .is-active.textarea,html.theme--documenter-dark .is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#1abc9c;box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .select select[disabled],html.theme--documenter-dark .textarea[disabled],html.theme--documenter-dark .input[disabled],html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--documenter-dark .select select,fieldset[disabled] html.theme--documenter-dark .textarea,fieldset[disabled] html.theme--documenter-dark .input,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{background-color:#8c9b9d;border-color:#282f2f;box-shadow:none;color:#fff}html.theme--documenter-dark .select select[disabled]::-moz-placeholder,html.theme--documenter-dark .textarea[disabled]::-moz-placeholder,html.theme--documenter-dark .input[disabled]::-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .select select::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .input::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .select select[disabled]::-webkit-input-placeholder,html.theme--documenter-dark .textarea[disabled]::-webkit-input-placeholder,html.theme--documenter-dark .input[disabled]::-webkit-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark .input::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .select select[disabled]:-moz-placeholder,html.theme--documenter-dark .textarea[disabled]:-moz-placeholder,html.theme--documenter-dark .input[disabled]:-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .select select:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .input:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .select select[disabled]:-ms-input-placeholder,html.theme--documenter-dark .textarea[disabled]:-ms-input-placeholder,html.theme--documenter-dark .input[disabled]:-ms-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark .select select:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark .input:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .textarea,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}html.theme--documenter-dark .textarea[readonly],html.theme--documenter-dark .input[readonly],html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--documenter-dark .is-white.textarea,html.theme--documenter-dark .is-white.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--documenter-dark .is-white.textarea:focus,html.theme--documenter-dark .is-white.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--documenter-dark .is-white.is-focused.textarea,html.theme--documenter-dark .is-white.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-white.textarea:active,html.theme--documenter-dark .is-white.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--documenter-dark .is-white.is-active.textarea,html.theme--documenter-dark .is-white.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--documenter-dark .is-black.textarea,html.theme--documenter-dark .is-black.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--documenter-dark .is-black.textarea:focus,html.theme--documenter-dark .is-black.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--documenter-dark .is-black.is-focused.textarea,html.theme--documenter-dark .is-black.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-black.textarea:active,html.theme--documenter-dark .is-black.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--documenter-dark .is-black.is-active.textarea,html.theme--documenter-dark .is-black.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--documenter-dark .is-light.textarea,html.theme--documenter-dark .is-light.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#ecf0f1}html.theme--documenter-dark .is-light.textarea:focus,html.theme--documenter-dark .is-light.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--documenter-dark .is-light.is-focused.textarea,html.theme--documenter-dark .is-light.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-light.textarea:active,html.theme--documenter-dark .is-light.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--documenter-dark .is-light.is-active.textarea,html.theme--documenter-dark .is-light.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(236,240,241,0.25)}html.theme--documenter-dark .is-dark.textarea,html.theme--documenter-dark .content kbd.textarea,html.theme--documenter-dark .is-dark.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--documenter-dark .content kbd.input{border-color:#282f2f}html.theme--documenter-dark .is-dark.textarea:focus,html.theme--documenter-dark .content kbd.textarea:focus,html.theme--documenter-dark .is-dark.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--documenter-dark .content kbd.input:focus,html.theme--documenter-dark .is-dark.is-focused.textarea,html.theme--documenter-dark .content kbd.is-focused.textarea,html.theme--documenter-dark .is-dark.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .content kbd.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--documenter-dark .is-dark.textarea:active,html.theme--documenter-dark .content kbd.textarea:active,html.theme--documenter-dark .is-dark.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--documenter-dark .content kbd.input:active,html.theme--documenter-dark .is-dark.is-active.textarea,html.theme--documenter-dark .content kbd.is-active.textarea,html.theme--documenter-dark .is-dark.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--documenter-dark .content kbd.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(40,47,47,0.25)}html.theme--documenter-dark .is-primary.textarea,html.theme--documenter-dark .docstring>section>a.textarea.docs-sourcelink,html.theme--documenter-dark .is-primary.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--documenter-dark .docstring>section>a.input.docs-sourcelink{border-color:#375a7f}html.theme--documenter-dark .is-primary.textarea:focus,html.theme--documenter-dark .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--documenter-dark .is-primary.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--documenter-dark .docstring>section>a.input.docs-sourcelink:focus,html.theme--documenter-dark .is-primary.is-focused.textarea,html.theme--documenter-dark .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--documenter-dark .is-primary.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--documenter-dark .is-primary.textarea:active,html.theme--documenter-dark .docstring>section>a.textarea.docs-sourcelink:active,html.theme--documenter-dark .is-primary.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--documenter-dark .docstring>section>a.input.docs-sourcelink:active,html.theme--documenter-dark .is-primary.is-active.textarea,html.theme--documenter-dark .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--documenter-dark .is-primary.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--documenter-dark .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(55,90,127,0.25)}html.theme--documenter-dark .is-link.textarea,html.theme--documenter-dark .is-link.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#1abc9c}html.theme--documenter-dark .is-link.textarea:focus,html.theme--documenter-dark .is-link.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--documenter-dark .is-link.is-focused.textarea,html.theme--documenter-dark .is-link.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-link.textarea:active,html.theme--documenter-dark .is-link.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--documenter-dark .is-link.is-active.textarea,html.theme--documenter-dark .is-link.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .is-info.textarea,html.theme--documenter-dark .is-info.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#3c5dcd}html.theme--documenter-dark .is-info.textarea:focus,html.theme--documenter-dark .is-info.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--documenter-dark .is-info.is-focused.textarea,html.theme--documenter-dark .is-info.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-info.textarea:active,html.theme--documenter-dark .is-info.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--documenter-dark .is-info.is-active.textarea,html.theme--documenter-dark .is-info.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}html.theme--documenter-dark .is-success.textarea,html.theme--documenter-dark .is-success.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#259a12}html.theme--documenter-dark .is-success.textarea:focus,html.theme--documenter-dark .is-success.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--documenter-dark .is-success.is-focused.textarea,html.theme--documenter-dark .is-success.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-success.textarea:active,html.theme--documenter-dark .is-success.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--documenter-dark .is-success.is-active.textarea,html.theme--documenter-dark .is-success.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}html.theme--documenter-dark .is-warning.textarea,html.theme--documenter-dark .is-warning.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#f4c72f}html.theme--documenter-dark .is-warning.textarea:focus,html.theme--documenter-dark .is-warning.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--documenter-dark .is-warning.is-focused.textarea,html.theme--documenter-dark .is-warning.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-warning.textarea:active,html.theme--documenter-dark .is-warning.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--documenter-dark .is-warning.is-active.textarea,html.theme--documenter-dark .is-warning.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(244,199,47,0.25)}html.theme--documenter-dark .is-danger.textarea,html.theme--documenter-dark .is-danger.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#cb3c33}html.theme--documenter-dark .is-danger.textarea:focus,html.theme--documenter-dark .is-danger.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--documenter-dark .is-danger.is-focused.textarea,html.theme--documenter-dark .is-danger.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-danger.textarea:active,html.theme--documenter-dark .is-danger.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--documenter-dark .is-danger.is-active.textarea,html.theme--documenter-dark .is-danger.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}html.theme--documenter-dark .is-small.textarea,html.theme--documenter-dark .is-small.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.75rem}html.theme--documenter-dark .is-medium.textarea,html.theme--documenter-dark .is-medium.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--documenter-dark .is-large.textarea,html.theme--documenter-dark .is-large.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--documenter-dark .is-fullwidth.textarea,html.theme--documenter-dark .is-fullwidth.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--documenter-dark .is-inline.textarea,html.theme--documenter-dark .is-inline.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--documenter-dark .input.is-rounded,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}html.theme--documenter-dark .input.is-static,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--documenter-dark .textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}html.theme--documenter-dark .textarea:not([rows]){max-height:40em;min-height:8em}html.theme--documenter-dark .textarea[rows]{height:initial}html.theme--documenter-dark .textarea.has-fixed-size{resize:none}html.theme--documenter-dark .radio,html.theme--documenter-dark .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--documenter-dark .radio input,html.theme--documenter-dark .checkbox input{cursor:pointer}html.theme--documenter-dark .radio:hover,html.theme--documenter-dark .checkbox:hover{color:#8c9b9d}html.theme--documenter-dark .radio[disabled],html.theme--documenter-dark .checkbox[disabled],fieldset[disabled] html.theme--documenter-dark .radio,fieldset[disabled] html.theme--documenter-dark .checkbox,html.theme--documenter-dark .radio input[disabled],html.theme--documenter-dark .checkbox input[disabled]{color:#fff;cursor:not-allowed}html.theme--documenter-dark .radio+.radio{margin-left:.5em}html.theme--documenter-dark .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--documenter-dark .select:not(.is-multiple){height:2.5em}html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading)::after{border-color:#1abc9c;right:1.125em;z-index:4}html.theme--documenter-dark .select.is-rounded select,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}html.theme--documenter-dark .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--documenter-dark .select select::-ms-expand{display:none}html.theme--documenter-dark .select select[disabled]:hover,fieldset[disabled] html.theme--documenter-dark .select select:hover{border-color:#282f2f}html.theme--documenter-dark .select select:not([multiple]){padding-right:2.5em}html.theme--documenter-dark .select select[multiple]{height:auto;padding:0}html.theme--documenter-dark .select select[multiple] option{padding:0.5em 1em}html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#8c9b9d}html.theme--documenter-dark .select.is-white:not(:hover)::after{border-color:#fff}html.theme--documenter-dark .select.is-white select{border-color:#fff}html.theme--documenter-dark .select.is-white select:hover,html.theme--documenter-dark .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--documenter-dark .select.is-white select:focus,html.theme--documenter-dark .select.is-white select.is-focused,html.theme--documenter-dark .select.is-white select:active,html.theme--documenter-dark .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--documenter-dark .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--documenter-dark .select.is-black select{border-color:#0a0a0a}html.theme--documenter-dark .select.is-black select:hover,html.theme--documenter-dark .select.is-black select.is-hovered{border-color:#000}html.theme--documenter-dark .select.is-black select:focus,html.theme--documenter-dark .select.is-black select.is-focused,html.theme--documenter-dark .select.is-black select:active,html.theme--documenter-dark .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--documenter-dark .select.is-light:not(:hover)::after{border-color:#ecf0f1}html.theme--documenter-dark .select.is-light select{border-color:#ecf0f1}html.theme--documenter-dark .select.is-light select:hover,html.theme--documenter-dark .select.is-light select.is-hovered{border-color:#dde4e6}html.theme--documenter-dark .select.is-light select:focus,html.theme--documenter-dark .select.is-light select.is-focused,html.theme--documenter-dark .select.is-light select:active,html.theme--documenter-dark .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(236,240,241,0.25)}html.theme--documenter-dark .select.is-dark:not(:hover)::after,html.theme--documenter-dark .content kbd.select:not(:hover)::after{border-color:#282f2f}html.theme--documenter-dark .select.is-dark select,html.theme--documenter-dark .content kbd.select select{border-color:#282f2f}html.theme--documenter-dark .select.is-dark select:hover,html.theme--documenter-dark .content kbd.select select:hover,html.theme--documenter-dark .select.is-dark select.is-hovered,html.theme--documenter-dark .content kbd.select select.is-hovered{border-color:#1d2122}html.theme--documenter-dark .select.is-dark select:focus,html.theme--documenter-dark .content kbd.select select:focus,html.theme--documenter-dark .select.is-dark select.is-focused,html.theme--documenter-dark .content kbd.select select.is-focused,html.theme--documenter-dark .select.is-dark select:active,html.theme--documenter-dark .content kbd.select select:active,html.theme--documenter-dark .select.is-dark select.is-active,html.theme--documenter-dark .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(40,47,47,0.25)}html.theme--documenter-dark .select.is-primary:not(:hover)::after,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#375a7f}html.theme--documenter-dark .select.is-primary select,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select{border-color:#375a7f}html.theme--documenter-dark .select.is-primary select:hover,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select:hover,html.theme--documenter-dark .select.is-primary select.is-hovered,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#2f4d6d}html.theme--documenter-dark .select.is-primary select:focus,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select:focus,html.theme--documenter-dark .select.is-primary select.is-focused,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--documenter-dark .select.is-primary select:active,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select:active,html.theme--documenter-dark .select.is-primary select.is-active,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(55,90,127,0.25)}html.theme--documenter-dark .select.is-link:not(:hover)::after{border-color:#1abc9c}html.theme--documenter-dark .select.is-link select{border-color:#1abc9c}html.theme--documenter-dark .select.is-link select:hover,html.theme--documenter-dark .select.is-link select.is-hovered{border-color:#17a689}html.theme--documenter-dark .select.is-link select:focus,html.theme--documenter-dark .select.is-link select.is-focused,html.theme--documenter-dark .select.is-link select:active,html.theme--documenter-dark .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .select.is-info:not(:hover)::after{border-color:#3c5dcd}html.theme--documenter-dark .select.is-info select{border-color:#3c5dcd}html.theme--documenter-dark .select.is-info select:hover,html.theme--documenter-dark .select.is-info select.is-hovered{border-color:#3151bf}html.theme--documenter-dark .select.is-info select:focus,html.theme--documenter-dark .select.is-info select.is-focused,html.theme--documenter-dark .select.is-info select:active,html.theme--documenter-dark .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}html.theme--documenter-dark .select.is-success:not(:hover)::after{border-color:#259a12}html.theme--documenter-dark .select.is-success select{border-color:#259a12}html.theme--documenter-dark .select.is-success select:hover,html.theme--documenter-dark .select.is-success select.is-hovered{border-color:#20830f}html.theme--documenter-dark .select.is-success select:focus,html.theme--documenter-dark .select.is-success select.is-focused,html.theme--documenter-dark .select.is-success select:active,html.theme--documenter-dark .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}html.theme--documenter-dark .select.is-warning:not(:hover)::after{border-color:#f4c72f}html.theme--documenter-dark .select.is-warning select{border-color:#f4c72f}html.theme--documenter-dark .select.is-warning select:hover,html.theme--documenter-dark .select.is-warning select.is-hovered{border-color:#f3c017}html.theme--documenter-dark .select.is-warning select:focus,html.theme--documenter-dark .select.is-warning select.is-focused,html.theme--documenter-dark .select.is-warning select:active,html.theme--documenter-dark .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(244,199,47,0.25)}html.theme--documenter-dark .select.is-danger:not(:hover)::after{border-color:#cb3c33}html.theme--documenter-dark .select.is-danger select{border-color:#cb3c33}html.theme--documenter-dark .select.is-danger select:hover,html.theme--documenter-dark .select.is-danger select.is-hovered{border-color:#b7362e}html.theme--documenter-dark .select.is-danger select:focus,html.theme--documenter-dark .select.is-danger select.is-focused,html.theme--documenter-dark .select.is-danger select:active,html.theme--documenter-dark .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}html.theme--documenter-dark .select.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.75rem}html.theme--documenter-dark .select.is-medium{font-size:1.25rem}html.theme--documenter-dark .select.is-large{font-size:1.5rem}html.theme--documenter-dark .select.is-disabled::after{border-color:#fff !important;opacity:0.5}html.theme--documenter-dark .select.is-fullwidth{width:100%}html.theme--documenter-dark .select.is-fullwidth select{width:100%}html.theme--documenter-dark .select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}html.theme--documenter-dark .select.is-loading.is-small:after,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--documenter-dark .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--documenter-dark .select.is-loading.is-large:after{font-size:1.5rem}html.theme--documenter-dark .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--documenter-dark .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .file.is-white:hover .file-cta,html.theme--documenter-dark .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .file.is-white:focus .file-cta,html.theme--documenter-dark .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--documenter-dark .file.is-white:active .file-cta,html.theme--documenter-dark .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-black:hover .file-cta,html.theme--documenter-dark .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-black:focus .file-cta,html.theme--documenter-dark .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--documenter-dark .file.is-black:active .file-cta,html.theme--documenter-dark .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-light .file-cta{background-color:#ecf0f1;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-light:hover .file-cta,html.theme--documenter-dark .file.is-light.is-hovered .file-cta{background-color:#e5eaec;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-light:focus .file-cta,html.theme--documenter-dark .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(236,240,241,0.25);color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-light:active .file-cta,html.theme--documenter-dark .file.is-light.is-active .file-cta{background-color:#dde4e6;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-dark .file-cta,html.theme--documenter-dark .content kbd.file .file-cta{background-color:#282f2f;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-dark:hover .file-cta,html.theme--documenter-dark .content kbd.file:hover .file-cta,html.theme--documenter-dark .file.is-dark.is-hovered .file-cta,html.theme--documenter-dark .content kbd.file.is-hovered .file-cta{background-color:#232829;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-dark:focus .file-cta,html.theme--documenter-dark .content kbd.file:focus .file-cta,html.theme--documenter-dark .file.is-dark.is-focused .file-cta,html.theme--documenter-dark .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(40,47,47,0.25);color:#fff}html.theme--documenter-dark .file.is-dark:active .file-cta,html.theme--documenter-dark .content kbd.file:active .file-cta,html.theme--documenter-dark .file.is-dark.is-active .file-cta,html.theme--documenter-dark .content kbd.file.is-active .file-cta{background-color:#1d2122;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-primary .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#375a7f;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-primary:hover .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--documenter-dark .file.is-primary.is-hovered .file-cta,html.theme--documenter-dark .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#335476;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-primary:focus .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--documenter-dark .file.is-primary.is-focused .file-cta,html.theme--documenter-dark .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(55,90,127,0.25);color:#fff}html.theme--documenter-dark .file.is-primary:active .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--documenter-dark .file.is-primary.is-active .file-cta,html.theme--documenter-dark .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#2f4d6d;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-link .file-cta{background-color:#1abc9c;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-link:hover .file-cta,html.theme--documenter-dark .file.is-link.is-hovered .file-cta{background-color:#18b193;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-link:focus .file-cta,html.theme--documenter-dark .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(26,188,156,0.25);color:#fff}html.theme--documenter-dark .file.is-link:active .file-cta,html.theme--documenter-dark .file.is-link.is-active .file-cta{background-color:#17a689;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-info .file-cta{background-color:#3c5dcd;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-info:hover .file-cta,html.theme--documenter-dark .file.is-info.is-hovered .file-cta{background-color:#3355c9;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-info:focus .file-cta,html.theme--documenter-dark .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(60,93,205,0.25);color:#fff}html.theme--documenter-dark .file.is-info:active .file-cta,html.theme--documenter-dark .file.is-info.is-active .file-cta{background-color:#3151bf;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-success .file-cta{background-color:#259a12;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-success:hover .file-cta,html.theme--documenter-dark .file.is-success.is-hovered .file-cta{background-color:#228f11;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-success:focus .file-cta,html.theme--documenter-dark .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(37,154,18,0.25);color:#fff}html.theme--documenter-dark .file.is-success:active .file-cta,html.theme--documenter-dark .file.is-success.is-active .file-cta{background-color:#20830f;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-warning .file-cta{background-color:#f4c72f;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-warning:hover .file-cta,html.theme--documenter-dark .file.is-warning.is-hovered .file-cta{background-color:#f3c423;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-warning:focus .file-cta,html.theme--documenter-dark .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(244,199,47,0.25);color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-warning:active .file-cta,html.theme--documenter-dark .file.is-warning.is-active .file-cta{background-color:#f3c017;border-color:transparent;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .file.is-danger .file-cta{background-color:#cb3c33;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-danger:hover .file-cta,html.theme--documenter-dark .file.is-danger.is-hovered .file-cta{background-color:#c13930;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-danger:focus .file-cta,html.theme--documenter-dark .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(203,60,51,0.25);color:#fff}html.theme--documenter-dark .file.is-danger:active .file-cta,html.theme--documenter-dark .file.is-danger.is-active .file-cta{background-color:#b7362e;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}html.theme--documenter-dark .file.is-normal{font-size:1rem}html.theme--documenter-dark .file.is-medium{font-size:1.25rem}html.theme--documenter-dark .file.is-medium .file-icon .fa{font-size:21px}html.theme--documenter-dark .file.is-large{font-size:1.5rem}html.theme--documenter-dark .file.is-large .file-icon .fa{font-size:28px}html.theme--documenter-dark .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--documenter-dark .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--documenter-dark .file.has-name.is-empty .file-name{display:none}html.theme--documenter-dark .file.is-boxed .file-label{flex-direction:column}html.theme--documenter-dark .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--documenter-dark .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--documenter-dark .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--documenter-dark .file.is-boxed .file-icon .fa{font-size:21px}html.theme--documenter-dark .file.is-boxed.is-small .file-icon .fa,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--documenter-dark .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--documenter-dark .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--documenter-dark .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--documenter-dark .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--documenter-dark .file.is-centered{justify-content:center}html.theme--documenter-dark .file.is-fullwidth .file-label{width:100%}html.theme--documenter-dark .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--documenter-dark .file.is-right{justify-content:flex-end}html.theme--documenter-dark .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--documenter-dark .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--documenter-dark .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--documenter-dark .file-label:hover .file-cta{background-color:#232829;color:#f2f2f2}html.theme--documenter-dark .file-label:hover .file-name{border-color:#596668}html.theme--documenter-dark .file-label:active .file-cta{background-color:#1d2122;color:#f2f2f2}html.theme--documenter-dark .file-label:active .file-name{border-color:#535f61}html.theme--documenter-dark .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--documenter-dark .file-cta,html.theme--documenter-dark .file-name{border-color:#5e6d6f;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--documenter-dark .file-cta{background-color:#282f2f;color:#fff}html.theme--documenter-dark .file-name{border-color:#5e6d6f;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}html.theme--documenter-dark .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}html.theme--documenter-dark .file-icon .fa{font-size:14px}html.theme--documenter-dark .label{color:#f2f2f2;display:block;font-size:1rem;font-weight:700}html.theme--documenter-dark .label:not(:last-child){margin-bottom:0.5em}html.theme--documenter-dark .label.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}html.theme--documenter-dark .label.is-medium{font-size:1.25rem}html.theme--documenter-dark .label.is-large{font-size:1.5rem}html.theme--documenter-dark .help{display:block;font-size:.75rem;margin-top:0.25rem}html.theme--documenter-dark .help.is-white{color:#fff}html.theme--documenter-dark .help.is-black{color:#0a0a0a}html.theme--documenter-dark .help.is-light{color:#ecf0f1}html.theme--documenter-dark .help.is-dark,html.theme--documenter-dark .content kbd.help{color:#282f2f}html.theme--documenter-dark .help.is-primary,html.theme--documenter-dark .docstring>section>a.help.docs-sourcelink{color:#375a7f}html.theme--documenter-dark .help.is-link{color:#1abc9c}html.theme--documenter-dark .help.is-info{color:#3c5dcd}html.theme--documenter-dark .help.is-success{color:#259a12}html.theme--documenter-dark .help.is-warning{color:#f4c72f}html.theme--documenter-dark .help.is-danger{color:#cb3c33}html.theme--documenter-dark .field:not(:last-child){margin-bottom:0.75rem}html.theme--documenter-dark .field.has-addons{display:flex;justify-content:flex-start}html.theme--documenter-dark .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .button,html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .input,html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .button,html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .input,html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control .button.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control .button.is-active:not([disabled]),html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control .input.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control .input.is-active:not([disabled]),html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--documenter-dark .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .field.has-addons.has-addons-centered{justify-content:center}html.theme--documenter-dark .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--documenter-dark .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--documenter-dark .field.is-grouped{display:flex;justify-content:flex-start}html.theme--documenter-dark .field.is-grouped>.control{flex-shrink:0}html.theme--documenter-dark .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--documenter-dark .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--documenter-dark .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--documenter-dark .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--documenter-dark .field.is-horizontal{display:flex}}html.theme--documenter-dark .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--documenter-dark .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--documenter-dark .field-label.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}html.theme--documenter-dark .field-label.is-normal{padding-top:0.375em}html.theme--documenter-dark .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--documenter-dark .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--documenter-dark .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--documenter-dark .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--documenter-dark .field-body .field{margin-bottom:0}html.theme--documenter-dark .field-body>.field{flex-shrink:1}html.theme--documenter-dark .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--documenter-dark .field-body>.field:not(:last-child){margin-right:.75rem}}html.theme--documenter-dark .control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}html.theme--documenter-dark .control.has-icons-left .input:focus~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--documenter-dark .control.has-icons-left .select:focus~.icon,html.theme--documenter-dark .control.has-icons-right .input:focus~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--documenter-dark .control.has-icons-right .select:focus~.icon{color:#282f2f}html.theme--documenter-dark .control.has-icons-left .input.is-small~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--documenter-dark .control.has-icons-left .select.is-small~.icon,html.theme--documenter-dark .control.has-icons-right .input.is-small~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--documenter-dark .control.has-icons-right .select.is-small~.icon{font-size:.75rem}html.theme--documenter-dark .control.has-icons-left .input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-left .select.is-medium~.icon,html.theme--documenter-dark .control.has-icons-right .input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--documenter-dark .control.has-icons-left .input.is-large~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--documenter-dark .control.has-icons-left .select.is-large~.icon,html.theme--documenter-dark .control.has-icons-right .input.is-large~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--documenter-dark .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--documenter-dark .control.has-icons-left .icon,html.theme--documenter-dark .control.has-icons-right .icon{color:#5e6d6f;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}html.theme--documenter-dark .control.has-icons-left .input,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--documenter-dark .control.has-icons-left .select select{padding-left:2.5em}html.theme--documenter-dark .control.has-icons-left .icon.is-left{left:0}html.theme--documenter-dark .control.has-icons-right .input,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--documenter-dark .control.has-icons-right .select select{padding-right:2.5em}html.theme--documenter-dark .control.has-icons-right .icon.is-right{right:0}html.theme--documenter-dark .control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}html.theme--documenter-dark .control.is-loading.is-small:after,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}html.theme--documenter-dark .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--documenter-dark .control.is-loading.is-large:after{font-size:1.5rem}html.theme--documenter-dark .breadcrumb{font-size:1rem;white-space:nowrap}html.theme--documenter-dark .breadcrumb a{align-items:center;color:#1abc9c;display:flex;justify-content:center;padding:0 .75em}html.theme--documenter-dark .breadcrumb a:hover{color:#1dd2af}html.theme--documenter-dark .breadcrumb li{align-items:center;display:flex}html.theme--documenter-dark .breadcrumb li:first-child a{padding-left:0}html.theme--documenter-dark .breadcrumb li.is-active a{color:#f2f2f2;cursor:default;pointer-events:none}html.theme--documenter-dark .breadcrumb li+li::before{color:#8c9b9d;content:"\0002f"}html.theme--documenter-dark .breadcrumb ul,html.theme--documenter-dark .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--documenter-dark .breadcrumb .icon:first-child{margin-right:.5em}html.theme--documenter-dark .breadcrumb .icon:last-child{margin-left:.5em}html.theme--documenter-dark .breadcrumb.is-centered ol,html.theme--documenter-dark .breadcrumb.is-centered ul{justify-content:center}html.theme--documenter-dark .breadcrumb.is-right ol,html.theme--documenter-dark .breadcrumb.is-right ul{justify-content:flex-end}html.theme--documenter-dark .breadcrumb.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}html.theme--documenter-dark .breadcrumb.is-medium{font-size:1.25rem}html.theme--documenter-dark .breadcrumb.is-large{font-size:1.5rem}html.theme--documenter-dark .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--documenter-dark .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--documenter-dark .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--documenter-dark .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--documenter-dark .card{background-color:#fff;border-radius:.25rem;box-shadow:#171717;color:#fff;max-width:100%;position:relative}html.theme--documenter-dark .card-footer:first-child,html.theme--documenter-dark .card-content:first-child,html.theme--documenter-dark .card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--documenter-dark .card-footer:last-child,html.theme--documenter-dark .card-content:last-child,html.theme--documenter-dark .card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--documenter-dark .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}html.theme--documenter-dark .card-header-title{align-items:center;color:#f2f2f2;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}html.theme--documenter-dark .card-header-title.is-centered{justify-content:center}html.theme--documenter-dark .card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}html.theme--documenter-dark .card-image{display:block;position:relative}html.theme--documenter-dark .card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}html.theme--documenter-dark .card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}html.theme--documenter-dark .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--documenter-dark .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}html.theme--documenter-dark .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--documenter-dark .card-footer-item:not(:last-child){border-right:1px solid #ededed}html.theme--documenter-dark .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--documenter-dark .dropdown.is-active .dropdown-menu,html.theme--documenter-dark .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--documenter-dark .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--documenter-dark .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--documenter-dark .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--documenter-dark .dropdown-content{background-color:#282f2f;border-radius:.4em;box-shadow:#171717;padding-bottom:.5rem;padding-top:.5rem}html.theme--documenter-dark .dropdown-item{color:#fff;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--documenter-dark a.dropdown-item,html.theme--documenter-dark button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}html.theme--documenter-dark a.dropdown-item:hover,html.theme--documenter-dark button.dropdown-item:hover{background-color:#282f2f;color:#0a0a0a}html.theme--documenter-dark a.dropdown-item.is-active,html.theme--documenter-dark button.dropdown-item.is-active{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--documenter-dark .level{align-items:center;justify-content:space-between}html.theme--documenter-dark .level code{border-radius:.4em}html.theme--documenter-dark .level img{display:inline-block;vertical-align:top}html.theme--documenter-dark .level.is-mobile{display:flex}html.theme--documenter-dark .level.is-mobile .level-left,html.theme--documenter-dark .level.is-mobile .level-right{display:flex}html.theme--documenter-dark .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--documenter-dark .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--documenter-dark .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level{display:flex}html.theme--documenter-dark .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--documenter-dark .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--documenter-dark .level-item .title,html.theme--documenter-dark .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--documenter-dark .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--documenter-dark .level-left,html.theme--documenter-dark .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--documenter-dark .level-left .level-item.is-flexible,html.theme--documenter-dark .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level-left .level-item:not(:last-child),html.theme--documenter-dark .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--documenter-dark .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--documenter-dark .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level-left{display:flex}}html.theme--documenter-dark .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level-right{display:flex}}html.theme--documenter-dark .media{align-items:flex-start;display:flex;text-align:inherit}html.theme--documenter-dark .media .content:not(:last-child){margin-bottom:.75rem}html.theme--documenter-dark .media .media{border-top:1px solid rgba(94,109,111,0.5);display:flex;padding-top:.75rem}html.theme--documenter-dark .media .media .content:not(:last-child),html.theme--documenter-dark .media .media .control:not(:last-child){margin-bottom:.5rem}html.theme--documenter-dark .media .media .media{padding-top:.5rem}html.theme--documenter-dark .media .media .media+.media{margin-top:.5rem}html.theme--documenter-dark .media+.media{border-top:1px solid rgba(94,109,111,0.5);margin-top:1rem;padding-top:1rem}html.theme--documenter-dark .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--documenter-dark .media-left,html.theme--documenter-dark .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--documenter-dark .media-left{margin-right:1rem}html.theme--documenter-dark .media-right{margin-left:1rem}html.theme--documenter-dark .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){html.theme--documenter-dark .media-content{overflow-x:auto}}html.theme--documenter-dark .menu{font-size:1rem}html.theme--documenter-dark .menu.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}html.theme--documenter-dark .menu.is-medium{font-size:1.25rem}html.theme--documenter-dark .menu.is-large{font-size:1.5rem}html.theme--documenter-dark .menu-list{line-height:1.25}html.theme--documenter-dark .menu-list a{border-radius:3px;color:#fff;display:block;padding:0.5em 0.75em}html.theme--documenter-dark .menu-list a:hover{background-color:#282f2f;color:#f2f2f2}html.theme--documenter-dark .menu-list a.is-active{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .menu-list li ul{border-left:1px solid #5e6d6f;margin:.75em;padding-left:.75em}html.theme--documenter-dark .menu-label{color:#fff;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--documenter-dark .menu-label:not(:first-child){margin-top:1em}html.theme--documenter-dark .menu-label:not(:last-child){margin-bottom:1em}html.theme--documenter-dark .message{background-color:#282f2f;border-radius:.4em;font-size:1rem}html.theme--documenter-dark .message strong{color:currentColor}html.theme--documenter-dark .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--documenter-dark .message.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}html.theme--documenter-dark .message.is-medium{font-size:1.25rem}html.theme--documenter-dark .message.is-large{font-size:1.5rem}html.theme--documenter-dark .message.is-white{background-color:#fff}html.theme--documenter-dark .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .message.is-white .message-body{border-color:#fff}html.theme--documenter-dark .message.is-black{background-color:#fafafa}html.theme--documenter-dark .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .message.is-black .message-body{border-color:#0a0a0a}html.theme--documenter-dark .message.is-light{background-color:#f9fafb}html.theme--documenter-dark .message.is-light .message-header{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .message.is-light .message-body{border-color:#ecf0f1}html.theme--documenter-dark .message.is-dark,html.theme--documenter-dark .content kbd.message{background-color:#f9fafa}html.theme--documenter-dark .message.is-dark .message-header,html.theme--documenter-dark .content kbd.message .message-header{background-color:#282f2f;color:#fff}html.theme--documenter-dark .message.is-dark .message-body,html.theme--documenter-dark .content kbd.message .message-body{border-color:#282f2f}html.theme--documenter-dark .message.is-primary,html.theme--documenter-dark .docstring>section>a.message.docs-sourcelink{background-color:#f1f5f9}html.theme--documenter-dark .message.is-primary .message-header,html.theme--documenter-dark .docstring>section>a.message.docs-sourcelink .message-header{background-color:#375a7f;color:#fff}html.theme--documenter-dark .message.is-primary .message-body,html.theme--documenter-dark .docstring>section>a.message.docs-sourcelink .message-body{border-color:#375a7f;color:#4d7eb2}html.theme--documenter-dark .message.is-link{background-color:#edfdf9}html.theme--documenter-dark .message.is-link .message-header{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .message.is-link .message-body{border-color:#1abc9c;color:#15987e}html.theme--documenter-dark .message.is-info{background-color:#eff2fb}html.theme--documenter-dark .message.is-info .message-header{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .message.is-info .message-body{border-color:#3c5dcd;color:#3253c3}html.theme--documenter-dark .message.is-success{background-color:#effded}html.theme--documenter-dark .message.is-success .message-header{background-color:#259a12;color:#fff}html.theme--documenter-dark .message.is-success .message-body{border-color:#259a12;color:#2ec016}html.theme--documenter-dark .message.is-warning{background-color:#fefaec}html.theme--documenter-dark .message.is-warning .message-header{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .message.is-warning .message-body{border-color:#f4c72f;color:#8c6e07}html.theme--documenter-dark .message.is-danger{background-color:#fbefef}html.theme--documenter-dark .message.is-danger .message-header{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .message.is-danger .message-body{border-color:#cb3c33;color:#c03930}html.theme--documenter-dark .message-header{align-items:center;background-color:#fff;border-radius:.4em .4em 0 0;color:rgba(0,0,0,0.7);display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--documenter-dark .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}html.theme--documenter-dark .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--documenter-dark .message-body{border-color:#5e6d6f;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#fff;padding:1.25em 1.5em}html.theme--documenter-dark .message-body code,html.theme--documenter-dark .message-body pre{background-color:#fff}html.theme--documenter-dark .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--documenter-dark .modal.is-active{display:flex}html.theme--documenter-dark .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--documenter-dark .modal-content,html.theme--documenter-dark .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){html.theme--documenter-dark .modal-content,html.theme--documenter-dark .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--documenter-dark .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--documenter-dark .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--documenter-dark .modal-card-head,html.theme--documenter-dark .modal-card-foot{align-items:center;background-color:#282f2f;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--documenter-dark .modal-card-head{border-bottom:1px solid #5e6d6f;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--documenter-dark .modal-card-title{color:#f2f2f2;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--documenter-dark .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #5e6d6f}html.theme--documenter-dark .modal-card-foot .button:not(:last-child){margin-right:.5em}html.theme--documenter-dark .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--documenter-dark .navbar{background-color:#375a7f;min-height:4rem;position:relative;z-index:30}html.theme--documenter-dark .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-white .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-white .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--documenter-dark .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-black .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-black .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--documenter-dark .navbar.is-light{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#dde4e6;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-light .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-light .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#dde4e6;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#dde4e6;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}}html.theme--documenter-dark .navbar.is-dark,html.theme--documenter-dark .content kbd.navbar{background-color:#282f2f;color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-brand>.navbar-item,html.theme--documenter-dark .content kbd.navbar .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#1d2122;color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-burger,html.theme--documenter-dark .content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-dark .navbar-start>.navbar-item,html.theme--documenter-dark .content kbd.navbar .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-dark .navbar-end>.navbar-item,html.theme--documenter-dark .content kbd.navbar .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#1d2122;color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link::after,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link::after,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#1d2122;color:#fff}html.theme--documenter-dark .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#282f2f;color:#fff}}html.theme--documenter-dark .navbar.is-primary,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink{background-color:#375a7f;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-brand>.navbar-item,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-burger,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-primary .navbar-start>.navbar-item,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-primary .navbar-end>.navbar-item,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link::after,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link::after,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#375a7f;color:#fff}}html.theme--documenter-dark .navbar.is-link{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#17a689;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-link .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-link .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#17a689;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#17a689;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#1abc9c;color:#fff}}html.theme--documenter-dark .navbar.is-info{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#3151bf;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-info .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-info .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#3151bf;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3151bf;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3c5dcd;color:#fff}}html.theme--documenter-dark .navbar.is-success{background-color:#259a12;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#20830f;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-success .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-success .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#20830f;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#20830f;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#259a12;color:#fff}}html.theme--documenter-dark .navbar.is-warning{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#f3c017;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-warning .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-warning .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#f3c017;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f3c017;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#f4c72f;color:rgba(0,0,0,0.7)}}html.theme--documenter-dark .navbar.is-danger{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#b7362e;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-danger .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-danger .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#b7362e;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#b7362e;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#cb3c33;color:#fff}}html.theme--documenter-dark .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--documenter-dark .navbar.has-shadow{box-shadow:0 2px 0 0 #282f2f}html.theme--documenter-dark .navbar.is-fixed-bottom,html.theme--documenter-dark .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--documenter-dark .navbar.is-fixed-bottom{bottom:0}html.theme--documenter-dark .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #282f2f}html.theme--documenter-dark .navbar.is-fixed-top{top:0}html.theme--documenter-dark html.has-navbar-fixed-top,html.theme--documenter-dark body.has-navbar-fixed-top{padding-top:4rem}html.theme--documenter-dark html.has-navbar-fixed-bottom,html.theme--documenter-dark body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--documenter-dark .navbar-brand,html.theme--documenter-dark .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--documenter-dark .navbar-brand a.navbar-item:focus,html.theme--documenter-dark .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--documenter-dark .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--documenter-dark .navbar-burger{color:#fff;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--documenter-dark .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--documenter-dark .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--documenter-dark .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--documenter-dark .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--documenter-dark .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--documenter-dark .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--documenter-dark .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--documenter-dark .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--documenter-dark .navbar-menu{display:none}html.theme--documenter-dark .navbar-item,html.theme--documenter-dark .navbar-link{color:#fff;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--documenter-dark .navbar-item .icon:only-child,html.theme--documenter-dark .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--documenter-dark a.navbar-item,html.theme--documenter-dark .navbar-link{cursor:pointer}html.theme--documenter-dark a.navbar-item:focus,html.theme--documenter-dark a.navbar-item:focus-within,html.theme--documenter-dark a.navbar-item:hover,html.theme--documenter-dark a.navbar-item.is-active,html.theme--documenter-dark .navbar-link:focus,html.theme--documenter-dark .navbar-link:focus-within,html.theme--documenter-dark .navbar-link:hover,html.theme--documenter-dark .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#1abc9c}html.theme--documenter-dark .navbar-item{flex-grow:0;flex-shrink:0}html.theme--documenter-dark .navbar-item img{max-height:1.75rem}html.theme--documenter-dark .navbar-item.has-dropdown{padding:0}html.theme--documenter-dark .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--documenter-dark .navbar-item.is-tab:focus,html.theme--documenter-dark .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#1abc9c}html.theme--documenter-dark .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#1abc9c;border-bottom-style:solid;border-bottom-width:3px;color:#1abc9c;padding-bottom:calc(0.5rem - 3px)}html.theme--documenter-dark .navbar-content{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--documenter-dark .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--documenter-dark .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--documenter-dark .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--documenter-dark .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--documenter-dark .navbar>.container{display:block}html.theme--documenter-dark .navbar-brand .navbar-item,html.theme--documenter-dark .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--documenter-dark .navbar-link::after{display:none}html.theme--documenter-dark .navbar-menu{background-color:#375a7f;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--documenter-dark .navbar-menu.is-active{display:block}html.theme--documenter-dark .navbar.is-fixed-bottom-touch,html.theme--documenter-dark .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--documenter-dark .navbar.is-fixed-bottom-touch{bottom:0}html.theme--documenter-dark .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--documenter-dark .navbar.is-fixed-top-touch{top:0}html.theme--documenter-dark .navbar.is-fixed-top .navbar-menu,html.theme--documenter-dark .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--documenter-dark html.has-navbar-fixed-top-touch,html.theme--documenter-dark body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--documenter-dark html.has-navbar-fixed-bottom-touch,html.theme--documenter-dark body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar,html.theme--documenter-dark .navbar-menu,html.theme--documenter-dark .navbar-start,html.theme--documenter-dark .navbar-end{align-items:stretch;display:flex}html.theme--documenter-dark .navbar{min-height:4rem}html.theme--documenter-dark .navbar.is-spaced{padding:1rem 2rem}html.theme--documenter-dark .navbar.is-spaced .navbar-start,html.theme--documenter-dark .navbar.is-spaced .navbar-end{align-items:center}html.theme--documenter-dark .navbar.is-spaced a.navbar-item,html.theme--documenter-dark .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--documenter-dark .navbar.is-transparent a.navbar-item:focus,html.theme--documenter-dark .navbar.is-transparent a.navbar-item:hover,html.theme--documenter-dark .navbar.is-transparent a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-transparent .navbar-link:focus,html.theme--documenter-dark .navbar.is-transparent .navbar-link:hover,html.theme--documenter-dark .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#dbdee0}html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1abc9c}html.theme--documenter-dark .navbar-burger{display:none}html.theme--documenter-dark .navbar-item,html.theme--documenter-dark .navbar-link{align-items:center;display:flex}html.theme--documenter-dark .navbar-item.has-dropdown{align-items:stretch}html.theme--documenter-dark .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--documenter-dark .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--documenter-dark .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--documenter-dark .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--documenter-dark .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--documenter-dark .navbar-dropdown{background-color:#375a7f;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--documenter-dark .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--documenter-dark .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--documenter-dark .navbar-dropdown a.navbar-item:focus,html.theme--documenter-dark .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#dbdee0}html.theme--documenter-dark .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1abc9c}.navbar.is-spaced html.theme--documenter-dark .navbar-dropdown,html.theme--documenter-dark .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--documenter-dark .navbar-dropdown.is-right{left:auto;right:0}html.theme--documenter-dark .navbar-divider{display:block}html.theme--documenter-dark .navbar>.container .navbar-brand,html.theme--documenter-dark .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--documenter-dark .navbar>.container .navbar-menu,html.theme--documenter-dark .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--documenter-dark .navbar.is-fixed-bottom-desktop,html.theme--documenter-dark .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--documenter-dark .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--documenter-dark .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--documenter-dark .navbar.is-fixed-top-desktop{top:0}html.theme--documenter-dark html.has-navbar-fixed-top-desktop,html.theme--documenter-dark body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--documenter-dark html.has-navbar-fixed-bottom-desktop,html.theme--documenter-dark body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--documenter-dark html.has-spaced-navbar-fixed-top,html.theme--documenter-dark body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--documenter-dark html.has-spaced-navbar-fixed-bottom,html.theme--documenter-dark body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--documenter-dark a.navbar-item.is-active,html.theme--documenter-dark .navbar-link.is-active{color:#1abc9c}html.theme--documenter-dark a.navbar-item.is-active:not(:focus):not(:hover),html.theme--documenter-dark .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--documenter-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--documenter-dark .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--documenter-dark .pagination{font-size:1rem;margin:-.25rem}html.theme--documenter-dark .pagination.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}html.theme--documenter-dark .pagination.is-medium{font-size:1.25rem}html.theme--documenter-dark .pagination.is-large{font-size:1.5rem}html.theme--documenter-dark .pagination.is-rounded .pagination-previous,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--documenter-dark .pagination.is-rounded .pagination-next,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}html.theme--documenter-dark .pagination.is-rounded .pagination-link,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}html.theme--documenter-dark .pagination,html.theme--documenter-dark .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link{border-color:#5e6d6f;color:#1abc9c;min-width:2.5em}html.theme--documenter-dark .pagination-previous:hover,html.theme--documenter-dark .pagination-next:hover,html.theme--documenter-dark .pagination-link:hover{border-color:#8c9b9d;color:#1dd2af}html.theme--documenter-dark .pagination-previous:focus,html.theme--documenter-dark .pagination-next:focus,html.theme--documenter-dark .pagination-link:focus{border-color:#8c9b9d}html.theme--documenter-dark .pagination-previous:active,html.theme--documenter-dark .pagination-next:active,html.theme--documenter-dark .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--documenter-dark .pagination-previous[disabled],html.theme--documenter-dark .pagination-previous.is-disabled,html.theme--documenter-dark .pagination-next[disabled],html.theme--documenter-dark .pagination-next.is-disabled,html.theme--documenter-dark .pagination-link[disabled],html.theme--documenter-dark .pagination-link.is-disabled{background-color:#5e6d6f;border-color:#5e6d6f;box-shadow:none;color:#fff;opacity:0.5}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}html.theme--documenter-dark .pagination-link.is-current{background-color:#1abc9c;border-color:#1abc9c;color:#fff}html.theme--documenter-dark .pagination-ellipsis{color:#8c9b9d;pointer-events:none}html.theme--documenter-dark .pagination-list{flex-wrap:wrap}html.theme--documenter-dark .pagination-list li{list-style:none}@media screen and (max-width: 768px){html.theme--documenter-dark .pagination{flex-wrap:wrap}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis{margin-bottom:0;margin-top:0}html.theme--documenter-dark .pagination-previous{order:2}html.theme--documenter-dark .pagination-next{order:3}html.theme--documenter-dark .pagination{justify-content:space-between;margin-bottom:0;margin-top:0}html.theme--documenter-dark .pagination.is-centered .pagination-previous{order:1}html.theme--documenter-dark .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--documenter-dark .pagination.is-centered .pagination-next{order:3}html.theme--documenter-dark .pagination.is-right .pagination-previous{order:1}html.theme--documenter-dark .pagination.is-right .pagination-next{order:2}html.theme--documenter-dark .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--documenter-dark .panel{border-radius:8px;box-shadow:#171717;font-size:1rem}html.theme--documenter-dark .panel:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}html.theme--documenter-dark .panel.is-white .panel-block.is-active .panel-icon{color:#fff}html.theme--documenter-dark .panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}html.theme--documenter-dark .panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}html.theme--documenter-dark .panel.is-light .panel-heading{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .panel.is-light .panel-tabs a.is-active{border-bottom-color:#ecf0f1}html.theme--documenter-dark .panel.is-light .panel-block.is-active .panel-icon{color:#ecf0f1}html.theme--documenter-dark .panel.is-dark .panel-heading,html.theme--documenter-dark .content kbd.panel .panel-heading{background-color:#282f2f;color:#fff}html.theme--documenter-dark .panel.is-dark .panel-tabs a.is-active,html.theme--documenter-dark .content kbd.panel .panel-tabs a.is-active{border-bottom-color:#282f2f}html.theme--documenter-dark .panel.is-dark .panel-block.is-active .panel-icon,html.theme--documenter-dark .content kbd.panel .panel-block.is-active .panel-icon{color:#282f2f}html.theme--documenter-dark .panel.is-primary .panel-heading,html.theme--documenter-dark .docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#375a7f;color:#fff}html.theme--documenter-dark .panel.is-primary .panel-tabs a.is-active,html.theme--documenter-dark .docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#375a7f}html.theme--documenter-dark .panel.is-primary .panel-block.is-active .panel-icon,html.theme--documenter-dark .docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#375a7f}html.theme--documenter-dark .panel.is-link .panel-heading{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .panel.is-link .panel-tabs a.is-active{border-bottom-color:#1abc9c}html.theme--documenter-dark .panel.is-link .panel-block.is-active .panel-icon{color:#1abc9c}html.theme--documenter-dark .panel.is-info .panel-heading{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .panel.is-info .panel-tabs a.is-active{border-bottom-color:#3c5dcd}html.theme--documenter-dark .panel.is-info .panel-block.is-active .panel-icon{color:#3c5dcd}html.theme--documenter-dark .panel.is-success .panel-heading{background-color:#259a12;color:#fff}html.theme--documenter-dark .panel.is-success .panel-tabs a.is-active{border-bottom-color:#259a12}html.theme--documenter-dark .panel.is-success .panel-block.is-active .panel-icon{color:#259a12}html.theme--documenter-dark .panel.is-warning .panel-heading{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .panel.is-warning .panel-tabs a.is-active{border-bottom-color:#f4c72f}html.theme--documenter-dark .panel.is-warning .panel-block.is-active .panel-icon{color:#f4c72f}html.theme--documenter-dark .panel.is-danger .panel-heading{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .panel.is-danger .panel-tabs a.is-active{border-bottom-color:#cb3c33}html.theme--documenter-dark .panel.is-danger .panel-block.is-active .panel-icon{color:#cb3c33}html.theme--documenter-dark .panel-tabs:not(:last-child),html.theme--documenter-dark .panel-block:not(:last-child){border-bottom:1px solid #ededed}html.theme--documenter-dark .panel-heading{background-color:#343c3d;border-radius:8px 8px 0 0;color:#f2f2f2;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}html.theme--documenter-dark .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--documenter-dark .panel-tabs a{border-bottom:1px solid #5e6d6f;margin-bottom:-1px;padding:0.5em}html.theme--documenter-dark .panel-tabs a.is-active{border-bottom-color:#343c3d;color:#17a689}html.theme--documenter-dark .panel-list a{color:#fff}html.theme--documenter-dark .panel-list a:hover{color:#1abc9c}html.theme--documenter-dark .panel-block{align-items:center;color:#f2f2f2;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--documenter-dark .panel-block input[type="checkbox"]{margin-right:.75em}html.theme--documenter-dark .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--documenter-dark .panel-block.is-wrapped{flex-wrap:wrap}html.theme--documenter-dark .panel-block.is-active{border-left-color:#1abc9c;color:#17a689}html.theme--documenter-dark .panel-block.is-active .panel-icon{color:#1abc9c}html.theme--documenter-dark .panel-block:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}html.theme--documenter-dark a.panel-block,html.theme--documenter-dark label.panel-block{cursor:pointer}html.theme--documenter-dark a.panel-block:hover,html.theme--documenter-dark label.panel-block:hover{background-color:#282f2f}html.theme--documenter-dark .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#fff;margin-right:.75em}html.theme--documenter-dark .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--documenter-dark .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--documenter-dark .tabs a{align-items:center;border-bottom-color:#5e6d6f;border-bottom-style:solid;border-bottom-width:1px;color:#fff;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--documenter-dark .tabs a:hover{border-bottom-color:#f2f2f2;color:#f2f2f2}html.theme--documenter-dark .tabs li{display:block}html.theme--documenter-dark .tabs li.is-active a{border-bottom-color:#1abc9c;color:#1abc9c}html.theme--documenter-dark .tabs ul{align-items:center;border-bottom-color:#5e6d6f;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--documenter-dark .tabs ul.is-left{padding-right:0.75em}html.theme--documenter-dark .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--documenter-dark .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--documenter-dark .tabs .icon:first-child{margin-right:.5em}html.theme--documenter-dark .tabs .icon:last-child{margin-left:.5em}html.theme--documenter-dark .tabs.is-centered ul{justify-content:center}html.theme--documenter-dark .tabs.is-right ul{justify-content:flex-end}html.theme--documenter-dark .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--documenter-dark .tabs.is-boxed a:hover{background-color:#282f2f;border-bottom-color:#5e6d6f}html.theme--documenter-dark .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#5e6d6f;border-bottom-color:rgba(0,0,0,0) !important}html.theme--documenter-dark .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--documenter-dark .tabs.is-toggle a{border-color:#5e6d6f;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--documenter-dark .tabs.is-toggle a:hover{background-color:#282f2f;border-color:#8c9b9d;z-index:2}html.theme--documenter-dark .tabs.is-toggle li+li{margin-left:-1px}html.theme--documenter-dark .tabs.is-toggle li:first-child a{border-top-left-radius:.4em;border-bottom-left-radius:.4em}html.theme--documenter-dark .tabs.is-toggle li:last-child a{border-top-right-radius:.4em;border-bottom-right-radius:.4em}html.theme--documenter-dark .tabs.is-toggle li.is-active a{background-color:#1abc9c;border-color:#1abc9c;color:#fff;z-index:1}html.theme--documenter-dark .tabs.is-toggle ul{border-bottom:none}html.theme--documenter-dark .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}html.theme--documenter-dark .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}html.theme--documenter-dark .tabs.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}html.theme--documenter-dark .tabs.is-medium{font-size:1.25rem}html.theme--documenter-dark .tabs.is-large{font-size:1.5rem}html.theme--documenter-dark .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--documenter-dark .column.is-narrow{flex:none;width:unset}.columns.is-mobile>html.theme--documenter-dark .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--documenter-dark .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--documenter-dark .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--documenter-dark .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--documenter-dark .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--documenter-dark .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--documenter-dark .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--documenter-dark .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--documenter-dark .column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>html.theme--documenter-dark .column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>html.theme--documenter-dark .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--documenter-dark .column.is-narrow-mobile{flex:none;width:unset}html.theme--documenter-dark .column.is-full-mobile{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-mobile{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-mobile{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--documenter-dark .column.is-0-mobile{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-mobile{margin-left:0%}html.theme--documenter-dark .column.is-1-mobile{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-mobile{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-mobile{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-mobile{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-mobile{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-mobile{margin-left:25%}html.theme--documenter-dark .column.is-4-mobile{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-mobile{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-mobile{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-mobile{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-mobile{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-mobile{margin-left:50%}html.theme--documenter-dark .column.is-7-mobile{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-mobile{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-mobile{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-mobile{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-mobile{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-mobile{margin-left:75%}html.theme--documenter-dark .column.is-10-mobile{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-mobile{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-mobile{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-mobile{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-mobile{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .column.is-narrow,html.theme--documenter-dark .column.is-narrow-tablet{flex:none;width:unset}html.theme--documenter-dark .column.is-full,html.theme--documenter-dark .column.is-full-tablet{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters,html.theme--documenter-dark .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds,html.theme--documenter-dark .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half,html.theme--documenter-dark .column.is-half-tablet{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third,html.theme--documenter-dark .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter,html.theme--documenter-dark .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth,html.theme--documenter-dark .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths,html.theme--documenter-dark .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths,html.theme--documenter-dark .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths,html.theme--documenter-dark .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters,html.theme--documenter-dark .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds,html.theme--documenter-dark .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half,html.theme--documenter-dark .column.is-offset-half-tablet{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third,html.theme--documenter-dark .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter,html.theme--documenter-dark .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth,html.theme--documenter-dark .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths,html.theme--documenter-dark .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths,html.theme--documenter-dark .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths,html.theme--documenter-dark .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--documenter-dark .column.is-0,html.theme--documenter-dark .column.is-0-tablet{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0,html.theme--documenter-dark .column.is-offset-0-tablet{margin-left:0%}html.theme--documenter-dark .column.is-1,html.theme--documenter-dark .column.is-1-tablet{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1,html.theme--documenter-dark .column.is-offset-1-tablet{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2,html.theme--documenter-dark .column.is-2-tablet{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2,html.theme--documenter-dark .column.is-offset-2-tablet{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3,html.theme--documenter-dark .column.is-3-tablet{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3,html.theme--documenter-dark .column.is-offset-3-tablet{margin-left:25%}html.theme--documenter-dark .column.is-4,html.theme--documenter-dark .column.is-4-tablet{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4,html.theme--documenter-dark .column.is-offset-4-tablet{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5,html.theme--documenter-dark .column.is-5-tablet{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5,html.theme--documenter-dark .column.is-offset-5-tablet{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6,html.theme--documenter-dark .column.is-6-tablet{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6,html.theme--documenter-dark .column.is-offset-6-tablet{margin-left:50%}html.theme--documenter-dark .column.is-7,html.theme--documenter-dark .column.is-7-tablet{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7,html.theme--documenter-dark .column.is-offset-7-tablet{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8,html.theme--documenter-dark .column.is-8-tablet{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8,html.theme--documenter-dark .column.is-offset-8-tablet{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9,html.theme--documenter-dark .column.is-9-tablet{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9,html.theme--documenter-dark .column.is-offset-9-tablet{margin-left:75%}html.theme--documenter-dark .column.is-10,html.theme--documenter-dark .column.is-10-tablet{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10,html.theme--documenter-dark .column.is-offset-10-tablet{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11,html.theme--documenter-dark .column.is-11-tablet{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11,html.theme--documenter-dark .column.is-offset-11-tablet{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12,html.theme--documenter-dark .column.is-12-tablet{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12,html.theme--documenter-dark .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--documenter-dark .column.is-narrow-touch{flex:none;width:unset}html.theme--documenter-dark .column.is-full-touch{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-touch{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-touch{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-touch{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-touch{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-touch{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-touch{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-touch{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-touch{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--documenter-dark .column.is-0-touch{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-touch{margin-left:0%}html.theme--documenter-dark .column.is-1-touch{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-touch{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-touch{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-touch{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-touch{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-touch{margin-left:25%}html.theme--documenter-dark .column.is-4-touch{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-touch{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-touch{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-touch{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-touch{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-touch{margin-left:50%}html.theme--documenter-dark .column.is-7-touch{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-touch{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-touch{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-touch{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-touch{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-touch{margin-left:75%}html.theme--documenter-dark .column.is-10-touch{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-touch{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-touch{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-touch{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-touch{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--documenter-dark .column.is-narrow-desktop{flex:none;width:unset}html.theme--documenter-dark .column.is-full-desktop{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-desktop{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-desktop{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--documenter-dark .column.is-0-desktop{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-desktop{margin-left:0%}html.theme--documenter-dark .column.is-1-desktop{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-desktop{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-desktop{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-desktop{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-desktop{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-desktop{margin-left:25%}html.theme--documenter-dark .column.is-4-desktop{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-desktop{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-desktop{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-desktop{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-desktop{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-desktop{margin-left:50%}html.theme--documenter-dark .column.is-7-desktop{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-desktop{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-desktop{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-desktop{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-desktop{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-desktop{margin-left:75%}html.theme--documenter-dark .column.is-10-desktop{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-desktop{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-desktop{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-desktop{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-desktop{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--documenter-dark .column.is-narrow-widescreen{flex:none;width:unset}html.theme--documenter-dark .column.is-full-widescreen{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-widescreen{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-widescreen{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--documenter-dark .column.is-0-widescreen{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-widescreen{margin-left:0%}html.theme--documenter-dark .column.is-1-widescreen{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-widescreen{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-widescreen{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-widescreen{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-widescreen{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-widescreen{margin-left:25%}html.theme--documenter-dark .column.is-4-widescreen{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-widescreen{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-widescreen{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-widescreen{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-widescreen{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-widescreen{margin-left:50%}html.theme--documenter-dark .column.is-7-widescreen{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-widescreen{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-widescreen{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-widescreen{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-widescreen{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-widescreen{margin-left:75%}html.theme--documenter-dark .column.is-10-widescreen{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-widescreen{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-widescreen{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-widescreen{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-widescreen{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--documenter-dark .column.is-narrow-fullhd{flex:none;width:unset}html.theme--documenter-dark .column.is-full-fullhd{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-fullhd{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-fullhd{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--documenter-dark .column.is-0-fullhd{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-fullhd{margin-left:0%}html.theme--documenter-dark .column.is-1-fullhd{flex:none;width:8.33333337%}html.theme--documenter-dark .column.is-offset-1-fullhd{margin-left:8.33333337%}html.theme--documenter-dark .column.is-2-fullhd{flex:none;width:16.66666674%}html.theme--documenter-dark .column.is-offset-2-fullhd{margin-left:16.66666674%}html.theme--documenter-dark .column.is-3-fullhd{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-fullhd{margin-left:25%}html.theme--documenter-dark .column.is-4-fullhd{flex:none;width:33.33333337%}html.theme--documenter-dark .column.is-offset-4-fullhd{margin-left:33.33333337%}html.theme--documenter-dark .column.is-5-fullhd{flex:none;width:41.66666674%}html.theme--documenter-dark .column.is-offset-5-fullhd{margin-left:41.66666674%}html.theme--documenter-dark .column.is-6-fullhd{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-fullhd{margin-left:50%}html.theme--documenter-dark .column.is-7-fullhd{flex:none;width:58.33333337%}html.theme--documenter-dark .column.is-offset-7-fullhd{margin-left:58.33333337%}html.theme--documenter-dark .column.is-8-fullhd{flex:none;width:66.66666674%}html.theme--documenter-dark .column.is-offset-8-fullhd{margin-left:66.66666674%}html.theme--documenter-dark .column.is-9-fullhd{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-fullhd{margin-left:75%}html.theme--documenter-dark .column.is-10-fullhd{flex:none;width:83.33333337%}html.theme--documenter-dark .column.is-offset-10-fullhd{margin-left:83.33333337%}html.theme--documenter-dark .column.is-11-fullhd{flex:none;width:91.66666674%}html.theme--documenter-dark .column.is-offset-11-fullhd{margin-left:91.66666674%}html.theme--documenter-dark .column.is-12-fullhd{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-fullhd{margin-left:100%}}html.theme--documenter-dark .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--documenter-dark .columns:last-child{margin-bottom:-.75rem}html.theme--documenter-dark .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--documenter-dark .columns.is-centered{justify-content:center}html.theme--documenter-dark .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--documenter-dark .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--documenter-dark .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .columns.is-gapless:last-child{margin-bottom:0}html.theme--documenter-dark .columns.is-mobile{display:flex}html.theme--documenter-dark .columns.is-multiline{flex-wrap:wrap}html.theme--documenter-dark .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-desktop{display:flex}}html.theme--documenter-dark .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--documenter-dark .columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--documenter-dark .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--documenter-dark .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--documenter-dark .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--documenter-dark .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--documenter-dark .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--documenter-dark .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--documenter-dark .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--documenter-dark .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--documenter-dark .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--documenter-dark .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--documenter-dark .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--documenter-dark .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--documenter-dark .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--documenter-dark .tile.is-child{margin:0 !important}html.theme--documenter-dark .tile.is-parent{padding:.75rem}html.theme--documenter-dark .tile.is-vertical{flex-direction:column}html.theme--documenter-dark .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--documenter-dark .tile:not(.is-child){display:flex}html.theme--documenter-dark .tile.is-1{flex:none;width:8.33333337%}html.theme--documenter-dark .tile.is-2{flex:none;width:16.66666674%}html.theme--documenter-dark .tile.is-3{flex:none;width:25%}html.theme--documenter-dark .tile.is-4{flex:none;width:33.33333337%}html.theme--documenter-dark .tile.is-5{flex:none;width:41.66666674%}html.theme--documenter-dark .tile.is-6{flex:none;width:50%}html.theme--documenter-dark .tile.is-7{flex:none;width:58.33333337%}html.theme--documenter-dark .tile.is-8{flex:none;width:66.66666674%}html.theme--documenter-dark .tile.is-9{flex:none;width:75%}html.theme--documenter-dark .tile.is-10{flex:none;width:83.33333337%}html.theme--documenter-dark .tile.is-11{flex:none;width:91.66666674%}html.theme--documenter-dark .tile.is-12{flex:none;width:100%}}html.theme--documenter-dark .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--documenter-dark .hero .navbar{background:none}html.theme--documenter-dark .hero .tabs ul{border-bottom:none}html.theme--documenter-dark .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-white strong{color:inherit}html.theme--documenter-dark .hero.is-white .title{color:#0a0a0a}html.theme--documenter-dark .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--documenter-dark .hero.is-white .subtitle a:not(.button),html.theme--documenter-dark .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-white .navbar-menu{background-color:#fff}}html.theme--documenter-dark .hero.is-white .navbar-item,html.theme--documenter-dark .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--documenter-dark .hero.is-white a.navbar-item:hover,html.theme--documenter-dark .hero.is-white a.navbar-item.is-active,html.theme--documenter-dark .hero.is-white .navbar-link:hover,html.theme--documenter-dark .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--documenter-dark .hero.is-white .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}html.theme--documenter-dark .hero.is-white .tabs.is-boxed a,html.theme--documenter-dark .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--documenter-dark .hero.is-white .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-white .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-white .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--documenter-dark .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--documenter-dark .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-black strong{color:inherit}html.theme--documenter-dark .hero.is-black .title{color:#fff}html.theme--documenter-dark .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-black .subtitle a:not(.button),html.theme--documenter-dark .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--documenter-dark .hero.is-black .navbar-item,html.theme--documenter-dark .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-black a.navbar-item:hover,html.theme--documenter-dark .hero.is-black a.navbar-item.is-active,html.theme--documenter-dark .hero.is-black .navbar-link:hover,html.theme--documenter-dark .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--documenter-dark .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-black .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}html.theme--documenter-dark .hero.is-black .tabs.is-boxed a,html.theme--documenter-dark .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-black .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-black .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-black .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--documenter-dark .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--documenter-dark .hero.is-light{background-color:#ecf0f1;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-light strong{color:inherit}html.theme--documenter-dark .hero.is-light .title{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light .subtitle{color:rgba(0,0,0,0.9)}html.theme--documenter-dark .hero.is-light .subtitle a:not(.button),html.theme--documenter-dark .hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-light .navbar-menu{background-color:#ecf0f1}}html.theme--documenter-dark .hero.is-light .navbar-item,html.theme--documenter-dark .hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light a.navbar-item:hover,html.theme--documenter-dark .hero.is-light a.navbar-item.is-active,html.theme--documenter-dark .hero.is-light .navbar-link:hover,html.theme--documenter-dark .hero.is-light .navbar-link.is-active{background-color:#dde4e6;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--documenter-dark .hero.is-light .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-light .tabs li.is-active a{color:#ecf0f1 !important;opacity:1}html.theme--documenter-dark .hero.is-light .tabs.is-boxed a,html.theme--documenter-dark .hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-light .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-light .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-light .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#ecf0f1}html.theme--documenter-dark .hero.is-light.is-bold{background-image:linear-gradient(141deg, #cadfe0 0%, #ecf0f1 71%, #fafbfc 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #cadfe0 0%, #ecf0f1 71%, #fafbfc 100%)}}html.theme--documenter-dark .hero.is-dark,html.theme--documenter-dark .content kbd.hero{background-color:#282f2f;color:#fff}html.theme--documenter-dark .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-dark strong,html.theme--documenter-dark .content kbd.hero strong{color:inherit}html.theme--documenter-dark .hero.is-dark .title,html.theme--documenter-dark .content kbd.hero .title{color:#fff}html.theme--documenter-dark .hero.is-dark .subtitle,html.theme--documenter-dark .content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-dark .subtitle a:not(.button),html.theme--documenter-dark .content kbd.hero .subtitle a:not(.button),html.theme--documenter-dark .hero.is-dark .subtitle strong,html.theme--documenter-dark .content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-dark .navbar-menu,html.theme--documenter-dark .content kbd.hero .navbar-menu{background-color:#282f2f}}html.theme--documenter-dark .hero.is-dark .navbar-item,html.theme--documenter-dark .content kbd.hero .navbar-item,html.theme--documenter-dark .hero.is-dark .navbar-link,html.theme--documenter-dark .content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-dark a.navbar-item:hover,html.theme--documenter-dark .content kbd.hero a.navbar-item:hover,html.theme--documenter-dark .hero.is-dark a.navbar-item.is-active,html.theme--documenter-dark .content kbd.hero a.navbar-item.is-active,html.theme--documenter-dark .hero.is-dark .navbar-link:hover,html.theme--documenter-dark .content kbd.hero .navbar-link:hover,html.theme--documenter-dark .hero.is-dark .navbar-link.is-active,html.theme--documenter-dark .content kbd.hero .navbar-link.is-active{background-color:#1d2122;color:#fff}html.theme--documenter-dark .hero.is-dark .tabs a,html.theme--documenter-dark .content kbd.hero .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-dark .tabs a:hover,html.theme--documenter-dark .content kbd.hero .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-dark .tabs li.is-active a,html.theme--documenter-dark .content kbd.hero .tabs li.is-active a{color:#282f2f !important;opacity:1}html.theme--documenter-dark .hero.is-dark .tabs.is-boxed a,html.theme--documenter-dark .content kbd.hero .tabs.is-boxed a,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle a,html.theme--documenter-dark .content kbd.hero .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-dark .tabs.is-boxed a:hover,html.theme--documenter-dark .content kbd.hero .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle a:hover,html.theme--documenter-dark .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--documenter-dark .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--documenter-dark .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#282f2f}html.theme--documenter-dark .hero.is-dark.is-bold,html.theme--documenter-dark .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #0f1615 0%, #282f2f 71%, #313c40 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-dark.is-bold .navbar-menu,html.theme--documenter-dark .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0f1615 0%, #282f2f 71%, #313c40 100%)}}html.theme--documenter-dark .hero.is-primary,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink{background-color:#375a7f;color:#fff}html.theme--documenter-dark .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-primary strong,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--documenter-dark .hero.is-primary .title,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--documenter-dark .hero.is-primary .subtitle,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-primary .subtitle a:not(.button),html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--documenter-dark .hero.is-primary .subtitle strong,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-primary .navbar-menu,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#375a7f}}html.theme--documenter-dark .hero.is-primary .navbar-item,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--documenter-dark .hero.is-primary .navbar-link,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-primary a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--documenter-dark .hero.is-primary a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--documenter-dark .hero.is-primary .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--documenter-dark .hero.is-primary .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .hero.is-primary .tabs a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-primary .tabs a:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-primary .tabs li.is-active a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#375a7f !important;opacity:1}html.theme--documenter-dark .hero.is-primary .tabs.is-boxed a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-primary .tabs.is-boxed a:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle a:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#375a7f}html.theme--documenter-dark .hero.is-primary.is-bold,html.theme--documenter-dark .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #214b62 0%, #375a7f 71%, #3a5796 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-primary.is-bold .navbar-menu,html.theme--documenter-dark .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #214b62 0%, #375a7f 71%, #3a5796 100%)}}html.theme--documenter-dark .hero.is-link{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-link strong{color:inherit}html.theme--documenter-dark .hero.is-link .title{color:#fff}html.theme--documenter-dark .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-link .subtitle a:not(.button),html.theme--documenter-dark .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-link .navbar-menu{background-color:#1abc9c}}html.theme--documenter-dark .hero.is-link .navbar-item,html.theme--documenter-dark .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-link a.navbar-item:hover,html.theme--documenter-dark .hero.is-link a.navbar-item.is-active,html.theme--documenter-dark .hero.is-link .navbar-link:hover,html.theme--documenter-dark .hero.is-link .navbar-link.is-active{background-color:#17a689;color:#fff}html.theme--documenter-dark .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-link .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-link .tabs li.is-active a{color:#1abc9c !important;opacity:1}html.theme--documenter-dark .hero.is-link .tabs.is-boxed a,html.theme--documenter-dark .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-link .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-link .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-link .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#1abc9c}html.theme--documenter-dark .hero.is-link.is-bold{background-image:linear-gradient(141deg, #0c9764 0%, #1abc9c 71%, #17d8d2 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0c9764 0%, #1abc9c 71%, #17d8d2 100%)}}html.theme--documenter-dark .hero.is-info{background-color:#3c5dcd;color:#fff}html.theme--documenter-dark .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-info strong{color:inherit}html.theme--documenter-dark .hero.is-info .title{color:#fff}html.theme--documenter-dark .hero.is-info .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-info .subtitle a:not(.button),html.theme--documenter-dark .hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-info .navbar-menu{background-color:#3c5dcd}}html.theme--documenter-dark .hero.is-info .navbar-item,html.theme--documenter-dark .hero.is-info .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-info a.navbar-item:hover,html.theme--documenter-dark .hero.is-info a.navbar-item.is-active,html.theme--documenter-dark .hero.is-info .navbar-link:hover,html.theme--documenter-dark .hero.is-info .navbar-link.is-active{background-color:#3151bf;color:#fff}html.theme--documenter-dark .hero.is-info .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-info .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-info .tabs li.is-active a{color:#3c5dcd !important;opacity:1}html.theme--documenter-dark .hero.is-info .tabs.is-boxed a,html.theme--documenter-dark .hero.is-info .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-info .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-info .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-info .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3c5dcd}html.theme--documenter-dark .hero.is-info.is-bold{background-image:linear-gradient(141deg, #215bb5 0%, #3c5dcd 71%, #4b53d8 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #215bb5 0%, #3c5dcd 71%, #4b53d8 100%)}}html.theme--documenter-dark .hero.is-success{background-color:#259a12;color:#fff}html.theme--documenter-dark .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-success strong{color:inherit}html.theme--documenter-dark .hero.is-success .title{color:#fff}html.theme--documenter-dark .hero.is-success .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-success .subtitle a:not(.button),html.theme--documenter-dark .hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-success .navbar-menu{background-color:#259a12}}html.theme--documenter-dark .hero.is-success .navbar-item,html.theme--documenter-dark .hero.is-success .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-success a.navbar-item:hover,html.theme--documenter-dark .hero.is-success a.navbar-item.is-active,html.theme--documenter-dark .hero.is-success .navbar-link:hover,html.theme--documenter-dark .hero.is-success .navbar-link.is-active{background-color:#20830f;color:#fff}html.theme--documenter-dark .hero.is-success .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-success .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-success .tabs li.is-active a{color:#259a12 !important;opacity:1}html.theme--documenter-dark .hero.is-success .tabs.is-boxed a,html.theme--documenter-dark .hero.is-success .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-success .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-success .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-success .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#259a12}html.theme--documenter-dark .hero.is-success.is-bold{background-image:linear-gradient(141deg, #287207 0%, #259a12 71%, #10b614 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #287207 0%, #259a12 71%, #10b614 100%)}}html.theme--documenter-dark .hero.is-warning{background-color:#f4c72f;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-warning strong{color:inherit}html.theme--documenter-dark .hero.is-warning .title{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}html.theme--documenter-dark .hero.is-warning .subtitle a:not(.button),html.theme--documenter-dark .hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-warning .navbar-menu{background-color:#f4c72f}}html.theme--documenter-dark .hero.is-warning .navbar-item,html.theme--documenter-dark .hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning a.navbar-item:hover,html.theme--documenter-dark .hero.is-warning a.navbar-item.is-active,html.theme--documenter-dark .hero.is-warning .navbar-link:hover,html.theme--documenter-dark .hero.is-warning .navbar-link.is-active{background-color:#f3c017;color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}html.theme--documenter-dark .hero.is-warning .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-warning .tabs li.is-active a{color:#f4c72f !important;opacity:1}html.theme--documenter-dark .hero.is-warning .tabs.is-boxed a,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}html.theme--documenter-dark .hero.is-warning .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f4c72f}html.theme--documenter-dark .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #f09100 0%, #f4c72f 71%, #faef42 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #f09100 0%, #f4c72f 71%, #faef42 100%)}}html.theme--documenter-dark .hero.is-danger{background-color:#cb3c33;color:#fff}html.theme--documenter-dark .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-danger strong{color:inherit}html.theme--documenter-dark .hero.is-danger .title{color:#fff}html.theme--documenter-dark .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-danger .subtitle a:not(.button),html.theme--documenter-dark .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-danger .navbar-menu{background-color:#cb3c33}}html.theme--documenter-dark .hero.is-danger .navbar-item,html.theme--documenter-dark .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-danger a.navbar-item:hover,html.theme--documenter-dark .hero.is-danger a.navbar-item.is-active,html.theme--documenter-dark .hero.is-danger .navbar-link:hover,html.theme--documenter-dark .hero.is-danger .navbar-link.is-active{background-color:#b7362e;color:#fff}html.theme--documenter-dark .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-danger .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-danger .tabs li.is-active a{color:#cb3c33 !important;opacity:1}html.theme--documenter-dark .hero.is-danger .tabs.is-boxed a,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-danger .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#cb3c33}html.theme--documenter-dark .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #ac1f2e 0%, #cb3c33 71%, #d66341 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ac1f2e 0%, #cb3c33 71%, #d66341 100%)}}html.theme--documenter-dark .hero.is-small .hero-body,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero.is-large .hero-body{padding:18rem 6rem}}html.theme--documenter-dark .hero.is-halfheight .hero-body,html.theme--documenter-dark .hero.is-fullheight .hero-body,html.theme--documenter-dark .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--documenter-dark .hero.is-halfheight .hero-body>.container,html.theme--documenter-dark .hero.is-fullheight .hero-body>.container,html.theme--documenter-dark .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .hero.is-halfheight{min-height:50vh}html.theme--documenter-dark .hero.is-fullheight{min-height:100vh}html.theme--documenter-dark .hero-video{overflow:hidden}html.theme--documenter-dark .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--documenter-dark .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--documenter-dark .hero-video{display:none}}html.theme--documenter-dark .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--documenter-dark .hero-buttons .button{display:flex}html.theme--documenter-dark .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero-buttons{display:flex;justify-content:center}html.theme--documenter-dark .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--documenter-dark .hero-head,html.theme--documenter-dark .hero-foot{flex-grow:0;flex-shrink:0}html.theme--documenter-dark .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero-body{padding:3rem 3rem}}html.theme--documenter-dark .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--documenter-dark .section{padding:3rem 3rem}html.theme--documenter-dark .section.is-medium{padding:9rem 4.5rem}html.theme--documenter-dark .section.is-large{padding:18rem 6rem}}html.theme--documenter-dark .footer{background-color:#282f2f;padding:3rem 1.5rem 6rem}html.theme--documenter-dark hr{height:1px}html.theme--documenter-dark h6{text-transform:uppercase;letter-spacing:0.5px}html.theme--documenter-dark .hero{background-color:#343c3d}html.theme--documenter-dark a{transition:all 200ms ease}html.theme--documenter-dark .button{transition:all 200ms ease;border-width:1px;color:#fff}html.theme--documenter-dark .button.is-active,html.theme--documenter-dark .button.is-focused,html.theme--documenter-dark .button:active,html.theme--documenter-dark .button:focus{box-shadow:0 0 0 2px rgba(140,155,157,0.5)}html.theme--documenter-dark .button.is-white.is-hovered,html.theme--documenter-dark .button.is-white:hover{background-color:#fff}html.theme--documenter-dark .button.is-white.is-active,html.theme--documenter-dark .button.is-white.is-focused,html.theme--documenter-dark .button.is-white:active,html.theme--documenter-dark .button.is-white:focus{border-color:#fff;box-shadow:0 0 0 2px rgba(255,255,255,0.5)}html.theme--documenter-dark .button.is-black.is-hovered,html.theme--documenter-dark .button.is-black:hover{background-color:#1d1d1d}html.theme--documenter-dark .button.is-black.is-active,html.theme--documenter-dark .button.is-black.is-focused,html.theme--documenter-dark .button.is-black:active,html.theme--documenter-dark .button.is-black:focus{border-color:#0a0a0a;box-shadow:0 0 0 2px rgba(10,10,10,0.5)}html.theme--documenter-dark .button.is-light.is-hovered,html.theme--documenter-dark .button.is-light:hover{background-color:#fff}html.theme--documenter-dark .button.is-light.is-active,html.theme--documenter-dark .button.is-light.is-focused,html.theme--documenter-dark .button.is-light:active,html.theme--documenter-dark .button.is-light:focus{border-color:#ecf0f1;box-shadow:0 0 0 2px rgba(236,240,241,0.5)}html.theme--documenter-dark .button.is-dark.is-hovered,html.theme--documenter-dark .content kbd.button.is-hovered,html.theme--documenter-dark .button.is-dark:hover,html.theme--documenter-dark .content kbd.button:hover{background-color:#3a4344}html.theme--documenter-dark .button.is-dark.is-active,html.theme--documenter-dark .content kbd.button.is-active,html.theme--documenter-dark .button.is-dark.is-focused,html.theme--documenter-dark .content kbd.button.is-focused,html.theme--documenter-dark .button.is-dark:active,html.theme--documenter-dark .content kbd.button:active,html.theme--documenter-dark .button.is-dark:focus,html.theme--documenter-dark .content kbd.button:focus{border-color:#282f2f;box-shadow:0 0 0 2px rgba(40,47,47,0.5)}html.theme--documenter-dark .button.is-primary.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-hovered.docs-sourcelink,html.theme--documenter-dark .button.is-primary:hover,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:hover{background-color:#436d9a}html.theme--documenter-dark .button.is-primary.is-active,html.theme--documenter-dark .docstring>section>a.button.is-active.docs-sourcelink,html.theme--documenter-dark .button.is-primary.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-focused.docs-sourcelink,html.theme--documenter-dark .button.is-primary:active,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:active,html.theme--documenter-dark .button.is-primary:focus,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:focus{border-color:#375a7f;box-shadow:0 0 0 2px rgba(55,90,127,0.5)}html.theme--documenter-dark .button.is-link.is-hovered,html.theme--documenter-dark .button.is-link:hover{background-color:#1fdeb8}html.theme--documenter-dark .button.is-link.is-active,html.theme--documenter-dark .button.is-link.is-focused,html.theme--documenter-dark .button.is-link:active,html.theme--documenter-dark .button.is-link:focus{border-color:#1abc9c;box-shadow:0 0 0 2px rgba(26,188,156,0.5)}html.theme--documenter-dark .button.is-info.is-hovered,html.theme--documenter-dark .button.is-info:hover{background-color:#5a76d5}html.theme--documenter-dark .button.is-info.is-active,html.theme--documenter-dark .button.is-info.is-focused,html.theme--documenter-dark .button.is-info:active,html.theme--documenter-dark .button.is-info:focus{border-color:#3c5dcd;box-shadow:0 0 0 2px rgba(60,93,205,0.5)}html.theme--documenter-dark .button.is-success.is-hovered,html.theme--documenter-dark .button.is-success:hover{background-color:#2dbc16}html.theme--documenter-dark .button.is-success.is-active,html.theme--documenter-dark .button.is-success.is-focused,html.theme--documenter-dark .button.is-success:active,html.theme--documenter-dark .button.is-success:focus{border-color:#259a12;box-shadow:0 0 0 2px rgba(37,154,18,0.5)}html.theme--documenter-dark .button.is-warning.is-hovered,html.theme--documenter-dark .button.is-warning:hover{background-color:#f6d153}html.theme--documenter-dark .button.is-warning.is-active,html.theme--documenter-dark .button.is-warning.is-focused,html.theme--documenter-dark .button.is-warning:active,html.theme--documenter-dark .button.is-warning:focus{border-color:#f4c72f;box-shadow:0 0 0 2px rgba(244,199,47,0.5)}html.theme--documenter-dark .button.is-danger.is-hovered,html.theme--documenter-dark .button.is-danger:hover{background-color:#d35951}html.theme--documenter-dark .button.is-danger.is-active,html.theme--documenter-dark .button.is-danger.is-focused,html.theme--documenter-dark .button.is-danger:active,html.theme--documenter-dark .button.is-danger:focus{border-color:#cb3c33;box-shadow:0 0 0 2px rgba(203,60,51,0.5)}html.theme--documenter-dark .label{color:#dbdee0}html.theme--documenter-dark .button,html.theme--documenter-dark .control.has-icons-left .icon,html.theme--documenter-dark .control.has-icons-right .icon,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .select,html.theme--documenter-dark .select select,html.theme--documenter-dark .textarea{height:2.5em}html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em}html.theme--documenter-dark .select:after,html.theme--documenter-dark .select select{border-width:1px}html.theme--documenter-dark .control.has-addons .button,html.theme--documenter-dark .control.has-addons .input,html.theme--documenter-dark .control.has-addons #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .control.has-addons form.docs-search>input,html.theme--documenter-dark .control.has-addons .select{margin-right:-1px}html.theme--documenter-dark .notification{background-color:#343c3d}html.theme--documenter-dark .card{box-shadow:none;border:1px solid #343c3d;background-color:#282f2f;border-radius:.4em}html.theme--documenter-dark .card .card-image img{border-radius:.4em .4em 0 0}html.theme--documenter-dark .card .card-header{box-shadow:none;background-color:rgba(18,18,18,0.2);border-radius:.4em .4em 0 0}html.theme--documenter-dark .card .card-footer{background-color:rgba(18,18,18,0.2)}html.theme--documenter-dark .card .card-footer,html.theme--documenter-dark .card .card-footer-item{border-width:1px;border-color:#343c3d}html.theme--documenter-dark .notification.is-white a:not(.button){color:#0a0a0a;text-decoration:underline}html.theme--documenter-dark .notification.is-black a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-light a:not(.button){color:rgba(0,0,0,0.7);text-decoration:underline}html.theme--documenter-dark .notification.is-dark a:not(.button),html.theme--documenter-dark .content kbd.notification a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-primary a:not(.button),html.theme--documenter-dark .docstring>section>a.notification.docs-sourcelink a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-link a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-info a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-success a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-warning a:not(.button){color:rgba(0,0,0,0.7);text-decoration:underline}html.theme--documenter-dark .notification.is-danger a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .tag,html.theme--documenter-dark .content kbd,html.theme--documenter-dark .docstring>section>a.docs-sourcelink{border-radius:.4em}html.theme--documenter-dark .menu-list a{transition:all 300ms ease}html.theme--documenter-dark .modal-card-body{background-color:#282f2f}html.theme--documenter-dark .modal-card-foot,html.theme--documenter-dark .modal-card-head{border-color:#343c3d}html.theme--documenter-dark .message-header{font-weight:700;background-color:#343c3d;color:#fff}html.theme--documenter-dark .message-body{border-width:1px;border-color:#343c3d}html.theme--documenter-dark .navbar{border-radius:.4em}html.theme--documenter-dark .navbar.is-transparent{background:none}html.theme--documenter-dark .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#1abc9c}@media screen and (max-width: 1055px){html.theme--documenter-dark .navbar .navbar-menu{background-color:#375a7f;border-radius:0 0 .4em .4em}}html.theme--documenter-dark .hero .navbar,html.theme--documenter-dark body>.navbar{border-radius:0}html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-previous{border-width:1px}html.theme--documenter-dark .panel-block,html.theme--documenter-dark .panel-heading,html.theme--documenter-dark .panel-tabs{border-width:1px}html.theme--documenter-dark .panel-block:first-child,html.theme--documenter-dark .panel-heading:first-child,html.theme--documenter-dark .panel-tabs:first-child{border-top-width:1px}html.theme--documenter-dark .panel-heading{font-weight:700}html.theme--documenter-dark .panel-tabs a{border-width:1px;margin-bottom:-1px}html.theme--documenter-dark .panel-tabs a.is-active{border-bottom-color:#17a689}html.theme--documenter-dark .panel-block:hover{color:#1dd2af}html.theme--documenter-dark .panel-block:hover .panel-icon{color:#1dd2af}html.theme--documenter-dark .panel-block.is-active .panel-icon{color:#17a689}html.theme--documenter-dark .tabs a{border-bottom-width:1px;margin-bottom:-1px}html.theme--documenter-dark .tabs ul{border-bottom-width:1px}html.theme--documenter-dark .tabs.is-boxed a{border-width:1px}html.theme--documenter-dark .tabs.is-boxed li.is-active a{background-color:#1f2424}html.theme--documenter-dark .tabs.is-toggle li a{border-width:1px;margin-bottom:0}html.theme--documenter-dark .tabs.is-toggle li+li{margin-left:-1px}html.theme--documenter-dark .hero.is-white .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-black .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-light .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-dark .navbar .navbar-dropdown .navbar-item:hover,html.theme--documenter-dark .content kbd.hero .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-primary .navbar .navbar-dropdown .navbar-item:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-link .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-info .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-success .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-warning .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-danger .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark h1 .docs-heading-anchor,html.theme--documenter-dark h1 .docs-heading-anchor:hover,html.theme--documenter-dark h1 .docs-heading-anchor:visited,html.theme--documenter-dark h2 .docs-heading-anchor,html.theme--documenter-dark h2 .docs-heading-anchor:hover,html.theme--documenter-dark h2 .docs-heading-anchor:visited,html.theme--documenter-dark h3 .docs-heading-anchor,html.theme--documenter-dark h3 .docs-heading-anchor:hover,html.theme--documenter-dark h3 .docs-heading-anchor:visited,html.theme--documenter-dark h4 .docs-heading-anchor,html.theme--documenter-dark h4 .docs-heading-anchor:hover,html.theme--documenter-dark h4 .docs-heading-anchor:visited,html.theme--documenter-dark h5 .docs-heading-anchor,html.theme--documenter-dark h5 .docs-heading-anchor:hover,html.theme--documenter-dark h5 .docs-heading-anchor:visited,html.theme--documenter-dark h6 .docs-heading-anchor,html.theme--documenter-dark h6 .docs-heading-anchor:hover,html.theme--documenter-dark h6 .docs-heading-anchor:visited{color:#f2f2f2}html.theme--documenter-dark h1 .docs-heading-anchor-permalink,html.theme--documenter-dark h2 .docs-heading-anchor-permalink,html.theme--documenter-dark h3 .docs-heading-anchor-permalink,html.theme--documenter-dark h4 .docs-heading-anchor-permalink,html.theme--documenter-dark h5 .docs-heading-anchor-permalink,html.theme--documenter-dark h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--documenter-dark h1 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h2 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h3 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h4 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h5 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}html.theme--documenter-dark h1:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h2:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h3:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h4:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h5:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--documenter-dark .docs-light-only{display:none !important}html.theme--documenter-dark pre{position:relative;overflow:hidden}html.theme--documenter-dark pre code,html.theme--documenter-dark pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--documenter-dark pre code:first-of-type,html.theme--documenter-dark pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--documenter-dark pre code:last-of-type,html.theme--documenter-dark pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--documenter-dark pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#fff;cursor:pointer;text-align:center}html.theme--documenter-dark pre .copy-button:focus,html.theme--documenter-dark pre .copy-button:hover{opacity:1;background:rgba(255,255,255,0.1);color:#1abc9c}html.theme--documenter-dark pre .copy-button.success{color:#259a12;opacity:1}html.theme--documenter-dark pre .copy-button.error{color:#cb3c33;opacity:1}html.theme--documenter-dark pre:hover .copy-button{opacity:1}html.theme--documenter-dark .admonition{background-color:#282f2f;border-style:solid;border-width:2px;border-color:#dbdee0;border-radius:4px;font-size:1rem}html.theme--documenter-dark .admonition strong{color:currentColor}html.theme--documenter-dark .admonition.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}html.theme--documenter-dark .admonition.is-medium{font-size:1.25rem}html.theme--documenter-dark .admonition.is-large{font-size:1.5rem}html.theme--documenter-dark .admonition.is-default{background-color:#282f2f;border-color:#dbdee0}html.theme--documenter-dark .admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#dbdee0}html.theme--documenter-dark .admonition.is-default>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-info{background-color:#282f2f;border-color:#3c5dcd}html.theme--documenter-dark .admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#3c5dcd}html.theme--documenter-dark .admonition.is-info>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-success{background-color:#282f2f;border-color:#259a12}html.theme--documenter-dark .admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#259a12}html.theme--documenter-dark .admonition.is-success>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-warning{background-color:#282f2f;border-color:#f4c72f}html.theme--documenter-dark .admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#f4c72f}html.theme--documenter-dark .admonition.is-warning>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-danger{background-color:#282f2f;border-color:#cb3c33}html.theme--documenter-dark .admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#cb3c33}html.theme--documenter-dark .admonition.is-danger>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-compat{background-color:#282f2f;border-color:#3489da}html.theme--documenter-dark .admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#3489da}html.theme--documenter-dark .admonition.is-compat>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-todo{background-color:#282f2f;border-color:#9558b2}html.theme--documenter-dark .admonition.is-todo>.admonition-header{background-color:rgba(0,0,0,0);color:#9558b2}html.theme--documenter-dark .admonition.is-todo>.admonition-body{color:#fff}html.theme--documenter-dark .admonition-header{color:#dbdee0;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--documenter-dark .admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--documenter-dark details.admonition.is-details>.admonition-header{list-style:none}html.theme--documenter-dark details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}html.theme--documenter-dark details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}html.theme--documenter-dark .admonition-body{color:#fff;padding:0.5rem .75rem}html.theme--documenter-dark .admonition-body pre{background-color:#282f2f}html.theme--documenter-dark .admonition-body code{background-color:rgba(255,255,255,0.05)}html.theme--documenter-dark .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #5e6d6f;border-radius:4px;box-shadow:none;max-width:100%}html.theme--documenter-dark .docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#282f2f;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #5e6d6f;overflow:auto}html.theme--documenter-dark .docstring>header code{background-color:transparent}html.theme--documenter-dark .docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}html.theme--documenter-dark .docstring>header .docstring-binding{margin-right:0.3em}html.theme--documenter-dark .docstring>header .docstring-category{margin-left:0.3em}html.theme--documenter-dark .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #5e6d6f}html.theme--documenter-dark .docstring>section:last-child{border-bottom:none}html.theme--documenter-dark .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--documenter-dark .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--documenter-dark .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--documenter-dark .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--documenter-dark .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--documenter-dark .documenter-example-output{background-color:#1f2424}html.theme--documenter-dark .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#282f2f;color:#fff;border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}html.theme--documenter-dark .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--documenter-dark .outdated-warning-overlay a{color:#1abc9c}html.theme--documenter-dark .outdated-warning-overlay a:hover{color:#1dd2af}html.theme--documenter-dark .content pre{border:2px solid #5e6d6f;border-radius:4px}html.theme--documenter-dark .content code{font-weight:inherit}html.theme--documenter-dark .content a code{color:#1abc9c}html.theme--documenter-dark .content a:hover code{color:#1dd2af}html.theme--documenter-dark .content h1 code,html.theme--documenter-dark .content h2 code,html.theme--documenter-dark .content h3 code,html.theme--documenter-dark .content h4 code,html.theme--documenter-dark .content h5 code,html.theme--documenter-dark .content h6 code{color:#f2f2f2}html.theme--documenter-dark .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--documenter-dark .content blockquote>ul:first-child,html.theme--documenter-dark .content blockquote>ol:first-child,html.theme--documenter-dark .content .admonition-body>ul:first-child,html.theme--documenter-dark .content .admonition-body>ol:first-child{margin-top:0}html.theme--documenter-dark pre,html.theme--documenter-dark code{font-variant-ligatures:no-contextual}html.theme--documenter-dark .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--documenter-dark .breadcrumb a.is-disabled,html.theme--documenter-dark .breadcrumb a.is-disabled:hover{color:#f2f2f2}html.theme--documenter-dark .hljs{background:initial !important}html.theme--documenter-dark .katex .katex-mathml{top:0;right:0}html.theme--documenter-dark .katex-display,html.theme--documenter-dark mjx-container,html.theme--documenter-dark .MathJax_Display{margin:0.5em 0 !important}html.theme--documenter-dark html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--documenter-dark li.no-marker{list-style:none}html.theme--documenter-dark #documenter .docs-main>article{overflow-wrap:break-word}html.theme--documenter-dark #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main{width:100%}html.theme--documenter-dark #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--documenter-dark #documenter .docs-main>header,html.theme--documenter-dark #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--documenter-dark #documenter .docs-main header.docs-navbar{background-color:#1f2424;border-bottom:1px solid #5e6d6f;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}html.theme--documenter-dark #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--documenter-dark #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--documenter-dark #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--documenter-dark #documenter .docs-main section.footnotes{border-top:1px solid #5e6d6f}html.theme--documenter-dark #documenter .docs-main section.footnotes li .tag:first-child,html.theme--documenter-dark #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--documenter-dark #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--documenter-dark .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--documenter-dark #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #5e6d6f;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--documenter-dark #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--documenter-dark #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--documenter-dark #documenter .docs-sidebar{display:flex;flex-direction:column;color:#fff;background-color:#282f2f;border-right:1px solid #5e6d6f;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--documenter-dark #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-sidebar{left:0;top:0}}html.theme--documenter-dark #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a,html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a:hover{color:#fff}html.theme--documenter-dark #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #5e6d6f;display:none;padding:0.5rem}html.theme--documenter-dark #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #5e6d6f;padding-bottom:1.5rem}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #5e6d6f}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#fff;background:#282f2f}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#fff;background-color:#32393a}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #5e6d6f;border-bottom:1px solid #5e6d6f;background-color:#1f2424}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#1f2424;color:#fff}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#32393a;color:#fff}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #5e6d6f}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--documenter-dark #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{width:14.4rem}html.theme--documenter-dark #documenter .docs-sidebar #documenter-search-query{color:#868c98;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3b4445}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#4e5a5c}}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3b4445}html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#4e5a5c}}html.theme--documenter-dark kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(245,245,245,0.6);box-shadow:0 2px 0 1px rgba(245,245,245,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}html.theme--documenter-dark .search-min-width-50{min-width:50%}html.theme--documenter-dark .search-min-height-100{min-height:100%}html.theme--documenter-dark .search-modal-card-body{max-height:calc(100vh - 15rem)}html.theme--documenter-dark .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--documenter-dark .search-result-link:hover,html.theme--documenter-dark .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--documenter-dark .search-result-link .property-search-result-badge,html.theme--documenter-dark .search-result-link .search-filter{transition:all 300ms}html.theme--documenter-dark .property-search-result-badge,html.theme--documenter-dark .search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}html.theme--documenter-dark .search-result-link:hover .property-search-result-badge,html.theme--documenter-dark .search-result-link:hover .search-filter,html.theme--documenter-dark .search-result-link:focus .property-search-result-badge,html.theme--documenter-dark .search-result-link:focus .search-filter{color:#333;background-color:#f1f5f9}html.theme--documenter-dark .search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}html.theme--documenter-dark .search-filter:hover,html.theme--documenter-dark .search-filter:focus{color:#333}html.theme--documenter-dark .search-filter-selected{color:#f5f5f5;background-color:rgba(139,0,139,0.5)}html.theme--documenter-dark .search-filter-selected:hover,html.theme--documenter-dark .search-filter-selected:focus{color:#f5f5f5}html.theme--documenter-dark .search-result-highlight{background-color:#ffdd57;color:black}html.theme--documenter-dark .search-divider{border-bottom:1px solid #5e6d6f}html.theme--documenter-dark .search-result-title{width:85%;color:#f5f5f5}html.theme--documenter-dark .search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--documenter-dark #search-modal .modal-card-body::-webkit-scrollbar,html.theme--documenter-dark #search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}html.theme--documenter-dark #search-modal .modal-card-body::-webkit-scrollbar-thumb,html.theme--documenter-dark #search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}html.theme--documenter-dark #search-modal .modal-card-body::-webkit-scrollbar-track,html.theme--documenter-dark #search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}html.theme--documenter-dark .w-100{width:100%}html.theme--documenter-dark .gap-2{gap:0.5rem}html.theme--documenter-dark .gap-4{gap:1rem}html.theme--documenter-dark .gap-8{gap:2rem}html.theme--documenter-dark{background-color:#1f2424;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--documenter-dark .ansi span.sgr1{font-weight:bolder}html.theme--documenter-dark .ansi span.sgr2{font-weight:lighter}html.theme--documenter-dark .ansi span.sgr3{font-style:italic}html.theme--documenter-dark .ansi span.sgr4{text-decoration:underline}html.theme--documenter-dark .ansi span.sgr7{color:#1f2424;background-color:#fff}html.theme--documenter-dark .ansi span.sgr8{color:transparent}html.theme--documenter-dark .ansi span.sgr8 span{color:transparent}html.theme--documenter-dark .ansi span.sgr9{text-decoration:line-through}html.theme--documenter-dark .ansi span.sgr30{color:#242424}html.theme--documenter-dark .ansi span.sgr31{color:#f6705f}html.theme--documenter-dark .ansi span.sgr32{color:#4fb43a}html.theme--documenter-dark .ansi span.sgr33{color:#f4c72f}html.theme--documenter-dark .ansi span.sgr34{color:#7587f0}html.theme--documenter-dark .ansi span.sgr35{color:#bc89d3}html.theme--documenter-dark .ansi span.sgr36{color:#49b6ca}html.theme--documenter-dark .ansi span.sgr37{color:#b3bdbe}html.theme--documenter-dark .ansi span.sgr40{background-color:#242424}html.theme--documenter-dark .ansi span.sgr41{background-color:#f6705f}html.theme--documenter-dark .ansi span.sgr42{background-color:#4fb43a}html.theme--documenter-dark .ansi span.sgr43{background-color:#f4c72f}html.theme--documenter-dark .ansi span.sgr44{background-color:#7587f0}html.theme--documenter-dark .ansi span.sgr45{background-color:#bc89d3}html.theme--documenter-dark .ansi span.sgr46{background-color:#49b6ca}html.theme--documenter-dark .ansi span.sgr47{background-color:#b3bdbe}html.theme--documenter-dark .ansi span.sgr90{color:#92a0a2}html.theme--documenter-dark .ansi span.sgr91{color:#ff8674}html.theme--documenter-dark .ansi span.sgr92{color:#79d462}html.theme--documenter-dark .ansi span.sgr93{color:#ffe76b}html.theme--documenter-dark .ansi span.sgr94{color:#8a98ff}html.theme--documenter-dark .ansi span.sgr95{color:#d2a4e6}html.theme--documenter-dark .ansi span.sgr96{color:#6bc8db}html.theme--documenter-dark .ansi span.sgr97{color:#ecf0f1}html.theme--documenter-dark .ansi span.sgr100{background-color:#92a0a2}html.theme--documenter-dark .ansi span.sgr101{background-color:#ff8674}html.theme--documenter-dark .ansi span.sgr102{background-color:#79d462}html.theme--documenter-dark .ansi span.sgr103{background-color:#ffe76b}html.theme--documenter-dark .ansi span.sgr104{background-color:#8a98ff}html.theme--documenter-dark .ansi span.sgr105{background-color:#d2a4e6}html.theme--documenter-dark .ansi span.sgr106{background-color:#6bc8db}html.theme--documenter-dark .ansi span.sgr107{background-color:#ecf0f1}html.theme--documenter-dark code.language-julia-repl>span.hljs-meta{color:#4fb43a;font-weight:bolder}html.theme--documenter-dark .hljs{background:#2b2b2b;color:#f8f8f2}html.theme--documenter-dark .hljs-comment,html.theme--documenter-dark .hljs-quote{color:#d4d0ab}html.theme--documenter-dark .hljs-variable,html.theme--documenter-dark .hljs-template-variable,html.theme--documenter-dark .hljs-tag,html.theme--documenter-dark .hljs-name,html.theme--documenter-dark .hljs-selector-id,html.theme--documenter-dark .hljs-selector-class,html.theme--documenter-dark .hljs-regexp,html.theme--documenter-dark .hljs-deletion{color:#ffa07a}html.theme--documenter-dark .hljs-number,html.theme--documenter-dark .hljs-built_in,html.theme--documenter-dark .hljs-literal,html.theme--documenter-dark .hljs-type,html.theme--documenter-dark .hljs-params,html.theme--documenter-dark .hljs-meta,html.theme--documenter-dark .hljs-link{color:#f5ab35}html.theme--documenter-dark .hljs-attribute{color:#ffd700}html.theme--documenter-dark .hljs-string,html.theme--documenter-dark .hljs-symbol,html.theme--documenter-dark .hljs-bullet,html.theme--documenter-dark .hljs-addition{color:#abe338}html.theme--documenter-dark .hljs-title,html.theme--documenter-dark .hljs-section{color:#00e0e0}html.theme--documenter-dark .hljs-keyword,html.theme--documenter-dark .hljs-selector-tag{color:#dcc6e0}html.theme--documenter-dark .hljs-emphasis{font-style:italic}html.theme--documenter-dark .hljs-strong{font-weight:bold}@media screen and (-ms-high-contrast: active){html.theme--documenter-dark .hljs-addition,html.theme--documenter-dark .hljs-attribute,html.theme--documenter-dark .hljs-built_in,html.theme--documenter-dark .hljs-bullet,html.theme--documenter-dark .hljs-comment,html.theme--documenter-dark .hljs-link,html.theme--documenter-dark .hljs-literal,html.theme--documenter-dark .hljs-meta,html.theme--documenter-dark .hljs-number,html.theme--documenter-dark .hljs-params,html.theme--documenter-dark .hljs-string,html.theme--documenter-dark .hljs-symbol,html.theme--documenter-dark .hljs-type,html.theme--documenter-dark .hljs-quote{color:highlight}html.theme--documenter-dark .hljs-keyword,html.theme--documenter-dark .hljs-selector-tag{font-weight:bold}}html.theme--documenter-dark .hljs-subst{color:#f8f8f2}html.theme--documenter-dark .search-result-link{border-radius:0.7em;transition:all 300ms}html.theme--documenter-dark .search-result-link:hover,html.theme--documenter-dark .search-result-link:focus{background-color:rgba(0,128,128,0.1)}html.theme--documenter-dark .search-result-link .property-search-result-badge,html.theme--documenter-dark .search-result-link .search-filter{transition:all 300ms}html.theme--documenter-dark .search-result-link:hover .property-search-result-badge,html.theme--documenter-dark .search-result-link:hover .search-filter,html.theme--documenter-dark .search-result-link:focus .property-search-result-badge,html.theme--documenter-dark .search-result-link:focus .search-filter{color:#333 !important;background-color:#f1f5f9 !important}html.theme--documenter-dark .search-result-title{color:whitesmoke}html.theme--documenter-dark .search-result-highlight{background-color:greenyellow;color:black}html.theme--documenter-dark .search-divider{border-bottom:1px solid #5e6d6f50}html.theme--documenter-dark .w-100{width:100%}html.theme--documenter-dark .gap-2{gap:0.5rem}html.theme--documenter-dark .gap-4{gap:1rem} diff --git a/doc/build/assets/themes/documenter-light.css b/doc/build/assets/themes/documenter-light.css deleted file mode 100644 index e000447..0000000 --- a/doc/build/assets/themes/documenter-light.css +++ /dev/null @@ -1,9 +0,0 @@ -.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file-cta,.file-name,.select select,.textarea,.input,#documenter .docs-sidebar form.docs-search>input,.button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.file-cta:focus,.file-name:focus,.select select:focus,.textarea:focus,.input:focus,#documenter .docs-sidebar form.docs-search>input:focus,.button:focus,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.is-focused.file-cta,.is-focused.file-name,.select select.is-focused,.is-focused.textarea,.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-focused.button,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.file-cta:active,.file-name:active,.select select:active,.textarea:active,.input:active,#documenter .docs-sidebar form.docs-search>input:active,.button:active,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis,.is-active.file-cta,.is-active.file-name,.select select.is-active,.is-active.textarea,.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active,.is-active.button{outline:none}.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled],.pagination-ellipsis[disabled],.file-cta[disabled],.file-name[disabled],.select select[disabled],.textarea[disabled],.input[disabled],#documenter .docs-sidebar form.docs-search>input[disabled],.button[disabled],fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] .button{cursor:not-allowed}.tabs,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.breadcrumb,.file,.button,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless)::after,.select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}.admonition:not(:last-child),.tabs:not(:last-child),.pagination:not(:last-child),.message:not(:last-child),.level:not(:last-child),.breadcrumb:not(:last-child),.block:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.progress:not(:last-child),.notification:not(:last-child),.content:not(:last-child),.box:not(:last-child){margin-bottom:1.5rem}.modal-close,.delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.modal-close::before,.delete::before,.modal-close::after,.delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.modal-close::before,.delete::before{height:2px;width:50%}.modal-close::after,.delete::after{height:50%;width:2px}.modal-close:hover,.delete:hover,.modal-close:focus,.delete:focus{background-color:rgba(10,10,10,0.3)}.modal-close:active,.delete:active{background-color:rgba(10,10,10,0.4)}.is-small.modal-close,#documenter .docs-sidebar form.docs-search>input.modal-close,.is-small.delete,#documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.modal-close,.is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.modal-close,.is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.control.is-loading::after,.select.is-loading::after,.loader,.button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #dbdbdb;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.hero-video,.modal-background,.modal,.image.is-square img,#documenter .docs-sidebar .docs-logo>img.is-square img,.image.is-square .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,.image.is-1by1 img,#documenter .docs-sidebar .docs-logo>img.is-1by1 img,.image.is-1by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,.image.is-5by4 img,#documenter .docs-sidebar .docs-logo>img.is-5by4 img,.image.is-5by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,.image.is-4by3 img,#documenter .docs-sidebar .docs-logo>img.is-4by3 img,.image.is-4by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,.image.is-3by2 img,#documenter .docs-sidebar .docs-logo>img.is-3by2 img,.image.is-3by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,.image.is-5by3 img,#documenter .docs-sidebar .docs-logo>img.is-5by3 img,.image.is-5by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,.image.is-16by9 img,#documenter .docs-sidebar .docs-logo>img.is-16by9 img,.image.is-16by9 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,.image.is-2by1 img,#documenter .docs-sidebar .docs-logo>img.is-2by1 img,.image.is-2by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,.image.is-3by1 img,#documenter .docs-sidebar .docs-logo>img.is-3by1 img,.image.is-3by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,.image.is-4by5 img,#documenter .docs-sidebar .docs-logo>img.is-4by5 img,.image.is-4by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,.image.is-3by4 img,#documenter .docs-sidebar .docs-logo>img.is-3by4 img,.image.is-3by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,.image.is-2by3 img,#documenter .docs-sidebar .docs-logo>img.is-2by3 img,.image.is-2by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,.image.is-3by5 img,#documenter .docs-sidebar .docs-logo>img.is-3by5 img,.image.is-3by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,.image.is-9by16 img,#documenter .docs-sidebar .docs-logo>img.is-9by16 img,.image.is-9by16 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,.image.is-1by2 img,#documenter .docs-sidebar .docs-logo>img.is-1by2 img,.image.is-1by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,.image.is-1by3 img,#documenter .docs-sidebar .docs-logo>img.is-1by3 img,.image.is-1by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}.navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#363636 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c !important}.has-background-dark{background-color:#363636 !important}.has-text-primary{color:#4eb5de !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#27a1d2 !important}.has-background-primary{background-color:#4eb5de !important}.has-text-primary-light{color:#eef8fc !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#c3e6f4 !important}.has-background-primary-light{background-color:#eef8fc !important}.has-text-primary-dark{color:#1a6d8e !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#228eb9 !important}.has-background-primary-dark{background-color:#1a6d8e !important}.has-text-link{color:#2e63b8 !important}a.has-text-link:hover,a.has-text-link:focus{color:#244d8f !important}.has-background-link{background-color:#2e63b8 !important}.has-text-link-light{color:#eff3fb !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c6d6f1 !important}.has-background-link-light{background-color:#eff3fb !important}.has-text-link-dark{color:#3169c4 !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#5485d4 !important}.has-background-link-dark{background-color:#3169c4 !important}.has-text-info{color:#3c5dcd !important}a.has-text-info:hover,a.has-text-info:focus{color:#2c48aa !important}.has-background-info{background-color:#3c5dcd !important}.has-text-info-light{color:#eff2fb !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c6d0f0 !important}.has-background-info-light{background-color:#eff2fb !important}.has-text-info-dark{color:#3253c3 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#5571d3 !important}.has-background-info-dark{background-color:#3253c3 !important}.has-text-success{color:#259a12 !important}a.has-text-success:hover,a.has-text-success:focus{color:#1a6c0d !important}.has-background-success{background-color:#259a12 !important}.has-text-success-light{color:#effded !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c7f8bf !important}.has-background-success-light{background-color:#effded !important}.has-text-success-dark{color:#2ec016 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#3fe524 !important}.has-background-success-dark{background-color:#2ec016 !important}.has-text-warning{color:#a98800 !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#765f00 !important}.has-background-warning{background-color:#a98800 !important}.has-text-warning-light{color:#fffbeb !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#fff1b8 !important}.has-background-warning-light{background-color:#fffbeb !important}.has-text-warning-dark{color:#cca400 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#ffcd00 !important}.has-background-warning-dark{background-color:#cca400 !important}.has-text-danger{color:#cb3c33 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#a23029 !important}.has-background-danger{background-color:#cb3c33 !important}.has-text-danger-light{color:#fbefef !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#f1c8c6 !important}.has-background-danger-light{background-color:#fbefef !important}.has-text-danger-dark{color:#c03930 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#d35850 !important}.has-background-danger-dark{background-color:#c03930 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#363636 !important}.has-background-grey-darker{background-color:#363636 !important}.has-text-grey-dark{color:#4a4a4a !important}.has-background-grey-dark{background-color:#4a4a4a !important}.has-text-grey{color:#6b6b6b !important}.has-background-grey{background-color:#6b6b6b !important}.has-text-grey-light{color:#b5b5b5 !important}.has-background-grey-light{background-color:#b5b5b5 !important}.has-text-grey-lighter{color:#dbdbdb !important}.has-background-grey-lighter{background-color:#dbdbdb !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,.docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}body{color:#222;font-size:1em;font-weight:400;line-height:1.5}a{color:#2e63b8;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:rgba(0,0,0,0.05);color:#000;font-size:.875em;font-weight:normal;padding:.1em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type="checkbox"],input[type="radio"]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#222;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#222;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#222}@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.box{background-color:#fff;border-radius:6px;box-shadow:#bbb;color:#222;display:block;padding:1.25rem}a.box:hover,a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(10,10,10,0.1),0 0 0 1px #2e63b8}a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #2e63b8}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#222;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button #documenter .docs-sidebar form.docs-search>input.icon,#documenter .docs-sidebar .button form.docs-search>input.icon,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#3c5dcd;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#222;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#222}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#222}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#2e63b8;text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:#2e63b8;text-decoration:underline}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#0a0a0a}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}.button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}.button.is-dark,.content kbd.button{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark:hover,.content kbd.button:hover,.button.is-dark.is-hovered,.content kbd.button.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.content kbd.button:focus,.button.is-dark.is-focused,.content kbd.button.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.content kbd.button:focus:not(:active),.button.is-dark.is-focused:not(:active),.content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.button.is-dark:active,.content kbd.button:active,.button.is-dark.is-active,.content kbd.button.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],.content kbd.button[disabled],fieldset[disabled] .button.is-dark,fieldset[disabled] .content kbd.button,.content fieldset[disabled] kbd.button{background-color:#363636;border-color:#363636;box-shadow:none}.button.is-dark.is-inverted,.content kbd.button.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted:hover,.content kbd.button.is-inverted:hover,.button.is-dark.is-inverted.is-hovered,.content kbd.button.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],.content kbd.button.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted,fieldset[disabled] .content kbd.button.is-inverted,.content fieldset[disabled] kbd.button.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading::after,.content kbd.button.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined,.content kbd.button.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.content kbd.button.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.content kbd.button.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.content kbd.button.is-outlined:focus,.button.is-dark.is-outlined.is-focused,.content kbd.button.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading::after,.content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-outlined.is-loading:hover::after,.content kbd.button.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.content kbd.button.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.content kbd.button.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after,.content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined[disabled],.content kbd.button.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined,fieldset[disabled] .content kbd.button.is-outlined,.content fieldset[disabled] kbd.button.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined,.content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.content kbd.button.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.content kbd.button.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.content kbd.button.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused,.content kbd.button.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.content kbd.button.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.content kbd.button.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,.content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-inverted.is-outlined[disabled],.content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined,fieldset[disabled] .content kbd.button.is-inverted.is-outlined,.content fieldset[disabled] kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary,.docstring>section>a.button.docs-sourcelink{background-color:#4eb5de;border-color:transparent;color:#fff}.button.is-primary:hover,.docstring>section>a.button.docs-sourcelink:hover,.button.is-primary.is-hovered,.docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#43b1dc;border-color:transparent;color:#fff}.button.is-primary:focus,.docstring>section>a.button.docs-sourcelink:focus,.button.is-primary.is-focused,.docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.docstring>section>a.button.docs-sourcelink:focus:not(:active),.button.is-primary.is-focused:not(:active),.docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(78,181,222,0.25)}.button.is-primary:active,.docstring>section>a.button.docs-sourcelink:active,.button.is-primary.is-active,.docstring>section>a.button.is-active.docs-sourcelink{background-color:#39acda;border-color:transparent;color:#fff}.button.is-primary[disabled],.docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary,fieldset[disabled] .docstring>section>a.button.docs-sourcelink{background-color:#4eb5de;border-color:#4eb5de;box-shadow:none}.button.is-primary.is-inverted,.docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#4eb5de}.button.is-primary.is-inverted:hover,.docstring>section>a.button.is-inverted.docs-sourcelink:hover,.button.is-primary.is-inverted.is-hovered,.docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],.docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary.is-inverted,fieldset[disabled] .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#4eb5de}.button.is-primary.is-loading::after,.docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined,.docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#4eb5de;color:#4eb5de}.button.is-primary.is-outlined:hover,.docstring>section>a.button.is-outlined.docs-sourcelink:hover,.button.is-primary.is-outlined.is-hovered,.docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,.button.is-primary.is-outlined:focus,.docstring>section>a.button.is-outlined.docs-sourcelink:focus,.button.is-primary.is-outlined.is-focused,.docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#4eb5de;border-color:#4eb5de;color:#fff}.button.is-primary.is-outlined.is-loading::after,.docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #4eb5de #4eb5de !important}.button.is-primary.is-outlined.is-loading:hover::after,.docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,.button.is-primary.is-outlined.is-loading:focus::after,.docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after,.docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined[disabled],.docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary.is-outlined,fieldset[disabled] .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#4eb5de;box-shadow:none;color:#4eb5de}.button.is-primary.is-inverted.is-outlined,.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,.button.is-primary.is-inverted.is-outlined:focus,.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,.button.is-primary.is-inverted.is-outlined.is-focused,.docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#4eb5de}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #4eb5de #4eb5de !important}.button.is-primary.is-inverted.is-outlined[disabled],.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined,fieldset[disabled] .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light,.docstring>section>a.button.is-light.docs-sourcelink{background-color:#eef8fc;color:#1a6d8e}.button.is-primary.is-light:hover,.docstring>section>a.button.is-light.docs-sourcelink:hover,.button.is-primary.is-light.is-hovered,.docstring>section>a.button.is-light.is-hovered.docs-sourcelink{background-color:#e3f3fa;border-color:transparent;color:#1a6d8e}.button.is-primary.is-light:active,.docstring>section>a.button.is-light.docs-sourcelink:active,.button.is-primary.is-light.is-active,.docstring>section>a.button.is-light.is-active.docs-sourcelink{background-color:#d8eff8;border-color:transparent;color:#1a6d8e}.button.is-link{background-color:#2e63b8;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#2b5eae;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.button.is-link:active,.button.is-link.is-active{background-color:#2958a4;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#2e63b8;border-color:#2e63b8;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#2e63b8}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#2e63b8}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined{background-color:transparent;border-color:#2e63b8;color:#2e63b8}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#2e63b8;border-color:#2e63b8;color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #2e63b8 #2e63b8 !important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#2e63b8;box-shadow:none;color:#2e63b8}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#2e63b8}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #2e63b8 #2e63b8 !important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eff3fb;color:#3169c4}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e4ecf8;border-color:transparent;color:#3169c4}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#dae5f6;border-color:transparent;color:#3169c4}.button.is-info{background-color:#3c5dcd;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3355c9;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}.button.is-info:active,.button.is-info.is-active{background-color:#3151bf;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3c5dcd;border-color:#3c5dcd;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3c5dcd}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3c5dcd}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined{background-color:transparent;border-color:#3c5dcd;color:#3c5dcd}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#3c5dcd;border-color:#3c5dcd;color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #3c5dcd #3c5dcd !important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3c5dcd;box-shadow:none;color:#3c5dcd}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3c5dcd}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3c5dcd #3c5dcd !important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff2fb;color:#3253c3}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e5e9f8;border-color:transparent;color:#3253c3}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae1f6;border-color:transparent;color:#3253c3}.button.is-success{background-color:#259a12;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#228f11;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}.button.is-success:active,.button.is-success.is-active{background-color:#20830f;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#259a12;border-color:#259a12;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#259a12}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#259a12}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined{background-color:transparent;border-color:#259a12;color:#259a12}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#259a12;border-color:#259a12;color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #259a12 #259a12 !important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#259a12;box-shadow:none;color:#259a12}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#259a12}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #259a12 #259a12 !important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effded;color:#2ec016}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e5fce1;border-color:transparent;color:#2ec016}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dbfad6;border-color:transparent;color:#2ec016}.button.is-warning{background-color:#a98800;border-color:transparent;color:#fff}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#9c7d00;border-color:transparent;color:#fff}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:#fff}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(169,136,0,0.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#8f7300;border-color:transparent;color:#fff}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#a98800;border-color:#a98800;box-shadow:none}.button.is-warning.is-inverted{background-color:#fff;color:#a98800}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#a98800}.button.is-warning.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-warning.is-outlined{background-color:transparent;border-color:#a98800;color:#a98800}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#a98800;border-color:#a98800;color:#fff}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #a98800 #a98800 !important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#a98800;box-shadow:none;color:#a98800}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:#fff;color:#a98800}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #a98800 #a98800 !important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-warning.is-light{background-color:#fffbeb;color:#cca400}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff9de;border-color:transparent;color:#cca400}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff6d1;border-color:transparent;color:#cca400}.button.is-danger{background-color:#cb3c33;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#c13930;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#b7362e;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#cb3c33;border-color:#cb3c33;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#cb3c33}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#cb3c33}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined{background-color:transparent;border-color:#cb3c33;color:#cb3c33}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#cb3c33;border-color:#cb3c33;color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #cb3c33 #cb3c33 !important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#cb3c33;box-shadow:none;color:#cb3c33}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#cb3c33}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #cb3c33 #cb3c33 !important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#fbefef;color:#c03930}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#f8e6e5;border-color:transparent;color:#c03930}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#f6dcda;border-color:transparent;color:#c03930}.button.is-small,#documenter .docs-sidebar form.docs-search>input.button{font-size:.75rem}.button.is-small:not(.is-rounded),#documenter .docs-sidebar form.docs-search>input.button:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent !important;pointer-events:none}.button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#6b6b6b;box-shadow:none;pointer-events:none}.button.is-rounded,#documenter .docs-sidebar form.docs-search>input.button{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:0.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-0.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:2px}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 768px){.button.is-responsive.is-small,#documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.5625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.65625rem}.button.is-responsive.is-medium{font-size:.75rem}.button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.button.is-responsive.is-small,#documenter .docs-sidebar form.docs-search>input.is-responsive{font-size:.65625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.75rem}.button.is-responsive.is-medium{font-size:1rem}.button.is-responsive.is-large{font-size:1.25rem}}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none !important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1056px){.container{max-width:992px}}@media screen and (max-width: 1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}.content li+li{margin-top:0.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#222;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:0.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:0.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:0.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:0.8em}.content h5{font-size:1.125em;margin-bottom:0.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}.content ol.is-lower-roman:not([type]){list-style-type:lower-roman}.content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}.content ol.is-upper-roman:not([type]){list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:0.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}.content sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}.content table th{color:#222}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#222}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#222}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small,#documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}.content.is-normal{font-size:1rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small,#documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.image,#documenter .docs-sidebar .docs-logo>img{display:block;position:relative}.image img,#documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}.image img.is-rounded,#documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:9999px}.image.is-fullwidth,#documenter .docs-sidebar .docs-logo>img.is-fullwidth{width:100%}.image.is-square img,#documenter .docs-sidebar .docs-logo>img.is-square img,.image.is-square .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,.image.is-1by1 img,#documenter .docs-sidebar .docs-logo>img.is-1by1 img,.image.is-1by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,.image.is-5by4 img,#documenter .docs-sidebar .docs-logo>img.is-5by4 img,.image.is-5by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,.image.is-4by3 img,#documenter .docs-sidebar .docs-logo>img.is-4by3 img,.image.is-4by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,.image.is-3by2 img,#documenter .docs-sidebar .docs-logo>img.is-3by2 img,.image.is-3by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,.image.is-5by3 img,#documenter .docs-sidebar .docs-logo>img.is-5by3 img,.image.is-5by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,.image.is-16by9 img,#documenter .docs-sidebar .docs-logo>img.is-16by9 img,.image.is-16by9 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,.image.is-2by1 img,#documenter .docs-sidebar .docs-logo>img.is-2by1 img,.image.is-2by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,.image.is-3by1 img,#documenter .docs-sidebar .docs-logo>img.is-3by1 img,.image.is-3by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,.image.is-4by5 img,#documenter .docs-sidebar .docs-logo>img.is-4by5 img,.image.is-4by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,.image.is-3by4 img,#documenter .docs-sidebar .docs-logo>img.is-3by4 img,.image.is-3by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,.image.is-2by3 img,#documenter .docs-sidebar .docs-logo>img.is-2by3 img,.image.is-2by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,.image.is-3by5 img,#documenter .docs-sidebar .docs-logo>img.is-3by5 img,.image.is-3by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,.image.is-9by16 img,#documenter .docs-sidebar .docs-logo>img.is-9by16 img,.image.is-9by16 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,.image.is-1by2 img,#documenter .docs-sidebar .docs-logo>img.is-1by2 img,.image.is-1by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,.image.is-1by3 img,#documenter .docs-sidebar .docs-logo>img.is-1by3 img,.image.is-1by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,#documenter .docs-sidebar .docs-logo>img.is-square,.image.is-1by1,#documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}.image.is-5by4,#documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}.image.is-4by3,#documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}.image.is-3by2,#documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}.image.is-5by3,#documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}.image.is-16by9,#documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}.image.is-2by1,#documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}.image.is-3by1,#documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}.image.is-4by5,#documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}.image.is-3by4,#documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}.image.is-2by3,#documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}.image.is-3by5,#documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}.image.is-9by16,#documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}.image.is-1by2,#documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}.image.is-1by3,#documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}.image.is-16x16,#documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}.image.is-24x24,#documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}.image.is-32x32,#documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}.image.is-48x48,#documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}.image.is-64x64,#documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}.image.is-96x96,#documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}.image.is-128x128,#documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:0.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.notification.is-dark,.content kbd.notification{background-color:#363636;color:#fff}.notification.is-primary,.docstring>section>a.notification.docs-sourcelink{background-color:#4eb5de;color:#fff}.notification.is-primary.is-light,.docstring>section>a.notification.is-light.docs-sourcelink{background-color:#eef8fc;color:#1a6d8e}.notification.is-link{background-color:#2e63b8;color:#fff}.notification.is-link.is-light{background-color:#eff3fb;color:#3169c4}.notification.is-info{background-color:#3c5dcd;color:#fff}.notification.is-info.is-light{background-color:#eff2fb;color:#3253c3}.notification.is-success{background-color:#259a12;color:#fff}.notification.is-success.is-light{background-color:#effded;color:#2ec016}.notification.is-warning{background-color:#a98800;color:#fff}.notification.is-warning.is-light{background-color:#fffbeb;color:#cca400}.notification.is-danger{background-color:#cb3c33;color:#fff}.notification.is-danger.is-light{background-color:#fbefef;color:#c03930}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#222}.progress::-moz-progress-bar{background-color:#222}.progress::-ms-fill{background-color:#222;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #ededed 30%)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #ededed 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #ededed 30%)}.progress.is-dark::-webkit-progress-value,.content kbd.progress::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar,.content kbd.progress::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill,.content kbd.progress::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate,.content kbd.progress:indeterminate{background-image:linear-gradient(to right, #363636 30%, #ededed 30%)}.progress.is-primary::-webkit-progress-value,.docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#4eb5de}.progress.is-primary::-moz-progress-bar,.docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#4eb5de}.progress.is-primary::-ms-fill,.docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#4eb5de}.progress.is-primary:indeterminate,.docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #4eb5de 30%, #ededed 30%)}.progress.is-link::-webkit-progress-value{background-color:#2e63b8}.progress.is-link::-moz-progress-bar{background-color:#2e63b8}.progress.is-link::-ms-fill{background-color:#2e63b8}.progress.is-link:indeterminate{background-image:linear-gradient(to right, #2e63b8 30%, #ededed 30%)}.progress.is-info::-webkit-progress-value{background-color:#3c5dcd}.progress.is-info::-moz-progress-bar{background-color:#3c5dcd}.progress.is-info::-ms-fill{background-color:#3c5dcd}.progress.is-info:indeterminate{background-image:linear-gradient(to right, #3c5dcd 30%, #ededed 30%)}.progress.is-success::-webkit-progress-value{background-color:#259a12}.progress.is-success::-moz-progress-bar{background-color:#259a12}.progress.is-success::-ms-fill{background-color:#259a12}.progress.is-success:indeterminate{background-image:linear-gradient(to right, #259a12 30%, #ededed 30%)}.progress.is-warning::-webkit-progress-value{background-color:#a98800}.progress.is-warning::-moz-progress-bar{background-color:#a98800}.progress.is-warning::-ms-fill{background-color:#a98800}.progress.is-warning:indeterminate{background-image:linear-gradient(to right, #a98800 30%, #ededed 30%)}.progress.is-danger::-webkit-progress-value{background-color:#cb3c33}.progress.is-danger::-moz-progress-bar{background-color:#cb3c33}.progress.is-danger::-ms-fill{background-color:#cb3c33}.progress.is-danger:indeterminate{background-image:linear-gradient(to right, #cb3c33 30%, #ededed 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(to right, #222 30%, #ededed 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small,#documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#222}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#4eb5de;border-color:#4eb5de;color:#fff}.table td.is-link,.table th.is-link{background-color:#2e63b8;border-color:#2e63b8;color:#fff}.table td.is-info,.table th.is-info{background-color:#3c5dcd;border-color:#3c5dcd;color:#fff}.table td.is-success,.table th.is-success{background-color:#259a12;border-color:#259a12;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#a98800;border-color:#a98800;color:#fff}.table td.is-danger,.table th.is-danger{background-color:#cb3c33;border-color:#cb3c33;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#4eb5de;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#222}.table th:not([align]){text-align:left}.table tr.is-selected{background-color:#4eb5de;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:rgba(0,0,0,0)}.table thead td,.table thead th{border-width:0 0 2px;color:#222}.table tfoot{background-color:rgba(0,0,0,0)}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#222}.table tbody{background-color:rgba(0,0,0,0)}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:0.25em 0.5em}.table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag,.tags .content kbd,.content .tags kbd,.tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}.tags .tag:not(:last-child),.tags .content kbd:not(:last-child),.content .tags kbd:not(:last-child),.tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-0.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large),.tags.are-medium .content kbd:not(.is-normal):not(.is-large),.content .tags.are-medium kbd:not(.is-normal):not(.is-large),.tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium),.tags.are-large .content kbd:not(.is-normal):not(.is-medium),.content .tags.are-large kbd:not(.is-normal):not(.is-medium),.tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag,.tags.is-centered .content kbd,.content .tags.is-centered kbd,.tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child),.tags.is-right .content kbd:not(:first-child),.content .tags.is-right kbd:not(:first-child),.tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}.tags.is-right .tag:not(:last-child),.tags.is-right .content kbd:not(:last-child),.content .tags.is-right kbd:not(:last-child),.tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}.tags.has-addons .tag,.tags.has-addons .content kbd,.content .tags.has-addons kbd,.tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}.tags.has-addons .tag:not(:first-child),.tags.has-addons .content kbd:not(:first-child),.content .tags.has-addons kbd:not(:first-child),.tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child),.tags.has-addons .content kbd:not(:last-child),.content .tags.has-addons kbd:not(:last-child),.tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body),.content kbd:not(body),.docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#222;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}.tag:not(body) .delete,.content kbd:not(body) .delete,.docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag.is-white:not(body),.content kbd.is-white:not(body),.docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}.tag.is-black:not(body),.content kbd.is-black:not(body),.docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}.tag.is-light:not(body),.content kbd.is-light:not(body),.docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.tag.is-dark:not(body),.content kbd:not(body),.docstring>section>a.docs-sourcelink.is-dark:not(body),.content .docstring>section>kbd:not(body){background-color:#363636;color:#fff}.tag.is-primary:not(body),.content kbd.is-primary:not(body),.docstring>section>a.docs-sourcelink:not(body){background-color:#4eb5de;color:#fff}.tag.is-primary.is-light:not(body),.content kbd.is-primary.is-light:not(body),.docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#eef8fc;color:#1a6d8e}.tag.is-link:not(body),.content kbd.is-link:not(body),.docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#2e63b8;color:#fff}.tag.is-link.is-light:not(body),.content kbd.is-link.is-light:not(body),.docstring>section>a.docs-sourcelink.is-link.is-light:not(body){background-color:#eff3fb;color:#3169c4}.tag.is-info:not(body),.content kbd.is-info:not(body),.docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#3c5dcd;color:#fff}.tag.is-info.is-light:not(body),.content kbd.is-info.is-light:not(body),.docstring>section>a.docs-sourcelink.is-info.is-light:not(body){background-color:#eff2fb;color:#3253c3}.tag.is-success:not(body),.content kbd.is-success:not(body),.docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#259a12;color:#fff}.tag.is-success.is-light:not(body),.content kbd.is-success.is-light:not(body),.docstring>section>a.docs-sourcelink.is-success.is-light:not(body){background-color:#effded;color:#2ec016}.tag.is-warning:not(body),.content kbd.is-warning:not(body),.docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#a98800;color:#fff}.tag.is-warning.is-light:not(body),.content kbd.is-warning.is-light:not(body),.docstring>section>a.docs-sourcelink.is-warning.is-light:not(body){background-color:#fffbeb;color:#cca400}.tag.is-danger:not(body),.content kbd.is-danger:not(body),.docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#cb3c33;color:#fff}.tag.is-danger.is-light:not(body),.content kbd.is-danger.is-light:not(body),.docstring>section>a.docs-sourcelink.is-danger.is-light:not(body){background-color:#fbefef;color:#c03930}.tag.is-normal:not(body),.content kbd.is-normal:not(body),.docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}.tag.is-medium:not(body),.content kbd.is-medium:not(body),.docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}.tag.is-large:not(body),.content kbd.is-large:not(body),.docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child),.content kbd:not(body) .icon:first-child:not(:last-child),.docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child),.content kbd:not(body) .icon:last-child:not(:first-child),.docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child,.content kbd:not(body) .icon:first-child:last-child,.docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag.is-delete:not(body),.content kbd.is-delete:not(body),.docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}.tag.is-delete:not(body)::before,.content kbd.is-delete:not(body)::before,.docstring>section>a.docs-sourcelink.is-delete:not(body)::before,.tag.is-delete:not(body)::after,.content kbd.is-delete:not(body)::after,.docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag.is-delete:not(body)::before,.content kbd.is-delete:not(body)::before,.docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}.tag.is-delete:not(body)::after,.content kbd.is-delete:not(body)::after,.docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}.tag.is-delete:not(body):hover,.content kbd.is-delete:not(body):hover,.docstring>section>a.docs-sourcelink.is-delete:not(body):hover,.tag.is-delete:not(body):focus,.content kbd.is-delete:not(body):focus,.docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#e8e8e8}.tag.is-delete:not(body):active,.content kbd.is-delete:not(body):active,.docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#dbdbdb}.tag.is-rounded:not(body),#documenter .docs-sidebar form.docs-search>input:not(body),.content kbd.is-rounded:not(body),#documenter .docs-sidebar .content form.docs-search>input:not(body),.docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:9999px}a.tag:hover,.docstring>section>a.docs-sourcelink:hover{text-decoration:underline}.title,.subtitle{word-break:break-word}.title em,.title span,.subtitle em,.subtitle span{font-weight:inherit}.title sub,.subtitle sub{font-size:.75em}.title sup,.subtitle sup{font-size:.75em}.title .tag,.title .content kbd,.content .title kbd,.title .docstring>section>a.docs-sourcelink,.subtitle .tag,.subtitle .content kbd,.content .subtitle kbd,.subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}.title{color:#222;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#222;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#222;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.number{align-items:center;background-color:#f5f5f5;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}.select select,.textarea,.input,#documenter .docs-sidebar form.docs-search>input{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#222}.select select::-moz-placeholder,.textarea::-moz-placeholder,.input::-moz-placeholder,#documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:#707070}.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.input::-webkit-input-placeholder,#documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:#707070}.select select:-moz-placeholder,.textarea:-moz-placeholder,.input:-moz-placeholder,#documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:#707070}.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder,.input:-ms-input-placeholder,#documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:#707070}.select select:hover,.textarea:hover,.input:hover,#documenter .docs-sidebar form.docs-search>input:hover,.select select.is-hovered,.is-hovered.textarea,.is-hovered.input,#documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#b5b5b5}.select select:focus,.textarea:focus,.input:focus,#documenter .docs-sidebar form.docs-search>input:focus,.select select.is-focused,.is-focused.textarea,.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.select select:active,.textarea:active,.input:active,#documenter .docs-sidebar form.docs-search>input:active,.select select.is-active,.is-active.textarea,.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{border-color:#2e63b8;box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.select select[disabled],.textarea[disabled],.input[disabled],#documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#6b6b6b}.select select[disabled]::-moz-placeholder,.textarea[disabled]::-moz-placeholder,.input[disabled]::-moz-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input::-moz-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input::-moz-placeholder{color:rgba(107,107,107,0.3)}.select select[disabled]::-webkit-input-placeholder,.textarea[disabled]::-webkit-input-placeholder,.input[disabled]::-webkit-input-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input::-webkit-input-placeholder{color:rgba(107,107,107,0.3)}.select select[disabled]:-moz-placeholder,.textarea[disabled]:-moz-placeholder,.input[disabled]:-moz-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input:-moz-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input:-moz-placeholder{color:rgba(107,107,107,0.3)}.select select[disabled]:-ms-input-placeholder,.textarea[disabled]:-ms-input-placeholder,.input[disabled]:-ms-input-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input:-ms-input-placeholder{color:rgba(107,107,107,0.3)}.textarea,.input,#documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 0.0625em 0.125em rgba(10,10,10,0.05);max-width:100%;width:100%}.textarea[readonly],.input[readonly],#documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}.is-white.textarea,.is-white.input,#documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}.is-white.textarea:focus,.is-white.input:focus,#documenter .docs-sidebar form.docs-search>input.is-white:focus,.is-white.is-focused.textarea,.is-white.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-white.textarea:active,.is-white.input:active,#documenter .docs-sidebar form.docs-search>input.is-white:active,.is-white.is-active.textarea,.is-white.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.is-black.textarea,.is-black.input,#documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}.is-black.textarea:focus,.is-black.input:focus,#documenter .docs-sidebar form.docs-search>input.is-black:focus,.is-black.is-focused.textarea,.is-black.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-black.textarea:active,.is-black.input:active,#documenter .docs-sidebar form.docs-search>input.is-black:active,.is-black.is-active.textarea,.is-black.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}.is-light.textarea,.is-light.input,#documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}.is-light.textarea:focus,.is-light.input:focus,#documenter .docs-sidebar form.docs-search>input.is-light:focus,.is-light.is-focused.textarea,.is-light.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-light.textarea:active,.is-light.input:active,#documenter .docs-sidebar form.docs-search>input.is-light:active,.is-light.is-active.textarea,.is-light.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.is-dark.textarea,.content kbd.textarea,.is-dark.input,#documenter .docs-sidebar form.docs-search>input.is-dark,.content kbd.input{border-color:#363636}.is-dark.textarea:focus,.content kbd.textarea:focus,.is-dark.input:focus,#documenter .docs-sidebar form.docs-search>input.is-dark:focus,.content kbd.input:focus,.is-dark.is-focused.textarea,.content kbd.is-focused.textarea,.is-dark.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.content kbd.is-focused.input,#documenter .docs-sidebar .content form.docs-search>input.is-focused,.is-dark.textarea:active,.content kbd.textarea:active,.is-dark.input:active,#documenter .docs-sidebar form.docs-search>input.is-dark:active,.content kbd.input:active,.is-dark.is-active.textarea,.content kbd.is-active.textarea,.is-dark.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active,.content kbd.is-active.input,#documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.is-primary.textarea,.docstring>section>a.textarea.docs-sourcelink,.is-primary.input,#documenter .docs-sidebar form.docs-search>input.is-primary,.docstring>section>a.input.docs-sourcelink{border-color:#4eb5de}.is-primary.textarea:focus,.docstring>section>a.textarea.docs-sourcelink:focus,.is-primary.input:focus,#documenter .docs-sidebar form.docs-search>input.is-primary:focus,.docstring>section>a.input.docs-sourcelink:focus,.is-primary.is-focused.textarea,.docstring>section>a.is-focused.textarea.docs-sourcelink,.is-primary.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.docstring>section>a.is-focused.input.docs-sourcelink,.is-primary.textarea:active,.docstring>section>a.textarea.docs-sourcelink:active,.is-primary.input:active,#documenter .docs-sidebar form.docs-search>input.is-primary:active,.docstring>section>a.input.docs-sourcelink:active,.is-primary.is-active.textarea,.docstring>section>a.is-active.textarea.docs-sourcelink,.is-primary.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active,.docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(78,181,222,0.25)}.is-link.textarea,.is-link.input,#documenter .docs-sidebar form.docs-search>input.is-link{border-color:#2e63b8}.is-link.textarea:focus,.is-link.input:focus,#documenter .docs-sidebar form.docs-search>input.is-link:focus,.is-link.is-focused.textarea,.is-link.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-link.textarea:active,.is-link.input:active,#documenter .docs-sidebar form.docs-search>input.is-link:active,.is-link.is-active.textarea,.is-link.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.is-info.textarea,.is-info.input,#documenter .docs-sidebar form.docs-search>input.is-info{border-color:#3c5dcd}.is-info.textarea:focus,.is-info.input:focus,#documenter .docs-sidebar form.docs-search>input.is-info:focus,.is-info.is-focused.textarea,.is-info.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-info.textarea:active,.is-info.input:active,#documenter .docs-sidebar form.docs-search>input.is-info:active,.is-info.is-active.textarea,.is-info.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}.is-success.textarea,.is-success.input,#documenter .docs-sidebar form.docs-search>input.is-success{border-color:#259a12}.is-success.textarea:focus,.is-success.input:focus,#documenter .docs-sidebar form.docs-search>input.is-success:focus,.is-success.is-focused.textarea,.is-success.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-success.textarea:active,.is-success.input:active,#documenter .docs-sidebar form.docs-search>input.is-success:active,.is-success.is-active.textarea,.is-success.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}.is-warning.textarea,.is-warning.input,#documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#a98800}.is-warning.textarea:focus,.is-warning.input:focus,#documenter .docs-sidebar form.docs-search>input.is-warning:focus,.is-warning.is-focused.textarea,.is-warning.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-warning.textarea:active,.is-warning.input:active,#documenter .docs-sidebar form.docs-search>input.is-warning:active,.is-warning.is-active.textarea,.is-warning.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(169,136,0,0.25)}.is-danger.textarea,.is-danger.input,#documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#cb3c33}.is-danger.textarea:focus,.is-danger.input:focus,#documenter .docs-sidebar form.docs-search>input.is-danger:focus,.is-danger.is-focused.textarea,.is-danger.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-danger.textarea:active,.is-danger.input:active,#documenter .docs-sidebar form.docs-search>input.is-danger:active,.is-danger.is-active.textarea,.is-danger.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}.is-small.textarea,.is-small.input,#documenter .docs-sidebar form.docs-search>input{border-radius:2px;font-size:.75rem}.is-medium.textarea,.is-medium.input,#documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}.is-large.textarea,.is-large.input,#documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}.is-fullwidth.textarea,.is-fullwidth.input,#documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}.is-inline.textarea,.is-inline.input,#documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}.input.is-rounded,#documenter .docs-sidebar form.docs-search>input{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}.input.is-static,#documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.radio,.checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.radio input,.checkbox input{cursor:pointer}.radio:hover,.checkbox:hover{color:#222}.radio[disabled],.checkbox[disabled],fieldset[disabled] .radio,fieldset[disabled] .checkbox,.radio input[disabled],.checkbox input[disabled]{color:#6b6b6b;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading)::after{border-color:#2e63b8;right:1.125em;z-index:4}.select.is-rounded select,#documenter .docs-sidebar form.docs-search>input.select select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:0.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:#222}.select.is-white:not(:hover)::after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.select.is-black:not(:hover)::after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}.select.is-light:not(:hover)::after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.select.is-dark:not(:hover)::after,.content kbd.select:not(:hover)::after{border-color:#363636}.select.is-dark select,.content kbd.select select{border-color:#363636}.select.is-dark select:hover,.content kbd.select select:hover,.select.is-dark select.is-hovered,.content kbd.select select.is-hovered{border-color:#292929}.select.is-dark select:focus,.content kbd.select select:focus,.select.is-dark select.is-focused,.content kbd.select select.is-focused,.select.is-dark select:active,.content kbd.select select:active,.select.is-dark select.is-active,.content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.select.is-primary:not(:hover)::after,.docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#4eb5de}.select.is-primary select,.docstring>section>a.select.docs-sourcelink select{border-color:#4eb5de}.select.is-primary select:hover,.docstring>section>a.select.docs-sourcelink select:hover,.select.is-primary select.is-hovered,.docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#39acda}.select.is-primary select:focus,.docstring>section>a.select.docs-sourcelink select:focus,.select.is-primary select.is-focused,.docstring>section>a.select.docs-sourcelink select.is-focused,.select.is-primary select:active,.docstring>section>a.select.docs-sourcelink select:active,.select.is-primary select.is-active,.docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(78,181,222,0.25)}.select.is-link:not(:hover)::after{border-color:#2e63b8}.select.is-link select{border-color:#2e63b8}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#2958a4}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.select.is-info:not(:hover)::after{border-color:#3c5dcd}.select.is-info select{border-color:#3c5dcd}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3151bf}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(60,93,205,0.25)}.select.is-success:not(:hover)::after{border-color:#259a12}.select.is-success select{border-color:#259a12}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#20830f}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(37,154,18,0.25)}.select.is-warning:not(:hover)::after{border-color:#a98800}.select.is-warning select{border-color:#a98800}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#8f7300}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(169,136,0,0.25)}.select.is-danger:not(:hover)::after{border-color:#cb3c33}.select.is-danger select{border-color:#cb3c33}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#b7362e}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(203,60,51,0.25)}.select.is-small,#documenter .docs-sidebar form.docs-search>input.select{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled::after{border-color:#6b6b6b !important;opacity:0.5}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}.select.is-loading.is-small:after,#documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-dark .file-cta,.content kbd.file .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.content kbd.file:hover .file-cta,.file.is-dark.is-hovered .file-cta,.content kbd.file.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.content kbd.file:focus .file-cta,.file.is-dark.is-focused .file-cta,.content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(54,54,54,0.25);color:#fff}.file.is-dark:active .file-cta,.content kbd.file:active .file-cta,.file.is-dark.is-active .file-cta,.content kbd.file.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta,.docstring>section>a.file.docs-sourcelink .file-cta{background-color:#4eb5de;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.docstring>section>a.file.docs-sourcelink:hover .file-cta,.file.is-primary.is-hovered .file-cta,.docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#43b1dc;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.docstring>section>a.file.docs-sourcelink:focus .file-cta,.file.is-primary.is-focused .file-cta,.docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(78,181,222,0.25);color:#fff}.file.is-primary:active .file-cta,.docstring>section>a.file.docs-sourcelink:active .file-cta,.file.is-primary.is-active .file-cta,.docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#39acda;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#2e63b8;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#2b5eae;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(46,99,184,0.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#2958a4;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3c5dcd;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3355c9;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(60,93,205,0.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3151bf;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#259a12;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#228f11;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(37,154,18,0.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#20830f;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#a98800;border-color:transparent;color:#fff}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#9c7d00;border-color:transparent;color:#fff}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(169,136,0,0.25);color:#fff}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#8f7300;border-color:transparent;color:#fff}.file.is-danger .file-cta{background-color:#cb3c33;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#c13930;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(203,60,51,0.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#b7362e;border-color:transparent;color:#fff}.file.is-small,#documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}.file.is-normal{font-size:1rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa,#documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#222}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#222}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#222}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#222;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:0.5em}.label.is-small,#documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:0.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark,.content kbd.help{color:#363636}.help.is-primary,.docstring>section>a.help.docs-sourcelink{color:#4eb5de}.help.is-link{color:#2e63b8}.help.is-info{color:#3c5dcd}.help.is-success{color:#259a12}.help.is-warning{color:#a98800}.help.is-danger{color:#cb3c33}.field:not(:last-child){margin-bottom:0.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button.is-hovered:not([disabled]),.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,.field.has-addons .control .input.is-hovered:not([disabled]),.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button.is-focused:not([disabled]),.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button.is-active:not([disabled]),.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,.field.has-addons .control .input.is-focused:not([disabled]),.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,.field.has-addons .control .input.is-active:not([disabled]),.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select.is-focused:not([disabled]),.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select.is-active:not([disabled]){z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button.is-focused:not([disabled]):hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button.is-active:not([disabled]):hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,.field.has-addons .control .input.is-focused:not([disabled]):hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,.field.has-addons .control .input.is-active:not([disabled]):hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select.is-focused:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width: 768px){.field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small,#documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}.field-label.is-normal{padding-top:0.375em}.field-label.is-medium{font-size:1.25rem;padding-top:0.375em}.field-label.is-large{font-size:1.5rem;padding-top:0.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#222}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}.control.is-loading.is-small:after,#documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#2e63b8;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#222;cursor:default;pointer-events:none}.breadcrumb li+li::before{color:#b5b5b5;content:"\0002f"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small,#documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li::before{content:"\02192"}.breadcrumb.has-bullet-separator li+li::before{content:"\02022"}.breadcrumb.has-dot-separator li+li::before{content:"\000b7"}.breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}.card{background-color:#fff;border-radius:.25rem;box-shadow:#bbb;color:#222;max-width:100%;position:relative}.card-footer:first-child,.card-content:first-child,.card-header:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-footer:last-child,.card-content:last-child,.card-header:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);display:flex}.card-header-title{align-items:center;color:#222;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}.card-image{display:block;position:relative}.card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-content{background-color:rgba(0,0,0,0);padding:1.5rem}.card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #ededed}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:#bbb;padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#222;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#2e63b8;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile{display:flex}.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .title,.level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,0.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,0.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small,#documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#222;display:block;padding:0.5em 0.75em}.menu-list a:hover{background-color:#f5f5f5;color:#222}.menu-list a.is-active{background-color:#2e63b8;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#6b6b6b;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small,#documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark,.content kbd.message{background-color:#fafafa}.message.is-dark .message-header,.content kbd.message .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body,.content kbd.message .message-body{border-color:#363636}.message.is-primary,.docstring>section>a.message.docs-sourcelink{background-color:#eef8fc}.message.is-primary .message-header,.docstring>section>a.message.docs-sourcelink .message-header{background-color:#4eb5de;color:#fff}.message.is-primary .message-body,.docstring>section>a.message.docs-sourcelink .message-body{border-color:#4eb5de;color:#1a6d8e}.message.is-link{background-color:#eff3fb}.message.is-link .message-header{background-color:#2e63b8;color:#fff}.message.is-link .message-body{border-color:#2e63b8;color:#3169c4}.message.is-info{background-color:#eff2fb}.message.is-info .message-header{background-color:#3c5dcd;color:#fff}.message.is-info .message-body{border-color:#3c5dcd;color:#3253c3}.message.is-success{background-color:#effded}.message.is-success .message-header{background-color:#259a12;color:#fff}.message.is-success .message-body{border-color:#259a12;color:#2ec016}.message.is-warning{background-color:#fffbeb}.message.is-warning .message-header{background-color:#a98800;color:#fff}.message.is-warning .message-body{border-color:#a98800;color:#cca400}.message.is-danger{background-color:#fbefef}.message.is-danger .message-header{background-color:#cb3c33;color:#fff}.message.is-danger .message-body{border-color:#cb3c33;color:#c03930}.message-header{align-items:center;background-color:#222;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#222;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:rgba(0,0,0,0)}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,0.86)}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#222;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand>.navbar-item,.navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){.navbar.is-white .navbar-start>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-start .navbar-link::after,.navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand>.navbar-item,.navbar.is-black .navbar-brand .navbar-link{color:#fff}.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-black .navbar-start>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-end .navbar-link{color:#fff}.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-start .navbar-link::after,.navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-brand>.navbar-item,.navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){.navbar.is-light .navbar-start>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-start .navbar-link::after,.navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}.navbar.is-dark,.content kbd.navbar{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand>.navbar-item,.content kbd.navbar .navbar-brand>.navbar-item,.navbar.is-dark .navbar-brand .navbar-link,.content kbd.navbar .navbar-brand .navbar-link{color:#fff}.navbar.is-dark .navbar-brand>a.navbar-item:focus,.content kbd.navbar .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover,.content kbd.navbar .navbar-brand>a.navbar-item:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.content kbd.navbar .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.content kbd.navbar .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.content kbd.navbar .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand .navbar-link.is-active,.content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link::after,.content kbd.navbar .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-burger,.content kbd.navbar .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-dark .navbar-start>.navbar-item,.content kbd.navbar .navbar-start>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.content kbd.navbar .navbar-start .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.content kbd.navbar .navbar-end>.navbar-item,.navbar.is-dark .navbar-end .navbar-link,.content kbd.navbar .navbar-end .navbar-link{color:#fff}.navbar.is-dark .navbar-start>a.navbar-item:focus,.content kbd.navbar .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover,.content kbd.navbar .navbar-start>a.navbar-item:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.content kbd.navbar .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.content kbd.navbar .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.content kbd.navbar .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.content kbd.navbar .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.content kbd.navbar .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.content kbd.navbar .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.content kbd.navbar .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.content kbd.navbar .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.content kbd.navbar .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end .navbar-link.is-active,.content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-start .navbar-link::after,.content kbd.navbar .navbar-start .navbar-link::after,.navbar.is-dark .navbar-end .navbar-link::after,.content kbd.navbar .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,.content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,.content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active,.content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary,.docstring>section>a.navbar.docs-sourcelink{background-color:#4eb5de;color:#fff}.navbar.is-primary .navbar-brand>.navbar-item,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,.navbar.is-primary .navbar-brand .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}.navbar.is-primary .navbar-brand>a.navbar-item:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand .navbar-link.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#39acda;color:#fff}.navbar.is-primary .navbar-brand .navbar-link::after,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-burger,.docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-primary .navbar-start>.navbar-item,.docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,.navbar.is-primary .navbar-end .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}.navbar.is-primary .navbar-start>a.navbar-item:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end .navbar-link.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#39acda;color:#fff}.navbar.is-primary .navbar-start .navbar-link::after,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,.navbar.is-primary .navbar-end .navbar-link::after,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#39acda;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#4eb5de;color:#fff}}.navbar.is-link{background-color:#2e63b8;color:#fff}.navbar.is-link .navbar-brand>.navbar-item,.navbar.is-link .navbar-brand .navbar-link{color:#fff}.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#2958a4;color:#fff}.navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-link .navbar-start>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-end .navbar-link{color:#fff}.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end .navbar-link.is-active{background-color:#2958a4;color:#fff}.navbar.is-link .navbar-start .navbar-link::after,.navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2958a4;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#2e63b8;color:#fff}}.navbar.is-info{background-color:#3c5dcd;color:#fff}.navbar.is-info .navbar-brand>.navbar-item,.navbar.is-info .navbar-brand .navbar-link{color:#fff}.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#3151bf;color:#fff}.navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-info .navbar-start>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-end .navbar-link{color:#fff}.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end .navbar-link.is-active{background-color:#3151bf;color:#fff}.navbar.is-info .navbar-start .navbar-link::after,.navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3151bf;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3c5dcd;color:#fff}}.navbar.is-success{background-color:#259a12;color:#fff}.navbar.is-success .navbar-brand>.navbar-item,.navbar.is-success .navbar-brand .navbar-link{color:#fff}.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#20830f;color:#fff}.navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-success .navbar-start>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-end .navbar-link{color:#fff}.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end .navbar-link.is-active{background-color:#20830f;color:#fff}.navbar.is-success .navbar-start .navbar-link::after,.navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#20830f;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#259a12;color:#fff}}.navbar.is-warning{background-color:#a98800;color:#fff}.navbar.is-warning .navbar-brand>.navbar-item,.navbar.is-warning .navbar-brand .navbar-link{color:#fff}.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#8f7300;color:#fff}.navbar.is-warning .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-warning .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-warning .navbar-start>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-end .navbar-link{color:#fff}.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#8f7300;color:#fff}.navbar.is-warning .navbar-start .navbar-link::after,.navbar.is-warning .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#8f7300;color:#fff}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#a98800;color:#fff}}.navbar.is-danger{background-color:#cb3c33;color:#fff}.navbar.is-danger .navbar-brand>.navbar-item,.navbar.is-danger .navbar-brand .navbar-link{color:#fff}.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#b7362e;color:#fff}.navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-danger .navbar-start>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-end .navbar-link{color:#fff}.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#b7362e;color:#fff}.navbar.is-danger .navbar-start .navbar-link::after,.navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#b7362e;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#cb3c33;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}html.has-navbar-fixed-top,body.has-navbar-fixed-top{padding-top:3.25rem}html.has-navbar-fixed-bottom,body.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#222;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,0.05)}.navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#222;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}a.navbar-item,.navbar-link{cursor:pointer}a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover,a.navbar-item.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,.navbar-link.is-active{background-color:#fafafa;color:#2e63b8}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(0.5rem - 1px)}.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#2e63b8}.navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#2e63b8;border-bottom-style:solid;border-bottom-width:3px;color:#2e63b8;padding-bottom:calc(0.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless)::after{border-color:#2e63b8;margin-top:-0.375em;right:1.125em}.navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link::after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}html.has-navbar-fixed-top-touch,body.has-navbar-fixed-top-touch{padding-top:3.25rem}html.has-navbar-fixed-bottom-touch,body.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width: 1056px){.navbar,.navbar-menu,.navbar-start,.navbar-end{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-start,.navbar.is-spaced .navbar-end{align-items:center}.navbar.is-spaced a.navbar-item,.navbar.is-spaced .navbar-link{border-radius:4px}.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#2e63b8}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#2e63b8}.navbar.is-spaced .navbar-dropdown,.navbar-dropdown.is-boxed{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.navbar>.container .navbar-brand,.container>.navbar .navbar-brand{margin-left:-.75rem}.navbar>.container .navbar-menu,.container>.navbar .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}.navbar.is-fixed-top-desktop{top:0}html.has-navbar-fixed-top-desktop,body.has-navbar-fixed-top-desktop{padding-top:3.25rem}html.has-navbar-fixed-bottom-desktop,body.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}html.has-spaced-navbar-fixed-top,body.has-spaced-navbar-fixed-top{padding-top:5.25rem}html.has-spaced-navbar-fixed-bottom,body.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}a.navbar-item.is-active,.navbar-link.is-active{color:#0a0a0a}a.navbar-item.is-active:not(:focus):not(:hover),.navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link,.navbar-item.has-dropdown.is-active .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small,#documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-previous,#documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,.pagination.is-rounded .pagination-next,#documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}.pagination.is-rounded .pagination-link,#documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:9999px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:#dbdbdb;color:#222;min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:#b5b5b5;color:#363636}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:#3c5dcd}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}.pagination-previous[disabled],.pagination-previous.is-disabled,.pagination-next[disabled],.pagination-next.is-disabled,.pagination-link[disabled],.pagination-link.is-disabled{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#6b6b6b;opacity:0.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#2e63b8;border-color:#2e63b8;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}.pagination-list li{list-style:none}@media screen and (max-width: 768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next{flex-grow:1;flex-shrink:1}.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{margin-bottom:0;margin-top:0}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between;margin-bottom:0;margin-top:0}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:#bbb;font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}.panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}.panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading,.content kbd.panel .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active,.content kbd.panel .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon,.content kbd.panel .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading,.docstring>section>a.panel.docs-sourcelink .panel-heading{background-color:#4eb5de;color:#fff}.panel.is-primary .panel-tabs a.is-active,.docstring>section>a.panel.docs-sourcelink .panel-tabs a.is-active{border-bottom-color:#4eb5de}.panel.is-primary .panel-block.is-active .panel-icon,.docstring>section>a.panel.docs-sourcelink .panel-block.is-active .panel-icon{color:#4eb5de}.panel.is-link .panel-heading{background-color:#2e63b8;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#2e63b8}.panel.is-link .panel-block.is-active .panel-icon{color:#2e63b8}.panel.is-info .panel-heading{background-color:#3c5dcd;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3c5dcd}.panel.is-info .panel-block.is-active .panel-icon{color:#3c5dcd}.panel.is-success .panel-heading{background-color:#259a12;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#259a12}.panel.is-success .panel-block.is-active .panel-icon{color:#259a12}.panel.is-warning .panel-heading{background-color:#a98800;color:#fff}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#a98800}.panel.is-warning .panel-block.is-active .panel-icon{color:#a98800}.panel.is-danger .panel-heading{background-color:#cb3c33;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#cb3c33}.panel.is-danger .panel-block.is-active .panel-icon{color:#cb3c33}.panel-tabs:not(:last-child),.panel-block:not(:last-child){border-bottom:1px solid #ededed}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#222;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:0.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#222}.panel-list a:hover{color:#2e63b8}.panel-block{align-items:center;color:#222;display:flex;justify-content:flex-start;padding:0.5em 0.75em}.panel-block input[type="checkbox"]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#2e63b8;color:#363636}.panel-block.is-active .panel-icon{color:#2e63b8}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#6b6b6b;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#222;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#222;color:#222}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#2e63b8;color:#2e63b8}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:0.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:rgba(0,0,0,0) !important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#2e63b8;border-color:#2e63b8;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}.tabs.is-small,#documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none;width:unset}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0%}.columns.is-mobile>.column.is-offset-0{margin-left:0%}.columns.is-mobile>.column.is-1{flex:none;width:8.33333337%}.columns.is-mobile>.column.is-offset-1{margin-left:8.33333337%}.columns.is-mobile>.column.is-2{flex:none;width:16.66666674%}.columns.is-mobile>.column.is-offset-2{margin-left:16.66666674%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.33333337%}.columns.is-mobile>.column.is-offset-4{margin-left:33.33333337%}.columns.is-mobile>.column.is-5{flex:none;width:41.66666674%}.columns.is-mobile>.column.is-offset-5{margin-left:41.66666674%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.33333337%}.columns.is-mobile>.column.is-offset-7{margin-left:58.33333337%}.columns.is-mobile>.column.is-8{flex:none;width:66.66666674%}.columns.is-mobile>.column.is-offset-8{margin-left:66.66666674%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.33333337%}.columns.is-mobile>.column.is-offset-10{margin-left:83.33333337%}.columns.is-mobile>.column.is-11{flex:none;width:91.66666674%}.columns.is-mobile>.column.is-offset-11{margin-left:91.66666674%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){.column.is-narrow-mobile{flex:none;width:unset}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0%}.column.is-offset-0-mobile{margin-left:0%}.column.is-1-mobile{flex:none;width:8.33333337%}.column.is-offset-1-mobile{margin-left:8.33333337%}.column.is-2-mobile{flex:none;width:16.66666674%}.column.is-offset-2-mobile{margin-left:16.66666674%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.33333337%}.column.is-offset-4-mobile{margin-left:33.33333337%}.column.is-5-mobile{flex:none;width:41.66666674%}.column.is-offset-5-mobile{margin-left:41.66666674%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.33333337%}.column.is-offset-7-mobile{margin-left:58.33333337%}.column.is-8-mobile{flex:none;width:66.66666674%}.column.is-offset-8-mobile{margin-left:66.66666674%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.33333337%}.column.is-offset-10-mobile{margin-left:83.33333337%}.column.is-11-mobile{flex:none;width:91.66666674%}.column.is-offset-11-mobile{margin-left:91.66666674%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none;width:unset}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0%}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0%}.column.is-1,.column.is-1-tablet{flex:none;width:8.33333337%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.33333337%}.column.is-2,.column.is-2-tablet{flex:none;width:16.66666674%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.66666674%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.33333337%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.33333337%}.column.is-5,.column.is-5-tablet{flex:none;width:41.66666674%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.66666674%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.33333337%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.33333337%}.column.is-8,.column.is-8-tablet{flex:none;width:66.66666674%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.66666674%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.33333337%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.33333337%}.column.is-11,.column.is-11-tablet{flex:none;width:91.66666674%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.66666674%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){.column.is-narrow-touch{flex:none;width:unset}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0%}.column.is-offset-0-touch{margin-left:0%}.column.is-1-touch{flex:none;width:8.33333337%}.column.is-offset-1-touch{margin-left:8.33333337%}.column.is-2-touch{flex:none;width:16.66666674%}.column.is-offset-2-touch{margin-left:16.66666674%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.33333337%}.column.is-offset-4-touch{margin-left:33.33333337%}.column.is-5-touch{flex:none;width:41.66666674%}.column.is-offset-5-touch{margin-left:41.66666674%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.33333337%}.column.is-offset-7-touch{margin-left:58.33333337%}.column.is-8-touch{flex:none;width:66.66666674%}.column.is-offset-8-touch{margin-left:66.66666674%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.33333337%}.column.is-offset-10-touch{margin-left:83.33333337%}.column.is-11-touch{flex:none;width:91.66666674%}.column.is-offset-11-touch{margin-left:91.66666674%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){.column.is-narrow-desktop{flex:none;width:unset}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0%}.column.is-offset-0-desktop{margin-left:0%}.column.is-1-desktop{flex:none;width:8.33333337%}.column.is-offset-1-desktop{margin-left:8.33333337%}.column.is-2-desktop{flex:none;width:16.66666674%}.column.is-offset-2-desktop{margin-left:16.66666674%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.33333337%}.column.is-offset-4-desktop{margin-left:33.33333337%}.column.is-5-desktop{flex:none;width:41.66666674%}.column.is-offset-5-desktop{margin-left:41.66666674%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.33333337%}.column.is-offset-7-desktop{margin-left:58.33333337%}.column.is-8-desktop{flex:none;width:66.66666674%}.column.is-offset-8-desktop{margin-left:66.66666674%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.33333337%}.column.is-offset-10-desktop{margin-left:83.33333337%}.column.is-11-desktop{flex:none;width:91.66666674%}.column.is-offset-11-desktop{margin-left:91.66666674%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){.column.is-narrow-widescreen{flex:none;width:unset}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0%}.column.is-offset-0-widescreen{margin-left:0%}.column.is-1-widescreen{flex:none;width:8.33333337%}.column.is-offset-1-widescreen{margin-left:8.33333337%}.column.is-2-widescreen{flex:none;width:16.66666674%}.column.is-offset-2-widescreen{margin-left:16.66666674%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.33333337%}.column.is-offset-4-widescreen{margin-left:33.33333337%}.column.is-5-widescreen{flex:none;width:41.66666674%}.column.is-offset-5-widescreen{margin-left:41.66666674%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.33333337%}.column.is-offset-7-widescreen{margin-left:58.33333337%}.column.is-8-widescreen{flex:none;width:66.66666674%}.column.is-offset-8-widescreen{margin-left:66.66666674%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.33333337%}.column.is-offset-10-widescreen{margin-left:83.33333337%}.column.is-11-widescreen{flex:none;width:91.66666674%}.column.is-offset-11-widescreen{margin-left:91.66666674%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){.column.is-narrow-fullhd{flex:none;width:unset}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0%}.column.is-offset-0-fullhd{margin-left:0%}.column.is-1-fullhd{flex:none;width:8.33333337%}.column.is-offset-1-fullhd{margin-left:8.33333337%}.column.is-2-fullhd{flex:none;width:16.66666674%}.column.is-offset-2-fullhd{margin-left:16.66666674%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.33333337%}.column.is-offset-4-fullhd{margin-left:33.33333337%}.column.is-5-fullhd{flex:none;width:41.66666674%}.column.is-offset-5-fullhd{margin-left:41.66666674%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.33333337%}.column.is-offset-7-fullhd{margin-left:58.33333337%}.column.is-8-fullhd{flex:none;width:66.66666674%}.column.is-offset-8-fullhd{margin-left:66.66666674%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.33333337%}.column.is-offset-10-fullhd{margin-left:83.33333337%}.column.is-11-fullhd{flex:none;width:91.66666674%}.column.is-offset-11-fullhd{margin-left:91.66666674%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0 !important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){.columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-0-fullhd{--columnGap: 0rem}}.columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){.columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-1-fullhd{--columnGap: .25rem}}.columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){.columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-2-fullhd{--columnGap: .5rem}}.columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){.columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-3-fullhd{--columnGap: .75rem}}.columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){.columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-4-fullhd{--columnGap: 1rem}}.columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}.columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}.columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}.columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){.columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-8-fullhd{--columnGap: 2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0 !important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.33333337%}.tile.is-2{flex:none;width:16.66666674%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.33333337%}.tile.is-5{flex:none;width:41.66666674%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.33333337%}.tile.is-8{flex:none;width:66.66666674%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.33333337%}.tile.is-11{flex:none;width:91.66666674%}.tile.is-12{flex:none;width:100%}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:rgba(10,10,10,0.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}.hero.is-white a.navbar-item:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white .navbar-link:hover,.hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:rgba(255,255,255,0.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-black a.navbar-item:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black .navbar-link:hover,.hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:0.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{color:#0a0a0a !important;opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:rgba(0,0,0,0.7)}.hero.is-light .subtitle{color:rgba(0,0,0,0.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}.hero.is-light a.navbar-item:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light .navbar-link:hover,.hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}.hero.is-dark,.content kbd.hero{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong,.content kbd.hero strong{color:inherit}.hero.is-dark .title,.content kbd.hero .title{color:#fff}.hero.is-dark .subtitle,.content kbd.hero .subtitle{color:rgba(255,255,255,0.9)}.hero.is-dark .subtitle a:not(.button),.content kbd.hero .subtitle a:not(.button),.hero.is-dark .subtitle strong,.content kbd.hero .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-dark .navbar-menu,.content kbd.hero .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.content kbd.hero .navbar-item,.hero.is-dark .navbar-link,.content kbd.hero .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-dark a.navbar-item:hover,.content kbd.hero a.navbar-item:hover,.hero.is-dark a.navbar-item.is-active,.content kbd.hero a.navbar-item.is-active,.hero.is-dark .navbar-link:hover,.content kbd.hero .navbar-link:hover,.hero.is-dark .navbar-link.is-active,.content kbd.hero .navbar-link.is-active{background-color:#292929;color:#fff}.hero.is-dark .tabs a,.content kbd.hero .tabs a{color:#fff;opacity:0.9}.hero.is-dark .tabs a:hover,.content kbd.hero .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a,.content kbd.hero .tabs li.is-active a{color:#363636 !important;opacity:1}.hero.is-dark .tabs.is-boxed a,.content kbd.hero .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a,.content kbd.hero .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.content kbd.hero .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover,.content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.content kbd.hero .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.content kbd.hero .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold,.content kbd.hero.is-bold{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}@media screen and (max-width: 768px){.hero.is-dark.is-bold .navbar-menu,.content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}}.hero.is-primary,.docstring>section>a.hero.docs-sourcelink{background-color:#4eb5de;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong,.docstring>section>a.hero.docs-sourcelink strong{color:inherit}.hero.is-primary .title,.docstring>section>a.hero.docs-sourcelink .title{color:#fff}.hero.is-primary .subtitle,.docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}.hero.is-primary .subtitle a:not(.button),.docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),.hero.is-primary .subtitle strong,.docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-primary .navbar-menu,.docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#4eb5de}}.hero.is-primary .navbar-item,.docstring>section>a.hero.docs-sourcelink .navbar-item,.hero.is-primary .navbar-link,.docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-primary a.navbar-item:hover,.docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,.hero.is-primary a.navbar-item.is-active,.docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,.hero.is-primary .navbar-link:hover,.docstring>section>a.hero.docs-sourcelink .navbar-link:hover,.hero.is-primary .navbar-link.is-active,.docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#39acda;color:#fff}.hero.is-primary .tabs a,.docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}.hero.is-primary .tabs a:hover,.docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a,.docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{color:#4eb5de !important;opacity:1}.hero.is-primary .tabs.is-boxed a,.docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a,.docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover,.docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#4eb5de}.hero.is-primary.is-bold,.docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #1bc7de 0%, #4eb5de 71%, #5fa9e7 100%)}@media screen and (max-width: 768px){.hero.is-primary.is-bold .navbar-menu,.docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #1bc7de 0%, #4eb5de 71%, #5fa9e7 100%)}}.hero.is-link{background-color:#2e63b8;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:rgba(255,255,255,0.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-link .navbar-menu{background-color:#2e63b8}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-link a.navbar-item:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link .navbar-link:hover,.hero.is-link .navbar-link.is-active{background-color:#2958a4;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:0.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{color:#2e63b8 !important;opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#2e63b8}.hero.is-link.is-bold{background-image:linear-gradient(141deg, #1b6098 0%, #2e63b8 71%, #2d51d2 100%)}@media screen and (max-width: 768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1b6098 0%, #2e63b8 71%, #2d51d2 100%)}}.hero.is-info{background-color:#3c5dcd;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:rgba(255,255,255,0.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-info .navbar-menu{background-color:#3c5dcd}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-info a.navbar-item:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info .navbar-link:hover,.hero.is-info .navbar-link.is-active{background-color:#3151bf;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:0.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{color:#3c5dcd !important;opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3c5dcd}.hero.is-info.is-bold{background-image:linear-gradient(141deg, #215bb5 0%, #3c5dcd 71%, #4b53d8 100%)}@media screen and (max-width: 768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #215bb5 0%, #3c5dcd 71%, #4b53d8 100%)}}.hero.is-success{background-color:#259a12;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:rgba(255,255,255,0.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-success .navbar-menu{background-color:#259a12}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-success a.navbar-item:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success .navbar-link:hover,.hero.is-success .navbar-link.is-active{background-color:#20830f;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:0.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{color:#259a12 !important;opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#259a12}.hero.is-success.is-bold{background-image:linear-gradient(141deg, #287207 0%, #259a12 71%, #10b614 100%)}@media screen and (max-width: 768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #287207 0%, #259a12 71%, #10b614 100%)}}.hero.is-warning{background-color:#a98800;color:#fff}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:#fff}.hero.is-warning .subtitle{color:rgba(255,255,255,0.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-warning .navbar-menu{background-color:#a98800}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-warning a.navbar-item:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning .navbar-link.is-active{background-color:#8f7300;color:#fff}.hero.is-warning .tabs a{color:#fff;opacity:0.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{color:#a98800 !important;opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:#fff}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#a98800}.hero.is-warning.is-bold{background-image:linear-gradient(141deg, #764b00 0%, #a98800 71%, #c2bd00 100%)}@media screen and (max-width: 768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #764b00 0%, #a98800 71%, #c2bd00 100%)}}.hero.is-danger{background-color:#cb3c33;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-danger .navbar-menu{background-color:#cb3c33}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-danger a.navbar-item:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger .navbar-link.is-active{background-color:#b7362e;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:0.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{color:#cb3c33 !important;opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#cb3c33}.hero.is-danger.is-bold{background-image:linear-gradient(141deg, #ac1f2e 0%, #cb3c33 71%, #d66341 100%)}@media screen and (max-width: 768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ac1f2e 0%, #cb3c33 71%, #d66341 100%)}}.hero.is-small .hero-body,#documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{.hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{.hero.is-large .hero-body{padding:18rem 6rem}}.hero.is-halfheight .hero-body,.hero.is-fullheight .hero-body,.hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}.hero.is-halfheight .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}.hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-head,.hero-foot{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{.hero-body{padding:3rem 3rem}}.section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){.section{padding:3rem 3rem}.section.is-medium{padding:9rem 4.5rem}.section.is-large{padding:18rem 6rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}h1 .docs-heading-anchor,h1 .docs-heading-anchor:hover,h1 .docs-heading-anchor:visited,h2 .docs-heading-anchor,h2 .docs-heading-anchor:hover,h2 .docs-heading-anchor:visited,h3 .docs-heading-anchor,h3 .docs-heading-anchor:hover,h3 .docs-heading-anchor:visited,h4 .docs-heading-anchor,h4 .docs-heading-anchor:hover,h4 .docs-heading-anchor:visited,h5 .docs-heading-anchor,h5 .docs-heading-anchor:hover,h5 .docs-heading-anchor:visited,h6 .docs-heading-anchor,h6 .docs-heading-anchor:hover,h6 .docs-heading-anchor:visited{color:#222}h1 .docs-heading-anchor-permalink,h2 .docs-heading-anchor-permalink,h3 .docs-heading-anchor-permalink,h4 .docs-heading-anchor-permalink,h5 .docs-heading-anchor-permalink,h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}h1 .docs-heading-anchor-permalink::before,h2 .docs-heading-anchor-permalink::before,h3 .docs-heading-anchor-permalink::before,h4 .docs-heading-anchor-permalink::before,h5 .docs-heading-anchor-permalink::before,h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f0c1"}h1:hover .docs-heading-anchor-permalink,h2:hover .docs-heading-anchor-permalink,h3:hover .docs-heading-anchor-permalink,h4:hover .docs-heading-anchor-permalink,h5:hover .docs-heading-anchor-permalink,h6:hover .docs-heading-anchor-permalink{visibility:visible}.docs-dark-only{display:none !important}pre{position:relative;overflow:hidden}pre code,pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}pre code:first-of-type,pre code.hljs:first-of-type{padding-top:0.5rem !important}pre code:last-of-type,pre code.hljs:last-of-type{padding-bottom:0.5rem !important}pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 6 Free";color:#222;cursor:pointer;text-align:center}pre .copy-button:focus,pre .copy-button:hover{opacity:1;background:rgba(34,34,34,0.1);color:#2e63b8}pre .copy-button.success{color:#259a12;opacity:1}pre .copy-button.error{color:#cb3c33;opacity:1}pre:hover .copy-button{opacity:1}.admonition{background-color:#f5f5f5;border-style:solid;border-width:2px;border-color:#4a4a4a;border-radius:4px;font-size:1rem}.admonition strong{color:currentColor}.admonition.is-small,#documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}.admonition.is-medium{font-size:1.25rem}.admonition.is-large{font-size:1.5rem}.admonition.is-default{background-color:#f5f5f5;border-color:#4a4a4a}.admonition.is-default>.admonition-header{background-color:rgba(0,0,0,0);color:#4a4a4a}.admonition.is-default>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-info{background-color:#f5f5f5;border-color:#3c5dcd}.admonition.is-info>.admonition-header{background-color:rgba(0,0,0,0);color:#3c5dcd}.admonition.is-info>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-success{background-color:#f5f5f5;border-color:#259a12}.admonition.is-success>.admonition-header{background-color:rgba(0,0,0,0);color:#259a12}.admonition.is-success>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-warning{background-color:#f5f5f5;border-color:#a98800}.admonition.is-warning>.admonition-header{background-color:rgba(0,0,0,0);color:#a98800}.admonition.is-warning>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-danger{background-color:#f5f5f5;border-color:#cb3c33}.admonition.is-danger>.admonition-header{background-color:rgba(0,0,0,0);color:#cb3c33}.admonition.is-danger>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-compat{background-color:#f5f5f5;border-color:#3489da}.admonition.is-compat>.admonition-header{background-color:rgba(0,0,0,0);color:#3489da}.admonition.is-compat>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-todo{background-color:#f5f5f5;border-color:#9558b2}.admonition.is-todo>.admonition-header{background-color:rgba(0,0,0,0);color:#9558b2}.admonition.is-todo>.admonition-body{color:rgba(0,0,0,0.7)}.admonition-header{color:#4a4a4a;background-color:rgba(0,0,0,0);align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}details.admonition.is-details>.admonition-header{list-style:none}details.admonition.is-details>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f055"}details.admonition.is-details[open]>.admonition-header:before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f056"}.admonition-body{color:#222;padding:0.5rem .75rem}.admonition-body pre{background-color:#f5f5f5}.admonition-body code{background-color:rgba(0,0,0,0.05)}.docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:2px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(10,10,10,0.1);max-width:100%}.docstring>header{cursor:pointer;display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#f5f5f5;box-shadow:0 0.125em 0.25em rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #dbdbdb;overflow:auto}.docstring>header code{background-color:transparent}.docstring>header .docstring-article-toggle-button{min-width:1.1rem;padding:0.2rem 0.2rem 0.2rem 0}.docstring>header .docstring-binding{margin-right:0.3em}.docstring>header .docstring-category{margin-left:0.3em}.docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #dbdbdb}.docstring>section:last-child{border-bottom:none}.docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}.docstring>section>a.docs-sourcelink:focus{opacity:1 !important}.docstring:hover>section>a.docs-sourcelink{opacity:0.2}.docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}.docstring>section:hover a.docs-sourcelink{opacity:1}.documenter-example-output{background-color:#fff}.outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#f5f5f5;color:rgba(0,0,0,0.7);border-bottom:3px solid rgba(0,0,0,0);padding:10px 35px;text-align:center;font-size:15px}.outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}.outdated-warning-overlay a{color:#2e63b8}.outdated-warning-overlay a:hover{color:#363636}.content pre{border:2px solid #dbdbdb;border-radius:4px}.content code{font-weight:inherit}.content a code{color:#2e63b8}.content a:hover code{color:#363636}.content h1 code,.content h2 code,.content h3 code,.content h4 code,.content h5 code,.content h6 code{color:#222}.content table{display:block;width:initial;max-width:100%;overflow-x:auto}.content blockquote>ul:first-child,.content blockquote>ol:first-child,.content .admonition-body>ul:first-child,.content .admonition-body>ol:first-child{margin-top:0}pre,code{font-variant-ligatures:no-contextual}.breadcrumb a.is-disabled{cursor:default;pointer-events:none}.breadcrumb a.is-disabled,.breadcrumb a.is-disabled:hover{color:#222}.hljs{background:initial !important}.katex .katex-mathml{top:0;right:0}.katex-display,mjx-container,.MathJax_Display{margin:0.5em 0 !important}html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}li.no-marker{list-style:none}#documenter .docs-main>article{overflow-wrap:break-word}#documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){#documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){#documenter .docs-main{width:100%}#documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}#documenter .docs-main>header,#documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}#documenter .docs-main header.docs-navbar{background-color:#fff;border-bottom:1px solid #dbdbdb;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}#documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1;overflow-x:hidden}#documenter .docs-main header.docs-navbar .docs-sidebar-button{display:block;font-size:1.5rem;padding-bottom:0.1rem;margin-right:1rem}#documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap;gap:1rem;align-items:center}#documenter .docs-main header.docs-navbar .docs-right .docs-icon,#documenter .docs-main header.docs-navbar .docs-right .docs-label{display:inline-block}#documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}@media screen and (max-width: 1055px){#documenter .docs-main header.docs-navbar .docs-right .docs-navbar-link{margin-left:0.4rem;margin-right:0.4rem}}#documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){#documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}#documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #bbb;transition-duration:0.7s;-webkit-transition-duration:0.7s}#documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}#documenter .docs-main section.footnotes{border-top:1px solid #dbdbdb}#documenter .docs-main section.footnotes li .tag:first-child,#documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,#documenter .docs-main section.footnotes li .content kbd:first-child,.content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}#documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #dbdbdb;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){#documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}#documenter .docs-main .docs-footer .docs-footer-nextpage,#documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}#documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}#documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}#documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}#documenter .docs-sidebar{display:flex;flex-direction:column;color:#0a0a0a;background-color:#f5f5f5;border-right:1px solid #dbdbdb;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}#documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #bbb}@media screen and (min-width: 1056px){#documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){#documenter .docs-sidebar{left:0;top:0}}#documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}#documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}#documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}#documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}#documenter .docs-sidebar .docs-package-name a,#documenter .docs-sidebar .docs-package-name a:hover{color:#0a0a0a}#documenter .docs-sidebar .docs-version-selector{border-top:1px solid #dbdbdb;display:none;padding:0.5rem}#documenter .docs-sidebar .docs-version-selector.visible{display:flex}#documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #dbdbdb;padding-bottom:1.5rem}#documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}#documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #dbdbdb}#documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}#documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}#documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}#documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}#documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}#documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}#documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 6 Free";font-weight:900;content:"\f054"}#documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}#documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}#documenter .docs-sidebar ul.docs-menu .tocitem,#documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#0a0a0a;background:#f5f5f5}#documenter .docs-sidebar ul.docs-menu a.tocitem:hover,#documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#0a0a0a;background-color:#ebebeb}#documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #dbdbdb;border-bottom:1px solid #dbdbdb;background-color:#fff}#documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,#documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#fff;color:#0a0a0a}#documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#ebebeb;color:#0a0a0a}#documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}#documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #dbdbdb}#documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}#documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}#documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}#documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}#documenter .docs-sidebar form.docs-search>input{width:14.4rem}#documenter .docs-sidebar #documenter-search-query{color:#707070;width:14.4rem;box-shadow:inset 0 1px 2px rgba(10,10,10,0.1)}@media screen and (min-width: 1056px){#documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}#documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}#documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#e0e0e0}#documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#ccc}}@media screen and (max-width: 1055px){#documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}#documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}#documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#e0e0e0}#documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#ccc}}kbd.search-modal-key-hints{border-radius:0.25rem;border:1px solid rgba(0,0,0,0.6);box-shadow:0 2px 0 1px rgba(0,0,0,0.6);cursor:default;font-size:0.9rem;line-height:1.5;min-width:0.75rem;text-align:center;padding:0.1rem 0.3rem;position:relative;top:-1px}.search-min-width-50{min-width:50%}.search-min-height-100{min-height:100%}.search-modal-card-body{max-height:calc(100vh - 15rem)}.search-result-link{border-radius:0.7em;transition:all 300ms}.search-result-link:hover,.search-result-link:focus{background-color:rgba(0,128,128,0.1)}.search-result-link .property-search-result-badge,.search-result-link .search-filter{transition:all 300ms}.property-search-result-badge,.search-filter{padding:0.15em 0.5em;font-size:0.8em;font-style:italic;text-transform:none !important;line-height:1.5;color:#f5f5f5;background-color:rgba(51,65,85,0.501961);border-radius:0.6rem}.search-result-link:hover .property-search-result-badge,.search-result-link:hover .search-filter,.search-result-link:focus .property-search-result-badge,.search-result-link:focus .search-filter{color:#f1f5f9;background-color:#333}.search-filter{color:#333;background-color:#f5f5f5;transition:all 300ms}.search-filter:hover,.search-filter:focus{color:#333}.search-filter-selected{color:#f5f5f5;background-color:rgba(139,0,139,0.5)}.search-filter-selected:hover,.search-filter-selected:focus{color:#f5f5f5}.search-result-highlight{background-color:#ffdd57;color:black}.search-divider{border-bottom:1px solid #dbdbdb}.search-result-title{width:85%;color:#333}.search-result-code-title{font-size:0.875rem;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}#search-modal .modal-card-body::-webkit-scrollbar,#search-modal .filter-tabs::-webkit-scrollbar{height:10px;width:10px;background-color:transparent}#search-modal .modal-card-body::-webkit-scrollbar-thumb,#search-modal .filter-tabs::-webkit-scrollbar-thumb{background-color:gray;border-radius:1rem}#search-modal .modal-card-body::-webkit-scrollbar-track,#search-modal .filter-tabs::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.6);background-color:transparent}.w-100{width:100%}.gap-2{gap:0.5rem}.gap-4{gap:1rem}.gap-8{gap:2rem}.ansi span.sgr1{font-weight:bolder}.ansi span.sgr2{font-weight:lighter}.ansi span.sgr3{font-style:italic}.ansi span.sgr4{text-decoration:underline}.ansi span.sgr7{color:#fff;background-color:#222}.ansi span.sgr8{color:transparent}.ansi span.sgr8 span{color:transparent}.ansi span.sgr9{text-decoration:line-through}.ansi span.sgr30{color:#242424}.ansi span.sgr31{color:#a7201f}.ansi span.sgr32{color:#066f00}.ansi span.sgr33{color:#856b00}.ansi span.sgr34{color:#2149b0}.ansi span.sgr35{color:#7d4498}.ansi span.sgr36{color:#007989}.ansi span.sgr37{color:gray}.ansi span.sgr40{background-color:#242424}.ansi span.sgr41{background-color:#a7201f}.ansi span.sgr42{background-color:#066f00}.ansi span.sgr43{background-color:#856b00}.ansi span.sgr44{background-color:#2149b0}.ansi span.sgr45{background-color:#7d4498}.ansi span.sgr46{background-color:#007989}.ansi span.sgr47{background-color:gray}.ansi span.sgr90{color:#616161}.ansi span.sgr91{color:#cb3c33}.ansi span.sgr92{color:#0e8300}.ansi span.sgr93{color:#a98800}.ansi span.sgr94{color:#3c5dcd}.ansi span.sgr95{color:#9256af}.ansi span.sgr96{color:#008fa3}.ansi span.sgr97{color:#f5f5f5}.ansi span.sgr100{background-color:#616161}.ansi span.sgr101{background-color:#cb3c33}.ansi span.sgr102{background-color:#0e8300}.ansi span.sgr103{background-color:#a98800}.ansi span.sgr104{background-color:#3c5dcd}.ansi span.sgr105{background-color:#9256af}.ansi span.sgr106{background-color:#008fa3}.ansi span.sgr107{background-color:#f5f5f5}code.language-julia-repl>span.hljs-meta{color:#066f00;font-weight:bolder}/*! - Theme: Default - Description: Original highlight.js style - Author: (c) Ivan Sagalaev - Maintainer: @highlightjs/core-team - Website: https://highlightjs.org/ - License: see project LICENSE - Touched: 2021 -*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#F3F3F3;color:#444}.hljs-comment{color:#697070}.hljs-tag,.hljs-punctuation{color:#444a}.hljs-tag .hljs-name,.hljs-tag .hljs-attr{color:#444}.hljs-keyword,.hljs-attribute,.hljs-selector-tag,.hljs-meta .hljs-keyword,.hljs-doctag,.hljs-name{font-weight:bold}.hljs-type,.hljs-string,.hljs-number,.hljs-selector-id,.hljs-selector-class,.hljs-quote,.hljs-template-tag,.hljs-deletion{color:#880000}.hljs-title,.hljs-section{color:#880000;font-weight:bold}.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr,.hljs-operator,.hljs-selector-pseudo{color:#ab5656}.hljs-literal{color:#695}.hljs-built_in,.hljs-bullet,.hljs-code,.hljs-addition{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta .hljs-string{color:#38a}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold}.gap-4{gap:1rem} diff --git a/doc/build/assets/themeswap.js b/doc/build/assets/themeswap.js deleted file mode 100644 index 9f5eebe..0000000 --- a/doc/build/assets/themeswap.js +++ /dev/null @@ -1,84 +0,0 @@ -// Small function to quickly swap out themes. Gets put into the tag.. -function set_theme_from_local_storage() { - // Initialize the theme to null, which means default - var theme = null; - // If the browser supports the localstorage and is not disabled then try to get the - // documenter theme - if (window.localStorage != null) { - // Get the user-picked theme from localStorage. May be `null`, which means the default - // theme. - theme = window.localStorage.getItem("documenter-theme"); - } - // Check if the users preference is for dark color scheme - var darkPreference = - window.matchMedia("(prefers-color-scheme: dark)").matches === true; - // Initialize a few variables for the loop: - // - // - active: will contain the index of the theme that should be active. Note that there - // is no guarantee that localStorage contains sane values. If `active` stays `null` - // we either could not find the theme or it is the default (primary) theme anyway. - // Either way, we then need to stick to the primary theme. - // - // - disabled: style sheets that should be disabled (i.e. all the theme style sheets - // that are not the currently active theme) - var active = null; - var disabled = []; - var primaryLightTheme = null; - var primaryDarkTheme = null; - for (var i = 0; i < document.styleSheets.length; i++) { - var ss = document.styleSheets[i]; - // The tag of each style sheet is expected to have a data-theme-name attribute - // which must contain the name of the theme. The names in localStorage much match this. - var themename = ss.ownerNode.getAttribute("data-theme-name"); - // attribute not set => non-theme stylesheet => ignore - if (themename === null) continue; - // To distinguish the default (primary) theme, it needs to have the data-theme-primary - // attribute set. - if (ss.ownerNode.getAttribute("data-theme-primary") !== null) { - primaryLightTheme = themename; - } - // Check if the theme is primary dark theme so that we could store its name in darkTheme - if (ss.ownerNode.getAttribute("data-theme-primary-dark") !== null) { - primaryDarkTheme = themename; - } - // If we find a matching theme (and it's not the default), we'll set active to non-null - if (themename === theme) active = i; - // Store the style sheets of inactive themes so that we could disable them - if (themename !== theme) disabled.push(ss); - } - var activeTheme = null; - if (active !== null) { - // If we did find an active theme, we'll (1) add the theme--$(theme) class to - document.getElementsByTagName("html")[0].className = "theme--" + theme; - activeTheme = theme; - } else { - // If we did _not_ find an active theme, then we need to fall back to the primary theme - // which can either be dark or light, depending on the user's OS preference. - var activeTheme = darkPreference ? primaryDarkTheme : primaryLightTheme; - // In case it somehow happens that the relevant primary theme was not found in the - // preceding loop, we abort without doing anything. - if (activeTheme === null) { - console.error("Unable to determine primary theme."); - return; - } - // When switching to the primary light theme, then we must not have a class name - // for the tag. That's only for non-primary or the primary dark theme. - if (darkPreference) { - document.getElementsByTagName("html")[0].className = - "theme--" + activeTheme; - } else { - document.getElementsByTagName("html")[0].className = ""; - } - } - for (var i = 0; i < document.styleSheets.length; i++) { - var ss = document.styleSheets[i]; - // The tag of each style sheet is expected to have a data-theme-name attribute - // which must contain the name of the theme. The names in localStorage much match this. - var themename = ss.ownerNode.getAttribute("data-theme-name"); - // attribute not set => non-theme stylesheet => ignore - if (themename === null) continue; - // we'll disable all the stylesheets, except for the active one - ss.disabled = !(themename == activeTheme); - } -} -set_theme_from_local_storage(); diff --git a/doc/build/assets/warner.js b/doc/build/assets/warner.js deleted file mode 100644 index 3f6f5d0..0000000 --- a/doc/build/assets/warner.js +++ /dev/null @@ -1,52 +0,0 @@ -function maybeAddWarning() { - // DOCUMENTER_NEWEST is defined in versions.js, DOCUMENTER_CURRENT_VERSION and DOCUMENTER_STABLE - // in siteinfo.js. - // If either of these are undefined something went horribly wrong, so we abort. - if ( - window.DOCUMENTER_NEWEST === undefined || - window.DOCUMENTER_CURRENT_VERSION === undefined || - window.DOCUMENTER_STABLE === undefined - ) { - return; - } - - // Current version is not a version number, so we can't tell if it's the newest version. Abort. - if (!/v(\d+\.)*\d+/.test(window.DOCUMENTER_CURRENT_VERSION)) { - return; - } - - // Current version is newest version, so no need to add a warning. - if (window.DOCUMENTER_NEWEST === window.DOCUMENTER_CURRENT_VERSION) { - return; - } - - // Add a noindex meta tag (unless one exists) so that search engines don't index this version of the docs. - if (document.body.querySelector('meta[name="robots"]') === null) { - const meta = document.createElement("meta"); - meta.name = "robots"; - meta.content = "noindex"; - - document.getElementsByTagName("head")[0].appendChild(meta); - } - - const div = document.createElement("div"); - div.classList.add("outdated-warning-overlay"); - const closer = document.createElement("button"); - closer.classList.add("outdated-warning-closer", "delete"); - closer.addEventListener("click", function () { - document.body.removeChild(div); - }); - const href = window.documenterBaseURL + "/../" + window.DOCUMENTER_STABLE; - div.innerHTML = - 'This documentation is not for the latest stable release, but for either the development version or an older release.
Click here to go to the documentation for the latest stable release.'; - div.appendChild(closer); - document.body.appendChild(div); -} - -if (document.readyState === "loading") { - document.addEventListener("DOMContentLoaded", maybeAddWarning); -} else { - maybeAddWarning(); -} diff --git a/doc/build/index.html b/doc/build/index.html deleted file mode 100644 index 94431cb..0000000 --- a/doc/build/index.html +++ /dev/null @@ -1,3 +0,0 @@ - -Home · HydroModels.jl

HydroModels.jl

Overview

HydroModels.jl is a modern hydrological modeling framework that extends and enhances SUPERFLEX's design philosophy. Built on Julia language and the SciML (Scientific Machine Learning) ecosystem, it combines flexible model construction with computational efficiency, particularly supporting deep learning integration in hydrological modeling.

Key Features

  • Flexible Model Construction: Supports development of lumped, semi-distributed, and distributed hydrological models
  • Deep Learning Integration: Enables neural network integration for enhanced flux calculations and dynamic parameter estimation
  • Computational Efficiency: Leverages Julia's high-performance capabilities and the SciML ecosystem
  • Gradient-Based Optimization: Supports advanced parameter optimization techniques
  • Comprehensive Framework: Provides tools for both traditional hydrological modeling and modern machine learning approaches

Framework Capabilities

HydroModels.jl offers:

  • Easy implementation and customization of hydrological models
  • Integration with Julia's scientific computing ecosystem
  • Support for various modeling approaches:
    • Traditional conceptual models
    • Neural network enhanced models
    • Distributed hydrological systems

Case Studies

The framework has been validated through various applications, including:

  1. M50 Model Implementation
  2. GR4J-based Distributed Hydrological Model

Getting Started

Check out our tutorials to start using HydroModels.jl:

Installation

using Pkg
-Pkg.add("HydroModels")

Contributing

HydroModels.jl is an open-source project available on Github. We welcome contributions from the community to help advance deep learning applications in hydrology.

Documentation

For detailed information about using HydroModels.jl, please refer to our comprehensive documentation and tutorials in this site.

diff --git a/doc/build/objects.inv b/doc/build/objects.inv deleted file mode 100644 index 746a552..0000000 Binary files a/doc/build/objects.inv and /dev/null differ diff --git a/doc/build/search_index.js b/doc/build/search_index.js deleted file mode 100644 index 3f7727e..0000000 --- a/doc/build/search_index.js +++ /dev/null @@ -1,3 +0,0 @@ -var documenterSearchIndex = {"docs": -[{"location":"tutorials/run_a_bucket.html#HydroModels-Bucket-Model-Implementation-Example","page":"Run a Bucket Model","title":"HydroModels Bucket Model Implementation Example","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html#Overview","page":"Run a Bucket Model","title":"Overview","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"This document demonstrates the implementation and usage of a hydrological bucket model using the HydroModels framework. The code showcases both single-node and multi-node simulations using the ExpHydro model structure.","category":"page"},{"location":"tutorials/run_a_bucket.html#Dependencies","page":"Run a Bucket Model","title":"Dependencies","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"using CSV\nusing DataFrames\nusing ComponentArrays\nusing BenchmarkTools\nusing HydroModels\nusing ModelingToolkit","category":"page"},{"location":"tutorials/run_a_bucket.html#Model-Configuration","page":"Run a Bucket Model","title":"Model Configuration","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html#Parameter-Setup","page":"Run a Bucket Model","title":"Parameter Setup","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"The model uses the following parameters for the hydrological simulation:","category":"page"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"f: 0.01674478 (Infiltration parameter)\nSmax: 1709.461015 (Maximum soil water storage)\nQmax: 18.46996175 (Maximum discharge)\nDf: 2.674548848 (Degree-day factor)\nTmax: 0.175739196 (Maximum temperature threshold)\nTmin: -2.092959084 (Minimum temperature threshold)","category":"page"},{"location":"tutorials/run_a_bucket.html#Initial-States","page":"Run a Bucket Model","title":"Initial States","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"Initial conditions for the model:","category":"page"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"snowpack: 0.0\nsoilwater: 1303.004248","category":"page"},{"location":"tutorials/run_a_bucket.html#Data-Input","page":"Run a Bucket Model","title":"Data Input","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"The model uses time series data from a CSV file located at \"data/exphydro/01013500.csv\" containing:","category":"page"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"Day length (dayl)\nMean temperature (tmean)\nPrecipitation (prcp)","category":"page"},{"location":"tutorials/run_a_bucket.html#Implementation-Examples","page":"Run a Bucket Model","title":"Implementation Examples","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html#1.-Single-Node-Simulation","page":"Run a Bucket Model","title":"1. Single Node Simulation","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"# Setup input data\ninput = (lday=df[ts, \"dayl(day)\"], temp=df[ts, \"tmean(C)\"], prcp=df[ts, \"prcp(mm/day)\"])\nsolver = HydroModels.ManualSolver{true}()\nconfig = (solver=solver,)\n\n# Convert input to required format\ninput_arr = Matrix(reduce(hcat, collect(input[ele.meta.inputs]))')\n\n# Run simulation\nresults = ele(input_arr, pas, config=config, convert_to_ntp=true)","category":"page"},{"location":"tutorials/run_a_bucket.html#2.-Multi-Node-Simulation","page":"Run a Bucket Model","title":"2. Multi-Node Simulation","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"# Setup for multiple nodes\nnode_num = 10\nnode_names = [Symbol(:node, i) for i in 1:node_num]\n\n# Create parameter and state vectors for all nodes\nnode_params = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([params], length(node_names))))\nnode_initstates = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([init_states], length(node_names))))\nnode_pas = ComponentVector(params=node_params, initstates=node_initstates)\n\n# Prepare input data for multiple nodes\ninput_arr = reduce(hcat, collect(input[HydroModels.get_input_names(ele)]))\nnode_input = reduce((m1, m2) -> cat(m1, m2, dims=3), repeat([input_arr], length(node_names)))\nnode_input = permutedims(node_input, (2, 3, 1))\n\n# Run simulation with multiple nodes\nrun_kwgs = (ptypes=node_names, timeidx=ts)\nresult = ele(node_input, node_pas, kwargs=run_kwgs)","category":"page"},{"location":"tutorials/run_a_bucket.html#Model-Structure","page":"Run a Bucket Model","title":"Model Structure","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"The model uses a bucket structure defined in exphydro.jl with two main components:","category":"page"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"Surface water component (bucket_1):\nHandles precipitation partitioning (rainfall/snowfall)\nComputes potential evapotranspiration\nManages snowmelt processes\nSoil water component:\nManages soil water storage\nComputes actual evaporation\nGenerates baseflow and surface flow","category":"page"},{"location":"tutorials/run_a_bucket.html#Usage-Notes","page":"Run a Bucket Model","title":"Usage Notes","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"The code demonstrates flexibility in handling both single-node and multi-node simulations\nInput data should be properly formatted with required columns (dayl, tmean, prcp)\nParameters and initial states can be adjusted based on specific catchment characteristics\nThe model uses a manual solver for time-stepping","category":"page"},{"location":"tutorials/run_a_bucket.html#Time-Series-Processing","page":"Run a Bucket Model","title":"Time Series Processing","text":"","category":"section"},{"location":"tutorials/run_a_bucket.html","page":"Run a Bucket Model","title":"Run a Bucket Model","text":"The example processes 10,000 time steps (ts = collect(1:10000)) and can be adjusted based on data availability and simulation requirements.","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Run-A-ExpHydro-Model","page":"Run ExpHydro Model","title":"Run A ExpHydro Model","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html#Overview","page":"Run ExpHydro Model","title":"Overview","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"本文档将介绍如何使用已构建的exphdyro模型用于集总式(Single HRU)的计算和分布式(Multiple HURs)的计算","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Dependencies","page":"Run ExpHydro Model","title":"Dependencies","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"First, lets import the required packages.","category":"page"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"using CSV\nusing DataFrames\nusing ComponentArrays\nusing BenchmarkTools\nusing NamedTupleTools\nusing Plots","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Model-Setup","page":"Run ExpHydro Model","title":"Model Setup","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"接着需要对模型的参数和初始状态进行设置","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Parameter-Configuration","page":"Run ExpHydro Model","title":"Parameter Configuration","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"Exphydro模型包含以下6个参数,我们需要使用ComponentVector来定义这些参数","category":"page"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"Parameter Value Description\nf 0.01674478 Infiltration parameter\nSmax 1709.461015 Maximum soil water storage\nQmax 18.46996175 Maximum discharge\nDf 2.674548848 Degree-day factor\nTmax 0.175739196 Maximum temperature threshold\nTmin -2.092959084 Minimum temperature threshold","category":"page"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"params = ComponentVector(f=0.01674478, Smax=1709.461015, Qmax=18.46996175,\n Df=2.674548848, Tmax=0.175739196, Tmin=-2.092959084)","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Initial-States","page":"Run ExpHydro Model","title":"Initial States","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"然后就是定义模型的初始状态,针对exphydro模型的两个计算模块分别设置其对应的状态变量snowpack和soilwater初始值","category":"page"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"inistates = ComponentVector(snowpack=0.0, soilwater=1303.004248)","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Data-Preparation","page":"Run ExpHydro Model","title":"Data Preparation","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"The test uses hydrometeorological data from \"data/exphydro/01013500.csv\":","category":"page"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"file_path = \"data/exphydro/01013500.csv\"\ndata = CSV.File(file_path)\ndf = DataFrame(data)\nts = collect(1:10000) # Time series length","category":"page"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"Input variables include:","category":"page"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"Day length (dayl)\nMean temperature (tmean)\nPrecipitation (prcp)","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Model-Testing","page":"Run ExpHydro Model","title":"Model Testing","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html#Single-Node-Testing","page":"Run ExpHydro Model","title":"Single Node Testing","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"# Configure solver\nsolver = HydroModels.ManualSolver()\n\n# Run model with performance benchmarking\nresult = model(input, pas, config=(solver=solver, timeidx=ts), convert_to_ntp=true)\n\n# Visualize results\nplot(result.flow)\nplot!(df[ts, \"flow(mm)\"])","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Performance-Benchmarking-For-Single-Node-(by-using-BenchmarkTools.jl)","page":"Run ExpHydro Model","title":"Performance Benchmarking For Single Node (by using BenchmarkTools.jl)","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"@btime model(input, pas, config=(solver=solver, timeidx=ts), convert_to_ntp=true);","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Multi-Node-Testing-(Optional)","page":"Run ExpHydro Model","title":"Multi-Node Testing (Optional)","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"The code includes commented sections for multi-node testing:","category":"page"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"# Setup multiple nodes\nnode_num = 10\ninputs = repeat([input], node_num)\nptypes = [Symbol(:node, i) for i in 1:node_num]\n\n# Configure parameters and states for multiple nodes\nparams_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([params], node_num)))\ninit_states_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([init_states], node_num)))\npas_multi = ComponentVector(params=params_multi, initstates=init_states_multi)\n\n# Run multi-node simulation\nresults = model(inputs, pas_multi, config=(solver=solver, timeidx=ts), convert_to_ntp=true)","category":"page"},{"location":"tutorials/run_a_exphydro_model.html#Performance-Benchmarking-For-Multi-Node-(by-using-BenchmarkTools.jl)","page":"Run ExpHydro Model","title":"Performance Benchmarking For Multi-Node (by using BenchmarkTools.jl)","text":"","category":"section"},{"location":"tutorials/run_a_exphydro_model.html","page":"Run ExpHydro Model","title":"Run ExpHydro Model","text":"@btime model(inputs, pas_multi, config=(solver=solver, timeidx=ts), convert_to_ntp=true);","category":"page"},{"location":"index.html#HydroModels.jl","page":"Home","title":"HydroModels.jl","text":"","category":"section"},{"location":"index.html#Overview","page":"Home","title":"Overview","text":"","category":"section"},{"location":"index.html","page":"Home","title":"Home","text":"HydroModels.jl is a modern hydrological modeling framework that extends and enhances SUPERFLEX's design philosophy. Built on Julia language and the SciML (Scientific Machine Learning) ecosystem, it combines flexible model construction with computational efficiency, particularly supporting deep learning integration in hydrological modeling.","category":"page"},{"location":"index.html#Key-Features","page":"Home","title":"Key Features","text":"","category":"section"},{"location":"index.html","page":"Home","title":"Home","text":"Flexible Model Construction: Supports development of lumped, semi-distributed, and distributed hydrological models\nDeep Learning Integration: Enables neural network integration for enhanced flux calculations and dynamic parameter estimation\nComputational Efficiency: Leverages Julia's high-performance capabilities and the SciML ecosystem\nGradient-Based Optimization: Supports advanced parameter optimization techniques\nComprehensive Framework: Provides tools for both traditional hydrological modeling and modern machine learning approaches","category":"page"},{"location":"index.html#Framework-Capabilities","page":"Home","title":"Framework Capabilities","text":"","category":"section"},{"location":"index.html","page":"Home","title":"Home","text":"HydroModels.jl offers:","category":"page"},{"location":"index.html","page":"Home","title":"Home","text":"Easy implementation and customization of hydrological models\nIntegration with Julia's scientific computing ecosystem\nSupport for various modeling approaches:\nTraditional conceptual models\nNeural network enhanced models\nDistributed hydrological systems","category":"page"},{"location":"index.html#Case-Studies","page":"Home","title":"Case Studies","text":"","category":"section"},{"location":"index.html","page":"Home","title":"Home","text":"The framework has been validated through various applications, including:","category":"page"},{"location":"index.html","page":"Home","title":"Home","text":"M50 Model Implementation\nGR4J-based Distributed Hydrological Model","category":"page"},{"location":"index.html#Getting-Started","page":"Home","title":"Getting Started","text":"","category":"section"},{"location":"index.html","page":"Home","title":"Home","text":"Check out our tutorials to start using HydroModels.jl:","category":"page"},{"location":"index.html","page":"Home","title":"Home","text":"Run a Bucket Model\nRun ExpHydro Model","category":"page"},{"location":"index.html#Installation","page":"Home","title":"Installation","text":"","category":"section"},{"location":"index.html","page":"Home","title":"Home","text":"using Pkg\nPkg.add(\"HydroModels\")","category":"page"},{"location":"index.html#Contributing","page":"Home","title":"Contributing","text":"","category":"section"},{"location":"index.html","page":"Home","title":"Home","text":"HydroModels.jl is an open-source project available on Github. We welcome contributions from the community to help advance deep learning applications in hydrology.","category":"page"},{"location":"index.html#Documentation","page":"Home","title":"Documentation","text":"","category":"section"},{"location":"index.html","page":"Home","title":"Home","text":"For detailed information about using HydroModels.jl, please refer to our comprehensive documentation and tutorials in this site.","category":"page"}] -} diff --git a/doc/build/tutorials/run_a_bucket.html b/doc/build/tutorials/run_a_bucket.html deleted file mode 100644 index c9262f0..0000000 --- a/doc/build/tutorials/run_a_bucket.html +++ /dev/null @@ -1,32 +0,0 @@ - -Run a Bucket Model · HydroModels.jl

HydroModels Bucket Model Implementation Example

Overview

This document demonstrates the implementation and usage of a hydrological bucket model using the HydroModels framework. The code showcases both single-node and multi-node simulations using the ExpHydro model structure.

Dependencies

using CSV
-using DataFrames
-using ComponentArrays
-using BenchmarkTools
-using HydroModels
-using ModelingToolkit

Model Configuration

Parameter Setup

The model uses the following parameters for the hydrological simulation:

  • f: 0.01674478 (Infiltration parameter)
  • Smax: 1709.461015 (Maximum soil water storage)
  • Qmax: 18.46996175 (Maximum discharge)
  • Df: 2.674548848 (Degree-day factor)
  • Tmax: 0.175739196 (Maximum temperature threshold)
  • Tmin: -2.092959084 (Minimum temperature threshold)

Initial States

Initial conditions for the model:

  • snowpack: 0.0
  • soilwater: 1303.004248

Data Input

The model uses time series data from a CSV file located at "data/exphydro/01013500.csv" containing:

  • Day length (dayl)
  • Mean temperature (tmean)
  • Precipitation (prcp)

Implementation Examples

1. Single Node Simulation

# Setup input data
-input = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"])
-solver = HydroModels.ManualSolver{true}()
-config = (solver=solver,)
-
-# Convert input to required format
-input_arr = Matrix(reduce(hcat, collect(input[ele.meta.inputs]))')
-
-# Run simulation
-results = ele(input_arr, pas, config=config, convert_to_ntp=true)

2. Multi-Node Simulation

# Setup for multiple nodes
-node_num = 10
-node_names = [Symbol(:node, i) for i in 1:node_num]
-
-# Create parameter and state vectors for all nodes
-node_params = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([params], length(node_names))))
-node_initstates = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([init_states], length(node_names))))
-node_pas = ComponentVector(params=node_params, initstates=node_initstates)
-
-# Prepare input data for multiple nodes
-input_arr = reduce(hcat, collect(input[HydroModels.get_input_names(ele)]))
-node_input = reduce((m1, m2) -> cat(m1, m2, dims=3), repeat([input_arr], length(node_names)))
-node_input = permutedims(node_input, (2, 3, 1))
-
-# Run simulation with multiple nodes
-run_kwgs = (ptypes=node_names, timeidx=ts)
-result = ele(node_input, node_pas, kwargs=run_kwgs)

Model Structure

The model uses a bucket structure defined in exphydro.jl with two main components:

  1. Surface water component (bucket_1):

    • Handles precipitation partitioning (rainfall/snowfall)
    • Computes potential evapotranspiration
    • Manages snowmelt processes
  2. Soil water component:

    • Manages soil water storage
    • Computes actual evaporation
    • Generates baseflow and surface flow

Usage Notes

  1. The code demonstrates flexibility in handling both single-node and multi-node simulations
  2. Input data should be properly formatted with required columns (dayl, tmean, prcp)
  3. Parameters and initial states can be adjusted based on specific catchment characteristics
  4. The model uses a manual solver for time-stepping

Time Series Processing

The example processes 10,000 time steps (ts = collect(1:10000)) and can be adjusted based on data availability and simulation requirements.

diff --git a/doc/build/tutorials/run_a_exphydro_model.html b/doc/build/tutorials/run_a_exphydro_model.html deleted file mode 100644 index b5debec..0000000 --- a/doc/build/tutorials/run_a_exphydro_model.html +++ /dev/null @@ -1,30 +0,0 @@ - -Run ExpHydro Model · HydroModels.jl

Run A ExpHydro Model

Overview

本文档将介绍如何使用已构建的exphdyro模型用于集总式(Single HRU)的计算和分布式(Multiple HURs)的计算

Dependencies

First, lets import the required packages.

using CSV
-using DataFrames
-using ComponentArrays
-using BenchmarkTools
-using NamedTupleTools
-using Plots

Model Setup

接着需要对模型的参数和初始状态进行设置

Parameter Configuration

Exphydro模型包含以下6个参数,我们需要使用ComponentVector来定义这些参数

ParameterValueDescription
f0.01674478Infiltration parameter
Smax1709.461015Maximum soil water storage
Qmax18.46996175Maximum discharge
Df2.674548848Degree-day factor
Tmax0.175739196Maximum temperature threshold
Tmin-2.092959084Minimum temperature threshold
params = ComponentVector(f=0.01674478, Smax=1709.461015, Qmax=18.46996175,
- Df=2.674548848, Tmax=0.175739196, Tmin=-2.092959084)

Initial States

然后就是定义模型的初始状态,针对exphydro模型的两个计算模块分别设置其对应的状态变量snowpacksoilwater初始值

inistates = ComponentVector(snowpack=0.0, soilwater=1303.004248)

Data Preparation

The test uses hydrometeorological data from "data/exphydro/01013500.csv":

file_path = "data/exphydro/01013500.csv"
-data = CSV.File(file_path)
-df = DataFrame(data)
-ts = collect(1:10000)  # Time series length

Input variables include:

  • Day length (dayl)
  • Mean temperature (tmean)
  • Precipitation (prcp)

Model Testing

Single Node Testing

# Configure solver
-solver = HydroModels.ManualSolver()
-
-# Run model with performance benchmarking
-result = model(input, pas, config=(solver=solver, timeidx=ts), convert_to_ntp=true)
-
-# Visualize results
-plot(result.flow)
-plot!(df[ts, "flow(mm)"])

Performance Benchmarking For Single Node (by using BenchmarkTools.jl)

@btime model(input, pas, config=(solver=solver, timeidx=ts), convert_to_ntp=true);

Multi-Node Testing (Optional)

The code includes commented sections for multi-node testing:

# Setup multiple nodes
-node_num = 10
-inputs = repeat([input], node_num)
-ptypes = [Symbol(:node, i) for i in 1:node_num]
-
-# Configure parameters and states for multiple nodes
-params_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([params], node_num)))
-init_states_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([init_states], node_num)))
-pas_multi = ComponentVector(params=params_multi, initstates=init_states_multi)
-
-# Run multi-node simulation
-results = model(inputs, pas_multi, config=(solver=solver, timeidx=ts), convert_to_ntp=true)

Performance Benchmarking For Multi-Node (by using BenchmarkTools.jl)

@btime model(inputs, pas_multi, config=(solver=solver, timeidx=ts), convert_to_ntp=true);
diff --git a/doc/demo/dPL_hbv_demo.jl b/doc/demo/dPL_hbv_demo.jl deleted file mode 100644 index 75fde30..0000000 --- a/doc/demo/dPL_hbv_demo.jl +++ /dev/null @@ -1,126 +0,0 @@ -using CSV -using Lux -using LuxCore -using Random -using DataFrames -using Symbolics -using ComponentArrays -using OrdinaryDiffEq -using ModelingToolkit -using BenchmarkTools -using StableRNGs -using Optimization -using OptimizationBBO -using HydroErrors -include("../../src/HydroModels.jl") - -# load data -df = DataFrame(CSV.File("data/exphydro/01013500.csv")); -ts = collect(1:10000) -prcp_vec = df[ts, "prcp(mm/day)"] -temp_vec = df[ts, "tmean(C)"] -dayl_vec = df[ts, "dayl(day)"] -qobs_vec = df[ts, "flow(mm)"] - -#! parameters in the HBV-light model -@parameters TT CFMAX CFR CWH FC beta LP PERC k0 k1 k2 UZL - -#! hydrological flux in the dpl-hbv model -@variables prcp temp lday pet rainfall snowfall refreeze melt snowinfil -@variables snowpack meltwater soilwater -@variables soilwetfrac recharge excess evapfrac evap -@variables upperzone lowerzone perc q0 q1 q2 flow - -#* dynamic parameters -@variables beta gamma - -SimpleFlux = HydroModels.SimpleFlux -NeuralFlux = HydroModels.NeuralFlux -StateFlux = HydroModels.StateFlux -HydroModel = HydroModels.HydroModel -HydroBucket = HydroModels.HydroBucket -step_func = x -> ifelse(x > 0.0, 1.0, 0.0) - -#* θ是regional data所以可以针对实测和预测结果模拟优化出来, -#* 而γ和β是根据观测数据预测得到的随时间变化的参数, -#* 因此对于某个单个流域的解决方式就是,仅通过nn预测这两个参数,然后与θ一同进行优化 -#* 如何嵌入LSTM到模型中? 模型输入是二维的矩阵而非一维向量了,但是timeidx会发生改变, -#* 先考虑用mlp这种简单的比较好 - -#! define the snow pack reservoir -snow_funcs = [ - SimpleFlux([prcp, temp] => [snowfall, rainfall], [TT], exprs=[step_func(TT - temp) * prcp, step_func(temp - TT) * prcp]), - SimpleFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - SimpleFlux([snowpack, temp] => [melt], [TT, CFMAX], exprs=[min(snowpack, CFMAX * max(0.0, temp - TT))]), - SimpleFlux([meltwater, temp] => [refreeze], [TT, CFMAX, CFR], exprs=[min(meltwater, CFR * CFMAX * max(0.0, TT - temp))]), - SimpleFlux([meltwater, snowpack] => [snowinfil], [CWH], exprs=[max(0.0, meltwater - CWH * snowpack)]), -] -snow_dfuncs = [StateFlux([snowfall, refreeze] => [melt], snowpack), StateFlux([melt] => [refreeze, snowinfil], meltwater)] -snow_ele = HydroBucket(name=:hbv_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - -thetas_nn = Lux.Chain( - Lux.Dense(4 => 16, Lux.tanh), - Lux.Dense(16 => 16, Lux.leakyrelu), - Lux.Dense(16 => 2, Lux.leakyrelu), - name=:thetas -) -recharge_nn = Lux.Chain( - Lux.Dense(2 => 16, Lux.tanh), - Lux.Dense(16 => 16, Lux.leakyrelu), - Lux.Dense(16 => 1, Lux.leakyrelu), - name=:recharge -) - -thetas_nn_ps = Vector(ComponentVector(LuxCore.initialparameters(StableRNG(123), thetas_nn))) -recharge_nn_ps = Vector(ComponentVector(LuxCore.initialparameters(StableRNG(123), recharge_nn))) - -#! define the soil water reservoir -soil_funcs = [ - NeuralFlux([prcp, temp, pet, soilwater] => [beta, gamma], thetas_nn), - SimpleFlux([soilwater, beta] => [soilwetfrac], [FC], exprs=[clamp(abs(soilwater / FC)^beta, 0.0, 1.0)]), - NeuralFlux([rainfall, snowinfil, soilwetfrac] => [recharge], recharge_nn), - SimpleFlux([soilwater] => [excess], [FC], exprs=[max(0.0, soilwater - FC)]), - SimpleFlux([soilwater] => [evapfrac], [LP, FC], exprs=[soilwater / (LP * FC)]), - SimpleFlux([soilwater, pet, evapfrac, gamma] => [evap], exprs=[min(soilwater, pet * (abs(evapfrac)^gamma))]), -] - -soil_dfuncs = [StateFlux([rainfall, snowinfil] => [evap, excess, recharge], soilwater)] -soil_ele = HydroBucket(name=:hbv_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) - -#! define the upper and lower subsurface zone -zone_funcs = [ - SimpleFlux([soilwater, upperzone, evapfrac] => [perc], [PERC], exprs=[min(soilwater, PERC)]), - SimpleFlux([upperzone] => [q0], [k0, UZL], exprs=[max(0.0, (upperzone - UZL) * k0)]), - SimpleFlux([upperzone] => [q1], [k1], exprs=[upperzone * k1]), - SimpleFlux([lowerzone] => [q2], [k2], exprs=[lowerzone * k2]), - SimpleFlux([q0, q1, q2] => [flow], exprs=[q0 + q1 + q2]), -] - -zone_dfuncs = [StateFlux([recharge, excess] => [perc, q0, q1], upperzone), StateFlux([perc] => [q2], lowerzone)] -zone_ele = HydroBucket(name=:hbv_zone, funcs=zone_funcs, dfuncs=zone_dfuncs) - -#! define the Exp-Hydro model -hbv_model = HydroModel(name=:hbv, components=[snow_ele, soil_ele, zone_ele]); - -params = ComponentVector(TT=0.0, CFMAX=5.0, CWH=0.1, CFR=0.05, FC=200.0, LP=0.6, beta=3.0, k0=0.06, k1=0.2, k2=0.1, PERC=2, UZL=10) -init_states = ComponentVector(upperzone=0.0, lowerzone=0.0, soilwater=0.0, meltwater=0.0, snowpack=0.0) -nn_params = ComponentVector(thetas=thetas_nn_ps, recharge=recharge_nn_ps) -pas = ComponentVector(params=params, initstates=init_states, nn=nn_params) -input = (prcp=prcp_vec, lday=dayl_vec, temp=temp_vec) -config = (solver=HydroModels.ODESolver(), timeidx=ts) -# @btime result = hbv_model(input, pas, config=config) - -#! prepare flow -output = (flow=qobs_vec,) -#! model calibration -#* ComponentVector{Float64}(params = (TT = -1.2223657527438707, CFMAX = 2.201359793941345, CWH = 0.022749518921432663, CFR = 0.058335602629828544, FC = 160.01327559173077, LP = 0.7042581781418978, -#* beta = 5.580695551758287, k0 = 0.0500023960318018, k1 = 0.04573064980956475, k2 = 0.14881856483902567, PERC = 1.3367222956722589, UZL = 44.059927907190016)) -best_pas = HydroModels.param_grad_optim( - hbv_model, - tunable_pas=ComponentVector(params=params, nn=nn_params), - const_pas=ComponentVector(initstates=init_states), - input=[input], - target=[output], - maxiters=100, - loss_func=HydroErrors.mse, -) \ No newline at end of file diff --git a/doc/demo/exphydro_benchmark.jl b/doc/demo/exphydro_benchmark.jl deleted file mode 100644 index bccc2d5..0000000 --- a/doc/demo/exphydro_benchmark.jl +++ /dev/null @@ -1,62 +0,0 @@ -using DataInterpolations -using OrdinaryDiffEq - -df = DataFrame(CSV.File("data/exphydro/01013500.csv")); -prcp_vec = df[!, "prcp(mm/day)"] -temp_vec = df[!, "tmean(C)"] -dayl_vec = df[!, "dayl(day)"] -qobs_vec = df[!, "flow(mm)"] -ts = collect(1:length(prcp_vec)) -itp_Lday = LinearInterpolation(dayl_vec, ts) -itp_P = LinearInterpolation(prcp_vec, ts) -itp_T = LinearInterpolation(temp_vec, ts) - -function basic_bucket_incl_states(p_, t_out) - step_fct(x) = (tanh(5.0 * x) + 1.0) * 0.5 - - # snow precipitation - Ps(P, T, Tmin) = step_fct(Tmin - T) * P - - # rain precipitation - Pr(P, T, Tmin) = step_fct(T - Tmin) * P - - # snow melt - M(S0, T, Df, Tmax) = step_fct(T - Tmax) * step_fct(S0) * minimum([S0, Df * (T - Tmax)]) - - # evapotranspiration - PET(T, Lday) = 29.8 * Lday * 0.611 * exp((17.3 * T) / (T + 237.3)) / (T + 273.2) - ET(S1, T, Lday, Smax) = step_fct(S1) * step_fct(S1 - Smax) * PET(T, Lday) + step_fct(S1) * step_fct(Smax - S1) * PET(T, Lday) * (S1 / Smax) - - # base flow - Qb(S1, f, Smax, Qmax) = step_fct(S1) * step_fct(S1 - Smax) * Qmax + step_fct(S1) * step_fct(Smax - S1) * Qmax * exp(-f * (Smax - S1)) - - # peak flow - Qs(S1, Smax) = step_fct(S1) * step_fct(S1 - Smax) * (S1 - Smax) - function exp_hydro_optim_states!(dS, S, ps, t) - f, Smax, Qmax, Df, Tmax, Tmin = ps - - Lday = itp_Lday(t) - P = itp_P(t) - T = itp_T(t) - - Q_out = Qb(S[2], f, Smax, Qmax) + Qs(S[2], Smax) - - dS[1] = Ps(P, T, Tmin) - M(S[1], T, Df, Tmax) - dS[2] = Pr(P, T, Tmin) + M(S[1], T, Df, Tmax) - ET(S[2], T, Lday, Smax) - Q_out - end - - prob = ODEProblem(exp_hydro_optim_states!, p_[1:2], Float64.((t_out[1], maximum(t_out)))) - - sol = solve(prob, BS3(), u0=p_[1:2], p=p_[3:end], saveat=t_out, reltol=1e-3, abstol=1e-3) - - Qb_ = Qb.(sol[2, :], p_[3], p_[4], p_[5]) - Qs_ = Qs.(sol[2, :], p_[4]) - - Qout_ = Qb_ .+ Qs_ - - return Qout_, sol - -end - -pas = [0.0, 1303.004248, 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084] -@btime q_sim_vec, sol = basic_bucket_incl_states(pas, ts); # 26.182 ms (1410550 allocations: 29.62 MiB) \ No newline at end of file diff --git a/doc/demo/exphydro_demo.jl b/doc/demo/exphydro_demo.jl deleted file mode 100644 index 143f84d..0000000 --- a/doc/demo/exphydro_demo.jl +++ /dev/null @@ -1,150 +0,0 @@ -using CSV -using Random -using DataFrames -using ComponentArrays -using OrdinaryDiffEq -using ModelingToolkit -using OptimizationBBO -using Optimization -using BenchmarkTools -using DataInterpolations -using Plots -using HydroErrors -include("../../src/HydroModels.jl") - -#! parameters in the Exp-Hydro model -@parameters Tmin = 0.0 [description = "snowfall temperature", unit = "°C"] -@parameters Tmax = 0.0 [description = "snowmelt temperature", unit = "°C"] -@parameters Df = 0.0 [description = "thermal degree-day factor", unit = "mm/(d°C)"] -@parameters Smax = 0.0 [description = "maximum water storage", unit = "mm"] -@parameters f = 0.0 [description = "runoff decline rate", unit = "mm^(-1)"] -@parameters Qmax = 0.0 [description = "maximum subsurface runoff", unit = "mm/d"] -#! hydrological flux in the Exp-Hydro model -@variables prcp = 0.0 [description = "precipitation", unit = "mm"] -@variables temp = 0.0 [description = "precipitation", unit = "°C"] -@variables lday = 0.0 [description = "length of day", unit = "-"] -@variables pet = 0.0 [description = "potential evapotranspiration", unit = "mm"] -@variables snowpack = 0.0 [description = "snow storage", unit = "mm"] -@variables soilwater = 0.0 [description = "catchment water storage", unit = "mm"] -@variables rainfall = 0.0 [description = "rain splitted from precipitation", unit = "mm"] -@variables snowfall = 0.0 [description = "snow splitted from precipitation", unit = "mm"] -@variables evap = 0.0 [description = "evapotranspiration", unit = "mm"] -@variables melt = 0.0 [description = "melting", unit = "mm"] -@variables baseflow = 0.0 [description = "base discharge", unit = "mm"] -@variables surfaceflow = 0.0 [description = "surface discharge", unit = "mm"] -@variables flow = 0.0 [description = "discharge", unit = "mm"] -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 -# HydroFlux([temp, lday] => [pet], -# exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), -#! define the snow pack reservoir -HydroFlux([temp, lday] => [pet], - exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]) - -snow_funcs = [ - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], - exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], - exprs=[step_func(temp - Tmax) * min(snowpack, Df * (temp - Tmax))]), -] -snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] -snow_ele = HydroBucket(name=:exphydro_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - -snow_ele.flux_func -#! define the soil water reservoir -soil_funcs = [ - HydroFlux([soilwater, pet] => [evap], [Smax], - exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - HydroFlux([soilwater] => [baseflow], [Smax, Qmax, f], - exprs=[step_func(soilwater) * Qmax * exp(-f * (max(0.0, Smax - soilwater)))]), - HydroFlux([soilwater] => [surfaceflow], [Smax], - exprs=[max(0.0, soilwater - Smax)]), - HydroFlux([baseflow, surfaceflow] => [flow], - exprs=[baseflow + surfaceflow]), -] - -soil_funcs = [ - HydroFlux([soilwater, pet] => [evap], [Smax], - exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - HydroFlux([soilwater] => [flow], [Smax, Qmax, f], - exprs=[Qmax * exp(-f * (Smax - soilwater)) + - max(0.0, soilwater - Smax)]), -] -soil_dfuncs = [StateFlux([rainfall, melt] => [evap, flow], soilwater)] - -soil_ele = HydroBucket( - name=:exphydro_soil, - funcs=soil_funcs, - dfuncs=soil_dfuncs -) - -#! define the Exp-Hydro model -exphydro_model = HydroModel( - name=:exphydro, - components=[snow_ele, soil_ele] -) - -# load data -df = DataFrame(CSV.File("data/exphydro/01013500.csv")); -prcp_vec = df[!, "prcp(mm/day)"] -temp_vec = df[!, "tmean(C)"] -dayl_vec = df[!, "dayl(day)"] -qobs_vec = df[!, "flow(mm)"] - -# prepare args -input = (prcp=prcp_vec, lday=dayl_vec, temp=temp_vec) -pas = ComponentVector((initstates=(snowpack=0.0, soilwater=1303.00), - params=(f=0.0167, Smax=1709.46, Qmax=18.47, Df=2.674, Tmax=0.17, Tmin=-2.09))) -timeidx = collect(1:length(prcp_vec)) -solver = HydroModels.ODESolver(alg=Tsit5(), reltol=1e-3, abstol=1e-3, saveat=timeidx) -config = (solver=solver, timeidx=timeidx) -@btime result = exphydro_model(input, pas, config=config, convert_to_ntp=false); # 29.317 ms (356101 allocations: 28.18 MiB) - -# plot(result.flow) -# plot!(qobs_vec) -# #! set the tunable parameters and constant parameters -# tunable_pas = ComponentVector(params=(f=0.0167, Smax=1709.46, Qmax=18.47, Df=2.674, Tmax=0.17, Tmin=-2.09)) -# const_pas = ComponentVector(initstates=(snowpack=0.1, soilwater=1303.00)) -# #! set the tunable parameters boundary -# lower_bounds = [0.0, 100.0, 10.0, 0.01, 0.0, -3.0] -# upper_bounds = [0.1, 2000.0, 50.0, 5.0, 3.0, 0.0] -# #! prepare flow -# output = (flow=qobs_vec,) -# #! model calibration -# # best_pas = HydroModels.param_box_optim( -# # exphydro_model, -# # tunable_pas=tunable_pas, -# # const_pas=const_pas, -# # input=[input], -# # target=[output], -# # lb=lower_bounds, -# # ub=upper_bounds, -# # solve_alg=BBO_adaptive_de_rand_1_bin_radiuslimited(), -# # maxiters=1000, -# # loss_func=HydroErrors.mse, -# # ) -# #! use the optimized parameters for model simulation -# best_pas = HydroModels.param_grad_optim( -# exphydro_model, -# tunable_pas=tunable_pas, -# const_pas=const_pas, -# input=[input], -# target=[output], -# config=[(solver=HydroModels.DiscreteSolver(),)], -# maxiters=100, -# loss_func=HydroErrors.mse, -# adtype=Optimization.AutoForwardDiff(), -# ) - -# total_pas = ComponentVector(params=(f=0.0167, Smax=1709.46, Qmax=18.47, Df=2.674, Tmax=0.17, Tmin=-2.09), initstates=(snowpack=0.1, soilwater=1303.00)) -# update_pas = HydroModels.update_ca(total_pas, ComponentVector(best_pas, getaxes(tunable_pas))) -# result_opt = exphydro_model(input, update_pas, timeidx=timeidx, solver=solver) -# result_opt_df = DataFrame(result_opt) -# result_opt_df.qobs = qobs_vec -# # CSV.write("temp.csv", result_opt_df) -# 1 - HydroErr.nse(result_opt.flow, qobs_vec) -# 1 - HydroErr.nse(result.flow, qobs_vec) - diff --git a/doc/demo/gr4j_demo.jl b/doc/demo/gr4j_demo.jl deleted file mode 100644 index 71530a7..0000000 --- a/doc/demo/gr4j_demo.jl +++ /dev/null @@ -1,144 +0,0 @@ -using CSV -using Plots -using Random -using DataFrames -using ComponentArrays -using OrdinaryDiffEq -using ModelingToolkit -using ModelingToolkit: t_nounits as t -using OptimizationBBO -using BenchmarkTools -# using HydroErrors -include("../../src/HydroModels.jl") - -#* parameters in the GR4J model -@parameters x1 = 0.0 [description = "maximum soil moisture storage", unit = "mm"] -@parameters x2 = 0.0 [description = "subsurface water exchange", unit = "mm/d"] -@parameters x3 = 0.0 [description = "routing store depth", unit = "mm"] -@parameters x4 = 0.0 [description = "unit Hydrograph time base", unit = "d"] -#* hydrological flux in the production store -@variables prcp = 0.0 [description = "precipitation", unit = "mm/d"] -@variables ep = 0.0 [description = "potential evaporation", unit = "mm/d"] -@variables soilwater = 0.0 [description = "soil moisture storage", unit = "mm"] -@variables new_soilwater = 0.0 [description = "new soil moisture storage", unit = "mm"] -@variables pn = 0.0 [description = "net precipitation", unit = "mm/d"] -@variables en = 0.0 [description = "net evaporation", unit = "mm/d"] -@variables ps = 0.0 [description = "the fraction of net precipitation redirected to soil moisture", unit = "mm/d"] -@variables es = 0.0 [description = "the fraction of net evaporation subtracted from soil moisture", unit = "mm/d"] -@variables perc = 0.0 [description = "percolation to deeper soil layers", unit = "mm/d"] -@variables pr = 0.0 [description = "combined inflow", unit = "mm/d"] -@variables slowflow = 0.0 [description = "90% ground runoff", unit = "mm/d"] -@variables fastflow = 0.0 [description = "10% direct runoff", unit = "mm/d"] -#* hydrological flux in the unit hydrograph -@variables slowflow_routed = 0.0 [description = "routed ground runoff by uh_1_half", unit = "mm/d"] -@variables fastflow_routed = 0.0 [description = "routed direct runoff by uh_2_full", unit = "mm/d"] -#* hydrological flux in the routing store -@variables routingstore = 0.0 [description = "routing storage", unit = "mm"] -@variables new_routingstore = 0.0 [description = "new routing storage", unit = "mm"] -@variables exch = 0.0 [description = "catchment groundwater exchange", unit = "mm/d"] -@variables routedflow = 0.0 [description = "routed flow in the routing store", unit = "mm/d"] -@variables flow = 0.0 [description = "routed flow in the routing store", unit = "mm/d"] -HydroFlux = HydroModels.HydroFlux -UnitHydroFlux = HydroModels.UnitHydroFlux -StateFlux = HydroModels.StateFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel - -#* define the production store -prod_funcs = [ - HydroFlux([prcp, ep] => [pn, en], exprs=[prcp - min(prcp, ep), ep - min(prcp, ep)]), - HydroFlux([pn, soilwater] => [ps], [x1], exprs=[max(0.0, pn * (1 - (soilwater / x1)^2))]), - HydroFlux([en, soilwater] => [es], [x1], exprs=[en * (2 * soilwater / x1 - (soilwater / x1)^2)]), - HydroFlux([soilwater] => [perc], [x1], exprs=[((x1)^(-4)) / 4 * ((4 / 9)^(4)) * (soilwater^5)]), - HydroFlux([pn, ps, perc] => [pr], [x1], exprs=[pn - ps + perc]), - HydroFlux([pr] => [slowflow, fastflow], exprs=[0.9 * pr, 0.1 * pr]), - HydroFlux([ps, es, perc, soilwater] => [new_soilwater], exprs=[soilwater + ps - es - perc]) -] -prod_dfuncs = [StateFlux(soilwater => new_soilwater)] - -ifelse_func(x) = ifelse(x > 0, 1, 0) - -function uh_1_half(lag; kw...) - timeidx = 1:ceil(lag) - sf = get(kw, :smooth_func, ifelse_func) - value = @.(sf(timeidx - lag) + - sf(lag - timeidx) * sf(timeidx) * (timeidx / lag)^2.5) - [value[1]; diff(value)] -end - -function uh_2_full(lag; kw...) - sf = get(kw, :smooth_func, ifelse_func) - double_lag = lag * 2 - timeidx = 1:ceil(double_lag) - - value = @.(sf(timeidx - double_lag) * 1 + - sf(double_lag - timeidx) * sf(timeidx - lag) * (1 - 0.5 * abs(2 - timeidx / lag)^2.5) + - sf(lag - timeidx) * (0.5 * abs(timeidx / lag)^2.5)) - - [value[1]; diff(value)] -end - -uh_flux_1 = HydroModels.UnitHydroFlux(slowflow, slowflow_routed, x4, uhfunc=HydroModels.UHFunction(:UH_1_HALF), solvetype=:DISCRETE) -uh_flux_2 = HydroModels.UnitHydroFlux(fastflow, fastflow_routed, x4, uhfunc=HydroModels.UHFunction(:UH_2_FULL), solvetype=:DISCRETE) - -prod_ele = HydroBucket(name=:gr4j_prod, funcs=prod_funcs, dfuncs=prod_dfuncs) -#* define the routing store -rst_funcs = [ - HydroFlux([routingstore] => [exch], [x2, x3], exprs=[x2 * abs(routingstore / x3)^3.5]), - HydroFlux([routingstore, slowflow_routed, exch] => [routedflow], [x3], exprs=[x3^(-4) / 4 * (routingstore + slowflow_routed + exch)^5]), - HydroFlux([routedflow, fastflow_routed, exch] => [flow], exprs=[routedflow + max(fastflow_routed + exch, 0.0)]), - HydroFlux([slowflow_routed, exch, routedflow, routingstore] => [new_routingstore], exprs=[routingstore + slowflow_routed + exch - routedflow]) -] -rst_dfuncs = [StateFlux(routingstore => new_routingstore)] -rst_ele = HydroBucket(name=:gr4j_rst, funcs=rst_funcs, dfuncs=rst_dfuncs) -#* define the gr4j model -gr4j_model = HydroModel(name=:gr4j, components=[prod_ele, uh_flux_1, uh_flux_2, rst_ele]) -# load data -df = DataFrame(CSV.File("data/gr4j/sample.csv")); -for col in names(df)[3:end] - df[ismissing.(df[:, col]), col] .= 0.0 -end -prcp_vec = df[!, "prec"] -et_vec = df[!, "pet"] -qobs_vec = df[!, "qobs"] -ts = collect(1:length(qobs_vec)) - -# prepare args -input = (prcp=prcp_vec, ep=et_vec) -pas = ComponentVector( - params=(x1=320.11, x2=2.42, x3=69.63, x4=1.39), - initstates=(soilwater=235.97, routingstore=45.47) -) -timeidx = collect(1:length(prcp_vec)) -solver = HydroModels.ODESolver(alg=Tsit5(), reltol=1e-3, abstol=1e-3, saveat=timeidx) -config = (timeidx=timeidx, solver=solver) -result = gr4j_model(input, pas, config=config, convert_to_ntp=true); - -slowflow_routed_vec = uh_flux_1(Matrix(reshape(result.slowflow,1,length(timeidx))), pas) - -plot(result.flow) -plot!(qobs_vec) -# #! set the tunable parameters and constant parameters -# tunable_pas = ComponentVector(params=(x1=320.11, x2=2.42, x3=69.63, x4=1.39)) -# const_pas = ComponentVector(initstates=(soilwater=235.97, routingstore=45.47)) -# total_pas = ComponentVector(params=(x1=320.11, x2=2.42, x3=69.63, x4=1.39), initstates=(soilwater=235.97, routingstore=45.47)) -# #! set the tunable parameters boundary -# tunable_param_lb = [0.0, -10.0, 1.0, 0.5] -# tunable_param_ub = [2000.0, 10.0, 100.0, 15.0] -# #! prepare flow -# output = (flow=qobs_vec,) -# #! model calibration -# best_pas = HydroModels.param_box_optim( -# gr4j_model, -# tunable_pas=tunable_pas, -# const_pas=const_pas, -# input=[input], -# target=[output], -# lb=tunable_param_lb, -# ub=tunable_param_ub, -# solve_alg=BBO_adaptive_de_rand_1_bin_radiuslimited(), -# maxiters=100, -# loss_func=HydroErrors.mse, -# ) -# #! use the optimized parameters for model simulation -# result_opt = gr4j_model(input, HydroModels.update_ca(total_pas, ComponentVector(best_pas, getaxes(tunable_pas))), timeidx=timeidx, solver=solver) diff --git a/doc/demo/hbv_light_demo.jl b/doc/demo/hbv_light_demo.jl deleted file mode 100644 index ba5294c..0000000 --- a/doc/demo/hbv_light_demo.jl +++ /dev/null @@ -1,134 +0,0 @@ -using CSV -using Lux -using LuxCore -using Random -using DataFrames -using Symbolics -using ComponentArrays -using OrdinaryDiffEq -using ModelingToolkit -using BenchmarkTools -using StableRNGs -using Optimization -using OptimizationBBO -using Plots -include("../../src/HydroModels.jl") - -# load data -df = DataFrame(CSV.File("data/exphydro/01013500.csv")); -ts = collect(1:10000) -prcp_vec = df[ts, "prcp(mm/day)"] -temp_vec = df[ts, "tmean(C)"] -dayl_vec = df[ts, "dayl(day)"] -qobs_vec = df[ts, "flow(mm)"] - -#! parameters in the HBV-light model -@parameters TT CFMAX CFR CWH FC beta LP PERC k0 k1 k2 UZL - -#! hydrological flux in the Exp-Hydro model -@variables prcp = 0.0 [description = "precipitation", unit = "mm"] -@variables temp = 0.0 [description = "precipitation", unit = "°C"] -@variables lday = 0.0 [description = "length of day", unit = "-"] -@variables pet = 0.0 [description = "potential evapotranspiration", unit = "mm"] -@variables rainfall = 0.0 [description = "rain splitted from precipitation", unit = "mm"] -@variables snowfall = 0.0 [description = "snow splitted from precipitation", unit = "mm"] -@variables refreeze = 0.0 [description = "Refreeze of ponding water"] -@variables melt = 0.0 [description = "snow melt", unit = "mm"] -@variables snowinfil = 0.0 [description = " Snowmelt infiltration", unit = "mm"] -@variables snowpack = 0.0 [description = " Snowmelt infiltration", unit = "mm"] -@variables meltwater = 0.0 [description = " Snowmelt infiltration", unit = "mm"] -@variables soilwater = 0.0 [description = " Snowmelt infiltration", unit = "mm"] - -@variables snowpack meltwater soilwater -@variables prcp temp lday pet rainfall snowfall refreeze melt snowinfil -@variables soilwetfrac recharge excess evapfrac evap -@variables upperzone lowerzone perc q0 q1 q2 flow - -HydroFlux = HydroModels.HydroFlux -NeuralFlux = HydroModels.NeuralFlux -StateFlux = HydroModels.StateFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel -step_func = x -> ifelse(x > 0.0, 1.0, 0.0) - -#! define the snow pack reservoir -snow_funcs = [ - HydroFlux([prcp, temp] => [snowfall, rainfall], [TT], - exprs=[step_func(TT - temp) * prcp, step_func(temp - TT) * prcp]), - HydroFlux([temp, lday] => [pet], - exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([snowpack, temp] => [melt], [TT, CFMAX], - exprs=[min(snowpack, CFMAX * max(0.0, temp - TT))]), - HydroFlux([meltwater, temp] => [refreeze], [TT, CFMAX, CFR], - exprs=[min(meltwater, CFR * CFMAX * max(0.0, TT - temp))]), - HydroFlux([meltwater, snowpack] => [snowinfil], [CWH], - exprs=[max(0.0, meltwater - CWH * snowpack)]), -] -snow_dfuncs = [StateFlux([snowfall, refreeze] => [melt], snowpack), - StateFlux([melt] => [refreeze, snowinfil], meltwater)] -snow_ele = HydroBucket(name=:hbv_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) -#! define the soil water reservoir -soil_funcs = [ - HydroFlux([soilwater] => [soilwetfrac], [FC, beta], - exprs=[clamp(abs(soilwater / FC)^beta, 0.0, 1.0)]), - HydroFlux([rainfall, snowinfil, soilwetfrac] => [recharge], - exprs=[(rainfall + snowinfil) * soilwetfrac]), - HydroFlux([soilwater] => [excess], [FC], - exprs=[max(0.0, soilwater - FC)]), - HydroFlux([soilwater] => [evapfrac], [LP, FC], - exprs=[soilwater / (LP * FC)]), HydroFlux([soilwater, pet, evapfrac] => [evap], - exprs=[min(soilwater, pet * evapfrac)]), -] -soil_dfuncs = [StateFlux([rainfall, snowinfil] => [evap, excess, recharge], soilwater)] -soil_ele = HydroBucket(name=:hbv_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) -#! define the upper and lower subsurface zone -zone_funcs = [ - HydroFlux([soilwater, upperzone, evapfrac] => [perc], [PERC], - exprs=[min(soilwater, PERC)]), - HydroFlux([upperzone] => [q0], [k0, UZL], - exprs=[max(0.0, (upperzone - UZL) * k0)]), - HydroFlux([upperzone] => [q1], [k1], - exprs=[upperzone * k1]), - HydroFlux([lowerzone] => [q2], [k2], - exprs=[lowerzone * k2]), - HydroFlux([q0, q1, q2] => [flow], - exprs=[q0 + q1 + q2]), -] -zone_dfuncs = [StateFlux([recharge, excess] => [perc, q0, q1], upperzone), StateFlux([perc] => [q2], lowerzone)] -zone_ele = HydroBucket(name=:hbv_zone, funcs=zone_funcs, dfuncs=zone_dfuncs) -#! define the HBV-light model -hbv_model = HydroModel(name=:hbv, components=[snow_ele, soil_ele, zone_ele]); - -params = ComponentVector(TT=0.0, CFMAX=5.0, CWH=0.1, CFR=0.05, FC=200.0, LP=0.6, beta=3.0, k0=0.06, k1=0.2, k2=0.1, PERC=2, UZL=10) -init_states = ComponentVector(upperzone=0.0, lowerzone=0.0, soilwater=0.0, meltwater=0.0, snowpack=0.0) -pas = ComponentVector(params=params, initstates=init_states) -input = (prcp=prcp_vec, lday=dayl_vec, temp=temp_vec) -result = hbv_model(input, pas, timeidx=ts, convert_to_ntp=true) - -plot(result.flow, label="simulated") -plot!(qobs_vec, label="observed") - -# #! set the tunable parameters boundary -# lower_bounds = [-1.5, 1, 0.0, 0.0, 50.0, 0.3, 1.0, 0.05, 0.01, 0.001, 0.0, 0.0] -# upper_bounds = [1.2, 8.0, 0.2, 0.1, 500.0, 1.0, 6.0, 0.5, 0.3, 0.15, 3.0, 70.0] -# #! prepare flow -# output = (flow=qobs_vec,) -# #* ComponentVector{Float64}(params = (TT = -1.2223657527438707, CFMAX = 2.201359793941345, CWH = 0.022749518921432663, CFR = 0.058335602629828544, FC = 160.01327559173077, LP = 0.7042581781418978, -# #* beta = 5.580695551758287, k0 = 0.0500023960318018, k1 = 0.04573064980956475, k2 = 0.14881856483902567, PERC = 1.3367222956722589, UZL = 44.059927907190016)) -# #! model calibration -# best_pas = HydroModels.param_box_optim( -# hbv_model, -# tunable_pas=ComponentVector(params=params), -# const_pas=ComponentVector(initstates=init_states), -# input=input, -# target=output, -# timeidx=ts, -# lb=lower_bounds, -# ub=upper_bounds, -# solve_alg=BBO_adaptive_de_rand_1_bin_radiuslimited(), -# maxiters=10000, -# loss_func=HydroModels.mse, -# ) - -# result = hbv_model(input, HydroModels.merge_ca(pas, best_pas), timeidx=ts) -# HydroModels.nse(result.flow, qobs_vec) \ No newline at end of file diff --git a/doc/demo/m50_demo.jl b/doc/demo/m50_demo.jl deleted file mode 100644 index 59280e0..0000000 --- a/doc/demo/m50_demo.jl +++ /dev/null @@ -1,175 +0,0 @@ -using CSV -using Lux -using LuxCore -using Random -using DataFrames -using Symbolics -using ComponentArrays -using OrdinaryDiffEq -using ModelingToolkit -using BenchmarkTools -using StableRNGs -using Optimization -using NamedTupleTools -using HydroErrors -include("../../src/HydroModels.jl") - -# load data -df = DataFrame(CSV.File("data/m50/01013500.csv")); -ts = collect(1:1000) -prcp_vec = df[ts, "Prcp"] -temp_vec = df[ts, "Temp"] -dayl_vec = df[ts, "Lday"] -snowpack_vec = df[ts, "SnowWater"] -soilwater_vec = df[ts, "SoilWater"] -qobs_vec = df[ts, "Flow"] - -inputs = [prcp_vec, temp_vec, snowpack_vec, soilwater_vec] -means = mean.(inputs) -stds = std.(inputs) -(prcp_norm_vec, temp_norm_vec, snowpack_norm_vec, soilwater_norm_vec) = [ - @.((tmp_vec - mean) / std) for (tmp_vec, mean, std) in zip(inputs, means, stds) -] - -#! parameters in the Exp-Hydro model -@parameters Tmin Tmax Df Smax f Qmax -#! parameters in normalize flux -@parameters snowpack_std snowpack_mean -@parameters soilwater_std soilwater_mean -@parameters prcp_std prcp_mean -@parameters temp_std temp_mean - -#! hydrological flux in the Exp-Hydro model -@variables prcp temp lday pet rainfall snowfall -@variables snowpack soilwater lday pet -@variables melt log_evap_div_lday log_flow -@variables norm_snw norm_slw norm_temp norm_prcp - -SimpleFlux = HydroModels.SimpleFlux -NeuralFlux = HydroModels.NeuralFlux -StateFlux = HydroModels.StateFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel -step_func = x -> ifelse(x > 0.0, 1.0, 0.0) - -#! define the snow pack reservoir -snow_funcs = [ - SimpleFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - SimpleFlux([prcp, temp] => [snowfall, rainfall], [Tmin], - exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - SimpleFlux([snowpack, temp] => [melt], [Tmax, Df], - exprs=[step_func(temp - Tmax) * min(snowpack, Df * (temp - Tmax))]), -] -snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] - -snow_ele = HydroBucket( - name=:exphydro_snow, - funcs=snow_funcs, - dfuncs=snow_dfuncs -) - -#! define the ET NN and Q NN -ep_nn = Lux.Chain( - Lux.Dense(3 => 16, tanh), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 1, leakyrelu), - name=:epnn -) -q_nn = Lux.Chain( - Lux.Dense(2 => 16, tanh), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 1, leakyrelu), - name=:qnn -) - -#! get init parameters for each NN -# et_nn_flux = NeuralFlux([norm_snw, norm_slw, norm_temp] => [log_evap_div_lday], et_nn) -ep_nn_flux = NeuralFlux([norm_snw, norm_slw, norm_temp] => [evap], ep_nn) -q_nn_flux = NeuralFlux([norm_slw, norm_prcp] => [log_flow], q_nn) - -#! define the soil water reservoir -soil_funcs = [ - #* normalize - SimpleFlux([snowpack, soilwater, prcp, temp] => [norm_snw, norm_slw, norm_prcp, norm_temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean, snowpack_std, soilwater_std, prcp_std, temp_std], - exprs=[(var - mean) / std for (var, mean, std) in zip([snowpack, soilwater, prcp, temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean], - [snowpack_std, soilwater_std, prcp_std, temp_std] - )]), - StdNormalizeFlux( - [snowpack, soilwater, prcp, temp] => - [norm_snw, norm_slw, norm_prcp, norm_temp] - ), - et_nn_flux, - q_nn_flux, -] - -state_expr = rainfall + melt - step_func(soilwater) * lday * log_evap_div_lday - step_func(soilwater) * exp(log_flow) -soil_dfuncs = [StateFlux([soilwater, rainfall, melt, lday, log_evap_div_lday, log_flow], soilwater, Num[], expr=state_expr)] -soil_ele = HydroBucket(name=:m50_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) - -#! define the Exp-Hydro model -m50_model = HydroModel(name=:m50, components=[snow_ele, soil_ele]); -#! pretrain each NN -et_nn_input = (norm_snw=snowpack_norm_vec, norm_slw=soilwater_norm_vec, norm_temp=temp_norm_vec) -q_nn_input = (norm_slw=soilwater_norm_vec, norm_prcp=prcp_norm_vec) - -et_nn_p = Vector(ComponentVector(LuxCore.initialparameters(StableRNG(42), et_nn))) -q_nn_p = Vector(ComponentVector(LuxCore.initialparameters(StableRNG(42), q_nn))) - -input = (prcp=prcp_vec, lday=dayl_vec, temp=temp_vec) -params = (f=0.0167, Smax=1709.46, Qmax=18.47, Df=2.674, Tmax=0.17, Tmin=-2.09) -var_stds = NamedTuple{Tuple([Symbol(nm, :_std) for nm in [:prcp, :temp, :snowpack, :soilwater]])}(stds) -var_means = NamedTuple{Tuple([Symbol(nm, :_mean) for nm in [:prcp, :temp, :snowpack, :soilwater]])}(means) - -nn_params = (etnn=et_nn_p, qnn=q_nn_p) -pas = ComponentVector(initstates=(snowpack=0.0, soilwater=1303.00), params=reduce(merge, [params, var_means, var_stds]), nn=nn_params) -timeidx = collect(1:length(prcp_vec)) -solver = HydroModels.ODESolver(alg=Tsit5(), reltol=1e-3, abstol=1e-3) -result = m50_model(input, pas, timeidx=timeidx, solver=solver) - -# # et_nn_p_trained = HydroModels.nn_param_optim( -# # et_nn_flux, -# # input=et_nn_input, -# # target=(log_evap_div_lday=log.(df[ts, :evap] ./ df[ts, :lday]),), -# # init_params=ComponentVector(etnn=et_nn_p), -# # maxiters=100, -# # ) - -# # q_nn_p_trained = HydroModels.nn_param_optim( -# # q_nn_flux, -# # input=q_nn_input, -# # target=(log_flow=log.(df[ts, :flow]),), -# # init_params=ComponentVector(qnn=q_nn_p), -# # maxiters=100, -# # ) - -# #! set the tunable parameters and constant parameters -# #! 当仅优化部分参数如nn_params时就会出错 -# tunable_pas = ComponentVector(nn=(etnn=collect(ComponentVector(et_nn_p)), qnn=collect(ComponentVector(q_nn_p)))) -# const_pas = ComponentVector(initstates=(snowpack=0.1, soilwater=1303.00), params=reduce(merge, [params, var_means, var_stds])) -# default_model_pas = ComponentArray(merge_recursive(NamedTuple(tunable_pas), NamedTuple(const_pas))) -# # new_pas = merge_ca(default_model_pas, tunable_pas) -# #! prepare flow -# output = (log_flow=qobs_vec,) -# #! model calibration -# best_pas = HydroModels.param_grad_optim( -# m50_model, -# tunable_pas=tunable_pas, -# const_pas=const_pas, -# input=[input], -# target=[output], -# adtype=Optimization.AutoZygote(), -# maxiters=100 -# ) - -#! use the optimized parameters for model simulation -# result_opt = m50_model(input, HydroModels.update_ca(default_model_pas, best_pas), timeidx=timeidx, solver=solver) -# pas_list = [0.0, 1303.0042478479704, 0.0167447802633775, 1709.4610152413964, 18.46996175240424, 2.674548847651345, 0.17573919612506747, -2.0929590840638728, 0.8137969540102923] -# pas = ComponentVector(pas_list, getaxes(tunable_pas)) - -# HydroModels.mse(result_opt.log_flow, qobs_vec) -# 1 - HydroModels.nse(result_opt.log_flow, qobs_vec) - diff --git a/doc/demo/temp.jl b/doc/demo/temp.jl deleted file mode 100644 index 4873f67..0000000 --- a/doc/demo/temp.jl +++ /dev/null @@ -1,36 +0,0 @@ -#=using Main.HydroModels=# -:((var"##arg#2523971367920833662", var"##arg#7360549935612702713", - var"##arg#10678911477305669588", var"##arg#5964805160111424296", var"##arg#14435632484259125414") -> begin - #= D:\Julia\Julia-1.10.4\packages\packages\SymbolicUtils\EGhOJ\src\code.jl:373 =# - #= D:\Julia\Julia-1.10.4\packages\packages\SymbolicUtils\EGhOJ\src\code.jl:374 =# - #= D:\Julia\Julia-1.10.4\packages\packages\SymbolicUtils\EGhOJ\src\code.jl:375 =# - begin - prcp = var"##arg#2523971367920833662"[1] - temp = var"##arg#2523971367920833662"[2] - snowpack = var"##arg#7360549935612702713"[1] - Tmin = var"##arg#10678911477305669588"[1] - Tmax = var"##arg#10678911477305669588"[2] - Df = var"##arg#10678911477305669588"[3] - t = var"##arg#14435632484259125414"[1] - begin - snowfall = (*)((*)(0.5, prcp), (+)(1.0, (tanh)((*)(5.0, (+)(Tmin, (*)(-1, temp)))))) - rainfall = (*)((*)(0.5, prcp), (+)(1.0, (tanh)((*)(5.0, (+)((*)(-1, Tmin), temp))))) - melt = (*)((*)(0.5, (+)(1.0, (tanh)((*)(5.0, (+)((*)(-1, Tmax), temp))))), - (min)(snowpack, (*)(Df, (+)((*)(-1, Tmax), temp)))) - # used for ODE problem solving - begin - #= D:\Julia\Julia-1.10.4\packages\packages\SymbolicUtils\EGhOJ\src\code.jl:468 =# - (SymbolicUtils.Code.create_array)(Vector, nothing, Val{1}(), Val{(1,)}(), (+)((*)(-1, melt), snowfall)) - end - # used for flux calculation - begin - #= D:\Julia\Julia-1.10.4\packages\packages\SymbolicUtils\EGhOJ\src\code.jl:468 =# - (SymbolicUtils.Code.create_array)(Vector, nothing, Val{1}(), Val{(3,)}(), snowfall, rainfall, melt) - end - end - end -end) - - - -RuntimeGeneratedFunction() diff --git a/doc/make.jl b/doc/make.jl deleted file mode 100644 index 3f99d0d..0000000 --- a/doc/make.jl +++ /dev/null @@ -1,40 +0,0 @@ -using Documenter -using HydroModels - -makedocs( - sitename = "HydroModels.jl", - authors = "xin jing", - format = Documenter.HTML( - prettyurls = get(ENV, "CI", nothing) == "true", - canonical = "https://chooron.github.io/HydroModels.jl", - assets = ["assets/icons.ico"], - highlights = ["yaml"], - collapselevel = 2, - sidebar_sitename = false - ), - modules = [HydroModels], - clean = true, - doctest = true, - checkdocs = :none, - pages = [ - "Home" => "index.md", - # "Getting Started" => "getting_started.md", - "Tutorials" => [ - "Run a Bucket Model" => "tutorials/run_a_bucket.md", - "Run ExpHydro Model" => "tutorials/run_a_exphydro_model.md", - # "Spatial Model Example" => "tutorials/spatial_model.md" - ], - # "API Reference" => [ - # "Model Types" => "api/types.md", - # "Model Functions" => "api/functions.md", - # "Utility Functions" => "api/utils.md" - # ], - # "Contributing" => "contributing.md" - ] -) - -deploydocs( - repo = "github.com/chooron/HydroModels.jl", - devbranch = "main", - push_preview = true -) \ No newline at end of file diff --git a/doc/paper/detail.typ b/doc/paper/detail.typ deleted file mode 100644 index a44b5c4..0000000 --- a/doc/paper/detail.typ +++ /dev/null @@ -1,9 +0,0 @@ -= Methodologies of HydroModels.jl - -== Symbolic Programming and Meta Information - -In conventional hydrological model development, computational formulas are typically implemented using a function-based approach, where function names represent the calculations, inputs include both variables and parameters required by the formula, and outputs are the calculated results. This approach requires careful handling of variable dimension transformations within the functions. Such a construction method is less intuitive compared to writing mathematical formulas directly and increases implementation complexity. To address this challenge, our framework adopts symbolic programming, which allows developers to write code that closely resembles mathematical equations, thereby improving code readability and reducing development difficulty. - -Symbolic Programming is implemented using the Symbolics.jl package, which is analogous to Python's SymPy and MATLAB's symbolic toolbox. Symbolic programming serves as the foundation for building various fluxes and parameters within the hydrological model, providing clear indicators for inputs, outputs, and parameters of different fluxes. Through symbolic programming, computational formulas can be predefined without data, allowing users to write code that directly mirrors mathematical equations, significantly improving code readability and maintainability. - -During Flux construction, the framework collects metadata such as model input variables, parameters, output variable names, state variables (StateFlux), and neural network identifiers (NeuralFlux). This information is stored within each component's (bucket, model, etc.) metadata during subsequent construction phases. These metadata serve multiple purposes: they inform users about required input data and parameters, provide clarity about output results, and enable pre-indexing of variables before model computation to facilitate efficient automatic differentiation calculations. diff --git a/doc/paper/picture/models/ENNx.png b/doc/paper/picture/models/ENNx.png deleted file mode 100644 index 6915cb8..0000000 Binary files a/doc/paper/picture/models/ENNx.png and /dev/null differ diff --git a/doc/paper/picture/models/PRNN.png b/doc/paper/picture/models/PRNN.png deleted file mode 100644 index 2f7152b..0000000 Binary files a/doc/paper/picture/models/PRNN.png and /dev/null differ diff --git a/doc/paper/picture/models/dPL_HBV.png b/doc/paper/picture/models/dPL_HBV.png deleted file mode 100644 index 820c3b6..0000000 Binary files a/doc/paper/picture/models/dPL_HBV.png and /dev/null differ diff --git a/doc/paper/picture/models/hess-28-2705-2024-f01-web.png b/doc/paper/picture/models/hess-28-2705-2024-f01-web.png deleted file mode 100644 index 70032d4..0000000 Binary files a/doc/paper/picture/models/hess-28-2705-2024-f01-web.png and /dev/null differ diff --git a/doc/paper/picture/predictions.png b/doc/paper/picture/predictions.png deleted file mode 100644 index 7c34066..0000000 Binary files a/doc/paper/picture/predictions.png and /dev/null differ diff --git a/doc/paper/struct.pdf b/doc/paper/struct.pdf deleted file mode 100644 index c14e62a..0000000 Binary files a/doc/paper/struct.pdf and /dev/null differ diff --git a/doc/paper/struct.typ b/doc/paper/struct.typ deleted file mode 100644 index 7086854..0000000 --- a/doc/paper/struct.typ +++ /dev/null @@ -1,357 +0,0 @@ -// #set text(font:("SimSun","Times New Roman"), fallback: false, size: 10pt) -#set align(start + top) - -#align(center, text(17pt)[ - *HydroModels.jl: A Flexible and Efficient Framework for Hydrological Modeling* -]) - -= Abstract - -#set heading(numbering: "1.1") -= Introduction -Hydrological modeling has undergone significant evolution over the past decades, reflecting our growing understanding of water systems and advancements in computational capabilities. This progression can be broadly categorized into three main phases: conceptual hydrological models, deep learning-based models, and the current hybrid approach combining deep learning with physical principles. - -Conceptual hydrological models, developed in the mid-20th century, aimed to represent watershed processes using simplified mathematical equations. These models, while effective in many scenarios, often struggled with complex, non-linear hydrological processes and required extensive calibration. As computational power increased, distributed and semi-distributed models emerged, allowing for more detailed spatial representation of watershed characteristics and processes. - -The advent of machine learning, particularly deep learning, in the early 21st century brought a paradigm shift to hydrological modeling. Deep learning models, leveraging large datasets and powerful algorithms, demonstrated remarkable capabilities in capturing complex, non-linear relationships in hydrological systems. These data-driven approaches often outperformed traditional models in prediction tasks but lacked the physical interpretability crucial for understanding underlying processes. - -The current frontier in hydrological modeling lies in hybrid approaches that combine the strengths of deep learning with physical principles. These physics-informed neural networks and theory-guided data science methods aim to leverage the predictive power of machine learning while maintaining consistency with known physical laws and domain knowledge. This approach promises more robust, interpretable, and generalizable models capable of handling the complexities of hydrological systems across diverse conditions. - -The construction of hydrological models has evolved alongside these conceptual advancements. Conceptual models typically involve defining interconnected components representing various hydrological processes, often requiring careful parameterization and calibration. Distributed and semi-distributed models necessitate more complex structures to account for spatial heterogeneity, often incorporating GIS data and advanced routing schemes. Deep learning models, in contrast, rely on designing appropriate network architectures and training procedures to learn from large datasets. - -Despite these advancements, the development of hydrological models remains challenging. The diversity of modeling approaches has led to the creation of various model building frameworks, each with its own strengths and limitations. For instance, the Framework for Understanding Structural Errors (FUSE) provides a flexible approach to conceptual hydrological modeling by allowing the combination of different model structures. The Structure for Unifying Multiple Modeling Alternatives (SUMMA) offers a unified approach to hydrological modeling, enabling the representation of multiple modeling approaches within a single framework. Superflex provides a highly flexible framework for conceptual hydrological modeling, allowing for the creation of customized model structures. The Modular Assessment of Rainfall–Runoff Models Toolbox (MARRMoT) offers a collection of conceptual hydrological models and tools for model comparison and evaluation. However, these frameworks often focus on specific types of models or modeling approaches, and may lack the flexibility to easily incorporate machine learning techniques or hybrid approaches. Moreover, the complexity of modern hybrid approaches can make model construction and modification a daunting task, requiring expertise in both hydrology and machine learning, which is not always fully addressed by existing frameworks. - -These challenges highlight the need for a unified, flexible framework for hydrological model construction. Such a framework should accommodate various modeling paradigms, from simple conceptual models to complex hybrid approaches, while providing a consistent interface for model development, calibration, and analysis. It should facilitate the integration of different modeling components, allow for easy experimentation with novel approaches, and promote reproducibility in hydrological research. - -In response to these needs, we present HydroModels.jl, a comprehensive and adaptable framework designed to streamline the process of hydrological model development and application. By providing a unified platform for diverse modeling approaches, HydroModels.jl aims to accelerate innovation in hydrological science and enhance our ability to address critical water resource challenges in an era of environmental change. - -= Architecture of HydroModels.jl - -HydroModels.jl is built upon a modular and flexible architecture, designed to accommodate a wide range of hydrological modeling approaches. The framework's core structure comprises four main classes: Flux, Bucket, Route, and Model, each playing a vital role in constructing comprehensive hydrological systems. - -== Flux Class - -The Flux class serves as the fundamental building block of HydroModels.jl, representing basic hydrological processes. This class embodies the mathematical formulations that govern the movement and transformation of water within various components of the hydrological cycle. By design, the Flux class represents a diverse array of water fluxes, ranging from precipitation and evapotranspiration to infiltration and runoff. Flux代表的公式如下: - -The Flux type standardizes the representation of hydrological flux calculations through a functional approach, where each flux computation encompasses inputs, outputs, and parameters. The calculation method is represented by a function F, which can take various forms depending on the specific requirements. F can be implemented as a conventional algebraic formula, a neural network, a convolutional operation, or even a flood dynamics system calculation. Based on different applications and computational methods, the Flux class can be categorized into several types: - -// 这段话是指FLux class的一个补充说明,但是我认为现在还不需要体现他的功能,比如优势什么的,主要还是体现他能够用于哪些场景 -// Its strength lies in its ability to not only encapsulate process-specific equations but also efficiently manage inputs, outputs, and parameters. Moreover, the Flux class demonstrates remarkable versatility in supporting both straightforward algebraic relationships and more complex differential equations. This flexibility enables it to capture a broad spectrum of hydrological processes, spanning from simple linear interactions to intricate dynamic systems, thereby providing a robust framework for comprehensive hydrological modeling. - -The Flux class is extended into several specialized subclasses to accommodate various modeling needs. SimpleFlux represents the calculation method for most hydrological fluxes, such as actual evapotranspiration and runoff generation, which involve simple linear or nonlinear calculation formulas that can be computed through basic operators. StateFlux represents state hydrological flux calculations, such as soil moisture and snow depth in hydrological modules. These state hydrological fluxes represent a form of mass balance in the module and are fundamental to hydrological module construction. NeuralFlux is derived from SimpleFlux, using pre-built neural networks to predict hydrological fluxes, replacing original simple formulas to enhance model generalization ability and prediction performance. RouteFlux is another branch distinct from SimpleFlux, typically applied to further routing calculations of runoff model results, representing runoff evolution methods such as Muskingum, KAL wave, and discharge models. Based on differences in calculation methods, it can be further subdivided into three subclasses: dynamic system-based, differential calculation-based, and convolution calculation-based approaches. - -In these equations, I represents the runoff depth converted to discharge in the runoff generation model, Q denotes the flow evolution results calculated by the routing model, and θ represents parameters. The function f represents simple calculation formulas, while fuh represents the impulse response function. In equation 3, S represents the assumed river state variable, whose rate of change equals the difference between I and Q and can be used to calculate Q. In equation 4, T represents the time of influence of the impulse response function fuh. - - -These diverse Flux subclasses, while tailored to specific hydrological processes, share a common interface and structure within the HydroModels.jl framework. This uniformity is a key strength of the design, ensuring consistency in metadata management, function calls, and overall usage across different flux types. Each subclass, regardless of its specialization, adheres to a standardized approach for handling inputs, outputs, and parameters. This consistency not only simplifies the implementation of new flux types but also enhances the framework's usability, allowing modelers to seamlessly integrate and interchange various flux components within their hydrological models. The unified structure facilitates a modular approach to model construction, where different flux types can be easily combined or substituted without necessitating significant changes to the overall model architecture. - -== Bucket Class - -The Bucket class represents water storage modules within the hydrological system. It is composed of multiple SimpleFlux components (including NeuralFlux) and StateFlux components, serving as a versatile abstraction for various water reservoirs. These reservoirs can represent soil moisture, groundwater, surface water bodies, and even complete runoff generation models. This structure enables comprehensive simulation of dynamic changes in water storage over time across different hydrological components. - -Following the integration of Flux components, the Bucket class dynamically generates two categories of functions: those responsible for solving ordinary differential equations (ODEs) and those handling non-StateFlux component computations. These functions are constructed at runtime through anonymous function generation, enabling a flexible and computationally efficient representation of hydrological processes within the bucket system. The detailed implementation methodology of this dynamic function generation process is thoroughly discussed in Section 3. - -The reason for using this approach is that this method is highly efficient and quick, avoiding matrix update calculations and other computational overheads. It allows for flexible and efficient representation of the relationships between different hydrological processes within the bucket, enabling seamless integration of various flux components and adaptability to diverse modeling scenarios. - -The Bucket class seamlessly integrates multiple flux components, manages state variables representing water storage, and implements ODEs for dynamic simulations. This versatility allows modelers to customize the bucket to represent various types of water storage units, adapting to the specific needs of different hydrological scenarios. The primary implementation, HydroBucket, exemplifies this flexibility, offering a customizable model that can be tailored to a wide range of water storage representations. - -== Route Class - -The Route class is designed to simulate water movement through landscapes and river networks, serving as a crucial component that distinguishes between lumped, multi-node, semidistributed, and fully distributed hydrological models. While these models may share similar runoff generation processes, their routing calculations vary significantly, leading to distinct model architectures. - -RouteFlux serves as the foundation for constructing the Route class. To accommodate different RouteFlux calculations, we have implemented three Route subclasses: - -1. UHRoute: This Route class employs convolution-based calculations through RouteFlux, primarily used for unit hydrograph computations. It assumes that the flow convergence process from each computational unit to the outlet cross-section is independent. The Route transforms the runoff from each unit and applies convolution calculations using an impulse response function, then aggregates these to obtain the temporal evolution at the outlet. - -2. StateRoute: This Route class utilizes an ordinary differential-based calculation approach through RouteFlux. Based on different spatial relationship inputs, it can be applied to both distributed and semi-distributed model construction. For flow direction data, it employs a direction matrix shifts method to represent distributed grid routing processes. For river network topology, it uses a network adjacency matrix to calculate cumulative inflow for each sub-basin, thereby representing semi-distributed river network routing. According to the routing calculation method and spatial information, StateRoute constructs a large-scale ODE system, solving for Route states to derive the flow process. - -3. RapidRoute: This Route class implements a dynamic system-based calculation approach through RouteFlux. Its computational logic is inspired by the Rapid routing framework. Through routing calculation methods, combined with grid and river network adjacency matrices, it constructs a system of linear equations and iteratively calculates the flow process. - -== Model Class - -The Model class represents the highest-level abstraction in HydroModels.jl, encapsulating a complete hydrological model for simulating watershed runoff processes. It integrates the Bucket module for runoff generation and the Route module for flow routing, unifying their computational processes and enabling holistic parameter optimization across the entire model structure. - -Building upon the consistent interfaces established across Flux, Bucket, Route, and Model components, the Model class facilitates flexible construction and computation under the premise of physical validity. The computational process follows a systematic approach where the model iterates through its constituent modules, updates input data, and aggregates results for subsequent calculations. To accommodate the immutable array requirements of Zygote.jl, the model construction phase includes storage of input-output flux information for each component, establishing index mappings for ordered data retrieval based on each module's computational requirements. This design ensures efficient data flow while maintaining compatibility with automatic differentiation frameworks. - - -= Methodologies of HydroModels.jl - -== Construction Methods - -The construction methods aim to provide users with a flexible, logical, and hierarchical model building approach that aligns with deep learning construction principles. These methods automatically generate internal computational logic, reduce redundant code construction, and ultimately achieve the efficient building of hydrological models. - -=== Symbolic Programming and Runtime Function Generation - -The construction methods in HydroModels.jl are fundamentally based on symbolic programming, metadata extraction, and runtime function generation. This approach forms the backbone of the framework's flexibility and efficiency. - -At the core of HydroModels.jl's construction methods is symbolic programming, implemented using the Symbolics.jl package, which is analogous to Python's SymPy. Symbolic programming serves as the foundation for building various types within the framework, providing crucial indicators for inputs, outputs, and parameters of different components. - -In the context of hydrological modeling, symbolic programming allows for the representation of intermediate fluxes in the model's computational process. These symbolic variables, when combined with the framework's core classes, enable the representation of complex hydrological processes. Essentially, these variables act as intermediate fluxes in the model, while the classes define how these fluxes are calculated within the model structure. - -Following the symbolic representation, the framework generates metadata for each component. This metadata, stored in string format, records essential information about each class, including its inputs, outputs, parameters, and states. This feature allows users to access component information readily and facilitates efficient data computation. The metadata serves as a guide for the framework, enabling quick access to component characteristics and aiding in the orchestration of data flow within the model. - -After symbolically representing each flux's calculation method, the construction process builds an anonymous computation function for Flux and Bucket formulas, as illustrated in Figure X. - -As shown in the figure, the anonymous function construction method can be broken down into several key steps: - -First, the method matches outputs with their corresponding calculation expressions (exprs) to form the function body. Within this body, each output value is assigned its corresponding calculation expression. Once the expressions are complete, the outputs are assembled in sequence into an array that serves as the function's return value. - -Similarly, inputs and parameters are transformed into array-type arguments suitable for model input. After data input, the function sequentially assigns values to inputs and parameters for use in output calculations. - -After determining the input arguments, function body, and return values, the method generates meta-expressions representing the function through metaprogramming. Finally, it implements the model's anonymous function construction using runtime function generation techniques. - -This systematic construction approach ensures efficient computation while maintaining the mathematical rigor required for hydrological modeling. The resulting anonymous functions serve as the computational core of the framework, enabling flexible and performant model execution. - - -The final step in the construction process involves the building of anonymous functions for specific components. This process varies depending on the type of component: - -1. Flux and Bucket Components: For runoff generation modules, anonymous functions are typically constructed at runtime. At its core, the Bucket class dynamically generates two types of functions: one for solving ordinary differential equations (ODEs) and another for processing non-StateFlux components. These functions are constructed at runtime using anonymous functions, which efficiently sequence and integrate multiple flux components. The functions are built once during the model initialization phase and remain fixed thereafter, avoiding repeated construction during model execution. The function generation process utilizes the `build_ele_func` method, leveraging the `RuntimeGeneratedFunctions.jl` and `SymbolicUtils.jl` packages. This approach employs symbolic computation techniques to seamlessly combine various flux components, including neural network-based fluxes, into a cohesive and efficient computational structure. The resulting functions process input data to output all internal variables of the fluxes, enabling a flexible and powerful representation of hydrological processes within the bucket system. - -2. RouteFlux and Route Components: The construction of these components depends on specific requirements. RouteFlux components are first constructed based on the chosen routing method (e.g., Muskingum routing, Nash unit hydrograph). Then, the Route component is built and its routing calculation method is set. These components do not typically require runtime anonymous function construction. - -3. UnitHydroFlux Components: For these components, the main requirement is to specify the type of unit hydrograph (e.g., triangular unit hydrograph) to be used in the calculations. - -This construction approach offers several advantages, including simplicity in building, strong developmental potential, and high computational efficiency, making HydroModels.jl a powerful and flexible framework for hydrological modeling. - -== Computational Methods - -HydroModels.jl employs advanced computational strategies to enhance model parameter calibration and computational efficiency, particularly for multi-unit simulations. The framework supports both single-node (lumped models) and multi-node (distributed models) computations through innovative array-based approaches. The key computational methods are as follows: - -=== Dimensional Handling for Input Arrays - -In model simulations, input arrays are categorized based on the number of calculation units: - -1. Two-dimensional matrices (N × T): Represent single calculation unit inputs, where N is the variable dimension and T is the time length. -2. Three-dimensional arrays (N × M × T): Represent multi-unit inputs, where M is the number of calculation units. - -=== Metadata-Driven Data Extraction and Result Storage - -HydroModels.jl employs a sophisticated metadata-driven approach for efficient data extraction and result storage during model execution. During model construction, the framework first generates and stores metadata that describes each component's inputs, outputs, and parameters. Based on this metadata and the computational sequence, the framework creates index mappings between modules and their input variables, where indices refer to the position of each variable in the model's metadata. These pre-built index mappings enable efficient data flow by replacing traditional key-value data storage and retrieval methods. - -During computation, the framework uses these index mappings to systematically extract the corresponding input data and parameters for each module. After each module's computation is complete, the results are concatenated along the variable dimension through matrix operations. This process repeats to execute calculations across all components. By avoiding mutable dictionaries and relying on immutable array operations, this approach maintains compatibility with automatic differentiation tools like Zygote.jl while preserving the model's differentiability. Additionally, this methodology improves computational efficiency and enables comprehensive storage of all intermediate states. - -This metadata-driven method significantly enhances the framework's performance, particularly for complex models with multiple interconnected components. The approach streamlines data management through efficient index-based operations rather than dictionary lookups, while maintaining the mathematical rigor required for gradient-based optimization methods. - -=== Slicing and Broadcasting Techniques - -For three-dimensional input arrays (N × M × T), the framework implements array slicing and broadcasting techniques to enable batch computation across multiple calculation units. Specifically, the input arrays are sliced along both the time and calculation unit dimensions. Through array broadcasting, the framework automatically matches the input parameters with the sliced arrays, enabling element-wise computation and producing output results of appropriate dimensions. This approach allows efficient parallel processing of multiple calculation units while maintaining the mathematical consistency of the model. - -=== ODE Solving for Multiple Calculation Units - -To ensure simultaneous solving across all calculation units in ODE computations, the framework represents equation state variables as 2D matrices. Each matrix represents the state variables for all calculation units at a specific time point. This approach allows for efficient parallel solving of ODEs across multiple units. - -By supporting both 2D and 3D array computations, HydroModels.jl provides a flexible and efficient framework for a wide range of hydrological modeling applications, from simple lumped models to complex distributed systems. This computational approach enhances the framework's ability to handle diverse spatial representations and computational requirements in hydrological modeling. - -== Optimization and Solving Methods - -HydroModels.jl leverages the powerful SciML ecosystem, particularly the DifferentialEquations and Optimization packages, to provide robust optimization and solving capabilities. This deep integration allows users to access a wide range of state-of-the-art methods while maintaining flexibility and extensibility. - -=== Solving Methods - -The framework supports both continuous and discrete ordinary differential equations (ODEs), corresponding to ODEProblem and DiscreteProblem in the DifferentialEquations library. Users can select from a variety of solvers and adjust precision settings to suit their specific modeling needs. This flexibility allows for efficient handling of diverse hydrological processes, from rapid surface runoff to slow groundwater movements. - -For continuous ODEs, users can choose from methods such as Runge-Kutta, Adams, or BDF (Backward Differentiation Formula) solvers, depending on the stiffness and characteristics of their system. Discrete ODEs, often used in conceptual models, can be solved using appropriate discrete solvers. - -=== Optimization Approaches and Scenarios - -HydroModels.jl offers two main optimization approaches: black-box optimization and gradient-based optimization. Both methods construct objective functions that measure the discrepancy between model outputs and observed data. - -1. Black-box Optimization: This approach treats the model as a black box, making it suitable for traditional hydrological models with fewer parameters. It utilizes algorithms that do not require gradient information, such as Particle Swarm Optimization or Differential Evolution. - -2. Gradient-based Optimization: Leveraging the Zygote automatic differentiation library and SciMLSensitivity, this method computes gradients of the model computations and ODE solutions. It is particularly effective for distributed models or those with neural network embeddings, allowing for more efficient optimization of large-scale problems. - -The framework also supports various optimization scenarios: - -1. Neural Network Pre-training: To reduce the complexity of subsequent parameter optimization, HydroModels.jl allows for pre-training of neural networks using specific datasets before embedding them into hydrological models. - -2. Distributed Hydrological Model Optimization: Parameters are categorized into three main types: - a) Model parameters - b) Initial states - c) Neural network parameters - - For model parameters and initial states, the framework further groups them by calculation unit types (e.g., Type 1, Type 2). Each parameter group then contains specific model parameter values. - - For neural network parameters, instead of creating separate networks for each calculation unit type (which would lead to exponential growth in parameters), HydroModels.jl implements a shared neural network across all calculation units in a distributed model. To differentiate calculations for different unit types, unit-specific attributes are used as additional inputs to the neural network. - -The choice between these optimization methods and scenarios depends on the specific model characteristics, computational resources, and the desired balance between optimization speed and robustness. By providing these diverse optimization capabilities, HydroModels.jl enables researchers to effectively calibrate their models and explore parameter spaces, enhancing overall model performance and reliability across various hydrological modeling contexts. - -= Model Implementation and Case Studies - -To illustrate the capabilities and flexibility of HydroModels.jl, this section presents several practical examples of its application in hydrological modeling. These examples demonstrate how the framework can be used to construct, simulate, and optimize various types of hydrological models. - -== Lumped Model: Neural Network Embedding in Exphydro Model - -The Exp-Hydro model, originally developed by Patil and Stieglitz (2014) and re-implemented by Jiang et al. (2020), is a parsimonious hydrologic bucket-type model designed for daily runoff prediction. It comprises two state variables (snow pack and soil water storage) and simulates five hydrological processes: rain, snow, evaporation, transpiration, and discharge. The model's structure includes five mechanistic processes with process-specific driving forces, model states, and parameters. Despite its simplicity, the Exp-Hydro model has demonstrated excellent performance on the CAMELS dataset in the United States. This performance, coupled with its straightforward structure, makes it an ideal candidate for integration with machine learning techniques. - -Building upon the Exp-Hydro framework, several enhanced models have been developed to improve predictive performance by incorporating Physics-Informed Neural Networks (PINN): - -- M50: Replaces the original formulas for actual evaporation and runoff with two feed-forward neural networks (NNet and NNq). -- M100: An extension of the M50 model with further neural network integrations. -- PRNN (Process-based Recurrent Neural Network): Combines recurrent neural networks with the Exp-Hydro structure. -- ENN (Embedded Neural Network): Embeds neural networks within the Exp-Hydro framework to enhance specific process representations. - -These neural network embedding models demonstrate the flexibility of the Exp-Hydro structure and its potential for integration with machine learning techniques to improve hydrological predictions. To illustrate how HydroModels.jl can be used to construct the Exp-Hydro model and transform it into the M50 model, we have created a comprehensive diagram. Figure 1 provides a clear depiction of this process, showcasing the framework's capabilities in implementing and enhancing hydrological models. - -#figure( - image("picture/models/ENNx.png", width: 100%), - caption: [ - Diagram illustrating the implementation of the Exp-Hydro model and its neural network-enhanced version (M50) using HydroModels.jl. Subpanel (a) showcases the original Exp-Hydro model structure along with its computational formulas, detailing various hydrological processes. Subpanel (b) demonstrates how these structures and formulas are translated into code within the HydroModels.jl framework. Subpanel (c) highlights the improvements made in the M50 model compared to the original Exp-Hydro, particularly focusing on the integration of neural networks. Finally, subpanel (d) illustrates how these enhancements are implemented within the HydroModels.jl framework, showcasing the seamless integration of traditional hydrological modeling with machine learning techniques. - ] -) - -Figure 1 demonstrates HydroModels.jl's ability to translate hydrological formulas into code structures and seamlessly integrate neural networks into existing models. The implementation process in HydroModels.jl involves several key steps: - -1. Defining Symbolic Variables: The framework begins by defining symbolic variables for fluxes, using these to construct Flux instances based on calculation formulas. Each Flux instance is provided with input, output, and parameter symbolic variables, along with a calculation formula expressed in terms of these variables. (An example of this will be provided later to illustrate this process.) - -2. Neural Network Integration: For neural network embedding, the framework similarly defines symbolic variables for the Flux inputs and outputs. Neural networks are constructed using Lux.jl, named, and then input as parameters to the Flux instances. - -3. State variable equation: The framework constructs StateFlux instances for each computational module based on the incoming and outgoing fluxes. These StateFlux instances represent the state variables of the module and define the mass balance equations, thereby expressing the system dynamics within each bucket component. - -4. Model Assembly: Finally, the framework assembles the balance modules into bucket elements and integrates these to form complete models such as the original Exp-Hydro and the enhanced M50 model. - -To evaluate the performance and efficiency of our Exp-Hydro and M50 model implementations, we utilized the CAMELS (Catchment Attributes and Meteorology for Large-sample Studies) dataset for validation. This comprehensive dataset provides a wealth of hydrological and meteorological data for 671 watersheds spanning the continental United States. It offers daily measurements of crucial variables such as streamflow, photoperiod, temperature, and precipitation. The dataset's forcing variables are sourced from the high-resolution Daymet dataset, which has consistently demonstrated excellent performance across various modeling scenarios. - -To further evaluate the performance and efficiency of our framework, we conducted a comparative analysis using different implementation approaches. We randomly selected 10 catchments from the CAMELS dataset and simulated them using ExpHydro and M50, with four different methods: our HydroModels.jl framework, a custom Julia implementation, JAX, and PyTorch. The results of this comparison are presented in Figure 2, which illustrates both the average simulation accuracy and computational efficiency for each method. - -// #figure( -// image("picture/results/framework_comparison.png", width: 100%), -// caption: [ -// Comparison of simulation accuracy and computational efficiency across different implementation methods. The bar chart shows the average Nash-Sutcliffe Efficiency (NSE) for 10 randomly selected CAMELS catchments (left axis), while the line graph represents the average computation time per simulation year (right axis) for each method. -// ] -// ) - -As shown in Figure 2, our HydroModels.jl framework demonstrates competitive performance in terms of both accuracy and efficiency. The average Nash-Sutcliffe Efficiency (NSE) for the HydroModels.jl implementation is comparable to that of the custom Julia implementation and slightly higher than the JAX and PyTorch implementations. This suggests that our framework maintains the high level of accuracy achievable with Julia while providing the added benefits of a structured modeling environment. - -In terms of computational efficiency, HydroModels.jl demonstrates performance comparable to the custom Julia implementation. The average computation time per simulation year for HydroModels.jl is similar to that of the custom Julia code, while being substantially faster than both JAX and PyTorch implementations. This efficiency can be attributed to the structured nature of our framework and its effective utilization of Julia's inherent performance capabilities, allowing it to maintain the high computational speed characteristic of Julia. - -These results highlight the strengths of HydroModels.jl in balancing accuracy and computational efficiency. The framework not only maintains the high performance characteristics of Julia but also provides a structured, flexible environment for hydrological modeling that can compete with, and in some cases outperform, other popular scientific computing frameworks. - -== Distributed Model: Application in neural network-based spatial hydrological modeling - -The framework's capabilities extend beyond lumped models to support distributed hydrological modeling, demonstrating its versatility in handling complex spatial computations. This section explores the application of HydroModels.jl in constructing hybrid models that integrate neural networks with distributed hydrological models, using the upper Hanjiang River basin as a case study. - -=== Case Study: Upper Hanjiang River Basin - -The upper Hanjiang River basin, located in central China, is characterized by complex topography and diverse land cover. Figure X illustrates the basin's discretization into both sub-basins for the semi-distributed approach and grid cells for the fully distributed model, highlighting the spatial heterogeneity considered in our modeling efforts. - -// #figure( -// image("path/to/hanjiang_basin_discretization.png", width: 100%), -// caption: [ -// Spatial discretization of the upper Hanjiang River basin. (a) Sub-basin delineation for the semi-distributed model. (b) Grid-based discretization for the fully distributed model. -// ] -// ) - -=== Model Construction Using HydroModels.jl - -The construction of multi-node, semi-distributed, and fully distributed hydrological models within our framework involves several key steps, leveraging the flexibility and modularity of HydroModels.jl: - -1. Runoff Generation Module: - We begin by adapting the GR4J model structure, focusing on the runoff generation components while excluding the unit hydrograph calculations. This modified GR4J serves as the base for our spatial models, ensuring consistent process representation across different spatial scales. Further, we replace the original percolation calculation formula in GR4J with a neural network. This neural network takes soil moisture as input and predicts the percolation rate, allowing for a more data-driven representation of this complex process. - -2. Routing Modules: - The framework's versatility is demonstrated through the implementation of different routing schemes for each model type: - - a. Multi-node Model: We utilize the original GR4J unit hydrograph module for each node, combined with a WeightSumRoute to aggregate outputs at the basin outlet. - - b. Semi-distributed Model: Based on the sub-basin delineation, we construct a directed graph representing the basin's connectivity. A VectorRoute method is implemented using the Muskingum routing algorithm to describe inter-sub-basin flow relationships. - - c. Fully Distributed Model: Leveraging the grid-based discretization, we compute flow directions using DEM data to generate a D8 flow direction matrix. This informs the GridRoute method, which employs the HD (hydrodynamic) routing approach to simulate water movement between grid cells. - -Figure 3 showcases the simulation results for the upper Hanjiang River basin using semi-distributed and fully distributed versions of the GR4J model implemented with HydroModels.jl. - -// #figure( -// image("path/to/hanjiang_simulation_results.png", width: 100%), -// caption: [ -// Comparison of observed and simulated streamflow for the upper Hanjiang River basin using semi-distributed and fully distributed GR4J models. (a) Time series of observed and simulated daily streamflow. (b) Scatter plot of observed vs. simulated streamflow. (c) Performance metrics for both model versions. -// ] -// ) - -As shown in Figure 3, both the semi-distributed and fully distributed models achieve high accuracy in simulating the streamflow of the upper Hanjiang River basin. The fully distributed model demonstrates slightly higher performance, with a Nash-Sutcliffe Efficiency (NSE) of 0.85 compared to 0.82 for the semi-distributed model. This marginal improvement in accuracy comes at the cost of increased computational complexity, as illustrated in Figure 4. - -// #figure( -// image("path/to/computational_efficiency.png", width: 100%), -// caption: [ -// Computational efficiency comparison between semi-distributed and fully distributed GR4J models implemented with HydroModels.jl. (a) Average simulation time per year. (b) Memory usage during simulation. -// ] -// ) - -Figure 4 illustrates the computational efficiency of both the semi-distributed and fully distributed models implemented using HydroModels.jl. The framework demonstrates high performance in executing these complex hydrological models. For instance, the semi-distributed model completes a one-year simulation in approximately 0.5 seconds, while the more intricate fully distributed model requires about 1.25 seconds. Memory usage is also efficiently managed, with the semi-distributed and fully distributed models utilizing around 100 MB and 300 MB respectively. - -== Model Evaluation and Optimization - -The optimization process for our hydrological models consists of three sequential stages: traditional parameter calibration, neural network pre-training, and integrated gradient-based optimization. - -In the first stage, we employ black-box optimization techniques (Differential Evolution algorithm) to calibrate the parameters of the traditional hydrological model components. This involves optimizing parameters such as soil water capacity and routing coefficients to minimize the difference between simulated and observed streamflow. The black-box approach is particularly suitable for this stage as these parameters have clear physical meanings and constraints. - -The second stage focuses on pre-training the neural networks that will enhance specific hydrological processes. Using the calibrated traditional model, we generate intermediate states (such as soil moisture content) and fluxes (such as percolation rates) as training data. These data are used to pre-train neural networks to learn the relationships between states and fluxes, providing a data-driven representation of complex hydrological processes while maintaining physical consistency. - -In the final stage, we employ gradient-based optimization for both lumped and distributed models enhanced with neural networks. For the lumped model, this involves fine-tuning both the traditional parameters and neural network weights simultaneously using automatic differentiation capabilities provided by HydroModels.jl. The distributed model optimization follows a similar approach but operates across multiple spatial units, with parameters varying according to soil types and land use categories. - -Figure X illustrates the optimization trajectory across these stages. The loss curves show rapid initial convergence during the black-box optimization phase, followed by further improvements during neural network pre-training. The final gradient-based optimization stage demonstrates the most efficient convergence, particularly for the distributed model where parallel computing capabilities are leveraged. The overall optimization process achieves high computational efficiency, with the complete calibration sequence typically completing within hours on standard hardware. - -The effectiveness of this three-stage optimization approach is evident in the final model performance. The neural network-enhanced models consistently outperform their traditional counterparts, with Nash-Sutcliffe Efficiency (NSE) improvements of 0.05-0.10 across both lumped and distributed configurations. This improvement is particularly notable during extreme events, where the enhanced process representations provided by the neural networks contribute to more accurate predictions. - -= Discussion - -A user-friendly and logically structured model development framework can empower professionals to leverage their expertise in creating unique and superior models. Much like how deep learning frameworks such as PyTorch and TensorFlow have supported the flourishing of deep learning research, the development of hydrological models similarly requires an efficient, flexible, and accessible development framework. This section will discuss the characteristics of the HydroModels.jl framework, evaluating its flexibility, efficiency, and other key features. - -== Framework Features - -1. Ease of Use: - HydroModels.jl is designed to provide reliable support for both hydrological model application and development. For those seeking to apply hydrological models for forecasting, users can directly utilize the mature hydrological models provided within the framework. Model inputs can be read from common file formats such as txt or csv, and constructed as NamedTuple types, eliminating the need for additional input file integration. For model development needs, users can build hydrological fluxes, modules, and models by constructing components from Flux to Element to Unit, following a rigorous and logical name-driven construction approach. For model modification requirements, users can employ update, add, and remove methods to alter Flux calculation formulas or element input-output water balances. After completing model simulations, users obtain results in NamedTuple format, including all intermediate calculation fluxes within the hydrological model, without the need for additional function calls. - -2. Flexibility: - The framework's flexibility is foundational to the versatile application and development of hydrological models. The design of structures such as Flux, Element, and Unit allows users to quickly and freely construct new hydrological models based on calculation formulas. This flexibility is underpinned by the use of NamedTuples for storing and calling intermediate calculation results of hydrological fluxes. As long as input and output fluxes match, models can be flexibly combined to construct various types of hydrological models. However, there is a trade-off between flexibility and computational efficiency. To address this, the framework employs anonymous construction methods to generate ODE calculation functions during model building, avoiding the storage and retrieval of intermediate calculation results and maintaining excellent computational performance while ensuring flexibility. - -3. Reusability: - The field of hydrological modeling has produced numerous mature and widely applied models, including calculation formulas and modules for various hydrological processes. HydroModels.jl facilitates the reuse of these classic model components, allowing users to combine calculation formulas and modules from different models, opening up infinite possibilities for hydrological forecasting. The framework's design, inspired by MARRMoT, constructs calculation formulas according to different flux types, enabling users to call these formulas based on input, output, and parameter names (leveraging Julia's multiple dispatch feature). - -4. Decoupling: - HydroModels.jl decouples model construction from parameter setting. Unlike some frameworks where model construction requires simultaneous specification of parameter values, HydroModels.jl separates these processes. Model parameters are provided as inputs alongside data during model simulation. This design philosophy simplifies the model construction process, supports model reusability, and avoids repetitive model building during parameter calibration, thereby improving calibration efficiency. - -5. Differentiability: - The framework supports differentiable programming, enabling the use of gradient-based optimization methods and the development of physics-informed neural networks (PINNs) for hydrological modeling. - -6. Integration with Modern Algorithms: - HydroModels.jl leverages the SciML ecosystem, particularly packages like Lux.jl, DifferentialEquations.jl, and Optimization.jl. This integration allows the framework to utilize mature ecosystems and efficient solvers for PINN model development, runoff simulation, and parameter calibration. - -== Framework Limitations and Future Development - -1. Extension to Distributed Models: - While currently focused on lumped models, future development will consider spatial computations based on HydroModels.jl. This expansion will enable the construction of semi-distributed and distributed hydrological models, implementing multi-model optimization for nodes in dPL-HBV, river-network, and dPL-distributed models. Large-scale distributed hydrological models often involve parallelization and GPU acceleration techniques to enhance simulation efficiency. Future work will explore how to fully utilize Julia's computational performance, including the use of StructArrays.jl, GPU acceleration, and metaprogramming. - -2. Enhanced Element Reusability: - To facilitate the combination of calculation modules from different models, future work may focus on developing a unified model template that constrains the input and output fluxes of various module types. This standardization would support the integration of computational modules from different models, enhancing the framework's flexibility and reusability. - -3. Graphical Programming Interface: - To provide a more convenient user experience for hydrological forecasting practitioners and researchers, future development may include a graphical user interface. This interface would allow users to construct fluxes by inputting formulas and build elements and units through topological connections, saving and applying these constructions to simulation and calibration work with minimal coding required. - -In conclusion, HydroModels.jl offers a powerful and flexible framework for hydrological modeling, addressing many of the challenges faced by researchers and practitioners in the field. Its modular design, integration of traditional and machine learning approaches, and efficient computational strategies position it as a valuable tool for advancing hydrological science. Future developments will further enhance its capabilities, particularly in distributed modeling and user accessibility, ensuring its continued relevance in addressing complex water resource challenges in an era of environmental change. - - -= Appendix - -== build_ele_func - -1. Variable Preparation: - - Collects variables from all input functions (funcs and dfuncs). - - Converts these variables to symbols and creates a named tuple. - -2. Function Parameter Construction: - - Extracts input, state, and parameter variables from the prepared variables. - - Collects neural network parameters (if present). - -3. Assignment and Output List Construction: - - Iterates through each input function, handling both regular and neural fluxes. - - For neural fluxes, it matches inputs to neural network inputs and outputs to calculation results. - - For regular fluxes, it matches output variables to their corresponding expressions. - - Builds a comprehensive list of assignments and outputs. - -4. Function Generation: - - Constructs argument lists for both flux and state functions. - - Uses `@RuntimeGeneratedFunction` to create efficient, dynamically generated functions. - - For flux functions, it combines all flux outputs into a single vector function. - - For state functions (if present), it creates a separate function for differential equations. - -5. Output: - - Returns two functions: a merged flux function and a merged state function (if applicable). diff --git a/doc/reference/RAPID_Parallel_Computing.pdf b/doc/reference/RAPID_Parallel_Computing.pdf deleted file mode 100644 index 5815cdb..0000000 Binary files a/doc/reference/RAPID_Parallel_Computing.pdf and /dev/null differ diff --git a/doc/reference/RAPID_how_it_works.pdf b/doc/reference/RAPID_how_it_works.pdf deleted file mode 100644 index cbfc41c..0000000 Binary files a/doc/reference/RAPID_how_it_works.pdf and /dev/null differ diff --git a/doc/reference/rapid.jl b/doc/reference/rapid.jl deleted file mode 100644 index 76b320b..0000000 --- a/doc/reference/rapid.jl +++ /dev/null @@ -1,108 +0,0 @@ - -""" - VectorRoute <: AbstractVectorRoute - -A structure representing a vector-based routing scheme for hydrological modeling. - -# Fields -- `rfunc::AbstractVector{<:AbstractRouteFlux}`: Vector of routing flux functions for each node. -- `network::DiGraph`: A directed graph representing the routing network topology. -- `infos::NamedTuple`: Contains information about the VectorRoute instance, including input, output, state, and parameter names. - -# Constructor - VectorRoute( - name::Symbol; - rfunc::AbstractRouteFlux, - network::DiGraph - ) - -Constructs a `VectorRoute` object with the given name, routing flux function, and network structure. - -# Arguments -- `name::Symbol`: A symbol representing the name of the routing scheme. -- `rfunc::AbstractRouteFlux`: The routing flux function to be applied at each node. -- `network::DiGraph`: A directed graph representing the routing network topology. - -The constructor extracts variable names, parameter names, and neural network names from the provided -routing flux function to set up the internal information structure of the `VectorRoute` object. - -Note: 来源于Rapid汇流模型 -""" -struct RapidRoute <: AbstractRapidRoute - "Routing adjacency matrix" - adjacency::AbstractMatrix - "grid subarea information, km2" - subareas::AbstractVector - "Metadata: contains keys for input, output, param, state, and nn" - meta::HydroMeta - - function RapidRoute(; - network::DiGraph, - subareas::Union{AbstractVector,Number}, - name::Union{Symbol,Nothing}=nothing, - ) - #* Extract all variable names of funcs and dfuncs - input_names, output_names, state_names = get_var_names(rfunc) - #* Extract all parameters names of funcs and dfuncs - param_names = get_param_names(rfunc) - #* Extract all neuralnetwork names of the funcs - nn_names = get_nn_names(rfunc) - #* Setup the name information of the hydrobucket - route_name = name === nothing ? Symbol(Symbol(reduce((x, y) -> Symbol(x, y), input_names)), :_vector_route) : name - meta = HydroMeta(name=route_name, inputs=input_names, outputs=output_names, states=state_names, params=param_names, nns=nn_names) - #* generate adjacency matrix from network - adjacency = adjacency_matrix(network)' - #* Convert subareas to a vector if it's a single value - subareas = subareas isa AbstractVector ? subareas : fill(subareas, nv(network)) - @assert length(subareas) == nv(network) "The length of subareas must be the same as the number of nodes, but got subareas: $(length(subareas)) and nodes: $(nv(network))" - return new( - adjacency, - subareas, - meta, - ) - end -end - -function (route::RapidRoute)( - input::Array, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) - ptypes = get(config, :ptypes, collect(keys(pas[:params]))) - interp = get(config, :interp, LinearInterpolation) - timeidx = get(config, :timeidx, collect(1:size(input, 3))) - delta_t = get(config, :delta_t, 1.0) - solver = DiscreteSolver(alg=FunctionMap{true}()) - - @assert all(ptype in keys(pas[:params]) for ptype in ptypes) "Missing required parameters. Expected all of $(keys(pas[:params])), but got $(ptypes)." - - #* var num * node num * ts len - #* 计算出每个node结果的插值函数 - input_mat = input[1, :, :] - itp_funcs = interp.(eachslice(input_mat, dims=1), Ref(timeidx), extrapolate=true) - - #* 计算出每个节点的面积转换系数 - area_coeffs = @. 24 * 3600 / (route.subareas * 1e6) * 1e3 - - #* prepare the parameters for the routing function - #* 参数可能存在转换需求,其中包括A通常是固定值 - k_ps = [pas[:params][ptype][:k] for ptype in ptypes] - x_ps = [pas[:params][ptype][:x] for ptype in ptypes] - c0 = @. ((delta_t / k_ps) - (2 * x_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - c1 = @. ((delta_t / k_ps) + (2 * x_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - c2 = @. ((2 * (1 - x_ps)) - (delta_t / k_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - A = (p) -> Matrix(I, size(route.adjacency)...) .- diagm(p.c0) * route.adjacency - - function route_ode!(du, u, p, t) - q_gen = [itp_func(t) for itp_func in itp_funcs] .* area_coeffs - #* Ax = b, x is the q_out(t+1) - rflux_b = p.c0 * q_gen + p.c1 * (route.adjacency * q_out_t1 + q_gen) + p.c2 * q_out_t1 - #* solve the linear equation (simple solve by matrix inversion) - du[:] = A(p) \ (rflux_b .- A(p) * u) - end - - #* solve the ode - sol_arr = solver(route_ode!, ComponentVector(c0=c0, c1=c1, c2=c2), zeros(size(input_mat)[1]), timeidx, convert_to_array=true) - return reshape(sol_arr, 1, size(sol_arr)...) -end \ No newline at end of file diff --git a/doc/reference/rflux.jl b/doc/reference/rflux.jl deleted file mode 100644 index ec0cb63..0000000 --- a/doc/reference/rflux.jl +++ /dev/null @@ -1,144 +0,0 @@ -struct DynamicRouteFlux{rtype} <: AbstractDynamicRouteFlux - "A map of input names (Symbol) and its variables (Num)" - inputs::Vector{Num} - "A map of output names (Symbol) and its variables (Num)" - outputs::Vector{Num} - "A map of parameters names (Symbol) and its variables (Num)" - params::Vector{Num} - "bucket information: keys contains: input, output, param, state" - meta::HydroMeta - - function DynamicRouteFlux( - input::Num, - params::Vector{Num}; - routetype::Symbol, - output::Union{Num,Nothing}=nothing, - ) - input_name = Symbolics.tosymbol(input, escape=false) - param_names = isempty(params) ? Symbol[] : Symbolics.tosymbol.(params, escape=false) - - if isnothing(output) - output_name = Symbol(input_name, :_routed) - output = first(@variables $output_name) - else - output_name = Symbolics.tosymbol(output, escape=false) - end - #* Setup the name information of the hydroroutement - meta = HydroMeta(inputs=[input_name], outputs=[output_name], params=param_names, name=Symbol(output_name, :_route_flux)) - - return new{routetype}( - [input], [output], - params, - meta - ) - end -end - -function MuskingumRouteFlux(input::Num, output::Union{Num,Nothing}=nothing) - @parameters k x - - if isnothing(output) - input_name = Symbolics.tosymbol(input, escape=false) - output_name = Symbol(input_name, :_routed) - output = first(@variables $output_name) - end - - return DynamicRouteFlux(input, [k, x]; routetype=:muskingum, output=output) -end - - -function get_rflux_func(::DynamicRouteFlux{:muskingum}; adjacency::AbstractMatrix, kwargs...) - - function rflux_func(q_out_t1, q_gen, p) - c0, c1, c2 = p.c0, p.c1, p.c2 - b = c0 * q_gen + c1 * (adjacency * q_out_t1 + q_gen) + c2 * q_out_t1 - return b - end - - return rflux_func -end -""" - get_rflux_initstates(::AbstractRouteFlux; input::AbstractMatrix, pas::ComponentVector, ptypes::AbstractVector{Symbol}, stypes::AbstractVector{Symbol}) - -Get the initial states for a route flux model. - -This function is designed to accommodate different subclasses of `AbstractRouteFlux` that may have varying methods of constructing initial states. It provides a flexible interface for generating initial state vectors based on input data, parameters, parameter types, and state types. - -# Arguments -- `::AbstractRouteFlux`: The route flux model instance. -- `input::AbstractMatrix`: Input data matrix, typically representing time series of hydrological variables. -- `pas::ComponentVector`: A component vector containing parameter values. -- `ptypes::AbstractVector{Symbol}`: A vector of symbols representing parameter types. -- `stypes::AbstractVector{Symbol}`: A vector of symbols representing state types. - -# Returns -A vector representing the initial states for the route flux model. - -# Notes -- This function must be implemented by subtypes of `AbstractRouteFlux` to provide specific initialization logic for each routing method. -- The function allows for flexibility in how initial states are constructed, which can vary depending on the specific requirements of each routing method. -- By taking input data, parameters, and type information as arguments, the function can create initial states that are appropriately tailored to the specific model configuration and data characteristics. - -""" -function get_rflux_parameters(::DynamicRouteFlux{:muskingum}; pas::ComponentVector, ptypes::AbstractVector{Symbol}, delta_t::Number, adjacency::AbstractMatrix, kwargs...) - k_ps = [pas[:params][ptype][:k] for ptype in ptypes] - x_ps = [pas[:params][ptype][:x] for ptype in ptypes] - c0 = @. ((delta_t / k_ps) - (2 * x_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - c1 = @. ((delta_t / k_ps) + (2 * x_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - c2 = @. ((2 * (1 - x_ps)) - (delta_t / k_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - A = Matrix(I, size(adjacency)...) .- diagm(c0) * adjacency - return ComponentVector(c0=diagm(c0), c1=diagm(c1), c2=diagm(c2), A=A) -end - -""" - (flux::AbstractRouteFlux)(input::Union{Vector,Matrix,Array}, pas::ComponentVector; ptypes::AbstractVector{Symbol}=Symbol[], kwargs...) - -Apply the route flux model to input data of various dimensions. - -# Arguments -- `input`: Input data, which can be: - - `Vector`: A vector of input values for a single time step. - - `Matrix`: A matrix of input values, where each column represents a different time step. - - `Array`: A 3D array of input values, with dimensions (var_names, node_names, ts_len). -- `pas::ComponentVector`: A component vector containing parameter values. -- `ptypes::AbstractVector{Symbol}`: A vector of symbols representing parameter categories (only used for `Array` input). -- `kwargs...`: Additional keyword arguments (unused in this function), provided for compatibility with the component callable function API. - -# Returns -This function does not actually return a value, as route flux models are abstract and cannot be run directly. - -# Notes -- Route flux models are abstract and cannot be run directly. Attempting to do so will throw an error. -- Specific implementations of route flux models (subtypes of AbstractRouteFlux) should provide their own implementations of this function. -- Route flux models are typically used to represent water routing processes in hydrological systems. -""" -(::AbstractRouteFlux)(::Vector, ::ComponentVector; kwargs...) = @error "Abstract RouteFlux is not support for single timepoint" -(::AbstractRouteFlux)(input::Matrix, pas::ComponentVector; kwargs...) = @error "Must be implemented by subtype" -(::AbstractRouteFlux)(input::Array, pas::ComponentVector; kwargs...) = @error "Must be implemented with the Route type" - - -function (flux::DynamicRouteFlux{:muskingum})(input::Matrix, pas::ComponentVector; kwargs...) - timeidx = get(kwargs, :timeidx, collect(1:size(input)[2])) - delta_t = get(kwargs, :delta_t, 1.0) - solver = get(kwargs, :solver, DiscreteSolver(alg=FunctionMap{true}())) - input_itp = LinearInterpolation(input[1, :], timeidx .* delta_t) - k, x = pas[:params] - c0 = ((delta_t / k) - (2 * x)) / ((2 * (1 - x)) + (delta_t / k)) - c1 = ((delta_t / k) + (2 * x)) / ((2 * (1 - x)) + (delta_t / k)) - c2 = ((2 * (1 - x)) - (delta_t / k)) / ((2 * (1 - x)) + (delta_t / k)) - msk_params = ComponentVector(c0=c0, c1=c1, c2=c2) - - function msk_func!(du, u, p, t) - c0, c1, c2 = p - q_in_t1, q_out_t1 = u[1], u[2] - q_in_t2 = input_itp(t) - q_out_t2 = @. (c0 * q_in_t2) + (c1 * q_in_t1) + (c2 * q_out_t1) - du[1] = q_in_t2 - q_in_t1 - du[2] = q_out_t2 - q_out_t1 - end - - init_states = [input[1, 1], input[1, 1]] - sol_arr = solver(msk_func!, msk_params, init_states, timeidx) - q_out_t2_vec = sol_arr[2, :] - q_out_t2_vec -end \ No newline at end of file diff --git a/doc/reference/route.jl b/doc/reference/route.jl deleted file mode 100644 index f1ea216..0000000 --- a/doc/reference/route.jl +++ /dev/null @@ -1,440 +0,0 @@ -""" - WeightSumRoute <: AbstractRouteFlux - -Represents a weighted cumulative sum routing structure for hydrological modeling. - -# Fields -- `infos::NamedTuple`: A named tuple containing routing information with keys: - - `name::Symbol`: The name of the routing component. - - `input::Symbol`: The symbol representing the input variable. - - `output::Symbol`: The symbol representing the output variable. - - `param::Symbol`: The symbol representing the weight parameter. - -# Constructor - WeightSumRoute( - name::Symbol; - input::Num, - output::Num, - param::Num - ) - -Constructs a WeightSumRoute instance. - -# Arguments -- `name::Symbol`: The name of the routing component. -- `input::Num`: The input variable. -- `output::Num`: The output variable. -- `param::Num`: The weight parameter. - -# Description -WeightSumRoute applies a weighted cumulative sum operation to the input, -where the weights are specified by the `param` parameter. This routing method -is useful for scenarios where the contribution of each input node needs to be -weighted differently in the cumulative output. -""" -struct DirectRoute <: AbstractDirectRoute - rfunc::AbstractFlux - nodeids::Vector{Symbol} - outlet::Symbol - "Metadata: contains keys for input, output, param, state, and nn" - meta::HydroMeta - # "output identifier" - #= - This part doesn't need to add an output id, because the matrix cannot be directly modified, - so this part is all one value, representing the output result at the output id - =# - # outid::Symbol - - function DirectRoute(; - rfunc::AbstractFlux, - nodeids::Vector{Symbol}, - outlet::Symbol, - name::Union{Symbol,Nothing}=nothing - ) - #* Extract all variable names of funcs and dfuncs - input_names, output_names = get_var_names(rfunc) - #* Extract all parameters names of funcs and dfuncs - param_names = get_param_names(rfunc) - #* Extract all neuralnetwork names of the funcs - nn_names = get_nn_names(rfunc) - #* Setup the name information of the hydrobucket - route_name = name === nothing ? Symbol(Symbol(reduce((x, y) -> Symbol(x, y), output_names)), :_direct_route) : name - meta = HydroMeta(name=route_name, inputs=input_names, outputs=output_names, states=Symbol[], params=param_names, nns=nn_names) - - return new( - rfunc, - nodeids, - outlet, - meta, - ) - end -end - -function (route::DirectRoute)( - input::AbstractArray, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) - ptypes = get(config, :ptypes, collect(keys(pas[:params]))) - #* 计算出每个节点的面积转换系数 - # area_coefs = @. 24 * 3600 / (route.subareas * 1e6) * 1e3 - rfunc_output = route.rfunc(input, pas, ptypes=ptypes) - weight_params = [pas[:params][ptype][:route_weight] for ptype in ptypes] - weight_result = sum(rfunc_output[1, :, :] .* weight_params, dims=1) - # expand dims - output_arr = repeat(weight_result, outer=(size(input)[1], 1)) - reshape(output_arr, 1, size(output_arr)...) -end - -""" - GridRoute(name::Symbol; rfunc::AbstractRouteFlux, flwdir::AbstractMatrix, positions::AbstractVector) - -Represents a grid-based routing structure for hydrological modeling. - -# Arguments -- `name::Symbol`: A symbol representing the name of the GridRoute instance. -- `rfunc::AbstractRouteFlux`: The routing function used for flow calculations. -- `flwdir::AbstractMatrix`: A matrix representing the flow direction for each grid cell. -- `positions::AbstractVector`: A vector of positions for each node in the grid. - -# Fields -- `rfunc::AbstractRouteFlux`: The routing function used for flow calculations. -- `flwdir::AbstractMatrix`: A matrix representing the flow direction for each grid cell. -- `positions::AbstractVector`: A vector of positions for each node in the grid. -- `infos::NamedTuple`: Contains information about the GridRoute instance, including input, output, state, and parameter names. - -# Description -GridRoute is a structure that represents a grid-based routing system in a hydrological model. -It uses a specified routing function (`rfunc`) to calculate flow between grid cells based on -the provided flow direction matrix (`flwdir`) and node positions (`positions`). - -The `infos` field stores metadata about the GridRoute instance, including names of inputs, -outputs, states, parameters, and neural networks (if applicable) derived from the routing function. - -This structure is particularly useful for modeling water flow across a landscape represented as a grid, -where each cell has a specific flow direction and contributes to downstream flow. -""" -struct HydroRoute <: AbstractHydroRoute - "Routing function" - rfunc::AbstractHydroFlux - "Outflow projection function" - projfunc::Function - "node index" - nodeids::Vector{Symbol} - "Metadata: contains keys for input, output, param, state, and nn" - meta::HydroMeta - - function HydroRoute(; - rfunc::AbstractHydroFlux, - rstate::Num, - projfunc::Function, - nodeids::Vector{Symbol}, - name::Union{Symbol,Nothing}=nothing, - ) - #* Extract all variable names of funcs and dfuncs - input_names, output_names = get_var_names(rfunc) - state_name = Symbolics.tosymbol(rstate) - input_names = setdiff(input_names, [state_name]) - #* Extract all parameters names of funcs and dfuncs - param_names = get_param_names(rfunc) - #* Extract all neuralnetwork names of the funcs - nn_names = get_nn_names(rfunc) - #* Setup the name information of the hydrobucket - route_name = name === nothing ? Symbol(Symbol(reduce((x, y) -> Symbol(x, y), input_names)), :_grid_route) : name - meta = HydroMeta(route_name, input_names, output_names, param_names, [state_name], nn_names) - - return new( - rfunc, - projfunc, - nodeids, - meta, - ) - end -end - -function GridRoute(; - rfunc::AbstractHydroFlux, - rstate::Num, - flwdir::AbstractMatrix, - positions::AbstractVector, - nodeids::Vector{Symbol}, - name::Union{Symbol,Nothing}=nothing, -) - d8_codes = [1, 2, 4, 8, 16, 32, 64, 128] - d8_nn_pads = [(1, 1, 2, 0), (2, 0, 2, 0), (2, 0, 1, 1), (2, 0, 0, 2), (1, 1, 0, 2), (0, 2, 0, 2), (0, 2, 1, 1), (0, 2, 2, 0),] - - """ - input dims: node_num * ts_len - """ - function grid_routing(input::AbstractVector, positions::AbstractVector, flwdir::AbstractMatrix) - #* 转换为input的稀疏矩阵 - input_arr = Array(sparse([pos[1] for pos in positions], [pos[2] for pos in positions], input, size(flwdir)[1], size(flwdir)[2])) - #* 计算权重求和结果 - input_routed = sum(collect([pad_zeros(input_arr .* (flwdir .== code), arg) for (code, arg) in zip(d8_codes, d8_nn_pads)])) - #* 裁剪输入矩阵边框 - clip_arr = input_routed[2:size(input_arr)[1]+1, 2:size(input_arr)[2]+1] - #* 将输入矩阵转换为向量 - collect([clip_arr[pos[1], pos[2]] for pos in positions]) - end - @assert length(positions) == length(nodeids) "The length of positions must be the same as the length of nodeids, but got positions: $(length(positions)) and nodeids: $(length(nodeids))" - #* build the outflow projection function - projfunc = (outflow) -> grid_routing(outflow, positions, flwdir) - return HydroRoute(; rfunc, rstate, projfunc, nodeids, name) -end - -""" -convert the flow direction matrix to a directed graph, and then calculate the outflow projection function -""" -function GridRouteV2(; - rfunc::AbstractHydroFlux, - rstate::Num, - flwdir::AbstractMatrix, - positions::AbstractVector, - nodeids::Vector{Symbol}, - name::Union{Symbol,Nothing}=nothing, -) - network = build_grid_digraph(flwdir, positions) - @assert length(positions) == length(nodeids) "The length of positions must be the same as the length of nodeids, but got positions: $(length(positions)) and nodeids: $(length(nodeids))" - #* build the outflow projection function - adjacency = adjacency_matrix(network)' - projfunc = (outflow) -> adjacency * outflow - return HydroRoute(; rfunc, rstate, projfunc, nodeids, name) -end - -function VectorRoute(; - rfunc::AbstractHydroFlux, - rstate::Num, - network::DiGraph, - nodeids::Vector{Symbol}, - name::Union{Symbol,Nothing}=nothing, -) - @assert length(nodeids) == nv(network) "The length of nodeids must be the same as the number of nodes, but got nodeids: $(length(nodeids)) and nodes: $(nv(network))" - #* generate adjacency matrix from network - adjacency = adjacency_matrix(network)' - #* build the outflow projection function - projfunc = (outflow) -> adjacency * outflow - return HydroRoute(; rfunc, rstate, projfunc, nodeids, name) -end - -function (route::HydroRoute)( - input::Array, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) - #* get the parameter types and state types - ptypes = get(config, :ptypes, collect(keys(pas[:params]))) - stypes = get(config, :stypes, collect(keys(pas[:initstates]))) - #* get the interpolation type and solver type - interp = get(config, :interp, LinearInterpolation) - solver = get(config, :solver, ODESolver()) - #* get the time index - timeidx = get(config, :timeidx, collect(1:size(input, 3))) - - #* check the length of ptypes, stypes - @assert length(ptypes) == length(stypes) == size(input, 2) "The length of ptypes and stypes must be the same as the number of nodes, but got ptypes is $(length(ptypes)) and stypes is $(length(stypes))" - @assert all(ptype in keys(pas[:params]) for ptype in ptypes) "Missing required parameters. Expected all of $(keys(pas[:params])), but got ptypes is $(length(ptypes))." - @assert all(stype in keys(pas[:initstates]) for stype in stypes) "Missing required initial states. Expected all of $(keys(pas[:initstates])), but got stypes is $(length(stypes))." - - #* Extract the idx range of each variable in params, - #* this extraction method is significantly more efficient than extracting by name - #* Construct a function for the ode_func input variable. Because of the difference in t, the ode_func input is not fixed. - #* The input format is the input variable plus the intermediate state, which is consistent with the input of ode_func - if route.rfunc isa AbstractNeuralFlux - nn_params_idx = [getaxes(pas[:nn])[1][nm].idx for nm in get_nn_names(route.rfunc)] - param_func = (p) -> Ref([p[:nn][idx] for idx in nn_params_idx]) - else - rflux_params_idx = [getaxes(pas[:params][ptypes[1]])[1][nm].idx for nm in get_param_names(route.rfunc)] - param_func = (p) -> [p[:params][ptype][rflux_params_idx] for ptype in ptypes] - end - - #* solve the problem - sol_arr = solve_prob(route, input, pas, paramfunc=param_func, timeidx=timeidx, stypes=stypes, solver=solver, interp=interp) - sol_arr_permuted = permutedims(sol_arr, (2, 1, 3)) - cont_arr = cat(input, sol_arr_permuted, dims=1) - output_vec = [route.rfunc.func.(eachslice(cont_arr[:, :, i], dims=2), param_func(pas), timeidx[i]) for i in 1:size(input)[3]] - out_arr = reduce(hcat, reduce.(vcat, output_vec)) - # return route_states and q_out - return cat(sol_arr_permuted, reshape(out_arr, 1, size(out_arr)...), dims=1) -end - -function solve_prob( - route::HydroRoute, - input::Array, - pas::ComponentVector; - paramfunc::Function, - timeidx::Vector{<:Number}=collect(1:size(input, 3)), - stypes::Vector{Symbol}=collect(keys(pas[:initstates])), - solver::AbstractSolver=ODESolver(), - interp::Type{<:AbstractInterpolation}=LinearInterpolation, -) - #* Interpolate the input data. Since ordinary differential calculation is required, the data input must be continuous, - #* so an interpolation function can be constructed to apply to each time point. - itp_funcs = interp.(eachslice(input[1, :, :], dims=1), Ref(timeidx), extrapolate=true) - - #* 准备初始状态 - init_states_vec = collect([collect(pas[:initstates][stype][get_state_names(route)]) for stype in stypes]) - #* prepare the initial states matrix (dims: state_num * node_num) - init_states_mat = reduce(hcat, init_states_vec)' - - #* Construct a temporary function that couples multiple ode functions to construct the solution for all states under the bucket - function route_ode!(du, u, p, t) - # 提取单元产流 - q_gen = [itp_func(t) for itp_func in itp_funcs] - # 计算单元出流,更新单元出流状态 - q_out_vec = route.rfunc.func.(eachslice(hcat(q_gen, u), dims=1), paramfunc(p), Ref(t)) - q_out = reduce(vcat, q_out_vec) - q_in = route.projfunc(q_out) - # 更新状态 - du[:] = q_in .+ q_gen .- q_out - end - - #* Solve the problem using the solver wrapper - sol = solver(route_ode!, pas, init_states_mat, timeidx, convert_to_array=true) - # return route_states and q_out - sol -end - -function solve_prob( - route::HydroRoute, - input::Array, - pas::ComponentVector; - paramfunc::Function, - timeidx::Vector{<:Number}=collect(1:size(input, 3)), - stypes::Vector{Symbol}=collect(keys(pas[:initstates])), - solver::AbstractSolver=ODESolver(), - interp::Type{<:AbstractInterpolation}=LinearInterpolation, -) - #* Interpolate the input data. Since ordinary differential calculation is required, the data input must be continuous, - #* so an interpolation function can be constructed to apply to each time point. - itp_funcs = interp.(eachslice(input[1, :, :], dims=1), Ref(timeidx), extrapolate=true) - - #* 准备初始状态 - init_states_vec = collect([collect(pas[:initstates][stype][get_state_names(route)]) for stype in stypes]) - #* prepare the initial states matrix (dims: state_num * node_num) - init_states_mat = reduce(hcat, init_states_vec)' - - #* Construct a temporary function that couples multiple ode functions to construct the solution for all states under the bucket - function route_ode!(du, u, p, t) - # 提取单元产流 - q_gen = [itp_func(t) for itp_func in itp_funcs] - # 计算单元出流,更新单元出流状态 - q_out_vec = route.rfunc.func.(eachslice(hcat(q_gen, u), dims=1), paramfunc(p), Ref(t)) - q_out = reduce(vcat, q_out_vec) - q_in = route.afunc.func(q_out) - # 更新状态 - du[:] = q_in .+ q_gen .- q_out - end - - #* Solve the problem using the solver wrapper - sol = solver(route_ode!, pas, init_states_mat, timeidx, convert_to_array=true) - # return route_states and q_out - sol -end -""" - VectorRoute <: AbstractVectorRoute - -A structure representing a vector-based routing scheme for hydrological modeling. - -# Fields -- `rfunc::AbstractVector{<:AbstractRouteFlux}`: Vector of routing flux functions for each node. -- `network::DiGraph`: A directed graph representing the routing network topology. -- `infos::NamedTuple`: Contains information about the VectorRoute instance, including input, output, state, and parameter names. - -# Constructor - VectorRoute( - name::Symbol; - rfunc::AbstractRouteFlux, - network::DiGraph - ) - -Constructs a `VectorRoute` object with the given name, routing flux function, and network structure. - -# Arguments -- `name::Symbol`: A symbol representing the name of the routing scheme. -- `rfunc::AbstractRouteFlux`: The routing flux function to be applied at each node. -- `network::DiGraph`: A directed graph representing the routing network topology. - -The constructor extracts variable names, parameter names, and neural network names from the provided -routing flux function to set up the internal information structure of the `VectorRoute` object. - -Note: 来源于Rapid汇流模型 -""" -struct RapidRoute <: AbstractRapidRoute - "Routing adjacency matrix" - adjacency::AbstractMatrix - "grid subarea information, km2" - subareas::AbstractVector - "Metadata: contains keys for input, output, param, state, and nn" - meta::HydroMeta - - function RapidRoute(; - func::AbstractFlux, # 计算qout的函数 - rfuncs::Vector{AbstractFlux}, # route的函数 - name::Union{Symbol,Nothing}=nothing, - ) - #* Extract all variable names of funcs and dfuncs - input_names, output_names = get_var_names(vcat(func, rfuncs...)) - #* Extract all parameters names of funcs and dfuncs - param_names = get_param_names(rfunc) - #* Extract all neuralnetwork names of the funcs - nn_names = get_nn_names(rfunc) - #* Setup the name information of the hydrobucket - route_name = name === nothing ? Symbol(Symbol(reduce((x, y) -> Symbol(x, y), input_names)), :_vector_route) : name - meta = HydroMeta(name=route_name, inputs=input_names, outputs=output_names, states=state_names, params=param_names, nns=nn_names) - - return new( - adjacency, - subareas, - meta, - ) - end -end - -function (route::RapidRoute)( - input::Array, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) - ptypes = get(config, :ptypes, collect(keys(pas[:params]))) - interp = get(config, :interp, LinearInterpolation) - timeidx = get(config, :timeidx, collect(1:size(input, 3))) - delta_t = get(config, :delta_t, 1.0) - solver = DiscreteSolver(alg=FunctionMap{true}()) - - @assert all(ptype in keys(pas[:params]) for ptype in ptypes) "Missing required parameters. Expected all of $(keys(pas[:params])), but got $(ptypes)." - - #* var num * node num * ts len - #* 计算出每个node结果的插值函数 - input_mat = input[1, :, :] - itp_funcs = interp.(eachslice(input_mat, dims=1), Ref(timeidx), extrapolate=true) - - #* 计算出每个节点的面积转换系数 - area_coeffs = @. 24 * 3600 / (route.subareas * 1e6) * 1e3 - - #* prepare the parameters for the routing function - #* 参数可能存在转换需求,其中包括A通常是固定值 - k_ps = [pas[:params][ptype][:k] for ptype in ptypes] - x_ps = [pas[:params][ptype][:x] for ptype in ptypes] - c0 = @. ((delta_t / k_ps) - (2 * x_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - c1 = @. ((delta_t / k_ps) + (2 * x_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - c2 = @. ((2 * (1 - x_ps)) - (delta_t / k_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - A = (p) -> Matrix(I, size(route.adjacency)...) .- diagm(p.c0) * route.adjacency - - function route_ode!(du, u, p, t) - q_gen = [itp_func(t) for itp_func in itp_funcs] .* area_coeffs - #* Ax = b, x is the q_out(t+1) - rflux_b = p.c0 * q_gen + p.c1 * (route.adjacency * q_out_t1 + q_gen) + p.c2 * q_out_t1 - #* solve the linear equation (simple solve by matrix inversion) - du[:] = A(p) \ (rflux_b .- A(p) * u) - end - - #* solve the ode - sol_arr = solver(route_ode!, ComponentVector(c0=c0, c1=c1, c2=c2), zeros(size(input_mat)[1]), timeidx, convert_to_array=true) - return reshape(sol_arr, 1, size(sol_arr)...) -end - - - diff --git a/doc/src/assets/icons.ico b/doc/src/assets/icons.ico deleted file mode 100644 index ba41981..0000000 Binary files a/doc/src/assets/icons.ico and /dev/null differ diff --git a/doc/src/index.md b/doc/src/index.md deleted file mode 100644 index 3a8027d..0000000 --- a/doc/src/index.md +++ /dev/null @@ -1,50 +0,0 @@ -# HydroModels.jl - -## Overview - -HydroModels.jl is a modern hydrological modeling framework that extends and enhances SUPERFLEX's design philosophy. Built on Julia language and the SciML (Scientific Machine Learning) ecosystem, it combines flexible model construction with computational efficiency, particularly supporting deep learning integration in hydrological modeling. - -## Key Features - -- **Flexible Model Construction**: Supports development of lumped, semi-distributed, and distributed hydrological models -- **Deep Learning Integration**: Enables neural network integration for enhanced flux calculations and dynamic parameter estimation -- **Computational Efficiency**: Leverages Julia's high-performance capabilities and the SciML ecosystem -- **Gradient-Based Optimization**: Supports advanced parameter optimization techniques -- **Comprehensive Framework**: Provides tools for both traditional hydrological modeling and modern machine learning approaches - -## Framework Capabilities - -HydroModels.jl offers: -- Easy implementation and customization of hydrological models -- Integration with Julia's scientific computing ecosystem -- Support for various modeling approaches: - - Traditional conceptual models - - Neural network enhanced models - - Distributed hydrological systems - -## Case Studies - -The framework has been validated through various applications, including: -1. M50 Model Implementation -2. GR4J-based Distributed Hydrological Model - -## Getting Started - -Check out our tutorials to start using HydroModels.jl: -- [Run a Bucket Model](tutorials/run_a_bucket.md) -- [Run ExpHydro Model](tutorials/run_a_exphydro_model.md) - -## Installation - -```julia -using Pkg -Pkg.add("HydroModels") -``` - -## Contributing - -HydroModels.jl is an open-source project available on Github. We welcome contributions from the community to help advance deep learning applications in hydrology. - -## Documentation - -For detailed information about using HydroModels.jl, please refer to our comprehensive documentation and tutorials in this site. diff --git a/doc/src/tutorials/run_a_bucket.md b/doc/src/tutorials/run_a_bucket.md deleted file mode 100644 index a2cd0fb..0000000 --- a/doc/src/tutorials/run_a_bucket.md +++ /dev/null @@ -1,94 +0,0 @@ -# HydroModels Bucket Model Implementation Example - -## Overview -This document demonstrates the implementation and usage of a hydrological bucket model using the HydroModels framework. The code showcases both single-node and multi-node simulations using the ExpHydro model structure. - -## Dependencies -```julia -using CSV -using DataFrames -using ComponentArrays -using BenchmarkTools -using HydroModels -using ModelingToolkit -``` - -## Model Configuration - -### Parameter Setup -The model uses the following parameters for the hydrological simulation: -- `f`: 0.01674478 (Infiltration parameter) -- `Smax`: 1709.461015 (Maximum soil water storage) -- `Qmax`: 18.46996175 (Maximum discharge) -- `Df`: 2.674548848 (Degree-day factor) -- `Tmax`: 0.175739196 (Maximum temperature threshold) -- `Tmin`: -2.092959084 (Minimum temperature threshold) - -### Initial States -Initial conditions for the model: -- `snowpack`: 0.0 -- `soilwater`: 1303.004248 - -## Data Input -The model uses time series data from a CSV file located at "data/exphydro/01013500.csv" containing: -- Day length (dayl) -- Mean temperature (tmean) -- Precipitation (prcp) - -## Implementation Examples - -### 1. Single Node Simulation -```julia -# Setup input data -input = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) -solver = HydroModels.ManualSolver{true}() -config = (solver=solver,) - -# Convert input to required format -input_arr = Matrix(reduce(hcat, collect(input[ele.meta.inputs]))') - -# Run simulation -results = ele(input_arr, pas, config=config, convert_to_ntp=true) -``` - -### 2. Multi-Node Simulation -```julia -# Setup for multiple nodes -node_num = 10 -node_names = [Symbol(:node, i) for i in 1:node_num] - -# Create parameter and state vectors for all nodes -node_params = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([params], length(node_names)))) -node_initstates = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([init_states], length(node_names)))) -node_pas = ComponentVector(params=node_params, initstates=node_initstates) - -# Prepare input data for multiple nodes -input_arr = reduce(hcat, collect(input[HydroModels.get_input_names(ele)])) -node_input = reduce((m1, m2) -> cat(m1, m2, dims=3), repeat([input_arr], length(node_names))) -node_input = permutedims(node_input, (2, 3, 1)) - -# Run simulation with multiple nodes -run_kwgs = (ptypes=node_names, timeidx=ts) -result = ele(node_input, node_pas, kwargs=run_kwgs) -``` - -## Model Structure -The model uses a bucket structure defined in exphydro.jl with two main components: -1. Surface water component (bucket_1): - - Handles precipitation partitioning (rainfall/snowfall) - - Computes potential evapotranspiration - - Manages snowmelt processes - -2. Soil water component: - - Manages soil water storage - - Computes actual evaporation - - Generates baseflow and surface flow - -## Usage Notes -1. The code demonstrates flexibility in handling both single-node and multi-node simulations -2. Input data should be properly formatted with required columns (dayl, tmean, prcp) -3. Parameters and initial states can be adjusted based on specific catchment characteristics -4. The model uses a manual solver for time-stepping - -## Time Series Processing -The example processes 10,000 time steps (ts = collect(1:10000)) and can be adjusted based on data availability and simulation requirements. \ No newline at end of file diff --git a/doc/src/tutorials/run_a_exphydro_model.md b/doc/src/tutorials/run_a_exphydro_model.md deleted file mode 100644 index a26c5d3..0000000 --- a/doc/src/tutorials/run_a_exphydro_model.md +++ /dev/null @@ -1,112 +0,0 @@ -# Run A ExpHydro Model - -## Overview - -本文档将介绍如何使用已构建的exphdyro模型用于集总式(Single HRU)的计算和分布式(Multiple HURs)的计算 - -## Dependencies - -First, lets import the required packages. - -```julia -using CSV -using DataFrames -using ComponentArrays -using BenchmarkTools -using NamedTupleTools -using Plots -``` - -## Model Setup - -接着需要对模型的参数和初始状态进行设置 - -### Parameter Configuration - -Exphydro模型包含以下6个参数,我们需要使用ComponentVector来定义这些参数 - -| Parameter | Value | Description | -| --------- | ------------ | ----------------------------- | -| `f` | 0.01674478 | Infiltration parameter | -| `Smax` | 1709.461015 | Maximum soil water storage | -| `Qmax` | 18.46996175 | Maximum discharge | -| `Df` | 2.674548848 | Degree-day factor | -| `Tmax` | 0.175739196 | Maximum temperature threshold | -| `Tmin` | -2.092959084 | Minimum temperature threshold | - -```julia -params = ComponentVector(f=0.01674478, Smax=1709.461015, Qmax=18.46996175, - Df=2.674548848, Tmax=0.175739196, Tmin=-2.092959084) -``` - -### Initial States - -然后就是定义模型的初始状态,针对exphydro模型的两个计算模块分别设置其对应的状态变量`snowpack`和`soilwater`初始值 - -```julia -inistates = ComponentVector(snowpack=0.0, soilwater=1303.004248) -``` - -## Data Preparation - -The test uses hydrometeorological data from "data/exphydro/01013500.csv": - -```julia -file_path = "data/exphydro/01013500.csv" -data = CSV.File(file_path) -df = DataFrame(data) -ts = collect(1:10000) # Time series length -``` - -Input variables include: - -- Day length (dayl) -- Mean temperature (tmean) -- Precipitation (prcp) - -## Model Testing - -### Single Node Testing - -```julia -# Configure solver -solver = HydroModels.ManualSolver() - -# Run model with performance benchmarking -result = model(input, pas, config=(solver=solver, timeidx=ts), convert_to_ntp=true) - -# Visualize results -plot(result.flow) -plot!(df[ts, "flow(mm)"]) -``` - -### Performance Benchmarking For Single Node (by using BenchmarkTools.jl) - -```julia -@btime model(input, pas, config=(solver=solver, timeidx=ts), convert_to_ntp=true); -``` - -### Multi-Node Testing (Optional) - -The code includes commented sections for multi-node testing: - -```julia -# Setup multiple nodes -node_num = 10 -inputs = repeat([input], node_num) -ptypes = [Symbol(:node, i) for i in 1:node_num] - -# Configure parameters and states for multiple nodes -params_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([params], node_num))) -init_states_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([init_states], node_num))) -pas_multi = ComponentVector(params=params_multi, initstates=init_states_multi) - -# Run multi-node simulation -results = model(inputs, pas_multi, config=(solver=solver, timeidx=ts), convert_to_ntp=true) -``` - -### Performance Benchmarking For Multi-Node (by using BenchmarkTools.jl) - -```julia -@btime model(inputs, pas_multi, config=(solver=solver, timeidx=ts), convert_to_ntp=true); -``` \ No newline at end of file diff --git a/doc/start/core_struct.md b/doc/start/core_struct.md deleted file mode 100644 index 501b58f..0000000 --- a/doc/start/core_struct.md +++ /dev/null @@ -1,51 +0,0 @@ -# Core Structs in HydroModels.jl - -HydroModels.jl provides several core structs to represent different components of hydrological modeling. Each struct serves a specific purpose in the modeling process. Let's explore these core structs: - -- Flux Component: designed to represent simple hydrological fluxes. -- Bucket Component: designed to represent simple hydrological bucket or lumped model. -- Route Component: designed to represent routing method in distributed or vector model. -- Model Component: designed to contain multiple components and connect them together and represent a complex model. - -this components are subtype of the AbstractComponent struct. that this component contain the same infos, including the input, output, parameter, state and neuralnetwork infos. - -moreover, to make the component more flexible, all of the component support the callable feature. which means you can obtain the output of components through function calls. - -```julia -function (comp::AbstractComponent)(input::Vector, pas::ComponentVector; kwargs...) - ... -end - -function (comp::AbstractComponent)(input::Matrix, pas::ComponentVector; kwargs...) - ... -end - -function (comp::AbstractComponent)(input::Array, pas::ComponentVector; ptypes::AbstractVector{Symbol}, kwargs...) - ... -end -``` - -the callable function of can be divide into three different input types: - -- Vector input: vector input is used for single time step, the dimension of the input is (`num_variables`, ), this is support for ode problems solve. -- Matrix input: Matrix input is used for a single node input (lumped model), by input the matrix (`num_variables`, `time_steps`), the component can calculate the output for each time step of the ouput variables. this is support for lumped model. need to notice that the route component is not support matrix input (since the route component is designed for multiple nodes input). -- Array input: Array input is used for multiple nodes input (distributed model), by input the array (`num_variables`, `num_nodes`, `time_steps`), the component can calculate the output for each time step of the ouput variables for each node. this is support for distributed model. - -all of the callable function should input the pas (parameter, init states, sometime also include the neuralnetwork params) together with the input data, the type is `ComponentVector` based on the `ComponentArrays.jl`. for example: - -```julia -pas = ComponentVector(params = (...), initstates = (...), nn = (...)) -``` - -while when input pas for multiple nodes (eg. distributed model), the pas should be change its struct as follows: - -```julia -pas = ComponentVector(params = (ptype1 = (...), ptype2 = (...), ...), initstates = (ptype1 = (...), ptype2 = (...), ...), nn = (...)) -``` - -where `ptype1, ptype2` are the node type in the distributed model, for example, in a catchment, we can have different type of land use/land cover (eg. forest, grassland, water body, wetland, etc.), each type of land cover can have different parameters, the pas for each node should include the parameters for all of the land cover type, and the parameters for each land cover type is stored in the `params` field of the pas. -while for `nn`, it can be shared by all of the nodes, which means the nn params is the same for all of the nodes. - -for array input, the callable function need input a extra argument `ptypes::AbstractVector{Symbol}`, which is the node type in the distributed model, and the order of the node type should be the same as the order of the nodes in the input array. - -for example, if we have 2 type nodes in the catchment, the input array should be (num_variables, 2, time_steps) and the ptypes should be `[:ptype1, :ptype2]`. diff --git a/doc/start/flux.md b/doc/start/flux.md deleted file mode 100644 index 45cc719..0000000 --- a/doc/start/flux.md +++ /dev/null @@ -1,116 +0,0 @@ -# Introduction to Flux Structure - -Flux is a fundamental concept in hydrological modeling ,which denote a kind of hydrological process, such soil infiltration, surface runoff, and groundwater flow. In this pakage, we use flux to describe those fluxes in one hydrological model. based on different computation process, we proposed different types of flux: - -## 1. Simple Flux - -Simple flux is used to describe the process of common hydrological process that can be descripe by a simple computation formula, such as potential evaporation process: - -\[ -\text{pet} = 29.8 \times \text{lday} \times 24 \times 0.611 \times \exp\left(\frac{17.3 \times \text{temp}}{\text{temp} + 237.3}\right) / (\text{temp} + 273.2) -\] - -In the potential evaporation formula, we can set `lday` and `temp` to represent the day length and temperature, and `pet` to represent the potential evaporation, and the `pet` can be calculated by the formula by inputting the `lday` and `temp`. to build this flux in `HydroModel`, we need to: - -```julia -pet = SimpleFlux([lday, temp] => [pet], exprs = [lday * 24 * 0.611 * exp(17.3 * temp / (temp + 237.3)) / (temp + 273.2)]) -``` - -In the code, `[lday, temp]` is the input variables, `[pet]` is the output variable, and `exprs` is the formula of the flux. - -Then, we present an another example of simple flux that contain parameters: - -In exp-hydro model, the melt can be calculated by the formula: - -\[ -\text{melt} = \text{step\_func}(\text{temp} - \text{Tmax}) \times \text{step\_func}(\text{snowpack}) \times \min(\text{snowpack}, \text{Df} \times (\text{temp} - \text{Tmax})) -\] - -where `temp` is the temperature, `Tmax` is the maximum temperature, `Df` is the degree-day factor, `snowpack` is the snowpack, and `melt` is the melt, and the `step_func` is the step function, which is used to limit the melt when the temperature is greater than the maximum temperature or the snowpack is zero. - -To build this flux in `HydroModel`, we need to: - -```julia -melt = SimpleFlux([temp, Tmax, snowpack, Df] => [melt], [Tmax, Df], - exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]) -``` - -In the code, `[temp, Tmax, snowpack, Df]` is the input variables, `[melt]` is the output variable, `[Tmax, Df]` is the parameters, and `exprs` is the formula of the flux. - -As we can observe when constructing a SimpleFlux, both the output variables and expressions are of array type. This indicates that we can use a single SimpleFlux instance to represent multiple formulas. However, it's crucial to ensure that the variables required in the calculation formulas correspond to the input variables. - -For example, if we use `a` and `b` to calculate `c`, but the calculation of `d` requires `c` as an input, we would need to create two separate SimpleFlux entities. This separation ensures that the dependencies between variables are properly maintained and that each flux represents a distinct step in the calculation process. - -Through multiple SimpleFlux instances, we can easily represent a hydrological calculation module (excluding state variables). Of course, due to the flexible nature of HydroModels.jl, SimpleFlux can be directly input into the Model without the need to compose an additional bucket. This flexibility allows for efficient model construction and customization. For more details on how to incorporate SimpleFlux directly into models, please refer to the `Model` introduction section. - -## Special simple flux: neural network flux (NeuralFlux) - -`NeuralFlux` is a specialized structure in HydroModels.jl that integrates neural networks into hydrological flux calculations. For example, we can use a neural network to approximate the potential evaporation process: - -\[ -\text{pet} = \text{petnn}(\text{lday}, \text{temp}) -\] - -the implementation of this flux is as follows: - -```julia -nn = Lux.Chain( - Lux.Dense(2, 10), - Lux.relu, - Lux.Dense(10, 1), - name=:petnn -) -pet = NeuralFlux([lday, temp] => [pet], nn) -``` -In this code, we use `Lux.jl` to build a neural network (specified name by `name=:petnn`, it was used for the keys of the neural network parameters), and the neural network has two inputs (`lday` and `temp`) and one output (`pet`). It is important to note that the name of the input and output flux must be the same as the input dims and output dims in the neural network. - -## 2. State Flux - -State Flux represents a special and crucial component in hydrological models (or modules). This type of flux is based on the law of mass conservation, which states that the difference between the input and output fluxes of a module equals the change in its storage. - -For example, the Exp-Hydro model contains two calculation modules. In the snowmelt module, the rate of change in snow depth is represented by the formula: - -\[ -\frac{d\text{snowpack}}{dt} = \text{snowfall} - \text{melt} -\] - -The input flux of the module is snowfall, and the output flux is snowmelt. The change in storage is represented by the snow depth. This can be expressed using `StateFlux` as follows: - -```julia -state_flux = StateFlux([snowfall] => [melt], snowpack) -``` - -In this example, the input flux is `snowfall`, the output flux is `melt`, and the storage is `snowpack`. - -The construction method above is derived from a simple balance calculation based on pre-calculated fluxes. However, for some models where state variables are updated after flux calculations, or where the dstate calculation formula is non-linear, a more general construction method is needed: - -```julia -state_expr = rainfall + melt - step_func(soilwater) * lday * log_evap_div_lday - step_func(soilwater) * exp(log_flow) -soil_dfuncs = [StateFlux([soilwater, rainfall, melt, lday, log_evap_div_lday, log_flow], soilwater, Num[], expr=state_expr)] -``` - -In this code, the calculation of \(\frac{dsoilwater}{dt}\) requires the use of functions like `exp` and `step_func` (some state calculations may even involve parameters). To accommodate this, we can adopt a construction approach similar to SimpleFlux. This means providing input variables, output variables (in this case, the state value), parameters, and expressions to implement more complex state calculation formulas. - -This approach allows for greater flexibility in defining state dynamics, enabling the incorporation of non-linear functions and parameter-dependent calculations. By structuring StateFlux in this way, we can handle a wider range of hydrological processes and model complexities, making it easier to represent sophisticated state variable dynamics within the HydroModel.jl framework. - -need to notice that, in the StateFlux, one state flux can only be used to describe one state variable, if you want to describe multiple state variables, you need to use multiple StateFlux. - -## 3. Route Flux - -Route Flux can be used for both routing process (kinematic wave, discharge model, muskingum method, etc.) in distributed hydrological model and routing function (like unit hydrograph, linear reservoir, etc.) in conceptual model. the calculation progress of this kind of flux is usually complex, which can not be described by a simple formula, and as for different routing methods, the calculation process is different, we categorize them into three types: - -- `UnitHydroFlux`: This flux is specifically designed for the unit hydrograph method, which is commonly used in conceptual hydrological models. The calculation process of this flux is based on unit hydrograph theory, where we need to specify a unit-hydrograph function to generate the unit hydrograph weights. It's important to note that UnitHydroFlux calculations require input of the entire flux data and perform calculations uniformly. This means we cannot extract data for a single time point to output to other grid points, making it unsuitable for routing calculations in grid and vector route. The UnitHydroFlux is primarily used for lumped conceptual models or weighted sum route (we will introduce this in the route section). - -- `GridRouteFlux`: This flux is specifically designed for grid routing, which is commonly used in grided hydrological models. The internal calculation process of this routing method is constructed as a continuous ordinary differential equation. It assumes that the flux flows continuously from one node to another, meaning the flux calculation process is continuous. For more details on the grid routing process, please refer to the [route](route.md) section. - -- `VectorRouteFlux`: This flux is specifically designed for vector routing, which is commonly used in vectorized hydrological models. The internal calculation process of this routing method is constructed as a discrete calculation process. This means that the flux movement occurs at each calculation time step. If we were to construct an ODE (Ordinary Differential Equation) calculation process, it would need to be built for each time step, which is clearly impractical. Therefore, we adopt a discrete approach for construction. The flux moves from one node to another at each discrete time step, allowing for efficient computation in vector-based models. This approach is particularly suitable for routing methods like the unit hydrograph. For more details on the vector routing process, please refer to the [route](route.md) section. - - -We have implemented some route functions in the `fluxes` directory, including discharge model, muskingum, linear reserivoir, and unit hydrograph. the information table of these fluxes is as follows: - -| Flux Name | Description | Parameters | Routetype | -|-----------|-------------|------------|-----------| -| DischargeRouteFlux | Hydrological discharge model | lag, s_river | GridRouteFlux | -| CascadeRouteFlux | Nash Cascade (Linear Reservoir) | k, n | GridRouteFlux | -| MuskingumRouteFlux | Muskingum Method | k, x | VectorRouteFlux | -| UnitHydroFlux | Unit Hydrograph | lag_func | UnitHydroFlux | diff --git a/doc/start/hydrobucket.md b/doc/start/hydrobucket.md deleted file mode 100644 index 1fcf016..0000000 --- a/doc/start/hydrobucket.md +++ /dev/null @@ -1,44 +0,0 @@ -# Introduction to HydroBucket Structure - -HydroBucket is a fundamental component in hydrological modeling, representing a computational unit of a hydrological module. It consists of simple fluxes and state fluxes. - -As an independent hydrological module, HydroBucket can be used to represent either a lumped hydrological model or a specific computational module within a larger hydrological model (such as the snowmelt calculation module in the Exp-hydro model). - -## Core function of the HydroBucket - -### 1. runtime function generate - -`HydroBucket` integrates multiple simple fluxes and state fluxes to describe flux calculations and state balance calculations for a hydrological module. Although individual flux types can produce outputs based on data inputs, repeatedly calling the callable functions of fluxes within HydroBucket presents several challenges: - -1. Pre-allocating a result matrix: When flux calculations replace values at corresponding positions, and these values are directly accessed when needed, this approach, while computationally efficient, involves mutating arrays. This violates the constraints of the Zygote.jl optimizer used in model optimization (see limitations of Zygote.jl). - -2. To avoid mutating arrays, we initially used NamedTuples to store flux calculation results during development, with each output name corresponding to a flux calculation result. Although less efficient than the previous method, this approach avoids mutating arrays and satisfies the Zygote.jl optimizer constraints for model optimization. - -3. To enhance computational efficiency while meeting the Zygote.jl optimizer constraints, the HydroBucket constructor uses the expressions provided in simple fluxes and state fluxes to generate a runtime function (based on SymbolicUtils.jl) during model construction. This function efficiently computes all flux results (flux_func) and supports the construction and rapid solution of ODE problems (ode_func). - -**The detailed implementation of runtime function generation** - -Runtime function generation primarily relies on the Symbolics.jl and SymbolicUtils.jl packages. The function generates a runtime function based on the variables, parameters, and expressions stored in the fluxes. The specific steps are as follows: - -1. Establish relationships between output variables and their respective expressions using the Assignment function from SymbolicUtils.jl. - -2. Organize output variables into an Array using MakeArray. - -3. Construct function parameters using `[DestructuredArgs(inputs), DestructuredArgs(params), DestructuredArgs(nns)]`. This generates runtime functions with input parameter formats: - - `function fluxes(input::Vector, params::Vector, nns::Vector)` - - `function dfluxes(input::Vector, state::Vector, params::Vector, nns::Vector)` - -4. Build the function body content using Let, which includes both the relationships between output variables and their expressions, and the organization of output variables into an Array. - -5. Generate the function expression using Func, and create the runtime function using the `@RuntimeGenerated` macro. - - -### 2. ODE problem solve - -When the input argument `dfluxes` is not empty, HydroBucket constructs the `ode_func` runtime function and uses the `OrdinaryDiffEq.jl` package to build and solve an ODE problem. The process involves the following steps: - -1. Linear interpolation is used to construct interpolation functions for input fluxes. This allows for obtaining flux values at any time point within the calculation period when solving the ODE problem. - -2. To accommodate the requirements of Optimization.jl, we use ComponentVector for parameter input. We pre-extract the index describing the parameter order, enabling quick indexing of corresponding parameter values during flux calculations, thus improving computational efficiency. - -3. Finally, we have built wrapper structs based on the `solve` function from the `OrdinaryDiffEq.jl` package. These wrappers `Solver` are used for both continuous and discrete ODE solving. \ No newline at end of file diff --git a/doc/start/m50_implement.md b/doc/start/m50_implement.md deleted file mode 100644 index 4161a84..0000000 --- a/doc/start/m50_implement.md +++ /dev/null @@ -1,212 +0,0 @@ -# Introduction to the implementation of the M50 model and its training process - -## Step 1: Import packages -```julia -using CSV -using DataFrames -using Lux -using ModelingToolkit -using StableRNGs -using ComponentArrays -using DataInterpolations -using Statistics -using BenchmarkTools -using Plots -using OptimizationOptimisers -using SciMLSensitivity -using HydroModels -``` - -## Step 2: Define the model -```julia -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 -#! parameters in the Exp-Hydro model -@parameters Tmin Tmax Df Smax f Qmax -#! parameters in normalize flux -@parameters snowpack_std snowpack_mean -@parameters soilwater_std soilwater_mean -@parameters prcp_std prcp_mean -@parameters temp_std temp_mean - -#! hydrological flux in the Exp-Hydro model -@variables prcp temp lday pet rainfall snowfall -@variables snowpack soilwater lday pet -@variables melt log_evap_div_lday log_flow -@variables norm_snw norm_slw norm_temp norm_prcp - -#! define the snow pack reservoir -snow_funcs = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * min(snowpack, Df * (temp - Tmax))]), -] -snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] -snow_ele = HydroBucket(name=:exphydro_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - -#! define the ET NN and Q NN -ep_nn = Lux.Chain( - Lux.Dense(3 => 16, tanh), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 1, leakyrelu), - name=:epnn -) -ep_nn_params = Vector(ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), ep_nn)))) -q_nn = Lux.Chain( - Lux.Dense(2 => 16, tanh), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 1, leakyrelu), - name=:qnn -) -q_nn_params = Vector(ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), q_nn)))) - -#! get init parameters for each NN -ep_nn_flux = NeuralFlux([norm_snw, norm_slw, norm_temp] => [log_evap_div_lday], ep_nn) -q_nn_flux = NeuralFlux([norm_slw, norm_prcp] => [log_flow], q_nn) - -#! define the soil water reservoir -soil_funcs = [ - #* normalize - HydroFlux([snowpack, soilwater, prcp, temp] => [norm_snw, norm_slw, norm_prcp, norm_temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean, snowpack_std, soilwater_std, prcp_std, temp_std], - exprs=[(var - mean) / std for (var, mean, std) in zip([snowpack, soilwater, prcp, temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean], - [snowpack_std, soilwater_std, prcp_std, temp_std] - )]), - ep_nn_flux, - q_nn_flux, -] - -state_expr = rainfall + melt - step_func(soilwater) * lday * log_evap_div_lday - step_func(soilwater) * exp(log_flow) -soil_dfuncs = [StateFlux([soilwater, rainfall, melt, lday, log_evap_div_lday, log_flow], soilwater, Num[], expr=state_expr)] -soil_ele = HydroBucket(name=:m50_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) -#! define the Exp-Hydro model -m50_model = HydroModel(name=:m50, components=[snow_ele, soil_ele]); -``` - -## Step 3: Load data -```julia -# predefine the parameters -f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 - -# load data -file_path = "data/m50/01013500.csv" -data = CSV.File(file_path) -df = DataFrame(data) -ts = collect(1:10000) -lday_vec = df[ts, "Lday"] -prcp_vec = df[ts, "Prcp"] -temp_vec = df[ts, "Temp"] -flow_vec = df[ts, "Flow"] - -log_flow_vec = log.(flow_vec) -log_evap_div_lday_vec = log.(df[ts, "Evap"] ./ lday_vec) -norm_prcp_vec = (prcp_vec .- mean(prcp_vec)) ./ std(prcp_vec) -norm_temp_vec = (temp_vec .- mean(temp_vec)) ./ std(temp_vec) -norm_snw_vec = (df[ts, "SnowWater"] .- mean(df[ts, "SnowWater"])) ./ std(df[ts, "SnowWater"]) -norm_slw_vec = (df[ts, "SoilWater"] .- mean(df[ts, "SoilWater"])) ./ std(df[ts, "SoilWater"]) -nn_input = (norm_snw=norm_snw_vec, norm_slw=norm_slw_vec, norm_temp=norm_temp_vec, norm_prcp=norm_prcp_vec) -m50_input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec) -``` - -## Step 4: Pretrain the NNs -```julia -ep_grad_opt = HydroModels.GradOptimizer(component=ep_nn_flux, solve_alg=Adam(1e-2), adtype=Optimization.AutoZygote(), maxiters=1000) -ep_input_matrix = Matrix(reduce(hcat, collect(nn_input[HydroModels.get_input_names(ep_nn_flux)]))') -ep_output = (log_evap_div_lday=log_evap_div_lday_vec,) - -ep_opt_params, epnn_loss_df = ep_grad_opt( - [ep_input_matrix], [ep_output], - tunable_pas=ComponentVector(nn=(epnn=ep_nn_params,)), - const_pas=ComponentVector(), - return_loss_df=true -) -``` - -```text -Training... 100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████| Time: 0:00:10 -((nn = (epnn = Float32[-0.01974994, -0.64867365, 0.13971744, -0.038864814, 1.112919, 0.06545781, -0.83492047, -0.43565416, -0.0061696735, 0.13157892 … 0.29205686, 0.46278232, -3.2228746, 0.12062144, 0.06469498, -2.8806944, 0.2044914, -1.7033366, 0.2584572, -0.266739])), 1001×4 DataFrame - Row │ iter loss time params - │ Int64 Float64 DateTime Array… -──────┼─────────────────────────────────────────────────────────────────────────────── - 1 │ 1 9.49144 2024-11-21T10:10:57.861 Float32[0.229399, -0.413821, 0.3… - 2 │ 2 8.53332 2024-11-21T10:10:57.867 Float32[0.239399, -0.423821, 0.3… - 3 │ 3 7.77423 2024-11-21T10:10:57.873 Float32[0.249313, -0.43382, 0.33… - 4 │ 4 7.52688 2024-11-21T10:10:57.878 Float32[0.259011, -0.443769, 0.3… - 5 │ 5 7.49975 2024-11-21T10:10:57.883 Float32[0.267003, -0.452015, 0.3… - 6 │ 6 7.48733 2024-11-21T10:10:57.888 Float32[0.27375, -0.459019, 0.30… - 7 │ 7 7.47953 2024-11-21T10:10:57.894 Float32[0.279562, -0.465082, 0.3… - ⋮ │ ⋮ ⋮ ⋮ ⋮ - 995 │ 995 0.00583641 2024-11-21T10:11:04.627 Float32[-0.0199612, -0.650014, 0… - 996 │ 996 0.00582027 2024-11-21T10:11:04.631 Float32[-0.0199189, -0.649745, 0… - 997 │ 997 0.00580418 2024-11-21T10:11:04.640 Float32[-0.0198766, -0.649477, 0… - 998 │ 998 0.00578814 2024-11-21T10:11:04.645 Float32[-0.0198344, -0.649209, 0… - 999 │ 999 0.00577214 2024-11-21T10:11:04.650 Float32[-0.0197921, -0.648941, 0… - 1000 │ 1000 0.0057562 2024-11-21T10:11:04.657 Float32[-0.0197499, -0.648674, 0… - 1001 │ 1000 0.0057562 2024-11-21T10:11:04.662 Float32[-0.0197499, -0.648674, 0… - 987 rows omitted) -``` - -```julia -q_grad_opt = HydroModels.GradOptimizer(component=q_nn_flux, solve_alg=Adam(1e-2), adtype=Optimization.AutoZygote(), maxiters=1000) -q_input_matrix = Matrix(reduce(hcat, collect(nn_input[HydroModels.get_input_names(q_nn_flux)]))') -q_output = (log_flow=log_flow_vec,) - -q_opt_params, qnn_loss_df = q_grad_opt( - [q_input_matrix], [q_output], - tunable_pas=ComponentVector(nn=(qnn=q_nn_params,)), - const_pas=ComponentVector(), - return_loss_df=true -) -``` - -```text -Training... 100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████| Time: 0:00:12 -((nn = (qnn = Float32[0.42091706, -0.2777198, 0.30891904, 0.4412809, 0.5341712, -0.3962445, -0.575717, -0.6653889, -0.45068413, 0.7776514 … 0.1986277, 0.22517225, 0.16427116, -1.7506562, -0.16015986, -1.1870662, -1.7102151, 0.41655824, 0.35249898, 0.10037236])), 1001×4 DataFrame - Row │ iter loss time params - │ Int64 Float64 DateTime Array… -──────┼─────────────────────────────────────────────────────────────────────────────── - 1 │ 1 1.25913 2024-11-21T10:12:32.773 Float32[0.235686, -0.42516, 0.36… - 2 │ 2 1.21188 2024-11-21T10:12:32.778 Float32[0.245686, -0.41516, 0.35… - 3 │ 3 1.18657 2024-11-21T10:12:32.815 Float32[0.253736, -0.406389, 0.3… - 4 │ 4 1.12638 2024-11-21T10:12:32.820 Float32[0.262394, -0.397315, 0.3… - 5 │ 5 1.02448 2024-11-21T10:12:32.826 Float32[0.2712, -0.38864, 0.3437… - 6 │ 6 0.903213 2024-11-21T10:12:32.831 Float32[0.279957, -0.379719, 0.3… - 7 │ 7 0.77082 2024-11-21T10:12:32.837 Float32[0.289023, -0.370426, 0.3… - ⋮ │ ⋮ ⋮ ⋮ ⋮ - 995 │ 995 0.00126523 2024-11-21T10:12:39.001 Float32[0.420713, -0.277343, 0.3… - 996 │ 996 0.00125197 2024-11-21T10:12:39.009 Float32[0.420763, -0.27742, 0.30… - 997 │ 997 0.00123855 2024-11-21T10:12:39.015 Float32[0.420802, -0.277493, 0.3… - 998 │ 998 0.00122546 2024-11-21T10:12:39.020 Float32[0.42084, -0.277568, 0.30… - 999 │ 999 0.00121264 2024-11-21T10:12:39.025 Float32[0.420878, -0.277644, 0.3… - 1000 │ 1000 0.00120045 2024-11-21T10:12:39.030 Float32[0.420917, -0.27772, 0.30… - 1001 │ 1000 0.00120045 2024-11-21T10:12:39.037 Float32[0.420917, -0.27772, 0.30… - 987 rows omitted) -``` - -## Step 5: Retrain the NNs in the Exp-Hydro model -```julia -m50_opt = HydroModels.GradOptimizer(component=m50_model, solve_alg=Adam(1e-2), adtype=Optimization.AutoZygote(), maxiters=100) -config = (solver=HydroModels.ODESolver(sensealg=BacksolveAdjoint(autodiff=ZygoteVJP())), interp=LinearInterpolation) -norm_pas = ComponentVector( - snowpack_mean=mean(norm_snw_vec), soilwater_mean=mean(norm_slw_vec), prcp_mean=mean(norm_prcp_vec), temp_mean=mean(norm_temp_vec), - snowpack_std=std(norm_snw_vec), soilwater_std=std(norm_slw_vec), prcp_std=std(norm_prcp_vec), temp_std=std(norm_temp_vec) -) -m50_const_pas = ComponentVector( - initstates=ComponentVector(snowpack=0.0, soilwater=1300.0), - params=ComponentVector(Tmin=Tmin, Tmax=Tmax, Df=Df; norm_pas...) -) -m50_tunable_pas = ComponentVector( - nn=ComponentVector(epnn=ep_nn_params, qnn=q_nn_params) -) -m50_opt_params, m50_loss_df = m50_opt( - [m50_input], [q_output], - tunable_pas=m50_tunable_pas, - const_pas=m50_const_pas, - config=[config], - return_loss_df=true -) -``` - -## Step 6: Plot the results -```julia -``` diff --git a/doc/start/run_a_bucket.md b/doc/start/run_a_bucket.md deleted file mode 100644 index a2cd0fb..0000000 --- a/doc/start/run_a_bucket.md +++ /dev/null @@ -1,94 +0,0 @@ -# HydroModels Bucket Model Implementation Example - -## Overview -This document demonstrates the implementation and usage of a hydrological bucket model using the HydroModels framework. The code showcases both single-node and multi-node simulations using the ExpHydro model structure. - -## Dependencies -```julia -using CSV -using DataFrames -using ComponentArrays -using BenchmarkTools -using HydroModels -using ModelingToolkit -``` - -## Model Configuration - -### Parameter Setup -The model uses the following parameters for the hydrological simulation: -- `f`: 0.01674478 (Infiltration parameter) -- `Smax`: 1709.461015 (Maximum soil water storage) -- `Qmax`: 18.46996175 (Maximum discharge) -- `Df`: 2.674548848 (Degree-day factor) -- `Tmax`: 0.175739196 (Maximum temperature threshold) -- `Tmin`: -2.092959084 (Minimum temperature threshold) - -### Initial States -Initial conditions for the model: -- `snowpack`: 0.0 -- `soilwater`: 1303.004248 - -## Data Input -The model uses time series data from a CSV file located at "data/exphydro/01013500.csv" containing: -- Day length (dayl) -- Mean temperature (tmean) -- Precipitation (prcp) - -## Implementation Examples - -### 1. Single Node Simulation -```julia -# Setup input data -input = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) -solver = HydroModels.ManualSolver{true}() -config = (solver=solver,) - -# Convert input to required format -input_arr = Matrix(reduce(hcat, collect(input[ele.meta.inputs]))') - -# Run simulation -results = ele(input_arr, pas, config=config, convert_to_ntp=true) -``` - -### 2. Multi-Node Simulation -```julia -# Setup for multiple nodes -node_num = 10 -node_names = [Symbol(:node, i) for i in 1:node_num] - -# Create parameter and state vectors for all nodes -node_params = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([params], length(node_names)))) -node_initstates = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([init_states], length(node_names)))) -node_pas = ComponentVector(params=node_params, initstates=node_initstates) - -# Prepare input data for multiple nodes -input_arr = reduce(hcat, collect(input[HydroModels.get_input_names(ele)])) -node_input = reduce((m1, m2) -> cat(m1, m2, dims=3), repeat([input_arr], length(node_names))) -node_input = permutedims(node_input, (2, 3, 1)) - -# Run simulation with multiple nodes -run_kwgs = (ptypes=node_names, timeidx=ts) -result = ele(node_input, node_pas, kwargs=run_kwgs) -``` - -## Model Structure -The model uses a bucket structure defined in exphydro.jl with two main components: -1. Surface water component (bucket_1): - - Handles precipitation partitioning (rainfall/snowfall) - - Computes potential evapotranspiration - - Manages snowmelt processes - -2. Soil water component: - - Manages soil water storage - - Computes actual evaporation - - Generates baseflow and surface flow - -## Usage Notes -1. The code demonstrates flexibility in handling both single-node and multi-node simulations -2. Input data should be properly formatted with required columns (dayl, tmean, prcp) -3. Parameters and initial states can be adjusted based on specific catchment characteristics -4. The model uses a manual solver for time-stepping - -## Time Series Processing -The example processes 10,000 time steps (ts = collect(1:10000)) and can be adjusted based on data availability and simulation requirements. \ No newline at end of file diff --git a/doc/start/run_a_exphydro_model.md b/doc/start/run_a_exphydro_model.md deleted file mode 100644 index a7aeb4b..0000000 --- a/doc/start/run_a_exphydro_model.md +++ /dev/null @@ -1,112 +0,0 @@ -# Run A ExpHydro Model - -## Overview - -本文档将介绍如何使用已构建的exphdyro模型用于集总式(Single HRU)的计算和分布式(Multiple HURs)的计算 - -## Dependencies - -First, lets import the required packages. - -```julia -using CSV -using DataFrames -using ComponentArrays -using BenchmarkTools -using NamedTupleTools -using Plots -``` - -## Model Setup - -接着需要对模型的参数和初始状态进行设置 - -### Parameter Configuration - -Exphydro模型包含以下6个参数,我们需要使用ComponentVector来定义这些参数 - -| Parameter | Value | Description | -| --------- | ------------ | ----------------------------- | -| `f` | 0.01674478 | Infiltration parameter | -| `Smax` | 1709.461015 | Maximum soil water storage | -| `Qmax` | 18.46996175 | Maximum discharge | -| `Df` | 2.674548848 | Degree-day factor | -| `Tmax` | 0.175739196 | Maximum temperature threshold | -| `Tmin` | -2.092959084 | Minimum temperature threshold | - -```julia -params = ComponentVector(f=0.01674478, Smax=1709.461015, Qmax=18.46996175, - Df=2.674548848, Tmax=0.175739196, Tmin=-2.092959084) -``` - -### Initial States - -然后就是定义模型的 - -```julia -inistates = ComponentVector(snowpack=0.0, soilwater=1303.004248) -``` - -## Data Preparation - -The test uses hydrometeorological data from "data/exphydro/01013500.csv": - -```julia -file_path = "data/exphydro/01013500.csv" -data = CSV.File(file_path) -df = DataFrame(data) -ts = collect(1:10000) # Time series length -``` - -Input variables include: - -- Day length (dayl) -- Mean temperature (tmean) -- Precipitation (prcp) - -## Model Testing - -### Single Node Testing - -```julia -# Configure solver -solver = HydroModels.ManualSolver() - -# Run model with performance benchmarking -result = model(input, pas, config=(solver=solver, timeidx=ts), convert_to_ntp=true) - -# Visualize results -plot(result.flow) -plot!(df[ts, "flow(mm)"]) -``` - -### Performance Benchmarking For Single Node (by using BenchmarkTools.jl) - -```julia -@btime model(input, pas, config=(solver=solver, timeidx=ts), convert_to_ntp=true); -``` - -### Multi-Node Testing (Optional) - -The code includes commented sections for multi-node testing: - -```julia -# Setup multiple nodes -node_num = 10 -inputs = repeat([input], node_num) -ptypes = [Symbol(:node, i) for i in 1:node_num] - -# Configure parameters and states for multiple nodes -params_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([params], node_num))) -init_states_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([init_states], node_num))) -pas_multi = ComponentVector(params=params_multi, initstates=init_states_multi) - -# Run multi-node simulation -results = model(inputs, pas_multi, config=(solver=solver, timeidx=ts), convert_to_ntp=true) -``` - -### Performance Benchmarking For Multi-Node (by using BenchmarkTools.jl) - -```julia -@btime model(inputs, pas_multi, config=(solver=solver, timeidx=ts), convert_to_ntp=true); -``` \ No newline at end of file diff --git a/doc/start/test_bucket.jl b/doc/start/test_bucket.jl deleted file mode 100644 index c18ee27..0000000 --- a/doc/start/test_bucket.jl +++ /dev/null @@ -1,43 +0,0 @@ -# 导入模块 -using CSV -using DataFrames -using ComponentArrays -using BenchmarkTools -using HydroModels -using ModelingToolkit - -# include("../../../src/HydroModels.jl") -include("../models/exphydro.jl") - -ele = bucket_1 -f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 -params = ComponentVector(f=f, Smax=Smax, Qmax=Qmax, Df=Df, Tmax=Tmax, Tmin=Tmin) -init_states = ComponentVector(snowpack=0.0, soilwater=1303.004248) -pas = ComponentVector(params=params, initstates=init_states) - -file_path = "data/exphydro/01013500.csv" -data = CSV.File(file_path); -df = DataFrame(data); -ts = collect(1:10000) - -# single node input -input = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) -solver = HydroModels.ManualSolver{true}() -config = (solver=solver,) -input_arr = Matrix(reduce(hcat, collect(input[ele.meta.inputs]))') -results = ele(input_arr, pas, config=config, convert_to_ntp=true) - -# multi node input -node_num = 10 -node_names = [Symbol(:node, i) for i in 1:node_num] -node_params = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([params], length(node_names)))) -node_initstates = ComponentVector(NamedTuple{Tuple(node_names)}(repeat([init_states], length(node_names)))) -node_pas = ComponentVector(params=node_params, initstates=node_initstates) - -input_arr = reduce(hcat, collect(input[HydroModels.get_input_names(ele)])) -node_input = reduce((m1, m2) -> cat(m1, m2, dims=3), repeat([input_arr], length(node_names))) -node_input = permutedims(node_input, (2, 3, 1)) -run_kwgs = (ptypes=node_names, timeidx=ts) - -result = ele(node_input, node_pas, kwargs=run_kwgs) -# # node_input = cat(node_input, result, dims=1) diff --git a/doc/start/test_unit.jl b/doc/start/test_unit.jl deleted file mode 100644 index 2b86bba..0000000 --- a/doc/start/test_unit.jl +++ /dev/null @@ -1,38 +0,0 @@ -# 导入模块 -using CSV -using DataFrames -using ComponentArrays -using BenchmarkTools -using NamedTupleTools -using Plots - -include("../../../src/HydroModels.jl") -include("../models/exphydro.jl") -# define parameters and initial states -f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 -params = ComponentVector(f=f, Smax=Smax, Qmax=Qmax, Df=Df, Tmax=Tmax, Tmin=Tmin) -init_states = ComponentVector(snowpack=0.0, soilwater=1303.004248) -pas = ComponentVector(params=params, initstates=init_states) - -# load data -file_path = "data/exphydro/01013500.csv" -data = CSV.File(file_path); -df = DataFrame(data); -ts = collect(1:10000) -input = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) - -# run model with single node input -# solver = HydroModels.ODESolver(reltol=1e-3, abstol=1e-3) -solver = HydroModels.ManualSolver() -@btime result = model(input, pas, config=(solver=solver, timeidx=ts), convert_to_ntp=true) -plot(result.flow) -plot!(df[ts, "flow(mm)"]) - -# # run model with multi node input -# node_num = 10 -# inputs = repeat([input], node_num) -# ptypes = [Symbol(:node, i) for i in 1:node_num] -# params_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([params], node_num))) -# init_states_multi = ComponentVector(NamedTuple{Tuple(ptypes)}(repeat([init_states], node_num))) -# pas_multi = ComponentVector(params=params_multi, initstates=init_states_multi) -# results = model(inputs, pas_multi, config=(solver=solver, timeidx=ts), convert_to_ntp=true) diff --git a/doc/tutorials/extent/check_nnfunc_speed copy.jl b/doc/tutorials/extent/check_nnfunc_speed copy.jl deleted file mode 100644 index cc85b37..0000000 --- a/doc/tutorials/extent/check_nnfunc_speed copy.jl +++ /dev/null @@ -1,63 +0,0 @@ -using Lux -using ComponentArrays -using Symbolics -using SymbolicUtils -using SymbolicUtils.Code -using StableRNGs -using ModelingToolkit -using BenchmarkTools - -function LSTMCompact(in_dims, hidden_dims, out_dims) - lstm_cell = LSTMCell(in_dims => hidden_dims) - classifier = Dense(hidden_dims => out_dims, sigmoid) - return @compact(; lstm_cell, classifier) do x::AbstractArray{T,2} where {T} - x = reshape(x, size(x)..., 1) - x_init, x_rest = Iterators.peel(LuxOps.eachslice(x, Val(2))) - y, carry = lstm_cell(x_init) - output = [vec(classifier(y))] - for x in x_rest - y, carry = lstm_cell((x, carry)) - output = vcat(output, [vec(classifier(y))]) - end - @return hcat(output...) - end -end - -lstm_model = LSTMCompact(3, 10, 1) -lstm_func = (x,ps) - - -q_nn_ps, q_nn_st = Lux.setup(StableRNGs.LehmerRNG(1234), q_nn) -state_q_nn = Lux.StatefulLuxLayer(q_nn, nothing, q_nn_st) - -q_nn_params_ca = ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), q_nn))) -q_nn_params_vec = Vector(q_nn_params_ca) -q_axes = getaxes(q_nn_params_ca) -q_nn_func1 = (x, q) -> LuxCore.stateless_apply(q_nn, x, ComponentVector(q, q_axes)) -q_nn_func2 = (x, q) -> LuxCore.stateless_apply(q_nn, x, q) - -chain_params = first(@parameters qnn_ps[1:length(q_nn_params_ca)] = Vector(q_nn_params_ca)) -lazy_params = Symbolics.array_term((x, axes) -> ComponentVector(x, axes), chain_params, q_axes, size=size(chain_params)) - -nn_input = first(@variables x[1:2]) -nn_output = first(@variables y[1:1]) -nn_input_vars = @variables a b c -flux_expr = LuxCore.stateless_apply(q_nn, nn_input, lazy_params) - -assign_list = [ - Assignment(nn_input, MakeArray([a, b], Vector)), - Assignment(nn_output, flux_expr[1]), - Assignment(c, nn_output[1]), -] -outputs_arr = MakeArray([c], Vector) -func_args = [DestructuredArgs([a, b]), DestructuredArgs([chain_params])] - -call_func = eval(toexpr(Func(func_args, [], Let(assign_list, outputs_arr, false)))) - -input_matrix = rand(2, 1000) -q_nn_func3 = (x) -> q_nn_func2(x, ComponentVector(q_nn_params_ca, q_axes)) -@btime q_nn_func1.(eachslice(input_matrix, dims=2), Ref(q_nn_params_vec)) -@btime q_nn_func2.(eachslice(input_matrix, dims=2), Ref(q_nn_params_ca)) -@btime q_nn_func3.(eachslice(input_matrix, dims=2)) -# @btime call_func.(eachslice(input_matrix, dims=2), Ref([q_nn_params_vec])) -# @btime [ComponentVector(q_nn_params_vec, q_axes) for _ in 1:1000]; \ No newline at end of file diff --git a/doc/tutorials/extent/check_nnfunc_speed.jl b/doc/tutorials/extent/check_nnfunc_speed.jl deleted file mode 100644 index a6ddd4e..0000000 --- a/doc/tutorials/extent/check_nnfunc_speed.jl +++ /dev/null @@ -1,53 +0,0 @@ -using Lux -using ComponentArrays -using Symbolics -using SymbolicUtils -using SymbolicUtils.Code -using StableRNGs -using ModelingToolkit -using BenchmarkTools - -q_nn = Lux.Chain( - Lux.Dense(2 => 16, tanh), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 1, leakyrelu), - name=:qnn -) -q_nn_ps, q_nn_st = Lux.setup(StableRNGs.LehmerRNG(1234), q_nn) -q_NN_stateful = Lux.StatefulLuxLayer{true}(q_nn, nothing, q_nn_st) # 不能用symbolic表示 -q_nn_params_ca = ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), q_nn))) -q_nn_states_ca = ComponentVector((Lux.setup(StableRNGs.LehmerRNG(1234), q_nn))[2]) -q_nn_params_vec = Vector(q_nn_params_ca) -q_nn_states_vec = Vector(q_nn_states_ca) -q_axes = getaxes(q_nn_params_ca) -q_nn_func1 = (x, q) -> LuxCore.stateless_apply(q_nn, x, ComponentVector(q, q_axes)) -q_nn_func2 = (x, q) -> LuxCore.stateless_apply(q_nn, x, q) -q_nn_func3 = (x, q) -> LuxCore.apply(q_NN_stateful, x, q) - -chain_params = first(@parameters qnn_ps[1:length(q_nn_params_ca)] = Vector(q_nn_params_ca)) -lazy_params = Symbolics.array_term((x, axes) -> ComponentVector(x, axes), chain_params, q_axes, size=size(chain_params)) - -nn_input = first(@variables x[1:2]) -nn_output = first(@variables y[1:1]) -nn_input_vars = @variables a b c -flux_expr = LuxCore.apply(q_nn, nn_input, lazy_params, q_nn_st) -flux_expr2 = LuxCore.stateless_apply(q_nn, nn_input, lazy_params) - -assign_list = [ - Assignment(nn_input, MakeArray([a, b], Vector)), - Assignment(nn_output, flux_expr[1]), - Assignment(c, nn_output[1]), -] -outputs_arr = MakeArray([c], Vector) -func_args = [DestructuredArgs([a, b]), DestructuredArgs([chain_params])] - -call_func = eval(toexpr(Func(func_args, [], Let(assign_list, outputs_arr, false)))) - -input_matrix = rand(2, 1000) -q_nn_func3 = (x) -> q_nn_func2(x, ComponentVector(q_nn_params_ca, q_axes)) -@btime q_nn_func1.(eachslice(input_matrix, dims=2), Ref(q_nn_params_vec)) -@btime q_nn_func2.(eachslice(input_matrix, dims=2), Ref(q_nn_params_ca)) -@btime q_nn_func3.(eachslice(input_matrix, dims=2)) -# @btime call_func.(eachslice(input_matrix, dims=2), Ref([q_nn_params_vec])) -# @btime [ComponentVector(q_nn_params_vec, q_axes) for _ in 1:1000]; \ No newline at end of file diff --git a/doc/tutorials/extent/flexible_and_efficent.md b/doc/tutorials/extent/flexible_and_efficent.md deleted file mode 100644 index f31f537..0000000 --- a/doc/tutorials/extent/flexible_and_efficent.md +++ /dev/null @@ -1 +0,0 @@ -# 讨论灵活构建所牺牲的计算效率 \ No newline at end of file diff --git a/doc/tutorials/extent/freeze_parameters.md b/doc/tutorials/extent/freeze_parameters.md deleted file mode 100644 index e69de29..0000000 diff --git a/doc/tutorials/extent/parameter_estimate.md b/doc/tutorials/extent/parameter_estimate.md deleted file mode 100644 index 374cd62..0000000 --- a/doc/tutorials/extent/parameter_estimate.md +++ /dev/null @@ -1 +0,0 @@ -# 讨论动态参数与基于HRUs属性的参数 \ No newline at end of file diff --git a/doc/tutorials/extent/share_parameters.md b/doc/tutorials/extent/share_parameters.md deleted file mode 100644 index 00821b0..0000000 --- a/doc/tutorials/extent/share_parameters.md +++ /dev/null @@ -1,2 +0,0 @@ -# Share parameters in multiple HRUs - diff --git a/doc/tutorials/extent/use_the_wrapper.jl b/doc/tutorials/extent/use_the_wrapper.jl deleted file mode 100644 index e69de29..0000000 diff --git a/doc/tutorials/implements/loss_functions.jl b/doc/tutorials/implements/loss_functions.jl deleted file mode 100644 index 539d6ff..0000000 --- a/doc/tutorials/implements/loss_functions.jl +++ /dev/null @@ -1,29 +0,0 @@ -""" - mean squared error -""" -mse(obs,sim) = mean((obs .- sim).^2) - -""" - nash sutcliffe efficient -""" -nse(obs,sim) = 1 - sum((obs .- sim).^2)/sum((obs .- mean(obs)).^2) - -""" - fhv(obs, sim, h=0.02) - -Calculate the high flow volume error (FHV) metric. -h: fraction of highest flows to consider (default is 0.02 or top 2%) -""" -function fhv(obs, sim, h=0.02) - # Sort discharges in descending order - obs_sorted = sort(obs, rev=true) - sim_sorted = sort(sim, rev=true) - - # Subset data to only top h flow values - n = round(Int, h * length(obs)) - obs_high = obs_sorted[1:n] - sim_high = sim_sorted[1:n] - - # Calculate FHV - return sum(sim_high - obs_high) / sum(obs_high) *100 -end \ No newline at end of file diff --git a/doc/tutorials/implements/plot/figures/dplHBV_predict.png b/doc/tutorials/implements/plot/figures/dplHBV_predict.png deleted file mode 100644 index 6bb37e5..0000000 Binary files a/doc/tutorials/implements/plot/figures/dplHBV_predict.png and /dev/null differ diff --git a/doc/tutorials/implements/plot/figures/exphydro_training.png b/doc/tutorials/implements/plot/figures/exphydro_training.png deleted file mode 100644 index 345cfe8..0000000 Binary files a/doc/tutorials/implements/plot/figures/exphydro_training.png and /dev/null differ diff --git a/doc/tutorials/implements/plot/figures/m50_nn_training.png b/doc/tutorials/implements/plot/figures/m50_nn_training.png deleted file mode 100644 index 488a2cf..0000000 Binary files a/doc/tutorials/implements/plot/figures/m50_nn_training.png and /dev/null differ diff --git a/doc/tutorials/implements/plot/figures/m50_training.png b/doc/tutorials/implements/plot/figures/m50_training.png deleted file mode 100644 index 7ca1e22..0000000 Binary files a/doc/tutorials/implements/plot/figures/m50_training.png and /dev/null differ diff --git a/doc/tutorials/implements/plot/figures/m50_training_0.001.png b/doc/tutorials/implements/plot/figures/m50_training_0.001.png deleted file mode 100644 index 8aa7d28..0000000 Binary files a/doc/tutorials/implements/plot/figures/m50_training_0.001.png and /dev/null differ diff --git a/doc/tutorials/implements/plot/figures/m50_training_0.01.png b/doc/tutorials/implements/plot/figures/m50_training_0.01.png deleted file mode 100644 index 7ca1e22..0000000 Binary files a/doc/tutorials/implements/plot/figures/m50_training_0.01.png and /dev/null differ diff --git a/doc/tutorials/implements/plot/plot_dplhbv.jl b/doc/tutorials/implements/plot/plot_dplhbv.jl deleted file mode 100644 index defd8a4..0000000 --- a/doc/tutorials/implements/plot/plot_dplhbv.jl +++ /dev/null @@ -1,37 +0,0 @@ -using JLD2 - -default(fontfamily="times") -# Create plot with customizations -p = plot(1:length(qobs_vec), qobs_vec, - label="observed", - color=:black, - alpha=1.0, - xlabel="Time Index", - ylabel="Flow (mm)", - legendfont=font("times", 10), - dpi=300, - xticks=0:1000:length(result.q)) - -plot!(1:length(result.q), result.q, - label="simulated-before-optimization", - alpha=0.6, - color=:orange) - -plot!(1:length(re_result.q), re_result.q, - label="simulated-after-optimization", - alpha=0.6, - color=RGB(0.0, 0.4, 1.0)) - -mse_value1, fhv_value1, nse_value1 = mse(qobs_vec, result.q), fhv(qobs_vec, result.q, 0.1), nse(qobs_vec, result.q) -mse_value2, fhv_value2, nse_value2 = mse(qobs_vec, re_result.q), fhv(qobs_vec, re_result.q, 0.1), nse(qobs_vec, re_result.q) - -# Add performance metrics as annotations -annotate!(length(result.q) / 3, maximum(qobs_vec) * 0.9, # Move first annotation to the left third - text("Before Optimization:\nMSE: $(round(mse_value1, digits=3))\nFHV: $(round(fhv_value1, digits=3))%\nNSE: $(round(nse_value1, digits=3))", - :right, 10, "times")) - -annotate!(2 * length(re_result.q) / 3, maximum(qobs_vec) * 0.9, # Move second annotation to the right third - text("After Optimization:\nMSE: $(round(mse_value2, digits=3))\nFHV: $(round(fhv_value2, digits=3))%\nNSE: $(round(nse_value2, digits=3))", - :right, 10, "times")) - -savefig("doc/tutorials/implements/plot/figures/dplHBV_predict.png") \ No newline at end of file diff --git a/doc/tutorials/implements/plot/plot_exphydro_train.jl b/doc/tutorials/implements/plot/plot_exphydro_train.jl deleted file mode 100644 index 6f35222..0000000 --- a/doc/tutorials/implements/plot/plot_exphydro_train.jl +++ /dev/null @@ -1,41 +0,0 @@ -using JLD2 -using Plots -using Statistics - -# Load the optimization results -opt_loss_df = load("doc/tutorials/implements/save/exphydro_opt.jld2", "loss_df") -default(fontfamily="times") -# Calculate moving average -function moving_average(data, window_size) - output = similar(data) - for i in 1:length(data) - start_idx = max(1, i - window_size + 1) - output[i] = mean(data[start_idx:i]) - end - return output -end - -# Create plot with customizations -p = plot(opt_loss_df.loss, - label="Original Loss", - color=:gray, - alpha=0.4, - xlabel="Iteration", - ylabel="MSE", - legendfont=font("times", 10), - tickfont=font("times", 10), - guidefont=font("times", 12), - xticks=0:2000:length(opt_loss_df.loss), - dpi=300) - -# Add moving average -window_size = 100 # Adjust this value to change the smoothing level -ma_loss = moving_average(opt_loss_df.loss, window_size) -plot!(ma_loss, - label="Moving Average (n=$window_size)", - color=:red, - linewidth=2, - alpha=0.8) - -# Save the figure -savefig(p, "doc/tutorials/implements/plot/figures/exphydro_training.png") \ No newline at end of file diff --git a/doc/tutorials/implements/plot/plot_m50_nn_train.jl b/doc/tutorials/implements/plot/plot_m50_nn_train.jl deleted file mode 100644 index e725645..0000000 --- a/doc/tutorials/implements/plot/plot_m50_nn_train.jl +++ /dev/null @@ -1,76 +0,0 @@ -using JLD2 -using Plots -using Statistics -using Measures - -# Load the optimization results -m50_nn_opt_result = load("doc/tutorials/implements/save/m50_nn_opt.jld2") - -epnn_loss_df = m50_nn_opt_result["epnn_loss_df"] -qnn_loss_df = m50_nn_opt_result["qnn_loss_df"] - -default(fontfamily="times") -# Calculate moving average -function moving_average(data, window_size) - output = similar(data) - for i in 1:length(data) - start_idx = max(1, i - window_size + 1) - output[i] = mean(data[start_idx:i]) - end - return output -end - - -function plot_losses(epnn_loss_df, qnn_loss_df) - # Create a figure with two subplots - p = plot(layout=(1, 2), size=(900, 300), dpi=300, - left_margin=5mm, # 增加左边距 - bottom_margin=5mm, # 增加底部边距 - right_margin=5mm) - - # Plot EPNN loss (subplot a) - window_size = 10 - plot!(p[1], epnn_loss_df.loss, - label="Original Loss", - color=:gray, - alpha=0.4, - xlabel="Iteration", - ylabel="MSE", - title="(a) NNep Training Loss", - legendfont=font("times", 10), - tickfont=font("times", 10), - guidefont=font("times", 12)) - - ma_loss = moving_average(epnn_loss_df.loss, window_size) - plot!(p[1], ma_loss, - label="Moving Average (n=$window_size)", - color=:red, - linewidth=2, - alpha=0.8) - - # Plot QNN loss (subplot b) - plot!(p[2], qnn_loss_df.loss, - label="Original Loss", - color=:gray, - alpha=0.4, - xlabel="Iteration", - ylabel="MSE", - title="(b) NNq Training Loss", - legendfont=font("times", 10), - tickfont=font("times", 10), - guidefont=font("times", 12)) - - ma_loss = moving_average(qnn_loss_df.loss, window_size) - plot!(p[2], ma_loss, - label="Moving Average (n=$window_size)", - color=:red, - linewidth=2, - alpha=0.8) - - # Save the figure - savefig(p, "doc/tutorials/implements/plot/figures/m50_nn_training.png") -end - -# Replace the original plot_loss calls with: -plot_losses(epnn_loss_df, qnn_loss_df) - diff --git a/doc/tutorials/implements/plot/plot_m50_training.jl b/doc/tutorials/implements/plot/plot_m50_training.jl deleted file mode 100644 index 2b7d5f7..0000000 --- a/doc/tutorials/implements/plot/plot_m50_training.jl +++ /dev/null @@ -1,39 +0,0 @@ -using JLD2 -using Plots -using Statistics -using Measures - -m50_result = load("doc/tutorials/implements/save/m50_opt.jld2") -opt_loss_df = m50_result["loss_df"] -# Calculate moving average -function moving_average(data, window_size) - output = similar(data) - for i in 1:length(data) - start_idx = max(1, i - window_size + 1) - output[i] = mean(data[start_idx:i]) - end - return output -end - -# Create plot with customizations -p = plot(opt_loss_df.loss, - label="Original Loss", - color=:gray, - alpha=0.4, - xlabel="Iteration", - ylabel="MSE", - legendfont=font("times", 10), - tickfont=font("times", 10), - guidefont=font("times", 12), - xticks=0:10:length(opt_loss_df.loss), - dpi=300) - -# Add moving average -window_size = 10 # Adjust this value to change the smoothing level -ma_loss = moving_average(opt_loss_df.loss, window_size) -plot!(ma_loss, - label="Moving Average (n=$window_size)", - color=:red, - linewidth=2, - alpha=0.8) -# savefig(p, "doc/tutorials/implements/plot/figures/m50_training_0.001.png") \ No newline at end of file diff --git a/doc/tutorials/implements/run_dplHBV.jl b/doc/tutorials/implements/run_dplHBV.jl deleted file mode 100644 index 5ccf756..0000000 --- a/doc/tutorials/implements/run_dplHBV.jl +++ /dev/null @@ -1,72 +0,0 @@ -using CSV -using Lux -using LuxCore -using Random -using DataFrames -using Symbolics -using ComponentArrays -using OrdinaryDiffEq -using ModelingToolkit -using BenchmarkTools -using StableRNGs -using DataInterpolations -using Optimization -using OptimizationOptimisers -using SciMLSensitivity -using JLD2 -using Plots -include("../../../src/HydroModels.jl") -include("../models/dplHBV.jl") -include("loss_functions.jl") - -#* load data -df = DataFrame(CSV.File("data/exphydro/01013500.csv")); -ts = collect(1:10000) -prcp_vec = df[ts, "prcp(mm/day)"] -temp_vec = df[ts, "tmean(C)"] -dayl_vec = df[ts, "dayl(day)"] -pet_vec = @. 29.8 * dayl_vec * 24 * 0.611 * exp((17.3 * temp_vec) / (temp_vec + 237.3)) / (temp_vec + 273.2) -qobs_vec = df[ts, "flow(mm)"] -input = (prcp=prcp_vec, pet=pet_vec, temp=temp_vec) -#* prepare parameters -psnn_ps, psnn_st = Lux.setup(StableRNG(123), params_nn) -psnn_ps_ca = ComponentVector(psnn_ps) -psnn_ps_vec = Vector(ComponentVector(psnn_ps)) -params = ComponentVector(TT=0.0, CFMAX=5.0, CWH=0.1, CFR=0.05, FC=200.0, LP=0.6, k0=0.06, k1=0.2, k2=0.1, PPERC=2, UZL=10) -nns = ComponentVector(NamedTuple{Tuple([nn_wrapper.meta.name])}([psnn_ps_vec])) -init_states = ComponentVector(suz=0.0, slz=0.0, soilwater=0.0, meltwater=0.0, snowpack=0.0) -pas = ComponentVector(params=params, initstates=init_states, nn=nns) -#* define config -config = (solver=HydroModels.ODESolver(), timeidx=ts, interp=LinearInterpolation) -#* run model -# @btime result = model(input, pas, timeidx=ts, convert_to_ntp=true) - -# sum((result.q .- qobs_vec) .^ 2) / sum((qobs_vec .- mean(qobs_vec)) .^2) -# # # #! set the tunable parameters boundary -# # #! prepare flow -tunable_pas = ComponentVector(params=params, nn=(pnn=psnn_ps_vec,)) -const_pas = ComponentVector(initstates=init_states) - -model_grad_opt = HydroModels.GradOptimizer(component=model, maxiters=100, adtype=AutoZygote(), solve_alg=Adam(1e-2)) -config = (solver=HydroModels.ODESolver(sensealg=BacksolveAdjoint(autodiff=true)), timeidx=ts, interp=LinearInterpolation) -hbv_hydro_opt_params, loss_df = model_grad_opt( - [input], [(q=qobs_vec,)], - tunable_pas=tunable_pas, - const_pas=const_pas, - return_loss_df=true -) - -# mse_value, fhv_value, nse_value = mse(qobs_vec, result.q), fhv(qobs_vec, result.q, 0.1), nse(qobs_vec, result.q) - -# plot(result.q, label="simulated-before-optimal") -# plot!(re_result.q, label="simulated-after-optimal") -# plot!(qobs_vec, label="observed") - -# hbv_hydro_opt_params = load("doc/tutorials/implements/save/dplHBV_opt.jld2", "opt_params") -# re_result = model(input, hbv_hydro_opt_params, timeidx=ts, convert_to_ntp=true) -# plot(re_result.q, label="simulated") -# plot!(qobs_vec, label="observed") -# 1 - sum((re_result.q .- qobs_vec) .^ 2) / sum((qobs_vec .- mean(qobs_vec)) .^2) - -# # save result -# save("doc/tutorials/implements/save/dplHBV_opt.jld2", "loss_df", loss_df, "opt_params", hbv_hydro_opt_params) \ No newline at end of file diff --git a/doc/tutorials/implements/run_exphydro_optimize.jl b/doc/tutorials/implements/run_exphydro_optimize.jl deleted file mode 100644 index 7e958fa..0000000 --- a/doc/tutorials/implements/run_exphydro_optimize.jl +++ /dev/null @@ -1,61 +0,0 @@ -using CSV -using DataFrames -using Lux -using ModelingToolkit -using LuxCore -using StableRNGs -using ComponentArrays -using DataInterpolations -using OrdinaryDiffEq -using Statistics -using BenchmarkTools -using Plots -using OptimizationBBO -using SciMLSensitivity -using JLD2 -# using HydroModels -include("../../../src/HydroModels.jl") -include("../models/exphydro.jl") -# model_grad_opt = HydroModels.GradOptimizer(component=exphydro_model, solve_alg=Adam(1e-2), adtype=Optimization.AutoForwardDiff(), maxiters=100) - - -# load data -file_path = "data/exphydro/01013500.csv" -data = CSV.File(file_path); -df = DataFrame(data); -ts = collect(1:10000) -input = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) -q_vec = df[ts, "flow(mm)"] - -model_hydro_opt = HydroModels.HydroOptimizer( - component=exphydro_model, - maxiters=10000, - warmup=100, - solve_alg=BBO_adaptive_de_rand_1_bin_radiuslimited(), - loss_func=(obs, sim) -> sum((obs .- sim) .^ 2) / length(obs) -) -tunable_pas = ComponentVector(params=ComponentVector( - f=0.01674478, Smax=1709.461015, Qmax=18.46996175, - Df=2.674548848, Tmax=0.175739196, Tmin=-2.092959084 -)) -const_pas = ComponentVector(initstates=ComponentVector(snowpack=0.0, soilwater=1300.0)) -config = (solver=HydroModels.ODESolver(), interp=LinearInterpolation) - -exphydro_hydro_opt_params, loss_df = model_hydro_opt( - [input], [(flow=q_vec,)], - tunable_pas=tunable_pas, - const_pas=const_pas, - config=[config], - lb=[0.0, 100.0, 10.0, 0.0, 0.0, -3.0], - ub=[0.1, 2000.0, 50.0, 5.0, 3.0, 0.0], - return_loss_df=true -) -output = exphydro_model(input, exphydro_hydro_opt_params, config=config, convert_to_ntp=true) -save("doc/tutorials/implements/save/exphydro_opt.jld2", "loss_df", loss_df, "opt_params", exphydro_hydro_opt_params, "output", output) -# exphydro_grad_opt_params, loss_df = model_grad_opt( -# [input], [(flow=q_vec,)], -# tunable_pas=tunable_pas, -# const_pas=const_pas, -# config=[config], -# return_loss_df=true -# ) \ No newline at end of file diff --git a/doc/tutorials/implements/run_grid_models.jl b/doc/tutorials/implements/run_grid_models.jl deleted file mode 100644 index f602426..0000000 --- a/doc/tutorials/implements/run_grid_models.jl +++ /dev/null @@ -1,51 +0,0 @@ -using DataFrames -using CSV -using JLD2 -using ComponentArrays -using HydroModels -using Plots -using OrdinaryDiffEq -using NamedTupleTools -include("../models/HBV.jl") - -# 加载流域连接关系信息 -grid_ids = collect(1:length(index_info)) -param_types = Symbol.(grid_ids) -grid_area = (0.1 * 111)^2 - -timeidx = collect(1:length(qobs))[1:9000] -# 准备模型的输入数据:Vector{NamedTuple} -input_data = Vector{NamedTuple}() -for id in grid_ids - push!(input_data, (prcp=grid_prec_df[timeidx, string(id)] .* 24, ep=grid_prec_df[timeidx, string(id)] .* 2.4)) -end - -# lumped model下的最优参数: 102.10581100749681 -2.57143626082281 61.515655243008084 2.3368971035090835 -# 初始化模型参数, 假设每个子流域享有一个参数 -basic_params = (x1=102.10581100749681, x2=-2.57143626082281, x3=61.515655243008084, x4=2.3368971035090835, lag=0.1) -initstates = (soilwater=0.0, routingstore=0.0, s_river=0.0) -area_coefs = NamedTuple{Tuple(param_types)}([(area_coef=grid_area,) for i in eachindex(param_types)]) -node_params = NamedTuple{Tuple(param_types)}(repeat([basic_params], length(grid_ids))) -node_params = merge_recursive(node_params, area_coefs) -node_initstates = NamedTuple{Tuple(param_types)}(repeat([initstates], length(grid_ids))) -node_pas = ComponentVector(params=node_params, initstates=node_initstates) - -gr4j_grid_models = load_gr4j_grid_model(flwdir_matrix, index_info, param_types) -base_config = (solver=ODESolver(),) -timeidx_hourly = collect(timeidx .- 1) .* 12 -# route_config = (timeidx=timeidx_hourly, solver=ODESolver(alg=Rosenbrock23(), reltol=1e-2, abstol=1e-2),) -route_config = (timeidx=timeidx_hourly, solver=ODESolver(),) -configs = [base_config, base_config, NamedTuple(), route_config] - -n = HydroModels.build_grid_digraph(flwdir_matrix, index_info) - -# 运行模型 -output = gr4j_grid_models(input_data, node_pas, config=configs, convert_to_ntp=true); -# output_105 = output[105] -# # 获取输出节点数据105 -# outlet_result = DataFrame(output_105) -# # outlet_result = DataFrame(output[1]) -# # node_2_result = DataFrame(output[2]) -# # # 绘制结果 -# plot(outlet_result.q_routed[1000:1500], label="Qsim_routed") -# plot!(qobs[1000:1500], label="Qobs") \ No newline at end of file diff --git a/doc/tutorials/implements/run_hbv_light.jl b/doc/tutorials/implements/run_hbv_light.jl deleted file mode 100644 index 380971c..0000000 --- a/doc/tutorials/implements/run_hbv_light.jl +++ /dev/null @@ -1,66 +0,0 @@ -using CSV -using Lux -using LuxCore -using Random -using DataFrames -using Symbolics -using ComponentArrays -using OrdinaryDiffEq -using ModelingToolkit -using BenchmarkTools -using StableRNGs -using Optimization -using OptimizationBBO -using HydroErrors -include("../../../src/HydroModels.jl") -include("../models/HBV.jl") - -# load data -df = DataFrame(CSV.File("data/exphydro/01013500.csv")); -ts = collect(1:10000) -prcp_vec = df[ts, "prcp(mm/day)"] -temp_vec = df[ts, "tmean(C)"] -dayl_vec = df[ts, "dayl(day)"] -qobs_vec = df[ts, "flow(mm)"] -pet_vec = @. 29.8 * dayl_vec * 24 * 0.611 * exp((17.3 * temp_vec) / (temp_vec + 237.3)) / (temp_vec + 273.2) -params = ComponentVector(TT=0.0, CFMAX=5.0, CWH=0.1, CFR=0.05, FC=200.0, LP=0.6, BETA=3.0, k0=0.06, k1=0.2, k2=0.1, PPERC=2, UZL=10) -init_states = ComponentVector(suz=0.0, slz=0.0, soilwater=0.0, meltwater=0.0, snowpack=0.0) -pas = ComponentVector(params=params, initstates=init_states) -input = (prcp=prcp_vec, pet=pet_vec, temp=temp_vec) -result = model(input, pas, timeidx=ts, convert_to_ntp=true) -#! set the tunable parameters boundary -lower_bounds = [-1.5, 1, 0.0, 0.0, 50.0, 0.3, 1.0, 0.05, 0.01, 0.001, 0.0, 0.0] -upper_bounds = [1.2, 8.0, 0.2, 0.1, 500.0, 1.0, 6.0, 0.5, 0.3, 0.15, 3.0, 70.0] -#! prepare flow -tunable_pas = ComponentVector(params=params) -const_pas = ComponentVector(initstates=init_states) - -model_hydro_opt = HydroModels.HydroOptimizer(component=model, maxiters=100) -hbv_hydro_opt_params, loss_df = model_hydro_opt( - [input], [(q=qobs_vec,)], - tunable_pas=tunable_pas, - const_pas=const_pas, - lb=lower_bounds, - ub=upper_bounds, - return_loss_df=true -) -plot(loss_df[!,:loss]) - -# #* ComponentVector{Float64}(params = (TT = -1.2223657527438707, CFMAX = 2.201359793941345, CWH = 0.022749518921432663, CFR = 0.058335602629828544, FC = 160.01327559173077, LP = 0.7042581781418978, -# #* beta = 5.580695551758287, k0 = 0.0500023960318018, k1 = 0.04573064980956475, k2 = 0.14881856483902567, PERC = 1.3367222956722589, UZL = 44.059927907190016)) -# #! model calibration -# best_pas = HydroModels.param_box_optim( -# hbv_model, -# tunable_pas=ComponentVector(params=params), -# const_pas=ComponentVector(initstates=init_states), -# input=input, -# target=output, -# timeidx=ts, -# lb=lower_bounds, -# ub=upper_bounds, -# solve_alg=BBO_adaptive_de_rand_1_bin_radiuslimited(), -# maxiters=1000, -# ) - -# result = hbv_model(input, HydroModels.merge_ca(pas, best_pas), timeidx=ts) -# HydroModels.nse(result.flow, qobs_vec) \ No newline at end of file diff --git a/doc/tutorials/implements/run_m100_optimize.jl b/doc/tutorials/implements/run_m100_optimize.jl deleted file mode 100644 index 370e814..0000000 --- a/doc/tutorials/implements/run_m100_optimize.jl +++ /dev/null @@ -1,153 +0,0 @@ -using CSV -using DataFrames -using Lux -using ModelingToolkit -using LuxCore -using StableRNGs -using ComponentArrays -using DataInterpolations -using OrdinaryDiffEq -using Statistics -using BenchmarkTools -using Plots -using OptimizationOptimisers -using SciMLSensitivity -# using HydroModels -include("../../../src/HydroModels.jl") - - -# include need add the module name: HydroModels -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -NeuralFlux = HydroModels.NeuralFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 - -#! parameters in the Exp-Hydro model -@parameters Tmin Tmax Df Smax f Qmax -#! parameters in normalize flux -@parameters snowpack_std snowpack_mean -@parameters soilwater_std soilwater_mean -@parameters prcp_std prcp_mean -@parameters temp_std temp_mean - -#! hydrological flux in the Exp-Hydro model -@variables prcp temp lday pet rainfall snowfall -@variables snowpack soilwater lday pet -@variables melt log_evap_div_lday log_flow asinh_melt asinh_ps asinh_pr -@variables norm_snw norm_slw norm_temp norm_prcp - -#! define the m100 NN -m100_nn = Lux.Chain( - Lux.Dense(4, 32, tanh), - Lux.Dense(32, 32, leakyrelu), - Lux.Dense(32, 32, leakyrelu), - Lux.Dense(32, 32, leakyrelu), - Lux.Dense(32, 32, leakyrelu), - Lux.Dense(32, 5), - name=:m100nn -) -m100_nn_params = Vector(ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), m100_nn)))) - -#! get init parameters for each NN - -#! define the soil water reservoir -m100_funcs = [ - #* normalize - HydroFlux([snowpack] => [norm_snw], [snowpack_mean, snowpack_std], exprs=[(snowpack - snowpack_mean) / snowpack_std]), - HydroFlux([soilwater] => [norm_slw], [soilwater_mean, soilwater_std], exprs=[(soilwater - soilwater_mean) / soilwater_std]), - HydroFlux([prcp] => [norm_prcp], [prcp_mean, prcp_std], exprs=[(prcp - prcp_mean) / prcp_std]), - HydroFlux([temp] => [norm_temp], [temp_mean, temp_std], exprs=[(temp - temp_mean) / temp_std]), - NeuralFlux([norm_snw, norm_slw, norm_prcp, norm_temp] => [log_evap_div_lday, log_flow, asinh_melt, asinh_ps, asinh_pr], m100_nn), - HydroFlux([asinh_melt, snowpack] => [melt], exprs=[relu(sinh(asinh_melt) * step_func(snowpack))]), -] - -m100_nn_flux = soil_funcs[end-1] -state_expr1 = relu(sinh(asinh_ps)) * step_func(-temp) - melt -state_expr2 = relu(sinh(asinh_pr)) + melt - step_func(soilwater) * lday * exp(log_evap_div_lday) - step_func(soilwater) * exp(log_flow) -m100_dfuncs = [ - StateFlux([asinh_ps, temp, melt], snowpack, Num[], expr=state_expr1), - StateFlux([asinh_pr, melt, soilwater, lday, log_evap_div_lday, log_flow], soilwater, Num[], expr=state_expr2), -] -m100_bucket = HydroBucket(name=:m100_bucket, funcs=m100_funcs, dfuncs=m100_dfuncs) -m100_bucket.ode_func -#! define the Exp-Hydro model -m100_model = HydroModel(name=:m100, components=[m100_bucket]); - -# load data -data = CSV.read("data/exphydro/01013500.csv", DataFrame) - -# predefine the parameters -f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 - -# load data -file_path = "data/m50/01013500.csv" -data = CSV.File(file_path) -df = DataFrame(data) -ts = collect(1:10000) -# cols: Baseflow,Evap,Flow,Infiltration,Lday,Melt,Pet,Prcp,Rainfall,Snowfall,Surfaceflow,Temp,SoilWater,SnowWater -lday_vec = df[ts, "Lday"] -prcp_vec = df[ts, "Prcp"] -temp_vec = df[ts, "Temp"] -flow_vec = df[ts, "Flow"] - -log_flow_vec = log.(flow_vec) -log_evap_div_lday_vec = log.(df[ts, "Evap"] ./ lday_vec) -asinh_melt_vec = asinh.(df[ts, "Melt"]) -asinh_ps_vec = asinh.(df[ts, "Snowfall"]) -asinh_pr_vec = asinh.(df[ts, "Rainfall"]) -norm_prcp_vec = (prcp_vec .- mean(prcp_vec)) ./ std(prcp_vec) -norm_temp_vec = (temp_vec .- mean(temp_vec)) ./ std(temp_vec) -norm_snw_vec = (df[ts, "SnowWater"] .- mean(df[ts, "SnowWater"])) ./ std(df[ts, "SnowWater"]) -norm_slw_vec = (df[ts, "SoilWater"] .- mean(df[ts, "SoilWater"])) ./ std(df[ts, "SoilWater"]) -nn_input = (norm_snw=norm_snw_vec, norm_slw=norm_slw_vec, norm_temp=norm_temp_vec, norm_prcp=norm_prcp_vec) - -nn_grad_opt = HydroModels.GradOptimizer(component=m100_nn_flux, solve_alg=Adam(1e-2), adtype=Optimization.AutoZygote(), maxiters=1000) -nn_input_matrix = Matrix(reduce(hcat, collect(nn_input[HydroModels.get_input_names(m100_nn_flux)]))') -nn_output = ( - log_evap_div_lday=log_evap_div_lday_vec, log_flow=log_flow_vec, - asinh_melt=asinh_melt_vec, asinh_ps=asinh_ps_vec, asinh_pr=asinh_pr_vec -) - -nn_opt_params, nn_loss_df = nn_grad_opt( - [nn_input_matrix], [nn_output], - tunable_pas=ComponentVector(nn=(m100nn=m100_nn_params,)), - const_pas=ComponentVector(), - return_loss_df=true -) -norm_pas = ComponentVector( - snowpack_mean=mean(norm_snw_vec), soilwater_mean=mean(norm_slw_vec), prcp_mean=mean(norm_prcp_vec), temp_mean=mean(norm_temp_vec), - snowpack_std=std(norm_snw_vec), soilwater_std=std(norm_slw_vec), prcp_std=std(norm_prcp_vec), temp_std=std(norm_temp_vec) -) -m100_const_pas = ComponentVector( - initstates=ComponentVector(snowpack=0.0, soilwater=1300.0), - params=norm_pas -) -m100_input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec) -# 5.080 s (15939665 allocations: 16.79 GiB) -# @btime m100_model(m100_input, ComponentVector(nn=(m100nn=nn_opt_params,), params=norm_pas, initstates=ComponentVector(snowpack=0.0, soilwater=1300.0))) - -m100_opt = HydroModels.GradOptimizer(component=m100_model, solve_alg=Adam(1e-2), adtype=Optimization.AutoZygote(), maxiters=100) -config = (solver=HydroModels.ODESolver(sensealg=BacksolveAdjoint(autodiff=ZygoteVJP())), interp=LinearInterpolation) -norm_pas = ComponentVector( - snowpack_mean=mean(norm_snw_vec), soilwater_mean=mean(norm_slw_vec), prcp_mean=mean(norm_prcp_vec), temp_mean=mean(norm_temp_vec), - snowpack_std=std(norm_snw_vec), soilwater_std=std(norm_slw_vec), prcp_std=std(norm_prcp_vec), temp_std=std(norm_temp_vec) -) -m100_const_pas = ComponentVector( - initstates=ComponentVector(snowpack=0.0, soilwater=1300.0), - params=norm_pas -) -m100_tunable_pas = ComponentVector( - nn=ComponentVector(m100nn=m100_nn_params) -) -m100_input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec) -m100_opt_params, m100_loss_df = m100_opt( - [m100_input], [nn_output], - tunable_pas=m100_tunable_pas, - const_pas=m100_const_pas, - config=[config], - return_loss_df=true -) -# # plot(m50_loss_df[!,:loss]) -# @btime result = m50_model(m50_input, m50_opt_params; config) diff --git a/doc/tutorials/implements/run_m50_optimize.jl b/doc/tutorials/implements/run_m50_optimize.jl deleted file mode 100644 index ed0fb7e..0000000 --- a/doc/tutorials/implements/run_m50_optimize.jl +++ /dev/null @@ -1,102 +0,0 @@ -using CSV -using DataFrames -using Lux -using ModelingToolkit -using LuxCore -using StableRNGs -using ComponentArrays -using DataInterpolations -using OrdinaryDiffEq -using Statistics -using BenchmarkTools -using Plots -using JLD2 -using OptimizationOptimisers -using SciMLSensitivity -# using HydroModels -include("../../../src/HydroModels.jl") -include("../models/m50.jl") - -# load data -data = CSV.read("data/exphydro/01013500.csv", DataFrame) -ts = collect(1:10000) -input = (lday=data[ts, "dayl(day)"], temp=data[ts, "tmean(C)"], prcp=data[ts, "prcp(mm/day)"]) -flow_vec = data[ts, "flow(mm)"] -load_exphydro = load("doc/tutorials/implements/save/exphydro_opt.jld2") -exphydro_output = load_exphydro["output"] -exphydro_opt_params = load_exphydro["opt_params"] -# predefine the parameters -Df, Tmax, Tmin = exphydro_opt_params.params.Df, exphydro_opt_params.params.Tmax, exphydro_opt_params.params.Tmin - -#* prepare the nn input -log_flow_vec = log.(exphydro_output.flow) -log_evap_div_lday_vec = log.(exphydro_output.evap ./ exphydro_output.lday) -norm_prcp_vec = (exphydro_output.prcp .- mean(exphydro_output.prcp)) ./ std(exphydro_output.prcp) -norm_temp_vec = (exphydro_output.temp .- mean(exphydro_output.temp)) ./ std(exphydro_output.temp) -norm_snw_vec = (exphydro_output.snowpack .- mean(exphydro_output.snowpack)) ./ std(exphydro_output.snowpack) -norm_slw_vec = (exphydro_output.soilwater .- mean(exphydro_output.soilwater)) ./ std(exphydro_output.soilwater) -nn_input = (norm_snw=norm_snw_vec, norm_slw=norm_slw_vec, norm_temp=norm_temp_vec, norm_prcp=norm_prcp_vec) -ep_input_matrix = Matrix(reduce(hcat, collect(nn_input[HydroModels.get_input_names(ep_nn_flux)]))') -q_input_matrix = Matrix(reduce(hcat, collect(nn_input[HydroModels.get_input_names(q_nn_flux)]))') - -#* train the ep nn -ep_grad_opt = HydroModels.GradOptimizer(component=ep_nn_flux, solve_alg=Adam(1e-2), adtype=AutoZygote(), maxiters=1000) -ep_output = (log_evap_div_lday=log_evap_div_lday_vec,) -ep_opt_params, epnn_loss_df = ep_grad_opt( - [ep_input_matrix], [ep_output], - tunable_pas=ComponentVector(nn=(epnn=ep_nn_params,)), - const_pas=ComponentVector(), - return_loss_df=true -) -#* train the q nn -q_grad_opt = HydroModels.GradOptimizer(component=q_nn_flux, solve_alg=Adam(1e-2), adtype=AutoZygote(), maxiters=1000) -q_opt_params, qnn_loss_df = q_grad_opt( - [q_input_matrix], [(log_flow=log_flow_vec,)], - tunable_pas=ComponentVector(nn=(qnn=q_nn_params,)), - const_pas=ComponentVector(), - return_loss_df=true -) -q_flux_output = q_nn_flux(q_input_matrix, q_opt_params) - -# save("doc/tutorials/implements/save/m50_nn_opt.jld2", "epnn_params", ep_opt_params, "qnn_params", q_opt_params, "epnn_loss_df", epnn_loss_df, "qnn_loss_df", qnn_loss_df) - -#* define parameters -norm_pas = ComponentVector( - snowpack_mean=mean(exphydro_output.snowpack), soilwater_mean=mean(exphydro_output.snowpack), prcp_mean=mean(input.prcp), temp_mean=mean(input.temp), - snowpack_std=std(exphydro_output.snowpack), soilwater_std=std(exphydro_output.snowpack), prcp_std=std(input.prcp), temp_std=std(input.temp) -) -m50_const_pas = ComponentVector( - initstates=ComponentVector(snowpack=0.0, soilwater=1300.0), - params=ComponentVector(Tmin=Tmin, Tmax=Tmax, Df=Df; norm_pas...) -) -m50_tunable_pas = ComponentVector( - nn=ComponentVector(epnn=ep_nn_params, qnn=q_nn_params) -) -#* build optimizer for m50 model -m50_opt = HydroModels.GradOptimizer(component=m50_model, solve_alg=Adam(1e-2), adtype=AutoZygote(), maxiters=100) - -#* prepare input and config -m50_input = (prcp=exphydro_output.prcp, lday=exphydro_output.lday, temp=exphydro_output.temp) -config = (solver=HydroModels.ODESolver(sensealg=BacksolveAdjoint(autojacvec=ZygoteVJP())), interp=LinearInterpolation, alg=BS3()) -q_output = (flow=flow_vec,) - -#* optimize the model -m50_opt_params, m50_loss_df = m50_opt( - [m50_input], [q_output], - tunable_pas=m50_tunable_pas, - const_pas=m50_const_pas, - config=[config], - return_loss_df=true -) -save("doc/tutorials/implements/save/m50_opt.jld2", "loss_df", m50_loss_df, "opt_params", - m50_opt_params, "epnn_params", ep_opt_params, "qnn_params", q_opt_params) - -m50_opt_params = load("doc/tutorials/implements/save/m50_opt.jld2")["opt_params"] -m50_output = m50_model(input, m50_opt_params, config=config, convert_to_ntp=true) -result = (exphydro=exphydro_output.flow, m50=exp.(m50_output.log_flow), sim=flow_vec) -# plot(m50_output.flow) -# plot(exp.(q_flux_output)[1,:]) -# plot!(exphydro_output.flow) -# plot!(flow_vec) - -# plot(m50_loss_df.loss) \ No newline at end of file diff --git a/doc/tutorials/implements/run_rapid_models.jl b/doc/tutorials/implements/run_rapid_models.jl deleted file mode 100644 index 9828ad3..0000000 --- a/doc/tutorials/implements/run_rapid_models.jl +++ /dev/null @@ -1,44 +0,0 @@ -using DataFrames -using CSV -using JLD2 -using ComponentArrays -using Plots -using HydroModels -using OrdinaryDiffEq - -include("load_data.jl") -include("models/gr4j.jl") - -# 加载流域连接关系信息 -dg8, hybas_id = load("data/jld2/sub_basin_network_8.jld2", "dg8", "hybas_id") - -# 准备模型的输入数据:Vector{NamedTuple} -input_data = Vector{NamedTuple}() -timeidx = collect(1:length(qobs)) -for id in hybas_id - push!(input_data, (prcp=vector_prec_df[timeidx, string(id)] .* 24, ep=vector_prec_df[timeidx, string(id)] .* 2.4)) -end - -# lumped model下的最优参数: 102.10581100749681 -2.57143626082281 61.515655243008084 2.3368971035090835 -# 初始化模型参数, 假设每个子流域享有一个参数 -basic_params = (x1=102.10581100749681, x2=-2.57143626082281, x3=61.515655243008084, x4=2.3368971035090835, k=1.0, x=0.5) -initstates = (soilwater=0.0, routingstore=0.0) -param_types = Symbol.(hybas_id) -node_params = NamedTuple{Tuple(param_types)}(repeat([basic_params], length(hybas_id))) -node_initstates = NamedTuple{Tuple(param_types)}(repeat([initstates], length(hybas_id))) -node_pas = ComponentVector(params=node_params, initstates=node_initstates) -gr4j_vector_models = load_gr4j_rapid_model(dg8, subasin_areas) -# 运行模型 -timeidx_hourly = collect(timeidx) .* 12 -base_config = (solver=ODESolver(),) -route_config = (solver=DiscreteSolver(), delta_t=12.0, timeidx=timeidx_hourly) -configs = [base_config, base_config, route_config] -output = gr4j_vector_models(input_data, node_pas, config=configs, convert_to_ntp=true) -outlet_result = DataFrame(output[1]) -node_2_result = DataFrame(output[2]) - -# # 绘制结果 -plot(outlet_result.flow_routed[9100:10000], label="Qsim") -plot!(qobs[9100:10000], label="Qobs") -# using HydroErrors -# HydroErrors.r2(outlet_result.flow_routed, qobs[timeidx]) diff --git a/doc/tutorials/implements/run_vector_models.jl b/doc/tutorials/implements/run_vector_models.jl deleted file mode 100644 index 718676ca..0000000 --- a/doc/tutorials/implements/run_vector_models.jl +++ /dev/null @@ -1,49 +0,0 @@ -using DataFrames -using CSV -using JLD2 -using ComponentArrays -using Plots -using HydroModels -using OrdinaryDiffEq -using NamedTupleTools - -include("load_data.jl") -include("models/gr4j.jl") - -# 加载流域连接关系信息 -dg8, hybas_id = load("data/jld2/sub_basin_network_8.jld2", "dg8", "hybas_id") - -# 准备模型的输入数据:Vector{NamedTuple} -input_data = Vector{NamedTuple}() -timeidx = collect(1:length(qobs)) -for id in hybas_id - push!(input_data, (prcp=vector_prec_df[timeidx, string(id)] .* 24, ep=vector_prec_df[timeidx, string(id)] .* 2.4)) -end - -# lumped model下的最优参数: 102.10581100749681 -2.57143626082281 61.515655243008084 2.3368971035090835 -# 初始化模型参数, 假设每个子流域享有一个参数 subasin_areas -basic_params = (x1=202.10581100749681, x2=-2.57143626082281, x3=31.515655243008084, x4=3.3368971035090835, lag=0.1) -initstates = (soilwater=0.0, routingstore=0.0, s_river=0.0) -param_types = Symbol.(hybas_id) -area_coefs = @. 24 * 3600 / (subasin_areas * 1e6) * 1e3 -area_coefs = NamedTuple{Tuple(param_types)}([(area_coef=area_coefs[i],) for i in eachindex(area_coefs)]) -node_params = NamedTuple{Tuple(param_types)}(repeat([basic_params], length(hybas_id))) -node_params = merge_recursive(node_params, area_coefs) -node_initstates = NamedTuple{Tuple(param_types)}(repeat([initstates], length(hybas_id))) -node_pas = ComponentVector(params=node_params, initstates=node_initstates) -gr4j_vector_models = load_gr4j_vector_model(dg8, param_types) -# 运行模型 -timeidx_hourly = collect(timeidx) .* 12 -base_config = (solver=ODESolver(),) -convert_config = NamedTuple() -route_config = (solver=ODESolver(), delta_t=12.0, timeidx=timeidx_hourly) -configs = [base_config, base_config, convert_config, route_config] -@time output = gr4j_vector_models(input_data, node_pas, config=configs, convert_to_ntp=true) -outlet_result = DataFrame(output[1]) -node_2_result = DataFrame(output[2]) - -# # 绘制结果 -plot(output[1].q_routed[2500:2700], label="Qsim") -plot!(qobs[2500:2700], label="Qobs") -# using HydroErrors -# HydroErrors.r2(outlet_result.flow_routed, qobs[timeidx]) diff --git a/doc/tutorials/implements/save/dplHBV_opt.jld2 b/doc/tutorials/implements/save/dplHBV_opt.jld2 deleted file mode 100644 index 25d888a..0000000 Binary files a/doc/tutorials/implements/save/dplHBV_opt.jld2 and /dev/null differ diff --git a/doc/tutorials/implements/save/exphydro_opt.jld2 b/doc/tutorials/implements/save/exphydro_opt.jld2 deleted file mode 100644 index 1401699..0000000 Binary files a/doc/tutorials/implements/save/exphydro_opt.jld2 and /dev/null differ diff --git a/doc/tutorials/implements/save/m50_nn_opt.jld2 b/doc/tutorials/implements/save/m50_nn_opt.jld2 deleted file mode 100644 index 4ff62d7..0000000 Binary files a/doc/tutorials/implements/save/m50_nn_opt.jld2 and /dev/null differ diff --git a/doc/tutorials/implements/save/m50_opt.jld2 b/doc/tutorials/implements/save/m50_opt.jld2 deleted file mode 100644 index 188cb78..0000000 Binary files a/doc/tutorials/implements/save/m50_opt.jld2 and /dev/null differ diff --git a/doc/tutorials/implements/save/m50_opt_forwarddiff.jld2 b/doc/tutorials/implements/save/m50_opt_forwarddiff.jld2 deleted file mode 100644 index 0eed9cb..0000000 Binary files a/doc/tutorials/implements/save/m50_opt_forwarddiff.jld2 and /dev/null differ diff --git a/doc/tutorials/models/HBV.jl b/doc/tutorials/models/HBV.jl deleted file mode 100644 index bb2ff5d..0000000 --- a/doc/tutorials/models/HBV.jl +++ /dev/null @@ -1,59 +0,0 @@ -using ModelingToolkit - -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -NeuralFlux = HydroModels.NeuralFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel - -@variables soilwater snowpack meltwater suz slz -@variables prcp pet temp - -@variables rainfall snowfall -@variables melt refreeze infil -@variables wetness excess recharge evap -@variables q0 q1 q2 q perc - -@parameters TT CFMAX CFR CWH LP FC BETA PPERC UZL k0 k1 k2 kp - -#* snowfall and rainfall split flux -split_flux = HydroFlux([prcp, temp] => [snowfall, rainfall], [TT], exprs=[step_func(TT - temp) * prcp, step_func(temp - TT) * prcp]) -#* snowpack bucket -snow_funcs = [ - HydroFlux([temp, snowpack] => [melt], [TT, CFMAX], exprs=[min(snowpack, max(0.0, temp - TT) * CFMAX)]), - HydroFlux([temp, meltwater] => [refreeze], [TT, CFR, CFMAX], - exprs=[min(max((TT - temp), 0.0) * CFR * CFMAX, meltwater)]), - HydroFlux([meltwater] => [infil], [CWH], exprs=[max(0.0, meltwater - snowpack * CWH)]) -] -snow_dfuncs = [StateFlux([snowfall, refreeze] => [melt], snowpack), StateFlux([melt] => [refreeze, infil], meltwater)] -snow_bucket = HydroBucket(name=:hbv_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - -#* soilwater bucket -soil_funcs = [ - HydroFlux([infil, rainfall] => [recharge], [FC, BETA], exprs=[(rainfall + infil) * clamp((max(soilwater / FC,0.0))^BETA, 0, 1)]), - HydroFlux([soilwater] => [excess], [FC], exprs=[max(soilwater - FC, 0.0)]), - HydroFlux([soilwater, pet] => [evap], [LP, FC], exprs=[clamp(soilwater / (LP * FC), 0, 1) * pet]), -] -soil_dfuncs = [StateFlux([rainfall, infil] => [recharge, excess, evap], soilwater)] -soil_bucket = HydroBucket(name=:hbv_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) - -zone_funcs = [ - HydroFlux([suz] => [perc], [PPERC], exprs=[suz * PPERC]), - HydroFlux([suz] => [q0], [UZL, k0], exprs=[max(0.0, suz - UZL) * k0]), - HydroFlux([suz] => [q1], [k1], exprs=[suz * k1]), - HydroFlux([slz] => [q2], [k2], exprs=[slz * k2]), - HydroFlux([q0, q1, q2] => [q], exprs=[q0 + q1 + q2]), -] - -zone_dfuncs = [ - StateFlux([recharge, excess] => [perc, q0, q1], suz), - StateFlux([perc] => [q2], slz), -] - -zone_bucket = HydroBucket( - name=:hbv_zone, - funcs=zone_funcs, - dfuncs=zone_dfuncs, -) - -model = HydroModel(name=:dpl_hbv, components=[split_flux, snow_bucket, soil_bucket, zone_bucket]) \ No newline at end of file diff --git a/doc/tutorials/models/LSTM.jl b/doc/tutorials/models/LSTM.jl deleted file mode 100644 index 528ada6..0000000 --- a/doc/tutorials/models/LSTM.jl +++ /dev/null @@ -1,48 +0,0 @@ -using Lux -using Lux: AbstractExplicitContainerLayer -using LuxCore -using StableRNGs - -struct SpiralClassifier{L,C} <: AbstractExplicitContainerLayer{(:lstm_cell, :classifier)} - lstm_cell::L - classifier::C -end - -function SpiralClassifier(in_dims, hidden_dims, out_dims) - return SpiralClassifier( - LSTMCell(in_dims => hidden_dims), Dense(hidden_dims => out_dims, sigmoid)) -end - -function (s::SpiralClassifier)( - x::AbstractArray{T,3}, ps::NamedTuple, st::NamedTuple) where {T} - # First we will have to run the sequence through the LSTM Cell - # The first call to LSTM Cell will create the initial hidden state - # See that the parameters and states are automatically populated into a field called - # `lstm_cell` We use `eachslice` to get the elements in the sequence without copying, - # and `Iterators.peel` to split out the first element for LSTM initialization. - x_init, x_rest = Iterators.peel(LuxOps.eachslice(x, Val(2))) - (y, carry), st_lstm = s.lstm_cell(x_init, ps.lstm_cell, st.lstm_cell) - # Now that we have the hidden state and memory in `carry` we will pass the input and - # `carry` jointly - for x in x_rest - (y, carry), st_lstm = s.lstm_cell((x, carry), ps.lstm_cell, st_lstm) - end - # After running through the sequence we will pass the output through the classifier - y, st_classifier = s.classifier(y, ps.classifier, st.classifier) - # Finally remember to create the updated state - st = merge(st, (classifier=st_classifier, lstm_cell=st_lstm)) - return vec(y), st -end - -classify = SpiralClassifier(3, 10, 1) -classify_func = (x, ps, st) -> LuxCore.apply(classify, x, ps, st) - -classify_func(ones(3, 10, 1),) - -lce = Lux.LSTMCell(3 => 10) -lps, lst = Lux.setup(StableRNGs.LehmerRNG(1234), lce) - -lce_func = (x, ps, st) -> LuxCore.apply(lce, x, ps, st)[1] - -re = lce_func(ones(3, 10), lps, lst) -length(re[2]) \ No newline at end of file diff --git a/doc/tutorials/models/dplHBV.jl b/doc/tutorials/models/dplHBV.jl deleted file mode 100644 index 0889477..0000000 --- a/doc/tutorials/models/dplHBV.jl +++ /dev/null @@ -1,68 +0,0 @@ -using ModelingToolkit - -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -NeuralFlux = HydroModels.NeuralFlux -HydroBucket = HydroModels.HydroBucket -NeuralWrapper = HydroModels.NeuralWrapper -HydroModel = HydroModels.HydroModel -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 - -function LSTMCompact(in_dims, hidden_dims, out_dims) - lstm_cell = LSTMCell(in_dims => hidden_dims) - classifier = Dense(hidden_dims => out_dims, sigmoid) - return @compact(; lstm_cell, classifier) do x::AbstractArray{T,2} where {T} - x = reshape(x, size(x)..., 1) - x_init, x_rest = Iterators.peel(LuxOps.eachslice(x, Val(2))) - y, carry = lstm_cell(x_init) - output = [vec(classifier(y))] - for x in x_rest - y, carry = lstm_cell((x, carry)) - output = vcat(output, [vec(classifier(y))]) - end - @return reduce(hcat, output) - end -end - -@variables soilwater snowpack meltwater suz slz -@variables prcp pet temp -@variables rainfall snowfall melt refreeze infil excess recharge evap q0 q1 q2 q perc -@parameters TT CFMAX CFR CWH LP FC PPERC UZL k0 k1 k2 kp -@variables BETA GAMMA -#* parameters estimate by NN -params_nn = LSTMCompact(3, 10, 2) -nn_wrapper = HydroModels.NeuralWrapper([prcp, temp, pet] => [BETA, GAMMA], params_nn, name=:pnn) - -#* snowfall and rainfall split flux -split_flux = HydroFlux([prcp, temp] => [snowfall, rainfall], [TT], - exprs=[step_func(TT - temp) * prcp, step_func(temp - TT) * prcp]) -#* snowpack bucket -snow_funcs = [ - HydroFlux([temp, snowpack] => [melt], [TT, CFMAX], exprs=[min(snowpack, max(0.0, temp - TT) * CFMAX)]), - HydroFlux([temp, meltwater] => [refreeze], [TT, CFR, CFMAX], exprs=[min(max((TT - temp), 0.0) * CFR * CFMAX, meltwater)]), - HydroFlux([meltwater] => [infil], [CWH], exprs=[max(0.0, meltwater - snowpack * CWH)]) -] -snow_dfuncs = [StateFlux([snowfall, refreeze] => [melt], snowpack), StateFlux([melt] => [refreeze, infil], meltwater)] -snow_bucket = HydroBucket(name=:hbv_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - -#* soilwater bucket -soil_funcs = [ - HydroFlux([infil, rainfall, BETA] => [recharge], [FC], exprs=[(rainfall + infil) * clamp(max(0.0, soilwater / FC)^(BETA * 5 + 1), 0, 1)]), - HydroFlux([soilwater] => [excess], [FC], exprs=[max(soilwater - FC, 0.0)]), - HydroFlux([soilwater, pet, GAMMA] => [evap], [LP, FC], exprs=[clamp(max(0.0, soilwater / (LP * FC))^(GAMMA + 1), 0, 1) * pet]), -] -soil_dfuncs = [StateFlux([rainfall, infil] => [recharge, excess, evap], soilwater)] -soil_bucket = HydroBucket(name=:hbv_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) - -#* up and low zone bucket -zone_funcs = [ - HydroFlux([suz] => [perc], [PPERC], exprs=[suz * PPERC]), - HydroFlux([suz] => [q0], [UZL, k0], exprs=[max(0.0, suz - UZL) * k0]), - HydroFlux([suz] => [q1], [k1], exprs=[suz * k1]), - HydroFlux([slz] => [q2], [k2], exprs=[slz * k2]), - HydroFlux([q0, q1, q2] => [q], exprs=[q0 + q1 + q2]), -] -zone_dfuncs = [StateFlux([recharge, excess] => [perc, q0, q1], suz), StateFlux([perc] => [q2], slz),] -zone_bucket = HydroBucket(name=:hbv_zone, funcs=zone_funcs, dfuncs=zone_dfuncs) -model = HydroModel(name=:dpl_hbv, components=[nn_wrapper, split_flux, snow_bucket, soil_bucket, zone_bucket]) - diff --git a/doc/tutorials/models/exphydro.jl b/doc/tutorials/models/exphydro.jl deleted file mode 100644 index 128613b..0000000 --- a/doc/tutorials/models/exphydro.jl +++ /dev/null @@ -1,29 +0,0 @@ -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 -# define variables and parameters - -@variables temp lday pet prcp snowfall rainfall snowpack melt -@parameters Tmin Tmax Df Smax Qmax f - -@variables soilwater pet evap baseflow surfaceflow flow rainfall - -# define model components -fluxes_1 = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), -] -dfluxes_1 = [StateFlux([snowfall] => [melt], snowpack),] -bucket_1 = HydroBucket(name=:surface, funcs=fluxes_1, dfuncs=dfluxes_1) - -fluxes_2 = [ - HydroFlux([soilwater, pet] => [evap], [Smax], exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - HydroFlux([soilwater] => [baseflow], [Smax, Qmax, f], exprs=[step_func(soilwater) * Qmax * exp(-f * (max(0.0, Smax - soilwater)))]), - HydroFlux([soilwater] => [surfaceflow], [Smax], exprs=[max(0.0, soilwater - Smax)]), - HydroFlux([baseflow, surfaceflow] => [flow], exprs=[baseflow + surfaceflow]), -] -dfluxes_2 = [StateFlux([rainfall, melt] => [evap, flow], soilwater)] -bucket_2 = HydroBucket(name=:soil, funcs=fluxes_2, dfuncs=dfluxes_2) - -exphydro_model = HydroModel(name=:exphydro, components=[bucket_1, bucket_2]) - -export bucket_1, exphydro_model diff --git a/doc/tutorials/models/gr4j.jl b/doc/tutorials/models/gr4j.jl deleted file mode 100644 index 1118966..0000000 --- a/doc/tutorials/models/gr4j.jl +++ /dev/null @@ -1,38 +0,0 @@ -using HydroModels -using ModelingToolkit: @parameters, @variables - -#* parameters in the GR4J model -@parameters x1 x2 x3 x4 lag area_coef -#* hydrological flux in the production store -@variables prcp ep soilwater pn en ps es perc pr slowflow fastflow -#* hydrological flux in the unit hydrograph -@variables slowflow_routed fastflow_routed -#* hydrological flux in the routing store -@variables routingstore exch routedflow flow q q_routed s_river - -#* define the production store -prod_funcs = [ - HydroFlux([prcp, ep] => [pn, en], exprs=[prcp - min(prcp, ep), ep - min(prcp, ep)]), - HydroFlux([pn, soilwater] => [ps], [x1], exprs=[max(0.0, pn * (1 - (soilwater / x1)^2))]), - HydroFlux([en, soilwater] => [es], [x1], exprs=[en * (2 * soilwater / x1 - (soilwater / x1)^2)]), - HydroFlux([soilwater] => [perc], [x1], exprs=[((x1)^(-4)) / 4 * ((4 / 9)^(4)) * (soilwater^5)]), - HydroFlux([pn, ps, perc] => [pr], exprs=[pn - ps + perc]), - HydroFlux([pr] => [slowflow, fastflow], exprs=[0.9 * pr, 0.1 * pr]), -] -prod_dfuncs = [StateFlux([ps] => [es, perc], soilwater)] -prod_ele = HydroBucket(name=:gr4j_prod, funcs=prod_funcs, dfuncs=prod_dfuncs) - -#* define the routing store -rst_funcs = [ - HydroFlux([routingstore] => [exch], [x2, x3], exprs=[x2 * abs(routingstore / x3)^3.5]), - HydroFlux([routingstore, slowflow, exch] => [routedflow], [x3], exprs=[x3^(-4) / 4 * (routingstore + slowflow + exch)^5]), - HydroFlux([routedflow, fastflow_routed, exch] => [flow], exprs=[routedflow + max(fastflow_routed + exch, 0.0)]), -] -rst_dfuncs = [StateFlux([exch, slowflow] => [routedflow], routingstore)] -rst_ele = HydroBucket(name=:gr4j_rst, funcs=rst_funcs, dfuncs=rst_dfuncs) -# convert_flux = HydroFlux([flow] => [q], [area_coef], exprs=[flow * area_coef]) - -uh_flux_1 = HydroModels.UnitHydroFlux(slowflow, slowflow_routed, x4, uhfunc=HydroModels.UHFunction(:UH_1_HALF), solvetype=:SPARSE) -uh_flux_2 = HydroModels.UnitHydroFlux(fastflow, fastflow_routed, x4, uhfunc=HydroModels.UHFunction(:UH_2_FULL), solvetype=:SPARSE) - -gr4j_model = HydroModel(name=:gr4j, components=[prod_ele, uh_flux_1, uh_flux_2, rst_ele]) \ No newline at end of file diff --git a/doc/tutorials/models/m100.jl b/doc/tutorials/models/m100.jl deleted file mode 100644 index e6074ac..0000000 --- a/doc/tutorials/models/m100.jl +++ /dev/null @@ -1,58 +0,0 @@ -using ModelingToolkit -using Lux -using StableRNGs - -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 - -#! parameters in the Exp-Hydro model -@parameters Tmin Tmax Df Smax f Qmax -#! parameters in normalize flux -@parameters snowpack_std snowpack_mean -@parameters soilwater_std soilwater_mean -@parameters prcp_std prcp_mean -@parameters temp_std temp_mean - -#! hydrological flux in the Exp-Hydro model -@variables prcp temp lday pet rainfall snowfall -@variables snowpack soilwater lday pet -@variables melt log_evap_div_lday log_flow asinh_melt asinh_ps asinh_pr -@variables norm_snw norm_slw norm_temp norm_prcp - -#! define the m100 NN -m100_nn = Lux.Chain( - Lux.Dense(4, 32, tanh), - Lux.Dense(32, 32, leakyrelu), - Lux.Dense(32, 32, leakyrelu), - Lux.Dense(32, 32, leakyrelu), - Lux.Dense(32, 32, leakyrelu), - Lux.Dense(32, 5), - name=:m100nn -) -m100_nn_params = Vector(ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), m100_nn)))) - -#! get init parameters for each NN - -#! define the soil water reservoir -m100_funcs = [ - #* normalize - HydroFlux([snowpack] => [norm_snw], [snowpack_mean, snowpack_std], exprs=[(snowpack - snowpack_mean) / snowpack_std]), - HydroFlux([soilwater] => [norm_slw], [soilwater_mean, soilwater_std], exprs=[(soilwater - soilwater_mean) / soilwater_std]), - HydroFlux([prcp] => [norm_prcp], [prcp_mean, prcp_std], exprs=[(prcp - prcp_mean) / prcp_std]), - HydroFlux([temp] => [norm_temp], [temp_mean, temp_std], exprs=[(temp - temp_mean) / temp_std]), - NeuralFlux([norm_snw, norm_slw, norm_prcp, norm_temp] => [log_evap_div_lday, log_flow, asinh_melt, asinh_ps, asinh_pr], m100_nn), - HydroFlux([asinh_melt, snowpack] => [melt], exprs=[relu(sinh(asinh_melt) * step_func(snowpack))]), -] - -m100_nn_flux = soil_funcs[end-1] -state_expr1 = relu(sinh(asinh_ps)) * step_func(-temp) - melt -state_expr2 = relu(sinh(asinh_pr)) + melt - step_func(soilwater) * lday * exp(log_evap_div_lday) - step_func(soilwater) * exp(log_flow) -m100_dfuncs = [ - StateFlux([asinh_ps, temp, melt], snowpack, Num[], expr=state_expr1), - StateFlux([asinh_pr, melt, soilwater, lday, log_evap_div_lday, log_flow], soilwater, Num[], expr=state_expr2), -] -m100_bucket = HydroBucket(name=:m100_bucket, funcs=m100_funcs, dfuncs=m100_dfuncs) -m100_bucket.ode_func -#! define the Exp-Hydro model -m100_model = HydroModel(name=:m100, components=[m100_bucket]); - -export m100_model \ No newline at end of file diff --git a/doc/tutorials/models/m50.jl b/doc/tutorials/models/m50.jl deleted file mode 100644 index b07d3c6..0000000 --- a/doc/tutorials/models/m50.jl +++ /dev/null @@ -1,72 +0,0 @@ -using ModelingToolkit - -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -NeuralFlux = HydroModels.NeuralFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel - -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 -#! parameters in the Exp-Hydro model -@parameters Tmin Tmax Df Smax f Qmax -#! parameters in normalize flux -@parameters snowpack_std snowpack_mean -@parameters soilwater_std soilwater_mean -@parameters prcp_std prcp_mean -@parameters temp_std temp_mean - -#! hydrological flux in the Exp-Hydro model -@variables prcp temp lday pet rainfall snowfall -@variables snowpack soilwater lday pet -@variables melt log_evap_div_lday log_flow flow -@variables norm_snw norm_slw norm_temp norm_prcp - -#! define the snow pack reservoir -snow_funcs = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * min(snowpack, Df * (temp - Tmax))]), -] -snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] -snow_ele = HydroBucket(name=:exphydro_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - -#! define the ET NN and Q NN -ep_nn = Lux.Chain( - Lux.Dense(3 => 16, tanh), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 1, leakyrelu), - name=:epnn -) -ep_nn_params = Vector(ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), ep_nn)))) -q_nn = Lux.Chain( - Lux.Dense(2 => 16, tanh), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 1, leakyrelu), - name=:qnn -) -q_nn_params = Vector(ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), q_nn)))) - -#! get init parameters for each NN -ep_nn_flux = NeuralFlux([norm_snw, norm_slw, norm_temp] => [log_evap_div_lday], ep_nn) -q_nn_flux = NeuralFlux([norm_slw, norm_prcp] => [log_flow], q_nn) - -#! define the soil water reservoir -soil_funcs = [ - #* normalize - HydroFlux([snowpack, soilwater, prcp, temp] => [norm_snw, norm_slw, norm_prcp, norm_temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean, snowpack_std, soilwater_std, prcp_std, temp_std], - exprs=[(var - mean) / std for (var, mean, std) in zip([snowpack, soilwater, prcp, temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean], - [snowpack_std, soilwater_std, prcp_std, temp_std] - )]), - ep_nn_flux, - q_nn_flux -] -state_expr = rainfall + melt - step_func(soilwater) * lday * exp(log_evap_div_lday) - step_func(soilwater) * exp(log_flow) -soil_dfuncs = [StateFlux([soilwater, rainfall, melt, lday, log_evap_div_lday, log_flow], soilwater, Num[], expr=state_expr)] -soil_ele = HydroBucket(name=:m50_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) -convert_flux = HydroFlux([log_flow] => [flow], exprs=[exp(log_flow)]) -#! define the Exp-Hydro model -m50_model = HydroModel(name=:m50, components=[snow_ele, soil_ele, convert_flux]); - -export m50_model, eq_nn_flux, q_nn_flux \ No newline at end of file diff --git a/doc/tutorials/optimize/test_batch_ele_optim.jl b/doc/tutorials/optimize/test_batch_ele_optim.jl deleted file mode 100644 index c4e518a..0000000 --- a/doc/tutorials/optimize/test_batch_ele_optim.jl +++ /dev/null @@ -1,51 +0,0 @@ -# import lib -using CSV -using DataFrames -using ComponentArrays -using OptimizationOptimisers -using BenchmarkTools -using NamedTupleTools -using Optimization -using HydroErrors - -include("../../../src/HydroModels.jl") - -# test exphydro model - -# predefine the parameters -f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 - -tunable_pas = ComponentVector(params=(f=f, Smax=Smax, Qmax=Qmax, Df=Df, Tmax=Tmax, Tmin=Tmin)) -const_pas = ComponentVector(initstates=(snowpack=0.0, soilwater=1300.0)) - -init_pas = ComponentVector(params=(f=f, Smax=Smax, Qmax=Qmax, Df=Df, Tmax=Tmax, Tmin=Tmin), initstates=(snowpack=0.0, soilwater=1300.0)) -model = HydroModels.ExpHydro.SurfaceStorage(name=:sf) - -# load data -file_path = "data/m50/01013500.csv" -data = CSV.File(file_path); -df = DataFrame(data); -timeidx = collect(1:100) -lday_vec = df[timeidx, "Lday"] -prcp_vec = df[timeidx, "Prcp"] -temp_vec = df[timeidx, "Temp"] -flow_vec = df[timeidx, "SnowWater"] - -# parameters optimization -input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec,) -output = (melt=flow_vec,) -input_matrix = Matrix(reduce(hcat, [input[k] for k in keys(input)])') -run_kwargs = (convert_to_ntp=true,) - -best_pas = HydroModels.param_batch_optim( - model, - tunable_pas=tunable_pas, - const_pas=const_pas, - input=repeat([input], 10), - target=repeat([output], 10), - config=fill((solver=HydroModels.ODESolver(),timeidx=timeidx), 10), - adtype=Optimization.AutoZygote(), - maxiters=10, - loss_func=HydroErrors.mse, - run_kwargs=(convert_to_ntp=true,) -) \ No newline at end of file diff --git a/doc/tutorials/optimize/test_ele_grad_optimization.jl b/doc/tutorials/optimize/test_ele_grad_optimization.jl deleted file mode 100644 index ad3e515..0000000 --- a/doc/tutorials/optimize/test_ele_grad_optimization.jl +++ /dev/null @@ -1,73 +0,0 @@ -# import lib -using CSV -using DataFrames -using ComponentArrays -using OptimizationOptimisers -using BenchmarkTools -using NamedTupleTools -using Optimization -using ModelingToolkit -using HydroErrors - -include("../../../src/HydroModels.jl") - -@variables temp lday prcp snowpack -@variables pet snowfall melt rainfall infiltration -@parameters Tmin Tmax Df - -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 -# test exphydro model -#* test state flux -snow_funcs = [ - HydroModels.HydroFlux([temp, lday] => [pet], - exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroModels.HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], - exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroModels.HydroFlux([snowpack, temp] => [melt], [Tmax, Df], - exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), -] -snow_dfuncs = [HydroModels.StateFlux([snowfall] => [melt], snowpack)] - -model = HydroModels.HydroBucket(name=:sf, funcs=snow_funcs, dfuncs=snow_dfuncs) - -# predefine the parameters -tunable_pas = ComponentVector(params=(f=0.01674478, Smax=1709.461015, Qmax=18.46996175, Df=2.674548848, Tmax=0.175739196, Tmin=-2.092959084)) -const_pas = ComponentVector(initstates=(snowpack=0.0, soilwater=1300.0)) -init_pas = ComponentVector( - params=(f=0.01674478, Smax=1709.461015, Qmax=18.46996175, Df=2.674548848, Tmax=0.175739196, Tmin=-2.092959084), - initstates=(snowpack=0.0, soilwater=1300.0) -) - -# load data -file_path = "data/m50/01013500.csv" -data = CSV.File(file_path); -df = DataFrame(data); -timeidx = collect(1:100) -lday_vec = df[timeidx, "Lday"] -prcp_vec = df[timeidx, "Prcp"] -temp_vec = df[timeidx, "Temp"] -flow_vec = df[timeidx, "SnowWater"] - -# parameters optimization -input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec,) -output = (melt=flow_vec,) -run_kwargs = (solver=HydroModels.ODESolver(), convert_to_ntp=true) - -function mse2(simulated_array::AbstractVector{<:T}, observed_array::AbstractVector{<:T}) where {T} - mean((simulated_array .- observed_array) .^ 2) -end - -best_pas, loss_df = HydroModels.param_grad_optim( - model, - tunable_pas=tunable_pas, - const_pas=const_pas, - input=repeat([input], 10), - target=repeat([output], 10), - timeidx=repeat([timeidx], 10), - adtype=Optimization.AutoZygote(), - maxiters=100, - run_kwargs=run_kwargs, - loss_func=mse2, - config=fill((solver=HydroModels.ODESolver(),), 10) -) -# ComponentArray(merge_recursive(NamedTuple(tunable_pas), NamedTuple(const_pas))) \ No newline at end of file diff --git a/doc/tutorials/optimize/test_hbv_grad_optimization.jl b/doc/tutorials/optimize/test_hbv_grad_optimization.jl deleted file mode 100644 index 08e8677..0000000 --- a/doc/tutorials/optimize/test_hbv_grad_optimization.jl +++ /dev/null @@ -1,43 +0,0 @@ -# import lib -using CSV -using DataFrames -# using CairoMakie -using ComponentArrays -using OptimizationOptimisers -using BenchmarkTools -using NamedTupleTools -using Optimization -using HydroModels -# test exphydro model -# include("../../src/HydroModels.jl") -# 5.0.0 -# predefine the parameters -tt, dd, FC, Beta, PWP, L = 0.0, 4.25, 177.1, 2.35, 105.89, 4.87 -k0, k1, k2, kp = 0.05, 0.03, 0.02, 0.05 -params = ComponentVector(tt=tt, dd=dd, FC=FC, Beta=Beta, PWP=PWP, L=L, k0=k0, k1=k1, k2=k2, kp=kp) -initstates = ComponentVector(snowwater=0.0, soilwater=100.0, s1=3, s2=10) -pas = ComponentVector((vertical=(params=params, initstates=initstates))) - -tunable_pas = ComponentVector(params=params) -const_pas = ComponentVector(initstates=initstates) - -unit = HydroModels.HBV_EDU.Model(name=:hbv) - -# load data -file_path = "data/hbv_edu/hbv_sample.csv" -data = CSV.File(file_path); -df = DataFrame(data); - -input = (prcp=df[!,:prec], pet=df[!,:pet], temp=df[!,:temp]) -target = (flow=df[!,:qsim],) -timeidx = collect(1:length(df[!,:qsim])) - -best_pas = HydroModels.param_grad_optim( - unit, - tunable_pas=tunable_pas, - const_pas=const_pas, - input=[input], - target=[target], - timeidx=[timeidx], - adtype=Optimization.AutoZygote() -) diff --git a/doc/tutorials/optimize/test_nn_param_optimize.jl b/doc/tutorials/optimize/test_nn_param_optimize.jl deleted file mode 100644 index d065682..0000000 --- a/doc/tutorials/optimize/test_nn_param_optimize.jl +++ /dev/null @@ -1,40 +0,0 @@ -# import lib -using CSV -using DataFrames -using ComponentArrays -using Zygote, Lux -using BenchmarkTools -using Random -using ModelingToolkit - -@variables A[1:10, 1:10] - -# test exphydro model -# include("../../src/LumpedHydro.jl") - -# load data -file_path = "data/camels/01013500.csv" - -data = CSV.File(file_path); -df = DataFrame(data); -lday_vec = df[1:1000, "dayl(day)"] -prcp_vec = df[1:1000, "prcp(mm/day)"] -temp_vec = df[1:1000, "tmean(C)"] -flow_vec = df[1:1000, "flow(mm)"] - -inputs = (prcp=prcp_vec, temp=temp_vec, lday=lday_vec) -outputs = (flow=flow_vec,) - -lux_model = Lux.Chain(Lux.Dense(3, 16, tanh), Lux.Dense(16, 16, leakyrelu), Lux.Dense(16, 1, leakyrelu),name=:model) -rng = MersenneTwister() -Random.seed!(rng, 42) -ps,st = Lux.setup(rng, lux_model) -ps = Lux.initialparameters(rng,lux_model) -ps -# todo 后续需要将lux的参数嵌入至mtk中 -# initial_params(lux_model) -lux_func = LumpedHydro.LuxNNFlux([:prcp, :temp, :lday], [:flow], lux_model=lux_model) -# @btime LumpedHydro.nn_param_optim(lux_func, input=inputs, target=outputs, init_params=lux_func.init_params) -using DiffEqFlux - -ann = FastChain(FastDense(1,32,tanh), FastDense(32,32,tanh), FastDense(32,1)) \ No newline at end of file diff --git a/doc/tutorials/optimize/test_unit_box_optimization.jl b/doc/tutorials/optimize/test_unit_box_optimization.jl deleted file mode 100644 index 4ad5aa2..0000000 --- a/doc/tutorials/optimize/test_unit_box_optimization.jl +++ /dev/null @@ -1,54 +0,0 @@ -# import lib -using CSV -using DataFrames -using ComponentArrays -using OptimizationBBO -using BenchmarkTools -using NamedTupleTools -using HydroErrors -# using HydroModels - -include("../../../src/HydroModels.jl") -f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 - -tunable_pas = ComponentVector(params=ComponentVector(f=f, Smax=Smax, Qmax=Qmax, Df=Df, Tmax=Tmax, Tmin=Tmin),) -const_pas = ComponentVector((initstates=ComponentVector(snowpack=0.0, soilwater=1300.0), weight=1.0)) - -params_axes = getaxes(tunable_pas) - -lb_list = [0.0, 100.0, 10.0, 0.0, 0.0, -3.0] -ub_list = [0.1, 2000.0, 50.0, 5.0, 3.0, 0.0] - -ts = collect(1:10000) - -tunable_param_lb = ComponentVector(lb_list, getaxes(tunable_pas)) -tunable_param_ub = ComponentVector(ub_list, getaxes(tunable_pas)) - -model = HydroModels.ExpHydro.Model(name=:exphydro) - -# load data -file_path = "data/exphydro/01013500.csv" -data = CSV.File(file_path); -df = DataFrame(data); -lday_vec = df[ts, "dayl(day)"] -prcp_vec = df[ts, "prcp(mm/day)"] -temp_vec = df[ts, "tmean(C)"] -flow_vec = df[ts, "flow(mm)"] - -# parameters optimization -input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec) -output = (flow=flow_vec,) - -best_pas = HydroModels.param_box_optim( - model, - tunable_pas=tunable_pas, - const_pas=const_pas, - input=[input], - target=[output], - timeidx=[ts], - lb=tunable_param_lb, - ub=tunable_param_ub, - solve_alg=BBO_adaptive_de_rand_1_bin_radiuslimited(), - maxiters=100, - loss_func=HydroErr.mse, -) \ No newline at end of file diff --git a/doc/tutorials/optimize/test_unit_grad_optimization.jl b/doc/tutorials/optimize/test_unit_grad_optimization.jl deleted file mode 100644 index cf11f13..0000000 --- a/doc/tutorials/optimize/test_unit_grad_optimization.jl +++ /dev/null @@ -1,50 +0,0 @@ -# import lib -using CSV -using DataFrames -using ComponentArrays -using OptimizationOptimisers -using BenchmarkTools -using NamedTupleTools -using Optimization - -# test exphydro model -include("../../../src/HydroModels.jl") - -# predefine the parameters -f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 - -tunable_pas = ComponentVector(params=ComponentVector(f=f, Smax=Smax, Qmax=Qmax, Df=Df, Tmax=Tmax, Tmin=Tmin)) -const_pas = ComponentVector(initstates=ComponentVector(snowpack=0.0, soilwater=1300.0)) - -model = HydroModels.ExpHydro.Model(name=:exphydro) - -# load data -file_path = "data/exphydro/01013500.csv" -data = CSV.File(file_path); -df = DataFrame(data); -ts = collect(1:100) -lday_vec = df[ts, "dayl(day)"] -prcp_vec = df[ts, "prcp(mm/day)"] -temp_vec = df[ts, "tmean(C)"] -flow_vec = df[ts, "flow(mm)"] - -# parameters optimization -input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec) - -input_matrix = Matrix(reduce(hcat, collect(input))') -output = (flow=flow_vec,) -pas = ComponentVector(tunable_pas; const_pas...) -result = model(input_matrix, pas, ts, kwargs=run_kwargs) - - -best_pas = HydroModels.param_grad_optim( - model, - tunable_pas=tunable_pas, - const_pas=const_pas, - input=repeat([input], 10), - target=repeat([output], 10), - timeidx=repeat([ts], 10), - adtype=Optimization.AutoZygote(), - maxiters=10, - loss_func=HydroErrors.mse, -) \ No newline at end of file diff --git a/index.md b/index.md new file mode 100644 index 0000000..6f8ef08 --- /dev/null +++ b/index.md @@ -0,0 +1,123 @@ +```@meta +CurrentModule = HydroModels +``` + +# HydroModels.jl Documentation + +Welcome to the documentation of HydroModels.jl! + +## Overview + +HydroModels.jl is a Julia package for hydrological modeling. It provides a flexible framework for implementing and running various hydrological models. + +## Features + +- Flexible model structure +- Support for both single-node and multi-node simulations +- Various built-in hydrological models +- Easy-to-use interface for model implementation and execution + +## Getting Started + +To get started with HydroModels.jl, check out our tutorials: + + + +## Installation + +To install HydroModels.jl, use Julia's package manager: + +```julia +using Pkg +Pkg.add("HydroModels") +``` + +## Quick Example + +```julia +using HydroModels + +# Load model configuration +params = ComponentVector(f=0.01674478, Smax=1709.461015, Qmax=18.46996175, + Df=2.674548848, Tmax=0.175739196, Tmin=-2.092959084) +init_states = ComponentVector(snowpack=0.0, soilwater=1303.004248) + +# Run simulation +results = model(input_data, params, init_states) +``` + +## 运行一个ExpHydro水文模型 + +```julia +# import lib +using CSV +using DataFrames +using CairoMakie +using BenchmarkTools +using ComponentArrays +using HydroModels + +# load data +file_path = "data/exphydro/01013500.csv" +data = CSV.File(file_path); +df = DataFrame(data); +ts = collect(1:10000) +lday_vec = df[ts, "dayl(day)"] +prcp_vec = df[ts, "prcp(mm/day)"] +temp_vec = df[ts, "tmean(C)"] +flow_vec = df[ts, "flow(mm)"] + +# build model +model = LumpedHydro.ExpHydro.Unit(name=:exphydro, mtk=false) + +# setup parameters and initstates +f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 +unit_params = (f=f, Smax=Smax, Qmax=Qmax, Df=Df, Tmax=Tmax, Tmin=Tmin) +unit_init_states = (snowwater=0.0, soilwater=1303.004248) +pas = ComponentVector((params=unit_params, initstates=unit_init_states, weight=1.0)) + +# run model +input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec) +solver = HydroModels.ODESolver(reltol=1e-3, abstol=1e-3) +result = model(input, pas, timeidx=ts, solver=solver); +result_df = DataFrame(result) + +# plot result +fig = Figure(size=(400, 300)) +ax = CairoMakie.Axis(fig[1, 1], title="predict results", xlabel="time", ylabel="flow(mm)") +lines!(ax, ts, flow_vec, color=:red) +lines!(ax, ts, result_df[!,"flow"], color=:blue) +fig +``` + + + +## 特性 + +* [X] 基于julia语言面向函数、多重分派的编程特性,形成了名称驱动的模型构建方式(见自定义模型构建) + + * [X] 通过输入输出以及参数名称快速搜索某一个通量的计算函数(见名称驱动的函数搜索方式) + * [X] 获取模块或模型的输入输出以及参数名称自动生成模型运行/优化所需参数的规范 + * [X] 能够实现在无实际参数情况下完成模型的构建,实现模型与模型参数的完全解耦 + * [X] 但是在一些情况中可能会创建一些并没有实际含义的变量 +* [X] 构建No MTK和MTK风格(MTK风格参见ModelingToolkit.jl)的常微分方程求解方法,适应不同需求的模型应用需求 + + * [X] No MTK风格通常确保最基础的计算能力,能够保证复杂情况的运行,但是计算性能略低于MTK风格 + * [X] MTK风格基于ModelingToolkit.jl构建ODESystem,有着更高的计算性能,但未知错误较多(见性能比较) +* [X] 统一式与逐步式的多模块或模型求解方式 + + * [X] 统一式求解方式是将多个模块中的通量计算函数整合到一个常微分方程中,减小中间变量的插值损失与计算成本 + * [X] 逐步式求解方式则是针对不同模块进行独立求解 +* [X] 基于网络拓扑计算的通量函数自动匹配计算和水文元素自动匹配计算 + + * [X] 通量函数之间可以通过输入输出的变量名称构建计算网,在搭建模块时能够不考虑通量函数的顺序,支撑模块临时添加通量函数的功能 + * [X] 河网汇流计算是基于各个节点的拓扑连接关系实现,需要并行计算各个节点的内置计算过程后按河网网络顺序计算实现各子流域汇流计算 +* [X] 提供NeuralFlux对象支持神经网络模型耦合水文模型,主要包括计算公式替换,模型参数估计 + + * [X] 在计算公式替换中,这个包可以根据Lux.jl构建的神经网络构建NeuralFlux并用于计算水文模型中某些通量,典型模型由m50 + * [X] 在模型参数估计中,这个包将参数作为一种无量纲的通量,并根据NeuralFlux作出预测,典型的有dPL模型 +* [X] 基于Optimization.jl提供模型参数的全局搜索(黑箱)和局部搜索(梯度)的优化算法 + + * [X] 提供BoxOptimization或更多算法,用于初步的模型参数优化 + * [X] 局部搜索或梯度则更多的用于神经网络内部权重的优化 diff --git a/Manifest.toml b/project/KAN-Embed/Manifest.toml similarity index 56% rename from Manifest.toml rename to project/KAN-Embed/Manifest.toml index 2a973f1..b79bb5a 100644 --- a/Manifest.toml +++ b/project/KAN-Embed/Manifest.toml @@ -2,12 +2,12 @@ julia_version = "1.10.4" manifest_format = "2.0" -project_hash = "6ddeb3f6d07030b5a2dd19dec31c568b3b1d682b" +project_hash = "4f448e774a86a9b4f49775b85c93202adf1751cd" [[deps.ADTypes]] -git-tree-sha1 = "72af59f5b8f09faee36b4ec48e014a79210f2f4f" +git-tree-sha1 = "30bb95a372787af850addf28ac937f1be7b79173" uuid = "47edcb42-4c32-4615-8424-f2b9edc5f35b" -version = "1.11.0" +version = "1.10.0" weakdeps = ["ChainRulesCore", "ConstructionBase", "EnzymeCore"] [deps.ADTypes.extensions] @@ -72,16 +72,10 @@ git-tree-sha1 = "9876e1e164b144ca45e9e3198d0b689cadfed9ff" uuid = "66dad0bd-aa9a-41b7-9441-69ab47430ed8" version = "1.1.3" -[[deps.Aqua]] -deps = ["Compat", "Pkg", "Test"] -git-tree-sha1 = "49b1d7a9870c87ba13dc63f8ccfcf578cb266f95" -uuid = "4c88cf16-eb10-579e-8560-4a9242c79595" -version = "0.8.9" - [[deps.ArgCheck]] -git-tree-sha1 = "680b3b8759bd4c54052ada14e52355ab69e07876" +git-tree-sha1 = "a3a402a35a2f7e0b87828ccabbd5ebfbebe356b4" uuid = "dce04be8-c92d-5529-be00-80e4d2c0e197" -version = "2.4.0" +version = "2.3.0" [[deps.ArgTools]] uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f" @@ -140,25 +134,9 @@ uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33" [[deps.Atomix]] deps = ["UnsafeAtomics"] -git-tree-sha1 = "14e254ef74e44cd6ed27fbb751d4e1f9bbf085cc" +git-tree-sha1 = "c06a868224ecba914baa6942988e2f2aade419be" uuid = "a9b6321e-bd34-4604-b9c9-b65b8de01458" -version = "1.0.0" - - [deps.Atomix.extensions] - AtomixCUDAExt = "CUDA" - AtomixMetalExt = "Metal" - AtomixoneAPIExt = "oneAPI" - - [deps.Atomix.weakdeps] - CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" - Metal = "dde4c033-4e86-420c-a63e-0dd931031962" - oneAPI = "8f75cd03-7ff8-4ecb-9b8f-daf728133b1b" - -[[deps.AxisAlgorithms]] -deps = ["LinearAlgebra", "Random", "SparseArrays", "WoodburyMatrices"] -git-tree-sha1 = "01b8ccb13d68535d73d2b0c23e39bd23155fb712" -uuid = "13072b0f-2c55-5437-9ae7-d433b7a33950" -version = "1.1.0" +version = "0.1.0" [[deps.BFloat16s]] deps = ["LinearAlgebra", "Printf", "Random", "Test"] @@ -169,43 +147,22 @@ version = "0.5.0" [[deps.Base64]] uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" -[[deps.BenchmarkTools]] -deps = ["JSON", "Logging", "Printf", "Profile", "Statistics", "UUIDs"] -git-tree-sha1 = "f1dff6729bc61f4d49e140da1af55dcd1ac97b2f" -uuid = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" -version = "1.5.0" - [[deps.Bijections]] git-tree-sha1 = "d8b0439d2be438a5f2cd68ec158fe08a7b2595b7" uuid = "e2ed5e7c-b2de-5872-ae92-c73ca462fb04" version = "0.1.9" -[[deps.BitFlags]] -git-tree-sha1 = "0691e34b3bb8be9307330f88d1a3c3f25466c24d" -uuid = "d1d4a3ce-64b1-5f1a-9ba4-7e7e69966f35" -version = "0.1.9" - [[deps.BitTwiddlingConvenienceFunctions]] deps = ["Static"] git-tree-sha1 = "f21cfd4950cb9f0587d5067e69405ad2acd27b87" uuid = "62783981-4cbd-42fc-bca8-16325de8dc4b" version = "0.1.6" -[[deps.BlackBoxOptim]] -deps = ["CPUTime", "Compat", "Distributed", "Distributions", "JSON", "LinearAlgebra", "Printf", "Random", "Requires", "SpatialIndexing", "StatsBase"] -git-tree-sha1 = "9c203a2515b5eeab8f2987614d2b1db83ef03542" -uuid = "a134a8b2-14d6-55f6-9291-3336d3ab0209" -version = "0.6.3" -weakdeps = ["HTTP", "Sockets"] - - [deps.BlackBoxOptim.extensions] - BlackBoxOptimRealtimePlotServerExt = ["HTTP", "Sockets"] - [[deps.BlockArrays]] deps = ["ArrayLayouts", "FillArrays", "LinearAlgebra"] -git-tree-sha1 = "62551a412126a8c979febd1a05a986928719639e" +git-tree-sha1 = "d434647f798823bcae510aee0bc0401927f64391" uuid = "8e7c35d0-a365-5155-bbbb-fb81a777f24e" -version = "1.2.0" +version = "1.1.1" [deps.BlockArrays.extensions] BlockArraysBandedMatricesExt = "BandedMatrices" @@ -223,12 +180,6 @@ weakdeps = ["ForwardDiff"] [deps.BracketingNonlinearSolve.extensions] BracketingNonlinearSolveForwardDiffExt = "ForwardDiff" -[[deps.Bzip2_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "8873e196c2eb87962a2048b3b8e08946535864a1" -uuid = "6e34b625-4abd-537c-b88f-471c36dfa7a0" -version = "1.0.8+2" - [[deps.CEnum]] git-tree-sha1 = "389ad5c84de1ae7cf0e28e381131c98ea87d54fc" uuid = "fa961155-64e5-5f13-b03f-caf6b980ea82" @@ -240,23 +191,12 @@ git-tree-sha1 = "5a97e67919535d6841172016c9530fd69494e5ec" uuid = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9" version = "0.2.6" -[[deps.CPUTime]] -git-tree-sha1 = "2dcc50ea6a0a1ef6440d6eecd0fe3813e5671f45" -uuid = "a9c8d775-2e2e-55fc-8582-045d282d599e" -version = "1.0.0" - [[deps.CSTParser]] deps = ["Tokenize"] git-tree-sha1 = "0157e592151e39fa570645e2b2debcdfb8a0f112" uuid = "00ebfdb7-1f24-5e51-bd34-a7502290713f" version = "3.4.3" -[[deps.CSV]] -deps = ["CodecZlib", "Dates", "FilePathsBase", "InlineStrings", "Mmap", "Parsers", "PooledArrays", "PrecompileTools", "SentinelArrays", "Tables", "Unicode", "WeakRefStrings", "WorkerUtilities"] -git-tree-sha1 = "deddd8725e5e1cc49ee205a1964256043720a6c3" -uuid = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" -version = "0.10.15" - [[deps.CUDA]] deps = ["AbstractFFTs", "Adapt", "BFloat16s", "CEnum", "CUDA_Driver_jll", "CUDA_Runtime_Discovery", "CUDA_Runtime_jll", "Crayons", "DataFrames", "ExprTools", "GPUArrays", "GPUCompiler", "KernelAbstractions", "LLVM", "LLVMLoopInfo", "LazyArtifacts", "Libdl", "LinearAlgebra", "Logging", "NVTX", "Preferences", "PrettyTables", "Printf", "Random", "Random123", "RandomNumbers", "Reexport", "Requires", "SparseArrays", "StaticArrays", "Statistics", "demumble_jll"] git-tree-sha1 = "e0725a467822697171af4dae15cec10b4fc19053" @@ -271,9 +211,9 @@ weakdeps = ["ChainRulesCore", "EnzymeCore", "SpecialFunctions"] [[deps.CUDA_Driver_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "14996d716a2eaaeccfc8d7bc854dd87fde720ac1" +git-tree-sha1 = "ccd1e54610c222fadfd4737dac66bff786f63656" uuid = "4ee394cb-3365-5eb0-8335-949819d2adfc" -version = "0.10.4+0" +version = "0.10.3+0" [[deps.CUDA_Runtime_Discovery]] deps = ["Libdl"] @@ -283,27 +223,21 @@ version = "0.3.5" [[deps.CUDA_Runtime_jll]] deps = ["Artifacts", "CUDA_Driver_jll", "JLLWrappers", "LazyArtifacts", "Libdl", "TOML"] -git-tree-sha1 = "17f1536c600133f7c4113bae0a2d98dbf27c7ebc" +git-tree-sha1 = "ed8a056a88f5b852df94046060f6770a57334728" uuid = "76a88914-d11a-5bdc-97e0-2f5a05c973a2" -version = "0.15.5+0" +version = "0.15.4+0" -[[deps.Cairo_jll]] -deps = ["Artifacts", "Bzip2_jll", "CompilerSupportLibraries_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "JLLWrappers", "LZO_jll", "Libdl", "Pixman_jll", "Xorg_libXext_jll", "Xorg_libXrender_jll", "Zlib_jll", "libpng_jll"] -git-tree-sha1 = "009060c9a6168704143100f36ab08f06c2af4642" -uuid = "83423d85-b0ee-5818-9007-b63ccbeb887a" -version = "1.18.2+1" +[[deps.CUDNN_jll]] +deps = ["Artifacts", "CUDA_Runtime_jll", "JLLWrappers", "LazyArtifacts", "Libdl", "TOML"] +git-tree-sha1 = "9851af16a2f357a793daa0f13634c82bc7e40419" +uuid = "62b44479-cb7b-5706-934f-f13b2eb2e645" +version = "9.4.0+0" [[deps.Cassette]] git-tree-sha1 = "f8764df8d9d2aec2812f009a1ac39e46c33354b8" uuid = "7057c7e9-c182-5462-911a-8362d720325c" version = "0.3.14" -[[deps.ChainRules]] -deps = ["Adapt", "ChainRulesCore", "Compat", "Distributed", "GPUArraysCore", "IrrationalConstants", "LinearAlgebra", "Random", "RealDot", "SparseArrays", "SparseInverseSubset", "Statistics", "StructArrays", "SuiteSparse"] -git-tree-sha1 = "bcffdcaed50d3453673b852f3522404a94b50fad" -uuid = "082447d4-558c-5d27-93f4-14fc19e9eca2" -version = "1.72.1" - [[deps.ChainRulesCore]] deps = ["Compat", "LinearAlgebra"] git-tree-sha1 = "3e4b134270b372f2ed4d4d0e936aabaefc1802bc" @@ -320,39 +254,23 @@ git-tree-sha1 = "05ba0d07cd4fd8b7a39541e31a7b0254704ea581" uuid = "fb6a15b2-703c-40df-9091-08a04967cfa9" version = "0.1.13" -[[deps.CodecZlib]] -deps = ["TranscodingStreams", "Zlib_jll"] -git-tree-sha1 = "bce6804e5e6044c6daab27bb533d1295e4a2e759" -uuid = "944b1d66-785c-5afd-91f1-9de20f533193" -version = "0.7.6" - -[[deps.ColorSchemes]] -deps = ["ColorTypes", "ColorVectorSpace", "Colors", "FixedPointNumbers", "PrecompileTools", "Random"] -git-tree-sha1 = "c785dfb1b3bfddd1da557e861b919819b82bbe5b" -uuid = "35d6a980-a343-548e-a6ea-1d62b119f2f4" -version = "3.27.1" - [[deps.ColorTypes]] deps = ["FixedPointNumbers", "Random"] -git-tree-sha1 = "b10d0b65641d57b8b4d5e234446582de5047050d" +git-tree-sha1 = "c7acce7a7e1078a20a285211dd73cd3941a871d6" uuid = "3da002f7-5984-5a60-b8a6-cbb66c0b333f" -version = "0.11.5" +version = "0.12.0" -[[deps.ColorVectorSpace]] -deps = ["ColorTypes", "FixedPointNumbers", "LinearAlgebra", "Requires", "Statistics", "TensorCore"] -git-tree-sha1 = "a1f44953f2382ebb937d60dafbe2deea4bd23249" -uuid = "c3611d14-8923-5661-9e6a-0046d554d3a4" -version = "0.10.0" -weakdeps = ["SpecialFunctions"] + [deps.ColorTypes.extensions] + StyledStringsExt = "StyledStrings" - [deps.ColorVectorSpace.extensions] - SpecialFunctionsExt = "SpecialFunctions" + [deps.ColorTypes.weakdeps] + StyledStrings = "f489334b-da3d-4c2e-b8f0-e476e12c162b" [[deps.Colors]] deps = ["ColorTypes", "FixedPointNumbers", "Reexport"] -git-tree-sha1 = "362a287c3aa50601b0bc359053d5c2468f0e7ce0" +git-tree-sha1 = "64e15186f0aa277e174aa81798f7eb8598e0157e" uuid = "5ae59095-9a9b-59fe-a467-6f913c188581" -version = "0.12.11" +version = "0.13.0" [[deps.Combinatorics]] git-tree-sha1 = "08c8b6831dc00bfea825826be0bc8336fc369860" @@ -396,23 +314,6 @@ deps = ["Artifacts", "Libdl"] uuid = "e66e0078-7015-5450-92f7-15fbd957f2ae" version = "1.1.1+0" -[[deps.ComponentArrays]] -deps = ["Adapt", "ArrayInterface", "ChainRulesCore", "ConstructionBase", "ForwardDiff", "Functors", "LinearAlgebra", "StaticArrayInterface", "StaticArraysCore"] -git-tree-sha1 = "e9b355215c05eeaaa7bf7d2ae0d329074e3cb045" -uuid = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66" -version = "0.15.19" -weakdeps = ["GPUArrays", "KernelAbstractions", "Optimisers", "RecursiveArrayTools", "ReverseDiff", "SciMLBase", "Tracker", "Zygote"] - - [deps.ComponentArrays.extensions] - ComponentArraysGPUArraysExt = "GPUArrays" - ComponentArraysKernelAbstractionsExt = "KernelAbstractions" - ComponentArraysOptimisersExt = "Optimisers" - ComponentArraysRecursiveArrayToolsExt = "RecursiveArrayTools" - ComponentArraysReverseDiffExt = "ReverseDiff" - ComponentArraysSciMLBaseExt = "SciMLBase" - ComponentArraysTrackerExt = "Tracker" - ComponentArraysZygoteExt = "Zygote" - [[deps.CompositeTypes]] git-tree-sha1 = "bce26c3dab336582805503bed209faab1c279768" uuid = "b152e2b5-7a66-4b01-a709-34e65c35f657" @@ -432,18 +333,6 @@ git-tree-sha1 = "f749037478283d372048690eb3b5f92a79432b34" uuid = "2569d6c7-a4a2-43d3-a901-331e8e4be471" version = "0.2.3" -[[deps.ConcurrentUtilities]] -deps = ["Serialization", "Sockets"] -git-tree-sha1 = "ea32b83ca4fefa1768dc84e504cc0a94fb1ab8d1" -uuid = "f0e56b4a-5159-44fe-b623-3e5288b988bb" -version = "2.4.2" - -[[deps.ConsoleProgressMonitor]] -deps = ["Logging", "ProgressMeter"] -git-tree-sha1 = "3ab7b2136722890b9af903859afcf457fa3059e8" -uuid = "88cd18e8-d9cc-4ea6-8889-5259c0d15c8b" -version = "0.1.2" - [[deps.ConstructionBase]] git-tree-sha1 = "76219f1ed5771adbb096743bff43fb5fdd4c1157" uuid = "187b0558-2788-49d3-abe0-74a17ed4e7c9" @@ -455,11 +344,6 @@ weakdeps = ["IntervalSets", "LinearAlgebra", "StaticArrays"] ConstructionBaseLinearAlgebraExt = "LinearAlgebra" ConstructionBaseStaticArraysExt = "StaticArrays" -[[deps.Contour]] -git-tree-sha1 = "439e35b0b36e2e5881738abc8857bd92ad6ff9a8" -uuid = "d38c429a-6771-53c6-b99e-75d170b6e991" -version = "0.6.3" - [[deps.CpuId]] deps = ["Markdown"] git-tree-sha1 = "fcbb72b032692610bfbdb15018ac16a36cf2e406" @@ -482,25 +366,6 @@ git-tree-sha1 = "fb61b4812c49343d7ef0b533ba982c46021938a6" uuid = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" version = "1.7.0" -[[deps.DataInterpolations]] -deps = ["FindFirstFunctions", "ForwardDiff", "LinearAlgebra", "PrettyTables", "RecipesBase", "Reexport"] -git-tree-sha1 = "78d06458ec13b53b3b0016daebe53f832d42ff44" -uuid = "82cc6244-b520-54b8-b5a6-8a565e85f1d0" -version = "6.6.0" - - [deps.DataInterpolations.extensions] - DataInterpolationsChainRulesCoreExt = "ChainRulesCore" - DataInterpolationsOptimExt = "Optim" - DataInterpolationsRegularizationToolsExt = "RegularizationTools" - DataInterpolationsSymbolicsExt = "Symbolics" - - [deps.DataInterpolations.weakdeps] - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - Optim = "429524aa-4258-5aef-a3af-852621145aeb" - RegularizationTools = "29dad682-9a27-4bc3-9c72-016788665182" - Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - [[deps.DataStructures]] deps = ["Compat", "InteractiveUtils", "OrderedCollections"] git-tree-sha1 = "1d0a14036acb104d9e89698bd408f63ab58cdc82" @@ -516,18 +381,6 @@ version = "1.0.0" deps = ["Printf"] uuid = "ade2ca70-3891-5945-98fb-dc099432e06a" -[[deps.Dbus_jll]] -deps = ["Artifacts", "Expat_jll", "JLLWrappers", "Libdl"] -git-tree-sha1 = "fc173b380865f70627d7dd1190dc2fce6cc105af" -uuid = "ee1fde0b-3d02-5ea6-8484-8dfef6360eab" -version = "1.14.10+0" - -[[deps.DelimitedFiles]] -deps = ["Mmap"] -git-tree-sha1 = "9e2f36d3c96a820c678f2f1f1782582fcf685bae" -uuid = "8bb1440f-4735-579b-a4ab-409b98df4dab" -version = "1.9.1" - [[deps.DiffEqBase]] deps = ["ArrayInterface", "ConcreteStructs", "DataStructures", "DocStringExtensions", "EnumX", "EnzymeCore", "FastBroadcast", "FastClosures", "FastPower", "ForwardDiff", "FunctionWrappers", "FunctionWrappersWrappers", "LinearAlgebra", "Logging", "Markdown", "MuladdMacro", "Parameters", "PreallocationTools", "PrecompileTools", "Printf", "RecursiveArrayTools", "Reexport", "SciMLBase", "SciMLOperators", "SciMLStructures", "Setfield", "Static", "StaticArraysCore", "Statistics", "TruncatedStacktraces"] git-tree-sha1 = "b7dbeaa770bad0980ddddf606de814cff2acb3bc" @@ -564,20 +417,22 @@ version = "6.160.0" [[deps.DiffEqCallbacks]] deps = ["ConcreteStructs", "DataStructures", "DiffEqBase", "DifferentiationInterface", "Functors", "LinearAlgebra", "Markdown", "RecipesBase", "RecursiveArrayTools", "SciMLBase", "StaticArraysCore"] -git-tree-sha1 = "f6bc598f21c7bf2f7885cff9b3c9078e606ab075" +git-tree-sha1 = "0b99b7d5b938a3f09b1552c304ff70e8d0379efd" uuid = "459566f4-90b8-5000-8ac3-15dfb0a30def" -version = "4.2.2" +version = "4.2.1" [[deps.DiffEqNoiseProcess]] deps = ["DiffEqBase", "Distributions", "GPUArraysCore", "LinearAlgebra", "Markdown", "Optim", "PoissonRandom", "QuadGK", "Random", "Random123", "RandomNumbers", "RecipesBase", "RecursiveArrayTools", "ResettableStacks", "SciMLBase", "StaticArraysCore", "Statistics"] -git-tree-sha1 = "880d1fcf95e6492a4e7d65c2866dbdbf6580d4f8" +git-tree-sha1 = "ab1e6515ce15f01316a9825b02729fefa51726bd" uuid = "77a26b50-5914-5dd7-bc55-306e6241c503" -version = "5.24.0" -weakdeps = ["ReverseDiff"] +version = "5.23.0" [deps.DiffEqNoiseProcess.extensions] DiffEqNoiseProcessReverseDiffExt = "ReverseDiff" + [deps.DiffEqNoiseProcess.weakdeps] + ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" + [[deps.DiffResults]] deps = ["StaticArraysCore"] git-tree-sha1 = "782dd5f4561f5d267313f23853baaaa4c52ea621" @@ -592,9 +447,9 @@ version = "1.15.1" [[deps.DifferentiationInterface]] deps = ["ADTypes", "LinearAlgebra"] -git-tree-sha1 = "38b6508ce802f4113401081a42549047812c2a2c" +git-tree-sha1 = "0c99576d0b93df0aff1bed9d9adddef14e4e658f" uuid = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63" -version = "0.6.24" +version = "0.6.22" [deps.DifferentiationInterface.extensions] DifferentiationInterfaceChainRulesCoreExt = "ChainRulesCore" @@ -688,15 +543,15 @@ version = "1.6.0" [[deps.DynamicPolynomials]] deps = ["Future", "LinearAlgebra", "MultivariatePolynomials", "MutableArithmetics", "Reexport", "Test"] -git-tree-sha1 = "9a3ae38b460449cc9e7dd0cfb059c76028724627" +git-tree-sha1 = "bbf1ace0781d9744cb697fb856bd2c3f6568dadb" uuid = "7c1d4256-1411-5781-91ec-d7bc3513ac07" -version = "0.6.1" +version = "0.6.0" [[deps.DynamicQuantities]] deps = ["DispatchDoctor", "TestItems", "Tricks"] -git-tree-sha1 = "4923007a8e500f13be4c0119554776993c055ece" +git-tree-sha1 = "192f34efd3912f4020b225e01d896f567f5f03e8" uuid = "06fc5a27-2a28-4c7c-a15d-362465fb6821" -version = "1.4.0" +version = "1.3.0" [deps.DynamicQuantities.extensions] DynamicQuantitiesLinearAlgebraExt = "LinearAlgebra" @@ -715,63 +570,15 @@ git-tree-sha1 = "bdb1942cd4c45e3c678fd11569d5cccd80976237" uuid = "4e289a0a-7415-4d19-859d-a7e5c4648b56" version = "1.0.4" -[[deps.Enzyme]] -deps = ["CEnum", "EnzymeCore", "Enzyme_jll", "GPUCompiler", "LLVM", "Libdl", "LinearAlgebra", "ObjectFile", "Preferences", "Printf", "Random", "SparseArrays"] -git-tree-sha1 = "aad91015f14bc2787ecc4dc0a0e59524ba5b7559" -uuid = "7da242da-08ed-463a-9acd-ee780be4f1d9" -version = "0.13.18" -weakdeps = ["BFloat16s", "ChainRulesCore", "LogExpFunctions", "SpecialFunctions", "StaticArrays"] - - [deps.Enzyme.extensions] - EnzymeBFloat16sExt = "BFloat16s" - EnzymeChainRulesCoreExt = "ChainRulesCore" - EnzymeLogExpFunctionsExt = "LogExpFunctions" - EnzymeSpecialFunctionsExt = "SpecialFunctions" - EnzymeStaticArraysExt = "StaticArrays" - [[deps.EnzymeCore]] -git-tree-sha1 = "2c366bfe21936e8f44b607eb86a1f4c110f0d841" +git-tree-sha1 = "e333ffd38ecffcf5c6c2dafd10788404ac46fb9f" uuid = "f151be2c-9106-41f4-ab19-57ee4f262869" -version = "0.8.7" +version = "0.8.6" weakdeps = ["Adapt"] [deps.EnzymeCore.extensions] AdaptExt = "Adapt" -[[deps.Enzyme_jll]] -deps = ["Artifacts", "JLLWrappers", "LazyArtifacts", "Libdl", "TOML"] -git-tree-sha1 = "c2db64f193205dc5d2d4e58a315edc2eb469a9f0" -uuid = "7cc45869-7501-5eee-bdea-0790c847d4ef" -version = "0.0.166+0" - -[[deps.EpollShim_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "8a4be429317c42cfae6a7fc03c31bad1970c310d" -uuid = "2702e6a9-849d-5ed8-8c21-79e8b8f9ee43" -version = "0.0.20230411+1" - -[[deps.ExceptionUnwrapping]] -deps = ["Test"] -git-tree-sha1 = "d36f682e590a83d63d1c7dbd287573764682d12a" -uuid = "460bff9d-24e4-43bc-9d9f-a8973cb893f4" -version = "0.1.11" - -[[deps.Expat_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "e51db81749b0777b2147fbe7b783ee79045b8e99" -uuid = "2e619515-83b5-522b-bb60-26c02a35a201" -version = "2.6.4+1" - -[[deps.ExponentialUtilities]] -deps = ["Adapt", "ArrayInterface", "GPUArraysCore", "GenericSchur", "LinearAlgebra", "PrecompileTools", "Printf", "SparseArrays", "libblastrampoline_jll"] -git-tree-sha1 = "cae251c76f353e32d32d76fae2fea655eab652af" -uuid = "d4d017d3-3776-5f7e-afef-a10c40355c18" -version = "1.27.0" -weakdeps = ["StaticArrays"] - - [deps.ExponentialUtilities.extensions] - ExponentialUtilitiesStaticArraysExt = "StaticArrays" - [[deps.ExprTools]] git-tree-sha1 = "27415f162e6028e81c72b82ef756bf321213b6ec" uuid = "e2ba6199-217a-4e67-a87a-7c52f15ade04" @@ -783,18 +590,6 @@ git-tree-sha1 = "fc3951d4d398b5515f91d7fe5d45fc31dccb3c9b" uuid = "6b7a57c9-7cc1-4fdf-b7f5-e857abae3636" version = "0.8.5" -[[deps.FFMPEG]] -deps = ["FFMPEG_jll"] -git-tree-sha1 = "53ebe7511fa11d33bec688a9178fac4e49eeee00" -uuid = "c87230d0-a227-11e9-1b43-d7ebe4e7570a" -version = "0.4.2" - -[[deps.FFMPEG_jll]] -deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "JLLWrappers", "LAME_jll", "Libdl", "Ogg_jll", "OpenSSL_jll", "Opus_jll", "PCRE2_jll", "Zlib_jll", "libaom_jll", "libass_jll", "libfdk_aac_jll", "libvorbis_jll", "x264_jll", "x265_jll"] -git-tree-sha1 = "466d45dc38e15794ec7d5d63ec03d776a9aff36e" -uuid = "b22a6f82-2f65-5046-a5b2-351ab43fb4e5" -version = "4.4.4+1" - [[deps.FastBroadcast]] deps = ["ArrayInterface", "LinearAlgebra", "Polyester", "Static", "StaticArrayInterface", "StrideArraysCore"] git-tree-sha1 = "ab1b34570bcdf272899062e1a56285a53ecaae08" @@ -833,27 +628,6 @@ version = "1.1.1" ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" -[[deps.FileIO]] -deps = ["Pkg", "Requires", "UUIDs"] -git-tree-sha1 = "2dd20384bf8c6d411b5c7370865b1e9b26cb2ea3" -uuid = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" -version = "1.16.6" -weakdeps = ["HTTP"] - - [deps.FileIO.extensions] - HTTPExt = "HTTP" - -[[deps.FilePathsBase]] -deps = ["Compat", "Dates"] -git-tree-sha1 = "7878ff7172a8e6beedd1dea14bd27c3c6340d361" -uuid = "48062228-2e41-5def-b9a4-89aafe57970f" -version = "0.9.22" -weakdeps = ["Mmap", "Test"] - - [deps.FilePathsBase.extensions] - FilePathsBaseMmapExt = "Mmap" - FilePathsBaseTestExt = "Test" - [[deps.FileWatching]] uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee" @@ -898,12 +672,6 @@ git-tree-sha1 = "05882d6995ae5c12bb5f36dd2ed3f61c98cbb172" uuid = "53c48c17-4a7d-5ca2-90c5-79b7896eea93" version = "0.8.5" -[[deps.Fontconfig_jll]] -deps = ["Artifacts", "Bzip2_jll", "Expat_jll", "FreeType2_jll", "JLLWrappers", "Libdl", "Libuuid_jll", "Zlib_jll"] -git-tree-sha1 = "db16beca600632c95fc8aca29890d83788dd8b23" -uuid = "a3f928ae-7b40-5064-980b-68af3947d34b" -version = "2.13.96+0" - [[deps.Format]] git-tree-sha1 = "9c68794ef81b08086aeb32eeaf33531668d5f5fc" uuid = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8" @@ -919,18 +687,6 @@ weakdeps = ["StaticArrays"] [deps.ForwardDiff.extensions] ForwardDiffStaticArraysExt = "StaticArrays" -[[deps.FreeType2_jll]] -deps = ["Artifacts", "Bzip2_jll", "JLLWrappers", "Libdl", "Zlib_jll"] -git-tree-sha1 = "786e968a8d2fb167f2e4880baba62e0e26bd8e4e" -uuid = "d7e528f0-a631-5988-bf34-fe36492bcfd7" -version = "2.13.3+1" - -[[deps.FriBidi_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "1ed150b39aebcc805c26b93a8d0122c940f64ce2" -uuid = "559328eb-81f9-559d-9380-de523a88c83c" -version = "1.0.14+0" - [[deps.FunctionProperties]] deps = ["Cassette", "DiffRules"] git-tree-sha1 = "bf7c740307eb0ee80e05d8aafbd0c5a901578398" @@ -950,20 +706,14 @@ version = "0.1.3" [[deps.Functors]] deps = ["Compat", "ConstructionBase", "LinearAlgebra", "Random"] -git-tree-sha1 = "60a0339f28a233601cb74468032b5c302d5067de" +git-tree-sha1 = "15e5397dd1cea034c7c772d9748cdee461fb5496" uuid = "d9f16b24-f501-4c13-a1f2-28368ffc5196" -version = "0.5.2" +version = "0.5.1" [[deps.Future]] deps = ["Random"] uuid = "9fa8497b-333b-5362-9e8d-4d0656e87820" -[[deps.GLFW_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Libglvnd_jll", "Xorg_libXcursor_jll", "Xorg_libXi_jll", "Xorg_libXinerama_jll", "Xorg_libXrandr_jll", "libdecor_jll", "xkbcommon_jll"] -git-tree-sha1 = "532f9126ad901533af1d4f5c198867227a7bb077" -uuid = "0656b61e-2033-5cc2-a64a-77c0f6c09b89" -version = "3.4.0+1" - [[deps.GPUArrays]] deps = ["Adapt", "GPUArraysCore", "LLVM", "LinearAlgebra", "Printf", "Random", "Reexport", "Serialization", "Statistics"] git-tree-sha1 = "62ee71528cca49be797076a76bdc654a170a523e" @@ -982,76 +732,17 @@ git-tree-sha1 = "1d6f290a5eb1201cd63574fbc4440c788d5cb38f" uuid = "61eb1bfa-7361-4325-ad38-22787b887f55" version = "0.27.8" -[[deps.GR]] -deps = ["Artifacts", "Base64", "DelimitedFiles", "Downloads", "GR_jll", "HTTP", "JSON", "Libdl", "LinearAlgebra", "Preferences", "Printf", "Qt6Wayland_jll", "Random", "Serialization", "Sockets", "TOML", "Tar", "Test", "p7zip_jll"] -git-tree-sha1 = "ee28ddcd5517d54e417182fec3886e7412d3926f" -uuid = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71" -version = "0.73.8" - -[[deps.GR_jll]] -deps = ["Artifacts", "Bzip2_jll", "Cairo_jll", "FFMPEG_jll", "Fontconfig_jll", "FreeType2_jll", "GLFW_jll", "JLLWrappers", "JpegTurbo_jll", "Libdl", "Libtiff_jll", "Pixman_jll", "Qt6Base_jll", "Zlib_jll", "libpng_jll"] -git-tree-sha1 = "f31929b9e67066bee48eec8b03c0df47d31a74b3" -uuid = "d2c73de3-f751-5644-a686-071e5b155ba9" -version = "0.73.8+0" - -[[deps.GenericSchur]] -deps = ["LinearAlgebra", "Printf"] -git-tree-sha1 = "af49a0851f8113fcfae2ef5027c6d49d0acec39b" -uuid = "c145ed77-6b09-5dd9-b285-bf645a82121e" -version = "0.5.4" - -[[deps.Gettext_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Libiconv_jll", "Pkg", "XML2_jll"] -git-tree-sha1 = "9b02998aba7bf074d14de89f9d37ca24a1a0b046" -uuid = "78b55507-aeef-58d4-861c-77aaff3498b1" -version = "0.21.0+0" - -[[deps.Glib_jll]] -deps = ["Artifacts", "Gettext_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Libiconv_jll", "Libmount_jll", "PCRE2_jll", "Zlib_jll"] -git-tree-sha1 = "b36c7e110080ae48fdef61b0c31e6b17ada23b33" -uuid = "7746bdde-850d-59dc-9ae8-88ece973131d" -version = "2.82.2+0" - [[deps.Glob]] git-tree-sha1 = "97285bbd5230dd766e9ef6749b80fc617126d496" uuid = "c27321d9-0574-5035-807b-f59d2c89b15c" version = "1.3.1" -[[deps.Graphite2_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "01979f9b37367603e2848ea225918a3b3861b606" -uuid = "3b182d85-2403-5c21-9c21-1e1f0cc25472" -version = "1.3.14+1" - [[deps.Graphs]] deps = ["ArnoldiMethod", "Compat", "DataStructures", "Distributed", "Inflate", "LinearAlgebra", "Random", "SharedArrays", "SimpleTraits", "SparseArrays", "Statistics"] git-tree-sha1 = "1dc470db8b1131cfc7fb4c115de89fe391b9e780" uuid = "86223c79-3864-5bf0-83f7-82e725a168b6" version = "1.12.0" -[[deps.Grisu]] -git-tree-sha1 = "53bb909d1151e57e2484c3d1b53e19552b887fb2" -uuid = "42e2da0e-8278-4e71-bc24-59509adca0fe" -version = "1.0.2" - -[[deps.HCubature]] -deps = ["Combinatorics", "DataStructures", "LinearAlgebra", "QuadGK", "StaticArrays"] -git-tree-sha1 = "19ef9f0cb324eed957b7fe7257ac84e8ed8a48ec" -uuid = "19dc6840-f33b-545b-b366-655c7e3ffd49" -version = "1.7.0" - -[[deps.HTTP]] -deps = ["Base64", "CodecZlib", "ConcurrentUtilities", "Dates", "ExceptionUnwrapping", "Logging", "LoggingExtras", "MbedTLS", "NetworkOptions", "OpenSSL", "PrecompileTools", "Random", "SimpleBufferStream", "Sockets", "URIs", "UUIDs"] -git-tree-sha1 = "ae350b8225575cc3ea385d4131c81594f86dfe4f" -uuid = "cd3eb016-35fb-5094-929b-558a96fad6f3" -version = "1.10.12" - -[[deps.HarfBuzz_jll]] -deps = ["Artifacts", "Cairo_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "Graphite2_jll", "JLLWrappers", "Libdl", "Libffi_jll"] -git-tree-sha1 = "401e4f3f30f43af2c8478fc008da50096ea5240f" -uuid = "2e76f6c2-a576-52d4-95c1-20adfe4de566" -version = "8.3.1+0" - [[deps.HostCPUFeatures]] deps = ["BitTwiddlingConvenienceFunctions", "IfElse", "Libdl", "Static"] git-tree-sha1 = "8e070b599339d622e9a081d17230d74a5c473293" @@ -1074,48 +765,17 @@ git-tree-sha1 = "50aedf345a709ab75872f80a2779568dc0bb461b" uuid = "e33a78d0-f292-5ffc-b300-72abe9b543c8" version = "2.11.2+1" -[[deps.HydroErrors]] -deps = ["DocStringExtensions", "Statistics"] -path = "D:\\Julia\\Julia-1.10.4\\packages\\dev\\HydroErrors" -uuid = "cde335eb-da38-4796-83c8-e508648b3902" -version = "0.1.0" - [[deps.HypergeometricFunctions]] deps = ["LinearAlgebra", "OpenLibm_jll", "SpecialFunctions"] git-tree-sha1 = "b1c2585431c382e3fe5805874bda6aea90a95de9" uuid = "34004b35-14d8-5ef3-9330-4cdb6864b03a" version = "0.3.25" -[[deps.IRTools]] -deps = ["InteractiveUtils", "MacroTools"] -git-tree-sha1 = "950c3717af761bc3ff906c2e8e52bd83390b6ec2" -uuid = "7869d1d1-7146-5819-86e3-90919afe41df" -version = "0.4.14" - [[deps.IfElse]] git-tree-sha1 = "debdd00ffef04665ccbb3e150747a77560e8fad1" uuid = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173" version = "0.1.1" -[[deps.InfiniteArrays]] -deps = ["ArrayLayouts", "FillArrays", "Infinities", "LazyArrays", "LinearAlgebra"] -git-tree-sha1 = "478ad747fd8e0ac2506a19770e9597289e6027ad" -uuid = "4858937d-0d70-526a-a4dd-2d5cb5dd786c" -version = "0.14.3" - - [deps.InfiniteArrays.extensions] - InfiniteArraysDSPExt = "DSP" - InfiniteArraysStatisticsExt = "Statistics" - - [deps.InfiniteArrays.weakdeps] - DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2" - Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" - -[[deps.Infinities]] -git-tree-sha1 = "6336676b91409ec0a2c82723de9bdf4cabd02d78" -uuid = "e1ba4f0e-776d-440f-acd9-e1d2e9742647" -version = "0.1.8" - [[deps.Inflate]] git-tree-sha1 = "d1b1b796e47d94588b3757fe84fbf65a5ec4a80d" uuid = "d25df0c9-e2be-5dd7-82c8-3ad0b3e990b9" @@ -1139,31 +799,6 @@ git-tree-sha1 = "b8ffb903da9f7b8cf695a8bead8e01814aa24b30" uuid = "18e54dd8-cb9d-406c-a71d-865a43cbb235" version = "0.1.2" -[[deps.Integrals]] -deps = ["CommonSolve", "HCubature", "LinearAlgebra", "MonteCarloIntegration", "QuadGK", "Random", "Reexport", "SciMLBase"] -git-tree-sha1 = "cfdc4fb8d21c8f596572a59912ae863774123622" -uuid = "de52edbc-65ea-441a-8357-d3a637375a31" -version = "4.5.0" - - [deps.Integrals.extensions] - IntegralsArblibExt = "Arblib" - IntegralsCubaExt = "Cuba" - IntegralsCubatureExt = "Cubature" - IntegralsFastGaussQuadratureExt = "FastGaussQuadrature" - IntegralsForwardDiffExt = "ForwardDiff" - IntegralsMCIntegrationExt = "MCIntegration" - IntegralsZygoteExt = ["Zygote", "ChainRulesCore"] - - [deps.Integrals.weakdeps] - Arblib = "fb37089c-8514-4489-9461-98f9c8763369" - ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" - Cuba = "8a292aeb-7a57-582c-b821-06e4c11590b1" - Cubature = "667455a9-e2ce-5579-9412-b964f529a492" - FastGaussQuadrature = "442a2c76-b920-505d-bb47-c5924d526838" - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - MCIntegration = "ea1e2de9-7db7-4b42-91ee-0cd1bf6df167" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - [[deps.IntelOpenMP_jll]] deps = ["Artifacts", "JLLWrappers", "LazyArtifacts", "Libdl"] git-tree-sha1 = "10bd689145d2c3b2a9844005d01087cc1194e79e" @@ -1174,16 +809,6 @@ version = "2024.2.1+0" deps = ["Markdown"] uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240" -[[deps.Interpolations]] -deps = ["Adapt", "AxisAlgorithms", "ChainRulesCore", "LinearAlgebra", "OffsetArrays", "Random", "Ratios", "Requires", "SharedArrays", "SparseArrays", "StaticArrays", "WoodburyMatrices"] -git-tree-sha1 = "88a101217d7cb38a7b481ccd50d21876e1d1b0e0" -uuid = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" -version = "0.15.1" -weakdeps = ["Unitful"] - - [deps.Interpolations.extensions] - InterpolationsUnitfulExt = "Unitful" - [[deps.IntervalSets]] git-tree-sha1 = "dba9ddf07f77f60450fe5d2e2beb9854d9a49bd0" uuid = "8197267c-284f-5f27-9208-e0e47529a953" @@ -1215,46 +840,17 @@ git-tree-sha1 = "630b497eafcc20001bba38a4651b327dcfc491d2" uuid = "92d709cd-6900-40b7-9082-c6be49f344b6" version = "0.2.2" -[[deps.IterTools]] -git-tree-sha1 = "42d5f897009e7ff2cf88db414a389e5ed1bdd023" -uuid = "c8e1da08-722c-5040-9ed9-7db0dc04731e" -version = "1.10.0" - [[deps.IteratorInterfaceExtensions]] git-tree-sha1 = "a3f24677c21f5bbe9d2a714f95dcd58337fb2856" uuid = "82899510-4779-5014-852e-03e436cf321d" version = "1.0.0" -[[deps.JLD2]] -deps = ["FileIO", "MacroTools", "Mmap", "OrderedCollections", "PrecompileTools", "Requires", "TranscodingStreams"] -git-tree-sha1 = "f1a1c1037af2a4541ea186b26b0c0e7eeaad232b" -uuid = "033835bb-8acc-5ee8-8aae-3f567f8a3819" -version = "0.5.10" - -[[deps.JLFzf]] -deps = ["Pipe", "REPL", "Random", "fzf_jll"] -git-tree-sha1 = "71b48d857e86bf7a1838c4736545699974ce79a2" -uuid = "1019f520-868f-41f5-a6de-eb00f4b6a39c" -version = "0.1.9" - [[deps.JLLWrappers]] deps = ["Artifacts", "Preferences"] git-tree-sha1 = "be3dc50a92e5a386872a493a10050136d4703f9b" uuid = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210" version = "1.6.1" -[[deps.JSON]] -deps = ["Dates", "Mmap", "Parsers", "Unicode"] -git-tree-sha1 = "31e996f0a15c7b280ba9f76636b3ff9e2ae58c9a" -uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" -version = "0.21.4" - -[[deps.JpegTurbo_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "25ee0be4d43d0269027024d75a24c24d6c6e590c" -uuid = "aacddb02-875f-59d6-b918-886e6ef4fbf8" -version = "3.0.4+0" - [[deps.JuliaFormatter]] deps = ["CSTParser", "CommonMark", "DataStructures", "Glob", "PrecompileTools", "TOML", "Tokenize"] git-tree-sha1 = "59cf7ad64f1b0708a4fa4369879d33bad3239b56" @@ -1282,9 +878,9 @@ version = "0.6.0" [[deps.KernelAbstractions]] deps = ["Adapt", "Atomix", "InteractiveUtils", "MacroTools", "PrecompileTools", "Requires", "StaticArrays", "UUIDs", "UnsafeAtomics", "UnsafeAtomicsLLVM"] -git-tree-sha1 = "27044736be7c5727d35fc4318d7949dee33c37b4" +git-tree-sha1 = "e73a077abc7fe798fe940deabe30ef6c66bdde52" uuid = "63c18a36-062a-441e-b654-da1e3ab1ce7c" -version = "0.9.30" +version = "0.9.29" weakdeps = ["EnzymeCore", "LinearAlgebra", "SparseArrays"] [deps.KernelAbstractions.extensions] @@ -1292,30 +888,18 @@ weakdeps = ["EnzymeCore", "LinearAlgebra", "SparseArrays"] LinearAlgebraExt = "LinearAlgebra" SparseArraysExt = "SparseArrays" +[[deps.KolmogorovArnold]] +deps = ["ChainRulesCore", "ConcreteStructs", "LinearAlgebra", "LuxCore", "NNlib", "Random", "TensorOperations", "WeightInitializers"] +git-tree-sha1 = "9ddfb845daa58d43ec6e0bd77e1cad49bb89f382" +uuid = "eec8b66d-f71a-4a43-b228-0fe5d6721cd3" +version = "0.0.1" + [[deps.Krylov]] deps = ["LinearAlgebra", "Printf", "SparseArrays"] git-tree-sha1 = "4f20a2df85a9e5d55c9e84634bbf808ed038cabd" uuid = "ba0b0d4f-ebba-5204-a429-3ac8c609bfb7" version = "0.9.8" -[[deps.LAME_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "170b660facf5df5de098d866564877e119141cbd" -uuid = "c1c5ebd0-6772-5130-a774-d5fcae4a789d" -version = "3.100.2+0" - -[[deps.LBFGSB]] -deps = ["L_BFGS_B_jll"] -git-tree-sha1 = "e2e6f53ee20605d0ea2be473480b7480bd5091b5" -uuid = "5be7bae1-8223-5378-bac3-9e7378a2f6e6" -version = "0.4.1" - -[[deps.LERC_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "36bdbc52f13a7d1dcb0f3cd694e01677a515655b" -uuid = "88015f11-f218-50d7-93a8-a6af411a945d" -version = "4.0.0+0" - [[deps.LLVM]] deps = ["CEnum", "LLVMExtra_jll", "Libdl", "Preferences", "Printf", "Unicode"] git-tree-sha1 = "d422dfd9707bec6617335dc2ea3c5172a87d5908" @@ -1337,23 +921,14 @@ git-tree-sha1 = "2e5c102cfc41f48ae4740c7eca7743cc7e7b75ea" uuid = "8b046642-f1f6-4319-8d3c-209ddc03c586" version = "1.0.0" -[[deps.LLVMOpenMP_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "78211fb6cbc872f77cad3fc0b6cf647d923f4929" -uuid = "1d63c593-3942-5779-bab2-d838dc0a180e" -version = "18.1.7+0" +[[deps.LRUCache]] +git-tree-sha1 = "b3cc6698599b10e652832c2f23db3cab99d51b59" +uuid = "8ac3fa9e-de4c-5943-b1dc-09c6b5f20637" +version = "1.6.1" +weakdeps = ["Serialization"] -[[deps.LZO_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "854a9c268c43b77b0a27f22d7fab8d33cdb3a731" -uuid = "dd4b983a-f0e5-5f8d-a1b7-129d4a5fb1ac" -version = "2.10.2+1" - -[[deps.L_BFGS_B_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "77feda930ed3f04b2b0fbb5bea89e69d3677c6b0" -uuid = "81d17ec3-03a1-5e46-b53e-bddc35a13473" -version = "3.0.1+0" + [deps.LRUCache.extensions] + SerializationExt = ["Serialization"] [[deps.LaTeXStrings]] git-tree-sha1 = "dda21b8cbd6a6c40d9d02a73230f9d70fed6918c" @@ -1376,12 +951,6 @@ version = "0.16.5" SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" SymEngine = "123dc426-2d89-5057-bbad-38513e3affd8" -[[deps.LatticeRules]] -deps = ["Random"] -git-tree-sha1 = "7f5b02258a3ca0221a6a9710b0a0a2e8fb4957fe" -uuid = "73f95e8e-ec14-4e6a-8b18-0d2e271c4e55" -version = "0.0.1" - [[deps.LayoutPointers]] deps = ["ArrayInterface", "LinearAlgebra", "ManualMemory", "SIMDTypes", "Static", "StaticArrayInterface"] git-tree-sha1 = "a9eaadb366f5493a5654e843864c13d8b107548c" @@ -1390,9 +959,9 @@ version = "0.1.17" [[deps.LazyArrays]] deps = ["ArrayLayouts", "FillArrays", "LinearAlgebra", "MacroTools", "SparseArrays"] -git-tree-sha1 = "d168f757c5043240005d507ff866e801944c4690" +git-tree-sha1 = "376bc148ae72e68a08f0d5d8a69e287025a37687" uuid = "5078a376-72f3-5289-bfd5-ec5146d43c02" -version = "2.2.4" +version = "2.2.2" [deps.LazyArrays.extensions] LazyArraysBandedMatricesExt = "BandedMatrices" @@ -1410,12 +979,6 @@ version = "2.2.4" deps = ["Artifacts", "Pkg"] uuid = "4af54fe1-eca0-43a8-85a7-787d91b784e3" -[[deps.LeftChildRightSiblingTrees]] -deps = ["AbstractTrees"] -git-tree-sha1 = "fb6803dafae4a5d62ea5cab204b1e657d9737e7f" -uuid = "1d6d02ad-be62-4b6b-8a6d-2f90e265016e" -version = "0.2.0" - [[deps.LibCURL]] deps = ["LibCURL_jll", "MozillaCACerts_jll"] uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21" @@ -1443,54 +1006,6 @@ version = "1.11.0+1" [[deps.Libdl]] uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb" -[[deps.Libffi_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "0b4a5d71f3e5200a7dff793393e09dfc2d874290" -uuid = "e9f186c6-92d2-5b65-8a66-fee21dc1b490" -version = "3.2.2+1" - -[[deps.Libgcrypt_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgpg_error_jll"] -git-tree-sha1 = "8be878062e0ffa2c3f67bb58a595375eda5de80b" -uuid = "d4300ac3-e22c-5743-9152-c294e39db1e4" -version = "1.11.0+0" - -[[deps.Libglvnd_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll", "Xorg_libXext_jll"] -git-tree-sha1 = "ff3b4b9d35de638936a525ecd36e86a8bb919d11" -uuid = "7e76a0d4-f3c7-5321-8279-8d96eeed0f29" -version = "1.7.0+0" - -[[deps.Libgpg_error_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "c6ce1e19f3aec9b59186bdf06cdf3c4fc5f5f3e6" -uuid = "7add5ba3-2f88-524e-9cd5-f83b8a55f7b8" -version = "1.50.0+0" - -[[deps.Libiconv_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "61dfdba58e585066d8bce214c5a51eaa0539f269" -uuid = "94ce4f54-9a6c-5748-9c1c-f9c7231a4531" -version = "1.17.0+1" - -[[deps.Libmount_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "84eef7acd508ee5b3e956a2ae51b05024181dee0" -uuid = "4b2f31a3-9ecc-558c-b454-b3730dcb73e9" -version = "2.40.2+0" - -[[deps.Libtiff_jll]] -deps = ["Artifacts", "JLLWrappers", "JpegTurbo_jll", "LERC_jll", "Libdl", "XZ_jll", "Zlib_jll", "Zstd_jll"] -git-tree-sha1 = "b404131d06f7886402758c9ce2214b636eb4d54a" -uuid = "89763e89-9b03-5906-acba-b20f662cd828" -version = "4.7.0+0" - -[[deps.Libuuid_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "edbf5309f9ddf1cab25afc344b1e8150b7c832f9" -uuid = "38a345b3-de98-5d2b-a5d3-14cd9215e700" -version = "2.40.2+0" - [[deps.LineSearch]] deps = ["ADTypes", "CommonSolve", "ConcreteStructs", "FastClosures", "LinearAlgebra", "MaybeInplace", "SciMLBase", "SciMLJacobianOperators", "StaticArraysCore"] git-tree-sha1 = "97d502765cc5cf3a722120f50da03c2474efce04" @@ -1513,9 +1028,9 @@ uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" [[deps.LinearSolve]] deps = ["ArrayInterface", "ChainRulesCore", "ConcreteStructs", "DocStringExtensions", "EnumX", "FastLapackInterface", "GPUArraysCore", "InteractiveUtils", "KLU", "Krylov", "LazyArrays", "Libdl", "LinearAlgebra", "MKL_jll", "Markdown", "PrecompileTools", "Preferences", "RecursiveFactorization", "Reexport", "SciMLBase", "SciMLOperators", "Setfield", "SparseArrays", "Sparspak", "StaticArraysCore", "UnPack"] -git-tree-sha1 = "9d5872d134bd33dd3e120767004f760770958863" +git-tree-sha1 = "6b79df6e803fb62b79a364b86c790e7e21bd38ce" uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae" -version = "2.38.0" +version = "2.37.0" [deps.LinearSolve.extensions] LinearSolveBandedMatricesExt = "BandedMatrices" @@ -1566,12 +1081,6 @@ version = "0.3.28" [[deps.Logging]] uuid = "56ddb016-857b-54e1-b83d-db4d58db5568" -[[deps.LoggingExtras]] -deps = ["Dates", "Logging"] -git-tree-sha1 = "f02b56007b064fbfddb4c9cd60161b6dd0f40df3" -uuid = "e6f89c97-d47a-5376-807f-9c37f3926c36" -version = "1.1.0" - [[deps.LoopVectorization]] deps = ["ArrayInterface", "CPUSummary", "CloseOpenIntervals", "DocStringExtensions", "HostCPUFeatures", "IfElse", "LayoutPointers", "LinearAlgebra", "OffsetArrays", "PolyesterWeave", "PrecompileTools", "SIMDTypes", "SLEEFPirates", "Static", "StaticArrayInterface", "ThreadingUtilities", "UnPack", "VectorizationBase"] git-tree-sha1 = "8084c25a250e00ae427a379a5b607e7aed96a2dd" @@ -1585,9 +1094,9 @@ weakdeps = ["ChainRulesCore", "ForwardDiff", "SpecialFunctions"] [[deps.Lux]] deps = ["ADTypes", "Adapt", "ArgCheck", "ArrayInterface", "ChainRulesCore", "Compat", "ConcreteStructs", "DispatchDoctor", "EnzymeCore", "FastClosures", "ForwardDiff", "Functors", "GPUArraysCore", "LinearAlgebra", "LuxCore", "LuxLib", "MLDataDevices", "MacroTools", "Markdown", "NNlib", "Optimisers", "Preferences", "Random", "Reexport", "SIMDTypes", "Setfield", "Static", "StaticArraysCore", "Statistics", "WeightInitializers"] -git-tree-sha1 = "3089c2cfa20abc714c8276b79aa9dffbbe40619c" +git-tree-sha1 = "601dd5020a7d4caa7e4cc683a38b54945d6f9651" uuid = "b2108857-7c20-44ae-9111-449ecde12c47" -version = "1.4.0" +version = "1.3.3" [deps.Lux.extensions] LuxComponentArraysExt = "ComponentArrays" @@ -1619,6 +1128,12 @@ version = "1.4.0" Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" +[[deps.LuxCUDA]] +deps = ["CUDA", "Reexport", "cuDNN"] +git-tree-sha1 = "a8a5906be27c42ea0705a2daed04fd57fd12d055" +uuid = "d0bbae9a-e099-4d5b-a835-1c6931763bda" +version = "0.3.3" + [[deps.LuxCore]] deps = ["Compat", "DispatchDoctor", "Random"] git-tree-sha1 = "e1f6a43c5e8ab3524ab42472e57e382a74d45bd5" @@ -1648,9 +1163,9 @@ version = "1.2.0" [[deps.LuxLib]] deps = ["ArrayInterface", "ChainRulesCore", "Compat", "CpuId", "DispatchDoctor", "EnzymeCore", "FastClosures", "ForwardDiff", "Hwloc", "KernelAbstractions", "LinearAlgebra", "LuxCore", "MLDataDevices", "Markdown", "NNlib", "Polyester", "Preferences", "Random", "Reexport", "Static", "StaticArraysCore", "Statistics"] -git-tree-sha1 = "534a18fb11aa9c564c78cddaa61981634a5e02ef" +git-tree-sha1 = "17f5d8c93394786fe3a79e363e59cf94b395c71f" uuid = "82251201-b29d-42c6-8e01-566dec8acb11" -version = "1.3.10" +version = "1.3.8" [deps.LuxLib.extensions] LuxLibAppleAccelerateExt = "AppleAccelerate" @@ -1760,22 +1275,11 @@ weakdeps = ["SparseArrays"] [deps.MaybeInplace.extensions] MaybeInplaceSparseArraysExt = "SparseArrays" -[[deps.MbedTLS]] -deps = ["Dates", "MbedTLS_jll", "MozillaCACerts_jll", "NetworkOptions", "Random", "Sockets"] -git-tree-sha1 = "c067a280ddc25f196b5e7df3877c6b226d390aaf" -uuid = "739be429-bea8-5141-9913-cc70e7f3736d" -version = "1.1.9" - [[deps.MbedTLS_jll]] deps = ["Artifacts", "Libdl"] uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1" version = "2.28.2+1" -[[deps.Measures]] -git-tree-sha1 = "c13304c81eec1ed3af7fc20e75fb6b26092a1102" -uuid = "442fdcdd-2543-5da2-b0f3-8c86c306513e" -version = "0.3.2" - [[deps.Missings]] deps = ["DataAPI"] git-tree-sha1 = "ec4f7fbeab05d7747bdf98eb74d130a2a2ed298d" @@ -1787,9 +1291,9 @@ uuid = "a63ad114-7e13-5084-954f-fe012c677804" [[deps.ModelingToolkit]] deps = ["AbstractTrees", "ArrayInterface", "BlockArrays", "Combinatorics", "CommonSolve", "Compat", "ConstructionBase", "DataStructures", "DiffEqBase", "DiffEqCallbacks", "DiffEqNoiseProcess", "DiffRules", "Distributed", "Distributions", "DocStringExtensions", "DomainSets", "DynamicQuantities", "EnumX", "ExprTools", "Expronicon", "FindFirstFunctions", "ForwardDiff", "FunctionWrappers", "FunctionWrappersWrappers", "Graphs", "InteractiveUtils", "JuliaFormatter", "JumpProcesses", "Latexify", "Libdl", "LinearAlgebra", "MLStyle", "NaNMath", "NonlinearSolve", "OffsetArrays", "OrderedCollections", "PrecompileTools", "RecursiveArrayTools", "Reexport", "RuntimeGeneratedFunctions", "SciMLBase", "SciMLStructures", "Serialization", "Setfield", "SimpleNonlinearSolve", "SparseArrays", "SpecialFunctions", "StaticArrays", "SymbolicIndexingInterface", "SymbolicUtils", "Symbolics", "URIs", "UnPack", "Unitful"] -git-tree-sha1 = "51ed3a5821d9a989c662ff76e0c25ba0bd73837f" +git-tree-sha1 = "c5c654842aa99b6ce5175eb877654bba9ea5c981" uuid = "961ee093-0014-501f-94e3-6117800e7a78" -version = "9.54.0" +version = "9.51.0" [deps.ModelingToolkit.extensions] MTKBifurcationKitExt = "BifurcationKit" @@ -1805,12 +1309,6 @@ version = "9.54.0" HomotopyContinuation = "f213a82b-91d6-5c5d-acf7-10f1c761b327" LabelledArrays = "2ee39098-c373-598a-b85f-a56591580800" -[[deps.MonteCarloIntegration]] -deps = ["Distributions", "QuasiMonteCarlo", "Random"] -git-tree-sha1 = "722ad522068d31954b4a976b66a26aeccbf509ed" -uuid = "4886b29c-78c9-11e9-0a6e-41e1f4161f7b" -version = "0.2.0" - [[deps.MozillaCACerts_jll]] uuid = "14a3606d-f60d-562e-9121-12d972cd8159" version = "2023.1.10" @@ -1840,9 +1338,9 @@ version = "7.8.3" [[deps.NNlib]] deps = ["Adapt", "Atomix", "ChainRulesCore", "GPUArraysCore", "KernelAbstractions", "LinearAlgebra", "Random", "Statistics"] -git-tree-sha1 = "1177f161cda2083543b9967d7ca2a3e24e721e13" +git-tree-sha1 = "da09a1e112fd75f9af2a5229323f01b56ec96a4c" uuid = "872c559c-99b0-510c-b3b7-b6c96a88d5cd" -version = "0.9.26" +version = "0.9.24" [deps.NNlib.extensions] NNlibAMDGPUExt = "AMDGPU" @@ -1878,11 +1376,6 @@ git-tree-sha1 = "0877504529a3e5c3343c6f8b4c0381e57e4387e4" uuid = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3" version = "1.0.2" -[[deps.NamedTupleTools]] -git-tree-sha1 = "90914795fc59df44120fe3fff6742bb0d7adb1d0" -uuid = "d9ec5142-1e00-5aa0-9d6a-321866360f50" -version = "0.14.3" - [[deps.NetworkOptions]] uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908" version = "1.2.0" @@ -1961,12 +1454,6 @@ git-tree-sha1 = "cc97c44e396ab820401c8c404bc1fd18d4c884bd" uuid = "26075421-4e9a-44e1-8bd1-420ed7ad02b2" version = "1.0.0" -[[deps.ObjectFile]] -deps = ["Reexport", "StructIO"] -git-tree-sha1 = "7249afa1c4dfd86bfbcc9b28939ab6ef844f4e11" -uuid = "d8793406-e978-5875-9003-1fc021f44a92" -version = "0.4.2" - [[deps.OffsetArrays]] git-tree-sha1 = "1a27764e945a152f7ca7efa04de513d473e9542e" uuid = "6fe1bfb0-de20-5000-8ca7-80f57d26f881" @@ -1976,12 +1463,6 @@ weakdeps = ["Adapt"] [deps.OffsetArrays.extensions] OffsetArraysAdaptExt = "Adapt" -[[deps.Ogg_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "887579a3eb005446d514ab7aeac5d1d027658b8f" -uuid = "e7412a2a-1a6e-54c0-be00-318e2571c051" -version = "1.3.5+1" - [[deps.OpenBLAS_jll]] deps = ["Artifacts", "CompilerSupportLibraries_jll", "Libdl"] uuid = "4536629a-c528-5b80-bd46-f80d51c5b363" @@ -1992,18 +1473,6 @@ deps = ["Artifacts", "Libdl"] uuid = "05823500-19ac-5b8b-9628-191a04bc5112" version = "0.8.1+2" -[[deps.OpenSSL]] -deps = ["BitFlags", "Dates", "MozillaCACerts_jll", "OpenSSL_jll", "Sockets"] -git-tree-sha1 = "38cb508d080d21dc1128f7fb04f20387ed4c0af4" -uuid = "4d8831e6-92b7-49fb-bdf8-b643e874388c" -version = "1.4.3" - -[[deps.OpenSSL_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "7493f61f55a6cce7325f197443aa80d32554ba10" -uuid = "458c3c95-2e84-50aa-8efc-19380b2a3a95" -version = "3.0.15+1" - [[deps.OpenSpecFun_jll]] deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "Libdl", "Pkg"] git-tree-sha1 = "13652491f6856acfd2db29360e1bbcd4565d04f1" @@ -2024,261 +1493,18 @@ version = "1.10.0" [[deps.Optimisers]] deps = ["ChainRulesCore", "Functors", "LinearAlgebra", "Random", "Statistics"] -git-tree-sha1 = "c9ff5c686240c31eb8570b662dd1f66f4b183116" +git-tree-sha1 = "09000e0bdec3aed6e3dff553c9fb010d27de56ee" uuid = "3bd65402-5787-11e9-1adc-39752487f4e2" -version = "0.3.4" - -[[deps.Optimization]] -deps = ["ADTypes", "ArrayInterface", "ConsoleProgressMonitor", "DocStringExtensions", "LBFGSB", "LinearAlgebra", "Logging", "LoggingExtras", "OptimizationBase", "Printf", "ProgressLogging", "Reexport", "SciMLBase", "SparseArrays", "TerminalLoggers"] -git-tree-sha1 = "4b59eef21418fbdf28afbe2d7e945d8efbe5057d" -uuid = "7f7a1694-90dd-40f0-9382-eb1efda571ba" -version = "4.0.5" - -[[deps.OptimizationBBO]] -deps = ["BlackBoxOptim", "Optimization", "Reexport"] -git-tree-sha1 = "62d34beecb9af84159045cfe2b09691b0fb66598" -uuid = "3e6eede4-6085-4f62-9a71-46d9bc1eb92b" -version = "0.4.0" - -[[deps.OptimizationBase]] -deps = ["ADTypes", "ArrayInterface", "DifferentiationInterface", "DocStringExtensions", "FastClosures", "LinearAlgebra", "PDMats", "Reexport", "Requires", "SciMLBase", "SparseArrays", "SparseConnectivityTracer", "SparseMatrixColorings"] -git-tree-sha1 = "9e8569bc1c511c425fdc63f7ee41f2da057f8662" -uuid = "bca83a33-5cc9-4baa-983d-23429ab6bcbb" -version = "2.4.0" - - [deps.OptimizationBase.extensions] - OptimizationEnzymeExt = "Enzyme" - OptimizationFiniteDiffExt = "FiniteDiff" - OptimizationForwardDiffExt = "ForwardDiff" - OptimizationMLDataDevicesExt = "MLDataDevices" - OptimizationMLUtilsExt = "MLUtils" - OptimizationMTKExt = "ModelingToolkit" - OptimizationReverseDiffExt = "ReverseDiff" - OptimizationSymbolicAnalysisExt = "SymbolicAnalysis" - OptimizationZygoteExt = "Zygote" - - [deps.OptimizationBase.weakdeps] - Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" - FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41" - ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" - MLDataDevices = "7e8f7934-dd98-4c1a-8fe8-92b47a384d40" - MLUtils = "f1d291b0-491e-4a28-83b9-f70985020b54" - ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" - ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" - SymbolicAnalysis = "4297ee4d-0239-47d8-ba5d-195ecdf594fe" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.OptimizationOptimisers]] -deps = ["Optimisers", "Optimization", "Printf", "ProgressLogging", "Reexport"] -git-tree-sha1 = "46198dfc26b392d6194c6d24a9ec26a7f17663bd" -uuid = "42dfb2eb-d2b4-4451-abcd-913932933ac1" -version = "0.3.4" +version = "0.4.1" +weakdeps = ["EnzymeCore"] -[[deps.Opus_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "6703a85cb3781bd5909d48730a67205f3f31a575" -uuid = "91d4177d-7536-5919-b921-800302f37372" -version = "1.3.3+0" + [deps.Optimisers.extensions] + OptimisersEnzymeCoreExt = "EnzymeCore" [[deps.OrderedCollections]] -git-tree-sha1 = "12f1439c4f986bb868acda6ea33ebc78e19b95ad" +git-tree-sha1 = "dfdf5519f235516220579f949664f1bf44e741c5" uuid = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" -version = "1.7.0" - -[[deps.OrdinaryDiffEq]] -deps = ["ADTypes", "Adapt", "ArrayInterface", "DataStructures", "DiffEqBase", "DocStringExtensions", "EnumX", "ExponentialUtilities", "FastBroadcast", "FastClosures", "FillArrays", "FiniteDiff", "ForwardDiff", "FunctionWrappersWrappers", "InteractiveUtils", "LineSearches", "LinearAlgebra", "LinearSolve", "Logging", "MacroTools", "MuladdMacro", "NonlinearSolve", "OrdinaryDiffEqAdamsBashforthMoulton", "OrdinaryDiffEqBDF", "OrdinaryDiffEqCore", "OrdinaryDiffEqDefault", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqExplicitRK", "OrdinaryDiffEqExponentialRK", "OrdinaryDiffEqExtrapolation", "OrdinaryDiffEqFIRK", "OrdinaryDiffEqFeagin", "OrdinaryDiffEqFunctionMap", "OrdinaryDiffEqHighOrderRK", "OrdinaryDiffEqIMEXMultistep", "OrdinaryDiffEqLinear", "OrdinaryDiffEqLowOrderRK", "OrdinaryDiffEqLowStorageRK", "OrdinaryDiffEqNonlinearSolve", "OrdinaryDiffEqNordsieck", "OrdinaryDiffEqPDIRK", "OrdinaryDiffEqPRK", "OrdinaryDiffEqQPRK", "OrdinaryDiffEqRKN", "OrdinaryDiffEqRosenbrock", "OrdinaryDiffEqSDIRK", "OrdinaryDiffEqSSPRK", "OrdinaryDiffEqStabilizedIRK", "OrdinaryDiffEqStabilizedRK", "OrdinaryDiffEqSymplecticRK", "OrdinaryDiffEqTsit5", "OrdinaryDiffEqVerner", "Polyester", "PreallocationTools", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "SciMLBase", "SciMLOperators", "SciMLStructures", "SimpleNonlinearSolve", "SimpleUnPack", "SparseArrays", "SparseDiffTools", "Static", "StaticArrayInterface", "StaticArrays", "TruncatedStacktraces"] -git-tree-sha1 = "36ce9bfc14a4b3dcf1490e80b5f1f4d35bfddf39" -uuid = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" -version = "6.90.1" - -[[deps.OrdinaryDiffEqAdamsBashforthMoulton]] -deps = ["ADTypes", "DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqLowOrderRK", "Polyester", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "8e3c5978d0531a961f70d2f2730d1d16ed3bbd12" -uuid = "89bda076-bce5-4f1c-845f-551c83cdda9a" -version = "1.1.0" - -[[deps.OrdinaryDiffEqBDF]] -deps = ["ArrayInterface", "DiffEqBase", "FastBroadcast", "LinearAlgebra", "MacroTools", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "OrdinaryDiffEqSDIRK", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "StaticArrays", "TruncatedStacktraces"] -git-tree-sha1 = "b4498d40bf35da0b6d22652ff2e9d8820590b3c6" -uuid = "6ad6398a-0878-4a85-9266-38940aa047c8" -version = "1.1.2" - -[[deps.OrdinaryDiffEqCore]] -deps = ["ADTypes", "Accessors", "Adapt", "ArrayInterface", "DataStructures", "DiffEqBase", "DocStringExtensions", "EnumX", "FastBroadcast", "FastClosures", "FastPower", "FillArrays", "FunctionWrappersWrappers", "InteractiveUtils", "LinearAlgebra", "Logging", "MacroTools", "MuladdMacro", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "SciMLBase", "SciMLOperators", "SciMLStructures", "SimpleUnPack", "Static", "StaticArrayInterface", "StaticArraysCore", "SymbolicIndexingInterface", "TruncatedStacktraces"] -git-tree-sha1 = "c7f395034602c3e4d40ece93dc2c9f066f0ce61f" -uuid = "bbf590c4-e513-4bbe-9b18-05decba2e5d8" -version = "1.13.0" -weakdeps = ["EnzymeCore"] - - [deps.OrdinaryDiffEqCore.extensions] - OrdinaryDiffEqCoreEnzymeCoreExt = "EnzymeCore" - -[[deps.OrdinaryDiffEqDefault]] -deps = ["DiffEqBase", "EnumX", "LinearAlgebra", "LinearSolve", "OrdinaryDiffEqBDF", "OrdinaryDiffEqCore", "OrdinaryDiffEqRosenbrock", "OrdinaryDiffEqTsit5", "OrdinaryDiffEqVerner", "PrecompileTools", "Preferences", "Reexport"] -git-tree-sha1 = "c8223e487d58bef28a3535b33ddf8ffdb44f46fb" -uuid = "50262376-6c5a-4cf5-baba-aaf4f84d72d7" -version = "1.1.0" - -[[deps.OrdinaryDiffEqDifferentiation]] -deps = ["ADTypes", "ArrayInterface", "DiffEqBase", "FastBroadcast", "FiniteDiff", "ForwardDiff", "FunctionWrappersWrappers", "LinearAlgebra", "LinearSolve", "OrdinaryDiffEqCore", "SciMLBase", "SparseArrays", "SparseDiffTools", "StaticArrayInterface", "StaticArrays"] -git-tree-sha1 = "8977f283a7d89c5d5c06c933467ed4af0a99f2f7" -uuid = "4302a76b-040a-498a-8c04-15b101fed76b" -version = "1.2.0" - -[[deps.OrdinaryDiffEqExplicitRK]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "TruncatedStacktraces"] -git-tree-sha1 = "4dbce3f9e6974567082ce5176e21aab0224a69e9" -uuid = "9286f039-9fbf-40e8-bf65-aa933bdc4db0" -version = "1.1.0" - -[[deps.OrdinaryDiffEqExponentialRK]] -deps = ["DiffEqBase", "ExponentialUtilities", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqSDIRK", "OrdinaryDiffEqVerner", "RecursiveArrayTools", "Reexport", "SciMLBase"] -git-tree-sha1 = "f63938b8e9e5d3a05815defb3ebdbdcf61ec0a74" -uuid = "e0540318-69ee-4070-8777-9e2de6de23de" -version = "1.1.0" - -[[deps.OrdinaryDiffEqExtrapolation]] -deps = ["DiffEqBase", "FastBroadcast", "FastPower", "LinearSolve", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "Polyester", "RecursiveArrayTools", "Reexport"] -git-tree-sha1 = "048bcccc8f59c20d5b4ad268eef4d7d21c005a94" -uuid = "becaefa8-8ca2-5cf9-886d-c06f3d2bd2c4" -version = "1.2.1" - -[[deps.OrdinaryDiffEqFIRK]] -deps = ["DiffEqBase", "FastBroadcast", "FastPower", "LinearAlgebra", "LinearSolve", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "RecursiveArrayTools", "Reexport", "SciMLOperators"] -git-tree-sha1 = "7a6e3996dc0850aee6cdc10c8afa377242fce702" -uuid = "5960d6e9-dd7a-4743-88e7-cf307b64f125" -version = "1.5.0" - -[[deps.OrdinaryDiffEqFeagin]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "a7cc74d3433db98e59dc3d58bc28174c6c290adf" -uuid = "101fe9f7-ebb6-4678-b671-3a81e7194747" -version = "1.1.0" - -[[deps.OrdinaryDiffEqFunctionMap]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "SciMLBase", "Static"] -git-tree-sha1 = "925a91583d1ab84f1f0fea121be1abf1179c5926" -uuid = "d3585ca7-f5d3-4ba6-8057-292ed1abd90f" -version = "1.1.1" - -[[deps.OrdinaryDiffEqHighOrderRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "103e017ff186ac39d731904045781c9bacfca2b0" -uuid = "d28bc4f8-55e1-4f49-af69-84c1a99f0f58" -version = "1.1.0" - -[[deps.OrdinaryDiffEqIMEXMultistep]] -deps = ["DiffEqBase", "FastBroadcast", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "Reexport"] -git-tree-sha1 = "9f8f52aad2399d7714b400ff9d203254b0a89c4a" -uuid = "9f002381-b378-40b7-97a6-27a27c83f129" -version = "1.1.0" - -[[deps.OrdinaryDiffEqLinear]] -deps = ["DiffEqBase", "ExponentialUtilities", "LinearAlgebra", "OrdinaryDiffEqCore", "OrdinaryDiffEqTsit5", "OrdinaryDiffEqVerner", "RecursiveArrayTools", "Reexport", "SciMLBase", "SciMLOperators"] -git-tree-sha1 = "0f81a77ede3da0dc714ea61e81c76b25db4ab87a" -uuid = "521117fe-8c41-49f8-b3b6-30780b3f0fb5" -version = "1.1.0" - -[[deps.OrdinaryDiffEqLowOrderRK]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "SciMLBase", "Static"] -git-tree-sha1 = "d4bb32e09d6b68ce2eb45fb81001eab46f60717a" -uuid = "1344f307-1e59-4825-a18e-ace9aa3fa4c6" -version = "1.2.0" - -[[deps.OrdinaryDiffEqLowStorageRK]] -deps = ["Adapt", "DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static", "StaticArrays"] -git-tree-sha1 = "590561f3af623d5485d070b4d7044f8854535f5a" -uuid = "b0944070-b475-4768-8dec-fb6eb410534d" -version = "1.2.1" - -[[deps.OrdinaryDiffEqNonlinearSolve]] -deps = ["ADTypes", "ArrayInterface", "DiffEqBase", "FastBroadcast", "FastClosures", "ForwardDiff", "LinearAlgebra", "LinearSolve", "MuladdMacro", "NonlinearSolve", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "PreallocationTools", "RecursiveArrayTools", "SciMLBase", "SciMLOperators", "SciMLStructures", "SimpleNonlinearSolve", "StaticArrays"] -git-tree-sha1 = "3a3eb0b7ef3f996c468d6f8013eac9525bcfd788" -uuid = "127b3ac7-2247-4354-8eb6-78cf4e7c58e8" -version = "1.3.0" - -[[deps.OrdinaryDiffEqNordsieck]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqTsit5", "Polyester", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "ef44754f10e0dfb9bb55ded382afed44cd94ab57" -uuid = "c9986a66-5c92-4813-8696-a7ec84c806c8" -version = "1.1.0" - -[[deps.OrdinaryDiffEqPDIRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "Polyester", "Reexport", "StaticArrays"] -git-tree-sha1 = "a8b7f8107c477e07c6a6c00d1d66cac68b801bbc" -uuid = "5dd0a6cf-3d4b-4314-aa06-06d4e299bc89" -version = "1.1.0" - -[[deps.OrdinaryDiffEqPRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "Reexport"] -git-tree-sha1 = "da525d277962a1b76102c79f30cb0c31e13fe5b9" -uuid = "5b33eab2-c0f1-4480-b2c3-94bc1e80bda1" -version = "1.1.0" - -[[deps.OrdinaryDiffEqQPRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "332f9d17d0229218f66a73492162267359ba85e9" -uuid = "04162be5-8125-4266-98ed-640baecc6514" -version = "1.1.0" - -[[deps.OrdinaryDiffEqRKN]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "RecursiveArrayTools", "Reexport"] -git-tree-sha1 = "41c09d9c20877546490f907d8dffdd52690dd65f" -uuid = "af6ede74-add8-4cfd-b1df-9a4dbb109d7a" -version = "1.1.0" - -[[deps.OrdinaryDiffEqRosenbrock]] -deps = ["ADTypes", "DiffEqBase", "FastBroadcast", "FiniteDiff", "ForwardDiff", "LinearAlgebra", "LinearSolve", "MacroTools", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static"] -git-tree-sha1 = "760a51a626d0065455847e4a3f788b07e86e5090" -uuid = "43230ef6-c299-4910-a778-202eb28ce4ce" -version = "1.3.1" - -[[deps.OrdinaryDiffEqSDIRK]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MacroTools", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "RecursiveArrayTools", "Reexport", "SciMLBase", "TruncatedStacktraces"] -git-tree-sha1 = "f6683803a58de600ab7a26d2f49411c9923e9721" -uuid = "2d112036-d095-4a1e-ab9a-08536f3ecdbf" -version = "1.1.0" - -[[deps.OrdinaryDiffEqSSPRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static", "StaticArrays"] -git-tree-sha1 = "7dbe4ac56f930df5e9abd003cedb54e25cbbea86" -uuid = "669c94d9-1f4b-4b64-b377-1aa079aa2388" -version = "1.2.0" - -[[deps.OrdinaryDiffEqStabilizedIRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "OrdinaryDiffEqDifferentiation", "OrdinaryDiffEqNonlinearSolve", "RecursiveArrayTools", "Reexport", "StaticArrays"] -git-tree-sha1 = "348fd6def9a88518715425025eadd58517017325" -uuid = "e3e12d00-db14-5390-b879-ac3dd2ef6296" -version = "1.1.0" - -[[deps.OrdinaryDiffEqStabilizedRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "RecursiveArrayTools", "Reexport", "StaticArrays"] -git-tree-sha1 = "1b0d894c880e25f7d0b022d7257638cf8ce5b311" -uuid = "358294b1-0aab-51c3-aafe-ad5ab194a2ad" -version = "1.1.0" - -[[deps.OrdinaryDiffEqSymplecticRK]] -deps = ["DiffEqBase", "FastBroadcast", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "RecursiveArrayTools", "Reexport"] -git-tree-sha1 = "4e8b8c8b81df3df17e2eb4603115db3b30a88235" -uuid = "fa646aed-7ef9-47eb-84c4-9443fc8cbfa8" -version = "1.1.0" - -[[deps.OrdinaryDiffEqTsit5]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static", "TruncatedStacktraces"] -git-tree-sha1 = "96552f7d4619fabab4038a29ed37dd55e9eb513a" -uuid = "b1df2697-797e-41e3-8120-5422d3b24e4a" -version = "1.1.0" - -[[deps.OrdinaryDiffEqVerner]] -deps = ["DiffEqBase", "FastBroadcast", "LinearAlgebra", "MuladdMacro", "OrdinaryDiffEqCore", "Polyester", "PrecompileTools", "Preferences", "RecursiveArrayTools", "Reexport", "Static", "TruncatedStacktraces"] -git-tree-sha1 = "81d7841e73e385b9925d5c8e4427f2adcdda55db" -uuid = "79d7bb75-1356-48c1-b8c0-6832512096c2" -version = "1.1.1" - -[[deps.PCRE2_jll]] -deps = ["Artifacts", "Libdl"] -uuid = "efcefdf7-47ab-520b-bdef-62a2eaa19f15" -version = "10.42.0+1" +version = "1.6.3" [[deps.PDMats]] deps = ["LinearAlgebra", "SparseArrays", "SuiteSparse"] @@ -2292,78 +1518,17 @@ uuid = "65ce6f38-6b18-4e1d-a461-8949797d7930" version = "1.0.2" weakdeps = ["Requires", "TOML"] -[[deps.Pango_jll]] -deps = ["Artifacts", "Cairo_jll", "Fontconfig_jll", "FreeType2_jll", "FriBidi_jll", "Glib_jll", "HarfBuzz_jll", "JLLWrappers", "Libdl"] -git-tree-sha1 = "e127b609fb9ecba6f201ba7ab753d5a605d53801" -uuid = "36c8627f-9965-5494-a995-c6b170f724f3" -version = "1.54.1+0" - -[[deps.ParameterSchedulers]] -deps = ["InfiniteArrays", "Optimisers"] -git-tree-sha1 = "c62f0da0663704d0472ae578c9bb802c44e70a4c" -uuid = "d7d3b36b-41b8-4d0d-a2bf-768c6151755e" -version = "0.4.3" - [[deps.Parameters]] deps = ["OrderedCollections", "UnPack"] git-tree-sha1 = "34c0e9ad262e5f7fc75b10a9952ca7692cfc5fbe" uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a" version = "0.12.3" -[[deps.Parsers]] -deps = ["Dates", "PrecompileTools", "UUIDs"] -git-tree-sha1 = "8489905bcdbcfac64d1daa51ca07c0d8f0283821" -uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0" -version = "2.8.1" - -[[deps.Pipe]] -git-tree-sha1 = "6842804e7867b115ca9de748a0cf6b364523c16d" -uuid = "b98c9c47-44ae-5843-9183-064241ee97a0" -version = "1.3.0" - -[[deps.Pixman_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "JLLWrappers", "LLVMOpenMP_jll", "Libdl"] -git-tree-sha1 = "35621f10a7531bc8fa58f74610b1bfb70a3cfc6b" -uuid = "30392449-352a-5448-841d-b1acce4e97dc" -version = "0.43.4+0" - [[deps.Pkg]] deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"] uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" version = "1.10.0" -[[deps.PlotThemes]] -deps = ["PlotUtils", "Statistics"] -git-tree-sha1 = "41031ef3a1be6f5bbbf3e8073f210556daeae5ca" -uuid = "ccf2f8ad-2431-5c83-bf29-c5338b663b6a" -version = "3.3.0" - -[[deps.PlotUtils]] -deps = ["ColorSchemes", "Colors", "Dates", "PrecompileTools", "Printf", "Random", "Reexport", "StableRNGs", "Statistics"] -git-tree-sha1 = "3ca9a356cd2e113c420f2c13bea19f8d3fb1cb18" -uuid = "995b91a9-d308-5afd-9ec6-746e21dbc043" -version = "1.4.3" - -[[deps.Plots]] -deps = ["Base64", "Contour", "Dates", "Downloads", "FFMPEG", "FixedPointNumbers", "GR", "JLFzf", "JSON", "LaTeXStrings", "Latexify", "LinearAlgebra", "Measures", "NaNMath", "Pkg", "PlotThemes", "PlotUtils", "PrecompileTools", "Printf", "REPL", "Random", "RecipesBase", "RecipesPipeline", "Reexport", "RelocatableFolders", "Requires", "Scratch", "Showoff", "SparseArrays", "Statistics", "StatsBase", "TOML", "UUIDs", "UnicodeFun", "UnitfulLatexify", "Unzip"] -git-tree-sha1 = "dae01f8c2e069a683d3a6e17bbae5070ab94786f" -uuid = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" -version = "1.40.9" - - [deps.Plots.extensions] - FileIOExt = "FileIO" - GeometryBasicsExt = "GeometryBasics" - IJuliaExt = "IJulia" - ImageInTerminalExt = "ImageInTerminal" - UnitfulExt = "Unitful" - - [deps.Plots.weakdeps] - FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" - GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326" - IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a" - ImageInTerminal = "d8c32880-2388-543b-8c61-d9f865259254" - Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" - [[deps.PoissonRandom]] deps = ["Random"] git-tree-sha1 = "a0f1159c33f846aa77c3f30ebbc69795e5327152" @@ -2399,11 +1564,13 @@ deps = ["Adapt", "ArrayInterface", "ForwardDiff"] git-tree-sha1 = "6c62ce45f268f3f958821a1e5192cf91c75ae89c" uuid = "d236fae5-4411-538c-8e31-a6e3d9e00b46" version = "0.4.24" -weakdeps = ["ReverseDiff"] [deps.PreallocationTools.extensions] PreallocationToolsReverseDiffExt = "ReverseDiff" + [deps.PreallocationTools.weakdeps] + ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" + [[deps.PrecompileTools]] deps = ["Preferences"] git-tree-sha1 = "5aa36f7049a63a1528fe8f7c3f2113413ffd4e1f" @@ -2432,70 +1599,22 @@ version = "0.5.6" deps = ["Unicode"] uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7" -[[deps.Profile]] -deps = ["Printf"] -uuid = "9abbd945-dff8-562f-b5e8-e1ebf5ef1b79" - -[[deps.ProgressLogging]] -deps = ["Logging", "SHA", "UUIDs"] -git-tree-sha1 = "80d919dee55b9c50e8d9e2da5eeafff3fe58b539" -uuid = "33c8b6b6-d38a-422a-b730-caa89a2f386c" -version = "0.1.4" - -[[deps.ProgressMeter]] -deps = ["Distributed", "Printf"] -git-tree-sha1 = "8f6bc219586aef8baf0ff9a5fe16ee9c70cb65e4" -uuid = "92933f4c-e287-5a05-a399-4b506db050ca" -version = "1.10.2" - [[deps.PtrArrays]] git-tree-sha1 = "77a42d78b6a92df47ab37e177b2deac405e1c88f" uuid = "43287f4e-b6f4-7ad1-bb20-aadabca52c3d" version = "1.2.1" -[[deps.Qt6Base_jll]] -deps = ["Artifacts", "CompilerSupportLibraries_jll", "Fontconfig_jll", "Glib_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "OpenSSL_jll", "Vulkan_Loader_jll", "Xorg_libSM_jll", "Xorg_libXext_jll", "Xorg_libXrender_jll", "Xorg_libxcb_jll", "Xorg_xcb_util_cursor_jll", "Xorg_xcb_util_image_jll", "Xorg_xcb_util_keysyms_jll", "Xorg_xcb_util_renderutil_jll", "Xorg_xcb_util_wm_jll", "Zlib_jll", "libinput_jll", "xkbcommon_jll"] -git-tree-sha1 = "492601870742dcd38f233b23c3ec629628c1d724" -uuid = "c0090381-4147-56d7-9ebc-da0b1113ec56" -version = "6.7.1+1" - -[[deps.Qt6Declarative_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Qt6Base_jll", "Qt6ShaderTools_jll"] -git-tree-sha1 = "e5dd466bf2569fe08c91a2cc29c1003f4797ac3b" -uuid = "629bc702-f1f5-5709-abd5-49b8460ea067" -version = "6.7.1+2" - -[[deps.Qt6ShaderTools_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Qt6Base_jll"] -git-tree-sha1 = "1a180aeced866700d4bebc3120ea1451201f16bc" -uuid = "ce943373-25bb-56aa-8eca-768745ed7b5a" -version = "6.7.1+1" - -[[deps.Qt6Wayland_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Qt6Base_jll", "Qt6Declarative_jll"] -git-tree-sha1 = "729927532d48cf79f49070341e1d918a65aba6b0" -uuid = "e99dba38-086e-5de3-a5b1-6e4c66e897c3" -version = "6.7.1+1" - [[deps.QuadGK]] deps = ["DataStructures", "LinearAlgebra"] git-tree-sha1 = "cda3b045cf9ef07a08ad46731f5a3165e56cf3da" uuid = "1fd47b50-473d-5c70-9696-f719f8f3bcdc" version = "2.11.1" -weakdeps = ["Enzyme"] [deps.QuadGK.extensions] QuadGKEnzymeExt = "Enzyme" -[[deps.QuasiMonteCarlo]] -deps = ["Accessors", "ConcreteStructs", "LatticeRules", "LinearAlgebra", "Primes", "Random", "Requires", "Sobol", "StatsBase"] -git-tree-sha1 = "cc086f8485bce77b6187141e1413c3b55f9a4341" -uuid = "8a4e6c94-4038-4cdc-81c3-7e6ffdb2a71b" -version = "0.3.3" -weakdeps = ["Distributions"] - - [deps.QuasiMonteCarlo.extensions] - QuasiMonteCarloDistributionsExt = "Distributions" + [deps.QuadGK.weakdeps] + Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" [[deps.REPL]] deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"] @@ -2517,39 +1636,17 @@ git-tree-sha1 = "c6ec94d2aaba1ab2ff983052cf6a606ca5985902" uuid = "e6cf234a-135c-5ec9-84dd-332b85af5143" version = "1.6.0" -[[deps.Ratios]] -deps = ["Requires"] -git-tree-sha1 = "1342a47bf3260ee108163042310d26f2be5ec90b" -uuid = "c84ed2f1-dad5-54f0-aa8e-dbefe2724439" -version = "0.4.5" -weakdeps = ["FixedPointNumbers"] - - [deps.Ratios.extensions] - RatiosFixedPointNumbersExt = "FixedPointNumbers" - -[[deps.RealDot]] -deps = ["LinearAlgebra"] -git-tree-sha1 = "9f0a1b71baaf7650f4fa8a1d168c7fb6ee41f0c9" -uuid = "c1ae055f-0cd5-4b69-90a6-9a35b1a98df9" -version = "0.1.0" - [[deps.RecipesBase]] deps = ["PrecompileTools"] git-tree-sha1 = "5c3d09cc4f31f5fc6af001c250bf1278733100ff" uuid = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" version = "1.3.4" -[[deps.RecipesPipeline]] -deps = ["Dates", "NaNMath", "PlotUtils", "PrecompileTools", "RecipesBase"] -git-tree-sha1 = "45cf9fd0ca5839d06ef333c8201714e888486342" -uuid = "01d81517-befc-4cb6-b9ec-a95719d0359c" -version = "0.6.12" - [[deps.RecursiveArrayTools]] deps = ["Adapt", "ArrayInterface", "DocStringExtensions", "GPUArraysCore", "IteratorInterfaceExtensions", "LinearAlgebra", "RecipesBase", "StaticArraysCore", "Statistics", "SymbolicIndexingInterface", "Tables"] -git-tree-sha1 = "32f824db4e5bab64e25a12b22483a30a6b813d08" +git-tree-sha1 = "6f4dca5fd8e97087a76b7ab8384d1c3086ace0b7" uuid = "731186ca-8d62-57ce-b412-fbd966d074cd" -version = "3.27.4" +version = "3.27.3" [deps.RecursiveArrayTools.extensions] RecursiveArrayToolsFastBroadcastExt = "FastBroadcast" @@ -2558,7 +1655,6 @@ version = "3.27.4" RecursiveArrayToolsMonteCarloMeasurementsExt = "MonteCarloMeasurements" RecursiveArrayToolsReverseDiffExt = ["ReverseDiff", "Zygote"] RecursiveArrayToolsSparseArraysExt = ["SparseArrays"] - RecursiveArrayToolsStructArraysExt = "StructArrays" RecursiveArrayToolsTrackerExt = "Tracker" RecursiveArrayToolsZygoteExt = "Zygote" @@ -2569,7 +1665,6 @@ version = "3.27.4" MonteCarloMeasurements = "0987c9cc-fe09-11e8-30f0-b96dd679fdca" ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" - StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" @@ -2584,12 +1679,6 @@ git-tree-sha1 = "45e428421666073eab6f2da5c9d310d99bb12f9b" uuid = "189a3867-3050-52da-a836-e630ba90ab69" version = "1.2.2" -[[deps.RelocatableFolders]] -deps = ["SHA", "Scratch"] -git-tree-sha1 = "ffdaf70d81cf6ff22c2b6e733c900c3321cab864" -uuid = "05181044-ff0b-4ac5-8273-598c1e38db00" -version = "1.0.1" - [[deps.Requires]] deps = ["UUIDs"] git-tree-sha1 = "838a3a4188e2ded87a4f9f184b4b0d78a1e91cb7" @@ -2602,12 +1691,6 @@ git-tree-sha1 = "256eeeec186fa7f26f2801732774ccf277f05db9" uuid = "ae5879a3-cd67-5da8-be7f-38c6eb64a37b" version = "1.1.1" -[[deps.ReverseDiff]] -deps = ["ChainRulesCore", "DiffResults", "DiffRules", "ForwardDiff", "FunctionWrappers", "LinearAlgebra", "LogExpFunctions", "MacroTools", "NaNMath", "Random", "SpecialFunctions", "StaticArrays", "Statistics"] -git-tree-sha1 = "cc6cd622481ea366bb9067859446a8b01d92b468" -uuid = "37e2e3b7-166d-5795-8a7a-e32c996b4267" -version = "1.15.3" - [[deps.Rmath]] deps = ["Random", "Rmath_jll"] git-tree-sha1 = "852bd0f55565a9e973fcfee83a84413270224dc4" @@ -2643,9 +1726,9 @@ version = "0.6.43" [[deps.SciMLBase]] deps = ["ADTypes", "Accessors", "ArrayInterface", "CommonSolve", "ConstructionBase", "Distributed", "DocStringExtensions", "EnumX", "Expronicon", "FunctionWrappersWrappers", "IteratorInterfaceExtensions", "LinearAlgebra", "Logging", "Markdown", "PrecompileTools", "Preferences", "Printf", "RecipesBase", "RecursiveArrayTools", "Reexport", "RuntimeGeneratedFunctions", "SciMLOperators", "SciMLStructures", "StaticArraysCore", "Statistics", "SymbolicIndexingInterface"] -git-tree-sha1 = "f48e0239fbb7799e8d81133ea71a726ec510c9ef" +git-tree-sha1 = "57db8ea2a39fc25c11f44d46c52b7a8d110f5324" uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462" -version = "2.65.1" +version = "2.62.0" [deps.SciMLBase.extensions] SciMLBaseChainRulesCoreExt = "ChainRulesCore" @@ -2683,17 +1766,11 @@ weakdeps = ["SparseArrays", "StaticArraysCore"] SciMLOperatorsSparseArraysExt = "SparseArrays" SciMLOperatorsStaticArraysCoreExt = "StaticArraysCore" -[[deps.SciMLSensitivity]] -deps = ["ADTypes", "Accessors", "Adapt", "ArrayInterface", "ChainRulesCore", "DiffEqBase", "DiffEqCallbacks", "DiffEqNoiseProcess", "Distributions", "Enzyme", "FastBroadcast", "FiniteDiff", "ForwardDiff", "FunctionProperties", "FunctionWrappersWrappers", "Functors", "GPUArraysCore", "LinearAlgebra", "LinearSolve", "Markdown", "PreallocationTools", "QuadGK", "Random", "RandomNumbers", "RecursiveArrayTools", "Reexport", "ReverseDiff", "SciMLBase", "SciMLJacobianOperators", "SciMLOperators", "SciMLStructures", "StaticArrays", "StaticArraysCore", "Statistics", "SymbolicIndexingInterface", "Tracker", "Zygote"] -git-tree-sha1 = "40a44437d426816aaa73e78da77e9bb931baf980" -uuid = "1ed8b502-d754-442c-8d5d-10ac956f44a1" -version = "7.71.2" - [[deps.SciMLStructures]] deps = ["ArrayInterface"] -git-tree-sha1 = "0444a37a25fab98adbd90baa806ee492a3af133a" +git-tree-sha1 = "4cce08f7f8f9501edb1ea7b15360529745580e96" uuid = "53ae85a6-f571-4167-b2af-e1d143709226" -version = "1.6.1" +version = "1.6.0" [[deps.Scratch]] deps = ["Dates"] @@ -2720,23 +1797,11 @@ version = "1.1.1" deps = ["Distributed", "Mmap", "Random", "Serialization"] uuid = "1a1011a3-84de-559e-8e89-a11a2f7dc383" -[[deps.Showoff]] -deps = ["Dates", "Grisu"] -git-tree-sha1 = "91eddf657aca81df9ae6ceb20b959ae5653ad1de" -uuid = "992d4aef-0814-514b-bc4d-f2e9a6c4116f" -version = "1.0.3" - -[[deps.SimpleBufferStream]] -git-tree-sha1 = "f305871d2f381d21527c770d4788c06c097c9bc1" -uuid = "777ac1f9-54b0-4bf8-805c-2214025038e7" -version = "1.2.0" - [[deps.SimpleNonlinearSolve]] deps = ["ADTypes", "ArrayInterface", "BracketingNonlinearSolve", "CommonSolve", "ConcreteStructs", "DifferentiationInterface", "FastClosures", "FiniteDiff", "ForwardDiff", "LineSearch", "LinearAlgebra", "MaybeInplace", "NonlinearSolveBase", "PrecompileTools", "Reexport", "SciMLBase", "Setfield", "StaticArraysCore"] git-tree-sha1 = "f7e2042e0b68c6bb19a0a1594839792737f51d84" uuid = "727e6d20-b764-4bd8-a329-72de5adea6c7" version = "2.0.0" -weakdeps = ["ChainRulesCore", "DiffEqBase", "ReverseDiff", "Tracker"] [deps.SimpleNonlinearSolve.extensions] SimpleNonlinearSolveChainRulesCoreExt = "ChainRulesCore" @@ -2744,23 +1809,18 @@ weakdeps = ["ChainRulesCore", "DiffEqBase", "ReverseDiff", "Tracker"] SimpleNonlinearSolveReverseDiffExt = "ReverseDiff" SimpleNonlinearSolveTrackerExt = "Tracker" + [deps.SimpleNonlinearSolve.weakdeps] + ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" + DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e" + ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" + Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" + [[deps.SimpleTraits]] deps = ["InteractiveUtils", "MacroTools"] git-tree-sha1 = "5d7e3f4e11935503d3ecaf7186eac40602e7d231" uuid = "699a6c99-e7fa-54fc-8d76-47d257e15c1d" version = "0.9.4" -[[deps.SimpleUnPack]] -git-tree-sha1 = "58e6353e72cde29b90a69527e56df1b5c3d8c437" -uuid = "ce78b400-467f-4804-87d8-8f486da07d0a" -version = "1.1.0" - -[[deps.Sobol]] -deps = ["DelimitedFiles", "Random"] -git-tree-sha1 = "5a74ac22a9daef23705f010f72c81d6925b19df8" -uuid = "ed01d8cd-4d21-5b2a-85b4-cc3bdc58bad4" -version = "1.5.0" - [[deps.Sockets]] uuid = "6462fe0b-24de-5631-8697-dd941f90decc" @@ -2775,46 +1835,6 @@ deps = ["Libdl", "LinearAlgebra", "Random", "Serialization", "SuiteSparse_jll"] uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" version = "1.10.0" -[[deps.SparseConnectivityTracer]] -deps = ["ADTypes", "DocStringExtensions", "FillArrays", "LinearAlgebra", "Random", "SparseArrays"] -git-tree-sha1 = "010b3c44301805d1ede9159f449a351d61172aa6" -uuid = "9f842d2f-2579-4b1d-911e-f412cf18a3f5" -version = "0.6.9" -weakdeps = ["DataInterpolations", "LogExpFunctions", "NNlib", "NaNMath", "SpecialFunctions"] - - [deps.SparseConnectivityTracer.extensions] - SparseConnectivityTracerDataInterpolationsExt = "DataInterpolations" - SparseConnectivityTracerLogExpFunctionsExt = "LogExpFunctions" - SparseConnectivityTracerNNlibExt = "NNlib" - SparseConnectivityTracerNaNMathExt = "NaNMath" - SparseConnectivityTracerSpecialFunctionsExt = "SpecialFunctions" - -[[deps.SparseDiffTools]] -deps = ["ADTypes", "Adapt", "ArrayInterface", "Compat", "DataStructures", "FiniteDiff", "ForwardDiff", "Graphs", "LinearAlgebra", "PackageExtensionCompat", "Random", "Reexport", "SciMLOperators", "Setfield", "SparseArrays", "StaticArrayInterface", "StaticArrays", "UnPack", "VertexSafeGraphs"] -git-tree-sha1 = "b906758c107b049b6b71599b9f928d9b14e5554a" -uuid = "47a9eef4-7e08-11e9-0b38-333d64bd3804" -version = "2.23.0" - - [deps.SparseDiffTools.extensions] - SparseDiffToolsEnzymeExt = "Enzyme" - SparseDiffToolsPolyesterExt = "Polyester" - SparseDiffToolsPolyesterForwardDiffExt = "PolyesterForwardDiff" - SparseDiffToolsSymbolicsExt = "Symbolics" - SparseDiffToolsZygoteExt = "Zygote" - - [deps.SparseDiffTools.weakdeps] - Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9" - Polyester = "f517fe37-dbe3-4b94-8317-1923a5111588" - PolyesterForwardDiff = "98d1487c-24ca-40b6-b7ab-df2af84e126b" - Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" - Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" - -[[deps.SparseInverseSubset]] -deps = ["LinearAlgebra", "SparseArrays", "SuiteSparse"] -git-tree-sha1 = "52962839426b75b3021296f7df242e40ecfc0852" -uuid = "dc90abb0-5640-4711-901d-7e5b23a2fada" -version = "0.1.2" - [[deps.SparseMatrixColorings]] deps = ["ADTypes", "DataStructures", "DocStringExtensions", "LinearAlgebra", "Random", "SparseArrays"] git-tree-sha1 = "76b44c879661552d64f382acf66faa29ab56b3d9" @@ -2831,11 +1851,6 @@ git-tree-sha1 = "342cf4b449c299d8d1ceaf00b7a49f4fbc7940e7" uuid = "e56a9233-b9d6-4f03-8d0f-1825330902ac" version = "0.3.9" -[[deps.SpatialIndexing]] -git-tree-sha1 = "84efe17c77e1f2156a7a0d8a7c163c1e1c7bdaed" -uuid = "d4ead438-fe20-5cc5-a293-4fd39a41b74c" -version = "0.1.6" - [[deps.SpecialFunctions]] deps = ["IrrationalConstants", "LogExpFunctions", "OpenLibm_jll", "OpenSpecFun_jll"] git-tree-sha1 = "2f5d4697f21388cbe1ff299430dd169ef97d7e14" @@ -2846,12 +1861,6 @@ weakdeps = ["ChainRulesCore"] [deps.SpecialFunctions.extensions] SpecialFunctionsChainRulesCoreExt = "ChainRulesCore" -[[deps.StableRNGs]] -deps = ["Random"] -git-tree-sha1 = "83e6cce8324d49dfaf9ef059227f91ed4441a8e5" -uuid = "860ef19b-820b-49d6-a774-d7a799459cd3" -version = "1.0.2" - [[deps.Static]] deps = ["CommonWorldInvalidations", "IfElse", "PrecompileTools"] git-tree-sha1 = "87d51a3ee9a4b0d2fe054bdd3fc2436258db2603" @@ -2919,30 +1928,28 @@ git-tree-sha1 = "f35f6ab602df8413a50c4a25ca14de821e8605fb" uuid = "7792a7ef-975c-4747-a70f-980b88e8d1da" version = "0.5.7" +[[deps.Strided]] +deps = ["LinearAlgebra", "StridedViews", "TupleTools"] +git-tree-sha1 = "f9ce8284e6eec72a21de3603493eb5355fcf7f39" +uuid = "5e0ebb24-38b0-5f93-81fe-25c709ecae67" +version = "2.2.0" + +[[deps.StridedViews]] +deps = ["LinearAlgebra", "PackageExtensionCompat"] +git-tree-sha1 = "b60baf1998bcdccc57e1cc2c6703df1f619a3754" +uuid = "4db3bf67-4bd7-4b4e-b153-31dc3fb37143" +version = "0.3.2" +weakdeps = ["CUDA"] + + [deps.StridedViews.extensions] + StridedViewsCUDAExt = "CUDA" + [[deps.StringManipulation]] deps = ["PrecompileTools"] git-tree-sha1 = "a6b1675a536c5ad1a60e5a5153e1fee12eb146e3" uuid = "892a3eda-7b42-436c-8928-eab12a02cf0e" version = "0.4.0" -[[deps.StructArrays]] -deps = ["ConstructionBase", "DataAPI", "Tables"] -git-tree-sha1 = "f4dc295e983502292c4c3f951dbb4e985e35b3be" -uuid = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" -version = "0.6.18" -weakdeps = ["Adapt", "GPUArraysCore", "SparseArrays", "StaticArrays"] - - [deps.StructArrays.extensions] - StructArraysAdaptExt = "Adapt" - StructArraysGPUArraysCoreExt = "GPUArraysCore" - StructArraysSparseArraysExt = "SparseArrays" - StructArraysStaticArraysExt = "StaticArrays" - -[[deps.StructIO]] -git-tree-sha1 = "c581be48ae1cbf83e899b14c07a807e1787512cc" -uuid = "53d494c1-5632-5724-8f4c-31dff12d585f" -version = "0.3.1" - [[deps.SuiteSparse]] deps = ["Libdl", "LinearAlgebra", "Serialization", "SparseArrays"] uuid = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9" @@ -2980,9 +1987,9 @@ version = "3.7.2" [[deps.Symbolics]] deps = ["ADTypes", "ArrayInterface", "Bijections", "CommonWorldInvalidations", "ConstructionBase", "DataStructures", "DiffRules", "Distributions", "DocStringExtensions", "DomainSets", "DynamicPolynomials", "IfElse", "LaTeXStrings", "Latexify", "Libdl", "LinearAlgebra", "LogExpFunctions", "MacroTools", "Markdown", "NaNMath", "PrecompileTools", "Primes", "RecipesBase", "Reexport", "RuntimeGeneratedFunctions", "SciMLBase", "Setfield", "SparseArrays", "SpecialFunctions", "StaticArraysCore", "SymbolicIndexingInterface", "SymbolicLimits", "SymbolicUtils", "TermInterface"] -git-tree-sha1 = "ce9c95fc859007747a4faf10166201e0b10d4313" +git-tree-sha1 = "d5c0ea92aa7b14b0ffca575e07af48ecb9e83f7b" uuid = "0c5d862f-8b57-4792-8d23-62f2024744c7" -version = "6.22.0" +version = "6.21.0" [deps.Symbolics.extensions] SymbolicsForwardDiffExt = "ForwardDiff" @@ -3022,23 +2029,28 @@ deps = ["ArgTools", "SHA"] uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e" version = "1.10.0" -[[deps.TensorCore]] -deps = ["LinearAlgebra"] -git-tree-sha1 = "1feb45f88d133a655e001435632f019a9a1bcdb6" -uuid = "62fd8b95-f654-4bbd-a8a5-9c27f68ccd50" -version = "0.1.1" +[[deps.TensorOperations]] +deps = ["LRUCache", "LinearAlgebra", "PackageExtensionCompat", "PtrArrays", "Strided", "StridedViews", "TupleTools", "VectorInterface"] +git-tree-sha1 = "d08a24e2cb67aa0cbfcd68d0acdf2879e571126f" +uuid = "6aa20fa7-93e2-5fca-9bc0-fbd0db3c71a2" +version = "5.1.3" + + [deps.TensorOperations.extensions] + TensorOperationsBumperExt = "Bumper" + TensorOperationsChainRulesCoreExt = "ChainRulesCore" + TensorOperationscuTENSORExt = ["cuTENSOR", "CUDA"] + + [deps.TensorOperations.weakdeps] + Bumper = "8ce10254-0962-460f-a3d8-1f77fea1446e" + CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" + ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" + cuTENSOR = "011b41b2-24ef-40a8-b3eb-fa098493e9e1" [[deps.TermInterface]] git-tree-sha1 = "d673e0aca9e46a2f63720201f55cc7b3e7169b16" uuid = "8ea1fca8-c5ef-4a55-8b96-4e9afe9c9a3c" version = "2.0.0" -[[deps.TerminalLoggers]] -deps = ["LeftChildRightSiblingTrees", "Logging", "Markdown", "Printf", "ProgressLogging", "UUIDs"] -git-tree-sha1 = "f133fab380933d042f6796eda4e130272ba520ca" -uuid = "5d786b92-1e48-4d6f-9151-6b4477ca9bed" -version = "0.1.7" - [[deps.Test]] deps = ["InteractiveUtils", "Logging", "Random", "Serialization"] uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" @@ -3065,21 +2077,6 @@ git-tree-sha1 = "468b4685af4abe0e9fd4d7bf495a6554a6276e75" uuid = "0796e94c-ce3b-5d07-9a54-7f471281c624" version = "0.5.29" -[[deps.Tracker]] -deps = ["Adapt", "ChainRulesCore", "DiffRules", "ForwardDiff", "Functors", "LinearAlgebra", "LogExpFunctions", "MacroTools", "NNlib", "NaNMath", "Optimisers", "Printf", "Random", "Requires", "SpecialFunctions", "Statistics"] -git-tree-sha1 = "c266e49953dadd0923caa17b3ea464ab6b97b3f2" -uuid = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" -version = "0.2.37" -weakdeps = ["PDMats"] - - [deps.Tracker.extensions] - TrackerPDMatsExt = "PDMats" - -[[deps.TranscodingStreams]] -git-tree-sha1 = "0c45878dcfdcfa8480052b6ab162cdd138781742" -uuid = "3bb67fe8-82b1-5028-8e26-92a6c54297fa" -version = "0.11.3" - [[deps.TriangularSolve]] deps = ["CloseOpenIntervals", "IfElse", "LayoutPointers", "LinearAlgebra", "LoopVectorization", "Polyester", "Static", "VectorizationBase"] git-tree-sha1 = "be986ad9dac14888ba338c2554dcfec6939e1393" @@ -3097,6 +2094,11 @@ git-tree-sha1 = "ea3e54c2bdde39062abf5a9758a23735558705e1" uuid = "781d530d-4396-4725-bb49-402e4bee1e77" version = "1.4.0" +[[deps.TupleTools]] +git-tree-sha1 = "41e43b9dc950775eac654b9f845c839cd2f1821e" +uuid = "9d95972d-f1c8-5527-a6e0-b4b365fa01f6" +version = "1.6.0" + [[deps.URIs]] git-tree-sha1 = "67db6cc7b3821e19ebe75791a9dd19c9b1188f2b" uuid = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" @@ -3114,29 +2116,17 @@ version = "1.0.2" [[deps.Unicode]] uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" -[[deps.UnicodeFun]] -deps = ["REPL"] -git-tree-sha1 = "53915e50200959667e78a92a418594b428dffddf" -uuid = "1cfade01-22cf-5700-b092-accc4b62d6e1" -version = "0.4.1" - [[deps.Unitful]] deps = ["Dates", "LinearAlgebra", "Random"] -git-tree-sha1 = "01915bfcd62be15329c9a07235447a89d588327c" +git-tree-sha1 = "d95fe458f26209c66a187b1114df96fd70839efd" uuid = "1986cc42-f94f-5a68-af5c-568840ba703d" -version = "1.21.1" +version = "1.21.0" weakdeps = ["ConstructionBase", "InverseFunctions"] [deps.Unitful.extensions] ConstructionBaseUnitfulExt = "ConstructionBase" InverseFunctionsUnitfulExt = "InverseFunctions" -[[deps.UnitfulLatexify]] -deps = ["LaTeXStrings", "Latexify", "Unitful"] -git-tree-sha1 = "975c354fcd5f7e1ddcc1f1a23e6e091d99e99bc8" -uuid = "45397f5d-5981-4c77-b2b3-fc36d6e9b728" -version = "1.6.4" - [[deps.Unityper]] deps = ["ConstructionBase"] git-tree-sha1 = "25008b734a03736c41e2a7dc314ecb95bd6bbdb0" @@ -3150,14 +2140,15 @@ version = "0.2.1" [[deps.UnsafeAtomicsLLVM]] deps = ["LLVM", "UnsafeAtomics"] -git-tree-sha1 = "de4287a6569bcf3a8d6201d387991a8dda25c954" +git-tree-sha1 = "2d17fabcd17e67d7625ce9c531fb9f40b7c42ce4" uuid = "d80eeb9a-aca5-4d75-85e5-170c8b632249" -version = "0.2.2" +version = "0.2.1" -[[deps.Unzip]] -git-tree-sha1 = "ca0969166a028236229f63514992fc073799bb78" -uuid = "41fe7b60-77ed-43a1-b4f0-825fd5a5650d" -version = "0.2.0" +[[deps.VectorInterface]] +deps = ["LinearAlgebra"] +git-tree-sha1 = "9166406dedd38c111a6574e9814be83d267f8aec" +uuid = "409d34a3-91d5-4945-b6ec-7529ddf182d8" +version = "0.5.0" [[deps.VectorizationBase]] deps = ["ArrayInterface", "CPUSummary", "HostCPUFeatures", "IfElse", "LayoutPointers", "Libdl", "LinearAlgebra", "SIMDTypes", "Static", "StaticArrayInterface"] @@ -3165,36 +2156,6 @@ git-tree-sha1 = "4ab62a49f1d8d9548a1c8d1a75e5f55cf196f64e" uuid = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f" version = "0.21.71" -[[deps.VertexSafeGraphs]] -deps = ["Graphs"] -git-tree-sha1 = "8351f8d73d7e880bfc042a8b6922684ebeafb35c" -uuid = "19fa3120-7c27-5ec5-8db8-b0b0aa330d6f" -version = "0.2.0" - -[[deps.Vulkan_Loader_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Wayland_jll", "Xorg_libX11_jll", "Xorg_libXrandr_jll", "xkbcommon_jll"] -git-tree-sha1 = "2f0486047a07670caad3a81a075d2e518acc5c59" -uuid = "a44049a8-05dd-5a78-86c9-5fde0876e88c" -version = "1.3.243+0" - -[[deps.Wayland_jll]] -deps = ["Artifacts", "EpollShim_jll", "Expat_jll", "JLLWrappers", "Libdl", "Libffi_jll", "Pkg", "XML2_jll"] -git-tree-sha1 = "7558e29847e99bc3f04d6569e82d0f5c54460703" -uuid = "a2964d1f-97da-50d4-b82a-358c7fce9d89" -version = "1.21.0+1" - -[[deps.Wayland_protocols_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "93f43ab61b16ddfb2fd3bb13b3ce241cafb0e6c9" -uuid = "2381bf8a-dfd0-557d-9999-79630e7b1b91" -version = "1.31.0+0" - -[[deps.WeakRefStrings]] -deps = ["DataAPI", "InlineStrings", "Parsers"] -git-tree-sha1 = "b1be2855ed9ed8eac54e5caff2afcdb442d52c23" -uuid = "ea10d353-3f73-51f8-a26c-33c1cb351aa5" -version = "1.4.2" - [[deps.WeightInitializers]] deps = ["ArgCheck", "ConcreteStructs", "GPUArraysCore", "LinearAlgebra", "Random", "SpecialFunctions", "Statistics"] git-tree-sha1 = "0b935265795ccccf12bc89e693b6380934451780" @@ -3217,211 +2178,16 @@ version = "1.0.4" Metal = "dde4c033-4e86-420c-a63e-0dd931031962" oneAPI = "8f75cd03-7ff8-4ecb-9b8f-daf728133b1b" -[[deps.WoodburyMatrices]] -deps = ["LinearAlgebra", "SparseArrays"] -git-tree-sha1 = "c1a7aa6219628fcd757dede0ca95e245c5cd9511" -uuid = "efce3f68-66dc-5838-9240-27a6d6f5f9b6" -version = "1.0.0" - -[[deps.WorkerUtilities]] -git-tree-sha1 = "cd1659ba0d57b71a464a29e64dbc67cfe83d54e7" -uuid = "76eceee3-57b5-4d4a-8e66-0e911cebbf60" -version = "1.6.1" - -[[deps.XML2_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Libiconv_jll", "Zlib_jll"] -git-tree-sha1 = "a2fccc6559132927d4c5dc183e3e01048c6dcbd6" -uuid = "02c8fc9c-b97f-50b9-bbe4-9be30ff0a78a" -version = "2.13.5+0" - -[[deps.XSLT_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Libgcrypt_jll", "Libgpg_error_jll", "Libiconv_jll", "XML2_jll", "Zlib_jll"] -git-tree-sha1 = "7d1671acbe47ac88e981868a078bd6b4e27c5191" -uuid = "aed1982a-8fda-507f-9586-7b0439959a61" -version = "1.1.42+0" - -[[deps.XZ_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "15e637a697345f6743674f1322beefbc5dcd5cfc" -uuid = "ffd25f8a-64ca-5728-b0f7-c24cf3aae800" -version = "5.6.3+0" - -[[deps.Xorg_libICE_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "326b4fea307b0b39892b3e85fa451692eda8d46c" -uuid = "f67eecfb-183a-506d-b269-f58e52b52d7c" -version = "1.1.1+0" - -[[deps.Xorg_libSM_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libICE_jll"] -git-tree-sha1 = "3796722887072218eabafb494a13c963209754ce" -uuid = "c834827a-8449-5923-a945-d239c165b7dd" -version = "1.2.4+0" - -[[deps.Xorg_libX11_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libxcb_jll", "Xorg_xtrans_jll"] -git-tree-sha1 = "9dafcee1d24c4f024e7edc92603cedba72118283" -uuid = "4f6342f7-b3d2-589e-9d20-edeb45f2b2bc" -version = "1.8.6+1" - -[[deps.Xorg_libXau_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "2b0e27d52ec9d8d483e2ca0b72b3cb1a8df5c27a" -uuid = "0c0b7dd1-d40b-584c-a123-a41640f87eec" -version = "1.0.11+1" - -[[deps.Xorg_libXcursor_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXfixes_jll", "Xorg_libXrender_jll"] -git-tree-sha1 = "12e0eb3bc634fa2080c1c37fccf56f7c22989afd" -uuid = "935fb764-8cf2-53bf-bb30-45bb1f8bf724" -version = "1.2.0+4" - -[[deps.Xorg_libXdmcp_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "02054ee01980c90297412e4c809c8694d7323af3" -uuid = "a3789734-cfe1-5b06-b2d0-1dd0d9d62d05" -version = "1.1.4+1" - -[[deps.Xorg_libXext_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"] -git-tree-sha1 = "d7155fea91a4123ef59f42c4afb5ab3b4ca95058" -uuid = "1082639a-0dae-5f34-9b06-72781eeb8cb3" -version = "1.3.6+1" - -[[deps.Xorg_libXfixes_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libX11_jll"] -git-tree-sha1 = "0e0dc7431e7a0587559f9294aeec269471c991a4" -uuid = "d091e8ba-531a-589c-9de9-94069b037ed8" -version = "5.0.3+4" - -[[deps.Xorg_libXi_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXext_jll", "Xorg_libXfixes_jll"] -git-tree-sha1 = "89b52bc2160aadc84d707093930ef0bffa641246" -uuid = "a51aa0fd-4e3c-5386-b890-e753decda492" -version = "1.7.10+4" - -[[deps.Xorg_libXinerama_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXext_jll"] -git-tree-sha1 = "26be8b1c342929259317d8b9f7b53bf2bb73b123" -uuid = "d1454406-59df-5ea1-beac-c340f2130bc3" -version = "1.1.4+4" - -[[deps.Xorg_libXrandr_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libXext_jll", "Xorg_libXrender_jll"] -git-tree-sha1 = "34cea83cb726fb58f325887bf0612c6b3fb17631" -uuid = "ec84b674-ba8e-5d96-8ba1-2a689ba10484" -version = "1.5.2+4" - -[[deps.Xorg_libXrender_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"] -git-tree-sha1 = "47e45cd78224c53109495b3e324df0c37bb61fbe" -uuid = "ea2f1a96-1ddc-540d-b46f-429655e07cfa" -version = "0.9.11+0" - -[[deps.Xorg_libpthread_stubs_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "fee57a273563e273f0f53275101cd41a8153517a" -uuid = "14d82f49-176c-5ed1-bb49-ad3f5cbd8c74" -version = "0.1.1+1" - -[[deps.Xorg_libxcb_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "XSLT_jll", "Xorg_libXau_jll", "Xorg_libXdmcp_jll", "Xorg_libpthread_stubs_jll"] -git-tree-sha1 = "1a74296303b6524a0472a8cb12d3d87a78eb3612" -uuid = "c7cfdc94-dc32-55de-ac96-5a1b8d977c5b" -version = "1.17.0+1" - -[[deps.Xorg_libxkbfile_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libX11_jll"] -git-tree-sha1 = "730eeca102434283c50ccf7d1ecdadf521a765a4" -uuid = "cc61e674-0454-545c-8b26-ed2c68acab7a" -version = "1.1.2+0" - -[[deps.Xorg_xcb_util_cursor_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_xcb_util_image_jll", "Xorg_xcb_util_jll", "Xorg_xcb_util_renderutil_jll"] -git-tree-sha1 = "04341cb870f29dcd5e39055f895c39d016e18ccd" -uuid = "e920d4aa-a673-5f3a-b3d7-f755a4d47c43" -version = "0.1.4+0" - -[[deps.Xorg_xcb_util_image_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] -git-tree-sha1 = "0fab0a40349ba1cba2c1da699243396ff8e94b97" -uuid = "12413925-8142-5f55-bb0e-6d7ca50bb09b" -version = "0.4.0+1" - -[[deps.Xorg_xcb_util_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_libxcb_jll"] -git-tree-sha1 = "e7fd7b2881fa2eaa72717420894d3938177862d1" -uuid = "2def613f-5ad1-5310-b15b-b15d46f528f5" -version = "0.4.0+1" - -[[deps.Xorg_xcb_util_keysyms_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] -git-tree-sha1 = "d1151e2c45a544f32441a567d1690e701ec89b00" -uuid = "975044d2-76e6-5fbe-bf08-97ce7c6574c7" -version = "0.4.0+1" - -[[deps.Xorg_xcb_util_renderutil_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] -git-tree-sha1 = "dfd7a8f38d4613b6a575253b3174dd991ca6183e" -uuid = "0d47668e-0667-5a69-a72c-f761630bfb7e" -version = "0.3.9+1" - -[[deps.Xorg_xcb_util_wm_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Xorg_xcb_util_jll"] -git-tree-sha1 = "e78d10aab01a4a154142c5006ed44fd9e8e31b67" -uuid = "c22f9ab0-d5fe-5066-847c-f4bb1cd4e361" -version = "0.4.1+1" - -[[deps.Xorg_xkbcomp_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_libxkbfile_jll"] -git-tree-sha1 = "330f955bc41bb8f5270a369c473fc4a5a4e4d3cb" -uuid = "35661453-b289-5fab-8a00-3d9160c6a3a4" -version = "1.4.6+0" - -[[deps.Xorg_xkeyboard_config_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Xorg_xkbcomp_jll"] -git-tree-sha1 = "691634e5453ad362044e2ad653e79f3ee3bb98c3" -uuid = "33bec58e-1273-512f-9401-5d533626f822" -version = "2.39.0+0" - -[[deps.Xorg_xtrans_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "b9ead2d2bdb27330545eb14234a2e300da61232e" -uuid = "c5fb5394-a638-5e4d-96e5-b29de1b5cf10" -version = "1.5.0+1" - [[deps.Zlib_jll]] deps = ["Libdl"] uuid = "83775a58-1f1d-513f-b197-d71354ab007a" version = "1.2.13+1" -[[deps.Zstd_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "555d1076590a6cc2fdee2ef1469451f872d8b41b" -uuid = "3161d3a3-bdf6-5164-811a-617609db77b4" -version = "1.5.6+1" - -[[deps.Zygote]] -deps = ["AbstractFFTs", "ChainRules", "ChainRulesCore", "DiffRules", "Distributed", "FillArrays", "ForwardDiff", "GPUArrays", "GPUArraysCore", "IRTools", "InteractiveUtils", "LinearAlgebra", "LogExpFunctions", "MacroTools", "NaNMath", "PrecompileTools", "Random", "Requires", "SparseArrays", "SpecialFunctions", "Statistics", "ZygoteRules"] -git-tree-sha1 = "c7dc3148a64d1cd3768c29b3db5972d1c302661b" -uuid = "e88e6eb3-aa80-5325-afca-941959d7151f" -version = "0.6.73" - - [deps.Zygote.extensions] - ZygoteColorsExt = "Colors" - ZygoteDistancesExt = "Distances" - ZygoteTrackerExt = "Tracker" - - [deps.Zygote.weakdeps] - Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" - Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7" - Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c" - -[[deps.ZygoteRules]] -deps = ["ChainRulesCore", "MacroTools"] -git-tree-sha1 = "27798139afc0a2afa7b1824c206d5e87ea587a00" -uuid = "700de1a5-db45-46bc-99cf-38207098b444" -version = "0.2.5" +[[deps.cuDNN]] +deps = ["CEnum", "CUDA", "CUDA_Runtime_Discovery", "CUDNN_jll"] +git-tree-sha1 = "4b3ac62501ca73263eaa0d034c772f13c647fba6" +uuid = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd" +version = "1.4.0" [[deps.demumble_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl"] @@ -3429,83 +2195,11 @@ git-tree-sha1 = "6498e3581023f8e530f34760d18f75a69e3a4ea8" uuid = "1e29f10c-031c-5a83-9565-69cddfc27673" version = "1.3.0+0" -[[deps.eudev_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "gperf_jll"] -git-tree-sha1 = "431b678a28ebb559d224c0b6b6d01afce87c51ba" -uuid = "35ca27e7-8b34-5b7f-bca9-bdc33f59eb06" -version = "3.2.9+0" - -[[deps.fzf_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "6e50f145003024df4f5cb96c7fce79466741d601" -uuid = "214eeab7-80f7-51ab-84ad-2988db7cef09" -version = "0.56.3+0" - -[[deps.gperf_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "0ba42241cb6809f1a278d0bcb976e0483c3f1f2d" -uuid = "1a1c6b14-54f6-533d-8383-74cd7377aa70" -version = "3.1.1+1" - -[[deps.libaom_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "1827acba325fdcdf1d2647fc8d5301dd9ba43a9d" -uuid = "a4ae2306-e953-59d6-aa16-d00cac43593b" -version = "3.9.0+0" - -[[deps.libass_jll]] -deps = ["Artifacts", "Bzip2_jll", "FreeType2_jll", "FriBidi_jll", "HarfBuzz_jll", "JLLWrappers", "Libdl", "Zlib_jll"] -git-tree-sha1 = "e17c115d55c5fbb7e52ebedb427a0dca79d4484e" -uuid = "0ac62f75-1d6f-5e53-bd7c-93b484bb37c0" -version = "0.15.2+0" - [[deps.libblastrampoline_jll]] deps = ["Artifacts", "Libdl"] uuid = "8e850b90-86db-534c-a0d3-1478176c7d93" version = "5.8.0+1" -[[deps.libdecor_jll]] -deps = ["Artifacts", "Dbus_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "Pango_jll", "Wayland_jll", "xkbcommon_jll"] -git-tree-sha1 = "9bf7903af251d2050b467f76bdbe57ce541f7f4f" -uuid = "1183f4f0-6f2a-5f1a-908b-139f9cdfea6f" -version = "0.2.2+0" - -[[deps.libevdev_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "141fe65dc3efabb0b1d5ba74e91f6ad26f84cc22" -uuid = "2db6ffa8-e38f-5e21-84af-90c45d0032cc" -version = "1.11.0+0" - -[[deps.libfdk_aac_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl"] -git-tree-sha1 = "8a22cf860a7d27e4f3498a0fe0811a7957badb38" -uuid = "f638f0a6-7fb0-5443-88ba-1cc74229b280" -version = "2.0.3+0" - -[[deps.libinput_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "eudev_jll", "libevdev_jll", "mtdev_jll"] -git-tree-sha1 = "ad50e5b90f222cfe78aa3d5183a20a12de1322ce" -uuid = "36db933b-70db-51c0-b978-0f229ee0e533" -version = "1.18.0+0" - -[[deps.libpng_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Zlib_jll"] -git-tree-sha1 = "b70c870239dc3d7bc094eb2d6be9b73d27bef280" -uuid = "b53b4c65-9356-5827-b1ea-8c7a1a84506f" -version = "1.6.44+0" - -[[deps.libvorbis_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Ogg_jll", "Pkg"] -git-tree-sha1 = "490376214c4721cdaca654041f635213c6165cb3" -uuid = "f27f6e37-5d2b-51aa-960f-b287f2bc3b7a" -version = "1.3.7+2" - -[[deps.mtdev_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "814e154bdb7be91d78b6802843f76b6ece642f11" -uuid = "009596ad-96f7-51b1-9f1b-5ce2d5e8a71e" -version = "1.1.6+0" - [[deps.nghttp2_jll]] deps = ["Artifacts", "Libdl"] uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d" @@ -3521,21 +2215,3 @@ version = "2021.12.0+0" deps = ["Artifacts", "Libdl"] uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0" version = "17.4.0+2" - -[[deps.x264_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "4fea590b89e6ec504593146bf8b988b2c00922b2" -uuid = "1270edf5-f2f9-52d2-97e9-ab00b5d0237a" -version = "2021.5.5+0" - -[[deps.x265_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] -git-tree-sha1 = "ee567a171cce03570d77ad3a43e90218e38937a9" -uuid = "dfaa095f-4041-5dcd-9319-2fabd8486b76" -version = "3.5.0+0" - -[[deps.xkbcommon_jll]] -deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg", "Wayland_jll", "Wayland_protocols_jll", "Xorg_libxcb_jll", "Xorg_xkeyboard_config_jll"] -git-tree-sha1 = "9c304562909ab2bab0262639bd4f444d7bc2be37" -uuid = "d8fb68d0-12a3-5cfd-a85a-d49703b185fd" -version = "1.4.1+1" diff --git a/project/KAN-Embed/Project.toml b/project/KAN-Embed/Project.toml new file mode 100644 index 0000000..060d0b5 --- /dev/null +++ b/project/KAN-Embed/Project.toml @@ -0,0 +1,5 @@ +[deps] +KolmogorovArnold = "eec8b66d-f71a-4a43-b228-0fe5d6721cd3" +Lux = "b2108857-7c20-44ae-9111-449ecde12c47" +LuxCUDA = "d0bbae9a-e099-4d5b-a835-1c6931763bda" +ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" diff --git a/project/KAN-Embed/src/KANEmbed.jl b/project/KAN-Embed/src/KANEmbed.jl new file mode 100644 index 0000000..90a6d7f --- /dev/null +++ b/project/KAN-Embed/src/KANEmbed.jl @@ -0,0 +1,17 @@ +# include("../../../src/HydroModels.jl") + + +using Random, KolmogorovArnold,ComponentArrays +using Lux +rng = Random.default_rng() + +in_dim, out_dim, grid_len = 4, 4, 8 +layer = KDense(in_dim, out_dim, grid_len) +p, st = Lux.setup(rng, layer) + +length(collect(ComponentArray(p))) + +x = rand32(rng, in_dim, 10) +y = layer(x, p, st) + + diff --git a/doc/paper/discussion.typ b/project/KAN-Embed/src/models.jl similarity index 100% rename from doc/paper/discussion.typ rename to project/KAN-Embed/src/models.jl diff --git a/src/HydroModels.jl b/src/HydroModels.jl deleted file mode 100644 index 44e03f8..0000000 --- a/src/HydroModels.jl +++ /dev/null @@ -1,114 +0,0 @@ -module HydroModels - -## External packages -# common packages -using Accessors -using Reexport - -@reexport using ComponentArrays -using ComponentArrays: indexmap, getval -using Dates -using DataFrames -using IterTools: ncycle -using LinearAlgebra -using NamedTupleTools -using ProgressMeter -using SparseArrays -using StableRNGs -using Statistics -using TOML - -# runtime generated functions -using RuntimeGeneratedFunctions -RuntimeGeneratedFunctions.init(@__MODULE__) - -# Symbolic building -using Symbolics -using Symbolics: tosymbol -using SymbolicUtils -using SymbolicUtils.Code -@reexport using ModelingToolkit: @variables, @parameters -using ModelingToolkit: isparameter -using ModelingToolkit: t_nounits as t -# graph compute -using Graphs - -# data interpolataion -using DataInterpolations -using DataInterpolations: AbstractInterpolation - -# solve ODEProblem -using SciMLBase -using OrdinaryDiffEq -using SciMLSensitivity - -# deep learning -using Lux -using LuxCore -using NNlib - -using ChainRulesCore - -# parameters Optimization -using Optimization -using OptimizationBBO -using OptimizationOptimisers - -## package version -const version = VersionNumber(TOML.parsefile(joinpath(@__DIR__, "..", "Project.toml"))["version"]) -const InputType = Union{AbstractArray,AbstractMatrix} - -struct HydroEquation end -## Abstract Component Types -abstract type AbstractComponent end -abstract type AbstractHydroSolver end -abstract type AbstractHydroOptimizer end -abstract type AbstractHydroWrapper <: AbstractComponent end -abstract type AbstractNeuralWrapper <: AbstractComponent end - -abstract type AbstractFlux <: AbstractComponent end -abstract type AbstractHydroFlux <: AbstractFlux end -abstract type AbstractNeuralFlux <: AbstractHydroFlux end -abstract type AbstractStateFlux <: AbstractFlux end - -abstract type AbstractElement <: AbstractComponent end -abstract type AbstractBucket <: AbstractElement end -abstract type AbstractHydrograph <: AbstractElement end -abstract type AbstractRoute <: AbstractElement end -abstract type AbstractHydroRoute <: AbstractRoute end -abstract type AbstractRapidRoute <: AbstractRoute end -abstract type AbstractModel <: AbstractComponent end -# utils -include("utils/attr.jl") -include("utils/ca.jl") -include("utils/name.jl") -include("utils/show.jl") -include("utils/build.jl") -include("utils/callback.jl") -include("utils/sort.jl") - -include("optimizer.jl") -export BatchOptimizer, HydroOptimizer, GradOptimizer - -include("solver.jl") -export ODESolver, DiscreteSolver, ManualSolver - -# framework build -include("flux.jl") -export HydroFlux, StateFlux, NeuralFlux, UnitHydroFlux -include("bucket.jl") -export HydroBucket -include("route.jl") -export DirectRoute, GridRoute, VectorRoute, HydroRoute # , RapidRoute -include("uh.jl") -export UHFunction, UH_1_HALF, UH_2_FULL -include("model.jl") -export HydroModel -include("wrapper.jl") -export RecordComponentState, EstimateComponentParams, WeightSumComponentOutlet, ComputeComponentOutlet - -# export abstract structs -export AbstractComponent, AbstractSolver, AbstractElement, AbstractUnit, AbstractHydroBucket, AbstractRoute, HydroEquation -export AbstractFlux, AbstractHydroFlux, AbstractNeuralFlux, AbstractStateFlux, AbstractRouteFlux - -end # module HydroModels diff --git a/src/bucket.jl b/src/bucket.jl deleted file mode 100644 index ad4988b..0000000 --- a/src/bucket.jl +++ /dev/null @@ -1,348 +0,0 @@ -""" - HydroBucket(name::Symbol; funcs::Vector, dfuncs::Vector=StateFlux[]) - -Represents a hydrological bucket model component. - -# Arguments -- `name::Symbol`: A symbol representing the name of the HydroBucket instance. If not provided, a name will be automatically generated from state variable names. -- `funcs::Vector`: A vector of flux functions that describe the hydrological processes. -- `dfuncs::Vector`: A vector of state derivative functions (default is an empty vector of StateFlux). - -# Fields -- `funcs::Vector{<:AbstractFlux}`: Vector of flux functions describing hydrological processes. -- `dfuncs::Vector{<:AbstractStateFlux}`: Vector of state derivative functions for ODE calculations. -- `flux_func::Function`: Combined function for calculating all hydrological fluxes. -- `ode_func::Union{Nothing,Function}`: Function for ordinary differential equations (ODE) calculations, or nothing if no ODE calculations are needed. -- `meta::HydroMeta`: Contains metadata about the bucket, including input, output, state, parameter, and neural network names. - -# Description -HydroBucket is a structure that encapsulates the behavior of a hydrological bucket model. -It combines multiple flux functions and state derivative functions to model water movement -and storage within a hydrological unit. - -The structure automatically extracts relevant information from the provided functions to -populate the metadata, which includes names of: -- Inputs: Variables that drive the model -- Outputs: Variables produced by the model -- States: Internal model states that evolve over time -- Parameters: Model parameters that control behavior -- Neural Networks: Any neural network components (if applicable) - -The `flux_func` and `ode_func` are constructed based on the provided `funcs` and `dfuncs`, -enabling efficient calculation of fluxes and state changes over time. - -This structure is particularly useful for building complex hydrological models by combining -multiple HydroBucket instances to represent different components of a water system. - -""" -struct HydroBucket{F<:AbstractFlux,D<:AbstractStateFlux,FF<:Function,OF<:Union{Nothing,Function},M<:HydroMeta} <: AbstractBucket - """ - Vector of flux functions describing hydrological processes. - """ - funcs::Vector{F} - """ - Vector of state derivative functions for ODE calculations. - """ - dfuncs::Vector{D} - """ - Generated function for calculating all hydrological fluxes. - """ - flux_func::FF - """ - Generated function for ordinary differential equations (ODE) calculations, or nothing if no ODE calculations are needed. - """ - ode_func::OF - """ - Metadata about the bucket, including input, output, state, parameter, and neural network names. - """ - meta::M - - function HydroBucket(; - funcs::Vector{F}, - dfuncs::Vector{D}=StateFlux[], - name::Union{Symbol,Nothing}=nothing, - sort_funcs::Bool=false - ) where {F<:AbstractFlux,D<:AbstractStateFlux} - funcs = sort_funcs ? sort_funcs(funcs) : funcs - #* Extract all variable names of funcs and dfuncs - input_names, output_names, state_names = get_var_names(funcs, dfuncs) - #* Extract all parameters names of funcs and dfuncs - param_names = get_param_names(vcat(funcs, dfuncs)) - #* Extract all neuralnetwork names of the funcs - nn_names = get_nn_names(funcs) - #* Setup the name information of the hydrobucket - bucket_name = name === nothing ? Symbol(Symbol(reduce((x, y) -> Symbol(x, y), state_names)), :_bucket) : name - meta = HydroMeta(bucket_name, input_names, output_names, param_names, state_names, nn_names) - #* Construct a function for ordinary differential calculation based on dfunc and funcs - flux_func, ode_func = build_ele_func(funcs, dfuncs, meta) - - return new{F,D,typeof(flux_func),typeof(ode_func),typeof(meta)}( - funcs, - dfuncs, - flux_func, - ode_func, - meta, - ) - end -end - -function _get_parameter_extractors(ele::HydroBucket, pas::ComponentVector) - #* extract params and nn params - #* Check if all required parameter names are present in pas[:params] - @assert all(param_name in keys(pas[:params]) for param_name in get_param_names(ele)) "Missing required parameters. Expected all of $(get_param_names(ele)), but got $(keys(pas[:params]))." - #* check initstates input is correct - @assert all(state_name in keys(pas[:initstates]) for state_name in get_state_names(ele)) "Missing required initial states. Expected all of $(get_state_names(ele)), but got $(keys(pas[:initstates]))." - #* Check if all required neural network names are present in pas[:nn] (if any) - if !isempty(get_nn_names(ele)) - @assert all(nn_name in keys(pas[:nn]) for nn_name in get_nn_names(ele)) "Missing required neural networks. Expected all of $(get_nn_names(ele)), but got $(keys(pas[:nn]))." - nn_params_idx = [getaxes(pas[:nn])[1][nm].idx for nm in get_nn_names(ele)] - nn_param_func = (p) -> [p[:nn][idx] for idx in nn_params_idx] - else - nn_param_func = (_) -> nothing - end - ele_params_idx = [getaxes(pas[:params])[1][nm].idx for nm in get_param_names(ele)] - param_func = (p) -> [p[:params][idx] for idx in ele_params_idx] - return param_func, nn_param_func -end - -function _get_parameter_extractors(ele::HydroBucket, pas::ComponentVector, ptypes::AbstractVector{Symbol}) - #* extract params and nn params - #* check params input is correct - for ptype in ptypes - @assert all(param_name in keys(pas[:params][ptype]) for param_name in get_param_names(ele)) "Missing required parameters. Expected all of $(get_param_names(ele)), but got $(keys(pas[:params][ptype])) at param type: $ptype." - end - - #* Check if all required neural network names are present in pas[:nn] (if any) - if !isempty(get_nn_names(ele)) - @assert all(nn_name in keys(pas[:nn]) for nn_name in get_nn_names(ele)) "Missing required neural networks. Expected all of $(get_nn_names(ele)), but got $(keys(pas[:nn]))." - nn_params_idx = [getaxes(pas[:nn])[1][nm].idx for nm in get_nn_names(ele)] - nn_param_func = (p) -> Ref([p[:nn][idx] for idx in nn_params_idx]) - else - nn_param_func = (_) -> nothing - end - ele_params_idx = [getaxes(pas[:params][ptypes[1]])[1][nm].idx for nm in get_param_names(ele)] - param_func = (p) -> [p[:params][ptype][ele_params_idx] for ptype in ptypes] - return param_func, nn_param_func -end - -function _get_du_func(ele::HydroBucket, ode_input_func::Function, param_func::Function, nn_param_func::Function) - (u, p, t) -> ele.ode_func(ode_input_func(t), u, param_func(p), nn_param_func(p), t) -end - -function _get_dum_func(ele::HydroBucket, ode_input_func::Function, param_func::Function, nn_param_func::Function) - (u, p, t) -> reduce(hcat, ele.ode_func.(ode_input_func(t), eachslice(u, dims=2), param_func(p), nn_param_func(p), t)) -end - -""" - (ele::HydroBucket)(input::Matrix, pas::ComponentVector; config::NamedTuple=NamedTuple(), kwargs...) - (ele::HydroBucket)(input::Array, pas::ComponentVector; config::NamedTuple=NamedTuple(), kwargs...) - (ele::HydroBucket)(input::NamedTuple, pas::ComponentVector; config::NamedTuple=NamedTuple(), kwargs...) - (ele::HydroBucket)(input::Vector{<:NamedTuple}, pas::ComponentVector; config::NamedTuple=NamedTuple(), kwargs...) - -Run the HydroBucket model for given input and parameters. - -# Arguments -- `input`: Input data. Can be a Matrix (dims: variables × time) or Array (dims: variables × nodes × time) - or NamedTuple (variables => time series) or Vector{NamedTuple} (variables => time series, for multiple nodes) -- `pas`: ComponentVector containing parameters and initial states -- `config`: Configuration options including: - - `solver`: AbstractHydroSolver to use for ODE solving (default: ODESolver()) - - `interp`: Interpolation method for input data (default: LinearInterpolation) - - `timeidx`: Vector of time indices (default: 1:size(input, last_dim)) - - `ptypes`: (Array input only) Parameter types to use (default: all parameter types) - - `stypes`: (Array input only) State types to use (default: all state types) -- `kwargs`: Additional keyword arguments - - `convert_to_ntp`: Whether to convert output to NamedTuple (default: false) - -# Returns -If convert_to_ntp=false (default): -- Matrix (dims: (states+outputs) × time) for Matrix input -- Array (dims: (states+outputs) × nodes × time) for Array input - -If convert_to_ntp=true: -- NamedTuple of time series for Matrix input -- Vector of NamedTuples for Array input - -# Details -- For Matrix input: Processes single node/location data -- For Array input: Processes multiple nodes/locations simultaneously -- If the bucket has an ODE function, solves states over time -- Calculates fluxes using the model's flux function -- Concatenates solved states (if any) with calculated fluxes for output -- Input dimensions must match number of input variables defined in model -- Required parameters and initial states must be present in pas -""" - -function (ele::HydroBucket{F,D,FF,OF,M})( - input::AbstractArray{T,2}, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) where {F,D,FF,OF<:Function,M,T} - #* get kwargs - solver = get(config, :solver, ODESolver()) - interp = get(config, :interp, LinearInterpolation) - timeidx = get(config, :timeidx, collect(1:size(input, 2))) - convert_to_ntp = get(kwargs, :convert_to_ntp, false) - - @assert size(input, 1) == length(get_input_names(ele)) "Input dimensions mismatch. Expected $(length(get_input_names(ele))) variables, got $(size(input, 1))." - @assert size(input, 2) == length(timeidx) "Time steps mismatch. Expected $(length(timeidx)) time steps, got $(size(input, 2))." - - #* get initial states matrix - initstates_mat = collect(pas[:initstates][get_state_names(ele)]) - #* extract params and nn params - #* build differential equation function - param_func, nn_param_func = _get_parameter_extractors(ele, pas) - itpfunc_list = map((var) -> interp(var, timeidx, extrapolate=true), eachrow(input)) - ode_input_func = (t) -> [itpfunc(t) for itpfunc in itpfunc_list] - du_func = _get_du_func(ele, ode_input_func, param_func, nn_param_func) - - #* solve the problem by call the solver - solved_states = solver(du_func, pas, initstates_mat, timeidx) - #* Store the solved bucket state in fluxes - fluxes = cat(input, solved_states, dims=1) - - #* calculate output, slice input on time dim, then calculate each output - params_vec, nn_params_vec = param_func(pas), nn_param_func(pas) - flux_output = ele.flux_func.(eachslice(fluxes, dims=2), Ref(params_vec), Ref(nn_params_vec), timeidx) - #* convert vector{vector} to matrix - flux_output_mat = reduce(hcat, flux_output) - #* merge output and state, if solved_states is not nothing, then cat it at the first dim - output_mat = cat(solved_states, flux_output_mat, dims=1) - if convert_to_ntp - return NamedTuple{Tuple(vcat(get_state_names(ele), get_output_names(ele)))}(eachslice(output_mat, dims=1)) - else - return output_mat - end -end - -function (ele::HydroBucket{F,D,FF,OF,M})( - input::AbstractArray{T,2}, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) where {F,D,FF,OF<:Nothing,M,T} - #* get kwargs - timeidx = get(config, :timeidx, collect(1:size(input, 2))) - convert_to_ntp = get(kwargs, :convert_to_ntp, false) - - @assert size(input, 1) == length(get_input_names(ele)) "Input dimensions mismatch. Expected $(length(get_input_names(ele))) variables, got $(size(input, 1))." - @assert size(input, 2) == length(timeidx) "Time steps mismatch. Expected $(length(timeidx)) time steps, got $(size(input, 2))." - - #* extract params and nn params - #* Check if all required parameter names are present in pas[:params] - @assert all(param_name in keys(pas[:params]) for param_name in get_param_names(ele)) "Missing required parameters. Expected all of $(get_param_names(ele)), but got $(keys(pas[:params]))." - #* check initstates input is correct - @assert all(state_name in keys(pas[:initstates]) for state_name in get_state_names(ele)) "Missing required initial states. Expected all of $(get_state_names(ele)), but got $(keys(pas[:initstates]))." - #* extract params and nn params - param_func, nn_param_func = _get_parameter_extractors(ele, pas) - #* calculate output, slice input on time dim, then calculate each output - params_vec, nn_params_vec = param_func(pas), nn_param_func(pas) - flux_output = ele.flux_func.(eachslice(input, dims=2), Ref(params_vec), Ref(nn_params_vec), timeidx) - #* convert vector{vector} to matrix - flux_output_matrix = reduce(hcat, flux_output) - if convert_to_ntp - return NamedTuple{Tuple(vcat(get_state_names(ele), get_output_names(ele)))}(eachslice(flux_output_matrix, dims=1)) - else - return output_matrix - end -end - -function (ele::HydroBucket{F,D,FF,OF,M})( - input::AbstractArray{T,3}, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) where {F,D,FF,OF<:Function,M,T} - #* get kwargs - solver = get(config, :solver, ODESolver()) - interp = get(config, :interp, LinearInterpolation) - ptypes = get(config, :ptypes, collect(keys(pas[:params]))) - stypes = get(config, :stypes, collect(keys(pas[:initstates]))) - timeidx = get(config, :timeidx, collect(1:size(input, 3))) - - @assert size(input, 1) == length(get_input_names(ele)) "Input dimensions mismatch. Expected $(length(get_input_names(ele))) variables, got $(size(input, 1))." - @assert size(input, 3) == length(timeidx) "Time steps mismatch. Expected $(length(timeidx)) time steps, got $(size(input, 3))." - @assert length(ptypes) == size(input, 2) "Number of parameter types mismatch. Expected $(size(input, 2)) parameter types, got $(length(ptypes))." - @assert length(stypes) == size(input, 2) "Number of state types mismatch. Expected $(size(input, 2)) state types, got $(length(stypes))." - @assert all(ptype in keys(pas[:params]) for ptype in ptypes) "Missing required parameters. Expected all of $(keys(pas[:params])), but got $(ptypes)." - @assert all(stype in keys(pas[:initstates]) for stype in stypes) "Missing required initial states. Expected all of $(keys(pas[:initstates])), but got $(stypes)." - - #* prepare initial states - init_states_vec = collect([collect(pas[:initstates][stype][get_state_names(ele)]) for stype in stypes]) - init_states_mat = reduce(hcat, init_states_vec) - #* extract params and nn params - param_func, nn_param_func = _get_parameter_extractors(ele, pas, ptypes) - #* prepare input function - itpfunc_vecs = [interp.(eachslice(input[:, i, :], dims=1), Ref(timeidx), extrapolate=true) for i in 1:size(input)[2]] - ode_input_func = (t) -> [[itpfunc(t) for itpfunc in itpfunc_vec] for itpfunc_vec in itpfunc_vecs] - #* build differential equation function - du_func = _get_dum_func(ele, ode_input_func, param_func, nn_param_func) - - #* Call the solve_prob method to solve the state of bucket at the specified timeidx - solved_states = solver(du_func, pas, init_states_mat, timeidx; convert_to_array=true) - - #* Store the solved bucket state in fluxes - fluxes = cat(input, solved_states, dims=1) - - #* array dims: (num of node, sequence length, variable dim) - ele_output_vec = [ele.flux_func.(eachslice(fluxes[:, :, i], dims=2), param_func(pas), nn_param_func(pas), timeidx[i]) for i in axes(fluxes, 3)] - ele_output_arr = reduce((m1, m2) -> cat(m1, m2, dims=3), [reduce(hcat, u) for u in ele_output_vec]) - #* merge state and output, if solved_states is not nothing, then cat it at the first dim - final_output_arr = cat(solved_states, ele_output_arr, dims=1) - - #* convert to NamedTuple if convert_to_ntp is true - convert_to_ntp = get(kwargs, :convert_to_ntp, false) - if convert_to_ntp - return [NamedTuple{Tuple(vcat(get_state_names(ele), get_output_names(ele)))}(eachslice(final_output_arr[:, i, :], dims=1)) for i in axes(final_output_arr, 2)] - else - return final_output_arr - end -end - -function (ele::HydroBucket{F,D,FF,OF,M})( - input::AbstractArray{T,3}, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) where {F,D,FF,OF<:Nothing,M,T} - #* get kwargs - ptypes = get(config, :ptypes, collect(keys(pas[:params]))) - timeidx = get(config, :timeidx, collect(1:size(input, 3))) - #* check input and parameter - @assert size(input, 1) == length(get_input_names(ele)) "Input dimensions mismatch. Expected $(length(get_input_names(ele))) variables, got $(size(input, 1))." - @assert size(input, 3) == length(timeidx) "Time steps mismatch. Expected $(length(timeidx)) time steps, got $(size(input, 3))." - @assert length(ptypes) == size(input, 2) "Number of parameter types mismatch. Expected $(size(input, 2)) parameter types, got $(length(ptypes))." - @assert all(ptype in keys(pas[:params]) for ptype in ptypes) "Missing required parameters. Expected all of $(keys(pas[:params])), but got $(ptypes)." - #* check initstates input is correct - for stype in stypes - @assert all(state_name in keys(pas[:initstates][stype]) for state_name in get_state_names(ele)) "Missing required initial states. Expected all of $(get_state_names(ele)), but got $(keys(init_states_item)) at state type: $stype." - end - #* extract params and nn params - param_func, nn_param_func = _get_parameter_extractors(ele, pas, ptypes) - #* array dims: (num of node, sequence length, variable dim) - ele_output_vec = [ele.flux_func.(eachslice(input[:, :, i], dims=2), param_func(pas), nn_param_func(pas), timeidx[i]) for i in 1:size(input)[3]] - final_output_arr = reduce((m1, m2) -> cat(m1, m2, dims=3), [reduce(hcat, u) for u in ele_output_vec]) - #* convert to NamedTuple if convert_to_ntp is true - convert_to_ntp = get(kwargs, :convert_to_ntp, false) - if convert_to_ntp - return [NamedTuple{Tuple(vcat(get_state_names(ele), get_output_names(ele)))}(eachslice(final_output_arr[:, i, :], dims=1)) for i in axes(final_output_arr, 2)] - else - return final_output_arr - end -end - -function (ele::HydroBucket)(input::NamedTuple, pas::ComponentVector; config::NamedTuple=NamedTuple(), kwargs...) - @assert all(input_name in keys(input) for input_name in get_input_names(ele)) "Missing required inputs. Expected all of $(get_input_names(ele)), but got $(keys(input))." - input_matrix = Matrix(reduce(hcat, [input[k] for k in get_input_names(ele)])') - ele(input_matrix, pas; config=config, kwargs...) -end - -function (ele::HydroBucket)(input::Vector{<:NamedTuple}, pas::ComponentVector; config::NamedTuple=NamedTuple(), kwargs...) - for i in eachindex(input) - @assert all(input_name in keys(input[i]) for input_name in get_input_names(ele)) "Missing required inputs. Expected all of $(get_input_names(ele)), but got $(keys(input[i])) at $i input." - end - input_mats = [reduce(hcat, collect(input[i][k] for k in get_input_names(ele))) for i in eachindex(input)] - input_arr = reduce((m1, m2) -> cat(m1, m2, dims=3), input_mats) - ele(input_arr, pas; config=config, kwargs...) -end \ No newline at end of file diff --git a/src/flux.jl b/src/flux.jl deleted file mode 100644 index 5b35da9..0000000 --- a/src/flux.jl +++ /dev/null @@ -1,384 +0,0 @@ -""" - HydroFlux - -Represents a simple flux component in a hydrological model. - -# Arguments -- `inputs::Vector{Num}`: A vector of input variables. -- `outputs::Vector{Num}`: A vector of output variables. -- `params::Vector{Num}`: A vector of parameter variables. -- `exprs::Vector{Num}`: A vector of expressions describing the formulas for output variables. -- `meta::HydroMeta`: Contains metadata about the flux, including input, output, and parameter names. - -# Fields -- `inputs::Vector{Num}`: A vector of input variables. -- `outputs::Vector{Num}`: A vector of output variables. -- `params::Vector{Num}`: A vector of parameter variables. -- `exprs::Vector{Num}`: A vector of expressions describing the formulas for output variables. -- `func::Function`: A compiled function that calculates the flux. -- `meta::HydroMeta`: Contains metadata about the flux, including input, output, and parameter names. - -# Constructors - HydroFlux(inputs::Vector{Num}, outputs::Vector{Num}, params::Vector{Num}, exprs::Vector{Num}, meta::HydroMeta) - HydroFlux(flux_names::Pair{Vector{Symbol},Vector{Symbol}}, param_names::Vector{Symbol}=Symbol[]; flux_funcs::Vector{<:Function}=Function[]) - -# Description -`HydroFlux` is a structure that encapsulates a simple flux calculation in a hydrological model. -It can be constructed either by providing explicit inputs, outputs, parameters, and expressions, -or by specifying names for fluxes and parameters along with optional flux functions. - -The structure automatically compiles the provided expressions or functions into an efficient -calculation function, which can be used to compute flux values given input and parameter values. - -This structure is particularly useful for representing straightforward hydrological processes -where the relationship between inputs and outputs can be expressed as simple mathematical formulas. -""" -struct HydroFlux{T<:Num,F<:Function,M<:HydroMeta} <: AbstractHydroFlux - "Vector of input variables" - inputs::Vector{T} - "Vector of output variables" - outputs::Vector{T} - "Vector of parameter variables" - params::Vector{T} - "Vector of expressions describing the formulas for output variables" - exprs::Vector{T} - "Compiled function that calculates the flux" - func::F - "Metadata about the flux, including input, output, and parameter names" - meta::M - - function HydroFlux( - inputs::Vector{T}, - outputs::Vector{T}, - params::Vector{T}; - exprs::Vector{T}=T[], - ) where {T<:Num} - #* name the flux - output_names = Symbolics.tosymbol.(outputs, escape=false) - flux_name = Symbol(Symbol(reduce((x, y) -> Symbol(x, y), output_names)), :_sflux) - #* construct meta - meta = HydroMeta(name=flux_name, inputs=inputs, outputs=outputs, params=params) - #* if no expression provided, use the hydrology formula library to build the flux - if length(exprs) == 0 - @info "No expression provided, using the hydrology formula library (`HydroModelLibrary.jl`) to build the flux" - #* Get the corresponding calculation formula according to the input and output parameter names - hydrofunc = HydroEquation(input_names, output_names, param_names) - exprs = HydroModelLibrary.expr(hydrofunc) - end - #* build flux function - flux_func = build_flux_func(inputs, outputs, params, exprs) - - return new{T,typeof(flux_func),typeof(meta)}(inputs, outputs, params, exprs, flux_func, meta) - end - - #* construct hydro flux with input fluxes and output fluxes - HydroFlux(fluxes::Pair{Vector{Num},Vector{Num}}, params::Vector{Num}=Num[]; exprs::Vector{Num}=Num[]) = HydroFlux(fluxes[1], fluxes[2], params, exprs=exprs) -end - -""" - (flux::AbstractHydroFlux)(input::Union{Vector,Matrix,Array}, pas::ComponentVector; ptypes::AbstractVector{Symbol}=Symbol[], kwargs...) - -Apply the simple flux model to input data of various dimensions. - -# Arguments -- `input`: Input data, which can be: - - `Vector`: A vector of input values for a single time step. - - `Matrix`: A matrix of input values, where each column represents a different time step. - - `Array`: A 3D array of input values, with dimensions (var_names, node_names, ts_len). -- `pas::ComponentVector`: A component vector containing parameter values. -- `kwargs...`: Additional keyword arguments (unused in this function), provided for compatibility with the component callable function API - - `ptypes::AbstractVector{Symbol}`: A vector of symbols representing parameter categories (only used for `Array` input). - -# Returns -- For vector input: The result of applying the flux function to the input and parameters. -- For matrix input: A matrix where each column is the result of applying the flux function to the corresponding input column. -- For 3D array input: A 3D array of flux outputs, with dimensions (output_var_names, node_names, ts_len). -""" -function (flux::AbstractHydroFlux)(input::AbstractVector, pas::ComponentVector; kwargs...) - timeidx = get(kwargs, :timeidx, 1) - params_vec = collect([pas[:params][nm] for nm in get_param_names(flux)]) - flux.func(input, params_vec, timeidx) -end - -function (flux::AbstractHydroFlux)(input::AbstractArray{N,2}, pas::ComponentVector; kwargs...) where {N} - timeidx = get(kwargs, :timeidx, collect(1:size(input, 2))) - # assert the input params must include all the parameters in the flux - @assert length(timeidx) == size(input, 2) "Time index length does not match the number of time steps" - @assert all(nm in keys(pas[:params]) for nm in get_param_names(flux)) "Input parameters do not match the flux parameters, the flux parameters should be: $(get_param_names(flux))" - params_vec = collect([pas[:params][nm] for nm in get_param_names(flux)]) - output_arr = reduce(hcat, flux.func.(eachslice(input, dims=2), Ref(params_vec), timeidx)) - to_ntp = get(kwargs, :convert_to_ntp, false) - return to_ntp ? NamedTuple{Tuple(get_output_names(flux))}(eachslice(output_arr, dims=1)) : output_arr -end - -function (flux::AbstractHydroFlux)(input::AbstractArray{N,3}, pas::ComponentVector; config::NamedTuple=NamedTuple(), kwargs...) where {N} - #* get kwargs - ptypes = get(config, :ptypes, collect(keys(pas[:params]))) - timeidx = get(config, :timeidx, collect(1:size(input, 3))) - @assert length(timeidx) == size(input, 3) "Time index length does not match the number of time steps" - - #* extract params and nn params - node_params = [pas[:params][ptype] for ptype in ptypes] - # 批量检查参数 - required_params = Set(get_param_names(flux)) - for (ptype, node_param) in zip(ptypes, node_params) - missing_params = setdiff(required_params, keys(node_param)) - @assert isempty(missing_params) "Missing parameters for $ptype: $missing_params" - end - params_vec = collect([collect([params_item[pname] for pname in get_param_names(flux)]) for params_item in node_params]) - - #* array dims: (var_names * node_names * ts_len) - flux_output_vec = [reduce(hcat, flux.func.(eachslice(input[:, :, i], dims=2), params_vec, timeidx[i])) for i in eachindex(timeidx)] - if length(flux_output_vec) == 1 - tmp_output_arr = flux_output_vec[1] - flux_output_arr = reshape(tmp_output_arr, size(tmp_output_arr)..., 1) - else - flux_output_arr = reduce((m1, m2) -> cat(m1, m2, dims=3), flux_output_vec) - end - # flux_output_arr = mapslices(input, dims=[1,2]) do slice - # reduce(hcat, flux.func.(eachcol(slice), params_vec, timeidx)) - # end - flux_output_arr -end - - -""" - NeuralFlux <: AbstractNeuralFlux - -Represents a neural network-based flux component in a hydrological model. - -# Fields -- `inputs::Vector{Num}`: A vector of input variables. -- `outputs::Vector{Num}`: A vector of output variables. -- `nnparam::Symbolics.Arr`: An array of neural network parameters. -- `expr::Symbolics.Arr{Num,1}`: Expressions describing the formulas for output variables. -- `func::Function`: A compiled function that calculates the flux using the neural network. -- `meta::HydroMeta`: Contains metadata about the flux, including input, output, and neural network parameter names. -- `nninfos::NamedTuple`: Contains information about the neural network's input and output structure. - -# Constructors - # 1. Construct a NeuralFlux with specified input/output fluxes and a neural network, the neural network should specify the name - NeuralFlux(fluxes::Pair{Vector{Num},Vector{Num}}, chain::Lux.AbstractExplicitContainerLayer) - -# Description -`NeuralFlux` is a structure that encapsulates a neural network-based flux calculation in a hydrological model. -It combines symbolic mathematics with neural networks to create a flexible and powerful representation of complex hydrological processes. - -The structure automatically handles the integration of the neural network into the symbolic framework, -allowing for seamless incorporation of machine learning models into traditional hydrological equations. - -This structure is particularly useful for representing complex, non-linear relationships in hydrological systems -where traditional equations may be insufficient or unknown. -""" -struct NeuralFlux{T<:Num,F<:Function,M<:HydroMeta} <: AbstractNeuralFlux - "Vector of input variables" - inputs::Vector{T} - "Vector of output variables" - outputs::Vector{T} - "Array of neural network parameters" - nnparam::Symbolics.Arr{T,1} - "Array of expressions describing the formulas for output variables" - expr::Symbolics.Arr{T,1} - "Compiled function that calculates the flux using the neural network" - func::F - "Metadata about the flux, including input, output, and neural network parameter names" - meta::M - "Information about the neural network's input and output structure" - nninfos::NamedTuple - - function NeuralFlux( - inputs::Vector{T}, - outputs::Vector{T}, - chain::LuxCore.AbstractLuxLayer - ) where {T<:Num} - #* assert the chain has a name - @assert chain.name isa Symbol "Neural network chain should have a name with Symbol type" - #* Get the neural network name (neural flux param name) and object - chain_name = chain.name - #* Initialize model parameter type for model parameter dimension definition - init_params = ComponentVector(Lux.initialparameters(StableRNG(42), chain)) - params_axes = getaxes(init_params) - - #* Define parameter variables according to initialization parameters: Define type as Vector{parameter length} - chain_params = first(@parameters $chain_name[1:length(init_params)] = Vector(init_params)) - #* Use Symbolics.array_term to define the slow-building parameter variables: - #* when the model is called, it is rebuilt into the ComponentVector type according to - #* the axes of `init_params` and the Vector type of the parameter as the calculation parameter input - lazy_params = Symbolics.array_term((x, axes) -> ComponentVector(x, axes), chain_params, params_axes, size=size(chain_params)) - - #* Constructing neural network input and output variables - #* The input and output of the model can only be of type Symbolics.Arr{Num, 1}, - #* so it cannot be defined based on outputs and output_vars - nn_input_name = Symbol(chain_name, :_input) - nn_output_name = Symbol(chain_name, :_output) - nn_input = first(@variables $(nn_input_name)[1:length(inputs)]) - nn_output = first(@variables $(nn_output_name)[1:length(outputs)]) - - #* Constructing a calculation expression based on a neural network - flux_expr = LuxCore.stateless_apply(chain, nn_input, lazy_params) - nn_func = (x, p) -> LuxCore.stateless_apply(chain, x, ComponentVector(p, params_axes)) - - #* neuralflux meta - meta = HydroMeta(name=Symbol(chain_name, :_nflux), inputs=inputs, outputs=outputs, nn_names=[chain_name]) - nninfos = (inputs=nn_input, outputs=nn_output, paramlen=length(init_params)) - new{T,typeof(nn_func),typeof(meta)}( - inputs, outputs, chain_params, - flux_expr, nn_func, - meta, nninfos, - ) - end - - function NeuralFlux( - inputs::Vector{T}, - outputs::Vector{T}, - params::Symbolics.Arr{T,1}, - expr::Symbolics.Arr{T,1}, - chain, - ) where {T<:Number} - input_vec, output_vec = Symbol(chain.name, :_input), Symbol(chain.name, :_output) - nninfos = (inputs=first(@variables $(input_vec)[1:length(inputs)]), outputs=first(@variables $(output_vec)[1:length(outputs)])) - meta = HydroMeta(name=Symbol(chain.name, :_nflux), inputs=inputs, outputs=outputs, nn_names=[chain.name]) - params_axes = getaxes(ComponentVector(Lux.initialparameters(StableRNG(42), chain))) - nn_func = (x, p) -> LuxCore.stateless_apply(chain, x, ComponentVector(p, params_axes)) - new{T,typeof(nn_func),typeof(meta)}(inputs, outputs, params, expr, nn_func, meta, nninfos) - end - - #* construct neural flux with input fluxes and output fluxes - NeuralFlux(fluxes::Pair{Vector{Num},Vector{Num}}, chain) = NeuralFlux(fluxes[1], fluxes[2], chain) -end - -""" - (flux::AbstractFlux)(input::Union{Vector,Matrix,Array}, pas::ComponentVector; ptypes::AbstractVector{Symbol}=Symbol[], kwargs...) - -Apply the flux model (simple or neural) to input data of various dimensions. - -# Arguments -- `input`: Input data, which can be: - - `Vector`: A vector of input values for a single time step. - - `Matrix`: A matrix of input values, where each column represents a different time step. - - `Array`: A 3D array of input values, with dimensions (var_names, node_names, ts_len). -- `pas::ComponentVector`: A component vector containing parameter values. -- `ptypes::AbstractVector{Symbol}`: A vector of symbols representing parameter categories (only used for `Array` input). -- `kwargs...`: Additional keyword arguments (unused in this function), provided for compatibility with the component callable function API - -# Returns -- For vector input: The result of applying the flux function to the input and parameters. -- For matrix input: A matrix where each column is the result of applying the flux function to the corresponding input column. -- For 3D array input: A 3D array of flux outputs, with dimensions (output_var_names, node_names, ts_len). - -# Note -For neural flux models, the parameters are accessed from `pas[:nn]` instead of `pas[:params]`. -""" -function (flux::AbstractNeuralFlux)(input::AbstractVector, pas::ComponentVector; kwargs...) - nn_params_vec = pas[:nn][get_nn_names(flux)[1]] - flux.func(input, nn_params_vec) -end - -function (flux::AbstractNeuralFlux)(input::AbstractArray{T,2}, pas::ComponentVector; kwargs...) where {T} - nn_params_vec = pas[:nn][get_nn_names(flux)[1]] - output_arr = flux.func(input, nn_params_vec) - to_ntp = get(kwargs, :convert_to_ntp, false) - return to_ntp ? NamedTuple{Tuple(get_output_names(flux))}(eachslice(output_arr, dims=1)) : output_arr -end - -function (flux::AbstractNeuralFlux)(input::AbstractArray{T,3}, pas::ComponentVector; kwargs...) where {T} - nn_params = pas[:nn][get_nn_names(flux)[1]] - #* array dims: (ts_len * node_names * var_names) - flux_output_vec = [flux.func(input[:, i, :], nn_params) for i in 1:size(input)[2]] - flux_output_arr = reduce((m1, m2) -> cat(m1, m2, dims=3), flux_output_vec) - permutedims(flux_output_arr, (1, 3, 2)) -end - -""" - StateFlux <: AbstractStateFlux - -Represents a state flux component in a hydrological model. - -# Fields -- `inputs::Vector{Num}`: A vector of input variables. -- `state::Num`: The state variable. -- `params::Vector{Num}`: A vector of parameter variables. -- `expr::Num`: The expression describing the state variable's formula. -- `func::Function`: A function to calculate the state flux. -- `meta::HydroMeta`: Contains metadata about inputs, state, parameters, and neural networks. - -# Constructors - # 1. Detailed specification of inputs, state, parameters, and state expression - StateFlux(fluxes::Vector{Num}, state::Num, params::Vector{Num}=Num[]; expr::Num) - # 2. Automatic construction of state expression as the difference between sum of input fluxes and sum of output fluxes - StateFlux(fluxes::Pair{Vector{Num},Vector{Num}}, state::Num) - -# Description -StateFlux is a structure that represents a state flux in a hydrological model. It encapsulates -the relationship between input fluxes, output fluxes, and a state variable. The structure -provides methods to calculate state changes based on the provided expressions and parameters. - -The first constructor allows for detailed specification of inputs, state, parameters, and the -state expression. The second constructor automatically constructs a state expression as the -difference between sum of input fluxes and sum of output fluxes. The third constructor is used -for simple state transitions. - -This structure is particularly useful in building complex hydrological models where state -variables evolve over time based on various input and output fluxes. -""" -struct StateFlux{T<:Num,F<:Function,M<:HydroMeta} <: AbstractStateFlux - "A map of input names (Symbol) and its variables (Num)" - inputs::Vector{T} - "A map of state names (Symbol) and its variables (Num)" - state::T - "A map of parameters names (Symbol) and its variables (Num)" - params::Vector{T} - "flux expressions to descripe the formula of the state variable" - expr::T - "flux expressions to descripe the formula of the output variable" - func::F - "bucket information: keys contains: input, output, param, state" - meta::M - - function StateFlux( - inputs::Vector{T}, state::T, params::Vector{T}=T[]; expr::T - ) where {T<:Num} - #* Convert to a symbol based on the variable - state_name = Symbolics.tosymbol(state, escape=false) - meta = HydroMeta(name=Symbol(state_name, :_stflux), inputs=inputs, states=[state], params=params) - state_func = build_flux_func(inputs, [state], params, [expr]) - return new{T,typeof(state_func),typeof(meta)}( - inputs, - state, - params, - expr, - state_func, - meta - ) - end - #* construct state flux with input fluxes and output fluxes - StateFlux(fluxes::Pair{Vector{Num},Vector{Num}}, state::Num) = StateFlux(vcat(fluxes[1], fluxes[2]), state, expr=sum(fluxes[1]) - sum(fluxes[2])) - #* construct state flux with state variables - StateFlux(states::Pair{Num,Num}) = StateFlux([states[2]], states[1], expr=states[2] - states[1]) -end - -""" - (flux::AbstractStateFlux)(input::Union{Vector,Matrix,Array}, pas::ComponentVector; ptypes::AbstractVector{Symbol}=Symbol[], kwargs...) - -Apply the state flux model to input data of various dimensions. - -# Arguments -- `input`: Input data, which can be: - - `Vector`: A vector of input values for a single time step. - - `Matrix`: A matrix of input values, where each column represents a different time step. - - `Array`: A 3D array of input values, with dimensions (var_names, node_names, ts_len). -- `pas::ComponentVector`: A component vector containing parameter values. -- `ptypes::AbstractVector{Symbol}`: A vector of symbols representing parameter categories (only used for `Array` input). -- `kwargs...`: Additional keyword arguments (unused in this function), provided for compatibility with the component callable function API. - -# Returns -This function does not actually return a value, as state flux models cannot be run directly. - -# Notes -- State flux models cannot be run directly and will throw an error if attempted. -- To use state flux models, they should be incorporated into a HydroFlux or other composite flux model. -""" -(::AbstractStateFlux)(::AbstractVector, ::ComponentVector; kwargs...) = @error "State Flux cannot run directly, please using HydroFlux to run" -(::AbstractStateFlux)(::AbstractArray{T,2}, ::ComponentVector; kwargs...) where {T} = @error "State Flux cannot run directly, please using HydroFlux to run" -(::AbstractStateFlux)(::AbstractArray{T,3}, ::ComponentVector; kwargs...) where {T} = @error "State Flux cannot run directly, please using HydroFlux to run" - diff --git a/src/model.jl b/src/model.jl deleted file mode 100644 index da2a805..0000000 --- a/src/model.jl +++ /dev/null @@ -1,123 +0,0 @@ -""" - HydroModel <: AbstractModel - -Represents a hydrological model composed of multiple components. - -# Fields -- `infos::NamedTuple`: Contains metadata about the model, including name, input variables, all variables, output variables, state variables, and neural network variables. -- `components::Vector{<:AbstractComponent}`: A vector of hydrological computation elements (components) that make up the model. -- `varindices::Vector`: A vector of indices for each component's input, used to map overall model inputs to component-specific inputs. - -# Constructor - HydroModel(name; components::Vector{<:AbstractComponent}) - -Constructs a HydroModel with the given name and components. - -# Description -HydroModel is a structure that encapsulates a complete hydrological model. It manages multiple hydrological components, -handles the flow of data between these components, and provides methods for running simulations. - -The model automatically determines the connections between components based on their input and output variables. -It also keeps track of all variables in the system, including inputs, outputs, states, and any neural network parameters. - -When called as a function, the HydroModel applies its components in sequence, passing the outputs of earlier components -as inputs to later ones, effectively simulating the hydrological system over time. - -Each component's kwargs may be different, include solver, interp -""" -struct HydroModel{M<:HydroMeta,C<:AbstractComponent,VI<:AbstractVector{<:AbstractVector{<:Integer}},VN<:AbstractVector{<:Symbol}} <: AbstractModel - "meta data of hydrological model" - meta::M - "hydrological computation elements" - components::Vector{C} - "input variables index for each components" - varindices::VI - "all variables names" - varnames::VN - - function HydroModel(; - name::Symbol, - components::Vector{C}, - sort_components::Bool=false - ) where {C<:AbstractComponent} - components = sort_components ? sort_components(components) : components - input_names, output_names, state_names = get_var_names(components) - nn_names = reduce(union, get_nn_names.(components)) - param_names = reduce(union, get_param_names.(components)) - var_names = input_names - input_idx = Vector{Int}[] - for component in components - tmp_input_idx = map((nm) -> findfirst(varnm -> varnm == nm, var_names), get_input_names(component)) - var_names = reduce(vcat, [var_names, get_state_names(component), get_output_names(component)]) - push!(input_idx, tmp_input_idx) - end - model_meta = HydroMeta(name, input_names, output_names, param_names, state_names, nn_names) - new{typeof(model_meta),C,typeof(input_idx),typeof(var_names)}( - model_meta, - components, - input_idx, - var_names, - ) - end -end - -function (model::HydroModel{M,C,VI,VN})( - input::NamedTuple, - pas::ComponentVector; - config::Union{<:NamedTuple,Vector{<:NamedTuple}}=NamedTuple(), - kwargs... -) where {M,C,VI,VN} - @assert all(nm -> nm in keys(input), get_input_names(model)) "input must contain all input names" - input_matrix = Matrix(reduce(hcat, [input[nm] for nm in get_input_names(model)])') - return model(input_matrix, pas; config=config, kwargs...) -end - -# 求解并计算 -function (model::HydroModel)( - input::AbstractArray{T,2}, - pas::ComponentVector; - config::Union{NamedTuple,Vector{<:NamedTuple}}=NamedTuple(), - kwargs... -) where {T<:Number} - comp_configs = config isa NamedTuple ? fill(config, length(model.components)) : config - @assert length(comp_configs) == length(model.components) "component configs length must be equal to components length" - @assert size(input, 1) == length(get_input_names(model)) "input matrix must have the same number of columns as the input names" - fluxes = input - for (comp_, idx, config_) in zip(model.components, model.varindices, comp_configs) - tmp_fluxes = comp_(fluxes[idx, :], pas; config=config_, convert_to_ntp=false) - fluxes = cat(fluxes, tmp_fluxes, dims=1) - end - convert_to_ntp = get(kwargs, :convert_to_ntp, false) - return convert_to_ntp ? NamedTuple{Tuple(model.varnames)}(eachrow(fluxes)) : fluxes -end - -#* 多输入构建大型方程求解并计算 -function (model::HydroModel)( - inputs::Vector{<:NamedTuple}, - pas::ComponentVector; - config::Union{<:NamedTuple,Vector{<:NamedTuple}}=NamedTuple(), - kwargs... -) - fluxes = reduce((m1, m2) -> cat(m1, m2, dims=3), [reduce(hcat, [input[nm] for nm in get_input_names(model)]) for input in inputs]) - fluxes = permutedims(fluxes, (2, 3, 1)) - model(fluxes, pas; config=config, kwargs...) -end - -function (model::HydroModel)( - input::AbstractArray{T,3}, - pas::ComponentVector; - config::Union{<:NamedTuple,Vector{<:NamedTuple}}=NamedTuple(), - kwargs... -) where {T<:Number} - comp_configs = config isa NamedTuple ? fill(config, length(model.components)) : config - @assert length(comp_configs) == length(model.components) "component configs length must be equal to components length" - @assert size(input, 1) == length(get_input_names(model)) "input matrix must have the same number of rows as the input names" - - fluxes = input - for (comp_, idx_, config_) in zip(model.components, model.varindices, comp_configs) - tmp_fluxes = comp_(fluxes[idx_, :, :], pas; config=config_, convert_to_ntp=false) - fluxes = cat(fluxes, tmp_fluxes, dims=1) - end - convert_to_ntp = get(kwargs, :convert_to_ntp, false) - return convert_to_ntp ? [NamedTuple{Tuple(model.varnames)}(eachslice(fluxes[:, i, :], dims=1)) for i in axes(fluxes, 2)] : fluxes -end diff --git a/src/optimizer.jl b/src/optimizer.jl deleted file mode 100644 index be14ab3..0000000 --- a/src/optimizer.jl +++ /dev/null @@ -1,167 +0,0 @@ -@kwdef struct HydroOptimizer{C<:AbstractComponent,S} <: AbstractHydroOptimizer - component::C - solve_alg::S = BBO_adaptive_de_rand_1_bin_radiuslimited() - maxiters::Int = 1000 - warmup::Int = 100 - loss_func::Function = (obs, sim) -> sum((obs .- sim) .^ 2) / length(obs) - callback_func::Function = (loss_recorder) -> get_callback_func(Progress(maxiters, desc="Training..."), loss_recorder) - objective_func::Function = get_hydro_objective(component, loss_func, warmup) -end - -@kwdef struct GradOptimizer{C<:AbstractComponent,S} <: AbstractHydroOptimizer - component::C - solve_alg::S = Adam() - maxiters::Int = 100 - warmup::Int = 100 - adtype::AbstractADType = AutoForwardDiff() - loss_func::Function = (obs, sim) -> sum((obs .- sim) .^ 2) / length(obs) - callback_func::Function = (loss_recorder) -> get_callback_func(Progress(maxiters, desc="Training..."), loss_recorder) - objective_func::Function = get_hydro_objective(component, loss_func, warmup) -end - -@kwdef struct BatchOptimizer{C<:AbstractComponent,S} <: AbstractHydroOptimizer - component::C - solve_alg::S = Adam() - maxiters::Int = 100 - warmup::Int = 100 - adtype::AbstractADType = AutoForwardDiff() - loss_func::Function = (obs, sim) -> sum((obs .- sim) .^ 2) / length(obs) - callback_func::Function = (batch_size, loss_recorder) -> get_batch_callback_func(batch_size, loss_recorder) - objective_func::Function = get_batch_objective(component, loss_func, warmup) -end - -function get_hydro_objective(component, loss_func, warmup) - #* Constructing the objective function for optimization - function objective(x::AbstractVector{T}, p) where {T} - #* Optimization arguments: hydro component, input data, time index, ode solver, - #* tunable parameters axes and default model params - inputs, targets, configs, run_kwargs, tunable_axes, default_model_pas = p - #* Use merge_ca to replace the tunable parameters inner the model parameters - tmp_tunable_pas = ComponentArray(x, tunable_axes) - tmp_pas = update_ca(default_model_pas, tmp_tunable_pas) - loss = mean(map(eachindex(inputs, targets, configs)) do i - inp, tar, cfg = inputs[i], targets[i], configs[i] - tmp_pred = component(inp, tmp_pas; config=cfg, run_kwargs...) - tmp_loss = mean([loss_func(tar[key][warmup:end], tmp_pred[key][warmup:end]) for key in keys(tar)]) - tmp_loss - end) - loss - end - - return objective -end - -function get_batch_objective(component, loss_func, warmup) - - #* Constructing the objective function for optimization - function objective(x::AbstractVector{T}, p, input, target, config) where {T} - #* Optimization arguments: hydro component, input data, time index, ode solver, - #* tunable parameters axes and default model params - run_kwargs, tunable_axes, default_model_pas = p - #* Use merge_ca to replace the tunable parameters inner the model parameters - tmp_tunable_pas = ComponentArray(x, tunable_axes) - tmp_pas = update_ca(default_model_pas, tmp_tunable_pas) - tmp_pred = component(input, tmp_pas; config=config, run_kwargs...) - loss = mean([loss_func(target[key][warmup:end], tmp_pred[key][warmup:end]) for key in keys(target)]) - loss - end - - return objective -end - -function (opt::HydroOptimizer{C,S})( - input::Vector, - target::Vector; - tunable_pas::ComponentVector, - const_pas::ComponentVector, - config::Vector{<:NamedTuple}=fill(NamedTuple(), length(input)), - kwargs... -) where {C,S} - lb = get(kwargs, :lb, zeros(length(tunable_pas))) - ub = get(kwargs, :ub, ones(length(tunable_pas)) .* 100) - run_kwargs = get(kwargs, :run_kwargs, (convert_to_ntp=true,)) - return_loss_df = get(kwargs, :return_loss_df, false) - - loss_recorder = NamedTuple[] - callback_func = opt.callback_func(loss_recorder) - tunable_axes = getaxes(tunable_pas) - default_model_pas = ComponentArray(merge_recursive(NamedTuple(tunable_pas), NamedTuple(const_pas))) - prob_args = (input, target, config, run_kwargs, tunable_axes, default_model_pas) - #* Constructing and solving optimization problems - optf = Optimization.OptimizationFunction(opt.objective_func) - optprob = Optimization.OptimizationProblem(optf, collect(tunable_pas), prob_args, lb=lb, ub=ub) - sol = Optimization.solve(optprob, opt.solve_alg, callback=callback_func, maxiters=opt.maxiters) - opt_pas = update_ca(default_model_pas, ComponentVector(sol.u, tunable_axes)) - if return_loss_df - loss_df = DataFrame(loss_recorder) - return opt_pas, loss_df - else - return opt_pas - end -end - -function (opt::GradOptimizer{C,S})( - input::Vector, - target::Vector; - tunable_pas::ComponentVector, - const_pas::ComponentVector, - config::Vector{<:NamedTuple}=fill(NamedTuple(), length(input)), - kwargs... -) where {C,S} - run_kwargs = get(kwargs, :run_kwargs, (convert_to_ntp=true,)) - return_loss_df = get(kwargs, :return_loss_df, false) - loss_recorder = NamedTuple[] - callback_func = opt.callback_func(loss_recorder) - default_model_pas = ComponentArray(merge_recursive(NamedTuple(tunable_pas), NamedTuple(const_pas))) - tunable_axes = getaxes(tunable_pas) - prob_args = (input, target, config, run_kwargs, tunable_axes, default_model_pas) - #* Constructing and solving optimization problems - optf = Optimization.OptimizationFunction(opt.objective_func, opt.adtype) - optprob = Optimization.OptimizationProblem(optf, collect(tunable_pas), prob_args) - sol = Optimization.solve(optprob, opt.solve_alg, callback=callback_func, maxiters=opt.maxiters) - opt_pas = update_ca(default_model_pas, ComponentVector(sol.u, tunable_axes)) - if return_loss_df - loss_df = DataFrame(loss_recorder) - return opt_pas, loss_df - else - return opt_pas - end -end - -function (opt::BatchOptimizer{C,S})( - input::Vector, - target::Vector; - tunable_pas::ComponentVector, - const_pas::ComponentVector, - config::Vector{<:NamedTuple}=fill(NamedTuple(), length(input)), - kwargs... -) where {C,S} - loss_recorder = NamedTuple[] - callback_func = opt.callback_func(length(input), loss_recorder) - default_model_pas = ComponentArray(merge_recursive(NamedTuple(tunable_pas), NamedTuple(const_pas))) - - run_kwargs = fill(get(kwargs, :run_kwargs, (convert_to_ntp=true,)), length(input)) - run_kwargs[1] = (convert_to_ntp=false, reset_states=true) - return_loss_df = get(kwargs, :return_loss_df, false) - - tunable_axes = getaxes(tunable_pas) - prob_args = (tunable_axes, default_model_pas) - - #* prepare the batch data - train_batch = [(input_i, target_i, cfg_i, run_kw_i) for (input_i, target_i, cfg_i, run_kw_i) in zip(input, target, config, run_kwargs)] - #* Construct default model parameters based on tunbale parameters and constant parameters for subsequent merging - default_model_pas = ComponentArray(merge_recursive(NamedTuple(tunable_pas), NamedTuple(const_pas))) - - #* Constructing and solving optimization problems - optf = Optimization.OptimizationFunction(opt.objective_func, opt.adtype) - optprob = Optimization.OptimizationProblem(optf, collect(tunable_pas), prob_args) - sol = Optimization.solve(optprob, opt.solve_alg, ncycle(train_batch, opt.maxiters), callback=callback_func) - #* Returns the optimized model parameters - opt_pas = update_ca(default_model_pas, ComponentVector(sol.u, tunable_axes)) - if return_loss_df - loss_df = DataFrame(loss_recorder) - return opt_pas, loss_df - else - return opt_pas - end -end diff --git a/src/route.jl b/src/route.jl deleted file mode 100644 index e743321..0000000 --- a/src/route.jl +++ /dev/null @@ -1,381 +0,0 @@ -""" - HydroRoute(; rfunc::AbstractHydroFlux, rstate::Num, projfunc::AbstractHydroFlux, name::Union{Symbol,Nothing}=nothing) - -Represents a routing structure for hydrological modeling. - -# Arguments -- `rfunc::AbstractHydroFlux`: The routing function used for flow calculations. -- `rstate::Num`: The state variable for routing. -- `projfunc::AbstractHydroFlux`: Function for projecting outflow to downstream nodes. -- `name::Union{Symbol,Nothing}=nothing`: Optional name for the routing instance. If not provided, will be automatically generated. - -# Fields -- `rfunc::AbstractHydroFlux`: The routing function used for flow calculations. -- `projfunc::Function`: Function for projecting outflow to downstream nodes. -- `meta::HydroMeta`: Contains metadata about the routing instance, including input, output, state, parameter and neural network names. - -# Description -HydroRoute is a structure that represents a routing system in a hydrological model. -It uses a specified routing function (`rfunc`) to calculate flow between nodes and a -projection function (`projfunc`) to determine how water moves between connected nodes. - -The routing process involves: -1. Calculating outflow from each node using the routing function -2. Projecting outflows to downstream nodes using the projection function -3. Updating node states based on inflow, outflow and locally generated runoff - -The structure supports both traditional parameter-based routing functions and neural network -based routing functions through the AbstractHydroFlux interface. - -The metadata (`meta`) is automatically constructed from the provided functions and contains: -- Input names (excluding the routing state variable) -- Output names -- Parameter names -- State name (from `rstate`) -- Neural network names (if any) - -This structure serves as the base for more specific routing implementations like GridRoute -and VectorRoute. -""" -struct HydroRoute{F<:AbstractHydroFlux,PF<:Function,M<:HydroMeta} <: AbstractHydroRoute - "Routing function" - rfunc::F - "Outflow projection function" - projfunc::PF - "Metadata: contains keys for input, output, param, state, and nn" - meta::M - - function HydroRoute(; - rfunc::F, - rstate::Num, - projfunc::PF, - name::Union{Symbol,Nothing}=nothing, - ) where {F<:AbstractHydroFlux,PF<:Function} - #* Extract all variable names of funcs and dfuncs - input_names, output_names = get_var_names(rfunc) - state_name = Symbolics.tosymbol(rstate) - input_names = setdiff(input_names, [state_name]) - #* Extract all parameters names of funcs and dfuncs - param_names = get_param_names(rfunc) - #* Extract all neuralnetwork names of the funcs - nn_names = get_nn_names(rfunc) - #* Setup the name information of the hydrobucket - route_name = name === nothing ? Symbol(Symbol(reduce((x, y) -> Symbol(x, y), input_names)), :_grid_route) : name - meta = HydroMeta(route_name, input_names, output_names, param_names, [state_name], nn_names) - - return new{F,PF,typeof(meta)}( - rfunc, - projfunc, - meta, - ) - end -end - -""" - GridRoute(; - rfunc::AbstractHydroFlux, - rstate::Num, - flwdir::AbstractMatrix, - positions::AbstractVector, - aggtype::Symbol=:type1, - name::Union{Symbol,Nothing}=nothing - ) - -Create a HydroRoute instance for grid-based river routing. - -# Arguments -- `rfunc::AbstractHydroFlux`: Routing function that calculates outflow from each node -- `rstate::Num`: Symbolic variable representing the routing state -- `flwdir::AbstractMatrix`: Flow direction matrix using D8 encoding (1-128) -- `positions::AbstractVector`: Vector of (row,col) positions for each node in the grid -- `aggtype::Symbol=:matrix`: Aggregation type for flow routing: - - `:matrix`: Uses graph-based adjacency matrix - - `:network`: Uses network-based adjacency matrix -- `name::Union{Symbol,Nothing}=nothing`: Optional name for the routing instance - -# Returns -`HydroRoute`: A configured routing instance for grid-based networks - -# Description -Creates a routing structure for grid-based river networks using either a matrix-based -approach (matrix) or network-based approach (network) for flow accumulation. The function -verifies that node positions match node IDs and constructs appropriate projection -functions based on the chosen aggregation type. -""" -function GridRoute(; - rfunc::AbstractHydroFlux, - rstate::Num, - flwdir::AbstractMatrix, - positions::AbstractVector, - aggtype::Symbol=:matrix, - name::Union{Symbol,Nothing}=nothing -) - if aggtype == :matrix - d8_codes = [1, 2, 4, 8, 16, 32, 64, 128] - d8_nn_pads = [(1, 1, 2, 0), (2, 0, 2, 0), (2, 0, 1, 1), (2, 0, 0, 2), (1, 1, 0, 2), (0, 2, 0, 2), (0, 2, 1, 1), (0, 2, 2, 0),] - - #* input dims: node_num * ts_len - function grid_routing(input::AbstractVector, positions::AbstractVector, flwdir::AbstractMatrix) - #* 转换为input的稀疏矩阵 - input_arr = Array(sparse([pos[1] for pos in positions], [pos[2] for pos in positions], input, size(flwdir)[1], size(flwdir)[2])) - #* 计算权重求和结果 - input_routed = sum(collect([pad_zeros(input_arr .* (flwdir .== code), arg) for (code, arg) in zip(d8_codes, d8_nn_pads)])) - #* 裁剪输入矩阵边框 - clip_arr = input_routed[2:size(input_arr)[1]+1, 2:size(input_arr)[2]+1] - #* 将输入矩阵转换为向量 - collect([clip_arr[pos[1], pos[2]] for pos in positions]) - end - #* build the outflow projection function - projfunc = (outflow) -> grid_routing(outflow, positions, flwdir) - - elseif aggtype == :network - network = build_grid_digraph(flwdir, positions) - #* build the outflow projection function - adjacency = adjacency_matrix(network)' - projfunc = (outflow) -> adjacency * outflow - else - @error "the $aggtype is not support" - end - - return HydroRoute(; rfunc, rstate, projfunc, name) -end - -""" - VectorRoute(; - rfunc::AbstractHydroFlux, - rstate::Num, - network::DiGraph, - name::Union{Symbol,Nothing}=nothing - ) - -Create a HydroRoute instance for vector-based river routing. - -# Arguments -- `rfunc::AbstractHydroFlux`: Routing function that calculates outflow from each node -- `rstate::Num`: Symbolic variable representing the routing state -- `network::DiGraph`: Directed graph representing the river network connectivity -- `name::Union{Symbol,Nothing}=nothing`: Optional name for the routing instance - -# Returns -`HydroRoute`: A configured routing instance for vector-based networks - -# Description -Creates a routing structure for vector-based river networks using a graph-based approach -for flow accumulation. The function verifies that the number of nodes matches the number -of node IDs and constructs a projection function based on the network's adjacency matrix. -The adjacency matrix is used to route flow between connected nodes in the network. -""" -function VectorRoute(; - rfunc::AbstractHydroFlux, - rstate::Num, - network::DiGraph, - name::Union{Symbol,Nothing}=nothing, -) - #* generate adjacency matrix from network - adjacency = adjacency_matrix(network)' - #* build the outflow projection function - projfunc = (outflow) -> adjacency * outflow - return HydroRoute(; rfunc, rstate, projfunc, name) -end - -function _get_parameter_extractors(route::HydroRoute, pas::ComponentVector, ptypes::AbstractVector{Symbol}) - if route.rfunc isa AbstractNeuralFlux - @assert all(nn_name in keys(pas[:nn]) for nn_name in get_nn_names(route)) "Missing required neural networks. Expected all of $(get_nn_names(ele)), but got $(keys(pas[:nn]))." - nn_params_idx = [getaxes(pas[:nn])[1][nm].idx for nm in get_nn_names(route.rfunc)] - param_func = (p) -> Ref([p[:nn][idx] for idx in nn_params_idx]) - else - for ptype in ptypes - @assert all(param_name in keys(pas[:params][ptype]) for param_name in get_param_names(route.rfunc)) "Missing required parameters. Expected all of $(get_param_names(ele)), but got $(keys(pas[:params][ptype])) at param type: $ptype." - end - rflux_params_idx = [getaxes(pas[:params][ptypes[1]])[1][nm].idx for nm in get_param_names(route.rfunc)] - param_func = (p) -> [p[:params][ptype][rflux_params_idx] for ptype in ptypes] - end - return param_func -end - -""" - (route::HydroRoute)(input::Array, pas::ComponentVector; config::NamedTuple=NamedTuple(), kwargs...) - -Run the routing model for given input and parameters. - -# Arguments -- `input`: Input data array with dimensions (variables × nodes × time) -- `pas`: ComponentVector containing parameters, initial states and neural network parameters (if applicable) -- `config`: Configuration options including: - - `ptypes`: Parameter types to use for each node (default: all parameter types) - - `interp`: Interpolation method for input data (default: LinearInterpolation) - - `solver`: AbstractHydroSolver to use for ODE solving (default: ODESolver()) - - `timeidx`: Vector of time indices (default: 1:size(input,3)) - -# Returns -Array with dimensions (states+outputs × nodes × time) containing: -- Routing states for each node over time -- Routed outflow for each node over time - -# Description -This function executes the routing model by: -1. Validating input dimensions and parameter/state configurations -2. Setting up interpolation and solver configurations -3. Building parameter functions for either neural network or regular routing -4. Solving the routing equations using the specified solver -5. Computing outflows based on states and parameters - -The routing can use either neural network based routing functions (AbstractNeuralFlux) or -regular routing functions, with parameters extracted accordingly. -""" -function (route::HydroRoute{F,PF,M})( - input::AbstractArray{T,3}, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) where {F<:AbstractHydroFlux,PF<:Function,M<:HydroMeta,T<:Number} - #* get the parameter types and state types - ptypes = get(config, :ptypes, collect(keys(pas[:params]))) - stypes = get(config, :stypes, collect(keys(pas[:initstates]))) - #* get the interpolation type and solver type - interp = get(config, :interp, LinearInterpolation) - solver = get(config, :solver, ODESolver()) - #* get the time index - timeidx = get(config, :timeidx, collect(1:size(input, 3))) - #* get the solver - solver = get(config, :solver, ODESolver()) - - #* check the length of ptypes - @assert(length(ptypes) == size(input, 2), - "The length of ptypes must match the number of nodes ($(size(input,2))), but got $(length(ptypes)) ptypes") - @assert(all(stype in keys(pas[:initstates]) for stype in stypes), - "Invalid HRU names. All names must be one of $(keys(pas[:initstates])), but got $(stypes)") - - #* Extract the idx range of each variable in params, this extraction method is significantly more efficient than extracting by name - param_func = _get_parameter_extractors(route, pas, ptypes) - #* Interpolate the input data. Since ordinary differential calculation is required, the data input must be continuous, - #* so an interpolation function can be constructed to apply to each time point. - itp_funcs = interp.(eachslice(input[1, :, :], dims=1), Ref(timeidx), extrapolate=true) - #* prepare the initial states matrix (dims: state_num * node_num) - init_states_mat = reduce(hcat, [collect(pas[:initstates][stype][get_state_names(route)]) for stype in stypes])' - - function du_func(u, p, t) - q_gen = [itp_func(t) for itp_func in itp_funcs] - q_out_vec = route.rfunc.func.(eachslice(hcat(q_gen, u), dims=1), param_func(p), Ref(t)) - q_out = reduce(vcat, q_out_vec) - q_in = route.projfunc(q_out) - q_in .+ q_gen .- q_out - end - - #* solve the problem - sol_arr = solver(du_func, pas, init_states_mat, timeidx, convert_to_array=true) - sol_arr_permuted = permutedims(sol_arr, (2, 1, 3)) - cont_arr = cat(input, sol_arr_permuted, dims=1) - output_vec = [route.rfunc.func.(eachslice(cont_arr[:, :, i], dims=2), param_func(pas), timeidx[i]) for i in 1:size(input)[3]] - out_arr = reduce(hcat, reduce.(vcat, output_vec)) - #* return route_states and q_out - return cat(sol_arr_permuted, reshape(out_arr, 1, size(out_arr)...), dims=1) -end - -function (route::HydroRoute)(input::Vector{<:NamedTuple}, pas::ComponentVector; config::NamedTuple=NamedTuple(), kwargs...) - for i in eachindex(input) - @assert all(input_name in keys(input[i]) for input_name in get_input_names(route)) "Missing required inputs. Expected all of $(get_input_names(route)), but got $(keys(input[i])) at $i input." - end - input_mats = [reduce(hcat, collect(input[i][k] for k in get_input_names(route))) for i in eachindex(input)] - input_arr = reduce((m1, m2) -> cat(m1, m2, dims=3), input_mats) - route(input_arr, pas; config=config, kwargs...) -end - - -""" - RapidRoute<: AbstractRoute - -A structure representing a vector-based routing scheme for hydrological modeling. - -# Fields -- `rfunc::AbstractVector{<:AbstractRouteFlux}`: Vector of routing flux functions for each node. -- `network::DiGraph`: A directed graph representing the routing network topology. -- `infos::NamedTuple`: Contains information about the VectorRoute instance, including input, output, state, and parameter names. - -# Constructor - RapidRoute( - name::Symbol; - rfunc::AbstractRouteFlux, - network::DiGraph - ) - -Constructs a `RapidRoute` object with the given name, routing flux function, and network structure. - -# Arguments -- `name::Symbol`: A symbol representing the name of the routing scheme. -- `rfunc::AbstractRouteFlux`: The routing flux function to be applied at each node. -- `network::DiGraph`: A directed graph representing the routing network topology. - -The constructor extracts variable names, parameter names, and neural network names from the provided -routing flux function to set up the internal information structure of the `RapidRoute` object. - -Note: from Rapid -""" -struct RapidRoute <: AbstractRapidRoute - "Routing adjacency matrix" - adjacency::AbstractMatrix - "Metadata: contains keys for input, output, param, state, and nn" - meta::HydroMeta - - function RapidRoute( - fluxes::Pair{Vector{Num},Vector{Num}}; - network::DiGraph, - name::Union{Symbol,Nothing}=nothing, - ) - #* Extract all variable names of funcs and dfuncs - inputs, outputs = fluxes[1], fluxes[2] - @assert length(inputs) == length(outputs) == 1 "The length of inputs and outputs must be the 1, but got inputs: $(length(inputs)) and outputs: $(length(outputs))" - input_names = Symbolics.tosymbol.(inputs) - output_names = Symbolics.tosymbol.(outputs) - #* Extract all parameters names of funcs and dfuncs - param_names = [:rapid_k, :rapid_x] - #* Setup the name information of the hydrobucket - route_name = name === nothing ? Symbol(Symbol(reduce((x, y) -> Symbol(x, y), input_names)), :_vector_route) : name - meta = HydroMeta(route_name, input_names, output_names, param_names, Symbol[], Symbol[]) - #* generate adjacency matrix from network - adjacency = adjacency_matrix(network)' - return new( - adjacency, - meta, - ) - end -end - -function (route::RapidRoute)( - input::Array, - pas::ComponentVector; - config::NamedTuple=NamedTuple(), - kwargs... -) - ptypes = get(config, :ptypes, collect(keys(pas[:params]))) - interp = get(config, :interp, LinearInterpolation) - timeidx = get(config, :timeidx, collect(1:size(input, 3))) - delta_t = get(config, :delta_t, 1.0) - solver = get(config, :solver, DiscreteSolver()) - - @assert all(ptype in keys(pas[:params]) for ptype in ptypes) "Missing required parameters. Expected all of $(keys(pas[:params])), but got $(ptypes)." - - #* var num * node num * ts len - itp_funcs = interp.(eachslice(input[1, :, :], dims=1), Ref(timeidx), extrapolate=true) - - #* prepare the parameters for the routing function - k_ps = [pas[:params][ptype][:k] for ptype in ptypes] - x_ps = [pas[:params][ptype][:x] for ptype in ptypes] - c0 = @. ((delta_t / k_ps) - (2 * x_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - c1 = @. ((delta_t / k_ps) + (2 * x_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - c2 = @. ((2 * (1 - x_ps)) - (delta_t / k_ps)) / ((2 * (1 - x_ps)) + (delta_t / k_ps)) - A = (p) -> Matrix(I, size(route.adjacency)...) .- diagm(p.c0) * route.adjacency - - function du_func(u, p, t) - q_out_t1 = u - q_gen = [itp_func(t) for itp_func in itp_funcs] - #* Ax = b, x is the q_out(t+1) - rflux_b = p.c0 .* q_gen .+ p.c1 .* (route.adjacency * q_out_t1 .+ q_gen) .+ p.c2 .* q_out_t1 - #* solve the linear equation (simple solve by matrix inversion) - A(p) \ (rflux_b .- A(p) * u) - end - - #* solve the ode - sol_arr = solver(du_func, ComponentVector(c0=c0, c1=c1, c2=c2), zeros(size(input)[2]), timeidx, convert_to_array=true) - return reshape(sol_arr, 1, size(sol_arr)...) -end \ No newline at end of file diff --git a/src/solver.jl b/src/solver.jl deleted file mode 100644 index 58731bb..0000000 --- a/src/solver.jl +++ /dev/null @@ -1,121 +0,0 @@ -""" -A custom ODEProblem solver -""" -@kwdef struct ODESolver <: AbstractHydroSolver - alg = Tsit5() - sensealg = InterpolatingAdjoint() - reltol = 1e-3 - abstol = 1e-3 - saveat = 1.0 -end - -function (solver::ODESolver)( - du_func::Function, - pas::ComponentVector, - initstates::AbstractArray, - timeidx::AbstractVector; - convert_to_array::Bool=true -) - ode_func! = (du, u, p, t) -> (du[:] = du_func(u, p, t)) - - #* build problem - prob = ODEProblem(ode_func!, initstates, (timeidx[1], timeidx[end]), pas) - #* solve problem - sol = solve( - prob, solver.alg, saveat=timeidx, - reltol=solver.reltol, abstol=solver.abstol, - sensealg=solver.sensealg - ) - if convert_to_array - if SciMLBase.successful_retcode(sol) - sol_arr = Array(sol) - else - @warn "ODE solver failed, please check the parameters and initial states, or the solver settings" - sol_arr = zeros(size(initstates)..., length(timeidx)) - end - return sol_arr - else - return sol - end -end - -""" -A custom ODEProblem solver -""" -@kwdef struct DiscreteSolver <: AbstractHydroSolver - alg = FunctionMap{true}() - sensealg = InterpolatingAdjoint() -end - -function (solver::DiscreteSolver)( - du_func::Function, - params::ComponentVector, - initstates::AbstractArray, - timeidx::AbstractVector; - convert_to_array::Bool=true -) - ode_func! = (du, u, p, t) -> (du[:] = du_func(u, p, t)) - #* build problem - prob = DiscreteProblem(ode_func!, initstates, (timeidx[1], timeidx[end]), params) - #* solve problem - sol = solve(prob, solver.alg, saveat=timeidx, sensealg=solver.sensealg) - if convert_to_array - if SciMLBase.successful_retcode(sol) - sol_arr = Array(sol) - else - @warn "ODE solver failed, please check the parameters and initial states, or the solver settings" - sol_arr = zeros(size(initstates)..., length(timeidx)) - end - return sol_arr - else - return sol - end -end - -""" - ManualSolver{mutable} <: AbstractHydroSolver - -A custom manual solver for solving ODE problems. - -The `mutable` type parameter is used to indicate whether the solver uses mutable arrays (true) or immutable arrays (false). - -The manual solver is a simple and lightweight solver that uses a loop to iterate over the time steps and update the state variables. It is suitable for small to medium-sized problems. - -Note that setting `mutable=true` can result in a 30% performance improvement compared to `mutable=false`, since it avoids the overhead of creating new arrays at each time step. - -However, it also means that the solver will modify the input arrays in-place, which may not be desirable in some cases. -""" -struct ManualSolver{mutable} <: AbstractHydroSolver end - -function (solver::ManualSolver{true})( - du_func::Function, - pas::ComponentVector, - initstates::AbstractArray, - timeidx::AbstractVector -) - T1 = promote_type(eltype(pas), eltype(initstates)) - states_results = zeros(T1, size(initstates)..., length(timeidx)) - tmp_initstates = copy(initstates) - for (i, t) in enumerate(timeidx) - tmp_du = du_func(tmp_initstates, pas, t) - tmp_initstates = tmp_initstates .+ tmp_du - states_results[:, i] = tmp_initstates - end - states_results -end - -function (solver::ManualSolver{false})( - du_func::Function, - pas::ComponentVector, - initstates::AbstractArray, - timeidx::AbstractVector -) - states_results = [] - tmp_initstates = copy(initstates) - for t in timeidx - tmp_du = du_func(tmp_initstates, pas, t) - tmp_initstates = tmp_initstates .+ tmp_du - states_results = vcat(states_results, tmp_initstates) - end - reduce((m1, m2) -> cat(m1, m2, dims=length(size(initstates))+1), states_results) -end diff --git a/src/uh.jl b/src/uh.jl deleted file mode 100644 index d773b2b..0000000 --- a/src/uh.jl +++ /dev/null @@ -1,215 +0,0 @@ -""" - UHFunction{uhtype} <: Function - -Represents a unit hydrograph function for routing water through a hydrological system. - -# Fields -- `uhtype::Symbol`: A symbol indicating the type of unit hydrograph function. Currently, only `:UH_1_HALF` and `:UH_2_FULL` are supported. - -# Methods -- `(uh::UHFunction{uhtype})(t, lag)`: Computes the unit hydrograph value at time `t` given the lag time `lag`. -- `get_uh_tmax(uh::UHFunction{uhtype}, lag)`: Returns the maximum time required for computing the unit hydrograph with the given lag time `lag`. - -""" -struct UHFunction{uhtype} - function UHFunction(uhtype::Symbol) - return new{uhtype}() - end -end - -function (uh::UHFunction{:UH_1_HALF})(t, lag) - if t - lag > 0 - typeof(lag)(1) - else - (t / lag)^2.5 - end -end - -get_uh_tmax(::UHFunction{:UH_1_HALF}, lag) = ceil(lag) - -function (uh::UHFunction{:UH_2_FULL})(t, lag) - if t - lag * 2 > 0 - typeof(lag)(1) - elseif t - lag > 0 - (1 - 0.5 * abs(2 - t / lag)^2.5) - else - (0.5 * abs(t / lag)^2.5) - end -end - -get_uh_tmax(::UHFunction{:UH_2_FULL}, lag) = 2 * ceil(lag) - - -""" - UnitHydrograph{solvetype} <: AbstractRouteFlux - -Represents a unit hydrograph model for routing water through a hydrological system. - -# Fields -- `inputs::Vector{Num}`: A vector of input variables (Num). -- `outputs::Vector{Num}`: A vector of output variables (Num). -- `params::Vector{Num}`: A vector of parameter variables (Num). -- `uhfunc::Function`: The unit hydrograph function. -- `meta::HydroMeta`: A named tuple containing information about inputs, outputs, parameters, and states. - -# Constructor - UnitHydrograph(input::Num, param::Num, uhfunc::Function; solvetype::Symbol=:unithydro1) - -# Arguments -- `input::Num`: The input variable. -- `param::Num`: The parameter variable. -- `uhfunc::Function`: The unit hydrograph function. -- `solvetype::Symbol`: The solver type (default is `:unithydro1`). - -# Description -UnitHydrograph represents a unit hydrograph flux model for routing water through a hydrological system. -It uses a unit hydrograph function to transform input flows into routed output flows. - -The structure supports different solving methods, specified by the `solvetype` parameter. -Currently, it implements two solver types: -- `:unithydro1`: Uses a discrete problem approach to calculate the routed flow. -- `:unithydro2`: Uses a sparse matrix approach for more efficient computation, especially for longer time series. -The choice of solver type can affect both the performance and memory usage of the model. - -This flux model is particularly useful in hydrological modeling for representing the -temporal distribution of runoff as it moves through a watershed. It can account for the -lag and attenuation of flow as water travels through the system. - -The `uhfunc` field holds the unit hydrograph function, which typically takes a parameter -(like time) and returns weights that describe how an input is distributed over time in the output. - -When called, the UnitHydrograph object applies the unit hydrograph to the input flow series, -effectively convolving the input with the unit hydrograph to produce the routed output flow. - -This structure is designed to be flexible and can be integrated into larger hydrological models -to represent various routing processes in different parts of a water system. - -""" -struct UnitHydrograph{T<:Num,UF<:UHFunction,M<:HydroMeta,ST} <: AbstractHydrograph - "A vector of input variables (Num)" - inputs::Vector{T} - "A vector of output variables (Num)" - outputs::Vector{T} - "A vector of parameter variables (Num)" - params::Vector{T} - "The unit hydrograph function" - uhfunc::UF - "A named tuple containing information about inputs, outputs, parameters, and states" - meta::M - - function UnitHydrograph( - input::T, - output::T, - param::T; - uhfunc::UF, - solvetype::Symbol=:DISCRETE, - ) where {T<:Num,UF<:UHFunction} - output_name = Symbolics.tosymbol(output, escape=false) - @assert solvetype in [:DISCRETE, :SPARSE, :INTEGRAL] "solvetype must be one of [:DISCRETE, :SPARSE, :INTEGRAL]" - #* Setup the name information of the hydroroutement - meta = HydroMeta(inputs=[input], outputs=[output], params=[param], name=Symbol(output_name, :_uh)) - - return new{T,UF,typeof(meta),solvetype}([input], [output], [param], uhfunc, meta) - end -end - -""" - (flux::UnitHydrograph)(input::Union{Vector,Matrix,Array}, pas::ComponentVector; ptypes::AbstractVector{Symbol}=Symbol[], kwargs...) - -Apply the unit hydrograph flux model to input data of various dimensions. - -# Arguments -- `input`: Input data, which can be: - - `Vector`: A vector of input values for a single time step (not supported, will throw an error). - - `Matrix`: A matrix of input values, where each column represents a different time step. - - `Array`: A array of input values, with dimensions (var_names, node_names, ts_len). -- `pas::ComponentVector`: A component vector containing parameter values. -- `ptypes::AbstractVector{Symbol}`: A vector of symbols representing parameter categories (only used for `Array` input). -- `kwargs...`: Additional keyword arguments (unused in this function), provided for compatibility with the component callable function API. - -# Returns -- For matrix input: A matrix where each column is the result of applying the unit hydrograph to the corresponding input column. -- For array input: A array of routed outputs, with dimensions (output_var_names, node_names, ts_len). - -# Notes -- The behavior differs based on the `solvetype` specified during the `UnitHydrograph` construction: - - `:unithydro1` uses a discrete problem solver approach. - - `:unithydro2` uses a sparse matrix convolution approach. -- Vector input is not supported and will throw an error. -""" - -(::UnitHydrograph)(::AbstractVector, ::ComponentVector; kwargs...) = @error "UnitHydrograph is not support for single timepoint" - -function (flux::UnitHydrograph{<:Any,<:Any,<:Any,:DISCRETE})(input::AbstractArray{T,2}, pas::ComponentVector; kwargs...) where {T} - solver = get(kwargs, :solver, DiscreteSolver()) - timeidx = get(kwargs, :timeidx, collect(1:size(input, 2))) - input_vec = input[1, :] - #* convert the lagflux to a discrete problem - lag_du_func(u,p,t) = input_vec[Int(t)] .* p[:weight] .+ [diff(u); -u[end]] - #* prepare the initial states - lag = pas[:params][get_param_names(flux)[1]] - uh_weight = map(t -> flux.uhfunc(t, lag), 1:get_uh_tmax(flux.uhfunc, lag))[1:end-1] - if length(uh_weight) == 0 - @warn "The unit hydrograph weight is empty, please check the unit hydrograph function" - return input - else - initstates = input_vec[1] .* uh_weight ./ sum(uh_weight) - #* solve the problem - sol = solver(lag_du_func, ComponentVector(weight=uh_weight ./ sum(uh_weight)), initstates, timeidx) - reshape(sol[1, :], 1, length(input_vec)) - end -end - -function (flux::UnitHydrograph{<:Any,<:Any,<:Any,:SPARSE})(input::AbstractArray{T,2}, pas::ComponentVector; kwargs...) where {T} - input_vec = input[1, :] - lag = pas[:params][get_param_names(flux)[1]] - uh_weight = map(t -> flux.uhfunc(t, lag), 1:get_uh_tmax(flux.uhfunc, lag))[1:end-1] - - if length(uh_weight) == 0 - @warn "The unit hydrograph weight is empty, please check the unit hydrograph function" - return input - else - #* the weight of the unit hydrograph is normalized by the sum of the weights - uh_result = [-(i - 1) => uh_wi .* input_vec ./ sum(uh_weight) for (i, uh_wi) in enumerate(uh_weight)] - #* construct the sparse matrix - uh_sparse_matrix = spdiagm(uh_result...) - #* sum the matrix - sum_route = sum(uh_sparse_matrix, dims=2)[1:end-length(uh_weight)+1] - reshape(sum_route, 1, length(input_vec)) - end -end - -# todo: 卷积计算的结果与前两个计算结果不太一致 -function (flux::UnitHydrograph{<:Any,<:Any,<:Any,:INTEGRAL})(input::AbstractArray{T,2}, pas::ComponentVector; kwargs...) where {T} - input_vec = input[1, :] - itp_method = get(kwargs, :interp, LinearInterpolation) - itp = itp_method(input_vec, collect(1:length(input_vec)), extrapolate=true) - #* construct the unit hydrograph function based on the interpolation method and parameter - lag = pas[:params][get_param_names(flux)[1]] - tmax = get_uh_tmax(flux.uhfunc, lag) - uh_sum = solve(IntegralProblem(flux.uhfunc, (0, tmax), lag), QuadGKJL()).u - uh_itg_func = (x, p) -> flux.uhfunc(x, lag) * itp(p - x) / uh_sum - #* solve the integral problem - prob = IntegralProblem(uh_itg_func, (0, tmax), 1.0) - routed_result = map(1:length(input_vec)) do t - prob = remake(prob, p=t) - sol = solve(prob, QuadGKJL()) - sol.u - end - reshape(routed_result, 1, length(input_vec)) -end - -function (uh::UnitHydrograph)(input::AbstractArray{T,3}, pas::ComponentVector; kwargs...) where {T} - #* array dims: (variable dim, num of node, sequence length) - #* Extract the initial state of the parameters and routement in the pas variable - ptypes = get(kwargs, :ptypes, collect(keys(pas[:params]))) - pytype_params = [pas[:params][ptype] for ptype in ptypes] - - sols = map(eachindex(ptypes)) do (idx) - tmp_pas = ComponentVector(params=pytype_params[idx]) - node_sols = reduce(hcat, uh(input[:, idx, :], tmp_pas)) - node_sols - end - sol_arr = reduce((m1, m2) -> cat(m1, m2, dims=3), sols) - return permutedims(sol_arr, (1, 3, 2)) -end \ No newline at end of file diff --git a/src/utils/attr.jl b/src/utils/attr.jl deleted file mode 100644 index 8a90921..0000000 --- a/src/utils/attr.jl +++ /dev/null @@ -1,48 +0,0 @@ -#* get variables for element -get_input_vars(flux::AbstractFlux) = flux.inputs - -get_output_vars(flux::AbstractFlux) = flux.outputs -get_output_vars(::AbstractStateFlux) = Num[] - -get_state_vars(::AbstractFlux) = Num[] -get_state_vars(flux::AbstractStateFlux) = [flux.state] - -get_param_vars(flux::AbstractFlux) = flux.params -get_param_vars(::AbstractNeuralFlux) = Num[] - -get_nnparam_vars(::AbstractFlux) = Symbolics.Arr[] -get_nnparam_vars(flux::AbstractNeuralFlux) = [flux.nnparam] - -get_all_vars(flux::AbstractFlux) = reduce(union, [get_input_vars(flux), get_output_vars(flux), get_state_vars(flux)]) - -get_exprs(flux::AbstractFlux) = flux.exprs -get_exprs(flux::AbstractStateFlux) = [flux.expr] -get_exprs(flux::AbstractNeuralFlux) = [flux.expr] - -#* used for getting element attr -get_ode_func(::AbstractElement) = nothing -get_ode_func(buc::AbstractBucket) = buc.ode_func - -""" -获取demo输入数据 -""" -get_demo_pas(flux::AbstractFlux) = ComponentVector( - params=NamedTuple{Tuple(flux.infos[:param])}(ones(length(flux.infos[:param]))), - initstates=NamedTuple{Tuple(flux.infos[:state])}(ones(length(flux.infos[:state]))), -) - -get_demo_pas(flux::AbstractNeuralFlux) = ComponentVector( - nn=NamedTuple{Tuple(flux.infos[:nn])}(zeros(flux.nnios[:paramlen])) -) - -get_demo_pas(bucket::AbstractBucket) = ComponentVector( - params=NamedTuple{Tuple(bucket.infos[:param])}(ones(length(flux.infos[:param]))), - initstates=NamedTuple{Tuple(bucket.infos[:state])}(ones(length(bucket.infos[:state]))), - nn=NamedTuple{Tuple(bucket.infos[:nn])}([zeros(flux.nnios[:paramlen]) for flux in bucket.fluxes if flux isa AbstractNeuralFlux]), -) - -get_demo_pas(route::AbstractRoute) = ComponentVector( - params=NamedTuple{Tuple(route.infos[:param])}(ones(length(route.infos[:param]))), - initstates=NamedTuple{Tuple(route.infos[:state])}(ones(length(route.infos[:state]))), - nn=NamedTuple{Tuple(route.infos[:nn])}([zeros(flux.nnios[:paramlen]) for flux in route.fluxes if flux isa AbstractNeuralFlux]), -) \ No newline at end of file diff --git a/src/utils/build.jl b/src/utils/build.jl deleted file mode 100644 index a88a852..0000000 --- a/src/utils/build.jl +++ /dev/null @@ -1,128 +0,0 @@ -function build_flux_func( - inputs::Vector{Num}, - outputs::Vector{Num}, - params::Vector{Num}, - exprs::Vector{Num}, -) - assign_list = Assignment.(outputs, exprs) - outputs_arr = MakeArray(outputs, Vector) - func_args = [ - #* argument 1: Function calculation parameters - DestructuredArgs(inputs), - #* argument 2: Function neuralnetwork parameters - DestructuredArgs(params), - #* argument 3: Function time variable - DestructuredArgs(t) - ] - call_func = @RuntimeGeneratedFunction( - toexpr(Func(func_args, [], Let(assign_list, outputs_arr, false))) - ) - call_func -end - -function build_rflux_func( - input::Num, - states::Vector{Num}, - outputs::Vector{Num}, - params::Vector{Num}, - exprs::Vector{Num}, -) - assign_list = Assignment.(outputs, exprs) - outputs_arr = MakeArray(outputs, Vector) - func_args = [ - DestructuredArgs([input]), - #* argument 1: Function calculation parameters - DestructuredArgs([states]), - #* argument 2: Function neuralnetwork parameters - DestructuredArgs([params]), - #* argument 3: Function time variable - DestructuredArgs(t) - ] - call_func = @RuntimeGeneratedFunction( - toexpr(Func(func_args, [], Let(assign_list, outputs_arr, false))) - ) - call_func -end - -#* 构建bucket的函数 -function build_ele_func( - funcs::Vector{<:AbstractFlux}, - dfuncs::Vector{<:AbstractStateFlux}, - meta::HydroMeta -) - #* prepare variables namedtuple - funcs_vars = reduce(union, get_all_vars.(vcat(funcs, dfuncs))) - funcs_vars_names = Symbolics.tosymbol.(funcs_vars, escape=false) - funcs_vars_ntp = NamedTuple{Tuple(funcs_vars_names)}(funcs_vars) - #* prepare variables for function building - funcs_inputs = collect(funcs_vars_ntp[meta.inputs]) - funcs_states = collect(funcs_vars_ntp[meta.states]) - funcs_params = reduce(union, get_param_vars.(funcs)) - funcs_nns = reduce(union, get_nnparam_vars.(funcs)) - - #* Call the method in SymbolicUtils.jl to build the Flux Function - assign_list = Assignment[] - #* get all output flux - output_list = Num[] - - for func in funcs - if func isa AbstractNeuralFlux - #* For NeuralFlux, use nn_input to match the input variable - push!(assign_list, Assignment(func.nninfos[:inputs], MakeArray(func.inputs, Vector))) - #* For NeuralFlux, use nn_output to match the calculation result of nn expr - push!(assign_list, Assignment(func.nninfos[:outputs], get_exprs(func)[1])) - #* According to the output variable name, match each index of nn_output - for (idx, output) in enumerate(get_output_vars(func)) - push!(assign_list, Assignment(output, func.nninfos[:outputs][idx])) - push!(output_list, output) - end - else - #* According to the output variable name, match each result of the flux exprs - for (output, expr) in zip(get_output_vars(func), get_exprs(func)) - push!(assign_list, Assignment(output, expr)) - push!(output_list, output) - end - end - end - #* convert flux output to array - flux_output_array = MakeArray(output_list, Vector) - - #* Set the input argument of ODE Function - func_args = [ - #* argument 1: Function input and state variables - DestructuredArgs(vcat(funcs_inputs, funcs_states)), - #* argument 2: Function calculation parameters - DestructuredArgs(funcs_params), - #* argument 3: Function neuralnetwork parameters - DestructuredArgs(funcs_nns), - #* argument 4: current time idx for time-varying flux - DestructuredArgs(t), - ] - - #* Construct Flux Function: Func(args, kwargs, body), where body represents the matching formula between each variable and expression - merged_flux_func = @RuntimeGeneratedFunction(toexpr(Func(func_args, [], Let(assign_list, flux_output_array, false)))) - - if length(dfuncs) > 0 - #* convert diff state output to array - diffst_output_array = MakeArray(reduce(vcat, get_exprs.(dfuncs)), Vector) - #* Set the input argument of ODE Function - dfunc_args = [ - #* argument 1: Function input variables - DestructuredArgs(funcs_inputs), - #* argument 2: Function state variables - DestructuredArgs(funcs_states), - #* argument 3: Function calculation parameters - DestructuredArgs(funcs_params), - #* argument 4: Function neuralnetwork parameters - DestructuredArgs(funcs_nns), - #* argument 5: current time idx for time-varying flux - DestructuredArgs(t), - ] - merged_state_func = @RuntimeGeneratedFunction( - toexpr(Func(dfunc_args, [], Let(assign_list, diffst_output_array, false))) - ) - else - merged_state_func = nothing - end - merged_flux_func, merged_state_func -end diff --git a/src/utils/ca.jl b/src/utils/ca.jl deleted file mode 100644 index 4021392..0000000 --- a/src/utils/ca.jl +++ /dev/null @@ -1,51 +0,0 @@ -# merge ComponentArray:https://github.com/jonniedie/ComponentArrays.jl/issues/186 -#* componentarray update -function update_ca(ca::ComponentArray{T1}, ca2::ComponentArray{T2}) where {T1,T2} - ax = getaxes(ca) - ax2 = getaxes(ca2) - vks = valkeys(ax[1]) - vks2 = valkeys(ax2[1]) - _p = Vector{T2}() - for vk in vks - if length(getaxes(ca[vk])) > 0 - _p = vcat(_p, collect(update_ca(ca[vk], vk in vks2 ? getproperty(ca2, vk) : ComponentVector()))) - else - if vk in vks2 - _p = vcat(_p, ca2[vk]) - else - _p = vcat(_p, ca[vk]) - end - end - end - ComponentArray(_p, ax) -end - -#* merge componentarray -function merge_ca(ca1::ComponentVector{T1}, ca2::ComponentVector{T2}) where {T1,T2} - ax = getaxes(ca1) - ax2 = getaxes(ca2) - vks = valkeys(ax[1]) - vks2 = valkeys(ax2[1]) - idxmap = indexmap(ax[1]) - _p = Vector{promote_type(T1,T2)}() - sizehint!(_p, length(ca1)+length(ca2)) - for vk in vks - if vk in vks2 - _p = vcat(_p, ca2[vk]) - else - _p = vcat(_p, ca1[vk]) - end - end - new_idxmap = Vector{Pair{Symbol, Int64}}([]) - sizehint!(new_idxmap, length(ca2)) - max_val = maximum(idxmap) - for vk in vks2 - if !(vk in vks) - _p = vcat(_p, ca2[vk]) - new_idxmap = vcat(new_idxmap, [getval(vk)=>max_val+1]) - max_val += 1 - end - end - merged_ax = Axis(merge(idxmap, new_idxmap)) - ComponentArray(_p, merged_ax) -end \ No newline at end of file diff --git a/src/utils/callback.jl b/src/utils/callback.jl deleted file mode 100644 index 1f2b009..0000000 --- a/src/utils/callback.jl +++ /dev/null @@ -1,67 +0,0 @@ -function get_callback_func(progress, recorder) - default_callback_func!(state, l) = begin - # println() - # println((iter=state.iter, loss=l)) - push!(recorder, (iter=state.iter, loss=l, time=now(), params=state.u)) - next!(progress) - false - end - return default_callback_func! -end - -function get_batch_callback_func(batch_size, recorder) - cumsum_loss = 0.0 - loss_list = [] - progress = Progress(batch_size, desc="Train Epoch 1...") - loss_num = 0 - batch_callback_func!(state, l) = begin - if state.iter % batch_size != 0 - cumsum_loss = cumsum_loss + l - loss_num += 1 - push!(loss_list, l) - next!(progress) - elseif state.iter % batch_size == 0 - cumsum_loss = cumsum_loss + l - loss_num += 1 - push!(loss_list, l) - mean_loss = cumsum_loss / loss_num - next!(progress) - println("") - @info Symbol(:epoch_, state.iter ÷ batch_size, Symbol(", mean_loss: "), mean_loss, ", time: ", now(), loss_list) - push!(recorder, (iter=state.iter, loss=mean_loss, time=now(), params=state.u)) - progress = Progress(batch_size, desc="Train Epoch $(state.iter ÷ batch_size + 1)...") - cumsum_loss = 0.0 - loss_num = 0 - loss_list = [] - end - false - end - - return batch_callback_func! -end - -function get_batch_callback_func_with_earlystop(batch_size, recorder, val_dataset, patience, min_epoch) - cumsum_loss = 0.0 - progress = Progress(batch_size, desc="Train Epoch 1...") - batch_callback_func!(state, l) = begin - if state.iter % batch_size != 0 - cumsum_loss = cumsum_loss + l - next!(progress) - elseif state.iter % batch_size == 0 - cumsum_loss = cumsum_loss + l - mean_loss = cumsum_loss / batch_size - next!(progress) - println("") - @info Symbol(:epoch_, state.iter ÷ batch_size, Symbol(", mean_loss: "), mean_loss, ", time: ", now()) - push!(recorder, (iter=state.iter, loss=mean_loss, time=now())) - progress = Progress(batch_size, desc="Train Epoch $(state.iter ÷ batch_size + 1)...") - cumsum_loss = 0.0 - if state.iter ÷ batch_size >= min_epoch - val_loss = mean([loss_func(val_dataset[key][warmup:end], tmp_pred[key][warmup:end]) for key in keys(val_dataset)]) - end - end - false - end - - return batch_callback_func! -end \ No newline at end of file diff --git a/src/utils/macros.jl b/src/utils/macros.jl deleted file mode 100644 index a4844db..0000000 --- a/src/utils/macros.jl +++ /dev/null @@ -1,93 +0,0 @@ -using ModelingToolkit: isparameter, get_variables -using ModelingToolkit -using ModelingToolkit: Differential as D -using Symbolics -using BenchmarkTools -using Lux -using LuxCore -include("../HydroModels.jl") -HydroFlux = HydroModels.HydroFlux -NeuralFlux = HydroModels.NeuralFlux -StateFlux = HydroModels.StateFlux - -macro hydroflux(eq::Expr) - quote - # Get left and right sides of equation - lhs = $(eq.args[2]) - rhs = $(eq.args[3]) - - # Extract output variables from left side - outputs = lhs isa Vector ? lhs : [lhs] - - # Extract inputs and parameters from right side - rhs_vars = get_variables(rhs) - lhs_vars = Num.(get_variables(lhs)) - inputs = Num.(filter(x -> !isparameter(x), rhs_vars)) - params = Num.(filter(x -> isparameter(x), rhs_vars)) - - # Build the HydroFlux constructor call - - HydroFlux(inputs, outputs, params, exprs=[$(eq.args[3])]) - end -end - -function (chain::LuxCore.AbstractExplicitContainerLayer)(var::Vector{Num}) - #* assert the chain has a name - @assert chain.name isa Symbol "Neural network chain should have a name with Symbol type" - #* Get the neural network name (neural flux param name) and object - chain_name = chain.name - #* Initialize model parameter type for model parameter dimension definition - init_params = ComponentVector(Lux.initialparameters(StableRNG(42), chain)) - params_axes = getaxes(init_params) - - #* Define parameter variables according to initialization parameters: Define type as Vector{parameter length} - chain_params = first(@parameters $chain_name[1:length(init_params)] = Vector(init_params)) - #* Use Symbolics.array_term to define the slow-building parameter variables: - #* when the model is called, it is rebuilt into the ComponentVector type according to - #* the axes of `init_params` and the Vector type of the parameter as the calculation parameter input - lazy_params = Symbolics.array_term((x, axes) -> ComponentVector(x, axes), chain_params, params_axes, size=size(chain_params)) - - #* Constructing neural network input and output variables - #* The input and output of the model can only be of type Symbolics.Arr{Num, 1}, - #* so it cannot be defined based on outputs and output_vars - nn_input_name = Symbol(chain_name, :_input) - nn_input = first(@variables $(nn_input_name)[1:length(inputs)]) - - #* Constructing a calculation expression based on a neural network - flux_expr = LuxCore.stateless_apply(chain, nn_input, lazy_params) - - return (chain=chain, input=var, expr=flux_expr, params=chain_params) -end - -macro nnflux(eq::Expr) - quote - lhs = $(eq.args[2]) - chaininfo = $(eq.args[3]) - inputs = chaininfo.input isa Vector ? chaininfo.input : [chaininfo.input] - outputs = lhs isa Vector ? lhs : [lhs] - NeuralFlux(inputs, outputs, chaininfo.params, chaininfo.expr, chaininfo.chain) - end -end - -macro stateflux(eq::Expr) - quote - # Get left and right sides of equation - lhs = $(eq.args[2]) - rhs = $(eq.args[3]) - - # Extract output variables from left side - outputs = lhs isa Vector ? lhs : [lhs] - - # Extract state variables from right side - @assert length(outputs) == 1 "State flux should have only one state variable" - - # Extract inputs and parameters from right side - rhs_vars = get_variables(rhs) - lhs_vars = Num.(get_variables(lhs)) - inputs = Num.(filter(x -> !isparameter(x), rhs_vars)) - params = Num.(filter(x -> isparameter(x), rhs_vars)) - - # Build the HydroFlux constructor call - StateFlux(inputs, outputs[1], params, exprs=$(eq.args[3])) - end -end \ No newline at end of file diff --git a/src/utils/name.jl b/src/utils/name.jl deleted file mode 100644 index 99dd463..0000000 --- a/src/utils/name.jl +++ /dev/null @@ -1,157 +0,0 @@ -""" - HydroMeta - -A structure that stores metadata about hydrological components, including variable names and component information. - -# Fields -- `inputs::Vector{Symbol}`: Names of input variables -- `outputs::Vector{Symbol}`: Names of output variables -- `states::Vector{Symbol}`: Names of state variables -- `params::Vector{Symbol}`: Names of parameters -- `nns::Vector{Symbol}`: Names of neural network components -- `name::Symbol`: Component name -""" -struct HydroMeta - name::Symbol - inputs::Vector{Symbol} - outputs::Vector{Symbol} - params::Vector{Symbol} - states::Vector{Symbol} - nns::Vector{Symbol} - - function HydroMeta( - name::Symbol, input_names::Vector{Symbol}=Symbol[], output_names::Vector{Symbol}=Symbol[], - param_names::Vector{Symbol}=Symbol[], state_names::Vector{Symbol}=Symbol[], nn_names::Vector{Symbol}=Symbol[], - ) - return new(name, input_names, output_names, param_names, state_names, nn_names) - end - - function HydroMeta(; - name::Symbol, inputs::Vector{Num}=Num[], outputs::Vector{Num}=Num[], - params::Vector{Num}=Num[], states::Vector{Num}=Num[], nn_names::Vector{Symbol}=Symbol[], - ) - input_names = isempty(inputs) ? Symbol[] : tosymbol.(inputs, escape=false) - output_names = isempty(outputs) ? Symbol[] : tosymbol.(outputs, escape=false) - param_names = isempty(params) ? Symbol[] : tosymbol.(params, escape=false) - state_names = isempty(states) ? Symbol[] : tosymbol.(states, escape=false) - return new(name, input_names, output_names, param_names, state_names, nn_names) - end -end - -""" - get_input_names(comp::AbstractComponent) - get_input_names(comps::Vector{<:AbstractComponent}) - -Get the names of input variables from a component or vector of components. -Returns a vector of symbols representing input variable names. -""" -get_input_names(comp::AbstractComponent) = comp.meta.inputs -get_input_names(comps::Vector{<:AbstractComponent}) = reduce(union, get_input_names.(comps)) - -""" - get_output_names(comp::AbstractComponent) - get_output_names(comps::Vector{<:AbstractComponent}) - -Get the names of output variables from a component or vector of components. -Returns a vector of symbols representing output variable names. -""" -get_output_names(comp::AbstractComponent) = comp.meta.outputs -get_output_names(comps::Vector{<:AbstractComponent}) = reduce(union, get_output_names.(comps)) - -""" - get_state_names(comp::AbstractComponent) - get_state_names(comps::Vector{<:AbstractComponent}) - -Get the names of state variables from a component or vector of components. -Returns a vector of symbols representing state variable names. -""" -get_state_names(comp::AbstractComponent) = comp.meta.states -get_state_names(comps::Vector{<:AbstractComponent}) = reduce(union, get_state_names.(comps)) - -""" - get_param_names(comp::AbstractComponent) - get_param_names(comps::Vector{<:AbstractComponent}) - -Get the names of parameters from a component or vector of components. -Returns a vector of symbols representing parameter names. -""" -get_param_names(comp::AbstractComponent) = comp.meta.params -get_param_names(comps::Vector{<:AbstractComponent}) = reduce(union, get_param_names.(comps)) - -""" - get_nn_names(comp::AbstractComponent) - get_nn_names(comps::Vector{<:AbstractComponent}) - -Get the names of neural network components from a component or vector of components. -Returns a vector of symbols representing neural network component names. -""" -get_nn_names(comp::AbstractComponent) = comp.meta.nns -get_nn_names(comps::Vector{<:AbstractComponent}) = reduce(union, get_nn_names.(comps)) - -""" - get_var_names(comps::AbstractComponent) - -Get all variable names (inputs, outputs, and states) from a component. -Returns a tuple of three vectors: (input_names, output_names, state_names). -""" -get_var_names(comps::AbstractComponent) = get_input_names(comps), get_output_names(comps), get_state_names(comps) - -""" - get_var_names(funcs::Vector{<:AbstractHydroFlux}) - -Get all variable names from a vector of flux functions, handling dependencies between inputs and outputs. -Returns a tuple of three vectors: (input_names, output_names, state_names). -""" -function get_var_names(funcs::Vector{<:AbstractHydroFlux}) - input_names = Vector{Symbol}() - output_names = Vector{Symbol}() - for func in funcs - tmp_input_names = setdiff(get_input_names(func), output_names) - tmp_output_names = setdiff(get_output_names(func), input_names) - union!(input_names, tmp_input_names) - union!(output_names, tmp_output_names) - end - input_names, output_names -end - -""" - get_var_names(funcs::Vector{<:AbstractFlux}, dfuncs::Vector{<:AbstractStateFlux}) - -Get all variable names from vectors of flux and state flux functions, handling dependencies between inputs, outputs, and states. -Returns a tuple of three vectors: (input_names, output_names, state_names). -""" -function get_var_names(funcs::Vector{<:AbstractFlux}, dfuncs::Vector{<:AbstractFlux}) - input_names = Vector{Symbol}() - output_names = Vector{Symbol}() - state_names = get_state_names(dfuncs) - for func in vcat(funcs, dfuncs) - tmp_input_names = setdiff(setdiff(get_input_names(func), output_names), state_names) - tmp_output_names = setdiff(get_output_names(func), input_names) - union!(input_names, tmp_input_names) - union!(output_names, tmp_output_names) - end - input_names, output_names, state_names -end - -""" - get_var_names(funcs::Vector{<:AbstractComponent}) - -Get all variable names from a vector of flux functions, handling dependencies between inputs and outputs. -Returns a tuple of three vectors: (input_names, output_names, state_names). -""" -function get_var_names(components::Vector{<:AbstractComponent}) - input_names = Vector{Symbol}() - output_names = Vector{Symbol}() - state_names = Vector{Symbol}() - for comp in components - tmp_input_names = get_input_names(comp) - tmp_output_names = get_output_names(comp) - tmp_state_names = get_state_names(comp) - tmp_input_names = setdiff(tmp_input_names, output_names) - tmp_input_names = setdiff(tmp_input_names, state_names) - union!(input_names, tmp_input_names) - union!(output_names, tmp_output_names) - union!(state_names, tmp_state_names) - end - input_names, output_names, state_names -end diff --git a/src/utils/show.jl b/src/utils/show.jl deleted file mode 100644 index 7e81b18..0000000 --- a/src/utils/show.jl +++ /dev/null @@ -1,178 +0,0 @@ -function Base.show(io::IO, flux::AbstractHydroFlux) - compact = get(io, :compact, false) - - if compact - print(io, "HydroFlux(") - print(io, "inputs: ", isempty(flux.meta.input) ? "nothing" : join(flux.meta.input, ", ")) - print(io, ", outputs: ", isempty(flux.meta.output) ? "nothing" : join(flux.meta.output, ", ")) - print(io, ", params: ", isempty(flux.meta.param) ? "nothing" : join(flux.meta.param, ", ")) - print(io, ")") - else - println(io, "HydroFlux:") - println(io, " Inputs: ", isempty(flux.meta.input) ? "nothing" : join(flux.meta.input, ", ")) - println(io, " Outputs: ", isempty(flux.meta.output) ? "nothing" : join(flux.meta.output, ", ")) - println(io, " Parameters: ", isempty(flux.meta.param) ? "nothing" : join(flux.meta.param, ", ")) - println(io, " Expressions:") - for (output, expr) in zip(flux.meta.output, flux.exprs) - println(io, " $output = $expr") - end - end - -end - -function Base.show(io::IO, flux::AbstractStateFlux) - compact = get(io, :compact, false) - - if compact - print(io, "StateFlux(") - print(io, "inputs: ", isempty(flux.meta.input) ? "nothing" : join(flux.meta.input, ", ")) - print(io, ", params: ", isempty(flux.meta.param) ? "nothing" : join(flux.meta.param, ", ")) - print(io, ", states: ", isempty(flux.meta.state) ? "nothing" : join(flux.meta.state, ", ")) - print(io, ")") - else - println(io, "StateFlux:") - println(io, " Inputs: ", isempty(flux.meta.input) ? "nothing" : join(flux.meta.input, ", ")) - println(io, " Parameters: ", isempty(flux.meta.param) ? "nothing" : join(flux.meta.param, ", ")) - println(io, " States: ", isempty(flux.meta.state) ? "nothing" : join(flux.meta.state, ", ")) - println(io, " Expressions:") - println(io, " $(flux.state) = $(flux.expr)") - end -end - -function Base.show(io::IO, flux::AbstractNeuralFlux) - compact = get(io, :compact, false) - - if compact - print(io, "NeuralFlux(") - print(io, "inputs: ", isempty(flux.meta.inputs) ? "nothing" : join(flux.meta.inputs, ", ")) - print(io, ", outputs: ", isempty(flux.meta.outputs) ? "nothing" : join(flux.meta.outputs, ", ")) - print(io, ", nn: ", join(flux.meta.nns, ", ")) - print(io, ")") - else - println(io, "NeuralFlux:") - println(io, " Inputs: ", isempty(flux.meta.inputs) ? "nothing" : join(flux.meta.inputs, ", ")) - println(io, " Outputs: ", isempty(flux.meta.outputs) ? "nothing" : join(flux.meta.outputs, ", ")) - println(io, " Neural Network: ", join(flux.meta.nns, ", ")) - println(io, " Expression:") - println(io, " [$(join(flux.meta.outputs, ", "))] = $(flux.meta.nns[1])([$(join(flux.meta.inputs, ", "))])") - end -end - -function Base.show(io::IO, uh::AbstractHydrograph) - compact = get(io, :compact, false) - if compact - print(io, "UnitHydroFlux(") - print(io, "inputs: ", isempty(uh.meta.inputs) ? "nothing" : join(uh.meta.inputs, ", ")) - print(io, ", outputs: ", isempty(uh.meta.outputs) ? "nothing" : join(uh.meta.outputs, ", ")) - print(io, ", params: ", isempty(uh.meta.params) ? "nothing" : join(uh.meta.params, ", ")) - print(io, ", uhfunc: ", nameof(typeof(uh.uhfunc).parameters[1])) - print(io, ")") - else - println(io, "UnitHydroFlux:") - println(io, " Inputs: ", isempty(uh.meta.inputs) ? "nothing" : join(uh.meta.inputs, ", ")) - println(io, " Outputs: ", isempty(uh.meta.outputs) ? "nothing" : join(uh.meta.outputs, ", ")) - println(io, " Parameters: ", isempty(uh.meta.params) ? "nothing" : join(uh.meta.params, ", ")) - println(io, " UnitFunction: ", nameof(typeof(uh.uhfunc).parameters[1])) - println(io, " SolveType: ", nameof(typeof(uh).parameters[end])) - end -end - -function Base.show(io::IO, ele::AbstractBucket) - compact = get(io, :compact, false) - if compact - print(io, "Bucket(") - print(io, "name: ", ele.meta.name) - print(io, ", inputs: ", isempty(ele.meta.inputs) ? "nothing" : join(ele.meta.inputs, ", ")) - print(io, ", outputs: ", isempty(ele.meta.outputs) ? "nothing" : join(ele.meta.outputs, ", ")) - print(io, ", params: ", isempty(ele.meta.params) ? "nothing" : join(ele.meta.params, ", ")) - print(io, ", states: ", isempty(ele.meta.states) ? "nothing" : join(ele.meta.states, ", ")) - print(io, ", funcs: ", length(ele.funcs), ", dfuncs: ", length(ele.dfuncs)) - print(io, ")") - else - println(io, "Bucket: ", ele.meta.name) - println(io, " Inputs: ", isempty(ele.meta.inputs) ? "nothing" : join(ele.meta.inputs, ", ")) - println(io, " Outputs: ", isempty(ele.meta.outputs) ? "nothing" : join(ele.meta.outputs, ", ")) - println(io, " Parameters: ", isempty(ele.meta.params) ? "nothing" : join(ele.meta.params, ", ")) - println(io, " States: ", isempty(ele.meta.states) ? "nothing" : join(ele.meta.states, ", ")) - println(io, " Flux functions: ", length(ele.funcs), " flux", length(ele.funcs) == 1 ? "" : "es") - println(io, " State derivative functions: ", length(ele.dfuncs), " flux", length(ele.dfuncs) == 1 ? "" : "es") - end -end - -function Base.show(io::IO, route::AbstractHydroRoute) - compact = get(io, :compact, false) - if compact - print(io, "HydroRoute(") - print(io, "name: ", route.meta.name) - print(io, ", inputs: ", isempty(route.meta.inputs) ? "nothing" : join(route.meta.inputs, ", ")) - print(io, ", outputs: ", isempty(route.meta.outputs) ? "nothing" : join(route.meta.outputs, ", ")) - print(io, ", params: ", isempty(route.meta.params) ? "nothing" : join(route.meta.params, ", ")) - print(io, ", states: ", isempty(route.meta.states) ? "nothing" : join(route.meta.states, ", ")) - print(io, ", routefunc: ", typeof(route.rfunc)) - print(io, ")") - else - println(io, "HydroRoute: ", route.meta.name) - println(io, " Inputs: ", isempty(route.meta.inputs) ? "nothing" : join(route.meta.inputs, ", ")) - println(io, " Outputs: ", isempty(route.meta.outputs) ? "nothing" : join(route.meta.outputs, ", ")) - println(io, " Parameters: ", isempty(route.meta.params) ? "nothing" : join(route.meta.params, ", ")) - println(io, " States: ", isempty(route.meta.states) ? "nothing" : join(route.meta.states, ", ")) - println(io, " RouteFunc: ", typeof(route.rfunc)) - end -end - -function Base.show(io::IO, route::AbstractRapidRoute) - compact = get(io, :compact, false) - if compact - print(io, "RapidRoute(") - print(io, "name: ", route.meta.name) - print(io, ", inputs: ", isempty(route.meta.inputs) ? "nothing" : join(route.meta.inputs, ", ")) - print(io, ", outputs: ", isempty(route.meta.outputs) ? "nothing" : join(route.meta.outputs, ", ")) - print(io, ", params: ", isempty(route.meta.params) ? "nothing" : join(route.meta.params, ", ")) - print(io, ")") - else - println(io, "RapidRoute: ", route.meta.name) - println(io, " Inputs: ", isempty(route.meta.inputs) ? "nothing" : join(route.meta.inputs, ", ")) - println(io, " Outputs: ", isempty(route.meta.outputs) ? "nothing" : join(route.meta.outputs, ", ")) - println(io, " Parameters: ", isempty(route.meta.params) ? "nothing" : join(route.meta.params, ", ")) - end -end - -function Base.show(io::IO, model::AbstractModel) - fluxes_in_model = filter(x -> x isa AbstractFlux, model.components) - buckets_in_model = filter(x -> x isa AbstractBucket, model.components) - routes_in_model = filter(x -> x isa AbstractRoute, model.components) - @assert(length(routes_in_model) <= 1, "Only one route is allowed in a model") - model_type = :LumpedModel - if length(routes_in_model) == 1 - if routes_in_model[1] isa AbstractGridRoute - model_type = :GridModel - elseif routes_in_model[1] isa AbstractVectorRoute - model_type = :VectorModel - elseif routes_in_model[1] isa AbstractSumRoute - model_type = :MultiNodesModel - else - @error "Unknown route type: $(typeof(routes_in_model[1]))" - end - end - - compact = get(io, :compact, false) - if compact - print(io, "HydroModel(") - print(io, "name: ", model.meta.name) - print(io, ", type: ", model_type) - print(io, ", components: ", length(model.components)) - print(io, ")") - else - println(io, "HydroModel: ", model.meta.name) - println(io, " Type: ", model_type) - println(io, " Components: ", join(map(c -> c.meta.name, model.components), ", ")) - println(io, " Inputs: ", isempty(model.meta.inputs) ? "nothing" : join(model.meta.inputs, ", ")) - println(io, " Outputs: ", isempty(model.meta.outputs) ? "nothing" : join(model.meta.outputs, ", ")) - println(io, " Parameters: ", isempty(model.meta.params) ? "nothing" : join(model.meta.params, ", ")) - println(io, " States: ", isempty(model.meta.states) ? "nothing" : join(model.meta.states, ", ")) - println(io, " Components:") - println(io, " Fluxes: ", length(fluxes_in_model), " flux", length(fluxes_in_model) == 1 ? "" : "es") - println(io, " Buckets: ", length(buckets_in_model), " bucket", length(buckets_in_model) == 1 ? "" : "s") - println(io, " Route: ", isempty(routes_in_model) ? "nothing" : typeof(routes_in_model[1])) - end -end \ No newline at end of file diff --git a/src/utils/sort.jl b/src/utils/sort.jl deleted file mode 100644 index c7830d8..0000000 --- a/src/utils/sort.jl +++ /dev/null @@ -1,78 +0,0 @@ - -""" -Construct calculation graphs based on all common hydrological fluxes in hydrological components -""" -function sort_fluxes(fluxes::AbstractVector{<:AbstractComponent}) - input_names = reduce(union, get_input_names.(fluxes)) - output_names = reduce(union, get_output_names.(fluxes)) - input_names = setdiff(input_names, output_names) - output_names = setdiff(output_names, input_names) - - #* 构建flux输出名称与实例的namedtuple - fluxes_ntp = reduce(merge, map(fluxes) do flux - tmp_output_names = get_output_names(flux) - NamedTuple{Tuple(tmp_output_names)}(repeat([flux], length(tmp_output_names))) - end) - - #* 构建flux的有向计算图 - var_names = vcat(input_names, output_names) - var_names_ntp = NamedTuple{Tuple(var_names)}(1:length(var_names)) - digraph = SimpleDiGraph(length(var_names)) - for flux in fluxes - tmp_input_names, tmp_output_names = get_input_names(flux), get_output_names(flux) - for ipnm in tmp_input_names - for opnm in tmp_output_names - println((ipnm => opnm)) - add_edge!(digraph, var_names_ntp[ipnm], var_names_ntp[opnm]) - end - end - end - #* 根据有向图排序得到fluxes的计算顺序 - sorted_fluxes = AbstractComponent[] - for idx in topological_sort(digraph) - tmp_var_nm = var_names[idx] - if (tmp_var_nm in output_names) - tmp_flux = fluxes_ntp[tmp_var_nm] - if !(tmp_flux in sorted_fluxes) - push!(sorted_fluxes, tmp_flux) - end - end - end - sorted_fluxes -end - -""" -Construct a calculation graph based on all hydrological components in the hydrological unit -""" -function sort_components(components::AbstractVector{<:AbstractComponent}) - input_names, output_names, state_names = get_var_names(components) - components_ntp = reduce(merge, map(components) do component - tmp_input_names, tmp_output_names, tmp_state_names = get_var_names(component) - println((tmp_input_names, tmp_output_names, tmp_state_names)) - tmp_output_state_names = vcat(tmp_output_names, tmp_state_names) - NamedTuple{Tuple(tmp_output_state_names)}(repeat([component], length(tmp_output_state_names))) - end) - var_names = reduce(union, [input_names, output_names, state_names]) - var_names_ntp = namedtuple(var_names, collect(1:length(var_names))) - digraph = SimpleDiGraph(length(var_names)) - for component in components - tmp_input_names, tmp_output_names, tmp_state_names = get_var_names(component) - tmp_output_names = vcat(tmp_output_names, tmp_state_names) - for ipnm in tmp_input_names - for opnm in tmp_output_names - add_edge!(digraph, var_names_ntp[ipnm], var_names_ntp[opnm]) - end - end - end - sorted_components = AbstractComponent[] - for idx in topological_sort(digraph) - tmp_var_nm = var_names[idx] - if (tmp_var_nm in output_names) - tmp_component = components_ntp[tmp_var_nm] - if !(tmp_component in sorted_components) - push!(sorted_components, tmp_component) - end - end - end - sorted_components -end diff --git a/src/wrapper.jl b/src/wrapper.jl deleted file mode 100644 index d78f593..0000000 --- a/src/wrapper.jl +++ /dev/null @@ -1,295 +0,0 @@ -""" - RecordComponentState <: AbstractHydroWrapper - -A wrapper component that records the state values of a hydrological component during simulation. - -# Fields -- `component::AbstractComponent`: The wrapped hydrological component -- `states::ComponentVector`: Current state values of the component -- `meta::HydroMeta`: Metadata about the component - -# Constructors - RecordComponentState(component::AbstractComponent, initstates::Union{Nothing,ComponentVector}=nothing) - -# Description -`RecordComponentState` wraps a hydrological component and tracks its state values during simulation. -It updates and stores the latest state values after each simulation step. - -The wrapper requires that the wrapped component has state variables. If no initial states are provided, -it will use default states from the component. - -When called, it: -1. Updates the input parameters with current state values -2. Runs the wrapped component simulation -3. Extracts and stores the final state values -4. Returns the original component output - -The state values can be accessed through the `states` field at any time. -""" -struct RecordComponentState{C<:AbstractComponent,T<:Number,M<:HydroMeta} <: AbstractHydroWrapper - component::C - states::ComponentVector{T} - meta::M - - function RecordComponentState(component::C, initstates::Union{Nothing,ComponentVector}=nothing) where {C<:AbstractComponent} - @assert length(get_state_names(component)) != 0 "Component $component must have state flux" - initstates = isnothing(initstates) ? get_default_states(component) : initstates - new{C,eltype(initstates),typeof(component.meta)}(component, initstates, component.meta) - end -end - -function (wrapper::RecordComponentState{C,T,M})(input::Any, pas::ComponentVector; kwargs...) where {C,T,M} - reset_state = get(kwargs, :reset_state, false) - if reset_state - wrapper.states = pas[:initstates] - end - pas_replace_states = update_ca(pas, ComponentVector(initstates=wrapper.states)) - output = wrapper.component(input, pas_replace_states; kwargs...) - state_names = get_state_names(wrapper.component) - if get(kwargs, :convert_to_ntp, false) - component_nodes = get_node_names(wrapper.component) - if isnothing(component_nodes) - states_ca = ComponentVector(NamedTuple{Tuple(state_names)}([output[nm][end] for nm in state_names])) - else - states_ca = ComponentVector(NamedTuple{Tuple(component_nodes)}(map(component_nodes) do node - NamedTuple{Tuple(state_names)}([output[node][nm][end] for nm in state_names]) - end)) - end - else - if output isa AbstractArray{<:Number,2} - var_names = wrapper.component.varnames - state_indices = map(state_names) do sname - findfirst(vname -> vname == sname, var_names) - end - latest_states = output[state_indices, end] - states_ca = ComponentVector(NamedTuple{Tuple(state_names)}(latest_states)) - elseif output isa AbstractArray{<:Number,3} - latest_states = output[state_indices, :, end] - component_nodes = get_node_names(wrapper.component) - states_ca = ComponentVector(NamedTuple{Tuple(component_nodes)}(map(component_nodes) do node - NamedTuple{Tuple(state_names)}(latest_states[:, node]) - end - )) - end - end - @reset wrapper.states = states_ca - return output -end - -""" - EstimateComponentParams <: AbstractHydroWrapper - -A wrapper component that estimates parameters for a hydrological component during simulation. - -# Fields -- `component::AbstractComponent`: The wrapped hydrological component -- `estfuncs::AbstractVector{<:AbstractHydroFlux}`: Vector of estimation functions -- `ptypes::AbstractVector{Symbol}`: Parameter types to be estimated -- `meta::HydroMeta`: Metadata about the component - -# Constructors - EstimateComponentParams(component::AbstractComponent, estfuncs::AbstractVector{<:AbstractHydroFlux}, ptypes::AbstractVector{Symbol}=Symbol[]) - -# Description -`EstimateComponentParams` wraps a hydrological component and dynamically estimates its parameters -using provided estimation functions during simulation. - -The wrapper requires at least one estimation function. Each estimation function should implement: -- `get_input_names`: Returns required input variable names -- `get_param_names`: Returns parameter names it can estimate -- `get_var_names`: Returns both input and output variable names - -When called, it: -1. Applies each estimation function to calculate parameters -2. Updates the parameter set with estimated values -3. Runs the wrapped component with updated parameters -4. Returns the component output - -The estimation process uses the parameter types specified in `ptypes` to organize -and update the correct parameter groups in the component. -""" -struct EstimateComponentParams{C<:AbstractComponent,E<:AbstractHydroFlux,P<:Union{AbstractVector{Symbol},Nothing},M<:HydroMeta} <: AbstractHydroWrapper - component::C - estfuncs::AbstractVector{E} - pkeys::P - meta::M - - function EstimateComponentParams( - component::C, estfuncs::AbstractVector{E}, pkeys::P=nothing - ) where {C<:AbstractComponent,E<:AbstractHydroFlux,P<:Union{AbstractVector{Symbol},Nothing}} - @assert length(estfuncs) != 0 "At least one estimation function is required" - comp_meta = component.meta - est_input_names, est_output_names = get_var_names(estfuncs) - est_param_names = reduce(union, get_param_names.(estfuncs)) - # todo: due to ComponentVector merging limitations, arbitrary values still need to be provided for estimated parameters - # new_param_names = setdiff(union(comp_meta.params, est_input_names, est_param_names), est_output_names) - new_param_names = union(comp_meta.params, est_input_names, est_param_names) - new_meta = HydroMeta(comp_meta.name, comp_meta.inputs, comp_meta.outputs, new_param_names, comp_meta.states, comp_meta.nns) - return new{C,E,P,typeof(new_meta)}(component, estfuncs, pkeys, new_meta) - end -end - -function (wrapper::EstimateComponentParams{C,E,P,M})(input::Any, pas::ComponentVector; kwargs...) where {C,E,P<:Nothing,M} - est_params_ntp = reduce(merge, map(wrapper.estfuncs) do estfunc - tmp_input = collect(pas[:params][get_input_names(estfunc)]) - tmp_pas = collect(pas[:params][get_param_names(estfunc)]) - NamedTuple{Tuple(get_output_names(estfunc))}(estfunc(tmp_input, pas)) - end) - new_pas = update_ca(pas, ComponentVector(params=est_params_ntp)) - output = wrapper.component(input, new_pas; kwargs...) - return output -end - -function (wrapper::EstimateComponentParams{C,E,P,M})(input::Any, pas::ComponentVector; kwargs...) where {C,E,P<:AbstractVector{Symbol},M} - est_config = (ptypes=wrapper.pkeys,) - est_params_mat = reduce(vcat, map(wrapper.estfuncs) do estfunc - tmp_input_mat = reduce(vcat, map(wrapper.pkeys) do pkey - tmp_input_vec = collect([pas[:params][pkey][nm] for nm in get_input_names(estfunc)]) - reshape(tmp_input_vec, 1, length(tmp_input_vec)) - end) - tmp_input_arr = permutedims(reshape(tmp_input_mat, 1, size(tmp_input_mat)...), (3, 2, 1)) - tmp_output_mat = estfunc(tmp_input_arr, pas, config=est_config)[:, :, 1] - tmp_output_mat - end) - est_param_names = reduce(union, get_output_names.(wrapper.estfuncs)) - est_params_ntp = NamedTuple{Tuple(wrapper.pkeys)}([NamedTuple{Tuple(est_param_names)}(est_params_mat[:, i]) for i in eachindex(wrapper.pkeys)]) - new_pas = update_ca(pas, ComponentVector(params=est_params_ntp)) - output = wrapper.component(input, new_pas; kwargs...) - return output -end - -""" - ComputeComponentOutlet <: AbstractHydroWrapper - -A wrapper component that computes the outlet values of a hydrological component during simulation. - -# Fields -- `component::AbstractComponent`: The wrapped hydrological component -- `outlet::Symbol`: The name of the outlet node to compute values for -- `meta::HydroMeta`: Metadata about the component - -# Constructors - ComputeComponentOutlet(component::AbstractComponent, outlet::Symbol, meta::HydroMeta) - -# Description -`ComputeComponentOutlet` wraps a hydrological component and extracts the values at a specific outlet node -during simulation. - -The wrapper requires that the outlet name exists in the component's node names. When called, it: -1. Runs the wrapped component simulation -2. Extracts the values at the specified outlet node -3. Returns just the outlet values, either as a named tuple or array depending on configuration - -This is useful for focusing analysis on a particular outlet point in a hydrological network. -""" -struct ComputeComponentOutlet{C<:AbstractComponent,M<:HydroMeta} <: AbstractHydroWrapper - component::C - outlet::Symbol - meta::M - - function ComputeComponentOutlet(component::C, outlet::S) where {C<:AbstractComponent,S<:Symbol} - @assert outlet in component.hrunames "Outlet $outlet is not a valid output name for component $component" - new{C,typeof(meta)}(component, outlet, meta) - end -end - -function (wrapper::ComputeComponentOutlet)(input::AbstractVector{<:NamedTuple}, pas::ComponentVector; kwargs...) - convert_to_ntp = get(kwargs, :convert_to_ntp, true) - @assert wrapper.outlet in wrapper.component.varnames "Outlet $wrapper.outlet is not a valid output name for component $wrapper.component" - outlet_idx = findfirst(nm -> nm == wrapper.outlet, wrapper.component.varnames) - output = wrapper.component(input, pas; kwargs...) - return convert_to_ntp ? output[outlet_idx] : output[:, outlet_idx, :] -end - -""" - ComputeComponentOutlet <: AbstractHydroWrapper - -A wrapper component that computes the outlet values of a hydrological component during simulation. - -# Fields -- `component::AbstractComponent`: The wrapped hydrological component -- `outlet::Symbol`: The name of the outlet node to compute values for -- `meta::HydroMeta`: Metadata about the component - -# Constructor - ComputeComponentOutlet(component::AbstractComponent, outlet::Symbol) - -# Description -`ComputeComponentOutlet` wraps a hydrological component and extracts the values at a specific outlet node -during simulation. - -The wrapper requires that the outlet name exists in the component's node names. When called, it: -1. Runs the wrapped component simulation -2. Extracts the values at the specified outlet node -3. Returns just the outlet values, either as a named tuple or array depending on configuration - -This is useful for focusing analysis on a particular outlet point in a hydrological network. -""" -struct WeightSumComponentOutlet{C<:AbstractComponent,M<:HydroMeta,T<:Number} <: AbstractHydroWrapper - component::C - vars::AbstractVector{T} - meta::M - weight_names::Symbol - - function WeightSumComponentOutlet(component::C, vars::AbstractVector{T}; weight_names::Symbol=:weight) where {C<:AbstractComponent,T<:Num} - new_params = vcat(component.meta.param_names, [weight_names]) - var_names = Symbolics.tosymbol.(vars) - new_meta = HydroMeta(component.meta.name, component.meta.input_names, new_params, var_names, component.meta.state_names, component.meta.nn_names) - new{C,typeof(meta),T}(component, vars, new_meta, weight_names) - end -end - -function (wrapper::WeightSumComponentOutlet)(input::Union{AbstractArray{T,3},AbstractVector{<:NamedTuple}}, pas::ComponentVector; kwargs...) where {T} - convert_to_ntp = get(kwargs, :convert_to_ntp, true) - output = wrapper.component(input, pas; kwargs...) - var_names = Symbolics.tosymbol.(wrapper.vars) - weight_vec = [pas[:params][ptype][wrapper.weight_names] for ptype in wrapper.ptypes] - if convert_to_ntp - var_vec = map(var_names) do var_nm - sum(reduce(hcat, [out[var_nm] .* weight_vec[i] for (i, out) in enumerate(weight_vec)])) - end - return NamedTuple{Tuple(var_names)}(var_vec) - else - var_idx = [findfirst(nm -> nm == var_nm, wrapper.component.varnames) for var_nm in var_names] - var_vec = map(var_idx) do idx - sum([output[idx, i, :] .* weight_vec[i] for i in eachindex(weight_vec)]) - end - return reduce(hcat, var_vec) - end -end - -struct NeuralWrapper{N,F,M} <: AbstractNeuralWrapper - model::N - func::F - meta::M - - function NeuralWrapper(fluxes::Pair, model::N; name::Union{Nothing,Symbol}=nothing, rng::R=StableRNG(42)) where {N,R} - #* assert the chain has a name - # @assert model.name isa Symbol "Neural network chain should have a name with Symbol type" - #* extract the parameter and state - ps, st = Lux.setup(rng, model) - ps_axes = getaxes(ComponentVector(ps)) - nn_func(x, p) = LuxCore.apply(model, x, ComponentVector(p, ps_axes), st)[1] - wrapper_name = name === nothing ? Symbol(model.name, :_wrapper) : name - meta = HydroMeta(name=wrapper_name, inputs=fluxes.first, outputs=fluxes.second) # , nn_names=[model.name] - new{N,typeof(nn_func),typeof(meta)}(model, nn_func, meta) - end -end - -function (wrapper::NeuralWrapper)(input::Array{T,2}, pas::ComponentVector; kwargs...) where {T} - nn_ps = pas[:nn][wrapper.meta.name] - output = wrapper.func(input, nn_ps) - convert_to_ntp = get(kwargs, :convert_to_ntp, false) - return convert_to_ntp ? NamedTuple{Tuple(get_output_names(wrapper))}(eachslice(output, dims=1)) : output -end - -function (wrapper::NeuralWrapper)(input::Array{T,3}, pas::ComponentVector; kwargs...) where {T} - nn_ps = pas[:nn][wrapper.meta.name] - output = wrapper.func.(eachslice(input, dims=2), Ref(nn_ps)) - convert_to_ntp = get(kwargs, :convert_to_ntp, false) - if convert_to_ntp - return [NamedTuple{Tuple(get_output_names(wrapper))}(eachslice(output[:, i, :], dims=1)) for i in axes(output, 2)] - else - return output - end -end \ No newline at end of file diff --git a/temp/build_statefunc.jl b/temp/build_statefunc.jl new file mode 100644 index 0000000..3057653 --- /dev/null +++ b/temp/build_statefunc.jl @@ -0,0 +1,94 @@ +function build_state_funcv1( + funcs::Vector{<:AbstractFlux}, + dfunc::AbstractStateFlux, + input_names::Vector{Symbol}, +) + fluxes_vars_ntp = reduce(merge, [merge(func.input_info, func.output_info) for func in vcat(funcs, [dfunc])]) + funcs_params_ntp = reduce(merge, [func.param_info for func in vcat(funcs, [dfunc])]) + #* 构建state计算的函数并将所有中间状态替换 + substitute_vars_dict = Dict() + for var_nm in keys(fluxes_vars_ntp) + for func in funcs + tmp_output_names = get_output_names(func) + for j in eachindex(tmp_output_names) + if var_nm == tmp_output_names[j] + substitute_vars_dict[fluxes_vars_ntp[var_nm]] = func.flux_exprs[j] + end + end + end + end + state_expr_sub = dfunc.state_expr + for _ in 1:length(substitute_vars_dict) + state_expr_sub = substitute(state_expr_sub, substitute_vars_dict) + end + state_func = build_function(state_expr_sub, collect(fluxes_vars_ntp[input_names]), collect(funcs_params_ntp), expression=Val{false}) + state_func +end + + +function build_state_funcv2( + funcs::Vector{<:AbstractFlux}, + dfunc::AbstractStateFlux, + input_names::Vector{Symbol}, +) + fluxes_vars_ntp = reduce(merge, [merge(func.input_info, func.output_info) for func in vcat(funcs, [dfunc])]) + funcs_params_ntp = reduce(merge, [func.param_info for func in vcat(funcs, [dfunc])]) + + assign_list = Assignment[] + for func in funcs + if func isa AbstractNeuralFlux + push!(assign_list, Assignment(func.nn_info[:input], MakeArray(collect(func.input_info), Vector))) + push!(assign_list, Assignment(func.nn_info[:output], func.flux_expr)) + for (idx, output) in enumerate(collect(func.output_info)) + push!(assign_list, Assignment(output, func.nn_info[:output][idx])) + end + else + for (output, expr) in zip(collect(func.output_info), func.flux_exprs) + push!(assign_list, Assignment(output, expr)) + end + end + end + + func_args = [ + DestructuredArgs(collect(fluxes_vars_ntp[input_names])), + DestructuredArgs(collect(funcs_params_ntp)), + DestructuredArgs([func.nn_info[:chain_ptype] for func in funcs if func isa AbstractNeuralFlux]) + ] + + merged_state_func = @RuntimeGeneratedFunction( + toexpr(Func(func_args, [], Let(assign_list, dfunc.state_expr, false))) + ) + merged_state_func +end + + +function build_state_funcv3( + funcs::Vector{<:AbstractFlux}, + dfunc::AbstractStateFlux, + input_names::Vector{Symbol}, +) + total_param_names = keys(reduce(hcat, [func.param_info for func in vcat(funcs, dfunc)])) + state_input_names = keys(dfunc.input_info) + state_param_names = keys(dfunc.param_info) + + func_input_names = [get_input_names(func) for func in funcs] + func_output_names = [get_output_names(func) for func in funcs] + func_param_names = [get_param_names(func) for func in funcs] + + flux_exprs = [ + :(($(output_name...),) = $flux([$(input_name...),], [$(param_name...)])) + for (input_name, output_name, param_name, flux) in zip(func_input_names, func_output_names, func_param_names, funcs) + ] + + state_func = build_function(dfunc.state_expr, collect(dfunc.input_info), collect(dfunc.param_info), expression=Val{true}) + + state_func_expr = :((i, p) -> begin + ($(input_names...),) = i + ($(total_param_names...),) = p + $(flux_exprs...) + return $(state_func)([$(state_input_names...)], [$(state_param_names...)]) + end) + + merged_state_func = @RuntimeGeneratedFunction(state_func_expr) + merged_state_func +end \ No newline at end of file diff --git a/temp/estimator.jl b/temp/estimator.jl new file mode 100644 index 0000000..df3969b --- /dev/null +++ b/temp/estimator.jl @@ -0,0 +1,57 @@ +""" +# 参数估计的输入类型是比较多样的,包括单节点输入,时段输入 +# 这个类的面向的问题在于: +# 1. 初始状态的确定,一般来说在参数优化中可能会考虑初始状态的影响, +# 但是比如土壤初始含水量的估计是与其最大含水量挂钩的,所以一般来说是用初始百分比来确定的,这时候就需要estimator设置一个百分比的参数 +# 2. 然后就是一些参数的确定,比如马斯京根算法k,这些是可以直接根据河道长度推算的,所以可以采用estimator设置输入参数为河长,依次估计k +# 3. 还有一些参数的估计是根据数据确定的,比如说前期降雨序列,通过这个输入到神经网络中可以估计初始土壤含水 + +# 总之这个estimator是为了避免在原模型上大幅度魔改,使其有规范性,且降低修改门槛,灵活性也更强 +# estimator的实质是将计算结果替换参数或状态,而其余类型都是计算结果给出新的变量 +""" +struct HydroEstimator <: AbstractEstimator + "用于预测的方法,一般来说一个Flux就够了" + eflux::AbstractFlux + "待用于预测的params" + params::Vector{Num} + "输出的参数尺度" + initstates::Vector{Num} + "MetaData" + meta::HydroMeta + + function HydroEstimator(eflux::AbstractFlux, output_axes, data_stats::Function) + #* Extract all variable names of funcs and dfuncs + input_names, output_names, state_names = get_var_names(eflux) + #* Extract all parameters names of funcs and dfuncs + param_names = get_param_names(eflux) + #* Extract all neuralnetwork names of the funcs + nn_names = get_nn_names(eflux) + #* Setup the name information of the hydrobucket + meta = HydroMeta(name=name, input=input_names, output=output_names, state=state_names, param=param_names, nn=nn_names) + + return new(eflux, params, meta) + end +end + +function (est::HydroEstimator)(input::Matrix, params::ComponentVector, timeidx::Vector{<:Number}) + #* 处理input数据 + stats_input = est.data_stats(input, dims=2) + #* 计算参数 + predict_params = est.eflux(stats_input, params, timeidx) + @assert length(predict_params) == length(typeof(est.output_axes).parameters) "predict_params length must be equal to output_axes length" + #* 构建ComponentVector + return ComponentVector(predict_params, est.output_axes) +end + +function (est::HydroEstimator)(input::Array, params::ComponentVector, timeidx::Vector{<:Number}) + #* 处理input数据 + stats_input = est.data_stats(input, dims=3) + #* 计算参数 + predict_params_vec = est.eflux.(eachslice(stats_input, dims=2), Ref(params), Ref(timeidx)) + params_ca_vec = [ComponentVector(predict_params, est.output_axes) for predict_params in predict_params_vec] + #! 这一块,根据输入数据的维度,会生成针对多个node的参数值,这里的node的key很有可能是跟ptypes不匹配的, + #! 也就是说不同组的参数可能会分在不同组的ptypes下这个时候应该如何处理? + #* 构建ComponentVector + return params_ca_vec +end + diff --git a/temp/graph.jl b/temp/graph.jl new file mode 100644 index 0000000..d78bc44 --- /dev/null +++ b/temp/graph.jl @@ -0,0 +1,129 @@ + + +""" +32 64 128 +16 1 +8 4 2 +""" +d8_codes = [1, 2, 4, 8, 16, 32, 64, 128] +d8_nn_pads = [(1, 1, 2, 0), (2, 0, 2, 0), (2, 0, 1, 1), (2, 0, 0, 2), (1, 1, 0, 2), (0, 2, 0, 2), (0, 2, 1, 1), (0, 2, 2, 0),] + + +#! nodeinfo: node_id => row_idx, col_idx +function cal_grid_sort(nodeinfo::NamedTuple, flwacc::AbstractMatrix) + #* 先转换为vec类型 + acc_num = reduce(*, size(flwacc)) + flwacc_vec = vec(reshape(flwacc, 1, acc_num)) + sortperm_vec = sortperm(flwacc_vec) + #* 按大小计算顺序 + flwacc_sortidx = similar(sortperm_vec) + for i in 1:length(flwacc_sortidx) + flwacc_sortidx[sortperm_vec[i]] = i + end + #* 生成每个节点的计算顺序 + sortidx_mat = reshape(flwacc_sortidx, size(flwacc)...) + #* 节点与之对应计算次序的namedtuple + node_pairs = map(zip(keys(nodeinfo), collect(nodeinfo))) do (k, v) + k => sortidx_mat[v...] + end + #* 根据计算次序对ntp重新排序 + NamedTuple(sort(node_pairs, by=x -> x[2])) +end + +function cal_grid_relation(nodeinfo::NamedTuple, flwdir::AbstractMatrix; return_graph=false) + #* d8的一些基础信息 + d8_direction = [32, 64, 128, 16, 1, 8, 4, 2] + d8_moveidx = [(-1, -1), (-1, 0), (-1, 1), (0, -1), (0, 1), (1, -1), (1, 0), (1, 1)] + d8_dict = Dict([dir => midx for (dir, midx) in zip(d8_direction, d8_moveidx)]) + + flwdir_size = size(flwdir) + di_graph = SimpleDiGraph(length(nodeinfo)) + node_dir_vec = collect(nodeinfo) + position_dict = Dict([v => i for (i, v) in enumerate(node_dir_vec)]) + #* 根据flwdir构建graphs + for row_idx in 1:size(flwdir)[1] + for col_idx in 1:size(flwdir)[2] + if !(flwdir[row_idx, col_idx] in d8_direction) + continue + end + move_idx_ = d8_dict[flwdir[row_idx, col_idx]] + target_row_idx, target_col_idx = row_idx + move_idx_[1], col_idx + move_idx_[2] + if (target_row_idx < 1) | (target_row_idx > flwdir_size[1]) + continue + end + if (target_col_idx < 1) | (target_col_idx > flwdir_size[2]) + continue + end + add_edge!(di_graph, position_dict[(row_idx, col_idx)], position_dict[(target_row_idx, target_col_idx)]) + end + end + + if return_graph + di_graph + else + #* 获取graph所有点 + all_vertices = Graphs.vertices(di_graph) + #* 获取每个点的matidx和其对应的输入点的mat idx + inflow_relation = NamedTuple(map(all_vertices) do vertice + keys(nodeinfo)[vertice] => [keys(nodeinfo)[up_vert] for up_vert in Graphs.inneighbors(di_graph, vertice)] + end) + inflow_relation + end +end + +function build_grid_graph(nodeinfo::NamedTuple, flwdir::AbstractMatrix) + d8_direction = [32, 64, 128, 16, 1, 8, 4, 2] + d8_moveidx = [(-1, -1), (-1, 0), (-1, 1), (0, -1), (0, 1), (1, -1), (1, 0), (1, 1)] + d8_dict = Dict([dir => midx for (dir, midx) in zip(d8_direction, d8_moveidx)]) + + flwdir_size = size(flwdir) + di_graph = SimpleDiGraph(length(nodeinfo)) + node_dir_vec = collect(nodeinfo) + position_dict = Dict([v => i for (i, v) in enumerate(node_dir_vec)]) + #* 根据flwdir构建graphs + for row_idx in 1:size(flwdir)[1] + for col_idx in 1:size(flwdir)[2] + if !(flwdir[row_idx, col_idx] in d8_direction) + continue + end + move_idx_ = d8_dict[flwdir[row_idx, col_idx]] + target_row_idx, target_col_idx = row_idx + move_idx_[1], col_idx + move_idx_[2] + if (target_row_idx < 1) | (target_row_idx > flwdir_size[1]) + continue + end + if (target_col_idx < 1) | (target_col_idx > flwdir_size[2]) + continue + end + add_edge!(di_graph, position_dict[(row_idx, col_idx)], position_dict[(target_row_idx, target_col_idx)]) + end + end + di_graph +end + +function get_route_len(graph::Graphs.DiGraph, target::Int) + route_len_dict = Dict() + for vt in Graphs.vertices(di_graph) + route_len_dict[vt] = length(Graphs.a_star(graph, vt, target)) + end + route_len_dict +end + + +function grid_routing(flow::AbstractMatrix, flwdir::AbstractMatrix) + flow_routed = sum(collect([pad_zeros(flow .* (flwdir .== code), arg) + for (code, arg) in zip(d8_codes, d8_nn_pads)])) + + flow_routed[2:size(flow)[1]+1, 2:size(flow)[2]+1] +end + +function grid_routingv2(flow::AbstractMatrix, flwdir::AbstractMatrix) + flow_routed = sum(collect([pad(flow .* (flwdir .== code), eltype(flow)(0.0), arg1, arg2) + for (code, arg1, arg2) in zip(d8_codes, d8_pads_args1, d8_pads_args2)])) + + flow_routed[2:size(flow)[1]+1, 2:size(flow)[2]+1] +end + +function matrix_idx(arr_size::Tuple, idx::Tuple) + n = arr_size[2] + (idx[1] - 1) * n + idx[2] +end diff --git a/temp/muskingum_disc.jl b/temp/muskingum_disc.jl new file mode 100644 index 0000000..ae7188c --- /dev/null +++ b/temp/muskingum_disc.jl @@ -0,0 +1,76 @@ +function MuskingumRouteFlux( + input::Num, + output::Union{Num,Nothing}=nothing, +) + @parameters k, x, dt + + if isnothing(output) + input_name = Symbolics.tosymbol(input, escape=false) + output_name = Symbol(input_name, :_routed) + output = first(@variables $output_name) + end + + return VectorRouteFlux( + input, + [k, x, dt], + routetype=:muskingum, + output=output + ) +end + +function (flux::VectorRouteFlux{:muskingum})(input::AbstractMatrix, pas::ComponentVector; kwargs::NamedTuple=NamedTuple()) + input_len = size(input)[2] + input_vec = input[1, :] + params = pas[:params] + + k, x, dt = params.k, params.x, params.dt + c0 = ((dt / k) - (2 * x)) / ((2 * (1 - x)) + (dt / k)) + c1 = ((dt / k) + (2 * x)) / ((2 * (1 - x)) + (dt / k)) + c2 = ((2 * (1 - x)) - (dt / k)) / ((2 * (1 - x)) + (dt / k)) + + function msk_prob(u, p, t) + q_in, q_out = u[1], u[2] + c0, c1, c2 = p + new_q = (c0 * input_vec[Int(t)]) + (c1 * q_in) + (c2 * q_out) + [input_vec[Int(t)], new_q] + end + + prob = DiscreteProblem(msk_prob, [input_vec[1], input_vec[1]], (1, input_len), ComponentVector(c0=c0, c1=c1, c2=c2)) + sol = solve(prob, FunctionMap()) + Array(sol[2,:]) +end + +function get_rflux_initstates(::VectorRouteFlux{:muskingum}; pas::ComponentVector, ptypes::AbstractVector{Symbol}) + [pas[:initstates][ptype][:s_river] for ptype in ptypes] +end + +function get_rflux_func(::VectorRouteFlux{:muskingum}; pas::ComponentVector, ptypes::AbstractVector{Symbol}) + function cal_q_out!(du, q_out, q_in, q_gen, p) + k_ps = [p[ptype][:k] for ptype in ptypes] + x_ps = [p[ptype][:x] for ptype in ptypes] + dt_ps = [p[ptype][:dt] for ptype in ptypes] + + c0_ps = @. ((dt_ps / k_ps) - (2 * x_ps)) / ((2 * (1 - x_ps)) + (dt_ps / k_ps)) + c1_ps = @. ((dt_ps / k_ps) + (2 * x_ps)) / ((2 * (1 - x_ps)) + (dt_ps / k_ps)) + c2_ps = @. ((2 * (1 - x_ps)) - (dt_ps / k_ps)) / ((2 * (1 - x_ps)) + (dt_ps / k_ps)) + + new_q_out = @.((c0_ps * q_in) + (c1_ps * q_in[Int(t)-1]) + (c2_ps * (q_out + q_gen))) + du[:flux_states] = new_q_out + new_q_out + end + + function cal_q_out(q_out, q_in, q_gen, p) + k_ps = [p[ptype][:k] for ptype in ptypes] + x_ps = [p[ptype][:x] for ptype in ptypes] + dt_ps = [p[ptype][:dt] for ptype in ptypes] + + c0_ps = @.(((dt_ps / k_ps) - (2 * x_ps)) / ((2 * (1 - x_ps)) + (dt_ps / k_ps))) + c1_ps = @.(((dt_ps / k_ps) + (2 * x_ps)) / ((2 * (1 - x_ps)) + (dt_ps / k_ps))) + c2_ps = @.(((2 * (1 - x_ps)) - (dt_ps / k_ps)) / ((2 * (1 - x_ps)) + (dt_ps / k_ps))) + + new_q_out = @.((c0_ps * q_in) + (c1_ps * q_in[Int(t)-1]) + (c2_ps * (q_out + q_gen))) + new_q_out + end + + return cal_q_out!, cal_q_out +end diff --git a/temp/optimize.jl b/temp/optimize.jl new file mode 100644 index 0000000..d4d034f --- /dev/null +++ b/temp/optimize.jl @@ -0,0 +1,89 @@ + +function param_batch_optim( + component::AbstractComponent; + tunable_pas::ComponentVector, + const_pas::ComponentVector, + input::Vector, + target::Vector, + config::Vector{<:NamedTuple}=[NamedTuple()], + run_kwargs::NamedTuple=(convert_to_ntp=true,), + opt_kwargs..., +) + #* Get the argument for parameter optimization + loss_func = get(opt_kwargs, :loss_func, (obs, sim) -> sum((obs .- sim) .^ 2) / length(obs)) + adtype = get(opt_kwargs, :adtype, Optimization.AutoZygote()) + maxiters = get(opt_kwargs, :maxiters, 100) + warmup = get(opt_kwargs, :warmup, 100) + solve_alg = get(opt_kwargs, :solve_alg, Adam()) + + #* prepare the batch data + train_batch = [(input_i, target_i, cfg_i) for (input_i, target_i, cfg_i) in zip(input, target, config)] + + #* Construct default model parameters based on tunbale parameters and constant parameters for subsequent merging + default_model_pas = ComponentArray(merge_recursive(NamedTuple(tunable_pas), NamedTuple(const_pas))) + + #* Constructing the objective function for optimization + function objective(x::AbstractVector{T}, p, batch_input, batch_target, batch_cfg) where {T} + #* Optimization arguments: hydro component, input data, time index, ode solver, + #* tunable parameters axes and default model params + #* Use merge_ca to replace the tunable parameters inner the model parameters + _component, __default_model_pas = p + tmp_pas = update_ca(__default_model_pas, x) + tmp_pred = _component(batch_input, tmp_pas; config=batch_cfg, run_kwargs...) + loss = mean([loss_func(batch_target[key][warmup:end], tmp_pred[key][warmup:end]) for key in keys(batch_target)]) + loss + end + + # todo 添加earlystop功能 + # if all([k in keys(opt_kwargs) for k in [:val_input, :val_target, :val_timeidx]]) + # #* validation arguments + # patience = get(opt_kwargs, :patience, 10) + # min_epoch = get(opt_kwargs, :min_epoch, 5) + # val_input = get(opt_kwargs, :val_input, input) + # val_target = get(opt_kwargs, :val_target, target) + # val_timeidx = get(opt_kwargs, :val_timeidx, timeidx) + # val_dataset = [val_input, val_target, val_timeidx] + # loss_recorder = NamedTuple[] + # callback_func = get(opt_kwargs, :callback_func, get_batch_callback_func_with_earlystop(length(input), loss_recorder, val_dataset, patience, min_epoch)) + loss_recorder = NamedTuple[] + callback_func = get(opt_kwargs, :callback_func, get_batch_callback_func(length(input), loss_recorder)) + + #* Constructing and solving optimization problems + optf = Optimization.OptimizationFunction(objective, adtype) + optprob = Optimization.OptimizationProblem(optf, tunable_pas, (component, default_model_pas)) + sol = Optimization.solve(optprob, solve_alg, ncycle(train_batch, maxiters), callback=callback_func) + #* Returns the optimized model parameters + sol.u +end + +function nn_param_optim( + flux::AbstractNeuralFlux; + input::AbstractMatrix, + target::NamedTuple, + init_params::ComponentVector, + kwargs... +) + #* Get the argument for parameter optimization + solve_alg = get(kwargs, :solve_alg, Adam(0.01)) + adtype = get(kwargs, :adtype, Optimization.AutoZygote()) + maxiters = get(kwargs, :maxiters, 100) + loss_func = get(kwargs, :loss_func, (obs, sim) -> sum((obs .- sim) .^ 2) / length(obs)) + callback_func = get(kwargs, :callback_func, default_callback_func) + + #* Integrate nn's input variables + flux_nn_name = get_param_names(flux)[1] + flux_output_name = get_output_names(flux) + + #* Constructing the objective function for optimization + function objective(u, p) + predict = flux(input, [u[flux_nn_name]]) + predict_ntp = NamedTuple{Tuple(flux_output_name)}(eachcol(predict)) + mean([loss_func(predict_ntp[nm], target[nm]) for nm in keys(target)]) + end + + #* Constructing and solving optimization problems + optf = Optimization.OptimizationFunction(objective, adtype) + optprob = Optimization.OptimizationProblem(optf, init_params) + sol = Optimization.solve(optprob, solve_alg, callback=callback_func, maxiters=maxiters) + sol.u +end \ No newline at end of file diff --git a/temp/test_lag_ele.jl b/temp/test_lag_ele.jl new file mode 100644 index 0000000..a886503 --- /dev/null +++ b/temp/test_lag_ele.jl @@ -0,0 +1,23 @@ +include("../src/HydroModels.jl") +using ModelingToolkit: @variables, @parameters +using ComponentArrays + +@variables slowflow fastflow slowflow_lag fastflow_lag +@parameters x1 x2 + +lag_funcs = [ + LumpedHydro.LagFlux(slowflow => slowflow_lag, x1, LumpedHydro.uh_3_half), + LumpedHydro.LagFlux(fastflow => fastflow_lag, x2, LumpedHydro.uh_3_half), +] + +lag_ele = LumpedHydro.LagElement(:lag, lfuncs=lag_funcs); +input_matrix = [1 2 3 2 3 4 1 2;] # 1 2 3 2 3 4 1 2 + +input_arr = reduce((m1, m2) -> cat(m1, m2, dims=3), repeat([[1 2 3 2 3 4 1 2; 1 2 3 2 3 4 1 2]], 5)) +input_arr = permutedims(input_arr, (1, 3, 2)) +# input_arr = input_arr[1:1, :, :] +#* input_num * ts len * node num +cv = ComponentVector(NamedTuple{Tuple([Symbol(:node_, i) for i in 1:5])}(repeat([(x1=2.39, x2=5.39)], 5))) + +output = LumpedHydro.run_multi_fluxes(lag_ele, input=input_arr, params=cv) +# output[1,1,:] \ No newline at end of file diff --git a/temp/test_lag_flux.jl b/temp/test_lag_flux.jl new file mode 100644 index 0000000..c65784f --- /dev/null +++ b/temp/test_lag_flux.jl @@ -0,0 +1,50 @@ +using OrdinaryDiffEq + +ifelse_func(x) = ifelse(x > 0, 1, 0) + +uh_1_half(input, lag) = (ifelse_func(input - lag) + ifelse_func(lag - input) * ifelse_func(input) * (input / lag)^2.5) + +uh_2_full(input, lag) = begin + half_lag = lag ./ 2 + (ifelse_func(input - lag) * 1 + + ifelse_func(lag - input) * ifelse_func(input - half_lag) * (1 - 0.5 * abs(2 - input / half_lag)^2.5) + + ifelse_func(half_lag - input) * ifelse_func(input) * (0.5 * abs(input / half_lag)^2.5)) +end + +function flux_unit_routing(flux::Vector, timeidx::Vector, lag_func::Function, lag_time::T, num_uh::Int) where {T} + ts = 1:num_uh + lag_weights = [lag_func(t, lag_time) for t in ts] + lag_weights = vcat([lag_weights[1]], (circshift(lag_weights, -1).-lag_weights)[1:end-1]) + + function lag_disc_func(u, p, t) + u = circshift(u, -1) + u[end] = 0.0 + tmp_u = flux[Int(t)] .* p[:weights] .+ u + tmp_u + end + + prob = DiscreteProblem(lag_disc_func, lag_weights, (timeidx[1], timeidx[end]), ComponentVector(weights=lag_weights)) + sol = solve(prob, FunctionMap()) + if !SciMLBase.successful_retcode(sol) + println("Error in GR4J routing ") + return flux + end + # sol[1, :] + sol +end + +re = flux_unit_routing([1, 2, 3, 4, 2, 3, 2, 4, 2, 1], collect(1:10), uh_1_half, 3.5, 10) + +f(u, p, t) = 1.01 * u +u0 = 1 / 2 +tspan = (0.0, 1.0) +prob = ODEProblem(f, u0, tspan) + +function ff(u, p, t) + u1, u2 = u[:u1], u[:u2] + ComponentVector(u1=u1 .* 1.02, u1=u2 ./ 1.02) +end + +tspan = (0.0, 1.0) +prob = ODEProblem(f, ComponentVector(u1=[2 3 4;], u2=[2 3;]), tspan) +solve(prob, Tsit5()) \ No newline at end of file diff --git a/temp/test_msk.jl b/temp/test_msk.jl new file mode 100644 index 0000000..f21ba30 --- /dev/null +++ b/temp/test_msk.jl @@ -0,0 +1,95 @@ +using OrdinaryDiffEq +using DataInterpolations +using Plots + +# 输入流量函数 I(t) +I_vec = [2, 3, 4, 3, 5, 6, 7, 8, 9, 10, 5, 3, 2] +I_vec_copy = copy(I_vec) +# timeidx = collect(0:length(I_vec)-1) .* 24 +timeidx = 1:length(I_vec) +# 参数 +k = K = 1.0 # 蓄泄常数 +x = 0.5 # 权重系数 + +function route1(I_vec, timeidx) + itp_func = LinearInterpolation(I_vec, timeidx) + # 定义 ODE 的右侧函数 + function muskingum_ode!(dS, S, p, t) + I = itp_func(t) # 输入流量作为时间的函数 + K, x = p.K, p.x + S_ = S[1] + # 计算出流量 Q + Q = (S_ - K * x * I) / (K * (1 - x)) + # 计算 dS/dt + dS[1] = I - Q + end + + p = (K=K, x=x) + + # 初始条件 + S0 = [K * I_vec[1]] # 初始储水量 + + # 构建 ODE 问题 + prob = ODEProblem(muskingum_ode!, S0, (timeidx[1], timeidx[end]), p) + + # 求解 ODE 问题 + sol = solve(prob, Tsit5(), saveat=timeidx) + sol_vec = Vector(sol) + I_vec_2 = [itp_func(t) for t in sol.t] + Q_vec = @. (sol_vec - K * x * I_vec_2) / (K * (1 - x)) + return Q_vec +end + +function route2(I_vec, dt) + + c0 = ((dt / k) - (2 * x)) / ((2 * (1 - x)) + (dt / k)) + c1 = ((dt / k) + (2 * x)) / ((2 * (1 - x)) + (dt / k)) + c2 = ((2 * (1 - x)) - (dt / k)) / ((2 * (1 - x)) + (dt / k)) + + function msk_prob(u, p, t) + q_in, q_out = u[1], u[2] + c0, c1, c2 = p + new_q = (c0 * I_vec[Int(t)]) + (c1 * q_in) + (c2 * q_out) + [I_vec[Int(t)], new_q] + end + + prob = DiscreteProblem(msk_prob, [I_vec[1], I_vec[1]], (1, length(I_vec)), (c0, c1, c2)) + sol = solve(prob, FunctionMap()) + sol_arr = Array(sol) + return sol_arr[2, :] +end + +I_vec = Float64[2, 3, 4, 3, 5, 6, 7, 8, 9, 10, 5, 3, 2] +Q_vec_list = [I_vec] +for i in 1:10 + @info Q_vec_list[i] + push!(Q_vec_list, route1(Q_vec_list[i], timeidx)) + # 输出结果 + # plot(sol, xlabel="Time", ylabel="Storage S(t)", title="Muskingum Method ODE Solution") +end + +I_vec = Float64[2, 3, 4, 3, 5, 6, 7, 8, 9, 10, 5, 3, 2] +Q_vec_list2 = [I_vec] +for i in 1:10 + @info Q_vec_list2[i] + push!(Q_vec_list2, route2(Q_vec_list2[i], 1)) + # 输出结果 + # plot(sol, xlabel="Time", ylabel="Storage S(t)", title="Muskingum Method ODE Solution") +end + +plot() +for i in 1:length(Q_vec_list) + plot!(Q_vec_list[i], color="red") +end +savefig("Q_vec.png") + + +plot() +for i in 1:length(Q_vec_list2) + plot!(Q_vec_list2[i], color="blue") +end +savefig("Q_vec2.png") + + +plot(Q_vec_list[4], color="red") +plot!(Q_vec_list2[4], color="blue") diff --git a/temp/test_routeflux.jl b/temp/test_routeflux.jl new file mode 100644 index 0000000..3d7b988 --- /dev/null +++ b/temp/test_routeflux.jl @@ -0,0 +1,48 @@ +using DataInterpolations +using OrdinaryDiffEq +using Zygote +using Plots + +input_arr = [3 4 4 5 6 10 23 24 38 40 59 63 49 32 22 12 9 4] +input_itp = LinearInterpolation(input_arr[1, :], collect(1:length(input_arr))) + + + +function discharge2!(du, u, p, t) + s_river, q_in = u[1], u[2] + q_out = (s_river+q_in) / (p[1] + 1) + du[1] = q_in - q_out + du[2] = q_out + input_itp(t) - q_in +end + +prob = ODEProblem(discharge2!, [0.1, 3], (1, length(input_arr)), [0.3]) +sol3 = solve(prob, Tsit5(), saveat=1.0) + +function discharge2(u, p, t) + s_river, q_in = u[1], u[2] + @info [s_river q_in] + q_out = (s_river+q_in) / (p[1] + 1) + [s_river + q_in - q_out, q_out + input_itp(t)] +end + +prob2 = DiscreteProblem(discharge2, [0.1, 3], (1, length(input_arr)), [0.3]) +sol4 = solve(prob2, FunctionMap()) + +input_arr = [3 4 4 5 6 10 23 24 38 40 59 63 49 32 22 12 9 4] +s_river = zeros(length(input_arr)) +q_in = zeros(length(input_arr)) +q_out = zeros(length(input_arr)) +s_river0, q_in0 = 0.1, 3 +p = [0.3] +for i in eachindex(input_arr) + q_out[i] = (s_river0) / (p[1] + 1) + s_river[i] = s_river0 + q_in0 - q_out[i] + q_in[i] = q_out[i] + input_arr[i] + s_river0, q_in0 = s_river[i], q_in[i] + @info [q_out[i] q_in[i] s_river[i]] +end + + +plot(sol3) +plot!(sol4) +savefig("test_routeflux.png") diff --git a/temp/test_something.jl b/temp/test_something.jl new file mode 100644 index 0000000..84bd24e --- /dev/null +++ b/temp/test_something.jl @@ -0,0 +1,16 @@ +using Zygote +using BenchmarkTools + +function single_iteration(state, p) + # Perform your calculation here + # This is where you would use the input mat and create a new mat + mat, history = state + new_mat = mat .* p + return new_mat, vcat(history, [new_mat]) +end + +mat = ones(3, 3) +final_mat, history = reduce((acc, _) -> single_iteration(acc, 2), 1:10, init=(mat, (mat,))) + + + diff --git a/temp/train_lstm_in_opt.jl b/temp/train_lstm_in_opt.jl new file mode 100644 index 0000000..cf3ee86 --- /dev/null +++ b/temp/train_lstm_in_opt.jl @@ -0,0 +1,73 @@ +using Lux +using LuxCore +using Zygote +using StableRNGs +using ComponentArrays +using Optimization +using OptimizationOptimisers + +# function LSTMCompact(in_dims, hidden_dims, out_dims) +# lstm_cell = LSTMCell(in_dims => hidden_dims) +# classifier = Dense(hidden_dims => out_dims, sigmoid) +# return @compact(; lstm_cell, classifier) do x::AbstractArray{T,2} where {T} +# x = reshape(x, size(x)..., 1) +# x_init, x_rest = Iterators.peel(LuxOps.eachslice(x, Val(2))) +# y, carry = lstm_cell(x_init) +# output = [vec(classifier(y))] +# for x in x_rest +# y, carry = lstm_cell((x, carry)) +# output = vcat(output, [vec(classifier(y))]) +# end +# @return hcat(output...) +# end +# end + +function LSTMCompact(in_dims, hidden_dims, out_dims) + lstm_cell = LSTMCell(in_dims => hidden_dims) + classifier = Dense(hidden_dims => out_dims, sigmoid) + return @compact(; lstm_cell, classifier) do x::AbstractArray{T, 2} where {T} + x = reshape(x, size(x)..., 1) + x_init, x_rest = Iterators.peel(LuxOps.eachslice(x, Val(2))) + y, carry = lstm_cell(x_init) + output = [vec(classifier(y))] + for x in x_rest + y, carry = lstm_cell((x, carry)) + output = vcat(output, [vec(classifier(y))]) + end + @return reduce(hcat, output) # <--- This is the different line + end +end + +model = LSTMCompact(3, 10, 1) +ps, st = Lux.setup(StableRNGs.LehmerRNG(1234), model) +smodel = StatefulLuxLayer{true}(model, nothing, st) + +# smodel(rand(3, 10), ComponentVector(ps)) +# LuxCore.apply(smodel, rand(3, 10), ComponentVector(ps)) +ps_axes = getaxes(ComponentVector(ps)) +x = rand(3, 10) +y = rand(1, 10) +function object(u, p) + ps = ComponentVector(u, ps_axes) + sum((smodel(x, ps) .- y) .^ 2) +end + +function objectv2(u, p) + st = p[1] + ps = ComponentVector(u, ps_axes) + sum((model(x, ps, st)[1] .- y) .^ 2) +end + +opt_func = Optimization.OptimizationFunction(objectv2, Optimization.AutoZygote()) +opt_prob = Optimization.OptimizationProblem(opt_func, Vector(ComponentVector(ps)), [st]) +opt_sol = Optimization.solve(opt_prob, OptimizationOptimisers.Adam(0.1), maxiters=100) + + +function MLPCompact(in_dims, hidden_dims, out_dims) + mlp_cell = Dense(in_dims => hidden_dims) + classifier = Dense(hidden_dims => out_dims, sigmoid) + return @compact(; mlp_cell, classifier) do x::AbstractArray{T,2} where {T} + output = classifier(mlp_cell(x)) + @return output + end +end diff --git a/test/run_bucket.jl b/test/run_bucket.jl deleted file mode 100644 index f304f9f..0000000 --- a/test/run_bucket.jl +++ /dev/null @@ -1,131 +0,0 @@ -params = ComponentVector(Df=2.674548848, Tmax=0.175739196, Tmin=-2.092959084) -init_states = ComponentVector(snowpack=0.0) -pas = ComponentVector(params=params, initstates=init_states) - -ts = collect(1:1000) -df = DataFrame(CSV.File("data/exphydro/01013500.csv")); -input_ntp = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]); - -input = Matrix(reduce(hcat, collect(input_ntp[[:temp, :lday, :prcp]]))') -dtype = eltype(input[1]); -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 - -@testset "test hydro element (basic element, Snowpack in Exp-Hydro)" begin - @variables temp lday prcp pet snowfall rainfall melt snowpack - @parameters Tmin Tmax Df - - snow_funcs = [ - HydroModels.HydroFlux([temp, lday] => [pet], - exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroModels.HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], - exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroModels.HydroFlux([snowpack, temp] => [melt], [Tmax, Df], - exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), - ] - snow_dfuncs = [HydroModels.StateFlux([snowfall] => [melt], snowpack)] - snow_ele = HydroModels.HydroBucket(funcs=snow_funcs, dfuncs=snow_dfuncs) - @testset "test hydro element info" begin - @test Set(HydroModels.get_input_names(snow_ele)) == Set((:temp, :lday, :prcp)) - @test Set(HydroModels.get_param_names(snow_ele)) == Set((:Tmin, :Tmax, :Df)) - @test Set(HydroModels.get_output_names(snow_ele)) == Set((:pet, :snowfall, :rainfall, :melt)) - @test Set(HydroModels.get_state_names(snow_ele)) == Set((:snowpack,)) - end - - result = snow_ele(input, pas) - ele_state_and_output_names = vcat(HydroModels.get_state_names(snow_ele), HydroModels.get_output_names(snow_ele)) - result = NamedTuple{Tuple(ele_state_and_output_names)}(eachslice(result, dims=1)) - @testset "test first output for hydro element" begin - snowpack0 = init_states[:snowpack] - pet0 = snow_funcs[1]([input_ntp.temp[1], input_ntp.lday[1]], ComponentVector(params=ComponentVector()))[1] - snowfall0, rainfall0 = snow_funcs[2]([input_ntp.prcp[1], input_ntp.temp[1]], ComponentVector(params=(Tmin=params.Tmin,))) - melt0 = snow_funcs[3]([snowpack0, input_ntp.temp[1]], ComponentVector(params=(Tmax=params.Tmax, Df=params.Df)))[1] - @test snowpack0 == result.snowpack[1] - @test snowfall0 == result.snowfall[1] - @test rainfall0 == result.rainfall[1] - @test melt0 == result.melt[1] - end - - @testset "test ode solved results" begin - prcp_itp = LinearInterpolation(input_ntp.prcp, ts) - temp_itp = LinearInterpolation(input_ntp.temp, ts) - - function snowpack_bucket!(du, u, p, t) - snowpack_ = u[1] - Df, Tmax, Tmin = p.Df, p.Tmax, p.Tmin - prcp_, temp_ = prcp_itp(t), temp_itp(t) - snowfall_ = step_func(Tmin - temp_) * prcp_ - melt_ = step_func(temp_ - Tmax) * step_func(snowpack_) * min(snowpack_, Df * (temp_ - Tmax)) - du[1] = snowfall_ - melt_ - end - prob = ODEProblem(snowpack_bucket!, [init_states.snowpack], (ts[1], ts[end]), params) - sol = solve(prob, Tsit5(), saveat=ts, reltol=1e-3, abstol=1e-3) - num_u = length(prob.u0) - manual_result = [sol[i, :] for i in 1:num_u] - ele_params_idx = [getaxes(pas[:params])[1][nm].idx for nm in HydroModels.get_param_names(snow_ele)] - paramfunc = (p) -> [p[:params][idx] for idx in ele_params_idx] - - param_func, nn_param_func = HydroModels._get_parameter_extractors(snow_ele, pas) - itpfunc_list = map((var) -> LinearInterpolation(var, ts, extrapolate=true), eachrow(input)) - ode_input_func = (t) -> [itpfunc(t) for itpfunc in itpfunc_list] - du_func = HydroModels._get_du_func(snow_ele, ode_input_func, param_func, nn_param_func) - solver = HydroModels.ODESolver(alg=Tsit5(), reltol=1e-3, abstol=1e-3) - initstates_mat = collect(pas[:initstates][HydroModels.get_state_names(snow_ele)]) - #* solve the problem by call the solver - solved_states = solver(du_func, pas, initstates_mat, ts) - @test manual_result[1] == solved_states[1, :] - end - - @testset "test all of the output" begin - param_func, nn_param_func = HydroModels._get_parameter_extractors(snow_ele, pas) - itpfunc_list = map((var) -> LinearInterpolation(var, ts, extrapolate=true), eachrow(input)) - ode_input_func = (t) -> [itpfunc(t) for itpfunc in itpfunc_list] - du_func = HydroModels._get_du_func(snow_ele, ode_input_func, param_func, nn_param_func) - solver = HydroModels.ODESolver(alg=Tsit5(), reltol=1e-3, abstol=1e-3) - initstates_mat = collect(pas[:initstates][HydroModels.get_state_names(snow_ele)]) - #* solve the problem by call the solver - snowpack_vec = solver(du_func, pas, initstates_mat, ts)[1, :] - pet_vec = snow_funcs[1](Matrix(reduce(hcat, [input_ntp.temp, input_ntp.lday])'), ComponentVector(params=ComponentVector()))[1, :] - snow_funcs_2_output = snow_funcs[2](Matrix(reduce(hcat, [input_ntp.prcp, input_ntp.temp])'), ComponentVector(params=(Tmin=params.Tmin,))) - snowfall_vec, rainfall_vec = snow_funcs_2_output[1, :], snow_funcs_2_output[2, :] - melt_vec = snow_funcs[3](Matrix(reduce(hcat, [snowpack_vec, input_ntp.temp])'), ComponentVector(params=(Tmax=params.Tmax, Df=params.Df)))[1, :] - @test reduce(vcat, pet_vec) == collect(result.pet) - @test reduce(vcat, snowfall_vec) == collect(result.snowfall) - @test reduce(vcat, rainfall_vec) == collect(result.rainfall) - @test reduce(vcat, melt_vec) == collect(result.melt) - end - - @testset "test run with multiple nodes input" begin - input_arr = permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), repeat([input], 10)), (1, 3, 2)) - ndtypes = [Symbol("node_$i") for i in 1:10] - node_pas = ComponentVector( - params=NamedTuple{Tuple(ndtypes)}([params for _ in 1:10]), - initstates=NamedTuple{Tuple(ndtypes)}([init_states for _ in 1:10]) - ) - config = (timeidx=ts, ptypes=ndtypes) - node_output = snow_ele(input_arr, node_pas, config=config) - single_output = snow_ele(input, pas, config=config) - target_output = permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), repeat([single_output], 10)), (1, 3, 2)) - @test node_output == target_output - end - - @testset "test build state function" begin - @variables routingstore exch slowflow_routed routedflow - @parameters x2, x3 - funcs = [ - HydroModels.HydroFlux([routingstore] => [exch], [x2, x3], - exprs=[x2 * abs(routingstore / x3)^3.5]), - HydroModels.HydroFlux([routingstore, slowflow_routed, exch] => [routedflow], [x3], - exprs=[x3^(-4) / 4 * (routingstore + slowflow_routed + exch)^5]), - ] - dfunc = HydroModels.StateFlux([slowflow_routed, exch] => [routedflow], routingstore) - hydro_bucket = HydroModels.HydroBucket(funcs=funcs, dfuncs=[dfunc]) - # meta = HydroModels.HydroMeta(name=:test, inputs=[:slowflow_routed], states=[:routingstore]) - flux_func, state_func = HydroModels.build_ele_func(funcs, [dfunc], hydro_bucket.meta) - rgt, slg = 10.0, 20.0 - exch = 2.42 * abs(rgt / 69.63)^3.5 - routedflow = 69.63^(-4) / 4 * (rgt + slg + exch)^5 - @test flux_func([slg, rgt], [2.42, 69.63], [], 1) ≈ [exch, routedflow] - @test state_func([slg], [rgt], [2.42, 69.63], [], 1) ≈ [exch + slg - 69.63^(-4) / 4 * (rgt + slg + exch)^5] - end - -end \ No newline at end of file diff --git a/test/run_d8_grid.jl b/test/run_d8_grid.jl deleted file mode 100644 index 3c31365..0000000 --- a/test/run_d8_grid.jl +++ /dev/null @@ -1,18 +0,0 @@ -#* 测试d8 grid routing -@testset "d8 grid routing (regular grid)" begin - input = ones(9) - positions = [(1, 1), (1, 2), (1, 3), (2, 1), (2, 2), (2, 3), (3, 1), (3, 2), (3, 3)] - flwdir = [1 4 8; 1 4 4; 1 1 2] - result = HydroModels.grid_routing(input, positions, flwdir) - target = [0.0, 1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 2.0, 2.0] - @test result == target -end - -@testset "d8 grid routing (irregular grid)" begin - input = ones(10) - positions = [(1, 2), (1, 3), (2, 1), (2, 2), (2, 3), (2, 4), (3, 2), (3, 3), (4, 3), (4, 4)] - flwdir = [0 4 4 0; 1 2 4 8; 0 1 4 0; 0 0 1 1] - result = HydroModels.grid_routing(input, positions, flwdir) - target = [0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 4.0, 1.0, 1.0] - @test result == target -end \ No newline at end of file diff --git a/test/run_flux.jl b/test/run_flux.jl deleted file mode 100644 index d0c27ec..0000000 --- a/test/run_flux.jl +++ /dev/null @@ -1,133 +0,0 @@ -@testset "test hydro flux (build by Symbolics.jl)" begin - @variables a b c - @parameters p1 p2 - simple_flux_1 = HydroModels.HydroFlux([a, b] => [c], [p1, p2], exprs=[a * p1 + b * p2]) - @test HydroModels.get_input_names(simple_flux_1) == [:a, :b] - @test HydroModels.get_param_names(simple_flux_1) == [:p1, :p2] - @test HydroModels.get_output_names(simple_flux_1) == [:c,] - @test simple_flux_1([2.0, 3.0], ComponentVector(params=(p1=3.0, p2=4.0))) == [2.0 * 3.0 + 3.0 * 4.0] - output_mat = [18.0 17.0 11.0] - @test simple_flux_1([2.0 3.0 1.0; 3.0 2.0 2.0], ComponentVector(params=(p1=3.0, p2=4.0))) == output_mat - # test with multiple nodes - input_arr = permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), [2.0 3.0 1.0; 3.0 2.0 2.0] for _ in 1:10), (1, 3, 2)) - ndtypes = [Symbol("node_$i") for i in 1:10] - input_pas = ComponentVector(params=NamedTuple{Tuple(ndtypes)}(repeat([(p1=3.0, p2=4.0)], 10))) - @test simple_flux_1(input_arr, input_pas, ptypes=ndtypes) == permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), output_mat for _ in 1:10), (1, 3, 2)) -end - -@testset "test state flux (build by Symbolics.jl)" begin - # Define variables and parameters - @variables a b c d e - @parameters p1 p2 - - # Create HydroFlux objects for comparison - simple_flux_1 = HydroModels.HydroFlux([a, b] => [c], [p1, p2], exprs=[a * p1 + b * p2]) - simple_flux = HydroModels.HydroFlux([a, b] => [d], [p1, p2], exprs=[a / p1 + b / p2]) - - # Test StateFlux with input and output, but no parameters - state_flux_1 = HydroModels.StateFlux([a, b] => [c, d], e) - @test HydroModels.get_input_names(state_flux_1) == [:a, :b, :c, :d] - @test HydroModels.get_param_names(state_flux_1) == Symbol[] - @test HydroModels.get_output_names(state_flux_1) == Symbol[] - @test HydroModels.get_state_names(state_flux_1) == [:e] - - # Test StateFlux with input, parameters, and a custom expression - state_flux = HydroModels.StateFlux([a, b, c, d], e, [p1, p2], expr=a * p1 + b * p2 - c - d) - @test HydroModels.get_input_names(state_flux) == [:a, :b, :c, :d] - @test HydroModels.get_param_names(state_flux) == [:p1, :p2] - @test HydroModels.get_output_names(state_flux) == Symbol[] - @test HydroModels.get_state_names(state_flux) == [:e] - - # Test StateFlux with a single input and state - state_flux_3 = HydroModels.StateFlux(d => e) - @test HydroModels.get_input_names(state_flux_3) == [:e,] - @test HydroModels.get_param_names(state_flux_3) == Symbol[] - @test HydroModels.get_output_names(state_flux_3) == Symbol[] - @test HydroModels.get_state_names(state_flux_3) == [:d,] -end - -# todo muskingum need rebuild -# @testset "test muskingum route flux" begin -# @variables q1 - -# # Building the Muskingum routing flux -# k, x = 3.0, 0.2 -# pas = ComponentVector(params=(k=k, x=x,)) -# msk_flux = HydroModels.MuskingumRouteFlux(q1) -# input = Float64[1 2 3 2 3 2 5 7 8 3 2 1] -# re = msk_flux(input, pas) - -# # Verifying the input, output, and parameter names -# @test HydroModels.get_input_names(msk_flux) == [:q1] -# @test HydroModels.get_output_names(msk_flux) == [:q1_routed] -# @test HydroModels.get_param_names(msk_flux) == [:k, :x] - -# # Checking the size and values of the output -# @test size(re) == size(input) -# @test re ≈ [1.0 0.977722 1.30086 1.90343 1.919 2.31884 2.15305 3.07904 4.39488 5.75286 4.83462 3.89097] atol = 1e-1 -# end - - -@testset "test neural flux (single output)" begin - @variables a b c d e - nn_1 = Lux.Chain( - layer_1=Lux.Dense(3, 16, Lux.leakyrelu), - layer=Lux.Dense(16, 16, Lux.leakyrelu), - layer_3=Lux.Dense(16, 1, Lux.leakyrelu), - name=:testnn - ) - nn_ps = ComponentVector(LuxCore.initialparameters(StableRNG(42), nn_1)) - nn_ps_vec = collect(ComponentVector(LuxCore.initialparameters(StableRNG(42), nn_1))) - func_1 = (x, p) -> LuxCore.stateless_apply(nn_1, x, p) - nn_flux_1 = HydroModels.NeuralFlux([a, b, c] => [d], nn_1) - @test HydroModels.get_input_names(nn_flux_1) == [:a, :b, :c] - @test HydroModels.get_param_names(nn_flux_1) == Symbol[] - @test HydroModels.get_nn_names(nn_flux_1) == [:testnn] - @test HydroModels.get_output_names(nn_flux_1) == [:d] - @test nn_flux_1([1, 2, 3], ComponentVector(nn=(testnn=nn_ps_vec,))) ≈ func_1([1, 2, 3], nn_ps) - test_input = [1 3 3; 2 2 2; 1 2 1; 3 1 2]' - expected_output = func_1(test_input, nn_ps) - - @test nn_flux_1(test_input, ComponentVector(nn=(testnn=nn_ps_vec,))) ≈ expected_output - # test with multiple nodes - input_arr = permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), test_input for _ in 1:10), (1, 3, 2)) - input_pas = ComponentVector(nn=(testnn=nn_ps_vec,)) - @test nn_flux_1(input_arr, input_pas) ≈ permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), expected_output for _ in 1:10), (1, 3, 2)) -end - -@testset "test neural flux (multiple output)" begin - @variables a b c d e - nn = Lux.Chain( - layer_1=Lux.Dense(3, 16, Lux.leakyrelu), - layer_2=Lux.Dense(16, 16, Lux.leakyrelu), - layer_3=Lux.Dense(16, 2, Lux.leakyrelu), - name=:testnn - ) - nn_ps = LuxCore.initialparameters(StableRNG(42), nn) - nn_ps_vec = collect(ComponentVector(nn_ps)) - func = (x, p) -> LuxCore.stateless_apply(nn, x, p) - nn_flux = HydroModels.NeuralFlux([a, b, c] => [d, e], nn) - @test HydroModels.get_input_names(nn_flux) == [:a, :b, :c] - @test HydroModels.get_param_names(nn_flux) == Symbol[] - @test HydroModels.get_nn_names(nn_flux) == [:testnn] - @test HydroModels.get_output_names(nn_flux) == [:d, :e] - test_input = [1 3 3; 2 2 2; 1 2 1; 3 1 2]' - test_output = func(test_input, nn_ps) - @test nn_flux([1, 2, 3], ComponentVector(nn=(testnn=nn_ps_vec,))) ≈ func([1, 2, 3], nn_ps) - @test nn_flux(test_input, ComponentVector(nn=(testnn=nn_ps_vec,))) ≈ test_output - # test with multiple nodes - input_arr = permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), test_input for _ in 1:10), (1, 3, 2)) - input_pas = ComponentVector(nn=(testnn=nn_ps_vec,)) - @test nn_flux(input_arr, input_pas) ≈ permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), test_output for _ in 1:10), (1, 3, 2)) -end - -@testset "test runtime flux function building" begin - @variables a b c d e - @parameters x1 x2 - inputs = [a, b, c] - outputs = [d, e] - params = [x1, x2] - exprs = [x1 * a + x2 * b + c, x1 * c + x2] - func = HydroModels.build_flux_func(inputs, outputs, params, exprs) - @test func([1, 2, 1], [2, 1], 1) == [2 * 1 + 1 * 2 + 1, 2 * 1 + 1] -end \ No newline at end of file diff --git a/test/run_groute.jl b/test/run_groute.jl deleted file mode 100644 index 21d44c8..0000000 --- a/test/run_groute.jl +++ /dev/null @@ -1,23 +0,0 @@ - -include("../src/HydroModels.jl") -using ModelingToolkit -using ComponentArrays - -@variables q1 q1_routed s_river -@parameters lag -flwdir = [1 4 8; 1 4 4; 1 1 2] -positions = [[1, 1], [1, 2], [1, 3], [2, 1], [2, 2], [2, 3], [3, 1], [3, 2], [3, 3]] - -ndtypes = [:ntype1, :ntype2, :ntype3] -rflux = HydroModels.HydroFlux([q1, s_river] => [q1_routed], [lag], exprs=[s_river / (1 + lag) + q1]) -params = ComponentVector(NamedTuple{Tuple(ndtypes)}([(lag=0.2,) for _ in eachindex(ndtypes)])) -initstates = ComponentVector(NamedTuple{Tuple(ndtypes)}([(s_river=0.1,) for _ in eachindex(ndtypes)])) -pas = ComponentVector(; params, initstates) -nodeids = [:nid1, :nid2, :nid3, :nid4, :nid5, :nid6, :nid7, :nid8, :nid9] -route = HydroModels.GridRoute(rfunc=rflux, rstate=s_river, flwdir=flwdir, positions=positions, nodeids=nodeids) - -input_arr = ones(1, 9, 20) -timeidx = collect(1:20) -node_types = [:ntype1, :ntype2, :ntype3, :ntype2, :ntype1, :ntype2, :ntype3, :ntype1, :ntype3] -config = (solver=HydroModels.ODESolver(saveat=timeidx), interp=LinearInterpolation, ptypes=node_types, stypes=node_types, timeidx=timeidx) -@btime output_arr = route(input_arr, pas, config=config); \ No newline at end of file diff --git a/test/run_lumped_model.jl b/test/run_lumped_model.jl deleted file mode 100644 index e937bfe..0000000 --- a/test/run_lumped_model.jl +++ /dev/null @@ -1,261 +0,0 @@ -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel -NeuralFlux = HydroModels.NeuralFlux -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 - -@testset "test lumped hydro model (exp-hydro with no neural network and no unit hydrograph)" begin - @parameters Tmin Tmax Df Smax f Qmax - @variables prcp temp lday pet snowpack soilwater rainfall snowfall evap melt baseflow surfaceflow flow - - #! load data - ts = collect(1:100) - df = DataFrame(CSV.File("data/exphydro/01013500.csv")) - input_ntp = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) - input = Matrix(reduce(hcat, collect(input_ntp[[:temp, :lday, :prcp]]))') - - initstates = ComponentVector(snowpack=0.0, soilwater=1303.00) - params = ComponentVector(f=0.0167, Smax=1709.46, Qmax=18.47, Df=2.674, Tmax=0.17, Tmin=-2.09) - pas = ComponentVector(initstates=initstates, params=params) - - #! define the snow pack reservoir - snow_funcs = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), - ] - snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] - snow_ele = HydroBucket(funcs=snow_funcs, dfuncs=snow_dfuncs) - - #! define the soil water reservoir - soil_funcs = [ - HydroFlux([soilwater, pet] => [evap], [Smax], exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - HydroFlux([soilwater] => [baseflow], [Smax, Qmax, f], exprs=[step_func(soilwater) * Qmax * exp(-f * (max(0.0, Smax - soilwater)))]), - HydroFlux([soilwater] => [surfaceflow], [Smax], exprs=[max(0.0, soilwater - Smax)]), - HydroFlux([baseflow, surfaceflow] => [flow], exprs=[baseflow + surfaceflow]), - ] - soil_dfuncs = [StateFlux([rainfall, melt] => [evap, flow], soilwater)] - soil_ele = HydroBucket(funcs=soil_funcs, dfuncs=soil_dfuncs) - - #! define the Exp-Hydro model - model = HydroModel(name=:exphydro, components=[snow_ele, soil_ele]) - - @test Set(HydroModels.get_input_names(model)) == Set([:temp, :lday, :prcp]) - @test Set(HydroModels.get_param_names(model)) == Set([:Tmin, :Tmax, :Df, :Smax, :f, :Qmax]) - @test Set(HydroModels.get_state_names(model)) == Set([:snowpack, :soilwater]) - @test Set(HydroModels.get_output_names(model)) == Set([:pet, :snowfall, :rainfall, :melt, :evap, :baseflow, :surfaceflow, :flow]) - @test Set(reduce(union, HydroModels.get_var_names(model))) == Set([:temp, :lday, :prcp, :pet, :snowfall, :rainfall, :melt, :evap, :baseflow, :surfaceflow, :flow, :snowpack, :soilwater]) - - result_ntp = model(input_ntp, pas, config=(timeidx=ts,), convert_to_ntp=true) - @test result_ntp isa NamedTuple - - result_mat = model(input_ntp, pas, config=(timeidx=ts,), convert_to_ntp=false) - @test size(result_mat) == (length(reduce(union, HydroModels.get_var_names(model))), length(ts)) - - input_ntp_vec = repeat([input_ntp], 10) - node_names = [Symbol(:node_, i) for i in 1:10] - node_params = NamedTuple{Tuple(node_names)}(repeat([params], 10)) - node_initstates = NamedTuple{Tuple(node_names)}(repeat([initstates], 10)) - node_pas = ComponentVector(params=node_params, initstates=node_initstates) - result_ntp_vec = model(input_ntp_vec, node_pas, config=(timeidx=ts,), convert_to_ntp=true) - @test result_ntp_vec isa Vector - @test result_ntp_vec[1] isa NamedTuple - - result_mat_vec = model(input_ntp_vec, node_pas, config=(timeidx=ts,), convert_to_ntp=false) - @test size(result_mat_vec) == (length(reduce(union, HydroModels.get_var_names(model))), length(input_ntp_vec), length(ts)) -end - -@testset "test lumped hydro model (gr4j with unit hydrograph)" begin - @variables prcp ep soilwater new_soilwater pn en ps es perc pr slowflow fastflow - @variables slowflow_routed fastflow_routed routingstore new_routingstore exch routedflow flow - @parameters x1 x2 x3 x4 - - #! load data - # load data - df = DataFrame(CSV.File("data/gr4j/sample.csv")) - for col in names(df)[3:end] - df[ismissing.(df[:, col]), col] .= 0.0 - end - prcp_vec = df[!, "prec"] - et_vec = df[!, "pet"] - qobs_vec = df[!, "qobs"] - ts = collect(1:length(qobs_vec)) - input_ntp = (prcp=prcp_vec, ep=et_vec) - - params = ComponentVector(x1=320.11, x2=2.42, x3=69.63, x4=1.39) - initstates = ComponentVector(soilwater=235.97, routingstore=45.47) - pas = ComponentVector(initstates=initstates, params=params) - - #* define the production store - prod_funcs = [ - HydroFlux([prcp, ep] => [pn, en], exprs=[prcp - min(prcp, ep), ep - min(prcp, ep)]), - HydroFlux([pn, soilwater] => [ps], [x1], exprs=[max(0.0, pn * (1 - (soilwater / x1)^2))]), - HydroFlux([en, soilwater] => [es], [x1], exprs=[en * (2 * soilwater / x1 - (soilwater / x1)^2)]), - HydroFlux([soilwater] => [perc], [x1], exprs=[((x1)^(-4)) / 4 * ((4 / 9)^(4)) * (soilwater^5)]), - HydroFlux([pn, ps, perc] => [pr], [x1], exprs=[pn - ps + perc]), - HydroFlux([pr] => [slowflow, fastflow], exprs=[0.9 * pr, 0.1 * pr]), - HydroFlux([ps, es, perc, soilwater] => [new_soilwater], exprs=[soilwater + ps - es - perc]) - ] - prod_dfuncs = [StateFlux(soilwater => new_soilwater)] - - - uh_1 = HydroModels.UnitHydrograph(slowflow, slowflow_routed, x4, uhfunc=HydroModels.UHFunction(:UH_1_HALF), solvetype=:SPARSE) - uh_2 = HydroModels.UnitHydrograph(fastflow, fastflow_routed, x4, uhfunc=HydroModels.UHFunction(:UH_2_FULL), solvetype=:SPARSE) - - prod_ele = HydroBucket(funcs=prod_funcs, dfuncs=prod_dfuncs) - #* define the routing store - rst_funcs = [ - HydroFlux([routingstore] => [exch], [x2, x3], exprs=[x2 * abs(routingstore / x3)^3.5]), - HydroFlux([routingstore, slowflow_routed, exch] => [routedflow], [x3], exprs=[x3^(-4) / 4 * (routingstore + slowflow_routed + exch)^5]), - HydroFlux([routedflow, fastflow_routed, exch] => [flow], exprs=[routedflow + max(fastflow_routed + exch, 0.0)]), - HydroFlux([slowflow_routed, exch, routedflow, routingstore] => [new_routingstore], exprs=[routingstore + slowflow_routed + exch - routedflow]) - ] - rst_dfuncs = [StateFlux(routingstore => new_routingstore)] - rst_ele = HydroBucket(funcs=rst_funcs, dfuncs=rst_dfuncs) - #* define the gr4j model - model = HydroModel(name=:gr4j, components=[prod_ele, uh_1, uh_2, rst_ele]) - - @test Set(HydroModels.get_input_names(model)) == Set([:prcp, :ep]) - @test Set(HydroModels.get_param_names(model)) == Set([:x1, :x2, :x3, :x4]) - @test Set(HydroModels.get_state_names(model)) == Set([:soilwater, :routingstore]) - @test Set(HydroModels.get_output_names(model)) == Set([:en, :routedflow, :pr, :exch, :pn, :fastflow, :ps, :flow, :slowflow_routed, :perc, - :new_soilwater, :es, :new_routingstore, :slowflow, :fastflow_routed]) - @test Set(reduce(union, HydroModels.get_var_names(model))) == Set([:prcp, :ep, :soilwater, :new_soilwater, :pn, :en, :ps, :es, :perc, :pr, :slowflow, - :fastflow, :slowflow_routed, :fastflow_routed, :exch, :routedflow, :flow, :new_routingstore, :routingstore]) - - # Test single-node model run - result_ntp = model(input_ntp, pas, config=(timeidx=ts,), convert_to_ntp=true) - @test result_ntp isa NamedTuple - - result_mat = model(input_ntp, pas, config=(timeidx=ts,), convert_to_ntp=false) - @test size(result_mat) == (length(reduce(union, HydroModels.get_var_names(model))), length(ts)) - - # Test multi-node model run - input_ntp_vec = repeat([input_ntp], 10) - node_names = [Symbol(:node_, i) for i in 1:10] - node_params = NamedTuple{Tuple(node_names)}(repeat([params], 10)) - node_initstates = NamedTuple{Tuple(node_names)}(repeat([initstates], 10)) - node_pas = ComponentVector(params=node_params, initstates=node_initstates) - - # Test output as vector of NamedTuples - result_ntp_vec = model(input_ntp_vec, node_pas, config=(timeidx=ts,), convert_to_ntp=true) - @test result_ntp_vec isa Vector - @test result_ntp_vec[1] isa NamedTuple - - # Test output as 3D array - result_mat_vec = model(input_ntp_vec, node_pas, config=(timeidx=ts,), convert_to_ntp=false) - @test size(result_mat_vec) == (length(reduce(union, HydroModels.get_var_names(model))), length(input_ntp_vec), length(ts)) -end - - -@testset "test lumped hydro model (m50 with neural network)" begin - #! parameters in the Exp-Hydro model - @parameters Tmin Tmax Df Smax f Qmax - #! parameters in normalize flux - @parameters snowpack_std snowpack_mean - @parameters soilwater_std soilwater_mean - @parameters prcp_std prcp_mean - @parameters temp_std temp_mean - - #! hydrological flux in the Exp-Hydro model - @variables prcp temp lday pet rainfall snowfall - @variables snowpack soilwater lday pet - @variables melt log_evap_div_lday log_flow - @variables norm_snw norm_slw norm_temp norm_prcp - - #! load data - df = DataFrame(CSV.File("data/m50/01013500.csv")) - ts = collect(1:10000) - prcp_vec = df[ts, "Prcp"] - temp_vec = df[ts, "Temp"] - dayl_vec = df[ts, "Lday"] - snowpack_vec = df[ts, "SnowWater"] - soilwater_vec = df[ts, "SoilWater"] - qobs_vec = df[ts, "Flow"] - - inputs = [prcp_vec, temp_vec, snowpack_vec, soilwater_vec] - means, stds = mean.(inputs), std.(inputs) - (prcp_norm_vec, temp_norm_vec, snowpack_norm_vec, soilwater_norm_vec) = [ - @.((tmp_vec - mean) / std) for (tmp_vec, mean, std) in zip(inputs, means, stds) - ] - - #! define the snow pack reservoir - snow_funcs = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), - ] - snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] - snow_ele = HydroBucket(name=:m50_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - - #! define the ET NN and Q NN - et_nn = Lux.Chain(Lux.Dense(3 => 16, Lux.tanh), Lux.Dense(16 => 16, Lux.leakyrelu), Lux.Dense(16 => 1, Lux.leakyrelu), name=:etnn) - et_nn_p = Vector(ComponentVector(LuxCore.initialparameters(StableRNG(42), et_nn))) - q_nn = Lux.Chain(Lux.Dense(2 => 16, Lux.tanh), Lux.Dense(16 => 16, Lux.leakyrelu), Lux.Dense(16 => 1, Lux.leakyrelu), name=:qnn) - q_nn_p = Vector(ComponentVector(LuxCore.initialparameters(StableRNG(42), q_nn))) - - #! get init parameters for each NN - et_nn_flux = NeuralFlux([norm_snw, norm_slw, norm_temp] => [log_evap_div_lday], et_nn) - q_nn_flux = NeuralFlux([norm_slw, norm_prcp] => [log_flow], q_nn) - - #! define the soil water reservoir - soil_funcs = [ - #* normalize - HydroFlux([snowpack, soilwater, prcp, temp] => [norm_snw, norm_slw, norm_prcp, norm_temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean, snowpack_std, soilwater_std, prcp_std, temp_std], - exprs=[(var - mean) / std for (var, mean, std) in zip([snowpack, soilwater, prcp, temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean], - [snowpack_std, soilwater_std, prcp_std, temp_std] - )]), - et_nn_flux, - q_nn_flux, - ] - - state_expr = rainfall + melt - step_func(soilwater) * lday * log_evap_div_lday - step_func(soilwater) * exp(log_flow) - soil_dfuncs = [StateFlux([soilwater, rainfall, melt, lday, log_evap_div_lday, log_flow], soilwater, Num[], expr=state_expr)] - soil_ele = HydroBucket(name=:m50_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) - - #! define the Exp-Hydro model - model = HydroModel(name=:m50, components=[snow_ele, soil_ele]) - - @test Set(HydroModels.get_input_names(model)) == Set([:prcp, :temp, :lday]) - @test Set(HydroModels.get_param_names(model)) == Set([:Tmin, :Tmax, :Df, :snowpack_std, :snowpack_mean, :soilwater_std, :soilwater_mean, :prcp_std, :prcp_mean, :temp_std, :temp_mean]) - @test Set(HydroModels.get_state_names(model)) == Set([:snowpack, :soilwater]) - @test Set(HydroModels.get_nn_names(model)) == Set([:etnn, :qnn]) - @test Set(HydroModels.get_output_names(model)) == Set([:pet, :rainfall, :snowfall, :melt, :log_evap_div_lday, :log_flow, :norm_snw, :norm_slw, :norm_temp, :norm_prcp]) - @test Set(reduce(union, HydroModels.get_var_names(model))) == Set([:prcp, :temp, :lday, :pet, :rainfall, :snowfall, :snowpack, :soilwater, :melt, - :log_evap_div_lday, :log_flow, :norm_snw, :norm_slw, :norm_temp, :norm_prcp]) - - base_params = (Df=2.674, Tmax=0.17, Tmin=-2.09) - var_stds = NamedTuple{Tuple([Symbol(nm, :_std) for nm in [:prcp, :temp, :snowpack, :soilwater]])}(stds) - var_means = NamedTuple{Tuple([Symbol(nm, :_mean) for nm in [:prcp, :temp, :snowpack, :soilwater]])}(means) - nn_params = (etnn=et_nn_p, qnn=q_nn_p) - params = reduce(merge, [base_params, var_means, var_stds]) - initstates = (snowpack=0.0, soilwater=1303.00) - pas = ComponentVector(initstates=initstates, params=params, nn=nn_params) - input_ntp = (prcp=prcp_vec, lday=dayl_vec, temp=temp_vec) - # Run the model for a single set of inputs and parameters - result_ntp = model(input_ntp, pas, config=(timeidx=ts,), convert_to_ntp=true) - @test result_ntp isa NamedTuple - - # Run the model and get results as a matrix - result_mat = model(input_ntp, pas, config=(timeidx=ts,), convert_to_ntp=false) - @test size(result_mat) == (length(reduce(union, HydroModels.get_var_names(model))), length(ts)) - - # Prepare inputs and parameters for multiple nodes - input_ntp_vec = repeat([input_ntp], 10) # 10 identical input sets - node_names = [Symbol(:node_, i) for i in 1:10] - node_params = NamedTuple{Tuple(node_names)}(repeat([params], 10)) - node_initstates = NamedTuple{Tuple(node_names)}(repeat([initstates], 10)) - node_pas = ComponentVector(params=node_params, initstates=node_initstates, nn=nn_params) - - # Run the model for multiple nodes and get results as a vector of NamedTuples - result_ntp_vec = model(input_ntp_vec, node_pas, config=(timeidx=ts,), convert_to_ntp=true) - @test result_ntp_vec isa Vector - @test result_ntp_vec[1] isa NamedTuple - - # Run the model for multiple nodes and get results as a 3D array - result_mat_vec = model(input_ntp_vec, node_pas, config=(timeidx=ts,), convert_to_ntp=false) - @test size(result_mat_vec) == (length(reduce(union, HydroModels.get_var_names(model))), length(input_ntp_vec), length(ts)) -end \ No newline at end of file diff --git a/test/run_lux_model.jl b/test/run_lux_model.jl deleted file mode 100644 index d77955f..0000000 --- a/test/run_lux_model.jl +++ /dev/null @@ -1,22 +0,0 @@ -using Lux -using LuxCore -using Symbolics -using ModelingToolkit -using BenchmarkTools -model = Lux.Chain( - Lux.Dense(3, 64), - Lux.relu, - Lux.Dense(64, 1), - Lux.softmax -) - -@variables a b c d -@parameters p1 p2 p3 -model([a, b, c]=>[d]) -(chain::LuxCore.AbstractExplicitContainerLayer)(var::Vector{Num}) = (chain=chain, input=var) -ModelingToolkit.isparameter(p1) -ModelingToolkit.isvariable(p1) -eq1 = a + b + c*p1 ~ d -vars = Num.(get_variables(eq1)) -filter(x->!ModelingToolkit.isparameter(x), vars) -filter(x->ModelingToolkit.isparameter(x), vars) diff --git a/test/run_macros.jl b/test/run_macros.jl deleted file mode 100644 index 51658db..0000000 --- a/test/run_macros.jl +++ /dev/null @@ -1,6 +0,0 @@ -@variables a b c d -@parameters k1 k2 -flux1 = @hydroflux a ~ k1 * b + k2 * c + d -m = Lux.Chain(Lux.Dense(3, 64), Lux.relu, Lux.Dense(64, 1), name=:m) -minfo = m([a, b, c]) -@nnflux [d] ~ minfo \ No newline at end of file diff --git a/test/run_mskflux.jl b/test/run_mskflux.jl deleted file mode 100644 index ec9747e..0000000 --- a/test/run_mskflux.jl +++ /dev/null @@ -1,22 +0,0 @@ -include("../src/HydroModels.jl") -using ModelingToolkit -using ComponentArrays -using Plots - -@variables q - -flux_1 = HydroModels.MuskingumRouteFlux(q) -flux_2 = HydroModels.RiverRouteFlux(q) - -inflow = Float64[4 6 8 14 23 36 45 32 21 12 8] -timeidx = collect(1:length(inflow)) - -params = ComponentVector(k=1.2, x=0.1) -pas = ComponentVector(params=params) - -q_out_1 = flux_1(inflow, pas, timeidx=timeidx, delta_t=1.0) -q_out_2 = flux_2(inflow, pas, timeidx=timeidx, delta_t=1.0) - -plot(inflow[1, :]) -plot!(q_out_1) -plot!(q_out_2) diff --git a/test/run_optimize.jl b/test/run_optimize.jl deleted file mode 100644 index e4b1ea7..0000000 --- a/test/run_optimize.jl +++ /dev/null @@ -1,247 +0,0 @@ -using Aqua -using CSV -using DataFrames -using Lux -using Test -using ModelingToolkit -using Symbolics -using LuxCore -using StableRNGs -using ComponentArrays -using DataInterpolations -using OrdinaryDiffEq -using Statistics -using BenchmarkTools -using Graphs -using Plots -# using HydroModels -include("../src/HydroModels.jl") - - -# include need add the module name: HydroModels -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel -HydroOptimizer = HydroModels.HydroOptimizer -GradOptimizer = HydroModels.GradOptimizer - - -@testset "optimize exphydro" begin - step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 - # define variables and parameters - @variables temp lday pet prcp snowfall rainfall snowpack melt - @parameters Tmin Tmax Df Smax Qmax f - - @variables soilwater pet evap baseflow surfaceflow flow rainfall - - # define model components - fluxes_1 = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), - ] - dfluxes_1 = [StateFlux([snowfall] => [melt], snowpack),] - bucket_1 = HydroBucket(name=:surface, funcs=fluxes_1, dfuncs=dfluxes_1) - - fluxes_2 = [ - HydroFlux([soilwater, pet] => [evap], [Smax], exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - HydroFlux([soilwater] => [baseflow], [Smax, Qmax, f], exprs=[step_func(soilwater) * Qmax * exp(-f * (max(0.0, Smax - soilwater)))]), - HydroFlux([soilwater] => [surfaceflow], [Smax], exprs=[max(0.0, soilwater - Smax)]), - HydroFlux([baseflow, surfaceflow] => [flow], exprs=[baseflow + surfaceflow]), - ] - dfluxes_2 = [StateFlux([rainfall, melt] => [evap, flow], soilwater)] - bucket_2 = HydroBucket(name=:soil, funcs=fluxes_2, dfuncs=dfluxes_2) - model = HydroModel(name=:exphydro, components=[bucket_1, bucket_2]) - - # load data - data = CSV.read("data/exphydro/01013500.csv", DataFrame) - - # predefine the parameters - f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 - - # load data - file_path = "data/exphydro/01013500.csv" - data = CSV.File(file_path) - df = DataFrame(data) - ts = collect(1:10000) - lday_vec = df[ts, "dayl(day)"] - prcp_vec = df[ts, "prcp(mm/day)"] - temp_vec = df[ts, "tmean(C)"] - flow_vec = df[ts, "flow(mm)"] - - tunable_pas = ComponentVector(params=ComponentVector(f=f, Smax=Smax, Qmax=Qmax, Df=Df, Tmax=Tmax, Tmin=Tmin)) - const_pas = ComponentVector(initstates=ComponentVector(snowpack=0.0, soilwater=1300.0)) - - # parameters optimization - input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec) - input_matrix = Matrix(reduce(hcat, collect(input))') - output = (flow=flow_vec,) - config = (solver=HydroModels.ODESolver(), interp=LinearInterpolation) - - @testset "HydroOptimizer" begin - # build optimizer - hydro_opt = HydroModels.HydroOptimizer(component=model, maxiters=100) - lb_list = [0.0, 100.0, 10.0, 0.0, 0.0, -3.0] - ub_list = [0.1, 2000.0, 50.0, 5.0, 3.0, 0.0] - config = (solver=HydroModels.ODESolver(), interp=LinearInterpolation) - opt_params, loss_df = hydro_opt([input], [output], tunable_pas=tunable_pas, const_pas=const_pas, config=[config], lb=lb_list, ub=ub_list, return_loss_df=true) - end - - @testset "GradOptimizer" begin - config = (solver=HydroModels.ODESolver(sensealg=InterpolatingAdjoint(autodiff=true)), interp=LinearInterpolation) - grad_opt = HydroModels.GradOptimizer(component=model, maxiters=100) - opt_params, loss_df = grad_opt([input], [output], tunable_pas=tunable_pas, const_pas=const_pas, config=[config], return_loss_df=true) - end - - @testset "BatchOptimizer" begin - config = (solver=HydroModels.ODESolver(sensealg=InterpolatingAdjoint(autodiff=ZygoteVJP())), interp=LinearInterpolation) - batch_opt = HydroModels.BatchOptimizer(component=model, maxiters=100, solve_alg=Adam(1e-2), adtype=Optimization.AutoZygote()) - opt_pas, loss_df = batch_opt( - fill(input, 5), fill(output, 5), - tunable_pas=tunable_pas, - const_pas=const_pas, config=fill(config, 5), - return_loss_df=true - ) - end -end - - -@testset "optimize m50" begin - step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 - - #! parameters in the Exp-Hydro model - @parameters Tmin Tmax Df Smax f Qmax - #! parameters in normalize flux - @parameters snowpack_std snowpack_mean - @parameters soilwater_std soilwater_mean - @parameters prcp_std prcp_mean - @parameters temp_std temp_mean - - #! hydrological flux in the Exp-Hydro model - @variables prcp temp lday pet rainfall snowfall - @variables snowpack soilwater lday pet - @variables melt log_evap_div_lday log_flow - @variables norm_snw norm_slw norm_temp norm_prcp - - #! define the snow pack reservoir - snow_funcs = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * min(snowpack, Df * (temp - Tmax))]), - ] - snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] - snow_ele = HydroBucket(name=:exphydro_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - - #! define the ET NN and Q NN - ep_nn = Lux.Chain( - Lux.Dense(3 => 16, tanh), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 1, leakyrelu), - name=:epnn - ) - ep_nn_params = Vector(ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), ep_nn)))) - q_nn = Lux.Chain( - Lux.Dense(2 => 16, tanh), - Lux.Dense(16 => 16, leakyrelu), - Lux.Dense(16 => 1, leakyrelu), - name=:qnn - ) - q_nn_params = Vector(ComponentVector(first(Lux.setup(StableRNGs.LehmerRNG(1234), q_nn)))) - - #! get init parameters for each NN - ep_nn_flux = NeuralFlux([norm_snw, norm_slw, norm_temp] => [log_evap_div_lday], ep_nn) - q_nn_flux = NeuralFlux([norm_slw, norm_prcp] => [log_flow], q_nn) - - #! define the soil water reservoir - soil_funcs = [ - #* normalize - HydroFlux([snowpack, soilwater, prcp, temp] => [norm_snw, norm_slw, norm_prcp, norm_temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean, snowpack_std, soilwater_std, prcp_std, temp_std], - exprs=[(var - mean) / std for (var, mean, std) in zip([snowpack, soilwater, prcp, temp], - [snowpack_mean, soilwater_mean, prcp_mean, temp_mean], - [snowpack_std, soilwater_std, prcp_std, temp_std] - )]), - ep_nn_flux, - q_nn_flux, - ] - - state_expr = rainfall + melt - step_func(soilwater) * lday * log_evap_div_lday - step_func(soilwater) * exp(log_flow) - soil_dfuncs = [StateFlux([soilwater, rainfall, melt, lday, log_evap_div_lday, log_flow], soilwater, Num[], expr=state_expr)] - soil_ele = HydroBucket(name=:m50_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) - #! define the Exp-Hydro model - m50_model = HydroModel(name=:m50, components=[snow_ele, soil_ele]) - - # load data - data = CSV.read("data/exphydro/01013500.csv", DataFrame) - # predefine the parameters - f, Smax, Qmax, Df, Tmax, Tmin = 0.01674478, 1709.461015, 18.46996175, 2.674548848, 0.175739196, -2.092959084 - # load data - file_path = "data/m50/01013500.csv" - data = CSV.File(file_path) - df = DataFrame(data) - ts = collect(1:10000) - # cols: Baseflow,Evap,Flow,Infiltration,Lday,Melt,Pet,Prcp,Rainfall,Snowfall,Surfaceflow,Temp,SoilWater,SnowWater - lday_vec = df[ts, "Lday"] - prcp_vec = df[ts, "Prcp"] - temp_vec = df[ts, "Temp"] - flow_vec = df[ts, "Flow"] - - log_flow_vec = log.(flow_vec) - log_evap_div_lday_vec = log.(df[ts, "Evap"] ./ lday_vec) - norm_prcp_vec = (prcp_vec .- mean(prcp_vec)) ./ std(prcp_vec) - norm_temp_vec = (temp_vec .- mean(temp_vec)) ./ std(temp_vec) - norm_snw_vec = (df[ts, "SnowWater"] .- mean(df[ts, "SnowWater"])) ./ std(df[ts, "SnowWater"]) - norm_slw_vec = (df[ts, "SoilWater"] .- mean(df[ts, "SoilWater"])) ./ std(df[ts, "SoilWater"]) - nn_input = (norm_snw=norm_snw_vec, norm_slw=norm_slw_vec, norm_temp=norm_temp_vec, norm_prcp=norm_prcp_vec) - - @testset "ep_nn" begin - ep_grad_opt = HydroModels.GradOptimizer(component=ep_nn_flux, solve_alg=Adam(1e-2), adtype=Optimization.AutoZygote(), maxiters=1000) - ep_input_matrix = Matrix(reduce(hcat, collect(nn_input[HydroModels.get_input_names(ep_nn_flux)]))') - ep_output = (log_evap_div_lday=log_evap_div_lday_vec,) - - ep_opt_params, epnn_loss_df = ep_grad_opt( - [ep_input_matrix], [ep_output], - tunable_pas=ComponentVector(nn=(epnn=ep_nn_params,)), - const_pas=ComponentVector(), - return_loss_df=true - ) - end - - @testset "q_nn" begin - q_grad_opt = HydroModels.GradOptimizer(component=q_nn_flux, solve_alg=Adam(1e-2), adtype=Optimization.AutoZygote(), maxiters=1000) - q_input_matrix = Matrix(reduce(hcat, collect(nn_input[HydroModels.get_input_names(q_nn_flux)]))') - q_output = (log_flow=log_flow_vec,) - - q_opt_params, qnn_loss_df = q_grad_opt( - [q_input_matrix], [q_output], - tunable_pas=ComponentVector(nn=(qnn=q_nn_params,)), - const_pas=ComponentVector(), - return_loss_df=true - ) - end - - @testset "m50" begin - m50_opt = HydroModels.GradOptimizer(component=m50_model, solve_alg=Adam(1e-2), adtype=Optimization.AutoZygote(), maxiters=100) - config = (solver=HydroModels.ODESolver(sensealg=BacksolveAdjoint(autodiff=ZygoteVJP())), interp=LinearInterpolation) - norm_pas = ComponentVector( - snowpack_mean=mean(norm_snw_vec), soilwater_mean=mean(norm_slw_vec), prcp_mean=mean(norm_prcp_vec), temp_mean=mean(norm_temp_vec), - snowpack_std=std(norm_snw_vec), soilwater_std=std(norm_slw_vec), prcp_std=std(norm_prcp_vec), temp_std=std(norm_temp_vec) - ) - m50_const_pas = ComponentVector( - initstates=ComponentVector(snowpack=0.0, soilwater=1300.0), - params=ComponentVector(Tmin=Tmin, Tmax=Tmax, Df=Df; norm_pas...) - ) - m50_tunable_pas = ComponentVector( - nn=ComponentVector(epnn=ep_nn_params, qnn=q_nn_params) - ) - m50_input = (prcp=prcp_vec, lday=lday_vec, temp=temp_vec) - m50_opt_params, m50_loss_df = m50_opt( - [m50_input], [q_output], - tunable_pas=m50_tunable_pas, - const_pas=m50_const_pas, - config=[config], - return_loss_df=true - ) - end -end diff --git a/test/run_route.jl b/test/run_route.jl deleted file mode 100644 index 48f2ca0..0000000 --- a/test/run_route.jl +++ /dev/null @@ -1,83 +0,0 @@ -@testset "test grid route based on discharge route flux" begin - @variables q1 q1_routed s_river - @parameters lag - flwdir = [1 4 8; 1 4 4; 1 1 2] - positions = [[1, 1], [1, 2], [1, 3], [2, 1], [2, 2], [2, 3], [3, 1], [3, 2], [3, 3]] - - ndtypes = [:ntype1, :ntype2, :ntype3] - hrunames = [:nid1, :nid2, :nid3, :nid4, :nid5, :nid6, :nid7, :nid8, :nid9] - rflux = HydroModels.HydroFlux([q1, s_river] => [q1_routed], [lag], exprs=[s_river / (1 + lag) + q1]) - @test HydroModels.get_input_names(rflux) == [:q1, :s_river] - @test HydroModels.get_output_names(rflux) == [:q1_routed] - @test HydroModels.get_param_names(rflux) == [:lag] - params = ComponentVector(NamedTuple{Tuple(ndtypes)}([(lag=0.2,) for _ in eachindex(ndtypes)])) - initstates = ComponentVector(NamedTuple{Tuple(hrunames)}([(s_river=0.1,) for _ in eachindex(hrunames)])) - pas = ComponentVector(; params, initstates) - route = HydroModels.GridRoute(rfunc=rflux, rstate=s_river, flwdir=flwdir, positions=positions) - @test HydroModels.get_input_names(route) == [:q1] - @test HydroModels.get_output_names(route) == [:q1_routed] - @test HydroModels.get_param_names(route) == [:lag] - @test HydroModels.get_state_names(route) == [:s_river] - - input_arr = ones(1, 9, 20) - timeidx = collect(1:20) - node_types = [:ntype1, :ntype2, :ntype3, :ntype2, :ntype1, :ntype2, :ntype3, :ntype1, :ntype3] - config = (solver=HydroModels.ODESolver(saveat=timeidx), interp=LinearInterpolation, ptypes=node_types, stypes=hrunames, timeidx=timeidx) - output_arr = route(input_arr, pas, config=config) - @test size(output_arr) == size(ones(2, 9, 20)) -end - -@testset "test vector route based on discharge route flux" begin - @variables q1 q1_routed s_river - @parameters lag - rflux = HydroModels.HydroFlux([q1, s_river] => [q1_routed], [lag], exprs=[s_river / (1 + lag) + q1]) - - network = DiGraph(9) - add_edge!(network, 1, 2) - add_edge!(network, 2, 5) - add_edge!(network, 3, 5) - add_edge!(network, 4, 5) - add_edge!(network, 5, 8) - add_edge!(network, 6, 9) - add_edge!(network, 7, 8) - add_edge!(network, 8, 9) - - ndtypes = [:ntype1, :ntype2, :ntype3] - hrunames = [:nid1, :nid2, :nid3, :nid4, :nid5, :nid6, :nid7, :nid8, :nid9] - params = ComponentVector(NamedTuple{Tuple(ndtypes)}([(lag=0.2,) for _ in eachindex(ndtypes)])) - initstates = ComponentVector(NamedTuple{Tuple(hrunames)}([(s_river=0.0,) for _ in eachindex(hrunames)])) - pas = ComponentVector(; params, initstates) - vroute = HydroModels.VectorRoute(rfunc=rflux, rstate=s_river, network=network) - # 24 * 3600 / (10.0 * 1e6) * 1e3 - input_arr = ones(1, 9, 20) - timeidx = collect(1:20) - ptypes = [:ntype1, :ntype2, :ntype3, :ntype2, :ntype1, :ntype2, :ntype3, :ntype1, :ntype3] - sol_2 = vroute(input_arr, pas, config=(timeidx=timeidx, ptypes=ptypes, stypes=hrunames, solver=HydroModels.DiscreteSolver())) - @test size(sol_2) == size(ones(2, 9, 20)) -end - -@testset "test rapid route based on muskingum route flux" begin - @variables q q_routed - - network = DiGraph(9) - add_edge!(network, 1, 2) - add_edge!(network, 2, 5) - add_edge!(network, 3, 5) - add_edge!(network, 4, 5) - add_edge!(network, 5, 8) - add_edge!(network, 6, 9) - add_edge!(network, 7, 8) - add_edge!(network, 8, 9) - - ndtypes = [:ntype1, :ntype2, :ntype3] - params = ComponentVector(NamedTuple{Tuple(ndtypes)}([(k=2.0, x=0.2) for _ in eachindex(ndtypes)])) - initstates = ComponentVector(NamedTuple{Tuple(ndtypes)}([(s_river=0.0,) for _ in eachindex(ndtypes)])) - pas = ComponentVector(; params, initstates) - vroute = HydroModels.RapidRoute([q]=>[q_routed], network=network) - # 24 * 3600 / (10.0 * 1e6) * 1e3 - input_arr = ones(1, 9, 20) - timeidx = collect(1:20) - ptypes = [:ntype1, :ntype2, :ntype3, :ntype2, :ntype1, :ntype2, :ntype3, :ntype1, :ntype3] - sol_2 = vroute(input_arr, pas, config=(timeidx=timeidx, ptypes=ptypes, solver=HydroModels.DiscreteSolver())) - @test size(sol_2) == size(ones(1, 9, 20)) -end diff --git a/test/run_sort.jl b/test/run_sort.jl deleted file mode 100644 index e9e3586..0000000 --- a/test/run_sort.jl +++ /dev/null @@ -1,35 +0,0 @@ -@testset "test flux sort function" begin - @variables a b c d e f - @parameters p1 p2 p3 p4 - - flux_1 = HydroModels.SimpleFlux([a, b] => [c, d], [p1, p2], exprs=[a * p1 + p2, b * p2 + p1]) - flux_2 = HydroModels.SimpleFlux([a, c] => [e], [p3], exprs=[a * p3 + c]) - flux_3 = HydroModels.SimpleFlux([e, d] => [f], exprs=[e + d]) - sorted_fluxes = HydroModels.sort_fluxes([flux_2, flux_3, flux_1]) - @test sorted_fluxes == [flux_1, flux_2, flux_3] -end - -@test "test sort components" begin - @variables temp lday pet prcp snowfall rainfall snowpack melt - @parameters Tmin Tmax Df - name = :test - snow_fluxes = [ - SimpleFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - SimpleFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - SimpleFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), - ] - snow_dfluxes = [StateFlux([snowfall] => [melt], snowpack),] - snow_bucket = HydroBucket(Symbol(name, :_surface), funcs=snow_fluxes, dfuncs=snow_dfluxes) - - @variables soilwater pet evap baseflow surfaceflow flow rainfall melt - @parameters Smax Qmax f - soil_fluxes = [ - SimpleFlux([soilwater, pet] => [evap], [Smax], exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - SimpleFlux([soilwater] => [baseflow], [Smax, Qmax, f], exprs=[step_func(soilwater) * Qmax * exp(-f * (max(0.0, Smax - soilwater)))]), - SimpleFlux([soilwater] => [surfaceflow], [Smax], exprs=[max(0.0, soilwater - Smax)]), - ] - soil_dfluxes = [StateFlux([rainfall, melt] => [evap, baseflow, surfaceflow], soilwater)] - soil_bucket = HydroBucket(Symbol(name, :_soil), funcs=soil_fluxes, dfuncs=soil_dfluxes) - flow_flux = SimpleFlux([baseflow, surfaceflow] => [flow], exprs=[baseflow + surfaceflow]) - sorted_fluxes = HydroModels.sort_components([flow_flux, soil_bucket, snow_bucket]) -end \ No newline at end of file diff --git a/test/run_spatial_model.jl b/test/run_spatial_model.jl deleted file mode 100644 index 8c9c7c9..0000000 --- a/test/run_spatial_model.jl +++ /dev/null @@ -1,142 +0,0 @@ -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel -UnitHydrograph = HydroModels.UnitHydrograph -NeuralFlux = HydroModels.NeuralFlux -step_func(x) = (tanh(5.0 * x) + 1.0) * 0.5 - -@testset "test grid route hydro model (multiple hydrology nodes based on exp-hydro)" begin - @parameters Tmin Tmax Df Smax f Qmax area_coef lag - @variables prcp temp lday pet snowpack soilwater rainfall snowfall evap melt baseflow surfaceflow flow q q_routed s_river - - #! load data - ts = collect(1:100) - df = DataFrame(CSV.File("data/exphydro/01013500.csv")) - input_ntp = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) - input = Matrix(reduce(hcat, collect(input_ntp[[:temp, :lday, :prcp]]))') - - initstates = ComponentVector(snowpack=0.0, soilwater=1303.00, s_river=0.0) - params = ComponentVector(f=0.0167, Smax=1709.46, Qmax=18.47, Df=2.674, Tmax=0.17, Tmin=-2.09, lag=0.2, area_coef=1.0) - pas = ComponentVector(initstates=initstates, params=params) - - #! define the snow pack reservoir - snow_funcs = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), - ] - snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] - snow_ele = HydroBucket(name=:exphydro_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - - #! define the soil water reservoir - soil_funcs = [ - HydroFlux([soilwater, pet] => [evap], [Smax], exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - HydroFlux([soilwater] => [baseflow], [Smax, Qmax, f], exprs=[step_func(soilwater) * Qmax * exp(-f * (max(0.0, Smax - soilwater)))]), - HydroFlux([soilwater] => [surfaceflow], [Smax], exprs=[max(0.0, soilwater - Smax)]), - HydroFlux([baseflow, surfaceflow] => [flow], exprs=[baseflow + surfaceflow]), - ] - soil_dfuncs = [StateFlux([rainfall, melt] => [evap, flow], soilwater)] - soil_ele = HydroBucket(name=:exphydro_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) - - convertflux = HydroModels.HydroFlux([flow] => [q], [area_coef], exprs=[flow * area_coef]) - - #! define the routing method - flwdir = [1 4 8; 1 4 4; 1 1 2] - positions = [[1, 1], [1, 2], [1, 3], [2, 1], [2, 2], [2, 3], [3, 1], [3, 2], [3, 3]] - node_names = [Symbol(:node_, i) for i in 1:9] - rflux = HydroModels.HydroFlux([q, s_river] => [q_routed], [lag], exprs=[s_river / (1 + lag) + q]) - route = HydroModels.GridRoute(rfunc=rflux, rstate=s_river, flwdir=flwdir, positions=positions) - discharge_route = HydroModels.GridRoute(name=:exphydro_routed, rfunc=rflux, rstate=s_river, flwdir=flwdir, positions=positions) - #! define the Exp-Hydro model - model = HydroModel(name=:exphydro, components=[snow_ele, soil_ele, convertflux, discharge_route]) - - @test Set(HydroModels.get_input_names(model)) == Set([:temp, :lday, :prcp]) - @test Set(HydroModels.get_param_names(model)) == Set([:Tmin, :Tmax, :Df, :Smax, :f, :Qmax, :lag, :area_coef]) - @test Set(HydroModels.get_state_names(model)) == Set([:snowpack, :soilwater, :s_river]) - @test Set(HydroModels.get_output_names(model)) == Set([:pet, :snowfall, :rainfall, :melt, :evap, :baseflow, :surfaceflow, :flow, :q, :q_routed]) - @test Set(reduce(union, HydroModels.get_var_names(model))) == Set([:temp, :lday, :prcp, :pet, :snowfall, :rainfall, :melt, :evap, :baseflow, :surfaceflow, :flow, :snowpack, :soilwater, :s_river, :q, :q_routed]) - - input_ntp_vec = repeat([input_ntp], 9) - node_names = [Symbol(:node_, i) for i in 1:9] - node_params = NamedTuple{Tuple(node_names)}(repeat([params], 9)) - node_initstates = NamedTuple{Tuple(node_names)}(repeat([initstates], 9)) - node_pas = ComponentVector(params=node_params, initstates=node_initstates) - - config = (timeidx=ts, ptypes=node_names) - result_mat_vec = model(input_ntp_vec, node_pas, config=config) - @test size(result_mat_vec) == (length(reduce(union, HydroModels.get_var_names(model))), length(input_ntp_vec), length(ts)) -end - -@testset "test vector route hydro model (spatial hydrology model based on vector route and exp-hydro)" begin - @parameters Tmin Tmax Df Smax f Qmax - @variables prcp temp lday pet snowpack soilwater rainfall snowfall evap melt baseflow surfaceflow flow flow_routed - - #! load data - ts = collect(1:100) - df = DataFrame(CSV.File("data/exphydro/01013500.csv")) - input_ntp = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) - input = Matrix(reduce(hcat, collect(input_ntp[[:temp, :lday, :prcp]]))') - - initstates = ComponentVector(snowpack=0.0, soilwater=1303.00, s_river=0.0) - params = ComponentVector(f=0.0167, Smax=1709.46, Qmax=18.47, Df=2.674, Tmax=0.17, Tmin=-2.09, lag=0.2, k=0.5, x=0.2, area_coef=1.0) - pas = ComponentVector(initstates=initstates, params=params) - - #! define the snow pack reservoir - snow_funcs = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), - ] - snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] - snow_ele = HydroBucket(name=:exphydro_snow, funcs=snow_funcs, dfuncs=snow_dfuncs) - - #! define the soil water reservoir - soil_funcs = [ - HydroFlux([soilwater, pet] => [evap], [Smax], exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - HydroFlux([soilwater] => [baseflow], [Smax, Qmax, f], exprs=[step_func(soilwater) * Qmax * exp(-f * (max(0.0, Smax - soilwater)))]), - HydroFlux([soilwater] => [surfaceflow], [Smax], exprs=[max(0.0, soilwater - Smax)]), - HydroFlux([baseflow, surfaceflow] => [flow], exprs=[baseflow + surfaceflow]), - ] - soil_dfuncs = [StateFlux([rainfall, melt] => [evap, flow], soilwater)] - soil_ele = HydroBucket(name=:exphydro_soil, funcs=soil_funcs, dfuncs=soil_dfuncs) - - #! define the routing method - network = DiGraph(9) - add_edge!(network, 1, 2) - add_edge!(network, 2, 5) - add_edge!(network, 3, 5) - add_edge!(network, 4, 5) - add_edge!(network, 5, 8) - add_edge!(network, 6, 9) - add_edge!(network, 7, 8) - add_edge!(network, 8, 9) - - @variables q q_routed s_river - @parameters area_coef lag - - convertflux = HydroModels.HydroFlux([flow] => [q], [area_coef], exprs=[flow * area_coef]) - node_names = [Symbol(:node_, i) for i in 1:9] - rflux = HydroModels.HydroFlux([q, s_river] => [q_routed], [lag], exprs=[s_river / (1 + lag) + q]) - discharge_route = HydroModels.VectorRoute(name=:exphydro_routed, rfunc=rflux, rstate=s_river, network=network) - - #! define the Exp-Hydro model - model = HydroModel(name=:exphydro, components=[snow_ele, soil_ele, convertflux, discharge_route]) - - @test Set(HydroModels.get_input_names(model)) == Set([:temp, :lday, :prcp]) - @test Set(HydroModels.get_param_names(model)) == Set([:Tmin, :Tmax, :Df, :Smax, :f, :Qmax, :lag, :area_coef]) - @test Set(HydroModels.get_state_names(model)) == Set([:snowpack, :soilwater, :s_river]) - @test Set(HydroModels.get_output_names(model)) == Set([:pet, :snowfall, :rainfall, :melt, :evap, :baseflow, :surfaceflow, :flow, :q, :q_routed]) - @test Set(reduce(union, HydroModels.get_var_names(model))) == Set( - [:temp, :lday, :prcp, :pet, :snowfall, :rainfall, :melt, :evap, :baseflow, :surfaceflow, :s_river, :flow, :snowpack, :soilwater, :q, :q_routed] - ) - - input_ntp_vec = repeat([input_ntp], 9) - node_params = NamedTuple{Tuple(node_names)}(repeat([params], 9)) - node_initstates = NamedTuple{Tuple(node_names)}(repeat([initstates], 9)) - node_pas = ComponentVector(params=node_params, initstates=node_initstates) - - config = (timeidx=ts, ptypes=node_names) - result_mat_vec = model(input_ntp_vec, node_pas, config=config, convert_to_ntp=false) - @test size(result_mat_vec) == (length(reduce(union, HydroModels.get_var_names(model))), length(input_ntp_vec), length(ts)) -end diff --git a/test/run_uh.jl b/test/run_uh.jl deleted file mode 100644 index 41c098b..0000000 --- a/test/run_uh.jl +++ /dev/null @@ -1,36 +0,0 @@ -@testset "test unit hydro flux" begin - # Define the variables and parameters - @variables q1 q1_routed - @parameters x1 - # Define a unit hydrograph function - uh_func = HydroModels.UHFunction(:UH_1_HALF) - # Create a UnitHydroRouteFlux object - # Input: q1 (flow) - # Parameter: x1 (routing parameter) - # Using uh_1_half as the unit hydrograph function - # Solve type: unithydro1 (convolution method) - uh1 = HydroModels.UnitHydrograph(q1, q1_routed, x1, uhfunc=uh_func, solvetype=:DISCRETE) - uh2 = HydroModels.UnitHydrograph(q1, q1_routed, x1, uhfunc=uh_func, solvetype=:SPARSE) - # Test the input names of the router - @test HydroModels.get_input_names(uh1) == HydroModels.get_input_names(uh2) == [:q1] - # Test the parameter names of the router - @test HydroModels.get_param_names(uh1) == HydroModels.get_param_names(uh2) == [:x1] - # Test the output names of the router - @test HydroModels.get_output_names(uh1) == HydroModels.get_output_names(uh2) == [:q1_routed] - # Test the routing function with sample input - input_flow = Float32[2 3 4 2 3 1] - params = ComponentVector(params=(x1=3.5,)) - expected_output = [0.0899066 0.643448 2.3442 3.20934 3.44646 2.20934] - # [0.08726897695099571 0.5373023715895905 1.6508571480656808 2.839759323622619 3.2301609643779736 2.7991762465729138] - @test uh1(input_flow, params) ≈ expected_output atol = 1e-3 - @test uh2(input_flow, params) ≈ expected_output atol = 1e-3 - # test with multiple nodes - input_arr = permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), input_flow for _ in 1:10), (1, 3, 2)) - ndtypes = [Symbol("node_$i") for i in 1:10] - node_params = NamedTuple{Tuple(ndtypes)}(repeat([(x1=3.5,)], 10)) - node_initstates = NamedTuple{Tuple(ndtypes)}(repeat([NamedTuple()], 10)) - input_pas = ComponentVector(params=node_params, initstates=node_initstates) - - @test uh1(input_arr, input_pas, ptypes=ndtypes) ≈ permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), expected_output for _ in 1:10), (1, 3, 2)) atol = 1e-3 - @test uh2(input_arr, input_pas, ptypes=ndtypes) ≈ permutedims(reduce((m1, m2) -> cat(m1, m2, dims=3), expected_output for _ in 1:10), (1, 3, 2)) atol = 1e-3 -end \ No newline at end of file diff --git a/test/run_wrapper.jl b/test/run_wrapper.jl deleted file mode 100644 index 0b06c94..0000000 --- a/test/run_wrapper.jl +++ /dev/null @@ -1,72 +0,0 @@ -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -NeuralFlux = HydroModels.NeuralFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel -RecordComponentState = HydroModels.RecordComponentState -EstimateComponentParams = HydroModels.EstimateComponentParams - -@parameters Tmin Tmax Df Smax f Qmax -@variables prcp temp lday pet snowpack soilwater rainfall snowfall evap melt baseflow surfaceflow flow - -#! load data -ts = collect(1:100) -df = DataFrame(CSV.File("data/exphydro/01013500.csv")) -input_ntp = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) -input = Matrix(reduce(hcat, collect(input_ntp[[:temp, :lday, :prcp]]))') - -initstates = ComponentVector(snowpack=0.0, soilwater=1303.00) -params = ComponentVector(f=0.0167, Smax=1709.46, Qmax=18.47, Df=2.674, Tmax=0.17, Tmin=-2.09) -pas = ComponentVector(initstates=initstates, params=params) - -#! define the snow pack reservoir -snow_funcs = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), -] -snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] -snow_ele = HydroBucket(funcs=snow_funcs, dfuncs=snow_dfuncs) - -#! define the soil water reservoir -soil_funcs = [ - HydroFlux([soilwater, pet] => [evap], [Smax], exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - HydroFlux([soilwater] => [baseflow], [Smax, Qmax, f], exprs=[step_func(soilwater) * Qmax * exp(-f * (max(0.0, Smax - soilwater)))]), - HydroFlux([soilwater] => [surfaceflow], [Smax], exprs=[max(0.0, soilwater - Smax)]), - HydroFlux([baseflow, surfaceflow] => [flow], exprs=[baseflow + surfaceflow]), -] -soil_dfuncs = [StateFlux([rainfall, melt] => [evap, flow], soilwater)] -soil_ele = HydroBucket(funcs=soil_funcs, dfuncs=soil_dfuncs) - -#! define the Exp-Hydro model -model = HydroModel(name=:exphydro, components=[snow_ele, soil_ele]) - -@testset "RecordComponentState wrapper" begin - wrapper = RecordComponentState(model, initstates) - for i in 1:10 - println(wrapper.states) - output1 = wrapper(input, pas) - end -end - -@testset "EstimateComponentParams wrapper" begin - @parameters S0 Q0 ks kq - - est_func1 = HydroFlux([S0] => [Smax, Df], [ks], exprs=[step_func(S0) * S0 * ks, ks * 2.674]) - est_func2 = HydroFlux([Q0] => [Qmax], [kq], exprs=[step_func(Q0) * Q0 * kq]) - est_func1.func - wrapper1 = EstimateComponentParams(model, [est_func1, est_func2]) - # @test Set(get_param_names(wrapper1.component)) == Set([:Tmin, :Tmax, :Df, :f, :S0, :Q0, :ks, :kq]) - new_params = ComponentVector(f=0.0167, Df=0.0, Tmax=0.17, Tmin=-2.09, S0=1709.46, Q0=18.47, ks=1.0, kq=1.0, Smax=0.0, Qmax=0.0) - new_pas = ComponentVector(params=new_params, initstates=initstates) - output = wrapper1(input, new_pas) - - pkeys = [:ptype1, :ptype2, :ptype3] - ptypes = [:ptype1, :ptype2, :ptype3, :ptype1, :ptype2, :ptype3, :ptype1, :ptype2, :ptype3, :ptype1] - stypes = [Symbol("hru_$i") for i in 1:10] - wrapper2 = EstimateComponentParams(model, [est_func1, est_func2], pkeys) - multi_input = fill(input_ntp, 10) - multi_pas = ComponentVector(params=NamedTuple{Tuple(pkeys)}(fill(new_params, 3)), initstates=NamedTuple{Tuple(stypes)}(fill(initstates, 10))) - cfg = (ptypes=ptypes, stypes=stypes) - output = wrapper2(multi_input, multi_pas, config=cfg) -end diff --git a/test/run_wrapperv2.jl b/test/run_wrapperv2.jl deleted file mode 100644 index f199748..0000000 --- a/test/run_wrapperv2.jl +++ /dev/null @@ -1,71 +0,0 @@ -using CSV -using DataFrames -using ComponentArrays -using BenchmarkTools -using NamedTupleTools -using DataInterpolations - - -include("../src/HydroModels.jl") - -HydroFlux = HydroModels.HydroFlux -StateFlux = HydroModels.StateFlux -NeuralFlux = HydroModels.NeuralFlux -HydroBucket = HydroModels.HydroBucket -HydroModel = HydroModels.HydroModel -EstimateComponentParams = HydroModels.EstimateComponentParams - -@parameters Tmin Tmax Df Smax f Qmax -@variables prcp temp lday pet snowpack soilwater rainfall snowfall evap melt baseflow surfaceflow flow - -#! load data -ts = collect(1:100) -df = DataFrame(CSV.File("data/exphydro/01013500.csv")) -input_ntp = (lday=df[ts, "dayl(day)"], temp=df[ts, "tmean(C)"], prcp=df[ts, "prcp(mm/day)"]) -input = Matrix(reduce(hcat, collect(input_ntp[[:temp, :lday, :prcp]]))') - -initstates = ComponentVector(snowpack=0.0, soilwater=1303.00) -params = ComponentVector(f=0.0167, Smax=1709.46, Qmax=18.47, Df=2.674, Tmax=0.17, Tmin=-2.09) -pas = ComponentVector(initstates=initstates, params=params) - -#! define the snow pack reservoir -snow_funcs = [ - HydroFlux([temp, lday] => [pet], exprs=[29.8 * lday * 24 * 0.611 * exp((17.3 * temp) / (temp + 237.3)) / (temp + 273.2)]), - HydroFlux([prcp, temp] => [snowfall, rainfall], [Tmin], exprs=[step_func(Tmin - temp) * prcp, step_func(temp - Tmin) * prcp]), - HydroFlux([snowpack, temp] => [melt], [Tmax, Df], exprs=[step_func(temp - Tmax) * step_func(snowpack) * min(snowpack, Df * (temp - Tmax))]), -] -snow_dfuncs = [StateFlux([snowfall] => [melt], snowpack)] -snow_ele = HydroBucket(funcs=snow_funcs, dfuncs=snow_dfuncs) - -#! define the soil water reservoir -soil_funcs = [ - HydroFlux([soilwater, pet] => [evap], [Smax], exprs=[step_func(soilwater) * pet * min(1.0, soilwater / Smax)]), - HydroFlux([soilwater] => [baseflow], [Smax, Qmax, f], exprs=[step_func(soilwater) * Qmax * exp(-f * (max(0.0, Smax - soilwater)))]), - HydroFlux([soilwater] => [surfaceflow], [Smax], exprs=[max(0.0, soilwater - Smax)]), - HydroFlux([baseflow, surfaceflow] => [flow], exprs=[baseflow + surfaceflow]), -] -soil_dfuncs = [StateFlux([rainfall, melt] => [evap, flow], soilwater)] -soil_ele = HydroBucket(funcs=soil_funcs, dfuncs=soil_dfuncs) - -#! define the Exp-Hydro model -model = HydroModel(name=:exphydro, components=[snow_ele, soil_ele]) - -@parameters S0 Q0 ks kq - -est_func1 = HydroFlux([S0] => [Smax, Df], [ks], exprs=[step_func(S0) * S0 * ks, ks * 2.674]) -est_func2 = HydroFlux([Q0] => [Qmax], [kq], exprs=[step_func(Q0) * Q0 * kq]) -est_func1.func -wrapper1 = EstimateComponentParams(model, [est_func1, est_func2]) -# @test Set(get_param_names(wrapper1.component)) == Set([:Tmin, :Tmax, :Df, :f, :S0, :Q0, :ks, :kq]) -new_params = ComponentVector(f=0.0167, Df=2.674, Tmax=0.17, Tmin=-2.09, Smax=1709.46, Qmax=18.47) -new_pas = ComponentVector(params=new_params, initstates=initstates) -# output = wrapper1(input, new_pas) - -pkeys = [:ptype1, :ptype2, :ptype3] -ptypes = [:ptype1, :ptype2, :ptype3, :ptype1, :ptype2, :ptype3, :ptype1, :ptype2, :ptype3, :ptype1] -stypes = [Symbol("hru_$i") for i in 1:10] -wrapper2 = EstimateComponentParams(model, [est_func1, est_func2], pkeys) -multi_input = fill(input_ntp, 10) -multi_pas = ComponentVector(params=NamedTuple{Tuple(pkeys)}(fill(new_params, 3)), initstates=NamedTuple{Tuple(stypes)}(fill(initstates, 10))) - -wrapper = ComputeComponentOutlet(model, ) \ No newline at end of file diff --git a/test/runtests.jl b/test/runtests.jl deleted file mode 100644 index 0168cec..0000000 --- a/test/runtests.jl +++ /dev/null @@ -1,26 +0,0 @@ -using Aqua -using CSV -using DataFrames -using Lux -using Test -using ModelingToolkit -using Symbolics -using LuxCore -using StableRNGs -using ComponentArrays -using DataInterpolations -using OrdinaryDiffEq -using Statistics -using Graphs -# using HydroModels -include("../src/HydroModels.jl") - -@testset "HydroModels.jl" begin - # include("run_flux.jl") # test pass - # include("run_bucket.jl") - # include("run_uh.jl") - # include("run_route.jl") - # include("run_lumped_model.jl") - include("run_spatial_model.jl") - # Aqua.test_all(LumpedHydro; ambiguities = false) -end \ No newline at end of file